diff --git a/.gitignore b/.gitignore index 08681f6..b265ff5 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ examples/data/ss10pusa.csv build target Cargo.lock +scratch* diff --git a/Cargo.toml b/Cargo.toml index 5555a42..33a6010 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-csv" -version = "0.2.4" +version = "0.3.0" authors = ["Andrew Gallant "] [lib] @@ -8,6 +8,3 @@ name = "csv" path = "src/lib.rs" crate_type = ["dylib", "rlib"] -[dependencies.quickcheck] -git = "git://github.com/BurntSushi/quickcheck" - diff --git a/README.md b/README.md index ccbbd33..5e53c7e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,24 @@ -This crate provides a streaming CSV (comma separated values) encoder and -decoder that works with the `Encoder` and `Decoder` traits in Rust's -`serialize` crate. It [conforms closely to RFC -4180](http://burntsushi.net/rustdoc/csv/#compliance-with-rfc-4180). +This crate provides a streaming CSV (comma separated values) writer and +reader that works with the `serialize` crate to do type based encoding +and decoding. There are two primary goals of this project: + +1. The default mode of parsing should *just work*. This means the parser + will bias toward providing *a* parse over a *correct* parse (with + respect to [RFC 4180](http://tools.ietf.org/html/rfc4180)). +2. Convenient to use by default, but when performance is needed, the + API will provide an escape hatch. [![Build status](https://api.travis-ci.org/BurntSushi/rust-csv.png)](https://travis-ci.org/BurntSushi/rust-csv) Licensed under the [UNLICENSE](http://unlicense.org). +### Documentation + +The API is fully documented with lots of examples: +[http://burntsushi.net/rustdoc/csv/](http://burntsushi.net/rustdoc/csv/). + + ### Simple examples Here is a full working Rust program that decodes records from a CSV file. Each @@ -21,10 +32,10 @@ use std::path::Path; fn main() { let fp = &Path::new("./data/simple.csv"); - let mut rdr = csv::Decoder::from_file(fp); + let mut rdr = csv::Reader::from_file(fp); - for record in rdr.iter_decode::<(String, String, uint)>() { - let (s1, s2, dist) = record.unwrap(); + for record in rdr.decode() { + let (s1, s2, dist): (String, String, uint) = record.unwrap(); println!("({}, {}): {}", s1, s2, dist); } } @@ -47,10 +58,10 @@ struct Record { fn main() { let fp = &Path::new("./data/simple.csv"); - let mut rdr = csv::Decoder::from_file(fp); + let mut rdr = csv::Reader::from_file(fp); - for record in rdr.iter_decode::() { - let record = record.unwrap(); + for record in rdr.decode() { + let record: Record = record.unwrap(); println!("({}, {}): {}", record.s1, record.s2, record.dist); } } @@ -67,15 +78,10 @@ struct Record { } ``` -You can also read CSV headers, change the separator, use `enum` types or just +You can also read CSV headers, change the delimiter, use `enum` types or just get plain access to records as vectors of strings. There are examples with more details in the documentation. -### Documentation - -The API is fully documented with lots of examples: -[http://burntsushi.net/rustdoc/csv/](http://burntsushi.net/rustdoc/csv/). - ### Installation @@ -99,12 +105,8 @@ git = "git://github.com/BurntSushi/rust-csv" ### Related work -The only other CSV parser I know of that builds is -[Geal/rust-csv](https://github.com/Geal/rust-csv), but it doesn't support the -`Encoder` or `Decoder` API. - -Another one popped up at -[arjantop/rust-tabular](https://github.com/arjantop/rust-tabular) just -recently, which also does not support the `Encoder` or `Decoder` API. -However, it does support parsing fixed-width tables. +The only other one I know is +[arjantop/rust-tabular](https://github.com/arjantop/rust-tabular), +which does not support the `Encoder` or `Decoder` API. However, it does support +parsing fixed-width tables. diff --git a/examples/data/medium.csv b/examples/data/bench.csv similarity index 100% rename from examples/data/medium.csv rename to examples/data/bench.csv diff --git a/examples/data/large.csv b/examples/data/large.csv deleted file mode 100644 index 69b1d1c..0000000 --- a/examples/data/large.csv +++ /dev/null @@ -1,44854 +0,0 @@ -gameid,qtr,min,sec,off,def,down,togo,ydline,description,offscore,defscore,season -20120905_DAL@NYG,1,,0,DAL,NYG,,,,D.Bailey kicks 69 yards from DAL 35 to NYG -4. D.Wilson to NYG 16 for 20 yards (A.Holmes).,0,0,2012 -20120905_DAL@NYG,1,59,56,NYG,DAL,1,10,84,(14:56) E.Manning pass incomplete deep left to H.Nicks.,0,0,2012 -20120905_DAL@NYG,1,59,49,NYG,DAL,2,10,84,(14:49) E.Manning pass short middle to V.Cruz to NYG 21 for 5 yards (S.Lee) [J.Hatcher].,0,0,2012 -20120905_DAL@NYG,1,59,5,NYG,DAL,3,5,79,(14:05) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,0,0,2012 -20120905_DAL@NYG,1,58,58,NYG,DAL,4,5,79,(13:58) S.Weatherford punts 56 yards to DAL 23 Center-Z.DeOssie. D.Bryant to DAL 24 for 1 yard (Z.DeOssie).,0,0,2012 -20120905_DAL@NYG,1,58,44,DAL,NYG,1,10,76,(13:44) D.Murray left guard to DAL 27 for 3 yards (C.Blackburn).,0,0,2012 -20120905_DAL@NYG,1,58,7,DAL,NYG,2,7,73,(13:07) T.Romo sacked at DAL 19 for -8 yards (R.Bernard).,0,0,2012 -20120905_DAL@NYG,1,57,27,DAL,NYG,3,15,81,(12:27) (Shotgun) T.Romo pass incomplete short left to F.Jones.,0,0,2012 -20120905_DAL@NYG,1,57,21,DAL,NYG,4,15,81,(12:21) C.Jones punts 60 yards to NYG 21 Center-L.Ladouceur. D.Hixon to NYG 31 for 10 yards (A.Albright L.Vickers). PENALTY on NYG-J.Hosley Clipping 13 yards enforced at NYG 26. Officially a return for 5 yards.,0,0,2012 -20120905_DAL@NYG,1,57,9,NYG,DAL,1,10,87,(12:09) A.Bradshaw left tackle to NYG 15 for 2 yards (J.Hatcher J.Price-Brent).,0,0,2012 -20120905_DAL@NYG,1,56,31,NYG,DAL,2,8,85,(11:31) D.Wilson right tackle to NYG 18 for 3 yards (D.Ware S.Lee).,0,0,2012 -20120905_DAL@NYG,1,55,50,NYG,DAL,3,5,82,(10:50) (Shotgun) E.Manning pass deep left to V.Cruz ran ob at NYG 44 for 26 yards (B.Carr).,0,0,2012 -20120905_DAL@NYG,1,55,20,NYG,DAL,1,10,56,(10:20) E.Manning pass short middle to M.Bennett to DAL 47 for 9 yards (B.Carter).,0,0,2012 -20120905_DAL@NYG,1,54,36,NYG,DAL,2,1,47,(9:36) PENALTY on NYG-V.Cruz False Start 5 yards enforced at DAL 47 - No Play.,0,0,2012 -20120905_DAL@NYG,1,54,12,NYG,DAL,2,6,52,(9:12) E.Manning pass short right to M.Bennett to DAL 42 for 10 yards (S.Lee B.Carter).,0,0,2012 -20120905_DAL@NYG,1,53,29,NYG,DAL,1,10,42,(8:29) A.Bradshaw left tackle to DAL 39 for 3 yards (D.Ware S.Lee).,0,0,2012 -20120905_DAL@NYG,1,52,53,NYG,DAL,2,7,39,(7:53) E.Manning pass short left to H.Nicks pushed ob at DAL 31 for 8 yards (M.Claiborne).,0,0,2012 -20120905_DAL@NYG,1,52,25,NYG,DAL,1,10,31,(7:25) A.Bradshaw right tackle to DAL 29 for 2 yards (D.Ware S.Lissemore).,0,0,2012 -20120905_DAL@NYG,1,51,43,NYG,DAL,2,8,29,(6:43) D.Wilson left end to DAL 27 for 2 yards (S.Lee). FUMBLES (S.Lee) RECOVERED by DAL-B.Church at DAL 28. B.Church to DAL 34 for 6 yards (C.Snee). Officially a rush for 1 yard.,0,0,2012 -20120905_DAL@NYG,1,51,33,DAL,NYG,1,10,66,(6:33) D.Murray left tackle to DAL 36 for 2 yards (L.Joseph R.Bernard).,0,0,2012 -20120905_DAL@NYG,1,50,54,DAL,NYG,2,8,64,(5:54) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 36 - No Play.,0,0,2012 -20120905_DAL@NYG,1,50,39,DAL,NYG,2,13,69,(5:39) (Shotgun) T.Romo pass short middle to M.Austin to DAL 40 for 9 yards (K.Rivers J.Hosley).,0,0,2012 -20120905_DAL@NYG,1,50,1,DAL,NYG,3,4,60,(5:01) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 46 for 14 yards (J.Williams K.Phillips).,0,0,2012 -20120905_DAL@NYG,1,49,26,DAL,NYG,1,10,46,(4:26) PENALTY on DAL-J.Witten False Start 5 yards enforced at NYG 46 - No Play.,0,0,2012 -20120905_DAL@NYG,1,49,9,DAL,NYG,1,15,51,(4:09) D.Murray left guard to NYG 46 for 5 yards (K.Rivers).,0,0,2012 -20120905_DAL@NYG,1,48,22,DAL,NYG,2,10,46,(3:22) (Shotgun) T.Romo pass incomplete deep left to D.Bryant (C.Webster).,0,0,2012 -20120905_DAL@NYG,1,48,13,DAL,NYG,3,10,46,(3:13) (Shotgun) T.Romo pass short left to K.Ogletree to NYG 37 for 9 yards (A.Rolle M.Coe).,0,0,2012 -20120905_DAL@NYG,1,47,46,DAL,NYG,4,1,37,(2:46) L.Vickers left guard to NYG 37 for no gain (A.Rolle K.Rivers).,0,0,2012 -20120905_DAL@NYG,1,47,12,NYG,DAL,1,10,63,(2:12) E.Manning pass short right to H.Nicks to NYG 47 for 10 yards (M.Claiborne).,0,0,2012 -20120905_DAL@NYG,1,46,35,NYG,DAL,1,10,53,(1:35) A.Bradshaw left end to 50 for 3 yards (S.Lissemore A.Spencer).,0,0,2012 -20120905_DAL@NYG,1,45,58,NYG,DAL,2,7,50,(:58) A.Bradshaw right guard to DAL 45 for 5 yards (J.Hatcher).,0,0,2012 -20120905_DAL@NYG,1,45,21,NYG,DAL,3,2,45,(:21) (Shotgun) E.Manning pass short right to V.Cruz pushed ob at DAL 41 for 4 yards (O.Scandrick).,0,0,2012 -20120905_DAL@NYG,2,45,0,NYG,DAL,1,10,41,(15:00) E.Manning sacked at NYG 44 for -15 yards (D.Ware).,0,0,2012 -20120905_DAL@NYG,2,44,30,NYG,DAL,2,25,56,(14:30) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 45 for 11 yards (S.Lee).,0,0,2012 -20120905_DAL@NYG,2,43,46,NYG,DAL,3,14,45,(13:46) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,0,0,2012 -20120905_DAL@NYG,2,43,36,NYG,DAL,4,14,45,(13:36) S.Weatherford punts 45 yards to end zone Center-Z.DeOssie Touchback.,0,0,2012 -20120905_DAL@NYG,2,43,27,DAL,NYG,1,10,80,(13:27) T.Romo pass short middle to D.Bryant to DAL 38 for 18 yards (C.Blackburn).,0,0,2012 -20120905_DAL@NYG,2,42,41,DAL,NYG,1,10,62,(12:41) D.Murray right end to DAL 37 for -1 yards (K.Rivers).,0,0,2012 -20120905_DAL@NYG,2,41,57,DAL,NYG,2,11,63,(11:57) T.Romo up the middle to DAL 45 for 8 yards (J.Tuck).,0,0,2012 -20120905_DAL@NYG,2,41,10,DAL,NYG,3,3,55,(11:10) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 45 - No Play.,0,0,2012 -20120905_DAL@NYG,2,40,46,DAL,NYG,3,8,60,(10:46) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by M.Boley at NYG 47. M.Boley pushed ob at DAL 2 for 51 yards (T.Smith). PENALTY on DAL-T.Smith Horse Collar Tackle 1 yard enforced at DAL 2.,0,0,2012 -20120905_DAL@NYG,2,40,30,NYG,DAL,1,1,1,(10:30) A.Bradshaw right end pushed ob at DAL 3 for -2 yards (A.Spencer).,0,0,2012 -20120905_DAL@NYG,2,40,5,NYG,DAL,2,3,3,(10:05) A.Bradshaw left tackle to DAL 4 for -1 yards (M.Spears J.Price-Brent).,0,0,2012 -20120905_DAL@NYG,2,39,23,NYG,DAL,3,4,4,(9:23) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (O.Scandrick).,0,0,2012 -20120905_DAL@NYG,2,39,14,NYG,DAL,4,4,4,(9:14) L.Tynes 22 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20120905_DAL@NYG,2,39,14,NYG,DAL,,,4,L.Tynes kicks 67 yards from NYG 35 to DAL -2. F.Jones to DAL 20 for 22 yards (W.Hill).,3,0,2012 -20120905_DAL@NYG,2,39,5,DAL,NYG,1,10,80,(9:05) D.Murray right tackle to DAL 22 for 2 yards (M.Coe K.Rivers).,0,3,2012 -20120905_DAL@NYG,2,38,33,DAL,NYG,2,8,78,(8:33) T.Romo pass short left to J.Hanna to DAL 32 for 10 yards (K.Rivers).,0,3,2012 -20120905_DAL@NYG,2,37,59,DAL,NYG,1,10,68,(7:59) D.Murray right tackle to DAL 35 for 3 yards (R.Bernard J.Pierre-Paul).,0,3,2012 -20120905_DAL@NYG,2,37,20,DAL,NYG,2,7,65,(7:20) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 35 - No Play.,0,3,2012 -20120905_DAL@NYG,2,36,52,DAL,NYG,2,12,70,(6:52) D.Murray left guard to DAL 27 for -3 yards (J.Pierre-Paul).,0,3,2012 -20120905_DAL@NYG,2,36,6,DAL,NYG,3,15,73,(6:06) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 36 for 9 yards (M.Coe).,0,3,2012 -20120905_DAL@NYG,2,35,28,DAL,NYG,4,6,64,(5:28) C.Jones punts 48 yards to NYG 16 Center-L.Ladouceur fair catch by D.Hixon.,0,3,2012 -20120905_DAL@NYG,2,35,18,NYG,DAL,1,10,84,(5:18) A.Bradshaw left guard to NYG 16 for no gain (B.Carter).,3,0,2012 -20120905_DAL@NYG,2,34,37,NYG,DAL,2,10,84,(4:37) A.Bradshaw right end to NYG 18 for 2 yards (K.Coleman A.Spencer).,3,0,2012 -20120905_DAL@NYG,2,33,50,NYG,DAL,3,8,82,(3:50) (Shotgun) E.Manning pass incomplete deep right to M.Bennett.,3,0,2012 -20120905_DAL@NYG,2,33,42,NYG,DAL,4,8,82,(3:42) S.Weatherford punts 54 yards to DAL 28 Center-Z.DeOssie. D.Bryant ran ob at DAL 27 for -1 yards.,3,0,2012 -20120905_DAL@NYG,2,33,34,DAL,NYG,1,10,73,(3:34) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 27 - No Play.,0,3,2012 -20120905_DAL@NYG,2,33,34,DAL,NYG,1,15,78,(3:34) T.Romo pass short left to D.Bryant ran ob at DAL 35 for 13 yards.,0,3,2012 -20120905_DAL@NYG,2,33,11,DAL,NYG,2,2,65,(3:11) T.Romo pass short left to J.Witten to DAL 38 for 3 yards (C.Blackburn M.Coe).,0,3,2012 -20120905_DAL@NYG,2,32,34,DAL,NYG,1,10,62,(2:34) D.Murray left guard to DAL 47 for 9 yards (K.Phillips).,0,3,2012 -20120905_DAL@NYG,2,32,4,DAL,NYG,2,1,53,(2:04) T.Romo pass incomplete short right to K.Ogletree.,0,3,2012 -20120905_DAL@NYG,2,31,59,DAL,NYG,3,1,53,(1:59) (Shotgun) T.Romo pass deep right to D.Bryant to NYG 15 for 38 yards (K.Phillips).,0,3,2012 -20120905_DAL@NYG,2,31,15,DAL,NYG,1,10,15,(1:15) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 10 for 5 yards (J.Williams).,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,2,5,10,(1:07) (Shotgun) T.Romo pass short middle to K.Ogletree for 10 yards TOUCHDOWN.,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey kicks 67 yards from DAL 35 to NYG -2. D.Wilson to NYG 30 for 32 yards (B.Church).,7,3,2012 -20120905_DAL@NYG,2,30,54,NYG,DAL,1,10,70,(:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,3,7,2012 -20120905_DAL@NYG,2,30,48,NYG,DAL,2,10,70,(:48) (Shotgun) E.Manning sacked at NYG 24 for -6 yards (D.Ware).,3,7,2012 -20120905_DAL@NYG,2,30,4,NYG,DAL,3,16,76,(:04) (Shotgun) A.Bradshaw up the middle to NYG 29 for 5 yards (A.Spencer).,3,7,2012 -20120905_DAL@NYG,3,30,0,NYG,DAL,,,76,L.Tynes kicks 73 yards from NYG 35 to DAL -8. F.Jones Touchback.,3,7,2012 -20120905_DAL@NYG,3,30,0,DAL,NYG,1,10,80,(15:00) T.Romo pass short right to D.Murray to DAL 29 for 9 yards (M.Kiwanuka J.Tuck).,7,3,2012 -20120905_DAL@NYG,3,29,25,DAL,NYG,2,1,71,(14:25) D.Murray left guard to DAL 31 for 2 yards (J.Pierre-Paul J.Williams).,7,3,2012 -20120905_DAL@NYG,3,28,42,DAL,NYG,1,10,69,(13:42) T.Romo pass short left to D.Murray to DAL 31 for no gain (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,28,0,DAL,NYG,2,10,69,(13:00) D.Murray left tackle to DAL 40 for 9 yards (A.Rolle J.Williams).,7,3,2012 -20120905_DAL@NYG,3,27,8,DAL,NYG,3,1,60,(12:08) D.Murray left end to DAL 44 for 4 yards (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,26,27,DAL,NYG,1,10,56,(11:27) T.Romo pass incomplete short middle to F.Jones.,7,3,2012 -20120905_DAL@NYG,3,26,20,DAL,NYG,2,10,56,(11:20) T.Romo pass short right to D.Bryant to NYG 40 for 16 yards (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,25,42,DAL,NYG,1,10,40,(10:42) T.Romo pass incomplete short left to J.Witten.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,2,10,40,(10:32) T.Romo pass deep right to K.Ogletree for 40 yards TOUCHDOWN.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey kicks 61 yards from DAL 35 to NYG 4. A.Brown to NYG 11 for 7 yards (J.Hanna A.Albright).,14,3,2012 -20120905_DAL@NYG,3,25,19,NYG,DAL,1,10,89,(10:19) (Shotgun) E.Manning pass short right to D.Hixon to NYG 23 for 12 yards (B.Carter).,3,14,2012 -20120905_DAL@NYG,3,24,47,NYG,DAL,1,10,77,(9:47) A.Bradshaw left guard to NYG 25 for 2 yards (J.Hatcher).,3,14,2012 -20120905_DAL@NYG,3,24,11,NYG,DAL,2,8,75,(9:11) E.Manning pass short right to M.Bennett pushed ob at NYG 37 for 12 yards (A.Spencer; B.Church). PENALTY on NYG-V.Cruz Illegal Block Above the Waist 10 yards enforced at NYG 37.,3,14,2012 -20120905_DAL@NYG,3,23,46,NYG,DAL,2,6,73,(8:46) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 33 for 6 yards (S.Lee).,3,14,2012 -20120905_DAL@NYG,3,22,52,NYG,DAL,1,10,67,(7:52) E.Manning pass short left to H.Nicks to NYG 45 for 12 yards (M.Claiborne).,3,14,2012 -20120905_DAL@NYG,3,22,20,NYG,DAL,1,10,55,(7:20) A.Bradshaw left end to 50 for 5 yards (G.Sensabaugh).,3,14,2012 -20120905_DAL@NYG,3,21,48,NYG,DAL,2,5,50,(6:48) E.Manning pass short right to H.Hynoski to DAL 49 for 1 yard (A.Spencer) [V.Butler].,3,14,2012 -20120905_DAL@NYG,3,21,9,NYG,DAL,3,4,49,(6:09) (Shotgun) E.Manning pass deep left to D.Hixon to DAL 10 for 39 yards (M.Silva).,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,1,10,10,(5:19) A.Bradshaw left tackle for 10 yards TOUCHDOWN.,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes kicks 70 yards from NYG 35 to DAL -5. F.Jones to DAL 20 for 25 yards (J.Williams S.Paysinger).,10,14,2012 -20120905_DAL@NYG,3,20,4,DAL,NYG,1,10,80,(5:04) T.Romo pass short middle to J.Witten to DAL 27 for 7 yards (J.Williams).,14,10,2012 -20120905_DAL@NYG,3,19,35,DAL,NYG,2,3,73,(4:35) D.Murray right end to NYG 25 for 48 yards (A.Rolle).,14,10,2012 -20120905_DAL@NYG,3,18,42,DAL,NYG,1,10,25,(3:42) T.Romo pass short middle to J.Phillips to NYG 19 for 6 yards (C.Blackburn).,14,10,2012 -20120905_DAL@NYG,3,17,53,DAL,NYG,2,4,19,(2:53) (Shotgun) T.Romo scrambles up the middle to NYG 10 for 9 yards (M.Coe).,14,10,2012 -20120905_DAL@NYG,3,17,20,DAL,NYG,1,10,10,(2:20) D.Murray up the middle to NYG 6 for 4 yards (K.Rivers C.Blackburn).,14,10,2012 -20120905_DAL@NYG,3,16,33,DAL,NYG,2,6,6,(1:33) (Shotgun) T.Romo sacked at NYG 15 for -9 yards (L.Joseph).,14,10,2012 -20120905_DAL@NYG,3,15,53,DAL,NYG,3,15,15,(:53) (Shotgun) T.Romo pass incomplete short middle to K.Ogletree (M.Coe).,14,10,2012 -20120905_DAL@NYG,3,15,45,DAL,NYG,4,15,15,(:45) D.Bailey 33 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,14,10,2012 -20120905_DAL@NYG,3,15,45,DAL,NYG,,,15,D.Bailey kicks 69 yards from DAL 35 to NYG -4. A.Brown to NYG 18 for 22 yards (M.Silva).,17,10,2012 -20120905_DAL@NYG,3,15,34,NYG,DAL,1,10,82,(:34) A.Bradshaw left tackle to NYG 23 for 5 yards (M.Spears).,10,17,2012 -20120905_DAL@NYG,4,15,0,NYG,DAL,2,5,77,(15:00) E.Manning pass incomplete short right to V.Cruz.,10,17,2012 -20120905_DAL@NYG,4,14,55,NYG,DAL,3,5,77,(14:55) (Shotgun) E.Manning pass incomplete short left to A.Bradshaw [J.Hatcher]. PENALTY on DAL-J.Hatcher Roughing the Passer 15 yards enforced at NYG 23 - No Play.,10,17,2012 -20120905_DAL@NYG,4,14,49,NYG,DAL,1,10,62,(14:49) A.Bradshaw right tackle to NYG 38 for no gain (B.Carter).,10,17,2012 -20120905_DAL@NYG,4,14,13,NYG,DAL,2,10,62,(14:13) E.Manning pass short right to B.Pascoe to NYG 44 for 6 yards (S.Lee).,10,17,2012 -20120905_DAL@NYG,4,13,28,NYG,DAL,3,4,56,(13:28) (Shotgun) E.Manning sacked at NYG 39 for -5 yards (J.Hatcher).,10,17,2012 -20120905_DAL@NYG,4,13,17,NYG,DAL,4,9,61,(13:17) S.Weatherford punts 46 yards to DAL 15 Center-Z.DeOssie. D.Harris to DAL 18 for 3 yards (S.Brown).,10,17,2012 -20120905_DAL@NYG,4,13,3,DAL,NYG,1,10,82,(13:03) D.Murray up the middle to DAL 23 for 5 yards (J.Tryon M.Kuhn).,17,10,2012 -20120905_DAL@NYG,4,12,14,DAL,NYG,2,5,77,(12:14) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 23 - No Play.,17,10,2012 -20120905_DAL@NYG,4,12,0,DAL,NYG,2,10,82,(12:00) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 32 for 14 yards (A.Rolle J.Tryon).,17,10,2012 -20120905_DAL@NYG,4,11,27,DAL,NYG,1,10,68,(11:27) D.Murray left tackle to DAL 37 for 5 yards (M.Boley J.Tuck).,17,10,2012 -20120905_DAL@NYG,4,10,46,DAL,NYG,2,5,63,(10:46) T.Romo pass deep right to M.Austin to NYG 43 for 20 yards (C.Webster).,17,10,2012 -20120905_DAL@NYG,4,10,11,DAL,NYG,1,10,43,(10:11) D.Murray left tackle to NYG 34 for 9 yards (A.Rolle).,17,10,2012 -20120905_DAL@NYG,4,9,33,DAL,NYG,2,1,34,(9:33) D.Murray right guard to NYG 38 for -4 yards (M.Boley). PENALTY on NYG-L.Joseph Defensive Offside 5 yards enforced at NYG 34 - No Play.,17,10,2012 -20120905_DAL@NYG,4,9,8,DAL,NYG,1,10,29,(9:08) PENALTY on DAL-T.Smith False Start 5 yards enforced at NYG 29 - No Play.,17,10,2012 -20120905_DAL@NYG,4,8,45,DAL,NYG,1,15,34,(8:45) (Shotgun) T.Romo pass short right to M.Austin to NYG 24 for 10 yards (O.Umenyiora).,17,10,2012 -20120905_DAL@NYG,4,8,4,DAL,NYG,2,5,24,(8:04) D.Murray left tackle to NYG 22 for 2 yards (M.Boley C.Blackburn). PENALTY on DAL-D.Bryant Illegal Motion 5 yards enforced at NYG 24 - No Play.,17,10,2012 -20120905_DAL@NYG,4,7,48,DAL,NYG,2,10,29,(7:48) D.Murray left tackle to NYG 14 for 15 yards (C.Webster).,17,10,2012 -20120905_DAL@NYG,4,7,8,DAL,NYG,1,10,14,(7:08) D.Murray left end to NYG 11 for 3 yards (C.Blackburn). PENALTY on DAL-M.Bernadeau Illegal Use of Hands 10 yards enforced at NYG 14 - No Play.,17,10,2012 -20120905_DAL@NYG,4,6,39,DAL,NYG,1,20,24,(6:39) T.Romo pass short right to K.Ogletree to NYG 8 for 16 yards (J.Tryon). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at NYG 24 - No Play.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,1,30,34,(6:12) T.Romo pass deep left to M.Austin for 34 yards TOUCHDOWN.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey kicks 63 yards from DAL 35 to NYG 2. D.Wilson to NYG 21 for 19 yards (G.Sensabaugh).,24,10,2012 -20120905_DAL@NYG,4,5,51,NYG,DAL,1,10,79,(5:51) (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 30 for 9 yards (O.Scandrick J.Hatcher).,10,24,2012 -20120905_DAL@NYG,4,5,21,NYG,DAL,2,1,70,(5:21) (No Huddle Shotgun) E.Manning pass incomplete short right to D.Hixon (B.Carr).,10,24,2012 -20120905_DAL@NYG,4,5,14,NYG,DAL,3,1,70,(5:14) (Shotgun) A.Bradshaw right guard to DAL 37 for 33 yards (S.Lee).,10,24,2012 -20120905_DAL@NYG,4,4,44,NYG,DAL,1,10,37,(4:44) (No Huddle Shotgun) E.Manning pass incomplete short middle to M.Bennett.,10,24,2012 -20120905_DAL@NYG,4,4,38,NYG,DAL,2,10,37,(4:38) (Shotgun) E.Manning pass incomplete deep left to V.Cruz.,10,24,2012 -20120905_DAL@NYG,4,4,30,NYG,DAL,3,10,37,(4:30) (Shotgun) E.Manning pass short right to H.Nicks to DAL 29 for 8 yards (M.Claiborne).,10,24,2012 -20120905_DAL@NYG,4,4,3,NYG,DAL,4,2,29,(4:03) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 22 for 7 yards (S.Lee). Penalty on DAL-D.Ware Defensive Offside declined.,10,24,2012 -20120905_DAL@NYG,4,3,56,NYG,DAL,1,10,22,(3:56) (No Huddle Shotgun) E.Manning pass incomplete deep middle to D.Hixon.,10,24,2012 -20120905_DAL@NYG,4,3,51,NYG,DAL,2,10,22,(3:51) (Shotgun) E.Manning pass short left to D.Hixon to DAL 18 for 4 yards (S.Lee).,10,24,2012 -20120905_DAL@NYG,4,3,27,NYG,DAL,3,6,18,(3:27) (Shotgun) E.Manning pass short right to V.Cruz to DAL 13 for 5 yards (B.Carr).,10,24,2012 -20120905_DAL@NYG,4,3,5,NYG,DAL,4,1,13,(3:05) (No Huddle Shotgun) A.Bradshaw left tackle to DAL 9 for 4 yards (S.Lee A.Spencer).,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,1,9,9,(2:42) (No Huddle Shotgun) E.Manning pass short middle to M.Bennett for 9 yards TOUCHDOWN. Penalty on DAL-B.Church Defensive Pass Interference declined.,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes kicks 53 yards from NYG 35 to DAL 12. F.Jones to DAL 26 for 14 yards (S.Brown).,17,24,2012 -20120905_DAL@NYG,4,2,31,DAL,NYG,1,10,74,(2:31) D.Murray right tackle to DAL 27 for 1 yard (J.Pierre-Paul J.Tuck).,24,17,2012 -20120905_DAL@NYG,4,2,26,DAL,NYG,2,9,73,(2:26) D.Murray right tackle to DAL 34 for 7 yards (C.Blackburn).,24,17,2012 -20120905_DAL@NYG,4,2,17,DAL,NYG,3,2,66,(2:17) D.Murray left end to DAL 37 for 3 yards (K.Phillips). PENALTY on DAL-J.Witten Offensive Holding 10 yards enforced at DAL 36. Officially a rush for 2 yards.,24,17,2012 -20120905_DAL@NYG,4,2,11,DAL,NYG,3,10,74,(2:11) T.Romo pass short left to K.Ogletree to DAL 39 for 13 yards (J.Tryon).,24,17,2012 -20120905_DAL@NYG,4,2,0,DAL,NYG,1,10,61,(2:00) T.Romo kneels to DAL 38 for -1 yards.,24,17,2012 -20120905_DAL@NYG,4,1,24,DAL,NYG,2,11,62,(1:24) T.Romo kneels to DAL 35 for -3 yards.,24,17,2012 -20120905_DAL@NYG,4,0,38,DAL,NYG,3,14,65,(:38) T.Romo kneels to DAL 34 for -1 yards.,24,17,2012 -20120905_DAL@NYG,4,0,38,DAL,NYG,,,65,                      ,24,17,2012 -20120909_IND@CHI,1,0,0,IND,CHI,,,65,P.McAfee kicks 67 yards from IND 35 to CHI -2. D.Hester to CHI 16 for 18 yards (J.Hickman).,0,0,2012 -20120909_IND@CHI,1,59,56,CHI,IND,1,10,84,(14:56) J.Cutler sacked at CHI 4 for -12 yards (R.Mathis).,0,0,2012 -20120909_IND@CHI,1,59,22,CHI,IND,2,22,96,(14:22) PENALTY on CHI-G.Carimi False Start 2 yards enforced at CHI 4 - No Play.,0,0,2012 -20120909_IND@CHI,1,59,1,CHI,IND,2,24,98,(14:01) M.Forte left guard to CHI 5 for 3 yards (J.King; M.Fokou).,0,0,2012 -20120909_IND@CHI,1,58,21,CHI,IND,3,21,95,(13:21) (Shotgun) J.Cutler pass incomplete short right to A.Jeffery.,0,0,2012 -20120909_IND@CHI,1,58,15,CHI,IND,4,21,95,(13:15) (Punt formation) A.Podlesh punts 45 yards to 50 Center-P.Mannelly fair catch by L.Brazill.,0,0,2012 -20120909_IND@CHI,1,58,8,IND,CHI,1,10,50,(13:08) A.Luck pass short right to D.Jones to CHI 42 for 8 yards (L.Briggs).,0,0,2012 -20120909_IND@CHI,1,57,28,IND,CHI,2,2,42,(12:28) D.Brown right tackle to CHI 44 for -2 yards (I.Idonije).,0,0,2012 -20120909_IND@CHI,1,56,45,IND,CHI,3,4,44,(11:45) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,0,0,2012 -20120909_IND@CHI,1,56,40,IND,CHI,4,4,44,(11:40) (Punt formation) P.McAfee punts 41 yards to CHI 3 Center-M.Overton downed by IND-J.Hickman. CHI-C.Tillman was injured during the play. His return is Questionable.,0,0,2012 -20120909_IND@CHI,1,56,28,CHI,IND,1,10,97,(11:28) (Shotgun) J.Cutler pass short right intended for M.Forte INTERCEPTED by J.Freeman at CHI 4. J.Freeman for 4 yards TOUCHDOWN.,0,0,2012 -20120909_IND@CHI,1,56,28,IND,CHI,,,97,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20120909_IND@CHI,1,56,28,IND,CHI,,,97,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,7,0,2012 -20120909_IND@CHI,1,56,23,CHI,IND,1,10,80,(11:23) M.Forte left tackle to CHI 20 for no gain (K.Conner).,0,7,2012 -20120909_IND@CHI,1,55,47,CHI,IND,2,10,80,(10:47) J.Cutler pass incomplete short right to E.Rodriguez [K.Conner].,0,7,2012 -20120909_IND@CHI,1,55,42,CHI,IND,3,10,80,(10:42) (Shotgun) J.Cutler pass short right to B.Marshall to CHI 33 for 13 yards (V.Davis).,0,7,2012 -20120909_IND@CHI,1,55,0,CHI,IND,1,10,67,(10:00) J.Cutler pass incomplete short left to M.Forte.,0,7,2012 -20120909_IND@CHI,1,54,56,CHI,IND,2,10,67,(9:56) M.Forte left end to IND 35 for 32 yards (A.Bethea).,0,7,2012 -20120909_IND@CHI,1,54,9,CHI,IND,1,10,35,(9:09) J.Cutler pass incomplete deep left to K.Davis.,0,7,2012 -20120909_IND@CHI,1,54,4,CHI,IND,2,10,35,(9:04) J.Cutler pass incomplete deep left to B.Marshall (J.Powers).,0,7,2012 -20120909_IND@CHI,1,53,56,CHI,IND,3,10,35,(8:56) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett. PENALTY on IND-J.King Defensive Pass Interference 19 yards enforced at IND 35 - No Play.,0,7,2012 -20120909_IND@CHI,1,53,49,CHI,IND,1,10,16,(8:49) J.Cutler pass incomplete deep left to A.Jeffery.,0,7,2012 -20120909_IND@CHI,1,53,45,CHI,IND,2,10,16,(8:45) M.Forte right tackle to IND 1 for 15 yards (T.Zbikowski).,0,7,2012 -20120909_IND@CHI,1,52,58,CHI,IND,1,1,1,(7:58) J.Cutler pass incomplete short left to B.Marshall. PENALTY on IND-C.Vaughn Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,0,7,2012 -20120909_IND@CHI,1,52,54,CHI,IND,1,1,1,(7:54) M.Bush right tackle to IND 1 for no gain (M.Harvey).,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,2,1,1,(7:21) C.Williams reported in as eligible. M.Bush right tackle for 1 yard TOUCHDOWN.,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,7,7,2012 -20120909_IND@CHI,1,52,19,IND,CHI,1,10,80,(7:19) (Shotgun) A.Luck pass short middle to R.Wayne to IND 28 for 8 yards (B.Urlacher).,7,7,2012 -20120909_IND@CHI,1,51,42,IND,CHI,2,2,72,(6:42) A.Luck pass incomplete short left to R.Wayne (B.Urlacher) [M.Toeaina].,7,7,2012 -20120909_IND@CHI,1,51,36,IND,CHI,3,2,72,(6:36) A.Luck scrambles left guard to IND 31 for 3 yards (H.Melton).,7,7,2012 -20120909_IND@CHI,1,50,51,IND,CHI,1,10,69,(5:51) D.Brown left guard to IND 27 for -4 yards (H.Melton).,7,7,2012 -20120909_IND@CHI,1,50,11,IND,CHI,2,14,73,(5:11) (Shotgun) A.Luck pass short right to L.Brazill to IND 37 for 10 yards (M.Wright).,7,7,2012 -20120909_IND@CHI,1,49,33,IND,CHI,3,4,63,(4:33) (Shotgun) A.Luck pass incomplete short left to R.Wayne [S.McClellin].,7,7,2012 -20120909_IND@CHI,1,49,28,IND,CHI,4,4,63,(4:28) (Punt formation) P.McAfee punts 63 yards to end zone Center-M.Overton Touchback.,7,7,2012 -20120909_IND@CHI,1,49,19,CHI,IND,1,10,80,(4:19) J.Cutler pass incomplete short left to B.Marshall (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,1,49,15,CHI,IND,2,10,80,(4:15) M.Bush left guard to CHI 23 for 3 yards (R.Mathis).,7,7,2012 -20120909_IND@CHI,1,48,35,CHI,IND,3,7,77,(3:35) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall (A.Bethea).,7,7,2012 -20120909_IND@CHI,1,48,29,CHI,IND,4,7,77,(3:29) (Punt formation) A.Podlesh punts 33 yards to IND 44 Center-P.Mannelly out of bounds.,7,7,2012 -20120909_IND@CHI,1,48,21,IND,CHI,1,10,56,(3:21) V.Ballard left end to IND 45 for 1 yard (L.Briggs).,7,7,2012 -20120909_IND@CHI,1,47,36,IND,CHI,2,9,55,(2:36) (Shotgun) V.Ballard left tackle to IND 48 for 3 yards (J.Peppers).,7,7,2012 -20120909_IND@CHI,1,46,48,IND,CHI,3,6,52,(1:48) (Shotgun) A.Luck sacked at IND 40 for -8 yards (J.Peppers). FUMBLES (J.Peppers) and recovers at IND 38. A.Luck to IND 38 for no gain (J.Peppers). PENALTY on CHI-S.McClellin Neutral Zone Infraction 5 yards enforced at IND 48 - No Play.,7,7,2012 -20120909_IND@CHI,1,46,41,IND,CHI,3,1,47,(1:41) (Shotgun) A.Luck pass incomplete short right to D.Brown.,7,7,2012 -20120909_IND@CHI,1,46,38,IND,CHI,4,1,47,(1:38) (Punt formation) P.McAfee punts 42 yards to CHI 5 Center-M.Overton downed by IND-J.Hickman.,7,7,2012 -20120909_IND@CHI,1,46,25,CHI,IND,1,10,95,(1:25) J.Cutler pass short left to B.Marshall to CHI 12 for 7 yards (J.Powers).,7,7,2012 -20120909_IND@CHI,1,45,50,CHI,IND,2,3,88,(:50) M.Forte right tackle to CHI 15 for 3 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,1,45,9,CHI,IND,1,10,85,(:09) J.Cutler pass short left to M.Forte to CHI 16 for 1 yard (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,2,45,0,CHI,IND,2,9,84,(15:00) M.Forte left guard to CHI 21 for 5 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,2,44,18,CHI,IND,3,4,79,(14:18) (Shotgun) J.Cutler pass short left to E.Bennett to CHI 31 for 10 yards (R.Mathis).,7,7,2012 -20120909_IND@CHI,2,43,40,CHI,IND,1,10,69,(13:40) (No Huddle) J.Cutler pass deep left to B.Marshall pushed ob at CHI 47 for 16 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,2,43,18,CHI,IND,1,10,53,(13:18) (No Huddle) J.Cutler pass incomplete short left to B.Marshall (J.Powers).,7,7,2012 -20120909_IND@CHI,2,43,11,CHI,IND,2,10,53,(13:11) (No Huddle) M.Forte right guard to IND 49 for 4 yards (K.Conner). PENALTY on CHI-C.Spencer Offensive Holding 10 yards enforced at CHI 47 - No Play.,7,7,2012 -20120909_IND@CHI,2,42,33,CHI,IND,2,20,63,(12:33) (Shotgun) J.Cutler pass deep right to D.Hester to IND 34 for 29 yards (J.Freeman).,7,7,2012 -20120909_IND@CHI,2,41,45,CHI,IND,1,10,34,(11:45) M.Forte left guard to IND 34 for no gain (K.Conner).,7,7,2012 -20120909_IND@CHI,2,41,8,CHI,IND,2,10,34,(11:08) (Shotgun) J.Cutler pass short right to M.Forte pushed ob at IND 3 for 31 yards (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,1,3,3,(10:37) J.Cutler pass short right to B.Marshall for 3 yards TOUCHDOWN.,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,14,7,2012 -20120909_IND@CHI,2,40,33,IND,CHI,1,10,80,(10:33) A.Luck pass deep left to R.Wayne to IND 37 for 17 yards (K.Hayden).,7,14,2012 -20120909_IND@CHI,2,39,53,IND,CHI,1,10,63,(9:53) A.Luck pass deep right intended for D.Avery INTERCEPTED by T.Jennings at CHI 20. T.Jennings to CHI 37 for 17 yards (C.Fleener).,7,14,2012 -20120909_IND@CHI,2,39,40,CHI,IND,1,10,63,(9:40) J.Cutler pass deep middle to B.Marshall to IND 39 for 24 yards (A.Bethea).,14,7,2012 -20120909_IND@CHI,2,39,2,CHI,IND,1,10,39,(9:02) M.Bush left guard to IND 38 for 1 yard (D.Nevis).,14,7,2012 -20120909_IND@CHI,2,38,21,CHI,IND,2,9,38,(8:21) J.Cutler pass short middle to A.Jeffery to IND 23 for 15 yards (V.Davis).,14,7,2012 -20120909_IND@CHI,2,37,44,CHI,IND,1,10,23,(7:44) M.Bush left tackle to IND 23 for no gain (K.Conner).,14,7,2012 -20120909_IND@CHI,2,37,4,CHI,IND,2,10,23,(7:04) J.Cutler pass incomplete deep middle to D.Hester. PENALTY on CHI-D.Hester Offensive Pass Interference 10 yards enforced at IND 23 - No Play.,14,7,2012 -20120909_IND@CHI,2,36,57,CHI,IND,2,20,33,(6:57) (Shotgun) J.Cutler pass short left to B.Marshall to IND 24 for 9 yards (J.Powers).,14,7,2012 -20120909_IND@CHI,2,36,19,CHI,IND,3,11,24,(6:19) (Shotgun) M.Bush right guard to IND 17 for 7 yards (A.Bethea).,14,7,2012 -20120909_IND@CHI,2,35,36,CHI,IND,4,4,17,(5:36) (Field Goal formation) R.Gould 35 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,14,7,2012 -20120909_IND@CHI,2,35,36,CHI,IND,,,17,R.Gould kicks 70 yards from CHI 35 to IND -5. C.Vaughn pushed ob at IND 23 for 28 yards (D.Moore).,17,7,2012 -20120909_IND@CHI,2,35,26,IND,CHI,1,10,77,(5:26) A.Luck pass deep left to R.Wayne to IND 46 for 23 yards (C.Conte) [S.Paea]. IND-R.Wayne was injured during the play. His return is Probable.,7,17,2012 -20120909_IND@CHI,2,35,1,IND,CHI,1,10,54,(5:01) A.Luck pass incomplete short right to D.Avery (T.Jennings). PENALTY on CHI-T.Jennings Defensive Pass Interference 6 yards enforced at IND 46 - No Play.,7,17,2012 -20120909_IND@CHI,2,34,58,IND,CHI,1,10,48,(4:58) D.Brown left guard to CHI 30 for 18 yards (K.Hayden; M.Wright).,7,17,2012 -20120909_IND@CHI,2,34,14,IND,CHI,1,10,30,(4:14) (Shotgun) A.Luck pass incomplete short right to R.Wayne (C.Conte).,7,17,2012 -20120909_IND@CHI,2,34,10,IND,CHI,2,10,30,(4:10) A.Luck pass short left to R.Wayne to CHI 18 for 12 yards (B.Urlacher; K.Hayden).,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,1,10,18,(3:25) D.Brown left tackle for 18 yards TOUCHDOWN.,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,,,18,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,,,18,P.McAfee kicks 68 yards from IND 35 to CHI -3. D.Hester to CHI 28 for 31 yards (M.Harvey).,14,17,2012 -20120909_IND@CHI,2,33,7,CHI,IND,1,10,72,(3:07) J.Cutler pass deep left to K.Adams to CHI 45 for 17 yards (J.Powers).,17,14,2012 -20120909_IND@CHI,2,32,27,CHI,IND,1,10,55,(2:27) J.Cutler pass incomplete deep right to B.Marshall (J.King).,17,14,2012 -20120909_IND@CHI,2,32,22,CHI,IND,2,10,55,(2:22) J.Cutler pass incomplete short middle to M.Forte (C.Redding).,17,14,2012 -20120909_IND@CHI,2,32,17,CHI,IND,3,10,55,(2:17) (Shotgun) J.Cutler pass short middle to E.Bennett to IND 40 for 15 yards (J.King). Penalty on IND-T.Zbikowski Defensive Holding declined.,17,14,2012 -20120909_IND@CHI,2,32,0,CHI,IND,1,10,40,(2:00) (Shotgun) M.Forte left guard to IND 39 for 1 yard (M.Fokou).,17,14,2012 -20120909_IND@CHI,2,31,29,CHI,IND,2,9,39,(1:29) (Shotgun) J.Cutler pass short left to B.Marshall to IND 26 for 13 yards (T.Zbikowski).,17,14,2012 -20120909_IND@CHI,2,30,58,CHI,IND,1,10,26,(:58) (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett for 26 yards TOUCHDOWN. Penalty on IND-J.King Defensive Pass Interference declined. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett to IND 1 for 25 yards (A.Bethea). Penalty on IND-J.King Defensive Pass Interference declined.,17,14,2012 -20120909_IND@CHI,2,30,50,CHI,IND,1,1,1,(:50) J.Cutler pass incomplete short right to B.Marshall. PENALTY on IND-V.Davis Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,1,1,1,(:46) M.Bush left guard for 1 yard TOUCHDOWN.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould kicks 66 yards from CHI 35 to IND -1. C.Vaughn to IND 22 for 23 yards (B.Costanzo).,24,14,2012 -20120909_IND@CHI,2,30,39,IND,CHI,1,10,78,(:39) (Shotgun) A.Luck pass short middle to C.Fleener to IND 29 for 7 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,34,IND,CHI,2,3,71,(:34) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 37 for 8 yards (K.Hayden).,14,24,2012 -20120909_IND@CHI,2,30,27,IND,CHI,1,10,63,(:27) (No Huddle Shotgun) A.Luck pass short left to C.Fleener pushed ob at CHI 41 for 22 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,20,IND,CHI,1,10,41,(:20) (Shotgun) A.Luck pass deep middle to C.Fleener to CHI 19 for 22 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,12,IND,CHI,1,10,19,(:12) (Shotgun) A.Luck pass incomplete deep right to D.Avery (T.Jennings).,14,24,2012 -20120909_IND@CHI,2,30,6,IND,CHI,2,10,19,(:06) (Field Goal formation) A.Vinatieri 37 yard field goal is No Good Wide Right Center-M.Overton Holder-P.McAfee.,14,24,2012 -20120909_IND@CHI,2,30,2,CHI,IND,1,10,73,(:02) J.Cutler kneels to CHI 26 for -1 yards.,24,14,2012 -20120909_IND@CHI,3,30,0,CHI,IND,,,73,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,24,14,2012 -20120909_IND@CHI,3,30,0,IND,CHI,1,10,80,(15:00) D.Brown right end pushed ob at IND 21 for 1 yard (T.Jennings).,14,24,2012 -20120909_IND@CHI,3,29,27,IND,CHI,2,9,79,(14:27) A.Luck pass incomplete short left to C.Fleener.,14,24,2012 -20120909_IND@CHI,3,29,22,IND,CHI,3,9,79,(14:22) (Shotgun) A.Luck pass incomplete short left to K.Adams.,14,24,2012 -20120909_IND@CHI,3,29,19,IND,CHI,4,9,79,(14:19) (Punt formation) P.McAfee punts 57 yards to CHI 22 Center-M.Overton. D.Hester pushed ob at CHI 45 for 23 yards (M.Fokou).,14,24,2012 -20120909_IND@CHI,3,29,2,CHI,IND,1,10,55,(14:02) M.Bush right end to IND 35 for 20 yards (A.Bethea). IND-A.Bethea was injured during the play. His return is Questionable.,24,14,2012 -20120909_IND@CHI,3,28,23,CHI,IND,1,10,35,(13:23) J.Cutler pass short right to A.Jeffery to IND 12 for 23 yards (V.Davis).,24,14,2012 -20120909_IND@CHI,3,27,37,CHI,IND,1,10,12,(12:37) M.Forte left guard to IND 6 for 6 yards (C.Redding; P.McAfee).,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,2,4,6,(11:57) M.Forte left tackle for 6 yards TOUCHDOWN.,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould kicks 71 yards from CHI 35 to IND -6. L.Brazill to IND 9 for 15 yards (J.Thomas). FUMBLES (J.Thomas) RECOVERED by CHI-K.Hayden at IND 12. K.Hayden ran ob at IND 12 for no gain.,31,14,2012 -20120909_IND@CHI,3,26,46,CHI,IND,1,10,12,(11:46) D.Hester left end to IND 16 for -4 yards (J.Freeman).,31,14,2012 -20120909_IND@CHI,3,25,57,CHI,IND,2,14,16,(10:57) (Shotgun) J.Cutler pass short right to M.Forte to IND 8 for 8 yards (V.Davis).,31,14,2012 -20120909_IND@CHI,3,25,11,CHI,IND,3,6,8,(10:11) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall (J.King).,31,14,2012 -20120909_IND@CHI,3,25,7,CHI,IND,4,6,8,(10:07) (Field Goal formation) R.Gould 26 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,31,14,2012 -20120909_IND@CHI,3,25,7,CHI,IND,,,8,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,34,14,2012 -20120909_IND@CHI,3,25,2,IND,CHI,1,10,80,(10:02) A.Luck pass short left to C.Fleener to IND 25 for 5 yards (N.Roach).,14,34,2012 -20120909_IND@CHI,3,24,20,IND,CHI,2,5,75,(9:20) D.Brown right guard to IND 22 for -3 yards (H.Melton; N.Roach).,14,34,2012 -20120909_IND@CHI,3,23,39,IND,CHI,3,8,78,(8:39) (Shotgun) A.Luck pass incomplete short right to L.Brazill (N.Roach) [S.Paea]. PENALTY on CHI-N.Roach Illegal Contact 5 yards enforced at IND 22 - No Play.,14,34,2012 -20120909_IND@CHI,3,23,32,IND,CHI,1,10,73,(8:32) A.Luck pass incomplete short left to D.Brown.,14,34,2012 -20120909_IND@CHI,3,23,26,IND,CHI,2,10,73,(8:26) (Shotgun) A.Luck pass short right to K.Adams to IND 40 for 13 yards (T.Jennings; N.Roach).,14,34,2012 -20120909_IND@CHI,3,22,46,IND,CHI,1,10,60,(7:46) D.Brown left end to IND 40 for no gain (M.Toeaina; G.Hayes).,14,34,2012 -20120909_IND@CHI,3,22,6,IND,CHI,2,10,60,(7:06) (Shotgun) A.Luck pass incomplete short left to D.Avery (K.Hayden).,14,34,2012 -20120909_IND@CHI,3,22,1,IND,CHI,3,10,60,(7:01) (Shotgun) A.Luck pass short middle to R.Wayne to CHI 41 for 19 yards (C.Conte).,14,34,2012 -20120909_IND@CHI,3,21,22,IND,CHI,1,10,41,(6:22) A.Luck pass deep middle to C.Fleener to CHI 17 for 24 yards (G.Hayes).,14,34,2012 -20120909_IND@CHI,3,20,42,IND,CHI,1,10,17,(5:42) A.Luck pass incomplete short right to R.Wayne.,14,34,2012 -20120909_IND@CHI,3,20,37,IND,CHI,2,10,17,(5:37) D.Brown right guard to CHI 10 for 7 yards (J.Peppers).,14,34,2012 -20120909_IND@CHI,3,19,57,IND,CHI,3,3,10,(4:57) (Shotgun) A.Luck pass short right intended for R.Wayne INTERCEPTED by C.Conte (T.Jennings) at CHI -3. C.Conte to CHI 32 for 35 yards (K.Adams).,14,34,2012 -20120909_IND@CHI,3,19,46,CHI,IND,1,10,68,(4:46) M.Forte right tackle to CHI 31 for -1 yards (R.Mathis).,34,14,2012 -20120909_IND@CHI,3,19,2,CHI,IND,2,11,69,(4:02) J.Cutler pass short left to D.Hester to CHI 29 for -2 yards (J.Powers).,34,14,2012 -20120909_IND@CHI,3,18,13,CHI,IND,3,13,71,(3:13) (Shotgun) J.Cutler sacked at CHI 22 for -7 yards (R.Mathis).,34,14,2012 -20120909_IND@CHI,3,17,46,CHI,IND,4,20,78,(2:46) (Punt formation) A.Podlesh punts 40 yards to IND 38 Center-P.Mannelly. L.Brazill to IND 46 for 8 yards (B.Costanzo).,34,14,2012 -20120909_IND@CHI,3,17,37,IND,CHI,1,10,54,(2:37) A.Luck pass incomplete short middle to C.Fleener.,14,34,2012 -20120909_IND@CHI,3,17,32,IND,CHI,2,10,54,(2:32) (Shotgun) D.Brown right tackle to CHI 41 for 13 yards (T.Jennings; C.Conte).,14,34,2012 -20120909_IND@CHI,3,16,53,IND,CHI,1,10,41,(1:53) A.Luck pass incomplete. Chicago challenged the incomplete pass ruling and the play was REVERSED. A.Luck sacked at CHI 45 for -4 yards (C.Wootton). FUMBLES (C.Wootton) RECOVERED by CHI-J.Peppers at CHI 41. J.Peppers to CHI 41 for no gain (A.Castonzo).,14,34,2012 -20120909_IND@CHI,3,16,49,CHI,IND,1,10,59,(1:49) M.Forte left end to CHI 38 for -3 yards (K.Conner).,34,14,2012 -20120909_IND@CHI,3,16,9,CHI,IND,2,13,62,(1:09) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett (A.Bethea).,34,14,2012 -20120909_IND@CHI,3,16,3,CHI,IND,3,13,62,(1:03) (Shotgun) J.Cutler pass short left to B.Marshall to 50 for 12 yards (J.Powers). Measurement. Chicago challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),34,14,2012 -20120909_IND@CHI,3,15,20,CHI,IND,4,1,50,(:20) (Punt formation) A.Podlesh punts 50 yards to end zone Center-P.Mannelly Touchback.,34,14,2012 -20120909_IND@CHI,3,15,12,IND,CHI,1,10,80,(:12) A.Luck scrambles right end pushed ob at IND 26 for 6 yards (T.Jennings).,14,34,2012 -20120909_IND@CHI,4,15,0,IND,CHI,2,4,74,(15:00) A.Luck pass short right to R.Wayne to IND 46 for 20 yards (M.Wright).,14,34,2012 -20120909_IND@CHI,4,14,25,IND,CHI,1,10,54,(14:25) (Shotgun) V.Ballard left guard to IND 48 for 2 yards (M.Toeaina).,14,34,2012 -20120909_IND@CHI,4,13,49,IND,CHI,2,8,52,(13:49) A.Luck pass deep left to R.Wayne to CHI 31 for 21 yards (C.Conte).,14,34,2012 -20120909_IND@CHI,4,13,8,IND,CHI,1,10,31,(13:08) V.Ballard left end to CHI 31 for no gain (J.Peppers).,14,34,2012 -20120909_IND@CHI,4,12,25,IND,CHI,2,10,31,(12:25) (Shotgun) A.Luck pass incomplete deep left to C.Fleener.,14,34,2012 -20120909_IND@CHI,4,12,21,IND,CHI,3,10,31,(12:21) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,14,34,2012 -20120909_IND@CHI,4,12,16,IND,CHI,4,10,31,(12:16) (Shotgun) A.Luck pass short middle to K.Adams to CHI 18 for 13 yards (D.Moore).,14,34,2012 -20120909_IND@CHI,4,11,33,IND,CHI,1,10,18,(11:33) A.Luck pass short right to R.Wayne pushed ob at CHI 11 for 7 yards (K.Hayden).,14,34,2012 -20120909_IND@CHI,4,11,6,IND,CHI,2,3,11,(11:06) A.Luck pass short left to D.Avery to CHI 4 for 7 yards (K.Hayden).,14,34,2012 -20120909_IND@CHI,4,10,28,IND,CHI,1,4,4,(10:28) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,2,4,4,(10:24) A.Luck pass short left to D.Avery for 4 yards TOUCHDOWN.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,,,4,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,21,34,2012 -20120909_IND@CHI,4,10,20,CHI,IND,1,10,80,(10:20) M.Forte right guard to CHI 21 for 1 yard (K.Conner).,34,21,2012 -20120909_IND@CHI,4,9,39,CHI,IND,2,9,79,(9:39) J.Cutler pass deep left to B.Marshall to CHI 43 for 22 yards (J.Powers).,34,21,2012 -20120909_IND@CHI,4,8,56,CHI,IND,1,10,57,(8:56) M.Forte right end pushed ob at CHI 46 for 3 yards (J.Freeman).,34,21,2012 -20120909_IND@CHI,4,8,20,CHI,IND,2,7,54,(8:20) M.Forte left guard to IND 48 for 6 yards (A.Bethea).,34,21,2012 -20120909_IND@CHI,4,7,40,CHI,IND,3,1,48,(7:40) M.Bush left tackle to IND 45 for 3 yards (J.Freeman).,34,21,2012 -20120909_IND@CHI,4,7,0,CHI,IND,1,10,45,(7:00) M.Forte right tackle to IND 42 for 3 yards (V.Davis).,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,2,7,42,(6:16) J.Cutler pass deep middle to A.Jeffery for 42 yards TOUCHDOWN.,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould kicks 53 yards from CHI 35 to IND 12. M.Moore to IND 19 for 7 yards (A.Walters).,41,21,2012 -20120909_IND@CHI,4,6,2,IND,CHI,1,10,81,(6:02) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Moore).,21,41,2012 -20120909_IND@CHI,4,5,54,IND,CHI,2,10,81,(5:54) (Shotgun) A.Luck pass short left to M.Moore to IND 30 for 11 yards (K.Hayden).,21,41,2012 -20120909_IND@CHI,4,5,30,IND,CHI,1,10,70,(5:30) (No Huddle) A.Luck pass incomplete short right to R.Wayne (D.Moore).,21,41,2012 -20120909_IND@CHI,4,5,28,IND,CHI,2,10,70,(5:28) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,21,41,2012 -20120909_IND@CHI,4,5,24,IND,CHI,3,10,70,(5:24) (Shotgun) A.Luck sacked at IND 21 for -9 yards (H.Melton).,21,41,2012 -20120909_IND@CHI,4,5,1,IND,CHI,4,19,79,(5:01) (Punt formation) P.McAfee punts 54 yards to CHI 25 Center-M.Overton downed by IND-J.Lefeged.,21,41,2012 -20120909_IND@CHI,4,4,48,CHI,IND,1,10,75,(4:48) M.Bush right end to CHI 46 for 21 yards (J.Hughes). PENALTY on CHI-K.Davis Offensive Holding 10 yards enforced at CHI 25 - No Play.,41,21,2012 -20120909_IND@CHI,4,4,16,CHI,IND,1,20,85,(4:16) M.Bush left tackle to CHI 18 for 3 yards (J.Freeman).,41,21,2012 -20120909_IND@CHI,4,3,30,CHI,IND,2,17,82,(3:30) M.Bush right tackle to CHI 15 for -3 yards (M.Harvey).,41,21,2012 -20120909_IND@CHI,4,2,43,CHI,IND,3,20,85,(2:43) M.Bush right tackle to CHI 21 for 6 yards (J.Lefeged).,41,21,2012 -20120909_IND@CHI,4,2,37,CHI,IND,4,14,79,(2:37) (Punt formation) A.Podlesh punts 40 yards to IND 39 Center-P.Mannelly. L.Brazill pushed ob at IND 43 for 4 yards (S.McManis).,41,21,2012 -20120909_IND@CHI,4,2,28,IND,CHI,1,10,57,(2:28) (Shotgun) A.Luck pass short right to C.Fleener to IND 45 for 2 yards (M.Wright).,21,41,2012 -20120909_IND@CHI,4,2,10,IND,CHI,2,8,55,(2:10) (No Huddle Shotgun) A.Luck pass incomplete short right to C.Fleener.,21,41,2012 -20120909_IND@CHI,4,2,4,IND,CHI,3,8,55,(2:04) (Shotgun) A.Luck sacked at IND 38 for -7 yards (H.Melton).,21,41,2012 -20120909_IND@CHI,4,1,59,IND,CHI,4,15,62,(1:59) (Shotgun) A.Luck pass deep left to D.Avery to CHI 36 for 26 yards (D.Moore).,21,41,2012 -20120909_IND@CHI,4,1,52,IND,CHI,1,10,36,(1:52) (Shotgun) A.Luck pass deep right intended for K.Adams INTERCEPTED by T.Jennings at CHI 15. T.Jennings to CHI 26 for 11 yards (A.Castonzo).,21,41,2012 -20120909_IND@CHI,4,1,42,CHI,IND,1,10,74,(1:42) J.Cutler kneels to CHI 25 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,58,CHI,IND,2,11,75,(:58) J.Cutler kneels to CHI 24 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,33,CHI,IND,3,12,76,(:33) J.Cutler kneels to CHI 23 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,33,CHI,IND,,,76,                      ,41,21,2012 -20120909_PHI@CLE,1,0,0,CLE,PHI,,,76,P.Dawson kicks 57 yards from CLV 35 to PHI 8. S.Havili to PHI 26 for 18 yards (L.Fort).,0,0,2012 -20120909_PHI@CLE,1,59,56,PHI,CLE,1,10,74,(14:56) M.Vick pass short left to L.McCoy to PHI 20 for -6 yards (B.Winn).,0,0,2012 -20120909_PHI@CLE,1,59,16,PHI,CLE,2,16,80,(14:16) (Shotgun) M.Vick pass short middle to B.Celek to PHI 31 for 11 yards (D.Jackson; C.Robertson).,0,0,2012 -20120909_PHI@CLE,1,58,33,PHI,CLE,3,5,69,(13:33) (Shotgun) M.Vick pass short left to L.McCoy to CLV 45 for 24 yards (E.Hagg). PENALTY on PHI-J.Maclin Offensive Pass Interference 10 yards enforced at PHI 31 - No Play.,0,0,2012 -20120909_PHI@CLE,1,58,14,PHI,CLE,3,15,79,(13:14) (Shotgun) M.Vick scrambles up the middle to PHI 37 for 16 yards (T.Ward).,0,0,2012 -20120909_PHI@CLE,1,57,36,PHI,CLE,1,10,63,(12:36) M.Vick pass short left to D.Jackson to CLV 48 for 15 yards (J.Haden).,0,0,2012 -20120909_PHI@CLE,1,56,58,PHI,CLE,1,10,48,(11:58) D.Jackson right end to CLV 43 for 5 yards (A.Rubin).,0,0,2012 -20120909_PHI@CLE,1,56,18,PHI,CLE,2,5,43,(11:18) L.McCoy left end to CLV 48 for -5 yards (T.Ward). FUMBLES (T.Ward) RECOVERED by CLV-D.Jackson at CLV 49. D.Jackson to CLV 49 for no gain (M.Vick).,0,0,2012 -20120909_PHI@CLE,1,56,10,CLE,PHI,1,10,51,(11:10) T.Richardson right guard to 50 for 1 yard (M.Kendricks).,0,0,2012 -20120909_PHI@CLE,1,55,39,CLE,PHI,2,9,50,(10:39) B.Weeden pass short left to M.Massaquoi to PHI 26 for 24 yards (K.Coleman).,0,0,2012 -20120909_PHI@CLE,1,55,2,CLE,PHI,1,10,26,(10:02) T.Richardson left guard to PHI 25 for 1 yard (J.Babin).,0,0,2012 -20120909_PHI@CLE,1,54,25,CLE,PHI,2,9,25,(9:25) B.Weeden pass incomplete deep right to M.Massaquoi.,0,0,2012 -20120909_PHI@CLE,1,54,19,CLE,PHI,3,9,25,(9:19) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,0,0,2012 -20120909_PHI@CLE,1,54,16,CLE,PHI,4,9,25,(9:16) P.Dawson 43 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20120909_PHI@CLE,1,54,16,CLE,PHI,,,25,P.Dawson kicks 68 yards from CLV 35 to PHI -3. B.Boykin to PHI 26 for 29 yards (T.Gipson).,3,0,2012 -20120909_PHI@CLE,1,54,7,PHI,CLE,1,10,79,(9:07) M.Vick FUMBLES (Aborted) at PHI 21 recovered by PHI-L.McCoy at PHI 21.,0,3,2012 -20120909_PHI@CLE,1,53,30,PHI,CLE,2,15,79,(8:30) (Shotgun) L.McCoy left tackle ran ob at PHI 30 for 9 yards (K.Maiava).,0,3,2012 -20120909_PHI@CLE,1,53,7,PHI,CLE,3,6,70,(8:07) (Shotgun) M.Vick pass short right to C.Harbor to PHI 35 for 5 yards (C.Robertson). PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at PHI 30 - No Play.,0,3,2012 -20120909_PHI@CLE,1,52,47,PHI,CLE,3,1,65,(7:47) M.Vick pass short left to L.McCoy to PHI 45 for 10 yards (S.Brown).,0,3,2012 -20120909_PHI@CLE,1,52,22,PHI,CLE,1,10,55,(7:22) L.McCoy left tackle to PHI 48 for 3 yards (B.Winn). PENALTY on PHI-E.Mathis Offensive Holding 10 yards enforced at PHI 45 - No Play.,0,3,2012 -20120909_PHI@CLE,1,52,6,PHI,CLE,1,20,65,(7:06) L.McCoy right guard to PHI 39 for 4 yards (J.Parker).,0,3,2012 -20120909_PHI@CLE,1,51,29,PHI,CLE,2,16,61,(6:29) (Shotgun) M.Vick pass short right to J.Avant to PHI 44 for 5 yards (C.Robertson) [J.Parker].,0,3,2012 -20120909_PHI@CLE,1,50,42,PHI,CLE,3,11,56,(5:42) (Shotgun) M.Vick pass deep left to D.Jackson to CLV 38 for 18 yards (J.Haden) [C.Robertson]. Penalty on CLV-J.Haden Defensive Pass Interference declined.,0,3,2012 -20120909_PHI@CLE,1,50,22,PHI,CLE,1,10,38,(5:22) M.Vick sacked at CLV 39 for -1 yards (L.Fort).,0,3,2012 -20120909_PHI@CLE,1,49,46,PHI,CLE,2,11,39,(4:46) (Shotgun) M.Vick pass incomplete short middle to J.Maclin. PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at CLV 39 - No Play.,0,3,2012 -20120909_PHI@CLE,1,49,41,PHI,CLE,2,21,49,(4:41) (Shotgun) M.Vick pass short middle intended for B.Celek INTERCEPTED by C.Robertson at CLV 39. C.Robertson to CLV 40 for 1 yard (L.McCoy).,0,3,2012 -20120909_PHI@CLE,1,49,32,CLE,PHI,1,10,60,(4:32) T.Richardson right tackle to CLV 42 for 2 yards (M.Kendricks).,3,0,2012 -20120909_PHI@CLE,1,48,53,CLE,PHI,2,8,58,(3:53) B.Weeden pass short right to A.Smith to CLV 41 for -1 yards (N.Allen).,3,0,2012 -20120909_PHI@CLE,1,48,12,CLE,PHI,3,9,59,(3:12) B.Weeden sacked at CLV 41 for 0 yards. FUMBLES recovered by CLV-J.Pinkston at CLV 38. J.Pinkston to CLV 38 for no gain (T.Cole). PENALTY on PHI-J.Babin Neutral Zone Infraction 5 yards enforced at CLV 41 - No Play.,3,0,2012 -20120909_PHI@CLE,1,47,56,CLE,PHI,3,4,54,(2:56) (Shotgun) B.Weeden pass short left to B.Watson to CLV 49 for 3 yards (D.Ryans).,3,0,2012 -20120909_PHI@CLE,1,47,14,CLE,PHI,4,1,51,(2:14) R.Hodges punts 44 yards to PHI 7 Center-C.Yount fair catch by D.Johnson. PENALTY on CLV-B.Skrine Interference with Opportunity to Catch 15 yards enforced at PHI 7.,3,0,2012 -20120909_PHI@CLE,1,47,5,PHI,CLE,1,10,78,(2:05) (Shotgun) M.Vick pass short left to J.Maclin to PHI 31 for 9 yards (S.Brown) [D.Patterson].,0,3,2012 -20120909_PHI@CLE,1,46,50,PHI,CLE,2,1,69,(1:50) L.McCoy right guard to PHI 40 for 9 yards (S.Brown; T.Ward). CLV-S.Brown was injured during the play. His return is Questionable.,0,3,2012 -20120909_PHI@CLE,1,46,18,PHI,CLE,1,10,60,(1:18) M.Vick pass deep right to D.Jackson ran ob at CLV 25 for 35 yards (E.Hagg) [A.Rubin].,0,3,2012 -20120909_PHI@CLE,1,45,47,PHI,CLE,1,10,25,(:47) (Shotgun) L.McCoy left tackle to CLV 23 for 2 yards (F.Rucker; D.Jackson).,0,3,2012 -20120909_PHI@CLE,1,45,10,PHI,CLE,2,8,23,(:10) M.Vick pass incomplete short left to D.Jackson.,0,3,2012 -20120909_PHI@CLE,1,45,1,PHI,CLE,3,8,23,(:01) (Shotgun) M.Vick pass incomplete deep left to D.Jackson [J.Parker].,0,3,2012 -20120909_PHI@CLE,2,45,0,PHI,CLE,4,8,23,(15:00) A.Henery 42 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,0,3,2012 -20120909_PHI@CLE,2,45,0,PHI,CLE,,,23,A.Henery kicks 70 yards from PHI 35 to CLV -5. J.Cribbs to CLV 34 for 39 yards (J.Chaney; C.Marsh).,3,3,2012 -20120909_PHI@CLE,2,44,52,CLE,PHI,1,10,66,(14:52) T.Richardson left guard to CLV 39 for 5 yards (B.Graham).,3,3,2012 -20120909_PHI@CLE,2,44,22,CLE,PHI,2,5,61,(14:22) B.Weeden pass short right to T.Benjamin to PHI 49 for 12 yards (D.Rodgers-Cromartie).,3,3,2012 -20120909_PHI@CLE,2,43,49,CLE,PHI,1,10,49,(13:49) T.Richardson left guard to PHI 48 for 1 yard (M.Kendricks; T.Cole).,3,3,2012 -20120909_PHI@CLE,2,43,10,CLE,PHI,2,9,48,(13:10) T.Benjamin left end to PHI 13 for 35 yards (N.Asomugha). 16 Cribbs hands off to 80 Benjamin on reverse,3,3,2012 -20120909_PHI@CLE,2,42,25,CLE,PHI,1,10,13,(12:25) (Shotgun) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 -20120909_PHI@CLE,2,42,20,CLE,PHI,2,10,13,(12:20) (Shotgun) B.Weeden pass short middle intended for G.Little INTERCEPTED by K.Coleman at PHI 1. K.Coleman to PHI 7 for 6 yards (G.Little). Ball deflected off 95 Kendricks,3,3,2012 -20120909_PHI@CLE,2,42,11,PHI,CLE,1,10,93,(12:11) M.Vick pass short left to J.Maclin to PHI 12 for 5 yards (D.Patterson).,3,3,2012 -20120909_PHI@CLE,2,41,46,PHI,CLE,2,5,88,(11:46) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,41,38,PHI,CLE,3,5,88,(11:38) (Shotgun) M.Vick pass short left to J.Maclin to PHI 15 for 3 yards (D.Patterson). PHI-J.Maclin was injured during the play. His return is Questionable.,3,3,2012 -20120909_PHI@CLE,2,41,12,PHI,CLE,4,2,85,(11:12) C.Henry punts 60 yards to CLV 25 Center-J.Dorenbos. J.Cribbs to CLV 31 for 6 yards (K.Coleman).,3,3,2012 -20120909_PHI@CLE,2,41,0,CLE,PHI,1,10,69,(11:00) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 -20120909_PHI@CLE,2,40,56,CLE,PHI,2,10,69,(10:56) T.Richardson left guard to CLV 40 for 9 yards (K.Coleman).,3,3,2012 -20120909_PHI@CLE,2,40,13,CLE,PHI,3,1,60,(10:13) T.Richardson left guard to CLV 39 for -1 yards (D.Ryans).,3,3,2012 -20120909_PHI@CLE,2,39,41,CLE,PHI,4,2,61,(9:41) R.Hodges punts 42 yards to PHI 19 Center-C.Yount downed by CLV-B.Skrine.,3,3,2012 -20120909_PHI@CLE,2,39,27,PHI,CLE,1,10,81,(9:27) M.Vick scrambles right guard to PHI 30 for 11 yards (C.Robertson).,3,3,2012 -20120909_PHI@CLE,2,38,47,PHI,CLE,1,10,70,(8:47) (Shotgun) M.Vick pass incomplete short left to B.Celek [B.Skrine].,3,3,2012 -20120909_PHI@CLE,2,38,43,PHI,CLE,2,10,70,(8:43) L.McCoy left tackle to PHI 47 for 17 yards (J.Parker). PENALTY on PHI-J.Kelce Offensive Holding 10 yards enforced at PHI 30 - No Play.,3,3,2012 -20120909_PHI@CLE,2,38,21,PHI,CLE,2,20,80,(8:21) (Shotgun) M.Vick pass short left to B.Celek to PHI 29 for 9 yards (B.Winn; J.Haden).,3,3,2012 -20120909_PHI@CLE,2,37,40,PHI,CLE,3,11,71,(7:40) M.Vick pass incomplete short left to L.McCoy.,3,3,2012 -20120909_PHI@CLE,2,37,33,PHI,CLE,4,11,71,(7:33) C.Henry punts 52 yards to CLV 19 Center-J.Dorenbos. J.Cribbs to CLV 36 for 17 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,37,22,CLE,PHI,1,10,64,(7:22) (Shotgun) B.Weeden pass incomplete short right to G.Little.,3,3,2012 -20120909_PHI@CLE,2,37,18,CLE,PHI,2,10,64,(7:18) T.Richardson left tackle to CLV 35 for -1 yards (C.Jenkins).,3,3,2012 -20120909_PHI@CLE,2,36,35,CLE,PHI,3,11,65,(6:35) (Shotgun) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 26. D.Rodgers-Cromartie to PHI 26 for no gain (T.Benjamin).,3,3,2012 -20120909_PHI@CLE,2,36,28,PHI,CLE,1,10,74,(6:28) M.Vick sacked at PHI 16 for -10 yards (T.Ward).,3,3,2012 -20120909_PHI@CLE,2,36,1,PHI,CLE,2,20,84,(6:01) (Shotgun) M.Vick pass short right to L.McCoy pushed ob at PHI 23 for 7 yards (C.Robertson).,3,3,2012 -20120909_PHI@CLE,2,35,32,PHI,CLE,3,13,77,(5:32) (Shotgun) M.Vick pass short right to C.Harbor to PHI 33 for 10 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,35,1,PHI,CLE,4,3,67,(5:01) C.Henry punts 54 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 36 for 23 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,34,47,CLE,PHI,1,10,64,(4:47) PENALTY on PHI-F.Cox Encroachment 5 yards enforced at CLV 36 - No Play.,3,3,2012 -20120909_PHI@CLE,2,34,47,CLE,PHI,1,5,59,(4:47) B.Weeden pass short left to M.Massaquoi to CLV 45 for 4 yards (M.Kendricks).,3,3,2012 -20120909_PHI@CLE,2,34,16,CLE,PHI,2,1,55,(4:16) T.Richardson up the middle to CLV 45 for no gain (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,33,34,CLE,PHI,3,1,55,(3:34) B.Weeden pass short right to B.Jackson to PHI 49 for 6 yards (N.Allen).,3,3,2012 -20120909_PHI@CLE,2,33,4,CLE,PHI,1,10,49,(3:04) B.Weeden pass incomplete deep right to O.Marecic.,3,3,2012 -20120909_PHI@CLE,2,32,55,CLE,PHI,2,10,49,(2:55) B.Weeden pass incomplete short right to J.Gordon (N.Asomugha).,3,3,2012 -20120909_PHI@CLE,2,32,52,CLE,PHI,3,10,49,(2:52) (Shotgun) B.Weeden pass incomplete deep right to M.Massaquoi [J.Babin].,3,3,2012 -20120909_PHI@CLE,2,32,45,CLE,PHI,4,10,49,(2:45) R.Hodges punts 49 yards to end zone Center-C.Yount Touchback.,3,3,2012 -20120909_PHI@CLE,2,32,37,PHI,CLE,1,10,80,(2:37) L.McCoy right guard to PHI 30 for 10 yards (K.Maiava). PENALTY on PHI-J.Maclin Offensive Holding 10 yards enforced at PHI 30.,3,3,2012 -20120909_PHI@CLE,2,32,29,PHI,CLE,1,10,80,(2:29) (Shotgun) M.Vick pass short left to J.Maclin to PHI 24 for 4 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,31,59,PHI,CLE,2,6,76,(1:59) L.McCoy left tackle pushed ob at PHI 46 for 22 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,31,53,PHI,CLE,1,10,54,(1:53) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,3,3,2012 -20120909_PHI@CLE,2,31,47,PHI,CLE,2,10,54,(1:47) (Shotgun) M.Vick pass incomplete short left to J.Maclin.,3,3,2012 -20120909_PHI@CLE,2,31,42,PHI,CLE,3,10,54,(1:42) (Shotgun) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,31,35,PHI,CLE,4,10,54,(1:35) C.Henry punts 41 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 18 for 5 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,31,26,CLE,PHI,1,10,82,(1:26) T.Richardson left guard to CLV 21 for 3 yards (F.Cox).,3,3,2012 -20120909_PHI@CLE,2,31,6,CLE,PHI,2,7,79,(1:06) T.Richardson left guard to CLV 26 for 5 yards (J.Babin).,3,3,2012 -20120909_PHI@CLE,2,31,0,CLE,PHI,3,2,74,(1:00) B.Weeden pass incomplete short right to O.Marecic [J.Babin].,3,3,2012 -20120909_PHI@CLE,2,30,56,CLE,PHI,4,2,74,(:56) R.Hodges punts 49 yards to PHI 25 Center-C.Yount fair catch by D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,30,49,PHI,CLE,1,10,74,(:49) (Shotgun) M.Vick pass incomplete short left to L.McCoy (C.Robertson) [E.Hagg].,3,3,2012 -20120909_PHI@CLE,2,30,43,PHI,CLE,2,10,74,(:43) (Shotgun) M.Vick pass short left to L.McCoy ran ob at PHI 36 for 10 yards (J.Haden).,3,3,2012 -20120909_PHI@CLE,2,30,35,PHI,CLE,1,10,64,(:35) (Shotgun) M.Vick pass incomplete short right to L.McCoy.,3,3,2012 -20120909_PHI@CLE,2,30,30,PHI,CLE,2,10,64,(:30) (Shotgun) M.Vick pass deep left to J.Maclin to CLV 18 for 46 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,1,10,18,(:23) (Shotgun) M.Vick pass deep middle to J.Maclin for 18 yards TOUCHDOWN.,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery kicks 40 yards from PHI 35 to CLV 25. E.Stephens to CLV 32 for 7 yards (C.Marsh).,10,3,2012 -20120909_PHI@CLE,2,30,14,CLE,PHI,1,10,68,(:14) (Shotgun) B.Weeden pass incomplete deep left to T.Benjamin.,3,10,2012 -20120909_PHI@CLE,2,30,9,CLE,PHI,2,10,68,(:09) (Shotgun) B.Weeden pass short right to J.Gordon ran ob at PHI 48 for 20 yards (D.Ryans).,3,10,2012 -20120909_PHI@CLE,2,30,1,CLE,PHI,1,10,48,(:01) (Shotgun) B.Weeden scrambles left end to PHI 23 for 25 yards (D.Ryans).,3,10,2012 -20120909_PHI@CLE,3,30,0,PHI,CLE,,,48,A.Henery kicks 71 yards from PHI 35 to CLV -6. J.Cribbs to CLV 13 for 19 yards (B.Rolle).,10,3,2012 -20120909_PHI@CLE,3,29,56,CLE,PHI,1,10,87,(14:56) T.Richardson right guard to CLV 14 for 1 yard (J.Babin).,3,10,2012 -20120909_PHI@CLE,3,29,16,CLE,PHI,2,9,86,(14:16) (Shotgun) B.Weeden pass short middle to J.Gordon to CLV 26 for 12 yards (K.Coleman).,3,10,2012 -20120909_PHI@CLE,3,28,42,CLE,PHI,1,10,74,(13:42) B.Weeden sacked at CLV 19 for -7 yards (J.Babin). FUMBLES (J.Babin) recovered by CLV-J.Thomas at CLV 19. J.Thomas to CLV 26 for 7 yards.,3,10,2012 -20120909_PHI@CLE,3,27,57,CLE,PHI,2,10,74,(12:57) T.Richardson left guard to CLV 31 for 5 yards (C.Jenkins).,3,10,2012 -20120909_PHI@CLE,3,27,16,CLE,PHI,3,5,69,(12:16) B.Weeden pass incomplete short right to M.Massaquoi (B.Boykin).,3,10,2012 -20120909_PHI@CLE,3,27,9,CLE,PHI,4,5,69,(12:09) R.Hodges punts 54 yards to PHI 15 Center-C.Yount. D.Johnson to PHI 21 for 6 yards (J.Bademosi). PENALTY on PHI-B.Rolle Illegal Block Above the Waist 10 yards enforced at PHI 21.,3,10,2012 -20120909_PHI@CLE,3,26,59,PHI,CLE,1,10,89,(11:59) (Shotgun) M.Vick pass incomplete short right to C.Harbor (K.Maiava).,10,3,2012 -20120909_PHI@CLE,3,26,54,PHI,CLE,2,10,89,(11:54) (Shotgun) L.McCoy left guard to PHI 6 for -5 yards (B.Skrine).,10,3,2012 -20120909_PHI@CLE,3,26,11,PHI,CLE,3,15,94,(11:11) (Shotgun) M.Vick pass incomplete deep right to J.Maclin (A.Rubin). Penalty on PHI-D.Watkins Offensive Holding declined.,10,3,2012 -20120909_PHI@CLE,3,26,5,PHI,CLE,4,15,94,(11:05) C.Henry punts 61 yards to CLV 33 Center-J.Dorenbos. J.Cribbs to CLV 39 for 6 yards (A.Jordan).,10,3,2012 -20120909_PHI@CLE,3,25,52,CLE,PHI,1,10,61,(10:52) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 34. D.Rodgers-Cromartie to PHI 34 for no gain (G.Little). PENALTY on PHI-P.Hunt Unnecessary Roughness 15 yards enforced at PHI 34.,3,10,2012 -20120909_PHI@CLE,3,25,46,PHI,CLE,1,10,81,(10:46) L.McCoy right tackle to PHI 19 for no gain (F.Rucker).,10,3,2012 -20120909_PHI@CLE,3,25,10,PHI,CLE,2,10,81,(10:10) M.Vick pass incomplete short left to C.Harbor (D.Jackson).,10,3,2012 -20120909_PHI@CLE,3,25,6,PHI,CLE,3,10,81,(10:06) M.Vick pass short left to D.Johnson to PHI 29 for 10 yards (B.Skrine).,10,3,2012 -20120909_PHI@CLE,3,24,37,PHI,CLE,1,10,71,(9:37) L.McCoy right tackle to PHI 35 for 6 yards (A.Rubin; K.Maiava). Deflected off 52 Jackson,10,3,2012 -20120909_PHI@CLE,3,24,2,PHI,CLE,2,4,65,(9:02) (Shotgun) L.McCoy left tackle to PHI 38 for 3 yards (J.Haden).,10,3,2012 -20120909_PHI@CLE,3,23,17,PHI,CLE,3,1,62,(8:17) L.McCoy left tackle to PHI 39 for 1 yard (L.Fort).,10,3,2012 -20120909_PHI@CLE,3,22,30,PHI,CLE,1,10,61,(7:30) M.Vick pass short middle intended for C.Harbor INTERCEPTED by L.Fort at CLV 47. L.Fort to PHI 43 for 10 yards (C.Harbor).,10,3,2012 -20120909_PHI@CLE,3,22,19,CLE,PHI,1,10,46,(7:19) B.Weeden FUMBLES (Aborted) at PHI 43 recovered by CLV-T.Richardson at PHI 46.,3,10,2012 -20120909_PHI@CLE,3,21,40,CLE,PHI,2,13,46,(6:40) (Shotgun) B.Weeden pass short left to M.Massaquoi to PHI 33 for 13 yards (N.Allen; B.Boykin).,3,10,2012 -20120909_PHI@CLE,3,21,7,CLE,PHI,1,10,33,(6:07) B.Weeden sacked at PHI 40 for -7 yards (F.Cox). PENALTY on PHI Roughing the Passer 15 yards enforced at PHI 40.,3,10,2012 -20120909_PHI@CLE,3,20,48,CLE,PHI,1,10,25,(5:48) B.Weeden pass incomplete short left to J.Gordon (N.Asomugha).,3,10,2012 -20120909_PHI@CLE,3,20,42,CLE,PHI,2,10,25,(5:42) T.Richardson left tackle to PHI 24 for 1 yard (D.Ryans).,3,10,2012 -20120909_PHI@CLE,3,20,5,CLE,PHI,3,9,24,(5:05) (Shotgun) B.Weeden pass incomplete short middle to M.Massaquoi.,3,10,2012 -20120909_PHI@CLE,3,20,1,CLE,PHI,4,9,24,(5:01) (Field Goal formation) P.Dawson 42 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,3,10,2012 -20120909_PHI@CLE,3,20,1,CLE,PHI,,,24,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,6,10,2012 -20120909_PHI@CLE,3,19,57,PHI,CLE,1,10,80,(4:57) M.Vick pass incomplete short left to B.Celek [T.Ward].,10,6,2012 -20120909_PHI@CLE,3,19,54,PHI,CLE,2,10,80,(4:54) M.Vick pass short middle to C.Harbor to PHI 22 for 2 yards (K.Maiava).,10,6,2012 -20120909_PHI@CLE,3,19,8,PHI,CLE,3,8,78,(4:08) M.Vick pass short middle to L.McCoy to PHI 28 for 6 yards (C.Robertson).,10,6,2012 -20120909_PHI@CLE,3,18,33,PHI,CLE,4,2,72,(3:33) C.Henry punts 62 yards to CLV 10 Center-J.Dorenbos. J.Cribbs to CLV 31 for 21 yards (B.Rolle).,10,6,2012 -20120909_PHI@CLE,3,18,20,CLE,PHI,1,10,69,(3:20) B.Weeden pass incomplete short right to G.Little.,6,10,2012 -20120909_PHI@CLE,3,18,15,CLE,PHI,2,10,69,(3:15) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,6,10,2012 -20120909_PHI@CLE,3,18,13,CLE,PHI,3,10,69,(3:13) (Shotgun) B.Weeden pass incomplete short right to B.Jackson [J.Babin].,6,10,2012 -20120909_PHI@CLE,3,18,8,CLE,PHI,4,10,69,(3:08) R.Hodges punts 33 yards to PHI 36 Center-C.Yount downed by CLV-A.Smith.,6,10,2012 -20120909_PHI@CLE,3,17,57,PHI,CLE,1,10,64,(2:57) (Shotgun) M.Vick pass deep middle to B.Celek to CLV 36 for 28 yards (C.Robertson; E.Hagg).,10,6,2012 -20120909_PHI@CLE,3,17,15,PHI,CLE,1,10,36,(2:15) M.Vick pass incomplete short left to D.Jackson.,10,6,2012 -20120909_PHI@CLE,3,17,9,PHI,CLE,2,10,36,(2:09) (Shotgun) M.Vick pass incomplete short middle to D.Jackson (J.Sheard).,10,6,2012 -20120909_PHI@CLE,3,17,4,PHI,CLE,3,10,36,(2:04) (Shotgun) M.Vick pass short left intended for J.Maclin INTERCEPTED by J.Haden at CLV 28. J.Haden to PHI 22 for 50 yards (M.Vick). Penalty on PHI Offensive Holding declined.,10,6,2012 -20120909_PHI@CLE,3,16,53,CLE,PHI,1,10,22,(1:53) B.Weeden pass short right to T.Richardson to PHI 17 for 5 yards (M.Kendricks).,6,10,2012 -20120909_PHI@CLE,3,16,6,CLE,PHI,2,5,17,(1:06) T.Richardson right guard to PHI 12 for 5 yards (N.Allen).,6,10,2012 -20120909_PHI@CLE,3,15,21,CLE,PHI,1,10,12,(:21) (Shotgun) B.Weeden pass incomplete short right to A.Smith. PENALTY on PHI Defensive Holding 5 yards enforced at PHI 12 - No Play.,6,10,2012 -20120909_PHI@CLE,3,15,16,CLE,PHI,1,7,7,(:16) T.Richardson left guard to PHI 10 for -3 yards (C.Jenkins).,6,10,2012 -20120909_PHI@CLE,4,15,0,CLE,PHI,2,10,10,(15:00) (Shotgun) B.Weeden pass short right to B.Watson to PHI 4 for 6 yards (B.Boykin).,6,10,2012 -20120909_PHI@CLE,4,14,22,CLE,PHI,3,4,4,(14:22) B.Weeden pass incomplete short right to J.Cameron.,6,10,2012 -20120909_PHI@CLE,4,14,17,CLE,PHI,4,4,4,(14:17) P.Dawson 22 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,6,10,2012 -20120909_PHI@CLE,4,14,17,CLE,PHI,,,4,P.Dawson kicks 64 yards from CLV 35 to PHI 1. B.Boykin to PHI 18 for 17 yards (B.Skrine; C.Robertson).,9,10,2012 -20120909_PHI@CLE,4,14,15,PHI,CLE,1,10,82,(14:15) PENALTY on PHI-E.Mathis False Start 5 yards enforced at PHI 18 - No Play.,10,9,2012 -20120909_PHI@CLE,4,14,10,PHI,CLE,1,15,87,(14:10) M.Vick pass short left intended for J.Maclin INTERCEPTED by D.Jackson at PHI 27. D.Jackson for 27 yards TOUCHDOWN.,10,9,2012 -20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,9,10,2012 -20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,16,10,2012 -20120909_PHI@CLE,4,13,59,PHI,CLE,1,10,80,(13:59) L.McCoy right tackle to PHI 35 for 15 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,13,24,PHI,CLE,1,10,65,(13:24) L.McCoy right tackle ran ob at PHI 40 for 5 yards (K.Maiava).,10,16,2012 -20120909_PHI@CLE,4,13,3,PHI,CLE,2,5,60,(13:03) L.McCoy left tackle to PHI 47 for 7 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,12,25,PHI,CLE,1,10,53,(12:25) B.Brown right guard to CLV 49 for 4 yards (F.Rucker; C.Robertson).,10,16,2012 -20120909_PHI@CLE,4,11,50,PHI,CLE,2,6,49,(11:50) M.Vick pass incomplete short right to J.Maclin (B.Skrine).,10,16,2012 -20120909_PHI@CLE,4,11,46,PHI,CLE,3,6,49,(11:46) (Shotgun) M.Vick pass short left to J.Avant to CLV 41 for 8 yards (J.Haden).,10,16,2012 -20120909_PHI@CLE,4,11,9,PHI,CLE,1,10,41,(11:09) L.McCoy right tackle to CLV 28 for 13 yards (E.Stephens).,10,16,2012 -20120909_PHI@CLE,4,10,27,PHI,CLE,1,10,28,(10:27) (Shotgun) M.Vick pass short left to L.McCoy to CLV 29 for -1 yards (I.Kitchen).,10,16,2012 -20120909_PHI@CLE,4,9,51,PHI,CLE,2,11,29,(9:51) L.McCoy right tackle to CLV 27 for 2 yards (E.Stephens).,10,16,2012 -20120909_PHI@CLE,4,9,13,PHI,CLE,3,9,27,(9:13) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 -20120909_PHI@CLE,4,9,4,PHI,CLE,4,9,27,(9:04) A.Henery 45 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-C.Henry.,10,16,2012 -20120909_PHI@CLE,4,9,1,CLE,PHI,1,10,65,(9:01) T.Richardson left guard to CLV 39 for 4 yards (K.Coleman).,16,10,2012 -20120909_PHI@CLE,4,8,24,CLE,PHI,2,6,61,(8:24) T.Richardson right guard to CLV 41 for 2 yards (D.Tapp).,16,10,2012 -20120909_PHI@CLE,4,7,49,CLE,PHI,3,4,59,(7:49) B.Weeden pass short right to B.Jackson pushed ob at PHI 45 for 14 yards (N.Allen).,16,10,2012 -20120909_PHI@CLE,4,7,24,CLE,PHI,1,10,45,(7:24) T.Richardson right guard to PHI 46 for -1 yards (T.Cole).,16,10,2012 -20120909_PHI@CLE,4,6,41,CLE,PHI,2,11,46,(6:41) B.Weeden pass incomplete short left to G.Little.,16,10,2012 -20120909_PHI@CLE,4,6,37,CLE,PHI,3,11,46,(6:37) (Shotgun) B.Weeden pass incomplete short left to B.Jackson (N.Asomugha).,16,10,2012 -20120909_PHI@CLE,4,6,33,CLE,PHI,4,11,46,(6:33) R.Hodges punts 37 yards to PHI 9 Center-C.Yount fair catch by D.Johnson.,16,10,2012 -20120909_PHI@CLE,4,6,25,PHI,CLE,1,10,91,(6:25) (Shotgun) M.Vick pass incomplete deep left to B.Celek.,10,16,2012 -20120909_PHI@CLE,4,6,20,PHI,CLE,2,10,91,(6:20) (Shotgun) M.Vick pass short middle to J.Avant to PHI 17 for 8 yards (D.Patterson).,10,16,2012 -20120909_PHI@CLE,4,5,56,PHI,CLE,3,2,83,(5:56) (No Huddle) M.Vick pass short left to J.Avant to PHI 23 for 6 yards (C.Robertson).,10,16,2012 -20120909_PHI@CLE,4,5,27,PHI,CLE,1,10,77,(5:27) (No Huddle) L.McCoy right guard to PHI 26 for 3 yards (J.Sheard).,10,16,2012 -20120909_PHI@CLE,4,4,58,PHI,CLE,2,7,74,(4:58) (No Huddle Shotgun) M.Vick pass incomplete deep left to J.Maclin. PENALTY on CLV-A.Rubin Roughing the Passer 15 yards enforced at PHI 26 - No Play. Penalty on CLV-B.Skrine Defensive Holding declined.,10,16,2012 -20120909_PHI@CLE,4,4,50,PHI,CLE,1,10,59,(4:50) (Shotgun) M.Vick pass short left to D.Jackson to 50 for 9 yards.,10,16,2012 -20120909_PHI@CLE,4,4,23,PHI,CLE,2,1,50,(4:23) (No Huddle) L.McCoy left tackle to CLV 43 for 7 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,3,56,PHI,CLE,1,10,43,(3:56) (No Huddle Shotgun) M.Vick pass short left to J.Maclin to CLV 32 for 11 yards (B.Skrine).,10,16,2012 -20120909_PHI@CLE,4,3,24,PHI,CLE,1,10,32,(3:24) (No Huddle Shotgun) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 -20120909_PHI@CLE,4,3,18,PHI,CLE,2,10,32,(3:18) (Shotgun) M.Vick pass incomplete short middle to J.Avant (E.Hagg).,10,16,2012 -20120909_PHI@CLE,4,3,14,PHI,CLE,3,10,32,(3:14) (Shotgun) M.Vick scrambles left end to CLV 23 for 9 yards (A.Rubin). FUMBLES (A.Rubin) and recovers at CLV 23. M.Vick to CLV 23 for no gain (A.Rubin).,10,16,2012 -20120909_PHI@CLE,4,2,50,PHI,CLE,4,1,23,(2:50) L.McCoy right tackle to CLV 20 for 3 yards (K.Maiava).,10,16,2012 -20120909_PHI@CLE,4,2,17,PHI,CLE,1,10,20,(2:17) M.Vick pass incomplete deep middle to J.Maclin [A.Rubin].,10,16,2012 -20120909_PHI@CLE,4,2,12,PHI,CLE,2,10,20,(2:12) M.Vick pass short right to B.Celek to CLV 3 for 17 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,2,0,PHI,CLE,1,3,3,(2:00) B.Brown right guard to CLV 4 for -1 yards (D.Jackson).,10,16,2012 -20120909_PHI@CLE,4,1,29,PHI,CLE,2,4,4,(1:29) M.Vick pass incomplete short right to J.Maclin (L.Fort).,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,3,4,4,(1:23) (Shotgun) M.Vick pass short right to C.Harbor for 4 yards TOUCHDOWN.,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery kicks 68 yards from PHI 35 to CLV -3. J.Cribbs to CLV 30 for 33 yards (J.Avant). PHI-B.Boykin was injured during the play. His return is Questionable.,17,16,2012 -20120909_PHI@CLE,4,1,12,CLE,PHI,1,10,70,(1:12) (Shotgun) B.Weeden pass deep right intended for M.Massaquoi INTERCEPTED by K.Coleman at CLV 47. K.Coleman to CLV 40 for 7 yards.,16,17,2012 -20120909_PHI@CLE,4,1,5,PHI,CLE,1,10,40,(1:05) M.Vick kneels to CLV 41 for -1 yards.,17,16,2012 -20120909_PHI@CLE,4,1,2,PHI,CLE,2,11,41,(1:02) M.Vick kneels to CLV 43 for -2 yards.,17,16,2012 -20120909_PHI@CLE,4,0,29,PHI,CLE,3,13,43,(:29) M.Vick kneels to CLV 44 for -1 yards.,17,16,2012 -20120909_PHI@CLE,4,0,29,PHI,CLE,,,43,                      ,17,16,2012 -20120909_STL@DET,1,0,0,STL,DET,,,43,G.Zuerlein kicks 73 yards from SL 35 to DET -8. S.Logan Touchback.,0,0,2012 -20120909_STL@DET,1,60,0,DET,STL,1,10,80,(15:00) N.Burleson right end to DET 26 for 6 yards (J.Jenkins; Q.Mikell).,0,0,2012 -20120909_STL@DET,1,59,24,DET,STL,2,4,74,(14:24) (Shotgun) M.Stafford pass short right to C.Johnson to DET 30 for 4 yards (B.Fletcher).,0,0,2012 -20120909_STL@DET,1,58,45,DET,STL,1,10,70,(13:45) (Shotgun) K.Smith right tackle to DET 36 for 6 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,58,5,DET,STL,2,4,64,(13:05) (Shotgun) M.Stafford pass short right to W.Heller to DET 41 for 5 yards (J.Jenkins).,0,0,2012 -20120909_STL@DET,1,57,28,DET,STL,1,10,59,(12:28) M.Stafford pass short left to N.Burleson to DET 46 for 5 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,56,47,DET,STL,2,5,54,(11:47) (Shotgun) S.Logan right end to DET 47 for 1 yard (C.Finnegan; J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,56,9,DET,STL,3,4,53,(11:09) (Shotgun) M.Stafford pass short left to T.Scheffler to SL 43 for 10 yards (J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,55,40,DET,STL,1,10,43,(10:40) (No Huddle) PENALTY on SL-K.Langford Neutral Zone Infraction 5 yards enforced at SL 43 - No Play.,0,0,2012 -20120909_STL@DET,1,55,18,DET,STL,1,5,38,(10:18) (Shotgun) M.Stafford pass short left to B.Pettigrew to SL 32 for 6 yards (J.Dunbar).,0,0,2012 -20120909_STL@DET,1,54,47,DET,STL,1,10,32,(9:47) K.Smith left end to SL 26 for 6 yards (J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,54,9,DET,STL,2,4,26,(9:09) M.Stafford pass short right to K.Smith pushed ob at SL 17 for 9 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,53,38,DET,STL,1,10,17,(8:38) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew.,0,0,2012 -20120909_STL@DET,1,53,33,DET,STL,2,10,17,(8:33) (Shotgun) M.Stafford pass short middle to W.Heller to SL 3 for 14 yards (Q.Mikell).,0,0,2012 -20120909_STL@DET,1,52,54,DET,STL,1,3,3,(7:54) M.Stafford pass short right intended for T.Scheffler INTERCEPTED by J.Jenkins at SL 0. J.Jenkins to SL 34 for 34 yards (K.Smith).,0,0,2012 -20120909_STL@DET,1,52,46,STL,DET,1,10,66,(7:46) S.Jackson right tackle to SL 34 for no gain (J.Durant; D.Levy).,0,0,2012 -20120909_STL@DET,1,52,8,STL,DET,2,10,66,(7:08) S.Jackson left tackle to SL 36 for 2 yards (J.Durant). PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SL 34 - No Play.,0,0,2012 -20120909_STL@DET,1,51,46,STL,DET,2,20,76,(6:46) S.Bradford pass short right to S.Jackson to SL 36 for 12 yards (E.Coleman; S.Tulloch).,0,0,2012 -20120909_STL@DET,1,51,2,STL,DET,3,8,64,(6:02) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 49 for 15 yards (D.Levy).,0,0,2012 -20120909_STL@DET,1,50,23,STL,DET,1,10,49,(5:23) S.Bradford pass short right to L.Kendricks to DET 41 for 8 yards (J.Lacey).,0,0,2012 -20120909_STL@DET,1,49,48,STL,DET,2,2,41,(4:48) S.Jackson left tackle to DET 40 for 1 yard (SamL.Hill).,0,0,2012 -20120909_STL@DET,1,49,13,STL,DET,3,1,40,(4:13) S.Jackson left tackle to DET 33 for 7 yards (J.Durant).,0,0,2012 -20120909_STL@DET,1,48,34,STL,DET,1,10,33,(3:34) S.Jackson right tackle to DET 32 for 1 yard (SamL.Hill).,0,0,2012 -20120909_STL@DET,1,47,51,STL,DET,2,9,32,(2:51) (Shotgun) S.Bradford pass incomplete deep right to S.Smith. PENALTY on SL-B.Gibson Unnecessary Roughness 15 yards enforced at DET 32.,0,0,2012 -20120909_STL@DET,1,47,45,STL,DET,3,24,47,(2:45) (Shotgun) S.Bradford pass short left to D.Amendola to DET 30 for 17 yards (J.Lacey J.Wendling) [C.Avril].,0,0,2012 -20120909_STL@DET,1,47,2,STL,DET,4,7,30,(2:02) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20120909_STL@DET,1,47,2,STL,DET,,,30,G.Zuerlein kicks 74 yards from SL 35 to DET -9. S.Logan Touchback.,3,0,2012 -20120909_STL@DET,1,46,57,DET,STL,1,10,80,(1:57) (Shotgun) M.Stafford pass incomplete short left to N.Burleson [C.Long].,0,3,2012 -20120909_STL@DET,1,46,53,DET,STL,2,10,80,(1:53) (Shotgun) K.Smith left tackle to DET 25 for 5 yards (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,1,46,15,DET,STL,3,5,75,(1:15) (Shotgun) M.Stafford pass short right to N.Burleson to DET 30 for 5 yards (C.Dahl).,0,3,2012 -20120909_STL@DET,1,45,31,DET,STL,1,10,70,(:31) T.Young left end pushed ob at DET 41 for 11 yards (Q.Mikell).,0,3,2012 -20120909_STL@DET,2,45,0,DET,STL,1,10,59,(15:00) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 49 for 8 yards (J.Jenkins; J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,44,17,DET,STL,2,2,51,(14:17) K.Smith left tackle to DET 47 for -2 yards (J.Dunbar).,0,3,2012 -20120909_STL@DET,2,43,36,DET,STL,3,4,53,(13:36) (Shotgun) M.Stafford pass short left to C.Johnson to SL 45 for 8 yards (B.Fletcher).,0,3,2012 -20120909_STL@DET,2,43,0,DET,STL,1,10,45,(13:00) K.Smith left tackle pushed ob at SL 26 for 19 yards (R.Quinn).,0,3,2012 -20120909_STL@DET,2,42,38,DET,STL,1,10,26,(12:38) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to SL 17 for 9 yards (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,42,8,DET,STL,2,1,17,(12:08) (No Huddle Shotgun) M.Stafford pass short left to T.Scheffler to SL 13 for 4 yards (C.Finnegan).,0,3,2012 -20120909_STL@DET,2,41,36,DET,STL,1,10,13,(11:36) (No Huddle) K.Williams left tackle to SL 11 for 2 yards (Q.Mikell J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,40,56,DET,STL,2,8,11,(10:56) (Shotgun) M.Stafford pass short middle to C.Johnson to SL 1 for 10 yards (C.Dahl).,0,3,2012 -20120909_STL@DET,2,40,24,DET,STL,1,1,1,(10:24) (No Huddle) K.Smith left tackle to SL 1 for no gain (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,2,1,1,(9:46) J.Bell up the middle for 1 yard TOUCHDOWN.,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson kicks 73 yards from DET 35 to SL -8. I.Pead Touchback.,7,3,2012 -20120909_STL@DET,2,39,26,STL,DET,1,10,80,(9:26) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 -20120909_STL@DET,2,39,22,STL,DET,2,10,80,(9:22) S.Jackson up the middle to SL 18 for -2 yards (N.Suh).,3,7,2012 -20120909_STL@DET,2,38,42,STL,DET,3,12,82,(8:42) (Shotgun) S.Bradford pass incomplete deep right to C.Givens (D.Florence).,3,7,2012 -20120909_STL@DET,2,38,32,STL,DET,4,12,82,(8:32) J.Hekker to SL 6 for -12 yards. FUMBLES and recovers at SL 7. J.Hekker punts 50 yards to DET 32. S.Logan to SL 47 for 21 yards (C.Dahl). PENALTY on SL-C.Dahl Horse Collar Tackle 15 yards enforced at SL 47.,3,7,2012 -20120909_STL@DET,2,38,19,DET,STL,1,10,32,(8:19) (Shotgun) K.Smith up the middle to SL 30 for 2 yards (R.Quinn).,7,3,2012 -20120909_STL@DET,2,37,54,DET,STL,2,8,30,(7:54) (No Huddle Shotgun) M.Stafford pass short middle to T.Young to SL 16 for 14 yards (J.Jenkins).,7,3,2012 -20120909_STL@DET,2,37,17,DET,STL,1,10,16,(7:17) (Shotgun) M.Stafford pass short left intended for B.Pettigrew INTERCEPTED by J.Dunbar at SL 14. J.Dunbar to DET 44 for 42 yards (K.Smith).,7,3,2012 -20120909_STL@DET,2,37,5,STL,DET,1,10,44,(7:05) S.Jackson up the middle to DET 35 for 9 yards (E.Coleman J.Wendling).,3,7,2012 -20120909_STL@DET,2,36,33,STL,DET,2,1,35,(6:33) S.Jackson left tackle to DET 32 for 3 yards (E.Coleman).,3,7,2012 -20120909_STL@DET,2,35,54,STL,DET,1,10,32,(5:54) S.Bradford pass short right to S.Jackson to DET 22 for 10 yards (S.Tulloch) [C.Avril].,3,7,2012 -20120909_STL@DET,2,35,14,STL,DET,1,10,22,(5:14) D.Richardson left end to DET 11 for 11 yards (K.Vanden Bosch).,3,7,2012 -20120909_STL@DET,2,34,35,STL,DET,1,10,11,(4:35) S.Jackson left tackle to DET 10 for 1 yard (N.Fairley; S.Tulloch).,3,7,2012 -20120909_STL@DET,2,33,56,STL,DET,2,9,10,(3:56) (Shotgun) S.Bradford pass short left to S.Jackson to DET 6 for 4 yards (E.Coleman).,3,7,2012 -20120909_STL@DET,2,33,17,STL,DET,3,5,6,(3:17) (Shotgun) S.Bradford sacked at DET 11 for -5 yards (N.Fairley).,3,7,2012 -20120909_STL@DET,2,32,39,STL,DET,4,10,11,(2:39) G.Zuerlein 29 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,7,2012 -20120909_STL@DET,2,32,39,STL,DET,,,11,G.Zuerlein kicks 70 yards from SL 35 to DET -5. S.Logan to DET 13 for 18 yards (R.McLeod).,6,7,2012 -20120909_STL@DET,2,32,30,DET,STL,1,10,87,(2:30) (Shotgun) M.Stafford pass short left to K.Williams to DET 17 for 4 yards (J.Dunbar).,7,6,2012 -20120909_STL@DET,2,32,0,DET,STL,2,6,83,(2:00) (Shotgun) M.Stafford pass short left to K.Smith to DET 23 for 6 yards (J.Jenkins).,7,6,2012 -20120909_STL@DET,2,31,36,DET,STL,1,10,77,(1:36) (No Huddle Shotgun) M.Stafford pass short right intended for C.Johnson INTERCEPTED by C.Finnegan at DET 31. C.Finnegan for 31 yards TOUCHDOWN. PENALTY on DET-T.Young Unnecessary Roughness 15 yards enforced between downs. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,7,6,2012 -20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,7,2012 -20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein kicks 27 yards from 50 to DET 23. W.Heller to DET 24 for 1 yard (Q.Pointer; M.Daniels).,13,7,2012 -20120909_STL@DET,2,31,24,DET,STL,1,10,76,(1:24) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 25 for 51 yards (C.Dahl).,7,13,2012 -20120909_STL@DET,2,30,43,DET,STL,1,10,25,(:43) (No Huddle Shotgun) K.Smith right tackle to SL 23 for 2 yards (J.Dunbar).,7,13,2012 -20120909_STL@DET,2,30,39,DET,STL,2,8,23,(:39) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,7,13,2012 -20120909_STL@DET,2,30,33,DET,STL,3,8,23,(:33) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (B.Fletcher).,7,13,2012 -20120909_STL@DET,2,30,25,DET,STL,4,8,23,(:25) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,7,13,2012 -20120909_STL@DET,2,30,25,DET,STL,,,23,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,10,13,2012 -20120909_STL@DET,2,30,18,STL,DET,1,10,80,(:18) S.Bradford kneels to SL 19 for -1 yards.,13,10,2012 -20120909_STL@DET,3,30,0,DET,STL,,,80,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead to SL 20 for 25 yards (K.Williams).,10,13,2012 -20120909_STL@DET,3,29,55,STL,DET,1,10,80,(14:55) S.Jackson right tackle to SL 26 for 6 yards (C.Williams; K.Vanden Bosch).,13,10,2012 -20120909_STL@DET,3,29,11,STL,DET,2,4,74,(14:11) S.Jackson left tackle to SL 27 for 1 yard (S.Tulloch; C.Avril).,13,10,2012 -20120909_STL@DET,3,28,31,STL,DET,3,3,73,(13:31) (Shotgun) PENALTY on SL-R.Saffold False Start 5 yards enforced at SL 27 - No Play.,13,10,2012 -20120909_STL@DET,3,28,7,STL,DET,3,8,78,(13:07) (Shotgun) S.Bradford sacked at SL 10 for -12 yards (N.Suh).,13,10,2012 -20120909_STL@DET,3,27,36,STL,DET,4,20,90,(12:36) J.Hekker punts 46 yards to DET 44 Center-J.McQuaide. S.Logan to SL 41 for 15 yards (J.Hull).,13,10,2012 -20120909_STL@DET,3,27,23,DET,STL,1,10,41,(12:23) M.Stafford pass short left to N.Burleson pushed ob at SL 31 for 10 yards (J.Jenkins).,10,13,2012 -20120909_STL@DET,3,26,56,DET,STL,1,10,31,(11:56) K.Smith left tackle to SL 30 for 1 yard (Q.Mikell).,10,13,2012 -20120909_STL@DET,3,26,13,DET,STL,2,9,30,(11:13) (Shotgun) M.Stafford sacked at SL 39 for -9 yards (R.Quinn).,10,13,2012 -20120909_STL@DET,3,25,36,DET,STL,3,18,39,(10:36) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at SL 39 - No Play.,10,13,2012 -20120909_STL@DET,3,25,17,DET,STL,3,13,34,(10:17) (Shotgun) M.Stafford pass short middle to N.Burleson to SL 26 for 8 yards (C.Dahl).,10,13,2012 -20120909_STL@DET,3,24,34,DET,STL,4,5,26,(9:34) J.Hanson 45 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,10,13,2012 -20120909_STL@DET,3,24,34,DET,STL,,,26,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,13,13,2012 -20120909_STL@DET,3,24,29,STL,DET,1,10,80,(9:29) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 29 for 9 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,23,49,STL,DET,2,1,71,(8:49) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 6 yards (S.Tulloch). PENALTY on SL-R.Watkins Offensive Holding 10 yards enforced at SL 29 - No Play.,13,13,2012 -20120909_STL@DET,3,23,24,STL,DET,2,11,81,(8:24) S.Bradford pass incomplete deep right to D.Amendola [C.Williams]. Game delayed due to injury to game official. #16-Paul Caldera out. Replaced by alternate official #124-Curtis Adams.,13,13,2012 -20120909_STL@DET,3,23,18,STL,DET,3,11,81,(8:18) (Shotgun) S.Bradford pass short right to S.Jackson to SL 24 for 5 yards (S.Tulloch).,13,13,2012 -20120909_STL@DET,3,22,43,STL,DET,4,6,76,(7:43) J.Hekker punts 45 yards to DET 31 Center-J.McQuaide. S.Logan pushed ob at DET 45 for 14 yards (R.McLeod).,13,13,2012 -20120909_STL@DET,3,22,30,DET,STL,1,10,55,(7:30) (Shotgun) K.Smith right tackle to SL 47 for 8 yards (K.Langford).,13,13,2012 -20120909_STL@DET,3,21,48,DET,STL,2,2,47,(6:48) (Shotgun) M.Stafford pass short right to S.Logan to SL 48 for -1 yards (C.Finnegan R.McIntosh).,13,13,2012 -20120909_STL@DET,3,21,7,DET,STL,3,3,48,(6:07) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,13,13,2012 -20120909_STL@DET,3,21,3,DET,STL,4,3,48,(6:03) B.Graham punts 40 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola. PENALTY on DET-D.Hogue Illegal Formation 5 yards enforced at SL 8.,13,13,2012 -20120909_STL@DET,3,20,55,STL,DET,1,10,87,(5:55) S.Jackson left tackle to SL 16 for 3 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,20,16,STL,DET,2,7,84,(5:16) S.Bradford pass short right to L.Kendricks to SL 24 for 8 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,19,36,STL,DET,1,10,76,(4:36) S.Bradford pass incomplete deep left to S.Smith [L.Jackson].,13,13,2012 -20120909_STL@DET,3,19,30,STL,DET,2,10,76,(4:30) (Shotgun) S.Bradford pass short left to B.Gibson to SL 31 for 7 yards (D.Bentley).,13,13,2012 -20120909_STL@DET,3,18,47,STL,DET,3,3,69,(3:47) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,13,13,2012 -20120909_STL@DET,3,18,43,STL,DET,4,3,69,(3:43) J.Hekker punts 43 yards to DET 26 Center-J.McQuaide. S.Logan to DET 35 for 9 yards (C.Givens).,13,13,2012 -20120909_STL@DET,3,18,30,DET,STL,1,10,65,(3:30) M.Stafford pass incomplete deep left to T.Scheffler (C.Finnegan).,13,13,2012 -20120909_STL@DET,3,18,24,DET,STL,2,10,65,(3:24) (Shotgun) M.Stafford pass incomplete deep right to T.Young.,13,13,2012 -20120909_STL@DET,3,18,19,DET,STL,3,10,65,(3:19) (Shotgun) M.Stafford pass deep middle to N.Burleson to SL 44 for 21 yards (C.Finnegan).,13,13,2012 -20120909_STL@DET,3,17,37,DET,STL,1,10,44,(2:37) K.Smith left tackle to SL 47 for -3 yards (J.Dunbar).,13,13,2012 -20120909_STL@DET,3,16,58,DET,STL,2,13,47,(1:58) (Shotgun) M.Stafford pass short middle to M.Stafford to SL 44 for 3 yards (C.Finnegan). Ball was deflected at the line by SL #92-E. Sims.,13,13,2012 -20120909_STL@DET,3,16,10,DET,STL,3,10,44,(1:10) (Shotgun) M.Stafford pass incomplete short left to K.Smith.,13,13,2012 -20120909_STL@DET,3,16,5,DET,STL,4,10,44,(1:05) B.Graham punts 36 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola.,13,13,2012 -20120909_STL@DET,3,15,57,STL,DET,1,10,92,(:57) S.Jackson left tackle to SL 14 for 6 yards (C.Williams; J.Durant).,13,13,2012 -20120909_STL@DET,3,15,14,STL,DET,2,4,86,(:14) S.Jackson left end to SL 20 for 6 yards (J.Durant; E.Coleman).,13,13,2012 -20120909_STL@DET,4,15,0,STL,DET,1,10,80,(15:00) S.Jackson up the middle to SL 21 for 1 yard (S.Tulloch; K.Vanden Bosch).,13,13,2012 -20120909_STL@DET,4,14,22,STL,DET,2,9,79,(14:22) S.Bradford sacked at SL 16 for -5 yards (C.Williams). FUMBLES (C.Williams) recovered by SL-H.Dahl at SL 13. H.Dahl to SL 13 for no gain (J.Durant).,13,13,2012 -20120909_STL@DET,4,13,44,STL,DET,3,17,87,(13:44) (Shotgun) D.Richardson right end to SL 22 for 9 yards (S.Tulloch).,13,13,2012 -20120909_STL@DET,4,13,5,STL,DET,4,8,78,(13:05) J.Hekker punts 57 yards to DET 21 Center-J.McQuaide. S.Logan to DET 15 for -6 yards (Q.Pointer). PENALTY on DET-J.Green Offensive Holding 7 yards enforced at DET 15.,13,13,2012 -20120909_STL@DET,4,12,54,DET,STL,1,10,92,(12:54) (Shotgun) M.Stafford pass incomplete short right to K.Smith.,13,13,2012 -20120909_STL@DET,4,12,50,DET,STL,2,10,92,(12:50) M.Stafford pass incomplete deep middle to T.Young.,13,13,2012 -20120909_STL@DET,4,12,45,DET,STL,3,10,92,(12:45) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,13,13,2012 -20120909_STL@DET,4,12,39,DET,STL,4,10,92,(12:39) B.Graham punts 45 yards to SL 47 Center-D.Muhlbach. D.Amendola to DET 47 for 6 yards (W.Heller).,13,13,2012 -20120909_STL@DET,4,12,27,STL,DET,1,10,47,(12:27) D.Amendola left end to DET 45 for 2 yards (C.Williams).,13,13,2012 -20120909_STL@DET,4,11,49,STL,DET,2,8,45,(11:49) S.Jackson up the middle to DET 40 for 5 yards (A.Spievey).,13,13,2012 -20120909_STL@DET,4,11,8,STL,DET,3,3,40,(11:08) S.Bradford pass short middle to S.Smith to DET 24 for 16 yards (D.Florence).,13,13,2012 -20120909_STL@DET,4,10,33,STL,DET,1,10,24,(10:33) S.Jackson left end to DET 23 for 1 yard (S.Tulloch; J.Wendling).,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,2,9,23,(9:51) (Shotgun) S.Bradford pass deep left to B.Gibson for 23 yards TOUCHDOWN. SL-R.Saffold was injured during the play. He is Out.,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,20,13,2012 -20120909_STL@DET,4,9,45,DET,STL,1,10,80,(9:45) M.Stafford pass short right to B.Pettigrew to DET 40 for 20 yards (J.Laurinaitis; B.Fletcher).,13,20,2012 -20120909_STL@DET,4,9,5,DET,STL,1,10,60,(9:05) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at SL 42 for 18 yards (Q.Mikell; J.Dunbar).,13,20,2012 -20120909_STL@DET,4,8,34,DET,STL,1,10,42,(8:34) (Shotgun) K.Smith left tackle to SL 29 for 13 yards (C.Dahl).,13,20,2012 -20120909_STL@DET,4,7,57,DET,STL,1,10,29,(7:57) (Shotgun) M.Stafford pass deep middle to B.Pettigrew to SL 5 for 24 yards (Q.Mikell) [R.Quinn].,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,1,5,5,(7:24) (No Huddle) K.Smith left tackle for 5 yards TOUCHDOWN.,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead Touchback.,20,20,2012 -20120909_STL@DET,4,7,19,STL,DET,1,10,80,(7:19) S.Bradford pass incomplete short right to B.Gibson.,20,20,2012 -20120909_STL@DET,4,7,13,STL,DET,2,10,80,(7:13) (Shotgun) S.Bradford pass short middle to M.McNeill to SL 30 for 10 yards (J.Durant; D.Levy).,20,20,2012 -20120909_STL@DET,4,6,43,STL,DET,1,10,70,(6:43) S.Jackson up the middle to SL 31 for 1 yard (C.Williams; S.Tulloch).,20,20,2012 -20120909_STL@DET,4,6,5,STL,DET,2,9,69,(6:05) S.Bradford pass short right to B.Gibson pushed ob at SL 41 for 10 yards (J.Wendling).,20,20,2012 -20120909_STL@DET,4,5,41,STL,DET,1,10,59,(5:41) S.Jackson left end to SL 45 for 4 yards (D.Levy).,20,20,2012 -20120909_STL@DET,4,5,0,STL,DET,2,6,55,(5:00) S.Jackson left tackle to SL 46 for 1 yard (K.Vanden Bosch).,20,20,2012 -20120909_STL@DET,4,4,18,STL,DET,3,5,54,(4:18) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 40 for 14 yards (E.Coleman).,20,20,2012 -20120909_STL@DET,4,3,42,STL,DET,1,10,40,(3:42) S.Jackson right tackle to DET 40 for no gain (D.Levy).,20,20,2012 -20120909_STL@DET,4,2,59,STL,DET,2,10,40,(2:59) (Shotgun) S.Bradford pass short right to B.Gibson to DET 29 for 11 yards (D.Florence) [N.Fairley].,20,20,2012 -20120909_STL@DET,4,2,51,STL,DET,1,10,29,(2:51) S.Jackson right tackle to DET 31 for -2 yards (J.Durant).,20,20,2012 -20120909_STL@DET,4,2,45,STL,DET,2,12,31,(2:45) (Shotgun) S.Bradford scrambles right end to DET 28 for 3 yards (J.Durant).,20,20,2012 -20120909_STL@DET,4,2,3,STL,DET,3,9,28,(2:03) (Shotgun) S.Bradford pass incomplete short left to D.Amendola.,20,20,2012 -20120909_STL@DET,4,2,0,STL,DET,4,9,28,(2:00) G.Zuerlein 46 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,20,20,2012 -20120909_STL@DET,4,2,0,STL,DET,,,28,G.Zuerlein kicks 72 yards from SL 35 to DET -7. S.Logan Touchback.,23,20,2012 -20120909_STL@DET,4,1,55,DET,STL,1,10,80,(1:55) (Shotgun) M.Stafford pass deep middle to C.Johnson to DET 40 for 20 yards (C.Dahl).,20,23,2012 -20120909_STL@DET,4,1,30,DET,STL,1,10,60,(1:30) (No Huddle Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (B.Fletcher).,20,23,2012 -20120909_STL@DET,4,1,25,DET,STL,2,10,60,(1:25) (Shotgun) M.Stafford pass short left to N.Burleson to SL 40 for 20 yards (C.Dahl).,20,23,2012 -20120909_STL@DET,4,1,0,DET,STL,1,10,40,(1:00) (No Huddle Shotgun) M.Stafford pass short middle to T.Scheffler to SL 35 for 5 yards (C.Finnegan).,20,23,2012 -20120909_STL@DET,4,0,40,DET,STL,2,5,35,(:40) (No Huddle Shotgun) M.Stafford pass short middle to K.Smith to SL 26 for 9 yards (R.McIntosh).,20,23,2012 -20120909_STL@DET,4,0,35,DET,STL,1,10,26,(:35) (Shotgun) M.Stafford pass short right to T.Scheffler pushed ob at SL 23 for 3 yards (C.Finnegan).,20,23,2012 -20120909_STL@DET,4,0,30,DET,STL,2,7,23,(:30) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 5 for 18 yards (Q.Mikell).,20,23,2012 -20120909_STL@DET,4,0,17,DET,STL,1,5,5,(:17) (No Huddle) M.Stafford spiked the ball to stop the clock.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,2,5,5,(:15) M.Stafford pass short right to K.Smith for 5 yards TOUCHDOWN.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,27,23,2012 -20120909_STL@DET,4,0,10,STL,DET,1,10,80,(:10) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 15 yards. Lateral to R.Turner to SL 39 for 4 yards (D.Levy; J.Durant).,23,27,2012 -20120909_STL@DET,4,0,2,STL,DET,1,10,61,(:02) (Shotgun) S.Bradford scrambles up the middle to SL 40 for 1 yard (C.Avril).,23,27,2012 -20120909_STL@DET,4,0,2,STL,DET,,,61,                      ,23,27,2012 -20120909_MIA@HOU,1,0,0,HOU,MIA,,,61,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 28 for 31 yards (M.Alexander). PENALTY on MIA-J.Freeny Offensive Holding 10 yards enforced at MIA 28.,0,0,2012 -20120909_MIA@HOU,1,59,55,MIA,HOU,1,10,82,(14:55) R.Bush right tackle to MIA 19 for 1 yard (S.Cody).,0,0,2012 -20120909_MIA@HOU,1,59,26,MIA,HOU,2,9,81,(14:26) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 29 for 10 yards (K.Jackson; D.Manning).,0,0,2012 -20120909_MIA@HOU,1,58,58,MIA,HOU,1,10,71,(13:58) R.Bush up the middle to MIA 36 for 7 yards (S.Cody B.James).,0,0,2012 -20120909_MIA@HOU,1,58,30,MIA,HOU,2,3,64,(13:30) R.Bush left tackle to MIA 45 for 9 yards (J.Joseph).,0,0,2012 -20120909_MIA@HOU,1,57,55,MIA,HOU,1,10,55,(12:55) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 49 for 4 yards (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,57,23,MIA,HOU,2,6,51,(12:23) (Shotgun) R.Tannehill pass incomplete short right to D.Thomas.,0,0,2012 -20120909_MIA@HOU,1,57,19,MIA,HOU,3,6,49,(12:19) (Shotgun) R.Tannehill FUMBLES (Aborted) at MIA 49 recovered by MIA-D.Thomas at HST 49. D.Thomas to HST 49 for no gain (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,56,40,MIA,HOU,4,4,49,(11:40) B.Fields punts 39 yards to HST 10 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),0,0,2012 -20120909_MIA@HOU,1,56,32,HOU,MIA,1,10,90,(11:32) M.Schaub pass incomplete short middle to A.Foster.,0,0,2012 -20120909_MIA@HOU,1,56,27,HOU,MIA,2,10,90,(11:27) M.Schaub pass short right to A.Johnson pushed ob at HST 21 for 11 yards (C.Clemons).,0,0,2012 -20120909_MIA@HOU,1,55,59,HOU,MIA,1,10,79,(10:59) M.Schaub pass short middle to O.Daniels to HST 44 for 23 yards (C.Clemons).,0,0,2012 -20120909_MIA@HOU,1,55,15,HOU,MIA,1,10,56,(10:15) A.Foster left end pushed ob at 50 for 6 yards (K.Burnett).,0,0,2012 -20120909_MIA@HOU,1,54,49,HOU,MIA,2,4,50,(9:49) M.Schaub pass incomplete short right to K.Martin.,0,0,2012 -20120909_MIA@HOU,1,54,44,HOU,MIA,3,4,50,(9:44) M.Schaub pass short right to L.Jean to MIA 41 for 9 yards (R.Marshall).,0,0,2012 -20120909_MIA@HOU,1,54,10,HOU,MIA,1,10,41,(9:10) A.Foster left end to MIA 36 for 5 yards (K.Burnett).,0,0,2012 -20120909_MIA@HOU,1,53,30,HOU,MIA,2,5,36,(8:30) B.Tate right end pushed ob at MIA 30 for 6 yards (S.Smith).,0,0,2012 -20120909_MIA@HOU,1,52,58,HOU,MIA,1,10,30,(7:58) M.Schaub sacked at MIA 34 for -4 yards (R.Starks).,0,0,2012 -20120909_MIA@HOU,1,52,29,HOU,MIA,2,14,34,(7:29) M.Schaub pass incomplete deep left to L.Jean. Houston challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20120909_MIA@HOU,1,52,21,HOU,MIA,3,14,34,(7:21) (Shotgun) M.Schaub pass incomplete short right to A.Foster.,0,0,2012 -20120909_MIA@HOU,1,52,15,HOU,MIA,4,14,34,(7:15) S.Graham 52 yard field goal is No Good Short Center-J.Weeks Holder-D.Jones.,0,0,2012 -20120909_MIA@HOU,1,52,10,MIA,HOU,1,10,58,(7:10) R.Bush left guard to HST 47 for 11 yards (G.Quin).,0,0,2012 -20120909_MIA@HOU,1,51,45,MIA,HOU,1,10,47,(6:45) R.Bush left guard to HST 42 for 5 yards (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,51,16,MIA,HOU,2,5,42,(6:16) R.Bush left tackle to HST 34 for 8 yards (D.Manning G.Quin).,0,0,2012 -20120909_MIA@HOU,1,50,36,MIA,HOU,1,10,34,(5:36) R.Tannehill pass short left to A.Fasano to HST 22 for 12 yards (T.Dobbins).,0,0,2012 -20120909_MIA@HOU,1,49,59,MIA,HOU,1,10,22,(4:59) D.Thomas right tackle to HST 20 for 2 yards (J.Watt).,0,0,2012 -20120909_MIA@HOU,1,49,29,MIA,HOU,2,8,20,(4:29) R.Tannehill pass short middle to D.Bess to HST 14 for 6 yards (G.Quin).,0,0,2012 -20120909_MIA@HOU,1,49,29,MIA,HOU,3,2,14,(4:29) R.Bush up the middle to HST 19 for -5 yards (B.Cushing). FUMBLES (B.Cushing) recovered by MIA-J.Martin at HST 21. J.Martin to HST 21 for no gain (C.Barwin).,0,0,2012 -20120909_MIA@HOU,1,48,17,MIA,HOU,4,9,21,(3:17) D.Carpenter 39 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20120909_MIA@HOU,1,48,17,MIA,HOU,,,21,D.Carpenter kicks 71 yards from MIA 35 to HST -6. T.Holliday to HST 5 for 11 yards (J.Wilson). (The kick was muffed by # 16 Holliday but he recovered the ball himself. There was no fumble on the play.),3,0,2012 -20120909_MIA@HOU,1,48,7,HOU,MIA,1,10,95,(3:07) A.Foster right guard to HST 10 for 5 yards (K.Misi).,0,3,2012 -20120909_MIA@HOU,1,47,31,HOU,MIA,2,5,90,(2:31) A.Foster right end to HST 14 for 4 yards (K.Burnett R.Jones).,0,3,2012 -20120909_MIA@HOU,1,46,49,HOU,MIA,3,1,86,(1:49) A.Foster left tackle to HST 14 for no gain (R.Starks K.Dansby).,0,3,2012 -20120909_MIA@HOU,1,46,13,HOU,MIA,4,1,86,(1:13) D.Jones punts 48 yards to MIA 38 Center-J.Weeks fair catch by M.Thigpen. (The punt hang time was 4.5 seconds.),0,3,2012 -20120909_MIA@HOU,1,46,1,MIA,HOU,1,10,62,(1:01) (Shotgun) R.Tannehill pass short left to A.Fasano to MIA 42 for 4 yards (B.James).,3,0,2012 -20120909_MIA@HOU,1,45,30,MIA,HOU,2,6,58,(:30) D.Thomas up the middle to 50 for 8 yards (C.Barwin B.Cushing).,3,0,2012 -20120909_MIA@HOU,2,45,0,MIA,HOU,1,10,50,(15:00) R.Tannehill pass incomplete deep middle to B.Hartline [J.Watt]. PENALTY on MIA-J.Long Offensive Holding 10 yards enforced at 50 - No Play.,3,0,2012 -20120909_MIA@HOU,2,44,53,MIA,HOU,1,20,60,(14:53) (Shotgun) R.Tannehill pass incomplete short middle to D.Thomas.,3,0,2012 -20120909_MIA@HOU,2,44,47,MIA,HOU,2,20,60,(14:47) (Shotgun) R.Tannehill pass short right to D.Bess to MIA 49 for 9 yards (B.McCain).,3,0,2012 -20120909_MIA@HOU,2,44,7,MIA,HOU,3,11,51,(14:07) (Shotgun) R.Tannehill pass incomplete short left to A.Armstrong.,3,0,2012 -20120909_MIA@HOU,2,44,2,MIA,HOU,4,11,51,(14:02) B.Fields punts 38 yards to HST 13 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),3,0,2012 -20120909_MIA@HOU,2,43,53,HOU,MIA,1,10,87,(13:53) M.Schaub pass incomplete deep left to A.Johnson (R.Marshall).,0,3,2012 -20120909_MIA@HOU,2,43,46,HOU,MIA,2,10,87,(13:46) M.Schaub pass short middle to B.Tate to HST 21 for 8 yards (K.Misi K.Burnett).,0,3,2012 -20120909_MIA@HOU,2,43,4,HOU,MIA,3,2,79,(13:04) M.Schaub pass deep left to O.Daniels pushed ob at 50 for 29 yards (R.Jones).,0,3,2012 -20120909_MIA@HOU,2,42,34,HOU,MIA,1,10,50,(12:34) A.Foster left end to MIA 43 for 7 yards (K.Misi).,0,3,2012 -20120909_MIA@HOU,2,41,54,HOU,MIA,2,3,43,(11:54) A.Foster left tackle to MIA 42 for 1 yard (J.Odrick R.Starks).,0,3,2012 -20120909_MIA@HOU,2,41,13,HOU,MIA,3,2,42,(11:13) M.Schaub pass incomplete deep right to O.Daniels.,0,3,2012 -20120909_MIA@HOU,2,41,7,HOU,MIA,4,2,42,(11:07) D.Jones punts 36 yards to MIA 6 Center-J.Weeks downed by HST. (The punt hang time was 4.6 seconds.),0,3,2012 -20120909_MIA@HOU,2,40,58,MIA,HOU,1,10,94,(10:58) R.Bush left guard to MIA 13 for 7 yards (J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,40,27,MIA,HOU,2,3,87,(10:27) R.Bush left guard to MIA 15 for 2 yards (D.Manning B.Reed).,3,0,2012 -20120909_MIA@HOU,2,39,54,MIA,HOU,3,1,85,(9:54) R.Tannehill pass short right to J.Lane to MIA 39 for 24 yards (K.Jackson).,3,0,2012 -20120909_MIA@HOU,2,39,19,MIA,HOU,1,10,61,(9:19) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (K.Jackson).,3,0,2012 -20120909_MIA@HOU,2,39,14,MIA,HOU,2,10,61,(9:14) R.Bush left end to MIA 37 for -2 yards (D.Manning J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,38,33,MIA,HOU,3,12,63,(8:33) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at 50 for 13 yards (J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,38,7,MIA,HOU,1,10,50,(8:07) R.Tannehill sacked at MIA 47 for -3 yards (J.Watt).,3,0,2012 -20120909_MIA@HOU,2,37,35,MIA,HOU,2,13,53,(7:35) (Shotgun) R.Tannehill pass short middle intended for L.Naanee INTERCEPTED by J.Joseph at 50. J.Joseph pushed ob at MIA 14 for 36 yards (M.Pouncey). PENALTY on MIA-M.Pouncey Unnecessary Roughness 7 yards enforced at MIA 14.,3,0,2012 -20120909_MIA@HOU,2,37,23,HOU,MIA,1,7,7,(7:23) PENALTY on HST-O.Daniels False Start 5 yards enforced at MIA 7 - No Play.,0,3,2012 -20120909_MIA@HOU,2,37,23,HOU,MIA,1,12,12,(7:23) M.Schaub pass incomplete short left to J.Casey.,0,3,2012 -20120909_MIA@HOU,2,37,19,HOU,MIA,2,12,12,(7:19) M.Schaub sacked at MIA 20 for -8 yards (R.Starks).,0,3,2012 -20120909_MIA@HOU,2,36,51,HOU,MIA,3,20,20,(6:51) (Shotgun) A.Foster left end to MIA 17 for 3 yards (O.Vernon).,0,3,2012 -20120909_MIA@HOU,2,36,16,HOU,MIA,4,17,17,(6:16) S.Graham 35 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,3,2012 -20120909_MIA@HOU,2,36,16,HOU,MIA,,,17,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 17 for 17 yards (A.Ball).,3,3,2012 -20120909_MIA@HOU,2,36,6,MIA,HOU,1,10,83,(6:06) R.Bush right guard to MIA 27 for 10 yards (B.Cushing B.McCain).,3,3,2012 -20120909_MIA@HOU,2,35,31,MIA,HOU,1,10,73,(5:31) R.Bush left tackle to MIA 29 for 2 yards (J.Crick).,3,3,2012 -20120909_MIA@HOU,2,35,31,MIA,HOU,2,8,71,(5:31) PENALTY on MIA-A.Fasano False Start 5 yards enforced at MIA 29 - No Play.,3,3,2012 -20120909_MIA@HOU,2,34,44,MIA,HOU,2,13,76,(4:44) (Shotgun) R.Tannehill pass short left to D.Thomas to HST 44 for 32 yards (D.Manning).,3,3,2012 -20120909_MIA@HOU,2,34,14,MIA,HOU,1,10,44,(4:14) R.Tannehill pass incomplete short right to B.Hartline (J.Watt).,3,3,2012 -20120909_MIA@HOU,2,34,11,MIA,HOU,2,10,44,(4:11) (Shotgun) R.Tannehill pass incomplete short right to C.Clay.,3,3,2012 -20120909_MIA@HOU,2,34,6,MIA,HOU,3,10,44,(4:06) (Shotgun) R.Tannehill pass short left intended for L.Naanee INTERCEPTED by B.Cushing (J.Watt) at HST 45. B.Cushing to HST 46 for 1 yard (R.Incognito).,3,3,2012 -20120909_MIA@HOU,2,34,0,HOU,MIA,1,10,54,(4:00) M.Schaub pass incomplete deep right to A.Johnson.,3,3,2012 -20120909_MIA@HOU,2,33,53,HOU,MIA,2,10,54,(3:53) M.Schaub pass incomplete short middle to O.Daniels (K.Burnett).,3,3,2012 -20120909_MIA@HOU,2,33,47,HOU,MIA,3,10,54,(3:47) (Shotgun) M.Schaub pass deep middle to A.Johnson to MIA 30 for 24 yards (N.Carroll; C.Clemons).,3,3,2012 -20120909_MIA@HOU,2,33,13,HOU,MIA,1,10,30,(3:13) A.Foster right guard to MIA 27 for 3 yards (K.Misi).,3,3,2012 -20120909_MIA@HOU,2,32,30,HOU,MIA,2,7,27,(2:30) M.Schaub scrambles up the middle to MIA 25 for 2 yards (K.Misi).,3,3,2012 -20120909_MIA@HOU,2,32,3,HOU,MIA,3,5,25,(2:03) M.Schaub pass short middle to O.Daniels to MIA 14 for 11 yards (K.Dansby R.Jones).,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,1,10,14,(1:58) A.Foster right guard for 14 yards TOUCHDOWN.,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 29 for 32 yards (B.McCain T.Clutts).,10,3,2012 -20120909_MIA@HOU,2,31,44,MIA,HOU,1,10,71,(1:44) (Shotgun) R.Tannehill pass short middle intended for B.Hartline INTERCEPTED by K.Jackson (J.Watt) at MIA 30. K.Jackson to MIA 27 for 3 yards (B.Hartline).,3,10,2012 -20120909_MIA@HOU,2,31,36,HOU,MIA,1,10,27,(1:36) M.Schaub pass incomplete deep right to K.Walter. PENALTY on MIA-R.Marshall Defensive Pass Interference 26 yards enforced at MIA 27 - No Play.,10,3,2012 -20120909_MIA@HOU,2,31,29,HOU,MIA,1,1,1,(1:29) A.Foster left tackle to MIA 2 for -1 yards (K.Dansby).,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,2,2,2,(:49) A.Foster left tackle for 2 yards TOUCHDOWN.,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 30 for 30 yards (J.Nading; Q.Demps).,17,3,2012 -20120909_MIA@HOU,2,30,35,MIA,HOU,1,10,70,(:35) D.Thomas up the middle to MIA 31 for 1 yard (G.Quin). FUMBLES (G.Quin) RECOVERED by HST-D.Manning at MIA 32. D.Manning to MIA 31 for 1 yard (J.Jerry). MIA-D.Thomas was injured during the play. He is Out.,3,17,2012 -20120909_MIA@HOU,2,30,28,HOU,MIA,1,10,31,(:28) (Shotgun) M.Schaub pass short middle to B.Tate pushed ob at MIA 24 for 7 yards (K.Misi).,17,3,2012 -20120909_MIA@HOU,2,30,20,HOU,MIA,2,3,24,(:20) (Shotgun) M.Schaub pass short middle to A.Johnson to MIA 14 for 10 yards (R.Marshall).,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,1,10,14,(:12) (Shotgun) M.Schaub pass short right to A.Johnson for 14 yards TOUCHDOWN [C.Wake].,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham kicks 44 yards from HST 35 to MIA 21. J.Lane to MIA 39 for 18 yards (B.McCain Q.Demps).,24,3,2012 -20120909_MIA@HOU,2,30,1,MIA,HOU,1,10,61,(:01) R.Tannehill kneels to MIA 38 for -1 yards.,3,24,2012 -20120909_MIA@HOU,3,30,0,MIA,HOU,,,61,D.Carpenter kicks 67 yards from MIA 35 to HST -2. T.Holliday to HST 15 for 17 yards (M.Moore).,3,24,2012 -20120909_MIA@HOU,3,29,53,HOU,MIA,1,10,85,(14:53) A.Foster right tackle to HST 19 for 4 yards (K.Misi K.Dansby).,24,3,2012 -20120909_MIA@HOU,3,29,13,HOU,MIA,2,6,81,(14:13) A.Foster right guard to HST 23 for 4 yards (K.Dansby; C.Wake).,24,3,2012 -20120909_MIA@HOU,3,28,35,HOU,MIA,3,2,77,(13:35) M.Schaub pass incomplete short middle to O.Daniels [C.Wake].,24,3,2012 -20120909_MIA@HOU,3,28,30,HOU,MIA,4,2,77,(13:30) D.Jones punts 49 yards to MIA 28 Center-J.Weeks. M.Thigpen for 72 yards TOUCHDOWN.,24,3,2012 -20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,24,2012 -20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter kicks 70 yards from MIA 35 to HST -5. T.Holliday to HST 14 for 19 yards (N.Carroll).,10,24,2012 -20120909_MIA@HOU,3,28,8,HOU,MIA,1,10,86,(13:08) M.Schaub pass short left to A.Johnson pushed ob at HST 24 for 10 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,27,40,HOU,MIA,1,10,76,(12:40) M.Schaub pass short left to A.Johnson to HST 39 for 15 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,27,2,HOU,MIA,1,10,61,(12:02) B.Tate left end to HST 39 for no gain (C.Clemons K.Misi).,24,10,2012 -20120909_MIA@HOU,3,26,20,HOU,MIA,2,10,61,(11:20) M.Schaub pass short middle to K.Walter to HST 45 for 6 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,25,39,HOU,MIA,3,4,55,(10:39) M.Schaub pass short middle to J.Casey to MIA 38 for 17 yards (K.Misi).,24,10,2012 -20120909_MIA@HOU,3,24,57,HOU,MIA,1,10,38,(9:57) B.Tate right guard to MIA 36 for 2 yards (J.Odrick).,24,10,2012 -20120909_MIA@HOU,3,24,15,HOU,MIA,2,8,36,(9:15) M.Schaub pass short right to K.Walter to MIA 26 for 10 yards (S.Smith).,24,10,2012 -20120909_MIA@HOU,3,23,38,HOU,MIA,1,10,26,(8:38) M.Schaub pass short left to A.Foster to MIA 30 for -4 yards (K.Misi).,24,10,2012 -20120909_MIA@HOU,3,22,53,HOU,MIA,2,14,30,(7:53) A.Foster right guard to MIA 18 for 12 yards (R.Jones).,24,10,2012 -20120909_MIA@HOU,3,22,13,HOU,MIA,3,2,18,(7:13) A.Foster left end to MIA 22 for -4 yards (R.Jones).,24,10,2012 -20120909_MIA@HOU,3,21,35,HOU,MIA,4,6,22,(6:35) S.Graham 40 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,24,10,2012 -20120909_MIA@HOU,3,21,35,HOU,MIA,,,22,S.Graham kicks 66 yards from HST 35 to MIA -1. M.Thigpen to MIA 26 for 27 yards (T.Dobbins).,27,10,2012 -20120909_MIA@HOU,3,21,24,MIA,HOU,1,10,74,(6:24) R.Bush left guard to MIA 29 for 3 yards (C.Barwin B.James).,10,27,2012 -20120909_MIA@HOU,3,20,52,MIA,HOU,2,7,71,(5:52) R.Tannehill sacked at MIA 21 for -8 yards (sack split by J.Watt and A.Smith).,10,27,2012 -20120909_MIA@HOU,3,20,17,MIA,HOU,3,15,79,(5:17) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 21 for no gain (B.Reed).,10,27,2012 -20120909_MIA@HOU,3,19,37,MIA,HOU,4,15,79,(4:37) B.Fields punts 56 yards to HST 23 Center-J.Denney. T.Holliday to HST 37 for 14 yards (J.Trusnik). PENALTY on HST-J.Nading Offensive Holding 10 yards enforced at HST 37.,10,27,2012 -20120909_MIA@HOU,3,19,21,HOU,MIA,1,10,73,(4:21) A.Foster left guard to HST 27 for no gain (R.Starks).,27,10,2012 -20120909_MIA@HOU,3,18,43,HOU,MIA,2,10,73,(3:43) M.Schaub pass short middle to O.Daniels to MIA 49 for 24 yards (R.Jones K.Burnett).,27,10,2012 -20120909_MIA@HOU,3,17,58,HOU,MIA,1,10,49,(2:58) A.Foster right end to HST 49 for -2 yards (P.Soliai).,27,10,2012 -20120909_MIA@HOU,3,17,12,HOU,MIA,2,12,51,(2:12) M.Schaub pass short middle to B.Tate to MIA 44 for 7 yards (K.Dansby).,27,10,2012 -20120909_MIA@HOU,3,16,25,HOU,MIA,3,5,44,(1:25) (Shotgun) M.Schaub pass short right to A.Johnson to MIA 38 for 6 yards (R.Jones).,27,10,2012 -20120909_MIA@HOU,3,15,44,HOU,MIA,1,10,38,(:44) A.Foster right tackle to MIA 32 for 6 yards (K.Randall).,27,10,2012 -20120909_MIA@HOU,4,15,0,HOU,MIA,2,4,32,(15:00) A.Foster left guard to MIA 32 for no gain (R.Starks).,27,10,2012 -20120909_MIA@HOU,4,14,18,HOU,MIA,3,4,32,(14:18) (Shotgun) M.Schaub pass deep right to A.Johnson pushed ob at MIA 3 for 29 yards (J.Wilson) [C.Wake].,27,10,2012 -20120909_MIA@HOU,4,13,49,HOU,MIA,1,3,3,(13:49) A.Foster left guard to MIA 1 for 2 yards (K.Misi).,27,10,2012 -20120909_MIA@HOU,4,13,9,HOU,MIA,2,1,1,(13:09) A.Foster right guard to MIA 1 for no gain (K.Dansby).,27,10,2012 -20120909_MIA@HOU,4,12,31,HOU,MIA,3,1,1,(12:31) M.Schaub pass incomplete short left to O.Daniels.,27,10,2012 -20120909_MIA@HOU,4,12,25,HOU,MIA,4,1,1,(12:25) S.Graham 19 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,27,10,2012 -20120909_MIA@HOU,4,12,25,HOU,MIA,,,1,S.Graham kicks 73 yards from HST 35 to MIA -8. M.Thigpen Touchback.,30,10,2012 -20120909_MIA@HOU,4,12,22,MIA,HOU,1,10,80,(12:22) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 31 for 11 yards (B.McCain).,10,30,2012 -20120909_MIA@HOU,4,11,52,MIA,HOU,1,10,69,(11:52) (Shotgun) R.Bush left end to MIA 29 for -2 yards (C.Barwin). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at MIA 31 - No Play.,10,30,2012 -20120909_MIA@HOU,4,11,36,MIA,HOU,1,20,79,(11:36) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 40 for 19 yards (Q.Demps).,10,30,2012 -20120909_MIA@HOU,4,11,1,MIA,HOU,2,1,60,(11:01) R.Bush up the middle to HST 47 for 13 yards (B.Cushing Q.Demps).,10,30,2012 -20120909_MIA@HOU,4,10,27,MIA,HOU,1,10,47,(10:27) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 40 for 7 yards (K.Jackson). PENALTY on HST-K.Jackson Face Mask (15 Yards) 15 yards enforced at HST 40.,10,30,2012 -20120909_MIA@HOU,4,10,0,MIA,HOU,1,10,25,(10:00) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 16 for 9 yards (K.Jackson).,10,30,2012 -20120909_MIA@HOU,4,9,29,MIA,HOU,2,1,16,(9:29) (Shotgun) R.Bush up the middle to HST 18 for -2 yards (D.Manning B.Cushing). PENALTY on HST-C.Barwin Defensive Offside 5 yards enforced at HST 16 - No Play.,10,30,2012 -20120909_MIA@HOU,4,9,13,MIA,HOU,1,10,11,(9:13) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline.,10,30,2012 -20120909_MIA@HOU,4,9,8,MIA,HOU,2,10,11,(9:08) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,10,30,2012 -20120909_MIA@HOU,4,9,3,MIA,HOU,3,10,11,(9:03) (Shotgun) R.Tannehill pass short middle to R.Bush to HST 9 for 2 yards (G.Quin).,10,30,2012 -20120909_MIA@HOU,4,8,24,MIA,HOU,4,8,9,(8:24) (Shotgun) R.Tannehill pass short left to A.Fasano to HST 6 for 3 yards (J.Joseph).,10,30,2012 -20120909_MIA@HOU,4,8,16,HOU,MIA,1,10,94,(8:16) B.Tate left guard to HST 8 for 2 yards (C.Wake).,30,10,2012 -20120909_MIA@HOU,4,7,36,HOU,MIA,2,8,92,(7:36) B.Tate left tackle to HST 4 for -4 yards (P.Soliai).,30,10,2012 -20120909_MIA@HOU,4,6,51,HOU,MIA,3,12,96,(6:51) A.Foster up the middle to HST 11 for 7 yards (K.Dansby).,30,10,2012 -20120909_MIA@HOU,4,6,41,HOU,MIA,4,5,89,(6:41) D.Jones punts 30 yards to HST 41 Center-J.Weeks out of bounds.,30,10,2012 -20120909_MIA@HOU,4,6,32,MIA,HOU,1,10,41,(6:32) (Shotgun) R.Tannehill pass short right to D.Bess to HST 32 for 9 yards (B.McCain).,10,30,2012 -20120909_MIA@HOU,4,6,4,MIA,HOU,2,1,32,(6:04) (Shotgun) R.Bush left guard to HST 34 for -2 yards (J.Watt). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at HST 32 - No Play.,10,30,2012 -20120909_MIA@HOU,4,5,41,MIA,HOU,2,11,42,(5:41) (Shotgun) R.Tannehill pass deep right to B.Hartline to HST 8 for 34 yards (K.Jackson).,10,30,2012 -20120909_MIA@HOU,4,5,1,MIA,HOU,1,8,8,(5:01) (Shotgun) R.Tannehill pass short middle to A.Armstrong to HST 5 for 3 yards (G.Quin).,10,30,2012 -20120909_MIA@HOU,4,4,15,MIA,HOU,2,5,5,(4:15) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano.,10,30,2012 -20120909_MIA@HOU,4,4,10,MIA,HOU,3,5,5,(4:10) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Miami challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),10,30,2012 -20120909_MIA@HOU,4,4,5,MIA,HOU,4,5,5,(4:05) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (T.Jamison).,10,30,2012 -20120909_MIA@HOU,4,4,0,HOU,MIA,1,10,95,(4:00) A.Foster left guard to HST 4 for -1 yards (C.Wake).,30,10,2012 -20120909_MIA@HOU,4,3,16,HOU,MIA,2,11,96,(3:16) A.Foster left tackle to HST 5 for 1 yard (K.Dansby).,30,10,2012 -20120909_MIA@HOU,4,2,30,HOU,MIA,3,10,95,(2:30) A.Foster left guard to HST 6 for 1 yard (K.Randall).,30,10,2012 -20120909_MIA@HOU,4,2,24,HOU,MIA,4,9,94,(2:24) D.Jones punts 55 yards to MIA 39 Center-J.Weeks. M.Thigpen to MIA 43 for 4 yards (J.Casey). (The punt hang time was 4.8 seconds.),30,10,2012 -20120909_MIA@HOU,4,2,13,MIA,HOU,1,10,57,(2:13) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,10,30,2012 -20120909_MIA@HOU,4,2,8,MIA,HOU,2,10,57,(2:08) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at HST 49 for 8 yards (B.James).,10,30,2012 -20120909_MIA@HOU,4,2,0,MIA,HOU,3,2,49,(2:00) (Shotgun) R.Tannehill pass incomplete deep left to A.Armstrong.,10,30,2012 -20120909_MIA@HOU,4,1,56,MIA,HOU,4,2,49,(1:56) (Shotgun) R.Tannehill sacked at MIA 39 for -12 yards (T.Jamison).,10,30,2012 -20120909_MIA@HOU,4,1,44,HOU,MIA,1,10,39,(1:44) M.Schaub kneels to MIA 41 for -2 yards.,30,10,2012 -20120909_MIA@HOU,4,1,0,HOU,MIA,2,12,41,(1:00) M.Schaub kneels to MIA 42 for -1 yards.,30,10,2012 -20120909_MIA@HOU,4,0,31,HOU,MIA,3,13,42,(:31) M.Schaub kneels to MIA 43 for -1 yards.,30,10,2012 -20120909_MIA@HOU,4,0,31,HOU,MIA,,,42,                      ,30,10,2012 -20120909_ATL@KC,1,0,0,KC,ATL,,,42,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,0,0,2012 -20120909_ATL@KC,1,60,0,ATL,KC,1,10,80,(15:00) M.Turner right guard to ATL 26 for 6 yards (J.Belcher).,0,0,2012 -20120909_ATL@KC,1,59,22,ATL,KC,2,4,74,(14:22) M.Turner up the middle to ATL 28 for 2 yards (D.Johnson).,0,0,2012 -20120909_ATL@KC,1,58,41,ATL,KC,3,2,72,(13:41) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 31 for 3 yards (T.Daniels).,0,0,2012 -20120909_ATL@KC,1,58,1,ATL,KC,1,10,69,(13:01) M.Ryan pass short middle to J.Jones to KC 44 for 25 yards (D.Johnson).,0,0,2012 -20120909_ATL@KC,1,57,26,ATL,KC,1,10,44,(12:26) M.Ryan pass incomplete short right to T.Gonzalez (E.Berry).,0,0,2012 -20120909_ATL@KC,1,57,21,ATL,KC,2,10,44,(12:21) M.Turner up the middle to KC 42 for 2 yards (T.Jackson).,0,0,2012 -20120909_ATL@KC,1,56,38,ATL,KC,3,8,42,(11:38) (Shotgun) M.Ryan pass short right to J.Jones to KC 31 for 11 yards (J.Reeves).,0,0,2012 -20120909_ATL@KC,1,55,58,ATL,KC,1,10,31,(10:58) M.Ryan pass incomplete deep left to J.Jones.,0,0,2012 -20120909_ATL@KC,1,55,53,ATL,KC,2,10,31,(10:53) M.Ryan pass short left to R.White to KC 16 for 15 yards (A.Studebaker).,0,0,2012 -20120909_ATL@KC,1,55,19,ATL,KC,1,10,16,(10:19) M.Turner right guard to KC 14 for 2 yards (J.Powe).,0,0,2012 -20120909_ATL@KC,1,54,44,ATL,KC,2,8,14,(9:44) M.Ryan pass short right to M.Palmer to KC 8 for 6 yards (E.Berry).,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,3,2,8,(8:56) (Shotgun) M.Ryan pass short right to J.Jones for 8 yards TOUCHDOWN.,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bosher kicks 60 yards from ATL 35 to KC 5. J.Arenas to KC 23 for 18 yards (C.Owens).,7,0,2012 -20120909_ATL@KC,1,53,45,KC,ATL,1,10,77,(8:45) P.Hillis right tackle to KC 26 for 3 yards (T.DeCoud).,0,7,2012 -20120909_ATL@KC,1,53,5,KC,ATL,2,7,74,(8:05) M.Cassel pass short right to S.Breaston pushed ob at KC 32 for 6 yards (S.Weatherspoon).,0,7,2012 -20120909_ATL@KC,1,52,26,KC,ATL,3,1,68,(7:26) J.Charles up the middle to KC 34 for 2 yards (W.Moore).,0,7,2012 -20120909_ATL@KC,1,51,48,KC,ATL,1,10,66,(6:48) M.Cassel pass short left to T.Moeaki to ATL 48 for 18 yards (B.Grimes).,0,7,2012 -20120909_ATL@KC,1,51,41,KC,ATL,1,10,48,(6:41) M.Cassel pass incomplete short left to D.Bowe.,0,7,2012 -20120909_ATL@KC,1,51,36,KC,ATL,2,10,48,(6:36) J.Charles left guard to ATL 47 for 1 yard (S.Nicholas).,0,7,2012 -20120909_ATL@KC,1,50,55,KC,ATL,3,9,47,(5:55) (Shotgun) M.Cassel pass deep right to D.Bowe to ATL 24 for 23 yards (A.Samuel).,0,7,2012 -20120909_ATL@KC,1,50,12,KC,ATL,1,10,24,(5:12) M.Cassel pass incomplete short left to S.Breaston.,0,7,2012 -20120909_ATL@KC,1,50,6,KC,ATL,2,10,24,(5:06) J.Charles right tackle to ATL 22 for 2 yards (V.Walker).,0,7,2012 -20120909_ATL@KC,1,49,24,KC,ATL,3,8,22,(4:24) (Shotgun) M.Cassel pass short right to P.Hillis pushed ob at ATL 21 for 1 yard (A.Samuel) [S.Weatherspoon].,0,7,2012 -20120909_ATL@KC,1,49,6,KC,ATL,4,7,21,(4:06) R.Succop 39 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20120909_ATL@KC,1,49,6,KC,ATL,,,21,R.Succop kicks 66 yards from KC 35 to ATL -1. Jz. Rodgers pushed ob at KC 24 for 77 yards (J.Arenas).,3,7,2012 -20120909_ATL@KC,1,48,51,ATL,KC,1,10,24,(3:51) M.Turner up the middle to KC 20 for 4 yards (J.Belcher).,7,3,2012 -20120909_ATL@KC,1,48,15,ATL,KC,2,6,20,(3:15) M.Turner left tackle to KC 18 for 2 yards (D.Johnson).,7,3,2012 -20120909_ATL@KC,1,48,15,ATL,KC,3,4,18,(3:15) (Shotgun) PENALTY on ATL-M.Ryan False Start 5 yards enforced at KC 18 - No Play.,7,3,2012 -20120909_ATL@KC,1,47,7,ATL,KC,3,9,23,(2:07) (Shotgun) M.Ryan pass short left to H.Douglas to KC 16 for 7 yards (S.Routt). FUMBLES (S.Routt) ball out of bounds at KC 16.,7,3,2012 -20120909_ATL@KC,1,46,57,ATL,KC,4,2,16,(1:57) M.Bryant 34 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,3,2012 -20120909_ATL@KC,1,46,57,ATL,KC,,,16,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 24 for 25 yards (J.Snelling).,10,3,2012 -20120909_ATL@KC,1,46,47,KC,ATL,1,10,76,(1:47) J.Charles left end to KC 23 for -1 yards (R.Edwards).,3,10,2012 -20120909_ATL@KC,1,46,17,KC,ATL,2,11,77,(1:17) P.Hillis left end to KC 30 for 7 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,1,45,37,KC,ATL,3,4,70,(:37) (No Huddle Shotgun) M.Cassel pass short middle to T.Moeaki to KC 41 for 11 yards (W.Moore).,3,10,2012 -20120909_ATL@KC,2,45,0,KC,ATL,1,10,59,(15:00) J.Charles right guard to ATL 48 for 11 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,2,44,21,KC,ATL,1,10,48,(14:21) M.Cassel sacked at KC 44 for -8 yards (S.Weatherspoon).,3,10,2012 -20120909_ATL@KC,2,43,40,KC,ATL,2,18,56,(13:40) (Shotgun) M.Cassel pass short right to D.McCluster to ATL 47 for 9 yards (A.Samuel).,3,10,2012 -20120909_ATL@KC,2,43,8,KC,ATL,3,9,47,(13:08) (No Huddle Shotgun) M.Cassel pass deep middle to D.Bowe to ATL 26 for 21 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,2,42,29,KC,ATL,1,10,26,(12:29) S.Draughn up the middle to ATL 22 for 4 yards (D.Robinson; S.Nicholas).,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,2,6,22,(11:45) (Shotgun) M.Cassel pass deep middle to K.Boss for 22 yards TOUCHDOWN.,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop kicks 65 yards from KC 35 to ATL 0. Jz. Rodgers to ATL 27 for 27 yards (A.Studebaker).,10,10,2012 -20120909_ATL@KC,2,41,33,ATL,KC,1,10,73,(11:33) (Shotgun) Jz. Rodgers right tackle to ATL 30 for 3 yards (D.Johnson).,10,10,2012 -20120909_ATL@KC,2,40,56,ATL,KC,2,7,70,(10:56) (No Huddle Shotgun) M.Ryan pass short right to R.White to ATL 46 for 16 yards (A.Elam).,10,10,2012 -20120909_ATL@KC,2,40,26,ATL,KC,1,10,54,(10:26) (No Huddle) M.Ryan pass short right to R.White ran ob at KC 39 for 15 yards. Kansas City challenged the pass completion ruling and the play was Upheld. (Timeout #1.),10,10,2012 -20120909_ATL@KC,2,40,2,ATL,KC,1,10,39,(10:02) Jz. Rodgers up the middle to KC 33 for 6 yards (E.Jones).,10,10,2012 -20120909_ATL@KC,2,39,32,ATL,KC,2,4,33,(9:32) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers pushed ob at KC 27 for 6 yards (S.Routt).,10,10,2012 -20120909_ATL@KC,2,39,5,ATL,KC,1,10,27,(9:05) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 22 for 5 yards (R.Pitoitua).,10,10,2012 -20120909_ATL@KC,2,38,30,ATL,KC,2,5,22,(8:30) (No Huddle) M.Ryan pass short right to R.White pushed ob at KC 14 for 8 yards (A.Elam).,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,1,10,14,(7:55) (No Huddle) M.Ryan pass short left to J.Jones for 14 yards TOUCHDOWN.,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bosher kicks 74 yards from ATL 35 to KC -9. J.Arenas Touchback.,17,10,2012 -20120909_ATL@KC,2,37,48,KC,ATL,1,10,80,(7:48) J.Charles right end to ATL 34 for 46 yards (T.DeCoud).,10,17,2012 -20120909_ATL@KC,2,37,21,KC,ATL,1,10,34,(7:21) (No Huddle) P.Hillis up the middle to ATL 31 for 3 yards (S.Nicholas).,10,17,2012 -20120909_ATL@KC,2,36,44,KC,ATL,2,7,31,(6:44) (No Huddle Shotgun) M.Cassel pass short right to P.Hillis to ATL 28 for 3 yards (S.Weatherspoon).,10,17,2012 -20120909_ATL@KC,2,35,53,KC,ATL,3,4,28,(5:53) (No Huddle Shotgun) M.Cassel pass short left to D.McCluster pushed ob at ATL 19 for 9 yards (B.Grimes).,10,17,2012 -20120909_ATL@KC,2,35,24,KC,ATL,1,10,19,(5:24) (No Huddle Shotgun) J.Charles left end pushed ob at ATL 10 for 9 yards (B.Grimes).,10,17,2012 -20120909_ATL@KC,2,35,2,KC,ATL,2,1,10,(5:02) (No Huddle Shotgun) J.Charles left tackle to ATL 8 for 2 yards (S.Nicholas).,10,17,2012 -20120909_ATL@KC,2,34,25,KC,ATL,1,8,8,(4:25) P.Hillis up the middle to ATL 5 for 3 yards (K.Biermann).,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,2,5,5,(3:44) (Shotgun) M.Cassel up the middle for 5 yards TOUCHDOWN.,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop kicks 73 yards from KC 35 to ATL -8. Jz. Rodgers Touchback.,17,17,2012 -20120909_ATL@KC,2,33,38,ATL,KC,1,10,80,(3:38) M.Ryan pass incomplete short right to H.Douglas.,17,17,2012 -20120909_ATL@KC,2,33,2,ATL,KC,2,10,80,(3:02) (No Huddle Shotgun) M.Ryan pass short left to H.Douglas to ATL 39 for 19 yards (T.Daniels).,17,17,2012 -20120909_ATL@KC,2,32,33,ATL,KC,1,10,61,(2:33) (No Huddle) M.Ryan pass incomplete deep left to J.Jones.,17,17,2012 -20120909_ATL@KC,2,32,27,ATL,KC,2,10,61,(2:27) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to KC 48 for 13 yards (D.Johnson).,17,17,2012 -20120909_ATL@KC,2,32,5,ATL,KC,1,10,48,(2:05) (No Huddle) M.Ryan up the middle to KC 37 for 11 yards (D.Johnson).,17,17,2012 -20120909_ATL@KC,2,31,55,ATL,KC,1,10,37,(1:55) M.Ryan scrambles right end pushed ob at KC 28 for 9 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,31,48,ATL,KC,2,1,28,(1:48) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 3 for 25 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,31,14,ATL,KC,1,3,3,(1:14) (No Huddle) M.Ryan sacked at KC 10 for -7 yards (J.Houston).,17,17,2012 -20120909_ATL@KC,2,30,53,ATL,KC,2,10,10,(:53) (Shotgun) M.Ryan pass short right to R.White to KC 3 for 7 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,30,17,ATL,KC,3,3,3,(:17) (Shotgun) M.Ryan pass incomplete short middle to R.White [D.Johnson].,17,17,2012 -20120909_ATL@KC,2,30,13,ATL,KC,4,3,3,(:13) M.Bryant 21 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,17,17,2012 -20120909_ATL@KC,2,30,13,ATL,KC,,,3,M.Bosher kicks 52 yards from ATL 35 to KC 13. T.Copper to KC 29 for 16 yards (K.Biermann).,20,17,2012 -20120909_ATL@KC,2,30,3,KC,ATL,1,10,71,(:03) M.Cassel kneels to KC 28 for -1 yards.,17,20,2012 -20120909_ATL@KC,3,30,0,ATL,KC,,,71,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,17,2012 -20120909_ATL@KC,3,30,0,KC,ATL,1,10,80,(15:00) (No Huddle) J.Charles right tackle to KC 24 for 4 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,29,23,KC,ATL,2,6,76,(14:23) (No Huddle) J.Charles up the middle to KC 29 for 5 yards (K.Biermann).,17,20,2012 -20120909_ATL@KC,3,28,52,KC,ATL,3,1,71,(13:52) (No Huddle) M.Cassel up the middle to KC 32 for 3 yards (T.DeCoud).,17,20,2012 -20120909_ATL@KC,3,28,15,KC,ATL,1,10,68,(13:15) (No Huddle) P.Hillis right end to KC 33 for 1 yard (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,27,35,KC,ATL,2,9,67,(12:35) (No Huddle) M.Cassel pass short middle to D.McCluster to ATL 46 for 21 yards (T.DeCoud; S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,26,55,KC,ATL,1,10,46,(11:55) (No Huddle) J.Charles up the middle to ATL 43 for 3 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,26,15,KC,ATL,2,7,43,(11:15) (No Huddle Shotgun) M.Cassel pass short middle to D.McCluster to ATL 28 for 15 yards (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,25,40,KC,ATL,1,10,28,(10:40) (No Huddle) P.Hillis up the middle to ATL 26 for 2 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,25,3,KC,ATL,2,8,26,(10:03) (Shotgun) M.Cassel pass short left to P.Hillis to ATL 22 for 4 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,24,14,KC,ATL,3,4,22,(9:14) (No Huddle Shotgun) M.Cassel pass incomplete short middle to D.McCluster (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,24,9,KC,ATL,4,4,22,(9:09) R.Succop 40 yard field goal is No Good Hit Right Upright Center-T.Gafford Holder-D.Colquitt.,17,20,2012 -20120909_ATL@KC,3,24,7,ATL,KC,1,10,70,(9:07) M.Ryan pass incomplete short right to L.Polite [J.Houston].,20,17,2012 -20120909_ATL@KC,3,24,3,ATL,KC,2,10,70,(9:03) M.Turner up the middle to ATL 29 for -1 yards (D.Poe).,20,17,2012 -20120909_ATL@KC,3,23,26,ATL,KC,3,11,71,(8:26) (Shotgun) M.Ryan pass deep left to J.Jones to KC 40 for 31 yards (T.Daniels).,20,17,2012 -20120909_ATL@KC,3,22,41,ATL,KC,1,10,40,(7:41) M.Turner up the middle to KC 38 for 2 yards (T.Jackson).,20,17,2012 -20120909_ATL@KC,3,21,59,ATL,KC,2,8,38,(6:59) M.Ryan pass short left to J.Jones to KC 19 for 19 yards (A.Elam).,20,17,2012 -20120909_ATL@KC,3,21,21,ATL,KC,1,10,19,(6:21) M.Turner up the middle to KC 8 for 11 yards (A.Elam; A.Studebaker).,20,17,2012 -20120909_ATL@KC,3,20,44,ATL,KC,1,8,8,(5:44) M.Turner up the middle to KC 5 for 3 yards (J.Belcher).,20,17,2012 -20120909_ATL@KC,3,20,5,ATL,KC,2,5,5,(5:05) M.Ryan pass incomplete short right to J.Jones.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,3,5,5,(5:00) (Shotgun) M.Ryan scrambles right end for 5 yards TOUCHDOWN.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bosher kicks 71 yards from ATL 35 to KC -6. J.Arenas Touchback.,27,17,2012 -20120909_ATL@KC,3,19,54,KC,ATL,1,10,80,(4:54) J.Charles up the middle to KC 15 for -5 yards (J.Abraham).,17,27,2012 -20120909_ATL@KC,3,19,19,KC,ATL,2,15,85,(4:19) (No Huddle Shotgun) M.Cassel pass incomplete short middle to T.Moeaki (J.Babineaux).,17,27,2012 -20120909_ATL@KC,3,19,14,KC,ATL,3,15,85,(4:14) (No Huddle Shotgun) M.Cassel sacked at KC 6 for -9 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-S.Nicholas at KC 7. S.Nicholas to KC 7 for no gain (R.Hudson).,17,27,2012 -20120909_ATL@KC,3,19,2,ATL,KC,1,7,7,(4:02) M.Ryan pass short middle to T.Gonzalez for 7 yards TOUCHDOWN.,27,17,2012 -20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,27,17,2012 -20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,34,17,2012 -20120909_ATL@KC,3,18,56,KC,ATL,1,10,80,(3:56) M.Cassel sacked at KC 19 for -1 yards (J.Babineaux).,17,34,2012 -20120909_ATL@KC,3,18,21,KC,ATL,2,11,81,(3:21) (No Huddle) P.Hillis left end to KC 16 for -3 yards (S.Weatherspoon).,17,34,2012 -20120909_ATL@KC,3,17,35,KC,ATL,3,14,84,(2:35) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 31 for 15 yards (D.Robinson).,17,34,2012 -20120909_ATL@KC,3,17,1,KC,ATL,1,10,69,(2:01) (No Huddle) S.Draughn up the middle to KC 32 for 1 yard (S.Weatherspoon).,17,34,2012 -20120909_ATL@KC,3,16,29,KC,ATL,2,9,68,(1:29) (No Huddle Shotgun) M.Cassel pass short middle intended for T.Moeaki INTERCEPTED by W.Moore at KC 45. W.Moore to KC 43 for 2 yards (D.McCluster). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,17,34,2012 -20120909_ATL@KC,3,16,20,ATL,KC,1,10,43,(1:20) M.Ryan pass deep left to R.White to KC 17 for 26 yards (A.Elam).,34,17,2012 -20120909_ATL@KC,3,15,42,ATL,KC,1,10,17,(:42) M.Turner left tackle to KC 18 for -1 yards (G.Dorsey).,34,17,2012 -20120909_ATL@KC,4,15,0,ATL,KC,2,11,18,(15:00) (Shotgun) M.Ryan pass short left to H.Douglas to KC 12 for 6 yards (D.Johnson).,34,17,2012 -20120909_ATL@KC,4,14,21,ATL,KC,3,5,12,(14:21) (Shotgun) M.Ryan pass incomplete short left to R.White.,34,17,2012 -20120909_ATL@KC,4,14,16,ATL,KC,4,5,12,(14:16) M.Bryant 30 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,34,17,2012 -20120909_ATL@KC,4,14,16,ATL,KC,,,12,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 17 for 18 yards (R.James).,37,17,2012 -20120909_ATL@KC,4,14,6,KC,ATL,1,10,83,(14:06) J.Charles left end to KC 13 for -4 yards (W.Moore).,17,37,2012 -20120909_ATL@KC,4,13,31,KC,ATL,2,14,87,(13:31) (Shotgun) M.Cassel scrambles up the middle to KC 26 for 13 yards (W.Moore).,17,37,2012 -20120909_ATL@KC,4,12,52,KC,ATL,3,1,74,(12:52) M.Cassel pass short left intended for T.Moeaki INTERCEPTED by S.Nicholas [R.Edwards] at KC 34. S.Nicholas to KC 31 for 3 yards (T.Moeaki).,17,37,2012 -20120909_ATL@KC,4,12,44,ATL,KC,1,10,31,(12:44) Jz. Rodgers up the middle to KC 29 for 2 yards (J.Belcher).,37,17,2012 -20120909_ATL@KC,4,12,7,ATL,KC,2,8,29,(12:07) M.Ryan pass short middle to Jz. Rodgers to KC 22 for 7 yards (J.Houston; D.Johnson).,37,17,2012 -20120909_ATL@KC,4,11,24,ATL,KC,3,1,22,(11:24) Jz. Rodgers right end to KC 23 for -1 yards (J.Belcher).,37,17,2012 -20120909_ATL@KC,4,10,44,ATL,KC,4,2,23,(10:44) M.Bryant 41 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,37,17,2012 -20120909_ATL@KC,4,10,44,ATL,KC,,,23,M.Bosher kicks 73 yards from ATL 35 to KC -8. J.Arenas pushed ob at KC 10 for 18 yards (K.Biermann). Penalty on KC-S.Draughn Unnecessary Roughness offsetting. Penalty on ATL-C.Hope Unnecessary Roughness offsetting.,40,17,2012 -20120909_ATL@KC,4,10,33,KC,ATL,1,10,90,(10:33) J.Charles up the middle to KC 8 for -2 yards (J.Abraham).,17,40,2012 -20120909_ATL@KC,4,10,7,KC,ATL,2,12,92,(10:07) J.Charles right tackle to KC 14 for 6 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,9,20,KC,ATL,3,6,86,(9:20) (Shotgun) M.Cassel pass short left to D.Bowe to KC 23 for 9 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,8,48,KC,ATL,1,10,77,(8:48) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,17,40,2012 -20120909_ATL@KC,4,8,41,KC,ATL,2,10,77,(8:41) (No Huddle Shotgun) S.Draughn left end to KC 37 for 14 yards (R.Edwards).,17,40,2012 -20120909_ATL@KC,4,8,9,KC,ATL,1,10,63,(8:09) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe (A.Samuel).,17,40,2012 -20120909_ATL@KC,4,7,59,KC,ATL,2,10,63,(7:59) (No Huddle) S.Draughn right end pushed ob at KC 46 for 9 yards (W.Moore). PENALTY on KC-S.Draughn Face Mask (15 Yards) 15 yards enforced at KC 40.,17,40,2012 -20120909_ATL@KC,4,7,43,KC,ATL,2,22,75,(7:43) M.Cassel pass incomplete short left to D.McCluster (J.Abraham).,17,40,2012 -20120909_ATL@KC,4,7,40,KC,ATL,3,22,75,(7:40) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 38 for 13 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,7,5,KC,ATL,4,9,62,(7:05) D.Colquitt punts 47 yards to ATL 15 Center-T.Gafford fair catch by D.Franks. PENALTY on ATL Offensive Holding 7 yards enforced at ATL 15.,17,40,2012 -20120909_ATL@KC,4,6,58,ATL,KC,1,10,92,(6:58) Jz. Rodgers right tackle to ATL 14 for 6 yards (T.Jackson).,40,17,2012 -20120909_ATL@KC,4,6,13,ATL,KC,2,4,86,(6:13) Jz. Rodgers up the middle to ATL 19 for 5 yards (G.Dorsey).,40,17,2012 -20120909_ATL@KC,4,5,28,ATL,KC,1,10,81,(5:28) J.Snelling up the middle to ATL 21 for 2 yards (J.Powe).,40,17,2012 -20120909_ATL@KC,4,4,45,ATL,KC,2,8,79,(4:45) J.Snelling right guard to ATL 24 for 3 yards (E.Berry).,40,17,2012 -20120909_ATL@KC,4,4,0,ATL,KC,3,5,76,(4:00) Jz. Rodgers left end to ATL 25 for 1 yard (E.Jones; D.Poe).,40,17,2012 -20120909_ATL@KC,4,3,16,ATL,KC,4,4,75,(3:16) M.Bosher punts 52 yards to KC 23 Center-J.Harris. J.Arenas pushed ob at KC 41 for 18 yards (J.Harris). PENALTY on KC Illegal Block Above the Waist 10 yards enforced at KC 37.,40,17,2012 -20120909_ATL@KC,4,3,1,KC,ATL,1,10,73,(3:01) J.Charles up the middle to KC 35 for 8 yards (W.Moore).,17,40,2012 -20120909_ATL@KC,4,2,35,KC,ATL,2,2,65,(2:35) (No Huddle) M.Cassel pass incomplete short left to S.Breaston.,17,40,2012 -20120909_ATL@KC,4,2,31,KC,ATL,3,2,65,(2:31) (Shotgun) M.Cassel pass deep right to S.Breaston to ATL 41 for 24 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,2,0,KC,ATL,1,10,41,(2:00) (Shotgun) M.Cassel pass incomplete short right to D.McCluster (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,1,55,KC,ATL,2,10,41,(1:55) (Shotgun) M.Cassel pass short right to S.Draughn pushed ob at ATL 32 for 9 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,1,47,KC,ATL,3,1,32,(1:47) S.Draughn up the middle to ATL 29 for 3 yards (C.Matthews).,17,40,2012 -20120909_ATL@KC,4,1,15,KC,ATL,1,10,29,(1:15) (Shotgun) M.Cassel pass short right to K.Boss pushed ob at ATL 15 for 14 yards (W.Moore).,17,40,2012 -20120909_ATL@KC,4,0,46,KC,ATL,1,10,15,(:46) (No Huddle Shotgun) M.Cassel pass short left to S.Draughn to ATL 12 for 3 yards (D.Robinson).,17,40,2012 -20120909_ATL@KC,4,0,21,KC,ATL,2,7,12,(:21) (No Huddle Shotgun) M.Cassel pass incomplete short left to D.McCluster.,17,40,2012 -20120909_ATL@KC,4,0,16,KC,ATL,3,7,12,(:16) (Shotgun) M.Cassel pass short left to T.Moeaki to ATL 4 for 8 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,1,4,4,(:09) (Shotgun) S.Draughn up the middle for 4 yards TOUCHDOWN.,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop kicks 70 yards from KC 35 to ATL -5. H.Douglas to ATL 3 for 8 yards (S.Draughn).,24,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,                      ,24,40,2012 -20120909_JAC@MIN,1,0,0,JAC,MIN,,,4,J.Scobee kicks 59 yards from JAX 35 to MIN 6. M.Asiata to MIN 24 for 18 yards (J.Stanford; J.Parmele).,0,0,2012 -20120909_JAC@MIN,1,59,55,MIN,JAC,1,10,76,(14:55) C.Ponder pass short right to K.Rudolph to MIN 39 for 15 yards (K.Bosworth; R.Allen).,0,0,2012 -20120909_JAC@MIN,1,59,15,MIN,JAC,1,10,61,(14:15) A.Peterson right guard to MIN 43 for 4 yards (A.Ross).,0,0,2012 -20120909_JAC@MIN,1,58,42,MIN,JAC,2,6,57,(13:42) P.Harvin left end to MIN 47 for 4 yards (P.Posluszny).,0,0,2012 -20120909_JAC@MIN,1,58,4,MIN,JAC,3,2,53,(13:04) (Shotgun) C.Ponder scrambles up the middle to MIN 48 for 1 yard (T.Knighton).,0,0,2012 -20120909_JAC@MIN,1,57,24,MIN,JAC,4,1,52,(12:24) C.Kluwe punts 37 yards to JAX 15 Center-C.Loeffler. M.Thomas to JAX 22 for 7 yards (J.Sanford).,0,0,2012 -20120909_JAC@MIN,1,57,14,JAC,MIN,1,10,78,(12:14) R.Jennings right tackle to JAX 27 for 5 yards (B.Robison).,0,0,2012 -20120909_JAC@MIN,1,56,32,JAC,MIN,2,5,73,(11:32) B.Gabbert sacked at JAX 20 for -7 yards (J.Allen). PENALTY on MIN-J.Allen Defensive Offside 5 yards enforced at JAX 27 - No Play.,0,0,2012 -20120909_JAC@MIN,1,56,20,JAC,MIN,1,10,68,(11:20) M.Jones-Drew left guard to JAX 35 for 3 yards (L.Guion).,0,0,2012 -20120909_JAC@MIN,1,55,39,JAC,MIN,2,7,65,(10:39) B.Gabbert pass incomplete short left to G.Jones.,0,0,2012 -20120909_JAC@MIN,1,55,35,JAC,MIN,3,7,65,(10:35) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 43 for 8 yards (C.Cook).,0,0,2012 -20120909_JAC@MIN,1,54,56,JAC,MIN,1,10,57,(9:56) R.Jennings right end to JAX 39 for -4 yards (E.Henderson).,0,0,2012 -20120909_JAC@MIN,1,54,14,JAC,MIN,2,14,61,(9:14) R.Jennings up the middle to JAX 39 for no gain (C.Greenway). PENALTY on MIN-K.Williams Defensive Offside 5 yards enforced at JAX 39 - No Play.,0,0,2012 -20120909_JAC@MIN,1,53,46,JAC,MIN,2,9,56,(8:46) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Cook) [C.Greenway].,0,0,2012 -20120909_JAC@MIN,1,53,41,JAC,MIN,3,9,56,(8:41) (Shotgun) B.Gabbert pass short left to J.Blackmon to MIN 43 for 13 yards (J.Robinson).,0,0,2012 -20120909_JAC@MIN,1,53,1,JAC,MIN,1,10,43,(8:01) R.Jennings right tackle to MIN 40 for 3 yards (K.Williams; C.Greenway).,0,0,2012 -20120909_JAC@MIN,1,52,21,JAC,MIN,2,7,40,(7:21) M.Thomas right end to MIN 41 for -1 yards (B.Robison).,0,0,2012 -20120909_JAC@MIN,1,51,36,JAC,MIN,3,8,41,(6:36) (Shotgun) B.Gabbert pass short middle to M.Lewis to MIN 23 for 18 yards (J.Robinson).,0,0,2012 -20120909_JAC@MIN,1,50,52,JAC,MIN,1,10,23,(5:52) (Shotgun) B.Gabbert pass incomplete short left to L.Robinson (C.Cook).,0,0,2012 -20120909_JAC@MIN,1,50,47,JAC,MIN,2,10,23,(5:47) PENALTY on JAX-J.Blackmon False Start 5 yards enforced at MIN 23 - No Play.,0,0,2012 -20120909_JAC@MIN,1,50,47,JAC,MIN,2,15,28,(5:47) B.Gabbert pass short left to M.Lewis to MIN 15 for 13 yards (M.Raymond).,0,0,2012 -20120909_JAC@MIN,1,50,0,JAC,MIN,3,2,15,(5:00) R.Jennings left end pushed ob at MIN 5 for 10 yards (H.Smith).,0,0,2012 -20120909_JAC@MIN,1,49,28,JAC,MIN,1,5,5,(4:28) B.Gabbert pass incomplete short left to J.Blackmon.,0,0,2012 -20120909_JAC@MIN,1,49,23,JAC,MIN,2,5,5,(4:23) R.Jennings right guard to MIN 1 for 4 yards (C.Greenway).,0,0,2012 -20120909_JAC@MIN,1,48,39,JAC,MIN,3,1,1,(3:39) G.Whimper reported in as eligible. R.Jennings up the middle to MIN 1 for no gain (J.Brinkley).,0,0,2012 -20120909_JAC@MIN,1,47,56,JAC,MIN,4,1,1,(2:56) J.Scobee 19 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20120909_JAC@MIN,1,47,56,JAC,MIN,,,1,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 23 for 28 yards (B.Marshall).,3,0,2012 -20120909_JAC@MIN,1,47,46,MIN,JAC,1,10,77,(2:46) T.Gerhart left tackle to MIN 23 for no gain (A.Branch).,0,3,2012 -20120909_JAC@MIN,1,47,7,MIN,JAC,2,10,77,(2:07) T.Gerhart up the middle to MIN 27 for 4 yards (P.Posluszny).,0,3,2012 -20120909_JAC@MIN,1,46,30,MIN,JAC,3,6,73,(1:30) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin (C.Prosinski).,0,3,2012 -20120909_JAC@MIN,1,46,25,MIN,JAC,4,6,73,(1:25) C.Kluwe punts 52 yards to JAX 21 Center-C.Loeffler. M.Jones-Drew MUFFS catch ball out of bounds at JAX 21.,0,3,2012 -20120909_JAC@MIN,1,46,16,JAC,MIN,1,10,79,(1:16) M.Jones-Drew left tackle to JAX 32 for 11 yards (A.Winfield).,3,0,2012 -20120909_JAC@MIN,1,45,39,JAC,MIN,1,10,68,(:39) M.Jones-Drew left guard to JAX 35 for 3 yards (A.Winfield).,3,0,2012 -20120909_JAC@MIN,2,45,0,JAC,MIN,2,7,65,(15:00) B.Gabbert pass incomplete short right to M.Owens.,3,0,2012 -20120909_JAC@MIN,2,44,56,JAC,MIN,3,7,65,(14:56) (Shotgun) B.Gabbert pass incomplete short right to M.Owens [B.Robison].,3,0,2012 -20120909_JAC@MIN,2,44,52,JAC,MIN,4,7,65,(14:52) B.Anger punts 56 yards to MIN 9 Center-J.Cain. M.Sherels to MIN 24 for 15 yards (M.Owens). PENALTY on JAX Illegal Substitution 5 yards enforced at MIN 24.,3,0,2012 -20120909_JAC@MIN,2,44,38,MIN,JAC,1,10,71,(14:38) A.Peterson up the middle to MIN 38 for 9 yards (D.Landry).,0,3,2012 -20120909_JAC@MIN,2,43,59,MIN,JAC,2,1,62,(13:59) A.Peterson up the middle to MIN 36 for -2 yards (T.Knighton).,0,3,2012 -20120909_JAC@MIN,2,43,19,MIN,JAC,3,3,64,(13:19) A.Peterson left end to MIN 35 for -1 yards (Team).,0,3,2012 -20120909_JAC@MIN,2,42,42,MIN,JAC,4,4,65,(12:42) C.Kluwe punts 53 yards to JAX 12 Center-C.Loeffler. M.Thomas to JAX 21 for 9 yards. FUMBLES recovered by JAX-J.Stanford at JAX 22. J.Stanford to JAX 22 for no gain (M.Asiata).,0,3,2012 -20120909_JAC@MIN,2,42,30,JAC,MIN,1,10,78,(12:30) B.Gabbert pass short left to Z.Potter pushed ob at JAX 24 for 2 yards (J.Robinson). PENALTY on JAX-G.Whimper Offensive Holding 10 yards enforced at JAX 22 - No Play.,3,0,2012 -20120909_JAC@MIN,2,42,6,JAC,MIN,1,20,88,(12:06) (Shotgun) B.Gabbert pass short right to R.Jennings to JAX 21 for 9 yards (C.Greenway).,3,0,2012 -20120909_JAC@MIN,2,41,19,JAC,MIN,2,11,79,(11:19) B.Gabbert pass deep right to L.Robinson to JAX 47 for 26 yards (H.Smith; C.Cook).,3,0,2012 -20120909_JAC@MIN,2,40,37,JAC,MIN,1,10,53,(10:37) B.Gabbert pass short right to M.Jones-Drew pushed ob at MIN 45 for 8 yards (E.Henderson).,3,0,2012 -20120909_JAC@MIN,2,40,10,JAC,MIN,2,2,45,(10:10) R.Jennings right guard to MIN 41 for 4 yards (J.Brinkley).,3,0,2012 -20120909_JAC@MIN,2,39,33,JAC,MIN,1,10,41,(9:33) B.Gabbert scrambles right end ran ob at MIN 39 for 2 yards. PENALTY on MIN-J.Brinkley Defensive Holding 5 yards enforced at MIN 39.,3,0,2012 -20120909_JAC@MIN,2,39,6,JAC,MIN,1,10,34,(9:06) M.Jones-Drew left end to MIN 30 for 4 yards (C.Ballard).,3,0,2012 -20120909_JAC@MIN,2,38,21,JAC,MIN,2,6,30,(8:21) M.Jones-Drew up the middle to MIN 28 for 2 yards (E.Henderson; H.Smith).,3,0,2012 -20120909_JAC@MIN,2,37,35,JAC,MIN,3,4,28,(7:35) (Shotgun) B.Gabbert pass short left to C.Shorts to MIN 21 for 7 yards (J.Robinson).,3,0,2012 -20120909_JAC@MIN,2,36,53,JAC,MIN,1,10,21,(6:53) R.Jennings left tackle to MIN 12 for 9 yards (M.Raymond).,3,0,2012 -20120909_JAC@MIN,2,36,11,JAC,MIN,2,1,12,(6:11) M.Jones-Drew up the middle to MIN 1 for 11 yards (J.Brinkley; H.Smith).,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,1,1,1,(5:27) G.Whimper reported in as eligible. B.Gabbert pass short right to M.Lewis for 1 yard TOUCHDOWN.,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee extra point is Blocked (M.Kalil) Center-J.Cain Holder-B.Anger.,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,9,0,2012 -20120909_JAC@MIN,2,35,21,MIN,JAC,1,10,80,(5:21) C.Ponder pass incomplete short left to M.Jenkins.,0,9,2012 -20120909_JAC@MIN,2,35,17,MIN,JAC,2,10,80,(5:17) C.Ponder pass short right to K.Rudolph to MIN 22 for 2 yards (A.Ross; R.Allen).,0,9,2012 -20120909_JAC@MIN,2,34,34,MIN,JAC,3,8,78,(4:34) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 37 for 15 yards (D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,33,58,MIN,JAC,1,10,63,(3:58) C.Ponder pass incomplete short left to M.Jenkins (P.Posluszny).,0,9,2012 -20120909_JAC@MIN,2,33,51,MIN,JAC,2,10,63,(3:51) T.Gerhart left end to MIN 44 for 7 yards (W.Middleton).,0,9,2012 -20120909_JAC@MIN,2,33,11,MIN,JAC,3,3,56,(3:11) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (R.Mathis).,0,9,2012 -20120909_JAC@MIN,2,33,6,MIN,JAC,4,3,56,(3:06) C.Kluwe punts 41 yards to JAX 15 Center-C.Loeffler. M.Jones-Drew to JAX 19 for 4 yards (R.Ellison).,0,9,2012 -20120909_JAC@MIN,2,32,54,JAC,MIN,1,10,81,(2:54) M.Jones-Drew up the middle to JAX 20 for 1 yard (C.Greenway). JAX-U.Nwaneri was injured during the play. His return is Questionable.,9,0,2012 -20120909_JAC@MIN,2,32,46,JAC,MIN,2,9,80,(2:46) M.Jones-Drew right guard to JAX 21 for 1 yard (J.Brinkley).,9,0,2012 -20120909_JAC@MIN,2,32,42,JAC,MIN,3,8,79,(2:42) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [B.Robison].,9,0,2012 -20120909_JAC@MIN,2,32,40,JAC,MIN,4,8,79,(2:40) B.Anger punts 45 yards to MIN 34 Center-J.Cain. M.Sherels to MIN 41 for 7 yards (A.Blake).,9,0,2012 -20120909_JAC@MIN,2,32,28,MIN,JAC,1,10,59,(2:28) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 43 for 16 yards (A.Ross).,0,9,2012 -20120909_JAC@MIN,2,32,1,MIN,JAC,1,10,43,(2:01) (Shotgun) C.Ponder pass short left to P.Harvin ran ob at JAX 38 for 5 yards.,0,9,2012 -20120909_JAC@MIN,2,31,56,MIN,JAC,2,5,38,(1:56) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at JAX 27 for 11 yards (D.Landry).,0,9,2012 -20120909_JAC@MIN,2,31,50,MIN,JAC,1,10,27,(1:50) A.Peterson right tackle to JAX 19 for 8 yards (D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,31,29,MIN,JAC,2,2,19,(1:29) (Shotgun) C.Ponder pass short right to M.Jenkins to JAX 5 for 14 yards (A.Ross).,0,9,2012 -20120909_JAC@MIN,2,31,15,MIN,JAC,1,5,5,(1:15) A.Peterson right tackle to JAX 3 for 2 yards (R.Allen; D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,2,3,3,(:45) A.Peterson up the middle for 3 yards TOUCHDOWN.,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 16 for 20 yards (C.Ballard).,7,9,2012 -20120909_JAC@MIN,2,30,37,JAC,MIN,1,10,84,(:37) B.Gabbert kneels to JAX 15 for -1 yards.,9,7,2012 -20120909_JAC@MIN,3,30,0,MIN,JAC,,,84,B.Walsh kicks 70 yards from MIN 35 to JAX -5. J.Parmele Touchback.,7,9,2012 -20120909_JAC@MIN,3,30,0,JAC,MIN,1,10,80,(15:00) M.Jones-Drew right tackle to JAX 23 for 3 yards (L.Guion; E.Henderson).,9,7,2012 -20120909_JAC@MIN,3,29,17,JAC,MIN,2,7,77,(14:17) PENALTY on JAX-G.Whimper False Start 5 yards enforced at JAX 23 - No Play.,9,7,2012 -20120909_JAC@MIN,3,29,2,JAC,MIN,2,12,82,(14:02) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 25 for 7 yards (C.Greenway).,9,7,2012 -20120909_JAC@MIN,3,28,18,JAC,MIN,3,5,75,(13:18) (Shotgun) B.Gabbert pass short right to M.Owens pushed ob at JAX 33 for 8 yards (A.Winfield) [E.Griffen].,9,7,2012 -20120909_JAC@MIN,3,28,0,JAC,MIN,1,10,67,(13:00) (Shotgun) M.Jones-Drew left guard to JAX 37 for 4 yards (C.Greenway).,9,7,2012 -20120909_JAC@MIN,3,27,20,JAC,MIN,2,6,63,(12:20) M.Jones-Drew left guard to JAX 44 for 7 yards (H.Smith).,9,7,2012 -20120909_JAC@MIN,3,26,41,MIN,JAC,1,10,56,(11:41) B.Gabbert FUMBLES (Aborted) at JAX 44 RECOVERED by MIN-K.Williams at JAX 44. K.Williams to JAX 44 for no gain (Team).,7,9,2012 -20120909_JAC@MIN,3,26,36,MIN,JAC,1,10,44,(11:36) A.Peterson right end pushed ob at JAX 25 for 19 yards (D.Landry).,7,9,2012 -20120909_JAC@MIN,3,26,17,MIN,JAC,1,10,25,(11:17) C.Ponder pass short middle to P.Harvin to JAX 6 for 19 yards (D.Lowery).,7,9,2012 -20120909_JAC@MIN,3,25,25,MIN,JAC,1,6,6,(10:25) A.Peterson up the middle to JAX 2 for 4 yards (T.Alualu).,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,2,2,2,(9:46) A.Peterson up the middle for 2 yards TOUCHDOWN.,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 18 for 22 yards (B.Burton).,14,9,2012 -20120909_JAC@MIN,3,24,38,JAC,MIN,1,10,82,(9:38) M.Jones-Drew left end to JAX 18 for no gain (C.Greenway; E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,23,59,JAC,MIN,2,10,82,(8:59) B.Gabbert pass short right to G.Jones to JAX 27 for 9 yards (H.Smith; E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,23,28,JAC,MIN,3,1,73,(8:28) (Shotgun) M.Jones-Drew left end to JAX 37 for 10 yards (C.Greenway).,9,14,2012 -20120909_JAC@MIN,3,22,46,JAC,MIN,1,10,63,(7:46) B.Gabbert pass short left to L.Robinson to JAX 43 for 6 yards (C.Greenway; J.Brinkley).,9,14,2012 -20120909_JAC@MIN,3,22,7,JAC,MIN,2,4,57,(7:07) J.Parmele up the middle to JAX 43 for no gain (C.Greenway).,9,14,2012 -20120909_JAC@MIN,3,21,22,JAC,MIN,3,4,57,(6:22) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (B.Robison).,9,14,2012 -20120909_JAC@MIN,3,21,18,JAC,MIN,4,4,57,(6:18) B.Anger punts 57 yards to end zone Center-J.Cain Touchback.,9,14,2012 -20120909_JAC@MIN,3,21,12,MIN,JAC,1,10,80,(6:12) C.Ponder sacked at MIN 16 for -4 yards (T.Knighton). FUMBLES (T.Knighton) RECOVERED by JAX-C.Mosley at MIN 16. C.Mosley to MIN 16 for no gain (Team).,14,9,2012 -20120909_JAC@MIN,3,21,5,JAC,MIN,1,10,16,(6:05) (Shotgun) B.Gabbert scrambles right tackle pushed ob at MIN 12 for 4 yards (E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,20,33,JAC,MIN,2,6,12,(5:33) M.Jones-Drew left guard to MIN 8 for 4 yards (J.Brinkley).,9,14,2012 -20120909_JAC@MIN,3,19,48,JAC,MIN,3,2,8,(4:48) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [F.Evans].,9,14,2012 -20120909_JAC@MIN,3,19,44,JAC,MIN,4,2,8,(4:44) J.Scobee 26 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,9,14,2012 -20120909_JAC@MIN,3,19,44,JAC,MIN,,,8,J.Scobee kicks 72 yards from JAX 35 to MIN -7. P.Harvin to MIN 23 for 30 yards (K.Rutland).,12,14,2012 -20120909_JAC@MIN,3,19,35,MIN,JAC,1,10,77,(4:35) C.Ponder pass short right to M.Jenkins to MIN 38 for 15 yards (R.Allen; C.Mosley).,14,12,2012 -20120909_JAC@MIN,3,18,58,MIN,JAC,1,10,62,(3:58) T.Gerhart left end to MIN 44 for 6 yards (P.Posluszny).,14,12,2012 -20120909_JAC@MIN,3,18,22,MIN,JAC,2,4,56,(3:22) P.Harvin up the middle to JAX 47 for 9 yards (D.Landry).,14,12,2012 -20120909_JAC@MIN,3,17,45,MIN,JAC,1,10,47,(2:45) C.Ponder pass short left to P.Harvin pushed ob at JAX 34 for 13 yards (K.Rutland).,14,12,2012 -20120909_JAC@MIN,3,17,22,MIN,JAC,1,10,34,(2:22) T.Gerhart left end to JAX 32 for 2 yards (D.Lowery; W.Middleton).,14,12,2012 -20120909_JAC@MIN,3,16,43,MIN,JAC,2,8,32,(1:43) C.Ponder sacked at JAX 32 for 0 yards (T.Alualu).,14,12,2012 -20120909_JAC@MIN,3,15,57,MIN,JAC,3,8,32,(:57) (Shotgun) C.Ponder pass deep left to K.Rudolph to JAX 3 for 29 yards (K.Rutland).,14,12,2012 -20120909_JAC@MIN,3,15,28,MIN,JAC,1,3,3,(:28) P.Harvin up the middle to JAX 4 for -1 yards (K.Bosworth).,14,12,2012 -20120909_JAC@MIN,4,15,0,MIN,JAC,2,4,4,(15:00) C.Ponder pass short right to M.Asiata to JAX 2 for 2 yards (P.Posluszny).,14,12,2012 -20120909_JAC@MIN,4,14,17,MIN,JAC,3,2,2,(14:17) C.Ponder pass incomplete short right to J.Carlson (R.Allen).,14,12,2012 -20120909_JAC@MIN,4,14,12,MIN,JAC,4,2,2,(14:12) B.Walsh 20 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,12,2012 -20120909_JAC@MIN,4,14,12,MIN,JAC,,,2,B.Walsh kicks 71 yards from MIN 35 to JAX -6. J.Parmele Touchback.,17,12,2012 -20120909_JAC@MIN,4,14,9,JAC,MIN,1,10,80,(14:09) B.Gabbert pass deep middle to L.Robinson to JAX 39 for 19 yards (H.Smith).,12,17,2012 -20120909_JAC@MIN,4,13,32,JAC,MIN,1,10,61,(13:32) (Shotgun) B.Gabbert pass short left to J.Blackmon pushed ob at JAX 40 for 1 yard (J.Robinson).,12,17,2012 -20120909_JAC@MIN,4,12,50,JAC,MIN,2,9,60,(12:50) B.Gabbert sacked at JAX 40 for 0 yards (E.Henderson). PENALTY on MIN-L.Guion Unnecessary Roughness 15 yards enforced at JAX 40.,12,17,2012 -20120909_JAC@MIN,4,12,50,JAC,MIN,1,10,45,(12:50) M.Jones-Drew right end to MIN 44 for 1 yard (B.Robison).,12,17,2012 -20120909_JAC@MIN,4,11,49,JAC,MIN,2,9,44,(11:49) (Shotgun) B.Gabbert pass incomplete deep middle to M.Thomas (M.Raymond).,12,17,2012 -20120909_JAC@MIN,4,11,43,JAC,MIN,3,9,44,(11:43) (Shotgun) B.Gabbert pass short right to M.Lewis to MIN 32 for 12 yards (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,11,3,JAC,MIN,1,10,32,(11:03) M.Jones-Drew up the middle to MIN 29 for 3 yards (F.Evans).,12,17,2012 -20120909_JAC@MIN,4,10,24,JAC,MIN,2,7,29,(10:24) M.Jones-Drew right guard to MIN 29 for no gain (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,9,45,JAC,MIN,3,7,29,(9:45) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,9,40,JAC,MIN,4,7,29,(9:40) J.Scobee 47 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,12,17,2012 -20120909_JAC@MIN,4,9,40,JAC,MIN,,,29,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,15,17,2012 -20120909_JAC@MIN,4,9,35,MIN,JAC,1,10,80,(9:35) A.Peterson up the middle to MIN 25 for 5 yards (T.Alualu; J.Mincey).,17,15,2012 -20120909_JAC@MIN,4,9,35,MIN,JAC,2,5,75,(9:35) C.Ponder pass deep right to M.Jenkins ran ob at MIN 41 for 16 yards.,17,15,2012 -20120909_JAC@MIN,4,8,42,MIN,JAC,1,10,59,(8:42) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 39 for 20 yards (R.Mathis).,17,15,2012 -20120909_JAC@MIN,4,7,58,MIN,JAC,1,10,39,(7:58) A.Peterson left guard to JAX 38 for 1 yard (R.Allen; P.Posluszny).,17,15,2012 -20120909_JAC@MIN,4,7,25,MIN,JAC,2,9,38,(7:25) C.Ponder pass short left to D.Aromashodu to JAX 20 for 18 yards (R.Allen).,17,15,2012 -20120909_JAC@MIN,4,6,45,MIN,JAC,1,10,20,(6:45) P.Harvin up the middle to JAX 13 for 7 yards (J.Mincey).,17,15,2012 -20120909_JAC@MIN,4,6,8,MIN,JAC,2,3,13,(6:08) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,17,15,2012 -20120909_JAC@MIN,4,6,3,MIN,JAC,3,3,13,(6:03) (Shotgun) C.Ponder scrambles left end to JAX 11 for 2 yards (Team). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at JAX 13 - No Play.,17,15,2012 -20120909_JAC@MIN,4,5,43,MIN,JAC,3,13,23,(5:43) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph.,17,15,2012 -20120909_JAC@MIN,4,5,38,MIN,JAC,4,13,23,(5:38) B.Walsh 42 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,15,2012 -20120909_JAC@MIN,4,5,38,MIN,JAC,,,23,B.Walsh kicks 73 yards from MIN 35 to JAX -8. J.Parmele Touchback.,20,15,2012 -20120909_JAC@MIN,4,5,33,JAC,MIN,1,10,80,(5:33) B.Gabbert pass short left to L.Robinson to JAX 28 for 8 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,5,6,JAC,MIN,2,2,72,(5:06) (Shotgun) M.Jones-Drew left tackle to JAX 29 for 1 yard (E.Henderson).,15,20,2012 -20120909_JAC@MIN,4,4,21,JAC,MIN,3,1,71,(4:21) B.Gabbert up the middle to JAX 30 for 1 yard (Team).,15,20,2012 -20120909_JAC@MIN,4,3,41,JAC,MIN,1,10,70,(3:41) B.Gabbert sacked at JAX 19 for -11 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,3,6,JAC,MIN,2,21,81,(3:06) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 22 for 3 yards (A.Winfield).,15,20,2012 -20120909_JAC@MIN,4,2,30,JAC,MIN,3,18,78,(2:30) (Shotgun) B.Gabbert pass short right to M.Lewis to JAX 30 for 8 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,2,0,JAC,MIN,4,10,70,(2:00) B.Anger punts 56 yards to MIN 14 Center-J.Cain fair catch by M.Sherels.,15,20,2012 -20120909_JAC@MIN,4,1,51,MIN,JAC,1,10,86,(1:51) A.Peterson left guard to MIN 15 for 1 yard (T.Alualu).,20,15,2012 -20120909_JAC@MIN,4,1,46,MIN,JAC,2,9,85,(1:46) A.Peterson right end to MIN 18 for 3 yards (A.Ross; P.Posluszny). Penalty on MIN-M.Jenkins Illegal Cut declined.,20,15,2012 -20120909_JAC@MIN,4,1,35,MIN,JAC,3,6,82,(1:35) T.Gerhart left guard to MIN 17 for -1 yards (J.Mincey).,20,15,2012 -20120909_JAC@MIN,4,1,31,MIN,JAC,4,7,83,(1:31) C.Kluwe punts 59 yards to JAX 24 Center-C.Loeffler downed by MIN-J.Sanford.,20,15,2012 -20120909_JAC@MIN,4,1,18,JAC,MIN,1,10,76,(1:18) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 44 for 20 yards (M.Raymond).,15,20,2012 -20120909_JAC@MIN,4,1,3,JAC,MIN,1,10,56,(1:03) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to MIN 49 for 7 yards (E.Henderson).,15,20,2012 -20120909_JAC@MIN,4,0,43,JAC,MIN,2,3,49,(:43) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,15,20,2012 -20120909_JAC@MIN,4,0,36,JAC,MIN,3,3,49,(:36) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (C.Greenway).,15,20,2012 -20120909_JAC@MIN,4,0,32,JAC,MIN,4,3,49,(:32) (Shotgun) B.Gabbert pass short left to J.Blackmon ran ob at MIN 39 for 10 yards.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,1,10,39,(:27) (Shotgun) B.Gabbert pass deep right to C.Shorts for 39 yards TOUCHDOWN.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to J.Blackmon is complete. ATTEMPT SUCCEEDS.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,J.Scobee kicks 56 yards from JAX 35 to MIN 9. M.Asiata to MIN 31 for 22 yards (M.Owens).,23,20,2012 -20120909_JAC@MIN,4,0,14,MIN,JAC,1,10,69,(:14) C.Ponder pass deep right to D.Aromashodu to JAX 43 for 26 yards (M.Owens).,20,23,2012 -20120909_JAC@MIN,4,0,7,MIN,JAC,1,10,43,(:07) (Shotgun) C.Ponder pass short right to K.Rudolph pushed ob at JAX 37 for 6 yards (D.Landry).,20,23,2012 -20120909_JAC@MIN,4,0,4,MIN,JAC,2,4,37,(:04) B.Walsh 55 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,20,23,2012 -20120909_JAC@MIN,5,0,0,JAC,MIN,,,37,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 25 for 30 yards (W.Middleton).,23,23,2012 -20120909_JAC@MIN,5,-1,53,MIN,JAC,1,10,75,(14:53) A.Peterson right guard to MIN 35 for 10 yards (P.Posluszny; D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-1,13,MIN,JAC,1,10,65,(14:13) C.Ponder pass short middle to A.Peterson to MIN 38 for 3 yards (R.Allen; C.Mosley).,23,23,2012 -20120909_JAC@MIN,5,-2,38,MIN,JAC,2,7,62,(13:38) A.Peterson up the middle to JAX 42 for 20 yards (W.Middleton; D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-3,55,MIN,JAC,1,10,42,(12:55) C.Ponder pass deep right to D.Aromashodu pushed ob at JAX 25 for 17 yards (D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-3,46,MIN,JAC,1,10,25,(12:46) P.Harvin left end to JAX 24 for 1 yard (A.Ross).,23,23,2012 -20120909_JAC@MIN,5,-3,8,MIN,JAC,2,9,24,(12:08) A.Peterson left guard to JAX 28 for -4 yards (DA.Smith). JAX-DA.Smith was injured during the play. His return is Probable.,23,23,2012 -20120909_JAC@MIN,5,-4,36,MIN,JAC,3,13,28,(11:36) (Shotgun) C.Ponder pass short left to T.Gerhart to JAX 20 for 8 yards (D.Lowery).,23,23,2012 -20120909_JAC@MIN,5,-4,11,MIN,JAC,4,5,20,(11:11) B.Walsh 38 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,23,23,2012 -20120909_JAC@MIN,5,-4,11,MIN,JAC,,,20,B.Walsh kicks 63 yards from MIN 35 to JAX 2. J.Parmele to JAX 23 for 21 yards (T.McKenzie).,26,23,2012 -20120909_JAC@MIN,5,-4,0,JAC,MIN,1,10,77,(11:00) B.Gabbert pass incomplete short left to L.Robinson.,23,26,2012 -20120909_JAC@MIN,5,-5,57,JAC,MIN,2,10,77,(10:57) M.Jones-Drew right tackle to JAX 31 for 8 yards (K.Williams; C.Greenway).,23,26,2012 -20120909_JAC@MIN,5,-5,16,JAC,MIN,3,2,69,(10:16) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson (H.Smith).,23,26,2012 -20120909_JAC@MIN,5,-5,12,JAC,MIN,4,2,69,(10:12) (Shotgun) B.Gabbert pass incomplete deep right to L.Robinson.,23,26,2012 -20120909_JAC@MIN,5,-5,12,JAC,MIN,,,69,                      ,23,26,2012 -20120909_WAS@NO,1,-5,0,WAS,NO,,,69,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 -20120909_WAS@NO,1,60,0,NO,WAS,1,10,80,(15:00) D.Brees pass incomplete short left to M.Colston.,0,0,2012 -20120909_WAS@NO,1,59,57,NO,WAS,2,10,80,(14:57) D.Brees pass incomplete short left to L.Moore [A.Carriker].,0,0,2012 -20120909_WAS@NO,1,59,52,NO,WAS,3,10,80,(14:52) (Shotgun) D.Brees pass incomplete short middle (S.Bowen).,0,0,2012 -20120909_WAS@NO,1,59,47,NO,WAS,4,10,80,(14:47) T.Morstead punts 59 yards to WAS 21 Center-J.Drescher. B.Banks pushed ob at WAS 32 for 11 yards (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,59,34,WAS,NO,1,10,68,(14:34) (Shotgun) R.Griffin pass short left to P.Garcon to WAS 32 for no gain (C.White). Pass -4 YAC 4,0,0,2012 -20120909_WAS@NO,1,58,58,WAS,NO,2,10,68,(13:58) (Shotgun) R.Griffin right end to WAS 44 for 12 yards (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,58,25,WAS,NO,1,10,56,(13:25) (Shotgun) R.Griffin pass short left to P.Garcon to NO 44 for 12 yards (R.Harper). Pass -2 YAC 14,0,0,2012 -20120909_WAS@NO,1,57,44,WAS,NO,1,10,44,(12:44) (Shotgun) R.Griffin pass short right to P.Garcon to NO 35 for 9 yards (C.Lofton; C.White).,0,0,2012 -20120909_WAS@NO,1,57,0,WAS,NO,2,1,35,(12:00) (Shotgun) R.Griffin pass short left to A.Robinson to NO 30 for 5 yards (R.Harper). Pass -3 YAC 8,0,0,2012 -20120909_WAS@NO,1,56,23,WAS,NO,1,10,30,(11:23) A.Morris right tackle to NO 27 for 3 yards (C.Jordan).,0,0,2012 -20120909_WAS@NO,1,55,44,WAS,NO,2,7,27,(10:44) (Shotgun) A.Morris right guard to NO 25 for 2 yards (S.Shanle; B.Bunkley).,0,0,2012 -20120909_WAS@NO,1,55,3,WAS,NO,3,5,25,(10:03) (Shotgun) R.Griffin pass short left to B.Banks to NO 19 for 6 yards (C.Lofton). Pass -5 YAC 11,0,0,2012 -20120909_WAS@NO,1,54,17,WAS,NO,1,10,24,(9:17) (Shotgun) R.Griffin FUMBLES (Aborted) at NO 24 and recovers at NO 24. R.Griffin to NO 24 for no gain (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,53,30,WAS,NO,2,15,24,(8:30) (Shotgun) A.Morris right guard to NO 22 for 2 yards (W.Smith).,0,0,2012 -20120909_WAS@NO,1,52,52,WAS,NO,3,13,22,(7:52) (Shotgun) R.Griffin pass short left to R.Helu to NO 19 for 3 yards (J.Casillas). Pass -4 YAC 7,0,0,2012 -20120909_WAS@NO,1,52,11,WAS,NO,4,10,19,(7:11) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20120909_WAS@NO,1,52,11,WAS,NO,,,19,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,3,0,2012 -20120909_WAS@NO,1,52,5,NO,WAS,1,10,80,(7:05) P.Thomas left tackle to NO 26 for 6 yards (D.Gomes; P.Riley).,0,3,2012 -20120909_WAS@NO,1,51,31,NO,WAS,2,4,74,(6:31) (Shotgun) D.Brees pass short middle to J.Graham to NO 49 for 23 yards (D.Gomes; J.Wilson). Pass 13 YAC 10,0,3,2012 -20120909_WAS@NO,1,50,56,NO,WAS,1,10,51,(5:56) M.Ingram left guard to 50 for 1 yard (P.Riley).,0,3,2012 -20120909_WAS@NO,1,50,23,NO,WAS,2,9,50,(5:23) D.Brees pass short left to P.Thomas to WAS 38 for 12 yards (B.Orakpo). Pass -4 YAC 16,0,3,2012 -20120909_WAS@NO,1,49,49,NO,WAS,1,10,38,(4:49) M.Ingram left end to WAS 37 for 1 yard (A.Carriker).,0,3,2012 -20120909_WAS@NO,1,49,16,NO,WAS,2,9,37,(4:16) (Shotgun) D.Brees pass short right to D.Sproles to WAS 35 for 2 yards (R.Kerrigan). PENALTY on WAS-D.Gomes Personal Foul 15 yards enforced at WAS 35. Pass -5 YAC 5,0,3,2012 -20120909_WAS@NO,1,48,55,NO,WAS,1,10,20,(3:55) D.Brees pass deep middle to J.Graham for 20 yards TOUCHDOWN.,0,3,2012 -20120909_WAS@NO,1,48,55,NO,WAS,,,20,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,3,2012 -20120909_WAS@NO,1,48,41,WAS,NO,1,10,88,(3:41) R.Griffin pass deep left to P.Garcon for 88 yards TOUCHDOWN [M.Jenkins]. Pass 16 YAC 72,3,7,2012 -20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,3,7,2012 -20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff kicks 73 yards from WAS 35 to NO -8. D.Sproles to NO 18 for 26 yards (Mad.Williams).,10,7,2012 -20120909_WAS@NO,1,48,21,NO,WAS,1,10,82,(3:21) D.Brees pass incomplete short left to L.Moore.,7,10,2012 -20120909_WAS@NO,1,48,15,NO,WAS,2,10,82,(3:15) D.Brees pass incomplete short middle to J.Collins.,7,10,2012 -20120909_WAS@NO,1,48,15,NO,WAS,3,10,82,(3:15) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 18 - No Play.,7,10,2012 -20120909_WAS@NO,1,48,11,NO,WAS,3,15,87,(3:11) (Shotgun) PENALTY on NO-L.Moore False Start 5 yards enforced at NO 13 - No Play.,7,10,2012 -20120909_WAS@NO,1,48,11,NO,WAS,3,20,92,(3:11) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,7,10,2012 -20120909_WAS@NO,1,48,4,NO,WAS,4,20,92,(3:04) T.Morstead punts 49 yards to WAS 43 Center-J.Drescher downed by NO-C.Roby.,7,10,2012 -20120909_WAS@NO,1,47,53,WAS,NO,1,10,57,(2:53) A.Morris left guard to WAS 45 for 2 yards (S.Ellis; C.Jordan).,10,7,2012 -20120909_WAS@NO,1,47,15,WAS,NO,2,8,55,(2:15) (Shotgun) A.Morris right tackle to WAS 47 for 2 yards (B.Bunkley).,10,7,2012 -20120909_WAS@NO,1,46,30,WAS,NO,3,6,53,(1:30) (Shotgun) R.Griffin right end to NO 48 for 5 yards (J.Patrick).,10,7,2012 -20120909_WAS@NO,1,46,4,WAS,NO,4,1,48,(1:04) D.Young right guard to NO 46 for 2 yards (C.Lofton).,10,7,2012 -20120909_WAS@NO,1,45,32,WAS,NO,1,10,46,(:32) (Shotgun) A.Morris right guard to NO 45 for 1 yard (S.Ellis).,10,7,2012 -20120909_WAS@NO,2,45,0,WAS,NO,2,9,45,(15:00) (Shotgun) R.Griffin pass deep right to F.Davis pushed ob at NO 19 for 26 yards (C.White). Pass 26 YAC 0,10,7,2012 -20120909_WAS@NO,2,44,29,WAS,NO,1,10,19,(14:29) (Shotgun) R.Griffin right end to NO 12 for 7 yards (J.Patrick).,10,7,2012 -20120909_WAS@NO,2,43,46,WAS,NO,2,3,12,(13:46) (Shotgun) A.Morris left guard to NO 10 for 2 yards (C.Lofton; S.Ellis).,10,7,2012 -20120909_WAS@NO,2,43,3,WAS,NO,3,1,10,(13:03) (Shotgun) A.Morris right guard to NO 6 for 4 yards (D.Hawthorne; S.Ellis).,10,7,2012 -20120909_WAS@NO,2,42,24,WAS,NO,1,6,6,(12:24) (Shotgun) R.Griffin pass incomplete short right to S.Moss (J.Patrick). NO-J.Patrick was injured during the play. His return is Questionable.,10,7,2012 -20120909_WAS@NO,2,42,18,WAS,NO,2,6,6,(12:18) (Shotgun) R.Griffin pass short right to R.Helu to NO 5 for 1 yard (R.Harper). Pass -4 YAC 5,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,3,5,5,(11:37) (Shotgun) R.Griffin pass short right to A.Robinson for 5 yards TOUCHDOWN. Pass 5 YAC 0,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,(Kick formation) PENALTY on NO-P.Robinson Defensive Offside 5 yards enforced between downs.,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff kicks 60 yards from WAS 40 to end zone Touchback.,17,7,2012 -20120909_WAS@NO,2,41,33,NO,WAS,1,10,80,(11:33) M.Ingram left guard to NO 25 for 5 yards (J.Wilson).,7,17,2012 -20120909_WAS@NO,2,41,2,NO,WAS,2,5,75,(11:02) M.Ingram right guard to NO 25 for no gain (S.Bowen).,7,17,2012 -20120909_WAS@NO,2,40,25,NO,WAS,3,5,75,(10:25) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 25 - No Play.,7,17,2012 -20120909_WAS@NO,2,40,2,NO,WAS,3,10,80,(10:02) (Shotgun) D.Brees sacked at NO 13 for -7 yards (D.Hall).,7,17,2012 -20120909_WAS@NO,2,39,25,NO,WAS,4,17,87,(9:25) T.Morstead punts 59 yards to WAS 28 Center-J.Drescher. B.Banks to WAS 48 for 20 yards (C.White).,7,17,2012 -20120909_WAS@NO,2,39,13,WAS,NO,1,10,52,(9:13) (Shotgun) R.Griffin left end to WAS 49 for 1 yard (C.Lofton).,17,7,2012 -20120909_WAS@NO,2,38,40,WAS,NO,2,9,51,(8:40) (Shotgun) A.Morris left end to NO 48 for 3 yards (S.Ellis).,17,7,2012 -20120909_WAS@NO,2,37,59,WAS,NO,3,6,48,(7:59) (Shotgun) R.Griffin pass deep left to S.Moss pushed ob at NO 21 for 27 yards (M.Jenkins). PENALTY on WAS-R.Helu Illegal Block Above the Waist 10 yards enforced at NO 21. Pass 16 YAC 11,17,7,2012 -20120909_WAS@NO,2,37,29,WAS,NO,1,10,31,(7:29) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,17,7,2012 -20120909_WAS@NO,2,37,24,WAS,NO,2,10,31,(7:24) R.Griffin left end pushed ob at NO 23 for 8 yards (R.Harper).,17,7,2012 -20120909_WAS@NO,2,36,53,WAS,NO,3,2,23,(6:53) (Shotgun) R.Griffin right guard to NO 23 for no gain (C.Lofton).,17,7,2012 -20120909_WAS@NO,2,36,13,WAS,NO,4,2,23,(6:13) B.Cundiff 41 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,17,7,2012 -20120909_WAS@NO,2,36,13,WAS,NO,,,23,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,20,7,2012 -20120909_WAS@NO,2,36,8,NO,WAS,1,10,80,(6:08) (Shotgun) D.Brees pass short left to D.Sproles to NO 25 for 5 yards (P.Riley). Pass -2 YAC 7,7,20,2012 -20120909_WAS@NO,2,35,40,NO,WAS,2,5,75,(5:40) (Shotgun) D.Brees pass short middle to J.Graham to NO 45 for 20 yards (Mad.Williams). Pass 15 YAC 5,7,20,2012 -20120909_WAS@NO,2,35,10,NO,WAS,1,10,55,(5:10) (Shotgun) D.Brees pass short right to J.Graham to NO 49 for 4 yards (L.Fletcher). Pass 4 YAC 0,7,20,2012 -20120909_WAS@NO,2,34,19,NO,WAS,2,6,51,(4:19) M.Ingram left guard to WAS 45 for 6 yards (P.Riley).,7,20,2012 -20120909_WAS@NO,2,33,40,NO,WAS,1,10,45,(3:40) D.Brees pass incomplete short right to J.Collins.,7,20,2012 -20120909_WAS@NO,2,33,34,NO,WAS,2,10,45,(3:34) D.Brees pass short right to J.Graham to WAS 39 for 6 yards (D.Gomes). Pass 6 YAC 0,7,20,2012 -20120909_WAS@NO,2,32,47,NO,WAS,3,4,39,(2:47) (Shotgun) D.Brees pass short right to M.Colston to WAS 25 for 14 yards (C.Griffin). Pass 13 YAC 1,7,20,2012 -20120909_WAS@NO,2,32,11,NO,WAS,1,10,25,(2:11) P.Thomas left guard to WAS 22 for 3 yards (B.Orakpo).,7,20,2012 -20120909_WAS@NO,2,32,0,NO,WAS,2,7,22,(2:00) D.Brees pass incomplete deep left to D.Thomas.,7,20,2012 -20120909_WAS@NO,2,31,54,NO,WAS,3,7,22,(1:54) (Shotgun) D.Brees pass short right to M.Colston to WAS 3 for 19 yards (C.Griffin). FUMBLES (C.Griffin) ball out of bounds in End Zone Touchback. Pass 14 YAC 5 The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,20,2012 -20120909_WAS@NO,2,31,46,WAS,NO,1,10,80,(1:46) R.Griffin right end to WAS 18 for -2 yards (J.Galette).,20,7,2012 -20120909_WAS@NO,2,31,1,WAS,NO,2,12,82,(1:01) E.Royster right tackle to WAS 26 for 8 yards (P.Robinson).,20,7,2012 -20120909_WAS@NO,2,30,52,WAS,NO,3,4,74,(:52) (Shotgun) E.Royster left guard to WAS 28 for 2 yards (C.Jordan; C.Lofton).,20,7,2012 -20120909_WAS@NO,2,30,46,WAS,NO,4,2,72,(:46) S.Rocca punt is BLOCKED by M.Wilson Center-N.Sundberg RECOVERED by NO-C.Roby at WAS 4. C.Roby for 4 yards TOUCHDOWN.,20,7,2012 -20120909_WAS@NO,2,30,46,NO,WAS,,,72,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,20,2012 -20120909_WAS@NO,2,30,46,,NO,,,72,T.Morstead kicks 70 yards from NO 30 to end zone Touchback.,20,14,2012 -20120909_WAS@NO,2,30,40,WAS,NO,1,10,80,(:40) R.Griffin kneels to WAS 19 for -1 yards.,20,14,2012 -20120909_WAS@NO,3,30,0,NO,WAS,,,80,T.Morstead kicks 64 yards from NO 35 to WAS 1. B.Banks to WAS 23 for 22 yards (T.Cadet).,14,20,2012 -20120909_WAS@NO,3,29,55,WAS,NO,1,10,77,(14:55) (Shotgun) R.Griffin pass short right to S.Moss to WAS 37 for 14 yards (C.White). Pass 12 YAC 2,20,14,2012 -20120909_WAS@NO,3,29,17,WAS,NO,1,10,63,(14:17) (Shotgun) R.Griffin pass short left to J.Morgan to NO 42 for 21 yards (P.Robinson). Pass 14 YAC 7,20,14,2012 -20120909_WAS@NO,3,28,44,WAS,NO,1,10,42,(13:44) A.Morris left end to NO 36 for 6 yards (W.Herring).,20,14,2012 -20120909_WAS@NO,3,28,9,WAS,NO,2,4,36,(13:09) (Shotgun) R.Griffin right end to NO 36 for no gain (C.Lofton; M.Jenkins). PENALTY on WAS-F.Davis Offensive Holding 10 yards enforced at NO 36 - No Play.,20,14,2012 -20120909_WAS@NO,3,27,42,WAS,NO,2,14,46,(12:42) (Shotgun) R.Griffin pass short right to F.Davis to NO 34 for 12 yards (D.Hawthorne; J.Murphy).,20,14,2012 -20120909_WAS@NO,3,26,59,WAS,NO,3,2,34,(11:59) (Shotgun) R.Helu right tackle to NO 33 for 1 yard (C.Jordan).,20,14,2012 -20120909_WAS@NO,3,26,35,WAS,NO,4,1,33,(11:35) R.Griffin pass incomplete deep right to A.Robinson. PENALTY on NO-R.Harper Defensive Pass Interference 32 yards enforced at NO 33 - No Play.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,1,1,1,(11:28) A.Morris left tackle for 1 yard TOUCHDOWN.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,27,14,2012 -20120909_WAS@NO,3,26,24,NO,WAS,1,10,80,(11:24) D.Brees pass incomplete short right to L.Moore (D.Gomes). PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at NO 20 - No Play.,14,27,2012 -20120909_WAS@NO,3,26,17,NO,WAS,1,20,90,(11:17) (Shotgun) D.Brees pass incomplete deep right to M.Colston.,14,27,2012 -20120909_WAS@NO,3,26,11,NO,WAS,2,20,90,(11:11) (Shotgun) D.Brees pass incomplete deep middle to M.Colston.,14,27,2012 -20120909_WAS@NO,3,26,6,NO,WAS,3,20,90,(11:06) (Shotgun) D.Brees pass incomplete deep middle to D.Henderson.,14,27,2012 -20120909_WAS@NO,3,26,0,NO,WAS,4,20,90,(11:00) T.Morstead punts 54 yards to WAS 36 Center-J.Drescher. B.Banks MUFFS catch and recovers at WAS 36. B.Banks to WAS 36 for no gain (C.Roby).,14,27,2012 -20120909_WAS@NO,3,25,50,WAS,NO,1,10,64,(10:50) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 -20120909_WAS@NO,3,25,44,WAS,NO,2,10,64,(10:44) (Shotgun) A.Morris left end pushed ob at NO 46 for 18 yards (W.Herring).,27,14,2012 -20120909_WAS@NO,3,25,20,WAS,NO,1,10,46,(10:20) R.Helu right tackle to NO 45 for 1 yard (C.Jordan).,27,14,2012 -20120909_WAS@NO,3,24,42,WAS,NO,2,9,45,(9:42) A.Morris left tackle to NO 43 for 2 yards (S.Ellis; C.Lofton). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45 - No Play.,27,14,2012 -20120909_WAS@NO,3,24,18,WAS,NO,2,19,55,(9:18) (Shotgun) R.Griffin pass short left to A.Robinson pushed ob at NO 26 for 29 yards (M.Jenkins) [C.White]. Pass 10 YAC 19,27,14,2012 -20120909_WAS@NO,3,23,41,WAS,NO,1,10,26,(8:41) A.Morris right end to NO 23 for 3 yards (C.Jordan).,27,14,2012 -20120909_WAS@NO,3,22,59,WAS,NO,2,7,23,(7:59) A.Morris left guard to NO 19 for 4 yards (C.Jordan; S.Ellis).,27,14,2012 -20120909_WAS@NO,3,22,19,WAS,NO,3,3,19,(7:19) (Shotgun) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 -20120909_WAS@NO,3,22,15,WAS,NO,4,3,19,(7:15) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,27,14,2012 -20120909_WAS@NO,3,22,15,WAS,NO,,,19,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 20 for 29 yards (D.Hall). PENALTY on NO-R.Bush Offensive Holding 10 yards enforced at NO 20.,30,14,2012 -20120909_WAS@NO,3,22,0,NO,WAS,1,10,90,(7:00) D.Brees pass incomplete to M.Colston. PENALTY on WAS-Mad.Williams Defensive Pass Interference 15 yards enforced at NO 10 - No Play.,14,30,2012 -20120909_WAS@NO,3,21,59,NO,WAS,1,10,75,(6:59) P.Thomas right tackle to NO 34 for 9 yards (Mad.Williams).,14,30,2012 -20120909_WAS@NO,3,21,22,NO,WAS,2,1,66,(6:22) D.Brees pass incomplete short middle to M.Colston [R.Kerrigan].,14,30,2012 -20120909_WAS@NO,3,21,16,NO,WAS,3,1,66,(6:16) M.Ingram right guard to NO 36 for 2 yards (D.Gomes; L.Fletcher).,14,30,2012 -20120909_WAS@NO,3,20,45,NO,WAS,1,10,64,(5:45) D.Brees pass short right to D.Henderson to NO 47 for 11 yards (Mad.Williams). NO-D.Henderson was injured during the play. His return is Questionable. Pass 6 YAC 5,14,30,2012 -20120909_WAS@NO,3,20,19,NO,WAS,1,10,53,(5:19) P.Thomas left guard to NO 47 for no gain (D.Gomes). PENALTY on NO-J.Collins Offensive Holding 10 yards enforced at NO 47 - No Play.,14,30,2012 -20120909_WAS@NO,3,20,2,NO,WAS,1,20,63,(5:02) D.Brees pass incomplete short left to M.Ingram.,14,30,2012 -20120909_WAS@NO,3,19,57,NO,WAS,2,20,63,(4:57) (Shotgun) D.Brees pass incomplete short left to D.Sproles (R.Kerrigan). PENALTY on WAS-J.Jenkins Illegal Use of Hands 5 yards enforced at NO 37 - No Play.,14,30,2012 -20120909_WAS@NO,3,19,51,NO,WAS,1,10,58,(4:51) P.Thomas left tackle to NO 41 for -1 yards (D.Hall).,14,30,2012 -20120909_WAS@NO,3,19,11,NO,WAS,2,11,59,(4:11) (Shotgun) D.Brees pass deep right to M.Colston to WAS 34 for 25 yards (J.Wilson). Pass 25 YAC 0,14,30,2012 -20120909_WAS@NO,3,18,25,NO,WAS,1,10,34,(3:25) (Shotgun) D.Brees pass short right to D.Sproles to WAS 25 for 9 yards (L.Fletcher) [B.Cofield]. Pass 8 YAC 1,14,30,2012 -20120909_WAS@NO,3,17,42,NO,WAS,2,1,25,(2:42) (Shotgun) D.Brees pass incomplete deep middle to L.Moore. PENALTY on WAS-D.Gomes Defensive Pass Interference 17 yards enforced at WAS 25 - No Play.,14,30,2012 -20120909_WAS@NO,3,17,37,NO,WAS,1,8,8,(2:37) (Shotgun) D.Brees pass incomplete short left to J.Graham (S.Bowen).,14,30,2012 -20120909_WAS@NO,3,17,33,NO,WAS,2,8,8,(2:33) D.Brees pass short right to D.Thomas to WAS 3 for 5 yards (D.Gomes). Pass -1 YAC 6,14,30,2012 -20120909_WAS@NO,3,16,58,NO,WAS,3,3,3,(1:58) D.Brees pass incomplete short right to D.Sproles (L.Fletcher).,14,30,2012 -20120909_WAS@NO,3,16,54,NO,WAS,4,3,3,(1:54) G.Hartley 21 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,30,2012 -20120909_WAS@NO,3,16,54,NO,WAS,,,3,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,17,30,2012 -20120909_WAS@NO,3,16,50,WAS,NO,1,10,80,(1:50) (Shotgun) R.Griffin pass incomplete short right to A.Robinson (P.Robinson).,30,17,2012 -20120909_WAS@NO,3,16,43,WAS,NO,2,10,80,(1:43) (Shotgun) A.Morris right end pushed ob at WAS 25 for 5 yards (D.Hawthorne).,30,17,2012 -20120909_WAS@NO,3,16,12,WAS,NO,3,5,75,(1:12) (Shotgun) R.Griffin pass incomplete short left to A.Robinson.,30,17,2012 -20120909_WAS@NO,3,16,7,WAS,NO,4,5,75,(1:07) S.Rocca punts 46 yards to NO 29 Center-N.Sundberg fair catch by D.Sproles. PENALTY on NO Defensive 12 On-field 5 yards enforced at WAS 25 - No Play.,30,17,2012 -20120909_WAS@NO,3,16,0,WAS,NO,1,10,70,(1:00) A.Morris left end to WAS 32 for 2 yards (T.Johnson; W.Smith).,30,17,2012 -20120909_WAS@NO,3,15,18,WAS,NO,2,8,68,(:18) A.Morris right end to WAS 43 for 11 yards (W.Smith; R.Harper).,30,17,2012 -20120909_WAS@NO,4,15,0,WAS,NO,1,10,57,(15:00) PENALTY on WAS-T.Williams False Start 5 yards enforced at WAS 43 - No Play.,30,17,2012 -20120909_WAS@NO,4,15,0,WAS,NO,1,15,62,(15:00) A.Morris left guard to WAS 48 for 10 yards (R.Harper).,30,17,2012 -20120909_WAS@NO,4,14,14,WAS,NO,2,5,52,(14:14) A.Morris right end to NO 45 for 7 yards (R.Harper). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45.,30,17,2012 -20120909_WAS@NO,4,13,50,WAS,NO,2,8,55,(13:50) (Shotgun) R.Griffin pass short left to R.Helu pushed ob at NO 34 for 21 yards (R.Harper). Pass 5 YAC 16,30,17,2012 -20120909_WAS@NO,4,13,2,WAS,NO,1,10,34,(13:02) A.Morris right tackle to NO 33 for 1 yard (C.Jordan; B.Bunkley).,30,17,2012 -20120909_WAS@NO,4,12,21,WAS,NO,2,9,33,(12:21) A.Morris left end to NO 32 for 1 yard (C.Lofton; D.Hawthorne).,30,17,2012 -20120909_WAS@NO,4,11,36,WAS,NO,3,8,32,(11:36) (Shotgun) R.Griffin pass short right to S.Moss to NO 31 for 1 yard (J.Galette). PENALTY on NO Defensive Offside 5 yards enforced at NO 32 - No Play.,30,17,2012 -20120909_WAS@NO,4,11,12,WAS,NO,3,3,27,(11:12) (Shotgun) R.Griffin pass incomplete short right to S.Moss.,30,17,2012 -20120909_WAS@NO,4,11,3,WAS,NO,4,3,27,(11:03) B.Cundiff 45 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,30,17,2012 -20120909_WAS@NO,4,11,3,WAS,NO,,,27,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 39 for 48 yards (R.Crawford). WAS-J.Bernstine was injured during the play. He is Out.,33,17,2012 -20120909_WAS@NO,4,10,52,NO,WAS,1,10,61,(10:52) (Shotgun) D.Brees pass incomplete short left to J.Morgan.,17,33,2012 -20120909_WAS@NO,4,10,46,NO,WAS,2,10,61,(10:46) (Shotgun) D.Brees pass incomplete short middle to J.Morgan. PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at NO 39 - No Play.,17,33,2012 -20120909_WAS@NO,4,10,41,NO,WAS,2,20,71,(10:41) (Shotgun) D.Brees sacked at NO 23 for -6 yards (R.Kerrigan).,17,33,2012 -20120909_WAS@NO,4,10,2,NO,WAS,3,26,77,(10:02) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson). WAS-J.Wilson was injured during the play. His return is Questionable.,17,33,2012 -20120909_WAS@NO,4,9,55,NO,WAS,4,26,77,(9:55) T.Morstead punts 57 yards to WAS 20 Center-J.Drescher. B.Banks to WAS 23 for 3 yards (W.Herring). FUMBLES (W.Herring) and recovers at WAS 23. B.Banks to WAS 23 for no gain (I.Abdul-Quddus).,17,33,2012 -20120909_WAS@NO,4,9,37,WAS,NO,1,10,77,(9:37) A.Morris right end to WAS 25 for 2 yards (C.Jordan).,33,17,2012 -20120909_WAS@NO,4,8,53,WAS,NO,2,8,75,(8:53) A.Morris left guard to WAS 24 for -1 yards (D.Hawthorne).,33,17,2012 -20120909_WAS@NO,4,8,14,WAS,NO,3,9,76,(8:14) (Shotgun) R.Griffin pass short right to S.Moss to WAS 30 for 6 yards (J.Murphy). Pass 6 YAC 0,33,17,2012 -20120909_WAS@NO,4,8,14,WAS,NO,4,3,70,(8:14) S.Rocca punts 51 yards to NO 19 Center-N.Sundberg downed by WAS-R.Crawford. PENALTY on WAS Ineligible Downfield Kick 5 yards enforced at WAS 30 - No Play. Penalty on WAS Illegal Touch Kick declined.,33,17,2012 -20120909_WAS@NO,4,7,35,WAS,NO,4,8,75,(7:35) S.Rocca punts 38 yards to NO 37 Center-N.Sundberg. D.Sproles to NO 42 for 5 yards (R.Doughty).,33,17,2012 -20120909_WAS@NO,4,7,23,NO,WAS,1,10,58,(7:23) (Shotgun) D.Brees pass short right to L.Moore ran ob at WAS 46 for 12 yards. Pass 12 YAC 0,17,33,2012 -20120909_WAS@NO,4,7,7,NO,WAS,1,10,46,(7:07) (Shotgun) D.Brees pass short right to M.Colston to WAS 33 for 13 yards (D.Hall; J.Wilson). Pass 7 YAC 6,17,33,2012 -20120909_WAS@NO,4,6,41,NO,WAS,1,10,33,(6:41) (Shotgun) D.Brees pass incomplete short middle to J.Graham (Mad.Williams).,17,33,2012 -20120909_WAS@NO,4,6,37,NO,WAS,2,10,33,(6:37) (Shotgun) D.Brees pass incomplete deep right to J.Morgan (C.Griffin).,17,33,2012 -20120909_WAS@NO,4,6,30,NO,WAS,3,10,33,(6:30) (Shotgun) D.Brees pass incomplete short left to L.Moore (B.Orakpo).,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,4,10,33,(6:25) (Shotgun) D.Brees pass deep left to L.Moore for 33 yards TOUCHDOWN. Pass 33 YAC 0,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,,,33,TWO-POINT CONVERSION ATTEMPT. D.Sproles rushes left guard. ATTEMPT SUCCEEDS.,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,,,33,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,25,33,2012 -20120909_WAS@NO,4,6,19,WAS,NO,1,10,80,(6:19) R.Griffin pass short middle to A.Robinson to WAS 33 for 13 yards (M.Jenkins). Pass 13 YAC 0,33,25,2012 -20120909_WAS@NO,4,5,42,WAS,NO,1,10,67,(5:42) A.Morris left tackle to WAS 36 for 3 yards (B.Bunkley).,33,25,2012 -20120909_WAS@NO,4,4,58,WAS,NO,2,7,64,(4:58) R.Griffin sacked at WAS 27 for -9 yards (P.Robinson).,33,25,2012 -20120909_WAS@NO,4,4,20,WAS,NO,3,16,73,(4:20) (Shotgun) R.Griffin scrambles left end to WAS 39 for 12 yards (J.Galette).,33,25,2012 -20120909_WAS@NO,4,3,49,WAS,NO,4,4,61,(3:49) S.Rocca punts 43 yards to NO 18 Center-N.Sundberg. D.Sproles to NO 27 for 9 yards (R.Doughty).,33,25,2012 -20120909_WAS@NO,4,3,39,NO,WAS,1,10,73,(3:39) (Shotgun) D.Brees pass deep middle intended for L.Moore INTERCEPTED by D.Gomes at WAS 48. D.Gomes pushed ob at NO 3 for 49 yards (J.Morgan).,25,33,2012 -20120909_WAS@NO,4,3,23,WAS,NO,1,3,3,(3:23) A.Morris left tackle for 3 yards TOUCHDOWN.,33,25,2012 -20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,33,25,2012 -20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,40,25,2012 -20120909_WAS@NO,4,3,18,NO,WAS,1,10,80,(3:18) (Shotgun) D.Brees pass short right to J.Graham pushed ob at NO 32 for 12 yards (P.Riley). Pass 11 YAC 1,25,40,2012 -20120909_WAS@NO,4,3,11,NO,WAS,1,10,68,(3:11) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson).,25,40,2012 -20120909_WAS@NO,4,3,9,NO,WAS,2,10,68,(3:09) (Shotgun) D.Brees pass short right to L.Moore ran ob at NO 49 for 17 yards (C.Griffin). Pass 13 YAC 4,25,40,2012 -20120909_WAS@NO,4,3,4,NO,WAS,1,10,51,(3:04) (Shotgun) D.Brees pass incomplete short left to J.Graham.,25,40,2012 -20120909_WAS@NO,4,3,0,NO,WAS,2,10,51,(3:00) (Shotgun) D.Brees pass incomplete short middle to J.Graham. PENALTY on WAS-Mad.Williams Personal Foul 15 yards enforced at NO 49 - No Play.,25,40,2012 -20120909_WAS@NO,4,2,55,NO,WAS,1,10,36,(2:55) (Shotgun) D.Brees pass deep right to L.Moore ran ob at WAS 19 for 17 yards. Pass 17 YAC 0,25,40,2012 -20120909_WAS@NO,4,2,47,NO,WAS,1,10,19,(2:47) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at WAS 2 for 17 yards (J.Wilson). WAS-D.Gomes was injured during the play. His return is Probable. Pass 1 YAC 16,25,40,2012 -20120909_WAS@NO,4,2,40,NO,WAS,1,2,2,(2:40) D.Brees pass incomplete short left to M.Colston (B.Orakpo).,25,40,2012 -20120909_WAS@NO,4,2,38,NO,WAS,2,2,2,(2:38) (Shotgun) D.Brees pass incomplete short left to D.Sproles (B.Orakpo).,25,40,2012 -20120909_WAS@NO,4,2,34,NO,WAS,3,2,2,(2:34) (Shotgun) D.Brees pass incomplete short right to J.Graham.,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,4,2,2,(2:29) (Shotgun) D.Brees pass short left to D.Sproles for 2 yards TOUCHDOWN. Pass 0 YAC 2,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,,,2,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,,,2,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,32,40,2012 -20120909_WAS@NO,4,2,25,WAS,NO,1,10,80,(2:25) A.Morris left end to WAS 17 for -3 yards (W.Smith; R.Harper).,40,32,2012 -20120909_WAS@NO,4,2,22,WAS,NO,2,13,83,(2:22) R.Griffin pass short middle to L.Paulsen to WAS 39 for 22 yards (M.Jenkins; W.Herring). Pass 11 YAC 11,40,32,2012 -20120909_WAS@NO,4,2,13,WAS,NO,1,10,61,(2:13) A.Morris right end to WAS 39 for no gain (C.Lofton; C.Jordan).,40,32,2012 -20120909_WAS@NO,4,2,0,WAS,NO,2,10,61,(2:00) D.Young right guard to WAS 40 for 1 yard (W.Herring; C.Jordan).,40,32,2012 -20120909_WAS@NO,4,1,17,WAS,NO,3,9,60,(1:17) A.Morris right guard to WAS 42 for 2 yards (S.Ellis; M.Jenkins).,40,32,2012 -20120909_WAS@NO,4,0,28,WAS,NO,4,7,58,(:28) S.Rocca punts 58 yards to end zone Center-N.Sundberg Touchback.,40,32,2012 -20120909_WAS@NO,4,0,22,NO,WAS,1,10,80,(:22) (Shotgun) D.Brees pass short right to L.Moore pushed ob at NO 35 for 15 yards (Mad.Williams). Pass 15 YAC 0,32,40,2012 -20120909_WAS@NO,4,0,16,NO,WAS,1,10,65,(:16) (Shotgun) D.Brees pass deep middle to L.Moore to WAS 39 for 26 yards. Pass 24 YAC 2,32,40,2012 -20120909_WAS@NO,4,0,2,NO,WAS,1,10,39,(:02) D.Brees spiked the ball to stop the clock.,32,40,2012 -20120909_WAS@NO,4,0,1,NO,WAS,2,10,39,(:01) (Shotgun) D.Brees pass short right INTERCEPTED by R.Doughty (C.Griffin) at WAS 39. R.Doughty to WAS 3 for -36 yards (J.Morgan).,32,40,2012 -20120909_WAS@NO,4,0,1,NO,WAS,,,39,                      ,32,40,2012 -20120909_BUF@NYJ,1,0,0,BUF,NYJ,,,39,J.Potter kicks 70 yards from BUF 35 to NYJ -5. J.McKnight to NYJ 19 for 24 yards (C.White).,0,0,2012 -20120909_BUF@NYJ,1,59,57,NYJ,BUF,1,10,81,(14:57) M.Sanchez pass incomplete short left to S.Hill.,0,0,2012 -20120909_BUF@NYJ,1,59,53,NYJ,BUF,2,10,81,(14:53) S.Greene right guard to NYJ 23 for 4 yards (M.Dareus).,0,0,2012 -20120909_BUF@NYJ,1,59,17,NYJ,BUF,3,6,77,(14:17) (Shotgun) M.Sanchez pass short left to S.Hill to NYJ 30 for 7 yards (S.Gilmore).,0,0,2012 -20120909_BUF@NYJ,1,58,31,NYJ,BUF,1,10,70,(13:31) (Shotgun) Direct snap to T.Tebow. J.McKnight right end to NYJ 33 for 3 yards (M.Williams).,0,0,2012 -20120909_BUF@NYJ,1,57,50,NYJ,BUF,2,7,67,(12:50) M.Sanchez pass short right to J.Cumberland to NYJ 44 for 11 yards (N.Barnett).,0,0,2012 -20120909_BUF@NYJ,1,57,29,NYJ,BUF,1,10,56,(12:29) S.Greene right tackle to NYJ 47 for 3 yards (N.Barnett; A.Moats).,0,0,2012 -20120909_BUF@NYJ,1,56,53,NYJ,BUF,2,7,53,(11:53) M.Sanchez pass short left intended for J.Cumberland INTERCEPTED by B.Scott at BUF 46. B.Scott ran ob at BUF 46 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,0,2012 -20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,10,54,(11:46) PENALTY on BUF-S.Chandler False Start 5 yards enforced at BUF 46 - No Play.,0,0,2012 -20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,15,59,(11:46) F.Jackson right tackle to BUF 43 for 2 yards (C.Pace).,0,0,2012 -20120909_BUF@NYJ,1,56,7,BUF,NYJ,2,13,57,(11:07) R.Fitzpatrick pass short right to S.Chandler pushed ob at NYJ 44 for 13 yards (L.Landry).,0,0,2012 -20120909_BUF@NYJ,1,55,37,BUF,NYJ,1,10,44,(10:37) F.Jackson right guard to NYJ 47 for -3 yards (C.Pace).,0,0,2012 -20120909_BUF@NYJ,1,54,56,BUF,NYJ,2,13,47,(9:56) R.Fitzpatrick pass short left intended for St.Johnson INTERCEPTED by D.Revis at NYJ 38. D.Revis ran ob at NYJ 39 for 1 yard.,0,0,2012 -20120909_BUF@NYJ,1,54,51,NYJ,BUF,1,10,61,(9:51) S.Greene left tackle to NYJ 41 for 2 yards (A.Moats).,0,0,2012 -20120909_BUF@NYJ,1,54,17,NYJ,BUF,2,8,59,(9:17) S.Greene up the middle to NYJ 42 for 1 yard (B.Scott).,0,0,2012 -20120909_BUF@NYJ,1,53,41,NYJ,BUF,3,7,58,(8:41) (Shotgun) M.Sanchez pass deep right to J.Kerley to BUF 37 for 21 yards (L.McKelvin).,0,0,2012 -20120909_BUF@NYJ,1,53,17,NYJ,BUF,1,10,37,(8:17) (Shotgun) Direct snap to T.Tebow. B.Powell left end to BUF 33 for 4 yards (G.Wilson).,0,0,2012 -20120909_BUF@NYJ,1,52,39,NYJ,BUF,2,6,33,(7:39) M.Sanchez pass incomplete short right to S.Holmes.,0,0,2012 -20120909_BUF@NYJ,1,52,34,NYJ,BUF,3,6,33,(7:34) (Shotgun) M.Sanchez pass incomplete short right to S.Hill. PENALTY on BUF-A.Williams Defensive Pass Interference 5 yards enforced at BUF 33 - No Play.,0,0,2012 -20120909_BUF@NYJ,1,52,20,NYJ,BUF,1,10,28,(7:20) S.Greene up the middle to BUF 16 for 12 yards (J.Byrd).,0,0,2012 -20120909_BUF@NYJ,1,51,45,NYJ,BUF,1,10,16,(6:45) (Shotgun) Direct snap to T.Tebow. T.Tebow left tackle to BUF 12 for 4 yards (C.Kelsay).,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,2,6,12,(6:07) M.Sanchez pass short right to J.Kerley for 12 yards TOUCHDOWN.,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin Touchback.,7,0,2012 -20120909_BUF@NYJ,1,51,2,BUF,NYJ,1,10,80,(6:02) (Shotgun) C.Spiller left tackle to BUF 23 for 3 yards (L.Landry).,0,7,2012 -20120909_BUF@NYJ,1,50,20,BUF,NYJ,2,7,77,(5:20) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 29 for 6 yards (D.Harris).,0,7,2012 -20120909_BUF@NYJ,1,49,39,BUF,NYJ,3,1,71,(4:39) R.Fitzpatrick pass short right to L.Smith to BUF 34 for 5 yards (L.Landry).,0,7,2012 -20120909_BUF@NYJ,1,48,58,BUF,NYJ,1,10,66,(3:58) (Shotgun) R.Fitzpatrick scrambles up the middle to BUF 43 for 9 yards (Y.Bell).,0,7,2012 -20120909_BUF@NYJ,1,48,16,BUF,NYJ,2,1,57,(3:16) F.Jackson left tackle to BUF 47 for 4 yards (D.Harris; B.Thomas).,0,7,2012 -20120909_BUF@NYJ,1,47,37,BUF,NYJ,1,10,53,(2:37) R.Fitzpatrick pass incomplete short left to S.Chandler.,0,7,2012 -20120909_BUF@NYJ,1,47,30,BUF,NYJ,2,10,53,(2:30) (Shotgun) R.Fitzpatrick pass short right intended for D.Nelson INTERCEPTED by K.Wilson at NYJ 43. K.Wilson to NYJ 48 for 5 yards (S.Chandler).,0,7,2012 -20120909_BUF@NYJ,1,47,24,NYJ,BUF,1,10,52,(2:24) B.Powell left end to NYJ 48 for no gain (N.Barnett).,7,0,2012 -20120909_BUF@NYJ,1,46,48,NYJ,BUF,2,10,52,(1:48) (Shotgun) M.Sanchez pass short middle to D.Keller to BUF 45 for 7 yards (S.Gilmore; G.Wilson).,7,0,2012 -20120909_BUF@NYJ,1,46,14,NYJ,BUF,3,3,45,(1:14) (Shotgun) M.Sanchez pass short left to S.Holmes to BUF 36 for 9 yards (L.McKelvin).,7,0,2012 -20120909_BUF@NYJ,1,45,38,NYJ,BUF,1,10,36,(:38) (Shotgun) Direct snap to T.Tebow. T.Tebow right tackle to BUF 33 for 3 yards (Sp.Johnson; J.Byrd).,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,2,7,33,(15:00) M.Sanchez pass deep left to S.Hill for 33 yards TOUCHDOWN.,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,14,0,2012 -20120909_BUF@NYJ,2,44,53,BUF,NYJ,1,10,80,(14:53) (Shotgun) F.Jackson left end to BUF 22 for 2 yards (M.Wilkerson; D.Harris).,0,14,2012 -20120909_BUF@NYJ,2,44,12,BUF,NYJ,2,8,78,(14:12) (Shotgun) PENALTY on BUF-A.Levitre False Start 5 yards enforced at BUF 22 - No Play.,0,14,2012 -20120909_BUF@NYJ,2,43,55,BUF,NYJ,2,13,83,(13:55) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,14,2012 -20120909_BUF@NYJ,2,43,49,BUF,NYJ,3,13,83,(13:49) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 29 for 12 yards (D.Revis) [C.Pace].,0,14,2012 -20120909_BUF@NYJ,2,43,49,BUF,NYJ,4,1,71,(13:49) (Punt formation) PENALTY on BUF-B.Moorman Delay of Game 5 yards enforced at BUF 29 - No Play.,0,14,2012 -20120909_BUF@NYJ,2,42,56,BUF,NYJ,4,6,76,(12:56) B.Moorman punts 44 yards to NYJ 32 Center-G.Sanborn. J.Kerley for 68 yards TOUCHDOWN.,0,14,2012 -20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,14,0,2012 -20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,21,0,2012 -20120909_BUF@NYJ,2,42,40,BUF,NYJ,1,10,80,(12:40) F.Jackson left guard to BUF 23 for 3 yards (D.Harris).,0,21,2012 -20120909_BUF@NYJ,2,42,1,BUF,NYJ,2,7,77,(12:01) R.Fitzpatrick pass short right to St.Johnson to BUF 30 for 7 yards (D.Revis).,0,21,2012 -20120909_BUF@NYJ,2,41,17,BUF,NYJ,1,10,70,(11:17) (Shotgun) F.Jackson right tackle to BUF 37 for 7 yards (C.Pace; L.Landry). BUF-F.Jackson was injured during the play.,0,21,2012 -20120909_BUF@NYJ,2,40,48,BUF,NYJ,2,3,63,(10:48) C.Spiller up the middle to BUF 37 for no gain (Q.Coples).,0,21,2012 -20120909_BUF@NYJ,2,40,7,BUF,NYJ,3,3,63,(10:07) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 44 for 7 yards (D.Revis) [L.Landry].,0,21,2012 -20120909_BUF@NYJ,2,39,23,BUF,NYJ,1,10,56,(9:23) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,2,10,56,(9:17) (Shotgun) C.Spiller left tackle for 56 yards TOUCHDOWN.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,7,21,2012 -20120909_BUF@NYJ,2,39,6,NYJ,BUF,1,10,80,(9:06) S.Greene up the middle to NYJ 22 for 2 yards (Ky.Williams).,21,7,2012 -20120909_BUF@NYJ,2,38,32,NYJ,BUF,2,8,78,(8:32) (Shotgun) M.Sanchez pass short left to S.Holmes to NYJ 39 for 17 yards (K.Sheppard).,21,7,2012 -20120909_BUF@NYJ,2,38,6,NYJ,BUF,1,10,61,(8:06) S.Greene right tackle to NYJ 43 for 4 yards (K.Sheppard; A.Moats).,21,7,2012 -20120909_BUF@NYJ,2,38,6,NYJ,BUF,2,6,57,(8:06) (Shotgun) S.Greene right tackle to NYJ 47 for 4 yards (A.Moats).,21,7,2012 -20120909_BUF@NYJ,2,36,42,NYJ,BUF,3,2,53,(6:42) (Shotgun) M.Sanchez pass short left to S.Hill to BUF 48 for 5 yards (T.McGee).,21,7,2012 -20120909_BUF@NYJ,2,36,1,NYJ,BUF,1,10,48,(6:01) (Shotgun) M.Sanchez pass incomplete deep middle to S.Holmes.,21,7,2012 -20120909_BUF@NYJ,2,35,56,NYJ,BUF,2,10,48,(5:56) S.Greene right guard to BUF 43 for 5 yards (B.Scott). FUMBLES (B.Scott) and recovers at BUF 43.,21,7,2012 -20120909_BUF@NYJ,2,35,8,NYJ,BUF,3,5,43,(5:08) (Shotgun) M.Sanchez pass short right to S.Holmes ran ob at BUF 26 for 17 yards.,21,7,2012 -20120909_BUF@NYJ,2,34,49,NYJ,BUF,1,10,26,(4:49) S.Greene up the middle to BUF 25 for 1 yard (Sp.Johnson; N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,34,15,NYJ,BUF,2,9,25,(4:15) M.Sanchez pass incomplete short right to S.Greene.,21,7,2012 -20120909_BUF@NYJ,2,34,10,NYJ,BUF,3,9,25,(4:10) (Shotgun) M.Sanchez pass short right to J.Cumberland to BUF 16 for 9 yards (K.Sheppard).,21,7,2012 -20120909_BUF@NYJ,2,34,10,NYJ,BUF,1,10,16,(4:10) S.Greene up the middle to BUF 12 for 4 yards (N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,32,47,NYJ,BUF,2,6,12,(2:47) (Shotgun) T.Tebow left tackle to BUF 12 for no gain (Ky.Williams; N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,32,6,NYJ,BUF,3,6,12,(2:06) (Shotgun) M.Sanchez pass short right to J.Kerley ran ob at BUF 7 for 5 yards. New York Jets challenged the first down ruling and the play was Upheld. (Timeout #2.),21,7,2012 -20120909_BUF@NYJ,2,32,0,NYJ,BUF,4,1,7,(2:00) N.Folk 25 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,21,7,2012 -20120909_BUF@NYJ,2,32,0,NYJ,BUF,,,7,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,24,7,2012 -20120909_BUF@NYJ,2,31,57,BUF,NYJ,1,10,80,(1:57) (Shotgun) R.Fitzpatrick pass deep left to C.Spiller to 50 for 30 yards (L.Landry). FUMBLES (L.Landry) RECOVERED by NYJ-Y.Bell at NYJ 30. Y.Bell to NYJ 38 for 8 yards. Lateral to L.Landry to NYJ 47 for 9 yards (A.Levitre). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,7,24,2012 -20120909_BUF@NYJ,2,31,36,NYJ,BUF,1,10,53,(1:36) M.Sanchez pass short middle to B.Powell to BUF 37 for 16 yards (G.Wilson).,24,7,2012 -20120909_BUF@NYJ,2,31,11,NYJ,BUF,1,10,37,(1:11) (No Huddle Shotgun) M.Sanchez pass short right to C.Schilens to BUF 29 for 8 yards (A.Williams).,24,7,2012 -20120909_BUF@NYJ,2,30,54,NYJ,BUF,2,2,29,(:54) (No Huddle Shotgun) B.Powell up the middle to BUF 23 for 6 yards (Ky.Williams).,24,7,2012 -20120909_BUF@NYJ,2,30,36,NYJ,BUF,1,10,23,(:36) M.Sanchez pass short right to J.Kerley to BUF 16 for 7 yards (L.McKelvin).,24,7,2012 -20120909_BUF@NYJ,2,30,21,NYJ,BUF,2,3,16,(:21) M.Sanchez spiked the ball to stop the clock.,24,7,2012 -20120909_BUF@NYJ,2,30,21,NYJ,BUF,3,3,16,(:21) PENALTY on NYJ-M.Sanchez Delay of Game 5 yards enforced at BUF 16 - No Play.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,3,8,21,(:19) M.Sanchez pass incomplete deep left to S.Holmes. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,4,8,21,(:19) N.Folk 39 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,,,21,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,27,7,2012 -20120909_BUF@NYJ,2,30,12,BUF,NYJ,1,10,80,(:12) R.Fitzpatrick kneels to BUF 19 for -1 yards.,7,27,2012 -20120909_BUF@NYJ,3,30,0,NYJ,BUF,,,80,N.Folk kicks 68 yards from NYJ 35 to BUF -3. L.McKelvin to BUF 20 for 23 yards (N.Bellore; G.McIntyre).,27,7,2012 -20120909_BUF@NYJ,3,29,52,BUF,NYJ,1,10,80,(14:52) (Shotgun) C.Spiller up the middle to BUF 28 for 8 yards (B.Scott).,7,27,2012 -20120909_BUF@NYJ,3,29,24,BUF,NYJ,2,2,72,(14:24) (Shotgun) C.Spiller right end to BUF 36 for 8 yards (L.Landry).,7,27,2012 -20120909_BUF@NYJ,3,29,24,BUF,NYJ,1,10,64,(14:24) (Shotgun) R.Fitzpatrick pass short left intended for D.Nelson INTERCEPTED by A.Cromartie at BUF 40. A.Cromartie for 40 yards TOUCHDOWN.,7,27,2012 -20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,27,7,2012 -20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,34,7,2012 -20120909_BUF@NYJ,3,28,41,BUF,NYJ,1,10,80,(13:41) (Shotgun) T.Choice left end to BUF 20 for no gain. PENALTY on BUF-C.Glenn Offensive Holding 10 yards enforced at BUF 20 - No Play.,7,34,2012 -20120909_BUF@NYJ,3,28,20,BUF,NYJ,1,20,90,(13:20) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson [C.Pace].,7,34,2012 -20120909_BUF@NYJ,3,28,16,BUF,NYJ,2,20,90,(13:16) (Shotgun) C.Spiller left tackle to BUF 16 for 6 yards (D.Harris; Y.Bell).,7,34,2012 -20120909_BUF@NYJ,3,27,33,BUF,NYJ,3,14,84,(12:33) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 11 for -5 yards (E.Lankster).,7,34,2012 -20120909_BUF@NYJ,3,27,33,BUF,NYJ,4,19,89,(12:33) B.Moorman punts 37 yards to BUF 48 Center-G.Sanborn out of bounds.,7,34,2012 -20120909_BUF@NYJ,3,26,48,NYJ,BUF,1,10,48,(11:48) M.Sanchez pass deep left to S.Hill to BUF 21 for 27 yards (G.Wilson; J.Byrd). Flea flicker- Sanchez hands to Greene who tosses back to Sanchez to pass.,34,7,2012 -20120909_BUF@NYJ,3,26,5,NYJ,BUF,1,10,21,(11:05) S.Greene right tackle to BUF 18 for 3 yards (K.Sheppard).,34,7,2012 -20120909_BUF@NYJ,3,25,23,NYJ,BUF,2,7,18,(10:23) S.Greene up the middle to BUF 17 for 1 yard (N.Barnett).,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,3,6,17,(9:45) M.Sanchez pass short right to S.Hill for 17 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin to BUF 23 for 22 yards (J.Bush).,41,7,2012 -20120909_BUF@NYJ,3,24,32,BUF,NYJ,1,10,77,(9:32) C.Spiller up the middle to BUF 28 for 5 yards (B.Scott).,7,41,2012 -20120909_BUF@NYJ,3,24,0,BUF,NYJ,2,5,72,(9:00) C.Spiller left end pushed ob at BUF 33 for 5 yards (A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,23,26,BUF,NYJ,1,10,67,(8:26) R.Fitzpatrick pass incomplete short left to St.Johnson (D.Revis).,7,41,2012 -20120909_BUF@NYJ,3,23,20,BUF,NYJ,2,10,67,(8:20) R.Fitzpatrick pass short right to D.Jones to BUF 39 for 6 yards (D.Revis; A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,22,33,BUF,NYJ,3,4,61,(7:33) (Shotgun) R.Fitzpatrick pass short left to D.Nelson to BUF 49 for 10 yards (L.Landry). Pass intended for #84Chandler tipped by #52 Harris and caught by Nelson.,7,41,2012 -20120909_BUF@NYJ,3,21,52,BUF,NYJ,1,10,51,(6:52) (Shotgun) C.Spiller up the middle to NYJ 2 for 49 yards (A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,21,3,BUF,NYJ,1,2,2,(6:03) T.Choice right tackle to NYJ 1 for 1 yard (C.Pace; B.Scott).,7,41,2012 -20120909_BUF@NYJ,3,21,3,BUF,NYJ,2,1,1,(6:03) T.Choice up the middle to NYJ 1 for no gain (C.Pace).,7,41,2012 -20120909_BUF@NYJ,3,19,52,BUF,NYJ,3,1,1,(4:52) T.Choice up the middle for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on BUF False Start 4 yards enforced at NYJ 1 - No Play.,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,3,5,5,(4:30) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 5 yards TOUCHDOWN [L.Landry].,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,14,41,2012 -20120909_BUF@NYJ,3,19,26,NYJ,BUF,1,10,80,(4:26) S.Greene left end to NYJ 19 for -1 yards (C.Kelsay).,41,14,2012 -20120909_BUF@NYJ,3,18,48,NYJ,BUF,2,11,81,(3:48) M.Sanchez pass short middle to J.Cumberland to NYJ 32 for 13 yards (D.Searcy).,41,14,2012 -20120909_BUF@NYJ,3,18,11,NYJ,BUF,1,10,68,(3:11) S.Greene left end to NYJ 38 for 6 yards (J.Byrd).,41,14,2012 -20120909_BUF@NYJ,3,17,32,NYJ,BUF,2,4,62,(2:32) S.Greene up the middle to NYJ 41 for 3 yards (N.Barnett).,41,14,2012 -20120909_BUF@NYJ,3,16,50,NYJ,BUF,3,1,59,(1:50) S.Greene up the middle to NYJ 44 for 3 yards (Sp.Johnson).,41,14,2012 -20120909_BUF@NYJ,3,16,11,NYJ,BUF,1,10,56,(1:11) (Shotgun) T.Tebow left tackle to NYJ 47 for 3 yards (K.Sheppard).,41,14,2012 -20120909_BUF@NYJ,3,15,34,NYJ,BUF,2,7,53,(:34) S.Greene right guard to BUF 49 for 4 yards (K.Sheppard; A.Moats).,41,14,2012 -20120909_BUF@NYJ,4,15,0,NYJ,BUF,3,3,49,(15:00) M.Sanchez scrambles up the middle to BUF 46 for 3 yards (C.Kelsay). FUMBLES (C.Kelsay) recovered by NYJ-C.Schilens at BUF 41. PENALTY on NYJ-N.Mangold Offensive Holding 10 yards enforced at BUF 49 - No Play.,41,14,2012 -20120909_BUF@NYJ,4,14,26,NYJ,BUF,3,13,59,(14:26) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes.,41,14,2012 -20120909_BUF@NYJ,4,14,20,NYJ,BUF,4,13,59,(14:20) R.Malone punts 55 yards to BUF 4 Center-T.Purdum downed by NYJ-I.Trufant.,41,14,2012 -20120909_BUF@NYJ,4,14,11,BUF,NYJ,1,10,96,(14:11) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Nelson.,14,41,2012 -20120909_BUF@NYJ,4,14,7,BUF,NYJ,2,10,96,(14:07) C.Spiller right end to BUF 8 for 4 yards (B.Scott; A.Cromartie).,14,41,2012 -20120909_BUF@NYJ,4,13,43,BUF,NYJ,3,6,92,(13:43) (Shotgun) R.Fitzpatrick pass deep middle to D.Nelson to BUF 29 for 21 yards (D.Harris).,14,41,2012 -20120909_BUF@NYJ,4,12,54,BUF,NYJ,1,10,71,(12:54) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson (D.Revis).,14,41,2012 -20120909_BUF@NYJ,4,12,24,BUF,NYJ,2,10,71,(12:24) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson [M.Wilkerson]. BUF-D.Nelson was injured during the play.,14,41,2012 -20120909_BUF@NYJ,4,12,5,BUF,NYJ,3,10,71,(12:05) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 40 for 11 yards (E.Lankster).,14,41,2012 -20120909_BUF@NYJ,4,11,22,BUF,NYJ,1,10,60,(11:22) (Shotgun) C.Spiller up the middle to BUF 42 for 2 yards (K.Ellis).,14,41,2012 -20120909_BUF@NYJ,4,10,46,BUF,NYJ,2,8,58,(10:46) R.Fitzpatrick pass short right to S.Chandler to 50 for 8 yards (Y.Bell).,14,41,2012 -20120909_BUF@NYJ,4,10,21,BUF,NYJ,1,10,50,(10:21) (Shotgun) C.Spiller left guard to NYJ 44 for 6 yards (M.Dixon; M.Devito).,14,41,2012 -20120909_BUF@NYJ,4,9,45,BUF,NYJ,2,4,44,(9:45) (Shotgun) C.Spiller right guard to NYJ 30 for 14 yards (D.Revis). NYJ-D.Revis was injured during the play.,14,41,2012 -20120909_BUF@NYJ,4,9,4,BUF,NYJ,1,10,30,(9:04) R.Fitzpatrick pass short left to D.Jones to NYJ 18 for 12 yards (Y.Bell). PENALTY on NYJ-Q.Coples Roughing the Passer 9 yards enforced at NYJ 18.,14,41,2012 -20120909_BUF@NYJ,4,8,39,BUF,NYJ,1,9,9,(8:39) C.Spiller left end to NYJ 6 for 3 yards (M.Devito).,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,2,6,6,(8:02) R.Fitzpatrick pass short left to D.Jones for 6 yards TOUCHDOWN.,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,21,41,2012 -20120909_BUF@NYJ,4,7,57,NYJ,BUF,1,10,80,(7:57) S.Greene left end to NYJ 20 for no gain (N.Barnett; D.Searcy).,41,21,2012 -20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,10,80,(7:51) PENALTY on NYJ-B.Moore False Start 5 yards enforced at NYJ 20 - No Play.,41,21,2012 -20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,15,85,(7:51) S.Greene left tackle to NYJ 18 for 3 yards (K.Sheppard; S.Gilmore).,41,21,2012 -20120909_BUF@NYJ,4,7,46,NYJ,BUF,3,12,82,(7:46) S.Greene up the middle to NYJ 20 for 2 yards.,41,21,2012 -20120909_BUF@NYJ,4,7,4,NYJ,BUF,4,10,80,(7:04) R.Malone punts 48 yards to BUF 32 Center-T.Purdum. L.McKelvin to NYJ 41 for 27 yards (T.Purdum).,41,21,2012 -20120909_BUF@NYJ,4,6,52,BUF,NYJ,1,10,41,(6:52) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to NYJ 29 for 12 yards (E.Lankster).,21,41,2012 -20120909_BUF@NYJ,4,6,22,BUF,NYJ,1,10,29,(6:22) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep middle to S.Chandler (Y.Bell).,21,41,2012 -20120909_BUF@NYJ,4,6,15,BUF,NYJ,2,10,29,(6:15) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller (I.Trufant).,21,41,2012 -20120909_BUF@NYJ,4,6,10,BUF,NYJ,3,10,29,(6:10) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,4,10,29,(6:06) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson for 29 yards TOUCHDOWN.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,J.Potter kicks onside 14 yards from BUF 35 to BUF 49. T.Tebow (didn't try to advance) to BUF 49 for no gain.,28,41,2012 -20120909_BUF@NYJ,4,5,54,NYJ,BUF,1,10,49,(5:54) S.Greene up the middle to BUF 46 for 3 yards.,41,28,2012 -20120909_BUF@NYJ,4,5,54,NYJ,BUF,2,7,46,(5:54) M.Sanchez pass short middle to S.Holmes to BUF 21 for 25 yards (J.Byrd).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,10,21,(5:19) S.Greene up the middle to BUF 19 for 2 yards (A.Moats).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,2,8,19,(5:19) S.Greene left guard to BUF 16 for 3 yards (K.Sheppard).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,3,5,16,(5:19) S.Greene right tackle to BUF 2 for 14 yards (G.Wilson).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,2,2,(5:19) (Shotgun) PENALTY on NYJ-T.Tebow Delay of Game 5 yards enforced at BUF 2 - No Play.,41,28,2012 -20120909_BUF@NYJ,4,2,6,NYJ,BUF,1,7,7,(2:06) (Shotgun) T.Tebow left end to BUF 6 for 1 yard (S.Gilmore).,41,28,2012 -20120909_BUF@NYJ,4,2,0,NYJ,BUF,2,6,6,(2:00) S.Greene right tackle to BUF 1 for 5 yards (A.Williams). FUMBLES (A.Williams) and recovers at BUF 1.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,3,1,1,(1:54) S.Greene up the middle for 1 yard TOUCHDOWN.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk kicks 73 yards from NYJ 35 to BUF -8. L.McKelvin to BUF 18 for 26 yards (I.Trufant).,48,28,2012 -20120909_BUF@NYJ,4,1,11,BUF,NYJ,1,10,82,(1:11) (Shotgun) T.Choice up the middle to BUF 25 for 7 yards (D.Harris).,28,48,2012 -20120909_BUF@NYJ,4,0,25,BUF,NYJ,2,3,75,(:25) (Shotgun) T.Choice left end to BUF 20 for -5 yards (B.Scott).,28,48,2012 -20120909_BUF@NYJ,4,0,25,BUF,NYJ,,,75,                      ,28,48,2012 -20120909_NE@TEN,1,0,0,NE,TEN,,,75,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 -20120909_NE@TEN,1,60,0,TEN,NE,1,10,80,(15:00) J.Locker right end pushed ob at TEN 22 for 2 yards (D.Hightower).,0,0,2012 -20120909_NE@TEN,1,59,33,TEN,NE,2,8,78,(14:33) C.Johnson left guard to TEN 23 for 1 yard (P.Chung; J.Mayo).,0,0,2012 -20120909_NE@TEN,1,58,51,TEN,NE,3,7,77,(13:51) (Shotgun) J.Locker pass short middle to K.Wright to TEN 40 for 17 yards (S.Gregory).,0,0,2012 -20120909_NE@TEN,1,58,12,TEN,NE,1,10,60,(13:12) C.Johnson left guard to TEN 45 for 5 yards (J.Mayo).,0,0,2012 -20120909_NE@TEN,1,57,35,TEN,NE,2,5,55,(12:35) J.Locker pass incomplete short left to D.Williams. PENALTY on NE-R.Dowling Defensive Pass Interference 9 yards enforced at TEN 45 - No Play.,0,0,2012 -20120909_NE@TEN,1,57,33,TEN,NE,1,10,46,(12:33) (Shotgun) J.Locker pass short right to D.Reynaud to NE 42 for 4 yards (D.Hightower).,0,0,2012 -20120909_NE@TEN,1,56,54,TEN,NE,2,6,42,(11:54) C.Johnson up the middle to NE 38 for 4 yards (P.Chung).,0,0,2012 -20120909_NE@TEN,1,56,18,TEN,NE,3,2,38,(11:18) C.Johnson up the middle to NE 37 for 1 yard (J.Mayo).,0,0,2012 -20120909_NE@TEN,1,55,37,TEN,NE,4,1,37,(10:37) (Shotgun) J.Locker pass deep left to N.Washington to NE 13 for 24 yards (K.Arrington).,0,0,2012 -20120909_NE@TEN,1,55,11,TEN,NE,1,10,13,(10:11) J.Locker pass short right to D.Williams pushed ob at NE 12 for 1 yard (D.McCourty).,0,0,2012 -20120909_NE@TEN,1,54,33,TEN,NE,2,9,12,(9:33) C.Johnson right tackle to NE 10 for 2 yards (K.Love).,0,0,2012 -20120909_NE@TEN,1,53,53,TEN,NE,3,7,10,(8:53) (Shotgun) J.Locker pass incomplete short right to D.Williams (D.McCourty).,0,0,2012 -20120909_NE@TEN,1,53,47,TEN,NE,4,7,10,(8:47) (Field Goal formation) R.Bironas 28 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20120909_NE@TEN,1,53,47,TEN,NE,,,10,R.Bironas kicks 67 yards from TEN 35 to NE -2. D.McCourty pushed ob at NE 26 for 28 yards (T.Campbell).,3,0,2012 -20120909_NE@TEN,1,53,37,NE,TEN,1,10,74,(8:37) T.Brady pass short right to A.Hernandez to NE 34 for 8 yards (C.McCarthy).,0,3,2012 -20120909_NE@TEN,1,53,2,NE,TEN,2,2,66,(8:02) S.Ridley left guard to NE 35 for 1 yard (K.Wimbley).,0,3,2012 -20120909_NE@TEN,1,52,43,NE,TEN,3,1,65,(7:43) (No Huddle) S.Ridley left tackle to TEN 48 for 17 yards (R.Mouton).,0,3,2012 -20120909_NE@TEN,1,52,20,NE,TEN,1,10,48,(7:20) (No Huddle) T.Brady pass incomplete deep left to B.Lloyd.,0,3,2012 -20120909_NE@TEN,1,52,13,NE,TEN,2,10,48,(7:13) S.Ridley up the middle to TEN 46 for 2 yards (D.Morgan).,0,3,2012 -20120909_NE@TEN,1,51,33,NE,TEN,3,8,46,(6:33) (Shotgun) T.Brady pass incomplete deep middle to W.Welker.,0,3,2012 -20120909_NE@TEN,1,51,29,NE,TEN,4,8,46,(6:29) (Punt formation) Z.Mesko punts 28 yards to TEN 18 Center-D.Aiken downed by NE-T.Scott.,0,3,2012 -20120909_NE@TEN,1,51,20,TEN,NE,1,10,82,(6:20) C.Johnson up the middle to TEN 15 for -3 yards (C.Jones).,3,0,2012 -20120909_NE@TEN,1,50,42,TEN,NE,2,13,85,(5:42) C.Johnson left tackle to TEN 17 for 2 yards (J.Mayo).,3,0,2012 -20120909_NE@TEN,1,49,58,TEN,NE,3,11,83,(4:58) (Shotgun) J.Locker pass short left to J.Harper to TEN 25 for 8 yards (J.Mayo; R.Dowling).,3,0,2012 -20120909_NE@TEN,1,49,18,TEN,NE,4,3,75,(4:18) (Punt formation) B.Kern punts 56 yards to NE 19 Center-B.Brinkley. J.Edelman to NE 33 for 14 yards (T.Campbell).,3,0,2012 -20120909_NE@TEN,1,49,5,NE,TEN,1,10,67,(4:05) S.Ridley right tackle to NE 33 for no gain (C.McCarthy).,0,3,2012 -20120909_NE@TEN,1,48,30,NE,TEN,2,10,67,(3:30) T.Brady pass short left to R.Gronkowski pushed ob at TEN 39 for 28 yards (R.Johnson).,0,3,2012 -20120909_NE@TEN,1,48,8,NE,TEN,1,10,39,(3:08) S.Ridley left end pushed ob at TEN 22 for 17 yards (R.Johnson).,0,3,2012 -20120909_NE@TEN,1,47,45,NE,TEN,1,10,22,(2:45) S.Ridley left guard to TEN 23 for -1 yards (A.Ayers).,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,2,11,23,(2:05) T.Brady pass deep middle to A.Hernandez for 23 yards TOUCHDOWN.,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski kicks 69 yards from NE 35 to TEN -4. D.Reynaud to TEN 18 for 22 yards (T.White).,7,3,2012 -20120909_NE@TEN,1,46,51,TEN,NE,1,10,82,(1:51) J.Locker pass incomplete deep middle to N.Washington.,3,7,2012 -20120909_NE@TEN,1,46,47,TEN,NE,2,10,82,(1:47) J.Locker pass short middle to C.Johnson to TEN 22 for 4 yards (B.Spikes).,3,7,2012 -20120909_NE@TEN,1,46,4,TEN,NE,3,6,78,(1:04) (Shotgun) J.Locker pass deep middle to J.Cook to TEN 41 for 19 yards (S.Gregory; P.Chung).,3,7,2012 -20120909_NE@TEN,1,45,18,TEN,NE,1,10,59,(:18) (Shotgun) J.Locker pass short left to J.Cook to TEN 45 for 4 yards (P.Chung).,3,7,2012 -20120909_NE@TEN,2,45,0,TEN,NE,2,6,55,(15:00) J.Locker pass short right to D.Reynaud pushed ob at NE 48 for 7 yards (J.Mayo; D.McCourty).,3,7,2012 -20120909_NE@TEN,2,44,26,TEN,NE,1,10,48,(14:26) J.Locker pass deep left intended for N.Washington INTERCEPTED by T.Wilson (K.Arrington) at NE -3. Touchback.,3,7,2012 -20120909_NE@TEN,2,44,14,NE,TEN,1,10,80,(14:14) T.Brady pass deep left to B.Lloyd ran ob at NE 47 for 27 yards. Tennessee challenged the pass completion ruling and the play was Upheld. (Timeout #1.),7,3,2012 -20120909_NE@TEN,2,44,3,NE,TEN,1,10,53,(14:03) T.Brady pass short left to S.Ridley to TEN 46 for 7 yards (C.McCarthy).,7,3,2012 -20120909_NE@TEN,2,43,29,NE,TEN,2,3,46,(13:29) S.Ridley right end to TEN 47 for -1 yards (A.Verner).,7,3,2012 -20120909_NE@TEN,2,42,49,NE,TEN,3,4,47,(12:49) (Shotgun) T.Brady sacked at NE 45 for -8 yards (K.Wimbley).,7,3,2012 -20120909_NE@TEN,2,42,17,NE,TEN,4,12,55,(12:17) (Punt formation) Z.Mesko punts 45 yards to TEN 10 Center-D.Aiken downed by NE-D.Aiken.,7,3,2012 -20120909_NE@TEN,2,42,6,TEN,NE,1,10,90,(12:06) J.Locker pass incomplete short right to N.Washington.,3,7,2012 -20120909_NE@TEN,2,42,1,TEN,NE,2,10,90,(12:01) C.Johnson up the middle to TEN 7 for -3 yards (D.Hightower).,3,7,2012 -20120909_NE@TEN,2,41,16,TEN,NE,3,13,93,(11:16) (Shotgun) J.Locker sacked at TEN 1 for -6 yards (C.Jones). FUMBLES (C.Jones) RECOVERED by NE-D.Hightower at TEN 6. D.Hightower for 6 yards TOUCHDOWN.,3,7,2012 -20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,3,2012 -20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski kicks 67 yards from NE 35 to TEN -2. D.Reynaud pushed ob at TEN 38 for 40 yards (S.Gostkowski). PENALTY on TEN-A.Afalava Offensive Holding 10 yards enforced at TEN 28.,14,3,2012 -20120909_NE@TEN,2,40,59,TEN,NE,1,10,82,(10:59) (Shotgun) C.Johnson left tackle to TEN 18 for no gain (J.Mayo; C.Jones).,3,14,2012 -20120909_NE@TEN,2,40,17,TEN,NE,2,10,82,(10:17) (Shotgun) J.Locker pass short left to L.Hawkins to TEN 20 for 2 yards (J.Mayo).,3,14,2012 -20120909_NE@TEN,2,39,38,TEN,NE,3,8,80,(9:38) (Shotgun) J.Locker scrambles left end pushed ob at TEN 29 for 9 yards (K.Arrington).,3,14,2012 -20120909_NE@TEN,2,39,6,TEN,NE,1,10,71,(9:06) (Shotgun) D.Reynaud left tackle to TEN 29 for no gain (C.Jones; J.Cunningham).,3,14,2012 -20120909_NE@TEN,2,38,20,TEN,NE,2,10,71,(8:20) (Shotgun) J.Locker pass incomplete short right to N.Washington.,3,14,2012 -20120909_NE@TEN,2,38,15,TEN,NE,3,10,71,(8:15) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 38 for 9 yards (T.Wilson; D.McCourty) [T.Scott].,3,14,2012 -20120909_NE@TEN,2,37,27,TEN,NE,4,1,62,(7:27) (Punt formation) B.Kern punts 44 yards to NE 18 Center-B.Brinkley. J.Edelman MUFFS catch recovered by NE-R.Dowling at NE 19. R.Dowling to NE 19 for no gain (C.Sensabaugh). PENALTY on TEN-T.Campbell Interference with Opportunity to Catch 15 yards enforced at NE 18.,3,14,2012 -20120909_NE@TEN,2,37,17,NE,TEN,1,10,67,(7:17) S.Ridley left end to NE 48 for 15 yards (D.Morgan).,14,3,2012 -20120909_NE@TEN,2,36,50,NE,TEN,1,10,52,(6:50) (No Huddle) T.Brady pass short left to B.Lloyd ran ob at TEN 43 for 9 yards.,14,3,2012 -20120909_NE@TEN,2,36,34,NE,TEN,2,1,43,(6:34) (No Huddle) T.Brady up the middle to TEN 41 for 2 yards (Mi.Martin).,14,3,2012 -20120909_NE@TEN,2,36,15,NE,TEN,1,10,41,(6:15) (No Huddle) T.Brady pass incomplete deep left to W.Welker.,14,3,2012 -20120909_NE@TEN,2,36,9,NE,TEN,2,10,41,(6:09) D.Woodhead right tackle to TEN 35 for 6 yards (M.Griffin). TEN-C.McCarthy was injured during the play. His return is Questionable.,14,3,2012 -20120909_NE@TEN,2,35,39,NE,TEN,3,4,35,(5:39) (Shotgun) Direct snap to A.Hernandez. A.Hernandez left tackle to TEN 30 for 5 yards (A.Verner).,14,3,2012 -20120909_NE@TEN,2,35,8,NE,TEN,1,10,30,(5:08) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to TEN 23 for 7 yards (R.Mouton).,14,3,2012 -20120909_NE@TEN,2,34,35,NE,TEN,2,3,23,(4:35) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to TEN 16 for 7 yards (A.Verner).,14,3,2012 -20120909_NE@TEN,2,34,4,NE,TEN,1,10,16,(4:04) (No Huddle Shotgun) T.Brady pass short right to W.Welker to TEN 11 for 5 yards (R.Mouton).,14,3,2012 -20120909_NE@TEN,2,33,29,NE,TEN,2,5,11,(3:29) D.Woodhead up the middle to TEN 10 for 1 yard (J.Casey).,14,3,2012 -20120909_NE@TEN,2,32,48,NE,TEN,3,4,10,(2:48) S.Ridley left guard to TEN 2 for 8 yards (A.Ayers).,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,1,2,2,(2:06) T.Brady pass short right to R.Gronkowski for 2 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski kicks 73 yards from NE 35 to TEN -8. D.Reynaud to TEN 18 for 26 yards (N.Ebner).,21,3,2012 -20120909_NE@TEN,2,31,56,TEN,NE,1,10,82,(1:56) (Shotgun) J.Locker pass short middle to J.Cook to TEN 24 for 6 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,2,31,31,TEN,NE,2,4,76,(1:31) (No Huddle Shotgun) J.Locker pass short middle to D.Reynaud pushed ob at TEN 30 for 6 yards (R.Dowling).,3,21,2012 -20120909_NE@TEN,2,31,23,TEN,NE,1,10,70,(1:23) (Shotgun) J.Locker sacked at TEN 23 for -7 yards (J.Cunningham).,3,21,2012 -20120909_NE@TEN,2,30,58,TEN,NE,2,17,77,(:58) (No Huddle Shotgun) J.Locker pass short left to D.Williams to TEN 35 for 12 yards (J.Mayo).,3,21,2012 -20120909_NE@TEN,2,30,52,TEN,NE,3,5,65,(:52) (Shotgun) J.Locker pass short right to D.Williams to TEN 38 for 3 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,2,30,44,TEN,NE,4,2,62,(:44) (Punt formation) B.Kern punts 54 yards to NE 8 Center-B.Brinkley. J.Edelman pushed ob at NE 12 for 4 yards (J.Babineaux).,3,21,2012 -20120909_NE@TEN,2,30,34,NE,TEN,1,10,88,(:34) T.Brady kneels to NE 11 for -1 yards.,21,3,2012 -20120909_NE@TEN,3,30,0,TEN,NE,,,88,R.Bironas kicks 74 yards from TEN 35 to NE -9. D.McCourty Touchback.,3,21,2012 -20120909_NE@TEN,3,30,0,NE,TEN,1,10,80,(15:00) T.Brady pass short left to A.Hernandez to NE 24 for 4 yards (R.Mouton; A.Ayers).,21,3,2012 -20120909_NE@TEN,3,29,24,NE,TEN,2,6,76,(14:24) S.Ridley right end to NE 30 for 6 yards (A.Ayers).,21,3,2012 -20120909_NE@TEN,3,28,52,NE,TEN,1,10,70,(13:52) S.Ridley left tackle to NE 38 for 8 yards (A.Verner).,21,3,2012 -20120909_NE@TEN,3,28,15,NE,TEN,2,2,62,(13:15) T.Brady pass short left to A.Hernandez to 50 for 12 yards (A.Ayers).,21,3,2012 -20120909_NE@TEN,3,27,44,NE,TEN,1,10,50,(12:44) S.Ridley right end to NE 49 for -1 yards (D.Morgan).,21,3,2012 -20120909_NE@TEN,3,27,1,NE,TEN,2,11,51,(12:01) T.Brady pass incomplete short middle to S.Ridley.,21,3,2012 -20120909_NE@TEN,3,26,58,NE,TEN,3,11,51,(11:58) (Shotgun) T.Brady pass incomplete short left to J.Edelman.,21,3,2012 -20120909_NE@TEN,3,26,54,NE,TEN,4,11,51,(11:54) (Punt formation) Z.Mesko punts 51 yards to end zone Center-D.Aiken Touchback.,21,3,2012 -20120909_NE@TEN,3,26,47,TEN,NE,1,10,80,(11:47) (Shotgun) J.Locker pass deep right to J.Cook to NE 45 for 35 yards (D.McCourty).,3,21,2012 -20120909_NE@TEN,3,26,9,TEN,NE,1,10,45,(11:09) (Shotgun) J.Locker pass incomplete short right to K.Wright (D.McCourty).,3,21,2012 -20120909_NE@TEN,3,26,3,TEN,NE,2,10,45,(11:03) (Shotgun) J.Locker pass short middle to C.Johnson to NE 29 for 16 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,1,10,29,(10:25) (Shotgun) J.Locker pass deep right to N.Washington for 29 yards TOUCHDOWN.,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,21,2012 -20120909_NE@TEN,3,25,17,NE,TEN,1,10,80,(10:17) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,21,10,2012 -20120909_NE@TEN,3,25,14,NE,TEN,2,10,80,(10:14) S.Ridley left end to NE 24 for 4 yards (K.Wimbley; A.Ayers).,21,10,2012 -20120909_NE@TEN,3,24,30,NE,TEN,3,6,76,(9:30) (Shotgun) T.Brady pass short left to R.Gronkowski to NE 31 for 7 yards (J.Babineaux).,21,10,2012 -20120909_NE@TEN,3,23,58,NE,TEN,1,10,69,(8:58) S.Ridley right end to NE 27 for -4 yards (J.McCourty).,21,10,2012 -20120909_NE@TEN,3,23,18,NE,TEN,2,14,73,(8:18) T.Brady pass short right to A.Hernandez to NE 32 for 5 yards (D.Morgan).,21,10,2012 -20120909_NE@TEN,3,22,44,NE,TEN,3,9,68,(7:44) (Shotgun) T.Brady pass short middle to R.Gronkowski to NE 41 for 9 yards (R.Mouton; W.Witherspoon).,21,10,2012 -20120909_NE@TEN,3,22,14,NE,TEN,1,10,59,(7:14) T.Brady pass short left to B.Lloyd ran ob at TEN 48 for 11 yards.,21,10,2012 -20120909_NE@TEN,3,21,45,NE,TEN,1,10,48,(6:45) T.Brady pass short left to W.Welker to TEN 47 for 1 yard (A.Verner).,21,10,2012 -20120909_NE@TEN,3,21,15,NE,TEN,2,9,47,(6:15) (Shotgun) T.Brady pass short middle to A.Hernandez to TEN 40 for 7 yards (A.Ayers).,21,10,2012 -20120909_NE@TEN,3,20,47,NE,TEN,3,2,40,(5:47) (Shotgun) T.Brady pass incomplete short left to B.Lloyd [K.Dawson].,21,10,2012 -20120909_NE@TEN,3,20,44,NE,TEN,4,2,40,(5:44) (Punt formation) Z.Mesko punts 30 yards to TEN 10 Center-D.Aiken fair catch by D.Reynaud.,21,10,2012 -20120909_NE@TEN,3,20,36,TEN,NE,1,10,90,(5:36) (Shotgun) J.Locker pass short left to C.Johnson pushed ob at TEN 10 for no gain (D.Hightower).,10,21,2012 -20120909_NE@TEN,3,19,57,TEN,NE,2,10,90,(4:57) (Shotgun) J.Locker pass short right intended for D.Reynaud INTERCEPTED by D.McCourty at TEN 18. D.McCourty to TEN 18 for no gain (N.Washington). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Locker pass incomplete short right to D.Reynaud.,10,21,2012 -20120909_NE@TEN,3,19,53,TEN,NE,3,10,90,(4:53) (Shotgun) J.Locker up the middle to TEN 31 for 21 yards (K.Arrington). PENALTY on TEN-S.Hutchinson Offensive Holding 5 yards enforced at TEN 10 - No Play.,10,21,2012 -20120909_NE@TEN,3,19,30,TEN,NE,3,15,95,(4:30) (Shotgun) J.Locker pass short left to K.Wright to TEN 2 for -3 yards (R.Dowling).,10,21,2012 -20120909_NE@TEN,3,18,41,TEN,NE,4,18,98,(3:41) (Punt formation) B.Kern punts 55 yards to NE 43 Center-B.Brinkley. J.Edelman to TEN 48 for 9 yards (J.Babineaux).,10,21,2012 -20120909_NE@TEN,3,18,29,NE,TEN,1,10,48,(3:29) T.Brady pass short right to R.Gronkowski to TEN 41 for 7 yards (M.Griffin) [J.Casey].,21,10,2012 -20120909_NE@TEN,3,17,57,NE,TEN,2,3,41,(2:57) S.Ridley left tackle to TEN 26 for 15 yards (A.Verner; A.Ayers).,21,10,2012 -20120909_NE@TEN,3,17,25,NE,TEN,1,10,26,(2:25) T.Brady pass short left to B.Lloyd ran ob at TEN 20 for 6 yards.,21,10,2012 -20120909_NE@TEN,3,17,12,NE,TEN,2,4,20,(2:12) S.Ridley right end to TEN 15 for 5 yards (Mi.Martin; R.Johnson).,21,10,2012 -20120909_NE@TEN,3,16,45,NE,TEN,1,10,15,(1:45) (No Huddle) S.Ridley right guard to TEN 1 for 14 yards (R.Johnson).,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,1,1,1,(1:08) S.Ridley left tackle for 1 yard TOUCHDOWN.,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski kicks 64 yards from NE 35 to TEN 1. D.Reynaud to TEN 21 for 20 yards (N.Ebner).,28,10,2012 -20120909_NE@TEN,3,15,59,TEN,NE,1,10,79,(:59) (Shotgun) C.Johnson right tackle to TEN 21 for no gain (D.McCourty).,10,28,2012 -20120909_NE@TEN,3,15,30,TEN,NE,2,10,79,(:30) (No Huddle Shotgun) J.Locker pass incomplete short middle to N.Washington [V.Wilfork].,10,28,2012 -20120909_NE@TEN,3,15,25,TEN,NE,3,10,79,(:25) (Shotgun) J.Locker pass short right to D.Williams to TEN 31 for 10 yards (D.McCourty).,10,28,2012 -20120909_NE@TEN,3,15,3,TEN,NE,1,10,69,(:03) (No Huddle Shotgun) J.Locker pass short right to K.Wright to TEN 43 for 12 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,14,59,TEN,NE,1,10,57,(14:59) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 47 for 4 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,14,34,TEN,NE,2,6,53,(14:34) (No Huddle Shotgun) J.Locker sacked at TEN 42 for -5 yards (C.Jones). PENALTY on NE-C.Jones Defensive Offside 5 yards enforced at TEN 47 - No Play.,10,28,2012 -20120909_NE@TEN,4,14,12,TEN,NE,2,1,48,(14:12) J.Locker pass deep middle to N.Washington to NE 25 for 23 yards (J.Mayo). FUMBLES (J.Mayo) RECOVERED by NE-P.Chung at NE 25. P.Chung to TEN 26 for 49 yards (J.Locker). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. J.Locker pass incomplete deep middle to N.Washington (J.Mayo T.Wilson). TEN-J.Locker was injured during the play. His return is Questionable. TEN-N.Washington was injured during the play. His return is Questionable.,10,28,2012 -20120909_NE@TEN,4,14,7,TEN,NE,3,1,48,(14:07) M.Hasselbeck pass short right to C.Johnson to NE 34 for 14 yards (B.Deaderick).,10,28,2012 -20120909_NE@TEN,4,13,23,TEN,NE,1,10,34,(13:23) (Shotgun) M.Hasselbeck pass short right to D.Williams to NE 27 for 7 yards (D.McCourty).,10,28,2012 -20120909_NE@TEN,4,12,59,TEN,NE,2,3,27,(12:59) (No Huddle Shotgun) M.Hasselbeck pass short right to L.Hawkins to NE 21 for 6 yards (C.Jones). Penalty on NE-B.Spikes Defensive Holding declined.,10,28,2012 -20120909_NE@TEN,4,12,31,TEN,NE,1,10,21,(12:31) D.Reynaud up the middle to NE 19 for 2 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,11,59,TEN,NE,2,8,19,(11:59) (No Huddle Shotgun) M.Hasselbeck pass short middle to K.Wright to NE 13 for 6 yards (J.Mayo). PENALTY on NE-J.Mayo Defensive Pass Interference 6 yards enforced at NE 19 - No Play.,10,28,2012 -20120909_NE@TEN,4,11,37,TEN,NE,1,10,13,(11:37) M.Hasselbeck pass short right to C.Stevens to NE 8 for 5 yards (K.Love; D.Hightower).,10,28,2012 -20120909_NE@TEN,4,10,52,TEN,NE,2,5,8,(10:52) M.Hasselbeck pass short left to K.Wright to NE 1 for 7 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,10,13,TEN,NE,1,1,1,(10:13) C.Johnson right tackle to NE 6 for -5 yards (V.Wilfork).,10,28,2012 -20120909_NE@TEN,4,9,29,TEN,NE,2,6,6,(9:29) (Shotgun) M.Hasselbeck pass incomplete short left to L.Hawkins.,10,28,2012 -20120909_NE@TEN,4,9,25,TEN,NE,3,6,6,(9:25) (Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,10,28,2012 -20120909_NE@TEN,4,9,20,TEN,NE,4,6,6,(9:20) (Field Goal formation) R.Bironas 24 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,10,28,2012 -20120909_NE@TEN,4,9,20,TEN,NE,,,6,R.Bironas kicks 67 yards from TEN 35 to NE -2. M.Slater to NE 17 for 19 yards (P.Bailey).,13,28,2012 -20120909_NE@TEN,4,9,11,NE,TEN,1,10,83,(9:11) T.Brady pass short left to S.Ridley to NE 37 for 20 yards (A.Verner) [K.Wimbley].,28,13,2012 -20120909_NE@TEN,4,8,54,NE,TEN,1,10,63,(8:54) (No Huddle) D.Woodhead right tackle to NE 40 for 3 yards (R.Mouton; W.Witherspoon).,28,13,2012 -20120909_NE@TEN,4,8,25,NE,TEN,2,7,60,(8:25) (No Huddle Shotgun) T.Brady pass short right to B.Lloyd to TEN 44 for 16 yards (J.McCourty).,28,13,2012 -20120909_NE@TEN,4,7,47,NE,TEN,1,10,44,(7:47) (No Huddle) D.Woodhead right guard to TEN 42 for 2 yards (D.Morgan).,28,13,2012 -20120909_NE@TEN,4,7,18,NE,TEN,2,8,42,(7:18) (No Huddle) T.Brady pass short left to W.Welker to TEN 34 for 8 yards (A.Ayers; A.Verner).,28,13,2012 -20120909_NE@TEN,4,6,45,NE,TEN,1,10,34,(6:45) (No Huddle) D.Woodhead left end to TEN 28 for 6 yards (M.Griffin; K.Wimbley).,28,13,2012 -20120909_NE@TEN,4,6,8,NE,TEN,2,4,28,(6:08) (No Huddle) D.Woodhead left end pushed ob at TEN 26 for 2 yards (A.Verner; M.Griffin).,28,13,2012 -20120909_NE@TEN,4,5,42,NE,TEN,3,2,26,(5:42) (No Huddle) S.Ridley left tackle to TEN 10 for 16 yards (R.Johnson; Z.Brown).,28,13,2012 -20120909_NE@TEN,4,5,15,NE,TEN,1,10,10,(5:15) (No Huddle) S.Ridley left end to TEN 9 for 1 yard (A.Ayers).,28,13,2012 -20120909_NE@TEN,4,4,33,NE,TEN,2,9,9,(4:33) S.Ridley up the middle to TEN 7 for 2 yards (J.Babineaux).,28,13,2012 -20120909_NE@TEN,4,4,26,NE,TEN,3,7,7,(4:26) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,28,13,2012 -20120909_NE@TEN,4,4,19,NE,TEN,4,7,7,(4:19) (Field Goal formation) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,28,13,2012 -20120909_NE@TEN,4,4,19,NE,TEN,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,31,13,2012 -20120909_NE@TEN,4,4,15,TEN,NE,1,10,80,(4:15) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 24 for 4 yards (R.Dowling).,13,31,2012 -20120909_NE@TEN,4,3,53,TEN,NE,2,6,76,(3:53) (No Huddle Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,13,31,2012 -20120909_NE@TEN,4,3,49,TEN,NE,3,6,76,(3:49) (Shotgun) M.Hasselbeck pass incomplete short middle to L.Hawkins.,13,31,2012 -20120909_NE@TEN,4,3,46,TEN,NE,4,6,76,(3:46) (Shotgun) M.Hasselbeck pass incomplete short left to C.Johnson.,13,31,2012 -20120909_NE@TEN,4,3,43,NE,TEN,1,10,24,(3:43) B.Bolden up the middle to TEN 15 for 9 yards (W.Witherspoon).,31,13,2012 -20120909_NE@TEN,4,3,0,NE,TEN,2,1,15,(3:00) B.Bolden right tackle to TEN 13 for 2 yards (A.Ayers; D.Morgan).,31,13,2012 -20120909_NE@TEN,4,2,16,NE,TEN,1,10,13,(2:16) B.Bolden up the middle to TEN 11 for 2 yards (Mi.Martin; Z.Brown).,31,13,2012 -20120909_NE@TEN,4,2,0,NE,TEN,2,8,11,(2:00) B.Bolden left tackle to TEN 11 for no gain (D.Morgan).,31,13,2012 -20120909_NE@TEN,4,1,14,NE,TEN,3,8,11,(1:14) B.Bolden left end to TEN 13 for -2 yards (Z.Brown).,31,13,2012 -20120909_NE@TEN,4,0,35,NE,TEN,4,10,13,(:35) (Field Goal formation) S.Gostkowski 31 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,31,13,2012 -20120909_NE@TEN,4,0,35,NE,TEN,,,13,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,34,13,2012 -20120909_NE@TEN,4,0,31,TEN,NE,1,10,80,(:31) J.Harper left guard to TEN 23 for 3 yards (J.Cunningham).,13,34,2012 -20120909_NE@TEN,4,0,31,TEN,NE,,,80,                      ,13,34,2012 -20120909_SEA@ARI,1,0,0,ARI,SEA,,,80,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 23 for 28 yards (M.Adams).,0,0,2012 -20120909_SEA@ARI,1,59,53,SEA,ARI,1,10,77,(14:53) M.Lynch left tackle to SEA 25 for 2 yards (D.Dockett).,0,0,2012 -20120909_SEA@ARI,1,59,12,SEA,ARI,2,8,75,(14:12) R.Wilson pass short right to S.Rice to SEA 34 for 9 yards (A.Wilson).,0,0,2012 -20120909_SEA@ARI,1,58,31,SEA,ARI,1,10,66,(13:31) M.Lynch up the middle to SEA 35 for 1 yard (D.Williams).,0,0,2012 -20120909_SEA@ARI,1,57,53,SEA,ARI,2,9,65,(12:53) R.Wilson pass incomplete deep left to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 28 yards enforced at SEA 35 - No Play.,0,0,2012 -20120909_SEA@ARI,1,57,45,SEA,ARI,1,10,37,(12:45) R.Turbin up the middle to ARZ 36 for 1 yard (D.Washington).,0,0,2012 -20120909_SEA@ARI,1,57,6,SEA,ARI,2,9,36,(12:06) M.Lynch right tackle to ARZ 32 for 4 yards (W.Gay).,0,0,2012 -20120909_SEA@ARI,1,56,25,SEA,ARI,3,5,32,(11:25) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 -20120909_SEA@ARI,1,56,20,SEA,ARI,4,5,32,(11:20) S.Hauschka 50 yard field goal is BLOCKED (C.Campbell) Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120909_SEA@ARI,1,56,15,ARI,SEA,1,10,60,(11:15) R.Williams up the middle to ARZ 42 for 2 yards (K.Wright; B.Mebane).,0,0,2012 -20120909_SEA@ARI,1,55,38,ARI,SEA,2,8,58,(10:38) (Shotgun) R.Williams up the middle to ARZ 42 for no gain (K.Wright). FUMBLES (K.Wright) RECOVERED by SEA-B.Mebane at ARZ 42. B.Mebane to ARZ 42 for no gain (J.Skelton). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 -20120909_SEA@ARI,1,55,24,SEA,ARI,1,10,42,(10:24) R.Wilson pass short left to S.Rice to ARZ 31 for 11 yards (R.Walker).,0,0,2012 -20120909_SEA@ARI,1,54,47,SEA,ARI,1,10,31,(9:47) R.Wilson scrambles right end ran ob at ARZ 27 for 4 yards (D.Dockett).,0,0,2012 -20120909_SEA@ARI,1,54,17,SEA,ARI,2,6,27,(9:17) M.Lynch left tackle to ARZ 17 for 10 yards (P.Lenon).,0,0,2012 -20120909_SEA@ARI,1,53,35,SEA,ARI,1,10,17,(8:35) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 -20120909_SEA@ARI,1,53,30,SEA,ARI,2,10,17,(8:30) R.Turbin up the middle to ARZ 13 for 4 yards (N.Eason).,0,0,2012 -20120909_SEA@ARI,1,52,54,SEA,ARI,3,6,13,(7:54) (Shotgun) R.Wilson left end pushed ob at ARZ 9 for 4 yards (K.Rhodes).,0,0,2012 -20120909_SEA@ARI,1,52,31,SEA,ARI,4,2,9,(7:31) S.Hauschka 27 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120909_SEA@ARI,1,52,31,SEA,ARI,,,9,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. L.Stephens-Howling to ARZ 22 for 22 yards (M.Smith).,3,0,2012 -20120909_SEA@ARI,1,52,19,ARI,SEA,1,10,78,(7:19) J.Skelton pass incomplete deep left to L.Fitzgerald.,0,3,2012 -20120909_SEA@ARI,1,52,11,ARI,SEA,2,10,78,(7:11) R.Williams left tackle to ARZ 24 for 2 yards (B.Mebane B.Wagner).,0,3,2012 -20120909_SEA@ARI,1,51,23,ARI,SEA,3,8,76,(6:23) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald. PENALTY on SEA-R.Sherman Defensive Pass Interference 12 yards enforced at ARZ 24 - No Play.,0,3,2012 -20120909_SEA@ARI,1,51,18,ARI,SEA,1,10,64,(6:18) J.Skelton pass short left to L.Fitzgerald to ARZ 39 for 3 yards.,0,3,2012 -20120909_SEA@ARI,1,50,42,ARI,SEA,2,7,61,(5:42) A.Roberts left tackle to SEA 46 for 15 yards (B.Wagner).,0,3,2012 -20120909_SEA@ARI,1,50,1,ARI,SEA,1,10,46,(5:01) (Shotgun) R.Williams left tackle to SEA 42 for 4 yards (J.Jones; L.Hill).,0,3,2012 -20120909_SEA@ARI,1,49,20,ARI,SEA,2,6,42,(4:20) J.Skelton pass short left to A.Roberts to SEA 35 for 7 yards (B.Browner).,0,3,2012 -20120909_SEA@ARI,1,48,36,ARI,SEA,1,10,35,(3:36) (Shotgun) J.Skelton pass short middle to A.Roberts to SEA 16 for 19 yards (K.Chancellor B.Browner).,0,3,2012 -20120909_SEA@ARI,1,47,53,ARI,SEA,1,10,16,(2:53) R.Williams right tackle to SEA 14 for 2 yards (K.Chancellor K.Wright).,0,3,2012 -20120909_SEA@ARI,1,47,13,ARI,SEA,2,8,14,(2:13) (Shotgun) J.Skelton pass short left to R.Williams to SEA 2 for 12 yards (M.Trufant B.Browner).,0,3,2012 -20120909_SEA@ARI,1,46,32,ARI,SEA,1,2,2,(1:32) R.Williams up the middle to SEA 3 for -1 yards (C.McDonald).,0,3,2012 -20120909_SEA@ARI,1,45,49,ARI,SEA,2,3,3,(:49) J.Skelton pass incomplete short middle to L.Fitzgerald (B.Mebane).,0,3,2012 -20120909_SEA@ARI,1,45,45,ARI,SEA,3,3,3,(:45) (Shotgun) J.Skelton pass incomplete short left to R.Williams.,0,3,2012 -20120909_SEA@ARI,1,45,38,ARI,SEA,4,3,3,(:38) J.Feely 21 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,3,2012 -20120909_SEA@ARI,1,45,38,ARI,SEA,,,3,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 17 for 22 yards (R.Johnson).,3,3,2012 -20120909_SEA@ARI,1,45,27,SEA,ARI,1,10,83,(:27) PENALTY on ARZ-A.Wilson Neutral Zone Infraction 5 yards enforced at SEA 17 - No Play.,3,3,2012 -20120909_SEA@ARI,1,45,27,SEA,ARI,1,5,78,(:27) R.Wilson sacked at SEA 17 for -5 yards (P.Lenon). Penalty on ARZ-S.Acho Personal Foul declined. Penalty on SEA-C.McDonald Personal Foul declined.,3,3,2012 -20120909_SEA@ARI,2,45,0,SEA,ARI,2,10,83,(15:00) M.Lynch left tackle to SEA 23 for 6 yards (W.Gay V.Holliday).,3,3,2012 -20120909_SEA@ARI,2,44,28,SEA,ARI,3,4,77,(14:28) (Shotgun) R.Wilson pass short right to B.Edwards to SEA 25 for 2 yards (J.Fleming). PENALTY on ARZ-R.Walker Roughing the Passer 15 yards enforced at SEA 25.,3,3,2012 -20120909_SEA@ARI,2,43,59,SEA,ARI,1,10,60,(13:59) R.Wilson pass incomplete deep left to B.Obomanu.,3,3,2012 -20120909_SEA@ARI,2,43,52,SEA,ARI,2,10,60,(13:52) R.Wilson scrambles left end to SEA 40 for no gain. PENALTY on SEA-M.Lynch Offensive Holding 10 yards enforced at SEA 40 - No Play.,3,3,2012 -20120909_SEA@ARI,2,43,22,SEA,ARI,2,20,70,(13:22) R.Wilson scrambles right end to SEA 31 for 1 yard (R.Walker).,3,3,2012 -20120909_SEA@ARI,2,42,32,SEA,ARI,3,19,69,(12:32) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 31 - No Play.,3,3,2012 -20120909_SEA@ARI,2,42,13,SEA,ARI,3,24,74,(12:13) (Shotgun) L.Washington left tackle to SEA 29 for 3 yards (D.Dockett).,3,3,2012 -20120909_SEA@ARI,2,41,32,SEA,ARI,4,21,71,(11:32) J.Ryan punts 46 yards to ARZ 25 Center-C.Gresham. P.Peterson to ARZ 42 for 17 yards (C.Gresham).,3,3,2012 -20120909_SEA@ARI,2,41,20,ARI,SEA,1,10,58,(11:20) C.Wells left tackle to ARZ 43 for 1 yard (A.Branch).,3,3,2012 -20120909_SEA@ARI,2,40,42,ARI,SEA,2,9,57,(10:42) (Shotgun) J.Skelton pass deep right to E.Doucet to SEA 39 for 18 yards (E.Thomas).,3,3,2012 -20120909_SEA@ARI,2,40,0,ARI,SEA,1,10,39,(10:00) C.Wells right tackle to SEA 37 for 2 yards (K.Wright).,3,3,2012 -20120909_SEA@ARI,2,39,22,ARI,SEA,2,8,37,(9:22) J.Skelton pass short left to J.King to SEA 32 for 5 yards (E.Thomas).,3,3,2012 -20120909_SEA@ARI,2,38,38,ARI,SEA,3,3,32,(8:38) (Shotgun) J.Skelton pass short right to E.Doucet to SEA 18 for 14 yards (R.Sherman).,3,3,2012 -20120909_SEA@ARI,2,37,53,ARI,SEA,1,10,18,(7:53) C.Wells left tackle to SEA 17 for 1 yard (C.McDonald).,3,3,2012 -20120909_SEA@ARI,2,37,9,ARI,SEA,2,9,17,(7:09) J.Skelton pass incomplete short right to T.Heap [L.Hill].,3,3,2012 -20120909_SEA@ARI,2,37,4,ARI,SEA,3,9,17,(7:04) (Shotgun) J.Skelton pass short middle to T.Heap to SEA 4 for 13 yards (K.Chancellor). PENALTY on SEA-K.Chancellor Face Mask (15 Yards) 2 yards enforced at SEA 4.,3,3,2012 -20120909_SEA@ARI,2,36,39,ARI,SEA,1,2,2,(6:39) C.Wells up the middle to SEA 1 for 1 yard (K.Wright; B.Mebane).,3,3,2012 -20120909_SEA@ARI,2,36,3,ARI,SEA,2,1,1,(6:03) J.Skelton pass incomplete short right to J.King (R.Bryant).,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,3,1,1,(5:58) L.Stephens-Howling up the middle for 1 yard TOUCHDOWN.,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,10,3,2012 -20120909_SEA@ARI,2,35,58,SEA,ARI,1,10,80,(5:58) M.Lynch up the middle to SEA 23 for 3 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,2,35,23,SEA,ARI,2,7,77,(5:23) M.Lynch left tackle to SEA 25 for 2 yards (C.Campbell).,3,10,2012 -20120909_SEA@ARI,2,34,38,SEA,ARI,3,5,75,(4:38) (Shotgun) R.Wilson pass short left to S.Rice to SEA 31 for 6 yards (M.Adams).,3,10,2012 -20120909_SEA@ARI,2,34,3,SEA,ARI,1,10,69,(4:03) R.Wilson pass short right to D.Baldwin to SEA 35 for 4 yards (P.Peterson).,3,10,2012 -20120909_SEA@ARI,2,33,28,SEA,ARI,2,6,65,(3:28) M.Lynch left tackle to SEA 43 for 8 yards (R.Walker O.Schofield).,3,10,2012 -20120909_SEA@ARI,2,32,51,SEA,ARI,1,10,57,(2:51) M.Lynch left tackle to SEA 45 for 2 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,2,32,12,SEA,ARI,2,8,55,(2:12) M.Lynch left tackle to SEA 47 for 2 yards (R.Walker).,3,10,2012 -20120909_SEA@ARI,2,32,0,SEA,ARI,3,6,53,(2:00) (Shotgun) R.Wilson pass incomplete short left to A.McCoy.,3,10,2012 -20120909_SEA@ARI,2,31,58,SEA,ARI,4,6,53,(1:58) J.Ryan punts 40 yards to ARZ 13 Center-C.Gresham fair catch by P.Peterson. PENALTY on SEA-J.Lane Offensive Holding 10 yards enforced at SEA 47 - No Play.,3,10,2012 -20120909_SEA@ARI,2,31,47,SEA,ARI,4,16,63,(1:47) J.Ryan punts 47 yards to ARZ 16 Center-C.Gresham. P.Peterson pushed ob at ARZ 23 for 7 yards (C.Maragos).,3,10,2012 -20120909_SEA@ARI,2,31,35,ARI,SEA,1,10,77,(1:35) (Shotgun) J.Skelton pass deep right to L.Fitzgerald to ARZ 46 for 23 yards (R.Sherman).,10,3,2012 -20120909_SEA@ARI,2,31,15,ARI,SEA,1,10,54,(1:15) (Shotgun) J.Skelton pass short left to E.Doucet ran ob at SEA 49 for 5 yards (B.Browner).,10,3,2012 -20120909_SEA@ARI,2,31,8,ARI,SEA,2,5,49,(1:08) PENALTY on ARZ-M.Floyd False Start 5 yards enforced at SEA 49 - No Play.,10,3,2012 -20120909_SEA@ARI,2,31,8,ARI,SEA,2,10,54,(1:08) J.Skelton pass short middle to A.Roberts to SEA 49 for 5 yards (K.Wright).,10,3,2012 -20120909_SEA@ARI,2,31,2,ARI,SEA,3,5,49,(1:02) PENALTY on ARZ-J.Skelton Delay of Game 5 yards enforced at SEA 49 - No Play.,10,3,2012 -20120909_SEA@ARI,2,31,2,ARI,SEA,3,10,54,(1:02) (Shotgun) J.Skelton pass incomplete short right to M.Floyd [C.Clemons].,10,3,2012 -20120909_SEA@ARI,2,30,55,ARI,SEA,4,10,54,(:55) D.Zastudil punts 39 yards to SEA 15 Center-M.Leach. B.Browner to SEA 14 for -1 yards (M.Adams).,10,3,2012 -20120909_SEA@ARI,2,30,45,SEA,ARI,1,10,86,(:45) L.Washington up the middle to SEA 16 for 2 yards (D.Dockett).,3,10,2012 -20120909_SEA@ARI,2,30,24,SEA,ARI,2,8,84,(:24) (Shotgun) R.Wilson pass deep middle to Z.Miller to SEA 43 for 27 yards (K.Rhodes).,3,10,2012 -20120909_SEA@ARI,2,30,17,SEA,ARI,1,10,57,(:17) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin. PENALTY on ARZ-R.Walker Defensive Offside 5 yards enforced at SEA 43 - No Play.,3,10,2012 -20120909_SEA@ARI,2,30,10,SEA,ARI,1,5,52,(:10) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 48 - No Play.,3,10,2012 -20120909_SEA@ARI,2,30,10,SEA,ARI,1,10,57,(:10) (Shotgun) R.Wilson pass deep middle intended for D.Baldwin INTERCEPTED by A.Wilson at ARZ 12. A.Wilson to ARZ 10 for -2 yards. Lateral to P.Peterson to ARZ 28 for 18 yards (B.Giacomini).,3,10,2012 -20120909_SEA@ARI,3,30,0,SEA,ARI,,,57,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,3,10,2012 -20120909_SEA@ARI,3,30,0,ARI,SEA,1,10,80,(15:00) C.Wells up the middle to ARZ 29 for 9 yards (R.Bryant; A.Branch).,10,3,2012 -20120909_SEA@ARI,3,29,15,ARI,SEA,2,1,71,(14:15) J.Skelton pass incomplete short left to A.Roberts (B.Mebane).,10,3,2012 -20120909_SEA@ARI,3,29,11,ARI,SEA,3,1,71,(14:11) C.Wells up the middle to ARZ 29 for no gain (A.Branch; K.Wright).,10,3,2012 -20120909_SEA@ARI,3,28,27,ARI,SEA,4,1,71,(13:27) D.Zastudil punts 47 yards to SEA 24 Center-M.Leach. B.Browner to SEA 19 for -5 yards (Q.Groves; R.Walker). PENALTY on SEA-B.Browner Defensive Holding 5 yards enforced at SEA 19.,10,3,2012 -20120909_SEA@ARI,3,28,14,SEA,ARI,1,10,86,(13:14) M.Lynch up the middle to SEA 23 for 9 yards (W.Gay). FUMBLES (W.Gay) recovered by SEA-R.Wilson at SEA 22. R.Wilson to SEA 22 for no gain (P.Lenon).,3,10,2012 -20120909_SEA@ARI,3,27,34,SEA,ARI,2,2,78,(12:34) M.Lynch left tackle to SEA 23 for 1 yard (D.Williams).,3,10,2012 -20120909_SEA@ARI,3,26,54,SEA,ARI,3,1,77,(11:54) R.Wilson scrambles right end to SEA 25 for 2 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,3,26,8,ARI,SEA,1,10,83,(11:08) R.Wilson pass incomplete short left to M.Lynch (S.Acho). Arizona challenged the incomplete pass ruling and the play was REVERSED. R.Wilson FUMBLES (Aborted) at SEA 17 RECOVERED by ARZ-P.Lenon at SEA 17. P.Lenon to SEA 17 for no gain (P.McQuistan).,10,3,2012 -20120909_SEA@ARI,3,26,3,ARI,SEA,1,10,17,(11:03) R.Williams up the middle to SEA 18 for -1 yards (B.Wagner; R.Bryant).,10,3,2012 -20120909_SEA@ARI,3,25,21,ARI,SEA,2,11,18,(10:21) J.Skelton pass incomplete short right to L.Fitzgerald (K.Chancellor).,10,3,2012 -20120909_SEA@ARI,3,25,15,ARI,SEA,3,11,18,(10:15) (Shotgun) J.Skelton pass deep right intended for L.Fitzgerald INTERCEPTED by K.Chancellor at SEA 0. Touchback. PENALTY on SEA-M.Trufant Defensive Offside 5 yards enforced at SEA 18 - No Play.,10,3,2012 -20120909_SEA@ARI,3,25,8,ARI,SEA,3,6,13,(10:08) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,10,3,2012 -20120909_SEA@ARI,3,25,3,ARI,SEA,4,6,13,(10:03) J.Feely 31 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,10,3,2012 -20120909_SEA@ARI,3,25,3,ARI,SEA,,,13,J.Feely kicks 72 yards from ARZ 35 to SEA -7. L.Washington pushed ob at ARZ 24 for 83 yards (R.Housler).,13,3,2012 -20120909_SEA@ARI,3,24,47,SEA,ARI,1,10,24,(9:47) R.Wilson pass short left to B.Edwards to ARZ 18 for 6 yards (W.Gay).,3,13,2012 -20120909_SEA@ARI,3,24,17,SEA,ARI,2,4,18,(9:17) M.Lynch right tackle to ARZ 11 for 7 yards (A.Wilson).,3,13,2012 -20120909_SEA@ARI,3,23,46,SEA,ARI,1,10,11,(8:46) R.Wilson pass short right to D.Baldwin to ARZ 10 for 1 yard (P.Peterson).,3,13,2012 -20120909_SEA@ARI,3,23,1,SEA,ARI,2,9,10,(8:01) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (C.Campbell).,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,3,9,10,(7:57) R.Wilson pass short middle to S.Rice for 10 yards TOUCHDOWN.,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,13,2012 -20120909_SEA@ARI,3,22,51,ARI,SEA,1,10,80,(7:51) J.Skelton pass short right intended for L.Fitzgerald INTERCEPTED by R.Sherman [C.Clemons] at ARZ 34. R.Sherman ran ob at ARZ 34 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,13,10,2012 -20120909_SEA@ARI,3,22,42,SEA,ARI,1,10,34,(7:42) M.Lynch up the middle to ARZ 30 for 4 yards (P.Lenon Q.Groves).,10,13,2012 -20120909_SEA@ARI,3,22,5,SEA,ARI,2,6,30,(7:05) R.Wilson scrambles right end ran ob at ARZ 29 for 1 yard (D.Washington).,10,13,2012 -20120909_SEA@ARI,3,21,26,SEA,ARI,3,5,29,(6:26) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at ARZ 29 - No Play.,10,13,2012 -20120909_SEA@ARI,3,21,1,SEA,ARI,3,10,34,(6:01) (Shotgun) R.Wilson scrambles up the middle to ARZ 29 for 5 yards (D.Dockett; Q.Groves).,10,13,2012 -20120909_SEA@ARI,3,20,19,SEA,ARI,4,5,29,(5:19) S.Hauschka 47 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,13,2012 -20120909_SEA@ARI,3,20,19,SEA,ARI,,,29,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,13,13,2012 -20120909_SEA@ARI,3,20,13,ARI,SEA,1,10,80,(5:13) C.Wells up the middle to ARZ 20 for no gain (R.Bryant).,13,13,2012 -20120909_SEA@ARI,3,19,31,ARI,SEA,2,10,80,(4:31) (Shotgun) J.Skelton pass short left to J.King to ARZ 23 for 3 yards (E.Thomas).,13,13,2012 -20120909_SEA@ARI,3,18,52,ARI,SEA,3,7,77,(3:52) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald [K.Wright]. Penalty on ARZ-L.Sendlein Offensive Holding declined.,13,13,2012 -20120909_SEA@ARI,3,18,45,ARI,SEA,4,7,77,(3:45) D.Zastudil punts 50 yards to SEA 27 Center-M.Leach. L.Washington to SEA 31 for 4 yards (R.Johnson).,13,13,2012 -20120909_SEA@ARI,3,18,32,SEA,ARI,1,10,69,(3:32) M.Lynch left tackle to SEA 34 for 3 yards (O.Schofield).,13,13,2012 -20120909_SEA@ARI,3,17,48,SEA,ARI,2,7,66,(2:48) M.Lynch up the middle to SEA 38 for 4 yards (P.Lenon).,13,13,2012 -20120909_SEA@ARI,3,17,6,SEA,ARI,3,3,62,(2:06) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (W.Gay).,13,13,2012 -20120909_SEA@ARI,3,17,1,SEA,ARI,4,3,62,(2:01) J.Ryan punts 48 yards to ARZ 14 Center-C.Gresham. P.Peterson ran ob at ARZ 20 for 6 yards (B.Obomanu).,13,13,2012 -20120909_SEA@ARI,3,16,52,ARI,SEA,1,10,80,(1:52) R.Williams left tackle to ARZ 21 for 1 yard (B.Mebane).,13,13,2012 -20120909_SEA@ARI,3,16,10,ARI,SEA,2,9,79,(1:10) (Shotgun) J.Skelton scrambles left end to ARZ 23 for 2 yards (L.Hill).,13,13,2012 -20120909_SEA@ARI,3,15,29,ARI,SEA,3,7,77,(:29) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,13,13,2012 -20120909_SEA@ARI,3,15,23,ARI,SEA,4,7,77,(:23) D.Zastudil punts 49 yards to SEA 28 Center-M.Leach fair catch by L.Washington.,13,13,2012 -20120909_SEA@ARI,3,15,15,SEA,ARI,1,10,72,(:15) R.Wilson pass short right to Z.Miller to SEA 32 for 4 yards (M.Adams; O.Schofield).,13,13,2012 -20120909_SEA@ARI,4,15,0,SEA,ARI,2,6,68,(15:00) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 32 - No Play.,13,13,2012 -20120909_SEA@ARI,4,14,59,SEA,ARI,2,11,73,(14:59) R.Wilson pass short right to B.Edwards to SEA 43 for 16 yards (W.Gay).,13,13,2012 -20120909_SEA@ARI,4,14,20,SEA,ARI,1,10,57,(14:20) M.Lynch left tackle to SEA 43 for no gain (S.Acho).,13,13,2012 -20120909_SEA@ARI,4,13,45,SEA,ARI,2,10,57,(13:45) R.Wilson pass incomplete short right to S.Rice.,13,13,2012 -20120909_SEA@ARI,4,13,40,SEA,ARI,3,10,57,(13:40) R.Wilson pass short right to R.Turbin to SEA 45 for 2 yards (D.Washington) [O.Schofield].,13,13,2012 -20120909_SEA@ARI,4,12,44,SEA,ARI,4,8,55,(12:44) J.Ryan punts 44 yards to ARZ 11 Center-C.Gresham. P.Peterson ran ob at ARZ 18 for 7 yards (B.Wagner).,13,13,2012 -20120909_SEA@ARI,4,12,33,ARI,SEA,1,10,82,(12:33) J.Skelton pass incomplete short right to L.Fitzgerald (R.Sherman).,13,13,2012 -20120909_SEA@ARI,4,12,24,ARI,SEA,2,10,82,(12:24) R.Williams left tackle to ARZ 21 for 3 yards (B.Wagner). PENALTY on ARZ-D.Batiste Offensive Holding 8 yards enforced at ARZ 18 - No Play.,13,13,2012 -20120909_SEA@ARI,4,11,56,ARI,SEA,2,18,90,(11:56) (Shotgun) J.Skelton pass short right to R.Williams to ARZ 15 for 5 yards (K.Chancellor).,13,13,2012 -20120909_SEA@ARI,4,11,22,ARI,SEA,3,13,85,(11:22) (Shotgun) J.Skelton pass incomplete short right to A.Sherman (J.Jones).,13,13,2012 -20120909_SEA@ARI,4,11,15,ARI,SEA,4,13,85,(11:15) D.Zastudil punts 53 yards to SEA 32 Center-M.Leach. L.Washington to ARZ 16 for 52 yards (M.Leach).,13,13,2012 -20120909_SEA@ARI,4,10,58,SEA,ARI,1,10,16,(10:58) M.Lynch up the middle to ARZ 15 for 1 yard (D.Washington).,13,13,2012 -20120909_SEA@ARI,4,10,17,SEA,ARI,2,9,15,(10:17) R.Wilson pass incomplete short right to S.Rice [Q.Groves]. PENALTY on SEA-R.Wilson Intentional Grounding 12 yards enforced at ARZ 15.,13,13,2012 -20120909_SEA@ARI,4,10,11,SEA,ARI,3,21,27,(10:11) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin (C.Campbell). PENALTY on SEA-R.Okung False Start 5 yards enforced at ARZ 27 - No Play.,13,13,2012 -20120909_SEA@ARI,4,10,11,SEA,ARI,3,26,32,(10:11) M.Lynch up the middle to ARZ 21 for 11 yards (P.Lenon).,13,13,2012 -20120909_SEA@ARI,4,9,25,SEA,ARI,4,15,21,(9:25) S.Hauschka 39 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,13,13,2012 -20120909_SEA@ARI,4,9,25,SEA,ARI,,,21,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,16,13,2012 -20120909_SEA@ARI,4,8,37,ARI,SEA,1,10,80,(8:37) J.Skelton sacked at ARZ 14 for -6 yards (C.Clemons). FUMBLES (C.Clemons) and recovers at ARZ 15.,13,16,2012 -20120909_SEA@ARI,4,8,33,ARI,SEA,2,15,85,(8:33) J.Skelton pass short right to A.Roberts to ARZ 32 for 17 yards (R.Sherman) [B.Irvin]. ARZ-J.Skelton was injured during the play.,13,16,2012 -20120909_SEA@ARI,4,8,18,ARI,SEA,1,10,68,(8:18) K.Kolb pass incomplete deep right to L.Fitzgerald.,13,16,2012 -20120909_SEA@ARI,4,8,13,ARI,SEA,2,10,68,(8:13) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 46 for 14 yards (K.Wright).,13,16,2012 -20120909_SEA@ARI,4,7,40,ARI,SEA,1,10,54,(7:40) K.Kolb pass incomplete short right to A.Roberts (J.Jones).,13,16,2012 -20120909_SEA@ARI,4,7,36,ARI,SEA,2,10,54,(7:36) K.Kolb pass short right to L.Fitzgerald to SEA 31 for 23 yards (K.Wright).,13,16,2012 -20120909_SEA@ARI,4,6,56,ARI,SEA,1,10,31,(6:56) K.Kolb pass incomplete deep right to A.Roberts. PENALTY on ARZ-D.Colledge Offensive Holding 10 yards enforced at SEA 31 - No Play.,13,16,2012 -20120909_SEA@ARI,4,6,50,ARI,SEA,1,20,41,(6:50) (Shotgun) K.Kolb pass incomplete short right to A.Roberts (R.Sherman). PENALTY on SEA-R.Sherman Defensive Pass Interference 9 yards enforced at SEA 41 - No Play.,13,16,2012 -20120909_SEA@ARI,4,6,18,ARI,SEA,1,10,32,(6:18) K.Kolb pass short left to T.Heap to SEA 21 for 11 yards (C.Clemons M.Trufant).,13,16,2012 -20120909_SEA@ARI,4,5,48,ARI,SEA,1,10,21,(5:48) L.Stephens-Howling up the middle to SEA 18 for 3 yards (L.Hill).,13,16,2012 -20120909_SEA@ARI,4,5,5,ARI,SEA,2,7,18,(5:05) K.Kolb pass short left to T.Heap to SEA 10 for 8 yards (K.Chancellor).,13,16,2012 -20120909_SEA@ARI,4,4,59,ARI,SEA,1,10,10,(4:59) (Shotgun) K.Kolb pass short right to L.Stephens-Howling ran ob at SEA 6 for 4 yards (R.Sherman).,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,2,6,6,(6:16) K.Kolb pass short left to A.Roberts for 6 yards TOUCHDOWN.,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,20,16,2012 -20120909_SEA@ARI,4,4,58,SEA,ARI,1,10,80,(4:58) R.Wilson pass short left to B.Edwards pushed ob at SEA 31 for 11 yards (W.Gay).,16,20,2012 -20120909_SEA@ARI,4,4,26,SEA,ARI,1,10,69,(4:26) M.Lynch right tackle to SEA 35 for 4 yards (P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,3,49,SEA,ARI,2,6,65,(3:49) R.Wilson sacked at SEA 27 for -8 yards (P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,3,12,SEA,ARI,3,14,73,(3:12) (Shotgun) R.Wilson pass short right to C.Martin to SEA 42 for 15 yards (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,2,37,SEA,ARI,1,10,58,(2:37) R.Wilson pass short right to Z.Miller to ARZ 49 for 9 yards (K.Rhodes).,16,20,2012 -20120909_SEA@ARI,4,2,10,SEA,ARI,2,1,49,(2:10) R.Wilson pass short middle to M.Lynch to ARZ 42 for 7 yards (D.Washington P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,2,0,SEA,ARI,1,10,42,(2:00) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin [D.Dockett].,16,20,2012 -20120909_SEA@ARI,4,1,57,SEA,ARI,2,10,42,(1:57) R.Wilson pass short left to B.Edwards pushed ob at ARZ 34 for 8 yards (W.Gay).,16,20,2012 -20120909_SEA@ARI,4,1,51,SEA,ARI,3,2,34,(1:51) (Shotgun) R.Wilson scrambles right end to ARZ 31 for 3 yards (O.Schofield).,16,20,2012 -20120909_SEA@ARI,4,1,39,SEA,ARI,1,10,31,(1:39) (Shotgun) R.Wilson pass incomplete deep left to D.Baldwin [C.Campbell].,16,20,2012 -20120909_SEA@ARI,4,1,31,SEA,ARI,2,10,31,(1:31) (Shotgun) R.Wilson pass short right to M.Lynch to ARZ 26 for 5 yards (D.Washington).,16,20,2012 -20120909_SEA@ARI,4,1,5,SEA,ARI,3,5,26,(1:05) (Shotgun) R.Wilson sacked at ARZ 27 for -1 yards (D.Washington).,16,20,2012 -20120909_SEA@ARI,4,0,59,SEA,ARI,4,6,27,(:59) (Shotgun) R.Wilson pass incomplete deep right to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 14 yards enforced at ARZ 27 - No Play.,16,20,2012 -20120909_SEA@ARI,4,0,52,SEA,ARI,1,10,13,(:52) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,47,SEA,ARI,2,10,13,(:47) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,42,SEA,ARI,3,10,13,(:42) (Shotgun) R.Wilson pass incomplete short right to B.Edwards. PENALTY on ARZ-W.Gay Defensive Pass Interference 7 yards enforced at ARZ 13 - No Play.,16,20,2012 -20120909_SEA@ARI,4,0,38,SEA,ARI,1,6,6,(:38) M.Lynch up the middle to ARZ 4 for 2 yards (O.Schofield).,16,20,2012 -20120909_SEA@ARI,4,0,30,SEA,ARI,2,4,4,(:30) R.Wilson pass incomplete short right to S.Rice (P.Peterson).,16,20,2012 -20120909_SEA@ARI,4,0,25,SEA,ARI,3,4,4,(:25) R.Wilson pass incomplete short right to C.Martin (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,21,SEA,ARI,4,4,4,(:21) R.Wilson pass incomplete short right to B.Edwards.,16,20,2012 -20120909_SEA@ARI,4,0,18,ARI,SEA,1,10,96,(:18) K.Kolb kneels to ARZ 3 for -1 yards.,20,16,2012 -20120909_SEA@ARI,4,0,18,ARI,SEA,,,96,                      ,20,16,2012 -20120909_SF@GB,1,0,0,GB,SF,,,96,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,0,0,2012 -20120909_SF@GB,1,60,0,SF,GB,1,10,80,(15:00) F.Gore left guard to SF 25 for 5 yards (A.Hawk C.Wilson).,0,0,2012 -20120909_SF@GB,1,59,21,SF,GB,2,5,75,(14:21) K.Hunter right end to SF 29 for 4 yards (C.Wilson).,0,0,2012 -20120909_SF@GB,1,58,36,SF,GB,3,1,71,(13:36) (Shotgun) A.Smith sacked at SF 24 for -5 yards (C.Matthews).,0,0,2012 -20120909_SF@GB,1,58,14,SF,GB,4,6,76,(13:14) A.Lee punts 61 yards to GB 15 Center-B.Jennings. R.Cobb MUFFS catch touched at GB 15 and recovers at GB 15. R.Cobb to GB 19 for 4 yards (T.Brown). PENALTY on SF-C.Spillman Illegal Block Above the Waist 10 yards enforced at GB 19.,0,0,2012 -20120909_SF@GB,1,58,3,GB,SF,1,10,71,(13:03) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 39 for 10 yards (P.Willis).,0,0,2012 -20120909_SF@GB,1,57,30,GB,SF,1,10,61,(12:30) (Shotgun) C.Benson right guard to GB 40 for 1 yard (N.Bowman Ald.Smith).,0,0,2012 -20120909_SF@GB,1,56,56,GB,SF,2,9,60,(11:56) (No Huddle) A.Rodgers sacked at GB 30 for -10 yards (Ald.Smith). PENALTY on SF-Ald.Smith Unsportsmanlike Conduct 15 yards enforced at GB 30.,0,0,2012 -20120909_SF@GB,1,56,56,GB,SF,1,10,55,(11:56) (Shotgun) C.Benson right guard to GB 46 for 1 yard (N.Bowman).,0,0,2012 -20120909_SF@GB,1,56,8,GB,SF,2,9,54,(11:08) (No Huddle Shotgun) A.Rodgers left end ran ob at SF 46 for 8 yards (C.Culliver).,0,0,2012 -20120909_SF@GB,1,56,1,GB,SF,3,1,46,(11:01) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to SF 42 for 4 yards (N.Bowman). San Francisco challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20120909_SF@GB,1,55,41,GB,SF,1,10,42,(10:41) (Shotgun) C.Benson right tackle to SF 38 for 4 yards (N.Bowman; P.Willis).,0,0,2012 -20120909_SF@GB,1,55,0,GB,SF,2,6,38,(10:00) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings.,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,3,6,38,(9:56) (No Huddle Shotgun) PENALTY on GB-M.Newhouse False Start 5 yards enforced at SF 38 - No Play.,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,3,11,43,(9:56) (Shotgun) A.Rodgers sacked at 50 for -7 yards (C.Rogers).,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,4,18,50,(9:56) PENALTY on GB-S.Shields False Start 5 yards enforced at 50 - No Play.,0,0,2012 -20120909_SF@GB,1,54,19,GB,SF,4,23,55,(9:19) T.Masthay punts 55 yards to end zone Center-B.Goode Touchback.,0,0,2012 -20120909_SF@GB,1,54,11,SF,GB,1,10,80,(9:11) A.Smith pass short right to M.Crabtree to SF 31 for 11 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,53,30,SF,GB,1,10,69,(8:30) A.Smith right tackle to SF 36 for 5 yards (C.Wilson).,0,0,2012 -20120909_SF@GB,1,52,47,SF,GB,2,5,64,(7:47) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 44 for 8 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,52,11,SF,GB,1,10,56,(7:11) K.Hunter right end to GB 48 for 8 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,51,32,SF,GB,2,2,48,(6:32) L.Davis reported in as eligible. A.Smith pass deep left to R.Moss to GB 28 for 20 yards (J.Bush).,0,0,2012 -20120909_SF@GB,1,50,49,SF,GB,1,10,28,(5:49) A.Smith pass short middle to M.Manningham to GB 24 for 4 yards (C.Woodson). FUMBLES (C.Woodson) ball out of bounds at GB 26.,0,0,2012 -20120909_SF@GB,1,50,31,SF,GB,2,8,26,(5:31) K.Hunter left end pushed ob at GB 22 for 4 yards (M.Burnett).,0,0,2012 -20120909_SF@GB,1,50,1,SF,GB,3,4,22,(5:01) (Shotgun) A.Smith pass incomplete short left to D.Walker.,0,0,2012 -20120909_SF@GB,1,49,58,SF,GB,4,4,22,(4:58) D.Akers 40 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20120909_SF@GB,1,49,58,SF,GB,,,22,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,3,0,2012 -20120909_SF@GB,1,49,53,GB,SF,1,10,80,(4:53) (Shotgun) C.Benson up the middle to GB 23 for 3 yards (R.McDonald; N.Bowman).,0,3,2012 -20120909_SF@GB,1,49,24,GB,SF,2,7,77,(4:24) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to GB 27 for 4 yards (C.Culliver).,0,3,2012 -20120909_SF@GB,1,48,54,GB,SF,3,3,73,(3:54) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 38 for 11 yards (P.Cox).,0,3,2012 -20120909_SF@GB,1,48,23,GB,SF,1,10,62,(3:23) (No Huddle) A.Rodgers pass short left to G.Jennings pushed ob at GB 44 for 6 yards (T.Brown).,0,3,2012 -20120909_SF@GB,1,48,4,GB,SF,2,4,56,(3:04) (No Huddle) A.Rodgers right end ran ob at GB 48 for 4 yards (Ald.Smith).,0,3,2012 -20120909_SF@GB,1,47,40,GB,SF,1,10,52,(2:40) (No Huddle Shotgun) C.Benson right end to 50 for 2 yards (R.McDonald).,0,3,2012 -20120909_SF@GB,1,47,6,GB,SF,2,8,50,(2:06) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones (T.Brown).,0,3,2012 -20120909_SF@GB,1,46,59,GB,SF,3,8,50,(1:59) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to SF 45 for 5 yards (T.Brown).,0,3,2012 -20120909_SF@GB,1,46,27,GB,SF,4,3,45,(1:27) T.Masthay punts 37 yards to SF 8 Center-B.Goode fair catch by K.Williams.,0,3,2012 -20120909_SF@GB,1,46,20,SF,GB,1,10,92,(1:20) F.Gore right guard to SF 13 for 5 yards (B.Raji; N.Perry).,3,0,2012 -20120909_SF@GB,1,45,35,SF,GB,2,5,87,(:35) F.Gore left end to SF 15 for 2 yards (T.Williams).,3,0,2012 -20120909_SF@GB,2,45,0,SF,GB,3,3,85,(15:00) (Shotgun) A.Smith pass incomplete short middle to K.Williams. PENALTY on GB-J.Bush Defensive Pass Interference 7 yards enforced at SF 15 - No Play.,3,0,2012 -20120909_SF@GB,2,44,56,SF,GB,1,10,78,(14:56) L.Davis and D.Kilgore reported in as eligible. F.Gore right end to SF 25 for 3 yards (D.Smith).,3,0,2012 -20120909_SF@GB,2,44,12,SF,GB,2,7,75,(14:12) (Shotgun) A.Smith pass incomplete deep right to D.Walker [C.Matthews]. PENALTY on GB-C.Matthews Roughing the Passer 15 yards enforced at SF 25 - No Play.,3,0,2012 -20120909_SF@GB,2,44,7,SF,GB,1,10,60,(14:07) F.Gore right end to 50 for 10 yards (C.Wilson; A.Hawk).,3,0,2012 -20120909_SF@GB,2,43,25,SF,GB,1,10,50,(13:25) A.Smith pass short right to V.Davis pushed ob at GB 40 for 10 yards (C.Woodson).,3,0,2012 -20120909_SF@GB,2,42,57,SF,GB,1,10,40,(12:57) W.Tukuafu reported in as eligible. A.Smith pass short left to M.Crabtree pushed ob at GB 31 for 9 yards (T.Williams).,3,0,2012 -20120909_SF@GB,2,42,29,SF,GB,2,1,31,(12:29) (Shotgun) A.Smith pass short middle to M.Crabtree to GB 15 for 16 yards (N.Perry).,3,0,2012 -20120909_SF@GB,2,41,54,SF,GB,1,10,15,(11:54) L.Davis and W.Tukuafu reported in as eligible. K.Hunter right end to GB 14 for 1 yard (N.Perry).,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,2,9,14,(11:14) (Shotgun) A.Smith pass short middle to R.Moss for 14 yards TOUCHDOWN.,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,0,2012 -20120909_SF@GB,2,41,10,GB,SF,1,10,80,(11:10) (Shotgun) A.Rodgers pass deep left to J.Nelson to GB 48 for 28 yards (T.Brown).,0,10,2012 -20120909_SF@GB,2,40,34,GB,SF,1,10,52,(10:34) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to SF 46 for 6 yards (T.Brown N.Bowman).,0,10,2012 -20120909_SF@GB,2,40,1,GB,SF,2,4,46,(10:01) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 43 for 3 yards (N.Bowman).,0,10,2012 -20120909_SF@GB,2,39,30,GB,SF,3,1,43,(9:30) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 38 for 5 yards (D.Goldson).,0,10,2012 -20120909_SF@GB,2,39,2,GB,SF,1,10,38,(9:02) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones. PENALTY on SF-Ald.Smith Defensive Offside 5 yards enforced at SF 38 - No Play.,0,10,2012 -20120909_SF@GB,2,38,56,GB,SF,1,5,33,(8:56) (No Huddle Shotgun) A.Rodgers pass short middle to Ja.Jones to SF 33 for no gain (D.Goldson C.Culliver). PENALTY on GB-T.Lang Illegal Use of Hands 10 yards enforced at SF 33 - No Play.,0,10,2012 -20120909_SF@GB,2,38,29,GB,SF,1,15,43,(8:29) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Finley.,0,10,2012 -20120909_SF@GB,2,38,24,GB,SF,2,15,43,(8:24) (No Huddle Shotgun) A.Rodgers pass short middle to J.Nelson to SF 30 for 13 yards (T.Brown).,0,10,2012 -20120909_SF@GB,2,37,40,GB,SF,3,2,30,(7:40) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones to SF 2 for 28 yards (C.Culliver). PENALTY on GB-Ja.Jones Offensive Pass Interference 10 yards enforced at SF 30 - No Play.,0,10,2012 -20120909_SF@GB,2,37,11,GB,SF,3,12,40,(7:11) (Shotgun) A.Rodgers pass short right to J.Finley to SF 24 for 16 yards (C.Rogers).,0,10,2012 -20120909_SF@GB,2,36,33,GB,SF,1,10,24,(6:33) (No Huddle) C.Benson right end to SF 23 for 1 yard (P.Willis).,0,10,2012 -20120909_SF@GB,2,35,53,GB,SF,2,9,23,(5:53) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 11 for 12 yards (P.Cox).,0,10,2012 -20120909_SF@GB,2,35,5,GB,SF,1,10,11,(5:05) (No Huddle Shotgun) PENALTY on GB-A.Rodgers Delay of Game 5 yards enforced at SF 11 - No Play.,0,10,2012 -20120909_SF@GB,2,34,47,GB,SF,1,15,16,(4:47) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to J.Finley. PENALTY on SF-D.Goldson Defensive Pass Interference 15 yards enforced at SF 16 - No Play.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,1,1,1,(4:43) (Shotgun) A.Rodgers pass short right to J.Finley for 1 yard TOUCHDOWN.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,7,10,2012 -20120909_SF@GB,2,34,40,SF,GB,1,10,80,(4:40) A.Smith pass short right to M.Manningham pushed ob at SF 31 for 11 yards (T.Williams).,10,7,2012 -20120909_SF@GB,2,34,40,SF,GB,1,10,69,(4:40) W.Tukuafu reported in as eligible. A.Smith pass short middle to R.Moss to SF 42 for 11 yards (M.Burnett).,10,7,2012 -20120909_SF@GB,2,33,27,SF,GB,1,10,58,(3:27) F.Gore left tackle to SF 47 for 5 yards (N.Perry).,10,7,2012 -20120909_SF@GB,2,32,52,SF,GB,2,5,53,(2:52) A.Smith pass incomplete short middle to V.Davis.,10,7,2012 -20120909_SF@GB,2,32,47,SF,GB,3,5,53,(2:47) (Shotgun) A.Smith pass incomplete short right to V.Davis. PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at SF 47 - No Play.,10,7,2012 -20120909_SF@GB,2,32,43,SF,GB,1,10,48,(2:43) F.Gore left tackle to GB 45 for 3 yards (D.Smith A.Hawk).,10,7,2012 -20120909_SF@GB,2,32,0,SF,GB,2,7,45,(2:00) (Shotgun) A.Smith pass short left to M.Manningham to GB 34 for 11 yards (J.Bush).,10,7,2012 -20120909_SF@GB,2,31,55,SF,GB,1,10,34,(1:55) (Shotgun) A.Smith pass incomplete short left to D.Walker.,10,7,2012 -20120909_SF@GB,2,31,50,SF,GB,2,10,34,(1:50) A.Smith pass short middle to M.Crabtree to GB 25 for 9 yards (A.Hawk M.Burnett).,10,7,2012 -20120909_SF@GB,2,31,5,SF,GB,3,1,25,(1:05) W.Tukuafu and L.Davis reported in as eligible. F.Gore right tackle to GB 25 for no gain (C.Woodson; A.Hawk).,10,7,2012 -20120909_SF@GB,2,30,59,SF,GB,4,1,25,(:59) W.Tukuafu D.Kilgore and A.Davis reported in as eligible. D.Akers 43 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,10,7,2012 -20120909_SF@GB,2,30,59,SF,GB,,,25,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,7,2012 -20120909_SF@GB,2,30,55,GB,SF,1,10,80,(:55) (Shotgun) PENALTY on GB-B.Bulaga False Start 5 yards enforced at GB 20 - No Play.,7,13,2012 -20120909_SF@GB,2,30,55,GB,SF,1,15,85,(:55) (Shotgun) A.Rodgers pass incomplete short right.,7,13,2012 -20120909_SF@GB,2,30,48,GB,SF,2,15,85,(:48) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 22 for 7 yards (N.Bowman).,7,13,2012 -20120909_SF@GB,2,30,39,GB,SF,3,8,78,(:39) (Shotgun) A.Rodgers pass incomplete short left.,7,13,2012 -20120909_SF@GB,2,30,32,GB,SF,4,8,78,(:32) T.Masthay punts 60 yards to SF 18 Center-B.Goode. K.Williams to SF 38 for 20 yards (R.Francois).,7,13,2012 -20120909_SF@GB,2,30,18,SF,GB,1,10,62,(:18) (Shotgun) C.Kaepernick left tackle to GB 45 for 17 yards (S.Shields).,13,7,2012 -20120909_SF@GB,2,30,11,SF,GB,1,10,45,(:11) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 -20120909_SF@GB,2,30,6,SF,GB,2,10,45,(:06) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 -20120909_SF@GB,2,30,2,SF,GB,3,10,45,(:02) D.Akers 63 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,13,7,2012 -20120909_SF@GB,3,30,0,SF,GB,,,45,D.Akers kicks 68 yards from SF 35 to GB -3. R.Cobb to GB 21 for 24 yards (L.Grant).,16,7,2012 -20120909_SF@GB,3,29,54,GB,SF,1,10,79,(14:54) C.Benson left tackle to GB 23 for 2 yards (J.Smith).,7,16,2012 -20120909_SF@GB,3,29,11,GB,SF,2,8,77,(14:11) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at GB 30 for 7 yards (C.Culliver).,7,16,2012 -20120909_SF@GB,3,28,41,GB,SF,3,1,70,(13:41) A.Rodgers pass incomplete deep middle to J.Nelson.,7,16,2012 -20120909_SF@GB,3,28,33,GB,SF,4,1,70,(13:33) T.Masthay punts 54 yards to SF 16 Center-B.Goode fair catch by K.Williams.,7,16,2012 -20120909_SF@GB,3,28,25,SF,GB,1,10,84,(13:25) A.Smith sacked at SF 13 for -3 yards (C.Woodson).,16,7,2012 -20120909_SF@GB,3,27,49,SF,GB,2,13,87,(12:49) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 18 for 5 yards (A.Hawk).,16,7,2012 -20120909_SF@GB,3,27,17,SF,GB,3,8,82,(12:17) (Shotgun) A.Smith pass short right to M.Crabtree pushed ob at SF 38 for 20 yards (D.Smith).,16,7,2012 -20120909_SF@GB,3,26,28,SF,GB,1,10,62,(11:28) F.Gore right end to GB 41 for 21 yards (A.Hawk).,16,7,2012 -20120909_SF@GB,3,25,48,SF,GB,1,10,41,(10:48) F.Gore right tackle to GB 38 for 3 yards (A.Hawk M.Burnett).,16,7,2012 -20120909_SF@GB,3,25,6,SF,GB,2,7,38,(10:06) A.Smith pass short middle to V.Davis to GB 9 for 29 yards (J.Bush).,16,7,2012 -20120909_SF@GB,3,24,17,SF,GB,1,9,9,(9:17) L.Davis reported in as eligible. K.Hunter left end for 9 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. L.Davis and L.Davis reported in as eligible. K.Hunter left end ran ob at GB 1 for 8 yards (M.Burnett).,16,7,2012 -20120909_SF@GB,3,24,13,SF,GB,2,1,1,(9:13) W.Tukuafu reported in as eligible. PENALTY on SF-W.Tukuafu False Start 5 yards enforced at GB 1 - No Play.,16,7,2012 -20120909_SF@GB,3,24,3,SF,GB,2,6,6,(9:03) (Shotgun) A.Smith pass short right to R.Moss to GB 4 for 2 yards (T.Williams; M.Burnett).,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,3,4,4,(8:21) (Shotgun) A.Smith pass short left to V.Davis for 4 yards TOUCHDOWN.,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers kicks 70 yards from SF 35 to GB -5. R.Cobb to GB 23 for 28 yards (D.Walker).,23,7,2012 -20120909_SF@GB,3,23,10,GB,SF,1,10,77,(8:10) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at GB 33 for 10 yards (P.Willis; D.Whitner).,7,23,2012 -20120909_SF@GB,3,22,44,GB,SF,1,10,67,(7:44) C.Benson right end to GB 34 for 1 yard (C.Rogers).,7,23,2012 -20120909_SF@GB,3,22,3,GB,SF,2,9,66,(7:03) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 43 for 9 yards (P.Willis).,7,23,2012 -20120909_SF@GB,3,21,21,GB,SF,1,10,57,(6:21) C.Benson left guard to GB 46 for 3 yards (R.McDonald D.Goldson).,7,23,2012 -20120909_SF@GB,3,20,39,GB,SF,2,7,54,(5:39) A.Rodgers right guard to SF 49 for 5 yards (P.Willis).,7,23,2012 -20120909_SF@GB,3,19,50,GB,SF,3,2,49,(4:50) (Shotgun) A.Rodgers pass incomplete short right to J.Finley.,7,23,2012 -20120909_SF@GB,3,19,46,GB,SF,4,2,49,(4:46) T.Masthay punts 45 yards to SF 4 Center-B.Goode out of bounds.,7,23,2012 -20120909_SF@GB,3,19,36,SF,GB,1,10,96,(4:36) L.Davis reported in as eligible. F.Gore left end pushed ob at SF 11 for 7 yards (A.Hawk).,23,7,2012 -20120909_SF@GB,3,19,10,SF,GB,2,3,89,(4:10) K.Hunter left tackle to SF 15 for 4 yards (D.Smith N.Perry).,23,7,2012 -20120909_SF@GB,3,18,28,SF,GB,1,10,85,(3:28) A.Smith sacked at SF 10 for -5 yards (sack split by C.Woodson and C.Matthews).,23,7,2012 -20120909_SF@GB,3,17,51,SF,GB,2,15,90,(2:51) F.Gore left end pushed ob at SF 26 for 16 yards (J.McMillian).,23,7,2012 -20120909_SF@GB,3,17,28,SF,GB,1,10,74,(2:28) L.Davis and D.Kilgore reported in as eligible. K.Hunter right end to SF 31 for 5 yards (D.Smith).,23,7,2012 -20120909_SF@GB,3,16,43,SF,GB,2,5,69,(1:43) A.Smith pass incomplete deep right to V.Davis.,23,7,2012 -20120909_SF@GB,3,16,37,SF,GB,3,5,69,(1:37) (Shotgun) A.Smith pass short left to M.Crabtree pushed ob at SF 34 for 3 yards (J.Bush) [C.Matthews].,23,7,2012 -20120909_SF@GB,3,15,53,SF,GB,4,2,66,(:53) A.Lee punts 47 yards to GB 19 Center-B.Jennings fair catch by R.Cobb.,23,7,2012 -20120909_SF@GB,3,15,46,GB,SF,1,10,81,(:46) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley [A.Brooks].,7,23,2012 -20120909_SF@GB,3,15,41,GB,SF,2,10,81,(:41) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 35 for 16 yards (D.Whitner).,7,23,2012 -20120909_SF@GB,3,15,4,GB,SF,1,10,65,(:04) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones to GB 48 for 13 yards (R.McDonald).,7,23,2012 -20120909_SF@GB,4,15,0,GB,SF,1,10,52,(15:00) (Shotgun) A.Rodgers pass short left to G.Jennings pushed ob at SF 48 for 4 yards (T.Brown).,7,23,2012 -20120909_SF@GB,4,14,24,GB,SF,2,6,48,(14:24) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (N.Bowman).,7,23,2012 -20120909_SF@GB,4,14,20,GB,SF,3,6,48,(14:20) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to G.Jennings.,7,23,2012 -20120909_SF@GB,4,14,13,GB,SF,4,6,48,(14:13) T.Masthay punts 38 yards to SF 10 Center-B.Goode fair catch by K.Williams.,7,23,2012 -20120909_SF@GB,4,14,6,SF,GB,1,10,90,(14:06) W.Tukuafu reported in as eligible. F.Gore left tackle to SF 13 for 3 yards (D.Smith M.Burnett).,23,7,2012 -20120909_SF@GB,4,13,22,SF,GB,2,7,87,(13:22) A.Smith sacked at SF 13 for 0 yards (M.Burnett). PENALTY on SF-J.Staley Offensive Holding 7 yards enforced at SF 13 - No Play.,23,7,2012 -20120909_SF@GB,4,13,1,SF,GB,2,14,94,(13:01) K.Hunter right end to SF 8 for 2 yards (N.Perry).,23,7,2012 -20120909_SF@GB,4,12,17,SF,GB,3,12,92,(12:17) (Shotgun) F.Gore up the middle to SF 14 for 6 yards (N.Perry).,23,7,2012 -20120909_SF@GB,4,11,35,SF,GB,4,6,86,(11:35) A.Lee punts 61 yards to GB 25 Center-B.Jennings. R.Cobb for 75 yards TOUCHDOWN.,23,7,2012 -20120909_SF@GB,4,11,35,GB,SF,,,86,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to J.Nelson is complete. ATTEMPT SUCCEEDS.,7,23,2012 -20120909_SF@GB,4,11,35,GB,SF,,,86,M.Crosby kicks 72 yards from GB 35 to SF -7. K.Hunter Touchback.,15,23,2012 -20120909_SF@GB,4,11,16,SF,GB,1,10,80,(11:16) (Shotgun) A.Smith up the middle to SF 25 for 5 yards (N.Perry).,23,15,2012 -20120909_SF@GB,4,10,35,SF,GB,2,5,75,(10:35) K.Williams right tackle to SF 28 for 3 yards (D.Smith).,23,15,2012 -20120909_SF@GB,4,9,53,SF,GB,3,2,72,(9:53) (Shotgun) A.Smith pass short left to F.Gore to SF 29 for 1 yard (S.Shields). San Francisco challenged the runner was down by contact ruling and the play was Upheld. (Timeout #2.),23,15,2012 -20120909_SF@GB,4,9,6,SF,GB,4,1,71,(9:06) A.Lee punts 46 yards to GB 25 Center-B.Jennings fair catch by R.Cobb.,23,15,2012 -20120909_SF@GB,4,8,59,GB,SF,1,10,75,(8:59) A.Rodgers pass short middle intended for G.Jennings INTERCEPTED by N.Bowman at GB 34. N.Bowman to GB 23 for 11 yards (C.Benson).,15,23,2012 -20120909_SF@GB,4,8,50,SF,GB,1,10,23,(8:50) L.Davis and D.Kilgore reported in as eligible. F.Gore right end for 23 yards TOUCHDOWN.,23,15,2012 -20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,23,15,2012 -20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers kicks 62 yards from SF 35 to GB 3. R.Cobb to GB 24 for 21 yards (C.Culliver).,30,15,2012 -20120909_SF@GB,4,8,36,GB,SF,1,10,76,(8:36) (Shotgun) A.Rodgers pass incomplete short middle to G.Jennings. PENALTY on SF-C.Rogers Defensive Pass Interference 4 yards enforced at GB 24 - No Play.,15,30,2012 -20120909_SF@GB,4,8,32,GB,SF,1,10,72,(8:32) (Shotgun) A.Rodgers pass short left to R.Cobb pushed ob at GB 35 for 7 yards (C.Rogers).,15,30,2012 -20120909_SF@GB,4,8,11,GB,SF,2,3,65,(8:11) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb ran ob at GB 47 for 12 yards. PENALTY on GB-B.Bulaga Offensive Holding 10 yards enforced at GB 35 - No Play.,15,30,2012 -20120909_SF@GB,4,7,44,GB,SF,2,13,75,(7:44) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 32 for 7 yards (D.Whitner).,15,30,2012 -20120909_SF@GB,4,7,15,GB,SF,3,6,68,(7:15) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones pushed ob at SF 19 for 49 yards (N.Bowman).,15,30,2012 -20120909_SF@GB,4,6,50,GB,SF,1,10,19,(6:50) (Shotgun) A.Rodgers pass short left to Ja.Jones to SF 10 for 9 yards (D.Whitner).,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,2,1,10,(6:09) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones for 10 yards TOUCHDOWN.,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby kicks 70 yards from GB 35 to SF -5. K.Hunter to SF 26 for 31 yards (C.Hayward J.Bush).,22,30,2012 -20120909_SF@GB,4,5,58,SF,GB,1,10,74,(5:58) K.Hunter right guard to SF 31 for 5 yards (R.Pickett A.Hawk).,30,22,2012 -20120909_SF@GB,4,5,18,SF,GB,2,5,69,(5:18) L.Davis and D.Kilgore reported in as eligible. A.Smith pass short right to B.Miller to SF 46 for 15 yards (A.Hawk).,30,22,2012 -20120909_SF@GB,4,4,46,SF,GB,1,10,54,(4:46) F.Gore right tackle to SF 46 for no gain (D.Smith).,30,22,2012 -20120909_SF@GB,4,4,1,SF,GB,2,10,54,(4:01) (Shotgun) A.Smith sacked at SF 39 for -7 yards (C.Matthews).,30,22,2012 -20120909_SF@GB,4,3,56,SF,GB,3,17,61,(3:56) (Shotgun) A.Smith right tackle to SF 44 for 5 yards (D.Smith).,30,22,2012 -20120909_SF@GB,4,3,45,SF,GB,4,12,56,(3:45) A.Lee punts 41 yards to GB 15 Center-B.Jennings. R.Cobb to GB 16 for 1 yard (T.Brock).,30,22,2012 -20120909_SF@GB,4,3,37,GB,SF,1,10,84,(3:37) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings (D.Whitner).,22,30,2012 -20120909_SF@GB,4,3,34,GB,SF,2,10,84,(3:34) (Shotgun) A.Rodgers left guard to GB 17 for 1 yard (A.Brooks).,22,30,2012 -20120909_SF@GB,4,3,0,GB,SF,3,9,83,(3:00) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 27 for 10 yards (N.Bowman).,22,30,2012 -20120909_SF@GB,4,2,35,GB,SF,1,10,73,(2:35) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to GB 32 for 5 yards (N.Bowman).,22,30,2012 -20120909_SF@GB,4,2,10,GB,SF,2,5,68,(2:10) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to GB 41 for 9 yards (C.Culliver).,22,30,2012 -20120909_SF@GB,4,2,0,GB,SF,1,10,59,(2:00) (Shotgun) PENALTY on SF-A.Brooks Neutral Zone Infraction 5 yards enforced at GB 41 - No Play.,22,30,2012 -20120909_SF@GB,4,2,0,GB,SF,1,5,54,(2:00) (Shotgun) A.Rodgers right end ran ob at SF 45 for 9 yards (D.Goldson).,22,30,2012 -20120909_SF@GB,4,1,53,GB,SF,1,10,45,(1:53) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones [A.Brooks].,22,30,2012 -20120909_SF@GB,4,1,50,GB,SF,2,10,45,(1:50) (No Huddle Shotgun) A.Rodgers sacked at GB 48 for -7 yards (A.Brooks).,22,30,2012 -20120909_SF@GB,4,1,22,GB,SF,3,17,52,(1:22) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 45 for 7 yards (D.Goldson).,22,30,2012 -20120909_SF@GB,4,0,54,GB,SF,4,10,45,(:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to J.Nelson (C.Culliver).,22,30,2012 -20120909_SF@GB,4,0,49,SF,GB,1,10,55,(:49) A.Smith kneels to SF 44 for -1 yards.,30,22,2012 -20120909_SF@GB,4,0,26,SF,GB,2,11,56,(:26) A.Smith kneels to SF 43 for -1 yards.,30,22,2012 -20120909_SF@GB,4,0,26,SF,GB,,,56,                      ,30,22,2012 -20120909_CAR@TB,1,0,0,TB,CAR,,,56,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20120909_CAR@TB,1,60,0,CAR,TB,1,10,80,(15:00) D.Williams right end to CAR 16 for -4 yards (M.Foster).,0,0,2012 -20120909_CAR@TB,1,59,27,CAR,TB,2,14,84,(14:27) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 36 for 20 yards (R.Barber).,0,0,2012 -20120909_CAR@TB,1,58,49,CAR,TB,1,10,64,(13:49) (Shotgun) D.Williams left guard to CAR 33 for -3 yards (G.McCoy).,0,0,2012 -20120909_CAR@TB,1,58,5,CAR,TB,2,13,67,(13:05) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (M.Barron).,0,0,2012 -20120909_CAR@TB,1,57,57,CAR,TB,3,13,67,(12:57) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,0,2012 -20120909_CAR@TB,1,57,51,CAR,TB,4,13,67,(12:51) (Punt formation) B.Nortman punts 47 yards to TB 20 Center-J.Jansen. P.Parker to TB 20 for no gain (T.Davis).,0,0,2012 -20120909_CAR@TB,1,57,40,TB,CAR,1,10,80,(12:40) J.Freeman pass short left to M.Williams pushed ob at TB 26 for 6 yards (J.Norman).,0,0,2012 -20120909_CAR@TB,1,57,25,TB,CAR,2,4,74,(12:25) D.Martin right tackle to TB 30 for 4 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,56,39,TB,CAR,1,10,70,(11:39) D.Martin right tackle to TB 34 for 4 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,55,57,TB,CAR,2,6,66,(10:57) J.Freeman pass short right to E.Lorig to TB 39 for 5 yards (L.Kuechly).,0,0,2012 -20120909_CAR@TB,1,55,27,TB,CAR,3,1,61,(10:27) J.Freeman up the middle to TB 41 for 2 yards (G.Hardy).,0,0,2012 -20120909_CAR@TB,1,54,45,TB,CAR,1,10,59,(9:45) J.Freeman pass short right to E.Lorig to CAR 44 for 15 yards (H.Nakamura).,0,0,2012 -20120909_CAR@TB,1,54,13,TB,CAR,1,10,44,(9:13) D.Martin left tackle to CAR 43 for 1 yard (J.Beason).,0,0,2012 -20120909_CAR@TB,1,53,36,TB,CAR,2,9,43,(8:36) J.Freeman pass short left to D.Martin to CAR 32 for 11 yards (L.Kuechly).,0,0,2012 -20120909_CAR@TB,1,52,42,TB,CAR,1,10,32,(7:42) D.Martin up the middle to CAR 26 for 6 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,51,58,TB,CAR,2,4,26,(6:58) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at CAR 24 for 2 yards (J.Anderson).,0,0,2012 -20120909_CAR@TB,1,51,27,TB,CAR,3,2,24,(6:27) (Shotgun) J.Freeman pass short left to V.Jackson to CAR 17 for 7 yards (J.Norman).,0,0,2012 -20120909_CAR@TB,1,51,0,TB,CAR,1,10,17,(6:00) D.Martin left end pushed ob at CAR 6 for 11 yards (J.Beason H.Nakamura).,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,1,6,6,(5:28) J.Freeman pass short middle to M.Williams for 6 yards TOUCHDOWN.,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,,,6,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,,,6,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,7,0,2012 -20120909_CAR@TB,1,50,20,CAR,TB,1,10,80,(5:20) (Shotgun) M.Tolbert right guard to CAR 22 for 2 yards (L.David; Q.Black).,0,7,2012 -20120909_CAR@TB,1,49,46,CAR,TB,2,8,78,(4:46) (Shotgun) C.Newton pass short left to G.Olsen to CAR 26 for 4 yards (L.David).,0,7,2012 -20120909_CAR@TB,1,49,2,CAR,TB,3,4,74,(4:02) (Shotgun) C.Newton pass incomplete short left to K.Pilares (R.Barber).,0,7,2012 -20120909_CAR@TB,1,48,56,CAR,TB,4,4,74,(3:56) (Punt formation) B.Nortman punts 39 yards to TB 35 Center-J.Jansen fair catch by S.Stroughter. PENALTY on CAR-C.Munnerlyn Fair Catch Interference 15 yards enforced at TB 35.,0,7,2012 -20120909_CAR@TB,1,48,47,TB,CAR,1,10,50,(3:47) J.Freeman pass deep right to D.Clark to CAR 17 for 33 yards (J.Beason).,7,0,2012 -20120909_CAR@TB,1,48,0,TB,CAR,1,10,17,(3:00) D.Martin left end to CAR 18 for -1 yards (J.Beason; C.Munnerlyn).,7,0,2012 -20120909_CAR@TB,1,47,14,TB,CAR,2,11,18,(2:14) D.Martin left guard to CAR 18 for no gain (J.Anderson).,7,0,2012 -20120909_CAR@TB,1,46,30,TB,CAR,3,11,18,(1:30) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson (F.Alexander).,7,0,2012 -20120909_CAR@TB,1,46,25,TB,CAR,4,11,18,(1:25) (Field Goal formation) C.Barth 36 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,0,2012 -20120909_CAR@TB,1,46,25,TB,CAR,,,18,M.Koenen kicks 74 yards from TB 35 to CAR -9. K.Pilares Touchback.,10,0,2012 -20120909_CAR@TB,1,46,20,CAR,TB,1,10,80,(1:20) (Shotgun) C.Newton pass short right to L.Murphy to CAR 30 for 10 yards (A.Talib).,0,10,2012 -20120909_CAR@TB,1,45,41,CAR,TB,1,10,70,(:41) C.Newton pass short middle to D.Williams to CAR 35 for 5 yards (Q.Black).,0,10,2012 -20120909_CAR@TB,2,45,0,CAR,TB,2,5,65,(15:00) (Shotgun) K.Pilares left end to CAR 40 for 5 yards (M.Barron).,0,10,2012 -20120909_CAR@TB,2,44,19,CAR,TB,1,10,60,(14:19) C.Newton pass short right to M.Tolbert to CAR 34 for -6 yards (R.Barber).,0,10,2012 -20120909_CAR@TB,2,43,34,CAR,TB,2,16,66,(13:34) (Shotgun) C.Newton pass short right to S.Smith to TB 35 for 31 yards (E.Wright).,0,10,2012 -20120909_CAR@TB,2,43,16,CAR,TB,1,10,35,(13:16) (Shotgun) C.Newton pass short left to L.Murphy to TB 33 for 2 yards (B.McDonald A.Talib).,0,10,2012 -20120909_CAR@TB,2,42,37,CAR,TB,2,8,33,(12:37) C.Newton left tackle to TB 38 for -5 yards (Q.Black).,0,10,2012 -20120909_CAR@TB,2,41,52,CAR,TB,3,13,38,(11:52) (Shotgun) C.Newton pass incomplete deep right to S.Smith (E.Wright).,0,10,2012 -20120909_CAR@TB,2,41,44,CAR,TB,4,13,38,(11:44) (Punt formation) B.Nortman punts 30 yards to TB 8 Center-J.Jansen fair catch by S.Stroughter.,0,10,2012 -20120909_CAR@TB,2,41,38,TB,CAR,1,10,92,(11:38) J.Freeman pass incomplete short left to V.Jackson (F.Alexander).,10,0,2012 -20120909_CAR@TB,2,41,31,TB,CAR,2,10,92,(11:31) L.Blount up the middle to TB 12 for 4 yards (G.Hardy).,10,0,2012 -20120909_CAR@TB,2,40,48,TB,CAR,3,6,88,(10:48) (Shotgun) J.Freeman pass short left to M.Williams to TB 20 for 8 yards (C.Gamble). PENALTY on CAR-C.Gamble Defensive Pass Interference 8 yards enforced at TB 12 - No Play.,10,0,2012 -20120909_CAR@TB,2,40,23,TB,CAR,1,10,80,(10:23) L.Blount left guard to TB 23 for 3 yards (L.Kuechly; D.Edwards).,10,0,2012 -20120909_CAR@TB,2,39,41,TB,CAR,2,7,77,(9:41) J.Freeman pass incomplete deep left to V.Jackson. PENALTY on CAR-J.Norman Defensive Pass Interference 22 yards enforced at TB 23 - No Play.,10,0,2012 -20120909_CAR@TB,2,39,33,TB,CAR,1,10,55,(9:33) J.Freeman pass short right to L.Blount to TB 47 for 2 yards (J.Anderson).,10,0,2012 -20120909_CAR@TB,2,38,49,TB,CAR,2,8,53,(8:49) L.Blount left tackle to TB 48 for 1 yard (D.Edwards).,10,0,2012 -20120909_CAR@TB,2,38,11,TB,CAR,3,7,52,(8:11) (Shotgun) J.Freeman pass deep middle to V.Jackson to CAR 31 for 21 yards (H.Nakamura).,10,0,2012 -20120909_CAR@TB,2,37,23,TB,CAR,1,10,31,(7:23) J.Freeman scrambles left end to CAR 19 for 12 yards (F.Kearse; L.Kuechly).,10,0,2012 -20120909_CAR@TB,2,36,33,TB,CAR,1,10,19,(6:33) D.Martin left tackle to CAR 19 for no gain (C.Godfrey G.Hardy).,10,0,2012 -20120909_CAR@TB,2,36,0,TB,CAR,2,10,19,(6:00) J.Freeman pass short left to V.Jackson to CAR 4 for 15 yards (J.Norman; H.Nakamura).,10,0,2012 -20120909_CAR@TB,2,35,9,TB,CAR,1,4,4,(5:09) D.Martin right guard to CAR 1 for 3 yards (J.Beason).,10,0,2012 -20120909_CAR@TB,2,34,26,TB,CAR,2,1,1,(4:26) D.Martin left guard to CAR 1 for no gain (J.Beason T.Davis).,10,0,2012 -20120909_CAR@TB,2,33,43,TB,CAR,3,1,1,(3:43) J.Freeman pass short right to E.Lorig to CAR 2 for -1 yards (T.Davis).,10,0,2012 -20120909_CAR@TB,2,32,59,TB,CAR,4,2,2,(2:59) (Field Goal formation) C.Barth 20 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,0,2012 -20120909_CAR@TB,2,32,59,TB,CAR,,,2,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,0,2012 -20120909_CAR@TB,2,32,55,CAR,TB,1,10,80,(2:55) (Shotgun) C.Newton pass short left to S.Smith to CAR 31 for 11 yards (E.Wright).,0,13,2012 -20120909_CAR@TB,2,32,34,CAR,TB,1,10,69,(2:34) (Shotgun) C.Newton pass deep left to S.Smith ran ob at CAR 47 for 16 yards. Tampa Bay challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,13,2012 -20120909_CAR@TB,2,32,14,CAR,TB,1,10,53,(2:14) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 41 for -6 yards (M.Foster A.Clayborn) [G.McCoy].,0,13,2012 -20120909_CAR@TB,2,32,0,CAR,TB,2,16,59,(2:00) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 41 - No Play.,0,13,2012 -20120909_CAR@TB,2,32,0,CAR,TB,2,21,64,(2:00) (Shotgun) C.Newton scrambles right end to CAR 40 for 4 yards (M.Foster).,0,13,2012 -20120909_CAR@TB,2,31,16,CAR,TB,3,17,60,(1:16) (Shotgun) C.Newton pass deep middle to B.LaFell to TB 41 for 19 yards (R.Barber; L.David).,0,13,2012 -20120909_CAR@TB,2,30,50,CAR,TB,1,10,41,(:50) C.Newton pass short right to G.Olsen pushed ob at TB 35 for 6 yards (M.Barron).,0,13,2012 -20120909_CAR@TB,2,30,46,CAR,TB,2,4,35,(:46) (Shotgun) C.Newton sacked ob at TB 37 for -2 yards (R.Barber).,0,13,2012 -20120909_CAR@TB,2,30,36,CAR,TB,3,6,37,(:36) (Shotgun) PENALTY on CAR-G.Hangartner False Start 5 yards enforced at TB 37 - No Play.,0,13,2012 -20120909_CAR@TB,2,30,36,CAR,TB,3,11,42,(:36) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,13,2012 -20120909_CAR@TB,2,30,29,CAR,TB,4,11,42,(:29) (Punt formation) B.Nortman punts 36 yards to TB 6 Center-J.Jansen downed by CAR-C.Jones.,0,13,2012 -20120909_CAR@TB,2,30,15,TB,CAR,1,10,94,(:15) J.Freeman kneels to TB 5 for -1 yards.,13,0,2012 -20120909_CAR@TB,3,30,0,CAR,TB,,,94,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 10 for 15 yards (S.Martin).,0,13,2012 -20120909_CAR@TB,3,29,56,TB,CAR,1,10,90,(14:56) (Shotgun) D.Martin left guard to TB 15 for 5 yards (R.Edwards).,13,0,2012 -20120909_CAR@TB,3,29,16,TB,CAR,2,5,85,(14:16) J.Freeman scrambles left tackle to TB 22 for 7 yards (C.Johnson).,13,0,2012 -20120909_CAR@TB,3,28,29,TB,CAR,1,10,78,(13:29) D.Martin left tackle to TB 24 for 2 yards (D.Edwards).,13,0,2012 -20120909_CAR@TB,3,27,45,TB,CAR,2,8,76,(12:45) PENALTY on TB-T.Larsen False Start 5 yards enforced at TB 24 - No Play.,13,0,2012 -20120909_CAR@TB,3,27,19,TB,CAR,2,13,81,(12:19) J.Freeman pass incomplete short left to V.Jackson (C.Johnson).,13,0,2012 -20120909_CAR@TB,3,27,12,TB,CAR,3,13,81,(12:12) (Shotgun) D.Ware up the middle to TB 25 for 6 yards (C.Godfrey).,13,0,2012 -20120909_CAR@TB,3,26,35,TB,CAR,4,7,75,(11:35) (Punt formation) M.Koenen punts 52 yards to CAR 23 Center-A.Economos. J.Adams to CAR 30 for 7 yards (E.Lorig).,13,0,2012 -20120909_CAR@TB,3,26,21,CAR,TB,1,10,70,(11:21) D.Williams up the middle to CAR 30 for no gain (L.David).,0,13,2012 -20120909_CAR@TB,3,25,46,CAR,TB,2,10,70,(10:46) (Shotgun) C.Newton pass short left to S.Smith to CAR 35 for 5 yards (R.Miller).,0,13,2012 -20120909_CAR@TB,3,25,2,CAR,TB,3,5,65,(10:02) (Shotgun) C.Newton pass short right to G.Olsen ran ob at CAR 46 for 11 yards.,0,13,2012 -20120909_CAR@TB,3,24,37,CAR,TB,1,10,54,(9:37) (Shotgun) C.Newton pass short middle to S.Smith pushed ob at TB 22 for 32 yards (M.Barron).,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,1,10,22,(9:03) (Shotgun) C.Newton pass deep middle to B.LaFell for 22 yards TOUCHDOWN.,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock kicks 64 yards from CAR 35 to TB 1. M.Smith to TB 18 for 17 yards (J.Phillips K.Onatolu).,7,13,2012 -20120909_CAR@TB,3,23,49,TB,CAR,1,10,82,(8:49) D.Martin left tackle to TB 23 for 5 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,23,12,TB,CAR,2,5,77,(8:12) J.Freeman pass deep middle to V.Jackson to CAR 46 for 31 yards (J.Norman). PENALTY on TB-T.Larsen Offensive Holding 10 yards enforced at TB 23 - No Play.,13,7,2012 -20120909_CAR@TB,3,22,41,TB,CAR,2,15,87,(7:41) (Shotgun) J.Freeman pass short right to D.Martin to TB 21 for 8 yards (F.Alexander).,13,7,2012 -20120909_CAR@TB,3,21,54,TB,CAR,3,7,79,(6:54) (Shotgun) J.Freeman sacked at TB 14 for -7 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,3,21,18,TB,CAR,4,14,86,(6:18) (Punt formation) M.Koenen punts 48 yards to CAR 38 Center-A.Economos. J.Adams to TB 41 for 21 yards (C.Grimm).,13,7,2012 -20120909_CAR@TB,3,21,3,CAR,TB,1,10,41,(6:03) C.Newton pass short right intended for B.LaFell INTERCEPTED by R.Barber (E.Wright) at TB 26. R.Barber to TB 26 for no gain (J.Gross). 21 tipped the ball in the air and 20 caught it,7,13,2012 -20120909_CAR@TB,3,20,49,TB,CAR,1,10,50,(5:49) D.Martin right guard to CAR 45 for 5 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,3,20,11,TB,CAR,2,5,45,(5:11) D.Martin left guard to CAR 38 for 7 yards (J.Beason).,13,7,2012 -20120909_CAR@TB,3,19,29,TB,CAR,1,10,38,(4:29) D.Martin left guard to CAR 40 for -2 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,18,48,TB,CAR,2,12,40,(3:48) D.Martin left tackle to CAR 40 for no gain (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,18,4,TB,CAR,3,12,40,(3:04) (Shotgun) J.Freeman sacked at CAR 43 for -3 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,17,35,TB,CAR,4,15,43,(2:35) (Punt formation) M.Koenen punts 43 yards to end zone Center-A.Economos Touchback.,13,7,2012 -20120909_CAR@TB,3,17,23,CAR,TB,1,10,80,(2:23) D.Williams right end to CAR 21 for 1 yard (R.Miller).,7,13,2012 -20120909_CAR@TB,3,16,37,CAR,TB,2,9,79,(1:37) (Shotgun) C.Newton pass short right to G.Olsen to CAR 33 for 12 yards (Q.Black).,7,13,2012 -20120909_CAR@TB,3,16,25,CAR,TB,1,10,67,(1:25) D.Williams up the middle to CAR 40 for 7 yards (L.David).,7,13,2012 -20120909_CAR@TB,3,16,5,CAR,TB,2,3,60,(1:05) C.Newton scrambles right end pushed ob at CAR 41 for 1 yard (Q.Black).,7,13,2012 -20120909_CAR@TB,3,15,34,CAR,TB,3,2,59,(:34) (Shotgun) C.Newton up the middle to TB 45 for 14 yards (A.Talib). PENALTY on CAR-A.Silatolu Offensive Holding 10 yards enforced at CAR 41 - No Play.,7,13,2012 -20120909_CAR@TB,3,15,7,CAR,TB,3,12,69,(:07) (Shotgun) C.Newton pass deep left intended for S.Smith INTERCEPTED by A.Black at TB 40. A.Black to TB 40 for no gain (S.Smith).,7,13,2012 -20120909_CAR@TB,4,15,0,TB,CAR,1,10,60,(15:00) J.Freeman pass incomplete short right to V.Jackson (C.Gamble).,13,7,2012 -20120909_CAR@TB,4,14,56,TB,CAR,2,10,60,(14:56) D.Martin right tackle to TB 43 for 3 yards (J.Anderson).,13,7,2012 -20120909_CAR@TB,4,14,12,TB,CAR,3,7,57,(14:12) (Shotgun) J.Freeman pass short left to D.Martin to TB 45 for 2 yards (A.Applewhite; G.Hardy).,13,7,2012 -20120909_CAR@TB,4,13,34,TB,CAR,4,5,55,(13:34) (Punt formation) M.Koenen punts 43 yards to CAR 12 Center-A.Economos. J.Adams MUFFS catch touched at CAR 12 and recovers at CAR 12. J.Adams to CAR 12 for no gain (E.Lorig).,13,7,2012 -20120909_CAR@TB,4,13,21,CAR,TB,1,10,88,(13:21) (Shotgun) C.Newton pass deep left to B.LaFell ran ob at CAR 36 for 24 yards. PENALTY on TB-M.Bennett Roughing the Passer 15 yards enforced at CAR 36.,7,13,2012 -20120909_CAR@TB,4,12,54,CAR,TB,1,10,49,(12:54) (Shotgun) D.Williams left tackle to CAR 49 for -2 yards (M.Foster).,7,13,2012 -20120909_CAR@TB,4,12,13,CAR,TB,2,12,51,(12:13) (Shotgun) C.Newton pass short right to G.Olsen to TB 48 for 3 yards (D.Watson).,7,13,2012 -20120909_CAR@TB,4,11,28,CAR,TB,3,9,48,(11:28) (Shotgun) C.Newton pass incomplete deep right to L.Murphy (M.Barron).,7,13,2012 -20120909_CAR@TB,4,11,19,CAR,TB,4,9,48,(11:19) (Punt formation) B.Nortman punt is BLOCKED by A.Talib Center-J.Jansen RECOVERED by TB-A.Clayborn at CAR 42. A.Clayborn to CAR 42 for no gain (J.Anderson).,7,13,2012 -20120909_CAR@TB,4,11,10,TB,CAR,1,10,42,(11:10) PENALTY on TB-L.Stocker False Start 5 yards enforced at CAR 42 - No Play.,13,7,2012 -20120909_CAR@TB,4,11,10,TB,CAR,1,15,47,(11:10) D.Martin right end to CAR 35 for 12 yards (J.Beason).,13,7,2012 -20120909_CAR@TB,4,10,23,TB,CAR,2,3,35,(10:23) (Shotgun) J.Freeman pass incomplete short right to V.Jackson.,13,7,2012 -20120909_CAR@TB,4,10,18,TB,CAR,3,3,35,(10:18) (Shotgun) D.Ware right end to CAR 27 for 8 yards (J.Norman).,13,7,2012 -20120909_CAR@TB,4,9,31,TB,CAR,1,10,27,(9:31) D.Martin right guard to CAR 24 for 3 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,4,8,52,TB,CAR,2,7,24,(8:52) J.Freeman pass short left to E.Lorig to CAR 22 for 2 yards (J.Anderson).,13,7,2012 -20120909_CAR@TB,4,8,8,TB,CAR,3,5,22,(8:08) (Shotgun) J.Freeman pass incomplete short middle to P.Parker (C.Munnerlyn).,13,7,2012 -20120909_CAR@TB,4,8,3,TB,CAR,4,5,22,(8:03) (Field Goal formation) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,13,7,2012 -20120909_CAR@TB,4,8,3,TB,CAR,,,22,M.Koenen kicks 74 yards from TB 35 to CAR -9. J.Adams to CAR 22 for 31 yards (K.Tandy).,16,7,2012 -20120909_CAR@TB,4,7,52,CAR,TB,1,10,78,(7:52) (Shotgun) C.Newton sacked at CAR 14 for -8 yards (G.McCoy).,7,16,2012 -20120909_CAR@TB,4,7,9,CAR,TB,2,18,86,(7:09) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,7,16,2012 -20120909_CAR@TB,4,7,3,CAR,TB,3,18,86,(7:03) (Shotgun) C.Newton sacked at CAR 12 for -2 yards (M.Bennett). FUMBLES (M.Bennett) and recovers at CAR 12. C.Newton to CAR 12 for no gain (M.Bennett).,7,16,2012 -20120909_CAR@TB,4,6,21,CAR,TB,4,20,88,(6:21) (Punt formation) B.Nortman punts 47 yards to TB 41 Center-J.Jansen fair catch by S.Stroughter.,7,16,2012 -20120909_CAR@TB,4,6,14,TB,CAR,1,10,59,(6:14) D.Martin left guard to TB 45 for 4 yards (C.Johnson).,16,7,2012 -20120909_CAR@TB,4,5,32,TB,CAR,2,6,55,(5:32) J.Freeman pass incomplete short right to M.Williams.,16,7,2012 -20120909_CAR@TB,4,5,25,TB,CAR,3,6,55,(5:25) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (C.Munnerlyn).,16,7,2012 -20120909_CAR@TB,4,5,17,TB,CAR,4,6,55,(5:17) (Punt formation) M.Koenen punts 44 yards to CAR 11 Center-A.Economos out of bounds.,16,7,2012 -20120909_CAR@TB,4,5,6,CAR,TB,1,10,89,(5:06) (Shotgun) C.Newton pass short right to M.Tolbert ran ob at CAR 31 for 20 yards.,7,16,2012 -20120909_CAR@TB,4,4,58,CAR,TB,1,10,69,(4:58) (Shotgun) C.Newton pass deep right to L.Murphy pushed ob at TB 18 for 51 yards (A.Talib).,7,16,2012 -20120909_CAR@TB,4,4,48,CAR,TB,1,10,18,(4:48) (Shotgun) C.Newton pass short right to S.Smith pushed ob at TB 11 for 7 yards (E.Wright).,7,16,2012 -20120909_CAR@TB,4,4,40,CAR,TB,2,3,11,(4:40) (Shotgun) C.Newton pass short right to S.Smith to TB 7 for 4 yards (E.Wright).,7,16,2012 -20120909_CAR@TB,4,4,2,CAR,TB,1,7,7,(4:02) (Shotgun) C.Newton right tackle to TB 3 for 4 yards (M.Foster).,7,16,2012 -20120909_CAR@TB,4,3,34,CAR,TB,2,3,3,(3:34) (Shotgun) C.Newton pass incomplete short left to L.Murphy (A.Talib).,7,16,2012 -20120909_CAR@TB,4,3,28,CAR,TB,3,3,3,(3:28) (Shotgun) C.Newton up the middle to TB 3 for no gain (L.David R.Barber).,7,16,2012 -20120909_CAR@TB,4,2,50,CAR,TB,4,3,3,(2:50) (Field Goal formation) J.Medlock 21 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,7,16,2012 -20120909_CAR@TB,4,2,50,CAR,TB,,,3,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 18 for 23 yards (K.Onatolu).,10,16,2012 -20120909_CAR@TB,4,2,41,TB,CAR,1,10,82,(2:41) D.Martin left tackle to TB 22 for 4 yards (J.Beason).,16,10,2012 -20120909_CAR@TB,4,2,33,TB,CAR,2,6,78,(2:33) D.Martin up the middle to TB 26 for 4 yards (F.Kearse).,16,10,2012 -20120909_CAR@TB,4,2,28,TB,CAR,3,2,74,(2:28) J.Freeman pass short middle to V.Jackson to TB 30 for 4 yards (J.Beason).,16,10,2012 -20120909_CAR@TB,4,2,22,TB,CAR,1,10,70,(2:22) D.Martin up the middle to TB 45 for 15 yards (C.Godfrey).,16,10,2012 -20120909_CAR@TB,4,2,0,TB,CAR,1,10,55,(2:00) J.Freeman kneels to TB 43 for -2 yards.,16,10,2012 -20120909_CAR@TB,4,1,14,TB,CAR,2,12,57,(1:14) J.Freeman kneels to TB 40 for -3 yards.,16,10,2012 -20120909_CAR@TB,4,0,35,TB,CAR,3,15,60,(:35) J.Freeman kneels to TB 38 for -2 yards.,16,10,2012 -20120909_CAR@TB,4,0,35,TB,CAR,,,60,                      ,16,10,2012 -20120909_PIT@DEN,1,0,0,PIT,DEN,,,60,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,0,0,2012 -20120909_PIT@DEN,1,60,0,DEN,PIT,1,10,80,(15:00) W.McGahee left tackle to DEN 25 for 5 yards (I.Taylor).,0,0,2012 -20120909_PIT@DEN,1,59,23,DEN,PIT,2,5,75,(14:23) (Shotgun) P.Manning pass short right to E.Decker to DEN 38 for 13 yards (K.Lewis).,0,0,2012 -20120909_PIT@DEN,1,58,46,DEN,PIT,1,10,62,(13:46) W.McGahee up the middle to DEN 41 for 3 yards (C.Hampton; L.Foote).,0,0,2012 -20120909_PIT@DEN,1,58,9,DEN,PIT,2,7,59,(13:09) (Shotgun) P.Manning pass incomplete short right to J.Dreessen (L.Foote K.Lewis).,0,0,2012 -20120909_PIT@DEN,1,58,3,DEN,PIT,3,7,59,(13:03) (Shotgun) P.Manning pass short left to B.Stokley to 50 for 9 yards (C.Allen).,0,0,2012 -20120909_PIT@DEN,1,57,20,DEN,PIT,1,10,50,(12:20) K.Moreno up the middle to 50 for no gain (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,56,35,DEN,PIT,2,10,50,(11:35) (Shotgun) P.Manning pass incomplete short left to D.Thomas (I.Taylor). Penalty on DEN Illegal Formation declined.,0,0,2012 -20120909_PIT@DEN,1,56,30,DEN,PIT,3,10,50,(11:30) (Shotgun) P.Manning sacked at DEN 45 for -5 yards (L.Foote).,0,0,2012 -20120909_PIT@DEN,1,56,0,DEN,PIT,4,15,55,(11:00) B.Colquitt punts 44 yards to PIT 11 Center-A.Brewer. A.Brown to PIT 11 for no gain (J.Tamme).,0,0,2012 -20120909_PIT@DEN,1,55,49,PIT,DEN,1,10,89,(10:49) I.Redman up the middle to PIT 14 for 3 yards (T.Warren).,0,0,2012 -20120909_PIT@DEN,1,55,5,PIT,DEN,2,7,86,(10:05) I.Redman left tackle to PIT 17 for 3 yards (T.Porter). PENALTY on PIT-H.Miller Offensive Holding 8 yards enforced at PIT 14 - No Play.,0,0,2012 -20120909_PIT@DEN,1,54,38,PIT,DEN,2,15,94,(9:38) I.Redman right tackle to PIT 6 for no gain (D.Wolfe).,0,0,2012 -20120909_PIT@DEN,1,54,38,PIT,DEN,3,15,94,(9:38) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 20 for 14 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,53,29,PIT,DEN,4,1,80,(8:29) D.Butler punts 52 yards to DEN 28 Center-G.Warren. J.Leonhard to DEN 40 for 12 yards (J.Worilds).,0,0,2012 -20120909_PIT@DEN,1,53,16,DEN,PIT,1,10,60,(8:16) W.McGahee right end to DEN 44 for 4 yards (L.Foote).,0,0,2012 -20120909_PIT@DEN,1,52,39,DEN,PIT,2,6,56,(7:39) P.Manning pass short right to D.Thomas to DEN 49 for 5 yards (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,52,21,DEN,PIT,3,1,51,(7:21) W.McGahee right tackle to DEN 48 for -1 yards. FUMBLES RECOVERED by PIT-L.Woodley at DEN 48. L.Woodley to DEN 48 for no gain (M.Ramirez).,0,0,2012 -20120909_PIT@DEN,1,52,16,PIT,DEN,1,10,47,(7:16) Direction Change. I.Redman right guard to DEN 44 for 3 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,51,36,PIT,DEN,2,7,44,(6:36) C.Rainey right end to DEN 46 for -2 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,50,49,PIT,DEN,3,9,46,(5:49) (Shotgun) B.Roethlisberger pass short left to E.Sanders to DEN 33 for 13 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,50,6,PIT,DEN,1,10,33,(5:06) I.Redman left end to DEN 39 for -6 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,49,19,PIT,DEN,2,16,39,(4:19) I.Redman left guard to DEN 36 for 3 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,48,35,PIT,DEN,3,13,36,(3:35) (Shotgun) B.Roethlisberger sacked at DEN 45 for -9 yards (D.Wolfe).,0,0,2012 -20120909_PIT@DEN,1,48,6,PIT,DEN,4,22,45,(3:06) D.Butler punts 44 yards to DEN 1 Center-G.Warren downed by PIT-D.Van Dyke.,0,0,2012 -20120909_PIT@DEN,1,47,58,DEN,PIT,1,10,99,(2:58) W.McGahee left guard to DEN 3 for 2 yards (B.Keisel).,0,0,2012 -20120909_PIT@DEN,1,47,17,DEN,PIT,2,8,97,(2:17) W.McGahee right guard to DEN 5 for 2 yards (E.Hood).,0,0,2012 -20120909_PIT@DEN,1,46,32,DEN,PIT,3,6,95,(1:32) (Shotgun) P.Manning pass short right to B.Stokley to DEN 22 for 17 yards (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,45,54,DEN,PIT,1,10,78,(:54) (Shotgun) P.Manning sacked at DEN 14 for -8 yards (J.Worilds). Penalty on DEN Illegal Formation declined.,0,0,2012 -20120909_PIT@DEN,1,45,30,DEN,PIT,2,18,86,(:30) K.Moreno left tackle to DEN 15 for 1 yard (L.Woodley; C.Heyward).,0,0,2012 -20120909_PIT@DEN,1,45,30,DEN,PIT,3,17,85,(:30) (Shotgun) P.Manning pass incomplete deep right to D.Thomas (R.Mundy).,0,0,2012 -20120909_PIT@DEN,1,45,5,DEN,PIT,4,17,85,(:05) B.Colquitt punts 46 yards to PIT 39 Center-A.Brewer. A.Brown pushed ob at DEN 38 for 23 yards (Q.Carter).,0,0,2012 -20120909_PIT@DEN,2,45,0,PIT,DEN,1,10,38,(15:00) A.Brown left end to DEN 34 for 4 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,2,44,20,PIT,DEN,2,6,34,(14:20) J.Dwyer left tackle to DEN 23 for 11 yards (T.Porter). PENALTY on PIT-M.Wallace Offensive Holding 10 yards enforced at DEN 23.,0,0,2012 -20120909_PIT@DEN,2,44,20,PIT,DEN,2,5,33,(14:20) B.Roethlisberger pass short left to W.Johnson to DEN 21 for 12 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,2,43,22,PIT,DEN,1,10,21,(13:22) B.Roethlisberger pass short right to H.Miller to DEN 19 for 2 yards (M.Adams). PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at DEN 21 - No Play.,0,0,2012 -20120909_PIT@DEN,2,43,0,PIT,DEN,1,5,16,(13:00) J.Dwyer left guard to DEN 14 for 2 yards (E.Dumervil; J.Bannan).,0,0,2012 -20120909_PIT@DEN,2,42,16,PIT,DEN,2,3,14,(12:16) J.Dwyer left end to DEN 13 for 1 yard (K.Brooking).,0,0,2012 -20120909_PIT@DEN,2,41,37,PIT,DEN,3,2,13,(11:37) B.Roethlisberger pass short right to A.Brown to DEN 8 for 5 yards (C.Harris).,0,0,2012 -20120909_PIT@DEN,2,40,51,PIT,DEN,1,8,8,(10:51) B.Roethlisberger pass short middle to H.Miller to DEN 2 for 6 yards (R.Moore). PENALTY on DEN-K.Vickerson Encroachment 5 yards enforced at DEN 8 - No Play.,0,0,2012 -20120909_PIT@DEN,2,40,25,PIT,DEN,1,3,3,(10:25) B.Roethlisberger pass incomplete short right to A.Brown (C.Bailey).,0,0,2012 -20120909_PIT@DEN,2,40,22,PIT,DEN,2,3,3,(10:22) B.Roethlisberger pass incomplete short left to H.Miller.,0,0,2012 -20120909_PIT@DEN,2,40,18,PIT,DEN,3,3,3,(10:18) (Shotgun) B.Roethlisberger pass incomplete short left to H.Miller (T.Porter).,0,0,2012 -20120909_PIT@DEN,2,40,13,PIT,DEN,4,3,3,(10:13) S.Suisham 21 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20120909_PIT@DEN,2,40,13,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,3,0,2012 -20120909_PIT@DEN,2,40,10,DEN,PIT,1,10,80,(10:10) (Shotgun) P.Manning pass short middle to J.Dreessen to DEN 26 for 6 yards (L.Timmons).,0,3,2012 -20120909_PIT@DEN,2,39,43,DEN,PIT,2,4,74,(9:43) W.McGahee left guard to DEN 29 for 3 yards (C.Hampton).,0,3,2012 -20120909_PIT@DEN,2,39,17,DEN,PIT,3,1,71,(9:17) (Shotgun) P.Manning pass short left to D.Thomas to DEN 35 for 6 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,38,53,DEN,PIT,1,10,65,(8:53) (Shotgun) P.Manning pass deep left to D.Thomas to PIT 45 for 20 yards (I.Taylor).,0,3,2012 -20120909_PIT@DEN,2,38,25,DEN,PIT,1,10,45,(8:25) (Shotgun) P.Manning pass short middle to J.Tamme to PIT 41 for 4 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,37,55,DEN,PIT,2,6,41,(7:55) P.Manning scrambles right end ran ob at PIT 34 for 7 yards.,0,3,2012 -20120909_PIT@DEN,2,37,30,DEN,PIT,1,10,34,(7:30) P.Manning pass incomplete short middle to W.McGahee [L.Foote].,0,3,2012 -20120909_PIT@DEN,2,37,25,DEN,PIT,2,10,34,(7:25) (Shotgun) P.Manning pass short right to E.Decker to PIT 25 for 9 yards (K.Lewis).,0,3,2012 -20120909_PIT@DEN,2,36,57,DEN,PIT,3,1,25,(6:57) (Shotgun) W.McGahee up the middle to PIT 20 for 5 yards (L.Woodley).,0,3,2012 -20120909_PIT@DEN,2,36,24,DEN,PIT,1,10,20,(6:24) (Shotgun) P.Manning pass short right to J.Tamme to PIT 11 for 9 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,35,48,DEN,PIT,2,1,11,(5:48) (Shotgun) W.McGahee up the middle to PIT 7 for 4 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,1,7,7,(5:22) (Shotgun) K.Moreno left guard for 7 yards TOUCHDOWN.,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater kicks 71 yards from DEN 35 to PIT -6. E.Sanders to PIT 21 for 27 yards (O.Bolden).,7,3,2012 -20120909_PIT@DEN,2,35,11,PIT,DEN,1,10,79,(5:11) (Shotgun) I.Redman up the middle to PIT 23 for 2 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,34,37,PIT,DEN,2,8,77,(4:37) (Shotgun) B.Roethlisberger pass short right to I.Redman to PIT 28 for 5 yards (R.Moore).,3,7,2012 -20120909_PIT@DEN,2,33,48,PIT,DEN,3,3,72,(3:48) I.Redman left end to PIT 34 for 6 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,33,6,PIT,DEN,1,10,66,(3:06) (Shotgun) B.Roethlisberger pass incomplete short right (M.Adams). PIT-M.Gilbert was injured during the play.,3,7,2012 -20120909_PIT@DEN,2,32,56,PIT,DEN,2,10,66,(2:56) (Shotgun) B.Batch up the middle to PIT 33 for -1 yards (V.Miller). Penalty on PIT Illegal Formation declined.,3,7,2012 -20120909_PIT@DEN,2,32,31,PIT,DEN,3,11,67,(2:31) (Shotgun) B.Roethlisberger pass deep right to A.Brown pushed ob at DEN 44 for 23 yards (C.Bailey).,3,7,2012 -20120909_PIT@DEN,2,32,8,PIT,DEN,1,10,44,(2:08) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown. PENALTY on PIT-M.Adams Illegal Formation 5 yards enforced at DEN 44 - No Play.,3,7,2012 -20120909_PIT@DEN,2,32,2,PIT,DEN,1,15,49,(2:02) (Shotgun) I.Redman left end to DEN 45 for 4 yards (R.Ayers; M.Unrein).,3,7,2012 -20120909_PIT@DEN,2,31,56,PIT,DEN,2,11,45,(1:56) B.Roethlisberger pass deep left to A.Brown pushed ob at DEN 18 for 27 yards (C.Harris).,3,7,2012 -20120909_PIT@DEN,2,31,44,PIT,DEN,1,10,18,(1:44) (Shotgun) J.Dwyer left tackle to DEN 16 for 2 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,31,10,PIT,DEN,2,8,16,(1:10) (Shotgun) PENALTY on PIT-M.Starks False Start 5 yards enforced at DEN 16 - No Play.,3,7,2012 -20120909_PIT@DEN,2,31,8,PIT,DEN,2,13,21,(1:08) (Shotgun) B.Roethlisberger pass incomplete short left to J.Dwyer.,3,7,2012 -20120909_PIT@DEN,2,31,4,PIT,DEN,3,13,21,(1:04) (Shotgun) B.Roethlisberger pass deep left to E.Sanders to DEN 4 for 17 yards (T.Porter).,3,7,2012 -20120909_PIT@DEN,2,30,36,PIT,DEN,1,4,4,(:36) B.Roethlisberger spiked the ball to stop the clock.,3,7,2012 -20120909_PIT@DEN,2,30,36,PIT,DEN,2,4,4,(:36) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,3,4,4,(:32) B.Roethlisberger pass short middle to H.Miller for 4 yards TOUCHDOWN.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,10,7,2012 -20120909_PIT@DEN,2,30,28,DEN,PIT,1,10,80,(:28) P.Manning kneels to DEN 19 for -1 yards.,7,10,2012 -20120909_PIT@DEN,3,30,0,DEN,PIT,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,10,2012 -20120909_PIT@DEN,3,30,0,PIT,DEN,1,10,80,(15:00) B.Roethlisberger pass incomplete short right to J.Dwyer.,10,7,2012 -20120909_PIT@DEN,3,29,56,PIT,DEN,2,10,80,(14:56) (Shotgun) J.Dwyer right guard to PIT 23 for 3 yards (D.Wolfe).,10,7,2012 -20120909_PIT@DEN,3,29,13,PIT,DEN,3,7,77,(14:13) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at PIT 23 - No Play.,10,7,2012 -20120909_PIT@DEN,3,28,57,PIT,DEN,3,12,82,(13:57) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 33 for 15 yards (J.Mays).,10,7,2012 -20120909_PIT@DEN,3,28,19,PIT,DEN,1,10,67,(13:19) (Shotgun) J.Dwyer left tackle to PIT 38 for 5 yards (R.Ayers).,10,7,2012 -20120909_PIT@DEN,3,27,42,PIT,DEN,2,5,62,(12:42) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 47 for 15 yards (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,27,8,PIT,DEN,1,10,47,(12:08) B.Roethlisberger pass short left to J.Dwyer to DEN 47 for no gain (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,26,29,PIT,DEN,2,10,47,(11:29) (Shotgun) PENALTY on DEN-K.Vickerson Neutral Zone Infraction 5 yards enforced at DEN 47 - No Play.,10,7,2012 -20120909_PIT@DEN,3,26,9,PIT,DEN,2,5,42,(11:09) (Shotgun) B.Roethlisberger pass short left to I.Redman to DEN 40 for 2 yards (R.Moore).,10,7,2012 -20120909_PIT@DEN,3,25,29,PIT,DEN,3,3,40,(10:29) (Shotgun) B.Roethlisberger up the middle to DEN 38 for 2 yards (E.Dumervil).,10,7,2012 -20120909_PIT@DEN,3,24,58,PIT,DEN,4,1,38,(9:58) B.Roethlisberger up the middle to DEN 36 for 2 yards (E.Dumervil; R.Moore).,10,7,2012 -20120909_PIT@DEN,3,24,33,PIT,DEN,1,10,36,(9:33) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at DEN 36 - No Play.,10,7,2012 -20120909_PIT@DEN,3,24,9,PIT,DEN,1,15,41,(9:09) (Shotgun) I.Redman right guard to DEN 38 for 3 yards (J.Bannan).,10,7,2012 -20120909_PIT@DEN,3,23,31,PIT,DEN,2,12,38,(8:31) (Shotgun) B.Roethlisberger sacked at DEN 47 for -9 yards (C.Harris). PENALTY on PIT-A.Brown False Start 5 yards enforced at DEN 38 - No Play.,10,7,2012 -20120909_PIT@DEN,3,23,8,PIT,DEN,2,17,43,(8:08) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 30 for 13 yards (T.Porter).,10,7,2012 -20120909_PIT@DEN,3,22,34,PIT,DEN,3,4,30,(7:34) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 23 for 7 yards (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,21,59,PIT,DEN,1,10,23,(6:59) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams) [E.Dumervil].,10,7,2012 -20120909_PIT@DEN,3,21,52,PIT,DEN,2,10,23,(6:52) (Shotgun) J.Dwyer up the middle to DEN 16 for 7 yards (M.Adams).,10,7,2012 -20120909_PIT@DEN,3,21,14,PIT,DEN,3,3,16,(6:14) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown [E.Dumervil].,10,7,2012 -20120909_PIT@DEN,3,21,9,PIT,DEN,4,3,16,(6:09) S.Suisham 35 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,7,2012 -20120909_PIT@DEN,3,21,9,PIT,DEN,,,16,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,13,7,2012 -20120909_PIT@DEN,3,21,5,DEN,PIT,1,10,80,(6:05) (Shotgun) P.Manning pass short right to E.Decker to DEN 29 for 9 yards (K.Lewis).,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,2,1,71,(5:41) (Shotgun) P.Manning pass short left to D.Thomas for 71 yards TOUCHDOWN.,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,13,2012 -20120909_PIT@DEN,3,20,29,PIT,DEN,1,10,80,(5:29) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,20,24,PIT,DEN,2,10,80,(5:24) (Shotgun) B.Roethlisberger pass incomplete short left to E.Sanders (T.Porter).,13,14,2012 -20120909_PIT@DEN,3,20,17,PIT,DEN,3,10,80,(5:17) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders (R.Moore). PENALTY on DEN-R.Moore Unnecessary Roughness 15 yards enforced at PIT 20.,13,14,2012 -20120909_PIT@DEN,3,20,11,PIT,DEN,1,10,65,(5:11) (Shotgun) B.Roethlisberger pass short left to C.Rainey to PIT 34 for -1 yards (K.Vickerson).,13,14,2012 -20120909_PIT@DEN,3,19,31,PIT,DEN,2,11,66,(4:31) B.Roethlisberger sacked at PIT 27 for -7 yards (sack split by J.Mays and C.Harris).,13,14,2012 -20120909_PIT@DEN,3,18,53,PIT,DEN,3,18,73,(3:53) (Shotgun) B.Roethlisberger pass short middle to H.Miller to 50 for 23 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,18,18,PIT,DEN,1,10,50,(3:18) J.Dwyer left end to DEN 47 for 3 yards (E.Dumervil). PENALTY on DEN-E.Dumervil Face Mask (15 Yards) 14 yards enforced at DEN 47.,13,14,2012 -20120909_PIT@DEN,3,17,48,PIT,DEN,1,10,33,(2:48) (Shotgun) B.Roethlisberger pass short left to J.Dwyer to DEN 22 for 11 yards (R.Moore).,13,14,2012 -20120909_PIT@DEN,3,17,7,PIT,DEN,1,10,22,(2:07) B.Roethlisberger pass incomplete short middle to J.Cotchery.,13,14,2012 -20120909_PIT@DEN,3,17,3,PIT,DEN,2,10,22,(2:03) (Shotgun) I.Redman up the middle to DEN 19 for 3 yards (W.Woodyard).,13,14,2012 -20120909_PIT@DEN,3,16,18,PIT,DEN,3,7,19,(1:18) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 11 for 8 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,15,33,PIT,DEN,1,10,11,(:33) (Shotgun) J.Dwyer right end for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Dwyer right end to DEN 2 for 9 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,4,15,0,PIT,DEN,2,1,2,(15:00) I.Redman left guard to DEN 3 for -1 yards (V.Miller).,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,3,2,3,(14:15) (Shotgun) B.Roethlisberger pass short left to M.Wallace for 3 yards TOUCHDOWN.,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,TWO-POINT CONVERSION ATTEMPT. B.Roethlisberger pass to L.Pope is incomplete. ATTEMPT FAILS.,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,19,14,2012 -20120909_PIT@DEN,4,14,11,DEN,PIT,1,10,80,(14:11) (Shotgun) W.McGahee up the middle to DEN 29 for 9 yards (C.Carter).,14,19,2012 -20120909_PIT@DEN,4,13,46,DEN,PIT,2,1,71,(13:46) (Shotgun) W.McGahee up the middle to DEN 41 for 12 yards (R.Mundy).,14,19,2012 -20120909_PIT@DEN,4,13,14,DEN,PIT,1,10,59,(13:14) (Shotgun) P.Manning pass short left to D.Thomas to DEN 49 for 8 yards (T.Polamalu).,14,19,2012 -20120909_PIT@DEN,4,12,42,DEN,PIT,2,2,51,(12:42) (Shotgun) K.Moreno left tackle to PIT 49 for 2 yards (E.Hood).,14,19,2012 -20120909_PIT@DEN,4,12,18,DEN,PIT,1,10,49,(12:18) (Shotgun) P.Manning pass short right to E.Decker to PIT 43 for 6 yards (W.Allen; L.Woodley).,14,19,2012 -20120909_PIT@DEN,4,11,53,DEN,PIT,2,4,43,(11:53) (Shotgun) P.Manning pass short left to M.Willis to PIT 29 for 14 yards (K.Lewis).,14,19,2012 -20120909_PIT@DEN,4,11,24,DEN,PIT,1,10,29,(11:24) (Shotgun) P.Manning pass incomplete short middle to E.Decker (K.Lewis).,14,19,2012 -20120909_PIT@DEN,4,11,18,DEN,PIT,2,10,29,(11:18) (Shotgun) P.Manning pass short right to J.Tamme to PIT 18 for 11 yards (L.Timmons).,14,19,2012 -20120909_PIT@DEN,4,10,45,DEN,PIT,1,10,18,(10:45) (Shotgun) P.Manning pass short right to E.Decker to PIT 1 for 17 yards (R.Mundy). Pittsburgh challenged the first down ruling and the play was Upheld. (Timeout #1.),14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,1,1,1,(9:28) (Shotgun) P.Manning pass short left to J.Tamme for 1 yard TOUCHDOWN.,14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,TWO-POINT CONVERSION ATTEMPT. P.Manning pass to W.McGahee is complete. ATTEMPT SUCCEEDS.,14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,22,19,2012 -20120909_PIT@DEN,4,9,23,PIT,DEN,1,10,80,(9:23) C.Rainey left end to PIT 27 for 7 yards (T.Porter).,19,22,2012 -20120909_PIT@DEN,4,8,42,PIT,DEN,2,3,73,(8:42) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace (T.Porter) [V.Miller].,19,22,2012 -20120909_PIT@DEN,4,8,35,PIT,DEN,3,3,73,(8:35) B.Roethlisberger pass incomplete short middle to H.Miller (T.Porter).,19,22,2012 -20120909_PIT@DEN,4,8,29,PIT,DEN,4,3,73,(8:29) D.Butler punts 46 yards to DEN 27 Center-G.Warren. J.Leonhard to DEN 37 for 10 yards (Cu.Brown).,19,22,2012 -20120909_PIT@DEN,4,8,18,DEN,PIT,1,10,63,(8:18) W.McGahee right end to DEN 42 for 5 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,52,DEN,PIT,2,5,58,(7:52) (Shotgun) W.McGahee left guard to DEN 45 for 3 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,31,DEN,PIT,3,2,55,(7:31) (Shotgun) K.Moreno right guard to DEN 48 for 3 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,1,DEN,PIT,1,10,52,(7:01) (Shotgun) L.Ball up the middle to PIT 41 for 11 yards (T.Polamalu).,22,19,2012 -20120909_PIT@DEN,4,6,27,DEN,PIT,1,10,41,(6:27) (Shotgun) L.Ball up the middle to PIT 38 for 3 yards (C.Heyward).,22,19,2012 -20120909_PIT@DEN,4,5,50,DEN,PIT,2,7,38,(5:50) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at PIT 20 for 18 yards (C.Allen).,22,19,2012 -20120909_PIT@DEN,4,5,25,DEN,PIT,1,10,20,(5:25) W.McGahee left tackle to PIT 20 for no gain (C.Heyward).,22,19,2012 -20120909_PIT@DEN,4,4,44,DEN,PIT,2,10,20,(4:44) W.McGahee right end to PIT 12 for 8 yards (J.Worilds).,22,19,2012 -20120909_PIT@DEN,4,3,55,DEN,PIT,3,2,12,(3:55) PENALTY on DEN Delay of Game 5 yards enforced at PIT 12 - No Play.,22,19,2012 -20120909_PIT@DEN,4,3,55,DEN,PIT,3,7,17,(3:55) (Shotgun) P.Manning pass incomplete short right to E.Decker. PENALTY on PIT-K.Lewis Defensive Pass Interference 9 yards enforced at PIT 17 - No Play.,22,19,2012 -20120909_PIT@DEN,4,3,51,DEN,PIT,1,8,8,(3:51) W.McGahee right tackle to PIT 8 for no gain (L.Foote).,22,19,2012 -20120909_PIT@DEN,4,3,12,DEN,PIT,2,8,8,(3:12) (Shotgun) P.Manning pass incomplete short middle to B.Stokley.,22,19,2012 -20120909_PIT@DEN,4,3,7,DEN,PIT,3,8,8,(3:07) (Shotgun) P.Manning pass incomplete short right to E.Decker (K.Lewis).,22,19,2012 -20120909_PIT@DEN,4,3,3,DEN,PIT,4,8,8,(3:03) M.Prater 26 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,22,19,2012 -20120909_PIT@DEN,4,3,3,DEN,PIT,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,25,19,2012 -20120909_PIT@DEN,4,3,0,PIT,DEN,1,10,87,(3:00) (Shotgun) B.Roethlisberger FUMBLES (Aborted) at PIT 13 and recovers at PIT 13. B.Roethlisberger pass short middle to A.Brown to PIT 39 for 19 yards (C.Harris).,19,25,2012 -20120909_PIT@DEN,4,2,16,PIT,DEN,1,10,61,(2:16) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders.,19,25,2012 -20120909_PIT@DEN,4,2,10,PIT,DEN,2,10,61,(2:10) (Shotgun) B.Roethlisberger pass intended for E.Sanders INTERCEPTED by T.Porter at PIT 43. T.Porter for 43 yards TOUCHDOWN.,19,25,2012 -20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,TWO-POINT CONVERSION ATTEMPT. W.McGahee rushes left tackle. ATTEMPT FAILS.,25,19,2012 -20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,19,2012 -20120909_PIT@DEN,4,1,58,PIT,DEN,1,10,80,(1:58) (Shotgun) B.Roethlisberger sacked at PIT 15 for -5 yards (V.Miller).,19,31,2012 -20120909_PIT@DEN,4,1,27,PIT,DEN,2,15,85,(1:27) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 25 for 10 yards (J.Leonhard).,19,31,2012 -20120909_PIT@DEN,4,1,1,PIT,DEN,3,5,75,(1:01) (Shotgun) B.Roethlisberger sacked at PIT 15 for -10 yards (V.Miller).,19,31,2012 -20120909_PIT@DEN,4,0,54,PIT,DEN,4,15,85,(:54) (Shotgun) B.Roethlisberger sacked at PIT 10 for -5 yards (W.Woodyard).,19,31,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,1,9,9,(:42) Direction Change. P.Manning kneels to PIT 11 for -2 yards.,31,19,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,2,11,11,(:42) P.Manning kneels to PIT 12 for -1 yards.,31,19,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,,,11,                      ,31,19,2012 -20120910_CIN@BAL,1,0,0,CIN,BAL,,,11,M.Nugent kicks 71 yards from CIN 35 to BLT -6. D.Thompson to BLT 21 for 27 yards (B.Leonard).,0,0,2012 -20120910_CIN@BAL,1,59,55,BAL,CIN,1,10,79,(14:55) J.Flacco pass deep middle to T.Smith to CIN 27 for 52 yards (L.Hall).,0,0,2012 -20120910_CIN@BAL,1,59,7,BAL,CIN,1,10,27,(14:07) (No Huddle Shotgun) R.Rice left guard to CIN 21 for 6 yards (T.Mays).,0,0,2012 -20120910_CIN@BAL,1,58,31,BAL,CIN,2,4,21,(13:31) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,0,0,2012 -20120910_CIN@BAL,1,58,27,BAL,CIN,3,4,21,(13:27) (No Huddle Shotgun) J.Flacco sacked at CIN 28 for -7 yards (G.Atkins).,0,0,2012 -20120910_CIN@BAL,1,57,59,BAL,CIN,4,11,28,(12:59) (Field Goal formation) J.Tucker 46 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20120910_CIN@BAL,1,57,59,BAL,CIN,,,28,J.Tucker kicks 69 yards from BLT 35 to CIN -4. B.Tate to CIN 21 for 25 yards (C.Brown).,3,0,2012 -20120910_CIN@BAL,1,57,47,CIN,BAL,1,10,79,(12:47) A.Dalton pass incomplete short left to A.Green.,0,3,2012 -20120910_CIN@BAL,1,57,43,CIN,BAL,2,10,79,(12:43) B.Green-Ellis right tackle to CIN 24 for 3 yards (R.Lewis J.McClain).,0,3,2012 -20120910_CIN@BAL,1,57,4,CIN,BAL,3,7,76,(12:04) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (B.Pollard).,0,3,2012 -20120910_CIN@BAL,1,56,59,CIN,BAL,4,7,76,(11:59) (Punt formation) K.Huber punts 39 yards to BLT 37 Center-C.Harris downed by CIN-V.Burfict.,0,3,2012 -20120910_CIN@BAL,1,56,48,BAL,CIN,1,10,63,(11:48) T.Smith left end pushed ob at CIN 50 for 13 yards (T.Mays). T. Smith runs a reverse after fake to Rice.,3,0,2012 -20120910_CIN@BAL,1,56,14,BAL,CIN,1,10,50,(11:14) (No Huddle) J.Flacco pass short left to V.Leach pushed ob at CIN 40 for 10 yards (M.Lawson).,3,0,2012 -20120910_CIN@BAL,1,55,40,BAL,CIN,1,10,50,(10:40) J.Flacco FUMBLES (Aborted) at CIN 50 recovered by BLT-A.Boldin at CIN 50. A.Boldin to CIN 50 for no gain (Mich.Johnson).,3,0,2012 -20120910_CIN@BAL,1,55,25,BAL,CIN,2,20,50,(10:25) J.Flacco pass short right to J.Jones to CIN 45 for 5 yards (T.Newman).,3,0,2012 -20120910_CIN@BAL,1,54,46,BAL,CIN,3,15,45,(9:46) (Shotgun) J.Flacco pass short right to J.Jones to CIN 29 for 16 yards (T.Newman).,3,0,2012 -20120910_CIN@BAL,1,54,14,BAL,CIN,1,10,29,(9:14) (No Huddle) A.Boldin left end to CIN 26 for 3 yards (L.Hall).,3,0,2012 -20120910_CIN@BAL,1,53,43,BAL,CIN,2,7,26,(8:43) R.Rice left guard to CIN 25 for 1 yard (R.Maualuga).,3,0,2012 -20120910_CIN@BAL,1,53,7,BAL,CIN,3,6,25,(8:07) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CIN 20 for 5 yards (T.Howard).,3,0,2012 -20120910_CIN@BAL,1,52,22,BAL,CIN,4,1,20,(7:22) J.Flacco pass short right to R.Rice to CIN 19 for 1 yard (N.Clements).,3,0,2012 -20120910_CIN@BAL,1,51,45,BAL,CIN,1,10,19,(6:45) (No Huddle Shotgun) J.Flacco pass incomplete short middle to D.Pitta (T.Howard).,3,0,2012 -20120910_CIN@BAL,1,51,39,BAL,CIN,2,10,19,(6:39) (Shotgun) J.Flacco pass short left to D.Pitta to CIN 7 for 12 yards (M.Lawson).,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,1,7,7,(6:08) (No Huddle) R.Rice right tackle for 7 yards TOUCHDOWN.,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker kicks 72 yards from BLT 35 to CIN -7. B.Tate to CIN 8 for 15 yards.,10,0,2012 -20120910_CIN@BAL,1,51,3,CIN,BAL,1,10,92,(6:03) B.Green-Ellis up the middle to CIN 10 for 2 yards (M.Kemoeatu).,0,10,2012 -20120910_CIN@BAL,1,50,53,CIN,BAL,2,8,90,(5:53) (Shotgun) PENALTY on BLT Illegal Substitution 5 yards enforced at CIN 10 - No Play.,0,10,2012 -20120910_CIN@BAL,1,50,53,CIN,BAL,2,3,85,(5:53) A.Dalton pass short left to A.Hawkins to CIN 23 for 8 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,1,49,16,CIN,BAL,1,10,77,(4:16) A.Dalton pass deep middle to A.Green to CIN 42 for 19 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,1,48,39,CIN,BAL,1,10,58,(3:39) B.Green-Ellis left tackle to CIN 45 for 3 yards (R.Lewis B.Pollard).,0,10,2012 -20120910_CIN@BAL,1,48,6,CIN,BAL,2,7,55,(3:06) A.Dalton pass incomplete deep middle to A.Green.,0,10,2012 -20120910_CIN@BAL,1,48,6,CIN,BAL,3,7,55,(3:06) (Shotgun) PENALTY on BLT-P.McPhee Defensive Offside 5 yards enforced at CIN 45 - No Play.,0,10,2012 -20120910_CIN@BAL,1,47,51,CIN,BAL,3,2,50,(2:51) B.Green-Ellis right guard to BLT 37 for 13 yards (R.Lewis).,0,10,2012 -20120910_CIN@BAL,1,47,9,CIN,BAL,1,10,37,(2:09) (Shotgun) A.Dalton pass incomplete deep middle to A.Green (C.Williams).,0,10,2012 -20120910_CIN@BAL,1,47,1,CIN,BAL,2,10,37,(2:01) A.Dalton pass short left to A.Binns to BLT 28 for 9 yards (C.Williams).,0,10,2012 -20120910_CIN@BAL,1,46,22,CIN,BAL,3,1,28,(1:22) A.Dalton up the middle to BLT 23 for 5 yards (E.Reed).,0,10,2012 -20120910_CIN@BAL,1,45,47,CIN,BAL,1,10,23,(:47) B.Green-Ellis right tackle to BLT 20 for 3 yards (R.Lewis).,0,10,2012 -20120910_CIN@BAL,1,45,9,CIN,BAL,2,7,20,(:09) A.Dalton pass short right to A.Binns to BLT 16 for 4 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,2,45,0,CIN,BAL,3,3,16,(15:00) A.Dalton pass incomplete short middle to J.Gresham.,0,10,2012 -20120910_CIN@BAL,2,44,56,CIN,BAL,4,3,16,(14:56) (Field Goal formation) M.Nugent 34 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,10,2012 -20120910_CIN@BAL,2,44,56,CIN,BAL,,,16,M.Nugent kicks 70 yards from CIN 35 to BLT -5. D.Thompson to BLT 18 for 23 yards (D.Skuta).,3,10,2012 -20120910_CIN@BAL,2,44,46,BAL,CIN,1,10,82,(14:46) (Shotgun) R.Rice left guard to BLT 34 for 16 yards (T.Mays).,10,3,2012 -20120910_CIN@BAL,2,44,12,BAL,CIN,1,10,66,(14:12) (No Huddle) R.Rice left guard to BLT 35 for 1 yard (D.Peko).,10,3,2012 -20120910_CIN@BAL,2,43,40,BAL,CIN,2,9,65,(13:40) (Shotgun) J.Flacco pass short right to J.Jones to CIN 40 for 25 yards (R.Nelson).,10,3,2012 -20120910_CIN@BAL,2,43,6,BAL,CIN,1,10,40,(13:06) (No Huddle Shotgun) R.Rice right guard to CIN 34 for 6 yards (T.Howard).,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,2,4,34,(12:34) (No Huddle) J.Flacco pass deep middle to A.Boldin for 34 yards TOUCHDOWN.,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,18,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker kicks 73 yards from BLT 35 to CIN -8. B.Tate Touchback.,17,3,2012 -20120910_CIN@BAL,2,42,25,CIN,BAL,1,10,80,(12:25) A.Dalton pass to A.Green to CIN 25 for 5 yards (E.Reed).,3,17,2012 -20120910_CIN@BAL,2,42,2,CIN,BAL,2,5,75,(12:02) B.Green-Ellis left tackle to CIN 29 for 4 yards (H.Ngata).,3,17,2012 -20120910_CIN@BAL,2,41,25,CIN,BAL,3,1,71,(11:25) B.Green-Ellis left end to CIN 41 for 12 yards (A.Jones).,3,17,2012 -20120910_CIN@BAL,2,40,43,CIN,BAL,1,10,59,(10:43) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 47 for 6 yards (D.Ellerbe P.Kruger).,3,17,2012 -20120910_CIN@BAL,2,40,10,CIN,BAL,2,4,53,(10:10) B.Green-Ellis left guard to CIN 49 for 2 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,39,26,CIN,BAL,3,2,51,(9:26) A.Dalton sacked at CIN 46 for -3 yards (H.Ngata).,3,17,2012 -20120910_CIN@BAL,2,38,58,CIN,BAL,4,5,54,(8:58) (Punt formation) K.Huber punts 39 yards to BLT 15 Center-C.Harris. L.Webb to BLT 24 for 9 yards (C.Harris).,3,17,2012 -20120910_CIN@BAL,2,38,45,BAL,CIN,1,10,76,(8:45) B.Pierce right guard to BLT 27 for 3 yards (D.Still).,17,3,2012 -20120910_CIN@BAL,2,38,21,BAL,CIN,2,7,73,(8:21) J.Flacco pass incomplete short middle to E.Dickson. PENALTY on CIN-T.Mays Personal Foul 15 yards enforced at BLT 27 - No Play.,17,3,2012 -20120910_CIN@BAL,2,38,16,BAL,CIN,1,10,58,(8:16) J.Flacco pass short right to A.Boldin to CIN 44 for 14 yards (N.Clements R.Nelson).,17,3,2012 -20120910_CIN@BAL,2,37,41,BAL,CIN,1,10,44,(7:41) J.Flacco pass short left to V.Leach to CIN 31 for 13 yards (M.Lawson T.Mays). PENALTY on BLT-T.Smith Illegal Block Above the Waist 10 yards enforced at CIN 41.,17,3,2012 -20120910_CIN@BAL,2,36,45,BAL,CIN,1,17,51,(6:45) J.Flacco pass short middle to R.Rice to CIN 45 for 6 yards (R.Maualuga).,17,3,2012 -20120910_CIN@BAL,2,36,35,BAL,CIN,2,11,45,(6:35) (No Huddle Shotgun) J.Flacco pass incomplete short right to A.Boldin (R.Maualuga).,17,3,2012 -20120910_CIN@BAL,2,36,31,BAL,CIN,3,11,45,(6:31) J.Flacco sacked at BLT 49 for -6 yards (T.Howard).,17,3,2012 -20120910_CIN@BAL,2,36,2,BAL,CIN,4,17,51,(6:02) (Punt formation) S.Koch punts 37 yards to CIN 14 Center-M.Cox. B.Tate to CIN 19 for 5 yards (C.Graham).,17,3,2012 -20120910_CIN@BAL,2,35,52,CIN,BAL,1,10,81,(5:52) A.Dalton pass incomplete deep left to A.Green (B.Pollard).,3,17,2012 -20120910_CIN@BAL,2,35,46,CIN,BAL,2,10,81,(5:46) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 46 for 27 yards (L.Webb).,3,17,2012 -20120910_CIN@BAL,2,35,21,CIN,BAL,1,10,54,(5:21) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 50 for 4 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,34,41,CIN,BAL,2,6,50,(4:41) (Shotgun) B.Green-Ellis right guard to BLT 43 for 7 yards (D.Ellerbe R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,34,1,CIN,BAL,1,10,43,(4:01) (Shotgun) A.Dalton pass short left to B.Tate pushed ob at BLT 40 for 3 yards (C.Williams).,3,17,2012 -20120910_CIN@BAL,2,33,28,CIN,BAL,2,7,40,(3:28) A.Dalton pass short middle to A.Hawkins to BLT 34 for 6 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,33,5,CIN,BAL,3,1,34,(3:05) (No Huddle) A.Dalton up the middle to BLT 34 for no gain (C.Upshaw H.Ngata). QB sneak by Andy Dalton comes up short.,3,17,2012 -20120910_CIN@BAL,2,32,36,CIN,BAL,4,1,34,(2:36) B.Green-Ellis right guard to BLT 30 for 4 yards (A.Jones).,3,17,2012 -20120910_CIN@BAL,2,32,0,CIN,BAL,1,10,30,(2:00) (Shotgun) A.Dalton pass short middle to A.Green to BLT 15 for 15 yards (A.McClellan).,3,17,2012 -20120910_CIN@BAL,2,31,28,CIN,BAL,1,10,15,(1:28) B.Green-Ellis right tackle to BLT 12 for 3 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,30,50,CIN,BAL,2,7,12,(:50) (Shotgun) A.Dalton pass short right to J.Gresham to BLT 6 for 6 yards (B.Pollard).,3,17,2012 -20120910_CIN@BAL,2,30,35,CIN,BAL,3,1,6,(:35) A.Dalton pass incomplete short right to J.Gresham (E.Reed).,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,4,1,6,(:27) B.Green-Ellis left guard for 6 yards TOUCHDOWN.,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 25 for 28 yards (C.Peerman). PENALTY on BLT-S.Considine Offensive Holding 10 yards enforced at BLT 21.,10,17,2012 -20120910_CIN@BAL,2,30,18,BAL,CIN,1,10,89,(:18) J.Flacco kneels to BLT 10 for -1 yards.,17,10,2012 -20120910_CIN@BAL,3,30,0,BAL,CIN,,,89,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,17,10,2012 -20120910_CIN@BAL,3,30,0,CIN,BAL,1,10,80,(15:00) A.Dalton pass short left to A.Green to CIN 34 for 14 yards (C.Williams R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,29,21,CIN,BAL,1,10,66,(14:21) B.Green-Ellis left guard to CIN 43 for 9 yards (J.McClain R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,28,50,CIN,BAL,2,1,57,(13:50) B.Green-Ellis left tackle to CIN 45 for 2 yards (D.Ellerbe B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,28,16,CIN,BAL,1,10,55,(13:16) (Shotgun) A.Dalton pass deep right to A.Green to BLT 38 for 17 yards (B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,27,34,CIN,BAL,1,10,38,(12:34) B.Green-Ellis left tackle to BLT 36 for 2 yards (L.Webb).,10,17,2012 -20120910_CIN@BAL,3,26,59,CIN,BAL,2,8,36,(11:59) (Shotgun) A.Dalton pass short right to A.Hawkins pushed ob at BLT 25 for 11 yards (R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,26,35,CIN,BAL,1,10,25,(11:35) B.Leonard up the middle to BLT 22 for 3 yards (D.Ellerbe).,10,17,2012 -20120910_CIN@BAL,3,25,57,CIN,BAL,2,7,22,(10:57) A.Dalton pass short left to A.Hawkins pushed ob at BLT 8 for 14 yards (C.Williams).,10,17,2012 -20120910_CIN@BAL,3,25,30,CIN,BAL,1,8,8,(10:30) B.Green-Ellis left guard to BLT 7 for 1 yard (B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,24,51,CIN,BAL,2,7,7,(9:51) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,3,7,7,(9:47) (Shotgun) A.Dalton up the middle to BLT 1 for 6 yards (L.Webb).,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,4,1,1,(9:47) (Field Goal formation) M.Nugent 19 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,,,1,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 11 for 14 yards (C.Peerman).,13,17,2012 -20120910_CIN@BAL,3,23,54,BAL,CIN,1,10,89,(8:54) PENALTY on BLT-T.Smith False Start 5 yards enforced at BLT 11 - No Play.,17,13,2012 -20120910_CIN@BAL,3,23,54,BAL,CIN,1,15,94,(8:54) J.Flacco pass deep middle to D.Pitta to BLT 29 for 23 yards (R.Maualuga).,17,13,2012 -20120910_CIN@BAL,3,23,24,BAL,CIN,1,10,71,(8:24) (No Huddle) J.Flacco pass short left to D.Pitta to BLT 32 for 3 yards (R.Nelson).,17,13,2012 -20120910_CIN@BAL,3,22,59,BAL,CIN,2,7,68,(7:59) (No Huddle) J.Flacco pass incomplete short left to A.Boldin (L.Hall). PENALTY on CIN-L.Hall Defensive Pass Interference 6 yards enforced at BLT 32 - No Play.,17,13,2012 -20120910_CIN@BAL,3,22,54,BAL,CIN,1,10,62,(7:54) J.Flacco pass incomplete short middle to D.Pitta (R.Nelson).,17,13,2012 -20120910_CIN@BAL,3,22,49,BAL,CIN,2,10,62,(7:49) (No Huddle Shotgun) J.Flacco pass short left to R.Rice pushed ob at CIN 44 for 18 yards.,17,13,2012 -20120910_CIN@BAL,3,22,21,BAL,CIN,1,10,44,(7:21) (No Huddle) R.Rice left guard to CIN 31 for 13 yards (L.Hall J.Miles).,17,13,2012 -20120910_CIN@BAL,3,21,49,BAL,CIN,1,10,31,(6:49) (No Huddle) J.Flacco pass deep left to E.Dickson to CIN 12 for 19 yards (J.Miles).,17,13,2012 -20120910_CIN@BAL,3,21,11,BAL,CIN,1,10,12,(6:11) (No Huddle) B.Pierce left guard to CIN 10 for 2 yards (M.Lawson D.Peko).,17,13,2012 -20120910_CIN@BAL,3,20,33,BAL,CIN,2,8,10,(5:33) (No Huddle) J.Flacco pass incomplete short left to R.Rice (L.Hall) [D.Peko].,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,3,8,10,(5:25) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta for 10 yards TOUCHDOWN.,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,24,13,2012 -20120910_CIN@BAL,3,20,18,CIN,BAL,1,10,80,(5:18) A.Dalton pass incomplete short right to A.Hawkins.,13,24,2012 -20120910_CIN@BAL,3,20,13,CIN,BAL,2,10,80,(5:13) (Shotgun) A.Dalton pass incomplete short left to A.Binns (C.Williams).,13,24,2012 -20120910_CIN@BAL,3,20,9,CIN,BAL,3,10,80,(5:09) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 40 for 20 yards (B.Pollard). Baltimore challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 26 for 6 yards (R.Lewis).,13,24,2012 -20120910_CIN@BAL,3,19,33,CIN,BAL,4,4,74,(4:33) (Punt formation) K.Huber punts 57 yards to BLT 17 Center-C.Harris. J.Jones to BLT 26 for 9 yards (C.Harris).,13,24,2012 -20120910_CIN@BAL,3,19,22,BAL,CIN,1,10,74,(4:22) J.Flacco pass deep middle to D.Pitta to CIN 49 for 25 yards (R.Nelson).,24,13,2012 -20120910_CIN@BAL,3,18,45,BAL,CIN,1,10,49,(3:45) J.Flacco pass short left to A.Boldin to CIN 39 for 10 yards (L.Hall).,24,13,2012 -20120910_CIN@BAL,3,18,3,BAL,CIN,1,10,39,(3:03) J.Flacco pass short right to E.Dickson to CIN 36 for 3 yards (J.Miles).,24,13,2012 -20120910_CIN@BAL,3,17,26,BAL,CIN,2,7,36,(2:26) (No Huddle) R.Rice left guard to CIN 26 for 10 yards (R.Nelson T.Newman).,24,13,2012 -20120910_CIN@BAL,3,16,49,BAL,CIN,1,10,26,(1:49) J.Flacco pass short left to T.Smith pushed ob at CIN 21 for 5 yards (R.Nelson).,24,13,2012 -20120910_CIN@BAL,3,16,29,BAL,CIN,2,5,21,(1:29) (No Huddle) J.Flacco pass incomplete deep middle to T.Smith.,24,13,2012 -20120910_CIN@BAL,3,16,23,BAL,CIN,3,5,21,(1:23) (Shotgun) J.Flacco pass incomplete deep middle to E.Dickson (N.Clements).,24,13,2012 -20120910_CIN@BAL,3,16,18,BAL,CIN,4,5,21,(1:18) (Field Goal formation) J.Tucker 40 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,24,13,2012 -20120910_CIN@BAL,3,16,18,BAL,CIN,,,21,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,27,13,2012 -20120910_CIN@BAL,3,16,13,CIN,BAL,1,10,80,(1:13) B.Green-Ellis left tackle to CIN 21 for 1 yard (A.Jones).,13,27,2012 -20120910_CIN@BAL,3,15,29,CIN,BAL,2,9,79,(:29) A.Dalton pass incomplete deep left to A.Green.,13,27,2012 -20120910_CIN@BAL,3,15,22,CIN,BAL,3,9,79,(:22) (Shotgun) A.Dalton pass short left intended for B.Tate INTERCEPTED by E.Reed at CIN 34. E.Reed for 34 yards TOUCHDOWN. Ed Reed is now NFL's all-time leader with 1497 interception return yards.,13,27,2012 -20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,27,13,2012 -20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback. BLT-C.Graham was injured during the play.,34,13,2012 -20120910_CIN@BAL,3,15,13,CIN,BAL,1,10,80,(:13) A.Dalton pass short left to A.Binns to CIN 28 for 8 yards (C.Williams D.Ellerbe).,13,34,2012 -20120910_CIN@BAL,4,15,0,CIN,BAL,2,2,72,(15:00) (Shotgun) A.Dalton pass incomplete short middle to B.Green-Ellis (H.Ngata) [L.Webb].,13,34,2012 -20120910_CIN@BAL,4,14,57,CIN,BAL,3,2,72,(14:57) (Shotgun) A.Dalton sacked at CIN 28 for 0 yards (R.Lewis). FUMBLES (R.Lewis) RECOVERED by BLT-L.Webb at CIN 28. L.Webb to CIN 28 for no gain (A.Smith).,13,34,2012 -20120910_CIN@BAL,4,14,48,BAL,CIN,1,10,28,(14:48) R.Rice left end to CIN 21 for 7 yards (M.Lawson R.Maualuga).,34,13,2012 -20120910_CIN@BAL,4,14,18,BAL,CIN,2,3,21,(14:18) J.Flacco pass incomplete deep right to T.Smith. PENALTY on CIN-N.Clements Defensive Pass Interference 20 yards enforced at CIN 21 - No Play.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,1,1,1,(14:09) R.Rice left guard for 1 yard TOUCHDOWN.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,41,13,2012 -20120910_CIN@BAL,4,14,4,CIN,BAL,1,10,80,(14:04) (Shotgun) A.Dalton pass short left to J.Gresham pushed ob at CIN 33 for 13 yards (B.Pollard).,13,41,2012 -20120910_CIN@BAL,4,13,42,CIN,BAL,1,10,67,(13:42) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 44 for 11 yards (D.Ellerbe).,13,41,2012 -20120910_CIN@BAL,4,13,10,CIN,BAL,1,10,56,(13:10) (Shotgun) A.Dalton pass incomplete short right to J.Gresham [L.Webb]. PENALTY on BLT-L.Webb Personal Foul 15 yards enforced at CIN 44 - No Play.,13,41,2012 -20120910_CIN@BAL,4,13,4,CIN,BAL,1,10,41,(13:04) (Shotgun) B.Green-Ellis right guard to BLT 27 for 14 yards (L.Webb J.Ihedigbo).,13,41,2012 -20120910_CIN@BAL,4,12,28,CIN,BAL,1,10,27,(12:28) (Shotgun) A.Dalton sacked at BLT 40 for -13 yards (H.Ngata).,13,41,2012 -20120910_CIN@BAL,4,11,54,CIN,BAL,2,23,40,(11:54) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,13,41,2012 -20120910_CIN@BAL,4,11,47,CIN,BAL,3,23,40,(11:47) (Shotgun) A.Dalton pass short middle to A.Hawkins to BLT 32 for 8 yards (D.Ellerbe).,13,41,2012 -20120910_CIN@BAL,4,11,6,CIN,BAL,4,15,32,(11:06) (Shotgun) A.Dalton sacked at BLT 44 for -12 yards (sack split by P.McPhee and C.Upshaw).,13,41,2012 -20120910_CIN@BAL,4,10,57,BAL,CIN,1,10,56,(10:57) B.Pierce right end to BLT 47 for 3 yards (D.Peko).,41,13,2012 -20120910_CIN@BAL,4,10,23,BAL,CIN,2,7,53,(10:23) J.Flacco pass incomplete deep left to D.Pitta.,41,13,2012 -20120910_CIN@BAL,4,10,16,BAL,CIN,3,7,53,(10:16) (Shotgun) J.Flacco sacked at BLT 39 for -8 yards (G.Atkins).,41,13,2012 -20120910_CIN@BAL,4,9,59,BAL,CIN,4,15,61,(9:59) (Punt formation) S.Koch punts 50 yards to CIN 11 Center-M.Cox. B.Tate to CIN 25 for 14 yards (A.Allen).,41,13,2012 -20120910_CIN@BAL,4,9,47,CIN,BAL,1,10,75,(9:47) A.Dalton pass short left to A.Binns to CIN 32 for 7 yards (C.Williams).,13,41,2012 -20120910_CIN@BAL,4,9,16,CIN,BAL,2,3,68,(9:16) (Shotgun) B.Leonard right guard to CIN 33 for 1 yard (A.Jones).,13,41,2012 -20120910_CIN@BAL,4,8,35,CIN,BAL,3,2,67,(8:35) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (L.Webb J.McClain).,13,41,2012 -20120910_CIN@BAL,4,8,30,CIN,BAL,4,2,67,(8:30) (Punt formation) K.Huber punts 48 yards to BLT 19 Center-C.Harris fair catch by L.Webb.,13,41,2012 -20120910_CIN@BAL,4,8,23,BAL,CIN,1,10,81,(8:23) B.Pierce right end to BLT 30 for 11 yards (N.Clements).,41,13,2012 -20120910_CIN@BAL,4,7,40,BAL,CIN,1,10,70,(7:40) A.Allen up the middle to BLT 36 for 6 yards (D.Still).,41,13,2012 -20120910_CIN@BAL,4,6,55,BAL,CIN,2,4,64,(6:55) A.Allen right guard to BLT 43 for 7 yards (M.Lawson R.Maualuga).,41,13,2012 -20120910_CIN@BAL,4,6,13,BAL,CIN,1,10,57,(6:13) A.Allen left tackle to BLT 43 for no gain (D.Skuta D.Peko).,41,13,2012 -20120910_CIN@BAL,4,5,35,BAL,CIN,2,10,57,(5:35) T.Taylor pass short left to V.Leach to BLT 48 for 5 yards (R.Nelson).,41,13,2012 -20120910_CIN@BAL,4,4,51,BAL,CIN,3,5,52,(4:51) (Shotgun) T.Taylor pass short left to D.Thompson pushed ob at CIN 27 for 25 yards (R.Nelson).,41,13,2012 -20120910_CIN@BAL,4,4,25,BAL,CIN,1,10,27,(4:25) A.Allen right tackle to CIN 27 for no gain (B.Thompson).,41,13,2012 -20120910_CIN@BAL,4,4,3,BAL,CIN,2,10,27,(4:03) T.Taylor scrambles left end to CIN 20 for 7 yards (Mich.Johnson).,41,13,2012 -20120910_CIN@BAL,4,3,14,BAL,CIN,3,3,20,(3:14) (Shotgun) T.Taylor pass incomplete deep left to D.Thompson (L.Hall).,41,13,2012 -20120910_CIN@BAL,4,3,6,BAL,CIN,4,3,20,(3:06) (Field Goal formation) J.Tucker 39 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,41,13,2012 -20120910_CIN@BAL,4,3,6,BAL,CIN,,,20,J.Tucker kicks 67 yards from BLT 35 to CIN -2. B.Tate to CIN 22 for 24 yards (C.Brown).,44,13,2012 -20120910_CIN@BAL,4,2,55,CIN,BAL,1,10,78,(2:55) B.Leonard right tackle to CIN 23 for 1 yard (A.McClellan C.Upshaw).,13,44,2012 -20120910_CIN@BAL,4,2,21,CIN,BAL,2,9,77,(2:21) C.Peerman up the middle to CIN 31 for 8 yards (C.Upshaw; C.Graham).,13,44,2012 -20120910_CIN@BAL,4,2,0,CIN,BAL,3,1,69,(2:00) C.Peerman right guard to CIN 44 for 13 yards (C.Graham).,13,44,2012 -20120910_CIN@BAL,4,1,24,CIN,BAL,1,10,56,(1:24) C.Peerman right guard to CIN 45 for 1 yard (T.Cody).,13,44,2012 -20120910_CIN@BAL,4,0,41,CIN,BAL,2,9,60,(:41) B.Gradkowski FUMBLES (Aborted) at CIN 45 and recovers at CIN 40. B.Gradkowski to CIN 40 for no gain (J.Ihedigbo).,13,44,2012 -20120910_CIN@BAL,4,0,41,CIN,BAL,,,60,                      ,13,44,2012 -20120910_SD@OAK,1,0,0,SD,OAK,,,60,N.Kaeding kicks 57 yards from SD 35 to OAK 8. T.Jones to OAK 14 for 6 yards (S.Wright J.Battle).,0,0,2012 -20120910_SD@OAK,1,59,56,OAK,SD,1,10,86,(14:56) C.Palmer pass short left to D.McFadden to OAK 23 for 9 yards (T.Spikes).,0,0,2012 -20120910_SD@OAK,1,59,19,OAK,SD,2,1,77,(14:19) D.McFadden up the middle to OAK 26 for 3 yards (A.Bigby).,0,0,2012 -20120910_SD@OAK,1,58,43,OAK,SD,1,10,74,(13:43) C.Palmer pass incomplete short right to D.Heyward-Bey (A.Cason).,0,0,2012 -20120910_SD@OAK,1,58,36,OAK,SD,2,10,74,(13:36) D.McFadden up the middle to OAK 26 for no gain (C.Liuget).,0,0,2012 -20120910_SD@OAK,1,58,0,OAK,SD,3,10,74,(13:00) (Shotgun) C.Palmer pass short left to D.Hagan to OAK 39 for 13 yards (A.Cason).,0,0,2012 -20120910_SD@OAK,1,57,34,OAK,SD,1,10,61,(12:34) C.Palmer pass short right to D.Heyward-Bey to OAK 48 for 9 yards (Q.Jammer T.Spikes).,0,0,2012 -20120910_SD@OAK,1,56,47,OAK,SD,2,1,52,(11:47) D.McFadden left end to SD 44 for 8 yards (E.Weddle).,0,0,2012 -20120910_SD@OAK,1,56,17,OAK,SD,1,10,44,(11:17) (Shotgun) C.Palmer pass short right to D.McFadden to SD 45 for -1 yards (A.Bigby).,0,0,2012 -20120910_SD@OAK,1,55,41,OAK,SD,2,11,45,(10:41) M.Goodson right tackle to SD 43 for 2 yards (C.Liuget).,0,0,2012 -20120910_SD@OAK,1,55,3,OAK,SD,3,9,43,(10:03) (Shotgun) C.Palmer pass incomplete short left to D.Hagan. PENALTY on SD-M.Ingram Defensive Offside 5 yards enforced at SD 43 - No Play.,0,0,2012 -20120910_SD@OAK,1,54,58,OAK,SD,3,4,38,(9:58) (Shotgun) C.Palmer pass short middle to R.Streater to SD 30 for 8 yards (M.Ingram). FUMBLES (M.Ingram) RECOVERED by SD-A.Barnes at SD 29. A.Barnes to SD 29 for no gain (M.Brisiel).,0,0,2012 -20120910_SD@OAK,1,54,49,SD,OAK,1,10,71,(9:49) R.Brown right end to SD 29 for no gain (R.Seymour).,0,0,2012 -20120910_SD@OAK,1,54,9,SD,OAK,2,10,71,(9:09) (Shotgun) P.Rivers pass short left to R.Brown to SD 33 for 4 yards (M.Huff P.Wheeler).,0,0,2012 -20120910_SD@OAK,1,53,24,SD,OAK,3,6,67,(8:24) (Shotgun) P.Rivers sacked at SD 28 for -5 yards (sack split by M.Shaughnessy and P.Wheeler).,0,0,2012 -20120910_SD@OAK,1,53,0,SD,OAK,4,11,72,(8:00) M.Scifres punts 53 yards to OAK 19 Center-M.Windt. P.Adams to OAK 34 for 15 yards (D.Stuckey).,0,0,2012 -20120910_SD@OAK,1,52,51,OAK,SD,1,10,66,(7:51) D.McFadden left end to OAK 41 for 7 yards (J.Johnson).,0,0,2012 -20120910_SD@OAK,1,52,14,OAK,SD,2,3,59,(7:14) C.Palmer pass short right to D.McFadden to 50 for 9 yards (D.Butler).,0,0,2012 -20120910_SD@OAK,1,51,52,OAK,SD,1,10,50,(6:52) C.Palmer pass short right to D.Heyward-Bey to SD 37 for 13 yards (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,51,22,OAK,SD,1,10,37,(6:22) D.McFadden right tackle to SD 37 for no gain (D.Butler J.Johnson).,0,0,2012 -20120910_SD@OAK,1,50,44,OAK,SD,2,10,37,(5:44) (Shotgun) C.Palmer pass incomplete short right to D.McFadden (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,50,40,OAK,SD,3,10,37,(5:40) (Shotgun) C.Palmer pass short middle to R.Streater to SD 33 for 4 yards (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,50,2,OAK,SD,4,6,33,(5:02) S.Janikowski 51 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20120910_SD@OAK,1,50,2,OAK,SD,,,33,S.Janikowski kicks 69 yards from OAK 35 to SD -4. R.Goodman to SD 21 for 25 yards (T.Jones D.Ausberry).,3,0,2012 -20120910_SD@OAK,1,49,51,SD,OAK,1,10,79,(4:51) E.Royal right end to SD 32 for 11 yards (M.Huff).,0,3,2012 -20120910_SD@OAK,1,49,20,SD,OAK,1,10,68,(4:20) (Shotgun) P.Rivers pass incomplete short right to C.Brinkley.,0,3,2012 -20120910_SD@OAK,1,49,13,SD,OAK,2,10,68,(4:13) C.Brinkley right tackle to SD 34 for 2 yards (R.McClain).,0,3,2012 -20120910_SD@OAK,1,48,29,SD,OAK,3,8,66,(3:29) (Shotgun) P.Rivers pass deep right to R.Meachem to OAK 20 for 46 yards (R.Bartell).,0,3,2012 -20120910_SD@OAK,1,47,43,SD,OAK,1,10,20,(2:43) P.Rivers pass short right to C.Brinkley to OAK 8 for 12 yards (P.Wheeler).,0,3,2012 -20120910_SD@OAK,1,46,56,SD,OAK,1,8,8,(1:56) P.Rivers pass short middle to L.McClain to OAK 5 for 3 yards (P.Wheeler; T.Kelly).,0,3,2012 -20120910_SD@OAK,1,46,13,SD,OAK,2,5,5,(1:13) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,0,3,2012 -20120910_SD@OAK,1,46,7,SD,OAK,3,5,5,(1:07) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,0,3,2012 -20120910_SD@OAK,1,46,4,SD,OAK,4,5,5,(1:04) N.Kaeding 23 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,3,2012 -20120910_SD@OAK,1,46,0,OAK,SD,1,10,90,(1:00) D.McFadden right tackle to OAK 14 for 4 yards (A.Franklin).,3,3,2012 -20120910_SD@OAK,1,45,22,OAK,SD,2,6,86,(:22) D.McFadden right guard to OAK 19 for 5 yards (D.Butler).,3,3,2012 -20120910_SD@OAK,2,45,0,OAK,SD,3,1,81,(15:00) D.McFadden right tackle to OAK 20 for 1 yard (V.Martin).,3,3,2012 -20120910_SD@OAK,2,44,19,OAK,SD,1,10,80,(14:19) C.Palmer pass short middle to R.Streater to OAK 33 for 13 yards (D.Butler).,3,3,2012 -20120910_SD@OAK,2,43,39,OAK,SD,1,10,90,(13:39) M.Reece FUMBLES (Aborted) at OAK 26 recovered by OAK-T.Jones at OAK 10. T.Jones to OAK 8 for -2 yards (A.Bigby).,3,3,2012 -20120910_SD@OAK,2,42,49,OAK,SD,2,35,92,(12:49) M.Goodson left tackle to OAK 19 for 11 yards (E.Weddle).,3,3,2012 -20120910_SD@OAK,2,42,8,OAK,SD,3,24,81,(12:08) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 22 for 3 yards (Q.Jammer).,3,3,2012 -20120910_SD@OAK,2,41,34,OAK,SD,4,21,78,(11:34) S.Lechler punts 62 yards to SD 16 Center-J.Condo. E.Royal to OAK 38 for 46 yards (M.Giordano). OAK-J.Condo was injured during the play. His return is Questionable. PENALTY on SD-D.Stuckey Illegal Block Above the Waist 10 yards enforced at SD 20.,3,3,2012 -20120910_SD@OAK,2,41,16,SD,OAK,1,10,90,(11:16) C.Brinkley right guard to SD 12 for 2 yards (R.McClain M.Burris).,3,3,2012 -20120910_SD@OAK,2,40,35,SD,OAK,2,8,88,(10:35) (Shotgun) P.Rivers pass short right to E.Royal to SD 19 for 7 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,40,4,SD,OAK,3,1,81,(10:04) PENALTY on OAK-T.Kelly Encroachment 5 yards enforced at SD 19 - No Play.,3,3,2012 -20120910_SD@OAK,2,39,45,SD,OAK,1,10,76,(9:45) P.Rivers pass incomplete short left to C.Brinkley. PENALTY on OAK-T.Branch Defensive Holding 5 yards enforced at SD 24 - No Play.,3,3,2012 -20120910_SD@OAK,2,39,38,SD,OAK,1,10,71,(9:38) (Shotgun) P.Rivers pass short right to R.Brown to SD 35 for 6 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,39,0,SD,OAK,2,4,65,(9:00) R.Brown up the middle to SD 36 for 1 yard (R.McClain).,3,3,2012 -20120910_SD@OAK,2,38,19,SD,OAK,3,3,64,(8:19) (Shotgun) P.Rivers pass incomplete deep right to A.Gates. PENALTY on OAK-T.Kelly Defensive Offside 5 yards enforced at SD 36 - No Play.,3,3,2012 -20120910_SD@OAK,2,38,13,SD,OAK,1,10,59,(8:13) (Shotgun) P.Rivers pass short right to E.Royal to SD 38 for -3 yards (M.Burris).,3,3,2012 -20120910_SD@OAK,2,37,26,SD,OAK,2,13,62,(7:26) P.Rivers pass deep right to M.Floyd to OAK 39 for 23 yards (R.Bartell).,3,3,2012 -20120910_SD@OAK,2,36,57,SD,OAK,1,10,39,(6:57) (Shotgun) P.Rivers pass short middle to A.Gates to OAK 29 for 10 yards (T.Branch R.Bartell).,3,3,2012 -20120910_SD@OAK,2,36,13,SD,OAK,1,10,29,(6:13) P.Rivers pass short right to L.McClain to OAK 22 for 7 yards (L.Houston).,3,3,2012 -20120910_SD@OAK,2,35,35,SD,OAK,2,3,22,(5:35) C.Brinkley left tackle to OAK 24 for -2 yards (M.Burris).,3,3,2012 -20120910_SD@OAK,2,34,52,SD,OAK,3,5,24,(4:52) (Shotgun) P.Rivers pass deep left to A.Gates to OAK 7 for 17 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,34,9,SD,OAK,1,7,7,(4:09) C.Brinkley left guard to OAK 6 for 1 yard (R.Seymour).,3,3,2012 -20120910_SD@OAK,2,33,24,SD,OAK,2,6,6,(3:24) (Shotgun) P.Rivers pass incomplete short left to D.Rosario.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,3,6,6,(3:17) (Shotgun) P.Rivers pass short middle to M.Floyd for 6 yards TOUCHDOWN.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,10,3,2012 -20120910_SD@OAK,2,33,10,OAK,SD,1,10,80,(3:10) C.Palmer pass incomplete short right to D.McFadden.,3,10,2012 -20120910_SD@OAK,2,33,5,OAK,SD,2,10,80,(3:05) D.McFadden right tackle to OAK 27 for 7 yards (D.Butler; A.Bigby).,3,10,2012 -20120910_SD@OAK,2,32,28,OAK,SD,3,3,73,(2:28) C.Palmer pass short middle to M.Reece to OAK 42 for 15 yards (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,32,0,OAK,SD,1,10,58,(2:00) C.Palmer pass short middle to D.McFadden to OAK 46 for 4 yards (J.Johnson).,3,10,2012 -20120910_SD@OAK,2,31,26,OAK,SD,2,6,54,(1:26) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,3,10,2012 -20120910_SD@OAK,2,31,20,OAK,SD,3,6,54,(1:20) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 42 for 12 yards (E.Weddle).,3,10,2012 -20120910_SD@OAK,2,31,12,OAK,SD,1,10,42,(1:12) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,3,10,2012 -20120910_SD@OAK,2,31,8,OAK,SD,2,10,42,(1:08) (Shotgun) C.Palmer pass short right to D.Hagan to SD 32 for 10 yards (Q.Jammer).,3,10,2012 -20120910_SD@OAK,2,30,44,OAK,SD,1,10,32,(:44) (No Huddle Shotgun) C.Palmer pass short middle to D.Hagan to SD 28 for 4 yards (D.Williams).,3,10,2012 -20120910_SD@OAK,2,30,38,OAK,SD,2,6,28,(:38) (Shotgun) C.Palmer pass short left to D.McFadden to SD 11 for 17 yards (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,30,26,OAK,SD,1,10,11,(:26) C.Palmer pass incomplete short left to R.Streater.,3,10,2012 -20120910_SD@OAK,2,30,23,OAK,SD,2,10,11,(:23) C.Palmer pass incomplete short middle to D.Hagan (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,30,16,OAK,SD,3,10,11,(:16) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 5 yards enforced at SD 11 - No Play.,3,10,2012 -20120910_SD@OAK,2,30,16,OAK,SD,3,15,16,(:16) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 1 for 15 yards (Q.Jammer; M.Gilchrist). The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) C.Palmer pass short middle to D.McFadden to SD 2 for 14 yards (Q.Jammer M.Gilchrist).,3,10,2012 -20120910_SD@OAK,2,30,7,OAK,SD,4,1,2,(:07) S.Janikowski 19 yard field goal is GOOD Center-T.Goethel Holder-S.Lechler.,3,10,2012 -20120910_SD@OAK,2,30,7,OAK,SD,,,2,S.Janikowski kicks 49 yards from OAK 35 to SD 16. R.Goodman to SD 33 for 17 yards (P.Lee).,6,10,2012 -20120910_SD@OAK,3,30,0,OAK,SD,,,2,S.Janikowski kicks 70 yards from OAK 35 to SD -5. R.Goodman to SD 29 for 34 yards (M.Mitchell).,6,10,2012 -20120910_SD@OAK,3,29,54,SD,OAK,1,10,71,(14:54) C.Brinkley left guard to SD 29 for no gain (L.Houston).,10,6,2012 -20120910_SD@OAK,3,29,10,SD,OAK,2,10,71,(14:10) (Shotgun) P.Rivers pass short right to R.Brown to SD 33 for 4 yards (T.Kelly).,10,6,2012 -20120910_SD@OAK,3,28,25,SD,OAK,3,6,67,(13:25) (Shotgun) P.Rivers pass short middle to A.Gates to SD 38 for 5 yards (R.McClain; P.Wheeler).,10,6,2012 -20120910_SD@OAK,3,27,34,SD,OAK,4,1,62,(12:34) M.Scifres punts 55 yards to OAK 7 Center-M.Windt fair catch by P.Adams.,10,6,2012 -20120910_SD@OAK,3,27,25,OAK,SD,1,10,93,(12:25) D.McFadden right end to OAK 12 for 5 yards (T.Spikes).,6,10,2012 -20120910_SD@OAK,3,26,43,OAK,SD,2,5,88,(11:43) (No Huddle) D.McFadden right tackle to OAK 15 for 3 yards (T.Spikes).,6,10,2012 -20120910_SD@OAK,3,26,2,OAK,SD,3,2,85,(11:02) (Shotgun) C.Palmer pass incomplete short middle to D.Hagan (Q.Jammer). PENALTY on SD-Q.Jammer Defensive Pass Interference 17 yards enforced at OAK 15 - No Play.,6,10,2012 -20120910_SD@OAK,3,25,56,OAK,SD,1,10,68,(10:56) C.Palmer pass short left to D.Ausberry to OAK 44 for 12 yards (A.Bigby).,6,10,2012 -20120910_SD@OAK,3,25,49,OAK,SD,1,10,56,(10:49) (No Huddle) PENALTY on SD-V.Martin Neutral Zone Infraction 5 yards enforced at OAK 44 - No Play.,6,10,2012 -20120910_SD@OAK,3,25,24,OAK,SD,1,5,51,(10:24) (No Huddle Shotgun) D.McFadden left tackle to SD 49 for 2 yards (J.Johnson).,6,10,2012 -20120910_SD@OAK,3,25,6,OAK,SD,2,3,49,(10:06) D.McFadden left tackle to SD 48 for 1 yard (C.Liuget).,6,10,2012 -20120910_SD@OAK,3,24,25,OAK,SD,3,2,48,(9:25) C.Palmer pass short left to B.Myers to SD 48 for no gain (E.Weddle).,6,10,2012 -20120910_SD@OAK,3,24,16,OAK,SD,4,2,48,(9:16) (Punt formation) PENALTY on OAK Illegal Substitution 5 yards enforced at SD 48 - No Play.,6,10,2012 -20120910_SD@OAK,3,24,16,OAK,SD,4,7,61,(9:16) (Punt formation) S.Lechler Aborted. T.Goethel FUMBLES at OAK 36 recovered by OAK-S.Lechler at OAK 39. S.Lechler to OAK 39 for no gain (A.Gachkar).,6,10,2012 -20120910_SD@OAK,3,23,43,SD,OAK,1,10,39,(8:43) P.Rivers pass short right to C.Brinkley to OAK 35 for 4 yards (M.Burris).,10,6,2012 -20120910_SD@OAK,3,23,10,SD,OAK,2,6,35,(8:10) (Shotgun) P.Rivers pass short left to R.Brown to OAK 28 for 7 yards (M.Shaughnessy).,10,6,2012 -20120910_SD@OAK,3,22,45,SD,OAK,1,10,28,(7:45) P.Rivers pass short right to C.Brinkley to OAK 16 for 12 yards (P.Wheeler T.Kelly).,10,6,2012 -20120910_SD@OAK,3,21,58,SD,OAK,1,10,16,(6:58) C.Brinkley left end to OAK 10 for 6 yards (M.Huff).,10,6,2012 -20120910_SD@OAK,3,21,18,SD,OAK,2,4,10,(6:18) P.Rivers pass incomplete short left to C.Brinkley.,10,6,2012 -20120910_SD@OAK,3,21,10,SD,OAK,3,4,10,(6:10) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,10,6,2012 -20120910_SD@OAK,3,21,5,SD,OAK,4,4,10,(6:05) N.Kaeding 28 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,10,6,2012 -20120910_SD@OAK,3,21,5,SD,OAK,,,10,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,13,6,2012 -20120910_SD@OAK,3,21,1,OAK,SD,1,10,80,(6:01) C.Palmer pass short middle to D.McFadden to OAK 27 for 7 yards (T.Spikes).,6,13,2012 -20120910_SD@OAK,3,20,23,OAK,SD,2,3,73,(5:23) C.Palmer pass incomplete short right to R.Streater.,6,13,2012 -20120910_SD@OAK,3,20,19,OAK,SD,3,3,73,(5:19) (Shotgun) C.Palmer pass short left to D.McFadden to OAK 29 for 2 yards (A.Cason).,6,13,2012 -20120910_SD@OAK,3,19,31,OAK,SD,4,1,71,(4:31) S.Lechler punt is BLOCKED by D.Rosario Center-T.Goethel RECOVERED by SD-C.Lynch at OAK 8. C.Lynch to OAK 8 for no gain (M.Mitchell).,6,13,2012 -20120910_SD@OAK,3,19,20,SD,OAK,1,8,8,(4:20) C.Brinkley left tackle to OAK 3 for 5 yards (M.Burris M.Huff).,13,6,2012 -20120910_SD@OAK,3,19,10,SD,OAK,2,3,3,(4:10) PENALTY on SD-R.McMichael False Start 5 yards enforced at OAK 3 - No Play.,13,6,2012 -20120910_SD@OAK,3,18,17,SD,OAK,2,8,8,(3:17) (Shotgun) R.Brown up the middle to OAK 6 for 2 yards (R.McClain).,13,6,2012 -20120910_SD@OAK,3,17,34,SD,OAK,3,6,6,(2:34) (Shotgun) P.Rivers pass short middle to R.Brown to OAK 1 for 5 yards (P.Wheeler M.Huff).,13,6,2012 -20120910_SD@OAK,3,16,53,SD,OAK,4,1,1,(1:53) N.Kaeding 19 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,13,6,2012 -20120910_SD@OAK,3,16,53,SD,OAK,,,1,N.Kaeding kicks 72 yards from SD 35 to OAK -7. T.Jones Touchback.,16,6,2012 -20120910_SD@OAK,3,16,49,OAK,SD,1,10,80,(1:49) D.McFadden left end to OAK 17 for -3 yards (D.Butler Q.Jammer).,6,16,2012 -20120910_SD@OAK,3,16,12,OAK,SD,2,13,83,(1:12) C.Palmer pass incomplete short middle to D.McFadden.,6,16,2012 -20120910_SD@OAK,3,16,7,OAK,SD,3,13,83,(1:07) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,6,16,2012 -20120910_SD@OAK,3,16,2,OAK,SD,4,13,83,(1:02) S.Lechler punts 52 yards to SD 31 Center-T.Goethel. E.Royal to SD 45 for 14 yards (P.Adams).,6,16,2012 -20120910_SD@OAK,3,15,50,SD,OAK,1,10,55,(:50) C.Brinkley left tackle to SD 48 for 3 yards (M.Burris).,16,6,2012 -20120910_SD@OAK,3,15,12,SD,OAK,2,7,52,(:12) P.Rivers pass incomplete deep left to A.Gates.,16,6,2012 -20120910_SD@OAK,3,15,5,SD,OAK,3,7,52,(:05) (Shotgun) P.Rivers pass short right to A.Gates to OAK 41 for 11 yards (M.Huff).,16,6,2012 -20120910_SD@OAK,4,15,0,SD,OAK,1,10,41,(15:00) (Shotgun) P.Rivers pass short middle to R.Meachem to OAK 38 for 3 yards (S.Spencer).,16,6,2012 -20120910_SD@OAK,4,14,19,SD,OAK,2,7,38,(14:19) P.Rivers pass short middle to M.Floyd to OAK 26 for 12 yards (P.Lee).,16,6,2012 -20120910_SD@OAK,4,13,37,SD,OAK,1,10,26,(13:37) P.Rivers pass short right to L.McClain to OAK 23 for 3 yards (M.Burris; P.Lee).,16,6,2012 -20120910_SD@OAK,4,13,5,SD,OAK,2,7,23,(13:05) P.Rivers pass incomplete short left to A.Gates (P.Wheeler).,16,6,2012 -20120910_SD@OAK,4,12,58,SD,OAK,3,7,23,(12:58) (Shotgun) P.Rivers pass incomplete short right to A.Gates [M.Giordano].,16,6,2012 -20120910_SD@OAK,4,12,53,SD,OAK,4,7,23,(12:53) N.Kaeding 41 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,16,6,2012 -20120910_SD@OAK,4,12,53,SD,OAK,,,23,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,19,6,2012 -20120910_SD@OAK,4,12,48,OAK,SD,1,10,80,(12:48) C.Palmer pass incomplete deep left to R.Streater [C.Liuget].,6,19,2012 -20120910_SD@OAK,4,12,40,OAK,SD,2,10,80,(12:40) (Shotgun) C.Palmer pass deep left to D.Heyward-Bey to OAK 41 for 21 yards (A.Cason).,6,19,2012 -20120910_SD@OAK,4,12,2,OAK,SD,1,10,59,(12:02) (Shotgun) C.Palmer sacked at OAK 34 for -7 yards (D.Butler).,6,19,2012 -20120910_SD@OAK,4,11,34,OAK,SD,2,17,66,(11:34) (Shotgun) C.Palmer pass short middle to B.Myers to SD 40 for 26 yards (E.Weddle).,6,19,2012 -20120910_SD@OAK,4,10,52,OAK,SD,1,10,40,(10:52) C.Palmer pass incomplete deep middle to D.Heyward-Bey (Q.Jammer).,6,19,2012 -20120910_SD@OAK,4,10,47,OAK,SD,2,10,40,(10:47) (Shotgun) D.McFadden left end to OAK 49 for -11 yards (M.Gilchrist).,6,19,2012 -20120910_SD@OAK,4,10,4,OAK,SD,3,21,51,(10:04) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,6,19,2012 -20120910_SD@OAK,4,9,58,OAK,SD,4,21,58,(9:58) S.Lechler Aborted. T.Goethel FUMBLES at OAK 37 touched at OAK 37 recovered by OAK-D.Ausberry at OAK 42. D.Ausberry to OAK 42 for no gain (J.Battle).,6,19,2012 -20120910_SD@OAK,4,9,52,SD,OAK,1,10,42,(9:52) C.Brinkley left tackle to OAK 42 for no gain (M.Shaughnessy).,19,6,2012 -20120910_SD@OAK,4,9,13,SD,OAK,2,10,42,(9:13) E.Royal left end to OAK 41 for 1 yard (M.Shaughnessy).,19,6,2012 -20120910_SD@OAK,4,8,36,SD,OAK,3,9,41,(8:36) (Shotgun) P.Rivers pass deep left to M.Floyd to OAK 16 for 25 yards (T.Branch).,19,6,2012 -20120910_SD@OAK,4,7,47,SD,OAK,1,10,16,(7:47) C.Brinkley left end to OAK 21 for -5 yards (D.Tollefson R.Seymour).,19,6,2012 -20120910_SD@OAK,4,7,2,SD,OAK,2,15,21,(7:02) P.Rivers pass short left to L.McClain to OAK 19 for 2 yards (P.Wheeler). PENALTY on SD-N.Hardwick Illegal Block Above the Waist 10 yards enforced at OAK 19.,19,6,2012 -20120910_SD@OAK,4,6,36,SD,OAK,2,23,29,(6:36) (Shotgun) R.Brown up the middle to OAK 25 for 4 yards (M.Burris).,19,6,2012 -20120910_SD@OAK,4,5,53,SD,OAK,3,19,25,(5:53) R.Brown left tackle to OAK 27 for -2 yards (T.Kelly D.Tollefson).,19,6,2012 -20120910_SD@OAK,4,5,12,SD,OAK,4,21,27,(5:12) N.Kaeding 45 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,19,6,2012 -20120910_SD@OAK,4,5,12,SD,OAK,,,27,N.Kaeding kicks 70 yards from SD 35 to OAK -5. T.Jones Touchback.,22,6,2012 -20120910_SD@OAK,4,5,6,OAK,SD,1,10,80,(5:06) (Shotgun) C.Palmer sacked at OAK 11 for -9 yards (S.Phillips).,6,22,2012 -20120910_SD@OAK,4,4,40,OAK,SD,2,19,89,(4:40) (Shotgun) C.Palmer pass short right to M.Reece to OAK 16 for 5 yards (D.Butler).,6,22,2012 -20120910_SD@OAK,4,4,13,OAK,SD,3,10,80,(4:13) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 36 for 16 yards (J.Johnson).,6,22,2012 -20120910_SD@OAK,4,3,48,OAK,SD,1,10,64,(3:48) (No Huddle Shotgun) C.Palmer pass incomplete short left to R.Streater.,6,22,2012 -20120910_SD@OAK,4,3,43,OAK,SD,2,10,64,(3:43) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 37 for 1 yard (D.Williams).,6,22,2012 -20120910_SD@OAK,4,3,19,OAK,SD,3,9,63,(3:19) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to OAK 42 for 5 yards (D.Williams).,6,22,2012 -20120910_SD@OAK,4,2,51,OAK,SD,4,4,58,(2:51) C.Palmer pass incomplete short middle to D.Heyward-Bey. PENALTY on SD-A.Cason Defensive Pass Interference 8 yards enforced at OAK 42 - No Play.,6,22,2012 -20120910_SD@OAK,4,2,47,OAK,SD,1,10,50,(2:47) (Shotgun) C.Palmer pass deep right to D.Hagan to SD 33 for 17 yards (M.Gilchrist).,6,22,2012 -20120910_SD@OAK,4,2,18,OAK,SD,1,10,33,(2:18) (No Huddle Shotgun) C.Palmer sacked at SD 38 for -5 yards (S.Phillips).,6,22,2012 -20120910_SD@OAK,4,2,0,OAK,SD,2,15,38,(2:00) (Shotgun) C.Palmer pass short middle to B.Myers to SD 30 for 8 yards (E.Weddle).,6,22,2012 -20120910_SD@OAK,4,1,33,OAK,SD,3,7,30,(1:33) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to SD 26 for 4 yards (E.Weddle) [K.Reyes].,6,22,2012 -20120910_SD@OAK,4,1,24,OAK,SD,4,3,26,(1:24) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan [M.Ingram]. PENALTY on SD-M.Ingram Roughing the Passer 13 yards enforced at SD 26 - No Play.,6,22,2012 -20120910_SD@OAK,4,1,20,OAK,SD,1,10,13,(1:20) C.Palmer pass short middle to B.Myers to SD 2 for 11 yards (A.Bigby).,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,1,2,2,(:57) (No Huddle) C.Palmer pass short right to R.Streater for 2 yards TOUCHDOWN.,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,,,2,TWO-POINT CONVERSION ATTEMPT. C.Palmer pass to R.Streater is complete. ATTEMPT SUCCEEDS.,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,,,2,S.Janikowski kicks onside 23 yards from OAK 35 to SD 42. M.Ingram (didn't try to advance) to SD 42 for no gain.,14,22,2012 -20120910_SD@OAK,4,0,54,SD,OAK,1,10,58,(:54) L.McClain up the middle to SD 46 for 4 yards (M.Burris).,22,14,2012 -20120910_SD@OAK,4,0,50,SD,OAK,2,6,54,(:50) L.McClain up the middle to SD 47 for 1 yard (Team).,22,14,2012 -20120910_SD@OAK,4,0,46,SD,OAK,3,5,53,(:46) P.Rivers kneels to SD 45 for -2 yards.,22,14,2012 -20120910_SD@OAK,4,0,40,SD,OAK,4,7,55,(:40) (Run formation) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at SD 45 - No Play.,22,14,2012 -20120910_SD@OAK,4,0,3,SD,OAK,4,12,60,(:03) M.Scifres punts 55 yards to OAK 5 Center-M.Windt downed by SD.,22,14,2012 -20120910_SD@OAK,4,0,3,SD,OAK,,,60,                      ,22,14,2012 -20120913_CHI@GB,1,0,0,CHI,GB,,,60,R.Gould kicks 69 yards from CHI 35 to GB -4. R.Cobb to GB 17 for 21 yards (S.McManis).,0,0,2012 -20120913_CHI@GB,1,59,56,GB,CHI,1,10,83,(14:56) C.Benson right end to GB 19 for 2 yards (S.Paea).,0,0,2012 -20120913_CHI@GB,1,59,27,GB,CHI,2,8,81,(14:27) (No Huddle Shotgun) C.Benson left guard to GB 26 for 7 yards (B.Urlacher N.Roach).,0,0,2012 -20120913_CHI@GB,1,58,49,GB,CHI,3,1,74,(13:49) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson (T.Jennings).,0,0,2012 -20120913_CHI@GB,1,58,45,GB,CHI,4,1,74,(13:45) T.Masthay punts 56 yards to CHI 18 Center-B.Goode fair catch by D.Hester.,0,0,2012 -20120913_CHI@GB,1,58,37,CHI,GB,1,10,82,(13:37) J.Cutler sacked at CHI 5 for -13 yards (D.Smith).,0,0,2012 -20120913_CHI@GB,1,58,0,CHI,GB,2,23,95,(13:00) M.Forte right tackle to CHI 9 for 4 yards (J.Worthy).,0,0,2012 -20120913_CHI@GB,1,57,18,CHI,GB,3,19,91,(12:18) (Shotgun) M.Forte up the middle to CHI 17 for 8 yards (C.Matthews; D.Smith).,0,0,2012 -20120913_CHI@GB,1,56,35,CHI,GB,4,11,83,(11:35) A.Podlesh punts 41 yards to GB 42 Center-P.Mannelly. S.Shields MUFFS catch and recovers at GB 29. S.Shields to GB 29 for no gain (E.Weems; S.McManis).,0,0,2012 -20120913_CHI@GB,1,56,26,GB,CHI,1,10,71,(11:26) A.Rodgers pass short right to J.Finley to GB 45 for 16 yards (B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,56,1,GB,CHI,1,10,55,(11:01) (No Huddle) C.Benson right end to GB 46 for 1 yard (H.Melton; I.Idonije).,0,0,2012 -20120913_CHI@GB,1,55,27,GB,CHI,2,9,54,(10:27) (No Huddle Shotgun) A.Rodgers pass deep middle to J.Nelson to CHI 33 for 21 yards (C.Tillman).,0,0,2012 -20120913_CHI@GB,1,54,46,GB,CHI,1,10,33,(9:46) (No Huddle Shotgun) R.Cobb left end to CHI 26 for 7 yards (M.Wright J.Peppers). PENALTY on GB-T.Lang Offensive Holding 10 yards enforced at CHI 33 - No Play.,0,0,2012 -20120913_CHI@GB,1,54,17,GB,CHI,1,20,43,(9:17) C.Benson right guard to CHI 39 for 4 yards (H.Melton B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,53,45,GB,CHI,2,16,39,(8:45) (No Huddle Shotgun) A.Rodgers sacked at CHI 49 for -10 yards (sack split by C.Wootton and S.McClellin).,0,0,2012 -20120913_CHI@GB,1,53,9,GB,CHI,3,26,49,(8:09) (No Huddle Shotgun) A.Rodgers pass incomplete short right.,0,0,2012 -20120913_CHI@GB,1,53,4,GB,CHI,4,26,49,(8:04) T.Masthay punts 32 yards to CHI 17 Center-B.Goode out of bounds.,0,0,2012 -20120913_CHI@GB,1,52,57,CHI,GB,1,10,83,(7:57) J.Cutler pass incomplete short left to K.Davis (C.Matthews).,0,0,2012 -20120913_CHI@GB,1,52,53,CHI,GB,2,10,83,(7:53) M.Forte right end to CHI 23 for 6 yards (B.Raji; C.Matthews).,0,0,2012 -20120913_CHI@GB,1,52,6,CHI,GB,3,4,77,(7:06) (Shotgun) PENALTY on CHI-J.Cutler Delay of Game 5 yards enforced at CHI 23 - No Play.,0,0,2012 -20120913_CHI@GB,1,51,43,CHI,GB,3,9,82,(6:43) (Shotgun) J.Cutler pass incomplete short middle to M.Forte.,0,0,2012 -20120913_CHI@GB,1,51,39,CHI,GB,4,9,82,(6:39) A.Podlesh punts 48 yards to GB 34 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 -20120913_CHI@GB,1,51,31,GB,CHI,1,10,66,(6:31) C.Benson left tackle to GB 41 for 7 yards (A.Okoye N.Roach).,0,0,2012 -20120913_CHI@GB,1,50,59,GB,CHI,2,3,59,(5:59) (No Huddle) C.Benson left end to GB 47 for 6 yards (A.Okoye).,0,0,2012 -20120913_CHI@GB,1,50,25,GB,CHI,1,10,53,(5:25) (No Huddle) A.Rodgers pass incomplete short right.,0,0,2012 -20120913_CHI@GB,1,50,19,GB,CHI,2,10,53,(5:19) (No Huddle) A.Rodgers pass incomplete deep right to J.Nelson.,0,0,2012 -20120913_CHI@GB,1,50,13,GB,CHI,3,10,53,(5:13) (No Huddle Shotgun) A.Rodgers sacked at GB 43 for -4 yards (J.Peppers).,0,0,2012 -20120913_CHI@GB,1,49,47,GB,CHI,4,14,57,(4:47) T.Masthay punts 57 yards to end zone Center-B.Goode Touchback.,0,0,2012 -20120913_CHI@GB,1,49,37,CHI,GB,1,10,80,(4:37) (Shotgun) J.Cutler pass incomplete deep right to K.Davis (D.Smith). PENALTY on GB-D.Smith Defensive Pass Interference 24 yards enforced at CHI 20 - No Play.,0,0,2012 -20120913_CHI@GB,1,49,32,CHI,GB,1,10,56,(4:32) (Shotgun) J.Cutler sacked at CHI 34 for -10 yards (sack split by C.Matthews and E.Walden).,0,0,2012 -20120913_CHI@GB,1,48,54,CHI,GB,2,20,66,(3:54) (Shotgun) J.Cutler pass short left to M.Forte to CHI 32 for -2 yards (A.Hawk).,0,0,2012 -20120913_CHI@GB,1,48,14,CHI,GB,3,22,68,(3:14) (Shotgun) M.Forte left tackle to CHI 39 for 7 yards (M.Burnett).,0,0,2012 -20120913_CHI@GB,1,47,42,CHI,GB,4,15,61,(2:42) A.Podlesh punts 40 yards to GB 21 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 -20120913_CHI@GB,1,47,35,GB,CHI,1,10,79,(2:35) C.Benson up the middle to GB 21 for no gain (M.Wright; L.Briggs).,0,0,2012 -20120913_CHI@GB,1,47,3,GB,CHI,2,10,79,(2:03) A.Rodgers pass short middle to C.Benson to GB 38 for 17 yards (L.Briggs).,0,0,2012 -20120913_CHI@GB,1,46,29,GB,CHI,1,10,62,(1:29) (No Huddle) A.Rodgers pass short middle to C.Benson to GB 46 for 8 yards (L.Briggs).,0,0,2012 -20120913_CHI@GB,1,45,56,GB,CHI,2,2,54,(:56) (No Huddle Shotgun) C.Benson up the middle to CHI 49 for 5 yards (N.Roach; B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,45,21,GB,CHI,1,10,49,(:21) (No Huddle) C.Benson left tackle to CHI 42 for 7 yards (N.Roach).,0,0,2012 -20120913_CHI@GB,2,45,0,GB,CHI,2,3,42,(15:00) (Shotgun) A.Rodgers pass incomplete deep middle to J.Finley.,0,0,2012 -20120913_CHI@GB,2,44,54,GB,CHI,3,3,42,(14:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones. Green Bay challenged the too many players on field ruling and the play was REVERSED. (No Huddle Shotgun) PENALTY on CHI-N.Roach Defensive 12 On-field 5 yards enforced at CHI 42 - No Play.,0,0,2012 -20120913_CHI@GB,2,44,48,GB,CHI,1,10,37,(14:48) A.Rodgers pass short right to Ja.Jones to CHI 42 for -5 yards (T.Jennings).,0,0,2012 -20120913_CHI@GB,2,44,17,GB,CHI,2,15,42,(14:17) (No Huddle Shotgun) A.Rodgers pass short left to J.Nelson to CHI 34 for 8 yards (C.Tillman).,0,0,2012 -20120913_CHI@GB,2,43,45,GB,CHI,3,7,34,(13:45) (No Huddle Shotgun) A.Rodgers pass short left to J.Kuhn to CHI 29 for 5 yards (L.Briggs; S.McClellin).,0,0,2012 -20120913_CHI@GB,2,43,1,GB,CHI,4,2,29,(13:01) M.Crosby 48 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20120913_CHI@GB,2,43,1,GB,CHI,,,29,M.Crosby kicks 66 yards from GB 35 to CHI -1. D.Hester to CHI 37 for 38 yards (J.Bush).,3,0,2012 -20120913_CHI@GB,2,42,50,CHI,GB,1,10,63,(12:50) M.Bush up the middle to CHI 44 for 7 yards (A.Hawk; D.Smith).,0,3,2012 -20120913_CHI@GB,2,42,15,CHI,GB,2,3,56,(12:15) M.Bush up the middle to CHI 46 for 2 yards (E.Walden).,0,3,2012 -20120913_CHI@GB,2,41,39,CHI,GB,3,1,54,(11:39) M.Bush right tackle to CHI 49 for 3 yards (P.Merling).,0,3,2012 -20120913_CHI@GB,2,41,0,CHI,GB,1,10,51,(11:00) M.Bush up the middle to GB 47 for 4 yards (C.Woodson; M.Burnett).,0,3,2012 -20120913_CHI@GB,2,40,21,CHI,GB,2,6,47,(10:21) (Shotgun) J.Cutler pass short left to E.Bennett to GB 37 for 10 yards (T.Williams) [M.Burnett].,0,3,2012 -20120913_CHI@GB,2,39,42,CHI,GB,1,10,37,(9:42) M.Bush left tackle to GB 38 for -1 yards (J.McMillian; R.Pickett). PENALTY on CHI-G.Carimi Unnecessary Roughness 15 yards enforced at GB 38.,0,3,2012 -20120913_CHI@GB,2,39,12,CHI,GB,2,26,53,(9:12) (Shotgun) J.Cutler sacked at CHI 40 for -7 yards (C.Matthews).,0,3,2012 -20120913_CHI@GB,2,38,35,CHI,GB,3,33,60,(8:35) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 47 for 7 yards (C.Hayward).,0,3,2012 -20120913_CHI@GB,2,38,4,CHI,GB,4,26,53,(8:04) A.Podlesh punts 53 yards to end zone Center-P.Mannelly Touchback.,0,3,2012 -20120913_CHI@GB,2,37,54,GB,CHI,1,10,80,(7:54) C.Benson right end to GB 21 for 1 yard (I.Idonije).,3,0,2012 -20120913_CHI@GB,2,37,15,GB,CHI,2,9,79,(7:15) A.Rodgers pass short middle to J.Kuhn to GB 23 for 2 yards (I.Idonije).,3,0,2012 -20120913_CHI@GB,2,36,34,GB,CHI,3,7,77,(6:34) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 43 for 20 yards (M.Wright).,3,0,2012 -20120913_CHI@GB,2,35,53,GB,CHI,1,10,57,(5:53) A.Rodgers pass short left to J.Nelson to GB 49 for 6 yards (C.Tillman).,3,0,2012 -20120913_CHI@GB,2,35,13,GB,CHI,2,4,51,(5:13) A.Rodgers pass short right to C.Benson to CHI 46 for 5 yards (L.Briggs).,3,0,2012 -20120913_CHI@GB,2,34,33,GB,CHI,1,10,46,(4:33) A.Green up the middle to CHI 44 for 2 yards (C.Wootton).,3,0,2012 -20120913_CHI@GB,2,33,56,GB,CHI,2,8,44,(3:56) C.Benson right guard to CHI 39 for 5 yards (L.Briggs).,3,0,2012 -20120913_CHI@GB,2,33,17,GB,CHI,3,3,39,(3:17) (Shotgun) R.Cobb right end to CHI 11 for 28 yards (D.Moore).,3,0,2012 -20120913_CHI@GB,2,32,33,GB,CHI,1,10,11,(2:33) (Shotgun) A.Rodgers sacked at CHI 18 for -7 yards (J.Peppers).,3,0,2012 -20120913_CHI@GB,2,32,9,GB,CHI,2,17,18,(2:09) (Shotgun) A.Rodgers sacked at CHI 27 for -9 yards (H.Melton).,3,0,2012 -20120913_CHI@GB,2,32,0,GB,CHI,3,26,27,(2:00) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,4,26,27,(1:56) T.Masthay pass short middle to T.Crabtree for 27 yards TOUCHDOWN. Field goal formation.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby kicks 72 yards from GB 35 to CHI -7. D.Hester Touchback.,10,0,2012 -20120913_CHI@GB,2,31,50,CHI,GB,1,10,80,(1:50) (Shotgun) PENALTY on CHI-J.Webb False Start 5 yards enforced at CHI 20 - No Play.,0,10,2012 -20120913_CHI@GB,2,31,50,CHI,GB,1,15,85,(1:50) (Shotgun) J.Cutler pass incomplete short left to E.Bennett.,0,10,2012 -20120913_CHI@GB,2,31,45,CHI,GB,2,15,85,(1:45) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 37 for 22 yards (M.Burnett C.Hayward).,0,10,2012 -20120913_CHI@GB,2,31,18,CHI,GB,1,10,63,(1:18) (No Huddle Shotgun) J.Cutler pass incomplete deep right to A.Jeffery (M.Burnett).,0,10,2012 -20120913_CHI@GB,2,31,13,CHI,GB,2,10,63,(1:13) (Shotgun) J.Cutler pass short middle intended for E.Bennett INTERCEPTED by T.Williams at CHI 48. T.Williams to CHI 48 for no gain (E.Bennett). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,10,2012 -20120913_CHI@GB,2,31,7,GB,CHI,1,10,48,(1:07) (Shotgun) A.Rodgers pass short right to J.Nelson to CHI 40 for 8 yards (L.Briggs).,10,0,2012 -20120913_CHI@GB,2,30,58,GB,CHI,2,2,40,(:58) (Shotgun) A.Rodgers pass short right to J.Finley to CHI 39 for 1 yard (T.Jennings).,10,0,2012 -20120913_CHI@GB,2,30,36,GB,CHI,3,1,39,(:36) (No Huddle Shotgun) J.Kuhn up the middle to CHI 38 for 1 yard (B.Urlacher M.Wright). The Replay Assistant challenged the first down ruling and the play was Upheld.,10,0,2012 -20120913_CHI@GB,2,30,31,GB,CHI,1,10,38,(:31) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb. PENALTY on CHI-M.Wright Illegal Contact 5 yards enforced at CHI 38 - No Play.,10,0,2012 -20120913_CHI@GB,2,30,26,GB,CHI,1,10,33,(:26) (Shotgun) A.Rodgers pass incomplete short middle to Ja.Jones (L.Briggs).,10,0,2012 -20120913_CHI@GB,2,30,21,GB,CHI,2,10,33,(:21) (Shotgun) A.Rodgers pass short middle to J.Kuhn to CHI 17 for 16 yards (D.Moore C.Conte).,10,0,2012 -20120913_CHI@GB,2,30,1,GB,CHI,1,10,17,(:01) M.Crosby 35 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,10,0,2012 -20120913_CHI@GB,3,30,0,GB,CHI,,,17,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,13,0,2012 -20120913_CHI@GB,3,30,0,CHI,GB,1,10,80,(15:00) M.Forte up the middle to CHI 23 for 3 yards (B.Raji).,0,13,2012 -20120913_CHI@GB,3,29,26,CHI,GB,2,7,77,(14:26) M.Forte right end to CHI 25 for 2 yards (D.Smith; J.McMillian).,0,13,2012 -20120913_CHI@GB,3,28,47,CHI,GB,3,5,75,(13:47) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 40 for 15 yards (D.Smith C.Woodson).,0,13,2012 -20120913_CHI@GB,3,28,7,CHI,GB,1,10,60,(13:07) M.Forte right tackle to CHI 41 for 1 yard (C.Matthews).,0,13,2012 -20120913_CHI@GB,3,27,26,CHI,GB,2,9,59,(12:26) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,0,13,2012 -20120913_CHI@GB,3,27,20,CHI,GB,3,9,59,(12:20) (Shotgun) J.Cutler pass short left to M.Forte to GB 45 for 14 yards (C.Woodson).,0,13,2012 -20120913_CHI@GB,3,26,38,CHI,GB,1,10,45,(11:38) J.Cutler pass incomplete short right to K.Davis [R.Pickett].,0,13,2012 -20120913_CHI@GB,3,26,32,CHI,GB,2,10,45,(11:32) (Shotgun) M.Bush up the middle to GB 37 for 8 yards (M.Burnett; C.Woodson).,0,13,2012 -20120913_CHI@GB,3,25,51,CHI,GB,3,2,37,(10:51) J.Cutler pass short middle to M.Spaeth to GB 33 for 4 yards (R.Pickett).,0,13,2012 -20120913_CHI@GB,3,25,13,CHI,GB,1,10,33,(10:13) M.Bush up the middle to GB 25 for 8 yards (T.Williams A.Hawk).,0,13,2012 -20120913_CHI@GB,3,24,38,CHI,GB,2,2,25,(9:38) M.Bush left tackle to GB 27 for -2 yards (J.Worthy).,0,13,2012 -20120913_CHI@GB,3,23,59,CHI,GB,3,4,27,(8:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,0,13,2012 -20120913_CHI@GB,3,23,53,CHI,GB,4,4,27,(8:53) R.Gould 45 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,13,2012 -20120913_CHI@GB,3,23,53,CHI,GB,,,27,R.Gould kicks 72 yards from CHI 35 to GB -7. R.Cobb Touchback.,3,13,2012 -20120913_CHI@GB,3,23,49,GB,CHI,1,10,80,(8:49) A.Rodgers pass short left to C.Benson pushed ob at GB 25 for 5 yards (M.Wright).,13,3,2012 -20120913_CHI@GB,3,23,23,GB,CHI,2,5,75,(8:23) C.Benson left guard to GB 29 for 4 yards (H.Melton).,13,3,2012 -20120913_CHI@GB,3,22,38,GB,CHI,3,1,71,(7:38) C.Benson right tackle to GB 29 for no gain (B.Urlacher).,13,3,2012 -20120913_CHI@GB,3,22,0,GB,CHI,4,1,71,(7:00) T.Masthay punts 54 yards to CHI 17 Center-B.Goode. D.Hester to CHI 24 for 7 yards (J.Kuhn).,13,3,2012 -20120913_CHI@GB,3,21,49,CHI,GB,1,10,76,(6:49) M.Bush right end to CHI 29 for 5 yards (D.Smith).,3,13,2012 -20120913_CHI@GB,3,21,15,CHI,GB,2,5,71,(6:15) M.Bush up the middle to CHI 33 for 4 yards (M.Burnett).,3,13,2012 -20120913_CHI@GB,3,20,35,CHI,GB,3,1,67,(5:35) M.Bush right guard to CHI 37 for 4 yards (R.Pickett; D.Smith).,3,13,2012 -20120913_CHI@GB,3,20,1,CHI,GB,1,10,63,(5:01) M.Bush right tackle to CHI 44 for 7 yards (A.Hawk).,3,13,2012 -20120913_CHI@GB,3,19,26,CHI,GB,2,3,56,(4:26) A.Allen right guard to CHI 41 for -3 yards (R.Pickett).,3,13,2012 -20120913_CHI@GB,3,18,43,CHI,GB,3,6,59,(3:43) (Shotgun) PENALTY on CHI-K.Davis False Start 5 yards enforced at CHI 41 - No Play.,3,13,2012 -20120913_CHI@GB,3,18,18,CHI,GB,3,11,64,(3:18) (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to CHI 47 for 6 yards (E.Bennett). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to GB 47 for no gain (E.Bennett).,3,13,2012 -20120913_CHI@GB,3,18,11,GB,CHI,1,10,53,(3:11) (Shotgun) A.Rodgers pass short middle to J.Nelson to CHI 38 for 15 yards (C.Conte C.Tillman).,13,3,2012 -20120913_CHI@GB,3,17,29,GB,CHI,1,10,38,(2:29) (Shotgun) C.Benson up the middle to CHI 27 for 11 yards (C.Conte; C.Tillman).,13,3,2012 -20120913_CHI@GB,3,16,51,GB,CHI,1,10,27,(1:51) C.Benson right guard to CHI 23 for 4 yards (L.Briggs; S.McClellin).,13,3,2012 -20120913_CHI@GB,3,16,8,GB,CHI,2,6,23,(1:08) (Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones.,13,3,2012 -20120913_CHI@GB,3,16,2,GB,CHI,3,6,23,(1:02) (Shotgun) A.Rodgers pass short left to J.Finley to CHI 19 for 4 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-C.Tillman at CHI 19. C.Tillman to CHI 20 for 1 yard (J.Finley).,13,3,2012 -20120913_CHI@GB,3,15,53,CHI,GB,1,10,80,(:53) M.Bush up the middle to CHI 23 for 3 yards (M.Burnett A.Hawk).,3,13,2012 -20120913_CHI@GB,3,15,12,CHI,GB,2,7,77,(:12) J.Cutler pass incomplete short middle to M.Spaeth (B.Raji).,3,13,2012 -20120913_CHI@GB,3,15,9,CHI,GB,3,7,77,(:09) (Shotgun) J.Cutler pass incomplete short right to D.Hester.,3,13,2012 -20120913_CHI@GB,3,15,4,CHI,GB,4,7,77,(:04) A.Podlesh punts 50 yards to GB 27 Center-P.Mannelly. R.Cobb pushed ob at GB 43 for 16 yards (P.Mannelly).,3,13,2012 -20120913_CHI@GB,4,15,0,GB,CHI,1,10,57,(15:00) (Shotgun) C.Benson up the middle to GB 49 for 6 yards (S.Paea; H.Melton).,13,3,2012 -20120913_CHI@GB,4,14,24,GB,CHI,2,4,51,(14:24) A.Rodgers pass short right to D.Williams to CHI 45 for 6 yards (B.Urlacher S.Paea).,13,3,2012 -20120913_CHI@GB,4,13,44,GB,CHI,1,10,45,(13:44) A.Rodgers pass short right to J.Finley to CHI 40 for 5 yards (T.Jennings).,13,3,2012 -20120913_CHI@GB,4,13,6,GB,CHI,2,5,40,(13:06) (Shotgun) A.Rodgers pass short right to Ja.Jones to CHI 36 for 4 yards (T.Jennings; M.Wright).,13,3,2012 -20120913_CHI@GB,4,12,28,GB,CHI,3,1,36,(12:28) J.Kuhn up the middle to CHI 36 for no gain (L.Briggs B.Urlacher).,13,3,2012 -20120913_CHI@GB,4,11,43,GB,CHI,4,1,36,(11:43) M.Crosby 54 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,13,3,2012 -20120913_CHI@GB,4,11,43,GB,CHI,,,36,M.Crosby kicks 58 yards from GB 35 to CHI 7. D.Hester ran ob at CHI 26 for 19 yards (D.Moses).,16,3,2012 -20120913_CHI@GB,4,11,37,CHI,GB,1,10,74,(11:37) J.Cutler pass deep left intended for B.Marshall INTERCEPTED by T.Williams [A.Hawk] at GB 36. T.Williams ran ob at CHI 26 for 38 yards (R.Garza).,3,16,2012 -20120913_CHI@GB,4,11,22,GB,CHI,1,10,26,(11:22) (Shotgun) A.Rodgers pass deep middle to D.Driver for 26 yards TOUCHDOWN.,16,3,2012 -20120913_CHI@GB,4,11,22,GB,CHI,,,26,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,16,3,2012 -20120913_CHI@GB,4,11,17,CHI,GB,1,10,65,(11:17) J.Cutler left end to CHI 47 for 12 yards (T.Williams).,3,23,2012 -20120913_CHI@GB,4,10,34,CHI,GB,1,10,53,(10:34) M.Bush left tackle to CHI 49 for 2 yards (E.Walden R.Pickett).,3,23,2012 -20120913_CHI@GB,4,10,0,CHI,GB,2,8,51,(10:00) (Shotgun) J.Cutler pass short left to E.Bennett to GB 40 for 11 yards (T.Williams).,3,23,2012 -20120913_CHI@GB,4,9,20,CHI,GB,1,10,40,(9:20) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 -20120913_CHI@GB,4,9,14,CHI,GB,2,10,40,(9:14) (Shotgun) J.Cutler pass incomplete short middle to K.Davis (D.Smith). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at GB 40 - No Play.,3,23,2012 -20120913_CHI@GB,4,9,7,CHI,GB,2,20,50,(9:07) (Shotgun) J.Cutler sacked at CHI 49 for -1 yards (M.Daniels).,3,23,2012 -20120913_CHI@GB,4,8,28,CHI,GB,3,21,51,(8:28) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 -20120913_CHI@GB,4,8,21,CHI,GB,4,21,51,(8:21) A.Podlesh punts 36 yards to GB 15 Center-P.Mannelly fair catch by R.Cobb. PENALTY on CHI-E.Weems Face Mask (15 Yards) 15 yards enforced at GB 15.,3,23,2012 -20120913_CHI@GB,4,8,14,GB,CHI,1,10,70,(8:14) A.Rodgers pass short right intended for Ja.Jones INTERCEPTED by T.Jennings at GB 44. T.Jennings to GB 24 for 20 yards (C.Benson).,23,3,2012 -20120913_CHI@GB,4,8,4,CHI,GB,1,10,24,(8:04) J.Cutler sacked at GB 31 for -7 yards (C.Matthews).,3,23,2012 -20120913_CHI@GB,4,7,24,CHI,GB,2,17,31,(7:24) (Shotgun) J.Cutler pass short left to B.Marshall ran ob at GB 21 for 10 yards (C.Woodson).,3,23,2012 -20120913_CHI@GB,4,6,59,CHI,GB,3,7,21,(6:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,4,7,21,(6:54) (Shotgun) J.Cutler pass deep middle to K.Davis for 21 yards TOUCHDOWN.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,10,23,2012 -20120913_CHI@GB,4,6,49,GB,CHI,1,10,80,(6:49) C.Benson left end to GB 19 for -1 yards (M.Wright).,23,10,2012 -20120913_CHI@GB,4,6,6,GB,CHI,2,11,81,(6:06) A.Rodgers pass incomplete short right to J.Nelson.,23,10,2012 -20120913_CHI@GB,4,6,2,GB,CHI,3,11,81,(6:02) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 45 for 26 yards (T.Jennings).,23,10,2012 -20120913_CHI@GB,4,5,19,GB,CHI,1,10,55,(5:19) C.Benson right guard to GB 45 for no gain (C.Tillman).,23,10,2012 -20120913_CHI@GB,4,4,34,GB,CHI,2,10,55,(4:34) A.Green up the middle to GB 45 for no gain (L.Briggs).,23,10,2012 -20120913_CHI@GB,4,4,27,GB,CHI,3,10,55,(4:27) (Shotgun) A.Rodgers sacked at GB 44 for -1 yards (S.McClellin).,23,10,2012 -20120913_CHI@GB,4,4,19,GB,CHI,4,11,56,(4:19) T.Masthay punts 39 yards to CHI 17 Center-B.Goode. D.Hester pushed ob at CHI 18 for 1 yard (R.Francois).,23,10,2012 -20120913_CHI@GB,4,4,9,CHI,GB,1,10,82,(4:09) J.Cutler sacked at CHI 14 for -4 yards (J.Worthy). GB-B.Raji was injured during the play.,10,23,2012 -20120913_CHI@GB,4,3,49,CHI,GB,2,14,86,(3:49) (Shotgun) J.Cutler sacked at CHI 4 for -10 yards (C.Matthews).,10,23,2012 -20120913_CHI@GB,4,3,21,CHI,GB,3,24,96,(3:21) (No Huddle Shotgun) M.Bush up the middle to CHI 15 for 11 yards (D.Smith). PENALTY on GB Defensive 12 On-field 5 yards enforced at CHI 4 - No Play.,10,23,2012 -20120913_CHI@GB,4,3,16,CHI,GB,3,19,91,(3:16) (Shotgun) J.Cutler pass short left to B.Marshall pushed ob at CHI 23 for 14 yards (C.Hayward).,10,23,2012 -20120913_CHI@GB,4,3,7,CHI,GB,4,5,77,(3:07) (Shotgun) J.Cutler pass short left intended for E.Bennett INTERCEPTED by J.McMillian at CHI 30. J.McMillian to CHI 30 for no gain (E.Bennett).,10,23,2012 -20120913_CHI@GB,4,3,0,GB,CHI,1,10,30,(3:00) C.Benson left guard to CHI 24 for 6 yards (C.Wootton).,23,10,2012 -20120913_CHI@GB,4,2,20,GB,CHI,2,4,24,(2:20) C.Benson right end to CHI 18 for 6 yards (C.Conte).,23,10,2012 -20120913_CHI@GB,4,2,0,GB,CHI,1,10,18,(2:00) A.Rodgers kneels to CHI 20 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,1,18,GB,CHI,2,12,20,(1:18) A.Rodgers kneels to CHI 22 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,0,39,GB,CHI,3,14,22,(:39) A.Rodgers kneels to CHI 24 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,0,39,GB,CHI,,,22,                      ,23,10,2012 -20120916_KC@BUF,1,0,0,BUF,KC,,,22,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,0,0,2012 -20120916_KC@BUF,1,60,0,KC,BUF,1,10,80,(15:00) M.Cassel pass short left to P.Hillis to KC 35 for 15 yards (G.Wilson; N.Barnett). Screen pass caught at KC 20.,0,0,2012 -20120916_KC@BUF,1,59,36,KC,BUF,1,10,65,(14:36) M.Cassel pass short right to D.Bowe to KC 39 for 4 yards (A.Williams). Slant pattern caught at KC 39.,0,0,2012 -20120916_KC@BUF,1,58,53,KC,BUF,2,6,61,(13:53) J.Charles right guard to KC 47 for 8 yards (G.Wilson).,0,0,2012 -20120916_KC@BUF,1,58,7,KC,BUF,1,10,53,(13:07) J.Charles left guard to KC 44 for -3 yards (M.Anderson).,0,0,2012 -20120916_KC@BUF,1,57,22,KC,BUF,2,13,56,(12:22) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver in flat at BUF 38.,0,0,2012 -20120916_KC@BUF,1,57,22,KC,BUF,3,13,56,(12:22) (Shotgun) M.Cassel pass short left to J.Charles pushed ob at BUF 46 for 10 yards (S.Gilmore). Flare pass caught at KC 41.,0,0,2012 -20120916_KC@BUF,1,56,49,KC,BUF,4,3,46,(11:49) (Run formation) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at BUF 46 - No Play.,0,0,2012 -20120916_KC@BUF,1,56,35,KC,BUF,4,8,51,(11:35) D.Colquitt punts 35 yards to BUF 16 Center-T.Gafford fair catch by L.McKelvin.,0,0,2012 -20120916_KC@BUF,1,56,35,BUF,KC,1,10,84,(11:35) C.Spiller left tackle to BUF 17 for 1 yard (G.Dorsey D.Poe).,0,0,2012 -20120916_KC@BUF,1,55,52,BUF,KC,2,9,83,(10:52) C.Spiller up the middle to BUF 25 for 8 yards (D.Johnson; J.Arenas).,0,0,2012 -20120916_KC@BUF,1,55,11,BUF,KC,3,1,75,(10:11) R.Fitzpatrick pass incomplete short right to S.Chandler. Underthrown receiver at BUF 37.,0,0,2012 -20120916_KC@BUF,1,55,6,BUF,KC,4,1,75,(10:06) B.Moorman punts 60 yards to KC 15 Center-G.Sanborn. J.Arenas to KC 30 for 15 yards (C.White).,0,0,2012 -20120916_KC@BUF,1,54,52,KC,BUF,1,10,70,(9:52) P.Hillis up the middle to KC 34 for 4 yards (M.Williams).,0,0,2012 -20120916_KC@BUF,1,54,24,KC,BUF,2,6,66,(9:24) (No Huddle) J.Charles right guard to KC 29 for -5 yards (M.Dareus K.Williams).,0,0,2012 -20120916_KC@BUF,1,53,43,KC,BUF,3,11,71,(8:43) (Shotgun) M.Cassel pass short middle to J.Charles to KC 31 for 2 yards (S.Gilmore). Screen pass caught at KC 23.,0,0,2012 -20120916_KC@BUF,1,53,4,KC,BUF,4,9,69,(8:04) D.Colquitt punts 46 yards to BUF 23 Center-T.Gafford. L.McKelvin to BUF 26 for 3 yards (B.Siler). PENALTY on BUF-D.Searcy Offensive Holding 10 yards enforced at BUF 26.,0,0,2012 -20120916_KC@BUF,1,52,53,BUF,KC,1,10,84,(7:53) C.Spiller up the middle to BUF 21 for 5 yards (D.Johnson Ty.Jackson).,0,0,2012 -20120916_KC@BUF,1,52,16,BUF,KC,2,5,79,(7:16) Wildcat formation direct snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) C.Spiller right end to BUF 28 for 7 yards (J.Arenas).,0,0,2012 -20120916_KC@BUF,1,51,46,BUF,KC,1,10,72,(6:46) C.Spiller right guard to BUF 28 for no gain (J.Houston).,0,0,2012 -20120916_KC@BUF,1,51,6,BUF,KC,2,10,72,(6:06) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 47 for 19 yards (A.Elam). Caught at BUF 30 crossing from right.,0,0,2012 -20120916_KC@BUF,1,50,21,BUF,KC,1,10,53,(5:21) T.Choice up the middle to KC 45 for 8 yards (D.Johnson T.Daniels).,0,0,2012 -20120916_KC@BUF,1,49,41,BUF,KC,2,2,45,(4:41) T.Choice right guard to KC 43 for 2 yards (T.Hali; D.Johnson).,0,0,2012 -20120916_KC@BUF,1,49,41,BUF,KC,1,10,43,(4:41) Wildcat formation (R.Fitzpatrick at WR). Direct snap to B.Smith. B.Smith left guard to KC 45 for -2 yards (D.Johnson J.Houston). PENALTY on BUF-A.Levitre Offensive Holding 10 yards enforced at KC 43 - No Play.,0,0,2012 -20120916_KC@BUF,1,48,26,BUF,KC,1,20,53,(3:26) R.Fitzpatrick pass deep right to B.Smith ran ob at KC 37 for 16 yards. Caught along sideline at KC 37.,0,0,2012 -20120916_KC@BUF,1,48,4,BUF,KC,2,4,37,(3:04) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler [J.Houston]. Dropped by receiver at KC 37. Thrown under pressure.,0,0,2012 -20120916_KC@BUF,1,47,58,BUF,KC,3,4,37,(2:58) (Shotgun) R.Fitzpatrick scrambles right tackle to KC 17 for 20 yards (B.Flowers).,0,0,2012 -20120916_KC@BUF,1,47,12,BUF,KC,1,10,17,(2:12) R.Fitzpatrick pass incomplete short right to St.Johnson. Dropped in flat at KC 8.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,2,10,17,(2:07) (Shotgun) C.Spiller left guard for 17 yards TOUCHDOWN.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,,,17,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,,,17,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,7,0,2012 -20120916_KC@BUF,1,47,1,KC,BUF,1,10,80,(2:01) P.Hillis up the middle to KC 20 for no gain (K.Sheppard N.Barnett).,0,7,2012 -20120916_KC@BUF,1,46,21,KC,BUF,2,10,80,(1:21) M.Cassel pass short right to D.McCluster to KC 24 for 4 yards (G.Wilson; B.Scott). Dump pass caught at KC 22.,0,7,2012 -20120916_KC@BUF,1,45,41,KC,BUF,3,6,76,(:41) (Shotgun) M.Cassel pass incomplete short middle to J.Charles [M.Anderson]. Overthrown receiver at KC 25.,0,7,2012 -20120916_KC@BUF,1,45,36,KC,BUF,4,6,76,(:36) D.Colquitt punts 50 yards to BUF 26 Center-T.Gafford. L.McKelvin to BUF 33 for 7 yards (E.Jones). Penalty on KC-E.Jones Face Mask (15 Yards) offsetting enforced at BUF 33. Penalty on BUF-C.McIntyre Illegal Block Above the Waist offsetting.,0,7,2012 -20120916_KC@BUF,1,45,24,BUF,KC,1,10,67,(:24) (Shotgun) C.Spiller up the middle to BUF 37 for 4 yards (Ty.Jackson G.Dorsey).,7,0,2012 -20120916_KC@BUF,2,45,0,BUF,KC,2,6,63,(15:00) (Shotgun) R.Fitzpatrick scrambles right end pushed ob at BUF 45 for 8 yards (E.Berry).,7,0,2012 -20120916_KC@BUF,2,44,34,BUF,KC,1,10,55,(14:34) Wildcat formation snap to B.Smith (R.Fitzpatrick at WR). B.Smith right tackle to 50 for 5 yards (J.Houston A.Elam).,7,0,2012 -20120916_KC@BUF,2,43,50,BUF,KC,2,5,50,(13:50) C.Spiller up the middle to KC 12 for 38 yards (A.Elam). Key block: C.Hairston.,7,0,2012 -20120916_KC@BUF,2,43,1,BUF,KC,1,10,12,(13:01) (Shotgun) R.Fitzpatrick right tackle to KC 5 for 7 yards (J.Arenas).,7,0,2012 -20120916_KC@BUF,2,42,38,BUF,KC,2,3,5,(12:38) R.Fitzpatrick pass incomplete short right to St.Johnson (B.Flowers). Receiver and breakup 4 yds. into end zone along sideline.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,3,3,5,(12:34) (Shotgun) C.Spiller left tackle for 5 yards TOUCHDOWN. Key block: C.Glenn.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,,,5,J.Potter kicks 72 yards from BUF 35 to KC -7. J.Arenas Touchback.,14,0,2012 -20120916_KC@BUF,2,42,29,KC,BUF,1,10,80,(12:29) P.Hillis right tackle to KC 24 for 4 yards (A.Moats T.McGee).,0,14,2012 -20120916_KC@BUF,2,41,47,KC,BUF,2,6,76,(11:47) M.Cassel pass short middle to D.Bowe to KC 43 for 19 yards (J.Byrd). Caught at KC 37 slanting from right.,0,14,2012 -20120916_KC@BUF,2,41,5,KC,BUF,1,10,57,(11:05) J.Charles left tackle to KC 44 for 1 yard (M.Anderson).,0,14,2012 -20120916_KC@BUF,2,40,21,KC,BUF,2,9,56,(10:21) (Shotgun) M.Cassel pass incomplete short left to D.McCluster. Overthrown receiver along sideline at BUF 47.,0,14,2012 -20120916_KC@BUF,2,40,17,KC,BUF,3,9,56,(10:17) (Shotgun) M.Cassel sacked at KC 36 for -8 yards (M.Dareus).,0,14,2012 -20120916_KC@BUF,2,39,50,KC,BUF,4,17,64,(9:50) D.Colquitt punts 40 yards to BUF 24 Center-T.Gafford out of bounds.,0,14,2012 -20120916_KC@BUF,2,39,42,BUF,KC,1,10,76,(9:42) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 25 for 1 yard (J.Houston). Screen pass caught at BUF 22.,14,0,2012 -20120916_KC@BUF,2,39,2,BUF,KC,2,9,75,(9:02) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler. Thrown wide of receiver at BUF 36 crossing from middle.,14,0,2012 -20120916_KC@BUF,2,38,57,BUF,KC,3,9,75,(8:57) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 24 for -1 yards (A.Elam). Screen pass caught at BUF 24.,14,0,2012 -20120916_KC@BUF,2,38,23,BUF,KC,4,10,76,(8:23) B.Moorman punts 51 yards to KC 25 Center-G.Sanborn out of bounds. J.Arenas caught ball out of bounds.,14,0,2012 -20120916_KC@BUF,2,38,16,KC,BUF,1,10,75,(8:16) P.Hillis right guard pushed ob at KC 31 for 6 yards (T.McGee).,0,14,2012 -20120916_KC@BUF,2,37,37,KC,BUF,2,4,69,(7:37) M.Cassel pass incomplete deep middle to T.Moeaki (T.McGee M.Anderson). Underthrown receiver at KC 47.,0,14,2012 -20120916_KC@BUF,2,37,30,KC,BUF,3,4,69,(7:30) (Shotgun) M.Cassel pass short right to D.Bowe pushed ob at KC 41 for 10 yards (T.McGee). Caught along sideline at KC 41.,0,14,2012 -20120916_KC@BUF,2,37,5,KC,BUF,1,10,59,(7:05) M.Cassel sacked at KC 38 for -3 yards (A.Carrington). FUMBLES (A.Carrington) RECOVERED by BUF-M.Williams at KC 43. M.Williams to KC 43 for no gain (E.Winston).,0,14,2012 -20120916_KC@BUF,2,36,58,BUF,KC,1,10,43,(6:58) C.Spiller up the middle to KC 42 for 1 yard (D.Johnson).,14,0,2012 -20120916_KC@BUF,2,36,15,BUF,KC,2,9,42,(6:15) C.Spiller up the middle to KC 36 for 6 yards (E.Berry R.Pitoitua).,14,0,2012 -20120916_KC@BUF,2,35,34,BUF,KC,3,3,36,(5:34) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to KC 29 for 7 yards (S.Routt). Curl pattern caught at KC 30 slanting to middle.,14,0,2012 -20120916_KC@BUF,2,34,49,BUF,KC,1,10,29,(4:49) R.Fitzpatrick pass short left to C.Spiller pushed ob at KC 2 for 27 yards (T.Hali). Screen pass caught at KC 30.,14,0,2012 -20120916_KC@BUF,2,34,21,BUF,KC,1,2,2,(4:21) D.Dickerson left end to KC 10 for -8 yards (A.Elam; E.Berry).,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,2,10,10,(3:33) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 10 yards TOUCHDOWN. Caught in flat 5 yds. into end zone.,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,,,10,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,,,10,J.Potter kicks 60 yards from BUF 35 to KC 5. J.Arenas to KC 22 for 17 yards (R.Martin A.Moats).,21,0,2012 -20120916_KC@BUF,2,33,25,KC,BUF,1,10,78,(3:25) PENALTY on KC-E.Winston False Start 5 yards enforced at KC 22 - No Play.,0,21,2012 -20120916_KC@BUF,2,33,25,KC,BUF,1,15,83,(3:25) P.Hillis up the middle to KC 25 for 8 yards (K.Sheppard N.Barnett).,0,21,2012 -20120916_KC@BUF,2,32,49,KC,BUF,2,7,75,(2:49) M.Cassel pass short right to D.Bowe ran ob at KC 34 for 9 yards. Caught along sideline at KC 34.,0,21,2012 -20120916_KC@BUF,2,32,31,KC,BUF,1,10,66,(2:31) M.Cassel pass deep middle to K.Boss to BUF 46 for 20 yards (G.Wilson). BUF-G.Wilson was injured during the play. His return is Questionable. Caught at 50. PENALTY on KC-P.Hillis Chop Block 15 yards enforced at KC 34 - No Play.,0,21,2012 -20120916_KC@BUF,2,32,10,KC,BUF,1,25,81,(2:10) M.Cassel pass short middle to J.Charles to KC 26 for 7 yards (K.Sheppard). Caught at 22 slanting from left.,0,21,2012 -20120916_KC@BUF,2,32,0,KC,BUF,2,18,74,(2:00) (Shotgun) M.Cassel pass deep middle to K.Boss to BUF 45 for 29 yards (D.Searcy). KC-K.Boss was injured during the play. Caught at 50. PENALTY on BUF-D.Searcy Unnecessary Roughness 15 yards enforced at BUF 45.,0,21,2012 -20120916_KC@BUF,2,31,43,KC,BUF,1,10,25,(1:43) S.Draughn left guard to BUF 22 for 3 yards (N.Barnett).,0,21,2012 -20120916_KC@BUF,2,31,6,KC,BUF,2,7,22,(1:06) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe. Overthrown receiver 3 yds. into end zone.,0,21,2012 -20120916_KC@BUF,2,31,1,KC,BUF,3,7,22,(1:01) (Shotgun) M.Cassel scrambles left guard to BUF 1 for 21 yards (J.Rogers; J.Byrd).,0,21,2012 -20120916_KC@BUF,2,30,49,KC,BUF,1,1,1,(:49) M.Cassel pass incomplete short left to D.Bowe (S.Gilmore). Overthrown receiver and coverage in rear corner of end zone.,0,21,2012 -20120916_KC@BUF,2,30,45,KC,BUF,2,1,1,(:45) P.Hillis up the middle to BUF 1 for no gain (N.Barnett). FUMBLES (N.Barnett) RECOVERED by BUF-B.Scott at BUF -1. Touchback. Play Challenged by Replay Assistant and Upheld.,0,21,2012 -20120916_KC@BUF,2,30,38,BUF,KC,1,10,80,(:38) R.Fitzpatrick kneels to BUF 19 for -1 yards.,21,0,2012 -20120916_KC@BUF,3,30,0,KC,BUF,,,80,R.Succop kicks 70 yards from KC 35 to BUF -5. L.McKelvin Touchback.,0,21,2012 -20120916_KC@BUF,3,30,0,BUF,KC,1,10,80,(15:00) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (S.Routt). Receiver and breakup along sideline at BUF 30.,21,0,2012 -20120916_KC@BUF,3,29,56,BUF,KC,2,10,80,(14:56) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 27 for 7 yards (E.Berry). Screen pass caught at BUF 18.,21,0,2012 -20120916_KC@BUF,3,29,14,BUF,KC,3,3,73,(14:14) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Jones (D.Poe). Underthrown receiver at BUF 39 slanting to middle. Pass tipped at line.,21,0,2012 -20120916_KC@BUF,3,29,9,BUF,KC,4,3,73,(14:09) B.Moorman punts 43 yards to KC 30 Center-G.Sanborn. J.Arenas ran ob at KC 32 for 2 yards.,21,0,2012 -20120916_KC@BUF,3,29,2,KC,BUF,1,10,68,(14:02) J.Charles up the middle to KC 34 for 2 yards (M.Williams).,0,21,2012 -20120916_KC@BUF,3,28,26,KC,BUF,2,8,66,(13:26) M.Cassel pass incomplete short left to D.Bowe (M.Williams S.Gilmore). Underthrown receiver in coverage (S.Gilmore) near sideline at KC 41. Pass tipped at line (M.Williams).,0,21,2012 -20120916_KC@BUF,3,28,20,KC,BUF,3,8,66,(13:20) (Shotgun) M.Cassel pass incomplete short right to T.Moeaki. Thrown wide of receiver in flat at KC 37.,0,21,2012 -20120916_KC@BUF,3,28,13,KC,BUF,4,8,66,(13:13) D.Colquitt punts 66 yards to end zone Center-T.Gafford Touchback. Kick into end zone.,0,21,2012 -20120916_KC@BUF,3,28,6,BUF,KC,1,10,95,(13:06) Wildcat snap to B.Smith (R.Fitzpatrick at WR). B.Smith FUMBLES (Aborted) at BUF 15 and recovers at BUF 5. B.Smith to BUF 5 for no gain (T.Hali).,21,0,2012 -20120916_KC@BUF,3,27,29,BUF,KC,2,25,95,(12:29) C.Spiller right guard to BUF 12 for 7 yards (Ty.Jackson J.Houston).,21,0,2012 -20120916_KC@BUF,3,26,56,BUF,KC,3,18,88,(11:56) C.Spiller up the middle to BUF 18 for 6 yards (D.Johnson).,21,0,2012 -20120916_KC@BUF,3,26,16,BUF,KC,4,12,82,(11:16) B.Moorman punts 43 yards to KC 39 Center-G.Sanborn. J.Arenas to BUF 38 for 23 yards (N.Bradham).,21,0,2012 -20120916_KC@BUF,3,26,5,KC,BUF,1,10,38,(11:05) M.Cassel pass incomplete deep left to J.Baldwin. Overthrown receiver in coverage at BUF 3.,0,21,2012 -20120916_KC@BUF,3,26,2,KC,BUF,2,10,38,(11:02) M.Cassel pass short left to D.McCluster to BUF 28 for 10 yards (S.Gilmore). Penalty on BUF Defensive 12 On-field declined. WR screen caught at BUF 40.,0,21,2012 -20120916_KC@BUF,3,25,18,KC,BUF,1,10,28,(10:18) (Shotgun) M.Cassel pass short left to J.Baldwin to BUF 18 for 10 yards (S.Gilmore). Caught along sideline at BUF 18.,0,21,2012 -20120916_KC@BUF,3,24,37,KC,BUF,1,10,18,(9:37) (Shotgun) M.Cassel pass short middle to D.McCluster to BUF 12 for 6 yards (A.Williams). Caught at BUF 13 crossing from right.,0,21,2012 -20120916_KC@BUF,3,23,53,KC,BUF,2,4,12,(8:53) J.Charles left tackle to BUF 12 for no gain (S.Gilmore).,0,21,2012 -20120916_KC@BUF,3,23,10,KC,BUF,3,4,12,(8:10) M.Cassel sacked at BUF 15 for -3 yards (K.Williams).,0,21,2012 -20120916_KC@BUF,3,22,36,KC,BUF,4,7,15,(7:36) R.Succop 33 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,21,2012 -20120916_KC@BUF,3,22,36,KC,BUF,,,15,R.Succop kicks 73 yards from KC 35 to BUF -8. L.McKelvin Touchback.,3,21,2012 -20120916_KC@BUF,3,22,32,BUF,KC,1,10,80,(7:32) C.Spiller right tackle pushed ob at BUF 22 for 2 yards (J.Belcher). PENALTY on BUF-L.Smith Offensive Holding 10 yards enforced at BUF 20 - No Play.,21,3,2012 -20120916_KC@BUF,3,22,4,BUF,KC,1,20,90,(7:04) R.Fitzpatrick pass short right to S.Chandler pushed ob at KC 47 for 43 yards (A.Elam). Flat pass caught at BUF 21.,21,3,2012 -20120916_KC@BUF,3,21,30,BUF,KC,1,10,47,(6:30) C.Spiller right tackle to KC 49 for -2 yards (J.Houston).,21,3,2012 -20120916_KC@BUF,3,20,49,BUF,KC,2,12,49,(5:49) R.Fitzpatrick pass incomplete short left to D.Jones. Thrown wide of receiver along sideline at KC 38.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,3,12,49,(5:45) (Shotgun) R.Fitzpatrick pass short right to St.Johnson for 49 yards TOUCHDOWN. Caught in flat at KC 42 crossing to middle. Cut back from left at KC20 to end zone.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,,,49,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,,,49,J.Potter kicks 59 yards from BUF 35 to KC 6. J.Arenas to KC 29 for 23 yards (D.Searcy).,28,3,2012 -20120916_KC@BUF,3,20,29,KC,BUF,1,10,71,(5:29) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 41 for 12 yards (J.Byrd). Caught at KC 39 slanting from left.,3,28,2012 -20120916_KC@BUF,3,19,52,KC,BUF,1,10,59,(4:52) M.Cassel pass incomplete short middle to P.Hillis. Overthrown under pressure PENALTY on KC-M.Cassel Intentional Grounding 8 yards enforced at KC 41.,3,28,2012 -20120916_KC@BUF,3,19,47,KC,BUF,2,18,67,(4:47) (Shotgun) M.Cassel pass incomplete deep right to J.Baldwin. Overthrown receiver along sideline at BUF 37. Penalty on KC-E.Winston Offensive Holding declined.,3,28,2012 -20120916_KC@BUF,3,19,40,KC,BUF,3,18,67,(4:40) (Shotgun) M.Cassel pass short middle to P.Hillis to KC 43 for 10 yards (N.Barnett J.Byrd). Dump pass caught at KC 32.,3,28,2012 -20120916_KC@BUF,3,19,5,KC,BUF,4,8,57,(4:05) D.Colquitt punts 45 yards to BUF 12 Center-T.Gafford. L.McKelvin for 88 yards TOUCHDOWN.,3,28,2012 -20120916_KC@BUF,3,19,5,BUF,KC,,,57,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,28,3,2012 -20120916_KC@BUF,3,19,5,BUF,KC,,,57,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,35,3,2012 -20120916_KC@BUF,3,18,45,KC,BUF,1,10,80,(3:45) P.Hillis up the middle to KC 23 for 3 yards (M.Anderson).,3,35,2012 -20120916_KC@BUF,3,18,9,KC,BUF,2,7,77,(3:09) M.Cassel sacked at KC 13 for -10 yards (K.Sheppard).,3,35,2012 -20120916_KC@BUF,3,17,32,KC,BUF,3,17,87,(2:32) (Shotgun) P.Hillis right tackle to KC 31 for 18 yards (J.Byrd; T.McGee).,3,35,2012 -20120916_KC@BUF,3,16,46,KC,BUF,1,10,69,(1:46) M.Cassel pass incomplete deep left to J.Baldwin (S.Gilmore). Receiver and coverage along sideline at BUF 35.,3,35,2012 -20120916_KC@BUF,3,16,39,KC,BUF,2,10,69,(1:39) S.Draughn up the middle to BUF 44 for 25 yards (G.Wilson).,3,35,2012 -20120916_KC@BUF,3,15,51,KC,BUF,1,10,44,(:51) M.Cassel pass short middle to D.Bowe to BUF 30 for 14 yards (G.Wilson). Caught at BUF 38 crossing from right.,3,35,2012 -20120916_KC@BUF,3,15,51,KC,BUF,1,10,30,(:51) M.Cassel sacked at BUF 38 for -8 yards (K.Williams).,3,35,2012 -20120916_KC@BUF,4,15,0,KC,BUF,2,18,38,(15:00) M.Cassel scrambles up the middle to BUF 34 for 4 yards (Sp.Johnson).,3,35,2012 -20120916_KC@BUF,4,14,16,KC,BUF,3,14,34,(14:16) (Shotgun) M.Cassel pass incomplete short left to S.Draughn. Thrown away under pressure from C.Kelsay.,3,35,2012 -20120916_KC@BUF,4,14,9,KC,BUF,4,14,34,(14:09) D.Colquitt punts 31 yards to BUF 3 Center-T.Gafford downed by KC-S.Draughn.,3,35,2012 -20120916_KC@BUF,4,14,1,BUF,KC,1,10,97,(14:01) T.Choice left guard to BUF 4 for 1 yard (D.Poe).,35,3,2012 -20120916_KC@BUF,4,13,21,BUF,KC,2,9,96,(13:21) T.Choice right tackle to BUF 10 for 6 yards (T.Hali R.Pitoitua).,35,3,2012 -20120916_KC@BUF,4,12,38,BUF,KC,3,3,90,(12:38) (Shotgun) T.Choice up the middle to BUF 16 for 6 yards (R.Pitoitua A.Elam).,35,3,2012 -20120916_KC@BUF,4,11,55,BUF,KC,1,10,84,(11:55) (Shotgun) T.Choice up the middle to BUF 25 for 9 yards (D.Johnson).,35,3,2012 -20120916_KC@BUF,4,11,11,BUF,KC,2,1,75,(11:11) (Shotgun) C.Spiller up the middle to BUF 45 for 20 yards (A.Elam). C.Spiller bounced off to left soon after crossing line.,35,3,2012 -20120916_KC@BUF,4,10,21,BUF,KC,1,10,55,(10:21) Wildcat formation snap to J.White (R.Fitzpatrick at WR). T.Choice left tackle pushed ob at BUF 47 for 2 yards (S.Routt).,35,3,2012 -20120916_KC@BUF,4,9,37,BUF,KC,2,8,53,(9:37) T.Choice up the middle to 50 for 3 yards (D.Poe J.Belcher).,35,3,2012 -20120916_KC@BUF,4,8,54,BUF,KC,3,5,50,(8:54) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Choice (T.Hartman). Receiver and coverage at KC 47.,35,3,2012 -20120916_KC@BUF,4,8,46,BUF,KC,4,5,50,(8:46) B.Moorman punts 50 yards to end zone Center-G.Sanborn Touchback. Kick through end zone.,35,3,2012 -20120916_KC@BUF,4,8,39,KC,BUF,1,10,80,(8:39) S.Draughn left guard pushed ob at KC 21 for 1 yard (J.Byrd).,3,35,2012 -20120916_KC@BUF,4,8,7,KC,BUF,2,9,79,(8:07) S.Draughn up the middle to KC 30 for 9 yards (A.Moats).,3,35,2012 -20120916_KC@BUF,4,7,37,KC,BUF,1,10,70,(7:37) (No Huddle Shotgun) M.Cassel pass short right to D.Bowe to KC 41 for 11 yards (A.Williams). Caught near sideline at KC 40.,3,35,2012 -20120916_KC@BUF,4,6,57,KC,BUF,1,10,59,(6:57) (Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 33 for 26 yards (S.Gilmore). Caught near sideline at BUF 40.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,1,10,33,(6:32) (No Huddle Shotgun) M.Cassel pass deep right to D.Bowe for 33 yards TOUCHDOWN. Caught along sideline in coverage at BUF 5.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop kicks 50 yards from KC 35 to BUF 15. B.Smith pushed ob at BUF 20 for 5 yards (T.Hartman).,10,35,2012 -20120916_KC@BUF,4,6,23,BUF,KC,1,10,80,(6:23) T.Thigpen in at QB. (Shotgun) J.White right guard to BUF 24 for 4 yards (A.Elam G.Dorsey).,35,10,2012 -20120916_KC@BUF,4,5,36,BUF,KC,2,6,76,(5:36) (Shotgun) J.White up the middle to BUF 24 for no gain (D.Johnson).,35,10,2012 -20120916_KC@BUF,4,4,54,BUF,KC,3,6,76,(4:54) (Shotgun) J.White up the middle to BUF 29 for 5 yards (D.Johnson Ty.Jackson).,35,10,2012 -20120916_KC@BUF,4,4,9,BUF,KC,4,1,71,(4:09) B.Moorman punts 54 yards to KC 17 Center-G.Sanborn out of bounds. S.Breaston caught ball out of bounds.,35,10,2012 -20120916_KC@BUF,4,4,1,KC,BUF,1,10,83,(4:01) (Shotgun) P.Hillis right guard to KC 34 for 17 yards (D.Searcy).,10,35,2012 -20120916_KC@BUF,4,3,27,KC,BUF,1,10,66,(3:27) (Shotgun) P.Hillis right guard to KC 38 for 4 yards (D.Searcy; N.Bradham).,10,35,2012 -20120916_KC@BUF,4,2,54,KC,BUF,2,6,62,(2:54) (No Huddle Shotgun) M.Cassel pass incomplete short right to D.Bowe (A.Williams). Receiver and coverage along sideline at BUF 49.,10,35,2012 -20120916_KC@BUF,4,2,49,KC,BUF,3,6,62,(2:49) (Shotgun) M.Cassel pass short right to S.Draughn to BUF 39 for 23 yards (C.White). Screen pass caught at KC 34.,10,35,2012 -20120916_KC@BUF,4,2,15,KC,BUF,1,10,39,(2:15) (No Huddle Shotgun) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver along sideline at BUF 13.,10,35,2012 -20120916_KC@BUF,4,2,11,KC,BUF,2,10,39,(2:11) (Shotgun) M.Cassel pass short middle to T.Moeaki to BUF 30 for 9 yards (J.Byrd). Caught at BUF 30.,10,35,2012 -20120916_KC@BUF,4,2,0,KC,BUF,3,1,30,(2:00) P.Hillis left tackle to BUF 28 for 2 yards (C.White).,10,35,2012 -20120916_KC@BUF,4,1,29,KC,BUF,1,10,28,(1:29) (No Huddle Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 2 for 26 yards (S.Gilmore). BUF-S.Gilmore was injured during the play. Caught in coverage at BUF 5. S.Gilmore walks off.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,1,2,2,(1:14) (Shotgun) M.Cassel pass short left to D.Bowe for 2 yards TOUCHDOWN. Caught 5 yds. into end zone along sideline.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop kicks 65 yards from KC 35 to end zone Touchback. Kick through end zone.,17,35,2012 -20120916_KC@BUF,4,1,10,BUF,KC,1,10,80,(1:10) T.Thigpen kneels to BUF 19 for -1 yards.,35,17,2012 -20120916_KC@BUF,4,1,7,BUF,KC,2,11,81,(1:07) J.White left guard to BUF 21 for 2 yards (J.Powe).,35,17,2012 -20120916_KC@BUF,4,1,0,BUF,KC,3,9,79,(1:00) J.White up the middle to BUF 21 for no gain (E.Jones).,35,17,2012 -20120916_KC@BUF,4,0,50,BUF,KC,4,9,79,(:50) B.Moorman punts 48 yards to KC 31 Center-G.Sanborn. S.Breaston MUFFS catch and recovers at KC 31. S.Breaston to BUF 48 for 21 yards (N.Bradham).,35,17,2012 -20120916_KC@BUF,4,0,35,KC,BUF,1,10,48,(:35) (Shotgun) M.Cassel pass incomplete deep middle to T.Moeaki. Thrown behind receiver at BUF 30.,17,35,2012 -20120916_KC@BUF,4,0,30,KC,BUF,2,10,48,(:30) (No Huddle Shotgun) S.Draughn right guard to BUF 30 for 18 yards (T.McGee).,17,35,2012 -20120916_KC@BUF,4,0,14,KC,BUF,1,10,30,(:14) (No Huddle) M.Cassel spiked the ball to stop the clock.,17,35,2012 -20120916_KC@BUF,4,0,12,KC,BUF,2,10,30,(:12) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe (G.Wilson). Receiver and coverage along sideline at goal line.,17,35,2012 -20120916_KC@BUF,4,0,5,KC,BUF,3,10,30,(:05) (Shotgun) M.Cassel pass deep middle intended for S.Breaston INTERCEPTED by J.Byrd at BUF -9. Touchback.,17,35,2012 -20120916_KC@BUF,4,0,5,KC,BUF,,,30,                      ,17,35,2012 -20120916_NO@CAR,1,0,0,CAR,NO,,,30,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 -20120916_NO@CAR,1,60,0,NO,CAR,1,10,80,(15:00) P.Thomas left guard to NO 22 for 2 yards (J.Anderson).,0,0,2012 -20120916_NO@CAR,1,59,34,NO,CAR,2,8,78,(14:34) (Shotgun) D.Brees pass short right to D.Sproles to NO 27 for 5 yards (C.Munnerlyn; J.Beason).,0,0,2012 -20120916_NO@CAR,1,58,56,NO,CAR,3,3,73,(13:56) (Shotgun) D.Brees pass short right to D.Sproles to NO 45 for 18 yards (H.Nakamura).,0,0,2012 -20120916_NO@CAR,1,58,35,NO,CAR,1,10,55,(13:35) M.Ingram right tackle to NO 49 for 4 yards (C.Gamble).,0,0,2012 -20120916_NO@CAR,1,57,58,NO,CAR,2,6,51,(12:58) (Shotgun) D.Brees pass short right to D.Sproles to CAR 48 for 3 yards (T.Davis).,0,0,2012 -20120916_NO@CAR,1,57,18,NO,CAR,3,3,48,(12:18) (Shotgun) D.Brees pass short right to D.Sproles to CAR 23 for 25 yards (H.Nakamura).,0,0,2012 -20120916_NO@CAR,1,56,46,NO,CAR,1,10,23,(11:46) M.Ingram up the middle to CAR 18 for 5 yards (A.Applewhite; L.Kuechly).,0,0,2012 -20120916_NO@CAR,1,56,24,NO,CAR,2,5,18,(11:24) M.Ingram up the middle to CAR 6 for 12 yards (H.Nakamura; C.Gamble).,0,0,2012 -20120916_NO@CAR,1,55,49,NO,CAR,1,6,6,(10:49) (Shotgun) D.Brees pass short left to D.Sproles to CAR 3 for 3 yards (C.Godfrey; J.Norman).,0,0,2012 -20120916_NO@CAR,1,55,16,NO,CAR,2,3,3,(10:16) M.Ingram left tackle to CAR 1 for 2 yards (J.Norman; J.Anderson).,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,3,1,1,(9:43) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN.,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,,,1,T.Morstead kicks 69 yards from NO 35 to CAR -4. J.Adams to CAR 20 for 24 yards (M.Wilson; J.Casillas).,7,0,2012 -20120916_NO@CAR,1,54,35,CAR,NO,1,10,80,(9:35) C.Newton pass deep left to B.LaFell ran ob at CAR 47 for 27 yards.,0,7,2012 -20120916_NO@CAR,1,54,12,CAR,NO,1,10,53,(9:12) (Shotgun) D.Williams up the middle to NO 45 for 8 yards (M.Jenkins).,0,7,2012 -20120916_NO@CAR,1,53,50,CAR,NO,2,2,45,(8:50) D.Williams up the middle to NO 42 for 3 yards (C.Jordan).,0,7,2012 -20120916_NO@CAR,1,53,10,CAR,NO,1,10,42,(8:10) (Shotgun) C.Newton sacked at CAR 49 for -9 yards (C.Jordan).,0,7,2012 -20120916_NO@CAR,1,52,34,CAR,NO,2,19,51,(7:34) (Shotgun) J.Stewart left end to CAR 47 for -2 yards (C.Lofton).,0,7,2012 -20120916_NO@CAR,1,51,55,CAR,NO,3,21,53,(6:55) (Shotgun) C.Newton scrambles left end to NO 44 for 9 yards (J.Casillas).,0,7,2012 -20120916_NO@CAR,1,51,18,CAR,NO,4,12,44,(6:18) B.Nortman punts 37 yards to NO 7 Center-J.Jansen fair catch by D.Sproles.,0,7,2012 -20120916_NO@CAR,1,51,11,NO,CAR,1,10,93,(6:11) P.Thomas up the middle to NO 9 for 2 yards (G.Hardy).,7,0,2012 -20120916_NO@CAR,1,50,41,NO,CAR,2,8,91,(5:41) D.Brees pass short right intended for D.Thomas INTERCEPTED by C.Godfrey at NO 9. C.Godfrey for 9 yards TOUCHDOWN.,7,0,2012 -20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,7,2012 -20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,7,2012 -20120916_NO@CAR,1,50,33,NO,CAR,1,10,80,(5:33) D.Brees pass deep left to L.Moore ran ob at NO 37 for 17 yards.,7,7,2012 -20120916_NO@CAR,1,50,19,NO,CAR,1,10,63,(5:19) M.Ingram left guard to NO 39 for 2 yards (D.Edwards; J.Anderson).,7,7,2012 -20120916_NO@CAR,1,49,50,NO,CAR,2,8,61,(4:50) P.Thomas up the middle to CAR 38 for 23 yards (C.Gamble).,7,7,2012 -20120916_NO@CAR,1,49,6,NO,CAR,1,10,38,(4:06) M.Ingram right end to CAR 35 for 3 yards (G.Hardy; C.Gamble).,7,7,2012 -20120916_NO@CAR,1,48,34,NO,CAR,2,7,35,(3:34) (Shotgun) D.Brees pass short left to J.Graham to CAR 24 for 11 yards (J.Beason).,7,7,2012 -20120916_NO@CAR,1,48,1,NO,CAR,1,10,24,(3:01) D.Brees pass short left to J.Graham to CAR 10 for 14 yards (C.Godfrey).,7,7,2012 -20120916_NO@CAR,1,47,34,NO,CAR,1,10,10,(2:34) M.Ingram up the middle to CAR 8 for 2 yards (G.Hardy; L.Kuechly).,7,7,2012 -20120916_NO@CAR,1,47,1,NO,CAR,2,8,8,(2:01) (Shotgun) D.Brees pass short right to L.Moore to CAR 3 for 5 yards (J.Beason). PENALTY on CAR-G.Hardy Defensive Offside 4 yards enforced at CAR 8 - No Play.,7,7,2012 -20120916_NO@CAR,1,46,40,NO,CAR,2,4,4,(1:40) (Shotgun) D.Brees pass incomplete short right to L.Moore.,7,7,2012 -20120916_NO@CAR,1,46,36,NO,CAR,3,4,4,(1:36) (Shotgun) D.Brees pass incomplete short left to J.Graham.,7,7,2012 -20120916_NO@CAR,1,46,30,NO,CAR,4,4,4,(1:30) G.Hartley 22 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,7,2012 -20120916_NO@CAR,1,46,30,NO,CAR,,,4,T.Morstead kicks 69 yards from NO 35 to CAR -4. J.Adams to CAR 20 for 24 yards (M.Wilson).,10,7,2012 -20120916_NO@CAR,1,46,20,CAR,NO,1,10,80,(1:20) (Shotgun) C.Newton right end to NO 40 for 40 yards (R.Harper).,7,10,2012 -20120916_NO@CAR,1,45,51,CAR,NO,1,10,40,(:51) D.Williams left tackle to NO 36 for 4 yards (M.Jenkins).,7,10,2012 -20120916_NO@CAR,1,45,6,CAR,NO,2,6,36,(:06) (Shotgun) C.Newton pass short left to M.Tolbert to NO 33 for 3 yards (S.Shanle).,7,10,2012 -20120916_NO@CAR,2,45,0,CAR,NO,3,4,33,(15:00) (Shotgun) C.Newton right end to NO 26 for 7 yards (J.Greer).,7,10,2012 -20120916_NO@CAR,2,44,47,CAR,NO,1,10,26,(14:47) (No Huddle Shotgun) C.Newton pass short left to S.Smith to NO 23 for 3 yards (C.Lofton; P.Robinson).,7,10,2012 -20120916_NO@CAR,2,44,13,CAR,NO,2,7,23,(14:13) (Shotgun) D.Williams up the middle to NO 13 for 10 yards (R.Harper; W.Smith).,7,10,2012 -20120916_NO@CAR,2,43,33,CAR,NO,1,10,13,(13:33) (Shotgun) J.Stewart up the middle to NO 5 for 8 yards (C.Lofton; M.Jenkins).,7,10,2012 -20120916_NO@CAR,2,43,5,CAR,NO,2,2,5,(13:05) (No Huddle Shotgun) J.Stewart up the middle to NO 5 for no gain (W.Smith).,7,10,2012 -20120916_NO@CAR,2,42,25,CAR,NO,3,2,5,(12:25) (Shotgun) C.Newton scrambles left end to NO 4 for 1 yard (B.Bunkley; C.White).,7,10,2012 -20120916_NO@CAR,2,41,53,NO,CAR,4,1,8,(11:53) C.Newton FUMBLES (Aborted) at NO 8 RECOVERED by NO-J.Casillas at NO 8. J.Casillas to NO 8 for no gain (S.Smith).,10,7,2012 -20120916_NO@CAR,2,41,44,NO,CAR,1,10,92,(11:44) P.Thomas up the middle to NO 12 for 4 yards (J.Anderson; L.Kuechly).,10,7,2012 -20120916_NO@CAR,2,41,13,NO,CAR,2,6,88,(11:13) D.Brees pass incomplete deep left to L.Moore.,10,7,2012 -20120916_NO@CAR,2,41,9,NO,CAR,3,6,88,(11:09) (Shotgun) D.Brees pass short left to J.Graham to NO 25 for 13 yards (J.Beason).,10,7,2012 -20120916_NO@CAR,2,40,48,NO,CAR,1,10,75,(10:48) M.Ingram right guard to NO 34 for 9 yards (C.Godfrey).,10,7,2012 -20120916_NO@CAR,2,40,3,NO,CAR,2,1,66,(10:03) (Shotgun) D.Brees pass short middle to D.Sproles to NO 45 for 11 yards (C.Godfrey; J.Beason).,10,7,2012 -20120916_NO@CAR,2,39,29,NO,CAR,1,10,55,(9:29) D.Brees pass short left to J.Morgan to 50 for 5 yards (H.Nakamura).,10,7,2012 -20120916_NO@CAR,2,38,51,NO,CAR,2,5,50,(8:51) (Shotgun) D.Brees pass short right to P.Thomas to CAR 41 for 9 yards (T.Davis; C.Gamble).,10,7,2012 -20120916_NO@CAR,2,38,22,NO,CAR,1,10,41,(8:22) M.Ingram up the middle to CAR 39 for 2 yards (J.Anderson; C.Johnson).,10,7,2012 -20120916_NO@CAR,2,37,43,NO,CAR,2,8,39,(7:43) D.Brees pass short right to D.Sproles to CAR 35 for 4 yards (C.Gamble).,10,7,2012 -20120916_NO@CAR,2,37,17,NO,CAR,3,4,35,(7:17) (Shotgun) D.Brees pass incomplete short middle to L.Moore (F.Alexander).,10,7,2012 -20120916_NO@CAR,2,37,13,NO,CAR,4,4,35,(7:13) G.Hartley 53 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,10,7,2012 -20120916_NO@CAR,2,37,13,NO,CAR,,,35,T.Morstead kicks 63 yards from NO 35 to CAR 2. J.Adams to CAR 26 for 24 yards (R.Bush).,13,7,2012 -20120916_NO@CAR,2,37,1,CAR,NO,1,10,74,(7:01) (Shotgun) C.Newton pass short right to B.LaFell ran ob at CAR 38 for 12 yards.,7,13,2012 -20120916_NO@CAR,2,36,35,CAR,NO,1,10,62,(6:35) (Shotgun) C.Newton right end to CAR 47 for 9 yards (C.Lofton). PENALTY on CAR-B.Bell Offensive Holding 10 yards enforced at CAR 39.,7,13,2012 -20120916_NO@CAR,2,36,14,CAR,NO,1,19,71,(6:14) (Shotgun) C.Newton left guard to CAR 33 for 4 yards (C.Jordan).,7,13,2012 -20120916_NO@CAR,2,35,28,CAR,NO,2,15,67,(5:28) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,7,13,2012 -20120916_NO@CAR,2,35,24,CAR,NO,3,15,67,(5:24) (Shotgun) C.Newton pass deep left to S.Smith to NO 32 for 35 yards (P.Robinson).,7,13,2012 -20120916_NO@CAR,2,34,38,CAR,NO,1,10,32,(4:38) (Shotgun) J.Stewart right end to NO 28 for 4 yards (C.Lofton).,7,13,2012 -20120916_NO@CAR,2,34,23,CAR,NO,2,6,28,(4:23) (No Huddle Shotgun) C.Newton pass short left to B.LaFell to NO 17 for 11 yards (C.Lofton; C.White).,7,13,2012 -20120916_NO@CAR,2,33,41,CAR,NO,1,10,17,(3:41) (Shotgun) C.Newton pass short left to J.Stewart for 17 yards TOUCHDOWN.,7,13,2012 -20120916_NO@CAR,2,33,41,CAR,NO,,,17,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,13,2012 -20120916_NO@CAR,2,33,41,CAR,NO,,,17,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,14,13,2012 -20120916_NO@CAR,2,33,33,NO,CAR,1,10,80,(3:33) D.Brees pass short middle to P.Thomas to NO 24 for 4 yards (F.Alexander; J.Beason).,13,14,2012 -20120916_NO@CAR,2,32,55,NO,CAR,2,6,76,(2:55) (Shotgun) D.Brees pass incomplete short left to P.Thomas [A.Applewhite].,13,14,2012 -20120916_NO@CAR,2,32,49,NO,CAR,3,6,76,(2:49) (Shotgun) D.Brees pass incomplete short right.,13,14,2012 -20120916_NO@CAR,2,32,42,NO,CAR,4,6,76,(2:42) T.Morstead punts 48 yards to CAR 28 Center-J.Drescher. J.Adams to CAR 42 for 14 yards (J.Murphy).,13,14,2012 -20120916_NO@CAR,2,32,31,CAR,NO,1,10,58,(2:31) (Shotgun) B.LaFell right end to NO 33 for 25 yards (M.Jenkins). End around,14,13,2012 -20120916_NO@CAR,2,32,0,CAR,NO,1,10,33,(2:00) (Shotgun) C.Newton pass incomplete short right to G.Olsen [A.Hicks].,14,13,2012 -20120916_NO@CAR,2,31,55,CAR,NO,2,10,33,(1:55) (Shotgun) C.Newton pass incomplete deep right to G.Olsen.,14,13,2012 -20120916_NO@CAR,2,31,51,CAR,NO,3,10,33,(1:51) (Shotgun) C.Newton pass deep left to B.LaFell ran ob at NO 14 for 19 yards.,14,13,2012 -20120916_NO@CAR,2,31,45,CAR,NO,1,10,14,(1:45) (Shotgun) J.Stewart up the middle to NO 7 for 7 yards (S.Ellis).,14,13,2012 -20120916_NO@CAR,2,31,3,CAR,NO,2,3,7,(1:03) (Shotgun) C.Newton pass short right to B.LaFell to NO 6 for 1 yard (C.White).,14,13,2012 -20120916_NO@CAR,2,30,22,CAR,NO,3,2,6,(:22) (Shotgun) C.Newton up the middle to NO 2 for 4 yards (C.Jordan; J.Galette).,14,13,2012 -20120916_NO@CAR,2,30,14,CAR,NO,1,2,2,(:14) (Shotgun) M.Tolbert up the middle for 2 yards TOUCHDOWN.,14,13,2012 -20120916_NO@CAR,2,30,14,CAR,NO,,,2,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,13,2012 -20120916_NO@CAR,2,30,14,CAR,NO,,,2,J.Medlock kicks 43 yards from CAR 35 to NO 22. J.Galette to NO 24 for 2 yards (J.Thomas). PENALTY on CAR-K.Pilares Unnecessary Roughness 15 yards enforced at NO 24.,21,13,2012 -20120916_NO@CAR,2,30,5,NO,CAR,1,10,61,(:05) D.Brees kneels to NO 38 for -1 yards.,13,21,2012 -20120916_NO@CAR,3,30,0,NO,CAR,,,61,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,13,21,2012 -20120916_NO@CAR,3,30,0,CAR,NO,1,10,80,(15:00) D.Williams left tackle to CAR 22 for 2 yards (D.Hawthorne).,21,13,2012 -20120916_NO@CAR,3,29,26,CAR,NO,2,8,78,(14:26) C.Newton pass short right to G.Olsen to CAR 35 for 13 yards (R.Harper).,21,13,2012 -20120916_NO@CAR,3,28,48,CAR,NO,1,10,65,(13:48) (Shotgun) J.Stewart left guard to CAR 36 for 1 yard (C.Lofton).,21,13,2012 -20120916_NO@CAR,3,28,11,CAR,NO,2,9,64,(13:11) (Shotgun) C.Newton pass incomplete deep left to S.Smith (P.Robinson).,21,13,2012 -20120916_NO@CAR,3,28,5,CAR,NO,3,9,64,(13:05) (Shotgun) C.Newton pass incomplete short left.,21,13,2012 -20120916_NO@CAR,3,28,5,CAR,NO,4,9,64,(13:05) (Punt formation) PENALTY on CAR-B.Nortman Delay of Game 5 yards enforced at CAR 36 - No Play.,21,13,2012 -20120916_NO@CAR,3,27,56,CAR,NO,4,14,69,(12:56) B.Nortman punts 58 yards to NO 11 Center-J.Jansen. D.Sproles to NO 27 for 16 yards (C.Jones). CAR-H.Nakamura was injured during the play. His return is Probable.,21,13,2012 -20120916_NO@CAR,3,27,44,NO,CAR,1,10,73,(12:44) M.Ingram right guard to NO 28 for 1 yard (J.Anderson).,13,21,2012 -20120916_NO@CAR,3,27,15,NO,CAR,2,9,72,(12:15) (Shotgun) D.Brees pass short right to D.Sproles to NO 35 for 7 yards (C.Godfrey).,13,21,2012 -20120916_NO@CAR,3,26,36,NO,CAR,3,2,65,(11:36) (Shotgun) D.Brees pass incomplete short left to M.Colston.,13,21,2012 -20120916_NO@CAR,3,26,30,NO,CAR,4,2,65,(11:30) T.Morstead punts 65 yards to end zone Center-J.Drescher Touchback.,13,21,2012 -20120916_NO@CAR,3,26,21,CAR,NO,1,10,80,(11:21) (Shotgun) C.Newton pass deep right to B.LaFell pushed ob at CAR 40 for 20 yards (C.White).,21,13,2012 -20120916_NO@CAR,3,25,56,CAR,NO,1,10,60,(10:56) (Shotgun) C.Newton left end to CAR 40 for no gain (M.Jenkins).,21,13,2012 -20120916_NO@CAR,3,25,14,CAR,NO,2,10,60,(10:14) (Shotgun) J.Stewart right end to NO 44 for 16 yards (C.White).,21,13,2012 -20120916_NO@CAR,3,24,36,CAR,NO,1,10,44,(9:36) (Shotgun) D.Williams left end pushed ob at NO 17 for 27 yards (M.Jenkins).,21,13,2012 -20120916_NO@CAR,3,24,8,CAR,NO,1,10,17,(9:08) (Shotgun) D.Williams right end to NO 16 for 1 yard (M.Jenkins).,21,13,2012 -20120916_NO@CAR,3,23,28,CAR,NO,2,9,16,(8:28) (Shotgun) C.Newton pass incomplete short left to S.Smith. CAR-S.Smith was injured during the play. His return is Probable. PENALTY on NO-P.Robinson Defensive Pass Interference 13 yards enforced at NO 16 - No Play.,21,13,2012 -20120916_NO@CAR,3,23,21,CAR,NO,1,3,3,(8:21) (Shotgun) D.Williams up the middle for 3 yards TOUCHDOWN.,21,13,2012 -20120916_NO@CAR,3,23,21,CAR,NO,,,3,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,21,13,2012 -20120916_NO@CAR,3,23,21,CAR,NO,,,3,J.Medlock kicks 70 yards from CAR 35 to NO -5. D.Sproles pushed ob at NO 33 for 38 yards (C.Munnerlyn).,28,13,2012 -20120916_NO@CAR,3,23,10,NO,CAR,1,10,67,(8:10) (Shotgun) D.Brees pass short left to P.Thomas to NO 45 for 12 yards (J.Anderson; C.Godfrey).,13,28,2012 -20120916_NO@CAR,3,22,55,NO,CAR,1,10,55,(7:55) P.Thomas left tackle to CAR 44 for 11 yards (J.Norman).,13,28,2012 -20120916_NO@CAR,3,22,21,NO,CAR,1,10,44,(7:21) M.Ingram up the middle to CAR 44 for no gain (J.Norman).,13,28,2012 -20120916_NO@CAR,3,21,48,NO,CAR,2,10,44,(6:48) D.Brees pass short right to C.Roby to CAR 35 for 9 yards (C.Johnson).,13,28,2012 -20120916_NO@CAR,3,21,21,NO,CAR,3,1,35,(6:21) (No Huddle) M.Ingram up the middle to CAR 33 for 2 yards (J.Beason; J.Anderson).,13,28,2012 -20120916_NO@CAR,3,20,56,NO,CAR,1,10,33,(5:56) D.Brees pass incomplete short middle to P.Thomas.,13,28,2012 -20120916_NO@CAR,3,20,51,NO,CAR,2,10,33,(5:51) P.Thomas up the middle to CAR 28 for 5 yards (C.Godfrey; J.Beason).,13,28,2012 -20120916_NO@CAR,3,20,8,NO,CAR,3,5,28,(5:08) (Shotgun) D.Brees pass incomplete short middle [G.Hardy]. PENALTY on NO-D.Brees Intentional Grounding 10 yards enforced at CAR 28.,13,28,2012 -20120916_NO@CAR,3,20,0,NO,CAR,4,15,38,(5:00) T.Morstead punts 35 yards to CAR 3 Center-J.Drescher downed by NO-C.Roby.,13,28,2012 -20120916_NO@CAR,3,19,52,CAR,NO,1,10,97,(4:52) J.Stewart left end to CAR 6 for 3 yards (P.Robinson).,28,13,2012 -20120916_NO@CAR,3,19,16,CAR,NO,2,7,94,(4:16) J.Stewart left guard to CAR 9 for 3 yards (C.Lofton; M.Jenkins).,28,13,2012 -20120916_NO@CAR,3,18,38,CAR,NO,3,4,91,(3:38) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 29 for 20 yards (C.Lofton).,28,13,2012 -20120916_NO@CAR,3,18,8,CAR,NO,1,10,71,(3:08) (Shotgun) J.Stewart right tackle to CAR 37 for 8 yards (S.Ellis).,28,13,2012 -20120916_NO@CAR,3,17,28,CAR,NO,2,2,63,(2:28) (Shotgun) C.Newton right end to CAR 36 for -1 yards (J.Casillas).,28,13,2012 -20120916_NO@CAR,3,16,44,CAR,NO,3,3,64,(1:44) (Shotgun) C.Newton pass incomplete short right to B.LaFell (P.Robinson).,28,13,2012 -20120916_NO@CAR,3,16,40,CAR,NO,4,3,64,(1:40) B.Nortman punts 46 yards to NO 18 Center-J.Jansen. D.Sproles to NO 32 for 14 yards (T.Davis).,28,13,2012 -20120916_NO@CAR,3,16,28,NO,CAR,1,10,68,(1:28) M.Ingram up the middle to NO 34 for 2 yards (G.Hardy).,13,28,2012 -20120916_NO@CAR,3,15,58,NO,CAR,2,8,66,(:58) D.Brees pass short left to M.Colston to NO 44 for 10 yards (J.Norman).,13,28,2012 -20120916_NO@CAR,3,15,40,NO,CAR,1,10,56,(:40) P.Thomas up the middle to NO 48 for 4 yards (T.Keiser).,13,28,2012 -20120916_NO@CAR,3,15,4,NO,CAR,2,6,52,(:04) (Shotgun) D.Brees pass incomplete deep middle to J.Morgan (T.Davis).,13,28,2012 -20120916_NO@CAR,4,15,0,NO,CAR,3,6,52,(15:00) (Shotgun) D.Brees pass deep left to M.Colston ran ob at CAR 23 for 29 yards.,13,28,2012 -20120916_NO@CAR,4,14,39,NO,CAR,1,10,23,(14:39) M.Ingram up the middle to CAR 20 for 3 yards (D.Edwards).,13,28,2012 -20120916_NO@CAR,4,14,6,NO,CAR,2,7,20,(14:06) (Shotgun) D.Brees pass short left to P.Thomas to CAR 12 for 8 yards (J.Norman).,13,28,2012 -20120916_NO@CAR,4,13,31,NO,CAR,1,10,12,(13:31) P.Thomas left end to CAR 1 for 11 yards (C.Gamble).,13,28,2012 -20120916_NO@CAR,4,12,57,NO,CAR,1,1,1,(12:57) M.Ingram up the middle for 1 yard TOUCHDOWN.,13,28,2012 -20120916_NO@CAR,4,12,57,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,13,28,2012 -20120916_NO@CAR,4,12,57,NO,CAR,,,1,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,20,28,2012 -20120916_NO@CAR,4,12,53,CAR,NO,1,10,80,(12:53) (Shotgun) C.Newton pass deep right to S.Smith to NO 14 for 66 yards (C.White).,28,20,2012 -20120916_NO@CAR,4,12,33,CAR,NO,1,10,14,(12:33) (No Huddle Shotgun) J.Stewart up the middle to NO 11 for 3 yards (J.Casillas). CAR-B.Bell was injured during the play. His return is Probable.,28,20,2012 -20120916_NO@CAR,4,12,3,CAR,NO,2,7,11,(12:03) (Shotgun) C.Newton pass short right to K.Pilares to NO 5 for 6 yards (M.Jenkins).,28,20,2012 -20120916_NO@CAR,4,11,29,CAR,NO,3,1,5,(11:29) (No Huddle Shotgun) D.Williams up the middle to NO 4 for 1 yard (M.Jenkins).,28,20,2012 -20120916_NO@CAR,4,10,43,CAR,NO,1,4,4,(10:43) (Shotgun) D.Williams up the middle to NO 5 for -1 yards (A.Hicks; W.Smith).,28,20,2012 -20120916_NO@CAR,4,9,58,CAR,NO,2,5,5,(9:58) C.Newton left guard for 5 yards TOUCHDOWN.,28,20,2012 -20120916_NO@CAR,4,9,58,CAR,NO,,,5,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,28,20,2012 -20120916_NO@CAR,4,9,58,CAR,NO,,,5,J.Medlock kicks 70 yards from CAR 35 to NO -5. D.Sproles to NO 9 for 14 yards (K.Pilares).,35,20,2012 -20120916_NO@CAR,4,9,50,NO,CAR,1,10,91,(9:50) (Shotgun) D.Brees pass incomplete short left to J.Graham [T.Davis].,20,35,2012 -20120916_NO@CAR,4,9,46,NO,CAR,2,10,91,(9:46) D.Brees pass short left to L.Moore to NO 22 for 13 yards (J.Norman).,20,35,2012 -20120916_NO@CAR,4,9,13,NO,CAR,1,10,78,(9:13) P.Thomas up the middle ran ob at CAR 30 for 48 yards (C.Godfrey).,20,35,2012 -20120916_NO@CAR,4,8,51,NO,CAR,1,10,30,(8:51) M.Ingram left tackle to CAR 27 for 3 yards (C.Godfrey; L.Kuechly).,20,35,2012 -20120916_NO@CAR,4,8,11,NO,CAR,2,7,27,(8:11) (Shotgun) D.Brees pass short middle to D.Sproles to CAR 24 for 3 yards (R.Edwards).,20,35,2012 -20120916_NO@CAR,4,7,24,NO,CAR,3,4,24,(7:24) (Shotgun) D.Brees pass incomplete deep right to J.Graham (C.Gamble).,20,35,2012 -20120916_NO@CAR,4,7,19,NO,CAR,4,4,24,(7:19) (Shotgun) D.Brees to CAR 24 for no gain (C.Johnson). FUMBLES (C.Johnson) and recovers at CAR 33. D.Brees pass incomplete short right to J.Graham (J.Beason).,20,35,2012 -20120916_NO@CAR,4,7,7,CAR,NO,1,10,76,(7:07) D.Williams right guard to CAR 28 for 4 yards (B.Bunkley; S.Ellis).,35,20,2012 -20120916_NO@CAR,4,6,25,CAR,NO,2,6,72,(6:25) (Shotgun) D.Williams left end to CAR 32 for 4 yards (W.Smith).,35,20,2012 -20120916_NO@CAR,4,5,40,CAR,NO,3,2,68,(5:40) (Shotgun) M.Tolbert up the middle to CAR 33 for 1 yard (C.Lofton; W.Smith).,35,20,2012 -20120916_NO@CAR,4,4,58,CAR,NO,4,1,67,(4:58) B.Nortman punts 48 yards to NO 19 Center-J.Jansen downed by CAR-J.Thomas.,35,20,2012 -20120916_NO@CAR,4,4,49,NO,CAR,1,10,81,(4:49) (Shotgun) D.Brees sacked at NO 17 for -2 yards (sack split by T.Keiser and D.Edwards).,20,35,2012 -20120916_NO@CAR,4,4,23,NO,CAR,2,12,83,(4:23) (No Huddle Shotgun) D.Brees pass short middle to D.Sproles to NO 24 for 7 yards (C.Munnerlyn).,20,35,2012 -20120916_NO@CAR,4,3,58,NO,CAR,3,5,76,(3:58) (No Huddle Shotgun) D.Brees pass short middle to J.Graham to NO 30 for 6 yards (J.Norman; J.Anderson). CAR-C.Johnson was injured during the play. His return is Probable.,20,35,2012 -20120916_NO@CAR,4,3,45,NO,CAR,1,10,70,(3:45) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,20,35,2012 -20120916_NO@CAR,4,3,41,NO,CAR,2,10,70,(3:41) (Shotgun) D.Brees pass short middle to J.Graham to NO 47 for 17 yards (C.Godfrey).,20,35,2012 -20120916_NO@CAR,4,3,18,NO,CAR,1,10,53,(3:18) (No Huddle Shotgun) D.Brees pass incomplete short left to J.Graham.,20,35,2012 -20120916_NO@CAR,4,3,16,NO,CAR,2,10,53,(3:16) (Shotgun) D.Brees pass short right to D.Sproles to CAR 29 for 24 yards (C.Godfrey).,20,35,2012 -20120916_NO@CAR,4,2,47,NO,CAR,1,10,29,(2:47) (No Huddle Shotgun) D.Brees pass short middle to D.Sproles to CAR 22 for 7 yards (T.Keiser).,20,35,2012 -20120916_NO@CAR,4,2,39,NO,CAR,2,3,22,(2:39) (Shotgun) D.Brees pass short right to D.Sproles to CAR 11 for 11 yards (L.Kuechly).,20,35,2012 -20120916_NO@CAR,4,2,12,NO,CAR,1,10,11,(2:12) (No Huddle Shotgun) D.Brees pass incomplete short left to J.Morgan.,20,35,2012 -20120916_NO@CAR,4,2,6,NO,CAR,2,10,11,(2:06) (Shotgun) D.Brees pass short right to M.Colston to CAR 1 for 10 yards (H.Nakamura).,20,35,2012 -20120916_NO@CAR,4,1,59,NO,CAR,1,1,1,(1:59) D.Brees up the middle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,20,35,2012 -20120916_NO@CAR,4,1,59,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,20,35,2012 -20120916_NO@CAR,4,1,59,NO,CAR,,,1,G.Hartley kicks onside 11 yards from NO 35 to NO 46. G.Olsen (didn't try to advance) to NO 46 for no gain.,27,35,2012 -20120916_NO@CAR,4,1,53,CAR,NO,1,10,46,(1:53) D.Williams up the middle to NO 45 for 1 yard (W.Smith).,35,27,2012 -20120916_NO@CAR,4,1,48,CAR,NO,2,9,45,(1:48) D.Williams left guard to NO 43 for 2 yards (W.Smith; D.Hawthorne).,35,27,2012 -20120916_NO@CAR,4,1,43,CAR,NO,3,7,43,(1:43) (Shotgun) C.Newton up the middle to NO 40 for 3 yards (J.Casillas).,35,27,2012 -20120916_NO@CAR,4,0,54,CAR,NO,4,4,40,(:54) B.Nortman punts 40 yards to end zone Center-J.Jansen Touchback.,35,27,2012 -20120916_NO@CAR,4,0,48,NO,CAR,1,10,80,(:48) (Shotgun) D.Brees pass short middle to J.Graham to NO 29 for 9 yards (C.Munnerlyn).,27,35,2012 -20120916_NO@CAR,4,0,31,NO,CAR,2,1,71,(:31) D.Brees pass short middle intended for J.Graham INTERCEPTED by J.Beason at NO 43. J.Beason to NO 41 for 2 yards.,27,35,2012 -20120916_NO@CAR,4,0,22,CAR,NO,1,10,41,(:22) C.Newton kneels to NO 43 for -2 yards.,35,27,2012 -20120916_NO@CAR,4,0,22,CAR,NO,,,41,                      ,35,27,2012 -20120916_CLE@CIN,1,0,0,CIN,CLE,,,41,M.Nugent kicks 68 yards from CIN 35 to CLV -3. J.Cribbs to CLV 18 for 21 yards (D.Skuta).,0,0,2012 -20120916_CLE@CIN,1,59,53,CLE,CIN,1,10,82,(14:53) T.Benjamin left end pushed ob at CLV 31 for 13 yards (T.Newman). {End around},0,0,2012 -20120916_CLE@CIN,1,59,32,CLE,CIN,1,10,69,(14:32) T.Richardson up the middle to CLV 33 for 2 yards (R.Nelson; V.Rey).,0,0,2012 -20120916_CLE@CIN,1,58,59,CLE,CIN,2,8,67,(13:59) B.Weeden pass incomplete deep right to M.Massaquoi.,0,0,2012 -20120916_CLE@CIN,1,58,54,CLE,CIN,3,8,67,(13:54) B.Weeden sacked at CLV 28 for -5 yards (M.Johnson).,0,0,2012 -20120916_CLE@CIN,1,58,35,CLE,CIN,4,13,72,(13:35) R.Hodges punts 53 yards to CIN 19 Center-C.Yount. A.Jones for 81 yards TOUCHDOWN.,0,0,2012 -20120916_CLE@CIN,1,58,35,CIN,CLE,,,72,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20120916_CLE@CIN,1,58,35,CIN,CLE,,,72,M.Nugent kicks 67 yards from CIN 35 to CLV -2. J.Cribbs to CLV 36 for 38 yards (T.Newman).,7,0,2012 -20120916_CLE@CIN,1,58,6,CLE,CIN,1,10,64,(13:06) T.Richardson right end to CLV 38 for 2 yards (V.Burfict; N.Clements).,0,7,2012 -20120916_CLE@CIN,1,57,44,CLE,CIN,2,8,62,(12:44) B.Weeden pass deep middle to M.Massaquoi to CIN 43 for 19 yards (J.Miles).,0,7,2012 -20120916_CLE@CIN,1,57,6,CLE,CIN,1,10,43,(12:06) (Shotgun) B.Weeden pass incomplete deep middle to G.Little (L.Hall).,0,7,2012 -20120916_CLE@CIN,1,56,58,CLE,CIN,2,10,43,(11:58) T.Richardson left tackle to CIN 38 for 5 yards (J.Anderson).,0,7,2012 -20120916_CLE@CIN,1,56,19,CLE,CIN,3,5,38,(11:19) (Shotgun) B.Weeden pass short middle to G.Little to CIN 27 for 11 yards (N.Clements).,0,7,2012 -20120916_CLE@CIN,1,55,42,CLE,CIN,1,10,27,(10:42) B.Weeden pass incomplete deep left to B.Watson. PENALTY on CLV-S.Lauvao Offensive Holding 10 yards enforced at CIN 27 - No Play.,0,7,2012 -20120916_CLE@CIN,1,55,36,CLE,CIN,1,20,37,(10:36) T.Richardson left tackle to CIN 36 for 1 yard (D.Peko; M.Johnson).,0,7,2012 -20120916_CLE@CIN,1,54,57,CLE,CIN,2,19,36,(9:57) B.Weeden scrambles left end to CIN 32 for 4 yards (G.Atkins).,0,7,2012 -20120916_CLE@CIN,1,54,11,CLE,CIN,3,15,32,(9:11) (Shotgun) B.Weeden pass incomplete short left to J.Gordon.,0,7,2012 -20120916_CLE@CIN,1,54,6,CLE,CIN,4,15,32,(9:06) P.Dawson 50 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,7,2012 -20120916_CLE@CIN,1,54,6,CLE,CIN,,,32,P.Dawson kicks 70 yards from CLV 35 to CIN -5. B.Tate to CIN 22 for 27 yards (T.Wade). PENALTY on CIN-D.Skuta Offensive Holding 9 yards enforced at CIN 19.,3,7,2012 -20120916_CLE@CIN,1,53,57,CIN,CLE,1,10,90,(8:57) PENALTY on CIN-J.Gresham False Start 5 yards enforced at CIN 10 - No Play.,7,3,2012 -20120916_CLE@CIN,1,53,57,CIN,CLE,1,15,95,(8:57) A.Dalton pass short left to A.Binns to CIN 17 for 12 yards (B.Skrine).,7,3,2012 -20120916_CLE@CIN,1,53,17,CIN,CLE,2,3,83,(8:17) B.Green-Ellis left tackle to CIN 18 for 1 yard (F.Rucker; J.Hughes).,7,3,2012 -20120916_CLE@CIN,1,52,34,CIN,CLE,3,2,82,(7:34) (Shotgun) A.Dalton sacked at CIN 12 for -6 yards (J.Parker). PENALTY on CLV-D.Jackson Unnecessary Roughness 15 yards enforced at CIN 12.,7,3,2012 -20120916_CLE@CIN,1,52,16,CIN,CLE,1,10,73,(7:16) B.Green-Ellis left tackle to CIN 32 for 5 yards (T.Ward).,7,3,2012 -20120916_CLE@CIN,1,51,42,CIN,CLE,2,5,68,(6:42) A.Dalton pass short right to A.Binns ran ob at CIN 40 for 8 yards.,7,3,2012 -20120916_CLE@CIN,1,51,8,CIN,CLE,1,10,60,(6:08) A.Dalton sacked at CIN 40 for 0 yards (D.Jackson).,7,3,2012 -20120916_CLE@CIN,1,50,27,CIN,CLE,2,10,60,(5:27) B.Green-Ellis right tackle to CIN 44 for 4 yards (S.Fujita; D.Jackson).,7,3,2012 -20120916_CLE@CIN,1,49,47,CIN,CLE,3,6,56,(4:47) (Shotgun) A.Dalton pass short right to B.Tate to CIN 49 for 5 yards (C.Robertson).,7,3,2012 -20120916_CLE@CIN,1,49,17,CIN,CLE,4,1,51,(4:17) A.Dalton right guard to CLV 49 for 2 yards (J.Hughes).,7,3,2012 -20120916_CLE@CIN,1,48,38,CIN,CLE,1,10,49,(3:38) B.Green-Ellis left tackle to CLV 48 for 1 yard (J.Sheard).,7,3,2012 -20120916_CLE@CIN,1,47,59,CIN,CLE,2,9,48,(2:59) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,7,3,2012 -20120916_CLE@CIN,1,47,52,CIN,CLE,3,9,48,(2:52) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (J.Sheard). {Tipped at the line scrimmage},7,3,2012 -20120916_CLE@CIN,1,47,47,CIN,CLE,4,9,48,(2:47) K.Huber punts 34 yards to CLV 14 Center-C.Harris fair catch by J.Cribbs.,7,3,2012 -20120916_CLE@CIN,1,47,39,CLE,CIN,1,10,86,(2:39) T.Richardson right guard to CLV 21 for 7 yards (R.Maualuga; V.Rey).,3,7,2012 -20120916_CLE@CIN,1,47,11,CLE,CIN,2,3,79,(2:11) PENALTY on CLV-B.Watson False Start 5 yards enforced at CLV 21 - No Play.,3,7,2012 -20120916_CLE@CIN,1,46,51,CLE,CIN,2,8,84,(1:51) (Shotgun) T.Richardson up the middle to CLV 21 for 5 yards (M.Lawson).,3,7,2012 -20120916_CLE@CIN,1,46,15,CLE,CIN,3,3,79,(1:15) (Shotgun) B.Weeden pass short middle to M.Massaquoi to CLV 34 for 13 yards (T.Newman).,3,7,2012 -20120916_CLE@CIN,1,45,43,CLE,CIN,1,10,66,(:43) T.Richardson left tackle to CLV 38 for 4 yards (L.Hall; V.Burfict).,3,7,2012 -20120916_CLE@CIN,1,45,19,CLE,CIN,2,6,62,(:19) B.Weeden pass incomplete deep right to A.Smith.,3,7,2012 -20120916_CLE@CIN,1,45,1,CLE,CIN,3,6,62,(:01) (Shotgun) B.Weeden pass short middle to G.Little to CLV 43 for 5 yards (R.Maualuga; V.Rey).,3,7,2012 -20120916_CLE@CIN,2,45,0,CLE,CIN,4,1,57,(15:00) R.Hodges punts 40 yards to CIN 17 Center-C.Yount. A.Jones pushed ob at CIN 26 for 9 yards (C.Robertson).,3,7,2012 -20120916_CLE@CIN,2,44,52,CIN,CLE,1,10,74,(14:52) B.Green-Ellis right end to CIN 28 for 2 yards (E.Hagg).,7,3,2012 -20120916_CLE@CIN,2,44,15,CIN,CLE,2,8,72,(14:15) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 36 for 8 yards (C.Robertson).,7,3,2012 -20120916_CLE@CIN,2,43,34,CIN,CLE,1,10,64,(13:34) (Shotgun) A.Dalton sacked at CIN 35 for -1 yards (D.Jackson).,7,3,2012 -20120916_CLE@CIN,2,43,0,CIN,CLE,2,11,65,(13:00) (Shotgun) A.Dalton pass short left to A.Binns to CLV 45 for 20 yards (B.Skrine).,7,3,2012 -20120916_CLE@CIN,2,42,25,CIN,CLE,1,10,45,(12:25) B.Green-Ellis left tackle to CLV 41 for 4 yards (T.Ward).,7,3,2012 -20120916_CLE@CIN,2,41,48,CIN,CLE,2,6,41,(11:48) A.Dalton pass short left to A.Green to CLV 29 for 12 yards (B.Skrine).,7,3,2012 -20120916_CLE@CIN,2,41,18,CIN,CLE,1,10,29,(11:18) B.Green-Ellis left guard to CLV 10 for 19 yards (E.Hagg).,7,3,2012 -20120916_CLE@CIN,2,40,33,CIN,CLE,1,10,10,(10:33) A.Dalton pass short right to A.Green for 10 yards TOUCHDOWN.,7,3,2012 -20120916_CLE@CIN,2,40,33,CIN,CLE,,,10,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,3,2012 -20120916_CLE@CIN,2,40,33,CIN,CLE,,,10,M.Nugent kicks 68 yards from CIN 35 to CLV -3. J.Cribbs to CLV 24 for 27 yards (R.Muckelroy; G.Iloka).,14,3,2012 -20120916_CLE@CIN,2,40,21,CLE,CIN,1,10,76,(10:21) B.Weeden pass short left to G.Little to CLV 32 for 8 yards (R.Nelson; M.Lawson).,3,14,2012 -20120916_CLE@CIN,2,39,50,CLE,CIN,2,2,68,(9:50) B.Weeden pass incomplete short right to O.Marecic (J.Miles).,3,14,2012 -20120916_CLE@CIN,2,39,41,CLE,CIN,3,2,68,(9:41) B.Weeden pass short right to C.Ogbonnaya to CLV 41 for 9 yards (T.Newman; L.Hall). PENALTY on CIN-L.Hall Personal Foul 15 yards enforced at CLV 41.,3,14,2012 -20120916_CLE@CIN,2,39,5,CLE,CIN,1,10,44,(9:05) (Shotgun) PENALTY on CLV-J.Thomas False Start 5 yards enforced at CIN 44 - No Play.,3,14,2012 -20120916_CLE@CIN,2,38,51,CLE,CIN,1,15,49,(8:51) B.Weeden pass short middle to A.Smith to CIN 32 for 17 yards (J.Miles).,3,14,2012 -20120916_CLE@CIN,2,38,15,CLE,CIN,1,10,32,(8:15) T.Richardson right guard for 32 yards TOUCHDOWN.,3,14,2012 -20120916_CLE@CIN,2,38,15,CLE,CIN,,,32,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,14,2012 -20120916_CLE@CIN,2,38,15,CLE,CIN,,,32,P.Dawson kicks 73 yards from CLV 35 to CIN -8. A.Jones to CIN 23 for 31 yards (U.Young).,10,14,2012 -20120916_CLE@CIN,2,37,57,CIN,CLE,1,10,77,(7:57) A.Dalton pass deep middle to A.Binns to CIN 41 for 18 yards (D.Patterson).,14,10,2012 -20120916_CLE@CIN,2,37,19,CIN,CLE,1,10,59,(7:19) B.Green-Ellis up the middle to CIN 45 for 4 yards (I.Kitchen; T.Ward).,14,10,2012 -20120916_CLE@CIN,2,36,45,CIN,CLE,2,6,55,(6:45) B.Green-Ellis left tackle to CIN 46 for 1 yard (I.Kitchen; S.Fujita).,14,10,2012 -20120916_CLE@CIN,2,36,3,CIN,CLE,3,5,54,(6:03) (Shotgun) A.Dalton pass incomplete short middle to A.Binns (D.Jackson). PENALTY on CLV-T.Ward Neutral Zone Infraction 5 yards enforced at CIN 46 - No Play.,14,10,2012 -20120916_CLE@CIN,2,35,53,CIN,CLE,1,10,49,(5:53) A.Dalton pass incomplete deep left to M.Jones. PENALTY on CLV-B.Skrine Defensive Pass Interference 31 yards enforced at CLV 49 - No Play.,14,10,2012 -20120916_CLE@CIN,2,35,46,CIN,CLE,1,10,18,(5:46) PENALTY on CIN-A.Smith False Start 5 yards enforced at CLV 18 - No Play.,14,10,2012 -20120916_CLE@CIN,2,35,46,CIN,CLE,1,15,23,(5:46) B.Green-Ellis left guard to CLV 21 for 2 yards (C.Yount).,14,10,2012 -20120916_CLE@CIN,2,35,2,CIN,CLE,2,13,21,(5:02) (Shotgun) A.Dalton pass incomplete deep middle to A.Hawkins.,14,10,2012 -20120916_CLE@CIN,2,34,55,CIN,CLE,3,13,21,(4:55) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,14,10,2012 -20120916_CLE@CIN,2,34,49,CIN,CLE,4,13,21,(4:49) M.Nugent 39 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,10,2012 -20120916_CLE@CIN,2,34,49,CIN,CLE,,,21,M.Nugent kicks 70 yards from CIN 35 to CLV -5. J.Cribbs to CLV 19 for 24 yards (G.Iloka; T.Mays).,17,10,2012 -20120916_CLE@CIN,2,34,40,CLE,CIN,1,10,81,(4:40) T.Richardson up the middle to CLV 22 for 3 yards (R.Nelson; J.Anderson).,10,17,2012 -20120916_CLE@CIN,2,34,3,CLE,CIN,2,7,78,(4:03) B.Weeden pass incomplete short middle to G.Little (L.Hall).,10,17,2012 -20120916_CLE@CIN,2,33,54,CLE,CIN,3,7,78,(3:54) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 43 for 21 yards (T.Newman N.Clements). FUMBLES (T.Newman) RECOVERED by CIN-M.Johnson at CLV 43. M.Johnson to CLV 43 for no gain (C.Ogbonnaya).,10,17,2012 -20120916_CLE@CIN,2,33,42,CIN,CLE,1,10,43,(3:42) B.Green-Ellis right guard to CLV 39 for 4 yards (I.Kitchen; A.Rubin). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at CLV 43 - No Play.,17,10,2012 -20120916_CLE@CIN,2,33,25,CIN,CLE,1,20,53,(3:25) A.Dalton pass incomplete short right to A.Green.,17,10,2012 -20120916_CLE@CIN,2,32,51,CIN,CLE,2,20,53,(2:51) (Shotgun) A.Dalton pass short middle to J.Gresham to CLV 44 for 9 yards (C.Robertson; D.Jackson).,17,10,2012 -20120916_CLE@CIN,2,32,11,CIN,CLE,3,11,44,(2:11) (Shotgun) A.Dalton scrambles right end to CLV 41 for 3 yards (J.Parker).,17,10,2012 -20120916_CLE@CIN,2,32,0,CIN,CLE,4,8,41,(2:00) K.Huber punts 34 yards to CLV 7 Center-C.Harris downed by CIN-C.Harris.,17,10,2012 -20120916_CLE@CIN,2,31,51,CLE,CIN,1,10,93,(1:51) T.Richardson right tackle to CLV 16 for 9 yards (N.Clements; J.Miles).,10,17,2012 -20120916_CLE@CIN,2,31,23,CLE,CIN,2,1,84,(1:23) T.Richardson right guard to CLV 15 for -1 yards (D.Peko).,10,17,2012 -20120916_CLE@CIN,2,31,18,CLE,CIN,3,2,85,(1:18) B.Weeden pass deep right to M.Massaquoi pushed ob at CLV 33 for 18 yards (T.Newman).,10,17,2012 -20120916_CLE@CIN,2,30,54,CLE,CIN,1,10,67,(:54) (Shotgun) B.Weeden sacked at CLV 25 for -8 yards (V.Rey).,10,17,2012 -20120916_CLE@CIN,2,30,48,CLE,CIN,2,18,75,(:48) (Shotgun) T.Richardson left guard to CLV 35 for 10 yards (M.Johnson; R.Maualuga).,10,17,2012 -20120916_CLE@CIN,2,30,39,CLE,CIN,3,8,65,(:39) T.Richardson left end to CLV 44 for 9 yards (R.Geathers; L.Hall). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 35 - No Play.,10,17,2012 -20120916_CLE@CIN,2,30,33,CLE,CIN,3,18,75,(:33) T.Richardson right tackle to CLV 29 for 4 yards (R.Nelson; J.Anderson).,10,17,2012 -20120916_CLE@CIN,3,30,0,CLE,CIN,,,75,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,10,17,2012 -20120916_CLE@CIN,3,30,0,CIN,CLE,1,10,80,(15:00) B.Green-Ellis left tackle to CIN 23 for 3 yards (S.Fujita).,17,10,2012 -20120916_CLE@CIN,3,29,20,CIN,CLE,2,7,77,(14:20) (Shotgun) A.Dalton pass short left to A.Green ran ob at CIN 33 for 10 yards (B.Skrine).,17,10,2012 -20120916_CLE@CIN,3,28,55,CIN,CLE,1,10,67,(13:55) A.Dalton sacked at CIN 30 for -3 yards (D.Jackson).,17,10,2012 -20120916_CLE@CIN,3,28,24,CIN,CLE,2,13,70,(13:24) (Shotgun) A.Dalton pass short left to B.Tate pushed ob at CLV 48 for 22 yards (E.Hagg).,17,10,2012 -20120916_CLE@CIN,3,27,55,CIN,CLE,1,10,48,(12:55) B.Green-Ellis right tackle to CLV 44 for 4 yards (F.Rucker).,17,10,2012 -20120916_CLE@CIN,3,27,13,CIN,CLE,2,6,44,(12:13) A.Dalton pass incomplete deep right to A.Green.,17,10,2012 -20120916_CLE@CIN,3,27,5,CIN,CLE,3,6,44,(12:05) (Shotgun) A.Dalton pass deep right to B.Tate for 44 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,17,10,2012 -20120916_CLE@CIN,3,27,5,CIN,CLE,,,44,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,10,2012 -20120916_CLE@CIN,3,27,5,CIN,CLE,,,44,M.Nugent kicks 70 yards from CIN 35 to CLV -5. J.Cribbs to CLV 19 for 24 yards (V.Rey).,24,10,2012 -20120916_CLE@CIN,3,26,52,CLE,CIN,1,10,81,(11:52) B.Weeden pass short right to T.Richardson to CLV 16 for -3 yards (M.Lawson).,10,24,2012 -20120916_CLE@CIN,3,26,8,CLE,CIN,2,13,84,(11:08) B.Weeden pass incomplete deep left to M.Massaquoi.,10,24,2012 -20120916_CLE@CIN,3,26,2,CLE,CIN,3,13,84,(11:02) B.Weeden pass short right to J.Gordon to CLV 21 for 5 yards (T.Newman) [J.Anderson].,10,24,2012 -20120916_CLE@CIN,3,25,25,CLE,CIN,4,8,79,(10:25) R.Hodges punts 44 yards to CIN 35 Center-C.Yount downed by CLV-C.Yount.,10,24,2012 -20120916_CLE@CIN,3,25,13,CIN,CLE,1,10,65,(10:13) A.Dalton pass short right to A.Green pushed ob at CIN 44 for 9 yards (D.Patterson).,24,10,2012 -20120916_CLE@CIN,3,24,49,CIN,CLE,2,1,56,(9:49) B.Green-Ellis right tackle to CIN 45 for 1 yard (K.Maiava; J.Hughes). PENALTY on CIN-A.Binns Offensive Holding 10 yards enforced at CIN 44 - No Play.,24,10,2012 -20120916_CLE@CIN,3,24,27,CIN,CLE,2,11,66,(9:27) A.Dalton sacked at CIN 31 for -3 yards (J.Hughes).,24,10,2012 -20120916_CLE@CIN,3,23,44,CIN,CLE,3,14,69,(8:44) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 37 for 6 yards (D.Patterson).,24,10,2012 -20120916_CLE@CIN,3,23,3,CIN,CLE,4,8,63,(8:03) K.Huber punts 58 yards to CLV 5 Center-C.Harris. J.Cribbs to CLV 23 for 18 yards (A.Hawkins). PENALTY on CLV-T.Gipson Illegal Block Above the Waist 7 yards enforced at CLV 14. {Cribbs credited with a 9 yard return due to the penalty},24,10,2012 -20120916_CLE@CIN,3,22,51,CLE,CIN,1,10,93,(7:51) T.Richardson right end to CLV 10 for 3 yards (N.Clements).,10,24,2012 -20120916_CLE@CIN,3,22,11,CLE,CIN,2,7,90,(7:11) T.Richardson up the middle to CLV 16 for 6 yards (R.Nelson).,10,24,2012 -20120916_CLE@CIN,3,21,28,CLE,CIN,3,1,84,(6:28) B.Weeden pass short middle to A.Smith to CLV 26 for 10 yards (J.Miles).,10,24,2012 -20120916_CLE@CIN,3,20,45,CLE,CIN,1,10,74,(5:45) T.Benjamin left end ran ob at CLV 28 for 2 yards (R.Nelson).,10,24,2012 -20120916_CLE@CIN,3,20,21,CLE,CIN,2,8,72,(5:21) (Shotgun) T.Richardson left tackle to CLV 28 for no gain (R.Maualuga). PENALTY on CLV-A.Mack Offensive Holding 10 yards enforced at CLV 28 - No Play.,10,24,2012 -20120916_CLE@CIN,3,20,3,CLE,CIN,2,18,82,(5:03) (Shotgun) B.Weeden pass incomplete short left to T.Richardson [D.Still].,10,24,2012 -20120916_CLE@CIN,3,19,56,CLE,CIN,3,18,82,(4:56) (Shotgun) B.Weeden pass short right to G.Little to CLV 27 for 9 yards (T.Newman; L.Hall).,10,24,2012 -20120916_CLE@CIN,3,19,14,CLE,CIN,4,9,73,(4:14) R.Hodges punts 49 yards to CIN 24 Center-C.Yount. A.Jones to CIN 24 for no gain (J.Bademosi).,10,24,2012 -20120916_CLE@CIN,3,19,5,CIN,CLE,1,10,76,(4:05) A.Dalton pass short left to A.Green pushed ob at CIN 34 for 10 yards (B.Skrine).,24,10,2012 -20120916_CLE@CIN,3,18,45,CIN,CLE,1,10,66,(3:45) B.Green-Ellis right guard to CIN 35 for 1 yard (J.Hughes).,24,10,2012 -20120916_CLE@CIN,3,18,9,CIN,CLE,2,9,65,(3:09) A.Dalton pass short left to J.Gresham to CIN 35 for no gain (B.Skrine).,24,10,2012 -20120916_CLE@CIN,3,17,28,CIN,CLE,3,9,65,(2:28) (Shotgun) A.Dalton pass deep middle intended for A.Green INTERCEPTED by D.Jackson (D.Patterson) at CLV 43. D.Jackson to CLV 47 for 4 yards (J.Gresham). {Pass was tipped by Patterson},24,10,2012 -20120916_CLE@CIN,3,17,19,CLE,CIN,1,10,53,(2:19) T.Richardson right guard to CIN 44 for 9 yards (J.Miles; R.Maualuga).,10,24,2012 -20120916_CLE@CIN,3,16,46,CLE,CIN,2,1,44,(1:46) T.Richardson right tackle to CIN 41 for 3 yards (G.Atkins; D.Peko).,10,24,2012 -20120916_CLE@CIN,3,16,9,CLE,CIN,1,10,41,(1:09) B.Weeden pass incomplete short right. {Thrown away},10,24,2012 -20120916_CLE@CIN,3,16,1,CLE,CIN,2,10,41,(1:01) B.Weeden pass short right to M.Massaquoi to CIN 23 for 18 yards (N.Clements).,10,24,2012 -20120916_CLE@CIN,3,15,20,CLE,CIN,1,10,23,(:20) B.Weeden pass short left to T.Richardson for 23 yards TOUCHDOWN.,10,24,2012 -20120916_CLE@CIN,3,15,20,CLE,CIN,,,23,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,10,24,2012 -20120916_CLE@CIN,3,15,20,CLE,CIN,,,23,P.Dawson kicks 72 yards from CLV 35 to CIN -7. B.Tate to CIN 23 for 30 yards (C.Robertson).,17,24,2012 -20120916_CLE@CIN,4,15,0,CIN,CLE,1,10,77,(15:00) A.Dalton pass short right to A.Green to CIN 26 for 3 yards (D.Patterson).,24,17,2012 -20120916_CLE@CIN,4,14,20,CIN,CLE,2,7,74,(14:20) (Shotgun) A.Dalton pass short left to A.Binns to CIN 34 for 8 yards (B.Skrine). Penalty on CLV-D.Patterson Defensive Offside declined.,24,17,2012 -20120916_CLE@CIN,4,14,0,CIN,CLE,1,10,66,(14:00) B.Green-Ellis right guard to CIN 37 for 3 yards (J.Sheard).,24,17,2012 -20120916_CLE@CIN,4,13,15,CIN,CLE,2,7,63,(13:15) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 43 for 6 yards (C.Robertson; T.Wade).,24,17,2012 -20120916_CLE@CIN,4,12,50,CIN,CLE,3,1,57,(12:50) B.Green-Ellis right guard to 50 for 7 yards (T.Ward).,24,17,2012 -20120916_CLE@CIN,4,12,15,CIN,CLE,1,10,50,(12:15) A.Dalton sacked at CIN 40 for -10 yards (F.Rucker).,24,17,2012 -20120916_CLE@CIN,4,11,45,CIN,CLE,2,20,60,(11:45) (Shotgun) A.Dalton pass short right to B.Green-Ellis to 50 for 10 yards (D.Patterson).,24,17,2012 -20120916_CLE@CIN,4,11,1,CIN,CLE,3,10,50,(11:01) (Shotgun) A.Dalton pass short right to A.Hawkins for 50 yards TOUCHDOWN.,24,17,2012 -20120916_CLE@CIN,4,11,1,CIN,CLE,,,50,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,24,17,2012 -20120916_CLE@CIN,4,11,1,CIN,CLE,,,50,M.Nugent kicks 71 yards from CIN 35 to CLV -6. J.Cribbs Touchback.,31,17,2012 -20120916_CLE@CIN,4,10,44,CLE,CIN,1,10,80,(10:44) T.Richardson right guard to CLV 26 for 6 yards (J.Miles; R.Maualuga).,17,31,2012 -20120916_CLE@CIN,4,10,13,CLE,CIN,2,4,74,(10:13) (Shotgun) B.Weeden pass short middle to A.Smith to CLV 29 for 3 yards (N.Clements) [R.Geathers].,17,31,2012 -20120916_CLE@CIN,4,9,57,CLE,CIN,3,1,71,(9:57) B.Weeden up the middle to CLV 31 for 2 yards (R.Maualuga).,17,31,2012 -20120916_CLE@CIN,4,9,25,CLE,CIN,1,10,69,(9:25) B.Weeden pass short middle to M.Massaquoi to CIN 47 for 22 yards (J.Miles; L.Hall).,17,31,2012 -20120916_CLE@CIN,4,8,51,CLE,CIN,1,10,47,(8:51) B.Weeden pass short left to T.Richardson pushed ob at CIN 39 for 8 yards (V.Burfict).,17,31,2012 -20120916_CLE@CIN,4,8,26,CLE,CIN,2,2,39,(8:26) T.Richardson left tackle to CIN 40 for -1 yards (R.Maualuga).,17,31,2012 -20120916_CLE@CIN,4,7,44,CLE,CIN,3,3,40,(7:44) (Shotgun) B.Weeden pass short right to C.Ogbonnaya pushed ob at CIN 24 for 16 yards (V.Rey).,17,31,2012 -20120916_CLE@CIN,4,7,18,CLE,CIN,1,10,24,(7:18) (Shotgun) B.Weeden pass deep middle to G.Little for 24 yards TOUCHDOWN.,17,31,2012 -20120916_CLE@CIN,4,7,18,CLE,CIN,,,24,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,17,31,2012 -20120916_CLE@CIN,4,7,18,CLE,CIN,,,24,P.Dawson kicks 60 yards from CLV 35 to CIN 5. B.Tate to CIN 23 for 18 yards (T.Gipson).,24,31,2012 -20120916_CLE@CIN,4,7,4,CIN,CLE,1,10,77,(7:04) B.Green-Ellis left guard to CIN 28 for 5 yards (F.Rucker; K.Maiava).,31,24,2012 -20120916_CLE@CIN,4,6,38,CIN,CLE,2,5,72,(6:38) A.Dalton pass short right to A.Green to CIN 32 for 4 yards (D.Patterson).,31,24,2012 -20120916_CLE@CIN,4,5,56,CIN,CLE,3,1,68,(5:56) PENALTY on CLV-J.Hughes Defensive Offside 5 yards enforced at CIN 32 - No Play.,31,24,2012 -20120916_CLE@CIN,4,5,41,CIN,CLE,1,10,63,(5:41) B.Green-Ellis left end to CIN 39 for 2 yards (A.Rubin; J.Hughes).,31,24,2012 -20120916_CLE@CIN,4,5,3,CIN,CLE,2,8,61,(5:03) A.Dalton pass short middle to B.Green-Ellis to CLV 49 for 12 yards (S.Fujita).,31,24,2012 -20120916_CLE@CIN,4,4,25,CIN,CLE,1,10,49,(4:25) B.Green-Ellis left tackle to CLV 47 for 2 yards (T.Ward).,31,24,2012 -20120916_CLE@CIN,4,3,50,CIN,CLE,2,8,47,(3:50) (Shotgun) C.Peerman right tackle to CLV 46 for 1 yard (A.Rubin).,31,24,2012 -20120916_CLE@CIN,4,3,43,CIN,CLE,3,7,46,(3:43) (Shotgun) A.Dalton pass deep left to J.Gresham pushed ob at CLV 24 for 22 yards (T.Ward). Cleveland challenged the pass completion ruling and the play was Upheld. (Timeout #2.),31,24,2012 -20120916_CLE@CIN,4,3,35,CIN,CLE,1,10,24,(3:35) B.Green-Ellis left end to CLV 26 for -2 yards (T.Ward; J.Hughes).,31,24,2012 -20120916_CLE@CIN,4,3,28,CIN,CLE,2,12,26,(3:28) B.Green-Ellis right tackle to CLV 20 for 6 yards (E.Hagg; T.Ward).,31,24,2012 -20120916_CLE@CIN,4,2,54,CIN,CLE,3,6,20,(2:54) B.Green-Ellis right guard to CLV 19 for 1 yard (T.Ward).,31,24,2012 -20120916_CLE@CIN,4,2,14,CIN,CLE,4,5,19,(2:14) M.Nugent 37 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,31,24,2012 -20120916_CLE@CIN,4,2,14,CIN,CLE,,,19,M.Nugent kicks 69 yards from CIN 35 to CLV -4. J.Cribbs to CLV 27 for 31 yards (T.Mays).,34,24,2012 -20120916_CLE@CIN,4,2,3,CLE,CIN,1,10,73,(2:03) B.Weeden pass short right to T.Richardson to CLV 35 for 8 yards (V.Rey; R.Maualuga).,24,34,2012 -20120916_CLE@CIN,4,1,56,CLE,CIN,2,2,65,(1:56) (Shotgun) B.Weeden pass short right to C.Ogbonnaya ran ob at CLV 41 for 6 yards (T.Newman).,24,34,2012 -20120916_CLE@CIN,4,1,50,CLE,CIN,1,10,59,(1:50) (Shotgun) B.Weeden pass short right to C.Ogbonnaya pushed ob at CIN 48 for 11 yards (T.Newman). CIN-J.Anderson was injured during the play.,24,34,2012 -20120916_CLE@CIN,4,1,41,CLE,CIN,1,10,48,(1:41) (Shotgun) B.Weeden pass short middle to B.Watson to CIN 21 for 27 yards (N.Clements; L.Hall).,24,34,2012 -20120916_CLE@CIN,4,1,14,CLE,CIN,1,10,21,(1:14) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CIN 11 for 10 yards (R.Maualuga L.Hall).,24,34,2012 -20120916_CLE@CIN,4,0,50,CLE,CIN,1,10,11,(:50) (Shotgun) B.Weeden pass incomplete short right to J.Gordon.,24,34,2012 -20120916_CLE@CIN,4,0,46,CLE,CIN,2,10,11,(:46) (Shotgun) B.Weeden pass short middle to J.Cribbs to CIN 7 for 4 yards (R.Maualuga; L.Hall).,24,34,2012 -20120916_CLE@CIN,4,0,29,CLE,CIN,3,6,7,(:29) B.Weeden pass incomplete short right to J.Cribbs.,24,34,2012 -20120916_CLE@CIN,4,0,24,CLE,CIN,4,6,7,(:24) P.Dawson 25 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,24,34,2012 -20120916_CLE@CIN,4,0,24,CLE,CIN,,,7,P.Dawson kicks onside 13 yards from CLV 35 to CLV 48. A.Green (didn't try to advance) to CLV 48 for no gain (J.Cameron).,27,34,2012 -20120916_CLE@CIN,4,0,16,CIN,CLE,1,10,48,(:16) A.Dalton kneels to CLV 49 for -1 yards.,34,27,2012 -20120916_CLE@CIN,4,0,16,CIN,CLE,,,48,                      ,34,27,2012 -20120916_MIN@IND,1,0,0,IND,MIN,,,48,P.McAfee kicks 70 yards from IND 35 to MIN -5. P.Harvin to MIN 23 for 28 yards (M.Addison).,0,0,2012 -20120916_MIN@IND,1,59,55,MIN,IND,1,10,77,(14:55) (Run formation) A.Peterson right guard to MIN 28 for 5 yards (R.Mathis; J.Freeman).,0,0,2012 -20120916_MIN@IND,1,59,17,MIN,IND,2,5,72,(14:17) (Run formation) C.Ponder pass short left to P.Harvin to MIN 39 for 11 yards (V.Davis).,0,0,2012 -20120916_MIN@IND,1,58,50,MIN,IND,1,10,61,(13:50) (Run formation) C.Ponder sacked at MIN 38 for -1 yards (R.Mathis).,0,0,2012 -20120916_MIN@IND,1,58,21,MIN,IND,2,11,62,(13:21) (Run formation) A.Peterson up the middle to MIN 43 for 5 yards (A.Bethea).,0,0,2012 -20120916_MIN@IND,1,57,38,MIN,IND,3,6,57,(12:38) (Shotgun) C.Ponder pass short left to P.Harvin to IND 49 for 8 yards (V.Davis).,0,0,2012 -20120916_MIN@IND,1,57,0,MIN,IND,1,10,49,(12:00) (Run formation) A.Peterson left end pushed ob at IND 43 for 6 yards (T.Zbikowski; V.Davis).,0,0,2012 -20120916_MIN@IND,1,56,30,MIN,IND,2,4,43,(11:30) (Run formation) P.Harvin right end to 50 for -7 yards (A.Bethea).,0,0,2012 -20120916_MIN@IND,1,55,50,MIN,IND,3,11,50,(10:50) (Shotgun) C.Ponder pass short left to T.Gerhart to IND 38 for 12 yards (V.Davis).,0,0,2012 -20120916_MIN@IND,1,55,8,MIN,IND,1,10,38,(10:08) (Run formation) T.Gerhart up the middle to IND 30 for 8 yards (J.Freeman).,0,0,2012 -20120916_MIN@IND,1,54,31,MIN,IND,2,2,30,(9:31) (Run formation) A.Peterson left tackle to IND 21 for 9 yards (J.Freeman). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at IND 30 - No Play.,0,0,2012 -20120916_MIN@IND,1,54,8,MIN,IND,2,12,40,(9:08) (Shotgun) C.Ponder pass incomplete short right to P.Harvin. PENALTY on MIN-P.Loadholt Illegal Formation 5 yards enforced at IND 40 - No Play.,0,0,2012 -20120916_MIN@IND,1,54,5,MIN,IND,2,17,45,(9:05) (Run formation) A.Peterson up the middle to IND 40 for 5 yards (J.Freeman; C.Redding).,0,0,2012 -20120916_MIN@IND,1,53,30,MIN,IND,3,12,40,(8:30) (Shotgun) C.Ponder pass short right to M.Jenkins to IND 33 for 7 yards (J.Powers).,0,0,2012 -20120916_MIN@IND,1,52,53,MIN,IND,4,5,33,(7:53) B.Walsh 51 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20120916_MIN@IND,1,52,53,MIN,IND,,,33,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,3,0,2012 -20120916_MIN@IND,1,52,48,IND,MIN,1,10,80,(7:48) (Run formation) D.Brown up the middle to IND 22 for 2 yards (E.Henderson; H.Smith).,0,3,2012 -20120916_MIN@IND,1,52,11,IND,MIN,2,8,78,(7:11) (Shotgun) D.Brown left end to IND 26 for 4 yards (M.Sherels; H.Smith).,0,3,2012 -20120916_MIN@IND,1,51,24,IND,MIN,3,4,74,(6:24) (Shotgun) A.Luck scrambles up the middle to IND 33 for 7 yards (A.Winfield).,0,3,2012 -20120916_MIN@IND,1,50,43,IND,MIN,1,10,67,(5:43) PENALTY on MIN-C.Ballard Encroachment 5 yards enforced at IND 33 - No Play.,0,3,2012 -20120916_MIN@IND,1,50,28,IND,MIN,1,5,62,(5:28) (Run formation) A.Luck scrambles right end to IND 44 for 6 yards (E.Henderson).,0,3,2012 -20120916_MIN@IND,1,49,43,IND,MIN,1,10,56,(4:43) (Shotgun) A.Luck pass incomplete short left to K.Adams.,0,3,2012 -20120916_MIN@IND,1,49,38,IND,MIN,2,10,56,(4:38) (Run formation) D.Brown right end to IND 45 for 1 yard (C.Greenway).,0,3,2012 -20120916_MIN@IND,1,48,58,IND,MIN,3,9,55,(3:58) (Shotgun) A.Luck pass short right to D.Avery pushed ob at MIN 42 for 13 yards (E.Henderson).,0,3,2012 -20120916_MIN@IND,1,48,29,IND,MIN,1,10,42,(3:29) (Run formation) D.Brown up the middle to MIN 40 for 2 yards (E.Henderson). PENALTY on IND-D.Allen Personal Foul 15 yards enforced at MIN 40.,0,3,2012 -20120916_MIN@IND,1,48,4,IND,MIN,1,23,55,(3:04) (Shotgun) A.Luck pass short left to D.Avery to MIN 44 for 11 yards (H.Smith).,0,3,2012 -20120916_MIN@IND,1,47,18,IND,MIN,2,12,44,(2:18) (Run formation) A.Luck pass deep right to D.Avery to MIN 3 for 41 yards (A.Winfield).,0,3,2012 -20120916_MIN@IND,1,46,38,IND,MIN,1,3,3,(1:38) (Run formation) D.Brown left tackle to MIN 3 for no gain (C.Greenway).,0,3,2012 -20120916_MIN@IND,1,45,58,IND,MIN,2,3,3,(:58) (Run formation) A.Luck pass incomplete short right to C.Fleener.,0,3,2012 -20120916_MIN@IND,1,45,54,IND,MIN,3,3,3,(:54) (Shotgun) A.Luck pass short left to D.Allen for 3 yards TOUCHDOWN.,0,3,2012 -20120916_MIN@IND,1,45,54,IND,MIN,,,3,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 -20120916_MIN@IND,1,45,54,IND,MIN,,,3,P.McAfee kicks 72 yards from IND 35 to MIN -7. P.Harvin pushed ob at MIN 43 for 50 yards (P.McAfee).,7,3,2012 -20120916_MIN@IND,1,45,43,MIN,IND,1,10,57,(:43) (Run formation) A.Peterson right end to MIN 46 for 3 yards (J.Freeman).,3,7,2012 -20120916_MIN@IND,1,45,5,MIN,IND,2,7,54,(:05) (Run formation) P.Harvin left end pushed ob at IND 34 for 20 yards (A.Bethea).,3,7,2012 -20120916_MIN@IND,2,45,0,MIN,IND,1,10,34,(15:00) (Run formation) C.Ponder pass short right to P.Harvin to IND 26 for 8 yards (J.Powers).,3,7,2012 -20120916_MIN@IND,2,44,28,MIN,IND,2,2,26,(14:28) (Run formation) T.Gerhart up the middle to IND 25 for 1 yard (R.Mathis; D.Nevis).,3,7,2012 -20120916_MIN@IND,2,43,53,MIN,IND,3,1,25,(13:53) (Run formation) A.Peterson up the middle to IND 19 for 6 yards (R.Mathis).,3,7,2012 -20120916_MIN@IND,2,43,16,MIN,IND,1,10,19,(13:16) (Run formation) T.Gerhart right end to IND 21 for -2 yards (C.Redding; F.Moala).,3,7,2012 -20120916_MIN@IND,2,42,38,MIN,IND,2,12,21,(12:38) (Run formation) C.Ponder scrambles left end to IND 16 for 5 yards (J.Hughes).,3,7,2012 -20120916_MIN@IND,2,41,59,MIN,IND,3,7,16,(11:59) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at IND 11 for 5 yards (J.Powers).,3,7,2012 -20120916_MIN@IND,2,41,42,MIN,IND,4,2,11,(11:42) B.Walsh 29 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,7,2012 -20120916_MIN@IND,2,41,42,MIN,IND,,,11,B.Walsh kicks 68 yards from MIN 35 to IND -3. T.Hilton to IND 16 for 19 yards (J.Sanford).,6,7,2012 -20120916_MIN@IND,2,41,33,IND,MIN,1,10,84,(11:33) (Run formation) A.Luck pass short right to R.Wayne to IND 21 for 5 yards (A.Winfield).,7,6,2012 -20120916_MIN@IND,2,40,53,IND,MIN,2,5,79,(10:53) (Run formation) D.Brown up the middle to IND 23 for 2 yards (C.Greenway; E.Henderson).,7,6,2012 -20120916_MIN@IND,2,40,11,IND,MIN,3,3,77,(10:11) (Shotgun) A.Luck pass incomplete short left to R.Wayne (J.Allen).,7,6,2012 -20120916_MIN@IND,2,40,7,IND,MIN,4,3,77,(10:07) P.McAfee punts 57 yards to MIN 20 Center-M.Overton. M.Sherels pushed ob at MIN 34 for 14 yards (J.Lefeged).,7,6,2012 -20120916_MIN@IND,2,39,54,MIN,IND,1,10,66,(9:54) (Run formation) A.Peterson up the middle to MIN 40 for 6 yards (J.Freeman; D.Nevis).,6,7,2012 -20120916_MIN@IND,2,39,11,MIN,IND,2,4,60,(9:11) (Run formation) C.Ponder pass short right to P.Harvin to MIN 45 for 5 yards (J.Powers).,6,7,2012 -20120916_MIN@IND,2,38,35,MIN,IND,1,10,55,(8:35) (Run formation) A.Peterson left end pushed ob at 50 for 5 yards (A.Bethea).,6,7,2012 -20120916_MIN@IND,2,38,10,MIN,IND,2,5,50,(8:10) (Run formation) T.Gerhart up the middle to IND 44 for 6 yards (K.Conner). MIN-J.Felton was injured during the play.,6,7,2012 -20120916_MIN@IND,2,37,33,MIN,IND,1,10,44,(7:33) (Run formation) T.Gerhart up the middle to IND 42 for 2 yards (C.Redding).,6,7,2012 -20120916_MIN@IND,2,36,52,MIN,IND,2,8,42,(6:52) (Run formation) C.Ponder sacked at IND 42 for 0 yards (K.Conner).,6,7,2012 -20120916_MIN@IND,2,36,10,MIN,IND,3,8,42,(6:10) (Shotgun) C.Ponder sacked at MIN 49 for -9 yards (J.Freeman). FUMBLES (J.Freeman) RECOVERED by IND-C.Redding at MIN 48. C.Redding to MIN 48 for no gain (C.Ponder). Freeman credited with 10 sack yards.,6,7,2012 -20120916_MIN@IND,2,36,2,IND,MIN,1,10,48,(6:02) (Run formation) A.Luck pass incomplete deep right to D.Avery. PENALTY on MIN-F.Evans Defensive Offside 5 yards enforced at MIN 48 - No Play.,7,6,2012 -20120916_MIN@IND,2,35,56,IND,MIN,1,5,43,(5:56) (Shotgun) A.Luck pass incomplete short right to V.Ballard.,7,6,2012 -20120916_MIN@IND,2,35,53,IND,MIN,2,5,43,(5:53) (Run formation) V.Ballard left end pushed ob at MIN 34 for 9 yards (C.Greenway).,7,6,2012 -20120916_MIN@IND,2,35,22,IND,MIN,1,10,34,(5:22) (Run formation) D.Avery left end pushed ob at MIN 27 for 7 yards (C.Cook).,7,6,2012 -20120916_MIN@IND,2,34,49,IND,MIN,2,3,27,(4:49) (Shotgun) D.Avery left end to MIN 27 for no gain (A.Winfield; C.Ballard).,7,6,2012 -20120916_MIN@IND,2,34,4,IND,MIN,3,3,27,(4:04) (Shotgun) A.Luck pass short right to D.Avery to MIN 17 for 10 yards (C.Cook).,7,6,2012 -20120916_MIN@IND,2,33,22,IND,MIN,1,10,17,(3:22) V.Ballard left end to MIN 17 for no gain (J.Allen).,7,6,2012 -20120916_MIN@IND,2,32,39,IND,MIN,2,10,17,(2:39) (Shotgun) A.Luck pass short middle to C.Fleener to MIN 8 for 9 yards (J.Brinkley).,7,6,2012 -20120916_MIN@IND,2,32,0,IND,MIN,3,1,8,(2:00) (Run formation) D.Allen up the middle to MIN 8 for no gain (J.Brinkley; E.Henderson).,7,6,2012 -20120916_MIN@IND,2,31,54,IND,MIN,4,1,8,(1:54) A.Vinatieri 26 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,7,6,2012 -20120916_MIN@IND,2,31,54,IND,MIN,,,8,P.McAfee kicks 73 yards from IND 35 to MIN -8. M.Sherels to MIN 15 for 23 yards (J.Lefeged).,10,6,2012 -20120916_MIN@IND,2,31,46,MIN,IND,1,10,85,(1:46) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 19 for 4 yards (J.Powers).,6,10,2012 -20120916_MIN@IND,2,31,31,MIN,IND,2,6,81,(1:31) (No Huddle Shotgun) C.Ponder pass incomplete short middle to T.Gerhart (C.Redding).,6,10,2012 -20120916_MIN@IND,2,31,26,MIN,IND,3,6,81,(1:26) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,6,10,2012 -20120916_MIN@IND,2,31,23,MIN,IND,4,6,81,(1:23) C.Kluwe punts 45 yards to IND 36 Center-C.Loeffler downed by MIN.,6,10,2012 -20120916_MIN@IND,2,31,11,IND,MIN,1,10,64,(1:11) (Shotgun) A.Luck pass short middle to C.Fleener to IND 43 for 7 yards (E.Henderson; C.Greenway).,10,6,2012 -20120916_MIN@IND,2,30,50,IND,MIN,2,3,57,(:50) (No Huddle Shotgun) A.Luck pass short right to M.Moore to MIN 49 for 8 yards (J.Robinson).,10,6,2012 -20120916_MIN@IND,2,30,45,IND,MIN,1,10,49,(:45) (Shotgun) A.Luck pass incomplete short right to D.Avery (H.Smith).,10,6,2012 -20120916_MIN@IND,2,30,39,IND,MIN,2,10,49,(:39) (Shotgun) A.Luck pass short left to R.Wayne to MIN 40 for 9 yards (A.Winfield).,10,6,2012 -20120916_MIN@IND,2,30,32,IND,MIN,3,1,40,(:32) (Shotgun) D.Brown up the middle to MIN 37 for 3 yards (A.Winfield).,10,6,2012 -20120916_MIN@IND,2,30,21,IND,MIN,1,10,37,(:21) A.Luck spiked the ball to stop the clock.,10,6,2012 -20120916_MIN@IND,2,30,19,IND,MIN,2,10,37,(:19) (Shotgun) A.Luck scrambles left end pushed ob at MIN 30 for 7 yards (C.Greenway).,10,6,2012 -20120916_MIN@IND,2,30,14,IND,MIN,3,3,30,(:14) (Shotgun) A.Luck pass deep middle to R.Wayne for 30 yards TOUCHDOWN [K.Williams].,10,6,2012 -20120916_MIN@IND,2,30,14,IND,MIN,,,30,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,10,6,2012 -20120916_MIN@IND,2,30,14,IND,MIN,,,30,P.McAfee kicks 42 yards from IND 35 to MIN 23. D.Reed to MIN 33 for 10 yards (J.Gordy). PENALTY on IND-M.Harvey Offside on Free Kick 5 yards enforced at MIN 33.,17,6,2012 -20120916_MIN@IND,2,30,2,MIN,IND,1,10,62,(:02) C.Ponder kneels to MIN 37 for -1 yards.,6,17,2012 -20120916_MIN@IND,3,30,0,MIN,IND,,,62,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,6,17,2012 -20120916_MIN@IND,3,30,0,IND,MIN,1,10,80,(15:00) (Run formation) D.Brown left tackle to IND 25 for 5 yards (L.Guion; C.Cook).,17,6,2012 -20120916_MIN@IND,3,29,25,IND,MIN,2,5,75,(14:25) (Shotgun) A.Luck pass short right to T.Hilton to IND 40 for 15 yards (J.Robinson).,17,6,2012 -20120916_MIN@IND,3,28,39,IND,MIN,1,10,60,(13:39) (Run formation) D.Brown left end to IND 48 for 8 yards (C.Cook).,17,6,2012 -20120916_MIN@IND,3,28,0,IND,MIN,2,2,52,(13:00) (Run formation) D.Brown up the middle to IND 45 for -3 yards (K.Williams; C.Greenway).,17,6,2012 -20120916_MIN@IND,3,27,17,IND,MIN,3,5,55,(12:17) (Shotgun) A.Luck pass incomplete deep left to M.Moore. Penalty on IND-A.Castonzo Offensive Holding declined.,17,6,2012 -20120916_MIN@IND,3,27,11,IND,MIN,4,5,55,(12:11) P.McAfee punts 35 yards to MIN 20 Center-M.Overton. M.Sherels pushed ob at MIN 34 for 14 yards (T.Zbikowski). PENALTY on MIN-A.Sendejo Roughing the Kicker 15 yards enforced at IND 45 - No Play.,17,6,2012 -20120916_MIN@IND,3,27,0,IND,MIN,1,10,40,(12:00) (Run formation) PENALTY on IND-T.Essex False Start 5 yards enforced at MIN 40 - No Play.,17,6,2012 -20120916_MIN@IND,3,27,0,IND,MIN,1,15,45,(12:00) (Shotgun) A.Luck pass short right to D.Avery to MIN 46 for -1 yards (A.Winfield).,17,6,2012 -20120916_MIN@IND,3,26,18,IND,MIN,2,16,46,(11:18) (Shotgun) A.Luck pass incomplete short left to K.Adams (A.Winfield).,17,6,2012 -20120916_MIN@IND,3,26,14,IND,MIN,3,16,46,(11:14) (Shotgun) A.Luck scrambles left end pushed ob at MIN 45 for 1 yard (J.Allen). PENALTY on MIN-J.Allen Personal Foul 15 yards enforced at MIN 45.,17,6,2012 -20120916_MIN@IND,3,25,53,IND,MIN,1,10,30,(10:53) (Run formation) D.Brown up the middle to MIN 30 for no gain (C.Ballard).,17,6,2012 -20120916_MIN@IND,3,25,7,IND,MIN,2,10,30,(10:07) (Shotgun) D.Brown left end to MIN 15 for 15 yards (C.Cook).,17,6,2012 -20120916_MIN@IND,3,24,20,IND,MIN,1,10,15,(9:20) (Run formation) D.Brown right tackle to MIN 13 for 2 yards (M.Raymond).,17,6,2012 -20120916_MIN@IND,3,23,36,IND,MIN,2,8,13,(8:36) (Shotgun) A.Luck pass incomplete short left to C.Fleener. PENALTY on IND-S.Olsen Offensive Holding 10 yards enforced at MIN 13 - No Play.,17,6,2012 -20120916_MIN@IND,3,23,31,IND,MIN,2,18,23,(8:31) (Shotgun) A.Luck pass short left to D.Avery to MIN 19 for 4 yards (H.Smith).,17,6,2012 -20120916_MIN@IND,3,22,45,IND,MIN,3,14,19,(7:45) (Shotgun) A.Luck sacked at MIN 27 for -8 yards (E.Henderson).,17,6,2012 -20120916_MIN@IND,3,22,12,IND,MIN,4,22,27,(7:12) A.Vinatieri 45 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,17,6,2012 -20120916_MIN@IND,3,22,12,IND,MIN,,,27,P.McAfee kicks 74 yards from IND 35 to MIN -9. P.Harvin Touchback.,20,6,2012 -20120916_MIN@IND,3,22,6,MIN,IND,1,10,80,(7:06) (Run formation) A.Peterson up the middle to MIN 25 for 5 yards (C.Redding).,6,20,2012 -20120916_MIN@IND,3,21,34,MIN,IND,2,5,75,(6:34) (Run formation) C.Ponder pass short right to K.Rudolph pushed ob at MIN 40 for 15 yards (J.Powers).,6,20,2012 -20120916_MIN@IND,3,21,8,MIN,IND,1,10,60,(6:08) (Run formation) A.Peterson up the middle to MIN 41 for 1 yard (C.Redding).,6,20,2012 -20120916_MIN@IND,3,20,36,MIN,IND,2,9,59,(5:36) (Run formation) A.Peterson up the middle to MIN 43 for 2 yards (C.Redding; K.Conner).,6,20,2012 -20120916_MIN@IND,3,20,0,MIN,IND,3,7,57,(5:00) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (A.Bethea).,6,20,2012 -20120916_MIN@IND,3,19,55,MIN,IND,4,7,57,(4:55) C.Kluwe punts 55 yards to IND 2 Center-C.Loeffler downed by MIN-J.Sanford.,6,20,2012 -20120916_MIN@IND,3,19,45,IND,MIN,1,10,98,(4:45) (Run formation) V.Ballard up the middle to IND 1 for -1 yards (J.Allen).,20,6,2012 -20120916_MIN@IND,3,19,8,IND,MIN,2,11,99,(4:08) (Run formation) A.Luck pass incomplete deep right to C.Fleener.,20,6,2012 -20120916_MIN@IND,3,19,2,IND,MIN,3,11,99,(4:02) (Run formation) V.Ballard up the middle to IND 5 for 4 yards (J.Sanford).,20,6,2012 -20120916_MIN@IND,3,18,24,IND,MIN,4,7,95,(3:24) P.McAfee punts 64 yards to MIN 31 Center-M.Overton. M.Sherels pushed ob at MIN 42 for 11 yards (J.Lefeged). PENALTY on MIN-C.Ballard Illegal Block Above the Waist 10 yards enforced at MIN 42.,20,6,2012 -20120916_MIN@IND,3,18,12,MIN,IND,1,10,68,(3:12) (Run formation) C.Ponder scrambles pushed ob at MIN 35 for 3 yards (R.Mathis). PENALTY on MIN-M.Kalil Unnecessary Roughness 15 yards enforced at MIN 35.,6,20,2012 -20120916_MIN@IND,3,18,1,MIN,IND,2,22,80,(3:01) (Run formation) C.Ponder pass short left to P.Harvin to MIN 40 for 20 yards (K.Conner) [M.Addison].,6,20,2012 -20120916_MIN@IND,3,17,23,MIN,IND,3,2,60,(2:23) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 45 for 5 yards (A.Bethea).,6,20,2012 -20120916_MIN@IND,3,16,47,MIN,IND,1,10,55,(1:47) (Run formation) A.Peterson up the middle to MIN 49 for 4 yards (D.Nevis).,6,20,2012 -20120916_MIN@IND,3,16,7,MIN,IND,2,6,51,(1:07) (Run formation) C.Ponder scrambles right end pushed ob at IND 36 for 15 yards (J.Freeman). PENALTY on MIN-P.Loadholt Offensive Holding 10 yards enforced at MIN 49 - No Play.,6,20,2012 -20120916_MIN@IND,3,15,48,MIN,IND,2,16,61,(:48) (Run formation) C.Ponder sacked at MIN 37 for -2 yards (J.Hughes).,6,20,2012 -20120916_MIN@IND,3,15,22,MIN,IND,3,18,63,(:22) (Shotgun) C.Ponder pass short left to T.Gerhart to MIN 42 for 5 yards (J.Freeman; V.Davis).,6,20,2012 -20120916_MIN@IND,4,15,0,MIN,IND,4,13,58,(15:00) C.Kluwe punts 39 yards to IND 19 Center-C.Loeffler. T.Hilton to IND 30 for 11 yards (T.McKenzie).,6,20,2012 -20120916_MIN@IND,4,14,48,IND,MIN,1,10,70,(14:48) (Run formation) A.Luck pass short right to R.Wayne pushed ob at IND 32 for 2 yards (J.Sanford).,20,6,2012 -20120916_MIN@IND,4,14,31,IND,MIN,2,8,68,(14:31) D.Brown up the middle to IND 36 for 4 yards (B.Robison; H.Smith).,20,6,2012 -20120916_MIN@IND,4,13,51,IND,MIN,3,4,64,(13:51) (Shotgun) A.Luck pass incomplete short middle to K.Adams.,20,6,2012 -20120916_MIN@IND,4,13,47,IND,MIN,4,4,64,(13:47) P.McAfee punts 49 yards to MIN 15 Center-M.Overton. M.Sherels MUFFS catch and recovers at MIN 15. M.Sherels to MIN 21 for 6 yards (J.Lefeged).,20,6,2012 -20120916_MIN@IND,4,13,47,MIN,IND,1,10,79,(13:47) C.Ponder pass incomplete deep right to P.Harvin. PENALTY on MIN-P.Harvin Offensive Pass Interference 10 yards enforced at MIN 21 - No Play.,6,20,2012 -20120916_MIN@IND,4,13,40,MIN,IND,1,20,89,(13:40) (Run formation) C.Ponder pass short middle to P.Harvin to MIN 28 for 17 yards (R.Mathis; J.Powers).,6,20,2012 -20120916_MIN@IND,4,12,59,MIN,IND,2,3,72,(12:59) (Run formation) C.Ponder pass incomplete short middle to S.Burton (K.Conner).,6,20,2012 -20120916_MIN@IND,4,12,53,MIN,IND,3,3,72,(12:53) (Shotgun) C.Ponder pass incomplete short right to D.Aromashodu (J.Powers).,6,20,2012 -20120916_MIN@IND,4,12,48,MIN,IND,4,3,72,(12:48) C.Kluwe punts 53 yards to IND 19 Center-C.Loeffler fair catch by T.Hilton.,6,20,2012 -20120916_MIN@IND,4,12,40,IND,MIN,1,10,81,(12:40) (Run formation) PENALTY on IND-D.Allen False Start 5 yards enforced at IND 19 - No Play.,20,6,2012 -20120916_MIN@IND,4,12,40,IND,MIN,1,15,86,(12:40) (Run formation) V.Ballard left guard to IND 12 for -2 yards (E.Henderson).,20,6,2012 -20120916_MIN@IND,4,12,0,IND,MIN,2,17,88,(12:00) (Shotgun) V.Ballard up the middle to IND 20 for 8 yards (M.Raymond). PENALTY on IND-T.Essex Offensive Holding 6 yards enforced at IND 12 - No Play.,20,6,2012 -20120916_MIN@IND,4,11,45,IND,MIN,2,23,94,(11:45) (Run formation) V.Ballard up the middle to IND 9 for 3 yards (K.Williams).,20,6,2012 -20120916_MIN@IND,4,11,3,IND,MIN,3,20,91,(11:03) (Shotgun) M.Moore left tackle to IND 7 for -2 yards (E.Henderson).,20,6,2012 -20120916_MIN@IND,4,10,23,IND,MIN,4,22,93,(10:23) P.McAfee punts 55 yards to MIN 38 Center-M.Overton. M.Sherels to MIN 46 for 8 yards (M.Overton).,20,6,2012 -20120916_MIN@IND,4,10,10,MIN,IND,1,10,54,(10:10) C.Ponder pass short right to K.Rudolph to IND 40 for 14 yards (J.Powers).,6,20,2012 -20120916_MIN@IND,4,9,33,MIN,IND,1,10,40,(9:33) (Run formation) C.Ponder pass incomplete deep right to K.Rudolph.,6,20,2012 -20120916_MIN@IND,4,9,26,MIN,IND,2,10,40,(9:26) A.Peterson up the middle to IND 36 for 4 yards (A.Bethea).,6,20,2012 -20120916_MIN@IND,4,8,44,MIN,IND,3,6,36,(8:44) (Shotgun) C.Ponder pass short left to P.Harvin ran ob at IND 23 for 13 yards.,6,20,2012 -20120916_MIN@IND,4,8,20,MIN,IND,1,10,23,(8:20) (Shotgun) C.Ponder pass short right to P.Harvin to IND 16 for 7 yards (A.Bethea; J.Freeman).,6,20,2012 -20120916_MIN@IND,4,7,47,MIN,IND,2,3,16,(7:47) (Run formation) A.Peterson up the middle to IND 13 for 3 yards (K.Conner).,6,20,2012 -20120916_MIN@IND,4,7,8,MIN,IND,1,10,13,(7:08) (Run formation) A.Peterson up the middle to IND 12 for 1 yard (J.Freeman; A.Bethea).,6,20,2012 -20120916_MIN@IND,4,6,28,MIN,IND,2,9,12,(6:28) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at IND 6 for 6 yards (J.Freeman).,6,20,2012 -20120916_MIN@IND,4,5,57,MIN,IND,3,3,6,(5:57) A.Peterson up the middle to IND 7 for -1 yards (M.Fokou; R.Mathis). MIN-P.Harvin was injured during the play.,6,20,2012 -20120916_MIN@IND,4,5,15,MIN,IND,4,4,7,(5:15) (Shotgun) C.Ponder pass short right to S.Burton for 7 yards TOUCHDOWN [R.Mathis]. Pass tipped by IND Redding (#90).,6,20,2012 -20120916_MIN@IND,4,5,15,MIN,IND,,,7,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,6,20,2012 -20120916_MIN@IND,4,5,15,MIN,IND,,,7,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,13,20,2012 -20120916_MIN@IND,4,5,7,IND,MIN,1,10,80,(5:07) (Run formation) D.Brown up the middle to IND 20 for no gain (E.Henderson).,20,13,2012 -20120916_MIN@IND,4,4,32,IND,MIN,2,10,80,(4:32) (Run formation) A.Luck pass short right to R.Wayne to IND 25 for 5 yards (H.Smith; E.Henderson). MIN-E.Henderson was injured during the play.,20,13,2012 -20120916_MIN@IND,4,4,3,IND,MIN,3,5,75,(4:03) (Shotgun) A.Luck pass short left to D.Avery to IND 33 for 8 yards (C.Cook).,20,13,2012 -20120916_MIN@IND,4,3,20,IND,MIN,1,10,67,(3:20) (Run formation) D.Brown up the middle to IND 33 for no gain (B.Robison).,20,13,2012 -20120916_MIN@IND,4,3,13,IND,MIN,2,10,67,(3:13) (Run formation) A.Luck pass short right to D.Avery to IND 38 for 5 yards (A.Winfield; B.Robison).,20,13,2012 -20120916_MIN@IND,4,3,7,IND,MIN,3,5,62,(3:07) (Shotgun) A.Luck sacked at IND 16 for -22 yards (E.Griffen).,20,13,2012 -20120916_MIN@IND,4,3,0,IND,MIN,4,27,84,(3:00) P.McAfee punts 43 yards to MIN 41 Center-M.Overton. M.Sherels to IND 47 for 12 yards (M.Addison).,20,13,2012 -20120916_MIN@IND,4,2,50,MIN,IND,1,10,47,(2:50) (Shotgun) C.Ponder pass short right to P.Harvin to IND 48 for -1 yards (J.Freeman). MIN-P.Harvin was injured during the play.,13,20,2012 -20120916_MIN@IND,4,2,23,MIN,IND,2,11,48,(2:23) (Shotgun) C.Ponder pass short right to M.Jenkins to IND 39 for 9 yards (J.Freeman).,13,20,2012 -20120916_MIN@IND,4,2,4,MIN,IND,3,2,39,(2:04) (No Huddle Shotgun) C.Ponder pass short right to M.Jenkins to IND 31 for 8 yards (J.Powers; J.Freeman).,13,20,2012 -20120916_MIN@IND,4,1,59,MIN,IND,1,10,31,(1:59) (Shotgun) C.Ponder pass short left to A.Peterson to IND 30 for 1 yard (V.Davis).,13,20,2012 -20120916_MIN@IND,4,1,37,MIN,IND,2,9,30,(1:37) (No Huddle Shotgun) C.Ponder pass incomplete deep right to M.Jenkins (J.Powers).,13,20,2012 -20120916_MIN@IND,4,1,31,MIN,IND,3,9,30,(1:31) (Shotgun) C.Ponder pass short middle to A.Peterson to IND 10 for 20 yards (T.Zbikowski).,13,20,2012 -20120916_MIN@IND,4,0,44,MIN,IND,1,10,10,(:44) (No Huddle Shotgun) C.Ponder pass short middle to A.Peterson to IND 11 for -1 yards (M.Fokou).,13,20,2012 -20120916_MIN@IND,4,0,44,MIN,IND,2,11,11,(:44) (No Huddle Shotgun) C.Ponder pass incomplete short left to P.Harvin. PENALTY on IND-J.King Defensive Holding 5 yards enforced at IND 11 - No Play.,13,20,2012 -20120916_MIN@IND,4,0,39,MIN,IND,1,6,6,(:39) (Shotgun) C.Ponder pass incomplete short right to D.Aromashodu.,13,20,2012 -20120916_MIN@IND,4,0,36,MIN,IND,2,6,6,(:36) (Shotgun) C.Ponder pass short middle to K.Rudolph for 6 yards TOUCHDOWN.,13,20,2012 -20120916_MIN@IND,4,0,36,MIN,IND,,,6,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,20,2012 -20120916_MIN@IND,4,0,36,MIN,IND,,,6,B.Walsh kicks 74 yards from MIN 35 to IND -9. T.Hilton Touchback.,20,20,2012 -20120916_MIN@IND,4,0,31,IND,MIN,1,10,80,(:31) (Shotgun) A.Luck pass deep left to D.Avery to IND 40 for 20 yards (H.Smith).,20,20,2012 -20120916_MIN@IND,4,0,24,IND,MIN,1,10,60,(:24) (Shotgun) A.Luck pass deep right to R.Wayne to MIN 40 for 20 yards (M.Raymond).,20,20,2012 -20120916_MIN@IND,4,0,18,IND,MIN,1,10,40,(:18) (Shotgun) A.Luck pass short right to D.Avery to MIN 33 for 7 yards (J.Robinson). PENALTY on MIN-E.Griffen Defensive Offside 5 yards enforced at MIN 40 - No Play.,20,20,2012 -20120916_MIN@IND,4,0,13,IND,MIN,1,5,35,(:13) (Run formation) A.Luck spiked the ball to stop the clock.,20,20,2012 -20120916_MIN@IND,4,0,12,IND,MIN,2,5,35,(:12) A.Vinatieri 53 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,20,20,2012 -20120916_MIN@IND,4,0,12,IND,MIN,,,35,P.McAfee kicks 74 yards from IND 35 to MIN -9. P.Harvin Touchback.,23,20,2012 -20120916_MIN@IND,4,0,8,MIN,IND,1,10,80,(:08) (Shotgun) C.Ponder pass short right to M.Jenkins ran ob at MIN 35 for 15 yards.,20,23,2012 -20120916_MIN@IND,4,0,4,MIN,IND,1,10,65,(:04) (Shotgun) C.Ponder pass deep left to D.Aromashodu to IND 46 for 19 yards (V.Davis).,20,23,2012 -20120916_MIN@IND,4,0,4,MIN,IND,,,65,                      ,20,23,2012 -20120916_HOU@JAC,1,0,0,JAC,HOU,,,65,J.Scobee kicks 74 yards from JAX 35 to HST -9. T.Holliday to HST 21 for 30 yards (M.Harris).,0,0,2012 -20120916_HOU@JAC,1,59,54,HOU,JAC,1,10,79,(14:54) M.Schaub pass short left to J.Casey to HST 30 for 9 yards (A.Ross).,0,0,2012 -20120916_HOU@JAC,1,59,54,HOU,JAC,2,1,70,(14:54) M.Schaub pass short left to K.Walter to HST 36 for 6 yards (R.Allen).,0,0,2012 -20120916_HOU@JAC,1,58,49,HOU,JAC,1,10,64,(13:49) M.Schaub pass short left to O.Daniels to HST 48 for 12 yards (R.Allen).,0,0,2012 -20120916_HOU@JAC,1,58,18,HOU,JAC,1,10,52,(13:18) M.Schaub pass short right to B.Tate pushed ob at JAX 41 for 11 yards (D.Landry).,0,0,2012 -20120916_HOU@JAC,1,57,56,HOU,JAC,1,10,41,(12:56) (No Huddle) B.Tate up the middle to JAX 36 for 5 yards (D.Landry).,0,0,2012 -20120916_HOU@JAC,1,57,27,HOU,JAC,2,5,36,(12:27) (No Huddle) A.Foster left end to JAX 32 for 4 yards (R.Allen).,0,0,2012 -20120916_HOU@JAC,1,56,50,HOU,JAC,3,1,32,(11:50) A.Foster up the middle to JAX 28 for 4 yards (P.Posluszny).,0,0,2012 -20120916_HOU@JAC,1,56,18,HOU,JAC,1,10,28,(11:18) (Shotgun) M.Schaub pass short middle to O.Daniels to JAX 24 for 4 yards (P.Posluszny) [T.Knighton].,0,0,2012 -20120916_HOU@JAC,1,55,42,HOU,JAC,2,6,24,(10:42) B.Tate left end to JAX 15 for 9 yards (W.Middleton).,0,0,2012 -20120916_HOU@JAC,1,55,13,HOU,JAC,1,10,15,(10:13) B.Tate up the middle to JAX 13 for 2 yards (T.Alualu).,0,0,2012 -20120916_HOU@JAC,1,54,38,HOU,JAC,2,8,13,(9:38) M.Schaub pass incomplete short middle to A.Foster.,0,0,2012 -20120916_HOU@JAC,1,54,34,HOU,JAC,3,8,13,(9:34) (Shotgun) M.Schaub pass incomplete short middle to K.Walter.,0,0,2012 -20120916_HOU@JAC,1,54,28,HOU,JAC,4,8,13,(9:28) (Field Goal formation) S.Graham 31 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20120916_HOU@JAC,1,54,28,HOU,JAC,,,13,S.Graham kicks 74 yards from HST 35 to JAX -9. J.Parmele Touchback.,3,0,2012 -20120916_HOU@JAC,1,54,25,JAC,HOU,1,10,80,(9:25) B.Gabbert pass incomplete short middle to L.Robinson. PENALTY on HST-S.Cody Defensive Offside 5 yards enforced at JAX 20 - No Play.,0,3,2012 -20120916_HOU@JAC,1,54,20,JAC,HOU,1,5,75,(9:20) M.Jones-Drew up the middle to JAX 26 for 1 yard (J.Watt).,0,3,2012 -20120916_HOU@JAC,1,53,43,JAC,HOU,2,4,74,(8:43) M.Jones-Drew up the middle to JAX 28 for 2 yards (B.Reed). PENALTY on HST-B.Reed Defensive Offside 5 yards enforced at JAX 26 - No Play.,0,3,2012 -20120916_HOU@JAC,1,53,23,JAC,HOU,1,10,69,(8:23) (Shotgun) B.Gabbert pass short left to Z.Potter to JAX 35 for 4 yards (J.Joseph).,0,3,2012 -20120916_HOU@JAC,1,52,50,JAC,HOU,2,6,65,(7:50) M.Jones-Drew right end to JAX 49 for 14 yards (G.Quin).,0,3,2012 -20120916_HOU@JAC,1,52,18,JAC,HOU,1,10,51,(7:18) M.Jones-Drew up the middle to HST 48 for 3 yards (A.Smith).,0,3,2012 -20120916_HOU@JAC,1,51,35,JAC,HOU,2,7,48,(6:35) B.Gabbert pass short right to G.Jones to HST 44 for 4 yards (C.Barwin).,0,3,2012 -20120916_HOU@JAC,1,51,5,JAC,HOU,3,3,44,(6:05) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson (J.Watt).,0,3,2012 -20120916_HOU@JAC,1,51,1,JAC,HOU,4,3,44,(6:01) (Punt formation) B.Anger punts 32 yards to HST 12 Center-J.Cain fair catch by T.Holliday.,0,3,2012 -20120916_HOU@JAC,1,50,54,HOU,JAC,1,10,88,(5:54) M.Schaub pass incomplete short middle to O.Daniels [C.Mosley].,3,0,2012 -20120916_HOU@JAC,1,50,49,HOU,JAC,2,10,88,(5:49) A.Foster left end to HST 13 for 1 yard (C.Mosley).,3,0,2012 -20120916_HOU@JAC,1,50,17,HOU,JAC,3,9,87,(5:17) (Shotgun) M.Schaub pass short left to A.Johnson to HST 20 for 7 yards (A.Branch).,3,0,2012 -20120916_HOU@JAC,1,49,44,HOU,JAC,4,2,80,(4:44) (Punt formation) D.Jones punts 58 yards to JAX 22 Center-J.Weeks. M.Thomas to JAX 25 for 3 yards (W.Mercilus).,3,0,2012 -20120916_HOU@JAC,1,49,30,JAC,HOU,1,10,75,(4:30) (Shotgun) PENALTY on JAX-H.Taylor False Start 5 yards enforced at JAX 25 - No Play.,0,3,2012 -20120916_HOU@JAC,1,49,30,JAC,HOU,1,15,80,(4:30) M.Jones-Drew right end to JAX 20 for no gain (J.Watt).,0,3,2012 -20120916_HOU@JAC,1,48,52,JAC,HOU,2,15,80,(3:52) B.Gabbert pass incomplete short right to Z.Potter.,0,3,2012 -20120916_HOU@JAC,1,48,52,JAC,HOU,3,15,80,(3:52) (Shotgun) PENALTY on JAX-E.Monroe False Start 5 yards enforced at JAX 20 - No Play.,0,3,2012 -20120916_HOU@JAC,1,48,46,JAC,HOU,3,20,85,(3:46) (Shotgun) B.Gabbert scrambles up the middle to JAX 20 for 5 yards.,0,3,2012 -20120916_HOU@JAC,1,48,7,JAC,HOU,4,15,80,(3:07) (Punt formation) B.Anger punts 57 yards to HST 23 Center-J.Cain. T.Holliday to JAX 41 for 36 yards (B.Anger).,0,3,2012 -20120916_HOU@JAC,1,47,52,HOU,JAC,1,10,41,(2:52) A.Foster right guard to JAX 38 for 3 yards (R.Allen).,3,0,2012 -20120916_HOU@JAC,1,47,23,HOU,JAC,2,7,38,(2:23) M.Schaub pass short left to J.Casey to JAX 35 for 3 yards (W.Middleton).,3,0,2012 -20120916_HOU@JAC,1,46,56,HOU,JAC,3,4,35,(1:56) (Shotgun) M.Schaub pass short left to O.Daniels to JAX 26 for 9 yards (R.Allen) [T.Knighton].,3,0,2012 -20120916_HOU@JAC,1,46,20,HOU,JAC,1,10,26,(1:20) B.Tate right guard for 26 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. B.Tate right guard to JAX 1 for 25 yards (D.Lowery).,3,0,2012 -20120916_HOU@JAC,1,46,1,HOU,JAC,1,1,1,(1:01) B.Tate right guard to JAX 1 for no gain (C.Mosley).,3,0,2012 -20120916_HOU@JAC,1,45,19,HOU,JAC,2,1,1,(:19) A.Foster up the middle for 1 yard TOUCHDOWN.,3,0,2012 -20120916_HOU@JAC,1,45,19,HOU,JAC,,,1,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,0,2012 -20120916_HOU@JAC,1,45,19,HOU,JAC,,,1,S.Graham kicks 67 yards from HST 35 to JAX -2. J.Parmele to JAX 21 for 23 yards (J.Nading).,10,0,2012 -20120916_HOU@JAC,1,45,10,JAC,HOU,1,10,79,(:10) M.Jones-Drew up the middle to JAX 33 for 12 yards (D.Manning).,0,10,2012 -20120916_HOU@JAC,2,45,0,JAC,HOU,1,10,67,(15:00) B.Gabbert pass incomplete short right to M.Lewis. PENALTY on HST-B.Cushing Illegal Contact 5 yards enforced at JAX 33 - No Play.,0,10,2012 -20120916_HOU@JAC,2,44,55,JAC,HOU,1,10,62,(14:55) B.Gabbert pass incomplete short middle to J.Blackmon (J.Watt).,0,10,2012 -20120916_HOU@JAC,2,44,28,JAC,HOU,3,7,59,(14:28) (Shotgun) PENALTY on JAX Illegal Substitution 5 yards enforced at JAX 41 - No Play.,0,10,2012 -20120916_HOU@JAC,2,43,53,JAC,HOU,4,20,72,(13:53) B.Anger punts 50 yards to HST 22 Center-J.Cain. T.Holliday to HST 31 for 9 yards (K.Bosworth).,0,10,2012 -20120916_HOU@JAC,2,43,42,HOU,JAC,1,10,69,(13:42) A.Foster right end to HST 30 for -1 yards (J.Mincey).,10,0,2012 -20120916_HOU@JAC,2,43,15,HOU,JAC,2,11,70,(13:15) M.Schaub pass short middle to A.Foster to HST 39 for 9 yards (R.Allen).,10,0,2012 -20120916_HOU@JAC,2,42,43,HOU,JAC,3,2,61,(12:43) A.Foster left end to HST 40 for 1 yard (T.Alualu).,10,0,2012 -20120916_HOU@JAC,2,42,7,HOU,JAC,4,1,60,(12:07) (Punt formation) D.Jones punts 55 yards to JAX 5 Center-J.Weeks downed by HST-A.Ball.,10,0,2012 -20120916_HOU@JAC,2,41,56,JAC,HOU,1,10,95,(11:56) B.Gabbert pass incomplete deep left to C.Shorts.,0,10,2012 -20120916_HOU@JAC,2,41,49,JAC,HOU,2,10,95,(11:49) M.Jones-Drew up the middle to JAX 6 for 1 yard (E.Mitchell).,0,10,2012 -20120916_HOU@JAC,2,41,10,JAC,HOU,3,9,94,(11:10) (Shotgun) B.Gabbert pass short left to M.Jones-Drew to JAX 5 for -1 yards (Q.Demps).,0,10,2012 -20120916_HOU@JAC,2,40,36,JAC,HOU,4,10,95,(10:36) (Punt formation) B.Anger punts 57 yards to HST 38 Center-J.Cain. T.Holliday to JAX 48 for 14 yards (K.Bosworth). PENALTY on HST-M.Alexander Illegal Block Above the Waist 10 yards enforced at JAX 48.,0,10,2012 -20120916_HOU@JAC,2,40,23,HOU,JAC,1,10,58,(10:23) M.Schaub pass short middle to B.Tate to HST 44 for 2 yards (R.Mathis).,10,0,2012 -20120916_HOU@JAC,2,39,48,HOU,JAC,2,8,56,(9:48) M.Schaub pass short left to O.Daniels to HST 49 for 5 yards (A.Ross).,10,0,2012 -20120916_HOU@JAC,2,39,10,HOU,JAC,3,3,51,(9:10) M.Schaub pass short right to A.Foster to JAX 33 for 18 yards (D.Landry).,10,0,2012 -20120916_HOU@JAC,2,38,32,HOU,JAC,1,10,33,(8:32) A.Foster up the middle to JAX 24 for 9 yards (J.Mincey).,10,0,2012 -20120916_HOU@JAC,2,37,59,HOU,JAC,2,1,24,(7:59) A.Foster up the middle to JAX 21 for 3 yards (T.Knighton; A.Branch).,10,0,2012 -20120916_HOU@JAC,2,37,26,HOU,JAC,1,10,21,(7:26) M.Schaub pass short middle to K.Walter to JAX 8 for 13 yards (D.Landry).,10,0,2012 -20120916_HOU@JAC,2,36,54,HOU,JAC,1,8,8,(6:54) B.Tate up the middle for 8 yards TOUCHDOWN.,10,0,2012 -20120916_HOU@JAC,2,36,54,HOU,JAC,,,8,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,0,2012 -20120916_HOU@JAC,2,36,54,HOU,JAC,,,8,S.Graham kicks 65 yards from HST 35 to JAX 0. J.Parmele to JAX 38 for 38 yards (S.Graham).,17,0,2012 -20120916_HOU@JAC,2,36,40,JAC,HOU,1,10,62,(6:40) B.Gabbert pass incomplete short middle to J.Blackmon.,0,17,2012 -20120916_HOU@JAC,2,36,36,JAC,HOU,2,10,62,(6:36) M.Jones-Drew up the middle to JAX 44 for 6 yards (J.Crick).,0,17,2012 -20120916_HOU@JAC,2,35,56,JAC,HOU,3,4,56,(5:56) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon.,0,17,2012 -20120916_HOU@JAC,2,35,49,JAC,HOU,4,4,56,(5:49) (Punt formation) B.Anger punts 41 yards to HST 15 Center-J.Cain fair catch by T.Holliday.,0,17,2012 -20120916_HOU@JAC,2,35,42,HOU,JAC,1,10,85,(5:42) M.Schaub pass short middle to O.Daniels to HST 21 for 6 yards (T.Alualu).,17,0,2012 -20120916_HOU@JAC,2,35,9,HOU,JAC,2,4,79,(5:09) A.Foster up the middle to HST 24 for 3 yards (R.Allen).,17,0,2012 -20120916_HOU@JAC,2,34,36,HOU,JAC,3,1,76,(4:36) A.Foster left end to HST 42 for 18 yards (D.Lowery).,17,0,2012 -20120916_HOU@JAC,2,33,57,HOU,JAC,1,10,58,(3:57) M.Schaub pass incomplete short left to J.Casey [R.Allen].,17,0,2012 -20120916_HOU@JAC,2,33,49,HOU,JAC,2,10,58,(3:49) M.Schaub pass short middle to J.Casey to HST 48 for 6 yards (R.Allen).,17,0,2012 -20120916_HOU@JAC,2,33,5,HOU,JAC,3,4,52,(3:05) (Shotgun) M.Schaub pass incomplete deep left to O.Daniels.,17,0,2012 -20120916_HOU@JAC,2,33,0,HOU,JAC,4,4,52,(3:00) (Punt formation) D.Jones punts 52 yards to end zone Center-J.Weeks Touchback.,17,0,2012 -20120916_HOU@JAC,2,32,52,JAC,HOU,1,10,80,(2:52) B.Gabbert pass incomplete short left to L.Robinson. PENALTY on JAX-H.Taylor Offensive Holding 10 yards enforced at JAX 20 - No Play.,0,17,2012 -20120916_HOU@JAC,2,32,41,JAC,HOU,1,20,90,(2:41) B.Gabbert pass incomplete short right to L.Robinson [J.Watt].,0,17,2012 -20120916_HOU@JAC,2,32,37,JAC,HOU,2,20,90,(2:37) B.Gabbert sacked at JAX 1 for -9 yards (B.Reed).,0,17,2012 -20120916_HOU@JAC,2,32,28,JAC,HOU,3,29,99,(2:28) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 7 for 6 yards (D.Manning).,0,17,2012 -20120916_HOU@JAC,2,32,23,JAC,HOU,4,23,93,(2:23) (Punt formation) B.Anger punts 58 yards to HST 35 Center-J.Cain. T.Holliday MUFFS catch ball out of bounds at HST 33.,0,17,2012 -20120916_HOU@JAC,2,32,14,HOU,JAC,1,10,67,(2:14) (Shotgun) A.Foster right guard to HST 41 for 8 yards (D.Lowery).,17,0,2012 -20120916_HOU@JAC,2,32,0,HOU,JAC,2,2,59,(2:00) (Shotgun) M.Schaub pass incomplete short right to K.Martin (J.Mincey).,17,0,2012 -20120916_HOU@JAC,2,31,55,HOU,JAC,3,2,59,(1:55) (Shotgun) A.Foster up the middle to JAX 44 for 15 yards (C.Prosinski).,17,0,2012 -20120916_HOU@JAC,2,31,25,HOU,JAC,1,10,44,(1:25) (No Huddle Shotgun) M.Schaub pass incomplete short middle to A.Johnson (A.Branch).,17,0,2012 -20120916_HOU@JAC,2,31,21,HOU,JAC,2,10,44,(1:21) (Shotgun) M.Schaub pass incomplete deep right to K.Martin.,17,0,2012 -20120916_HOU@JAC,2,31,15,HOU,JAC,3,10,44,(1:15) (Shotgun) M.Schaub pass short middle to A.Foster to JAX 40 for 4 yards (R.Allen).,17,0,2012 -20120916_HOU@JAC,2,30,27,HOU,JAC,4,6,40,(:27) (Shotgun) PENALTY on HST-M.Schaub Delay of Game 5 yards enforced at JAX 40 - No Play.,17,0,2012 -20120916_HOU@JAC,2,30,27,HOU,JAC,4,11,45,(:27) (Punt formation) D.Jones punts 45 yards to end zone Center-J.Weeks Touchback.,17,0,2012 -20120916_HOU@JAC,2,30,19,JAC,HOU,1,10,80,(:19) M.Jones-Drew up the middle to JAX 22 for 2 yards (S.Cody).,0,17,2012 -20120916_HOU@JAC,3,30,0,HOU,JAC,,,80,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,17,0,2012 -20120916_HOU@JAC,3,30,0,JAC,HOU,1,10,80,(15:00) (Shotgun) M.Jones-Drew up the middle to JAX 25 for 5 yards (S.Cody; B.James).,0,17,2012 -20120916_HOU@JAC,3,29,22,JAC,HOU,2,5,75,(14:22) B.Gabbert pass incomplete short right to J.Blackmon.,0,17,2012 -20120916_HOU@JAC,3,29,16,JAC,HOU,3,5,75,(14:16) (Shotgun) B.Gabbert pass incomplete deep right to M.Thomas [B.Cushing].,0,17,2012 -20120916_HOU@JAC,3,29,11,JAC,HOU,4,5,75,(14:11) (Punt formation) B.Anger punts 57 yards to HST 18 Center-J.Cain. T.Holliday to HST 31 for 13 yards (M.Owens). PENALTY on HST-Q.Demps Illegal Block Above the Waist 10 yards enforced at HST 28.,0,17,2012 -20120916_HOU@JAC,3,28,58,HOU,JAC,1,10,82,(13:58) PENALTY on HST-D.Newton False Start 5 yards enforced at HST 18 - No Play.,17,0,2012 -20120916_HOU@JAC,3,28,58,HOU,JAC,1,15,87,(13:58) A.Foster up the middle to HST 12 for -1 yards (K.Bosworth).,17,0,2012 -20120916_HOU@JAC,3,28,29,HOU,JAC,2,16,88,(13:29) M.Schaub pass short right to A.Foster to HST 6 for -6 yards (P.Posluszny).,17,0,2012 -20120916_HOU@JAC,3,27,50,HOU,JAC,3,22,94,(12:50) A.Foster right end pushed ob at HST 11 for 5 yards (W.Middleton).,17,0,2012 -20120916_HOU@JAC,3,27,43,HOU,JAC,4,17,89,(12:43) (Punt formation) D.Jones punts 44 yards to JAX 45 Center-J.Weeks. M.Thomas to HST 37 for 18 yards (B.McCain).,17,0,2012 -20120916_HOU@JAC,3,27,35,JAC,HOU,1,10,37,(12:35) B.Gabbert pass deep middle to L.Robinson to HST 5 for 32 yards (J.Joseph).,0,17,2012 -20120916_HOU@JAC,3,26,52,JAC,HOU,1,5,5,(11:52) (Shotgun) B.Gabbert pass short right to M.Jones-Drew for 5 yards TOUCHDOWN.,0,17,2012 -20120916_HOU@JAC,3,26,52,JAC,HOU,,,5,(Kick formation) J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,17,2012 -20120916_HOU@JAC,3,26,52,JAC,HOU,,,5,J.Scobee kicks 73 yards from JAX 35 to HST -8. T.Holliday to HST 20 for 28 yards (A.Blake).,7,17,2012 -20120916_HOU@JAC,3,26,39,HOU,JAC,1,10,80,(11:39) M.Schaub pass short middle to A.Johnson to HST 23 for 3 yards (R.Allen).,17,7,2012 -20120916_HOU@JAC,3,26,6,HOU,JAC,2,7,77,(11:06) M.Schaub pass incomplete short middle to O.Daniels.,17,7,2012 -20120916_HOU@JAC,3,26,0,HOU,JAC,3,7,77,(11:00) M.Schaub pass incomplete short right to A.Johnson [J.Mincey]. PENALTY on JAX-A.Branch Defensive Offside 5 yards enforced at HST 23 - No Play.,17,7,2012 -20120916_HOU@JAC,3,25,59,HOU,JAC,3,2,72,(10:59) A.Foster left end to HST 31 for 3 yards (P.Posluszny).,17,7,2012 -20120916_HOU@JAC,3,25,20,HOU,JAC,1,10,69,(10:20) M.Schaub pass short right to B.Tate to HST 38 for 7 yards (W.Middleton).,17,7,2012 -20120916_HOU@JAC,3,24,58,HOU,JAC,2,3,62,(9:58) B.Tate up the middle to HST 45 for 7 yards (D.Landry).,17,7,2012 -20120916_HOU@JAC,3,24,21,HOU,JAC,1,10,55,(9:21) B.Tate up the middle to HST 44 for -1 yards (T.Alualu).,17,7,2012 -20120916_HOU@JAC,3,23,39,HOU,JAC,2,11,56,(8:39) (Shotgun) M.Schaub pass short right to A.Johnson to JAX 45 for 11 yards (A.Ross).,17,7,2012 -20120916_HOU@JAC,3,23,0,HOU,JAC,1,10,45,(8:00) A.Foster up the middle to JAX 39 for 6 yards (J.Mincey).,17,7,2012 -20120916_HOU@JAC,3,22,27,HOU,JAC,2,4,39,(7:27) A.Foster right end to JAX 36 for 3 yards (W.Middleton).,17,7,2012 -20120916_HOU@JAC,3,21,40,HOU,JAC,3,1,36,(6:40) M.Schaub pass short left to B.Tate to JAX 33 for 3 yards (J.Mincey).,17,7,2012 -20120916_HOU@JAC,3,21,8,HOU,JAC,1,10,33,(6:08) B.Tate up the middle to JAX 31 for 2 yards (A.Branch).,17,7,2012 -20120916_HOU@JAC,3,20,34,HOU,JAC,2,8,31,(5:34) M.Schaub pass short middle to G.Graham to JAX 16 for 15 yards (R.Mathis).,17,7,2012 -20120916_HOU@JAC,3,19,57,HOU,JAC,1,10,16,(4:57) A.Foster right end to JAX 8 for 8 yards (R.Allen; D.Lowery).,17,7,2012 -20120916_HOU@JAC,3,19,27,HOU,JAC,2,2,8,(4:27) A.Foster up the middle to JAX 7 for 1 yard (T.Alualu).,17,7,2012 -20120916_HOU@JAC,3,18,47,HOU,JAC,3,1,7,(3:47) A.Foster up the middle to JAX 4 for 3 yards (D.Landry).,17,7,2012 -20120916_HOU@JAC,3,18,10,HOU,JAC,1,4,4,(3:10) A.Foster right end to JAX 2 for 2 yards (P.Posluszny).,17,7,2012 -20120916_HOU@JAC,3,17,34,HOU,JAC,2,2,2,(2:34) B.Tate up the middle for 2 yards TOUCHDOWN.,17,7,2012 -20120916_HOU@JAC,3,17,34,HOU,JAC,,,2,(Kick formation) S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,7,2012 -20120916_HOU@JAC,3,17,34,HOU,JAC,,,2,S.Graham kicks 60 yards from HST 35 to JAX 5. J.Parmele to JAX 23 for 18 yards (T.Dobbins).,24,7,2012 -20120916_HOU@JAC,3,17,22,JAC,HOU,1,10,77,(2:22) B.Gabbert pass incomplete deep left to C.Shorts.,7,24,2012 -20120916_HOU@JAC,3,17,16,JAC,HOU,2,10,77,(2:16) M.Jones-Drew up the middle to JAX 19 for -4 yards (J.Watt).,7,24,2012 -20120916_HOU@JAC,3,16,32,JAC,HOU,3,14,81,(1:32) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to JAX 22 for 3 yards (B.Cushing).,7,24,2012 -20120916_HOU@JAC,3,15,57,JAC,HOU,4,11,78,(:57) B.Anger punts 57 yards to HST 21 impetus ends at HST 29 Center-J.Cain out of bounds.,7,24,2012 -20120916_HOU@JAC,3,15,48,HOU,JAC,1,10,79,(:48) PENALTY on HST-G.Graham False Start 5 yards enforced at HST 21 - No Play.,24,7,2012 -20120916_HOU@JAC,3,15,48,HOU,JAC,1,15,84,(:48) A.Foster left end to HST 16 for no gain (R.Allen).,24,7,2012 -20120916_HOU@JAC,3,15,11,HOU,JAC,2,15,84,(:11) M.Schaub pass short left to A.Foster to HST 19 for 3 yards (P.Posluszny).,24,7,2012 -20120916_HOU@JAC,4,15,0,HOU,JAC,3,12,81,(15:00) (Shotgun) M.Schaub pass short middle to A.Foster to HST 28 for 9 yards (P.Posluszny).,24,7,2012 -20120916_HOU@JAC,4,14,26,HOU,JAC,4,3,72,(14:26) (Punt formation) D.Jones punts 45 yards to JAX 27 Center-J.Weeks. M.Thomas to JAX 38 for 11 yards (T.Dobbins).,24,7,2012 -20120916_HOU@JAC,4,14,13,JAC,HOU,1,10,62,(14:13) (Shotgun) B.Gabbert sacked at JAX 31 for -7 yards (J.Watt).,7,24,2012 -20120916_HOU@JAC,4,13,56,JAC,HOU,2,17,69,(13:56) (Shotgun) B.Gabbert pass incomplete short middle to M.Thomas.,7,24,2012 -20120916_HOU@JAC,4,13,52,JAC,HOU,3,17,69,(13:52) (Shotgun) B.Gabbert pass incomplete deep left to L.Robinson.,7,24,2012 -20120916_HOU@JAC,4,13,47,JAC,HOU,4,17,69,(13:47) (Punt formation) B.Anger punts 59 yards to HST 10 Center-J.Cain. T.Holliday to HST 18 for 8 yards (D.Lowery). PENALTY on HST-M.Alexander Illegal Block Above the Waist 9 yards enforced at HST 18.,7,24,2012 -20120916_HOU@JAC,4,13,35,HOU,JAC,1,10,91,(13:35) B.Tate up the middle to HST 10 for 1 yard (K.Bosworth).,24,7,2012 -20120916_HOU@JAC,4,13,3,HOU,JAC,2,9,90,(13:03) M.Schaub pass short middle to K.Walter to HST 25 for 15 yards (A.Ross).,24,7,2012 -20120916_HOU@JAC,4,12,19,HOU,JAC,1,10,75,(12:19) A.Foster up the middle to HST 26 for 1 yard (DA.Smith).,24,7,2012 -20120916_HOU@JAC,4,11,41,HOU,JAC,2,9,74,(11:41) M.Schaub pass short right to O.Daniels to HST 37 for 11 yards (C.Prosinski).,24,7,2012 -20120916_HOU@JAC,4,11,6,HOU,JAC,1,10,63,(11:06) A.Foster right end to HST 39 for 2 yards (P.Posluszny).,24,7,2012 -20120916_HOU@JAC,4,10,27,HOU,JAC,2,8,61,(10:27) M.Schaub pass incomplete deep left to L.Jean. PENALTY on JAX-A.Ross Defensive Pass Interference 21 yards enforced at HST 39 - No Play.,24,7,2012 -20120916_HOU@JAC,4,10,20,HOU,JAC,1,10,40,(10:20) B.Tate up the middle to JAX 26 for 14 yards (D.Landry).,24,7,2012 -20120916_HOU@JAC,4,9,30,HOU,JAC,1,10,26,(9:30) A.Foster up the middle to JAX 21 for 5 yards (J.Mincey).,24,7,2012 -20120916_HOU@JAC,4,8,47,HOU,JAC,2,5,21,(8:47) A.Foster left end to JAX 17 for 4 yards (A.Branch).,24,7,2012 -20120916_HOU@JAC,4,8,4,HOU,JAC,3,1,17,(8:04) A.Foster up the middle to JAX 18 for -1 yards (K.Bosworth).,24,7,2012 -20120916_HOU@JAC,4,7,24,HOU,JAC,4,2,18,(7:24) (Field Goal formation) S.Graham 37 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,24,7,2012 -20120916_HOU@JAC,4,7,24,HOU,JAC,,,18,S.Graham kicks 74 yards from HST 35 to JAX -9. J.Parmele Touchback.,27,7,2012 -20120916_HOU@JAC,4,7,20,JAC,HOU,1,10,80,(7:20) JAX 11 Gabbert out for the game with a leg injury. C.Henne pass short left to L.Robinson to JAX 31 for 11 yards (J.Joseph).,7,27,2012 -20120916_HOU@JAC,4,6,53,JAC,HOU,1,10,69,(6:53) (No Huddle) PENALTY on HST-W.Mercilus Defensive Offside 5 yards enforced at JAX 31 - No Play.,7,27,2012 -20120916_HOU@JAC,4,6,53,JAC,HOU,1,5,64,(6:53) PENALTY on JAX-U.Nwaneri False Start 5 yards enforced at JAX 36 - No Play.,7,27,2012 -20120916_HOU@JAC,4,6,19,JAC,HOU,1,10,69,(6:19) (Shotgun) C.Henne pass short left to M.Thomas to JAX 43 for 12 yards (Q.Demps) [B.Reed].,7,27,2012 -20120916_HOU@JAC,4,5,43,JAC,HOU,1,10,57,(5:43) M.Jones-Drew up the middle to HST 40 for 17 yards (D.Manning). PENALTY on JAX-G.Whimper Unnecessary Roughness 15 yards enforced between downs.,7,27,2012 -20120916_HOU@JAC,4,5,15,HOU,JAC,1,10,57,(5:15) C.Henne FUMBLES (Aborted) at JAX 43 RECOVERED by HST-J.Watt at JAX 43. J.Watt to JAX 43 for no gain (M.Jones-Drew).,27,7,2012 -20120916_HOU@JAC,4,5,9,HOU,JAC,1,10,43,(5:09) J.Forsett right end to JAX 29 for 14 yards (A.Ross).,27,7,2012 -20120916_HOU@JAC,4,4,24,HOU,JAC,1,10,29,(4:24) J.Forsett left end to JAX 19 for 10 yards (P.Posluszny).,27,7,2012 -20120916_HOU@JAC,4,3,31,HOU,JAC,1,10,19,(3:31) J.Forsett up the middle to JAX 17 for 2 yards (T.Alualu).,27,7,2012 -20120916_HOU@JAC,4,2,53,HOU,JAC,2,8,17,(2:53) J.Forsett left end to JAX 10 for 7 yards (R.Allen).,27,7,2012 -20120916_HOU@JAC,4,2,11,HOU,JAC,3,1,10,(2:11) J.Forsett right end to JAX 11 for -1 yards (C.Mosley).,27,7,2012 -20120916_HOU@JAC,4,2,0,HOU,JAC,4,2,11,(2:00) J.Forsett up the middle to JAX 8 for 3 yards (C.Mosley).,27,7,2012 -20120916_HOU@JAC,4,1,16,HOU,JAC,1,8,8,(1:16) M.Schaub kneels to JAX 10 for -2 yards.,27,7,2012 -20120916_HOU@JAC,4,0,37,HOU,JAC,2,10,10,(:37) M.Schaub kneels to JAX 11 for -1 yards.,27,7,2012 -20120916_HOU@JAC,4,0,37,HOU,JAC,,,10,                      ,27,7,2012 -20120916_ARI@NE,1,0,0,NE,ARI,,,10,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 -20120916_ARI@NE,1,60,0,ARI,NE,1,10,80,(15:00) C.Wells right guard to ARZ 26 for 6 yards (P.Chung).,0,0,2012 -20120916_ARI@NE,1,59,26,ARI,NE,2,4,74,(14:26) C.Wells up the middle to ARZ 29 for 3 yards (C.Jones).,0,0,2012 -20120916_ARI@NE,1,58,51,ARI,NE,3,1,71,(13:51) K.Kolb up the middle to ARZ 31 for 2 yards (V.Wilfork; J.Mayo).,0,0,2012 -20120916_ARI@NE,1,58,11,ARI,NE,1,10,69,(13:11) K.Kolb pass incomplete short left to T.Heap.,0,0,2012 -20120916_ARI@NE,1,58,4,ARI,NE,2,10,69,(13:04) (Shotgun) K.Kolb pass short middle to L.Stephens-Howling to ARZ 41 for 10 yards (J.Mayo).,0,0,2012 -20120916_ARI@NE,1,57,26,ARI,NE,1,10,59,(12:26) Direct snap to P.Peterson. P.Peterson left end pushed ob at NE 42 for 17 yards (P.Chung).,0,0,2012 -20120916_ARI@NE,1,57,3,ARI,NE,1,10,42,(12:03) C.Wells left tackle to NE 42 for no gain (K.Love).,0,0,2012 -20120916_ARI@NE,1,56,21,ARI,NE,2,10,42,(11:21) (Shotgun) K.Kolb pass short left to R.Williams to NE 39 for 3 yards (S.Moore).,0,0,2012 -20120916_ARI@NE,1,55,40,ARI,NE,3,7,39,(10:40) (Shotgun) K.Kolb pass short middle to E.Doucet to NE 27 for 12 yards (S.Gregory K.Arrington).,0,0,2012 -20120916_ARI@NE,1,55,12,ARI,NE,1,10,27,(10:12) C.Wells left tackle to NE 24 for 3 yards (J.Mayo; C.Jones).,0,0,2012 -20120916_ARI@NE,1,54,34,ARI,NE,2,7,24,(9:34) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to NE 20 for 4 yards (B.Spikes).,0,0,2012 -20120916_ARI@NE,1,53,50,ARI,NE,3,3,20,(8:50) (Shotgun) K.Kolb pass incomplete short right to T.Heap.,0,0,2012 -20120916_ARI@NE,1,53,47,ARI,NE,4,3,20,(8:47) J.Feely 38 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20120916_ARI@NE,1,53,47,ARI,NE,,,20,J.Feely kicks 65 yards from ARZ 35 to NE 0. D.McCourty to NE 21 for 21 yards (R.Walker).,3,0,2012 -20120916_ARI@NE,1,53,37,NE,ARI,1,10,79,(8:37) T.Brady pass short right intended for A.Hernandez INTERCEPTED by P.Peterson (D.Dockett) at NE 36. P.Peterson to NE 36 for no gain (J.Edelman).,0,3,2012 -20120916_ARI@NE,1,53,31,ARI,NE,1,10,36,(8:31) C.Wells up the middle to NE 34 for 2 yards (K.Love).,3,0,2012 -20120916_ARI@NE,1,52,57,ARI,NE,2,8,34,(7:57) K.Kolb pass incomplete deep right to L.Fitzgerald.,3,0,2012 -20120916_ARI@NE,1,52,51,ARI,NE,3,8,34,(7:51) (Shotgun) PENALTY on NE-V.Wilfork Encroachment 5 yards enforced at NE 34 - No Play.,3,0,2012 -20120916_ARI@NE,1,52,51,ARI,NE,3,3,29,(7:51) (Shotgun) K.Kolb pass incomplete deep right to T.Heap.,3,0,2012 -20120916_ARI@NE,1,52,47,ARI,NE,4,3,29,(7:47) J.Feely 47 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,3,0,2012 -20120916_ARI@NE,1,52,47,ARI,NE,,,29,J.Feely kicks 65 yards from ARZ 35 to NE 0. D.McCourty to NE 25 for 25 yards (R.Johnson; E.Doucet).,6,0,2012 -20120916_ARI@NE,1,52,34,NE,ARI,1,10,75,(7:34) S.Ridley left guard to NE 26 for 1 yard (S.Acho; C.Campbell).,0,6,2012 -20120916_ARI@NE,1,52,3,NE,ARI,2,9,74,(7:03) (Shotgun) T.Brady pass short right to J.Edelman to NE 32 for 6 yards (W.Gay). NE-A.Hernandez was injured during the play.,0,6,2012 -20120916_ARI@NE,1,51,38,NE,ARI,3,3,68,(6:38) (Shotgun) D.Woodhead up the middle to NE 35 for 3 yards (D.Washington).,0,6,2012 -20120916_ARI@NE,1,51,2,NE,ARI,1,10,65,(6:02) D.Woodhead left guard to NE 38 for 3 yards (D.Dockett).,0,6,2012 -20120916_ARI@NE,1,50,35,NE,ARI,2,7,62,(5:35) S.Ridley left end ran ob at NE 39 for 1 yard.,0,6,2012 -20120916_ARI@NE,1,50,6,NE,ARI,3,6,61,(5:06) (Shotgun) T.Brady pass short left to R.Gronkowski to NE 48 for 9 yards (J.Fleming; D.Washington).,0,6,2012 -20120916_ARI@NE,1,49,36,NE,ARI,1,10,52,(4:36) T.Brady pass short left to S.Ridley to ARZ 36 for 16 yards (P.Lenon). NE 12-Brady 40246 career pass yards passing Johnny Unitas for 13th in NFL history.,0,6,2012 -20120916_ARI@NE,1,48,52,NE,ARI,1,10,36,(3:52) S.Ridley left guard to ARZ 35 for 1 yard (C.Campbell).,0,6,2012 -20120916_ARI@NE,1,48,13,NE,ARI,2,9,35,(3:13) T.Brady pass short left to B.Lloyd to ARZ 33 for 2 yards (K.Rhodes).,0,6,2012 -20120916_ARI@NE,1,47,37,NE,ARI,3,7,33,(2:37) (Shotgun) T.Brady pass incomplete deep middle to B.Lloyd. PENALTY on ARZ-Q.Groves Encroachment 5 yards enforced at ARZ 33 - No Play.,0,6,2012 -20120916_ARI@NE,1,47,31,NE,ARI,3,2,28,(2:31) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,0,6,2012 -20120916_ARI@NE,1,47,27,NE,ARI,4,2,28,(2:27) S.Gostkowski 46 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,6,2012 -20120916_ARI@NE,1,47,27,NE,ARI,,,28,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,3,6,2012 -20120916_ARI@NE,1,47,22,ARI,NE,1,10,80,(2:22) R.Williams up the middle to ARZ 22 for 2 yards (B.Spikes).,6,3,2012 -20120916_ARI@NE,1,46,52,ARI,NE,2,8,78,(1:52) (No Huddle Shotgun) K.Kolb pass short right to T.Heap to ARZ 28 for 6 yards (K.Arrington; D.McCourty). ARI 86-Heap just passed Mike Ditka for 12th all-time receiving yards for a TE.,6,3,2012 -20120916_ARI@NE,1,46,7,ARI,NE,3,2,72,(1:07) (Shotgun) K.Kolb sacked at ARZ 28 for 0 yards (R.Ninkovich).,6,3,2012 -20120916_ARI@NE,1,45,33,ARI,NE,4,2,72,(:33) D.Zastudil punts 44 yards to NE 28 Center-M.Leach fair catch by J.Edelman.,6,3,2012 -20120916_ARI@NE,1,45,27,NE,ARI,1,10,72,(:27) S.Ridley right end to NE 48 for 20 yards (D.Washington).,3,6,2012 -20120916_ARI@NE,1,45,2,NE,ARI,1,10,52,(:02) (No Huddle) S.Ridley right tackle to NE 49 for 1 yard (P.Lenon).,3,6,2012 -20120916_ARI@NE,2,45,0,NE,ARI,2,9,51,(15:00) T.Brady pass incomplete deep middle to B.Lloyd.,3,6,2012 -20120916_ARI@NE,2,44,53,NE,ARI,3,9,51,(14:53) (Shotgun) T.Brady pass incomplete short right to B.Lloyd.,3,6,2012 -20120916_ARI@NE,2,44,48,NE,ARI,4,9,51,(14:48) Z.Mesko punts 38 yards to ARZ 13 Center-D.Aiken. P.Peterson ran ob at ARZ 16 for 3 yards.,3,6,2012 -20120916_ARI@NE,2,44,40,ARI,NE,1,10,84,(14:40) R.Williams left tackle to ARZ 11 for -5 yards (C.Jones).,6,3,2012 -20120916_ARI@NE,2,44,3,ARI,NE,2,15,89,(14:03) (Shotgun) K.Kolb pass short middle to R.Williams to ARZ 18 for 7 yards (D.Hightower).,6,3,2012 -20120916_ARI@NE,2,43,21,ARI,NE,3,8,82,(13:21) (Shotgun) K.Kolb pass short right to T.Heap to ARZ 32 for 14 yards (D.McCourty; K.Arrington). PENALTY on ARZ-D.Batiste Offensive Holding 9 yards enforced at ARZ 18 - No Play.,6,3,2012 -20120916_ARI@NE,2,42,58,ARI,NE,3,17,91,(12:58) (Shotgun) K.Kolb pass incomplete short middle to T.Heap [C.Jones].,6,3,2012 -20120916_ARI@NE,2,42,53,ARI,NE,4,17,91,(12:53) D.Zastudil punts 59 yards to NE 32 Center-M.Leach. J.Edelman to ARZ 46 for 22 yards (J.Sanders).,6,3,2012 -20120916_ARI@NE,2,42,40,NE,ARI,1,10,46,(12:40) (Shotgun) S.Ridley left guard to ARZ 41 for 5 yards (D.Washington).,3,6,2012 -20120916_ARI@NE,2,42,6,NE,ARI,2,5,41,(12:06) S.Ridley left end to ARZ 29 for 12 yards (A.Wilson).,3,6,2012 -20120916_ARI@NE,2,41,32,NE,ARI,1,10,29,(11:32) S.Ridley up the middle to ARZ 19 for 10 yards (W.Gay).,3,6,2012 -20120916_ARI@NE,2,40,57,NE,ARI,1,10,19,(10:57) S.Ridley left end to ARZ 16 for 3 yards (C.Campbell).,3,6,2012 -20120916_ARI@NE,2,40,21,NE,ARI,2,7,16,(10:21) T.Brady pass short left to B.Lloyd pushed ob at ARZ 11 for 5 yards (J.Fleming).,3,6,2012 -20120916_ARI@NE,2,39,56,NE,ARI,3,2,11,(9:56) D.Woodhead left guard to ARZ 11 for no gain (N.Eason).,3,6,2012 -20120916_ARI@NE,2,39,12,NE,ARI,4,2,11,(9:12) (Field Goal formation) PENALTY on NE-D.Aiken False Start 5 yards enforced at ARZ 11 - No Play.,3,6,2012 -20120916_ARI@NE,2,39,12,NE,ARI,4,7,16,(9:12) S.Gostkowski 34 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,3,6,2012 -20120916_ARI@NE,2,39,12,NE,ARI,,,16,S.Gostkowski kicks 69 yards from NE 35 to ARZ -4. L.Stephens-Howling pushed ob at ARZ 28 for 32 yards (K.Arrington). PENALTY on ARZ-J.Sanders Offensive Holding 10 yards enforced at ARZ 28.,6,6,2012 -20120916_ARI@NE,2,39,2,ARI,NE,1,10,82,(9:02) K.Kolb pass short middle to T.Heap to ARZ 23 for 5 yards (J.Mayo; B.Spikes).,6,6,2012 -20120916_ARI@NE,2,38,30,ARI,NE,2,5,77,(8:30) (No Huddle) C.Wells right end ran ob at ARZ 30 for 7 yards.,6,6,2012 -20120916_ARI@NE,2,38,7,ARI,NE,1,10,70,(8:07) (No Huddle Shotgun) K.Kolb scrambles right end ran ob at ARZ 35 for 5 yards.,6,6,2012 -20120916_ARI@NE,2,37,39,ARI,NE,2,5,65,(7:39) (No Huddle Shotgun) K.Kolb right guard to ARZ 41 for 6 yards (B.Spikes; R.Brace).,6,6,2012 -20120916_ARI@NE,2,36,55,ARI,NE,1,10,59,(6:55) (No Huddle) C.Wells up the middle to ARZ 45 for 4 yards (J.Mayo; R.Ninkovich).,6,6,2012 -20120916_ARI@NE,2,36,15,ARI,NE,2,6,55,(6:15) (No Huddle) K.Kolb pass incomplete short right [B.Spikes].,6,6,2012 -20120916_ARI@NE,2,36,11,ARI,NE,3,6,55,(6:11) (Shotgun) K.Kolb left guard to ARZ 48 for 3 yards (C.Jones). FUMBLES (C.Jones) RECOVERED by NE-T.Wilson at NE 48. T.Wilson to NE 48 for no gain (L.Sendlein).,6,6,2012 -20120916_ARI@NE,2,36,4,NE,ARI,1,10,52,(6:04) T.Brady sacked at NE 38 for -10 yards (S.Acho).,6,6,2012 -20120916_ARI@NE,2,35,35,NE,ARI,2,20,62,(5:35) (Shotgun) PENALTY on NE-D.Thomas False Start 5 yards enforced at NE 38 - No Play.,6,6,2012 -20120916_ARI@NE,2,35,33,NE,ARI,2,25,67,(5:33) (Shotgun) T.Brady sacked at NE 26 for -7 yards (Q.Groves).,6,6,2012 -20120916_ARI@NE,2,35,6,NE,ARI,3,32,74,(5:06) (Shotgun) D.Woodhead up the middle to NE 31 for 5 yards (C.Campbell).,6,6,2012 -20120916_ARI@NE,2,34,35,NE,ARI,4,27,69,(4:35) Z.Mesko punts 40 yards to ARZ 29 Center-D.Aiken downed by NE-M.Cole.,6,6,2012 -20120916_ARI@NE,2,34,26,ARI,NE,1,10,71,(4:26) C.Wells right tackle to ARZ 26 for -3 yards (B.Spikes).,6,6,2012 -20120916_ARI@NE,2,33,52,ARI,NE,2,13,74,(3:52) (No Huddle Shotgun) K.Kolb pass incomplete short right to E.Doucet.,6,6,2012 -20120916_ARI@NE,2,33,46,ARI,NE,3,13,74,(3:46) (Shotgun) K.Kolb pass short middle to T.Heap to ARZ 38 for 12 yards (D.Hightower).,6,6,2012 -20120916_ARI@NE,2,33,5,ARI,NE,4,1,62,(3:05) D.Zastudil punts 52 yards to NE 10 Center-M.Leach out of bounds.,6,6,2012 -20120916_ARI@NE,2,32,59,NE,ARI,1,10,90,(2:59) S.Ridley left guard to NE 11 for 1 yard (P.Lenon; C.Campbell).,6,6,2012 -20120916_ARI@NE,2,32,20,NE,ARI,2,9,89,(2:20) S.Ridley right tackle to NE 10 for -1 yards (D.Dockett; D.Washington).,6,6,2012 -20120916_ARI@NE,2,32,0,NE,ARI,3,10,90,(2:00) (Shotgun) T.Brady pass deep left to W.Welker ran ob at NE 35 for 25 yards. NE 83-Welker 558th career reception franchise record (Troy Brown).,6,6,2012 -20120916_ARI@NE,2,31,52,NE,ARI,1,10,65,(1:52) (No Huddle Shotgun) T.Brady pass short middle to D.Woodhead to NE 47 for 12 yards (P.Lenon).,6,6,2012 -20120916_ARI@NE,2,31,24,NE,ARI,1,10,53,(1:24) (No Huddle Shotgun) T.Brady pass incomplete deep left to R.Gronkowski.,6,6,2012 -20120916_ARI@NE,2,31,16,NE,ARI,2,10,53,(1:16) (Shotgun) D.Woodhead right guard to ARZ 47 for 6 yards (C.Campbell; W.Gay).,6,6,2012 -20120916_ARI@NE,2,30,46,NE,ARI,3,4,47,(:46) (No Huddle Shotgun) T.Brady sacked at ARZ 47 for 0 yards (C.Campbell).,6,6,2012 -20120916_ARI@NE,2,30,6,NE,ARI,4,4,47,(:06) Z.Mesko punts 21 yards to ARZ 26 Center-D.Aiken downed by NE-M.Rivera.,6,6,2012 -20120916_ARI@NE,3,30,0,ARI,NE,,,47,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,6,6,2012 -20120916_ARI@NE,3,30,0,NE,ARI,1,10,80,(15:00) T.Brady pass deep middle to W.Welker to ARZ 44 for 36 yards (K.Rhodes).,6,6,2012 -20120916_ARI@NE,3,29,20,NE,ARI,1,10,44,(14:20) (Shotgun) T.Brady pass short left to B.Lloyd to ARZ 40 for 4 yards (S.Acho).,6,6,2012 -20120916_ARI@NE,3,28,53,NE,ARI,2,6,40,(13:53) (No Huddle) S.Ridley right tackle to ARZ 33 for 7 yards (D.Washington).,6,6,2012 -20120916_ARI@NE,3,28,12,NE,ARI,1,10,33,(13:12) (No Huddle Shotgun) T.Brady pass incomplete short right to J.Edelman.,6,6,2012 -20120916_ARI@NE,3,28,8,NE,ARI,2,10,33,(13:08) (No Huddle) T.Brady pass incomplete short middle to S.Ridley.,6,6,2012 -20120916_ARI@NE,3,28,3,NE,ARI,3,10,33,(13:03) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,6,6,2012 -20120916_ARI@NE,3,27,58,NE,ARI,4,10,33,(12:58) S.Gostkowski 51 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,6,6,2012 -20120916_ARI@NE,3,27,58,NE,ARI,,,33,S.Gostkowski kicks 56 yards from NE 35 to ARZ 9. E.Doucet pushed ob at ARZ 27 for 18 yards (T.Scott).,9,6,2012 -20120916_ARI@NE,3,27,47,ARI,NE,1,10,73,(12:47) K.Kolb pass short right to C.Wells pushed ob at NE 49 for 24 yards (J.Mayo).,6,9,2012 -20120916_ARI@NE,3,27,16,ARI,NE,1,10,49,(12:16) C.Wells left tackle to ARZ 49 for -2 yards (D.Hightower).,6,9,2012 -20120916_ARI@NE,3,26,41,ARI,NE,2,12,51,(11:41) Direct snap to P.Peterson. L.Stephens-Howling right end to NE 44 for 7 yards (S.Gregory).,6,9,2012 -20120916_ARI@NE,3,25,59,ARI,NE,3,5,44,(10:59) (Shotgun) K.Kolb pass incomplete short right to L.Stephens-Howling.,6,9,2012 -20120916_ARI@NE,3,25,56,ARI,NE,4,5,44,(10:56) D.Zastudil punts 34 yards to NE 10 Center-M.Leach fair catch by W.Welker.,6,9,2012 -20120916_ARI@NE,3,25,49,NE,ARI,1,10,90,(10:49) (Shotgun) S.Ridley right guard to NE 14 for 4 yards (P.Peterson).,9,6,2012 -20120916_ARI@NE,3,25,28,NE,ARI,2,6,86,(10:28) (No Huddle) S.Ridley right end to NE 11 for -3 yards (D.Washington).,9,6,2012 -20120916_ARI@NE,3,24,53,NE,ARI,3,9,89,(9:53) (Shotgun) T.Brady pass incomplete short right to W.Welker.,9,6,2012 -20120916_ARI@NE,3,24,48,NE,ARI,4,9,89,(9:48) Z.Mesko punt is BLOCKED by Q.Groves Center-D.Aiken ball out of bounds at NE 2.,9,6,2012 -20120916_ARI@NE,3,24,41,ARI,NE,1,2,2,(9:41) R.Williams up the middle to NE 2 for no gain (R.Brace).,6,9,2012 -20120916_ARI@NE,3,24,0,ARI,NE,2,2,2,(9:00) K.Kolb pass incomplete short left to L.Fitzgerald.,6,9,2012 -20120916_ARI@NE,3,23,56,ARI,NE,3,2,2,(8:56) (Shotgun) K.Kolb pass short left to A.Roberts for 2 yards TOUCHDOWN.,6,9,2012 -20120916_ARI@NE,3,23,56,ARI,NE,,,2,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,6,9,2012 -20120916_ARI@NE,3,23,56,ARI,NE,,,2,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,13,9,2012 -20120916_ARI@NE,3,23,52,NE,ARI,1,10,80,(8:52) (Shotgun) S.Ridley right guard to NE 25 for 5 yards (P.Lenon).,9,13,2012 -20120916_ARI@NE,3,23,16,NE,ARI,2,5,75,(8:16) (Shotgun) T.Brady pass short middle to W.Welker to NE 34 for 9 yards (D.Washington).,9,13,2012 -20120916_ARI@NE,3,22,43,NE,ARI,1,10,66,(7:43) T.Brady pass short left to S.Ridley pushed ob at NE 38 for 4 yards (D.Washington).,9,13,2012 -20120916_ARI@NE,3,22,16,NE,ARI,2,6,62,(7:16) (Shotgun) S.Ridley up the middle to NE 45 for 7 yards (K.Rhodes).,9,13,2012 -20120916_ARI@NE,3,21,47,NE,ARI,1,10,55,(6:47) T.Brady pass short left to B.Lloyd to ARZ 46 for 9 yards (P.Lenon).,9,13,2012 -20120916_ARI@NE,3,21,12,NE,ARI,2,1,46,(6:12) S.Ridley up the middle to ARZ 45 for 1 yard (D.Dockett).,9,13,2012 -20120916_ARI@NE,3,20,31,NE,ARI,1,10,45,(5:31) (Shotgun) T.Brady pass incomplete short left to W.Welker [S.Acho].,9,13,2012 -20120916_ARI@NE,3,20,24,NE,ARI,2,10,45,(5:24) (Shotgun) T.Brady pass short right to B.Lloyd to ARZ 36 for 9 yards (P.Lenon).,9,13,2012 -20120916_ARI@NE,3,19,53,NE,ARI,3,1,36,(4:53) L.Hilliard up the middle to ARZ 34 for 2 yards (D.Washington).,9,13,2012 -20120916_ARI@NE,3,19,12,NE,ARI,1,10,34,(4:12) (Shotgun) T.Brady pass incomplete deep right to B.Lloyd.,9,13,2012 -20120916_ARI@NE,3,19,8,NE,ARI,2,10,34,(4:08) T.Brady pass short left to S.Ridley to ARZ 30 for 4 yards (W.Gay).,9,13,2012 -20120916_ARI@NE,3,18,27,NE,ARI,3,6,30,(3:27) D.Woodhead right end to ARZ 39 for -9 yards (D.Dockett).,9,13,2012 -20120916_ARI@NE,3,17,53,NE,ARI,4,15,39,(2:53) Z.Mesko punts 39 yards to end zone Center-D.Aiken Touchback. PENALTY on NE Illegal Formation 5 yards enforced at ARZ 20.,9,13,2012 -20120916_ARI@NE,3,17,46,ARI,NE,1,10,75,(2:46) K.Kolb pass short middle to T.Heap to ARZ 36 for 11 yards (S.Gregory).,13,9,2012 -20120916_ARI@NE,3,17,16,ARI,NE,1,10,64,(2:16) R.Williams up the middle to ARZ 38 for 2 yards (R.Ninkovich).,13,9,2012 -20120916_ARI@NE,3,16,41,ARI,NE,2,8,62,(1:41) K.Kolb pass short right to L.Fitzgerald pushed ob at ARZ 46 for 8 yards (S.Moore) [J.Mayo]. PENALTY on ARZ-A.Snyder Offensive Holding 10 yards enforced at ARZ 38 - No Play.,13,9,2012 -20120916_ARI@NE,3,16,13,ARI,NE,2,18,72,(1:13) (Shotgun) K.Kolb pass short right to T.Heap pushed ob at NE 44 for 28 yards (S.Gregory) [B.Spikes]. Penalty on NE-B.Spikes Roughing the Passer declined. PENALTY on NE-S.Gregory Personal Foul 15 yards enforced at NE 44.,13,9,2012 -20120916_ARI@NE,3,15,47,ARI,NE,1,10,29,(:47) R.Williams up the middle to NE 25 for 4 yards (J.Mayo).,13,9,2012 -20120916_ARI@NE,3,15,10,ARI,NE,2,6,25,(:10) (Shotgun) K.Kolb pass incomplete deep right to L.Fitzgerald.,13,9,2012 -20120916_ARI@NE,3,15,2,ARI,NE,3,6,25,(:02) (Shotgun) K.Kolb pass short middle to E.Doucet to NE 16 for 9 yards (J.Mayo).,13,9,2012 -20120916_ARI@NE,4,15,0,ARI,NE,1,10,16,(15:00) K.Kolb pass short left to R.Housler pushed ob at NE 9 for 7 yards (K.Arrington).,13,9,2012 -20120916_ARI@NE,4,14,37,ARI,NE,2,3,9,(14:37) (Shotgun) L.Stephens-Howling left tackle to NE 5 for 4 yards (K.Love).,13,9,2012 -20120916_ARI@NE,4,14,4,ARI,NE,1,5,5,(14:04) K.Kolb up the middle for 5 yards TOUCHDOWN.,13,9,2012 -20120916_ARI@NE,4,14,4,ARI,NE,,,5,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,13,9,2012 -20120916_ARI@NE,4,14,4,ARI,NE,,,5,J.Feely kicks 73 yards from ARZ 35 to NE -8. D.McCourty Touchback.,20,9,2012 -20120916_ARI@NE,4,14,0,NE,ARI,1,10,80,(14:00) (Shotgun) T.Brady pass short left to B.Lloyd to NE 30 for 10 yards (D.Washington).,9,20,2012 -20120916_ARI@NE,4,13,27,NE,ARI,1,10,70,(13:27) T.Brady pass short middle to R.Gronkowski to ARZ 48 for 22 yards (K.Rhodes; A.Wilson).,9,20,2012 -20120916_ARI@NE,4,12,51,NE,ARI,1,10,48,(12:51) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at ARZ 39 for 9 yards. Arizona challenged the pass completion ruling and the play was Upheld. (Timeout #1.),9,20,2012 -20120916_ARI@NE,4,12,41,NE,ARI,2,1,39,(12:41) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,9,20,2012 -20120916_ARI@NE,4,12,37,NE,ARI,3,1,39,(12:37) S.Ridley right end to ARZ 43 for -4 yards (P.Peterson).,9,20,2012 -20120916_ARI@NE,4,12,1,NE,ARI,4,5,43,(12:01) Z.Mesko punts 34 yards to ARZ 9 Center-D.Aiken fair catch by P.Peterson.,9,20,2012 -20120916_ARI@NE,4,11,54,ARI,NE,1,10,91,(11:54) C.Wells right end to ARZ 17 for 8 yards (D.McCourty; D.Hightower).,20,9,2012 -20120916_ARI@NE,4,11,10,ARI,NE,2,2,83,(11:10) PENALTY on ARZ-A.Roberts False Start 5 yards enforced at ARZ 17 - No Play.,20,9,2012 -20120916_ARI@NE,4,10,47,ARI,NE,2,7,88,(10:47) C.Wells right end to ARZ 22 for 10 yards (D.McCourty).,20,9,2012 -20120916_ARI@NE,4,10,5,ARI,NE,1,10,78,(10:05) C.Wells up the middle to ARZ 23 for 1 yard (B.Spikes).,20,9,2012 -20120916_ARI@NE,4,9,23,ARI,NE,2,9,77,(9:23) C.Wells up the middle to ARZ 26 for 3 yards (R.Ninkovich).,20,9,2012 -20120916_ARI@NE,4,8,43,ARI,NE,3,6,74,(8:43) (Shotgun) K.Kolb pass short middle to E.Doucet to ARZ 26 for no gain (J.Cunningham; V.Wilfork). NE-V.Wilfork was injured during the play. shovel pass,20,9,2012 -20120916_ARI@NE,4,8,5,ARI,NE,4,6,74,(8:05) D.Zastudil punts 38 yards to NE 36 Center-M.Leach downed by ARZ-J.Bethel.,20,9,2012 -20120916_ARI@NE,4,7,56,NE,ARI,1,10,64,(7:56) (Shotgun) T.Brady pass short middle to J.Edelman to ARZ 47 for 17 yards (P.Peterson).,9,20,2012 -20120916_ARI@NE,4,7,33,NE,ARI,1,10,47,(7:33) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd ran ob at ARZ 35 for 12 yards.,9,20,2012 -20120916_ARI@NE,4,7,22,NE,ARI,1,10,35,(7:22) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker [C.Campbell].,9,20,2012 -20120916_ARI@NE,4,7,19,NE,ARI,2,10,35,(7:19) (No Huddle Shotgun) D.Woodhead up the middle to ARZ 35 for no gain (C.Campbell).,9,20,2012 -20120916_ARI@NE,4,6,54,NE,ARI,3,10,35,(6:54) (No Huddle Shotgun) T.Brady pass incomplete short right to R.Gronkowski (D.Washington).,9,20,2012 -20120916_ARI@NE,4,6,50,NE,ARI,4,10,35,(6:50) S.Gostkowski 53 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,9,20,2012 -20120916_ARI@NE,4,6,50,NE,ARI,,,35,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,12,20,2012 -20120916_ARI@NE,4,6,45,ARI,NE,1,10,80,(6:45) C.Wells up the middle to ARZ 22 for 2 yards (J.Mayo; V.Wilfork).,20,12,2012 -20120916_ARI@NE,4,6,6,ARI,NE,2,8,78,(6:06) K.Kolb pass incomplete short right to A.Sherman (P.Chung).,20,12,2012 -20120916_ARI@NE,4,6,1,ARI,NE,3,8,78,(6:01) (Shotgun) K.Kolb pass incomplete short right to L.Fitzgerald. Arizona challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),20,12,2012 -20120916_ARI@NE,4,5,54,ARI,NE,4,8,78,(5:54) D.Zastudil punts 53 yards to NE 25 Center-M.Leach. J.Edelman pushed ob at NE 28 for 3 yards (Q.Groves). PENALTY on NE Illegal Block Above the Waist 10 yards enforced at NE 28.,20,12,2012 -20120916_ARI@NE,4,5,42,NE,ARI,1,10,82,(5:42) (Shotgun) T.Brady pass short right to J.Edelman ran ob at NE 27 for 9 yards.,12,20,2012 -20120916_ARI@NE,4,5,22,NE,ARI,2,1,73,(5:22) (No Huddle Shotgun) T.Brady pass short left to W.Welker to NE 40 for 13 yards (W.Gay; J.Fleming).,12,20,2012 -20120916_ARI@NE,4,4,56,NE,ARI,1,10,60,(4:56) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to ARZ 41 for 19 yards (A.Wilson).,12,20,2012 -20120916_ARI@NE,4,4,28,NE,ARI,1,10,41,(4:28) (No Huddle Shotgun) T.Brady pass short middle to J.Edelman to ARZ 36 for 5 yards (D.Washington).,12,20,2012 -20120916_ARI@NE,4,3,56,NE,ARI,2,5,36,(3:56) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski pushed ob at ARZ 28 for 8 yards (D.Washington).,12,20,2012 -20120916_ARI@NE,4,3,50,NE,ARI,1,10,28,(3:50) (No Huddle Shotgun) T.Brady pass incomplete deep right to W.Welker.,12,20,2012 -20120916_ARI@NE,4,3,45,NE,ARI,2,10,28,(3:45) (Shotgun) T.Brady pass short middle to R.Gronkowski to ARZ 16 for 12 yards (P.Lenon). NE 12-Brady 5392 career pass attempts passing Joe Montana for 12th most all-time.,12,20,2012 -20120916_ARI@NE,4,3,19,NE,ARI,1,10,16,(3:19) (No Huddle Shotgun) T.Brady pass incomplete deep middle to R.Gronkowski (K.Rhodes).,12,20,2012 -20120916_ARI@NE,4,3,15,NE,ARI,2,10,16,(3:15) (Shotgun) T.Brady sacked at ARZ 18 for -2 yards (C.Campbell).,12,20,2012 -20120916_ARI@NE,4,2,49,NE,ARI,3,12,18,(2:49) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to ARZ 5 for 13 yards (J.Fleming).,12,20,2012 -20120916_ARI@NE,4,2,49,NE,ARI,1,5,5,(2:49) (Shotgun) T.Brady pass short middle to R.Gronkowski for 5 yards TOUCHDOWN. NE 12-Brady 34th straight regular season game with a TD pass 4th-longest all-time. NE 12-Brady 46th career 300-yard game 8th most all-time.,12,20,2012 -20120916_ARI@NE,4,2,49,NE,ARI,,,5,TWO-POINT CONVERSION ATTEMPT. T.Brady pass to R.Gronkowski is incomplete. ATTEMPT FAILS.,12,20,2012 -20120916_ARI@NE,4,2,49,NE,ARI,,,5,S.Gostkowski kicks 67 yards from NE 35 to ARZ -2. L.Stephens-Howling Touchback.,18,20,2012 -20120916_ARI@NE,4,2,6,ARI,NE,1,10,80,(2:06) R.Williams right tackle to ARZ 25 for 5 yards (C.Jones; D.Hightower).,20,18,2012 -20120916_ARI@NE,4,2,0,ARI,NE,2,5,75,(2:00) R.Williams up the middle to ARZ 38 for 13 yards (S.Gregory; P.Chung).,20,18,2012 -20120916_ARI@NE,4,1,53,ARI,NE,1,10,62,(1:53) R.Williams right end to ARZ 34 for -4 yards (R.Brace).,20,18,2012 -20120916_ARI@NE,4,1,14,ARI,NE,2,14,66,(1:14) R.Williams up the middle to ARZ 35 for 1 yard (V.Wilfork).,20,18,2012 -20120916_ARI@NE,4,1,10,ARI,NE,3,13,65,(1:10) R.Williams left end to ARZ 33 for -2 yards (B.Spikes). FUMBLES (B.Spikes) RECOVERED by NE-V.Wilfork at ARZ 30. V.Wilfork to ARZ 30 for no gain (A.Snyder).,20,18,2012 -20120916_ARI@NE,4,1,1,NE,ARI,1,10,30,(1:01) (Shotgun) T.Brady pass incomplete short left to W.Welker.,18,20,2012 -20120916_ARI@NE,4,0,58,NE,ARI,2,10,30,(:58) (Shotgun) D.Woodhead up the middle for 30 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NE-R.Gronkowski Offensive Holding 10 yards enforced at ARZ 20.,18,20,2012 -20120916_ARI@NE,4,0,52,NE,ARI,2,10,30,(:52) (Shotgun) T.Brady pass short left to W.Welker ran ob at ARZ 18 for 12 yards.,18,20,2012 -20120916_ARI@NE,4,0,46,NE,ARI,1,10,18,(:46) T.Brady right guard to ARZ 17 for 1 yard. PENALTY on NE-R.Gronkowski False Start 5 yards enforced at ARZ 18 - No Play.,18,20,2012 -20120916_ARI@NE,4,0,46,NE,ARI,1,15,23,(:46) T.Brady right guard to ARZ 24 for -1 yards (C.Campbell).,18,20,2012 -20120916_ARI@NE,4,0,7,NE,ARI,2,16,24,(:07) T.Brady spiked the ball to stop the clock.,18,20,2012 -20120916_ARI@NE,4,0,5,NE,ARI,3,16,24,(:05) S.Gostkowski 42 yard field goal is No Good Wide Left Center-D.Aiken Holder-Z.Mesko.,18,20,2012 -20120916_ARI@NE,4,0,1,ARI,NE,1,10,68,(:01) K.Kolb kneels to ARZ 31 for -1 yards.,20,18,2012 -20120916_ARI@NE,4,0,1,ARI,NE,,,68,                      ,20,18,2012 -20120916_TB@NYG,1,0,0,TB,NYG,,,68,M.Koenen kicks 68 yards from TB 35 to NYG -3. D.Wilson to NYG 30 for 33 yards (E.Lorig).,0,0,2012 -20120916_TB@NYG,1,59,54,NYG,TB,1,10,70,(14:54) E.Manning pass short left to H.Nicks to NYG 38 for 8 yards (A.Talib).,0,0,2012 -20120916_TB@NYG,1,59,22,NYG,TB,2,2,62,(14:22) E.Manning pass deep right to H.Nicks to TB 22 for 40 yards (A.Talib).,0,0,2012 -20120916_TB@NYG,1,58,37,NYG,TB,1,10,22,(13:37) (Shotgun) A.Bradshaw right guard to TB 19 for 3 yards (L.David).,0,0,2012 -20120916_TB@NYG,1,58,2,NYG,TB,2,7,19,(13:02) (Shotgun) E.Manning pass incomplete short middle to D.Wilson.,0,0,2012 -20120916_TB@NYG,1,57,54,NYG,TB,3,7,19,(12:54) (Shotgun) E.Manning pass incomplete deep right to H.Nicks (A.Talib).,0,0,2012 -20120916_TB@NYG,1,57,48,NYG,TB,4,7,19,(12:48) L.Tynes 37 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20120916_TB@NYG,1,57,48,NYG,TB,,,19,L.Tynes kicks 69 yards from NYG 35 to TB -4. A.Benn to TB 15 for 19 yards (A.Tracy). FUMBLES (A.Tracy) recovered by TB-Q.Black at TB 13. Q.Black to TB 13 for no gain (J.Williams). Officially a return for 17 yards.,3,0,2012 -20120916_TB@NYG,1,57,34,TB,NYG,1,10,87,(12:34) D.Martin left guard to TB 17 for 4 yards (M.Boley).,0,3,2012 -20120916_TB@NYG,1,57,1,TB,NYG,2,6,83,(12:01) J.Freeman pass short right to M.Williams to TB 28 for 11 yards (C.Webster C.Blackburn).,0,3,2012 -20120916_TB@NYG,1,56,14,TB,NYG,1,10,72,(11:14) J.Freeman pass deep right to V.Jackson to NYG 31 for 41 yards (C.Webster A.Rolle).,0,3,2012 -20120916_TB@NYG,1,55,26,TB,NYG,1,10,31,(10:26) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,0,3,2012 -20120916_TB@NYG,1,55,18,TB,NYG,2,10,31,(10:18) D.Martin right tackle to NYG 28 for 3 yards (L.Joseph J.Pierre-Paul).,0,3,2012 -20120916_TB@NYG,1,54,37,TB,NYG,3,7,28,(9:37) (Shotgun) J.Freeman pass short left to D.Ware to NYG 27 for 1 yard (J.Hosley J.Williams).,0,3,2012 -20120916_TB@NYG,1,53,53,TB,NYG,4,6,27,(8:53) C.Barth 45 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,3,2012 -20120916_TB@NYG,1,53,53,TB,NYG,,,27,M.Koenen kicks 47 yards from TB 35 to NYG 18. M.Bennett pushed ob at NYG 31 for 13 yards (E.Lorig L.Johnson).,3,3,2012 -20120916_TB@NYG,1,53,37,NYG,TB,1,10,69,(8:37) A.Bradshaw right end to NYG 31 for no gain (G.McCoy R.Miller).,3,3,2012 -20120916_TB@NYG,1,52,58,NYG,TB,2,10,69,(7:58) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 47 for 16 yards (M.Foster Q.Black).,3,3,2012 -20120916_TB@NYG,1,52,21,NYG,TB,1,10,53,(7:21) D.Wilson right end to TB 49 for 4 yards (A.Talib).,3,3,2012 -20120916_TB@NYG,1,51,43,NYG,TB,2,6,49,(6:43) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,3,3,2012 -20120916_TB@NYG,1,51,35,NYG,TB,3,6,49,(6:35) (Shotgun) E.Manning pass short middle to V.Cruz to TB 29 for 20 yards (D.Watson) [M.Bennett].,3,3,2012 -20120916_TB@NYG,1,50,50,NYG,TB,1,10,29,(5:50) A.Bradshaw up the middle to TB 17 for 12 yards (R.Barber M.Barron).,3,3,2012 -20120916_TB@NYG,1,50,9,NYG,TB,1,10,17,(5:09) D.Wilson left guard to TB 16 for 1 yard (Q.Black R.Barber).,3,3,2012 -20120916_TB@NYG,1,49,28,NYG,TB,2,9,16,(4:28) (Shotgun) E.Manning pass short right to D.Hixon to TB 4 for 12 yards (M.Foster B.McDonald). PENALTY on TB-M.Foster Personal Foul 2 yards enforced at TB 4.,3,3,2012 -20120916_TB@NYG,1,49,5,NYG,TB,1,2,2,(4:05) E.Manning pass incomplete short middle to W.Beatty.,3,3,2012 -20120916_TB@NYG,1,48,59,NYG,TB,2,2,2,(3:59) A.Bradshaw up the middle to TB 1 for 1 yard (M.Foster G.Gibson). NYG-D.Diehl was injured during the play.,3,3,2012 -20120916_TB@NYG,1,48,31,NYG,TB,3,1,1,(3:31) PENALTY on NYG-W.Beatty False Start 5 yards enforced at TB 1 - No Play.,3,3,2012 -20120916_TB@NYG,1,48,8,NYG,TB,3,6,6,(3:08) (Shotgun) E.Manning pass incomplete short middle to M.Bennett.,3,3,2012 -20120916_TB@NYG,1,47,58,NYG,TB,4,6,6,(2:58) L.Tynes 24 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,3,2012 -20120916_TB@NYG,1,47,58,NYG,TB,,,6,L.Tynes kicks 66 yards from NYG 35 to TB -1. A.Benn to TB 19 for 20 yards (M.Herzlich).,6,3,2012 -20120916_TB@NYG,1,47,48,TB,NYG,1,10,81,(2:48) J.Freeman pass short right to E.Lorig pushed ob at TB 27 for 8 yards (K.Phillips).,3,6,2012 -20120916_TB@NYG,1,47,22,TB,NYG,2,2,73,(2:22) P.Parker left end pushed ob at TB 34 for 7 yards (A.Rolle). End Around.,3,6,2012 -20120916_TB@NYG,1,46,46,TB,NYG,1,10,66,(1:46) J.Freeman pass deep left to V.Jackson to NYG 49 for 17 yards (M.Kiwanuka).,3,6,2012 -20120916_TB@NYG,1,46,8,TB,NYG,1,10,49,(1:08) J.Freeman pass incomplete deep right to V.Jackson.,3,6,2012 -20120916_TB@NYG,1,45,56,TB,NYG,2,10,49,(:56) J.Freeman sacked at TB 44 for -7 yards (C.Blackburn).,3,6,2012 -20120916_TB@NYG,1,45,21,TB,NYG,3,17,56,(:21) (Shotgun) D.Ware up the middle to 50 for 6 yards (J.Tuck).,3,6,2012 -20120916_TB@NYG,2,45,0,TB,NYG,4,11,50,(15:00) M.Koenen punts 39 yards to NYG 11 Center-A.Economos fair catch by R.Randle.,3,6,2012 -20120916_TB@NYG,2,44,53,NYG,TB,1,10,89,(14:53) E.Manning pass deep middle intended for M.Bennett INTERCEPTED by M.Foster at NYG 28. M.Foster to NYG 28 for no gain (M.Bennett).,6,3,2012 -20120916_TB@NYG,2,44,44,TB,NYG,1,10,28,(14:44) J.Freeman pass incomplete short right to M.Williams.,3,6,2012 -20120916_TB@NYG,2,44,39,TB,NYG,2,10,28,(14:39) D.Martin left tackle to NYG 29 for -1 yards (M.Kiwanuka L.Joseph).,3,6,2012 -20120916_TB@NYG,2,43,55,TB,NYG,3,11,29,(13:55) (Shotgun) J.Freeman pass deep left to V.Jackson for 29 yards TOUCHDOWN.,3,6,2012 -20120916_TB@NYG,2,43,55,TB,NYG,,,29,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,3,6,2012 -20120916_TB@NYG,2,43,55,TB,NYG,,,29,M.Koenen kicks 72 yards from TB 35 to NYG -7. D.Wilson Touchback.,10,6,2012 -20120916_TB@NYG,2,43,48,NYG,TB,1,10,80,(13:48) A.Bradshaw left guard to NYG 20 for no gain (M.Foster).,6,10,2012 -20120916_TB@NYG,2,43,14,NYG,TB,2,10,80,(13:14) E.Manning pass short right to V.Cruz to NYG 32 for 12 yards (E.Wright).,6,10,2012 -20120916_TB@NYG,2,42,48,NYG,TB,1,10,68,(12:48) E.Manning pass incomplete short right to H.Nicks (A.Talib).,6,10,2012 -20120916_TB@NYG,2,42,41,NYG,TB,2,10,68,(12:41) (Shotgun) H.Hynoski left tackle to NYG 35 for 3 yards (M.Foster).,6,10,2012 -20120916_TB@NYG,2,42,1,NYG,TB,3,7,65,(12:01) (Shotgun) E.Manning pass short left to H.Nicks to NYG 40 for 5 yards (A.Talib).,6,10,2012 -20120916_TB@NYG,2,41,23,NYG,TB,4,2,60,(11:23) S.Weatherford punts 47 yards to TB 13 Center-Z.DeOssie. S.Stroughter to TB 26 for 13 yards (S.Paysinger J.Williams).,6,10,2012 -20120916_TB@NYG,2,41,10,TB,NYG,1,10,74,(11:10) D.Martin up the middle to TB 28 for 2 yards (J.Pierre-Paul).,10,6,2012 -20120916_TB@NYG,2,40,32,TB,NYG,2,8,72,(10:32) J.Freeman sacked at TB 20 for -8 yards (J.Pierre-Paul).,10,6,2012 -20120916_TB@NYG,2,39,50,TB,NYG,3,16,80,(9:50) (Shotgun) J.Freeman pass short left to D.Clark to TB 17 for -3 yards (M.Boley).,10,6,2012 -20120916_TB@NYG,2,39,21,TB,NYG,4,19,83,(9:21) M.Koenen punts 52 yards to NYG 31 Center-A.Economos. R.Randle to NYG 43 for 12 yards (A.Benn C.Grimm).,10,6,2012 -20120916_TB@NYG,2,39,9,NYG,TB,1,10,57,(9:09) (Shotgun) E.Manning pass short middle to V.Cruz to TB 46 for 11 yards (M.Barron L.David).,6,10,2012 -20120916_TB@NYG,2,38,35,NYG,TB,1,10,46,(8:35) E.Manning pass short right to H.Hynoski to TB 41 for 5 yards (E.Wright). NYG-H.Hynoski was injured during the play.,6,10,2012 -20120916_TB@NYG,2,38,5,NYG,TB,2,5,41,(8:05) A.Brown left guard to TB 42 for -1 yards (L.David).,6,10,2012 -20120916_TB@NYG,2,37,22,NYG,TB,3,6,42,(7:22) (Shotgun) E.Manning pass short left intended for V.Cruz INTERCEPTED by B.McDonald at TB 34. B.McDonald to NYG 26 for 40 yards (A.Brown). PENALTY on NYG-A.Brown Horse Collar Tackle 13 yards enforced at NYG 26.,6,10,2012 -20120916_TB@NYG,2,37,6,TB,NYG,1,10,13,(7:06) (Shotgun) D.Martin right guard to NYG 8 for 5 yards (O.Umenyiora J.Pierre-Paul).,10,6,2012 -20120916_TB@NYG,2,36,30,TB,NYG,2,5,8,(6:30) D.Martin left end for 8 yards TOUCHDOWN.,10,6,2012 -20120916_TB@NYG,2,36,30,TB,NYG,,,8,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,10,6,2012 -20120916_TB@NYG,2,36,30,TB,NYG,,,8,M.Koenen kicks 74 yards from TB 35 to NYG -9. D.Wilson Touchback.,17,6,2012 -20120916_TB@NYG,2,36,19,NYG,TB,1,10,80,(6:19) A.Brown up the middle to NYG 43 for 23 yards (L.David).,6,17,2012 -20120916_TB@NYG,2,35,43,NYG,TB,1,10,57,(5:43) A.Brown right guard to NYG 49 for 6 yards (R.Barber). PENALTY on NYG-D.Baas Offensive Holding 10 yards enforced at NYG 43 - No Play.,6,17,2012 -20120916_TB@NYG,2,35,17,NYG,TB,1,20,67,(5:17) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (E.Wright) [A.Clayborn]. PENALTY on TB-E.Wright Defensive Holding 5 yards enforced at NYG 33 - No Play.,6,17,2012 -20120916_TB@NYG,2,35,7,NYG,TB,1,10,62,(5:07) (Shotgun) A.Brown up the middle to NYG 43 for 5 yards (G.McCoy Q.Black).,6,17,2012 -20120916_TB@NYG,2,34,37,NYG,TB,2,5,57,(4:37) (Shotgun) E.Manning pass short middle to M.Bennett to TB 46 for 11 yards (M.Foster M.Barron).,6,17,2012 -20120916_TB@NYG,2,34,0,NYG,TB,1,10,46,(4:00) (Shotgun) E.Manning pass short middle to V.Cruz to TB 43 for 3 yards (Q.Black).,6,17,2012 -20120916_TB@NYG,2,33,19,NYG,TB,2,7,43,(3:19) (Shotgun) E.Manning pass short left to V.Cruz to TB 38 for 5 yards (M.Barron M.Foster).,6,17,2012 -20120916_TB@NYG,2,32,36,NYG,TB,3,2,38,(2:36) E.Manning pass short right to V.Cruz to TB 35 for 3 yards (Q.Black).,6,17,2012 -20120916_TB@NYG,2,32,5,NYG,TB,1,10,35,(2:05) (Shotgun) A.Brown left guard to TB 23 for 12 yards (M.Barron Q.Black).,6,17,2012 -20120916_TB@NYG,2,31,59,NYG,TB,1,10,23,(1:59) (Shotgun) E.Manning pass short middle to H.Nicks for 23 yards TOUCHDOWN. Penalty on TB-M.Bennett Defensive Offside declined.,6,17,2012 -20120916_TB@NYG,2,31,59,NYG,TB,,,23,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,6,17,2012 -20120916_TB@NYG,2,31,59,NYG,TB,,,23,L.Tynes kicks 65 yards from NYG 35 to TB 0. A.Benn to TB 22 for 22 yards (S.Brown).,13,17,2012 -20120916_TB@NYG,2,31,49,TB,NYG,1,10,78,(1:49) (Shotgun) D.Martin up the middle to TB 23 for 1 yard (J.Tuck J.Pierre-Paul).,17,13,2012 -20120916_TB@NYG,2,31,19,TB,NYG,2,9,77,(1:19) (No Huddle Shotgun) J.Freeman pass incomplete short middle to P.Parker.,17,13,2012 -20120916_TB@NYG,2,31,14,TB,NYG,3,9,77,(1:14) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,17,13,2012 -20120916_TB@NYG,2,31,8,TB,NYG,4,9,77,(1:08) M.Koenen punts 53 yards to NYG 24 Center-A.Economos. R.Randle to TB 31 for 45 yards (D.Watson). Penalty on NYG-A.Tracy Offensive Holding declined. PENALTY on NYG-J.Williams Illegal Block Above the Waist 10 yards enforced at NYG 35. Officially a return for 11 yards.,17,13,2012 -20120916_TB@NYG,2,30,53,NYG,TB,1,10,75,(:53) (Shotgun) E.Manning pass short left to H.Nicks to NYG 42 for 17 yards (A.Talib).,13,17,2012 -20120916_TB@NYG,2,30,46,NYG,TB,1,10,58,(:46) (Shotgun) E.Manning pass short left to V.Cruz to TB 47 for 11 yards (M.Barron).,13,17,2012 -20120916_TB@NYG,2,30,39,NYG,TB,1,10,47,(:39) (Shotgun) PENALTY on NYG-W.Beatty False Start 5 yards enforced at TB 47 - No Play.,13,17,2012 -20120916_TB@NYG,2,30,39,NYG,TB,1,15,52,(:39) E.Manning pass short middle to V.Cruz to TB 39 for 13 yards (B.McDonald E.Wright).,13,17,2012 -20120916_TB@NYG,2,30,29,NYG,TB,2,2,39,(:29) (Shotgun) E.Manning pass incomplete deep left to R.Barden.,13,17,2012 -20120916_TB@NYG,2,30,23,NYG,TB,3,2,39,(:23) (Shotgun) E.Manning pass short left intended for V.Cruz INTERCEPTED by E.Wright at TB 40. E.Wright for 60 yards TOUCHDOWN.,13,17,2012 -20120916_TB@NYG,2,30,23,TB,NYG,,,39,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,17,13,2012 -20120916_TB@NYG,2,30,23,TB,NYG,,,39,M.Koenen kicks 66 yards from TB 35 to NYG -1. D.Wilson to NYG 8 for 9 yards (D.Watson C.Grimm).,24,13,2012 -20120916_TB@NYG,2,30,2,NYG,TB,1,10,92,(:02) E.Manning kneels to NYG 7 for -1 yards.,13,24,2012 -20120916_TB@NYG,3,30,0,NYG,TB,,,92,L.Tynes kicks 67 yards from NYG 35 to TB -2. A.Benn pushed ob at NYG 47 for 55 yards (J.Hosley).,13,24,2012 -20120916_TB@NYG,3,29,52,TB,NYG,1,10,47,(14:52) D.Martin up the middle to NYG 35 for 12 yards (J.Hosley A.Rolle).,24,13,2012 -20120916_TB@NYG,3,29,18,TB,NYG,1,10,35,(14:18) D.Martin right guard to NYG 33 for 2 yards (J.Hosley).,24,13,2012 -20120916_TB@NYG,3,28,37,TB,NYG,2,8,33,(13:37) J.Freeman pass incomplete short left to D.Martin [L.Joseph].,24,13,2012 -20120916_TB@NYG,3,28,27,TB,NYG,3,8,33,(13:27) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (M.Coe).,24,13,2012 -20120916_TB@NYG,3,28,19,TB,NYG,4,8,33,(13:19) C.Barth 52 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,24,13,2012 -20120916_TB@NYG,3,28,19,TB,NYG,,,33,M.Koenen kicks 68 yards from TB 35 to NYG -3. D.Wilson to NYG 41 for 44 yards (M.Lewis).,27,13,2012 -20120916_TB@NYG,3,28,4,NYG,TB,1,10,59,(13:04) E.Manning pass short right to H.Nicks to TB 48 for 11 yards (A.Talib).,13,27,2012 -20120916_TB@NYG,3,27,30,NYG,TB,1,10,48,(12:30) A.Brown up the middle to TB 49 for -1 yards (M.Foster).,13,27,2012 -20120916_TB@NYG,3,26,50,NYG,TB,2,11,49,(11:50) E.Manning pass short left to M.Bennett to TB 43 for 6 yards (M.Foster).,13,27,2012 -20120916_TB@NYG,3,26,0,NYG,TB,3,5,43,(11:00) (Shotgun) E.Manning pass incomplete short right to V.Cruz (G.McCoy).,13,27,2012 -20120916_TB@NYG,3,25,55,NYG,TB,4,5,43,(10:55) S.Weatherford punts 32 yards to TB 11 Center-Z.DeOssie. S.Stroughter to TB 14 for 3 yards (Z.DeOssie S.Brown).,13,27,2012 -20120916_TB@NYG,3,25,46,TB,NYG,1,10,86,(10:46) (Shotgun) PENALTY on TB-D.Dotson False Start 5 yards enforced at TB 14 - No Play.,27,13,2012 -20120916_TB@NYG,3,25,46,TB,NYG,1,15,91,(10:46) J.Freeman pass deep right to V.Jackson to TB 31 for 22 yards (K.Phillips C.Webster).,27,13,2012 -20120916_TB@NYG,3,25,6,TB,NYG,1,10,69,(10:06) D.Martin up the middle to TB 34 for 3 yards (R.Bernard K.Phillips).,27,13,2012 -20120916_TB@NYG,3,24,24,TB,NYG,2,7,66,(9:24) D.Martin right end to TB 41 for 7 yards (J.Pierre-Paul C.Blackburn).,27,13,2012 -20120916_TB@NYG,3,23,37,TB,NYG,1,10,59,(8:37) D.Martin left tackle to TB 45 for 4 yards (R.Bernard J.Pierre-Paul).,27,13,2012 -20120916_TB@NYG,3,23,0,TB,NYG,2,6,55,(8:00) D.Martin left end to 50 for 5 yards (A.Rolle).,27,13,2012 -20120916_TB@NYG,3,22,9,TB,NYG,3,1,50,(7:09) D.Martin left guard to TB 49 for -1 yards (J.Pierre-Paul M.Kuhn).,27,13,2012 -20120916_TB@NYG,3,21,28,TB,NYG,4,2,51,(6:28) M.Koenen punts 33 yards to NYG 18 Center-A.Economos fair catch by R.Randle.,27,13,2012 -20120916_TB@NYG,3,21,19,NYG,TB,1,10,82,(6:19) D.Wilson left end to NYG 19 for 1 yard (R.Barber). TB-E.Wright was injured during the play.,13,27,2012 -20120916_TB@NYG,3,21,0,NYG,TB,2,9,81,(6:00) (Shotgun) E.Manning pass short middle to A.Brown to NYG 30 for 11 yards (L.David).,13,27,2012 -20120916_TB@NYG,3,20,20,NYG,TB,1,10,70,(5:20) (Shotgun) E.Manning pass incomplete short left to V.Cruz (B.McDonald) [G.McCoy].,13,27,2012 -20120916_TB@NYG,3,20,15,NYG,TB,2,10,70,(5:15) (Shotgun) E.Manning pass incomplete short right to V.Cruz (B.McDonald). PENALTY on TB-A.Talib Defensive Holding 5 yards enforced at NYG 30 - No Play.,13,27,2012 -20120916_TB@NYG,3,20,9,NYG,TB,1,10,65,(5:09) (Shotgun) A.Brown right guard to NYG 39 for 4 yards (G.Gibson M.Bennett).,13,27,2012 -20120916_TB@NYG,3,19,33,NYG,TB,2,6,61,(4:33) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 44 for 5 yards (L.David B.McDonald).,13,27,2012 -20120916_TB@NYG,3,18,56,NYG,TB,3,1,56,(3:56) (Shotgun) A.Brown left guard to NYG 46 for 2 yards (R.Miller).,13,27,2012 -20120916_TB@NYG,3,18,16,NYG,TB,1,10,54,(3:16) E.Manning pass incomplete deep right to V.Cruz (R.Barber).,13,27,2012 -20120916_TB@NYG,3,18,7,NYG,TB,2,10,54,(3:07) (Shotgun) E.Manning pass incomplete deep left to H.Nicks. PENALTY on TB-A.Talib Defensive Pass Interference 16 yards enforced at NYG 46 - No Play.,13,27,2012 -20120916_TB@NYG,3,18,1,NYG,TB,1,10,38,(3:01) (Shotgun) A.Brown up the middle to TB 30 for 8 yards (L.David B.McDonald).,13,27,2012 -20120916_TB@NYG,3,17,24,NYG,TB,2,2,30,(2:24) (Shotgun) E.Manning pass short left to H.Nicks to TB 19 for 11 yards (M.Foster).,13,27,2012 -20120916_TB@NYG,3,16,42,NYG,TB,1,10,23,(1:42) E.Manning FUMBLES (Aborted) at TB 19 recovered by NYG-A.Brown at TB 23. A.Brown to TB 18 for 5 yards (M.Foster). Officially a rush for 0 yards and a recovery for 1 yard.,13,27,2012 -20120916_TB@NYG,3,15,57,NYG,TB,2,9,18,(:57) (Shotgun) E.Manning pass incomplete deep left to M.Bennett (M.Barron).,13,27,2012 -20120916_TB@NYG,3,15,50,NYG,TB,3,9,18,(:50) (Shotgun) E.Manning pass incomplete short left to D.Wilson (R.Barber).,13,27,2012 -20120916_TB@NYG,3,15,44,NYG,TB,4,9,18,(:44) L.Tynes 36 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,13,27,2012 -20120916_TB@NYG,3,15,44,NYG,TB,,,18,L.Tynes kicks 66 yards from NYG 35 to TB -1. A.Benn to TB 24 for 25 yards (W.Hill).,16,27,2012 -20120916_TB@NYG,3,15,34,TB,NYG,1,10,76,(:34) J.Freeman pass incomplete short middle to V.Jackson (K.Phillips).,27,16,2012 -20120916_TB@NYG,3,15,28,TB,NYG,2,10,76,(:28) J.Freeman pass short middle intended for S.Stroughter INTERCEPTED by C.Webster [L.Joseph] at TB 36. C.Webster to TB 36 for no gain (S.Stroughter).,27,16,2012 -20120916_TB@NYG,3,15,21,NYG,TB,1,10,36,(:21) E.Manning pass short left to M.Bennett to TB 28 for 8 yards (R.Barber).,16,27,2012 -20120916_TB@NYG,4,15,0,NYG,TB,2,2,28,(15:00) A.Brown left end pushed ob at TB 18 for 10 yards (M.Barron).,16,27,2012 -20120916_TB@NYG,4,14,33,NYG,TB,1,10,18,(14:33) (Shotgun) A.Brown left end to TB 19 for -1 yards (M.Foster M.Barron). TB-M.Foster was injured during the play.,16,27,2012 -20120916_TB@NYG,4,13,59,NYG,TB,2,11,19,(13:59) E.Manning pass incomplete deep middle to M.Bennett (M.Barron).,16,27,2012 -20120916_TB@NYG,4,13,54,NYG,TB,3,11,19,(13:54) (Shotgun) E.Manning pass short left to H.Nicks to TB 5 for 14 yards (A.Talib).,16,27,2012 -20120916_TB@NYG,4,13,19,NYG,TB,1,5,5,(13:19) E.Manning pass incomplete short middle to V.Cruz (A.Hayward R.Barber).,16,27,2012 -20120916_TB@NYG,4,13,13,NYG,TB,2,5,5,(13:13) (Shotgun) A.Brown right tackle to TB 6 for -1 yards (L.David M.Barron).,16,27,2012 -20120916_TB@NYG,4,12,34,NYG,TB,3,6,6,(12:34) E.Manning pass incomplete short left to M.Bennett.,16,27,2012 -20120916_TB@NYG,4,12,26,NYG,TB,4,6,6,(12:26) L.Tynes 24 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,16,27,2012 -20120916_TB@NYG,4,12,26,NYG,TB,,,6,L.Tynes kicks 58 yards from NYG 35 to TB 7. A.Benn to TB 26 for 19 yards (M.Coe).,19,27,2012 -20120916_TB@NYG,4,12,17,TB,NYG,1,10,74,(12:17) D.Martin right end to TB 28 for 2 yards (R.Bernard K.Phillips).,27,19,2012 -20120916_TB@NYG,4,11,37,TB,NYG,2,8,72,(11:37) (Shotgun) D.Martin up the middle to TB 29 for 1 yard (J.Tuck R.Bernard).,27,19,2012 -20120916_TB@NYG,4,10,57,TB,NYG,3,7,71,(10:57) (Shotgun) J.Freeman pass short middle to S.Stroughter to TB 43 for 14 yards (K.Phillips).,27,19,2012 -20120916_TB@NYG,4,10,9,TB,NYG,1,10,57,(10:09) D.Martin right end to TB 46 for 3 yards (R.Bernard K.Phillips).,27,19,2012 -20120916_TB@NYG,4,9,19,TB,NYG,2,7,54,(9:19) D.Martin right end to TB 45 for -1 yards (L.Joseph).,27,19,2012 -20120916_TB@NYG,4,8,36,TB,NYG,3,8,55,(8:36) (Shotgun) J.Freeman pass short left to M.Williams to NYG 48 for 7 yards (M.Coe).,27,19,2012 -20120916_TB@NYG,4,7,53,TB,NYG,4,1,48,(7:53) M.Koenen punts 36 yards to NYG 12 Center-A.Economos fair catch by R.Randle.,27,19,2012 -20120916_TB@NYG,4,7,41,NYG,TB,1,10,88,(7:41) (Shotgun) E.Manning pass short middle to A.Brown to NYG 20 for 8 yards (M.Foster B.McDonald).,19,27,2012 -20120916_TB@NYG,4,7,8,NYG,TB,2,2,80,(7:08) (Shotgun) E.Manning pass incomplete short left to H.Nicks (A.Talib).,19,27,2012 -20120916_TB@NYG,4,6,59,NYG,TB,3,2,80,(6:59) (Shotgun) E.Manning pass deep right to V.Cruz for 80 yards TOUCHDOWN.,19,27,2012 -20120916_TB@NYG,4,6,59,NYG,TB,,,80,TWO-POINT CONVERSION ATTEMPT. A.Brown rushes right guard. ATTEMPT SUCCEEDS.,19,27,2012 -20120916_TB@NYG,4,6,59,NYG,TB,,,80,L.Tynes kicks 63 yards from NYG 35 to TB 2. A.Benn to TB 24 for 22 yards (S.Paysinger).,27,27,2012 -20120916_TB@NYG,4,6,42,TB,NYG,1,10,76,(6:42) D.Martin up the middle to TB 28 for 4 yards (C.Blackburn L.Joseph).,27,27,2012 -20120916_TB@NYG,4,6,5,TB,NYG,2,6,72,(6:05) J.Freeman pass incomplete deep left to V.Jackson.,27,27,2012 -20120916_TB@NYG,4,5,56,TB,NYG,3,6,72,(5:56) J.Freeman pass incomplete short left to V.Jackson.,27,27,2012 -20120916_TB@NYG,4,5,51,TB,NYG,4,6,72,(5:51) M.Koenen punts 39 yards to NYG 33 Center-A.Economos out of bounds.,27,27,2012 -20120916_TB@NYG,4,5,43,NYG,TB,1,10,67,(5:43) E.Manning pass incomplete deep right to H.Nicks (A.Talib). NYG-H.Nicks was injured during the play.,27,27,2012 -20120916_TB@NYG,4,5,36,NYG,TB,2,10,67,(5:36) (Shotgun) E.Manning pass short right to M.Bennett to NYG 47 for 14 yards (B.McDonald).,27,27,2012 -20120916_TB@NYG,4,4,52,NYG,TB,1,10,53,(4:52) (Shotgun) E.Manning pass short middle to H.Nicks to TB 33 for 20 yards (M.Barron).,27,27,2012 -20120916_TB@NYG,4,4,9,NYG,TB,1,10,33,(4:09) (Shotgun) E.Manning pass deep right to M.Bennett for 33 yards TOUCHDOWN.,27,27,2012 -20120916_TB@NYG,4,4,9,NYG,TB,,,33,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,27,27,2012 -20120916_TB@NYG,4,4,9,NYG,TB,,,33,L.Tynes kicks 66 yards from NYG 35 to TB -1. D.Ware Touchback.,34,27,2012 -20120916_TB@NYG,4,3,59,TB,NYG,1,10,80,(3:59) D.Martin left guard to TB 23 for 3 yards (J.Hosley).,27,34,2012 -20120916_TB@NYG,4,3,22,TB,NYG,2,7,77,(3:22) (Shotgun) J.Freeman pass short middle to D.Clark to TB 33 for 10 yards (C.Blackburn J.Hosley). Penalty on NYG-J.Tuck Defensive Offside declined.,27,34,2012 -20120916_TB@NYG,4,3,12,TB,NYG,1,10,67,(3:12) (Shotgun) J.Freeman pass short left to D.Clark to TB 39 for 6 yards (J.Tryon).,27,34,2012 -20120916_TB@NYG,4,2,41,TB,NYG,2,4,61,(2:41) (Shotgun) J.Freeman pass short middle to D.Clark to NYG 41 for 20 yards (M.Boley).,27,34,2012 -20120916_TB@NYG,4,2,8,TB,NYG,1,10,41,(2:08) (No Huddle Shotgun) J.Freeman pass deep left to M.Williams for 41 yards TOUCHDOWN.,27,34,2012 -20120916_TB@NYG,4,2,8,TB,NYG,,,41,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,27,34,2012 -20120916_TB@NYG,4,2,8,TB,NYG,,,41,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,34,34,2012 -20120916_TB@NYG,4,1,58,NYG,TB,1,10,80,(1:58) (Shotgun) E.Manning pass deep right to R.Barden to NYG 44 for 24 yards (B.McDonald).,34,34,2012 -20120916_TB@NYG,4,1,31,NYG,TB,1,10,56,(1:31) (No Huddle Shotgun) PENALTY on NYG-S.Locklear False Start 5 yards enforced at NYG 44 - No Play.,34,34,2012 -20120916_TB@NYG,4,1,28,NYG,TB,1,15,61,(1:28) (Shotgun) E.Manning pass deep right to H.Nicks pushed ob at TB 11 for 50 yards (A.Black).,34,34,2012 -20120916_TB@NYG,4,1,20,NYG,TB,1,10,11,(1:20) (Shotgun) A.Brown up the middle to TB 2 for 9 yards (A.Talib).,34,34,2012 -20120916_TB@NYG,4,0,34,NYG,TB,2,1,2,(:34) A.Brown left guard for 2 yards TOUCHDOWN.,34,34,2012 -20120916_TB@NYG,4,0,34,NYG,TB,,,2,(Kick formation) PENALTY on NYG-K.Boothe False Start 5 yards enforced at TB 2 - No Play.,34,34,2012 -20120916_TB@NYG,4,0,34,NYG,TB,,,2,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,34,34,2012 -20120916_TB@NYG,4,0,34,NYG,TB,,,2,L.Tynes kicks 47 yards from NYG 35 to TB 18. D.Ware to TB 36 for 18 yards (A.Rolle S.Brown).,41,34,2012 -20120916_TB@NYG,4,0,25,TB,NYG,1,10,64,(:25) (Shotgun) J.Freeman pass deep left to V.Jackson ran ob at NYG 45 for 19 yards (J.Tryon).,34,41,2012 -20120916_TB@NYG,4,0,18,TB,NYG,1,10,45,(:18) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at NYG 16 for 29 yards (A.Rolle). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Freeman pass incomplete deep left to M.Williams (A.Rolle).,34,41,2012 -20120916_TB@NYG,4,0,12,TB,NYG,2,10,45,(:12) (Shotgun) J.Freeman pass deep middle intended for D.Clark INTERCEPTED by M.Boley at NYG 24. M.Boley to NYG 30 for 6 yards (V.Jackson).,34,41,2012 -20120916_TB@NYG,4,0,5,NYG,TB,1,10,70,(:05) E.Manning kneels to NYG 29 for -1 yards.,41,34,2012 -20120916_TB@NYG,4,0,5,NYG,TB,,,70,                      ,41,34,2012 -20120916_BAL@PHI,1,0,0,BAL,PHI,,,70,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20120916_BAL@PHI,1,60,0,PHI,BAL,1,10,80,(15:00) M.Vick pass deep right to B.Celek to PHI 43 for 23 yards (B.Pollard).,0,0,2012 -20120916_BAL@PHI,1,59,22,PHI,BAL,1,10,57,(14:22) (No Huddle Shotgun) M.Vick pass short left to D.Jackson pushed ob at BLT 40 for 17 yards (D.Ellerbe).,0,0,2012 -20120916_BAL@PHI,1,58,52,PHI,BAL,1,10,40,(13:52) (No Huddle) L.McCoy right end to BLT 38 for 2 yards (A.McClellan).,0,0,2012 -20120916_BAL@PHI,1,58,12,PHI,BAL,2,8,38,(13:12) (No Huddle Shotgun) M.Vick pass short left to D.Jackson to BLT 40 for -2 yards (A.McClellan).,0,0,2012 -20120916_BAL@PHI,1,57,25,PHI,BAL,3,10,40,(12:25) (No Huddle Shotgun) M.Vick pass short right to J.Avant to BLT 24 for 16 yards (R.Lewis).,0,0,2012 -20120916_BAL@PHI,1,56,47,PHI,BAL,1,10,24,(11:47) (No Huddle Shotgun) M.Vick pass short left to B.Celek to BLT 19 for 5 yards (E.Reed).,0,0,2012 -20120916_BAL@PHI,1,56,10,PHI,BAL,2,5,19,(11:10) (No Huddle Shotgun) D.Johnson left end ran ob at BLT 13 for 6 yards.,0,0,2012 -20120916_BAL@PHI,1,55,54,PHI,BAL,1,10,13,(10:54) S.Havili right end to BLT 12 for 1 yard (C.Upshaw).,0,0,2012 -20120916_BAL@PHI,1,55,22,PHI,BAL,2,9,12,(10:22) M.Vick pass deep middle intended for C.Harbor INTERCEPTED by B.Pollard at BLT -5. Touchback.,0,0,2012 -20120916_BAL@PHI,1,55,14,BAL,PHI,1,10,80,(10:14) (Shotgun) J.Flacco pass short right to R.Rice to BLT 20 for no gain (N.Allen).,0,0,2012 -20120916_BAL@PHI,1,54,40,BAL,PHI,2,10,80,(9:40) (No Huddle Shotgun) J.Flacco sacked at BLT 15 for -5 yards (T.Cole). FUMBLES (T.Cole) RECOVERED by PHI-C.Jenkins at BLT 15. C.Jenkins to BLT 15 for no gain (M.Birk).,0,0,2012 -20120916_BAL@PHI,1,54,34,PHI,BAL,1,10,15,(9:34) L.McCoy right end to BLT 15 for no gain (L.Webb; A.McClellan).,0,0,2012 -20120916_BAL@PHI,1,53,57,PHI,BAL,2,10,15,(8:57) L.McCoy left end to BLT 15 for no gain (R.Lewis). PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at BLT 15 - No Play.,0,0,2012 -20120916_BAL@PHI,1,53,29,PHI,BAL,2,20,25,(8:29) (Shotgun) L.McCoy left end to BLT 25 for no gain (C.Upshaw).,0,0,2012 -20120916_BAL@PHI,1,52,51,PHI,BAL,3,20,25,(7:51) (Shotgun) M.Vick pass short left to B.Celek to BLT 6 for 19 yards (B.Pollard).,0,0,2012 -20120916_BAL@PHI,1,52,11,PHI,BAL,4,1,6,(7:11) L.McCoy right end to BLT 4 for 2 yards (J.McClain).,0,0,2012 -20120916_BAL@PHI,1,51,24,PHI,BAL,1,4,4,(6:24) B.Brown up the middle to BLT 3 for 1 yard (E.Reed C.Upshaw).,0,0,2012 -20120916_BAL@PHI,1,50,48,PHI,BAL,2,3,3,(5:48) M.Vick pass incomplete short left to D.Jackson. PENALTY on BLT-E.Reed Roughing the Passer 2 yards enforced at BLT 3 - No Play.,0,0,2012 -20120916_BAL@PHI,1,50,43,PHI,BAL,1,1,1,(5:43) L.McCoy left guard for 1 yard TOUCHDOWN.,0,0,2012 -20120916_BAL@PHI,1,50,43,PHI,BAL,,,1,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,0,0,2012 -20120916_BAL@PHI,1,50,43,PHI,BAL,,,1,A.Henery kicks 72 yards from PHI 35 to BLT -7. D.Thompson to BLT 42 for 49 yards (D.Sims).,7,0,2012 -20120916_BAL@PHI,1,50,34,BAL,PHI,1,10,58,(5:34) J.Flacco pass deep right to E.Dickson to PHI 35 for 23 yards (N.Allen).,0,7,2012 -20120916_BAL@PHI,1,49,56,BAL,PHI,1,10,35,(4:56) R.Rice left tackle to PHI 30 for 5 yards (N.Allen).,0,7,2012 -20120916_BAL@PHI,1,49,28,BAL,PHI,2,5,30,(4:28) R.Rice up the middle to PHI 24 for 6 yards (A.Jordan).,0,7,2012 -20120916_BAL@PHI,1,48,57,BAL,PHI,1,10,24,(3:57) (No Huddle) J.Flacco pass short right to D.Pitta to PHI 16 for 8 yards (K.Coleman).,0,7,2012 -20120916_BAL@PHI,1,48,32,BAL,PHI,2,2,16,(3:32) (No Huddle) R.Rice up the middle to PHI 12 for 4 yards (N.Allen).,0,7,2012 -20120916_BAL@PHI,1,47,57,BAL,PHI,1,10,12,(2:57) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to PHI 5 for 7 yards (D.Ryans; K.Coleman).,0,7,2012 -20120916_BAL@PHI,1,47,12,BAL,PHI,2,3,5,(2:12) V.Leach right tackle for 5 yards TOUCHDOWN. Penalty on BLT-M.Yanda Personal Foul offsetting. Penalty on PHI-C.Jenkins Personal Foul offsetting.,0,7,2012 -20120916_BAL@PHI,1,47,12,BAL,PHI,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,7,2012 -20120916_BAL@PHI,1,47,12,BAL,PHI,,,5,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,7,7,2012 -20120916_BAL@PHI,1,47,8,PHI,BAL,1,10,80,(2:08) M.Vick pass deep left to B.Celek to PHI 41 for 21 yards (B.Pollard).,7,7,2012 -20120916_BAL@PHI,1,46,30,PHI,BAL,1,10,59,(1:30) B.Brown right end to PHI 44 for 3 yards (H.Ngata).,7,7,2012 -20120916_BAL@PHI,1,45,54,PHI,BAL,2,7,56,(:54) S.Havili left end to PHI 44 for no gain (H.Ngata M.Kemoeatu).,7,7,2012 -20120916_BAL@PHI,1,45,9,PHI,BAL,3,7,56,(:09) (Shotgun) M.Vick sacked at PHI 37 for -7 yards (B.Pollard).,7,7,2012 -20120916_BAL@PHI,2,45,0,PHI,BAL,4,14,63,(15:00) C.Henry punts 56 yards to BLT 7 Center-J.Dorenbos. J.Jones pushed ob at BLT 25 for 18 yards (J.Dorenbos).,7,7,2012 -20120916_BAL@PHI,2,44,50,BAL,PHI,1,10,75,(14:50) J.Flacco pass short left to V.Leach to BLT 31 for 6 yards (N.Allen).,7,7,2012 -20120916_BAL@PHI,2,44,27,BAL,PHI,2,4,69,(14:27) J.Flacco pass short left to D.Pitta to BLT 37 for 6 yards (N.Allen).,7,7,2012 -20120916_BAL@PHI,2,43,58,BAL,PHI,1,10,63,(13:58) J.Flacco pass short right to D.Pitta ran ob at BLT 41 for 4 yards (M.Kendricks).,7,7,2012 -20120916_BAL@PHI,2,43,31,BAL,PHI,2,6,59,(13:31) R.Rice left tackle to BLT 43 for 2 yards (F.Cox).,7,7,2012 -20120916_BAL@PHI,2,42,47,BAL,PHI,3,4,57,(12:47) (Shotgun) J.Flacco pass incomplete short left to R.Rice.,7,7,2012 -20120916_BAL@PHI,2,42,42,BAL,PHI,4,4,57,(12:42) (Punt formation) S.Considine up the middle to BLT 46 for 3 yards (S.Havili).,7,7,2012 -20120916_BAL@PHI,2,42,35,PHI,BAL,1,10,45,(12:35) M.Vick scrambles right end to BLT 39 for 6 yards (C.Upshaw). Penalty on BLT-C.Williams Personal Foul offsetting. Penalty on PHI-D.Jackson Personal Foul offsetting.,7,7,2012 -20120916_BAL@PHI,2,42,8,PHI,BAL,2,4,39,(12:08) (Shotgun) M.Vick pass incomplete short middle to B.Celek (R.Lewis).,7,7,2012 -20120916_BAL@PHI,2,42,6,PHI,BAL,3,4,39,(12:06) (Shotgun) M.Vick pass short left to D.Jackson pushed ob at BLT 29 for 10 yards (C.Williams).,7,7,2012 -20120916_BAL@PHI,2,41,40,PHI,BAL,1,10,29,(11:40) PENALTY on PHI-E.Mathis False Start 5 yards enforced at BLT 29 - No Play.,7,7,2012 -20120916_BAL@PHI,2,41,23,PHI,BAL,1,15,34,(11:23) L.McCoy right end to BLT 27 for 7 yards (L.Webb).,7,7,2012 -20120916_BAL@PHI,2,40,48,PHI,BAL,2,8,27,(10:48) L.McCoy left end to BLT 20 for 7 yards (J.Ihedigbo).,7,7,2012 -20120916_BAL@PHI,2,40,9,BAL,PHI,3,1,30,(10:09) M.Vick FUMBLES (Aborted) at BLT 25 RECOVERED by BLT-A.McClellan at BLT 30. A.McClellan to BLT 30 for no gain (C.Harbor).,7,7,2012 -20120916_BAL@PHI,2,40,1,BAL,PHI,1,10,70,(10:01) R.Rice up the middle to PHI 27 for 43 yards (M.Kendricks).,7,7,2012 -20120916_BAL@PHI,2,39,21,BAL,PHI,1,10,27,(9:21) J.Flacco pass incomplete deep left to D.Pitta.,7,7,2012 -20120916_BAL@PHI,2,39,15,BAL,PHI,2,10,27,(9:15) (Shotgun) J.Flacco pass short left to T.Doss to PHI 21 for 6 yards (N.Asomugha).,7,7,2012 -20120916_BAL@PHI,2,38,38,BAL,PHI,3,4,21,(8:38) (Shotgun) J.Flacco pass deep right to J.Jones for 21 yards TOUCHDOWN.,7,7,2012 -20120916_BAL@PHI,2,38,38,BAL,PHI,,,21,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,7,2012 -20120916_BAL@PHI,2,38,38,BAL,PHI,,,21,J.Tucker kicks 70 yards from BLT 35 to PHI -5. B.Boykin to PHI 16 for 21 yards (B.Ayanbadejo).,14,7,2012 -20120916_BAL@PHI,2,38,27,PHI,BAL,1,10,84,(8:27) M.Vick scrambles left end ran ob at PHI 21 for 5 yards.,7,14,2012 -20120916_BAL@PHI,2,38,4,PHI,BAL,2,5,79,(8:04) (Shotgun) L.McCoy up the middle to PHI 25 for 4 yards (M.Kemoeatu).,7,14,2012 -20120916_BAL@PHI,2,37,18,PHI,BAL,3,1,75,(7:18) (Shotgun) M.Vick pass incomplete short right to L.McCoy.,7,14,2012 -20120916_BAL@PHI,2,37,16,PHI,BAL,4,1,75,(7:16) C.Henry punts 32 yards to BLT 43 Center-J.Dorenbos downed by PHI-A.Jordan.,7,14,2012 -20120916_BAL@PHI,2,37,3,BAL,PHI,1,10,57,(7:03) B.Pierce right tackle to BLT 49 for 6 yards (A.Jordan).,14,7,2012 -20120916_BAL@PHI,2,36,24,BAL,PHI,2,4,51,(6:24) R.Rice left tackle to PHI 49 for 2 yards (F.Cox).,14,7,2012 -20120916_BAL@PHI,2,35,39,BAL,PHI,3,2,49,(5:39) (Shotgun) J.Flacco pass short left to R.Rice to BLT 46 for -5 yards (M.Kendricks).,14,7,2012 -20120916_BAL@PHI,2,34,59,BAL,PHI,4,7,54,(4:59) S.Koch punts 54 yards to end zone Center-M.Cox Touchback.,14,7,2012 -20120916_BAL@PHI,2,34,48,PHI,BAL,1,10,80,(4:48) L.McCoy right end to PHI 25 for 5 yards (C.Upshaw).,7,14,2012 -20120916_BAL@PHI,2,34,16,PHI,BAL,2,5,75,(4:16) L.McCoy right end to PHI 45 for 20 yards (E.Reed). BLT-D.Ellerbe was injured during the play. His return is Probable.,7,14,2012 -20120916_BAL@PHI,2,34,2,PHI,BAL,1,10,55,(4:02) M.Vick pass short left to D.Jackson to BLT 37 for 18 yards (J.McClain).,7,14,2012 -20120916_BAL@PHI,2,33,19,PHI,BAL,1,10,37,(3:19) M.Vick pass deep right to B.Celek to BLT 9 for 28 yards (E.Reed).,7,14,2012 -20120916_BAL@PHI,2,32,36,PHI,BAL,1,9,9,(2:36) (Shotgun) L.McCoy up the middle to BLT 11 for -2 yards (L.Webb). FUMBLES (L.Webb) RECOVERED by BLT-R.Lewis at BLT 9. R.Lewis to BLT 22 for 13 yards (M.Vick). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) L.McCoy up the middle to BLT 11 for -2 yards (L.Webb). FUMBLES (L.Webb) RECOVERED by BLT-R.Lewis at BLT 9. R.Lewis to BLT 9 for no gain (K.Dunlap).,7,14,2012 -20120916_BAL@PHI,2,32,31,BAL,PHI,1,10,91,(2:31) J.Flacco pass to T.Smith to BLT 20 for 11 yards (D.Rodgers-Cromartie).,14,7,2012 -20120916_BAL@PHI,2,32,11,BAL,PHI,1,10,80,(2:11) R.Rice up the middle to BLT 36 for 16 yards (K.Coleman; N.Allen).,14,7,2012 -20120916_BAL@PHI,2,32,0,BAL,PHI,1,10,64,(2:00) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,14,7,2012 -20120916_BAL@PHI,2,31,57,BAL,PHI,2,10,64,(1:57) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 39 for 3 yards (D.Ryans).,14,7,2012 -20120916_BAL@PHI,2,31,22,BAL,PHI,3,7,61,(1:22) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 41 for 2 yards (D.Ryans).,14,7,2012 -20120916_BAL@PHI,2,31,15,BAL,PHI,4,5,59,(1:15) S.Koch punts 56 yards to PHI 3 Center-M.Cox. D.Johnson to PHI 6 for 3 yards (B.Ayanbadejo).,14,7,2012 -20120916_BAL@PHI,2,31,5,PHI,BAL,1,10,94,(1:05) L.McCoy left end to PHI 9 for 3 yards (J.McClain).,7,14,2012 -20120916_BAL@PHI,2,30,31,PHI,BAL,2,7,91,(:31) L.McCoy right end to PHI 12 for 3 yards (P.McPhee).,7,14,2012 -20120916_BAL@PHI,2,30,25,PHI,BAL,3,4,88,(:25) (Shotgun) L.McCoy up the middle to PHI 10 for -2 yards (S.Kindle).,7,14,2012 -20120916_BAL@PHI,2,30,18,PHI,BAL,4,6,90,(:18) C.Henry punts 38 yards to PHI 48 Center-J.Dorenbos. J.Jones ran ob at PHI 38 for 10 yards.,7,14,2012 -20120916_BAL@PHI,2,30,9,BAL,PHI,1,10,38,(:09) (Shotgun) J.Flacco pass short left to A.Boldin pushed ob at PHI 38 for no gain (M.Kendricks).,14,7,2012 -20120916_BAL@PHI,2,30,4,BAL,PHI,2,10,38,(:04) J.Tucker 56 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,14,7,2012 -20120916_BAL@PHI,2,30,4,BAL,PHI,,,38,J.Tucker kicks 16 yards from BLT 35 to PHI 49. A.Jordan to 50 for 1 yard (A.Allen).,17,7,2012 -20120916_BAL@PHI,3,30,0,PHI,BAL,,,38,A.Henery kicks 65 yards from PHI 35 to BLT 0. D.Thompson to BLT 23 for 23 yards (B.Boykin).,7,17,2012 -20120916_BAL@PHI,3,29,54,BAL,PHI,1,10,77,(14:54) J.Flacco pass incomplete short right to R.Rice (F.Cox).,17,7,2012 -20120916_BAL@PHI,3,29,48,BAL,PHI,2,10,77,(14:48) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to BLT 39 for 16 yards (N.Allen).,17,7,2012 -20120916_BAL@PHI,3,29,23,BAL,PHI,1,10,61,(14:23) (No Huddle) J.Flacco pass incomplete short middle to D.Pitta (M.Kendricks).,17,7,2012 -20120916_BAL@PHI,3,29,18,BAL,PHI,2,10,61,(14:18) (Shotgun) J.Flacco pass short left to D.Pitta ran ob at BLT 47 for 8 yards.,17,7,2012 -20120916_BAL@PHI,3,28,40,BAL,PHI,3,2,53,(13:40) (Shotgun) J.Flacco pass short left intended for D.Pitta INTERCEPTED by D.Ryans at PHI 43. D.Ryans to PHI 43 for no gain (D.Pitta). PENALTY on BLT-R.Rice Unnecessary Roughness 15 yards enforced at PHI 43.,17,7,2012 -20120916_BAL@PHI,3,28,28,PHI,BAL,1,10,42,(13:28) L.McCoy up the middle to BLT 42 for no gain (P.McPhee).,7,17,2012 -20120916_BAL@PHI,3,27,56,PHI,BAL,2,10,42,(12:56) (Shotgun) M.Vick pass short middle to S.Havili to BLT 38 for 4 yards (A.McClellan).,7,17,2012 -20120916_BAL@PHI,3,27,19,PHI,BAL,3,6,38,(12:19) (Shotgun) M.Vick pass short left to D.Jackson to BLT 30 for 8 yards (C.Williams).,7,17,2012 -20120916_BAL@PHI,3,26,47,PHI,BAL,1,10,30,(11:47) L.McCoy right end to BLT 21 for 9 yards (R.Lewis). PHI-J.Kelce was injured during the play. He is Out.,7,17,2012 -20120916_BAL@PHI,3,26,19,PHI,BAL,2,1,21,(11:19) L.McCoy left tackle to BLT 23 for -2 yards (J.Ihedigbo).,7,17,2012 -20120916_BAL@PHI,3,25,46,PHI,BAL,3,3,23,(10:46) (Shotgun) M.Vick pass deep left to J.Maclin for 23 yards TOUCHDOWN.,7,17,2012 -20120916_BAL@PHI,3,25,46,PHI,BAL,,,23,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,7,17,2012 -20120916_BAL@PHI,3,25,46,PHI,BAL,,,23,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,14,17,2012 -20120916_BAL@PHI,3,25,40,BAL,PHI,1,10,80,(10:40) J.Flacco pass incomplete deep left to E.Dickson.,17,14,2012 -20120916_BAL@PHI,3,25,32,BAL,PHI,2,10,80,(10:32) (Shotgun) J.Flacco pass incomplete deep right to T.Smith.,17,14,2012 -20120916_BAL@PHI,3,25,27,BAL,PHI,3,10,80,(10:27) (Shotgun) J.Flacco pass incomplete short left to T.Smith.,17,14,2012 -20120916_BAL@PHI,3,25,23,BAL,PHI,4,10,80,(10:23) S.Koch punts 48 yards to PHI 32 Center-M.Cox. D.Johnson pushed ob at PHI 35 for 3 yards (C.Brown).,17,14,2012 -20120916_BAL@PHI,3,25,12,PHI,BAL,1,10,65,(10:12) L.McCoy left end pushed ob at PHI 33 for -2 yards (A.McClellan). PHI-K.Dunlap was injured during the play. His return is Doubtful.,14,17,2012 -20120916_BAL@PHI,3,24,49,PHI,BAL,2,12,67,(9:49) (Shotgun) M.Vick pass short right to B.Celek pushed ob at BLT 43 for 24 yards (J.Smith). PHI-J.Maclin was injured during the play. His return is Doubtful.,14,17,2012 -20120916_BAL@PHI,3,24,24,PHI,BAL,1,10,43,(9:24) M.Vick pass incomplete short left (M.Kemoeatu).,14,17,2012 -20120916_BAL@PHI,3,24,12,PHI,BAL,2,10,43,(9:12) L.McCoy up the middle to BLT 40 for 3 yards (J.McClain).,14,17,2012 -20120916_BAL@PHI,3,23,34,PHI,BAL,3,7,40,(8:34) (Shotgun) M.Vick pass short right to D.Johnson pushed ob at BLT 27 for 13 yards (J.Smith).,14,17,2012 -20120916_BAL@PHI,3,23,3,PHI,BAL,1,10,27,(8:03) L.McCoy right end to BLT 22 for 5 yards (L.Webb).,14,17,2012 -20120916_BAL@PHI,3,22,19,PHI,BAL,2,5,22,(7:19) (Shotgun) M.Vick right end ran ob at BLT 14 for 8 yards.,14,17,2012 -20120916_BAL@PHI,3,21,55,PHI,BAL,1,10,14,(6:55) B.Brown right end to BLT 11 for 3 yards (L.Webb).,14,17,2012 -20120916_BAL@PHI,3,21,18,PHI,BAL,2,7,11,(6:18) (Shotgun) M.Vick pass incomplete short left to B.Celek (A.McClellan).,14,17,2012 -20120916_BAL@PHI,3,21,13,PHI,BAL,3,7,11,(6:13) (Shotgun) M.Vick scrambles up the middle to BLT 5 for 6 yards (D.Ellerbe). Philadelphia challenged the first down ruling and the play was Upheld. (Timeout #1.),14,17,2012 -20120916_BAL@PHI,3,20,33,PHI,BAL,4,1,5,(5:33) (Field Goal formation) A.Henery 23 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,14,17,2012 -20120916_BAL@PHI,3,20,33,PHI,BAL,,,5,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,17,17,2012 -20120916_BAL@PHI,3,20,30,BAL,PHI,1,10,80,(5:30) R.Rice right end to BLT 26 for 6 yards (F.Cox).,17,17,2012 -20120916_BAL@PHI,3,19,57,BAL,PHI,2,4,74,(4:57) R.Rice left guard to BLT 28 for 2 yards (J.Babin).,17,17,2012 -20120916_BAL@PHI,3,19,26,BAL,PHI,3,2,72,(4:26) (Shotgun) J.Flacco pass incomplete short left to E.Dickson.,17,17,2012 -20120916_BAL@PHI,3,19,21,BAL,PHI,4,2,72,(4:21) S.Koch punts 52 yards to PHI 20 Center-M.Cox. D.Johnson to PHI 24 for 4 yards (B.Ayanbadejo). BLT-J.McClain was injured during the play. His return is Probable.,17,17,2012 -20120916_BAL@PHI,3,19,11,PHI,BAL,1,10,76,(4:11) (Shotgun) M.Vick sacked at PHI 17 for -7 yards (D.Ellerbe).,17,17,2012 -20120916_BAL@PHI,3,18,45,PHI,BAL,2,17,83,(3:45) M.Vick pass short middle to L.McCoy to PHI 20 for 3 yards (R.Lewis).,17,17,2012 -20120916_BAL@PHI,3,18,7,PHI,BAL,3,14,80,(3:07) (Shotgun) M.Vick pass short right to L.McCoy ran ob at PHI 25 for 5 yards (J.Smith).,17,17,2012 -20120916_BAL@PHI,3,17,42,PHI,BAL,4,9,75,(2:42) C.Henry punts 40 yards to BLT 35 Center-J.Dorenbos. J.Jones to BLT 41 for 6 yards (S.Havili).,17,17,2012 -20120916_BAL@PHI,3,17,32,BAL,PHI,1,10,59,(2:32) J.Flacco pass incomplete short left to R.Rice.,17,17,2012 -20120916_BAL@PHI,3,17,26,BAL,PHI,2,10,59,(2:26) R.Rice right tackle to 50 for 9 yards (K.Coleman).,17,17,2012 -20120916_BAL@PHI,3,16,48,BAL,PHI,3,1,50,(1:48) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,17,17,2012 -20120916_BAL@PHI,3,16,43,BAL,PHI,4,1,50,(1:43) S.Koch punts 41 yards to PHI 9 Center-M.Cox fair catch by D.Johnson.,17,17,2012 -20120916_BAL@PHI,3,16,36,PHI,BAL,1,10,91,(1:36) L.McCoy right end to PHI 15 for 6 yards (P.McPhee).,17,17,2012 -20120916_BAL@PHI,3,16,3,PHI,BAL,2,4,85,(1:03) L.McCoy right end to PHI 15 for no gain (J.McClain). PENALTY on PHI-D.Bell Offensive Holding 8 yards enforced at PHI 15 - No Play.,17,17,2012 -20120916_BAL@PHI,3,15,52,PHI,BAL,2,12,93,(:52) M.Vick pass deep right to D.Jackson pushed ob at BLT 44 for 49 yards (E.Reed).,17,17,2012 -20120916_BAL@PHI,3,15,26,PHI,BAL,1,10,44,(:26) (Shotgun) M.Vick pass deep middle intended for B.Celek INTERCEPTED by E.Reed at BLT 27. E.Reed to BLT 36 for 9 yards (D.Johnson).,17,17,2012 -20120916_BAL@PHI,3,15,19,BAL,PHI,1,10,64,(:19) J.Flacco pass deep right to T.Smith ran ob at PHI 24 for 40 yards.,17,17,2012 -20120916_BAL@PHI,4,15,0,BAL,PHI,1,10,24,(15:00) R.Rice left end to PHI 28 for -4 yards (F.Cox).,17,17,2012 -20120916_BAL@PHI,4,14,21,BAL,PHI,2,14,28,(14:21) J.Flacco pass incomplete short right to A.Boldin. PENALTY on PHI-D.Rodgers-Cromartie Illegal Contact 5 yards enforced at PHI 28 - No Play.,17,17,2012 -20120916_BAL@PHI,4,14,15,BAL,PHI,1,10,23,(14:15) R.Rice up the middle to PHI 21 for 2 yards (N.Allen).,17,17,2012 -20120916_BAL@PHI,4,13,39,BAL,PHI,2,8,21,(13:39) R.Rice right end to PHI 21 for no gain (F.Cox).,17,17,2012 -20120916_BAL@PHI,4,12,58,BAL,PHI,3,8,21,(12:58) (Shotgun) J.Flacco pass short left to T.Smith to PHI 21 for no gain (B.Boykin). PENALTY on BLT-M.Birk Offensive Holding 10 yards enforced at PHI 21 - No Play.,17,17,2012 -20120916_BAL@PHI,4,12,40,BAL,PHI,3,18,31,(12:40) (Shotgun) J.Flacco pass incomplete deep left to J.Jones (N.Asomugha). PENALTY on PHI-N.Asomugha Illegal Contact 15 yards enforced at PHI 31 - No Play. Penalty on PHI-J.Babin Personal Foul declined.,17,17,2012 -20120916_BAL@PHI,4,12,33,BAL,PHI,1,10,16,(12:33) R.Rice right tackle to PHI 15 for 1 yard (D.Ryans).,17,17,2012 -20120916_BAL@PHI,4,11,55,BAL,PHI,2,9,15,(11:55) (Shotgun) J.Flacco pass incomplete short left to D.Pitta (D.Landri).,17,17,2012 -20120916_BAL@PHI,4,11,49,BAL,PHI,3,9,15,(11:49) (Shotgun) PENALTY on BLT-J.Flacco Delay of Game 5 yards enforced at PHI 15 - No Play.,17,17,2012 -20120916_BAL@PHI,4,11,49,BAL,PHI,3,14,20,(11:49) (Shotgun) J.Flacco sacked at PHI 33 for -13 yards (D.Ryans).,17,17,2012 -20120916_BAL@PHI,4,11,33,BAL,PHI,4,27,33,(11:33) J.Tucker 51 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,17,17,2012 -20120916_BAL@PHI,4,11,33,BAL,PHI,,,33,J.Tucker kicks 65 yards from BLT 35 to PHI 0. B.Boykin to PHI 27 for 27 yards (S.Considine).,20,17,2012 -20120916_BAL@PHI,4,11,21,PHI,BAL,1,10,73,(11:21) (Shotgun) M.Vick pass short left to J.Avant to PHI 44 for 17 yards (L.Webb).,17,20,2012 -20120916_BAL@PHI,4,10,54,PHI,BAL,1,10,56,(10:54) (No Huddle) L.McCoy right end to BLT 45 for 11 yards (A.McClellan).,17,20,2012 -20120916_BAL@PHI,4,10,27,PHI,BAL,1,10,45,(10:27) (No Huddle) L.McCoy left end to BLT 42 for 3 yards (R.Lewis).,17,20,2012 -20120916_BAL@PHI,4,9,54,PHI,BAL,2,7,42,(9:54) (Shotgun) M.Vick pass incomplete short left. PENALTY on PHI-E.Mathis Offensive Holding 10 yards enforced at BLT 42 - No Play. Baltimore challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),17,20,2012 -20120916_BAL@PHI,4,9,44,PHI,BAL,2,17,52,(9:44) (Shotgun) M.Vick pass incomplete short middle [P.McPhee].,17,20,2012 -20120916_BAL@PHI,4,9,40,PHI,BAL,3,17,52,(9:40) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,17,20,2012 -20120916_BAL@PHI,4,9,33,PHI,BAL,4,17,52,(9:33) C.Henry punts 30 yards to BLT 22 Center-J.Dorenbos fair catch by L.Webb.,17,20,2012 -20120916_BAL@PHI,4,9,26,BAL,PHI,1,10,78,(9:26) J.Flacco pass incomplete deep right to T.Smith.,20,17,2012 -20120916_BAL@PHI,4,9,19,BAL,PHI,2,10,78,(9:19) (Shotgun) R.Rice right guard to BLT 25 for 3 yards (D.Ryans).,20,17,2012 -20120916_BAL@PHI,4,8,39,BAL,PHI,3,7,75,(8:39) (Shotgun) J.Flacco pass short right to R.Rice ran ob at BLT 38 for 13 yards (K.Coleman).,20,17,2012 -20120916_BAL@PHI,4,8,19,BAL,PHI,1,10,62,(8:19) R.Rice right tackle to BLT 40 for 2 yards (C.Jenkins).,20,17,2012 -20120916_BAL@PHI,4,7,45,BAL,PHI,2,8,60,(7:45) (Shotgun) J.Flacco pass incomplete short left to D.Pitta (M.Kendricks).,20,17,2012 -20120916_BAL@PHI,4,7,40,BAL,PHI,3,8,60,(7:40) (Shotgun) J.Flacco pass short right to R.Rice to PHI 23 for 37 yards (K.Coleman).,20,17,2012 -20120916_BAL@PHI,4,6,53,BAL,PHI,1,10,23,(6:53) B.Pierce left end to PHI 25 for -2 yards (D.Ryans).,20,17,2012 -20120916_BAL@PHI,4,6,19,BAL,PHI,2,12,25,(6:19) (Shotgun) B.Pierce up the middle to PHI 25 for no gain (B.Graham).,20,17,2012 -20120916_BAL@PHI,4,5,35,BAL,PHI,3,12,25,(5:35) (Shotgun) J.Flacco pass deep right to J.Jones for 25 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on BLT-J.Jones Offensive Pass Interference 10 yards enforced at PHI 25 - No Play.,20,17,2012 -20120916_BAL@PHI,4,5,29,BAL,PHI,3,22,35,(5:29) (Shotgun) J.Flacco pass short middle to R.Rice to PHI 30 for 5 yards (M.Kendricks).,20,17,2012 -20120916_BAL@PHI,4,4,48,BAL,PHI,4,17,30,(4:48) J.Tucker 48 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,20,17,2012 -20120916_BAL@PHI,4,4,48,BAL,PHI,,,30,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,23,17,2012 -20120916_BAL@PHI,4,4,43,PHI,BAL,1,10,80,(4:43) (Shotgun) M.Vick pass short left to D.Jackson ran ob at PHI 34 for 14 yards.,17,23,2012 -20120916_BAL@PHI,4,4,29,PHI,BAL,1,10,66,(4:29) M.Vick pass deep right to B.Celek to BLT 42 for 24 yards (R.Lewis).,17,23,2012 -20120916_BAL@PHI,4,3,57,PHI,BAL,1,10,42,(3:57) (Shotgun) M.Vick scrambles right end ran ob at BLT 34 for 8 yards.,17,23,2012 -20120916_BAL@PHI,4,3,50,PHI,BAL,2,2,34,(3:50) L.McCoy left end to BLT 34 for no gain (D.Ellerbe).,17,23,2012 -20120916_BAL@PHI,4,3,16,PHI,BAL,3,2,34,(3:16) (Shotgun) M.Vick pass short middle to B.Celek to BLT 21 for 13 yards (J.McClain).,17,23,2012 -20120916_BAL@PHI,4,2,49,PHI,BAL,1,10,21,(2:49) (No Huddle) L.McCoy up the middle to BLT 25 for -4 yards (C.Upshaw).,17,23,2012 -20120916_BAL@PHI,4,2,15,PHI,BAL,2,14,25,(2:15) M.Vick pass short right to C.Harbor to BLT 6 for 19 yards (L.Webb). PENALTY on BLT-A.Jones Roughing the Passer 3 yards enforced at BLT 6.,17,23,2012 -20120916_BAL@PHI,4,2,5,PHI,BAL,1,3,3,(2:05) (Shotgun) M.Vick up the middle to BLT 1 for 2 yards (H.Ngata).,17,23,2012 -20120916_BAL@PHI,4,2,0,PHI,BAL,2,1,1,(2:00) M.Vick sacked at BLT 5 for -4 yards (H.Ngata). FUMBLES (H.Ngata) RECOVERED by BLT-M.Kemoeatu at BLT 1. M.Kemoeatu to BLT 1 for no gain (D.Reynolds). The Replay Assistant challenged the fumble ruling and the play was REVERSED. M.Vick pass incomplete short left.,17,23,2012 -20120916_BAL@PHI,4,1,57,PHI,BAL,3,1,1,(1:57) (Shotgun) M.Vick up the middle for 1 yard TOUCHDOWN.,17,23,2012 -20120916_BAL@PHI,4,1,57,PHI,BAL,,,1,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,17,23,2012 -20120916_BAL@PHI,4,1,57,PHI,BAL,,,1,A.Henery kicks 73 yards from PHI 35 to BLT -8. D.Thompson ran ob at BLT 20 for 28 yards (M.Gilyard).,24,23,2012 -20120916_BAL@PHI,4,1,48,BAL,PHI,1,10,80,(1:48) (Shotgun) J.Flacco pass incomplete short right to A.Boldin.,23,24,2012 -20120916_BAL@PHI,4,1,43,BAL,PHI,2,10,80,(1:43) (Shotgun) J.Flacco pass incomplete deep middle to J.Jones (B.Boykin).,23,24,2012 -20120916_BAL@PHI,4,1,38,BAL,PHI,3,10,80,(1:38) (Shotgun) J.Flacco pass short left to D.Pitta ran ob at BLT 32 for 12 yards (K.Coleman).,23,24,2012 -20120916_BAL@PHI,4,1,31,BAL,PHI,1,10,68,(1:31) (Shotgun) J.Flacco pass incomplete short left to T.Doss. PENALTY on PHI-N.Asomugha Illegal Contact 5 yards enforced at BLT 32 - No Play.,23,24,2012 -20120916_BAL@PHI,4,1,26,BAL,PHI,1,10,63,(1:26) (Shotgun) J.Flacco pass incomplete deep left to E.Dickson (N.Allen).,23,24,2012 -20120916_BAL@PHI,4,1,21,BAL,PHI,2,10,63,(1:21) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 46 for 9 yards (N.Allen).,23,24,2012 -20120916_BAL@PHI,4,0,57,BAL,PHI,3,1,54,(:57) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,23,24,2012 -20120916_BAL@PHI,4,0,54,BAL,PHI,4,1,54,(:54) (Shotgun) J.Flacco pass incomplete short right to R.Rice.,23,24,2012 -20120916_BAL@PHI,4,0,50,PHI,BAL,1,10,45,(:50) M.Vick kneels to BLT 46 for -1 yards.,24,23,2012 -20120916_BAL@PHI,4,0,14,PHI,BAL,2,11,46,(:14) M.Vick kneels to BLT 47 for -1 yards.,24,23,2012 -20120916_BAL@PHI,4,0,14,PHI,BAL,,,46,                      ,24,23,2012 -20120916_OAK@MIA,1,0,0,OAK,MIA,,,46,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 -20120916_OAK@MIA,1,60,0,MIA,OAK,1,10,80,(15:00) R.Bush up the middle to MIA 31 for 11 yards (P.Wheeler).,0,0,2012 -20120916_OAK@MIA,1,59,28,MIA,OAK,1,10,69,(14:28) R.Tannehill pass incomplete short middle to D.Bess.,0,0,2012 -20120916_OAK@MIA,1,59,23,MIA,OAK,2,10,69,(14:23) R.Tannehill scrambles right guard to MIA 44 for 13 yards (T.Branch).,0,0,2012 -20120916_OAK@MIA,1,58,50,MIA,OAK,1,10,56,(13:50) R.Bush up the middle to 50 for 6 yards (T.Branch).,0,0,2012 -20120916_OAK@MIA,1,58,16,MIA,OAK,2,4,50,(13:16) R.Bush right end to OAK 47 for 3 yards (L.Houston).,0,0,2012 -20120916_OAK@MIA,1,57,43,MIA,OAK,3,1,47,(12:43) R.Bush up the middle to OAK 42 for 5 yards (T.Branch).,0,0,2012 -20120916_OAK@MIA,1,57,12,MIA,OAK,1,10,42,(12:12) R.Tannehill pass short right to B.Hartline to OAK 27 for 15 yards (P.Lee).,0,0,2012 -20120916_OAK@MIA,1,56,49,MIA,OAK,1,10,27,(11:49) R.Bush left guard to OAK 26 for 1 yard (S.Spencer).,0,0,2012 -20120916_OAK@MIA,1,56,0,MIA,OAK,2,9,26,(11:00) (Shotgun) R.Tannehill pass deep right to B.Hartline to OAK 5 for 21 yards (P.Lee).,0,0,2012 -20120916_OAK@MIA,1,55,15,MIA,OAK,1,5,5,(10:15) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (P.Lee).,0,0,2012 -20120916_OAK@MIA,1,55,6,MIA,OAK,2,5,5,(10:06) R.Bush right guard to OAK 2 for 3 yards.,0,0,2012 -20120916_OAK@MIA,1,54,19,MIA,OAK,3,2,2,(9:19) R.Tannehill left end for 2 yards TOUCHDOWN.,0,0,2012 -20120916_OAK@MIA,1,54,19,MIA,OAK,,,2,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20120916_OAK@MIA,1,54,19,MIA,OAK,,,2,D.Carpenter kicks 62 yards from MIA 35 to OAK 3. C.Francies to OAK 16 for 13 yards (M.Moore).,7,0,2012 -20120916_OAK@MIA,1,54,13,OAK,MIA,1,10,84,(9:13) C.Palmer pass deep right to D.Heyward-Bey to OAK 35 for 19 yards (S.Smith).,0,7,2012 -20120916_OAK@MIA,1,53,40,OAK,MIA,1,10,65,(8:40) C.Palmer pass incomplete deep left to M.Reece.,0,7,2012 -20120916_OAK@MIA,1,53,31,OAK,MIA,2,10,65,(8:31) D.McFadden right guard to OAK 37 for 2 yards (J.Odrick).,0,7,2012 -20120916_OAK@MIA,1,52,54,OAK,MIA,3,8,63,(7:54) (Shotgun) C.Palmer scrambles right end to OAK 44 for 7 yards (S.Smith).,0,7,2012 -20120916_OAK@MIA,1,52,31,OAK,MIA,4,1,56,(7:31) (Punt formation) S.Lechler punts 33 yards to MIA 23 Center-J.Condo fair catch by D.Bess.,0,7,2012 -20120916_OAK@MIA,1,52,5,MIA,OAK,1,10,77,(7:05) R.Bush right end to MIA 24 for 1 yard (P.Wheeler).,7,0,2012 -20120916_OAK@MIA,1,51,38,MIA,OAK,2,9,76,(6:38) R.Bush up the middle to MIA 24 for no gain (L.Houston).,7,0,2012 -20120916_OAK@MIA,1,51,5,MIA,OAK,3,9,76,(6:05) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 35 for 11 yards (J.Hanson).,7,0,2012 -20120916_OAK@MIA,1,50,22,MIA,OAK,1,10,65,(5:22) (Shotgun) R.Bush up the middle to MIA 37 for 2 yards (P.Wheeler).,7,0,2012 -20120916_OAK@MIA,1,49,49,MIA,OAK,2,8,63,(4:49) (Shotgun) R.Tannehill pass deep middle to D.Bess to OAK 42 for 21 yards (T.Branch).,7,0,2012 -20120916_OAK@MIA,1,49,17,MIA,OAK,1,10,42,(4:17) (No Huddle Shotgun) L.Miller right tackle to OAK 37 for 5 yards (R.Seymour).,7,0,2012 -20120916_OAK@MIA,1,48,48,MIA,OAK,2,5,37,(3:48) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano.,7,0,2012 -20120916_OAK@MIA,1,48,44,MIA,OAK,3,5,37,(3:44) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,7,0,2012 -20120916_OAK@MIA,1,48,38,MIA,OAK,4,5,37,(3:38) (Field Goal formation) D.Carpenter punts 29 yards to OAK 8 Center-J.Denney downed by MIA-J.Denney.,7,0,2012 -20120916_OAK@MIA,1,48,28,OAK,MIA,1,10,92,(3:28) D.McFadden left end to OAK 11 for 3 yards (K.Misi). PENALTY on OAK-S.Wisniewski Offensive Holding 4 yards enforced at OAK 8 - No Play.,0,7,2012 -20120916_OAK@MIA,1,48,4,OAK,MIA,1,14,96,(3:04) C.Palmer pass short left to D.Heyward-Bey to OAK 17 for 13 yards (R.Marshall).,0,7,2012 -20120916_OAK@MIA,1,47,27,OAK,MIA,2,1,83,(2:27) D.McFadden right guard to OAK 20 for 3 yards (C.Wake).,0,7,2012 -20120916_OAK@MIA,1,46,49,OAK,MIA,1,10,80,(1:49) D.McFadden right tackle to OAK 22 for 2 yards (K.Dansby).,0,7,2012 -20120916_OAK@MIA,1,46,10,OAK,MIA,2,8,78,(1:10) C.Palmer pass short left to M.Reece to OAK 36 for 14 yards (R.Marshall).,0,7,2012 -20120916_OAK@MIA,1,45,29,OAK,MIA,1,10,64,(:29) C.Palmer pass incomplete deep left to D.Moore.,0,7,2012 -20120916_OAK@MIA,1,45,23,OAK,MIA,2,10,64,(:23) C.Palmer pass short right to M.Goodson for 64 yards TOUCHDOWN.,0,7,2012 -20120916_OAK@MIA,1,45,23,OAK,MIA,,,64,(Kick formation) S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 -20120916_OAK@MIA,1,45,23,OAK,MIA,,,64,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,7,7,2012 -20120916_OAK@MIA,1,45,11,MIA,OAK,1,10,80,(:11) L.Miller right end ran ob at MIA 29 for 9 yards (M.Huff).,7,7,2012 -20120916_OAK@MIA,2,45,0,MIA,OAK,2,1,71,(15:00) L.Miller left tackle to MIA 35 for 6 yards. Penalty on OAK-M.Shaughnessy Defensive Offside declined.,7,7,2012 -20120916_OAK@MIA,2,45,0,MIA,OAK,1,10,65,(15:00) R.Tannehill pass short right to B.Hartline ran ob at MIA 44 for 9 yards.,7,7,2012 -20120916_OAK@MIA,2,44,15,MIA,OAK,2,1,56,(14:15) L.Miller left tackle to MIA 49 for 5 yards (M.Burris).,7,7,2012 -20120916_OAK@MIA,2,43,28,MIA,OAK,1,10,51,(13:28) R.Tannehill pass incomplete short right.,7,7,2012 -20120916_OAK@MIA,2,43,15,MIA,OAK,2,10,51,(13:15) R.Tannehill pass short left to C.Clay pushed ob at OAK 49 for 2 yards (J.Hanson).,7,7,2012 -20120916_OAK@MIA,2,42,47,MIA,OAK,3,8,49,(12:47) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. Penalty on MIA-J.Long Illegal Formation declined.,7,7,2012 -20120916_OAK@MIA,2,42,41,MIA,OAK,4,8,49,(12:41) (Punt formation) B.Fields punts 42 yards to OAK 7 Center-J.Denney fair catch by P.Adams.,7,7,2012 -20120916_OAK@MIA,2,42,32,OAK,MIA,1,10,93,(12:32) D.McFadden right tackle to OAK 10 for 3 yards (R.Starks).,7,7,2012 -20120916_OAK@MIA,2,42,0,OAK,MIA,2,7,90,(12:00) C.Palmer pass incomplete short middle to D.McFadden (K.Dansby).,7,7,2012 -20120916_OAK@MIA,2,41,50,OAK,MIA,3,7,90,(11:50) C.Palmer pass short left to D.Heyward-Bey to OAK 15 for 5 yards (K.Dansby; N.Carroll).,7,7,2012 -20120916_OAK@MIA,2,41,13,OAK,MIA,4,2,85,(11:13) (Punt formation) S.Lechler punts 60 yards to MIA 25 Center-J.Condo. M.Thigpen to MIA 43 for 18 yards (T.Jones).,7,7,2012 -20120916_OAK@MIA,2,40,55,MIA,OAK,1,10,57,(10:55) R.Tannehill sacked at MIA 32 for -11 yards (M.Shaughnessy).,7,7,2012 -20120916_OAK@MIA,2,40,24,MIA,OAK,2,21,68,(10:24) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 29 for -3 yards (S.Spencer).,7,7,2012 -20120916_OAK@MIA,2,39,41,MIA,OAK,3,24,71,(9:41) (Shotgun) R.Tannehill pass incomplete short right to C.Clay.,7,7,2012 -20120916_OAK@MIA,2,39,34,MIA,OAK,4,24,71,(9:34) (Punt formation) D.Carpenter punts 56 yards to OAK 15 Center-J.Denney. P.Adams to OAK 14 for -1 yards (C.Clemons).,7,7,2012 -20120916_OAK@MIA,2,39,21,OAK,MIA,1,10,86,(9:21) C.Palmer pass deep right to B.Myers to OAK 35 for 21 yards (K.Dansby).,7,7,2012 -20120916_OAK@MIA,2,38,45,OAK,MIA,1,10,65,(8:45) C.Palmer pass incomplete short right to R.Gordon.,7,7,2012 -20120916_OAK@MIA,2,38,38,OAK,MIA,2,10,65,(8:38) D.McFadden left end ran ob at OAK 38 for 3 yards (R.Marshall).,7,7,2012 -20120916_OAK@MIA,2,38,7,OAK,MIA,3,7,62,(8:07) (Shotgun) C.Palmer pass incomplete short left to D.Hagan [K.Burnett].,7,7,2012 -20120916_OAK@MIA,2,38,0,OAK,MIA,4,7,62,(8:00) (Punt formation) S.Lechler punts 48 yards to MIA 14 Center-J.Condo. M.Thigpen to MIA 27 for 13 yards (R.Gordon).,7,7,2012 -20120916_OAK@MIA,2,37,49,MIA,OAK,1,10,73,(7:49) (Shotgun) R.Bush right guard to MIA 25 for -2 yards (M.Shaughnessy).,7,7,2012 -20120916_OAK@MIA,2,37,12,MIA,OAK,2,12,75,(7:12) (Shotgun) R.Tannehill pass incomplete short left to L.Naanee.,7,7,2012 -20120916_OAK@MIA,2,37,7,MIA,OAK,3,12,75,(7:07) R.Tannehill pass incomplete short right to R.Bush.,7,7,2012 -20120916_OAK@MIA,2,37,2,MIA,OAK,4,12,75,(7:02) (Punt formation) B.Fields punts 54 yards to OAK 21 Center-J.Denney. P.Adams pushed ob at OAK 28 for 7 yards (B.Fields). PENALTY on OAK-B.Myers Offensive Holding 10 yards enforced at OAK 28.,7,7,2012 -20120916_OAK@MIA,2,36,46,OAK,MIA,1,10,82,(6:46) D.McFadden right tackle to OAK 20 for 2 yards (K.Misi).,7,7,2012 -20120916_OAK@MIA,2,36,16,OAK,MIA,2,8,80,(6:16) C.Palmer pass deep left to D.Moore to MIA 49 for 31 yards (C.Clemons).,7,7,2012 -20120916_OAK@MIA,2,35,50,OAK,MIA,1,10,49,(5:50) C.Palmer pass incomplete short right to D.Ausberry.,7,7,2012 -20120916_OAK@MIA,2,35,25,OAK,MIA,2,10,49,(5:25) C.Palmer pass incomplete short right to R.Gordon.,7,7,2012 -20120916_OAK@MIA,2,35,21,OAK,MIA,3,10,49,(5:21) (Shotgun) C.Palmer pass incomplete deep middle to D.Heyward-Bey [R.Starks].,7,7,2012 -20120916_OAK@MIA,2,35,20,OAK,MIA,4,10,49,(5:20) (Punt formation) S.Lechler punts 35 yards to MIA 14 Center-J.Condo. D.Bess to MIA 25 for 11 yards (R.Gordon).,7,7,2012 -20120916_OAK@MIA,2,35,7,MIA,OAK,1,10,75,(5:07) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,7,7,2012 -20120916_OAK@MIA,2,34,59,MIA,OAK,2,10,75,(4:59) R.Tannehill pass short middle to R.Bush ran ob at MIA 28 for 3 yards (M.Huff) [D.Tollefson].,7,7,2012 -20120916_OAK@MIA,2,34,33,MIA,OAK,3,7,72,(4:33) (Shotgun) R.Tannehill pass short right to D.Bess ran ob at MIA 34 for 6 yards.,7,7,2012 -20120916_OAK@MIA,2,33,55,MIA,OAK,4,1,66,(3:55) (Punt formation) B.Fields punts 59 yards to OAK 7 Center-J.Denney. P.Adams to OAK 12 for 5 yards (L.Naanee).,7,7,2012 -20120916_OAK@MIA,2,33,33,OAK,MIA,1,10,88,(3:33) C.Palmer pass short middle to B.Myers to OAK 24 for 12 yards (K.Dansby).,7,7,2012 -20120916_OAK@MIA,2,33,3,OAK,MIA,1,10,76,(3:03) D.McFadden left end to OAK 26 for 2 yards (K.Dansby).,7,7,2012 -20120916_OAK@MIA,2,32,30,OAK,MIA,2,8,74,(2:30) C.Palmer pass short middle to M.Reece to OAK 29 for 3 yards (K.Burnett).,7,7,2012 -20120916_OAK@MIA,2,32,0,OAK,MIA,3,5,71,(2:00) (Shotgun) C.Palmer pass short right to D.Moore ran ob at OAK 39 for 10 yards.,7,7,2012 -20120916_OAK@MIA,2,31,53,OAK,MIA,1,10,61,(1:53) (Shotgun) C.Palmer pass incomplete short right to R.Streater.,7,7,2012 -20120916_OAK@MIA,2,31,48,OAK,MIA,2,10,61,(1:48) (Shotgun) C.Palmer pass short right to D.Ausberry to MIA 30 for 31 yards (R.Jones).,7,7,2012 -20120916_OAK@MIA,2,31,37,OAK,MIA,1,10,30,(1:37) C.Palmer pass short right to R.Streater to MIA 24 for 6 yards (S.Smith).,7,7,2012 -20120916_OAK@MIA,2,31,16,OAK,MIA,2,4,24,(1:16) (No Huddle Shotgun) C.Palmer pass short left to D.Hagan to MIA 14 for 10 yards (N.Carroll) [J.Wilson]. PENALTY on MIA-J.Wilson Roughing the Passer 7 yards enforced at MIA 14.,7,7,2012 -20120916_OAK@MIA,2,31,8,OAK,MIA,1,7,7,(1:08) C.Palmer pass incomplete short right to D.McFadden.,7,7,2012 -20120916_OAK@MIA,2,31,2,OAK,MIA,2,7,7,(1:02) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey [R.Starks].,7,7,2012 -20120916_OAK@MIA,2,30,56,OAK,MIA,3,7,7,(:56) C.Palmer pass incomplete short left to R.Gordon [C.Wake].,7,7,2012 -20120916_OAK@MIA,2,30,50,OAK,MIA,4,7,7,(:50) (Field Goal formation) S.Janikowski 25 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,7,7,2012 -20120916_OAK@MIA,2,30,50,OAK,MIA,,,7,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,10,7,2012 -20120916_OAK@MIA,2,30,46,MIA,OAK,1,10,80,(:46) R.Bush left guard to MIA 24 for 4 yards (T.Kelly).,7,10,2012 -20120916_OAK@MIA,2,30,11,MIA,OAK,2,6,76,(:11) R.Tannehill kneels to MIA 23 for -1 yards.,7,10,2012 -20120916_OAK@MIA,3,30,0,MIA,OAK,,,76,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,7,10,2012 -20120916_OAK@MIA,3,30,0,OAK,MIA,1,10,80,(15:00) C.Palmer pass incomplete short right to D.Moore (S.Smith).,10,7,2012 -20120916_OAK@MIA,3,29,54,OAK,MIA,2,10,80,(14:54) D.McFadden left end to OAK 20 for no gain (K.Dansby).,10,7,2012 -20120916_OAK@MIA,3,29,17,OAK,MIA,3,10,80,(14:17) C.Palmer pass short left to B.Myers to OAK 24 for 4 yards (K.Dansby).,10,7,2012 -20120916_OAK@MIA,3,28,32,OAK,MIA,4,6,76,(13:32) (Punt formation) S.Lechler punts 50 yards to MIA 26 Center-J.Condo. M.Thigpen to MIA 33 for 7 yards (T.Goethel).,10,7,2012 -20120916_OAK@MIA,3,28,17,MIA,OAK,1,10,67,(13:17) R.Bush left tackle to MIA 34 for 1 yard (R.McClain).,7,10,2012 -20120916_OAK@MIA,3,27,47,MIA,OAK,2,9,66,(12:47) R.Bush right end to MIA 35 for 1 yard (P.Wheeler).,7,10,2012 -20120916_OAK@MIA,3,27,11,MIA,OAK,3,8,65,(12:11) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 40 for 5 yards (R.McClain).,7,10,2012 -20120916_OAK@MIA,3,26,36,MIA,OAK,4,3,60,(11:36) (Punt formation) B.Fields punts 58 yards to OAK 2 Center-J.Denney. P.Adams to OAK 26 for 24 yards (J.Wilson). PENALTY on OAK-P.Adams Offensive Holding 1 yard enforced at OAK 2. Penalty on OAK-M.Reece Illegal Block Above the Waist declined.,7,10,2012 -20120916_OAK@MIA,3,26,7,OAK,MIA,1,10,99,(11:07) D.McFadden up the middle to OAK 2 for 1 yard (K.Misi).,10,7,2012 -20120916_OAK@MIA,3,25,28,OAK,MIA,2,9,98,(10:28) D.McFadden left tackle to OAK 6 for 4 yards (R.Starks).,10,7,2012 -20120916_OAK@MIA,3,25,3,OAK,MIA,3,5,94,(10:03) C.Palmer pass incomplete deep middle to D.Moore.,10,7,2012 -20120916_OAK@MIA,3,24,46,OAK,MIA,4,5,94,(9:46) (Punt formation) S.Lechler punts 59 yards to MIA 35 Center-J.Condo. M.Thigpen to OAK 44 for 21 yards (R.Gordon).,10,7,2012 -20120916_OAK@MIA,3,24,34,MIA,OAK,1,10,44,(9:34) R.Tannehill pass short right to B.Hartline ran ob at OAK 32 for 12 yards.,7,10,2012 -20120916_OAK@MIA,3,24,9,MIA,OAK,1,10,32,(9:09) (No Huddle) R.Bush up the middle to OAK 29 for 3 yards (T.Branch).,7,10,2012 -20120916_OAK@MIA,3,23,31,MIA,OAK,2,7,29,(8:31) (No Huddle) R.Tannehill pass short right to B.Hartline to OAK 23 for 6 yards (J.Hanson).,7,10,2012 -20120916_OAK@MIA,3,23,31,MIA,OAK,3,1,23,(8:31) (No Huddle) R.Bush right tackle for 23 yards TOUCHDOWN.,7,10,2012 -20120916_OAK@MIA,3,23,31,MIA,OAK,,,23,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,7,10,2012 -20120916_OAK@MIA,3,23,31,MIA,OAK,,,23,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,14,10,2012 -20120916_OAK@MIA,3,22,57,OAK,MIA,1,10,80,(7:57) C.Palmer pass incomplete deep middle to D.Heyward-Bey.,10,14,2012 -20120916_OAK@MIA,3,22,51,OAK,MIA,2,10,80,(7:51) C.Palmer pass short middle to M.Goodson to OAK 31 for 11 yards (C.Clemons) [P.Soliai].,10,14,2012 -20120916_OAK@MIA,3,22,16,OAK,MIA,1,10,69,(7:16) C.Palmer pass short left to B.Myers to OAK 48 for 17 yards (K.Misi).,10,14,2012 -20120916_OAK@MIA,3,21,51,OAK,MIA,1,10,52,(6:51) M.Goodson right end to OAK 42 for -6 yards (R.Jones).,10,14,2012 -20120916_OAK@MIA,3,21,7,OAK,MIA,2,16,58,(6:07) C.Palmer pass short left to D.McFadden pushed ob at MIA 45 for 13 yards (N.Carroll).,10,14,2012 -20120916_OAK@MIA,3,20,38,OAK,MIA,3,3,45,(5:38) C.Palmer pass incomplete short right to D.Moore (S.Smith).,10,14,2012 -20120916_OAK@MIA,3,20,15,OAK,MIA,4,3,45,(5:15) (Punt formation) S.Lechler punts 45 yards to end zone Center-J.Condo Touchback.,10,14,2012 -20120916_OAK@MIA,3,20,14,MIA,OAK,1,10,80,(5:14) R.Bush left tackle to MIA 22 for 2 yards (P.Wheeler).,14,10,2012 -20120916_OAK@MIA,3,19,40,MIA,OAK,2,8,78,(4:40) R.Tannehill pass short right to B.Hartline to MIA 35 for 13 yards (J.Hanson) [P.Wheeler].,14,10,2012 -20120916_OAK@MIA,3,19,11,MIA,OAK,1,10,65,(4:11) R.Bush left end for 65 yards TOUCHDOWN.,14,10,2012 -20120916_OAK@MIA,3,19,11,MIA,OAK,,,65,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,14,10,2012 -20120916_OAK@MIA,3,19,11,MIA,OAK,,,65,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,21,10,2012 -20120916_OAK@MIA,3,18,52,OAK,MIA,1,10,80,(3:52) C.Palmer pass deep left to D.Moore pushed ob at OAK 46 for 26 yards (K.Burnett).,10,21,2012 -20120916_OAK@MIA,3,18,38,OAK,MIA,1,10,54,(3:38) C.Palmer pass short right to R.Streater to MIA 48 for 6 yards (K.Dansby).,10,21,2012 -20120916_OAK@MIA,3,18,17,OAK,MIA,2,10,54,(3:17) C.Palmer pass incomplete short left to D.McFadden.,10,21,2012 -20120916_OAK@MIA,3,18,12,OAK,MIA,3,10,54,(3:12) (Shotgun) C.Palmer pass incomplete short right to D.Ausberry [J.Odrick].,10,21,2012 -20120916_OAK@MIA,3,18,6,OAK,MIA,4,10,54,(3:06) (Punt formation) S.Lechler punts 36 yards to MIA 18 Center-J.Condo fair catch by D.Bess.,10,21,2012 -20120916_OAK@MIA,3,17,58,MIA,OAK,1,10,82,(2:58) L.Miller left tackle to MIA 21 for 3 yards (L.Houston).,21,10,2012 -20120916_OAK@MIA,3,17,25,MIA,OAK,2,7,79,(2:25) L.Miller left end to MIA 22 for 1 yard (D.Bryant).,21,10,2012 -20120916_OAK@MIA,3,16,39,MIA,OAK,3,6,78,(1:39) (Shotgun) R.Tannehill pass incomplete short middle to C.Clay [P.Wheeler].,21,10,2012 -20120916_OAK@MIA,3,16,32,MIA,OAK,4,6,78,(1:32) (Punt formation) B.Fields punts 50 yards to OAK 28 Center-J.Denney. P.Adams pushed ob at MIA 25 for 47 yards (B.Fields).,21,10,2012 -20120916_OAK@MIA,3,16,15,OAK,MIA,1,10,25,(1:15) C.Palmer pass incomplete short middle to D.McFadden (P.Soliai).,10,21,2012 -20120916_OAK@MIA,3,16,10,OAK,MIA,2,10,25,(1:10) C.Palmer pass incomplete short left to R.Streater. PENALTY on MIA-N.Carroll Defensive Pass Interference 9 yards enforced at MIA 25 - No Play.,10,21,2012 -20120916_OAK@MIA,3,16,4,OAK,MIA,1,10,16,(1:04) C.Palmer pass short right to D.McFadden to MIA 10 for 6 yards (S.Smith) [P.Soliai].,10,21,2012 -20120916_OAK@MIA,3,15,34,OAK,MIA,2,4,10,(:34) D.McFadden left guard to MIA 10 for no gain (P.Soliai).,10,21,2012 -20120916_OAK@MIA,4,15,0,OAK,MIA,3,4,10,(15:00) C.Palmer pass incomplete short right to D.Heyward-Bey (J.Wilson).,10,21,2012 -20120916_OAK@MIA,4,14,53,OAK,MIA,4,4,10,(14:53) (Field Goal formation) S.Janikowski 27 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,10,21,2012 -20120916_OAK@MIA,4,14,53,OAK,MIA,,,10,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,13,21,2012 -20120916_OAK@MIA,4,14,50,MIA,OAK,1,10,80,(14:50) R.Tannehill pass incomplete deep right to D.Bess. PENALTY on OAK-S.Spencer Defensive Pass Interference 18 yards enforced at MIA 20 - No Play.,21,13,2012 -20120916_OAK@MIA,4,14,43,MIA,OAK,1,10,62,(14:43) R.Bush up the middle to MIA 45 for 7 yards (T.Kelly).,21,13,2012 -20120916_OAK@MIA,4,14,14,MIA,OAK,2,3,55,(14:14) R.Bush up the middle to MIA 43 for -2 yards (T.Kelly).,21,13,2012 -20120916_OAK@MIA,4,13,41,MIA,OAK,3,5,57,(13:41) (Shotgun) R.Tannehill pass short right to B.Hartline ran ob at OAK 44 for 13 yards.,21,13,2012 -20120916_OAK@MIA,4,13,7,MIA,OAK,1,10,44,(13:07) R.Bush right guard to OAK 41 for 3 yards (M.Shaughnessy).,21,13,2012 -20120916_OAK@MIA,4,12,34,MIA,OAK,2,7,41,(12:34) R.Tannehill pass incomplete short right to B.Hartline (M.Burris).,21,13,2012 -20120916_OAK@MIA,4,12,28,MIA,OAK,3,7,41,(12:28) (Shotgun) R.Tannehill pass deep right to B.Hartline ran ob at OAK 30 for 11 yards.,21,13,2012 -20120916_OAK@MIA,4,12,18,MIA,OAK,1,10,30,(12:18) R.Tannehill pass deep left to D.Bess ran ob at OAK 14 for 16 yards.,21,13,2012 -20120916_OAK@MIA,4,11,57,MIA,OAK,1,10,14,(11:57) (Shotgun) R.Tannehill pass short middle to A.Fasano for 14 yards TOUCHDOWN.,21,13,2012 -20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,21,13,2012 -20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter kicks 66 yards from MIA 35 to OAK -1. C.Francies to OAK 19 for 20 yards (O.Vernon). PENALTY on MIA-M.Thigpen Offside on Free Kick 5 yards enforced at MIA 35 - No Play.,28,13,2012 -20120916_OAK@MIA,4,11,57,MIA,OAK,,,14,D.Carpenter kicks 65 yards from MIA 30 to OAK 5. M.Goodson to OAK 30 for 25 yards (J.Trusnik).,28,13,2012 -20120916_OAK@MIA,4,11,31,OAK,MIA,1,10,70,(11:31) C.Palmer pass short right to D.Heyward-Bey to OAK 34 for 4 yards (R.Jones) [C.Wake].,13,28,2012 -20120916_OAK@MIA,4,10,50,OAK,MIA,2,6,66,(10:50) C.Palmer pass incomplete deep right to R.Gordon.,13,28,2012 -20120916_OAK@MIA,4,10,43,OAK,MIA,3,6,66,(10:43) (Shotgun) C.Palmer pass incomplete short right to D.McFadden.,13,28,2012 -20120916_OAK@MIA,4,10,38,OAK,MIA,4,6,66,(10:38) (Punt formation) S.Lechler punts 56 yards to MIA 10 Center-J.Condo. M.Thigpen to MIA 25 for 15 yards (R.Gordon).,13,28,2012 -20120916_OAK@MIA,4,10,24,MIA,OAK,1,10,75,(10:24) R.Bush up the middle to MIA 29 for 4 yards (T.Branch).,28,13,2012 -20120916_OAK@MIA,4,9,39,MIA,OAK,2,6,71,(9:39) R.Bush up the middle to MIA 44 for 15 yards (J.Hanson).,28,13,2012 -20120916_OAK@MIA,4,9,6,MIA,OAK,1,10,56,(9:06) R.Bush up the middle to MIA 49 for 5 yards (P.Wheeler).,28,13,2012 -20120916_OAK@MIA,4,8,13,MIA,OAK,2,5,51,(8:13) R.Bush up the middle to OAK 47 for 4 yards (T.Branch). OAK-M.Burris was injured during the play. His return is Probable.,28,13,2012 -20120916_OAK@MIA,4,7,39,MIA,OAK,3,1,47,(7:39) R.Tannehill pass short right to R.Bush to OAK 22 for 25 yards (M.Huff).,28,13,2012 -20120916_OAK@MIA,4,7,1,MIA,OAK,1,10,22,(7:01) R.Bush up the middle to OAK 16 for 6 yards (P.Wheeler).,28,13,2012 -20120916_OAK@MIA,4,5,57,MIA,OAK,2,4,16,(5:57) R.Bush left guard to OAK 15 for 1 yard (J.Hanson).,28,13,2012 -20120916_OAK@MIA,4,5,14,MIA,OAK,3,3,15,(5:14) L.Miller left tackle for 15 yards TOUCHDOWN.,28,13,2012 -20120916_OAK@MIA,4,5,14,MIA,OAK,,,15,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,28,13,2012 -20120916_OAK@MIA,4,5,14,MIA,OAK,,,15,D.Carpenter kicks 63 yards from MIA 35 to OAK 2. M.Goodson to OAK 18 for 16 yards (R.Stanford).,35,13,2012 -20120916_OAK@MIA,4,4,59,OAK,MIA,1,10,82,(4:59) (Shotgun) C.Palmer pass incomplete short right to B.Myers. PENALTY on OAK-K.Barnes Offensive Holding 9 yards enforced at OAK 18 - No Play.,13,35,2012 -20120916_OAK@MIA,4,4,52,OAK,MIA,1,19,91,(4:52) (Shotgun) C.Palmer pass short left to M.Goodson to OAK 17 for 8 yards (K.Burnett).,13,35,2012 -20120916_OAK@MIA,4,4,23,OAK,MIA,2,11,83,(4:23) (Shotgun) C.Palmer pass short left to B.Myers to OAK 30 for 13 yards (N.Carroll).,13,35,2012 -20120916_OAK@MIA,4,3,58,OAK,MIA,1,10,70,(3:58) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to OAK 49 for 19 yards (K.Dansby).,13,35,2012 -20120916_OAK@MIA,4,3,25,OAK,MIA,1,10,51,(3:25) (No Huddle Shotgun) C.Palmer pass short middle to R.Streater to MIA 38 for 13 yards (C.Clemons).,13,35,2012 -20120916_OAK@MIA,4,3,12,OAK,MIA,1,10,43,(3:12) C.Palmer Aborted. S.Wisniewski FUMBLES at MIA 38 recovered by OAK-C.Palmer at MIA 43. C.Palmer to MIA 43 for no gain (K.Burnett).,13,35,2012 -20120916_OAK@MIA,4,3,12,OAK,MIA,2,15,43,(3:12) C.Palmer pass short middle intended for D.Moore INTERCEPTED by R.Jones at MIA 35. R.Jones to MIA 43 for 8 yards (M.Goodson).,13,35,2012 -20120916_OAK@MIA,4,2,32,MIA,OAK,1,10,57,(2:32) L.Miller left guard to MIA 46 for 3 yards (D.Bryant).,35,13,2012 -20120916_OAK@MIA,4,2,25,MIA,OAK,2,7,54,(2:25) L.Miller up the middle to MIA 45 for -1 yards (C.Ihenacho).,35,13,2012 -20120916_OAK@MIA,4,2,20,MIA,OAK,3,8,55,(2:20) L.Miller left tackle pushed ob at OAK 36 for 19 yards (M.Huff).,35,13,2012 -20120916_OAK@MIA,4,2,13,MIA,OAK,1,10,36,(2:13) J.Lane right guard to OAK 33 for 3 yards (T.Kelly).,35,13,2012 -20120916_OAK@MIA,4,2,0,MIA,OAK,2,7,33,(2:00) J.Lane right guard to OAK 30 for 3 yards (D.Tollefson).,35,13,2012 -20120916_OAK@MIA,4,1,15,MIA,OAK,3,4,30,(1:15) J.Lane right guard to OAK 28 for 2 yards (M.Burris).,35,13,2012 -20120916_OAK@MIA,4,0,40,MIA,OAK,4,2,28,(:40) J.Lane up the middle to OAK 24 for 4 yards (M.Shaughnessy).,35,13,2012 -20120916_OAK@MIA,4,1,15,MIA,OAK,4,2,28,(1:15) J.Lane up the middle to OAK 24 for 4 yards (M.Shaughnessy).,35,13,2012 -20120916_OAK@MIA,4,1,15,MIA,OAK,,,28,                      ,35,13,2012 -20120916_DAL@SEA,1,1,0,SEA,DAL,,,28,S.Hauschka kicks 63 yards from SEA 35 to DAL 2. F.Jones to DAL 21 for 19 yards (M.Robinson). FUMBLES (M.Robinson) RECOVERED by SEA-E.Thomas at DAL 29. E.Thomas to DAL 29 for no gain (L.Vickers).,0,0,2012 -20120916_DAL@SEA,1,59,53,SEA,DAL,1,10,29,(14:53) M.Lynch right tackle to DAL 25 for 4 yards (J.Hatcher; B.Church).,0,0,2012 -20120916_DAL@SEA,1,59,13,SEA,DAL,2,6,25,(14:13) M.Lynch left guard to DAL 22 for 3 yards (K.Coleman B.Carter).,0,0,2012 -20120916_DAL@SEA,1,58,28,SEA,DAL,3,3,22,(13:28) (Shotgun) R.Wilson pass short right to S.Rice to DAL 16 for 6 yards (A.Spencer). PENALTY on DAL-J.Price-Brent Unnecessary Roughness 8 yards enforced at DAL 16.,0,0,2012 -20120916_DAL@SEA,1,58,16,SEA,DAL,1,8,8,(13:16) M.Lynch left guard to DAL 5 for 3 yards (B.Carter D.Ware).,0,0,2012 -20120916_DAL@SEA,1,57,34,SEA,DAL,2,5,5,(12:34) M.Lynch right guard to DAL 3 for 2 yards (S.Lissemore; D.Ware).,0,0,2012 -20120916_DAL@SEA,1,56,51,SEA,DAL,3,3,3,(11:51) (Shotgun) R.Wilson pass incomplete short middle to S.Rice (B.Carter).,0,0,2012 -20120916_DAL@SEA,1,56,51,SEA,DAL,4,3,3,(11:51) S.Hauschka 21 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120916_DAL@SEA,1,56,51,SEA,DAL,,,3,S.Hauschka kicks 65 yards from SEA 35 to DAL 0. F.Jones to DAL 16 for 16 yards (B.Maxwell).,3,0,2012 -20120916_DAL@SEA,1,56,37,DAL,SEA,1,10,84,(11:37) T.Romo pass short left to D.Murray to DAL 18 for 2 yards (E.Thomas).,0,3,2012 -20120916_DAL@SEA,1,56,16,DAL,SEA,2,8,82,(11:16) D.Murray right tackle to DAL 21 for 3 yards (R.Bryant).,0,3,2012 -20120916_DAL@SEA,1,55,33,DAL,SEA,3,5,79,(10:33) (Shotgun) T.Romo pass incomplete short middle to J.Witten.,0,3,2012 -20120916_DAL@SEA,1,55,28,DAL,SEA,4,5,79,(10:28) C.Jones punt is BLOCKED by M.Smith Center-L.Ladouceur RECOVERED by SEA-J.Johnson at DAL 3. J.Johnson for 3 yards TOUCHDOWN.,0,3,2012 -20120916_DAL@SEA,1,55,28,SEA,DAL,,,79,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,0,2012 -20120916_DAL@SEA,1,55,28,SEA,DAL,,,79,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,0,2012 -20120916_DAL@SEA,1,55,23,DAL,SEA,1,10,80,(10:23) (Shotgun) T.Romo pass incomplete deep left to D.Bryant.,0,10,2012 -20120916_DAL@SEA,1,55,19,DAL,SEA,2,10,80,(10:19) F.Jones left tackle to DAL 21 for 1 yard (C.Clemons; B.Mebane).,0,10,2012 -20120916_DAL@SEA,1,54,35,DAL,SEA,3,9,79,(9:35) (Shotgun) T.Romo pass deep left to K.Ogletree ran ob at DAL 47 for 26 yards.,0,10,2012 -20120916_DAL@SEA,1,54,18,DAL,SEA,1,10,53,(9:18) K.Ogletree left end pushed ob at SEA 48 for 5 yards (K.Chancellor).,0,10,2012 -20120916_DAL@SEA,1,53,30,DAL,SEA,2,5,48,(8:30) D.Murray up the middle to SEA 40 for 8 yards (B.Wagner; C.McDonald).,0,10,2012 -20120916_DAL@SEA,1,52,50,DAL,SEA,1,10,40,(7:50) (Shotgun) T.Romo pass short right to D.Murray pushed ob at SEA 33 for 7 yards (K.Wright).,0,10,2012 -20120916_DAL@SEA,1,52,20,DAL,SEA,2,3,33,(7:20) D.Murray right tackle to SEA 24 for 9 yards (L.Hill).,0,10,2012 -20120916_DAL@SEA,1,51,40,DAL,SEA,1,10,24,(6:40) T.Romo pass incomplete short middle to D.Bryant.,0,10,2012 -20120916_DAL@SEA,1,51,34,DAL,SEA,2,10,24,(6:34) T.Romo pass short left intended for J.Witten INTERCEPTED by B.Browner [B.Wagner] at SEA 19. B.Browner to DAL 46 for 35 yards (D.Murray).,0,10,2012 -20120916_DAL@SEA,1,51,22,SEA,DAL,1,10,46,(6:22) R.Wilson pass incomplete deep middle to G.Tate (M.Claiborne) [D.Ware].,10,0,2012 -20120916_DAL@SEA,1,51,15,SEA,DAL,2,10,46,(6:15) M.Lynch up the middle to DAL 46 for no gain (J.Hatcher).,10,0,2012 -20120916_DAL@SEA,1,50,33,SEA,DAL,3,10,46,(5:33) (Shotgun) PENALTY on SEA-P.McQuistan False Start 5 yards enforced at DAL 46 - No Play.,10,0,2012 -20120916_DAL@SEA,1,50,26,SEA,DAL,3,15,51,(5:26) (Shotgun) R.Wilson pass short middle to R.Turbin to DAL 41 for 10 yards (A.Spencer).,10,0,2012 -20120916_DAL@SEA,1,49,49,SEA,DAL,4,5,41,(4:49) J.Ryan punts 36 yards to DAL 5 Center-C.Gresham downed by SEA-B.Maxwell.,10,0,2012 -20120916_DAL@SEA,1,49,40,DAL,SEA,1,10,95,(4:40) D.Murray up the middle to DAL 7 for 2 yards (C.McDonald; K.Wright).,0,10,2012 -20120916_DAL@SEA,1,49,1,DAL,SEA,2,8,93,(4:01) T.Romo pass short left to M.Austin to DAL 9 for 2 yards (K.Chancellor).,0,10,2012 -20120916_DAL@SEA,1,48,16,DAL,SEA,3,6,91,(3:16) (Shotgun) T.Romo pass deep middle to J.Witten to DAL 26 for 17 yards (K.Chancellor).,0,10,2012 -20120916_DAL@SEA,1,47,33,DAL,SEA,1,10,74,(2:33) T.Romo pass incomplete deep right to J.Witten (K.Wright).,0,10,2012 -20120916_DAL@SEA,1,47,22,DAL,SEA,2,10,74,(2:22) D.Murray left end to DAL 30 for 4 yards (L.Hill).,0,10,2012 -20120916_DAL@SEA,1,46,40,DAL,SEA,3,6,70,(1:40) (Shotgun) T.Romo pass short left to J.Phillips to DAL 39 for 9 yards (L.Hill K.Chancellor).,0,10,2012 -20120916_DAL@SEA,1,45,55,DAL,SEA,1,10,61,(:55) T.Romo pass incomplete short right to F.Jones.,0,10,2012 -20120916_DAL@SEA,1,45,51,DAL,SEA,2,10,64,(:51) (Shotgun) T.Romo FUMBLES (Aborted) at DAL 36 and recovers at DAL 36. T.Romo to DAL 36 for no gain (B.Wagner).,0,10,2012 -20120916_DAL@SEA,1,45,7,DAL,SEA,3,13,64,(:07) (Shotgun) T.Romo pass short right to M.Austin to SEA 47 for 17 yards (E.Thomas).,0,10,2012 -20120916_DAL@SEA,2,45,0,DAL,SEA,1,10,47,(15:00) D.Murray right guard to SEA 45 for 2 yards (L.Hill; B.Mebane).,0,10,2012 -20120916_DAL@SEA,2,44,18,DAL,SEA,2,8,45,(14:18) (Shotgun) T.Romo pass incomplete deep right to J.Witten.,0,10,2012 -20120916_DAL@SEA,2,44,11,DAL,SEA,3,8,45,(14:11) (Shotgun) T.Romo pass short middle to F.Jones to SEA 36 for 9 yards (K.Wright).,0,10,2012 -20120916_DAL@SEA,2,43,30,DAL,SEA,1,10,36,(13:30) T.Romo pass short left to D.Murray to SEA 29 for 7 yards (C.McDonald).,0,10,2012 -20120916_DAL@SEA,2,42,53,DAL,SEA,2,3,29,(12:53) D.Murray left tackle to SEA 22 for 7 yards (B.Wagner).,0,10,2012 -20120916_DAL@SEA,2,42,20,DAL,SEA,1,10,22,(12:20) T.Romo pass deep right to M.Austin for 22 yards TOUCHDOWN.,0,10,2012 -20120916_DAL@SEA,2,42,20,DAL,SEA,,,22,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,10,2012 -20120916_DAL@SEA,2,42,20,DAL,SEA,,,22,D.Bailey kicks 59 yards from DAL 35 to SEA 6. L.Washington to SEA 26 for 20 yards (D.Connor).,7,10,2012 -20120916_DAL@SEA,2,42,4,SEA,DAL,1,10,74,(12:04) R.Wilson pass incomplete short middle to E.Moore.,10,7,2012 -20120916_DAL@SEA,2,42,0,SEA,DAL,2,10,74,(12:00) R.Wilson pass short left to A.McCoy to SEA 29 for 3 yards (D.McCray).,10,7,2012 -20120916_DAL@SEA,2,41,17,SEA,DAL,3,7,71,(11:17) (Shotgun) R.Wilson scrambles right end pushed ob at SEA 33 for 4 yards (O.Scandrick).,10,7,2012 -20120916_DAL@SEA,2,40,59,SEA,DAL,4,3,67,(10:59) J.Ryan punts 55 yards to DAL 12 Center-C.Gresham. D.Bryant ran ob at DAL 14 for 2 yards.,10,7,2012 -20120916_DAL@SEA,2,40,49,DAL,SEA,1,10,86,(10:49) D.Murray left tackle to DAL 15 for 1 yard (R.Bryant).,7,10,2012 -20120916_DAL@SEA,2,40,8,DAL,SEA,2,9,85,(10:08) T.Romo pass short right to J.Witten to DAL 22 for 7 yards (B.Browner) [C.Clemons].,7,10,2012 -20120916_DAL@SEA,2,39,21,DAL,SEA,3,2,78,(9:21) (Shotgun) T.Romo pass incomplete short middle to D.Bryant (E.Thomas).,7,10,2012 -20120916_DAL@SEA,2,39,15,DAL,SEA,4,2,78,(9:15) C.Jones punts 44 yards to SEA 34 Center-L.Ladouceur. L.Washington to SEA 41 for 7 yards (D.McCray).,7,10,2012 -20120916_DAL@SEA,2,39,2,SEA,DAL,1,10,59,(9:02) M.Lynch right guard to SEA 43 for 2 yards (K.Coleman S.Lissemore).,10,7,2012 -20120916_DAL@SEA,2,38,28,SEA,DAL,2,8,57,(8:28) M.Lynch right tackle to 50 for 7 yards (S.Lissemore).,10,7,2012 -20120916_DAL@SEA,2,37,51,SEA,DAL,3,1,50,(7:51) M.Robinson up the middle to DAL 46 for 4 yards (M.Spears; T.Crawford).,10,7,2012 -20120916_DAL@SEA,2,37,16,SEA,DAL,1,10,46,(7:16) R.Wilson pass deep left to G.Tate ran ob at DAL 26 for 20 yards.,10,7,2012 -20120916_DAL@SEA,2,36,45,SEA,DAL,1,10,26,(6:45) R.Wilson pass short right to A.McCoy pushed ob at DAL 22 for 4 yards (S.Lee).,10,7,2012 -20120916_DAL@SEA,2,36,2,SEA,DAL,2,6,22,(6:02) M.Lynch left tackle to DAL 21 for 1 yard (D.Ware). Penalty on DAL-D.Ware Defensive Offside declined. PENALTY on SEA-J.Sweezy Chop Block 15 yards enforced at DAL 22 - No Play.,10,7,2012 -20120916_DAL@SEA,2,35,40,SEA,DAL,2,21,37,(5:40) (Shotgun) R.Wilson pass deep middle to S.Rice to DAL 19 for 18 yards (D.McCray).,10,7,2012 -20120916_DAL@SEA,2,34,55,SEA,DAL,3,3,19,(4:55) (Shotgun) R.Wilson pass short right to Z.Miller to DAL 12 for 7 yards (B.Carter; A.Spencer).,10,7,2012 -20120916_DAL@SEA,2,34,12,SEA,DAL,1,10,12,(4:12) M.Lynch left tackle to DAL 14 for -2 yards (B.Carter).,10,7,2012 -20120916_DAL@SEA,2,33,31,SEA,DAL,2,12,14,(3:31) (Shotgun) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at DAL 14 - No Play.,10,7,2012 -20120916_DAL@SEA,2,33,8,SEA,DAL,2,17,19,(3:08) (Shotgun) R.Wilson pass short left to S.Rice pushed ob at DAL 10 for 9 yards (M.Claiborne).,10,7,2012 -20120916_DAL@SEA,2,32,32,SEA,DAL,3,8,10,(2:32) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at DAL 10 - No Play.,10,7,2012 -20120916_DAL@SEA,2,32,12,SEA,DAL,3,13,15,(2:12) (Shotgun) R.Wilson pass short right to D.Baldwin to DAL 7 for 8 yards (B.Carr).,10,7,2012 -20120916_DAL@SEA,2,32,0,SEA,DAL,4,5,7,(2:00) S.Hauschka 25 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,7,2012 -20120916_DAL@SEA,2,32,0,SEA,DAL,,,7,S.Hauschka kicks 73 yards from SEA 35 to DAL -8. F.Jones to DAL 15 for 23 yards (M.Robinson).,13,7,2012 -20120916_DAL@SEA,2,31,52,DAL,SEA,1,10,85,(1:52) (Shotgun) T.Romo pass short middle to D.Murray to DAL 30 for 15 yards (M.Trufant).,7,13,2012 -20120916_DAL@SEA,2,31,28,DAL,SEA,1,10,70,(1:28) (No Huddle Shotgun) T.Romo pass incomplete short left to D.Bryant.,7,13,2012 -20120916_DAL@SEA,2,31,23,DAL,SEA,2,10,70,(1:23) (Shotgun) T.Romo pass incomplete short right to J.Witten.,7,13,2012 -20120916_DAL@SEA,2,31,20,DAL,SEA,3,10,70,(1:20) (Shotgun) T.Romo pass short right to J.Witten pushed ob at SEA 47 for 23 yards (R.Sherman).,7,13,2012 -20120916_DAL@SEA,2,31,13,DAL,SEA,1,10,47,(1:13) (Shotgun) T.Romo pass incomplete short right (C.Clemons).,7,13,2012 -20120916_DAL@SEA,2,31,10,DAL,SEA,2,10,47,(1:10) (Shotgun) T.Romo pass short right to M.Austin to SEA 40 for 7 yards (R.Sherman).,7,13,2012 -20120916_DAL@SEA,2,30,51,DAL,SEA,3,3,40,(:51) (Shotgun) T.Romo pass incomplete short middle to M.Austin (C.Clemons) [C.Maragos].,7,13,2012 -20120916_DAL@SEA,2,30,44,DAL,SEA,4,3,40,(:44) C.Jones punts 31 yards to SEA 9 Center-L.Ladouceur downed by DAL-D.McCray.,7,13,2012 -20120916_DAL@SEA,2,30,35,SEA,DAL,1,10,91,(:35) L.Washington left tackle to SEA 12 for 3 yards (J.Hatcher; S.Lee).,13,7,2012 -20120916_DAL@SEA,2,30,31,SEA,DAL,2,7,88,(:31) M.Lynch right tackle to SEA 17 for 5 yards (S.Lee).,13,7,2012 -20120916_DAL@SEA,2,30,25,SEA,DAL,3,2,83,(:25) M.Lynch up the middle to SEA 15 for -2 yards (D.Ware).,13,7,2012 -20120916_DAL@SEA,2,30,18,SEA,DAL,4,4,85,(:18) J.Ryan punts 50 yards to DAL 35 Center-C.Gresham. D.Bryant MUFFS catch and recovers at DAL 29. D.Bryant to DAL 29 for no gain (B.Obomanu).,13,7,2012 -20120916_DAL@SEA,2,30,10,DAL,SEA,1,10,71,(:10) T.Romo kneels to DAL 28 for -1 yards.,7,13,2012 -20120916_DAL@SEA,3,30,0,DAL,SEA,,,71,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,7,13,2012 -20120916_DAL@SEA,3,30,0,SEA,DAL,1,10,80,(15:00) M.Lynch right tackle to SEA 36 for 16 yards (G.Sensabaugh).,13,7,2012 -20120916_DAL@SEA,3,29,10,SEA,DAL,1,10,64,(14:10) M.Lynch left tackle to SEA 39 for 3 yards (A.Spencer; M.Spears).,13,7,2012 -20120916_DAL@SEA,3,28,32,SEA,DAL,2,7,61,(13:32) (Shotgun) R.Wilson sacked at SEA 32 for -7 yards (A.Spencer).,13,7,2012 -20120916_DAL@SEA,3,27,59,SEA,DAL,3,14,68,(12:59) (Shotgun) R.Wilson pass incomplete short middle to S.Rice (A.Spencer).,13,7,2012 -20120916_DAL@SEA,3,27,53,SEA,DAL,4,14,68,(12:53) J.Ryan punts 68 yards to end zone Center-C.Gresham Touchback.,13,7,2012 -20120916_DAL@SEA,3,27,44,DAL,SEA,1,10,80,(12:44) D.Murray up the middle to DAL 20 for no gain (A.Branch; K.Wright).,7,13,2012 -20120916_DAL@SEA,3,27,6,DAL,SEA,2,10,80,(12:06) (Shotgun) T.Romo pass short left to J.Witten to DAL 31 for 11 yards (B.Browner) [A.Branch].,7,13,2012 -20120916_DAL@SEA,3,26,24,DAL,SEA,1,10,69,(11:24) T.Romo pass incomplete deep middle to M.Austin (R.Sherman).,7,13,2012 -20120916_DAL@SEA,3,26,15,DAL,SEA,2,10,69,(11:15) T.Romo pass short left to D.Bryant to DAL 32 for 1 yard (B.Browner). FUMBLES (B.Browner) recovered by DAL-D.Free at DAL 33. D.Free to DAL 33 for no gain (A.Branch).,7,13,2012 -20120916_DAL@SEA,3,25,28,DAL,SEA,3,8,67,(10:28) T.Romo pass short left to D.Bryant to DAL 38 for 5 yards (K.Chancellor).,7,13,2012 -20120916_DAL@SEA,3,24,52,DAL,SEA,4,3,62,(9:52) C.Jones punts 52 yards to SEA 10 Center-L.Ladouceur out of bounds.,7,13,2012 -20120916_DAL@SEA,3,24,43,SEA,DAL,1,10,90,(9:43) M.Lynch left tackle to SEA 12 for 2 yards (B.Carter; M.Spears).,13,7,2012 -20120916_DAL@SEA,3,24,3,SEA,DAL,2,8,88,(9:03) R.Wilson pass short right to G.Tate pushed ob at SEA 22 for 10 yards (B.Carr).,13,7,2012 -20120916_DAL@SEA,3,23,34,SEA,DAL,1,10,78,(8:34) R.Wilson scrambles left end to SEA 30 for 8 yards (B.Carter).,13,7,2012 -20120916_DAL@SEA,3,22,51,SEA,DAL,2,2,70,(7:51) R.Turbin left tackle to SEA 36 for 6 yards (S.Lee; D.McCray).,13,7,2012 -20120916_DAL@SEA,3,22,13,SEA,DAL,1,10,64,(7:13) R.Turbin up the middle to SEA 39 for 3 yards (S.Lissemore; S.Lee).,13,7,2012 -20120916_DAL@SEA,3,21,37,SEA,DAL,2,7,61,(6:37) M.Lynch right tackle to DAL 25 for 36 yards (G.Sensabaugh D.McCray).,13,7,2012 -20120916_DAL@SEA,3,20,48,SEA,DAL,1,10,25,(5:48) L.Washington right tackle to DAL 22 for 3 yards (S.Lissemore).,13,7,2012 -20120916_DAL@SEA,3,20,12,SEA,DAL,2,7,22,(5:12) R.Wilson pass deep right to A.McCoy for 22 yards TOUCHDOWN.,13,7,2012 -20120916_DAL@SEA,3,20,12,SEA,DAL,,,22,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,13,7,2012 -20120916_DAL@SEA,3,20,12,SEA,DAL,,,22,S.Hauschka kicks 73 yards from SEA 35 to DAL -8. F.Jones to DAL 21 for 29 yards (E.Thomas; H.Farwell).,20,7,2012 -20120916_DAL@SEA,3,19,59,DAL,SEA,1,10,79,(4:59) T.Romo pass short right to J.Phillips to DAL 28 for 7 yards (R.Sherman).,7,20,2012 -20120916_DAL@SEA,3,19,32,DAL,SEA,2,3,72,(4:32) D.Murray right end to DAL 30 for 2 yards (K.Chancellor).,7,20,2012 -20120916_DAL@SEA,3,18,48,DAL,SEA,3,1,70,(3:48) J.Parnell reported in as eligible. D.Murray right tackle to DAL 32 for 2 yards (K.Chancellor; L.Hill).,7,20,2012 -20120916_DAL@SEA,3,18,14,DAL,SEA,1,10,68,(3:14) D.Murray left guard to DAL 36 for 4 yards (B.Wagner).,7,20,2012 -20120916_DAL@SEA,3,17,36,DAL,SEA,2,6,64,(2:36) (Shotgun) T.Romo pass short left to D.Bryant to DAL 47 for 11 yards (B.Browner).,7,20,2012 -20120916_DAL@SEA,3,16,57,DAL,SEA,1,10,53,(1:57) T.Romo pass short right to F.Jones to DAL 42 for -5 yards (K.Wright).,7,20,2012 -20120916_DAL@SEA,3,16,22,DAL,SEA,2,15,58,(1:22) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 42 - No Play.,7,20,2012 -20120916_DAL@SEA,3,15,54,DAL,SEA,2,20,63,(:54) (Shotgun) T.Romo pass incomplete short middle to M.Austin (K.Wright).,7,20,2012 -20120916_DAL@SEA,3,15,48,DAL,SEA,3,20,63,(:48) (Shotgun) T.Romo pass incomplete deep middle to M.Austin.,7,20,2012 -20120916_DAL@SEA,3,15,41,DAL,SEA,4,20,63,(:41) C.Jones punts 51 yards to SEA 12 Center-L.Ladouceur out of bounds.,7,20,2012 -20120916_DAL@SEA,3,15,32,SEA,DAL,1,10,88,(:32) M.Lynch up the middle to SEA 17 for 5 yards (J.Hatcher; B.Carter).,20,7,2012 -20120916_DAL@SEA,4,15,0,SEA,DAL,2,5,83,(15:00) R.Wilson pass short right to A.McCoy to SEA 24 for 7 yards (S.Lee).,20,7,2012 -20120916_DAL@SEA,4,14,17,SEA,DAL,1,10,76,(14:17) M.Lynch right tackle to SEA 27 for 3 yards (B.Carter; D.Ware).,20,7,2012 -20120916_DAL@SEA,4,13,35,SEA,DAL,2,7,73,(13:35) (Shotgun) PENALTY on SEA-F.Omiyale False Start 5 yards enforced at SEA 27 - No Play.,20,7,2012 -20120916_DAL@SEA,4,13,18,SEA,DAL,2,12,78,(13:18) R.Wilson scrambles left end ran ob at SEA 36 for 14 yards. PENALTY on DAL-B.Carter Unnecessary Roughness 15 yards enforced at SEA 36.,20,7,2012 -20120916_DAL@SEA,4,12,49,SEA,DAL,1,10,49,(12:49) M.Lynch right tackle to DAL 43 for 6 yards (M.Claiborne; D.Connor).,20,7,2012 -20120916_DAL@SEA,4,12,9,SEA,DAL,2,4,43,(12:09) M.Lynch right end to DAL 36 for 7 yards (D.Connor D.McCray).,20,7,2012 -20120916_DAL@SEA,4,11,25,SEA,DAL,1,10,36,(11:25) R.Turbin up the middle to DAL 31 for 5 yards (B.Carter).,20,7,2012 -20120916_DAL@SEA,4,10,42,SEA,DAL,2,5,31,(10:42) R.Wilson pass short left to R.Turbin to DAL 17 for 14 yards (D.McCray).,20,7,2012 -20120916_DAL@SEA,4,9,55,SEA,DAL,1,10,17,(9:55) M.Lynch right tackle to DAL 16 for 1 yard (D.Ware).,20,7,2012 -20120916_DAL@SEA,4,9,14,SEA,DAL,2,9,16,(9:14) M.Lynch left tackle to DAL 11 for 5 yards (S.Lissemore; S.Lee).,20,7,2012 -20120916_DAL@SEA,4,8,31,SEA,DAL,3,4,11,(8:31) R.Wilson pass short right to G.Tate pushed ob at DAL 3 for 8 yards (S.Lee).,20,7,2012 -20120916_DAL@SEA,4,8,1,SEA,DAL,1,3,3,(8:01) M.Lynch left tackle for 3 yards TOUCHDOWN.,20,7,2012 -20120916_DAL@SEA,4,8,1,SEA,DAL,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,20,7,2012 -20120916_DAL@SEA,4,8,1,SEA,DAL,,,3,S.Hauschka kicks 68 yards from SEA 35 to DAL -3. F.Jones to DAL 19 for 22 yards (M.Robinson).,27,7,2012 -20120916_DAL@SEA,4,7,51,DAL,SEA,1,10,81,(7:51) (Shotgun) T.Romo pass incomplete short right to J.Witten.,7,27,2012 -20120916_DAL@SEA,4,7,46,DAL,SEA,2,10,81,(7:46) (Shotgun) T.Romo sacked at DAL 15 for -4 yards (sack split by B.Irvin and J.Jones).,7,27,2012 -20120916_DAL@SEA,4,7,18,DAL,SEA,3,14,85,(7:18) (No Huddle Shotgun) T.Romo pass incomplete deep left to M.Austin.,7,27,2012 -20120916_DAL@SEA,4,7,12,DAL,SEA,4,14,85,(7:12) C.Jones punts 51 yards to SEA 34 Center-L.Ladouceur fair catch by L.Washington.,7,27,2012 -20120916_DAL@SEA,4,7,4,SEA,DAL,1,10,66,(7:04) M.Lynch up the middle to SEA 35 for 1 yard (J.Price-Brent; S.Lee).,27,7,2012 -20120916_DAL@SEA,4,6,58,SEA,DAL,2,9,65,(6:58) M.Lynch right end to SEA 38 for 3 yards (D.Connor).,27,7,2012 -20120916_DAL@SEA,4,6,46,SEA,DAL,3,6,62,(6:46) (Shotgun) R.Wilson sacked at SEA 27 for -11 yards (A.Spencer). PENALTY on DAL-A.Spencer Face Mask (15 Yards) 15 yards enforced at SEA 27.,27,7,2012 -20120916_DAL@SEA,4,6,22,SEA,DAL,1,10,58,(6:22) R.Wilson pass short right to A.McCoy to SEA 47 for 5 yards (S.Lee; S.Lissemore) [J.Price-Brent].,27,7,2012 -20120916_DAL@SEA,4,6,14,SEA,DAL,2,5,53,(6:14) M.Lynch left guard to DAL 49 for 4 yards (M.Spears; A.Spencer).,27,7,2012 -20120916_DAL@SEA,4,5,29,SEA,DAL,3,1,49,(5:29) M.Robinson up the middle to DAL 47 for 2 yards (J.Price-Brent; S.Lee).,27,7,2012 -20120916_DAL@SEA,4,4,43,SEA,DAL,1,10,47,(4:43) M.Lynch right tackle to DAL 44 for 3 yards (S.Lee; M.Spears).,27,7,2012 -20120916_DAL@SEA,4,4,2,SEA,DAL,2,7,44,(4:02) M.Lynch left guard to DAL 42 for 2 yards (J.Price-Brent; B.Carter).,27,7,2012 -20120916_DAL@SEA,4,3,20,SEA,DAL,3,5,42,(3:20) (Shotgun) R.Wilson pass incomplete short left to L.Washington (V.Butler).,27,7,2012 -20120916_DAL@SEA,4,3,16,SEA,DAL,4,5,42,(3:16) (Punt formation) PENALTY on DAL Defensive 12 On-field 4 yards enforced at DAL 42 - No Play. 4 yard penalty because 1 yard remained for first down.,27,7,2012 -20120916_DAL@SEA,4,3,8,SEA,DAL,4,1,38,(3:08) R.Wilson up the middle to DAL 36 for 2 yards (S.Lissemore; D.Ware). QB Sneak,27,7,2012 -20120916_DAL@SEA,4,2,27,SEA,DAL,1,10,36,(2:27) R.Turbin up the middle to DAL 34 for 2 yards (S.Lee; D.Ware).,27,7,2012 -20120916_DAL@SEA,4,2,0,SEA,DAL,2,8,34,(2:00) R.Turbin left tackle to DAL 35 for -1 yards (D.Ware; S.Lee).,27,7,2012 -20120916_DAL@SEA,4,1,19,SEA,DAL,3,9,35,(1:19) L.Washington up the middle to DAL 30 for 5 yards (S.Lissemore).,27,7,2012 -20120916_DAL@SEA,4,0,43,SEA,DAL,4,4,30,(:43) L.Washington left guard to DAL 30 for no gain (V.Butler S.Lissemore).,27,7,2012 -20120916_DAL@SEA,4,0,36,DAL,SEA,1,10,70,(:36) (Shotgun) T.Romo pass short middle to F.Jones to DAL 43 for 13 yards (R.Sherman).,7,27,2012 -20120916_DAL@SEA,4,0,13,DAL,SEA,1,10,57,(:13) (No Huddle Shotgun) T.Romo pass short left to M.Austin pushed ob at SEA 42 for 15 yards (K.Chancellor).,7,27,2012 -20120916_DAL@SEA,4,0,5,DAL,SEA,1,10,42,(:05) (No Huddle Shotgun) T.Romo pass short right to F.Jones to SEA 19 for 23 yards (K.Chancellor).,7,27,2012 -20120916_DAL@SEA,4,0,5,DAL,SEA,,,42,                      ,7,27,2012 -20120916_WAS@STL,1,0,0,WAS,STL,,,42,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 -20120916_WAS@STL,1,60,0,STL,WAS,1,10,80,(15:00) S.Bradford pass short left to D.Amendola to SL 33 for 13 yards (P.Riley). FUMBLES (P.Riley) RECOVERED by WAS-J.Wilson at SL 30. J.Wilson for 30 yards TOUCHDOWN.,0,0,2012 -20120916_WAS@STL,1,60,0,WAS,STL,,,80,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,0,2012 -20120916_WAS@STL,1,60,0,WAS,STL,,,80,B.Cundiff kicks 68 yards from WAS 35 to SL -3. I.Pead to SL 9 for 12 yards (L.Alexander).,7,0,2012 -20120916_WAS@STL,1,59,45,STL,WAS,1,10,91,(14:45) (Shotgun) S.Bradford pass short right to D.Amendola to SL 17 for 8 yards (D.Hall). WAS-A.Carriker was injured during the play. His return is Questionable. PENALTY on WAS-D.Hall Defensive Holding 5 yards enforced at SL 9 - No Play.,0,7,2012 -20120916_WAS@STL,1,59,28,STL,WAS,1,10,86,(14:28) S.Bradford pass short right to D.Amendola pushed ob at SL 26 for 12 yards (D.Hall). PENALTY on WAS-L.Fletcher Personal Foul 15 yards enforced at SL 26.,0,7,2012 -20120916_WAS@STL,1,58,56,STL,WAS,1,10,59,(13:56) S.Bradford pass short left to D.Amendola to SL 41 for no gain (B.Orakpo).,0,7,2012 -20120916_WAS@STL,1,58,14,STL,WAS,2,10,59,(13:14) S.Bradford pass short middle to D.Amendola to WAS 44 for 15 yards (Mad.Williams).,0,7,2012 -20120916_WAS@STL,1,57,33,STL,WAS,1,10,44,(12:33) S.Bradford pass incomplete deep right to C.Givens (D.Gomes).,0,7,2012 -20120916_WAS@STL,1,57,25,STL,WAS,2,10,44,(12:25) S.Bradford pass short right to D.Amendola to WAS 37 for 7 yards (Mad.Williams).,0,7,2012 -20120916_WAS@STL,1,56,38,STL,WAS,3,3,37,(11:38) (Shotgun) S.Bradford pass short left to D.Amendola to WAS 29 for 8 yards (D.Hall).,0,7,2012 -20120916_WAS@STL,1,55,59,STL,WAS,1,10,29,(10:59) S.Jackson right tackle ran ob at WAS 15 for 14 yards (Mad.Williams).,0,7,2012 -20120916_WAS@STL,1,55,29,STL,WAS,1,10,15,(10:29) S.Bradford pass incomplete short left to B.Gibson.,0,7,2012 -20120916_WAS@STL,1,55,22,STL,WAS,2,10,15,(10:22) (Shotgun) PENALTY on SL-B.Richardson False Start 5 yards enforced at WAS 15 - No Play.,0,7,2012 -20120916_WAS@STL,1,55,22,STL,WAS,2,15,20,(10:22) S.Jackson right tackle to WAS 19 for 1 yard (B.Orakpo).,0,7,2012 -20120916_WAS@STL,1,54,44,STL,WAS,3,14,19,(9:44) (Shotgun) S.Bradford sacked at WAS 26 for -7 yards (B.Orakpo). FUMBLES (B.Orakpo) recovered by SL-R.Saffold at WAS 28. R.Saffold to WAS 21 for 7 yards (D.Hall). SL-R.Saffold was injured during the play. His return is Questionable.,0,7,2012 -20120916_WAS@STL,1,54,11,STL,WAS,4,16,21,(9:11) G.Zuerlein 39 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 -20120916_WAS@STL,1,54,11,STL,WAS,,,21,G.Zuerlein kicks 70 yards from SL 35 to WAS -5. B.Banks to WAS 20 for 25 yards (Q.Mikell).,3,7,2012 -20120916_WAS@STL,1,54,0,WAS,STL,1,10,80,(9:00) (Shotgun) A.Morris left tackle to WAS 26 for 6 yards (J.Laurinaitis).,7,3,2012 -20120916_WAS@STL,1,53,25,WAS,STL,2,4,74,(8:25) (Shotgun) A.Morris left tackle to WAS 25 for -1 yards (J.Jenkins).,7,3,2012 -20120916_WAS@STL,1,52,44,WAS,STL,3,5,75,(7:44) (Shotgun) R.Griffin pass short middle to A.Robinson to WAS 37 for 12 yards (J.Jenkins).,7,3,2012 -20120916_WAS@STL,1,51,58,WAS,STL,1,10,63,(6:58) (Shotgun) R.Griffin right end to WAS 33 for -4 yards (J.Dunbar).,7,3,2012 -20120916_WAS@STL,1,51,36,WAS,STL,2,14,67,(6:36) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 39 for 6 yards (E.Sims).,7,3,2012 -20120916_WAS@STL,1,50,59,WAS,STL,3,8,61,(5:59) (Shotgun) R.Griffin sacked at WAS 30 for -9 yards (R.Quinn).,7,3,2012 -20120916_WAS@STL,1,50,47,WAS,STL,4,17,70,(5:47) S.Rocca punts 54 yards to SL 16 Center-J.Snow. D.Amendola pushed ob at SL 38 for 22 yards (L.Alexander).,7,3,2012 -20120916_WAS@STL,1,50,33,STL,WAS,1,10,62,(5:33) S.Bradford pass incomplete deep right to C.Givens (D.Hall).,3,7,2012 -20120916_WAS@STL,1,50,27,STL,WAS,2,10,62,(5:27) (Shotgun) S.Bradford pass short left to D.Amendola to SL 46 for 8 yards (D.Gomes).,3,7,2012 -20120916_WAS@STL,1,49,44,STL,WAS,3,2,54,(4:44) (Shotgun) S.Bradford pass short left to D.Richardson pushed ob at SL 47 for 1 yard (J.Wilson).,3,7,2012 -20120916_WAS@STL,1,49,31,STL,WAS,4,1,53,(4:31) J.Hekker punts 53 yards to end zone Center-J.McQuaide Touchback.,3,7,2012 -20120916_WAS@STL,1,49,24,WAS,STL,1,10,80,(4:24) (Shotgun) R.Griffin pass short left to J.Morgan to WAS 32 for 12 yards (R.Quinn).,7,3,2012 -20120916_WAS@STL,1,48,50,WAS,STL,1,10,68,(3:50) (Shotgun) A.Morris right tackle to WAS 35 for 3 yards (C.Long).,7,3,2012 -20120916_WAS@STL,1,48,14,WAS,STL,2,7,65,(3:14) (Shotgun) R.Griffin pass incomplete short right [J.Dunbar]. PENALTY on WAS-R.Griffin Intentional Grounding 11 yards enforced at WAS 35.,7,3,2012 -20120916_WAS@STL,1,48,3,WAS,STL,3,18,76,(3:03) (Shotgun) R.Griffin scrambles right end pushed ob at WAS 34 for 10 yards (E.Sims). PENALTY on SL-E.Sims Personal Foul 15 yards enforced at WAS 34.,7,3,2012 -20120916_WAS@STL,1,47,43,WAS,STL,1,10,51,(2:43) (Shotgun) A.Morris right tackle to SL 45 for 6 yards (J.Laurinaitis).,7,3,2012 -20120916_WAS@STL,1,47,8,WAS,STL,2,4,45,(2:08) (Shotgun) A.Morris right end pushed ob at SL 18 for 27 yards (C.Dahl).,7,3,2012 -20120916_WAS@STL,1,46,40,WAS,STL,1,10,18,(1:40) R.Griffin scrambles left end ran ob at SL 14 for 4 yards (J.Dunbar).,7,3,2012 -20120916_WAS@STL,1,46,9,WAS,STL,2,6,14,(1:09) (Shotgun) A.Morris right tackle to SL 11 for 3 yards (W.Hayes).,7,3,2012 -20120916_WAS@STL,1,45,27,WAS,STL,3,3,11,(:27) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson. PENALTY on SL-R.Quinn Personal Foul 6 yards enforced at SL 11.,7,3,2012 -20120916_WAS@STL,1,45,23,WAS,STL,1,5,5,(:23) (Shotgun) R.Griffin left end for 5 yards TOUCHDOWN.,7,3,2012 -20120916_WAS@STL,1,45,23,WAS,STL,,,5,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,7,3,2012 -20120916_WAS@STL,1,45,23,WAS,STL,,,5,B.Cundiff kicks 74 yards from WAS 35 to SL -9. I.Pead Touchback.,14,3,2012 -20120916_WAS@STL,1,45,19,STL,WAS,1,10,80,(:19) S.Jackson up the middle to SL 32 for 12 yards (L.Fletcher).,3,14,2012 -20120916_WAS@STL,2,45,0,STL,WAS,1,10,68,(15:00) S.Jackson right end to SL 41 for 9 yards (L.Fletcher).,3,14,2012 -20120916_WAS@STL,2,44,22,STL,WAS,2,1,59,(14:22) (No Huddle) PENALTY on SL-H.Dahl False Start 5 yards enforced at SL 41 - No Play.,3,14,2012 -20120916_WAS@STL,2,44,3,STL,WAS,2,6,64,(14:03) S.Bradford pass short left to D.Amendola to SL 44 for 8 yards (D.Hall).,3,14,2012 -20120916_WAS@STL,2,43,29,STL,WAS,1,10,56,(13:29) (No Huddle) S.Jackson up the middle to SL 43 for -1 yards (R.Kerrigan).,3,14,2012 -20120916_WAS@STL,2,42,53,STL,WAS,2,11,57,(12:53) (No Huddle Shotgun) S.Bradford pass incomplete short right to B.Gibson [S.Bowen].,3,14,2012 -20120916_WAS@STL,2,42,48,STL,WAS,3,11,57,(12:48) (Shotgun) S.Bradford pass short middle to B.Gibson to WAS 38 for 19 yards (D.Hall).,3,14,2012 -20120916_WAS@STL,2,42,11,STL,WAS,1,10,38,(12:11) (No Huddle) S.Bradford pass incomplete short right to D.Amendola.,3,14,2012 -20120916_WAS@STL,2,42,6,STL,WAS,2,10,38,(12:06) (No Huddle) S.Jackson right guard to WAS 18 for 20 yards (D.Hall Mad.Williams).,3,14,2012 -20120916_WAS@STL,2,41,20,STL,WAS,1,10,18,(11:20) (No Huddle) S.Bradford pass incomplete short left to B.Quick.,3,14,2012 -20120916_WAS@STL,2,41,16,STL,WAS,2,10,18,(11:16) (No Huddle) D.Richardson up the middle to WAS 10 for 8 yards (Mad.Williams).,3,14,2012 -20120916_WAS@STL,2,40,29,STL,WAS,3,2,10,(10:29) S.Bradford pass short right to D.Amendola to WAS 4 for 6 yards (C.Griffin).,3,14,2012 -20120916_WAS@STL,2,39,49,STL,WAS,1,4,4,(9:49) S.Jackson up the middle to WAS 1 for 3 yards (D.Gomes).,3,14,2012 -20120916_WAS@STL,2,39,9,STL,WAS,2,1,1,(9:09) S.Jackson right guard to WAS 1 for no gain (R.Kerrigan). FUMBLES (R.Kerrigan) RECOVERED by WAS-R.Kerrigan at WAS 3. R.Kerrigan to WAS 3 for no gain (T.Nsekhe). St. Louis challenged the fumble ruling and the play was REVERSED. S.Jackson right guard to WAS 1 for no gain (R.Kerrigan).,3,14,2012 -20120916_WAS@STL,2,38,57,STL,WAS,3,1,1,(8:57) S.Jackson right guard to WAS 1 for no gain (J.Jenkins). PENALTY on SL-S.Jackson Unsportsmanlike Conduct 14 yards enforced at WAS 1.,3,14,2012 -20120916_WAS@STL,2,38,22,STL,WAS,4,15,15,(8:22) G.Zuerlein 33 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,14,2012 -20120916_WAS@STL,2,38,22,STL,WAS,,,15,G.Zuerlein kicks 73 yards from SL 35 to WAS -8. B.Banks Touchback.,6,14,2012 -20120916_WAS@STL,2,38,17,WAS,STL,1,10,80,(8:17) R.Griffin pass short left to S.Moss to WAS 23 for 3 yards (J.Jenkins).,14,6,2012 -20120916_WAS@STL,2,37,39,WAS,STL,2,7,77,(7:39) (Shotgun) A.Morris right end to WAS 23 for no gain (C.Finnegan).,14,6,2012 -20120916_WAS@STL,2,36,59,WAS,STL,3,7,77,(6:59) (Shotgun) R.Griffin pass short right to J.Morgan pushed ob at WAS 32 for 9 yards (J.Laurinaitis).,14,6,2012 -20120916_WAS@STL,2,36,28,WAS,STL,1,10,68,(6:28) R.Griffin pass deep middle to L.Hankerson for 68 yards TOUCHDOWN.,14,6,2012 -20120916_WAS@STL,2,36,28,WAS,STL,,,68,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,14,6,2012 -20120916_WAS@STL,2,36,28,WAS,STL,,,68,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,21,6,2012 -20120916_WAS@STL,2,36,19,STL,WAS,1,10,80,(6:19) S.Bradford pass deep middle to D.Amendola to WAS 24 for 56 yards (D.Gomes).,6,21,2012 -20120916_WAS@STL,2,35,30,STL,WAS,1,10,24,(5:30) D.Richardson right tackle to WAS 24 for no gain (R.Jackson).,6,21,2012 -20120916_WAS@STL,2,34,46,STL,WAS,2,10,24,(4:46) (Shotgun) S.Bradford pass short right to D.Amendola to WAS 22 for 2 yards (R.Crawford) [R.Kerrigan].,6,21,2012 -20120916_WAS@STL,2,34,6,STL,WAS,3,8,22,(4:06) (Shotgun) S.Bradford pass short right to L.Kendricks to WAS 8 for 14 yards (C.Griffin).,6,21,2012 -20120916_WAS@STL,2,33,26,STL,WAS,1,8,8,(3:26) (Shotgun) D.Richardson up the middle to WAS 4 for 4 yards (P.Riley).,6,21,2012 -20120916_WAS@STL,2,32,43,STL,WAS,2,4,4,(2:43) (Shotgun) D.Richardson left guard to WAS 1 for 3 yards (Mad.Williams).,6,21,2012 -20120916_WAS@STL,2,32,3,STL,WAS,3,1,1,(2:03) S.Bradford pass short left to D.Amendola for 1 yard TOUCHDOWN.,6,21,2012 -20120916_WAS@STL,2,32,3,STL,WAS,,,1,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,21,2012 -20120916_WAS@STL,2,32,3,,STL,,,1,G.Zuerlein kicks 75 yards from SL 30 to WAS -5. B.Banks to WAS 21 for 26 yards (B.Fletcher).,21,13,2012 -20120916_WAS@STL,2,31,51,WAS,STL,1,10,79,(1:51) (Shotgun) R.Griffin pass short left to L.Hankerson pushed ob at WAS 21 for no gain (J.Jenkins).,21,13,2012 -20120916_WAS@STL,2,31,47,WAS,STL,2,10,79,(1:47) (Shotgun) R.Griffin pass short left to R.Helu to WAS 21 for no gain (J.Dunbar).,21,13,2012 -20120916_WAS@STL,2,31,1,WAS,STL,3,10,79,(1:01) (Shotgun) R.Griffin up the middle to WAS 36 for 15 yards (J.Laurinaitis; C.Dahl).,21,13,2012 -20120916_WAS@STL,2,30,52,WAS,STL,1,10,64,(:52) (Shotgun) R.Griffin pass short middle intended for F.Davis INTERCEPTED by C.Finnegan at WAS 45. C.Finnegan to WAS 40 for 5 yards (R.Helu).,21,13,2012 -20120916_WAS@STL,2,30,45,STL,WAS,1,10,40,(:45) (Shotgun) S.Bradford pass short right to S.Smith to WAS 32 for 8 yards (Mad.Williams).,13,21,2012 -20120916_WAS@STL,2,30,26,STL,WAS,2,2,32,(:26) (No Huddle Shotgun) S.Bradford scrambles up the middle to WAS 20 for 12 yards (L.Fletcher).,13,21,2012 -20120916_WAS@STL,2,30,18,STL,WAS,1,10,20,(:18) (Shotgun) S.Bradford pass short middle to S.Smith to WAS 14 for 6 yards (D.Gomes).,13,21,2012 -20120916_WAS@STL,2,30,11,STL,WAS,2,4,14,(:11) (Shotgun) S.Bradford pass incomplete short middle to B.Gibson. PENALTY on SL-W.Hunter Offensive Holding 10 yards enforced at WAS 14 - No Play.,13,21,2012 -20120916_WAS@STL,2,30,7,STL,WAS,2,14,24,(:07) G.Zuerlein 42 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,13,21,2012 -20120916_WAS@STL,2,30,7,STL,WAS,,,24,G.Zuerlein kicks 51 yards from SL 35 to WAS 14. B.Banks to WAS 16 for 2 yards (I.Pead).,16,21,2012 -20120916_WAS@STL,3,30,0,STL,WAS,,,24,G.Zuerlein kicks 50 yards from SL 35 to WAS 15. N.Paul to WAS 15 for no gain (C.Dahl).,16,21,2012 -20120916_WAS@STL,3,29,54,WAS,STL,1,10,85,(14:54) A.Morris left tackle to WAS 18 for 3 yards (R.Quinn). Direct Snap to 46 - A. Morris,21,16,2012 -20120916_WAS@STL,3,29,15,WAS,STL,2,7,82,(14:15) (Shotgun) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at WAS 18 - No Play.,21,16,2012 -20120916_WAS@STL,3,28,50,WAS,STL,2,12,87,(13:50) (Shotgun) F.Davis left tackle to WAS 14 for 1 yard (J.Dunbar).,21,16,2012 -20120916_WAS@STL,3,28,15,WAS,STL,3,11,86,(13:15) (Shotgun) R.Griffin pass short right to N.Paul to WAS 18 for 4 yards (C.Finnegan).,21,16,2012 -20120916_WAS@STL,3,27,44,WAS,STL,4,7,82,(12:44) S.Rocca punts 51 yards to SL 31 Center-J.Snow. D.Amendola to SL 37 for 6 yards (R.Doughty).,21,16,2012 -20120916_WAS@STL,3,27,34,STL,WAS,1,10,63,(12:34) S.Bradford pass incomplete short left to D.Richardson (S.Bowen).,16,21,2012 -20120916_WAS@STL,3,27,29,STL,WAS,2,10,63,(12:29) (No Huddle Shotgun) S.Bradford pass short middle to S.Smith to 50 for 13 yards. PENALTY on WAS-B.Orakpo Defensive Offside 5 yards enforced at SL 37 - No Play.,16,21,2012 -20120916_WAS@STL,3,26,58,STL,WAS,2,5,58,(11:58) (Shotgun) S.Bradford pass short left to S.Smith to WAS 33 for 25 yards (C.Griffin).,16,21,2012 -20120916_WAS@STL,3,26,11,STL,WAS,1,10,33,(11:11) (No Huddle) D.Richardson right tackle to WAS 34 for -1 yards (D.Hall).,16,21,2012 -20120916_WAS@STL,3,25,32,STL,WAS,2,11,34,(10:32) S.Bradford pass deep right to B.Gibson for 34 yards TOUCHDOWN.,16,21,2012 -20120916_WAS@STL,3,25,32,STL,WAS,,,34,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,16,21,2012 -20120916_WAS@STL,3,25,32,STL,WAS,,,34,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,23,21,2012 -20120916_WAS@STL,3,25,23,WAS,STL,1,10,80,(10:23) R.Griffin pass short left to A.Robinson ran ob at WAS 48 for 28 yards (C.Dahl).,21,23,2012 -20120916_WAS@STL,3,25,1,WAS,STL,1,10,52,(10:01) A.Morris left end to SL 47 for 5 yards (K.Heard).,21,23,2012 -20120916_WAS@STL,3,24,21,WAS,STL,2,5,47,(9:21) A.Morris left tackle to SL 18 for 29 yards (W.Hayes).,21,23,2012 -20120916_WAS@STL,3,23,36,WAS,STL,1,10,18,(8:36) (Shotgun) A.Morris left end to SL 14 for 4 yards (C.Dahl).,21,23,2012 -20120916_WAS@STL,3,22,58,WAS,STL,2,6,14,(7:58) A.Morris left tackle to SL 9 for 5 yards (J.Laurinaitis; C.Long).,21,23,2012 -20120916_WAS@STL,3,22,18,WAS,STL,3,1,9,(7:18) R.Griffin pass short right to F.Davis to SL 1 for 8 yards (M.Haggan).,21,23,2012 -20120916_WAS@STL,3,21,33,WAS,STL,1,1,1,(6:33) PENALTY on WAS-N.Paul False Start 5 yards enforced at SL 1 - No Play.,21,23,2012 -20120916_WAS@STL,3,21,13,WAS,STL,1,6,6,(6:13) A.Morris left end to SL 7 for -1 yards (J.Laurinaitis).,21,23,2012 -20120916_WAS@STL,3,20,33,WAS,STL,2,7,7,(5:33) (Shotgun) R.Griffin up the middle for 7 yards TOUCHDOWN.,21,23,2012 -20120916_WAS@STL,3,20,33,WAS,STL,,,7,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,21,23,2012 -20120916_WAS@STL,3,20,33,WAS,STL,,,7,B.Cundiff kicks 73 yards from WAS 35 to SL -8. C.Givens Touchback.,28,23,2012 -20120916_WAS@STL,3,20,27,STL,WAS,1,10,80,(5:27) S.Bradford sacked at SL 13 for -7 yards (S.Bowen). Penalty on SL-W.Hunter Offensive Holding declined.,23,28,2012 -20120916_WAS@STL,3,20,8,STL,WAS,2,17,87,(5:08) (Shotgun) S.Bradford pass short right to L.Kendricks to SL 24 for 11 yards (D.Gomes).,23,28,2012 -20120916_WAS@STL,3,19,27,STL,WAS,3,6,76,(4:27) (Shotgun) S.Bradford pass short right to D.Amendola pushed ob at SL 41 for 17 yards (D.Gomes).,23,28,2012 -20120916_WAS@STL,3,19,11,STL,WAS,1,10,59,(4:11) D.Richardson right end to WAS 6 for 53 yards (J.Wilson). WAS-J.Wilson was injured during the play.,23,28,2012 -20120916_WAS@STL,3,18,31,STL,WAS,1,6,6,(3:31) (Shotgun) S.Bradford pass short middle intended for S.Smith INTERCEPTED by L.Fletcher at WAS -5. Touchback.,23,28,2012 -20120916_WAS@STL,3,18,25,WAS,STL,1,10,80,(3:25) (Shotgun) A.Morris right end to WAS 23 for 3 yards (J.Laurinaitis).,28,23,2012 -20120916_WAS@STL,3,17,47,WAS,STL,2,7,77,(2:47) R.Griffin pass short right to N.Paul to WAS 24 for 1 yard (Q.Mikell).,28,23,2012 -20120916_WAS@STL,3,17,4,WAS,STL,3,6,76,(2:04) (Shotgun) R.Griffin pass incomplete short right to D.Briscoe (B.Fletcher).,28,23,2012 -20120916_WAS@STL,3,17,4,WAS,STL,4,6,76,(2:04) S.Rocca punt is BLOCKED by M.Mulligan Center-J.Snow RECOVERED by SL-E.Sims at WAS 24. E.Sims to WAS 24 for no gain (P.Riley).,28,23,2012 -20120916_WAS@STL,3,16,51,STL,WAS,1,10,24,(1:51) D.Richardson up the middle to WAS 21 for 3 yards (D.Gomes).,23,28,2012 -20120916_WAS@STL,3,16,13,STL,WAS,2,7,21,(1:13) (Shotgun) S.Bradford pass short right to D.Amendola to WAS 19 for 2 yards (D.Hall).,23,28,2012 -20120916_WAS@STL,3,15,29,STL,WAS,3,5,19,(:29) (Shotgun) S.Bradford pass short right to D.Richardson to WAS 1 for 18 yards (C.Griffin).,23,28,2012 -20120916_WAS@STL,4,15,0,STL,WAS,1,1,1,(15:00) S.Bradford pass short middle to M.Mulligan for 1 yard TOUCHDOWN.,23,28,2012 -20120916_WAS@STL,4,15,0,STL,WAS,,,1,(Pass formation) TWO-POINT CONVERSION ATTEMPT. D.Richardson rushes up the middle. ATTEMPT SUCCEEDS. Play Challenged by Replay Assistant and Upheld.,23,28,2012 -20120916_WAS@STL,4,15,0,STL,WAS,,,1,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,31,28,2012 -20120916_WAS@STL,4,14,55,WAS,STL,1,10,80,(14:55) R.Griffin pass incomplete short right.,28,31,2012 -20120916_WAS@STL,4,14,45,WAS,STL,2,10,80,(14:45) (Shotgun) A.Morris left tackle to WAS 21 for 1 yard (J.Laurinaitis).,28,31,2012 -20120916_WAS@STL,4,14,6,WAS,STL,3,9,79,(14:06) (Shotgun) R.Griffin pass short right to J.Morgan to WAS 29 for 8 yards (B.Fletcher).,28,31,2012 -20120916_WAS@STL,4,13,33,WAS,STL,4,1,71,(13:33) S.Rocca punts 55 yards to SL 16 Center-J.Snow. D.Amendola to SL 17 for 1 yard (L.Alexander). PENALTY on WAS-L.Alexander Horse Collar Tackle 15 yards enforced at SL 17.,28,31,2012 -20120916_WAS@STL,4,13,25,STL,WAS,1,10,68,(13:25) D.Richardson left end to SL 32 for no gain (S.Bowen).,31,28,2012 -20120916_WAS@STL,4,12,50,STL,WAS,2,10,68,(12:50) (Shotgun) S.Bradford pass incomplete short left to S.Smith (P.Riley).,31,28,2012 -20120916_WAS@STL,4,12,42,STL,WAS,3,10,68,(12:42) S.Bradford pass short middle to D.Amendola to SL 40 for 8 yards (R.Crawford).,31,28,2012 -20120916_WAS@STL,4,12,5,STL,WAS,4,2,60,(12:05) J.Hekker punts 44 yards to WAS 16 Center-J.McQuaide out of bounds.,31,28,2012 -20120916_WAS@STL,4,12,0,WAS,STL,1,10,84,(12:00) (Shotgun) PENALTY on WAS-S.Moss False Start 5 yards enforced at WAS 16 - No Play.,28,31,2012 -20120916_WAS@STL,4,12,0,WAS,STL,1,15,89,(12:00) R.Griffin pass short middle to J.Morgan to WAS 25 for 14 yards (Q.Mikell).,28,31,2012 -20120916_WAS@STL,4,11,29,WAS,STL,2,1,75,(11:29) (Shotgun) R.Griffin right end to WAS 31 for 6 yards (C.Finnegan).,28,31,2012 -20120916_WAS@STL,4,10,44,WAS,STL,1,10,69,(10:44) R.Griffin pass incomplete deep right to A.Robinson.,28,31,2012 -20120916_WAS@STL,4,10,34,WAS,STL,2,10,69,(10:34) (Shotgun) R.Griffin up the middle to WAS 45 for 14 yards (C.Dahl).,28,31,2012 -20120916_WAS@STL,4,9,56,WAS,STL,1,10,55,(9:56) R.Griffin left end ran ob at SL 46 for 9 yards (J.Jenkins).,28,31,2012 -20120916_WAS@STL,4,9,23,WAS,STL,2,1,46,(9:23) (Shotgun) E.Royster up the middle to SL 42 for 4 yards (C.Long).,28,31,2012 -20120916_WAS@STL,4,8,49,WAS,STL,1,10,42,(8:49) A.Morris right tackle to SL 46 for -4 yards (R.McIntosh).,28,31,2012 -20120916_WAS@STL,4,8,9,WAS,STL,2,14,46,(8:09) (Shotgun) R.Griffin pass short right to E.Royster pushed ob at SL 44 for 2 yards (J.Dunbar) [W.Hayes].,28,31,2012 -20120916_WAS@STL,4,7,49,WAS,STL,3,12,44,(7:49) (Shotgun) R.Griffin scrambles right end to SL 39 for 5 yards (C.Finnegan).,28,31,2012 -20120916_WAS@STL,4,7,13,WAS,STL,4,7,39,(7:13) S.Rocca punts 28 yards to SL 11 Center-J.Snow fair catch by D.Amendola.,28,31,2012 -20120916_WAS@STL,4,7,7,STL,WAS,1,10,89,(7:07) D.Richardson up the middle to SL 12 for 1 yard (P.Riley). SL-W.Hunter was injured during the play.,31,28,2012 -20120916_WAS@STL,4,6,34,STL,WAS,2,9,88,(6:34) D.Richardson left end to SL 14 for 2 yards (P.Riley).,31,28,2012 -20120916_WAS@STL,4,5,53,STL,WAS,3,7,86,(5:53) (Shotgun) D.Richardson left end to SL 10 for -4 yards (C.Griffin).,31,28,2012 -20120916_WAS@STL,4,5,7,STL,WAS,4,11,90,(5:07) J.Hekker punts 66 yards to WAS 24 Center-J.McQuaide. B.Banks to WAS 21 for -3 yards (M.Haggan).,31,28,2012 -20120916_WAS@STL,4,4,54,WAS,STL,1,10,79,(4:54) (Shotgun) R.Griffin pass incomplete short left to F.Davis (J.Jenkins).,28,31,2012 -20120916_WAS@STL,4,4,45,WAS,STL,2,10,79,(4:45) (Shotgun) R.Griffin pass incomplete short middle to F.Davis [R.Quinn]. PENALTY on WAS-T.Williams Offensive Holding 10 yards enforced at WAS 21 - No Play.,28,31,2012 -20120916_WAS@STL,4,4,40,WAS,STL,2,20,89,(4:40) (Shotgun) R.Griffin pass incomplete short middle to E.Royster [K.Langford].,28,31,2012 -20120916_WAS@STL,4,4,35,WAS,STL,3,20,89,(4:35) (Shotgun) R.Griffin pass short left to N.Paul to WAS 19 for 8 yards (J.Laurinaitis).,28,31,2012 -20120916_WAS@STL,4,4,5,WAS,STL,4,12,81,(4:05) S.Rocca punts 52 yards to SL 29 Center-J.Snow. D.Amendola to SL 29 for no gain (N.Paul).,28,31,2012 -20120916_WAS@STL,4,3,54,STL,WAS,1,10,71,(3:54) S.Bradford pass short right to M.Mulligan pushed ob at SL 42 for 13 yards (L.Fletcher).,31,28,2012 -20120916_WAS@STL,4,3,47,STL,WAS,1,10,58,(3:47) D.Richardson up the middle to SL 44 for 2 yards (Mad.Williams).,31,28,2012 -20120916_WAS@STL,4,3,40,STL,WAS,2,8,56,(3:40) PENALTY on WAS-S.Bowen Defensive Offside 5 yards enforced at SL 44 - No Play.,31,28,2012 -20120916_WAS@STL,4,3,40,STL,WAS,2,3,51,(3:40) D.Richardson right guard to WAS 46 for 5 yards (L.Fletcher).,31,28,2012 -20120916_WAS@STL,4,3,33,STL,WAS,1,10,46,(3:33) D.Richardson left tackle to WAS 41 for 5 yards (P.Riley).,31,28,2012 -20120916_WAS@STL,4,2,50,STL,WAS,2,5,41,(2:50) D.Richardson right tackle to WAS 39 for 2 yards (L.Fletcher). FUMBLES (L.Fletcher) RECOVERED by WAS-D.Hall at WAS 37. D.Hall to WAS 37 for no gain (L.Kendricks).,31,28,2012 -20120916_WAS@STL,4,2,40,WAS,STL,1,10,63,(2:40) (Shotgun) R.Griffin pass short left to E.Royster to WAS 42 for 5 yards (J.Dunbar).,28,31,2012 -20120916_WAS@STL,4,2,13,WAS,STL,2,5,58,(2:13) (Shotgun) R.Griffin pass short middle to S.Moss to SL 49 for 9 yards (J.Laurinaitis).,28,31,2012 -20120916_WAS@STL,4,2,0,WAS,STL,1,10,49,(2:00) (Shotgun) R.Griffin right end pushed ob at SL 38 for 11 yards (C.Dahl).,28,31,2012 -20120916_WAS@STL,4,1,53,WAS,STL,1,10,38,(1:53) (Shotgun) R.Griffin pass incomplete short left to F.Davis.,28,31,2012 -20120916_WAS@STL,4,1,50,WAS,STL,2,10,38,(1:50) (Shotgun) R.Griffin pass short middle to S.Moss to SL 36 for 2 yards (J.Dunbar).,28,31,2012 -20120916_WAS@STL,4,1,27,WAS,STL,3,8,36,(1:27) (Shotgun) R.Griffin pass short right to J.Morgan to SL 29 for 7 yards (C.Finnegan). PENALTY on WAS-J.Morgan Unsportsmanlike Conduct 15 yards enforced at SL 29.,28,31,2012 -20120916_WAS@STL,4,1,18,WAS,STL,4,16,44,(1:18) B.Cundiff 62 yard field goal is No Good Short Center-J.Snow Holder-S.Rocca.,28,31,2012 -20120916_WAS@STL,4,1,13,STL,WAS,1,10,48,(1:13) S.Bradford kneels to WAS 49 for -1 yards.,31,28,2012 -20120916_WAS@STL,4,0,35,STL,WAS,2,11,49,(:35) S.Bradford kneels to 50 for -1 yards.,31,28,2012 -20120916_WAS@STL,4,0,35,STL,WAS,,,49,                      ,31,28,2012 -20120916_NYJ@PIT,1,0,0,NYJ,PIT,,,49,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,0,0,2012 -20120916_NYJ@PIT,1,60,0,PIT,NYJ,1,10,80,(15:00) B.Roethlisberger pass short right to A.Brown to PIT 28 for 8 yards (Y.Bell; D.Harris).,0,0,2012 -20120916_NYJ@PIT,1,59,28,PIT,NYJ,2,2,72,(14:28) I.Redman left end to PIT 21 for -7 yards (B.Scott; D.Harris).,0,0,2012 -20120916_NYJ@PIT,1,58,43,PIT,NYJ,3,9,79,(13:43) (Shotgun) A.Brown right end to PIT 30 for 9 yards (Y.Bell).,0,0,2012 -20120916_NYJ@PIT,1,58,9,PIT,NYJ,1,10,70,(13:09) I.Redman right guard to PIT 31 for 1 yard (M.Wilkerson S.Pouha).,0,0,2012 -20120916_NYJ@PIT,1,57,27,PIT,NYJ,2,9,69,(12:27) B.Roethlisberger pass deep left to M.Wallace to PIT 49 for 18 yards (L.Landry; A.Cromartie).,0,0,2012 -20120916_NYJ@PIT,1,56,40,PIT,NYJ,1,10,51,(11:40) B.Roethlisberger pass short left to W.Johnson to NYJ 25 for 26 yards (G.McIntyre).,0,0,2012 -20120916_NYJ@PIT,1,56,3,PIT,NYJ,1,10,25,(11:03) (Shotgun) B.Roethlisberger pass short right to M.Wallace to NYJ 19 for 6 yards (A.Cromartie).,0,0,2012 -20120916_NYJ@PIT,1,55,28,PIT,NYJ,2,4,19,(10:28) I.Redman up the middle to NYJ 22 for -3 yards (G.McIntyre; K.Ellis).,0,0,2012 -20120916_NYJ@PIT,1,54,44,PIT,NYJ,3,7,22,(9:44) (Shotgun) B.Roethlisberger sacked at NYJ 27 for -5 yards (G.McIntyre).,0,0,2012 -20120916_NYJ@PIT,1,54,12,PIT,NYJ,4,12,27,(9:12) (Field Goal formation) S.Suisham 45 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20120916_NYJ@PIT,1,54,12,PIT,NYJ,,,27,S.Suisham kicks 66 yards from PIT 35 to NYJ -1. J.McKnight to NYJ 23 for 24 yards (K.Lewis). PENALTY on NYJ-B.Powell Offensive Holding 10 yards enforced at NYJ 20.,3,0,2012 -20120916_NYJ@PIT,1,54,1,NYJ,PIT,1,10,90,(9:01) S.Greene left guard to NYJ 15 for 5 yards (C.Hampton; R.Mundy).,0,3,2012 -20120916_NYJ@PIT,1,53,23,NYJ,PIT,2,5,85,(8:23) S.Greene left end to NYJ 16 for 1 yard (R.Clark L.Foote).,0,3,2012 -20120916_NYJ@PIT,1,52,49,NYJ,PIT,3,4,84,(7:49) PENALTY on NYJ Illegal Substitution 5 yards enforced at NYJ 16 - No Play.,0,3,2012 -20120916_NYJ@PIT,1,52,27,NYJ,PIT,3,9,89,(7:27) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 22 for 11 yards (C.Allen).,0,3,2012 -20120916_NYJ@PIT,1,51,39,NYJ,PIT,1,10,78,(6:39) M.Sanchez pass incomplete deep left to S.Holmes. Pressure by #23 Lewis #99 Keisel.,0,3,2012 -20120916_NYJ@PIT,1,51,32,NYJ,PIT,2,10,78,(6:32) M.Sanchez pass incomplete short right to S.Holmes. PENALTY on PIT-I.Taylor Defensive Pass Interference 12 yards enforced at NYJ 22 - No Play. Pressure by #54 Carter Coverage by #24 Taylor.,0,3,2012 -20120916_NYJ@PIT,1,51,27,NYJ,PIT,1,10,66,(6:27) M.Sanchez pass deep left to J.Kerley to PIT 21 for 45 yards (K.Lewis).,0,3,2012 -20120916_NYJ@PIT,1,50,46,NYJ,PIT,1,10,21,(5:46) S.Greene right guard to PIT 24 for -3 yards (L.Timmons).,0,3,2012 -20120916_NYJ@PIT,1,50,2,NYJ,PIT,2,13,24,(5:02) (Shotgun) M.Sanchez pass short right to E.Gates to PIT 14 for 10 yards (K.Lewis).,0,3,2012 -20120916_NYJ@PIT,1,49,24,NYJ,PIT,3,3,14,(4:24) M.Sanchez pass short right to S.Holmes for 14 yards TOUCHDOWN.,0,3,2012 -20120916_NYJ@PIT,1,49,24,NYJ,PIT,,,14,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,3,2012 -20120916_NYJ@PIT,1,49,24,NYJ,PIT,,,14,N.Folk kicks 62 yards from NYJ 35 to PIT 3. C.Rainey to PIT 25 for 22 yards (J.McKnight I.Trufant).,7,3,2012 -20120916_NYJ@PIT,1,49,14,PIT,NYJ,1,10,75,(4:14) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 35 for 10 yards (E.Lankster).,3,7,2012 -20120916_NYJ@PIT,1,48,31,PIT,NYJ,1,10,65,(3:31) I.Redman left tackle to PIT 48 for 13 yards (Y.Bell).,3,7,2012 -20120916_NYJ@PIT,1,47,56,PIT,NYJ,1,10,52,(2:56) I.Redman up the middle to PIT 50 for 2 yards (B.Scott; M.Devito).,3,7,2012 -20120916_NYJ@PIT,1,47,19,PIT,NYJ,2,8,50,(2:19) B.Roethlisberger pass incomplete short middle to E.Sanders (S.Pouha).,3,7,2012 -20120916_NYJ@PIT,1,47,14,PIT,NYJ,3,8,50,(2:14) (Shotgun) B.Roethlisberger pass short right to A.Brown to NYJ 32 for 18 yards (E.Lankster).,3,7,2012 -20120916_NYJ@PIT,1,46,42,PIT,NYJ,1,10,32,(1:42) I.Redman right tackle to NYJ 33 for -1 yards (G.McIntyre).,3,7,2012 -20120916_NYJ@PIT,1,45,57,PIT,NYJ,2,11,33,(:57) B.Roethlisberger pass short right to M.Wallace to NYJ 26 for 7 yards (A.Cromartie).,3,7,2012 -20120916_NYJ@PIT,1,45,15,PIT,NYJ,3,4,26,(:15) (Shotgun) C.Rainey left guard to NYJ 27 for -1 yards (Q.Coples; J.Bush).,3,7,2012 -20120916_NYJ@PIT,2,45,0,PIT,NYJ,4,5,27,(15:00) (Field Goal formation) S.Suisham 45 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,3,7,2012 -20120916_NYJ@PIT,2,45,0,PIT,NYJ,,,27,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,6,7,2012 -20120916_NYJ@PIT,2,44,55,NYJ,PIT,1,10,80,(14:55) S.Greene right tackle to NYJ 26 for 6 yards (L.Foote).,7,6,2012 -20120916_NYJ@PIT,2,44,25,NYJ,PIT,2,4,74,(14:25) S.Greene left guard to NYJ 27 for 1 yard (L.Foote).,7,6,2012 -20120916_NYJ@PIT,2,43,51,NYJ,PIT,3,3,73,(13:51) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley [L.Timmons]. PENALTY on PIT-L.Timmons Personal Foul 15 yards enforced at NYJ 27 - No Play.,7,6,2012 -20120916_NYJ@PIT,2,43,44,NYJ,PIT,1,10,58,(13:44) S.Greene up the middle to NYJ 46 for 4 yards (S.McLendon).,7,6,2012 -20120916_NYJ@PIT,2,43,9,NYJ,PIT,2,6,54,(13:09) M.Sanchez pass incomplete deep left to S.Holmes. PENALTY on PIT-I.Taylor Defensive Holding 5 yards enforced at NYJ 46 - No Play.,7,6,2012 -20120916_NYJ@PIT,2,43,4,NYJ,PIT,1,10,49,(13:04) M.Sanchez pass incomplete deep right to S.Hill (R.Clark).,7,6,2012 -20120916_NYJ@PIT,2,42,56,NYJ,PIT,2,10,49,(12:56) S.Greene up the middle to PIT 40 for 9 yards (R.Mundy).,7,6,2012 -20120916_NYJ@PIT,2,42,19,NYJ,PIT,3,1,40,(12:19) B.Powell right guard to PIT 38 for 2 yards (B.Keisel).,7,6,2012 -20120916_NYJ@PIT,2,41,39,NYJ,PIT,1,10,38,(11:39) B.Powell left tackle to PIT 34 for 4 yards (L.Foote).,7,6,2012 -20120916_NYJ@PIT,2,41,7,NYJ,PIT,2,6,34,(11:07) B.Powell left guard to PIT 24 for 10 yards (R.Mundy).,7,6,2012 -20120916_NYJ@PIT,2,40,30,NYJ,PIT,1,10,24,(10:30) M.Sanchez pass incomplete deep middle to S.Holmes. Coverage by #24 Taylor.,7,6,2012 -20120916_NYJ@PIT,2,40,25,NYJ,PIT,2,10,24,(10:25) B.Powell up the middle to PIT 19 for 5 yards (R.Clark L.Foote).,7,6,2012 -20120916_NYJ@PIT,2,39,43,NYJ,PIT,3,5,19,(9:43) (Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland. Coverage by #29 Mundy.,7,6,2012 -20120916_NYJ@PIT,2,39,38,NYJ,PIT,4,5,19,(9:38) (Field Goal formation) N.Folk 38 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,7,6,2012 -20120916_NYJ@PIT,2,39,38,NYJ,PIT,,,19,N.Folk kicks 69 yards from NYJ 35 to PIT -4. C.Rainey to PIT 19 for 23 yards (J.Bush).,10,6,2012 -20120916_NYJ@PIT,2,39,29,PIT,NYJ,1,10,81,(9:29) J.Dwyer up the middle to PIT 21 for 2 yards (B.Scott).,6,10,2012 -20120916_NYJ@PIT,2,38,48,PIT,NYJ,2,8,79,(8:48) B.Roethlisberger sacked at PIT 19 for -2 yards (S.Pouha).,6,10,2012 -20120916_NYJ@PIT,2,38,3,PIT,NYJ,3,10,81,(8:03) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown (E.Lankster).,6,10,2012 -20120916_NYJ@PIT,2,37,54,PIT,NYJ,4,10,81,(7:54) (Punt formation) D.Butler punts 42 yards to NYJ 39 Center-G.Warren. J.Kerley to NYJ 42 for 3 yards (D.Paulson).,6,10,2012 -20120916_NYJ@PIT,2,37,47,NYJ,PIT,1,10,58,(7:47) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to B.Powell. Pressure by #94 Timmons #56 Woodley.,10,6,2012 -20120916_NYJ@PIT,2,37,40,NYJ,PIT,2,10,58,(7:40) B.Powell up the middle to NYJ 42 for no gain (C.Hampton B.Keisel).,10,6,2012 -20120916_NYJ@PIT,2,37,0,NYJ,PIT,3,10,58,(7:00) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. Coverage by #24 Taylor.,10,6,2012 -20120916_NYJ@PIT,2,36,55,NYJ,PIT,4,10,58,(6:55) (Punt formation) R.Malone punts 58 yards to end zone Center-T.Purdum Touchback.,10,6,2012 -20120916_NYJ@PIT,2,36,43,PIT,NYJ,1,10,80,(6:43) B.Roethlisberger pass short right to L.Pope to PIT 27 for 7 yards (C.Pace).,6,10,2012 -20120916_NYJ@PIT,2,35,58,PIT,NYJ,2,3,73,(5:58) B.Roethlisberger pass short middle to J.Dwyer to PIT 39 for 12 yards (D.Harris).,6,10,2012 -20120916_NYJ@PIT,2,35,13,PIT,NYJ,1,10,61,(5:13) J.Dwyer right tackle to PIT 40 for 1 yard (D.Harris).,6,10,2012 -20120916_NYJ@PIT,2,34,29,PIT,NYJ,2,9,60,(4:29) (Shotgun) B.Roethlisberger pass incomplete short left to A.Brown. Coverage by #30 Landry.,6,10,2012 -20120916_NYJ@PIT,2,34,23,PIT,NYJ,3,9,60,(4:23) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to 50 for 10 yards (K.Wilson).,6,10,2012 -20120916_NYJ@PIT,2,33,40,PIT,NYJ,1,10,50,(3:40) J.Dwyer right guard to NYJ 46 for 4 yards (M.Devito; C.Pace).,6,10,2012 -20120916_NYJ@PIT,2,32,58,PIT,NYJ,2,6,46,(2:58) B.Roethlisberger pass short left to E.Sanders to NYJ 27 for 19 yards (D.Harris; L.Landry). PENALTY on NYJ-L.Landry Personal Foul 13 yards enforced at NYJ 27.,6,10,2012 -20120916_NYJ@PIT,2,32,29,PIT,NYJ,1,10,14,(2:29) J.Dwyer right guard to NYJ 8 for 6 yards (K.Wilson).,6,10,2012 -20120916_NYJ@PIT,2,32,0,PIT,NYJ,2,4,8,(2:00) (Shotgun) J.Dwyer right guard to NYJ 7 for 1 yard (M.Wilkerson; K.Ellis).,6,10,2012 -20120916_NYJ@PIT,2,31,52,PIT,NYJ,3,3,7,(1:52) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to NYJ 1 for 6 yards (Y.Bell B.Scott).,6,10,2012 -20120916_NYJ@PIT,2,31,8,PIT,NYJ,1,1,1,(1:08) B.Roethlisberger pass short left to H.Miller for 1 yard TOUCHDOWN.,6,10,2012 -20120916_NYJ@PIT,2,31,8,PIT,NYJ,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,6,10,2012 -20120916_NYJ@PIT,2,31,8,PIT,NYJ,,,1,S.Suisham kicks 67 yards from PIT 35 to NYJ -2. J.McKnight to NYJ 31 for 33 yards (B.Johnson).,13,10,2012 -20120916_NYJ@PIT,2,30,57,NYJ,PIT,1,10,69,(:57) B.Powell right guard to NYJ 33 for 2 yards (R.Clark).,10,13,2012 -20120916_NYJ@PIT,2,30,15,NYJ,PIT,2,8,67,(:15) B.Powell up the middle to NYJ 35 for 2 yards (L.Timmons).,10,13,2012 -20120916_NYJ@PIT,3,30,0,PIT,NYJ,,,67,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,13,10,2012 -20120916_NYJ@PIT,3,30,0,NYJ,PIT,1,10,80,(15:00) M.Sanchez pass short right to K.Reuland to NYJ 27 for 7 yards (L.Woodley).,10,13,2012 -20120916_NYJ@PIT,3,29,21,NYJ,PIT,2,3,73,(14:21) S.Greene right guard to NYJ 29 for 2 yards (R.Clark).,10,13,2012 -20120916_NYJ@PIT,3,28,45,NYJ,PIT,3,1,71,(13:45) J.Smith reported in as eligible. S.Greene up the middle to NYJ 31 for 2 yards (E.Hood).,10,13,2012 -20120916_NYJ@PIT,3,28,3,NYJ,PIT,1,10,69,(13:03) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to S.Holmes. PENALTY on NYJ-S.Greene Offensive Holding 10 yards enforced at NYJ 31 - No Play.,10,13,2012 -20120916_NYJ@PIT,3,27,34,NYJ,PIT,1,20,79,(12:34) S.Greene up the middle to NYJ 23 for 2 yards (B.Keisel; S.McLendon).,10,13,2012 -20120916_NYJ@PIT,3,26,58,NYJ,PIT,2,18,77,(11:58) M.Sanchez pass short right to J.Cumberland to NYJ 25 for 2 yards (R.Clark B.Johnson).,10,13,2012 -20120916_NYJ@PIT,3,26,15,NYJ,PIT,3,16,75,(11:15) (Shotgun) M.Sanchez sacked at NYJ 19 for -6 yards (L.Woodley).,10,13,2012 -20120916_NYJ@PIT,3,26,9,NYJ,PIT,4,22,81,(11:09) (Punt formation) R.Malone punts 53 yards to PIT 28 Center-T.Purdum. C.Rainey to PIT 41 for 13 yards (G.McIntyre).,10,13,2012 -20120916_NYJ@PIT,3,25,58,PIT,NYJ,1,10,59,(10:58) J.Dwyer right guard to PIT 43 for 2 yards (B.Scott C.Pace).,13,10,2012 -20120916_NYJ@PIT,3,25,15,PIT,NYJ,2,8,57,(10:15) B.Roethlisberger pass short left to A.Brown to NYJ 46 for 11 yards (L.Landry). PENALTY on NYJ-L.Landry Horse Collar Tackle 15 yards enforced at NYJ 46.,13,10,2012 -20120916_NYJ@PIT,3,24,45,PIT,NYJ,1,10,31,(9:45) B.Roethlisberger pass incomplete short right to J.Cotchery (D.Harris).,13,10,2012 -20120916_NYJ@PIT,3,24,40,PIT,NYJ,2,10,31,(9:40) J.Dwyer left tackle to NYJ 37 for -6 yards (M.Wilkerson).,13,10,2012 -20120916_NYJ@PIT,3,23,53,PIT,NYJ,3,16,37,(8:53) (Shotgun) B.Roethlisberger pass deep right to M.Wallace for 37 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,10,2012 -20120916_NYJ@PIT,3,23,53,PIT,NYJ,,,37,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,13,10,2012 -20120916_NYJ@PIT,3,23,53,PIT,NYJ,,,37,S.Suisham kicks 70 yards from PIT 35 to NYJ -5. J.McKnight to NYJ 27 for 32 yards (J.Worilds). NYJ-J.Conner was injured during the play.,20,10,2012 -20120916_NYJ@PIT,3,23,39,NYJ,PIT,1,10,73,(8:39) (Shotgun) T.Tebow left guard to NYJ 49 for 22 yards (R.Clark).,10,20,2012 -20120916_NYJ@PIT,3,22,57,NYJ,PIT,1,10,51,(7:57) (Shotgun) J.McKnight right end to PIT 39 for 12 yards (R.Mundy B.Keisel).,10,20,2012 -20120916_NYJ@PIT,3,22,2,NYJ,PIT,1,10,39,(7:02) (Shotgun) S.Greene right tackle to PIT 45 for -6 yards (R.Clark).,10,20,2012 -20120916_NYJ@PIT,3,21,23,NYJ,PIT,2,16,45,(6:23) M.Sanchez pass incomplete short left to S.Hill. Pressure by #94 Timmons #56 Woodley Coverage by #23 Lewis.,10,20,2012 -20120916_NYJ@PIT,3,21,16,NYJ,PIT,3,16,45,(6:16) M.Sanchez pass incomplete short left to S.Holmes (I.Taylor).,10,20,2012 -20120916_NYJ@PIT,3,21,10,NYJ,PIT,4,16,45,(6:10) (Punt formation) R.Malone punts 41 yards to PIT 4 Center-T.Purdum downed by NYJ-E.Lankster.,10,20,2012 -20120916_NYJ@PIT,3,20,58,PIT,NYJ,1,10,96,(5:58) B.Roethlisberger pass short right to C.Rainey pushed ob at PIT 9 for 5 yards (C.Pace).,20,10,2012 -20120916_NYJ@PIT,3,20,26,PIT,NYJ,2,5,91,(5:26) J.Dwyer right guard to PIT 9 for no gain (B.Scott; D.Harris).,20,10,2012 -20120916_NYJ@PIT,3,19,41,PIT,NYJ,3,5,91,(4:41) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 14 for 5 yards (D.Harris; B.Scott). Official Measurement. New York Jets challenged the first down ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 13 for 4 yards (D.Harris; B.Scott). Official Measurement.,20,10,2012 -20120916_NYJ@PIT,3,19,37,PIT,NYJ,4,1,87,(4:37) (Punt formation) D.Butler punts 49 yards to NYJ 38 Center-G.Warren. J.Kerley MUFFS catch RECOVERED by PIT-R.Mundy at NYJ 42. R.Mundy to NYJ 42 for no gain (J.Kerley). Penalty on NYJ-K.Wilson Illegal Block Above the Waist declined.,20,10,2012 -20120916_NYJ@PIT,3,19,27,PIT,NYJ,1,10,42,(4:27) C.Rainey up the middle to NYJ 38 for 4 yards (B.Scott).,20,10,2012 -20120916_NYJ@PIT,3,18,44,PIT,NYJ,2,6,38,(3:44) B.Roethlisberger pass incomplete deep right to J.Dwyer.,20,10,2012 -20120916_NYJ@PIT,3,18,35,PIT,NYJ,3,6,38,(3:35) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey.,20,10,2012 -20120916_NYJ@PIT,3,18,31,PIT,NYJ,4,6,38,(3:31) (Shotgun) PENALTY on PIT-B.Roethlisberger Delay of Game 5 yards enforced at NYJ 38 - No Play.,20,10,2012 -20120916_NYJ@PIT,3,18,31,PIT,NYJ,4,11,43,(3:31) (Punt formation) D.Butler punts 37 yards to NYJ 6 Center-G.Warren downed by PIT-C.Carter.,20,10,2012 -20120916_NYJ@PIT,3,18,19,NYJ,PIT,1,10,94,(3:19) M.Sanchez pass short middle to K.Reuland to NYJ 19 for 13 yards (L.Foote R.Clark).,10,20,2012 -20120916_NYJ@PIT,3,17,43,NYJ,PIT,1,10,81,(2:43) J.Smith reported in as eligible. B.Powell right guard to NYJ 24 for 5 yards (L.Timmons; C.Hampton).,10,20,2012 -20120916_NYJ@PIT,3,17,3,NYJ,PIT,2,5,76,(2:03) (Shotgun) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to S.Holmes. Coverage by #24 Taylor.,10,20,2012 -20120916_NYJ@PIT,3,16,57,NYJ,PIT,3,5,76,(1:57) (Shotgun) M.Sanchez pass incomplete short middle to J.Kerley. Coverage by #29 Mundy.,10,20,2012 -20120916_NYJ@PIT,3,16,52,NYJ,PIT,4,5,76,(1:52) (Punt formation) R.Malone punts 32 yards to PIT 44 Center-T.Purdum downed by NYJ-I.Trufant. PENALTY on NYJ-I.Trufant Illegal Touch Kick 5 yards enforced at PIT 44.,10,20,2012 -20120916_NYJ@PIT,3,16,42,PIT,NYJ,1,10,51,(1:42) J.Dwyer right guard to NYJ 44 for 7 yards (D.Harris). PENALTY on PIT-M.Gilbert Offensive Holding 10 yards enforced at PIT 49 - No Play.,20,10,2012 -20120916_NYJ@PIT,3,16,8,PIT,NYJ,1,20,61,(1:08) B.Roethlisberger pass incomplete deep right to A.Brown. PENALTY on PIT-B.Roethlisberger Intentional Grounding 10 yards enforced at PIT 39.,20,10,2012 -20120916_NYJ@PIT,3,16,1,PIT,NYJ,2,30,71,(1:01) B.Roethlisberger pass short left to A.Brown to PIT 27 for -2 yards (E.Lankster).,20,10,2012 -20120916_NYJ@PIT,3,15,16,PIT,NYJ,3,32,73,(:16) (Shotgun) B.Roethlisberger pass deep middle to A.Brown to NYJ 48 for 25 yards (K.Wilson).,20,10,2012 -20120916_NYJ@PIT,4,15,0,PIT,NYJ,4,7,48,(15:00) (Punt formation) D.Butler punts 38 yards to NYJ 10 Center-G.Warren fair catch by J.Kerley. PENALTY on PIT-W.Allen Defensive Holding 10 yards enforced at NYJ 10.,20,10,2012 -20120916_NYJ@PIT,4,14,53,NYJ,PIT,1,10,80,(14:53) M.Sanchez pass incomplete deep left to S.Holmes (R.Clark). PENALTY on PIT-I.Taylor Defensive Pass Interference 19 yards enforced at NYJ 20 - No Play.,10,20,2012 -20120916_NYJ@PIT,4,14,46,NYJ,PIT,1,10,61,(14:46) B.Powell up the middle to NYJ 42 for 3 yards (L.Foote B.Keisel).,10,20,2012 -20120916_NYJ@PIT,4,14,8,NYJ,PIT,2,7,58,(14:08) M.Sanchez pass incomplete short right to S.Holmes (I.Taylor).,10,20,2012 -20120916_NYJ@PIT,4,14,2,NYJ,PIT,3,7,58,(14:02) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley (C.Allen). Pressure by #56 Woodley.,10,20,2012 -20120916_NYJ@PIT,4,13,56,NYJ,PIT,4,7,58,(13:56) (Punt formation) R.Malone punts 33 yards to PIT 25 Center-T.Purdum out of bounds.,10,20,2012 -20120916_NYJ@PIT,4,13,47,PIT,NYJ,1,10,75,(13:47) I.Redman up the middle to PIT 28 for 3 yards (M.Wilkerson; L.Landry).,20,10,2012 -20120916_NYJ@PIT,4,13,4,PIT,NYJ,2,7,72,(13:04) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 34 for 6 yards (K.Wilson).,20,10,2012 -20120916_NYJ@PIT,4,12,23,PIT,NYJ,3,1,66,(12:23) I.Redman left guard to PIT 44 for 10 yards (Y.Bell K.Wilson).,20,10,2012 -20120916_NYJ@PIT,4,11,38,PIT,NYJ,1,10,56,(11:38) (Shotgun) I.Redman up the middle to PIT 42 for -2 yards (G.McIntyre).,20,10,2012 -20120916_NYJ@PIT,4,10,54,PIT,NYJ,2,12,58,(10:54) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 50 for 8 yards (D.Harris L.Landry).,20,10,2012 -20120916_NYJ@PIT,4,10,10,PIT,NYJ,3,4,50,(10:10) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 50 for no gain (Y.Bell). PENALTY on NYJ-Y.Bell Defensive Holding 5 yards enforced at PIT 50 - No Play.,20,10,2012 -20120916_NYJ@PIT,4,9,39,PIT,NYJ,1,10,45,(9:39) B.Roethlisberger sacked at NYJ 48 for -3 yards (G.McIntyre).,20,10,2012 -20120916_NYJ@PIT,4,8,58,PIT,NYJ,2,13,48,(8:58) (Shotgun) PENALTY on PIT-M.Pouncey False Start 5 yards enforced at NYJ 48 - No Play.,20,10,2012 -20120916_NYJ@PIT,4,8,35,PIT,NYJ,2,18,53,(8:35) B.Roethlisberger pass short left to I.Redman to NYJ 39 for 14 yards (M.Devito).,20,10,2012 -20120916_NYJ@PIT,4,7,48,PIT,NYJ,3,4,39,(7:48) (Shotgun) B.Roethlisberger pass short right to A.Brown to NYJ 30 for 9 yards (L.Landry).,20,10,2012 -20120916_NYJ@PIT,4,7,8,PIT,NYJ,1,10,30,(7:08) I.Redman left tackle to NYJ 24 for 6 yards (M.Devito Y.Bell). New York Jets challenged the fumble ruling and the play was Upheld. (Timeout #1.),20,10,2012 -20120916_NYJ@PIT,4,6,27,PIT,NYJ,2,4,24,(6:27) I.Redman right tackle to NYJ 23 for 1 yard (K.Wilson).,20,10,2012 -20120916_NYJ@PIT,4,5,43,PIT,NYJ,3,3,23,(5:43) B.Roethlisberger pass short right to H.Miller to NYJ 13 for 10 yards (Y.Bell).,20,10,2012 -20120916_NYJ@PIT,4,5,8,PIT,NYJ,1,10,13,(5:08) J.Dwyer left tackle to NYJ 9 for 4 yards (K.Wilson).,20,10,2012 -20120916_NYJ@PIT,4,4,29,PIT,NYJ,2,6,9,(4:29) J.Dwyer right end to NYJ 2 for 7 yards (Y.Bell L.Landry).,20,10,2012 -20120916_NYJ@PIT,4,3,41,PIT,NYJ,1,2,2,(3:41) I.Redman right tackle for 2 yards TOUCHDOWN.,20,10,2012 -20120916_NYJ@PIT,4,3,41,PIT,NYJ,,,2,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,20,10,2012 -20120916_NYJ@PIT,4,3,41,PIT,NYJ,,,2,S.Suisham kicks 74 yards from PIT 35 to NYJ -9. J.McKnight to NYJ 17 for 26 yards (B.Johnson; C.Carter).,27,10,2012 -20120916_NYJ@PIT,4,3,30,NYJ,PIT,1,10,83,(3:30) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. Coverage by #24 Taylor Pressure by #25 Clark.,10,27,2012 -20120916_NYJ@PIT,4,3,26,NYJ,PIT,2,10,83,(3:26) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes. Coverage by #28 Allen.,10,27,2012 -20120916_NYJ@PIT,4,3,21,NYJ,PIT,3,10,83,(3:21) (Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland (L.Timmons) [L.Woodley].,10,27,2012 -20120916_NYJ@PIT,4,3,15,NYJ,PIT,4,10,83,(3:15) (Punt formation) R.Malone punts 55 yards to PIT 28 Center-T.Purdum. A.Brown to PIT 38 for 10 yards (E.Lankster).,10,27,2012 -20120916_NYJ@PIT,4,3,4,PIT,NYJ,1,10,62,(3:04) J.Dwyer up the middle to PIT 41 for 3 yards (M.Devito D.Harris).,27,10,2012 -20120916_NYJ@PIT,4,2,18,PIT,NYJ,2,7,59,(2:18) J.Dwyer up the middle to PIT 45 for 4 yards (Y.Bell).,27,10,2012 -20120916_NYJ@PIT,4,2,0,PIT,NYJ,3,3,55,(2:00) B.Batch right guard to PIT 46 for 1 yard (Y.Bell; D.Harris).,27,10,2012 -20120916_NYJ@PIT,4,1,18,PIT,NYJ,4,2,54,(1:18) (Punt formation) D.Butler punts 39 yards to NYJ 15 Center-G.Warren. J.Kerley to NYJ 18 for 3 yards (G.Warren).,27,10,2012 -20120916_NYJ@PIT,4,1,7,NYJ,PIT,1,10,82,(1:07) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 29 for 11 yards (R.Mundy C.Carter).,10,27,2012 -20120916_NYJ@PIT,4,0,42,NYJ,PIT,1,10,71,(:42) (No Huddle Shotgun) M.Sanchez pass incomplete short middle to B.Powell.,10,27,2012 -20120916_NYJ@PIT,4,0,36,NYJ,PIT,2,10,71,(:36) (Shotgun) M.Sanchez pass incomplete short middle to S.Holmes (K.Lewis). PENALTY on PIT-K.Lewis Defensive Pass Interference 16 yards enforced at NYJ 29 - No Play.,10,27,2012 -20120916_NYJ@PIT,4,0,28,NYJ,PIT,1,10,55,(:28) (No Huddle Shotgun) M.Sanchez pass deep middle to J.Kerley to PIT 33 for 22 yards (L.Timmons). Penalty on PIT Defensive Holding declined.,10,27,2012 -20120916_NYJ@PIT,4,0,21,NYJ,PIT,1,10,33,(:21) (Shotgun) M.Sanchez pass incomplete deep middle to J.Cumberland. Coverage by #94 Timmons.,10,27,2012 -20120916_NYJ@PIT,4,0,16,NYJ,PIT,2,10,33,(:16) (Shotgun) M.Sanchez pass short left to S.Holmes to PIT 30 for 3 yards (K.Lewis).,10,27,2012 -20120916_NYJ@PIT,4,0,10,NYJ,PIT,3,7,30,(:10) (Shotgun) M.Sanchez sacked at PIT 33 for -3 yards (C.Heyward).,10,27,2012 -20120916_NYJ@PIT,4,0,10,NYJ,PIT,,,30,                      ,10,27,2012 -20120916_TEN@SD,1,0,0,TEN,SD,,,30,R.Bironas kicks 73 yards from TEN 35 to SD -8. R.Goodman to SD 29 for 37 yards (J.Babineaux).,0,0,2012 -20120916_TEN@SD,1,59,55,SD,TEN,1,10,71,(14:55) C.Brinkley up the middle to SD 32 for 3 yards (M.Martin W.Witherspoon).,0,0,2012 -20120916_TEN@SD,1,59,15,SD,TEN,2,7,68,(14:15) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,0,0,2012 -20120916_TEN@SD,1,59,10,SD,TEN,3,7,68,(14:10) (Shotgun) P.Rivers pass short right to R.Brown to SD 39 for 7 yards (J.McCourty J.Babineaux).,0,0,2012 -20120916_TEN@SD,1,58,23,SD,TEN,1,10,61,(13:23) P.Rivers pass deep right to M.Floyd to TEN 34 for 27 yards (J.McCourty). Penalty on TEN-J.McCourty Defensive Holding declined.,0,0,2012 -20120916_TEN@SD,1,57,57,SD,TEN,1,10,34,(12:57) P.Rivers pass incomplete deep right to R.Meachem.,0,0,2012 -20120916_TEN@SD,1,57,49,SD,TEN,2,10,34,(12:49) (Shotgun) R.Brown up the middle to TEN 32 for 2 yards (Z.Brown).,0,0,2012 -20120916_TEN@SD,1,57,9,SD,TEN,3,8,32,(12:09) (Shotgun) P.Rivers pass short left to M.Floyd pushed ob at TEN 18 for 14 yards (M.Griffin). Penalty on TEN-S.Hutchinson Defensive Offside declined.,0,0,2012 -20120916_TEN@SD,1,56,38,SD,TEN,1,10,18,(11:38) P.Rivers pass short right to C.Brinkley to TEN 11 for 7 yards (J.Casey). PENALTY on TEN-M.Martin Neutral Zone Infraction 5 yards enforced at TEN 18 - No Play.,0,0,2012 -20120916_TEN@SD,1,56,11,SD,TEN,1,5,13,(11:11) C.Brinkley right tackle to TEN 9 for 4 yards (D.Morgan).,0,0,2012 -20120916_TEN@SD,1,55,32,SD,TEN,2,1,9,(10:32) C.Brinkley left tackle to TEN 7 for 2 yards (W.Witherspoon M.Martin).,0,0,2012 -20120916_TEN@SD,1,54,47,SD,TEN,1,7,7,(9:47) P.Rivers pass incomplete short middle to M.Floyd. San Diego challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20120916_TEN@SD,1,54,41,SD,TEN,2,7,7,(9:41) P.Rivers pass short middle to C.Brinkley to TEN 11 for -4 yards (R.Johnson).,0,0,2012 -20120916_TEN@SD,1,53,59,SD,TEN,3,11,11,(8:59) (Shotgun) P.Rivers pass short left to D.Rosario for 11 yards TOUCHDOWN.,0,0,2012 -20120916_TEN@SD,1,53,59,SD,TEN,,,11,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20120916_TEN@SD,1,53,59,SD,TEN,,,11,N.Kaeding kicks 62 yards from SD 35 to TEN 3. D.Reynaud to TEN 21 for 18 yards (A.Gachkar M.Gilchrist).,7,0,2012 -20120916_TEN@SD,1,53,44,TEN,SD,1,10,79,(8:44) C.Johnson up the middle to TEN 23 for 2 yards (E.Weddle D.Butler).,0,7,2012 -20120916_TEN@SD,1,53,9,TEN,SD,2,8,77,(8:09) (Shotgun) J.Locker pass deep right intended for J.Cook INTERCEPTED by E.Weddle [S.Phillips] at TEN 39. E.Weddle to TEN 31 for 8 yards (J.Cook).,0,7,2012 -20120916_TEN@SD,1,52,58,SD,TEN,1,10,31,(7:58) C.Brinkley right end to TEN 34 for -3 yards (R.Johnson D.Morgan).,7,0,2012 -20120916_TEN@SD,1,52,17,SD,TEN,2,13,34,(7:17) (Shotgun) P.Rivers pass short left to C.Brinkley to TEN 26 for 8 yards (A.Ayers Z.Brown).,7,0,2012 -20120916_TEN@SD,1,51,29,SD,TEN,3,5,26,(6:29) (Shotgun) P.Rivers pass short middle to E.Royal to TEN 6 for 20 yards (M.Griffin R.Mouton).,7,0,2012 -20120916_TEN@SD,1,50,45,SD,TEN,1,6,6,(5:45) C.Brinkley right end to TEN 5 for 1 yard (Z.Brown W.Witherspoon).,7,0,2012 -20120916_TEN@SD,1,50,4,SD,TEN,2,5,5,(5:04) (Shotgun) R.Brown right tackle to TEN 4 for 1 yard (A.Ayers).,7,0,2012 -20120916_TEN@SD,1,49,20,SD,TEN,3,4,4,(4:20) (Shotgun) P.Rivers pass short middle to D.Rosario for 4 yards TOUCHDOWN.,7,0,2012 -20120916_TEN@SD,1,49,20,SD,TEN,,,4,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,7,0,2012 -20120916_TEN@SD,1,49,20,SD,TEN,,,4,N.Kaeding kicks 70 yards from SD 35 to TEN -5. D.Reynaud to TEN 11 for 16 yards (J.Battle D.Stuckey).,14,0,2012 -20120916_TEN@SD,1,49,10,TEN,SD,1,10,89,(4:10) C.Johnson right tackle to TEN 12 for 1 yard (S.Phillips).,0,14,2012 -20120916_TEN@SD,1,48,35,TEN,SD,2,9,88,(3:35) C.Johnson right end to TEN 12 for no gain (A.Franklin).,0,14,2012 -20120916_TEN@SD,1,47,54,TEN,SD,3,9,88,(2:54) (Shotgun) J.Locker pass incomplete short right.,0,14,2012 -20120916_TEN@SD,1,47,48,TEN,SD,4,9,88,(2:48) B.Kern punts 46 yards to SD 42 Center-B.Brinkley out of bounds.,0,14,2012 -20120916_TEN@SD,1,47,39,SD,TEN,1,10,58,(2:39) (Shotgun) C.Brinkley up the middle to SD 44 for 2 yards (A.Ayers M.Griffin).,14,0,2012 -20120916_TEN@SD,1,47,0,SD,TEN,2,8,56,(2:00) P.Rivers sacked at SD 42 for -2 yards (W.Witherspoon). FUMBLES (W.Witherspoon) recovered by SD-R.McMichael at SD 42. R.McMichael to SD 42 for no gain (R.Johnson).,14,0,2012 -20120916_TEN@SD,1,46,17,SD,TEN,3,10,58,(1:17) (Shotgun) P.Rivers pass incomplete short right to E.Royal [K.Wimbley]. PENALTY on TEN-K.Wimbley Roughing the Passer 15 yards enforced at SD 42 - No Play.,14,0,2012 -20120916_TEN@SD,1,46,11,SD,TEN,1,10,43,(1:11) C.Brinkley left guard to TEN 45 for -2 yards (A.Verner).,14,0,2012 -20120916_TEN@SD,1,45,29,SD,TEN,2,12,45,(:29) (Shotgun) P.Rivers pass short right to R.Brown to TEN 39 for 6 yards (J.McCourty).,14,0,2012 -20120916_TEN@SD,2,45,0,SD,TEN,3,6,39,(15:00) (Shotgun) P.Rivers pass short left to L.Green to TEN 8 for 31 yards (A.Verner).,14,0,2012 -20120916_TEN@SD,2,44,9,SD,TEN,1,8,8,(14:09) C.Brinkley left end to TEN 7 for 1 yard (K.Wimbley Z.Brown).,14,0,2012 -20120916_TEN@SD,2,43,31,SD,TEN,2,7,7,(13:31) C.Brinkley right tackle to TEN 4 for 3 yards (J.McCourty).,14,0,2012 -20120916_TEN@SD,2,42,49,SD,TEN,3,4,4,(12:49) (Shotgun) P.Rivers sacked at TEN 8 for -4 yards (M.Martin).,14,0,2012 -20120916_TEN@SD,2,42,19,SD,TEN,4,8,8,(12:19) N.Kaeding 26 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,14,0,2012 -20120916_TEN@SD,2,42,19,SD,TEN,,,8,N.Kaeding kicks 69 yards from SD 35 to TEN -4. D.Reynaud to TEN 21 for 25 yards (A.Gachkar). PENALTY on TEN-Q.Johnson Illegal Block Above the Waist 4 yards enforced at TEN 9.,17,0,2012 -20120916_TEN@SD,2,42,9,TEN,SD,1,10,95,(12:09) J.Locker pass short left to C.Johnson to TEN 17 for 12 yards (Q.Jammer) [C.Thomas].,0,17,2012 -20120916_TEN@SD,2,41,28,TEN,SD,1,10,83,(11:28) PENALTY on TEN-F.Velasco False Start 5 yards enforced at TEN 17 - No Play.,0,17,2012 -20120916_TEN@SD,2,41,11,TEN,SD,1,15,88,(11:11) J.Locker pass incomplete deep left to K.Wright [C.Thomas].,0,17,2012 -20120916_TEN@SD,2,41,5,TEN,SD,2,15,88,(11:05) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,17,2012 -20120916_TEN@SD,2,41,1,TEN,SD,3,15,88,(11:01) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,17,2012 -20120916_TEN@SD,2,40,54,TEN,SD,4,15,88,(10:54) B.Kern punts 63 yards to SD 25 Center-B.Brinkley. E.Royal pushed ob at SD 26 for 1 yard (T.Campbell).,0,17,2012 -20120916_TEN@SD,2,40,44,SD,TEN,1,10,74,(10:44) P.Rivers pass short left to R.McMichael ran ob at SD 39 for 13 yards (M.Griffin).,17,0,2012 -20120916_TEN@SD,2,40,8,SD,TEN,1,10,61,(10:08) P.Rivers pass incomplete deep left to L.Green. PENALTY on SD-R.McMichael Offensive Holding 10 yards enforced at SD 39 - No Play.,17,0,2012 -20120916_TEN@SD,2,40,2,SD,TEN,1,20,71,(10:02) C.Brinkley left end to SD 41 for 12 yards (M.Griffin).,17,0,2012 -20120916_TEN@SD,2,39,17,SD,TEN,2,8,59,(9:17) (Shotgun) P.Rivers pass short right to E.Royal to SD 39 for -2 yards (D.Morgan). Penalty on SD-D.Rosario Offensive Holding declined.,17,0,2012 -20120916_TEN@SD,2,38,47,SD,TEN,3,10,61,(8:47) (Shotgun) P.Rivers pass short right to R.Brown to SD 47 for 8 yards (M.Griffin W.Witherspoon).,17,0,2012 -20120916_TEN@SD,2,38,11,SD,TEN,4,2,53,(8:11) M.Scifres punts 39 yards to TEN 14 Center-M.Windt fair catch by D.Reynaud.,17,0,2012 -20120916_TEN@SD,2,38,3,TEN,SD,1,10,86,(8:03) (Shotgun) J.Locker pass short left to J.Cook to TEN 20 for 6 yards (D.Butler).,0,17,2012 -20120916_TEN@SD,2,37,32,TEN,SD,2,4,80,(7:32) (Shotgun) J.Locker pass incomplete short middle to J.Cook.,0,17,2012 -20120916_TEN@SD,2,37,32,TEN,SD,3,4,80,(7:32) (Shotgun) PENALTY on TEN-M.Roos False Start 5 yards enforced at TEN 20 - No Play.,0,17,2012 -20120916_TEN@SD,2,37,27,TEN,SD,3,9,85,(7:27) (Shotgun) J.Locker scrambles left end to TEN 35 for 20 yards (S.Phillips). PENALTY on SD-V.Martin Personal Foul 15 yards enforced at TEN 35.,0,17,2012 -20120916_TEN@SD,2,36,55,TEN,SD,1,10,50,(6:55) (Shotgun) J.Locker pass short left to D.Williams to SD 34 for 16 yards (E.Weddle).,0,17,2012 -20120916_TEN@SD,2,36,28,TEN,SD,1,10,34,(6:28) (Shotgun) C.Johnson up the middle to SD 27 for 7 yards (A.Bigby M.Ingram).,0,17,2012 -20120916_TEN@SD,2,36,1,TEN,SD,2,3,27,(6:01) (Shotgun) J.Locker pass short right to N.Washington pushed ob at SD 11 for 16 yards (Q.Jammer).,0,17,2012 -20120916_TEN@SD,2,35,34,TEN,SD,1,10,11,(5:34) (Shotgun) J.Locker pass incomplete short middle to K.Britt.,0,17,2012 -20120916_TEN@SD,2,35,30,TEN,SD,2,10,11,(5:30) (Shotgun) J.Locker pass incomplete short middle to C.Johnson (M.Ingram).,0,17,2012 -20120916_TEN@SD,2,35,26,TEN,SD,3,10,11,(5:26) (Shotgun) J.Locker pass short left to D.Williams to SD 5 for 6 yards (A.Cason).,0,17,2012 -20120916_TEN@SD,2,34,45,TEN,SD,4,4,5,(4:45) R.Bironas 23 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,17,2012 -20120916_TEN@SD,2,34,45,TEN,SD,,,5,R.Bironas kicks 71 yards from TEN 35 to SD -6. R.Goodman to SD 31 for 37 yards (A.Verner).,3,17,2012 -20120916_TEN@SD,2,34,35,SD,TEN,1,10,69,(4:35) P.Rivers pass incomplete short right to R.Meachem.,17,3,2012 -20120916_TEN@SD,2,34,29,SD,TEN,2,10,69,(4:29) P.Rivers pass incomplete deep left to R.Meachem (A.Verner).,17,3,2012 -20120916_TEN@SD,2,34,23,SD,TEN,3,10,69,(4:23) (Shotgun) P.Rivers pass deep left intended for M.Floyd INTERCEPTED by A.Verner at TEN 28. A.Verner to TEN 39 for 11 yards (D.Rosario). PENALTY on TEN-M.Griffin Offensive Holding 10 yards enforced at TEN 39.,17,3,2012 -20120916_TEN@SD,2,34,13,TEN,SD,1,10,71,(4:13) J.Locker pass short right to K.Wright to TEN 38 for 9 yards (Q.Jammer).,3,17,2012 -20120916_TEN@SD,2,33,42,TEN,SD,2,1,62,(3:42) (Shotgun) C.Johnson up the middle to TEN 38 for no gain (D.Butler).,3,17,2012 -20120916_TEN@SD,2,33,7,TEN,SD,3,1,62,(3:07) (Shotgun) J.Locker pass incomplete deep right to K.Wright.,3,17,2012 -20120916_TEN@SD,2,33,2,TEN,SD,4,1,62,(3:02) B.Kern punts 49 yards to SD 13 Center-B.Brinkley fair catch by M.Spurlock.,3,17,2012 -20120916_TEN@SD,2,32,54,SD,TEN,1,10,87,(2:54) C.Brinkley left end to SD 14 for 1 yard (A.Ayers D.Morgan).,17,3,2012 -20120916_TEN@SD,2,32,47,SD,TEN,2,9,86,(2:47) (Shotgun) P.Rivers pass short left to R.McMichael to SD 19 for 5 yards (A.Verner).,17,3,2012 -20120916_TEN@SD,2,32,31,SD,TEN,3,4,81,(2:31) P.Rivers sacked at SD 14 for -5 yards (D.Morgan).,17,3,2012 -20120916_TEN@SD,2,32,31,SD,TEN,4,9,86,(2:31) M.Scifres punts 52 yards to TEN 34 Center-M.Windt. D.Reynaud to 50 for 16 yards (M.Windt). PENALTY on TEN-J.McCourty Offensive Holding 10 yards enforced at 50.,17,3,2012 -20120916_TEN@SD,2,32,16,TEN,SD,1,10,60,(2:16) (Shotgun) J.Locker pass short left to D.Williams pushed ob at TEN 45 for 5 yards (A.Cason).,3,17,2012 -20120916_TEN@SD,2,32,1,TEN,SD,2,5,55,(2:01) (Shotgun) J.Locker pass incomplete short left to D.Williams (A.Cason).,3,17,2012 -20120916_TEN@SD,2,31,58,TEN,SD,3,5,55,(1:58) (Shotgun) J.Locker pass incomplete short left to K.Wright (D.Butler).,3,17,2012 -20120916_TEN@SD,2,31,51,TEN,SD,4,5,55,(1:51) B.Kern punts 55 yards to end zone Center-B.Brinkley Touchback.,3,17,2012 -20120916_TEN@SD,2,31,43,SD,TEN,1,10,80,(1:43) (Shotgun) P.Rivers pass incomplete short right to R.McMichael (A.Ayers).,17,3,2012 -20120916_TEN@SD,2,31,38,SD,TEN,2,10,80,(1:38) (Shotgun) R.Brown up the middle to SD 23 for 3 yards (D.Morgan).,17,3,2012 -20120916_TEN@SD,2,30,59,SD,TEN,3,7,77,(:59) (Shotgun) P.Rivers pass short middle to M.Floyd to SD 35 for 12 yards (R.Johnson). PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at SD 23 - No Play.,17,3,2012 -20120916_TEN@SD,2,30,54,SD,TEN,3,17,87,(:54) (Shotgun) R.Brown right end to SD 15 for 2 yards (J.Babineaux D.Morgan).,17,3,2012 -20120916_TEN@SD,2,30,8,SD,TEN,4,15,85,(:08) M.Scifres punts 62 yards to TEN 23 Center-M.Windt. D.Reynaud to TEN 36 for 13 yards (D.Stuckey).,17,3,2012 -20120916_TEN@SD,3,30,0,SD,TEN,,,85,N.Kaeding kicks 60 yards from SD 35 to TEN 5. L.Hawkins to TEN 29 for 24 yards (D.Williams).,17,3,2012 -20120916_TEN@SD,3,29,53,TEN,SD,1,10,71,(14:53) J.Locker scrambles right end ran ob at TEN 30 for 1 yard (J.Johnson).,3,17,2012 -20120916_TEN@SD,3,29,23,TEN,SD,2,9,70,(14:23) C.Johnson left end to TEN 31 for 1 yard (T.Spikes).,3,17,2012 -20120916_TEN@SD,3,28,41,TEN,SD,3,8,69,(13:41) (Shotgun) J.Locker pass short right to C.Johnson to TEN 30 for -1 yards (M.Gilchrist A.Barnes).,3,17,2012 -20120916_TEN@SD,3,28,2,TEN,SD,4,9,70,(13:02) B.Kern punts 54 yards to SD 16 Center-B.Brinkley out of bounds.,3,17,2012 -20120916_TEN@SD,3,27,53,SD,TEN,1,10,84,(12:53) P.Rivers pass short right to M.Floyd to SD 27 for 11 yards (A.Verner).,17,3,2012 -20120916_TEN@SD,3,27,8,SD,TEN,1,10,73,(12:08) P.Rivers sacked at SD 22 for -5 yards (Z.Brown). FUMBLES (Z.Brown) recovered by SD-R.McMichael at SD 22.,17,3,2012 -20120916_TEN@SD,3,26,20,SD,TEN,2,15,78,(11:20) C.Brinkley right end to SD 25 for 3 yards (Z.Brown). TEN-W.Witherspoon was injured during the play.,17,3,2012 -20120916_TEN@SD,3,25,50,SD,TEN,3,12,75,(10:50) (Shotgun) P.Rivers pass incomplete deep left to R.Meachem.,17,3,2012 -20120916_TEN@SD,3,25,43,SD,TEN,4,12,75,(10:43) M.Scifres punts 44 yards to TEN 31 Center-M.Windt. D.Reynaud to TEN 32 for 1 yard (D.Williams R.McMichael).,17,3,2012 -20120916_TEN@SD,3,25,33,TEN,SD,1,10,68,(10:33) J.Locker pass short left to K.Britt to TEN 37 for 5 yards (A.Cason) [S.Phillips].,3,17,2012 -20120916_TEN@SD,3,24,49,TEN,SD,2,5,63,(9:49) J.Locker pass incomplete deep right to T.Thompson.,3,17,2012 -20120916_TEN@SD,3,24,38,TEN,SD,3,5,63,(9:38) (Shotgun) J.Locker pass short left to N.Washington to TEN 41 for 4 yards (A.Cason S.Phillips).,3,17,2012 -20120916_TEN@SD,3,23,54,TEN,SD,4,1,59,(8:54) B.Kern punts 47 yards to SD 12 Center-B.Brinkley fair catch by M.Spurlock.,3,17,2012 -20120916_TEN@SD,3,23,46,SD,TEN,1,10,88,(8:46) C.Brinkley left end to SD 12 for no gain (M.Griffin). PENALTY on SD-M.Harris Offensive Holding 6 yards enforced at SD 12 - No Play.,17,3,2012 -20120916_TEN@SD,3,23,21,SD,TEN,1,16,94,(8:21) L.McClain up the middle to SD 23 for 17 yards (M.Griffin Z.Brown).,17,3,2012 -20120916_TEN@SD,3,22,37,SD,TEN,1,10,77,(7:37) P.Rivers pass short right to C.Brinkley to SD 34 for 11 yards (Z.Brown).,17,3,2012 -20120916_TEN@SD,3,22,6,SD,TEN,1,10,66,(7:06) L.McClain up the middle to SD 36 for 2 yards (K.Dawson D.Harris).,17,3,2012 -20120916_TEN@SD,3,21,23,SD,TEN,2,8,64,(6:23) P.Rivers pass deep left to M.Floyd to TEN 42 for 22 yards (A.Ayers).,17,3,2012 -20120916_TEN@SD,3,20,34,SD,TEN,1,10,42,(5:34) P.Rivers scrambles right end ran ob at TEN 33 for 9 yards (A.Ayers).,17,3,2012 -20120916_TEN@SD,3,20,0,SD,TEN,2,1,33,(5:00) C.Brinkley right end to TEN 31 for 2 yards (W.Witherspoon).,17,3,2012 -20120916_TEN@SD,3,19,14,SD,TEN,1,10,31,(4:14) (Shotgun) P.Rivers pass deep middle to M.Floyd to TEN 15 for 16 yards (W.Witherspoon).,17,3,2012 -20120916_TEN@SD,3,18,34,SD,TEN,1,10,15,(3:34) P.Rivers pass short middle to D.Rosario for 15 yards TOUCHDOWN.,17,3,2012 -20120916_TEN@SD,3,18,34,SD,TEN,,,15,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,17,3,2012 -20120916_TEN@SD,3,18,34,SD,TEN,,,15,N.Kaeding kicks 68 yards from SD 35 to TEN -3. L.Hawkins to SD 32 for 71 yards (C.Lynch).,24,3,2012 -20120916_TEN@SD,3,18,19,TEN,SD,1,10,32,(3:19) (Shotgun) J.Locker pass short middle to J.Cook to SD 19 for 13 yards (A.Bigby).,3,24,2012 -20120916_TEN@SD,3,18,4,TEN,SD,1,10,19,(3:04) (Shotgun) C.Johnson up the middle to SD 15 for 4 yards (K.Reyes).,3,24,2012 -20120916_TEN@SD,3,17,24,TEN,SD,2,6,15,(2:24) (Shotgun) J.Locker pass short left to K.Wright for 15 yards TOUCHDOWN.,3,24,2012 -20120916_TEN@SD,3,17,24,TEN,SD,,,15,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,24,2012 -20120916_TEN@SD,3,17,24,TEN,SD,,,15,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,24,2012 -20120916_TEN@SD,3,17,20,SD,TEN,1,10,80,(2:20) P.Rivers pass short right to C.Brinkley pushed ob at SD 28 for 8 yards (M.Griffin).,24,10,2012 -20120916_TEN@SD,3,16,50,SD,TEN,2,2,72,(1:50) C.Brinkley left guard to SD 29 for 1 yard (Z.Brown).,24,10,2012 -20120916_TEN@SD,3,16,10,SD,TEN,3,1,71,(1:10) J.Battle up the middle to SD 39 for 10 yards (M.Griffin).,24,10,2012 -20120916_TEN@SD,3,15,26,SD,TEN,1,10,61,(:26) C.Brinkley left end to SD 39 for no gain (M.Griffin W.Witherspoon). FUMBLES (M.Griffin) ball out of bounds at SD 39.,24,10,2012 -20120916_TEN@SD,4,15,0,SD,TEN,2,10,61,(15:00) (Shotgun) P.Rivers pass short right to R.McMichael to 50 for 11 yards (A.Ayers M.Griffin).,24,10,2012 -20120916_TEN@SD,4,14,16,SD,TEN,1,10,50,(14:16) J.Battle up the middle to TEN 46 for 4 yards (M.Griffin).,24,10,2012 -20120916_TEN@SD,4,13,38,SD,TEN,2,6,46,(13:38) P.Rivers pass short right to M.Floyd to TEN 27 for 19 yards (A.Verner).,24,10,2012 -20120916_TEN@SD,4,12,51,SD,TEN,1,10,27,(12:51) J.Battle left tackle to TEN 27 for no gain (K.Wimbley W.Witherspoon). PENALTY on TEN-M.Martin Neutral Zone Infraction 5 yards enforced at TEN 27 - No Play.,24,10,2012 -20120916_TEN@SD,4,12,28,SD,TEN,1,5,22,(12:28) J.Battle right guard to TEN 7 for 15 yards (M.Griffin C.Sensabaugh).,24,10,2012 -20120916_TEN@SD,4,11,40,SD,TEN,1,7,7,(11:40) J.Battle left tackle to TEN 6 for 1 yard (A.Ayers Z.Diles).,24,10,2012 -20120916_TEN@SD,4,10,57,SD,TEN,2,6,6,(10:57) P.Rivers pass short left to R.Brown for 6 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. P.Rivers pass short left to R.Brown to TEN 1 for 5 yards (C.Sensabaugh Z.Brown).,24,10,2012 -20120916_TEN@SD,4,10,37,SD,TEN,3,1,1,(10:37) J.Battle up the middle for 1 yard TOUCHDOWN.,24,10,2012 -20120916_TEN@SD,4,10,37,SD,TEN,,,1,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,24,10,2012 -20120916_TEN@SD,4,10,37,SD,TEN,,,1,N.Kaeding kicks 65 yards from SD 35 to TEN 0. L.Hawkins to TEN 18 for 18 yards (A.Bigby).,31,10,2012 -20120916_TEN@SD,4,10,27,TEN,SD,1,10,82,(10:27) (Shotgun) J.Locker pass incomplete short left to D.Williams.,10,31,2012 -20120916_TEN@SD,4,10,23,TEN,SD,2,10,82,(10:23) (Shotgun) J.Locker pass short left to J.Cook to TEN 22 for 4 yards (D.Williams).,10,31,2012 -20120916_TEN@SD,4,9,54,TEN,SD,3,6,78,(9:54) (Shotgun) J.Locker pass incomplete short left to J.Cook.,10,31,2012 -20120916_TEN@SD,4,9,50,TEN,SD,4,6,78,(9:50) B.Kern punts 47 yards to SD 31 Center-B.Brinkley out of bounds.,10,31,2012 -20120916_TEN@SD,4,9,42,SD,TEN,1,10,69,(9:42) (Shotgun) P.Rivers pass short left to D.Rosario to SD 49 for 18 yards (K.Dawson).,31,10,2012 -20120916_TEN@SD,4,8,55,SD,TEN,1,10,51,(8:55) J.Battle left tackle to TEN 47 for 4 yards (M.Griffin K.Dawson).,31,10,2012 -20120916_TEN@SD,4,8,13,SD,TEN,2,6,47,(8:13) C.Brinkley up the middle to TEN 40 for 7 yards (M.Griffin W.Witherspoon).,31,10,2012 -20120916_TEN@SD,4,7,28,SD,TEN,1,10,40,(7:28) J.Battle up the middle to TEN 37 for 3 yards (J.Casey M.Martin).,31,10,2012 -20120916_TEN@SD,4,6,47,SD,TEN,2,7,37,(6:47) C.Brinkley right tackle to TEN 32 for 5 yards (M.Griffin A.Ayers).,31,10,2012 -20120916_TEN@SD,4,6,2,SD,TEN,3,2,32,(6:02) J.Battle up the middle to TEN 24 for 8 yards (M.Griffin K.Wimbley).,31,10,2012 -20120916_TEN@SD,4,5,19,SD,TEN,1,10,24,(5:19) J.Battle up the middle to TEN 20 for 4 yards (J.Casey).,31,10,2012 -20120916_TEN@SD,4,4,35,SD,TEN,2,6,20,(4:35) C.Brinkley right tackle to TEN 19 for 1 yard (W.Witherspoon K.Klug).,31,10,2012 -20120916_TEN@SD,4,3,50,SD,TEN,3,5,19,(3:50) J.Battle left guard to TEN 3 for 16 yards (R.Johnson).,31,10,2012 -20120916_TEN@SD,4,3,3,SD,TEN,1,3,3,(3:03) J.Battle right tackle to TEN 1 for 2 yards (T.Shaw).,31,10,2012 -20120916_TEN@SD,4,2,21,SD,TEN,2,1,1,(2:21) J.Battle right guard to TEN 3 for -2 yards (M.Griffin S.Solomon).,31,10,2012 -20120916_TEN@SD,4,2,0,SD,TEN,3,3,3,(2:00) J.Battle left tackle to TEN 1 for 2 yards (W.Witherspoon J.McCourty).,31,10,2012 -20120916_TEN@SD,4,1,17,SD,TEN,4,1,1,(1:17) J.Battle left guard for 1 yard TOUCHDOWN.,31,10,2012 -20120916_TEN@SD,4,1,17,SD,TEN,,,1,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,31,10,2012 -20120916_TEN@SD,4,1,17,SD,TEN,,,1,N.Kaeding kicks 61 yards from SD 35 to TEN 4. L.Hawkins to TEN 21 for 17 yards (D.Stuckey).,38,10,2012 -20120916_TEN@SD,4,1,8,TEN,SD,1,10,79,(1:08) (Shotgun) J.Locker pass incomplete short left to K.Wright (C.Liuget).,10,38,2012 -20120916_TEN@SD,4,1,4,TEN,SD,2,10,79,(1:04) (Shotgun) J.Locker pass deep right to D.Williams to TEN 39 for 18 yards (A.Bigby).,10,38,2012 -20120916_TEN@SD,4,0,34,TEN,SD,1,10,61,(:34) (Shotgun) C.Johnson up the middle to TEN 41 for 2 yards (D.Williams).,10,38,2012 -20120916_TEN@SD,4,0,7,TEN,SD,2,8,59,(:07) (Shotgun) J.Locker pass deep middle to C.Stevens to SD 13 for 46 yards (E.Weddle).,10,38,2012 -20120916_TEN@SD,4,0,7,TEN,SD,,,59,                      ,10,38,2012 -20120916_DET@SF,1,0,0,SF,DET,,,59,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,0,0,2012 -20120916_DET@SF,1,60,0,DET,SF,1,10,80,(15:00) (Shotgun) K.Smith left tackle to DET 21 for 1 yard (Ald.Smith).,0,0,2012 -20120916_DET@SF,1,59,27,DET,SF,2,9,79,(14:27) (Shotgun) N.Burleson right end to DET 24 for 3 yards (J.Smith).,0,0,2012 -20120916_DET@SF,1,58,48,DET,SF,3,6,76,(13:48) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,0,0,2012 -20120916_DET@SF,1,58,43,DET,SF,4,6,76,(13:43) B.Graham punts 43 yards to SF 33 Center-D.Muhlbach out of bounds.,0,0,2012 -20120916_DET@SF,1,58,37,SF,DET,1,10,67,(13:37) A.Smith pass incomplete short middle to V.Davis.,0,0,2012 -20120916_DET@SF,1,58,32,SF,DET,2,10,67,(13:32) M.Manningham right end pushed ob at DET 38 for 29 yards (D.Florence).,0,0,2012 -20120916_DET@SF,1,58,4,SF,DET,1,10,38,(13:04) A.Smith pass short left to M.Crabtree pushed ob at DET 21 for 17 yards (J.Wendling). Caught at DET 25. 4-yds YAC,0,0,2012 -20120916_DET@SF,1,57,29,SF,DET,1,10,21,(12:29) A.Smith pass deep left to V.Davis for 21 yards TOUCHDOWN.,0,0,2012 -20120916_DET@SF,1,57,29,SF,DET,,,21,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20120916_DET@SF,1,57,29,SF,DET,,,21,D.Akers kicks 62 yards from SF 35 to DET 3. S.Logan to DET 27 for 24 yards (T.Brock). PENALTY on SF-D.Dobbs Offensive Offside 5 yards enforced at DET 27.,7,0,2012 -20120916_DET@SF,1,57,18,DET,SF,1,10,68,(12:18) K.Smith up the middle to DET 33 for 1 yard (I.Sopoaga).,0,7,2012 -20120916_DET@SF,1,56,34,DET,SF,2,9,67,(11:34) K.Smith up the middle to DET 36 for 3 yards (P.Willis).,0,7,2012 -20120916_DET@SF,1,56,3,DET,SF,3,6,64,(11:03) (Shotgun) M.Stafford pass short right to C.Johnson to DET 44 for 8 yards (D.Whitner). Caught at DET 37. 7-yds YAC,0,7,2012 -20120916_DET@SF,1,55,28,DET,SF,1,10,56,(10:28) M.Stafford pass short left to W.Heller to SF 49 for 7 yards (I.Sopoaga). Caught at 50. 1-yd YAC,0,7,2012 -20120916_DET@SF,1,54,46,DET,SF,2,3,49,(9:46) K.Smith left end to SF 48 for 1 yard (D.Goldson). PENALTY on DET-J.Backus Offensive Holding 10 yards enforced at SF 49 - No Play.,0,7,2012 -20120916_DET@SF,1,54,26,DET,SF,2,13,59,(9:26) (Shotgun) M.Stafford pass incomplete short right to T.Young (C.Culliver). PENALTY on SF-C.Culliver Defensive Pass Interference 33 yards enforced at DET 41 - No Play.,0,7,2012 -20120916_DET@SF,1,54,20,DET,SF,1,10,26,(9:20) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler (C.Rogers).,0,7,2012 -20120916_DET@SF,1,54,15,DET,SF,2,10,26,(9:15) N.Burleson right end to SF 24 for 2 yards (C.Culliver).,0,7,2012 -20120916_DET@SF,1,53,32,DET,SF,3,8,24,(8:32) (Shotgun) M.Stafford pass short right to B.Pettigrew to SF 20 for 4 yards (D.Whitner).,0,7,2012 -20120916_DET@SF,1,52,51,DET,SF,4,4,20,(7:51) J.Hanson 38 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,0,7,2012 -20120916_DET@SF,1,52,37,DET,SF,1,10,25,(7:37) (Shotgun) J.Bell to SF 23 for 2 yards (P.Willis).,3,7,2012 -20120916_DET@SF,1,51,56,DET,SF,2,8,23,(6:56) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,3,7,2012 -20120916_DET@SF,1,51,51,DET,SF,3,8,23,(6:51) (Shotgun) M.Stafford pass incomplete short middle to T.Young (A.Brooks).,3,7,2012 -20120916_DET@SF,1,51,47,DET,SF,4,8,23,(6:47) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,3,7,2012 -20120916_DET@SF,1,51,47,DET,SF,,,23,J.Hanson kicks 65 yards from DET 35 to SF 0. K.Hunter to SF 18 for 18 yards (D.Hogue). PENALTY on SF-D.Kilgore Offensive Holding 9 yards enforced at SF 18.,6,7,2012 -20120916_DET@SF,1,51,37,SF,DET,1,10,91,(6:37) F.Gore up the middle to SF 23 for 14 yards (E.Coleman).,7,6,2012 -20120916_DET@SF,1,50,58,SF,DET,1,10,77,(5:58) (Shotgun) F.Gore up the middle to SF 27 for 4 yards (J.Durant).,7,6,2012 -20120916_DET@SF,1,50,16,SF,DET,2,6,73,(5:16) F.Gore left end pushed ob at SF 32 for 5 yards (D.Florence).,7,6,2012 -20120916_DET@SF,1,49,46,SF,DET,3,1,68,(4:46) W.Tukuafu and L.Davis reported in as eligible. F.Gore left guard to SF 32 for no gain (S.Tulloch).,7,6,2012 -20120916_DET@SF,1,48,38,SF,DET,4,1,68,(3:38) A.Lee punts 52 yards to DET 16 Center-B.Jennings. S.Logan to DET 26 for 10 yards (B.Miller). PENALTY on DET-T.Whitehead Illegal Block Above the Waist 10 yards enforced at DET 26.,7,6,2012 -20120916_DET@SF,1,48,24,DET,SF,1,10,84,(3:24) M.Stafford pass incomplete deep right to N.Burleson.,6,7,2012 -20120916_DET@SF,1,48,17,DET,SF,2,10,84,(3:17) J.Bell up the middle to DET 20 for 4 yards (D.Goldson).,6,7,2012 -20120916_DET@SF,1,47,33,DET,SF,3,6,80,(2:33) (Shotgun) M.Stafford pass deep middle intended for T.Young INTERCEPTED by D.Goldson at DET 43. D.Goldson to DET 23 for 20 yards (J.Backus).,6,7,2012 -20120916_DET@SF,1,47,21,SF,DET,1,10,23,(2:21) W.Tukuafu reported in as eligible. F.Gore up the middle to DET 20 for 3 yards (J.Wendling).,7,6,2012 -20120916_DET@SF,1,46,36,SF,DET,2,7,20,(1:36) F.Gore up the middle to DET 17 for 3 yards (N.Suh).,7,6,2012 -20120916_DET@SF,1,45,53,SF,DET,3,4,34,(:53) (Shotgun) A.Smith FUMBLES (Aborted) at DET 17 and recovers at DET 34. A.Smith pass incomplete short left to K.Williams.,7,6,2012 -20120916_DET@SF,1,45,47,SF,DET,4,4,17,(:47) D.Akers 35 yard field goal is GOOD NULLIFIED by Penalty Center-B.Jennings Holder-A.Lee. PENALTY on DET-D.Florence Running Into the Kicker 5 yards enforced at DET 17 - No Play.,7,6,2012 -20120916_DET@SF,1,45,42,SF,DET,1,10,12,(:42) F.Gore up the middle to DET 8 for 4 yards (D.Levy).,7,6,2012 -20120916_DET@SF,1,45,0,SF,DET,2,6,8,(:00) A.Smith pass incomplete short right to R.Moss. PENALTY on DET-J.Lacey Defensive Pass Interference 7 yards enforced at DET 8 - No Play.,7,6,2012 -20120916_DET@SF,2,45,0,SF,DET,1,1,1,(15:00) L.Davis and W.Tukuafu reported in as eligible. F.Gore left guard for 1 yard TOUCHDOWN.,7,6,2012 -20120916_DET@SF,2,45,0,SF,DET,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,6,2012 -20120916_DET@SF,2,45,0,SF,DET,,,1,D.Akers kicks 73 yards from SF 35 to DET -8. S.Logan Touchback.,14,6,2012 -20120916_DET@SF,2,44,57,DET,SF,1,10,80,(14:57) J.Bell left guard to DET 23 for 3 yards (D.Goldson).,6,14,2012 -20120916_DET@SF,2,44,22,DET,SF,2,7,77,(14:22) (Shotgun) M.Stafford pass short left to J.Bell pushed ob at DET 32 for 9 yards (T.Brown). Caught at DET 22. 10-yds YAC,6,14,2012 -20120916_DET@SF,2,43,57,DET,SF,1,10,68,(13:57) J.Bell left end to DET 33 for 1 yard (Ald.Smith).,6,14,2012 -20120916_DET@SF,2,43,15,DET,SF,2,9,67,(13:15) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 37 for 4 yards (P.Willis). Caught at DET 35. 2-yds YAC,6,14,2012 -20120916_DET@SF,2,42,29,DET,SF,3,5,63,(12:29) (Shotgun) M.Stafford pass incomplete short left to C.Johnson (C.Culliver).,6,14,2012 -20120916_DET@SF,2,42,24,DET,SF,4,5,63,(12:24) B.Graham punts 46 yards to SF 17 Center-D.Muhlbach. K.Williams to SF 25 for 8 yards (D.Levy).,6,14,2012 -20120916_DET@SF,2,42,14,SF,DET,1,10,75,(12:14) (Shotgun) A.Smith pass short right to D.Walker to SF 32 for 7 yards (D.Levy). Caught at SF 30. 2-yds YAC,14,6,2012 -20120916_DET@SF,2,41,36,SF,DET,2,3,68,(11:36) A.Smith pass short left to M.Manningham pushed ob at SF 42 for 10 yards (D.Levy). Caught at SF 36. 6-yds YAC,14,6,2012 -20120916_DET@SF,2,41,7,SF,DET,1,10,58,(11:07) A.Smith pass short right to R.Moss to DET 44 for 14 yards (J.Durant). Caught at DET 45. 1-yd YAC,14,6,2012 -20120916_DET@SF,2,40,41,SF,DET,1,10,44,(10:41) PENALTY on DET-N.Suh Encroachment 5 yards enforced at DET 44 - No Play.,14,6,2012 -20120916_DET@SF,2,40,4,SF,DET,1,5,39,(10:04) A.Smith sacked at SF 49 for -12 yards (N.Suh).,14,6,2012 -20120916_DET@SF,2,39,24,SF,DET,2,17,51,(9:24) F.Gore up the middle to DET 39 for 12 yards (J.Wendling).,14,6,2012 -20120916_DET@SF,2,38,41,SF,DET,3,5,39,(8:41) (Shotgun) A.Smith pass incomplete short middle to M.Crabtree.,14,6,2012 -20120916_DET@SF,2,38,36,SF,DET,4,5,39,(8:36) A.Lee punts 25 yards to DET 14 Center-B.Jennings fair catch by S.Logan.,14,6,2012 -20120916_DET@SF,2,38,30,DET,SF,1,10,86,(8:30) K.Smith left guard to DET 20 for 6 yards (P.Willis).,6,14,2012 -20120916_DET@SF,2,37,52,DET,SF,2,4,80,(7:52) K.Smith left guard to DET 25 for 5 yards (R.McDonald).,6,14,2012 -20120916_DET@SF,2,37,11,DET,SF,1,10,75,(7:11) M.Stafford pass short left to N.Burleson pushed ob at DET 36 for 11 yards (P.Willis). Caught at DET 21. 15-yds YAC,6,14,2012 -20120916_DET@SF,2,36,40,DET,SF,1,10,64,(6:40) K.Smith left end to DET 38 for 2 yards (J.Smith).,6,14,2012 -20120916_DET@SF,2,36,1,DET,SF,2,8,62,(6:01) K.Smith right guard to DET 40 for 2 yards (P.Willis).,6,14,2012 -20120916_DET@SF,2,35,17,DET,SF,3,6,60,(5:17) (Shotgun) M.Stafford pass deep left to C.Johnson to SF 36 for 24 yards (D.Whitner). Caught at SF 43. 7-yds YAC,6,14,2012 -20120916_DET@SF,2,34,38,DET,SF,1,10,36,(4:38) (Shotgun) K.Smith up the middle to SF 33 for 3 yards (J.Smith).,6,14,2012 -20120916_DET@SF,2,33,54,DET,SF,2,7,33,(3:54) (Shotgun) M.Stafford pass incomplete deep middle to T.Young. PENALTY on SF-C.Rogers Defensive Holding 5 yards enforced at SF 33 - No Play.,6,14,2012 -20120916_DET@SF,2,33,48,DET,SF,1,10,28,(3:48) (Shotgun) K.Smith right guard to SF 21 for 7 yards (N.Bowman).,6,14,2012 -20120916_DET@SF,2,33,8,DET,SF,2,3,21,(3:08) (Shotgun) M.Stafford pass incomplete short left to C.Johnson (N.Bowman).,6,14,2012 -20120916_DET@SF,2,33,2,DET,SF,3,3,21,(3:02) (Shotgun) M.Stafford pass incomplete short left to C.Johnson [A.Brooks].,6,14,2012 -20120916_DET@SF,2,32,58,DET,SF,4,3,21,(2:58) J.Hanson 40 yard field goal is No Good Hit Right Upright Center-D.Muhlbach Holder-B.Graham.,6,14,2012 -20120916_DET@SF,2,32,53,SF,DET,1,10,70,(2:53) A.Smith pass incomplete deep left to V.Davis (D.Florence).,14,6,2012 -20120916_DET@SF,2,32,45,SF,DET,2,10,70,(2:45) F.Gore up the middle to SF 46 for 16 yards (E.Coleman).,14,6,2012 -20120916_DET@SF,2,32,10,SF,DET,1,10,54,(2:10) A.Smith pass incomplete short middle to K.Hunter (S.Tulloch).,14,6,2012 -20120916_DET@SF,2,32,5,SF,DET,2,10,54,(2:05) (Shotgun) K.Hunter left tackle to SF 46 for no gain (D.Levy).,14,6,2012 -20120916_DET@SF,2,31,59,SF,DET,3,10,54,(1:59) (Shotgun) A.Smith pass short right to V.Davis to DET 42 for 12 yards (J.Lacey).,14,6,2012 -20120916_DET@SF,2,31,33,SF,DET,1,10,42,(1:33) (No Huddle Shotgun) A.Smith pass incomplete short right to F.Gore.,14,6,2012 -20120916_DET@SF,2,31,29,SF,DET,2,10,42,(1:29) (Shotgun) A.Smith pass incomplete short middle to K.Williams (S.Tulloch).,14,6,2012 -20120916_DET@SF,2,31,25,SF,DET,3,10,42,(1:25) (Shotgun) A.Smith pass short middle to F.Gore to DET 41 for 1 yard (D.Levy).,14,6,2012 -20120916_DET@SF,2,31,12,SF,DET,4,9,41,(1:12) A.Lee punts 32 yards to DET 9 Center-B.Jennings fair catch by S.Logan.,14,6,2012 -20120916_DET@SF,2,31,5,DET,SF,1,10,91,(1:05) (Shotgun) K.Smith right guard to DET 10 for 1 yard (N.Bowman).,6,14,2012 -20120916_DET@SF,2,30,24,DET,SF,2,9,90,(:24) M.Stafford kneels to DET 9 for -1 yards.,6,14,2012 -20120916_DET@SF,3,30,0,DET,SF,,,90,J.Hanson kicks 74 yards from DET 35 to SF -9. K.Hunter Touchback.,6,14,2012 -20120916_DET@SF,3,30,0,SF,DET,1,10,80,(15:00) A.Smith sacked at SF 17 for -3 yards (K.Vanden Bosch). A.Smith handed off to K.Hunter who pitched ball back to A.Smith. PENALTY on DET-K.Vanden Bosch Face Mask (15 Yards) 15 yards enforced at SF 17.,14,6,2012 -20120916_DET@SF,3,29,33,SF,DET,1,10,68,(14:33) F.Gore left tackle to SF 34 for 2 yards (S.Tulloch).,14,6,2012 -20120916_DET@SF,3,28,53,SF,DET,2,8,66,(13:53) A.Smith pass short left to M.Manningham pushed ob at SF 47 for 13 yards (J.Wendling). Caught at SF 32. 15-yds YAC,14,6,2012 -20120916_DET@SF,3,28,28,SF,DET,1,10,53,(13:28) F.Gore up the middle to DET 42 for 11 yards (E.Coleman).,14,6,2012 -20120916_DET@SF,3,27,43,SF,DET,1,10,42,(12:43) A.Smith pass short right to M.Manningham to DET 37 for 5 yards (J.Durant J.Lacey).,14,6,2012 -20120916_DET@SF,3,27,4,SF,DET,2,5,37,(12:04) K.Hunter left end to DET 24 for 13 yards (J.Wendling).,14,6,2012 -20120916_DET@SF,3,26,38,SF,DET,1,10,24,(11:38) A.Smith sacked at DET 34 for -10 yards (sack split by N.Suh and C.Williams).,14,6,2012 -20120916_DET@SF,3,26,1,SF,DET,2,20,34,(11:01) A.Smith pass short left to V.Davis pushed ob at DET 21 for 13 yards (S.Tulloch) [N.Suh]. Caught at DET 31. 10-yds YAC,14,6,2012 -20120916_DET@SF,3,25,27,SF,DET,3,7,21,(10:27) (Shotgun) A.Smith pass short right to M.Crabtree to DET 18 for 3 yards (E.Coleman). Caught at DET 19. 1-yd YAC,14,6,2012 -20120916_DET@SF,3,24,46,SF,DET,4,4,18,(9:46) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,14,6,2012 -20120916_DET@SF,3,24,46,SF,DET,,,18,D.Akers kicks 66 yards from SF 35 to DET -1. S.Logan pushed ob at DET 39 for 40 yards (C.Culliver).,17,6,2012 -20120916_DET@SF,3,24,36,DET,SF,1,10,61,(9:36) K.Smith left tackle to DET 43 for 4 yards (N.Bowman Ald.Smith).,6,17,2012 -20120916_DET@SF,3,23,56,DET,SF,2,6,57,(8:56) (Shotgun) M.Stafford pass short left to C.Johnson to DET 48 for 5 yards (C.Rogers).,6,17,2012 -20120916_DET@SF,3,23,15,DET,SF,3,1,52,(8:15) (Shotgun) M.Stafford pass short left to K.Smith pushed ob at SF 40 for 12 yards (N.Bowman). Caught at SF 40. 15-yds YAC,6,17,2012 -20120916_DET@SF,3,22,45,DET,SF,1,10,40,(7:45) K.Smith right tackle to SF 40 for no gain (J.Smith).,6,17,2012 -20120916_DET@SF,3,22,2,DET,SF,2,10,40,(7:02) K.Smith right tackle to SF 31 for 9 yards (D.Goldson).,6,17,2012 -20120916_DET@SF,3,21,21,DET,SF,3,1,31,(6:21) J.Bell up the middle to SF 27 for 4 yards (J.Smith).,6,17,2012 -20120916_DET@SF,3,20,46,DET,SF,1,10,27,(5:46) (Shotgun) M.Stafford pass short left to C.Johnson to SF 22 for 5 yards (T.Brown). Caught at SF 24. 2-yds YAC,6,17,2012 -20120916_DET@SF,3,20,8,DET,SF,2,5,22,(5:08) J.Bell left end to SF 22 for no gain (Ald.Smith).,6,17,2012 -20120916_DET@SF,3,19,25,DET,SF,3,5,22,(4:25) (Shotgun) M.Stafford pass short left to C.Johnson to SF 22 for no gain (T.Brown N.Bowman). Caught at SF 23. 1-yd YAC,6,17,2012 -20120916_DET@SF,3,18,44,DET,SF,4,5,22,(3:44) J.Hanson 40 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,6,17,2012 -20120916_DET@SF,3,18,44,DET,SF,,,22,J.Hanson kicks 70 yards from DET 35 to SF -5. K.Hunter to SF 15 for 20 yards (R.Lewis).,9,17,2012 -20120916_DET@SF,3,18,30,SF,DET,1,10,85,(3:30) A.Smith pass short right to K.Hunter to SF 24 for 9 yards (J.Durant). Caught at SF 11. 13-yds YAC,17,9,2012 -20120916_DET@SF,3,17,49,SF,DET,2,1,76,(2:49) K.Hunter left end to SF 27 for 3 yards (J.Wendling).,17,9,2012 -20120916_DET@SF,3,17,2,SF,DET,1,10,73,(2:02) W.Tukuafu reported in as eligible. F.Gore left tackle to SF 33 for 6 yards (D.Levy).,17,9,2012 -20120916_DET@SF,3,16,20,SF,DET,2,4,67,(1:20) A.Smith pass short right to M.Crabtree to SF 46 for 13 yards (J.Lacey). Caught at SF 39. 7-yds YAC,17,9,2012 -20120916_DET@SF,3,15,40,SF,DET,1,10,54,(:40) A.Smith pass short left to K.Hunter to DET 42 for 12 yards (S.Tulloch). Caught at SF 42. 9-yds YAC,17,9,2012 -20120916_DET@SF,3,15,7,SF,DET,1,10,42,(:07) F.Gore right tackle to DET 30 for 12 yards (J.Wendling).,17,9,2012 -20120916_DET@SF,4,15,0,SF,DET,1,10,30,(15:00) D.Kilgore reported in as eligible. A.Smith pass incomplete short right to B.Miller.,17,9,2012 -20120916_DET@SF,4,14,56,SF,DET,2,10,30,(14:56) A.Smith pass incomplete short right to D.Walker.,17,9,2012 -20120916_DET@SF,4,14,51,SF,DET,3,10,30,(14:51) (Shotgun) A.Smith pass incomplete short middle to M.Manningham.,17,9,2012 -20120916_DET@SF,4,14,47,SF,DET,4,10,30,(14:47) D.Akers 48 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,17,9,2012 -20120916_DET@SF,4,14,47,SF,DET,,,30,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,20,9,2012 -20120916_DET@SF,4,14,42,DET,SF,1,10,80,(14:42) (Shotgun) K.Smith right tackle to DET 24 for 4 yards (N.Bowman).,9,20,2012 -20120916_DET@SF,4,14,0,DET,SF,2,6,76,(14:00) (Shotgun) M.Stafford pass deep middle to C.Johnson to 50 for 26 yards (D.Goldson). Caught at DET 40. 10-yds YAC,9,20,2012 -20120916_DET@SF,4,13,21,DET,SF,1,10,50,(13:21) K.Smith up the middle to SF 47 for 3 yards (N.Bowman P.Willis).,9,20,2012 -20120916_DET@SF,4,12,45,DET,SF,2,7,47,(12:45) (Shotgun) M.Stafford pass short middle to T.Scheffler to SF 34 for 13 yards (C.Rogers D.Goldson). Caught at SF 40. 6-yds YAC,9,20,2012 -20120916_DET@SF,4,12,2,DET,SF,1,10,34,(12:02) (Shotgun) M.Stafford up the middle to SF 23 for 11 yards (P.Willis).,9,20,2012 -20120916_DET@SF,4,11,23,DET,SF,1,10,23,(11:23) K.Smith left guard to SF 21 for 2 yards (N.Bowman).,9,20,2012 -20120916_DET@SF,4,10,41,DET,SF,2,8,21,(10:41) (Shotgun) M.Stafford sacked at SF 36 for -15 yards (A.Brooks). Detroit challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) M.Stafford sacked at SF 30 for -9 yards (R.McDonald).,9,20,2012 -20120916_DET@SF,4,10,22,DET,SF,3,17,30,(10:22) (Shotgun) PENALTY on DET-N.Burleson False Start 5 yards enforced at SF 30 - No Play.,9,20,2012 -20120916_DET@SF,4,10,2,DET,SF,3,22,35,(10:02) (Shotgun) M.Stafford pass short left to K.Smith to SF 30 for 5 yards (P.Cox). Caught at SF 38. 8-yds YAC,9,20,2012 -20120916_DET@SF,4,9,21,DET,SF,4,17,30,(9:21) J.Hanson 48 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,9,20,2012 -20120916_DET@SF,4,9,21,DET,SF,,,30,J.Hanson kicks 65 yards from DET 35 to SF 0. K.Hunter to SF 21 for 21 yards (D.Hogue).,12,20,2012 -20120916_DET@SF,4,9,10,SF,DET,1,10,79,(9:10) F.Gore left end to SF 20 for -1 yards (D.Levy).,20,12,2012 -20120916_DET@SF,4,8,32,SF,DET,2,11,80,(8:32) (Shotgun) A.Smith pass short right to V.Davis to SF 24 for 4 yards (S.Tulloch J.Durant). Caught at SF 18. 6-yds YAC,20,12,2012 -20120916_DET@SF,4,7,51,SF,DET,3,7,76,(7:51) (Shotgun) A.Smith pass short right to M.Crabtree pushed ob at SF 31 for 7 yards (E.Coleman). Caught at SF 30. 1-yd YAC,20,12,2012 -20120916_DET@SF,4,7,30,SF,DET,1,10,69,(7:30) W.Tukuafu and L.Davis reported in as eligible. F.Gore left tackle to SF 27 for -4 yards (D.Levy).,20,12,2012 -20120916_DET@SF,4,6,44,SF,DET,2,14,73,(6:44) (Shotgun) A.Smith pass incomplete short left to F.Gore.,20,12,2012 -20120916_DET@SF,4,6,41,SF,DET,3,14,73,(6:41) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 43 for 16 yards (D.Florence J.Wendling). Caught at SF 30. 13-yds YAC,20,12,2012 -20120916_DET@SF,4,5,53,SF,DET,1,10,57,(5:53) W.Tukuafu reported in as eligible. A.Smith pass short right to F.Gore to DET 42 for 15 yards (D.Levy). Caught at SF 38. 12-yds YAC,20,12,2012 -20120916_DET@SF,4,5,6,SF,DET,1,10,42,(5:06) K.Hunter left guard to DET 42 for no gain (A.Spievey).,20,12,2012 -20120916_DET@SF,4,4,23,SF,DET,2,10,42,(4:23) A.Smith scrambles right end to DET 22 for 20 yards (J.Wendling). PENALTY on SF-D.Walker Offensive Holding 10 yards enforced at DET 32.,20,12,2012 -20120916_DET@SF,4,4,9,SF,DET,2,10,42,(4:09) (Shotgun) F.Gore up the middle to DET 41 for 1 yard (J.Durant).,20,12,2012 -20120916_DET@SF,4,3,33,SF,DET,3,9,41,(3:33) (Shotgun) A.Smith pass short right to M.Crabtree to DET 30 for 11 yards (J.Durant). Caught at DET 35. 5-yds YAC,20,12,2012 -20120916_DET@SF,4,3,23,SF,DET,1,10,30,(3:23) K.Hunter left end to DET 23 for 7 yards (A.Palmer).,20,12,2012 -20120916_DET@SF,4,3,11,SF,DET,2,3,23,(3:11) W.Tukuafu reported in as eligible. A.Smith pass short right to V.Davis for 23 yards TOUCHDOWN. Caught at DET 17. 17-yds YAC,20,12,2012 -20120916_DET@SF,4,3,11,SF,DET,,,23,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,20,12,2012 -20120916_DET@SF,4,3,11,SF,DET,,,23,D.Akers kicks 71 yards from SF 35 to DET -6. S.Logan Touchback.,27,12,2012 -20120916_DET@SF,4,3,4,DET,SF,1,10,80,(3:04) (Shotgun) M.Stafford sacked at DET 13 for -7 yards (Ald.Smith).,12,27,2012 -20120916_DET@SF,4,2,38,DET,SF,2,17,87,(2:38) (No Huddle Shotgun) M.Stafford pass incomplete short middle to K.Smith.,12,27,2012 -20120916_DET@SF,4,2,32,DET,SF,3,17,87,(2:32) (Shotgun) M.Stafford pass short right to J.Bell pushed ob at SF 37 for 50 yards (T.Brown). Caught at DET 10. 53-yards YAC,12,27,2012 -20120916_DET@SF,4,2,20,DET,SF,1,10,37,(2:20) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to SF 32 for 5 yards (P.Willis).,12,27,2012 -20120916_DET@SF,4,2,14,DET,SF,2,5,32,(2:14) (Shotgun) M.Stafford pass incomplete deep middle to T.Young (D.Goldson) [Ald.Smith]. PENALTY on DET-T.Young Offensive Pass Interference 10 yards enforced at SF 32 - No Play.,12,27,2012 -20120916_DET@SF,4,2,6,DET,SF,2,15,42,(2:06) (Shotgun) M.Stafford pass short left to T.Young to SF 31 for 11 yards (D.Goldson). Caught at SF 36. 5-yds YAC,12,27,2012 -20120916_DET@SF,4,1,58,DET,SF,3,4,31,(1:58) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (P.Willis).,12,27,2012 -20120916_DET@SF,4,1,54,DET,SF,4,4,31,(1:54) (Shotgun) M.Stafford pass short middle to C.Johnson to SF 9 for 22 yards (C.Culliver). Caught at SF27. 18-yds YAC,12,27,2012 -20120916_DET@SF,4,1,45,DET,SF,1,9,9,(1:45) (Shotgun) M.Stafford pass incomplete short right to J.Bell.,12,27,2012 -20120916_DET@SF,4,1,40,DET,SF,2,9,9,(1:40) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler.,12,27,2012 -20120916_DET@SF,4,1,35,DET,SF,3,9,9,(1:35) (Shotgun) M.Stafford pass short middle to B.Pettigrew for 9 yards TOUCHDOWN.,12,27,2012 -20120916_DET@SF,4,1,35,DET,SF,,,9,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,12,27,2012 -20120916_DET@SF,4,1,35,DET,SF,,,9,J.Hanson kicks 40 yards from DET 35 to SF 25. K.Williams (didn't try to advance) to SF 25 for no gain (J.Bell).,19,27,2012 -20120916_DET@SF,4,1,28,SF,DET,1,10,75,(1:28) A.Smith kneels to SF 24 for -1 yards.,27,19,2012 -20120916_DET@SF,4,0,46,SF,DET,2,11,76,(:46) A.Smith kneels to SF 23 for -1 yards.,27,19,2012 -20120916_DET@SF,4,0,23,SF,DET,3,12,77,(:23) A.Smith kneels to SF 22 for -1 yards.,27,19,2012 -20120916_DET@SF,4,0,23,SF,DET,,,77,                      ,27,19,2012 -20120917_DEN@ATL,1,0,0,ATL,DEN,,,77,M.Bosher kicks 68 yards from ATL 35 to DEN -3. O.Bolden to DEN 14 for 17 yards (K.Cone).,0,0,2012 -20120917_DEN@ATL,1,59,55,DEN,ATL,1,10,86,(14:55) P.Manning pass incomplete short left to D.Thomas (D.Robinson).,0,0,2012 -20120917_DEN@ATL,1,59,49,DEN,ATL,2,10,86,(14:49) W.McGahee right tackle to DEN 12 for -2 yards (P.Jerry).,0,0,2012 -20120917_DEN@ATL,1,59,24,DEN,ATL,3,12,88,(14:24) P.Manning pass deep right intended for J.Tamme INTERCEPTED by W.Moore at DEN 34. W.Moore to DEN 1 for 33 yards (O.Franklin).,0,0,2012 -20120917_DEN@ATL,1,59,13,ATL,DEN,1,1,1,(14:13) M.Turner left guard to DEN 1 for no gain (K.Vickerson).,0,0,2012 -20120917_DEN@ATL,1,58,42,ATL,DEN,2,1,1,(13:42) M.Turner left tackle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. M.Turner left tackle to DEN 1 for no gain (K.Brooking; M.Adams). FUMBLES (K.Brooking) and recovers at DEN 1. M.Turner to DEN 1 for no gain (K.Brooking; M.Adams).,0,0,2012 -20120917_DEN@ATL,1,58,27,ATL,DEN,3,1,1,(13:27) M.Turner up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20120917_DEN@ATL,1,58,27,ATL,DEN,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20120917_DEN@ATL,1,58,27,ATL,DEN,,,1,M.Bosher kicks 67 yards from ATL 35 to DEN -2. O.Bolden to DEN 28 for 30 yards (C.Hope).,7,0,2012 -20120917_DEN@ATL,1,58,14,DEN,ATL,1,10,72,(13:14) PENALTY on ATL-J.Abraham Defensive Offside 5 yards enforced at DEN 28 - No Play.,0,7,2012 -20120917_DEN@ATL,1,57,52,DEN,ATL,1,5,67,(12:52) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 38 for 5 yards (C.Owens).,0,7,2012 -20120917_DEN@ATL,1,57,27,DEN,ATL,1,10,62,(12:27) P.Manning left guard to DEN 37 for -1 yards (S.Weatherspoon).,0,7,2012 -20120917_DEN@ATL,1,56,56,DEN,ATL,2,11,63,(11:56) P.Manning pass deep right intended for J.Tamme INTERCEPTED by T.DeCoud at ATL 42. T.DeCoud ran ob at DEN 43 for 15 yards (E.Decker).,0,7,2012 -20120917_DEN@ATL,1,56,50,ATL,DEN,1,10,43,(11:50) M.Ryan pass short right to J.Snelling to DEN 37 for 6 yards (C.Bailey).,7,0,2012 -20120917_DEN@ATL,1,56,22,ATL,DEN,2,4,37,(11:22) M.Turner left end to DEN 30 for 7 yards (R.Moore). PENALTY on ATL-J.Blalock Offensive Holding 10 yards enforced at DEN 37 - No Play.,7,0,2012 -20120917_DEN@ATL,1,55,52,ATL,DEN,2,14,47,(10:52) (Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 32 for 15 yards (M.Adams; R.Moore). PENALTY on DEN-R.Moore Face Mask (15 Yards) 15 yards enforced at DEN 32.,7,0,2012 -20120917_DEN@ATL,1,55,36,ATL,DEN,1,10,17,(10:36) M.Ryan pass short left to J.Jones to DEN 19 for -2 yards (T.Porter; E.Dumervil).,7,0,2012 -20120917_DEN@ATL,1,55,0,ATL,DEN,2,12,19,(10:00) M.Ryan pass incomplete short right to R.White.,7,0,2012 -20120917_DEN@ATL,1,54,58,ATL,DEN,3,12,19,(9:58) M.Ryan pass incomplete deep left to J.Jones.,7,0,2012 -20120917_DEN@ATL,1,54,51,ATL,DEN,4,12,19,(9:51) M.Bryant 37 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 -20120917_DEN@ATL,1,54,51,ATL,DEN,,,19,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,10,0,2012 -20120917_DEN@ATL,1,54,46,DEN,ATL,1,10,80,(9:46) W.McGahee right tackle to DEN 20 for no gain (W.Moore).,0,10,2012 -20120917_DEN@ATL,1,54,13,DEN,ATL,2,10,80,(9:13) (Shotgun) P.Manning pass short left to J.Tamme to DEN 29 for 9 yards (D.Robinson).,0,10,2012 -20120917_DEN@ATL,1,53,38,DEN,ATL,3,1,71,(8:38) PENALTY on DEN-J.Walton False Start 4 yards enforced at DEN 29 - No Play.,0,10,2012 -20120917_DEN@ATL,1,53,23,DEN,ATL,3,5,75,(8:23) (Shotgun) P.Manning pass short right to B.Stokley to DEN 31 for 6 yards (C.Owens).,0,10,2012 -20120917_DEN@ATL,1,52,45,DEN,ATL,1,10,69,(7:45) W.McGahee right end ran ob at DEN 46 for 15 yards (W.Moore). ATL-A.Samuel was injured during the play. His return is Probable.,0,10,2012 -20120917_DEN@ATL,1,52,38,DEN,ATL,1,10,54,(7:38) (Shotgun) P.Manning pass short left to D.Thomas pushed ob at ATL 40 for 14 yards (D.Robinson).,0,10,2012 -20120917_DEN@ATL,1,52,9,DEN,ATL,1,10,40,(7:09) (Shotgun) P.Manning pass deep right intended for B.Stokley INTERCEPTED by R.McClain at ATL 15. R.McClain ran ob at ATL 47 for 32 yards (W.McGahee). Penalty on DEN-O.Franklin Offensive Holding declined.,0,10,2012 -20120917_DEN@ATL,1,51,55,ATL,DEN,1,10,53,(6:55) J.Jones left end to ATL 48 for 1 yard (T.Porter).,10,0,2012 -20120917_DEN@ATL,1,51,19,ATL,DEN,2,9,52,(6:19) M.Ryan pass short middle to M.Turner to ATL 48 for no gain (V.Miller).,10,0,2012 -20120917_DEN@ATL,1,50,39,ATL,DEN,3,9,52,(5:39) (Shotgun) M.Ryan pass incomplete short left to R.White (M.Adams). PENALTY on DEN-T.Carter Defensive Pass Interference 14 yards enforced at ATL 48 - No Play. Denver challenged the tipped pass ruling and the play was REVERSED. (Shotgun) M.Ryan pass incomplete short left to R.White (M.Adams).,10,0,2012 -20120917_DEN@ATL,1,50,35,ATL,DEN,4,9,52,(5:35) M.Bosher punts 42 yards to DEN 10 Center-J.Harris fair catch by J.Leonhard.,10,0,2012 -20120917_DEN@ATL,1,50,27,DEN,ATL,1,10,90,(5:27) W.McGahee right end ran ob at DEN 41 for 31 yards (W.Moore).,0,10,2012 -20120917_DEN@ATL,1,49,57,DEN,ATL,1,10,59,(4:57) K.Moreno left end to DEN 39 for -2 yards (S.Nicholas).,0,10,2012 -20120917_DEN@ATL,1,49,21,DEN,ATL,2,12,61,(4:21) P.Manning pass short left to J.Dreessen to DEN 46 for 7 yards (S.Nicholas).,0,10,2012 -20120917_DEN@ATL,1,48,42,DEN,ATL,3,5,54,(3:42) (Shotgun) P.Manning pass short right to J.Tamme to 50 for 4 yards (A.Samuel).,0,10,2012 -20120917_DEN@ATL,1,47,57,DEN,ATL,4,1,50,(2:57) B.Colquitt punts 39 yards to ATL 11 Center-A.Brewer fair catch by D.Franks.,0,10,2012 -20120917_DEN@ATL,1,47,49,ATL,DEN,1,10,89,(2:49) M.Turner left guard to ATL 13 for 2 yards (K.Brooking).,10,0,2012 -20120917_DEN@ATL,1,47,12,ATL,DEN,2,8,87,(2:12) M.Turner left end to ATL 18 for 5 yards (R.Moore).,10,0,2012 -20120917_DEN@ATL,1,46,34,ATL,DEN,3,3,82,(1:34) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez.,10,0,2012 -20120917_DEN@ATL,1,46,31,ATL,DEN,4,3,82,(1:31) M.Bosher punts 39 yards to DEN 43 Center-J.Harris fair catch by J.Leonhard.,10,0,2012 -20120917_DEN@ATL,1,46,23,DEN,ATL,1,10,57,(1:23) W.McGahee left end to DEN 45 for 2 yards (W.Moore; S.Weatherspoon).,0,10,2012 -20120917_DEN@ATL,1,45,48,DEN,ATL,2,8,55,(:48) (Shotgun) W.McGahee right guard to ATL 45 for 10 yards (D.Franks).,0,10,2012 -20120917_DEN@ATL,1,45,13,DEN,ATL,1,10,45,(:13) (Shotgun) K.Moreno right end to ATL 41 for 4 yards (S.Nicholas). FUMBLES (S.Nicholas) RECOVERED by ATL-S.Weatherspoon at ATL 32. PENALTY on ATL-R.Edwards Unnecessary Roughness 15 yards enforced at ATL 32.,0,10,2012 -20120917_DEN@ATL,1,45,2,ATL,DEN,1,10,83,(:02) M.Turner left tackle to ATL 20 for 3 yards (M.Adams).,10,0,2012 -20120917_DEN@ATL,2,45,0,ATL,DEN,2,7,80,(15:00) M.Ryan pass incomplete short left to J.Jones.,10,0,2012 -20120917_DEN@ATL,2,44,57,ATL,DEN,3,7,80,(14:57) (Shotgun) M.Ryan scrambles left guard to ATL 27 for 7 yards. PENALTY on DEN-J.Mays Unnecessary Roughness 15 yards enforced at ATL 27.,10,0,2012 -20120917_DEN@ATL,2,44,27,ATL,DEN,1,10,58,(14:27) M.Ryan pass short left to R.White ran ob at 50 for 8 yards.,10,0,2012 -20120917_DEN@ATL,2,44,2,ATL,DEN,2,2,50,(14:02) M.Ryan pass short right to R.White ran ob at DEN 43 for 7 yards [M.Adams].,10,0,2012 -20120917_DEN@ATL,2,43,29,ATL,DEN,1,10,43,(13:29) PENALTY on ATL-G.Reynolds False Start 5 yards enforced at DEN 43 - No Play.,10,0,2012 -20120917_DEN@ATL,2,43,8,ATL,DEN,1,15,48,(13:08) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez [M.Unrein].,10,0,2012 -20120917_DEN@ATL,2,43,3,ATL,DEN,2,15,48,(13:03) (Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 32 for 16 yards (M.Adams).,10,0,2012 -20120917_DEN@ATL,2,42,57,ATL,DEN,1,10,32,(12:57) (Shotgun) PENALTY on DEN Defensive 12 On-field 5 yards enforced at DEN 32 - No Play. Denver challenged the too many players on field ruling and the play was Upheld. (Timeout #1.),10,0,2012 -20120917_DEN@ATL,2,42,7,ATL,DEN,1,5,27,(12:07) (Shotgun) Jz. Rodgers right end to DEN 26 for 1 yard (W.Woodyard; M.Adams).,10,0,2012 -20120917_DEN@ATL,2,41,38,ATL,DEN,2,4,26,(11:38) (Shotgun) M.Ryan pass short right to T.Gonzalez to DEN 24 for 2 yards (W.Woodyard) [V.Miller].,10,0,2012 -20120917_DEN@ATL,2,40,52,ATL,DEN,3,2,24,(10:52) (Shotgun) Jz. Rodgers right tackle to DEN 24 for no gain (C.Bailey).,10,0,2012 -20120917_DEN@ATL,2,40,10,ATL,DEN,4,2,24,(10:10) M.Bryant 42 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,10,0,2012 -20120917_DEN@ATL,2,40,10,ATL,DEN,,,24,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,13,0,2012 -20120917_DEN@ATL,2,40,5,DEN,ATL,1,10,80,(10:05) (Shotgun) P.Manning pass short left to D.Thomas ran ob at DEN 24 for 4 yards (D.Franks).,0,13,2012 -20120917_DEN@ATL,2,39,49,DEN,ATL,2,6,76,(9:49) (Shotgun) W.McGahee right guard to DEN 28 for 4 yards (V.Walker).,0,13,2012 -20120917_DEN@ATL,2,39,9,DEN,ATL,3,2,72,(9:09) W.McGahee left tackle to DEN 28 for no gain (K.Biermann). Penalty on DEN-M.Ramirez Offensive Holding declined.,0,13,2012 -20120917_DEN@ATL,2,38,51,DEN,ATL,4,2,72,(8:51) B.Colquitt punts 45 yards to ATL 27 Center-A.Brewer fair catch by D.Franks.,0,13,2012 -20120917_DEN@ATL,2,38,43,ATL,DEN,1,10,73,(8:43) M.Turner right end to ATL 30 for 3 yards (W.Woodyard).,13,0,2012 -20120917_DEN@ATL,2,38,13,ATL,DEN,2,7,70,(8:13) M.Ryan pass incomplete deep left to J.Jones. PENALTY on DEN-T.Carter Defensive Pass Interference 18 yards enforced at ATL 30 - No Play.,13,0,2012 -20120917_DEN@ATL,2,38,6,ATL,DEN,1,10,52,(8:06) M.Ryan pass short right to H.Douglas to DEN 43 for 9 yards (M.Adams).,13,0,2012 -20120917_DEN@ATL,2,37,24,ATL,DEN,2,1,43,(7:24) (No Huddle) M.Ryan pass deep right to R.White pushed ob at DEN 27 for 16 yards (C.Bailey).,13,0,2012 -20120917_DEN@ATL,2,36,49,ATL,DEN,1,10,27,(6:49) (No Huddle Shotgun) M.Ryan pass short middle to T.Gonzalez to DEN 12 for 15 yards (R.Moore).,13,0,2012 -20120917_DEN@ATL,2,36,5,ATL,DEN,1,10,12,(6:05) (No Huddle) M.Turner left end to DEN 11 for 1 yard (R.Moore).,13,0,2012 -20120917_DEN@ATL,2,35,22,ATL,DEN,2,9,11,(5:22) (No Huddle Shotgun) M.Ryan pass short middle to H.Douglas to DEN 1 for 10 yards (K.Vickerson).,13,0,2012 -20120917_DEN@ATL,2,34,45,ATL,DEN,1,1,1,(4:45) M.Ryan pass short middle to T.Gonzalez for 1 yard TOUCHDOWN.,13,0,2012 -20120917_DEN@ATL,2,34,45,ATL,DEN,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,0,2012 -20120917_DEN@ATL,2,34,45,ATL,DEN,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 -20120917_DEN@ATL,2,34,39,DEN,ATL,1,10,80,(4:39) P.Manning pass short right to E.Decker pushed ob at DEN 25 for 5 yards (A.Samuel).,0,20,2012 -20120917_DEN@ATL,2,34,34,DEN,ATL,2,5,75,(4:34) (Shotgun) P.Manning pass short right to E.Decker to DEN 43 for 18 yards (T.DeCoud).,0,20,2012 -20120917_DEN@ATL,2,34,7,DEN,ATL,1,10,57,(4:07) (No Huddle Shotgun) P.Manning pass short right to E.Decker to ATL 47 for 10 yards (A.Samuel). FUMBLES (A.Samuel) and recovers at 50. E.Decker to 50 for no gain (A.Samuel). PENALTY on ATL-D.Franks Illegal Contact 5 yards enforced at DEN 43 - No Play.,0,20,2012 -20120917_DEN@ATL,2,33,45,DEN,ATL,1,10,52,(3:45) W.McGahee up the middle to ATL 45 for 7 yards (T.DeCoud).,0,20,2012 -20120917_DEN@ATL,2,33,28,DEN,ATL,2,3,45,(3:28) K.Moreno to ATL 45 for no gain (S.Nicholas; J.Abraham). PENALTY on DEN-J.Dreessen Offensive Holding 10 yards enforced at ATL 45 - No Play.,0,20,2012 -20120917_DEN@ATL,2,33,18,DEN,ATL,2,13,55,(3:18) (Shotgun) P.Manning pass short right to E.Decker to ATL 43 for 12 yards (A.Samuel).,0,20,2012 -20120917_DEN@ATL,2,32,53,DEN,ATL,3,1,43,(2:53) P.Manning pass incomplete short right to E.Decker (W.Moore).,0,20,2012 -20120917_DEN@ATL,2,32,50,DEN,ATL,4,1,43,(2:50) (No Huddle Shotgun) P.Manning pass incomplete short left to B.Stokley. PENALTY on ATL-D.Franks Defensive Holding 11 yards enforced at ATL 43 - No Play.,0,20,2012 -20120917_DEN@ATL,2,32,45,DEN,ATL,1,10,32,(2:45) W.McGahee left guard to ATL 26 for 6 yards (S.Weatherspoon). DEN-O.Franklin was injured during the play. His return is Questionable.,0,20,2012 -20120917_DEN@ATL,2,32,24,DEN,ATL,2,4,26,(2:24) (No Huddle Shotgun) W.McGahee right end to ATL 22 for 4 yards (S.Weatherspoon; A.Samuel).,0,20,2012 -20120917_DEN@ATL,2,32,0,DEN,ATL,1,10,22,(2:00) (Shotgun) P.Manning pass incomplete deep middle to D.Thomas (W.Moore). PENALTY on DEN-R.Clady Offensive Holding 10 yards enforced at ATL 22 - No Play.,0,20,2012 -20120917_DEN@ATL,2,31,53,DEN,ATL,1,20,32,(1:53) (Shotgun) P.Manning pass short right to W.McGahee to ATL 22 for 10 yards (S.Nicholas).,0,20,2012 -20120917_DEN@ATL,2,31,14,DEN,ATL,2,10,22,(1:14) (Shotgun) P.Manning pass short middle to J.Dreessen to ATL 13 for 9 yards (S.Weatherspoon; K.Biermann).,0,20,2012 -20120917_DEN@ATL,2,30,49,DEN,ATL,3,1,13,(:49) (Shotgun) L.Ball right tackle to ATL 9 for 4 yards (D.Franks).,0,20,2012 -20120917_DEN@ATL,2,30,26,DEN,ATL,1,9,9,(:26) P.Manning pass incomplete short left to B.Stokley (D.Robinson).,0,20,2012 -20120917_DEN@ATL,2,30,21,DEN,ATL,2,9,9,(:21) (Shotgun) P.Manning sacked at ATL 17 for -8 yards (V.Walker).,0,20,2012 -20120917_DEN@ATL,2,30,14,DEN,ATL,3,17,17,(:14) (Shotgun) P.Manning pass incomplete deep left to D.Thomas. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) P.Manning pass deep left to D.Thomas for 17 yards TOUCHDOWN.,0,20,2012 -20120917_DEN@ATL,2,30,14,DEN,ATL,,,17,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,20,2012 -20120917_DEN@ATL,2,30,14,DEN,ATL,,,17,M.Prater kicks 53 yards from DEN 35 to ATL 12. Jz. Rodgers to ATL 35 for 23 yards (N.Irving).,7,20,2012 -20120917_DEN@ATL,3,30,0,DEN,ATL,,,17,M.Prater kicks 59 yards from DEN 35 to ATL 6. L.Polite to ATL 30 for 24 yards (C.Gronkowski).,7,20,2012 -20120917_DEN@ATL,3,29,54,ATL,DEN,1,10,70,(14:54) M.Turner right end to ATL 28 for -2 yards (V.Miller).,20,7,2012 -20120917_DEN@ATL,3,29,12,ATL,DEN,2,12,72,(14:12) (Shotgun) M.Ryan pass short left to J.Jones to ATL 33 for 5 yards (T.Carter).,20,7,2012 -20120917_DEN@ATL,3,28,40,ATL,DEN,3,7,67,(13:40) (Shotgun) M.Ryan pass short right to T.Gonzalez ran ob at ATL 42 for 9 yards.,20,7,2012 -20120917_DEN@ATL,3,28,8,ATL,DEN,1,10,58,(13:08) M.Ryan pass short right to T.Gonzalez to DEN 46 for 12 yards (W.Woodyard).,20,7,2012 -20120917_DEN@ATL,3,27,37,ATL,DEN,1,10,46,(12:37) M.Turner right guard to DEN 45 for 1 yard (J.Bannan).,20,7,2012 -20120917_DEN@ATL,3,27,2,ATL,DEN,2,9,45,(12:02) (Shotgun) M.Ryan pass short left to J.Jones to DEN 40 for 5 yards (T.Carter).,20,7,2012 -20120917_DEN@ATL,3,26,30,ATL,DEN,3,4,40,(11:30) (Shotgun) M.Ryan pass incomplete short left to Jz. Rodgers.,20,7,2012 -20120917_DEN@ATL,3,26,23,ATL,DEN,4,4,40,(11:23) M.Bosher punts 27 yards to DEN 13 Center-J.Harris fair catch by J.Leonhard.,20,7,2012 -20120917_DEN@ATL,3,26,14,DEN,ATL,1,10,87,(11:14) P.Manning pass short right to D.Thomas to DEN 14 for 1 yard (A.Samuel).,7,20,2012 -20120917_DEN@ATL,3,25,48,DEN,ATL,2,9,86,(10:48) (Shotgun) P.Manning pass incomplete short left to E.Decker [D.Franks].,7,20,2012 -20120917_DEN@ATL,3,25,44,DEN,ATL,3,9,86,(10:44) (Shotgun) P.Manning pass incomplete short left to B.Stokley [J.Abraham].,7,20,2012 -20120917_DEN@ATL,3,25,38,DEN,ATL,4,9,86,(10:38) B.Colquitt punts 48 yards to ATL 38 Center-A.Brewer. D.Franks to ATL 36 for -2 yards (N.Irving).,7,20,2012 -20120917_DEN@ATL,3,25,25,ATL,DEN,1,10,64,(10:25) M.Ryan pass short left to H.Douglas to ATL 44 for 8 yards (J.Mays).,20,7,2012 -20120917_DEN@ATL,3,24,48,ATL,DEN,2,2,56,(9:48) M.Ryan pass short left to R.White to DEN 35 for 21 yards (J.Mays).,20,7,2012 -20120917_DEN@ATL,3,24,11,ATL,DEN,1,10,35,(9:11) M.Ryan pass deep left to R.White to DEN 15 for 20 yards (R.Moore).,20,7,2012 -20120917_DEN@ATL,3,23,27,ATL,DEN,1,10,15,(8:27) (Shotgun) M.Ryan scrambles right end to DEN 11 for 4 yards (K.Vickerson). PENALTY on DEN-C.Bailey Defensive Holding 5 yards enforced at DEN 11.,20,7,2012 -20120917_DEN@ATL,3,22,50,ATL,DEN,1,6,6,(7:50) M.Turner right tackle to DEN 4 for 2 yards (C.Bailey; K.Brooking).,20,7,2012 -20120917_DEN@ATL,3,22,13,ATL,DEN,2,4,4,(7:13) (Shotgun) M.Ryan pass short left to R.White for 4 yards TOUCHDOWN.,20,7,2012 -20120917_DEN@ATL,3,22,13,ATL,DEN,,,4,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,7,2012 -20120917_DEN@ATL,3,22,13,ATL,DEN,,,4,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,27,7,2012 -20120917_DEN@ATL,3,22,8,DEN,ATL,1,10,80,(7:08) W.McGahee right end to DEN 24 for 4 yards (S.Nicholas).,7,27,2012 -20120917_DEN@ATL,3,21,43,DEN,ATL,2,6,76,(6:43) (Shotgun) P.Manning pass incomplete short left to D.Thomas [S.Nicholas].,7,27,2012 -20120917_DEN@ATL,3,21,38,DEN,ATL,3,6,76,(6:38) (Shotgun) PENALTY on ATL-P.Jerry Encroachment 5 yards enforced at DEN 24 - No Play.,7,27,2012 -20120917_DEN@ATL,3,21,38,DEN,ATL,3,1,71,(6:38) W.McGahee right tackle to DEN 29 for no gain (S.Weatherspoon).,7,27,2012 -20120917_DEN@ATL,3,20,57,DEN,ATL,4,1,71,(5:57) B.Colquitt punts 67 yards to ATL 4 Center-A.Brewer downed by DEN-O.Bolden.,7,27,2012 -20120917_DEN@ATL,3,20,42,ATL,DEN,1,10,96,(5:42) Jz. Rodgers left guard to ATL 6 for 2 yards (W.Woodyard). DEN-J.Mays was injured during the play. His return is Questionable.,27,7,2012 -20120917_DEN@ATL,3,20,2,ATL,DEN,2,8,94,(5:02) M.Ryan pass incomplete short left to T.Gonzalez (T.Porter).,27,7,2012 -20120917_DEN@ATL,3,19,58,ATL,DEN,3,8,94,(4:58) (Shotgun) M.Ryan pass short left to R.White to ATL 21 for 15 yards (T.Porter).,27,7,2012 -20120917_DEN@ATL,3,19,15,ATL,DEN,1,10,79,(4:15) M.Ryan pass incomplete deep left to R.White (T.Carter) [E.Dumervil].,27,7,2012 -20120917_DEN@ATL,3,19,7,ATL,DEN,2,10,79,(4:07) M.Ryan pass short left to R.White to ATL 32 for 11 yards (W.Woodyard).,27,7,2012 -20120917_DEN@ATL,3,18,29,ATL,DEN,1,10,68,(3:29) M.Ryan pass incomplete short left [K.Vickerson].,27,7,2012 -20120917_DEN@ATL,3,18,22,ATL,DEN,2,10,68,(3:22) J.Snelling left end to ATL 34 for 2 yards (E.Dumervil).,27,7,2012 -20120917_DEN@ATL,3,17,46,ATL,DEN,3,8,66,(2:46) (Shotgun) M.Ryan scrambles up the middle to ATL 41 for 7 yards (J.Leonhard).,27,7,2012 -20120917_DEN@ATL,3,16,59,ATL,DEN,4,1,59,(1:59) M.Bosher punts 47 yards to DEN 12 Center-J.Harris. J.Leonhard to DEN 12 for no gain (DJ.Davis).,27,7,2012 -20120917_DEN@ATL,3,16,50,DEN,ATL,1,10,88,(1:50) W.McGahee up the middle to DEN 15 for 3 yards (K.Biermann).,7,27,2012 -20120917_DEN@ATL,3,16,26,DEN,ATL,2,7,85,(1:26) (Shotgun) P.Manning pass deep left to B.Stokley to DEN 31 for 16 yards (T.DeCoud).,7,27,2012 -20120917_DEN@ATL,3,15,51,DEN,ATL,1,10,69,(:51) (No Huddle Shotgun) P.Manning pass short left to W.McGahee to DEN 32 for 1 yard (D.Robinson).,7,27,2012 -20120917_DEN@ATL,3,15,21,DEN,ATL,2,9,68,(:21) (No Huddle Shotgun) P.Manning pass short left to M.Willis to DEN 46 for 14 yards (T.DeCoud).,7,27,2012 -20120917_DEN@ATL,4,15,0,DEN,ATL,1,10,54,(15:00) W.McGahee right guard to ATL 47 for 7 yards (A.Samuel).,7,27,2012 -20120917_DEN@ATL,4,14,33,DEN,ATL,2,3,47,(14:33) (No Huddle Shotgun) P.Manning pass short left to L.Ball pushed ob at ATL 30 for 17 yards (T.DeCoud).,7,27,2012 -20120917_DEN@ATL,4,14,9,DEN,ATL,1,10,30,(14:09) (Shotgun) P.Manning pass incomplete short right to L.Ball (S.Weatherspoon).,7,27,2012 -20120917_DEN@ATL,4,14,4,DEN,ATL,2,10,30,(14:04) (Shotgun) P.Manning pass incomplete short left to J.Dreessen. PENALTY on DEN-M.Ramirez Illegal Use of Hands 10 yards enforced at ATL 30 - No Play.,7,27,2012 -20120917_DEN@ATL,4,14,0,DEN,ATL,2,20,40,(14:00) (Shotgun) P.Manning pass incomplete deep right to D.Thomas. PENALTY on ATL-A.Samuel Defensive Pass Interference 16 yards enforced at ATL 40 - No Play.,7,27,2012 -20120917_DEN@ATL,4,13,53,DEN,ATL,1,10,24,(13:53) (Shotgun) P.Manning pass short right to D.Thomas pushed ob at ATL 12 for 12 yards (A.Samuel).,7,27,2012 -20120917_DEN@ATL,4,13,26,DEN,ATL,1,10,12,(13:26) (Shotgun) W.McGahee right guard to ATL 7 for 5 yards (S.Nicholas; K.Biermann).,7,27,2012 -20120917_DEN@ATL,4,13,1,DEN,ATL,2,5,7,(13:01) (Shotgun) W.McGahee right tackle to ATL 1 for 6 yards (W.Moore; D.Franks).,7,27,2012 -20120917_DEN@ATL,4,12,40,DEN,ATL,1,1,1,(12:40) PENALTY on DEN-D.Thomas False Start 4 yards enforced at ATL 1 - No Play.,7,27,2012 -20120917_DEN@ATL,4,12,38,DEN,ATL,1,5,5,(12:38) (Shotgun) W.McGahee right guard to ATL 2 for 3 yards (W.Moore; S.Weatherspoon).,7,27,2012 -20120917_DEN@ATL,4,11,55,DEN,ATL,2,2,2,(11:55) (No Huddle) W.McGahee left tackle for 2 yards TOUCHDOWN.,7,27,2012 -20120917_DEN@ATL,4,11,55,DEN,ATL,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,27,2012 -20120917_DEN@ATL,4,11,55,DEN,ATL,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,27,2012 -20120917_DEN@ATL,4,11,48,ATL,DEN,1,10,80,(11:48) M.Turner right guard to ATL 21 for 1 yard (J.Mays; K.Brooking).,27,14,2012 -20120917_DEN@ATL,4,11,7,ATL,DEN,2,9,79,(11:07) M.Ryan scrambles right tackle to ATL 25 for 4 yards.,27,14,2012 -20120917_DEN@ATL,4,10,20,ATL,DEN,3,5,75,(10:20) (Shotgun) M.Ryan sacked at ATL 14 for -11 yards (V.Miller).,27,14,2012 -20120917_DEN@ATL,4,9,47,ATL,DEN,4,16,86,(9:47) M.Bosher punts 49 yards to DEN 37 Center-J.Harris. J.Leonhard to DEN 39 for 2 yards (A.Dent; DJ.Davis).,27,14,2012 -20120917_DEN@ATL,4,9,35,DEN,ATL,1,10,61,(9:35) (Shotgun) K.Moreno right tackle to DEN 39 for no gain (S.Nicholas).,14,27,2012 -20120917_DEN@ATL,4,9,18,DEN,ATL,2,10,61,(9:18) (Shotgun) P.Manning pass short left to D.Thomas to ATL 46 for 15 yards (D.Franks).,14,27,2012 -20120917_DEN@ATL,4,8,47,DEN,ATL,1,10,46,(8:47) (Shotgun) P.Manning pass incomplete deep middle to E.Decker.,14,27,2012 -20120917_DEN@ATL,4,8,40,DEN,ATL,2,10,46,(8:40) (Shotgun) P.Manning pass short right to D.Thomas to ATL 42 for 4 yards (D.Franks).,14,27,2012 -20120917_DEN@ATL,4,8,6,DEN,ATL,3,6,42,(8:06) (Shotgun) P.Manning sacked at DEN 45 for -13 yards (W.Moore).,14,27,2012 -20120917_DEN@ATL,4,7,32,DEN,ATL,4,19,55,(7:32) B.Colquitt punts 52 yards to ATL 3 Center-A.Brewer downed by DEN-M.Willis.,14,27,2012 -20120917_DEN@ATL,4,7,22,ATL,DEN,1,10,97,(7:22) M.Turner left guard to ATL 6 for 3 yards (J.Mays).,27,14,2012 -20120917_DEN@ATL,4,6,36,ATL,DEN,2,7,94,(6:36) M.Ryan pass incomplete short right to L.Polite.,27,14,2012 -20120917_DEN@ATL,4,6,30,ATL,DEN,3,7,94,(6:30) (Shotgun) M.Ryan pass incomplete deep left to J.Jones.,27,14,2012 -20120917_DEN@ATL,4,6,25,ATL,DEN,4,7,94,(6:25) M.Bosher punts 48 yards to DEN 46 Center-J.Harris. E.Decker pushed ob at ATL 45 for 9 yards (J.Snelling).,27,14,2012 -20120917_DEN@ATL,4,6,13,DEN,ATL,1,10,45,(6:13) (Shotgun) P.Manning pass deep right to E.Decker to ATL 27 for 18 yards (S.Weatherspoon).,14,27,2012 -20120917_DEN@ATL,4,5,34,DEN,ATL,1,10,27,(5:34) (No Huddle Shotgun) P.Manning sacked at ATL 29 for -2 yards (J.Babineaux).,14,27,2012 -20120917_DEN@ATL,4,5,9,DEN,ATL,2,12,29,(5:09) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to ATL 18 for 11 yards (S.Weatherspoon).,14,27,2012 -20120917_DEN@ATL,4,4,45,DEN,ATL,3,1,18,(4:45) (Shotgun) W.McGahee left guard to ATL 15 for 3 yards (S.Weatherspoon; S.Nicholas).,14,27,2012 -20120917_DEN@ATL,4,4,19,DEN,ATL,1,10,15,(4:19) (Shotgun) P.Manning pass short right to K.Moreno pushed ob at ATL 3 for 12 yards (W.Moore).,14,27,2012 -20120917_DEN@ATL,4,4,10,DEN,ATL,1,3,3,(4:10) (Shotgun) P.Manning pass incomplete short left to E.Decker.,14,27,2012 -20120917_DEN@ATL,4,4,5,DEN,ATL,2,3,3,(4:05) (Shotgun) W.McGahee left guard to ATL 2 for 1 yard (K.Biermann).,14,27,2012 -20120917_DEN@ATL,4,3,34,DEN,ATL,3,2,2,(3:34) (Shotgun) P.Manning pass incomplete short middle to D.Thomas.,14,27,2012 -20120917_DEN@ATL,4,3,29,DEN,ATL,4,2,2,(3:29) W.McGahee right guard for 2 yards TOUCHDOWN.,14,27,2012 -20120917_DEN@ATL,4,3,29,DEN,ATL,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,27,2012 -20120917_DEN@ATL,4,3,29,DEN,ATL,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,21,27,2012 -20120917_DEN@ATL,4,3,25,ATL,DEN,1,10,80,(3:25) M.Turner left guard to ATL 24 for 4 yards (J.Bannan).,27,21,2012 -20120917_DEN@ATL,4,2,40,ATL,DEN,2,6,76,(2:40) M.Turner left tackle to ATL 25 for 1 yard (J.Mays; K.Vickerson).,27,21,2012 -20120917_DEN@ATL,4,2,35,ATL,DEN,3,5,75,(2:35) (Shotgun) M.Ryan pass short right to J.Jones to ATL 31 for 6 yards (R.Moore).,27,21,2012 -20120917_DEN@ATL,4,2,0,ATL,DEN,1,10,69,(2:00) M.Turner left end to ATL 33 for 2 yards (E.Dumervil).,27,21,2012 -20120917_DEN@ATL,4,1,54,ATL,DEN,2,8,67,(1:54) M.Turner right end to ATL 48 for 15 yards (M.Adams).,27,21,2012 -20120917_DEN@ATL,4,0,57,ATL,DEN,1,10,52,(:57) M.Ryan kneels to ATL 47 for -1 yards.,27,21,2012 -20120917_DEN@ATL,4,0,17,ATL,DEN,2,11,53,(:17) M.Ryan kneels to ATL 45 for -2 yards.,27,21,2012 -20120917_DEN@ATL,4,0,17,ATL,DEN,,,53,                      ,27,21,2012 -20120920_NYG@CAR,1,0,0,CAR,NYG,,,53,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 -20120920_NYG@CAR,1,60,0,NYG,CAR,1,10,80,(15:00) E.Manning pass short right to V.Cruz to NYG 32 for 12 yards (C.Godfrey; J.Anderson).,0,0,2012 -20120920_NYG@CAR,1,59,26,NYG,CAR,1,10,68,(14:26) E.Manning pass short right to R.Barden to NYG 40 for 8 yards (L.Kuechly).,0,0,2012 -20120920_NYG@CAR,1,58,47,NYG,CAR,2,2,60,(13:47) A.Brown left end to NYG 47 for 7 yards (J.Norman; L.Kuechly). Penalty on CAR-C.Johnson Defensive Offside declined.,0,0,2012 -20120920_NYG@CAR,1,58,25,NYG,CAR,1,10,53,(13:25) E.Manning pass incomplete short left to A.Brown [D.Edwards].,0,0,2012 -20120920_NYG@CAR,1,58,21,NYG,CAR,2,10,53,(13:21) A.Brown right tackle pushed ob at CAR 22 for 31 yards (H.Nakamura).,0,0,2012 -20120920_NYG@CAR,1,57,52,NYG,CAR,1,10,22,(12:52) A.Brown left guard to CAR 22 for no gain (C.Godfrey).,0,0,2012 -20120920_NYG@CAR,1,57,13,NYG,CAR,2,10,22,(12:13) E.Manning pass short left to H.Hynoski to CAR 14 for 8 yards (J.Anderson).,0,0,2012 -20120920_NYG@CAR,1,56,42,NYG,CAR,3,2,14,(11:42) (Shotgun) E.Manning pass short left to M.Bennett for 14 yards TOUCHDOWN.,0,0,2012 -20120920_NYG@CAR,1,56,42,NYG,CAR,,,14,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20120920_NYG@CAR,1,56,42,NYG,CAR,,,14,L.Tynes kicks 62 yards from NYG 35 to CAR 3. J.Adams to CAR 18 for 15 yards (K.Rivers).,7,0,2012 -20120920_NYG@CAR,1,56,33,CAR,NYG,1,10,82,(11:33) D.Williams left guard to CAR 23 for 5 yards (M.Kiwanuka).,0,7,2012 -20120920_NYG@CAR,1,55,53,CAR,NYG,2,6,77,(10:53) (Shotgun) C.Newton pass incomplete deep left to L.Murphy.,0,7,2012 -20120920_NYG@CAR,1,55,48,CAR,NYG,3,6,77,(10:48) (Shotgun) C.Newton pass incomplete short left to S.Smith. PENALTY on NYG-C.Webster Defensive Pass Interference 3 yards enforced at CAR 23 - No Play.,0,7,2012 -20120920_NYG@CAR,1,55,44,CAR,NYG,1,10,74,(10:44) (Shotgun) C.Newton pass deep left to G.Olsen to CAR 49 for 23 yards (A.Rolle).,0,7,2012 -20120920_NYG@CAR,1,55,17,CAR,NYG,1,10,51,(10:17) (No Huddle Shotgun) C.Newton left end to CAR 49 for no gain. Lateral to D.Williams to NYG 44 for 7 yards (C.Webster).,0,7,2012 -20120920_NYG@CAR,1,54,52,CAR,NYG,2,3,44,(9:52) (No Huddle Shotgun) D.Williams up the middle to NYG 44 for no gain (J.Tuck).,0,7,2012 -20120920_NYG@CAR,1,54,13,CAR,NYG,3,3,44,(9:13) (Shotgun) C.Newton left end to NYG 44 for no gain (J.Pierre-Paul).,0,7,2012 -20120920_NYG@CAR,1,53,36,CAR,NYG,4,3,44,(8:36) B.Nortman punts 44 yards to end zone Center-J.Jansen Touchback.,0,7,2012 -20120920_NYG@CAR,1,53,30,NYG,CAR,1,10,80,(8:30) A.Brown right guard to NYG 36 for 16 yards (J.Norman).,7,0,2012 -20120920_NYG@CAR,1,52,54,NYG,CAR,1,10,64,(7:54) E.Manning pass short right to R.Barden to CAR 43 for 21 yards (L.Kuechly).,7,0,2012 -20120920_NYG@CAR,1,52,9,NYG,CAR,1,10,43,(7:09) A.Brown up the middle to CAR 40 for 3 yards (L.Kuechly).,7,0,2012 -20120920_NYG@CAR,1,51,32,NYG,CAR,2,7,40,(6:32) (Shotgun) E.Manning pass short left to D.Wilson to CAR 37 for 3 yards (J.Norman).,7,0,2012 -20120920_NYG@CAR,1,50,52,NYG,CAR,3,4,37,(5:52) (Shotgun) E.Manning pass short left to V.Cruz to CAR 31 for 6 yards (J.Norman).,7,0,2012 -20120920_NYG@CAR,1,50,13,NYG,CAR,1,10,31,(5:13) E.Manning pass short right to A.Brown to CAR 33 for -2 yards (L.Kuechly).,7,0,2012 -20120920_NYG@CAR,1,49,36,NYG,CAR,2,12,33,(4:36) (Shotgun) E.Manning pass short right to R.Randle to CAR 29 for 4 yards (C.Gamble).,7,0,2012 -20120920_NYG@CAR,1,48,54,NYG,CAR,3,8,29,(3:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz (C.Munnerlyn).,7,0,2012 -20120920_NYG@CAR,1,48,50,NYG,CAR,4,8,29,(3:50) L.Tynes 47 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,0,2012 -20120920_NYG@CAR,1,48,50,NYG,CAR,,,29,L.Tynes kicks 61 yards from NYG 35 to CAR 4. J.Adams to CAR 18 for 14 yards (W.Hill).,10,0,2012 -20120920_NYG@CAR,1,48,40,CAR,NYG,1,10,82,(3:40) (Shotgun) C.Newton pass incomplete short right to G.Olsen (J.Pierre-Paul).,0,10,2012 -20120920_NYG@CAR,1,48,34,CAR,NYG,2,10,82,(3:34) (Shotgun) D.Williams left end to CAR 34 for 16 yards (A.Rolle).,0,10,2012 -20120920_NYG@CAR,1,47,58,CAR,NYG,1,10,66,(2:58) D.Williams left end to CAR 39 for 5 yards (C.Blackburn).,0,10,2012 -20120920_NYG@CAR,1,47,31,CAR,NYG,2,5,61,(2:31) (Shotgun) C.Newton up the middle to CAR 39 for no gain (J.Tuck).,0,10,2012 -20120920_NYG@CAR,1,47,0,CAR,NYG,3,5,61,(2:00) (Shotgun) C.Newton pass incomplete short left to B.LaFell (J.Hosley).,0,10,2012 -20120920_NYG@CAR,1,46,44,CAR,NYG,4,5,61,(1:44) B.Nortman punts 39 yards to NYG 22 Center-J.Jansen. R.Randle to NYG 28 for 6 yards (C.Munnerlyn).,0,10,2012 -20120920_NYG@CAR,1,46,42,NYG,CAR,1,10,72,(1:42) A.Brown left tackle to NYG 29 for 1 yard.,10,0,2012 -20120920_NYG@CAR,1,46,9,NYG,CAR,2,9,71,(1:09) A.Brown up the middle to NYG 48 for 19 yards (H.Nakamura; J.Norman).,10,0,2012 -20120920_NYG@CAR,1,45,25,NYG,CAR,1,10,52,(:25) E.Manning pass short left to H.Hynoski to CAR 45 for 7 yards (J.Norman; J.Anderson).,10,0,2012 -20120920_NYG@CAR,2,45,0,NYG,CAR,2,3,45,(15:00) E.Manning pass deep left to R.Barden to CAR 25 for 20 yards (J.Norman).,10,0,2012 -20120920_NYG@CAR,2,44,27,NYG,CAR,1,10,25,(14:27) A.Brown left guard to CAR 23 for 2 yards (D.Edwards; J.Beason).,10,0,2012 -20120920_NYG@CAR,2,43,50,NYG,CAR,2,8,23,(13:50) (Shotgun) E.Manning pass short left to R.Barden to CAR 9 for 14 yards (C.Gamble).,10,0,2012 -20120920_NYG@CAR,2,43,15,NYG,CAR,1,9,9,(13:15) (Shotgun) A.Brown left tackle to CAR 2 for 7 yards (J.Norman).,10,0,2012 -20120920_NYG@CAR,2,42,48,NYG,CAR,2,2,2,(12:48) A.Brown up the middle to CAR 1 for 1 yard (J.Anderson; J.Beason).,10,0,2012 -20120920_NYG@CAR,2,42,8,NYG,CAR,3,1,1,(12:08) A.Brown left guard for 1 yard TOUCHDOWN.,10,0,2012 -20120920_NYG@CAR,2,42,8,NYG,CAR,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,0,2012 -20120920_NYG@CAR,2,42,8,NYG,CAR,,,1,L.Tynes kicks 70 yards from NYG 35 to CAR -5. J.Adams to CAR 21 for 26 yards (D.Scott).,17,0,2012 -20120920_NYG@CAR,2,41,57,CAR,NYG,1,10,79,(11:57) (Shotgun) C.Newton pass incomplete short right to G.Olsen (J.Pierre-Paul).,0,17,2012 -20120920_NYG@CAR,2,41,54,CAR,NYG,2,10,79,(11:54) (Shotgun) C.Newton pass incomplete short right to M.Tolbert.,0,17,2012 -20120920_NYG@CAR,2,41,49,CAR,NYG,3,10,79,(11:49) (Shotgun) C.Newton pass deep right to B.LaFell to CAR 48 for 27 yards (K.Phillips).,0,17,2012 -20120920_NYG@CAR,2,41,7,CAR,NYG,1,10,52,(11:07) (Shotgun) D.Williams left guard to NYG 45 for 7 yards (K.Phillips; M.Kuhn).,0,17,2012 -20120920_NYG@CAR,2,40,31,CAR,NYG,2,3,45,(10:31) D.Williams up the middle to NYG 45 for no gain (J.Williams).,0,17,2012 -20120920_NYG@CAR,2,39,49,CAR,NYG,3,3,45,(9:49) (Shotgun) C.Newton sacked at CAR 46 for -9 yards (O.Umenyiora).,0,17,2012 -20120920_NYG@CAR,2,39,20,CAR,NYG,4,12,54,(9:20) B.Nortman punts 42 yards to NYG 12 Center-J.Jansen fair catch by R.Randle.,0,17,2012 -20120920_NYG@CAR,2,39,12,NYG,CAR,1,10,88,(9:12) E.Manning pass short left to V.Cruz to NYG 20 for 8 yards (J.Beason).,17,0,2012 -20120920_NYG@CAR,2,38,38,NYG,CAR,2,2,80,(8:38) A.Brown left guard to NYG 23 for 3 yards (L.Kuechly; C.Johnson).,17,0,2012 -20120920_NYG@CAR,2,37,55,NYG,CAR,1,10,77,(7:55) E.Manning pass deep left to R.Barden to NYG 44 for 21 yards (J.Norman).,17,0,2012 -20120920_NYG@CAR,2,37,12,NYG,CAR,1,10,56,(7:12) (Shotgun) E.Manning pass incomplete short middle to B.Pascoe.,17,0,2012 -20120920_NYG@CAR,2,37,6,NYG,CAR,2,10,56,(7:06) A.Brown right guard to NYG 47 for 3 yards (C.Godfrey). PENALTY on NYG-M.Bennett Offensive Holding 10 yards enforced at NYG 44 - No Play.,17,0,2012 -20120920_NYG@CAR,2,36,45,NYG,CAR,2,20,66,(6:45) (Shotgun) E.Manning pass deep right to R.Barden to CAR 43 for 23 yards (H.Nakamura).,17,0,2012 -20120920_NYG@CAR,2,36,1,NYG,CAR,1,10,43,(6:01) (Shotgun) A.Brown up the middle to CAR 38 for 5 yards (C.Munnerlyn; J.Anderson).,17,0,2012 -20120920_NYG@CAR,2,35,15,NYG,CAR,2,5,38,(5:15) (Shotgun) E.Manning pass short right to M.Bennett to CAR 32 for 6 yards (C.Gamble; J.Anderson).,17,0,2012 -20120920_NYG@CAR,2,34,39,NYG,CAR,1,10,32,(4:39) D.Wilson up the middle to CAR 34 for -2 yards (J.Anderson).,17,0,2012 -20120920_NYG@CAR,2,34,1,NYG,CAR,2,12,34,(4:01) (Shotgun) E.Manning pass short left to V.Cruz to CAR 31 for 3 yards (J.Anderson).,17,0,2012 -20120920_NYG@CAR,2,33,19,NYG,CAR,3,9,31,(3:19) (Shotgun) E.Manning pass incomplete short left to R.Randle.,17,0,2012 -20120920_NYG@CAR,2,33,17,NYG,CAR,4,9,31,(3:17) L.Tynes 49 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,0,2012 -20120920_NYG@CAR,2,33,17,NYG,CAR,,,31,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,20,0,2012 -20120920_NYG@CAR,2,33,13,CAR,NYG,1,10,80,(3:13) (Shotgun) C.Newton pass short right to S.Smith to CAR 33 for 13 yards (C.Webster).,0,20,2012 -20120920_NYG@CAR,2,33,13,CAR,NYG,1,10,67,(3:13) (Shotgun) C.Newton pass short left to G.Olsen to NYG 49 for 18 yards (K.Phillips).,0,20,2012 -20120920_NYG@CAR,2,32,15,CAR,NYG,1,10,49,(2:15) (Shotgun) C.Newton pass short right to G.Olsen to NYG 40 for 9 yards (P.Amukamara).,0,20,2012 -20120920_NYG@CAR,2,32,0,CAR,NYG,2,1,40,(2:00) (Shotgun) M.Tolbert right guard to NYG 39 for 1 yard (J.Tuck; J.Williams).,0,20,2012 -20120920_NYG@CAR,2,31,30,CAR,NYG,1,10,39,(1:30) (No Huddle Shotgun) C.Newton pass incomplete short right to G.Olsen.,0,20,2012 -20120920_NYG@CAR,2,31,29,CAR,NYG,2,10,39,(1:29) (Shotgun) PENALTY on CAR-S.Smith False Start 5 yards enforced at NYG 39 - No Play.,0,20,2012 -20120920_NYG@CAR,2,31,29,CAR,NYG,2,15,44,(1:29) (Shotgun) C.Newton pass short right intended for B.LaFell INTERCEPTED by J.Hosley at NYG 39. J.Hosley to NYG 41 for 2 yards (B.LaFell). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) C.Newton pass short right intended for B.LaFell INTERCEPTED by J.Hosley at NYG 41. J.Hosley to NYG 41 for no gain (B.LaFell).,0,20,2012 -20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,43,(1:18) E.Manning scrambles right end to CAR 42 for 1 yard (C.Munnerlyn).,20,0,2012 -20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,59,(1:18) E.Manning pass left to R.Barden to CAR 43 for 16 yards (C.Godfrey).,20,0,2012 -20120920_NYG@CAR,2,31,18,NYG,CAR,1,10,59,(1:18) (Shotgun) E.Manning pass deep left to R.Barden to CAR 43 for 16 yards (C.Godfrey).,20,0,2012 -20120920_NYG@CAR,2,31,2,NYG,CAR,1,10,43,(1:02) (Shotgun) E.Manning scrambles right end ran ob at CAR 42 for 1 yard (F.Alexander).,20,0,2012 -20120920_NYG@CAR,2,30,50,NYG,CAR,2,9,42,(:50) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,20,0,2012 -20120920_NYG@CAR,2,30,48,NYG,CAR,3,9,42,(:48) (Shotgun) E.Manning pass incomplete middle to M.Bennett.,20,0,2012 -20120920_NYG@CAR,2,30,50,NYG,CAR,3,9,42,(:50) S.Weatherford punts 35 yards to CAR 7 downed by NYG-C.Blackburn.,20,0,2012 -20120920_NYG@CAR,2,30,37,CAR,NYG,1,10,92,(:37) (Shotgun) M.Tolbert right guard to CAR 11 for 3 yards (K.Phillips).,0,20,2012 -20120920_NYG@CAR,3,30,0,NYG,CAR,,,92,L.Tynes kicks 68 yards from NYG 35 to CAR -3. J.Adams to CAR 20 for 23 yards (S.Paysinger). FUMBLES (S.Paysinger) RECOVERED by NYG-S.Paysinger at CAR 19. S.Paysinger to CAR 19 for no gain (J.Byers).,20,0,2012 -20120920_NYG@CAR,3,29,52,NYG,CAR,1,10,19,(14:52) A.Brown left guard to CAR 16 for 3 yards (C.Godfrey).,20,0,2012 -20120920_NYG@CAR,3,29,11,NYG,CAR,2,7,16,(14:11) A.Brown right tackle to CAR 16 for no gain (L.Kuechly; C.Johnson).,20,0,2012 -20120920_NYG@CAR,3,29,11,NYG,CAR,3,7,16,(14:11) (Shotgun) E.Manning scrambles right guard to CAR 12 for 4 yards (C.Godfrey).,20,0,2012 -20120920_NYG@CAR,3,29,11,NYG,CAR,4,3,12,(14:11) L.Tynes 30 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,20,0,2012 -20120920_NYG@CAR,3,29,11,NYG,CAR,,,12,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,23,0,2012 -20120920_NYG@CAR,3,27,49,CAR,NYG,1,10,80,(12:49) C.Newton pass short left to M.Tolbert to CAR 34 for 14 yards (J.Hosley; R.Bernard).,0,23,2012 -20120920_NYG@CAR,3,27,7,CAR,NYG,1,10,66,(12:07) C.Newton pass incomplete short right to B.LaFell.,0,23,2012 -20120920_NYG@CAR,3,27,2,CAR,NYG,2,10,66,(12:02) (Shotgun) D.Williams up the middle to CAR 36 for 2 yards (L.Joseph).,0,23,2012 -20120920_NYG@CAR,3,26,26,CAR,NYG,3,8,64,(11:26) (Shotgun) C.Newton pass deep middle to S.Smith to NYG 47 for 17 yards (J.Hosley).,0,23,2012 -20120920_NYG@CAR,3,25,51,CAR,NYG,1,10,47,(10:51) M.Tolbert left tackle to NYG 47 for no gain (J.Pierre-Paul; J.Hosley).,0,23,2012 -20120920_NYG@CAR,3,25,17,CAR,NYG,2,10,47,(10:17) (Shotgun) C.Newton pass short middle to G.Olsen to NYG 31 for 16 yards (M.Boley).,0,23,2012 -20120920_NYG@CAR,3,24,47,CAR,NYG,1,10,31,(9:47) (Shotgun) C.Newton pass short left to L.Murphy to NYG 24 for 7 yards (A.Rolle).,0,23,2012 -20120920_NYG@CAR,3,24,17,CAR,NYG,2,3,24,(9:17) (Shotgun) D.Williams left guard to NYG 22 for 2 yards (A.Rolle).,0,23,2012 -20120920_NYG@CAR,3,23,54,CAR,NYG,3,1,22,(8:54) (Shotgun) C.Newton up the middle to NYG 20 for 2 yards (K.Phillips).,0,23,2012 -20120920_NYG@CAR,3,23,12,CAR,NYG,1,10,20,(8:12) C.Newton pass short left to G.Olsen to NYG 9 for 11 yards (M.Boley).,0,23,2012 -20120920_NYG@CAR,3,22,38,CAR,NYG,1,9,9,(7:38) (Shotgun) D.Williams left guard to NYG 1 for 8 yards (M.Boley).,0,23,2012 -20120920_NYG@CAR,3,22,12,CAR,NYG,2,1,1,(7:12) (Shotgun) C.Newton up the middle to NYG 1 for no gain (L.Joseph).,0,23,2012 -20120920_NYG@CAR,3,21,28,CAR,NYG,3,1,1,(6:28) (Shotgun) C.Newton up the middle for 1 yard TOUCHDOWN.,0,23,2012 -20120920_NYG@CAR,3,21,28,CAR,NYG,,,1,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,23,2012 -20120920_NYG@CAR,3,21,28,CAR,NYG,,,1,J.Medlock kicks 65 yards from CAR 35 to NYG 0. D.Wilson to NYG 19 for 19 yards (K.Onatolu; J.Senn).,7,23,2012 -20120920_NYG@CAR,3,21,19,NYG,CAR,1,10,81,(6:19) E.Manning pass deep middle to M.Bennett to NYG 48 for 29 yards (J.Anderson).,23,7,2012 -20120920_NYG@CAR,3,20,36,NYG,CAR,1,10,52,(5:36) E.Manning pass short right to V.Cruz to CAR 46 for 6 yards (J.Anderson; C.Gamble).,23,7,2012 -20120920_NYG@CAR,3,19,54,NYG,CAR,2,4,46,(4:54) A.Brown up the middle to CAR 44 for 2 yards (R.Edwards).,23,7,2012 -20120920_NYG@CAR,3,19,14,NYG,CAR,3,2,44,(4:14) E.Manning pass short middle to V.Cruz to CAR 37 for 7 yards (J.Anderson).,23,7,2012 -20120920_NYG@CAR,3,18,35,NYG,CAR,1,10,37,(3:35) A.Brown left tackle to CAR 34 for 3 yards (T.Keiser; J.Beason).,23,7,2012 -20120920_NYG@CAR,3,17,56,NYG,CAR,2,7,34,(2:56) (Shotgun) E.Manning pass short middle to M.Bennett to CAR 26 for 8 yards (C.Munnerlyn).,23,7,2012 -20120920_NYG@CAR,3,17,18,NYG,CAR,1,10,26,(2:18) E.Manning pass incomplete short right to A.Brown (L.Kuechly).,23,7,2012 -20120920_NYG@CAR,3,17,12,NYG,CAR,2,10,26,(2:12) (Shotgun) E.Manning sacked at CAR 32 for -6 yards (F.Alexander).,23,7,2012 -20120920_NYG@CAR,3,16,37,NYG,CAR,3,16,32,(1:37) (Shotgun) E.Manning pass short left to A.Brown to CAR 18 for 14 yards (J.Norman).,23,7,2012 -20120920_NYG@CAR,3,15,53,NYG,CAR,4,2,18,(:53) L.Tynes 36 yard field goal is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,23,7,2012 -20120920_NYG@CAR,3,15,53,NYG,CAR,,,18,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,26,7,2012 -20120920_NYG@CAR,3,15,49,CAR,NYG,1,10,80,(:49) C.Newton pass short right to M.Tolbert to CAR 32 for 12 yards (C.Webster).,7,26,2012 -20120920_NYG@CAR,3,15,12,CAR,NYG,1,10,68,(:12) (Shotgun) D.Williams left end to CAR 30 for -2 yards (R.Bernard). PENALTY on NYG-P.Amukamara Unnecessary Roughness 15 yards enforced at CAR 30.,7,26,2012 -20120920_NYG@CAR,4,15,0,CAR,NYG,1,10,55,(15:00) (Shotgun) C.Newton pass short left to G.Olsen to NYG 39 for 16 yards (A.Rolle).,7,26,2012 -20120920_NYG@CAR,4,14,22,CAR,NYG,1,10,39,(14:22) (Shotgun) C.Newton sacked at CAR 49 for -12 yards (sack split by J.Pierre-Paul and M.Boley).,7,26,2012 -20120920_NYG@CAR,4,13,47,CAR,NYG,2,22,51,(13:47) (Shotgun) C.Newton pass incomplete deep middle to L.Murphy (P.Amukamara).,7,26,2012 -20120920_NYG@CAR,4,13,42,CAR,NYG,3,23,51,(13:42) (Shotgun) C.Newton pass deep middle intended for G.Olsen INTERCEPTED by M.Boley at NYG 35. M.Boley to CAR 48 for 17 yards (R.Kalil; K.Pilares).,7,26,2012 -20120920_NYG@CAR,4,13,31,NYG,CAR,1,10,48,(13:31) A.Brown left tackle to CAR 41 for 7 yards (C.Godfrey; L.Kuechly).,26,7,2012 -20120920_NYG@CAR,4,12,45,NYG,CAR,2,3,41,(12:45) E.Manning pass short left to R.Barden to CAR 31 for 10 yards (J.Norman).,26,7,2012 -20120920_NYG@CAR,4,12,5,NYG,CAR,1,10,31,(12:05) (Shotgun) A.Brown left end pushed ob at CAR 30 for 1 yard (J.Anderson).,26,7,2012 -20120920_NYG@CAR,4,11,40,NYG,CAR,2,9,30,(11:40) (Shotgun) E.Manning pass short right to R.Barden to CAR 25 for 5 yards (F.Alexander).,26,7,2012 -20120920_NYG@CAR,4,10,56,NYG,CAR,3,4,25,(10:56) (Shotgun) E.Manning pass short right to M.Bennett to CAR 13 for 12 yards (C.Gamble; C.Godfrey). PENALTY on CAR-C.Godfrey Face Mask (15 Yards) 7 yards enforced at CAR 13.,26,7,2012 -20120920_NYG@CAR,4,10,25,NYG,CAR,1,6,6,(10:25) (Shotgun) E.Manning pass incomplete short left to R.Barden (J.Norman).,26,7,2012 -20120920_NYG@CAR,4,10,20,NYG,CAR,2,6,6,(10:20) (Shotgun) E.Manning pass short right to A.Brown to CAR 1 for 5 yards (C.Godfrey; L.Kuechly).,26,7,2012 -20120920_NYG@CAR,4,9,42,NYG,CAR,3,1,1,(9:42) A.Brown left guard for 1 yard TOUCHDOWN.,26,7,2012 -20120920_NYG@CAR,4,9,42,NYG,CAR,,,1,L.Tynes extra point is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,26,7,2012 -20120920_NYG@CAR,4,9,42,NYG,CAR,,,1,L.Tynes kicks 68 yards from NYG 35 to CAR -3. J.Adams to CAR 25 for 28 yards (D.Scott).,33,7,2012 -20120920_NYG@CAR,4,9,34,CAR,NYG,1,10,75,(9:34) (Shotgun) C.Newton pass short left to S.Smith to NYG 42 for 33 yards (A.Rolle).,7,33,2012 -20120920_NYG@CAR,4,9,3,CAR,NYG,1,10,42,(9:03) (Shotgun) C.Newton scrambles right end pushed ob at NYG 39 for 3 yards (M.Boley).,7,33,2012 -20120920_NYG@CAR,4,8,34,CAR,NYG,2,7,39,(8:34) (Shotgun) C.Newton pass short middle to G.Olsen to NYG 34 for 5 yards (A.Rolle).,7,33,2012 -20120920_NYG@CAR,4,8,4,CAR,NYG,3,2,34,(8:04) (No Huddle Shotgun) C.Newton pass incomplete deep left to S.Smith. PENALTY on NYG-C.Webster Illegal Contact 5 yards enforced at NYG 34 - No Play.,7,33,2012 -20120920_NYG@CAR,4,8,0,CAR,NYG,1,10,29,(8:00) (Shotgun) C.Newton pass short left to M.Tolbert to NYG 25 for 4 yards (C.Webster).,7,33,2012 -20120920_NYG@CAR,4,7,33,CAR,NYG,2,6,25,(7:33) (No Huddle Shotgun) C.Newton pass short left to M.Tolbert to NYG 8 for 17 yards (M.Boley).,7,33,2012 -20120920_NYG@CAR,4,6,53,CAR,NYG,1,8,8,(6:53) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,7,33,2012 -20120920_NYG@CAR,4,6,46,CAR,NYG,2,8,8,(6:46) (Shotgun) C.Newton pass incomplete short left to G.Olsen. NYG-A.Rolle was injured during the play. His return is Doubtful.,7,33,2012 -20120920_NYG@CAR,4,6,40,CAR,NYG,3,8,8,(6:40) (Shotgun) C.Newton pass incomplete short middle to G.Olsen.,7,33,2012 -20120920_NYG@CAR,4,6,36,CAR,NYG,4,8,8,(6:36) (Shotgun) C.Newton pass short middle intended for B.LaFell INTERCEPTED by S.Brown at NYG -1. S.Brown to NYG 43 for 44 yards (K.Pilares).,7,33,2012 -20120920_NYG@CAR,4,6,25,NYG,CAR,1,10,57,(6:25) D.Carr pass short left to M.Bennett to NYG 47 for 4 yards (C.Godfrey).,33,7,2012 -20120920_NYG@CAR,4,5,48,NYG,CAR,2,6,53,(5:48) D.Scott right guard to NYG 46 for -1 yards (L.Kuechly).,33,7,2012 -20120920_NYG@CAR,4,5,10,NYG,CAR,3,7,54,(5:10) (Shotgun) D.Carr sacked at NYG 40 for -6 yards (D.Edwards). FUMBLES (D.Edwards) and recovers at NYG 40. D.Carr to NYG 40 for no gain (D.Edwards). Penalty on NYG-J.Cordle Offensive Holding declined.,33,7,2012 -20120920_NYG@CAR,4,4,39,NYG,CAR,4,13,60,(4:39) S.Weatherford punts 41 yards to CAR 19 Center-Z.DeOssie. J.Adams MUFFS catch RECOVERED by NYG-J.Tryon at CAR 19.,33,7,2012 -20120920_NYG@CAR,4,4,26,NYG,CAR,1,10,19,(4:26) D.Scott right tackle to CAR 15 for 4 yards (J.Anderson).,33,7,2012 -20120920_NYG@CAR,4,3,50,NYG,CAR,2,6,15,(3:50) D.Scott left guard to CAR 10 for 5 yards (H.Nakamura).,33,7,2012 -20120920_NYG@CAR,4,3,8,NYG,CAR,3,1,10,(3:08) D.Scott left guard to CAR 8 for 2 yards (C.Johnson).,33,7,2012 -20120920_NYG@CAR,4,2,30,NYG,CAR,1,8,8,(2:30) D.Carr pass incomplete short left to R.Randle.,33,7,2012 -20120920_NYG@CAR,4,2,25,NYG,CAR,2,8,8,(2:25) D.Scott left guard to CAR 9 for -1 yards (L.Kuechly).,33,7,2012 -20120920_NYG@CAR,4,2,0,NYG,CAR,3,9,9,(2:00) (Shotgun) D.Scott left tackle to CAR 9 for no gain (L.Kuechly; J.Anderson).,33,7,2012 -20120920_NYG@CAR,4,1,13,NYG,CAR,4,9,9,(1:13) L.Tynes 27 yard field goal is GOOD Center-J.Pierre-Paul Holder-S.Weatherford.,33,7,2012 -20120920_NYG@CAR,4,1,13,NYG,CAR,,,9,L.Tynes kicks 64 yards from NYG 35 to CAR 1. A.Edwards to CAR 28 for 27 yards (J.Jernigan). PENALTY on CAR-K.Pilares Offensive Holding 10 yards enforced at CAR 22.,36,7,2012 -20120920_NYG@CAR,4,1,4,CAR,NYG,1,10,88,(1:04) D.Anderson pass short right to S.Smith to CAR 20 for 8 yards (J.Tryon). PENALTY on NYG-J.Tryon Defensive Holding 5 yards enforced at CAR 12 - No Play.,7,36,2012 -20120920_NYG@CAR,4,0,59,CAR,NYG,1,10,83,(:59) (Shotgun) D.Anderson pass short left to S.Smith to CAR 40 for 23 yards (W.Hill).,7,36,2012 -20120920_NYG@CAR,4,0,32,CAR,NYG,1,10,60,(:32) (No Huddle Shotgun) D.Anderson pass short middle to D.Williams to CAR 49 for 9 yards (S.Paysinger).,7,36,2012 -20120920_NYG@CAR,4,0,12,CAR,NYG,2,1,51,(:12) (No Huddle Shotgun) D.Anderson pass short middle to D.Williams to NYG 37 for 14 yards (M.Herzlich).,7,36,2012 -20120920_NYG@CAR,4,0,12,CAR,NYG,,,51,                      ,7,36,2012 -20120923_STL@CHI,1,0,0,STL,CHI,,,51,G.Zuerlein kicks 68 yards from SL 35 to CHI -3. D.Hester to CHI 27 for 30 yards (Q.Mikell).,0,0,2012 -20120923_STL@CHI,1,59,54,CHI,STL,1,10,73,(14:54) M.Bush right tackle to CHI 39 for 12 yards (C.Dahl).,0,0,2012 -20120923_STL@CHI,1,59,20,CHI,STL,1,10,61,(14:20) J.Cutler pass incomplete short right to D.Hester.,0,0,2012 -20120923_STL@CHI,1,59,16,CHI,STL,2,10,61,(14:16) J.Cutler pass short right to B.Marshall pushed ob at CHI 48 for 9 yards (J.Jenkins) [J.Dunbar].,0,0,2012 -20120923_STL@CHI,1,58,39,CHI,STL,3,1,52,(13:39) C.Williams reported in as eligible. M.Bush left tackle to SL 49 for 3 yards (J.Laurinaitis).,0,0,2012 -20120923_STL@CHI,1,58,18,CHI,STL,1,10,49,(13:18) PENALTY on CHI-C.Rachal False Start 5 yards enforced at SL 49 - No Play.,0,0,2012 -20120923_STL@CHI,1,58,5,CHI,STL,1,15,54,(13:05) (Shotgun) J.Cutler pass short middle to K.Davis to SL 46 for 8 yards (J.Laurinaitis).,0,0,2012 -20120923_STL@CHI,1,57,31,CHI,STL,2,7,46,(12:31) M.Bush right tackle to SL 44 for 2 yards (J.Cudjo).,0,0,2012 -20120923_STL@CHI,1,56,55,CHI,STL,3,5,44,(11:55) (Shotgun) J.Cutler pass incomplete short left to E.Bennett (J.Jenkins).,0,0,2012 -20120923_STL@CHI,1,56,51,CHI,STL,4,5,44,(11:51) (Punt formation) A.Podlesh punts 36 yards to SL 8 Center-P.Mannelly fair catch by D.Amendola. PENALTY on CHI-G.Hayes Offensive Holding 10 yards enforced at SL 44 - No Play.,0,0,2012 -20120923_STL@CHI,1,56,35,CHI,STL,4,15,54,(11:35) (Punt formation) A.Podlesh punts 54 yards to end zone Center-P.Mannelly Touchback. PENALTY on SL-J.Dunbar Roughing the Kicker 15 yards enforced at CHI 46 - No Play.,0,0,2012 -20120923_STL@CHI,1,56,32,CHI,STL,1,10,39,(11:32) J.Cutler pass short left to B.Marshall to SL 36 for 3 yards (B.Fletcher).,0,0,2012 -20120923_STL@CHI,1,55,56,CHI,STL,2,7,36,(10:56) J.Cutler pass incomplete deep right to A.Jeffery (C.Finnegan) [C.Long].,0,0,2012 -20120923_STL@CHI,1,55,50,CHI,STL,3,7,36,(10:50) (Shotgun) J.Cutler pass incomplete short left to B.Marshall [R.Quinn].,0,0,2012 -20120923_STL@CHI,1,55,46,CHI,STL,4,7,36,(10:46) (Field Goal formation) R.Gould 54 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20120923_STL@CHI,1,55,46,CHI,STL,,,36,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,3,0,2012 -20120923_STL@CHI,1,55,41,STL,CHI,1,10,80,(10:41) S.Bradford pass short left to B.Gibson to SL 28 for 8 yards (T.Jennings).,0,3,2012 -20120923_STL@CHI,1,55,8,STL,CHI,2,2,72,(10:08) S.Bradford scrambles right end pushed ob at SL 32 for 4 yards (C.Tillman).,0,3,2012 -20120923_STL@CHI,1,54,42,STL,CHI,1,10,68,(9:42) S.Jackson left guard to SL 36 for 4 yards (H.Melton).,0,3,2012 -20120923_STL@CHI,1,53,55,STL,CHI,2,6,64,(8:55) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 41 for 5 yards (B.Urlacher).,0,3,2012 -20120923_STL@CHI,1,53,16,STL,CHI,3,1,59,(8:16) S.Jackson left end to SL 43 for 2 yards (J.Peppers).,0,3,2012 -20120923_STL@CHI,1,52,39,STL,CHI,1,10,57,(7:39) S.Jackson left end to SL 41 for -2 yards (A.Okoye).,0,3,2012 -20120923_STL@CHI,1,51,54,STL,CHI,2,12,59,(6:54) (Shotgun) PENALTY on CHI-S.Paea Neutral Zone Infraction 5 yards enforced at SL 41 - No Play.,0,3,2012 -20120923_STL@CHI,1,51,34,STL,CHI,2,7,54,(6:34) (Shotgun) S.Bradford pass short right to L.Kendricks to CHI 49 for 5 yards (L.Briggs).,0,3,2012 -20120923_STL@CHI,1,50,54,STL,CHI,3,2,49,(5:54) S.Bradford sacked at SL 38 for -13 yards (A.Okoye).,0,3,2012 -20120923_STL@CHI,1,50,36,STL,CHI,4,15,62,(5:36) (Punt formation) J.Hekker punts 41 yards to CHI 21 Center-J.McQuaide. D.Hester to CHI 35 for 14 yards (L.Kendricks).,0,3,2012 -20120923_STL@CHI,1,50,23,CHI,STL,1,10,65,(5:23) PENALTY on CHI-L.Louis False Start 5 yards enforced at CHI 35 - No Play.,3,0,2012 -20120923_STL@CHI,1,50,23,CHI,STL,1,15,70,(5:23) J.Cutler pass incomplete short left to K.Davis.,3,0,2012 -20120923_STL@CHI,1,50,17,CHI,STL,2,15,70,(5:17) (Shotgun) J.Cutler sacked at CHI 28 for -2 yards (C.Long).,3,0,2012 -20120923_STL@CHI,1,49,56,CHI,STL,3,17,72,(4:56) (Shotgun) J.Cutler pass short right to M.Bush to CHI 46 for 18 yards (B.Fletcher).,3,0,2012 -20120923_STL@CHI,1,49,14,CHI,STL,1,10,54,(4:14) J.Cutler pass incomplete deep right to A.Jeffery (C.Finnegan).,3,0,2012 -20120923_STL@CHI,1,49,9,CHI,STL,2,10,54,(4:09) M.Bush left guard to SL 41 for 13 yards (C.Dahl).,3,0,2012 -20120923_STL@CHI,1,48,33,CHI,STL,1,10,41,(3:33) D.Hester left end pushed ob at SL 33 for 8 yards (C.Finnegan).,3,0,2012 -20120923_STL@CHI,1,48,15,CHI,STL,2,2,33,(3:15) M.Bush right guard to SL 32 for 1 yard (Q.Mikell).,3,0,2012 -20120923_STL@CHI,1,47,33,CHI,STL,3,1,32,(2:33) C.Williams reported in as eligible. M.Bush left guard to SL 32 for no gain (J.Cudjo).,3,0,2012 -20120923_STL@CHI,1,46,48,CHI,STL,4,1,32,(1:48) M.Bush right tackle to SL 30 for 2 yards (J.Laurinaitis).,3,0,2012 -20120923_STL@CHI,1,46,6,CHI,STL,1,10,30,(1:06) K.Bell left end to SL 30 for no gain (E.Sims; J.Dunbar).,3,0,2012 -20120923_STL@CHI,1,45,27,CHI,STL,2,10,30,(:27) (Shotgun) J.Cutler pass short left intended for B.Marshall INTERCEPTED by C.Finnegan at SL 22. C.Finnegan to CHI 45 for 33 yards (J.Cutler). FUMBLES (J.Cutler) RECOVERED by CHI-D.Hester at CHI 43. D.Hester to SL 26 for 31 yards (J.Laurinaitis). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Cutler pass short left intended for B.Marshall INTERCEPTED by C.Finnegan at SL 22. C.Finnegan to CHI 46 for 32 yards (J.Cutler).,3,0,2012 -20120923_STL@CHI,1,45,16,STL,CHI,1,10,46,(:16) S.Bradford pass incomplete short right to C.Givens.,0,3,2012 -20120923_STL@CHI,1,45,10,STL,CHI,2,10,46,(:10) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson.,0,3,2012 -20120923_STL@CHI,1,45,4,STL,CHI,3,10,46,(:04) (Shotgun) S.Bradford sacked at SL 44 for -10 yards (S.Paea).,0,3,2012 -20120923_STL@CHI,2,45,0,STL,CHI,4,20,56,(15:00) (Punt formation) J.Hekker punts 56 yards to end zone Center-J.McQuaide Touchback.,0,3,2012 -20120923_STL@CHI,2,44,51,CHI,STL,1,10,80,(14:51) M.Bush left end to CHI 21 for 1 yard (J.Dunbar).,3,0,2012 -20120923_STL@CHI,2,44,14,CHI,STL,2,9,79,(14:14) (Shotgun) M.Bush left tackle to CHI 33 for 12 yards (Q.Mikell).,3,0,2012 -20120923_STL@CHI,2,43,28,CHI,STL,1,10,67,(13:28) M.Bush left guard to CHI 29 for -4 yards (K.Heard).,3,0,2012 -20120923_STL@CHI,2,42,49,CHI,STL,2,14,71,(12:49) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall.,3,0,2012 -20120923_STL@CHI,2,42,45,CHI,STL,3,14,71,(12:45) (Shotgun) J.Cutler pass short middle to E.Bennett to CHI 40 for 11 yards (J.Laurinaitis).,3,0,2012 -20120923_STL@CHI,2,42,10,CHI,STL,4,3,60,(12:10) (Punt formation) A.Podlesh punts 46 yards to SL 14 Center-P.Mannelly. D.Amendola to SL 17 for 3 yards (C.Steltz).,3,0,2012 -20120923_STL@CHI,2,41,59,STL,CHI,1,10,83,(11:59) D.Richardson left end to SL 29 for 12 yards (M.Wright).,0,3,2012 -20120923_STL@CHI,2,41,19,STL,CHI,1,10,71,(11:19) D.Richardson right tackle to SL 30 for 1 yard (H.Melton).,0,3,2012 -20120923_STL@CHI,2,40,39,STL,CHI,2,9,70,(10:39) S.Bradford sacked at SL 25 for -5 yards (I.Idonije).,0,3,2012 -20120923_STL@CHI,2,39,44,STL,CHI,3,14,75,(9:44) (Shotgun) S.Bradford pass short right to D.Richardson to SL 29 for 4 yards (L.Briggs).,0,3,2012 -20120923_STL@CHI,2,39,4,STL,CHI,4,10,71,(9:04) (Punt formation) J.Hekker punts 52 yards to CHI 19 Center-J.McQuaide out of bounds.,0,3,2012 -20120923_STL@CHI,2,38,57,CHI,STL,1,10,81,(8:57) J.Cutler pass incomplete short left to E.Bennett.,3,0,2012 -20120923_STL@CHI,2,38,54,CHI,STL,2,10,81,(8:54) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 29 for 10 yards (J.Jenkins).,3,0,2012 -20120923_STL@CHI,2,38,9,CHI,STL,1,10,71,(8:09) K.Bell left tackle to CHI 29 for no gain (R.McIntosh).,3,0,2012 -20120923_STL@CHI,2,37,28,CHI,STL,2,10,71,(7:28) (Shotgun) J.Cutler pass short left to K.Bell to CHI 40 for 11 yards (J.Jenkins).,3,0,2012 -20120923_STL@CHI,2,36,49,CHI,STL,1,10,60,(6:49) PENALTY on CHI-C.Rachal False Start 5 yards enforced at CHI 40 - No Play.,3,0,2012 -20120923_STL@CHI,2,36,31,CHI,STL,1,15,65,(6:31) K.Bell left tackle pushed ob at SL 47 for 18 yards (C.Dahl).,3,0,2012 -20120923_STL@CHI,2,36,13,CHI,STL,1,10,47,(6:13) M.Bush left guard to SL 45 for 2 yards (J.Cudjo).,3,0,2012 -20120923_STL@CHI,2,35,37,CHI,STL,2,8,45,(5:37) (Shotgun) J.Cutler pass short left to M.Bush to SL 45 for no gain (J.Jenkins).,3,0,2012 -20120923_STL@CHI,2,34,58,CHI,STL,3,8,45,(4:58) (Shotgun) J.Cutler pass incomplete short right to B.Marshall [D.Stewart]. PENALTY on SL-D.Stewart Roughing the Passer 15 yards enforced at SL 45 - No Play.,3,0,2012 -20120923_STL@CHI,2,34,54,CHI,STL,1,10,30,(4:54) J.Cutler pass short middle to B.Marshall to SL 17 for 13 yards (J.Dunbar).,3,0,2012 -20120923_STL@CHI,2,34,14,CHI,STL,1,10,17,(4:14) C.Williams and C.Spencer reported in as eligible. M.Bush right guard to SL 19 for -2 yards (W.Hayes).,3,0,2012 -20120923_STL@CHI,2,33,28,CHI,STL,2,12,19,(3:28) M.Bush right end to SL 15 for 4 yards (J.Laurinaitis).,3,0,2012 -20120923_STL@CHI,2,32,47,CHI,STL,3,8,15,(2:47) (Shotgun) J.Cutler pass short middle to B.Marshall to SL 3 for 12 yards (B.Fletcher).,3,0,2012 -20120923_STL@CHI,2,32,0,CHI,STL,1,3,3,(2:00) M.Bush right end for 3 yards TOUCHDOWN.,3,0,2012 -20120923_STL@CHI,2,32,0,CHI,STL,,,3,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,0,2012 -20120923_STL@CHI,2,32,0,CHI,STL,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,10,0,2012 -20120923_STL@CHI,2,31,56,STL,CHI,1,10,80,(1:56) (Shotgun) S.Bradford pass short left to S.Jackson to SL 25 for 5 yards (C.Tillman) [A.Okoye].,0,10,2012 -20120923_STL@CHI,2,31,32,STL,CHI,2,5,75,(1:32) (No Huddle Shotgun) S.Bradford pass short right to S.Smith to SL 40 for 15 yards (T.Jennings).,0,10,2012 -20120923_STL@CHI,2,31,11,STL,CHI,1,10,60,(1:11) (No Huddle Shotgun) S.Bradford pass incomplete short right to L.Kendricks (L.Briggs).,0,10,2012 -20120923_STL@CHI,2,31,7,STL,CHI,2,10,60,(1:07) (Shotgun) S.Bradford scrambles right end pushed ob at 50 for 10 yards (C.Tillman).,0,10,2012 -20120923_STL@CHI,2,31,1,STL,CHI,1,10,50,(1:01) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,0,10,2012 -20120923_STL@CHI,2,30,56,STL,CHI,2,10,50,(:56) (Shotgun) S.Jackson right guard to CHI 47 for 3 yards (I.Idonije).,0,10,2012 -20120923_STL@CHI,2,30,51,STL,CHI,3,7,47,(:51) (Shotgun) S.Bradford pass short middle to D.Amendola to CHI 37 for 10 yards (L.Briggs).,0,10,2012 -20120923_STL@CHI,2,30,37,STL,CHI,1,10,37,(:37) S.Bradford spiked the ball to stop the clock.,0,10,2012 -20120923_STL@CHI,2,30,36,STL,CHI,2,10,37,(:36) (Shotgun) S.Bradford pass incomplete short right to S.Smith.,0,10,2012 -20120923_STL@CHI,2,30,32,STL,CHI,3,10,37,(:32) (Shotgun) S.Bradford pass incomplete short right to B.Gibson.,0,10,2012 -20120923_STL@CHI,2,30,27,STL,CHI,4,10,37,(:27) (Field Goal formation) G.Zuerlein 56 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,10,2012 -20120923_STL@CHI,2,30,27,STL,CHI,,,37,G.Zuerlein kicks 69 yards from SL 35 to CHI -4. D.Hester to CHI 33 for 37 yards (Q.Mikell).,3,10,2012 -20120923_STL@CHI,2,30,16,CHI,STL,1,10,67,(:16) A.Allen right guard to CHI 35 for 2 yards (J.Laurinaitis).,10,3,2012 -20120923_STL@CHI,3,30,0,CHI,STL,,,67,R.Gould kicks 71 yards from CHI 35 to SL -6. I.Pead to SL 18 for 24 yards (J.Thomas).,10,3,2012 -20120923_STL@CHI,3,29,56,STL,CHI,1,10,82,(14:56) S.Bradford pass incomplete short left to D.Amendola.,3,10,2012 -20120923_STL@CHI,3,29,52,STL,CHI,2,10,82,(14:52) (Shotgun) S.Bradford pass deep middle to D.Amendola to SL 48 for 30 yards (C.Conte).,3,10,2012 -20120923_STL@CHI,3,29,24,STL,CHI,1,10,52,(14:24) S.Jackson left guard to CHI 49 for 3 yards (I.Idonije).,3,10,2012 -20120923_STL@CHI,3,28,35,STL,CHI,2,7,49,(13:35) PENALTY on SL-L.Kendricks False Start 5 yards enforced at CHI 49 - No Play.,3,10,2012 -20120923_STL@CHI,3,28,10,STL,CHI,2,12,54,(13:10) T.Nsekhe reported in as eligible. S.Bradford pass short left to B.Gibson to CHI 43 for 11 yards (C.Tillman).,3,10,2012 -20120923_STL@CHI,3,27,30,STL,CHI,3,1,43,(12:30) S.Bradford pass incomplete short right to C.Givens.,3,10,2012 -20120923_STL@CHI,3,27,25,STL,CHI,4,1,43,(12:25) S.Bradford pass incomplete short left to B.Gibson (T.Jennings).,3,10,2012 -20120923_STL@CHI,3,27,23,CHI,STL,1,10,57,(12:23) J.Cutler pass incomplete short left to B.Marshall.,10,3,2012 -20120923_STL@CHI,3,27,18,CHI,STL,2,10,57,(12:18) M.Bush right guard to CHI 45 for 2 yards (R.McIntosh; J.Dunbar).,10,3,2012 -20120923_STL@CHI,3,26,32,CHI,STL,3,8,55,(11:32) (Shotgun) J.Cutler sacked at CHI 35 for -10 yards (C.Long).,10,3,2012 -20120923_STL@CHI,3,26,14,CHI,STL,4,18,65,(11:14) (Punt formation) A.Podlesh punts 32 yards to SL 33 Center-P.Mannelly out of bounds.,10,3,2012 -20120923_STL@CHI,3,26,9,STL,CHI,1,10,67,(11:09) S.Jackson left tackle to SL 36 for 3 yards (S.Paea; B.Urlacher).,3,10,2012 -20120923_STL@CHI,3,25,38,STL,CHI,2,7,64,(10:38) S.Jackson right tackle to SL 35 for -1 yards (B.Urlacher).,3,10,2012 -20120923_STL@CHI,3,24,53,STL,CHI,3,8,65,(9:53) (Shotgun) S.Bradford pass short right to C.Givens to SL 44 for 9 yards (M.Wright).,3,10,2012 -20120923_STL@CHI,3,24,19,STL,CHI,1,10,56,(9:19) (No Huddle) S.Jackson left end to CHI 43 for 13 yards (C.Conte).,3,10,2012 -20120923_STL@CHI,3,23,40,STL,CHI,1,10,43,(8:40) (No Huddle) S.Jackson right end to CHI 41 for 2 yards (B.Urlacher).,3,10,2012 -20120923_STL@CHI,3,22,58,STL,CHI,2,8,41,(7:58) S.Bradford pass short right to M.Mulligan to CHI 29 for 12 yards (C.Conte).,3,10,2012 -20120923_STL@CHI,3,22,12,STL,CHI,1,10,29,(7:12) (No Huddle) S.Bradford pass incomplete short left to D.Amendola.,3,10,2012 -20120923_STL@CHI,3,22,9,STL,CHI,2,10,29,(7:09) (Shotgun) S.Bradford pass short right to D.Amendola to CHI 28 for 1 yard (D.Moore).,3,10,2012 -20120923_STL@CHI,3,21,24,STL,CHI,3,9,28,(6:24) (No Huddle Shotgun) S.Bradford pass incomplete short middle to L.Kendricks (B.Urlacher).,3,10,2012 -20120923_STL@CHI,3,21,19,STL,CHI,4,9,28,(6:19) (Field Goal formation) G.Zuerlein 46 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,10,2012 -20120923_STL@CHI,3,21,19,STL,CHI,,,28,G.Zuerlein kicks 60 yards from SL 35 to CHI 5. D.Hester to CHI 23 for 18 yards (J.Hull; R.McLeod).,6,10,2012 -20120923_STL@CHI,3,21,8,CHI,STL,1,10,77,(6:08) M.Bush right guard to CHI 24 for 1 yard (R.McIntosh).,10,6,2012 -20120923_STL@CHI,3,20,27,CHI,STL,2,9,76,(5:27) M.Bush left end to CHI 25 for 1 yard (W.Hayes).,10,6,2012 -20120923_STL@CHI,3,19,46,CHI,STL,3,8,75,(4:46) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,10,6,2012 -20120923_STL@CHI,3,19,41,CHI,STL,4,8,75,(4:41) (Punt formation) A.Podlesh punts 55 yards to SL 20 Center-P.Mannelly. D.Amendola to SL 37 for 17 yards (C.Steltz; P.Mannelly).,10,6,2012 -20120923_STL@CHI,3,19,27,STL,CHI,1,10,63,(4:27) S.Bradford sacked at SL 28 for -9 yards (N.Roach).,6,10,2012 -20120923_STL@CHI,3,18,54,STL,CHI,2,19,72,(3:54) (Shotgun) PENALTY on SL-D.Amendola False Start 5 yards enforced at SL 28 - No Play.,6,10,2012 -20120923_STL@CHI,3,18,27,STL,CHI,2,24,77,(3:27) (Shotgun) S.Bradford pass short right to C.Givens to SL 23 for no gain (D.Moore).,6,10,2012 -20120923_STL@CHI,3,17,42,STL,CHI,3,24,77,(2:42) (Shotgun) D.Richardson right tackle to SL 27 for 4 yards (L.Briggs). PENALTY on CHI-J.Peppers Personal Foul 15 yards enforced at SL 27.,6,10,2012 -20120923_STL@CHI,3,17,17,STL,CHI,1,10,58,(2:17) S.Jackson left end to SL 45 for 3 yards (L.Briggs).,6,10,2012 -20120923_STL@CHI,3,16,42,STL,CHI,2,7,55,(1:42) D.Richardson left end to SL 44 for -1 yards (L.Briggs).,6,10,2012 -20120923_STL@CHI,3,15,56,STL,CHI,3,8,56,(:56) (Shotgun) S.Bradford sacked at SL 37 for -7 yards (sack split by J.Peppers and I.Idonije).,6,10,2012 -20120923_STL@CHI,3,15,36,STL,CHI,4,15,63,(:36) (Punt formation) J.Hekker punts 38 yards to CHI 25 Center-J.McQuaide out of bounds.,6,10,2012 -20120923_STL@CHI,3,15,29,CHI,STL,1,10,75,(:29) J.Cutler pass short right to A.Jeffery to CHI 35 for 10 yards (J.Dunbar).,10,6,2012 -20120923_STL@CHI,4,15,0,CHI,STL,1,10,65,(15:00) J.Cutler pass short left to A.Jeffery to CHI 45 for 10 yards (J.Jenkins; Q.Mikell).,10,6,2012 -20120923_STL@CHI,4,14,26,CHI,STL,1,10,55,(14:26) K.Bell right guard to CHI 45 for no gain (Q.Mikell).,10,6,2012 -20120923_STL@CHI,4,13,45,CHI,STL,2,10,55,(13:45) (Shotgun) J.Cutler pass incomplete short middle to E.Bennett.,10,6,2012 -20120923_STL@CHI,4,13,42,CHI,STL,3,10,55,(13:42) (Shotgun) J.Cutler pass short left to K.Davis to SL 43 for 12 yards (J.Laurinaitis).,10,6,2012 -20120923_STL@CHI,4,13,9,CHI,STL,1,10,43,(13:09) J.Cutler pass short right to A.Jeffery to SL 35 for 8 yards (C.Finnegan; Q.Mikell).,10,6,2012 -20120923_STL@CHI,4,12,26,CHI,STL,2,2,35,(12:26) J.Cutler pass short right to K.Adams pushed ob at SL 28 for 7 yards (R.McIntosh).,10,6,2012 -20120923_STL@CHI,4,12,6,CHI,STL,1,10,28,(12:06) K.Bell right tackle to SL 27 for 1 yard (J.Laurinaitis).,10,6,2012 -20120923_STL@CHI,4,11,22,CHI,STL,2,9,27,(11:22) J.Cutler scrambles right guard to SL 6 for 21 yards (C.Dahl).,10,6,2012 -20120923_STL@CHI,4,10,40,CHI,STL,1,6,6,(10:40) M.Bush left guard to SL 4 for 2 yards (Q.Mikell).,10,6,2012 -20120923_STL@CHI,4,9,58,CHI,STL,2,4,4,(9:58) J.Cutler pass incomplete short right to D.Hester.,10,6,2012 -20120923_STL@CHI,4,9,54,CHI,STL,3,4,4,(9:54) (Shotgun) J.Cutler pass incomplete short left to B.Marshall (B.Fletcher) [W.Hayes].,10,6,2012 -20120923_STL@CHI,4,9,49,CHI,STL,4,4,4,(9:49) (Field Goal formation) R.Gould 22 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,6,2012 -20120923_STL@CHI,4,9,49,CHI,STL,,,4,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,13,6,2012 -20120923_STL@CHI,4,9,45,STL,CHI,1,10,80,(9:45) S.Bradford pass incomplete short left to L.Kendricks.,6,13,2012 -20120923_STL@CHI,4,9,41,STL,CHI,2,10,80,(9:41) (Shotgun) S.Bradford pass short right to D.Amendola to SL 39 for 19 yards (D.Moore). Penalty on CHI-C.Wootton Defensive Offside declined.,6,13,2012 -20120923_STL@CHI,4,9,22,STL,CHI,1,10,61,(9:22) S.Bradford pass incomplete short middle to L.Kendricks [I.Idonije].,6,13,2012 -20120923_STL@CHI,4,9,17,STL,CHI,2,10,61,(9:17) S.Bradford pass short left intended for D.Amendola INTERCEPTED by M.Wright (T.Jennings) at SL 45. M.Wright for 45 yards TOUCHDOWN.,6,13,2012 -20120923_STL@CHI,4,9,17,CHI,STL,,,61,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,13,6,2012 -20120923_STL@CHI,4,9,17,CHI,STL,,,61,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,20,6,2012 -20120923_STL@CHI,4,9,6,STL,CHI,1,10,80,(9:06) S.Bradford pass short left to S.Jackson to SL 20 for no gain (A.Okoye).,6,20,2012 -20120923_STL@CHI,4,8,26,STL,CHI,2,10,80,(8:26) (No Huddle Shotgun) S.Bradford pass short right to L.Kendricks to SL 28 for 8 yards (N.Roach).,6,20,2012 -20120923_STL@CHI,4,7,50,STL,CHI,3,2,72,(7:50) (No Huddle) S.Jackson left tackle to SL 27 for -1 yards (J.Peppers).,6,20,2012 -20120923_STL@CHI,4,7,9,STL,CHI,4,3,73,(7:09) (Punt formation) J.Hekker punts 40 yards to CHI 33 Center-J.McQuaide. D.Hester to SL 48 for 19 yards (L.Kendricks).,6,20,2012 -20120923_STL@CHI,4,6,57,CHI,STL,1,10,48,(6:57) J.Cutler pass short left to A.Jeffery to SL 41 for 7 yards (J.Jenkins).,20,6,2012 -20120923_STL@CHI,4,6,11,CHI,STL,2,3,41,(6:11) K.Bell right guard to SL 39 for 2 yards (W.Hayes).,20,6,2012 -20120923_STL@CHI,4,5,25,CHI,STL,3,1,39,(5:25) C.Williams reported in as eligible. K.Bell left tackle to SL 40 for -1 yards (J.Laurinaitis).,20,6,2012 -20120923_STL@CHI,4,5,20,CHI,STL,4,2,40,(5:20) (Punt formation) A.Podlesh punts 32 yards to SL 8 Center-P.Mannelly fair catch by D.Amendola.,20,6,2012 -20120923_STL@CHI,4,5,13,STL,CHI,1,10,92,(5:13) (Shotgun) S.Bradford pass incomplete short middle to S.Smith (L.Briggs).,6,20,2012 -20120923_STL@CHI,4,5,8,STL,CHI,2,10,92,(5:08) (Shotgun) S.Bradford pass short left to D.Amendola to SL 14 for 6 yards (D.Moore).,6,20,2012 -20120923_STL@CHI,4,4,40,STL,CHI,3,4,86,(4:40) (No Huddle Shotgun) S.Bradford sacked at SL 7 for -7 yards (I.Idonije).,6,20,2012 -20120923_STL@CHI,4,4,21,STL,CHI,4,11,93,(4:21) (Punt formation) J.Hekker punts 52 yards to CHI 41 Center-J.McQuaide. D.Hester ran ob at CHI 47 for 6 yards (Team).,6,20,2012 -20120923_STL@CHI,4,4,11,CHI,STL,1,10,53,(4:11) J.Cutler pass deep right to B.Marshall to SL 19 for 34 yards (C.Finnegan).,20,6,2012 -20120923_STL@CHI,4,3,22,CHI,STL,1,10,19,(3:22) K.Bell right guard to SL 23 for -4 yards (J.Dunbar; K.Heard).,20,6,2012 -20120923_STL@CHI,4,3,14,CHI,STL,2,14,23,(3:14) K.Bell right tackle to SL 21 for 2 yards (J.Laurinaitis).,20,6,2012 -20120923_STL@CHI,4,3,9,CHI,STL,3,12,21,(3:09) K.Bell left tackle to SL 19 for 2 yards (J.Laurinaitis).,20,6,2012 -20120923_STL@CHI,4,2,23,CHI,STL,4,10,19,(2:23) (Field Goal formation) R.Gould 37 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,20,6,2012 -20120923_STL@CHI,4,2,23,CHI,STL,,,19,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,23,6,2012 -20120923_STL@CHI,4,2,18,STL,CHI,1,10,80,(2:18) (Shotgun) S.Bradford pass short middle to I.Pead to SL 24 for 4 yards (L.Briggs).,6,23,2012 -20120923_STL@CHI,4,2,0,STL,CHI,2,6,76,(2:00) (Shotgun) S.Bradford pass deep left intended for B.Gibson INTERCEPTED by T.Jennings at SL 48. T.Jennings to CHI 41 for -11 yards (D.Amendola).,6,23,2012 -20120923_STL@CHI,4,1,53,CHI,STL,1,10,59,(1:53) J.Cutler kneels to CHI 40 for -1 yards.,23,6,2012 -20120923_STL@CHI,4,1,10,CHI,STL,2,11,60,(1:10) J.Cutler kneels to CHI 39 for -1 yards.,23,6,2012 -20120923_STL@CHI,4,0,36,CHI,STL,3,12,61,(:36) J.Cutler kneels to CHI 38 for -1 yards.,23,6,2012 -20120923_STL@CHI,4,0,36,CHI,STL,,,61,                      ,23,6,2012 -20120923_BUF@CLE,1,0,0,BUF,CLE,,,61,J.Potter kicks 73 yards from BUF 35 to CLV -8. J.Cribbs to CLV 26 for 34 yards (D.Howell).,0,0,2012 -20120923_BUF@CLE,1,59,55,CLE,BUF,1,10,74,(14:55) (Shotgun) B.Weeden pass to B.Watson to CLV 32 for 6 yards. FUMBLES recovered by CLV-M.Massaquoi at CLV 28. M.Massaquoi to CLV 28 for no gain (M.Williams).,0,0,2012 -20120923_BUF@CLE,1,59,0,CLE,BUF,2,8,72,(14:00) T.Richardson to CLV 26 for -2 yards (A.Moats).,0,0,2012 -20120923_BUF@CLE,1,58,39,CLE,BUF,3,10,74,(13:39) (Shotgun) B.Weeden pass incomplete to J.Gordon.,0,0,2012 -20120923_BUF@CLE,1,58,32,CLE,BUF,4,10,74,(13:32) R.Hodges punts 52 yards to BUF 22 Center-C.Yount. L.McKelvin to BUF 42 for 20 yards (T.Gipson).,0,0,2012 -20120923_BUF@CLE,1,58,25,BUF,CLE,1,10,58,(13:25) (Shotgun) C.Spiller right guard to BUF 43 for 1 yard (U.Young).,0,0,2012 -20120923_BUF@CLE,1,57,48,BUF,CLE,2,9,57,(12:48) (Shotgun) R.Fitzpatrick pass deep left to D.Jones to CLV 40 for 17 yards (U.Young).,0,0,2012 -20120923_BUF@CLE,1,57,6,BUF,CLE,1,10,40,(12:06) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Jones (A.Rubin).,0,0,2012 -20120923_BUF@CLE,1,57,6,BUF,CLE,2,10,40,(12:06) PENALTY on BUF-C.Glenn False Start 5 yards enforced at CLV 40 - No Play.,0,0,2012 -20120923_BUF@CLE,1,56,46,BUF,CLE,2,15,45,(11:46) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 38 for 7 yards (S.Brown).,0,0,2012 -20120923_BUF@CLE,1,56,5,BUF,CLE,3,8,38,(11:05) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 20 for 18 yards (S.Brown).,0,0,2012 -20120923_BUF@CLE,1,55,34,BUF,CLE,1,10,20,(10:34) (Shotgun) C.Spiller left tackle to CLV 18 for 2 yards (T.Ward).,0,0,2012 -20120923_BUF@CLE,1,54,51,BUF,CLE,2,8,18,(9:51) R.Fitzpatrick pass short right to D.Jones to CLV 9 for 9 yards (U.Young).,0,0,2012 -20120923_BUF@CLE,1,54,8,BUF,CLE,1,9,9,(9:08) (Shotgun) R.Fitzpatrick pass short middle to T.Graham for 9 yards TOUCHDOWN.,0,0,2012 -20120923_BUF@CLE,1,54,8,BUF,CLE,,,9,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,0,2012 -20120923_BUF@CLE,1,54,8,BUF,CLE,,,9,J.Potter kicks 71 yards from BUF 35 to CLV -6. J.Cribbs to CLV 28 for 34 yards (D.Searcy).,7,0,2012 -20120923_BUF@CLE,1,53,59,CLE,BUF,1,10,72,(8:59) (Shotgun) T.Richardson left guard to CLV 26 for -2 yards (K.Williams).,0,7,2012 -20120923_BUF@CLE,1,53,24,CLE,BUF,2,12,74,(8:24) (Shotgun) B.Weeden sacked at CLV 23 for -3 yards (K.Williams).,0,7,2012 -20120923_BUF@CLE,1,52,47,CLE,BUF,3,15,77,(7:47) (Shotgun) B.Weeden pass short right to B.Watson to CLV 32 for 9 yards (J.Rogers).,0,7,2012 -20120923_BUF@CLE,1,52,12,CLE,BUF,4,6,68,(7:12) R.Hodges punts 50 yards to BUF 18 Center-C.Yount. L.McKelvin to CLV 49 for 33 yards (R.Hodges; C.Yount).,0,7,2012 -20120923_BUF@CLE,1,51,59,BUF,CLE,1,10,49,(6:59) C.Spiller left guard to CLV 41 for 8 yards (F.Rucker).,7,0,2012 -20120923_BUF@CLE,1,51,18,BUF,CLE,2,2,41,(6:18) C.Spiller right guard to CLV 36 for 5 yards (F.Rucker; T.Gipson).,7,0,2012 -20120923_BUF@CLE,1,50,43,BUF,CLE,1,10,36,(5:43) (Shotgun) B.Smith to CLV 32 for 4 yards (T.Gipson).,7,0,2012 -20120923_BUF@CLE,1,50,15,BUF,CLE,2,6,32,(5:15) (Shotgun) R.Fitzpatrick pass short left to C.Spiller for 32 yards TOUCHDOWN.,7,0,2012 -20120923_BUF@CLE,1,50,15,BUF,CLE,,,32,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,0,2012 -20120923_BUF@CLE,1,50,15,BUF,CLE,,,32,J.Potter kicks 73 yards from BUF 35 to CLV -8. J.Cribbs to CLV 9 for 17 yards (N.Bradham).,14,0,2012 -20120923_BUF@CLE,1,50,0,CLE,BUF,1,10,91,(5:00) T.Richardson right guard to CLV 12 for 3 yards (N.Barnett).,0,14,2012 -20120923_BUF@CLE,1,49,29,CLE,BUF,2,7,88,(4:29) B.Weeden pass short left to T.Richardson to CLV 18 for 6 yards (N.Barnett; N.Bradham).,0,14,2012 -20120923_BUF@CLE,1,48,55,CLE,BUF,3,1,82,(3:55) T.Richardson right guard to CLV 18 for no gain (A.Moats).,0,14,2012 -20120923_BUF@CLE,1,48,13,CLE,BUF,4,1,82,(3:13) R.Hodges punts 45 yards to BUF 37 Center-C.Yount fair catch by L.McKelvin.,0,14,2012 -20120923_BUF@CLE,1,48,5,BUF,CLE,1,10,63,(3:05) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to CLV 38 for 25 yards (U.Young). BUF-C.Spiller was injured during the play. His return is Doubtful. PENALTY on BUF-St.Johnson Offensive Holding 10 yards enforced at BUF 47.,14,0,2012 -20120923_BUF@CLE,1,47,33,BUF,CLE,1,10,63,(2:33) T.Choice right guard to BUF 41 for 4 yards (D.Jackson).,14,0,2012 -20120923_BUF@CLE,1,46,58,BUF,CLE,2,6,59,(1:58) (Shotgun) R.Fitzpatrick pass incomplete deep middle to St.Johnson.,14,0,2012 -20120923_BUF@CLE,1,46,54,BUF,CLE,3,6,59,(1:54) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to CLV 47 for 12 yards (T.Ward).,14,0,2012 -20120923_BUF@CLE,1,46,14,BUF,CLE,1,10,47,(1:14) (Shotgun) B.Smith right guard to CLV 45 for 2 yards (C.Robertson).,14,0,2012 -20120923_BUF@CLE,1,45,32,BUF,CLE,2,8,45,(:32) R.Fitzpatrick pass short right to S.Chandler to CLV 35 for 10 yards (T.Ward).,14,0,2012 -20120923_BUF@CLE,2,45,0,BUF,CLE,1,10,35,(15:00) T.Choice right tackle ran ob at CLV 36 for -1 yards.,14,0,2012 -20120923_BUF@CLE,2,44,31,BUF,CLE,2,11,36,(14:31) T.Choice left guard to CLV 26 for 10 yards (C.Robertson).,14,0,2012 -20120923_BUF@CLE,2,43,52,BUF,CLE,3,1,26,(13:52) T.Choice right guard to CLV 23 for 3 yards (A.Rubin).,14,0,2012 -20120923_BUF@CLE,2,43,10,BUF,CLE,1,10,23,(13:10) (Shotgun) R.Fitzpatrick pass incomplete short right to C.McIntyre.,14,0,2012 -20120923_BUF@CLE,2,43,4,BUF,CLE,2,10,23,(13:04) R.Fitzpatrick scrambles right end to CLV 18 for 5 yards (B.Skrine).,14,0,2012 -20120923_BUF@CLE,2,42,20,BUF,CLE,3,5,18,(12:20) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Cleveland challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) R.Fitzpatrick sacked at CLV 25 for -7 yards. FUMBLES RECOVERED by CLV-J.Parker at CLV 20.,14,0,2012 -20120923_BUF@CLE,2,42,14,CLE,BUF,1,10,80,(12:14) (Shotgun) B.Weeden pass short left to J.Cameron to CLV 32 for 12 yards (G.Wilson).,0,14,2012 -20120923_BUF@CLE,2,41,43,CLE,BUF,1,10,68,(11:43) B.Weeden pass short right to T.Benjamin to BUF 46 for 22 yards (G.Wilson).,0,14,2012 -20120923_BUF@CLE,2,41,11,CLE,BUF,1,10,46,(11:11) T.Richardson left guard to BUF 46 for no gain (N.Barnett).,0,14,2012 -20120923_BUF@CLE,2,40,43,CLE,BUF,2,10,46,(10:43) T.Richardson right guard to BUF 44 for 2 yards (J.Rogers).,0,14,2012 -20120923_BUF@CLE,2,40,0,CLE,BUF,3,8,44,(10:00) (Shotgun) B.Weeden pass incomplete short right to M.Massaquoi.,0,14,2012 -20120923_BUF@CLE,2,39,55,CLE,BUF,4,8,44,(9:55) R.Hodges punts 33 yards to BUF 11 Center-C.Yount fair catch by L.McKelvin.,0,14,2012 -20120923_BUF@CLE,2,39,47,BUF,CLE,1,10,89,(9:47) (Shotgun) T.Choice left guard to BUF 12 for 1 yard (J.Parker).,14,0,2012 -20120923_BUF@CLE,2,39,13,BUF,CLE,2,9,88,(9:13) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 23 for 11 yards (S.Brown).,14,0,2012 -20120923_BUF@CLE,2,38,32,BUF,CLE,1,10,77,(8:32) (Shotgun) T.Choice left guard to BUF 25 for 2 yards (F.Rucker).,14,0,2012 -20120923_BUF@CLE,2,37,51,BUF,CLE,2,8,75,(7:51) (Shotgun) R.Fitzpatrick pass short middle to T.Choice to BUF 30 for 5 yards (T.Ward).,14,0,2012 -20120923_BUF@CLE,2,37,10,BUF,CLE,3,3,70,(7:10) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Graham [J.Sheard].,14,0,2012 -20120923_BUF@CLE,2,37,5,BUF,CLE,4,3,70,(7:05) B.Moorman punts 49 yards to CLV 21 Center-G.Sanborn. J.Cribbs to CLV 33 for 12 yards (N.Bradham).,14,0,2012 -20120923_BUF@CLE,2,36,53,CLE,BUF,1,10,67,(6:53) (Shotgun) B.Weeden pass short left to J.Cribbs to BUF 43 for 24 yards (N.Barnett).,0,14,2012 -20120923_BUF@CLE,2,36,9,CLE,BUF,1,10,43,(6:09) B.Weeden pass short right to C.Ogbonnaya to BUF 40 for 3 yards (J.Rogers).,0,14,2012 -20120923_BUF@CLE,2,35,42,CLE,BUF,2,7,40,(5:42) T.Richardson right tackle to BUF 37 for 3 yards (A.Williams; M.Williams).,0,14,2012 -20120923_BUF@CLE,2,35,1,CLE,BUF,3,4,37,(5:01) (Shotgun) B.Weeden pass deep right intended for J.Gordon INTERCEPTED by J.Byrd at BUF 20. J.Byrd to BUF 25 for 5 yards (J.Gordon). PENALTY on BUF-A.Williams Illegal Contact 5 yards enforced at BUF 37 - No Play.,0,14,2012 -20120923_BUF@CLE,2,34,50,CLE,BUF,1,10,32,(4:50) B.Weeden pass incomplete deep right to M.Massaquoi (A.Williams).,0,14,2012 -20120923_BUF@CLE,2,34,45,CLE,BUF,2,10,32,(4:45) PENALTY on CLV-G.Little False Start 5 yards enforced at BUF 32 - No Play.,0,14,2012 -20120923_BUF@CLE,2,34,45,CLE,BUF,2,15,37,(4:45) B.Weeden pass deep middle to J.Cameron to BUF 19 for 18 yards (G.Wilson).,0,14,2012 -20120923_BUF@CLE,2,34,10,CLE,BUF,1,10,19,(4:10) B.Weeden sacked at BUF 25 for -6 yards (M.Williams).,0,14,2012 -20120923_BUF@CLE,2,34,10,CLE,BUF,2,16,25,(4:10) PENALTY on BUF-M.Anderson Encroachment 5 yards enforced at BUF 25 - No Play.,0,14,2012 -20120923_BUF@CLE,2,33,7,CLE,BUF,2,11,20,(3:07) (Shotgun) B.Weeden pass short right to M.Massaquoi to BUF 6 for 14 yards (S.Gilmore).,0,14,2012 -20120923_BUF@CLE,2,32,23,CLE,BUF,1,6,6,(2:23) B.Weeden pass incomplete short right to J.Cameron.,0,14,2012 -20120923_BUF@CLE,2,32,17,CLE,BUF,2,6,6,(2:17) T.Richardson right guard for 6 yards TOUCHDOWN.,0,14,2012 -20120923_BUF@CLE,2,32,17,CLE,BUF,,,6,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,14,2012 -20120923_BUF@CLE,2,32,17,CLE,BUF,,,6,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,7,14,2012 -20120923_BUF@CLE,2,32,12,BUF,CLE,1,10,80,(2:12) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Choice (B.Winn).,14,7,2012 -20120923_BUF@CLE,2,32,8,BUF,CLE,2,10,80,(2:08) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (B.Winn).,14,7,2012 -20120923_BUF@CLE,2,32,2,BUF,CLE,3,10,80,(2:02) (Shotgun) R.Fitzpatrick pass short left to T.Graham pushed ob at BUF 26 for 6 yards (T.Ward). PENALTY on CLV-D.Jackson Unnecessary Roughness 15 yards enforced at BUF 26.,14,7,2012 -20120923_BUF@CLE,2,31,57,BUF,CLE,1,10,59,(1:57) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 47 for 6 yards (D.Patterson; C.Robertson).,14,7,2012 -20120923_BUF@CLE,2,31,32,BUF,CLE,2,4,53,(1:32) (No Huddle Shotgun) R.Fitzpatrick pass short left to D.Jones to CLV 33 for 20 yards (D.Patterson). PENALTY on BUF-D.Jones Offensive Pass Interference 10 yards enforced at BUF 47 - No Play.,14,7,2012 -20120923_BUF@CLE,2,31,27,BUF,CLE,2,14,63,(1:27) (Shotgun) R.Fitzpatrick pass short right to T.Choice to BUF 40 for 3 yards (U.Young). PENALTY on BUF-St.Johnson Offensive Holding 10 yards enforced at BUF 40.,14,7,2012 -20120923_BUF@CLE,2,31,20,BUF,CLE,2,21,70,(1:20) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 33 for 3 yards (S.Brown).,14,7,2012 -20120923_BUF@CLE,2,31,9,BUF,CLE,3,18,67,(1:09) (Shotgun) T.Choice left guard to BUF 44 for 11 yards (D.Jackson).,14,7,2012 -20120923_BUF@CLE,2,31,3,BUF,CLE,4,7,56,(1:03) PENALTY on BUF-K.Sheppard False Start 5 yards enforced at BUF 44 - No Play.,14,7,2012 -20120923_BUF@CLE,2,31,3,BUF,CLE,4,12,61,(1:03) B.Moorman punts 27 yards to CLV 34 Center-G.Sanborn out of bounds.,14,7,2012 -20120923_BUF@CLE,2,30,58,CLE,BUF,1,10,66,(:58) (Shotgun) C.Ogbonnaya right guard to CLV 40 for 6 yards (N.Bradham).,7,14,2012 -20120923_BUF@CLE,2,30,36,CLE,BUF,2,4,60,(:36) (No Huddle Shotgun) B.Weeden pass incomplete short right to G.Little (J.Rogers).,7,14,2012 -20120923_BUF@CLE,2,30,30,CLE,BUF,3,4,60,(:30) (Shotgun) B.Weeden pass incomplete short right to G.Little.,7,14,2012 -20120923_BUF@CLE,2,30,26,CLE,BUF,4,4,60,(:26) R.Hodges punts 42 yards to BUF 18 Center-C.Yount fair catch by L.McKelvin.,7,14,2012 -20120923_BUF@CLE,2,30,20,BUF,CLE,1,10,82,(:20) R.Fitzpatrick kneels to BUF 18 for no gain.,14,7,2012 -20120923_BUF@CLE,3,30,0,CLE,BUF,,,82,P.Dawson kicks 69 yards from CLV 35 to BUF -4. L.McKelvin to BUF 30 for 34 yards (J.Bademosi; T.Gipson).,7,14,2012 -20120923_BUF@CLE,3,29,55,BUF,CLE,1,10,70,(14:55) T.Choice left guard to BUF 35 for 5 yards (D.Patterson; D.Jackson).,14,7,2012 -20120923_BUF@CLE,3,29,16,BUF,CLE,2,5,65,(14:16) R.Fitzpatrick pass incomplete to St.Johnson (S.Brown). PENALTY on CLV-S.Brown Defensive Pass Interference 12 yards enforced at BUF 35 - No Play.,14,7,2012 -20120923_BUF@CLE,3,29,11,BUF,CLE,1,10,53,(14:11) T.Choice left tackle to CLV 44 for 9 yards (T.Gipson).,14,7,2012 -20120923_BUF@CLE,3,28,35,BUF,CLE,2,1,44,(13:35) (Shotgun) T.Choice right guard to CLV 36 for 8 yards (T.Gipson).,14,7,2012 -20120923_BUF@CLE,3,27,57,BUF,CLE,1,10,36,(12:57) J.White left tackle to CLV 27 for 9 yards (C.Robertson).,14,7,2012 -20120923_BUF@CLE,3,27,11,BUF,CLE,2,1,27,(12:11) R.Fitzpatrick pass to St.Johnson to CLV 20 for 7 yards (B.Skrine).,14,7,2012 -20120923_BUF@CLE,3,26,34,BUF,CLE,1,10,20,(11:34) (Shotgun) T.Choice right guard to CLV 19 for 1 yard (T.Ward).,14,7,2012 -20120923_BUF@CLE,3,25,53,BUF,CLE,2,9,19,(10:53) (Shotgun) R.Fitzpatrick pass incomplete to St.Johnson (S.Brown).,14,7,2012 -20120923_BUF@CLE,3,25,47,BUF,CLE,3,9,19,(10:47) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson (B.Skrine).,14,7,2012 -20120923_BUF@CLE,3,25,42,BUF,CLE,4,9,19,(10:42) (Field Goal formation) R.Lindell 37 yard field goal is GOOD Center-G.Sanborn Holder-B.Moorman.,14,7,2012 -20120923_BUF@CLE,3,25,42,BUF,CLE,,,19,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,17,7,2012 -20120923_BUF@CLE,3,25,38,CLE,BUF,1,10,80,(10:38) T.Richardson left tackle to CLV 33 for 13 yards (G.Wilson). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 23.,7,17,2012 -20120923_BUF@CLE,3,25,17,CLE,BUF,1,17,87,(10:17) B.Weeden pass short right to T.Richardson to CLV 23 for 10 yards (G.Wilson).,7,17,2012 -20120923_BUF@CLE,3,25,17,CLE,BUF,2,7,77,(10:17) PENALTY on BUF-K.Williams Neutral Zone Infraction 5 yards enforced at CLV 23 - No Play.,7,17,2012 -20120923_BUF@CLE,3,24,35,CLE,BUF,2,2,72,(9:35) T.Richardson right tackle to CLV 32 for 4 yards (A.Moats).,7,17,2012 -20120923_BUF@CLE,3,23,57,CLE,BUF,1,10,68,(8:57) B.Weeden pass incomplete deep right to T.Benjamin (A.Williams).,7,17,2012 -20120923_BUF@CLE,3,23,50,CLE,BUF,2,10,68,(8:50) (Shotgun) PENALTY on CLV-T.Richardson False Start 5 yards enforced at CLV 32 - No Play.,7,17,2012 -20120923_BUF@CLE,3,23,50,CLE,BUF,2,15,73,(8:50) B.Weeden pass short left to B.Watson to CLV 23 for -4 yards (K.Sheppard).,7,17,2012 -20120923_BUF@CLE,3,23,6,CLE,BUF,3,19,77,(8:06) B.Weeden pass incomplete short left to T.Benjamin.,7,17,2012 -20120923_BUF@CLE,3,23,2,CLE,BUF,4,19,77,(8:02) R.Hodges punts 40 yards to BUF 37 Center-C.Yount out of bounds.,7,17,2012 -20120923_BUF@CLE,3,22,55,BUF,CLE,1,10,63,(7:55) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 44 for 7 yards (C.Robertson).,17,7,2012 -20120923_BUF@CLE,3,22,19,BUF,CLE,2,3,56,(7:19) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler.,17,7,2012 -20120923_BUF@CLE,3,22,15,BUF,CLE,3,3,56,(7:15) (Shotgun) R.Fitzpatrick pass incomplete short right to T.Choice.,17,7,2012 -20120923_BUF@CLE,3,22,12,BUF,CLE,4,3,56,(7:12) (Punt formation) B.Moorman punts 36 yards to CLV 20 Center-G.Sanborn out of bounds.,17,7,2012 -20120923_BUF@CLE,3,22,5,CLE,BUF,1,10,80,(7:05) (Shotgun) B.Weeden pass short right to B.Watson to CLV 28 for 8 yards (N.Barnett).,7,17,2012 -20120923_BUF@CLE,3,21,35,CLE,BUF,2,2,72,(6:35) T.Richardson right tackle to CLV 33 for 5 yards (A.Moats).,7,17,2012 -20120923_BUF@CLE,3,21,35,CLE,BUF,1,10,67,(6:35) B.Weeden pass short left to J.Cameron to CLV 37 for 4 yards (J.Byrd).,7,17,2012 -20120923_BUF@CLE,3,20,26,CLE,BUF,2,6,63,(5:26) B.Weeden pass incomplete deep middle to J.Gordon (T.McGee).,7,17,2012 -20120923_BUF@CLE,3,20,18,CLE,BUF,3,6,63,(5:18) (Shotgun) B.Weeden pass short right to J.Gordon to BUF 48 for 15 yards (T.McGee).,7,17,2012 -20120923_BUF@CLE,3,19,47,CLE,BUF,1,10,48,(4:47) B.Weeden pass short right to J.Cameron to BUF 45 for 3 yards (K.Sheppard).,7,17,2012 -20120923_BUF@CLE,3,19,14,CLE,BUF,2,7,45,(4:14) (Shotgun) B.Weeden pass short middle to T.Richardson to BUF 35 for 10 yards (M.Anderson).,7,17,2012 -20120923_BUF@CLE,3,18,42,CLE,BUF,1,10,35,(3:42) B.Weeden pass incomplete deep right to J.Cameron.,7,17,2012 -20120923_BUF@CLE,3,18,36,CLE,BUF,2,10,35,(3:36) (Shotgun) B.Weeden pass short right to J.Gordon to BUF 27 for 8 yards (J.Byrd). BUF-J.Byrd was injured during the play. His return is Questionable.,7,17,2012 -20120923_BUF@CLE,3,18,8,CLE,BUF,3,2,27,(3:08) B.Weeden pass short right to G.Little to BUF 22 for 5 yards (J.Rogers).,7,17,2012 -20120923_BUF@CLE,3,17,41,CLE,BUF,1,10,22,(2:41) B.Weeden pass incomplete short left to B.Watson.,7,17,2012 -20120923_BUF@CLE,3,17,37,CLE,BUF,2,10,22,(2:37) B.Weeden pass incomplete short right to T.Richardson.,7,17,2012 -20120923_BUF@CLE,3,17,33,CLE,BUF,3,10,22,(2:33) (Shotgun) B.Weeden pass deep left to T.Benjamin for 22 yards TOUCHDOWN.,7,17,2012 -20120923_BUF@CLE,3,17,33,CLE,BUF,,,22,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,7,17,2012 -20120923_BUF@CLE,3,17,33,CLE,BUF,,,22,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,14,17,2012 -20120923_BUF@CLE,3,17,27,BUF,CLE,1,10,80,(2:27) T.Choice left tackle to BUF 21 for 1 yard (J.Sheard).,17,14,2012 -20120923_BUF@CLE,3,16,44,BUF,CLE,2,9,79,(1:44) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,17,14,2012 -20120923_BUF@CLE,3,16,38,BUF,CLE,3,9,79,(1:38) (Shotgun) R.Fitzpatrick pass incomplete to T.Graham.,17,14,2012 -20120923_BUF@CLE,3,16,34,BUF,CLE,4,9,79,(1:34) (Punt formation) B.Moorman punts 66 yards to CLV 13 Center-G.Sanborn. J.Cribbs to CLV 40 for 27 yards (G.Wilson).,17,14,2012 -20120923_BUF@CLE,3,16,21,CLE,BUF,1,10,60,(1:21) B.Weeden pass short right to J.Cameron to CLV 48 for 8 yards (A.Moats).,14,17,2012 -20120923_BUF@CLE,3,15,57,CLE,BUF,2,2,52,(:57) T.Richardson right guard to BUF 47 for 5 yards (K.Williams; A.Moats).,14,17,2012 -20120923_BUF@CLE,3,15,19,CLE,BUF,1,10,47,(:19) B.Weeden pass short right to T.Richardson to BUF 49 for -2 yards (J.Byrd).,14,17,2012 -20120923_BUF@CLE,4,15,0,CLE,BUF,2,12,49,(15:00) B.Weeden pass incomplete short middle to B.Watson (Sp.Johnson).,14,17,2012 -20120923_BUF@CLE,4,14,57,CLE,BUF,3,12,49,(14:57) (Shotgun) B.Weeden sacked at CLV 40 for -11 yards (M.Anderson). Penalty on CLV-M.Schwartz Offensive Holding declined.,14,17,2012 -20120923_BUF@CLE,4,14,42,CLE,BUF,4,23,60,(14:42) R.Hodges punts 28 yards to BUF 32 Center-C.Yount out of bounds.,14,17,2012 -20120923_BUF@CLE,4,14,35,BUF,CLE,1,10,68,(14:35) (Shotgun) T.Choice left guard to CLV 46 for 22 yards (U.Young).,17,14,2012 -20120923_BUF@CLE,4,13,49,BUF,CLE,1,10,46,(13:49) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 38 for 8 yards (S.Brown).,17,14,2012 -20120923_BUF@CLE,4,13,13,BUF,CLE,2,2,38,(13:13) J.White right guard to CLV 32 for 6 yards (F.Rucker; T.Ward).,17,14,2012 -20120923_BUF@CLE,4,12,32,BUF,CLE,1,10,32,(12:32) R.Fitzpatrick pass short left to C.McIntyre to CLV 23 for 9 yards (D.Jackson). CLV-B.Skrine was injured during the play. His return is Probable.,17,14,2012 -20120923_BUF@CLE,4,11,55,BUF,CLE,2,1,23,(11:55) T.Choice right guard to CLV 21 for 2 yards (C.Robertson).,17,14,2012 -20120923_BUF@CLE,4,11,14,BUF,CLE,1,10,21,(11:14) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to CLV 20 for 1 yard (S.Brown).,17,14,2012 -20120923_BUF@CLE,4,10,35,BUF,CLE,2,9,20,(10:35) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Choice.,17,14,2012 -20120923_BUF@CLE,4,9,49,BUF,CLE,3,9,20,(9:49) (Shotgun) R.Fitzpatrick pass short right to T.Graham to CLV 11 for 9 yards (B.Skrine).,17,14,2012 -20120923_BUF@CLE,4,9,39,BUF,CLE,1,10,11,(9:39) T.Choice up the middle to CLV 9 for 2 yards (C.Robertson).,17,14,2012 -20120923_BUF@CLE,4,9,12,BUF,CLE,2,8,9,(9:12) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson for 9 yards TOUCHDOWN.,17,14,2012 -20120923_BUF@CLE,4,9,12,BUF,CLE,,,9,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,17,14,2012 -20120923_BUF@CLE,4,9,12,BUF,CLE,,,9,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,24,14,2012 -20120923_BUF@CLE,4,9,8,CLE,BUF,1,10,80,(9:08) (Shotgun) B.Weeden pass incomplete short left to T.Richardson [M.Williams]. PENALTY on BUF-M.Williams Illegal Use of Hands 5 yards enforced at CLV 20 - No Play.,14,24,2012 -20120923_BUF@CLE,4,9,2,CLE,BUF,1,10,75,(9:02) (Shotgun) B.Weeden pass short right to C.Ogbonnaya to CLV 34 for 9 yards (A.Williams).,14,24,2012 -20120923_BUF@CLE,4,8,35,CLE,BUF,2,1,66,(8:35) B.Weeden pass short right to T.Richardson to CLV 35 for 1 yard (B.Scott).,14,24,2012 -20120923_BUF@CLE,4,8,0,CLE,BUF,1,10,65,(8:00) B.Weeden pass short right to T.Richardson to CLV 34 for -1 yards (N.Barnett).,14,24,2012 -20120923_BUF@CLE,4,7,23,CLE,BUF,2,11,66,(7:23) B.Weeden pass incomplete short left to B.Watson.,14,24,2012 -20120923_BUF@CLE,4,7,19,CLE,BUF,3,11,66,(7:19) (Shotgun) B.Weeden pass deep left to G.Little to BUF 49 for 17 yards (J.Rogers). PENALTY on CLV-A.Mack Offensive Holding 10 yards enforced at CLV 34 - No Play.,14,24,2012 -20120923_BUF@CLE,4,6,48,CLE,BUF,3,21,76,(6:48) (Shotgun) B.Weeden pass short right to G.Little to CLV 36 for 12 yards (N.Barnett).,14,24,2012 -20120923_BUF@CLE,4,6,11,CLE,BUF,4,9,64,(6:11) R.Hodges punts 46 yards to BUF 18 Center-C.Yount out of bounds.,14,24,2012 -20120923_BUF@CLE,4,6,3,BUF,CLE,1,10,82,(6:03) (Shotgun) T.Choice right guard to BUF 21 for 3 yards (C.Robertson).,24,14,2012 -20120923_BUF@CLE,4,5,20,BUF,CLE,2,7,79,(5:20) T.Choice right guard to BUF 24 for 3 yards (D.Jackson).,24,14,2012 -20120923_BUF@CLE,4,5,14,BUF,CLE,3,4,76,(5:14) (Shotgun) T.Choice right tackle to BUF 27 for 3 yards (A.Rubin).,24,14,2012 -20120923_BUF@CLE,4,5,5,BUF,CLE,4,1,73,(5:05) B.Moorman punts 30 yards to CLV 43 Center-G.Sanborn out of bounds. PENALTY on BUF-N.Bradham Unnecessary Roughness 15 yards enforced at CLV 43.,24,14,2012 -20120923_BUF@CLE,4,4,59,CLE,BUF,1,10,42,(4:59) B.Weeden sacked at CLV 48 for -10 yards (sack split by M.Dareus and M.Williams).,14,24,2012 -20120923_BUF@CLE,4,4,29,CLE,BUF,2,20,52,(4:29) B.Weeden pass deep right intended for J.Gordon INTERCEPTED by L.McKelvin at BUF 31. L.McKelvin to BUF 40 for 9 yards (C.Ogbonnaya).,14,24,2012 -20120923_BUF@CLE,4,4,21,BUF,CLE,1,10,60,(4:21) T.Choice right tackle to BUF 38 for -2 yards (J.Sheard).,24,14,2012 -20120923_BUF@CLE,4,4,17,BUF,CLE,2,12,62,(4:17) T.Choice right guard to BUF 42 for 4 yards (D.Jackson; J.Sheard).,24,14,2012 -20120923_BUF@CLE,4,3,33,BUF,CLE,3,8,58,(3:33) (Shotgun) R.Fitzpatrick scrambles to BUF 49 for 7 yards (A.Rubin; R.Hodges).,24,14,2012 -20120923_BUF@CLE,4,2,46,BUF,CLE,4,1,51,(2:46) B.Moorman punts 44 yards to CLV 7 Center-G.Sanborn. J.Cribbs MUFFS catch and recovers at CLV 9. J.Cribbs to CLV 13 for 4 yards (D.Searcy).,24,14,2012 -20120923_BUF@CLE,4,2,37,CLE,BUF,1,10,87,(2:37) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 30 for 17 yards (G.Wilson).,14,24,2012 -20120923_BUF@CLE,4,2,15,CLE,BUF,1,10,70,(2:15) (No Huddle Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 32 for 2 yards (N.Barnett).,14,24,2012 -20120923_BUF@CLE,4,2,0,CLE,BUF,2,8,68,(2:00) (Shotgun) B.Weeden pass short middle intended for B.Watson INTERCEPTED by B.Scott at CLV 33. B.Scott to CLV 1 for 32 yards (G.Little).,14,24,2012 -20120923_BUF@CLE,4,1,50,BUF,CLE,1,1,1,(1:50) R.Fitzpatrick kneels to CLV 2 for -1 yards.,24,14,2012 -20120923_BUF@CLE,4,1,9,BUF,CLE,2,2,2,(1:09) R.Fitzpatrick kneels to CLV 2 for no gain.,24,14,2012 -20120923_BUF@CLE,4,0,32,BUF,CLE,3,2,2,(:32) R.Fitzpatrick kneels to CLV 3 for -1 yards.,24,14,2012 -20120923_BUF@CLE,4,0,32,BUF,CLE,,,2,                      ,24,14,2012 -20120923_TB@DAL,1,0,0,TB,DAL,,,2,M.Koenen kicks 73 yards from TB 35 to DAL -8. F.Jones Touchback.,0,0,2012 -20120923_TB@DAL,1,60,0,DAL,TB,1,10,80,(15:00) T.Romo pass incomplete short left to D.Murray (M.Bennett). Pass incomplete in the flat.,0,0,2012 -20120923_TB@DAL,1,59,33,DAL,TB,2,10,80,(14:33) (No Huddle Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 20 - No Play.,0,0,2012 -20120923_TB@DAL,1,59,21,DAL,TB,2,15,85,(14:21) (Shotgun) T.Romo pass incomplete short middle to J.Witten. Pass incomplete on a turnaround at the Dallas 28.,0,0,2012 -20120923_TB@DAL,1,59,15,DAL,TB,3,15,85,(14:15) (Shotgun) T.Romo pass short left intended for M.Austin INTERCEPTED by A.Talib at DAL 29. A.Talib to DAL 29 for no gain (M.Austin). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,0,0,2012 -20120923_TB@DAL,1,59,11,TB,DAL,1,10,29,(14:11) (Shotgun) D.Martin up the middle to DAL 27 for 2 yards (D.Ware; B.Carter).,0,0,2012 -20120923_TB@DAL,1,58,31,TB,DAL,2,8,27,(13:31) (Shotgun) J.Freeman pass incomplete deep right to A.Benn. PENALTY on DAL-M.Claiborne Defensive Pass Interference 15 yards enforced at DAL 27 - No Play. Penalty on DAL-D.Ware Defensive Offside declined.,0,0,2012 -20120923_TB@DAL,1,58,24,TB,DAL,1,10,12,(13:24) J.Freeman pass incomplete short right to V.Jackson. Pass incomplete right corner of the end zone.,0,0,2012 -20120923_TB@DAL,1,58,20,TB,DAL,2,10,12,(13:20) (Shotgun) D.Martin up the middle to DAL 5 for 7 yards (S.Lee). PENALTY on DAL-D.Ware Defensive Offside 5 yards enforced at DAL 12 - No Play.,0,0,2012 -20120923_TB@DAL,1,58,5,TB,DAL,2,5,7,(13:05) D.Martin up the middle to DAL 3 for 4 yards (B.Church).,0,0,2012 -20120923_TB@DAL,1,57,20,TB,DAL,3,1,3,(12:20) D.Martin up the middle to DAL 3 for no gain (M.Spears).,0,0,2012 -20120923_TB@DAL,1,56,34,TB,DAL,4,1,3,(11:34) D.Martin left tackle to DAL 1 for 2 yards (S.Lissemore).,0,0,2012 -20120923_TB@DAL,1,55,56,TB,DAL,1,1,1,(10:56) J.Freeman pass short left to L.Stocker for 1 yard TOUCHDOWN. Freeman pass complete to left corner off play action.,0,0,2012 -20120923_TB@DAL,1,55,56,TB,DAL,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20120923_TB@DAL,1,55,56,TB,DAL,,,1,M.Koenen kicks 67 yards from TB 35 to DAL -2. F.Jones to DAL 16 for 18 yards (A.Benn). Return up the middle. Injury update: Dallas' Nate Livings has a hand injury; return questionable.,7,0,2012 -20120923_TB@DAL,1,55,42,DAL,TB,1,10,84,(10:42) D.Murray up the middle to DAL 20 for 4 yards (R.Barber).,0,7,2012 -20120923_TB@DAL,1,55,17,DAL,TB,2,6,80,(10:17) (No Huddle) D.Murray left end to DAL 23 for 3 yards (L.David).,0,7,2012 -20120923_TB@DAL,1,54,33,DAL,TB,3,3,77,(9:33) (No Huddle Shotgun) T.Romo pass short right to M.Austin to DAL 28 for 5 yards (B.McDonald).,0,7,2012 -20120923_TB@DAL,1,53,58,DAL,TB,1,10,72,(8:58) (No Huddle) D.Murray up the middle to DAL 25 for -3 yards (G.McCoy).,0,7,2012 -20120923_TB@DAL,1,53,13,DAL,TB,2,13,75,(8:13) (No Huddle Shotgun) T.Romo pass short middle to D.Bryant to DAL 34 for 9 yards (L.David).,0,7,2012 -20120923_TB@DAL,1,52,26,DAL,TB,3,4,66,(7:26) (No Huddle Shotgun) T.Romo pass short left to J.Witten to DAL 39 for 5 yards (M.Barron).,0,7,2012 -20120923_TB@DAL,1,52,26,DAL,TB,1,10,61,(7:26) (No Huddle) PENALTY on DAL-J.Witten False Start 5 yards enforced at DAL 39 - No Play.,0,7,2012 -20120923_TB@DAL,1,51,39,DAL,TB,1,15,66,(6:39) (Shotgun) D.Murray left tackle to DAL 37 for 3 yards (M.Foster).,0,7,2012 -20120923_TB@DAL,1,51,8,DAL,TB,2,12,63,(6:08) D.Murray left tackle to DAL 36 for -1 yards (A.Clayborn).,0,7,2012 -20120923_TB@DAL,1,50,21,DAL,TB,3,13,64,(5:21) (No Huddle Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 36 - No Play.,0,7,2012 -20120923_TB@DAL,1,50,1,DAL,TB,3,18,69,(5:01) (Shotgun) T.Romo pass incomplete deep left to D.Bryant. Pass incomplete sideline at the Tampa Bay 40.,0,7,2012 -20120923_TB@DAL,1,49,54,DAL,TB,4,18,69,(4:54) (Punt formation) C.Jones punts 49 yards to TB 20 Center-L.Ladouceur. J.Shipley to TB 21 for 1 yard (J.Phillips).,0,7,2012 -20120923_TB@DAL,1,49,42,TB,DAL,1,10,79,(4:42) J.Freeman pass incomplete deep left to L.Stocker [A.Spencer]. Pass incomplete left sideline on crossing pattern; Church closest defender.,7,0,2012 -20120923_TB@DAL,1,49,36,TB,DAL,2,10,79,(4:36) D.Martin up the middle to TB 22 for 1 yard (B.Carter).,7,0,2012 -20120923_TB@DAL,1,48,52,TB,DAL,3,9,78,(3:52) (Shotgun) PENALTY on TB-J.Zuttah False Start 5 yards enforced at TB 22 - No Play.,7,0,2012 -20120923_TB@DAL,1,48,32,TB,DAL,3,14,83,(3:32) (Shotgun) J.Freeman pass short right intended for D.Ware INTERCEPTED by S.Lee at TB 23. S.Lee to TB 23 for no gain (D.Ware).,7,0,2012 -20120923_TB@DAL,1,48,23,DAL,TB,1,10,23,(3:23) D.Murray right tackle to TB 25 for -2 yards (M.Bennett).,0,7,2012 -20120923_TB@DAL,1,47,43,DAL,TB,2,12,25,(2:43) (Shotgun) T.Romo pass short right to D.Murray pushed ob at TB 11 for 14 yards (A.Talib). Pass caught in the flat before turning upfield.,0,7,2012 -20120923_TB@DAL,1,47,11,DAL,TB,1,10,11,(2:11) T.Romo pass short middle to D.Murray to TB 11 for no gain (M.Foster).,0,7,2012 -20120923_TB@DAL,1,46,31,DAL,TB,2,10,11,(1:31) D.Murray left end for 11 yards TOUCHDOWN.,0,7,2012 -20120923_TB@DAL,1,46,31,DAL,TB,,,11,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,7,2012 -20120923_TB@DAL,1,46,31,DAL,TB,,,11,D.Bailey kicks 70 yards from DAL 35 to TB -5. A.Benn Touchback.,7,7,2012 -20120923_TB@DAL,1,46,22,TB,DAL,1,10,80,(1:22) J.Freeman pass short left to D.Martin to TB 29 for 9 yards (B.Church). Screen pass.,7,7,2012 -20120923_TB@DAL,1,45,40,TB,DAL,2,1,71,(:40) J.Freeman pass incomplete short right to M.Williams. Quick out sideline.,7,7,2012 -20120923_TB@DAL,1,45,35,TB,DAL,3,1,71,(:35) J.Freeman up the middle to TB 30 for 1 yard (A.Spencer; D.Ware).,7,7,2012 -20120923_TB@DAL,2,45,0,TB,DAL,1,10,70,(15:00) D.Martin left tackle to TB 47 for 17 yards (M.Jenkins).,7,7,2012 -20120923_TB@DAL,2,44,9,TB,DAL,1,10,53,(14:09) J.Freeman sacked at TB 42 for -5 yards (D.Ware). FUMBLES (D.Ware) recovered by TB-T.Larsen at TB 42.,7,7,2012 -20120923_TB@DAL,2,43,25,TB,DAL,2,15,58,(13:25) D.Martin right guard to TB 42 for no gain (J.Hatcher).,7,7,2012 -20120923_TB@DAL,2,42,41,TB,DAL,3,15,58,(12:41) (Shotgun) J.Freeman pass short middle to M.Williams to DAL 48 for 10 yards (S.Lee).,7,7,2012 -20120923_TB@DAL,2,42,8,TB,DAL,4,5,48,(12:08) (Punt formation) M.Koenen punts 37 yards to DAL 11 Center-A.Economos downed by TB-D.Ware.,7,7,2012 -20120923_TB@DAL,2,41,54,DAL,TB,1,10,89,(11:54) D.Murray left guard to DAL 10 for -1 yards (C.Irvin; M.Bennett).,7,7,2012 -20120923_TB@DAL,2,41,54,DAL,TB,2,11,90,(11:54) (Shotgun) PENALTY on DAL-J.Witten False Start 5 yards enforced at DAL 10 - No Play.,7,7,2012 -20120923_TB@DAL,2,40,56,DAL,TB,2,16,95,(10:56) (Shotgun) T.Romo pass incomplete short left to K.Ogletree. Pass incomplete on a curl at the 15; Wright closest defender.,7,7,2012 -20120923_TB@DAL,2,40,50,DAL,TB,3,16,95,(10:50) (Shotgun) T.Romo pass short left to F.Jones to DAL 20 for 15 yards (A.Talib).,7,7,2012 -20120923_TB@DAL,2,40,24,DAL,TB,4,1,80,(10:24) (Punt formation) C.Jones punts 54 yards to TB 26 Center-L.Ladouceur. J.Shipley pushed ob at TB 35 for 9 yards (D.Connor).,7,7,2012 -20120923_TB@DAL,2,40,18,TB,DAL,1,10,65,(10:18) J.Freeman pass incomplete short left to D.Clark [A.Spencer]. PENALTY on TB-D.Penn Offensive Holding 10 yards enforced at TB 35 - No Play.,7,7,2012 -20120923_TB@DAL,2,40,11,TB,DAL,1,20,75,(10:11) D.Martin right tackle to TB 31 for 6 yards (S.Lissemore). PENALTY on DAL-S.Lissemore Face Mask (15 Yards) 15 yards enforced at TB 31.,7,7,2012 -20120923_TB@DAL,2,39,42,TB,DAL,1,10,54,(9:42) D.Martin up the middle to TB 45 for -1 yards (A.Spencer D.Ware).,7,7,2012 -20120923_TB@DAL,2,38,59,TB,DAL,2,11,55,(8:59) (Shotgun) J.Freeman pass short right to A.Benn to DAL 47 for 8 yards (B.Carter). Bubble Screen.,7,7,2012 -20120923_TB@DAL,2,38,14,TB,DAL,3,3,47,(8:14) (Shotgun) J.Freeman pass short right to D.Clark to DAL 47 for no gain (B.Carter). Pass complete right side.,7,7,2012 -20120923_TB@DAL,2,37,30,TB,DAL,4,3,47,(7:30) (Punt formation) M.Koenen punts 29 yards to DAL 18 Center-A.Economos fair catch by D.Harris.,7,7,2012 -20120923_TB@DAL,2,37,22,DAL,TB,1,10,82,(7:22) T.Romo pass incomplete short right to J.Witten. Pass incomplete at the Dallas 33 on crossing pattern; Wright closest defender.,7,7,2012 -20120923_TB@DAL,2,37,16,DAL,TB,2,10,82,(7:16) T.Romo pass incomplete deep left to D.Bryant. Penalty on DAL-N.Livings Offensive Holding declined.,7,7,2012 -20120923_TB@DAL,2,37,9,DAL,TB,3,10,82,(7:09) (Shotgun) T.Romo pass short right to J.Witten to DAL 21 for 3 yards (R.Barber).,7,7,2012 -20120923_TB@DAL,2,36,28,DAL,TB,4,7,79,(6:28) (Punt formation) C.Jones punts 41 yards to TB 38 Center-L.Ladouceur. J.Shipley MUFFS catch RECOVERED by DAL-O.Lemon at TB 39. PENALTY on TB-D.Watson Roughing the Kicker 15 yards enforced at TB 39.,7,7,2012 -20120923_TB@DAL,2,36,16,DAL,TB,1,10,24,(6:16) D.Murray left end to TB 25 for -1 yards (M.Foster).,7,7,2012 -20120923_TB@DAL,2,35,34,DAL,TB,2,11,25,(5:34) (Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at TB 25 - No Play.,7,7,2012 -20120923_TB@DAL,2,35,19,DAL,TB,2,16,30,(5:19) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 21 for 9 yards (B.McDonald).,7,7,2012 -20120923_TB@DAL,2,34,36,DAL,TB,3,7,21,(4:36) (No Huddle Shotgun) T.Romo scrambles up the middle to TB 12 for 9 yards (M.Barron).,7,7,2012 -20120923_TB@DAL,2,33,58,DAL,TB,1,10,12,(3:58) D.Murray right guard to TB 13 for -1 yards (R.Miller).,7,7,2012 -20120923_TB@DAL,2,33,13,DAL,TB,2,11,13,(3:13) (Shotgun) T.Romo pass incomplete short right to M.Austin. Pass thrown right corner of the end zone.,7,7,2012 -20120923_TB@DAL,2,33,8,DAL,TB,3,11,13,(3:08) (Shotgun) T.Romo pass incomplete short left to K.Ogletree. Pass thrown back right corner of the end zone; Wright closest defender.,7,7,2012 -20120923_TB@DAL,2,32,53,DAL,TB,4,11,13,(2:53) (Field Goal formation) D.Bailey 32 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,7,7,2012 -20120923_TB@DAL,2,32,53,DAL,TB,,,13,D.Bailey kicks onside 16 yards from DAL 35 to TB 49. M.Foster (didn't try to advance) to TB 49 for no gain (P.Tanner).,10,7,2012 -20120923_TB@DAL,2,32,51,TB,DAL,1,10,51,(2:51) J.Freeman pass short left to A.Benn to DAL 42 for 9 yards (B.Church). PENALTY on TB Illegal Shift 5 yards enforced at TB 49 - No Play.,7,10,2012 -20120923_TB@DAL,2,32,51,TB,DAL,1,15,56,(2:51) PENALTY on TB-L.Stocker False Start 5 yards enforced at TB 44 - No Play.,7,10,2012 -20120923_TB@DAL,2,32,2,TB,DAL,1,20,61,(2:02) L.Blount left end to DAL 50 for 11 yards (B.Church).,7,10,2012 -20120923_TB@DAL,2,31,54,TB,DAL,2,9,50,(1:54) L.Blount left guard to DAL 46 for 4 yards (S.Lee).,7,10,2012 -20120923_TB@DAL,2,31,13,TB,DAL,3,5,46,(1:13) (Shotgun) PENALTY on TB-D.Martin False Start 5 yards enforced at DAL 46 - No Play.,7,10,2012 -20120923_TB@DAL,2,31,10,TB,DAL,3,10,51,(1:10) (Shotgun) J.Freeman pass incomplete short left to V.Jackson [J.Hatcher]. Pass incomplete on crossing pattern at the Dallas 45; Carter closest defender.,7,10,2012 -20120923_TB@DAL,2,31,5,TB,DAL,4,10,51,(1:05) (Punt formation) PENALTY on TB-M.Koenen Delay of Game 5 yards enforced at TB 49 - No Play.,7,10,2012 -20120923_TB@DAL,2,31,0,TB,DAL,4,15,56,(1:00) (Punt formation) M.Koenen punts 56 yards to end zone Center-A.Economos Touchback.,7,10,2012 -20120923_TB@DAL,2,30,57,DAL,TB,1,10,80,(:57) (Shotgun) T.Romo pass short left to D.Bryant to DAL 18 for -2 yards (A.Talib).,10,7,2012 -20120923_TB@DAL,2,30,35,DAL,TB,2,12,82,(:35) (No Huddle Shotgun) T.Romo pass short right to M.Austin to DAL 33 for 15 yards (E.Wright).,10,7,2012 -20120923_TB@DAL,2,30,27,DAL,TB,1,10,67,(:27) (Shotgun) T.Romo pass deep right to K.Ogletree pushed ob at TB 48 for 19 yards (M.Barron).,10,7,2012 -20120923_TB@DAL,2,30,21,DAL,TB,1,10,48,(:21) (No Huddle Shotgun) T.Romo pass short left to D.Bryant to TB 40 for 8 yards (A.Talib).,10,7,2012 -20120923_TB@DAL,2,30,16,DAL,TB,2,2,40,(:16) (Shotgun) T.Romo sacked at TB 46 for -6 yards (M.Bennett).,10,7,2012 -20120923_TB@DAL,2,30,10,DAL,TB,3,8,46,(:10) (Shotgun) T.Romo pass incomplete deep right. Pass was thrown out of bounds right sideline.,10,7,2012 -20120923_TB@DAL,2,30,2,DAL,TB,4,8,46,(:02) (Shotgun) T.Romo pass incomplete deep middle to J.Witten (M.Barron).,10,7,2012 -20120923_TB@DAL,3,30,0,DAL,TB,,,46,D.Bailey kicks 71 yards from DAL 35 to TB -6. A.Benn Touchback.,10,7,2012 -20120923_TB@DAL,3,30,0,TB,DAL,1,10,80,(15:00) D.Martin right tackle to TB 22 for 2 yards (S.Lissemore; A.Spencer).,7,10,2012 -20120923_TB@DAL,3,29,19,TB,DAL,2,8,78,(14:19) J.Freeman pass incomplete deep left to L.Stocker [S.Lissemore]. Pass was thrown out of bounds around the Tampa Bay 40.,7,10,2012 -20120923_TB@DAL,3,29,12,TB,DAL,3,8,78,"(14:12) (Shotgun) J.Freeman pass incomplete deep left to D.Clark. Pass incomplete on a ""seam"" route; Carter closest defender.",7,10,2012 -20120923_TB@DAL,3,29,7,TB,DAL,4,8,78,(14:07) (Punt formation) M.Koenen punts 45 yards to DAL 33 Center-A.Economos. D.Bryant ran ob at DAL 32 for -1 yards (A.Economos).,7,10,2012 -20120923_TB@DAL,3,28,54,DAL,TB,1,10,68,(13:54) D.Murray right guard to DAL 36 for 4 yards (M.Foster; G.McCoy).,10,7,2012 -20120923_TB@DAL,3,28,10,DAL,TB,2,6,64,(13:10) T.Romo pass incomplete short middle to M.Austin. Pass incomplete on a slant; Barber closest defender.,10,7,2012 -20120923_TB@DAL,3,28,6,DAL,TB,3,6,64,(13:06) (Shotgun) T.Romo pass short middle to K.Ogletree to DAL 43 for 7 yards (E.Wright). Pass complete on a slant.,10,7,2012 -20120923_TB@DAL,3,27,33,DAL,TB,1,10,57,(12:33) T.Romo pass short middle to D.Bryant to TB 39 for 18 yards (A.Talib). Pass complete on a post pattern.,10,7,2012 -20120923_TB@DAL,3,27,2,DAL,TB,1,10,39,(12:02) D.Murray right tackle to TB 38 for 1 yard (M.Foster).,10,7,2012 -20120923_TB@DAL,3,26,23,DAL,TB,2,9,38,(11:23) (Shotgun) T.Romo pass short middle to M.Austin to TB 17 for 21 yards (E.Wright). Pass complete on a slant.,10,7,2012 -20120923_TB@DAL,3,25,42,DAL,TB,1,10,17,(10:42) T.Romo pass incomplete deep middle to M.Austin. Pass incomplete back right side of the end zone.,10,7,2012 -20120923_TB@DAL,3,25,35,DAL,TB,2,10,17,(10:35) (Shotgun) T.Romo pass incomplete to D.Murray [G.McCoy]. Shuffle pass. Tampa Bay challenged the fumble ruling and the play was REVERSED. (Shotgun) T.Romo sacked at TB 23 for -6 yards (G.McCoy). FUMBLES (G.McCoy) [G.McCoy] RECOVERED by TB-G.Gibson at TB 19.,10,7,2012 -20120923_TB@DAL,3,25,26,TB,DAL,1,10,81,(10:26) (Shotgun) D.Martin up the middle to TB 22 for 3 yards (S.Lee).,7,10,2012 -20120923_TB@DAL,3,24,49,TB,DAL,2,7,78,(9:49) J.Freeman pass incomplete short left to V.Jackson (B.Carr).,7,10,2012 -20120923_TB@DAL,3,24,43,TB,DAL,3,7,78,(9:43) (Shotgun) J.Freeman pass short left to D.Ware to TB 33 for 11 yards (A.Spencer). Screen pass,7,10,2012 -20120923_TB@DAL,3,24,5,TB,DAL,1,10,67,(9:05) D.Martin right guard to TB 38 for 5 yards (S.Lee).,7,10,2012 -20120923_TB@DAL,3,23,23,TB,DAL,2,5,62,(8:23) D.Martin left tackle to TB 41 for 3 yards (T.Crawford).,7,10,2012 -20120923_TB@DAL,3,22,49,TB,DAL,3,2,59,(7:49) D.Ware left guard to TB 43 for 2 yards (V.Butler). DAL-B.Church was injured during the play. His return is Questionable.,7,10,2012 -20120923_TB@DAL,3,22,20,TB,DAL,1,10,57,(7:20) D.Martin up the middle to TB 44 for 1 yard (J.Price-Brent).,7,10,2012 -20120923_TB@DAL,3,21,41,TB,DAL,2,9,56,(6:41) J.Freeman pass incomplete short right to D.Clark. PENALTY on DAL-M.Silva Defensive Pass Interference 10 yards enforced at TB 44 - No Play.,7,10,2012 -20120923_TB@DAL,3,21,35,TB,DAL,1,10,46,(6:35) L.Blount right guard to DAL 42 for 4 yards (V.Butler).,7,10,2012 -20120923_TB@DAL,3,20,49,TB,DAL,2,6,42,(5:49) L.Blount left guard to DAL 42 for no gain (V.Butler; S.Lee).,7,10,2012 -20120923_TB@DAL,3,20,2,TB,DAL,3,6,42,(5:02) (Shotgun) J.Freeman pass incomplete short left to M.Williams [T.Crawford]. Pass thrown short on comeback pattern.,7,10,2012 -20120923_TB@DAL,3,19,56,TB,DAL,4,6,42,(4:56) (Punt formation) M.Koenen punts 31 yards to DAL 11 Center-A.Economos fair catch by D.Harris.,7,10,2012 -20120923_TB@DAL,3,19,48,DAL,TB,1,10,89,(4:48) T.Romo pass short left to L.Vickers to DAL 16 for 5 yards (R.Miller). Pass complete on check off in the flat.,10,7,2012 -20120923_TB@DAL,3,19,6,DAL,TB,2,5,84,"(4:06) T.Romo pass short middle to D.Bryant to DAL 34 for 18 yards (A.Talib). Pass complete on a ""post"" pattern.",10,7,2012 -20120923_TB@DAL,3,18,24,DAL,TB,1,10,66,(3:24) (Shotgun) D.Murray right end to DAL 41 for 7 yards (M.Barron).,10,7,2012 -20120923_TB@DAL,3,17,46,DAL,TB,2,3,59,(2:46) (Shotgun) F.Jones right tackle to DAL 40 for -1 yards (M.Foster). Injury update: Barry Church has a right leg injury and will not return to the game.,10,7,2012 -20120923_TB@DAL,3,17,7,DAL,TB,3,4,60,(2:07) (No Huddle Shotgun) T.Romo sacked at DAL 32 for -8 yards (M.Bennett). Tampa Bay challenged the loose ball recovery ruling and the play was REVERSED. (No Huddle Shotgun) T.Romo sacked at DAL 32 for -8 yards (M.Bennett). FUMBLES (M.Bennett) RECOVERED by TB-E.Wright at DAL 31.,10,7,2012 -20120923_TB@DAL,3,17,3,TB,DAL,1,10,31,(2:03) (Shotgun) J.Freeman pass incomplete short left. PENALTY on TB-J.Freeman Intentional Grounding 10 yards enforced at DAL 31. Heavy pressure by Sean Lee,7,10,2012 -20120923_TB@DAL,3,16,59,TB,DAL,2,20,41,"(1:59) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson (M.Jenkins). Pass incomplete on a ""fly"" pattern at the Dallas 12 sideline.",7,10,2012 -20120923_TB@DAL,3,16,51,TB,DAL,3,20,41,(1:51) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson. Pass incomplete at the Dallas 20.,7,10,2012 -20120923_TB@DAL,3,16,44,TB,DAL,4,20,41,(1:44) (Punt formation) M.Koenen punts 41 yards to end zone Center-A.Economos Touchback.,7,10,2012 -20120923_TB@DAL,3,16,36,DAL,TB,1,10,80,(1:36) D.Murray up the middle to DAL 21 for 1 yard (M.Foster).,10,7,2012 -20120923_TB@DAL,3,16,3,DAL,TB,2,9,79,"(1:03) T.Romo pass deep right to M.Austin to TB 30 for 49 yards (E.Wright) [G.McCoy]. Pass complete on ""Deep Post"" pattern.",10,7,2012 -20120923_TB@DAL,3,15,11,DAL,TB,1,10,30,(:11) T.Romo pass incomplete short left to J.Witten. PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at TB 30 - No Play.,10,7,2012 -20120923_TB@DAL,3,15,5,DAL,TB,1,20,40,"(:05) (Shotgun) T.Romo pass incomplete deep middle to J.Witten. Pass incomplete on a ""Seam"" route.",10,7,2012 -20120923_TB@DAL,4,15,0,DAL,TB,2,20,40,"(15:00) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 23 for 17 yards (L.David). Pass complete on a ""Slant"" pattern.",10,7,2012 -20120923_TB@DAL,4,14,17,DAL,TB,3,3,23,"(14:17) (Shotgun) T.Romo pass short left to D.Bryant to TB 12 for 11 yards (M.Barron). Pass complete on a ""quick"" out.",10,7,2012 -20120923_TB@DAL,4,13,30,DAL,TB,1,10,12,"(13:30) (No Huddle) T.Romo pass short right to D.Murray pushed ob at TB 9 for 3 yards (E.Wright). Pass complete off a ""naked"" bootleg. Injury update: Miles Austin has a rib injury. He may return to the game.",10,7,2012 -20120923_TB@DAL,4,13,30,DAL,TB,2,7,9,(13:30) PENALTY on DAL-T.Smith False Start 5 yards enforced at TB 9 - No Play.,10,7,2012 -20120923_TB@DAL,4,12,34,DAL,TB,2,12,14,(12:34) (Shotgun) T.Romo sacked at TB 21 for -7 yards (G.McCoy). TB-A.Clayborn was injured during the play. His return is Probable.,10,7,2012 -20120923_TB@DAL,4,11,55,DAL,TB,3,19,21,(11:55) (Shotgun) T.Romo pass short left to F.Jones to TB 8 for 13 yards (A.Talib).,10,7,2012 -20120923_TB@DAL,4,11,14,DAL,TB,4,6,8,(11:14) (Field Goal formation) D.Bailey 26 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,10,7,2012 -20120923_TB@DAL,4,11,14,DAL,TB,,,8,D.Bailey kicks 68 yards from DAL 35 to TB -3. A.Benn to TB 12 for 15 yards (J.Hanna; P.Tanner). Return middle of the field.,13,7,2012 -20120923_TB@DAL,4,11,6,TB,DAL,1,10,88,(11:06) D.Martin up the middle to TB 15 for 3 yards (A.Spencer).,7,13,2012 -20120923_TB@DAL,4,10,32,TB,DAL,2,7,85,(10:32) J.Freeman pass incomplete short left to V.Jackson.,7,13,2012 -20120923_TB@DAL,4,10,26,TB,DAL,3,7,85,"(10:26) (Shotgun) J.Freeman pass incomplete short middle to D.Clark. Pass incomplete on a ""skinny"" post; McCray closest defender.",7,13,2012 -20120923_TB@DAL,4,10,22,TB,DAL,4,7,85,(10:22) (Punt formation) M.Koenen punts 43 yards to DAL 42 Center-A.Economos. D.Bryant to DAL 41 for -1 yards (Q.Black). PENALTY on DAL-P.Tanner Illegal Block Above the Waist 10 yards enforced at DAL 41. Injury update: Adrian Clayborn has a knee injury and will not return to the game.,7,13,2012 -20120923_TB@DAL,4,10,9,DAL,TB,1,10,69,"(10:09) T.Romo pass deep middle to M.Austin to DAL 48 for 17 yards (R.Barber). Pass complete on a ""Crossing"" pattern.",13,7,2012 -20120923_TB@DAL,4,9,31,DAL,TB,1,10,52,(9:31) D.Murray up the middle to DAL 46 for -2 yards (L.David).,13,7,2012 -20120923_TB@DAL,4,8,49,DAL,TB,2,12,54,(8:49) D.Murray up the middle to DAL 48 for 2 yards (L.David).,13,7,2012 -20120923_TB@DAL,4,8,9,DAL,TB,3,10,52,(8:09) (Shotgun) T.Romo pass short middle to K.Ogletree to TB 47 for 5 yards (R.Barber).,13,7,2012 -20120923_TB@DAL,4,7,36,DAL,TB,4,5,47,(7:36) (Punt formation) C.Jones punts 29 yards to TB 18 Center-L.Ladouceur fair catch by J.Shipley. PENALTY on TB-M.Lewis Unnecessary Roughness 9 yards enforced at TB 18.,13,7,2012 -20120923_TB@DAL,4,7,28,TB,DAL,1,10,91,(7:28) D.Martin right tackle to TB 13 for 4 yards (A.Spencer).,7,13,2012 -20120923_TB@DAL,4,6,48,TB,DAL,2,6,87,(6:48) D.Martin left tackle to TB 15 for 2 yards (T.Crawford).,7,13,2012 -20120923_TB@DAL,4,6,2,TB,DAL,3,4,85,(6:02) (Shotgun) J.Freeman sacked at TB 7 for -8 yards (D.Ware). FUMBLES (D.Ware) recovered by TB-D.Penn at TB 1. D.Penn to TB 1 for no gain (S.Lee).,7,13,2012 -20120923_TB@DAL,4,5,11,TB,DAL,4,18,99,(5:11) (Punt formation) PENALTY on TB-C.Grimm False Start 0 yards enforced at TB 1 - No Play.,7,13,2012 -20120923_TB@DAL,4,4,59,TB,DAL,4,18,99,(4:59) (Punt formation) M.Koenen punts 49 yards to TB 50 Center-A.Economos. D.Bryant to TB 6 for 44 yards (M.Foster).,7,13,2012 -20120923_TB@DAL,4,4,44,DAL,TB,1,6,6,(4:44) T.Romo pass short middle to T.Romo to TB 7 for -1 yards (B.McDonald). Ball tipped at the line of scrimmage by Michael Bennett,13,7,2012 -20120923_TB@DAL,4,3,53,DAL,TB,2,7,7,(3:53) D.Murray left end pushed ob at TB 1 for 6 yards (M.Barron). PENALTY on DAL-L.Vickers Offensive Holding 10 yards enforced at TB 7 - No Play.,13,7,2012 -20120923_TB@DAL,4,3,41,DAL,TB,2,17,17,(3:41) D.Murray right end pushed ob at TB 6 for 11 yards (M.Barron).,13,7,2012 -20120923_TB@DAL,4,3,34,DAL,TB,3,6,6,(3:34) D.Murray up the middle to TB 4 for 2 yards (R.Miller).,13,7,2012 -20120923_TB@DAL,4,2,47,DAL,TB,4,4,4,(2:47) (Field Goal formation) D.Bailey 22 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,13,7,2012 -20120923_TB@DAL,4,2,47,DAL,TB,,,4,D.Bailey kicks 74 yards from DAL 35 to TB -9. A.Benn Touchback. Ball was kicked out of the end zone.,16,7,2012 -20120923_TB@DAL,4,2,43,TB,DAL,1,10,80,(2:43) (Shotgun) D.Martin up the middle to TB 21 for 1 yard (A.Spencer).,7,16,2012 -20120923_TB@DAL,4,2,19,TB,DAL,2,9,79,(2:19) (No Huddle Shotgun) J.Freeman pass incomplete short middle to D.Martin. Pass thrown middle; Carter closest defender.,7,16,2012 -20120923_TB@DAL,4,2,13,TB,DAL,3,9,79,(2:13) (Shotgun) D.Martin right end to TB 19 for -2 yards (B.Carter). DAL-B.Carter was injured during the play. His return is Probable.,7,16,2012 -20120923_TB@DAL,4,2,0,TB,DAL,4,11,81,(2:00) (Shotgun) J.Freeman pass deep left to V.Jackson to TB 48 for 29 yards (O.Scandrick).,7,16,2012 -20120923_TB@DAL,4,1,33,TB,DAL,1,10,52,(1:33) (No Huddle Shotgun) J.Freeman pass short left to D.Martin to DAL 40 for 12 yards (O.Scandrick; D.Connor).,7,16,2012 -20120923_TB@DAL,4,1,26,TB,DAL,1,10,40,"(1:26) (Shotgun) J.Freeman pass incomplete short middle to M.Williams (L.Lewis). Pass incomplete on a ""Crossing"" pattern.",7,16,2012 -20120923_TB@DAL,4,1,22,TB,DAL,2,10,40,"(1:22) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at DAL 17 for 23 yards (L.Lewis). Pass complete on a ""fly"" pattern.",7,16,2012 -20120923_TB@DAL,4,1,16,TB,DAL,1,10,17,(1:16) (Shotgun) J.Freeman pass short left to T.Underwood to DAL 10 for 7 yards (M.Claiborne).,7,16,2012 -20120923_TB@DAL,4,0,56,TB,DAL,2,3,10,(:56) (No Huddle) J.Freeman pass incomplete short left to M.Williams [D.Ware].,7,16,2012 -20120923_TB@DAL,4,0,49,TB,DAL,3,3,10,"(:49) (Shotgun) J.Freeman pass incomplete short middle to D.Clark. DAL-M.Claiborne was injured during the play. His return is Probable. Pass incomplete on a ""Crossing"" pattern; McCray closest defender.",7,16,2012 -20120923_TB@DAL,4,0,44,TB,DAL,4,3,10,(:44) (Field Goal formation) C.Barth 28 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,16,2012 -20120923_TB@DAL,4,0,44,TB,DAL,,,10,M.Koenen kicks onside 7 yards from TB 35 to TB 42. J.Hanna to TB 42 for no gain.,10,16,2012 -20120923_TB@DAL,4,0,40,DAL,TB,1,10,42,(:40) T.Romo kneels to TB 46 for -4 yards.,16,10,2012 -20120923_TB@DAL,4,0,14,DAL,TB,2,14,46,(:14) T.Romo kneels to TB 48 for -2 yards.,16,10,2012 -20120923_TB@DAL,4,0,7,DAL,TB,3,16,48,(:07) T.Romo kneels to TB 50 for -2 yards. Penalty on TB Defensive Offside declined.,16,10,2012 -20120923_TB@DAL,4,0,7,DAL,TB,,,48,                      ,16,10,2012 -20120923_JAC@IND,1,0,0,IND,JAC,,,48,P.McAfee kicks 71 yards from IND 35 to JAX -6. J.Parmele Touchback.,0,0,2012 -20120923_JAC@IND,1,60,0,JAC,IND,1,10,80,(15:00) (Run formation) M.Jones-Drew up the middle to JAX 26 for 6 yards (K.Conner).,0,0,2012 -20120923_JAC@IND,1,59,29,JAC,IND,2,4,74,(14:29) (Run formation) M.Jones-Drew right end to JAX 25 for -1 yards (J.Hughes).,0,0,2012 -20120923_JAC@IND,1,58,54,JAC,IND,3,5,75,(13:54) (Shotgun) B.Gabbert pass short middle to M.Thomas to JAX 33 for 8 yards (M.Fokou; J.King).,0,0,2012 -20120923_JAC@IND,1,58,15,JAC,IND,1,10,67,(13:15) B.Gabbert pass short right to J.Blackmon to JAX 40 for 7 yards (J.Powers). Penalty on IND-J.Hughes Defensive Offside declined.,0,0,2012 -20120923_JAC@IND,1,57,54,JAC,IND,2,3,60,(12:54) (Run formation) M.Jones-Drew right end pushed ob at JAX 49 for 9 yards (K.Conner).,0,0,2012 -20120923_JAC@IND,1,57,11,JAC,IND,1,10,51,(12:11) (Run formation) B.Gabbert pass incomplete short right to L.Robinson.,0,0,2012 -20120923_JAC@IND,1,57,6,JAC,IND,2,10,51,(12:06) (Run formation) B.Gabbert scrambles right end pushed ob at IND 42 for 9 yards (J.Freeman).,0,0,2012 -20120923_JAC@IND,1,56,32,JAC,IND,3,1,42,(11:32) (Run formation) B.Gabbert up the middle to IND 40 for 2 yards (K.Conner; A.Johnson).,0,0,2012 -20120923_JAC@IND,1,55,42,JAC,IND,1,10,40,(10:42) (Run formation) M.Jones-Drew up the middle to IND 34 for 6 yards (J.Hughes).,0,0,2012 -20120923_JAC@IND,1,55,7,JAC,IND,2,4,34,(10:07) (Run formation) M.Jones-Drew up the middle to IND 26 for 8 yards (T.Zbikowski; J.Freeman).,0,0,2012 -20120923_JAC@IND,1,54,29,JAC,IND,1,10,26,(9:29) (Run formation) C.Shorts left end to IND 30 for -4 yards (F.Moala).,0,0,2012 -20120923_JAC@IND,1,53,41,JAC,IND,2,14,30,(8:41) B.Gabbert pass short left to M.Jones-Drew to IND 19 for 11 yards (J.Freeman).,0,0,2012 -20120923_JAC@IND,1,53,5,JAC,IND,3,3,19,(8:05) (Shotgun) B.Gabbert sacked at IND 26 for -7 yards (R.Mathis). FUMBLES (R.Mathis) recovered by JAX-G.Whimper at IND 26. G.Whimper to IND 26 for no gain (D.Nevis).,0,0,2012 -20120923_JAC@IND,1,52,19,JAC,IND,4,10,26,(7:19) J.Scobee 44 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20120923_JAC@IND,1,52,19,JAC,IND,,,26,J.Scobee kicks 65 yards from JAX 35 to IND 0. T.Hilton to IND 17 for 17 yards (M.Owens). PENALTY on JAX-A.Blake Offside on Free Kick 5 yards enforced at JAX 35 - No Play.,3,0,2012 -20120923_JAC@IND,1,52,19,JAC,IND,,,26,J.Scobee kicks 70 yards from JAX 30 to IND 0. T.Hilton to IND 26 for 26 yards (J.Parmele).,3,0,2012 -20120923_JAC@IND,1,52,1,IND,JAC,1,10,74,(7:01) (Run formation) A.Luck pass incomplete short right to C.Fleener [K.Bosworth].,0,3,2012 -20120923_JAC@IND,1,51,54,IND,JAC,2,10,74,(6:54) A.Luck pass short left to R.Wayne to IND 30 for 4 yards (P.Posluszny).,0,3,2012 -20120923_JAC@IND,1,51,10,IND,JAC,3,6,70,(6:10) (Shotgun) A.Luck pass short right intended for A.Collie INTERCEPTED by R.Mathis at IND 38. R.Mathis to IND 29 for 9 yards (S.Olsen). PENALTY on JAX-R.Mathis Defensive Pass Interference 12 yards enforced at IND 30 - No Play.,0,3,2012 -20120923_JAC@IND,1,50,57,IND,JAC,1,10,58,(5:57) D.Brown right guard to IND 44 for 2 yards (P.Posluszny; K.Bosworth).,0,3,2012 -20120923_JAC@IND,1,50,18,IND,JAC,2,8,56,(5:18) (Run formation) V.Ballard left tackle to IND 48 for 4 yards (K.Bosworth).,0,3,2012 -20120923_JAC@IND,1,49,36,IND,JAC,3,4,52,(4:36) (Shotgun) A.Luck pass short middle to R.Wayne to JAX 40 for 12 yards (R.Mathis).,0,3,2012 -20120923_JAC@IND,1,48,48,IND,JAC,1,10,40,(3:48) (Shotgun) A.Luck pass deep right to T.Hilton for 40 yards TOUCHDOWN.,0,3,2012 -20120923_JAC@IND,1,48,48,IND,JAC,,,40,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 -20120923_JAC@IND,1,48,48,IND,JAC,,,40,P.McAfee kicks 74 yards from IND 35 to JAX -9. J.Parmele Touchback.,7,3,2012 -20120923_JAC@IND,1,48,42,JAC,IND,1,10,80,(3:42) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon.,3,7,2012 -20120923_JAC@IND,1,48,39,JAC,IND,2,10,80,(3:39) (Run formation) M.Jones-Drew up the middle to JAX 22 for 2 yards (C.Redding; V.Davis).,3,7,2012 -20120923_JAC@IND,1,48,0,JAC,IND,3,8,78,(3:00) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 27 for 5 yards (J.Freeman).,3,7,2012 -20120923_JAC@IND,1,47,22,JAC,IND,4,3,73,(2:22) B.Anger punts 42 yards to IND 31 Center-J.Cain. T.Hilton pushed ob at JAX 37 for 32 yards (B.Anger). PENALTY on IND-M.Fokou Illegal Block Above the Waist 10 yards enforced at IND 37.,3,7,2012 -20120923_JAC@IND,1,47,5,IND,JAC,1,10,73,(2:05) (Run formation) D.Brown left tackle to IND 30 for 3 yards (K.Bosworth; P.Posluszny).,7,3,2012 -20120923_JAC@IND,1,46,19,IND,JAC,2,7,70,(1:19) (Run formation) A.Luck pass short middle to D.Allen to IND 35 for 5 yards (K.Bosworth).,7,3,2012 -20120923_JAC@IND,1,45,37,IND,JAC,3,2,65,(:37) (Shotgun) M.Moore up the middle to IND 32 for -3 yards (R.Allen; D.Landry).,7,3,2012 -20120923_JAC@IND,1,45,3,IND,JAC,4,5,68,(:03) P.McAfee punts 49 yards to JAX 19 Center-M.Overton. M.Thomas to JAX 21 for 2 yards (J.Lefeged; S.Brown).,7,3,2012 -20120923_JAC@IND,2,45,0,JAC,IND,1,10,79,(15:00) (Run formation) M.Jones-Drew left end to JAX 30 for 9 yards (J.Freeman).,3,7,2012 -20120923_JAC@IND,2,44,27,JAC,IND,2,1,70,(14:27) (Run formation) M.Jones-Drew up the middle to JAX 33 for 3 yards (K.Conner).,3,7,2012 -20120923_JAC@IND,2,43,47,JAC,IND,1,10,67,(13:47) B.Gabbert pass incomplete short right to J.Blackmon.,3,7,2012 -20120923_JAC@IND,2,43,43,JAC,IND,2,10,67,(13:43) B.Gabbert pass incomplete deep right to J.Blackmon [R.Mathews].,3,7,2012 -20120923_JAC@IND,2,43,38,JAC,IND,3,10,67,(13:38) (Shotgun) B.Gabbert pass incomplete short left to M.Thomas.,3,7,2012 -20120923_JAC@IND,2,43,33,JAC,IND,4,10,67,(13:33) B.Anger punts 52 yards to IND 15 Center-J.Cain fair catch by T.Hilton.,3,7,2012 -20120923_JAC@IND,2,43,25,IND,JAC,1,10,85,(13:25) (Shotgun) A.Luck pass incomplete short left to D.Avery.,7,3,2012 -20120923_JAC@IND,2,43,21,IND,JAC,2,10,85,(13:21) (Run formation) A.Luck pass incomplete short middle to R.Wayne.,7,3,2012 -20120923_JAC@IND,2,43,9,IND,JAC,3,10,85,(13:09) (Shotgun) A.Luck scrambles right end to IND 34 for 19 yards (W.Middleton).,7,3,2012 -20120923_JAC@IND,2,42,24,IND,JAC,1,10,66,(12:24) (Run formation) V.Ballard right tackle to IND 34 for no gain (DA.Smith).,7,3,2012 -20120923_JAC@IND,2,41,42,IND,JAC,2,10,66,(11:42) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,7,3,2012 -20120923_JAC@IND,2,41,39,IND,JAC,3,10,66,(11:39) (Shotgun) A.Luck scrambles left end to IND 47 for 13 yards (D.Lowery).,7,3,2012 -20120923_JAC@IND,2,40,52,IND,JAC,1,10,53,(10:52) A.Luck pass incomplete deep right to D.Avery (D.Lowery) [DA.Smith].,7,3,2012 -20120923_JAC@IND,2,40,44,IND,JAC,2,10,53,(10:44) (Run formation) V.Ballard up the middle to IND 46 for -1 yards (K.Bosworth; T.Alualu).,7,3,2012 -20120923_JAC@IND,2,40,1,IND,JAC,3,11,54,(10:01) (Shotgun) A.Luck pass short right to D.Allen to JAX 49 for 5 yards (R.Mathis).,7,3,2012 -20120923_JAC@IND,2,39,22,IND,JAC,4,6,49,(9:22) P.McAfee punts 37 yards to JAX 12 Center-M.Overton fair catch by M.Thomas.,7,3,2012 -20120923_JAC@IND,2,39,14,JAC,IND,1,10,88,(9:14) (Run formation) M.Jones-Drew up the middle to JAX 12 for no gain (M.Tevaseu).,3,7,2012 -20120923_JAC@IND,2,38,34,JAC,IND,2,10,88,(8:34) M.Jones-Drew up the middle to JAX 31 for 19 yards (T.Zbikowski).,3,7,2012 -20120923_JAC@IND,2,37,55,JAC,IND,1,10,69,(7:55) (Run formation) M.Jones-Drew right end to JAX 32 for 1 yard (A.Johnson).,3,7,2012 -20120923_JAC@IND,2,37,16,JAC,IND,2,9,68,(7:16) B.Gabbert sacked at JAX 28 for -4 yards (A.Johnson). Penalty on IND-A.Johnson Defensive Offside declined. PENALTY on JAX-M.Brewster Unnecessary Roughness 15 yards enforced at JAX 32 - No Play.,3,7,2012 -20120923_JAC@IND,2,36,56,JAC,IND,2,24,83,(6:56) B.Gabbert pass short left to G.Jones to JAX 26 for 9 yards (J.Hickman; F.Moala).,3,7,2012 -20120923_JAC@IND,2,36,14,JAC,IND,3,15,74,(6:14) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 34 for 8 yards (M.Fokou).,3,7,2012 -20120923_JAC@IND,2,35,35,JAC,IND,4,7,66,(5:35) B.Anger punts 66 yards to IND 0 Center-J.Cain. T.Hilton Touchback.,3,7,2012 -20120923_JAC@IND,2,35,30,IND,JAC,1,10,80,(5:30) (Run formation) D.Brown up the middle to IND 29 for 9 yards (D.Cox).,7,3,2012 -20120923_JAC@IND,2,34,55,IND,JAC,2,1,71,(4:55) (Run formation) D.Brown up the middle to IND 27 for -2 yards (J.Stanford).,7,3,2012 -20120923_JAC@IND,2,34,9,IND,JAC,3,3,73,(4:09) (Shotgun) A.Luck pass short middle to R.Wayne to IND 40 for 13 yards (R.Allen).,7,3,2012 -20120923_JAC@IND,2,33,31,IND,JAC,1,10,60,(3:31) (Run formation) D.Brown up the middle to IND 44 for 4 yards (J.Stanford; R.Allen).,7,3,2012 -20120923_JAC@IND,2,32,52,IND,JAC,2,6,56,(2:52) (Shotgun) A.Luck pass short right to D.Avery ran ob at JAX 43 for 13 yards.,7,3,2012 -20120923_JAC@IND,2,32,24,IND,JAC,1,10,43,(2:24) (Shotgun) PENALTY on IND-M.McGlynn False Start 5 yards enforced at JAX 43 - No Play.,7,3,2012 -20120923_JAC@IND,2,32,4,IND,JAC,1,15,48,(2:04) (Shotgun) A.Luck pass incomplete short right to T.Hilton.,7,3,2012 -20120923_JAC@IND,2,31,59,IND,JAC,2,15,48,(1:59) (Shotgun) A.Luck pass short right to R.Wayne pushed ob at JAX 35 for 13 yards (D.Lowery).,7,3,2012 -20120923_JAC@IND,2,31,54,IND,JAC,3,2,35,(1:54) (Run formation) M.Moore left tackle to JAX 32 for 3 yards (P.Posluszny).,7,3,2012 -20120923_JAC@IND,2,31,19,IND,JAC,1,10,32,(1:19) (Shotgun) A.Luck pass short middle to R.Wayne to JAX 20 for 12 yards (D.Landry) [R.Allen].,7,3,2012 -20120923_JAC@IND,2,31,11,IND,JAC,1,10,20,(1:11) (Shotgun) A.Luck pass incomplete short left to T.Hilton.,7,3,2012 -20120923_JAC@IND,2,31,7,IND,JAC,2,10,20,(1:07) (Shotgun) A.Luck pass incomplete deep right to T.Hilton (D.Lowery).,7,3,2012 -20120923_JAC@IND,2,31,1,IND,JAC,3,10,20,(1:01) (Shotgun) A.Luck pass short left to R.Wayne to JAX 4 for 16 yards (D.Cox).,7,3,2012 -20120923_JAC@IND,2,30,43,IND,JAC,1,4,4,(:43) A.Luck spiked the ball to stop the clock.,7,3,2012 -20120923_JAC@IND,2,30,42,IND,JAC,2,4,4,(:42) (Shotgun) A.Luck pass short middle to M.Moore for 4 yards TOUCHDOWN [A.Branch].,7,3,2012 -20120923_JAC@IND,2,30,42,IND,JAC,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,3,2012 -20120923_JAC@IND,2,30,42,IND,JAC,,,4,P.McAfee kicks 71 yards from IND 35 to JAX -6. M.Thomas to JAX 14 for 20 yards (L.Brazill).,14,3,2012 -20120923_JAC@IND,2,30,33,JAC,IND,1,10,86,(:33) (Shotgun) M.Jones-Drew up the middle to JAX 22 for 8 yards (M.Fokou).,3,14,2012 -20120923_JAC@IND,3,30,0,JAC,IND,,,86,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn to IND 17 for 22 yards (C.Prosinski).,3,14,2012 -20120923_JAC@IND,3,29,55,IND,JAC,1,10,83,(14:55) (Run formation) A.Luck pass short left to R.Wayne to IND 30 for 13 yards (D.Cox).,14,3,2012 -20120923_JAC@IND,3,29,19,IND,JAC,1,10,70,(14:19) (Run formation) D.Brown up the middle to IND 30 for no gain (T.Alualu).,14,3,2012 -20120923_JAC@IND,3,28,42,IND,JAC,2,10,70,(13:42) (Shotgun) D.Brown right tackle to IND 40 for 10 yards (D.Lowery). PENALTY on IND-S.Olsen Offensive Holding 10 yards enforced at IND 30 - No Play.,14,3,2012 -20120923_JAC@IND,3,28,15,IND,JAC,2,20,80,(13:15) (Shotgun) A.Luck pass short right to T.Hilton to IND 25 for 5 yards (R.Allen).,14,3,2012 -20120923_JAC@IND,3,27,33,IND,JAC,3,15,75,(12:33) (Shotgun) A.Luck pass incomplete short left to D.Avery [T.Knighton].,14,3,2012 -20120923_JAC@IND,3,27,28,IND,JAC,4,15,75,(12:28) P.McAfee punts 53 yards to JAX 22 Center-M.Overton. M.Thomas to JAX 26 for 4 yards (M.Overton). PENALTY on IND-D.Jones Face Mask (15 Yards) 15 yards enforced at JAX 26.,14,3,2012 -20120923_JAC@IND,3,27,16,JAC,IND,1,10,59,(12:16) (Run formation) M.Jones-Drew up the middle for 59 yards TOUCHDOWN.,3,14,2012 -20120923_JAC@IND,3,27,16,JAC,IND,,,59,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,3,14,2012 -20120923_JAC@IND,3,27,16,JAC,IND,,,59,J.Scobee kicks 72 yards from JAX 35 to IND -7. C.Vaughn Touchback.,10,14,2012 -20120923_JAC@IND,3,27,5,IND,JAC,1,10,80,(12:05) (Run formation) D.Brown left end to IND 28 for 8 yards (K.Bosworth).,14,10,2012 -20120923_JAC@IND,3,26,22,IND,JAC,2,2,72,(11:22) (Run formation) D.Brown right tackle to IND 28 for no gain (D.Landry).,14,10,2012 -20120923_JAC@IND,3,25,38,IND,JAC,3,2,72,(10:38) (Shotgun) A.Luck pass short right to R.Wayne ran ob at IND 33 for 5 yards (A.Ross).,14,10,2012 -20120923_JAC@IND,3,25,5,IND,JAC,1,10,67,(10:05) (Run formation) A.Luck pass incomplete deep left to D.Allen.,14,10,2012 -20120923_JAC@IND,3,24,56,IND,JAC,2,10,67,(9:56) (Run formation) A.Luck pass short middle to A.Collie to IND 39 for 6 yards (P.Posluszny). IND-A.Collie was injured during the play. He is Out.,14,10,2012 -20120923_JAC@IND,3,24,35,IND,JAC,3,4,61,(9:35) (Shotgun) A.Luck pass incomplete short left to C.Fleener (R.Allen).,14,10,2012 -20120923_JAC@IND,3,24,30,IND,JAC,4,4,61,(9:30) P.McAfee punts 38 yards to JAX 23 Center-M.Overton. M.Thomas to JAX 25 for 2 yards (J.Lefeged).,14,10,2012 -20120923_JAC@IND,3,24,20,JAC,IND,1,10,75,(9:20) (Run formation) B.Gabbert pass incomplete short right to G.Jones.,10,14,2012 -20120923_JAC@IND,3,24,16,JAC,IND,2,10,75,(9:16) (Run formation) M.Jones-Drew left tackle to JAX 28 for 3 yards (K.Conner).,10,14,2012 -20120923_JAC@IND,3,23,36,JAC,IND,3,7,72,(8:36) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas (V.Davis).,10,14,2012 -20120923_JAC@IND,3,23,30,JAC,IND,4,7,72,(8:30) B.Anger punts 46 yards to IND 26 Center-J.Cain. T.Hilton to IND 26 for no gain (K.Elliott). PENALTY on JAX-Z.Potter Offensive Holding 10 yards enforced at IND 26.,10,14,2012 -20120923_JAC@IND,3,23,20,IND,JAC,1,10,64,(8:20) V.Ballard left tackle to IND 41 for 5 yards (P.Posluszny).,14,10,2012 -20120923_JAC@IND,3,22,46,IND,JAC,2,5,59,(7:46) V.Ballard up the middle to IND 45 for 4 yards (R.Allen).,14,10,2012 -20120923_JAC@IND,3,22,4,IND,JAC,3,1,55,(7:04) (Run formation) A.Luck pass short right to D.Allen to IND 49 for 4 yards (R.Mathis).,14,10,2012 -20120923_JAC@IND,3,21,29,IND,JAC,1,10,51,(6:29) (Run formation) A.Luck pass deep middle intended for R.Wayne INTERCEPTED by P.Posluszny at JAX 33. P.Posluszny to JAX 46 for 13 yards. Lateral to D.Landry to IND 45 for 9 yards (A.Luck).,14,10,2012 -20120923_JAC@IND,3,21,18,JAC,IND,1,10,45,(6:18) (Run formation) M.Jones-Drew up the middle to IND 40 for 5 yards (J.Freeman).,10,14,2012 -20120923_JAC@IND,3,20,44,JAC,IND,2,5,40,(5:44) (Run formation) M.Jones-Drew up the middle to IND 36 for 4 yards (M.Tevaseu).,10,14,2012 -20120923_JAC@IND,3,20,6,JAC,IND,3,1,36,(5:06) (Run formation) G.Jones up the middle to IND 35 for 1 yard (R.Mathis).,10,14,2012 -20120923_JAC@IND,3,19,23,JAC,IND,1,10,35,(4:23) (Run formation) B.Gabbert pass short right to G.Jones to IND 32 for 3 yards (K.Conner; J.Freeman).,10,14,2012 -20120923_JAC@IND,3,18,47,JAC,IND,2,7,32,(3:47) (Run formation) M.Jones-Drew up the middle to IND 29 for 3 yards (F.Moala).,10,14,2012 -20120923_JAC@IND,3,18,7,JAC,IND,3,4,29,(3:07) (Shotgun) B.Gabbert pass incomplete short middle to C.Shorts [D.Nevis].,10,14,2012 -20120923_JAC@IND,3,18,0,JAC,IND,4,4,29,(3:00) J.Scobee 47 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,10,14,2012 -20120923_JAC@IND,3,18,0,JAC,IND,,,29,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn pushed ob at IND 26 for 31 yards (M.Harris).,13,14,2012 -20120923_JAC@IND,3,17,49,IND,JAC,1,10,74,(2:49) A.Luck pass short right to D.Avery ran ob at IND 41 for 15 yards.,14,13,2012 -20120923_JAC@IND,3,17,24,IND,JAC,1,10,59,(2:24) D.Brown left tackle to IND 45 for 4 yards (R.Allen).,14,13,2012 -20120923_JAC@IND,3,16,44,IND,JAC,2,6,55,(1:44) (Shotgun) A.Luck pass incomplete short middle to D.Avery (R.Mathis).,14,13,2012 -20120923_JAC@IND,3,16,39,IND,JAC,3,6,55,(1:39) (Shotgun) A.Luck pass incomplete short left to D.Avery (W.Middleton).,14,13,2012 -20120923_JAC@IND,3,16,36,IND,JAC,4,6,55,(1:36) P.McAfee punts 40 yards to JAX 15 Center-M.Overton out of bounds.,14,13,2012 -20120923_JAC@IND,3,16,27,JAC,IND,1,10,85,(1:27) (Run formation) M.Jones-Drew up the middle to JAX 18 for 3 yards (T.Zbikowski). PENALTY on IND-R.Mathis Defensive Offside 5 yards enforced at JAX 15 - No Play.,13,14,2012 -20120923_JAC@IND,3,16,4,JAC,IND,1,5,80,(1:04) (Run formation) M.Jones-Drew left guard to JAX 26 for 6 yards (J.Freeman).,13,14,2012 -20120923_JAC@IND,3,15,26,JAC,IND,1,10,74,(:26) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (T.Zbikowski). PENALTY on IND-V.Davis Defensive Pass Interference 14 yards enforced at JAX 26 - No Play.,13,14,2012 -20120923_JAC@IND,3,15,21,JAC,IND,1,10,60,(:21) (Run formation) M.Jones-Drew left end to JAX 40 for no gain (V.Davis). PENALTY on JAX-B.Meester Offensive Holding 10 yards enforced at JAX 40 - No Play.,13,14,2012 -20120923_JAC@IND,3,15,4,JAC,IND,1,20,70,(:04) (Shotgun) B.Gabbert pass deep middle to K.Elliott to IND 48 for 22 yards (T.Zbikowski).,13,14,2012 -20120923_JAC@IND,4,15,0,JAC,IND,1,10,48,(15:00) (Run formation) M.Jones-Drew up the middle to IND 40 for 8 yards (J.Hughes). IND-R.Mathis was injured during the play.,13,14,2012 -20120923_JAC@IND,4,14,42,JAC,IND,2,2,40,(14:42) (Run formation) M.Jones-Drew up the middle to IND 35 for 5 yards (K.Conner).,13,14,2012 -20120923_JAC@IND,4,14,7,JAC,IND,1,10,35,(14:07) (Run formation) M.Jones-Drew up the middle to IND 29 for 6 yards (J.Hickman).,13,14,2012 -20120923_JAC@IND,4,13,27,JAC,IND,2,4,29,(13:27) B.Gabbert pass short left to K.Elliott to IND 27 for 2 yards (V.Davis).,13,14,2012 -20120923_JAC@IND,4,12,46,JAC,IND,3,2,27,(12:46) (Shotgun) M.Jones-Drew left tackle to IND 24 for 3 yards (M.Fokou).,13,14,2012 -20120923_JAC@IND,4,12,4,JAC,IND,1,10,24,(12:04) (Shotgun) B.Gabbert pass incomplete deep left to K.Elliott [K.Conner]. PENALTY on IND-V.Davis Defensive Pass Interference 15 yards enforced at IND 24 - No Play.,13,14,2012 -20120923_JAC@IND,4,11,59,JAC,IND,1,9,9,(11:59) (Run formation) M.Jones-Drew right end to IND 8 for 1 yard (M.Tevaseu).,13,14,2012 -20120923_JAC@IND,4,11,16,JAC,IND,2,8,8,(11:16) (Run formation) B.Gabbert pass incomplete short middle to J.Blackmon (J.Powers). Indianapolis challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),13,14,2012 -20120923_JAC@IND,4,11,9,JAC,IND,3,8,8,(11:09) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott [F.Moala].,13,14,2012 -20120923_JAC@IND,4,11,5,JAC,IND,4,8,8,(11:05) J.Scobee 26 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,13,14,2012 -20120923_JAC@IND,4,11,5,JAC,IND,,,8,J.Scobee kicks 70 yards from JAX 35 to IND -5. C.Vaughn to IND 20 for 25 yards (M.Harris). PENALTY on IND-M.Harvey Offensive Holding 7 yards enforced at IND 15.,16,14,2012 -20120923_JAC@IND,4,10,55,IND,JAC,1,10,92,(10:55) (Run formation) D.Brown left end to IND 12 for 4 yards (A.Ross).,14,16,2012 -20120923_JAC@IND,4,10,18,IND,JAC,2,6,88,(10:18) (Run formation) A.Luck pass short middle to D.Allen to IND 29 for 17 yards (R.Allen).,14,16,2012 -20120923_JAC@IND,4,9,45,IND,JAC,1,10,71,(9:45) (Run formation) D.Brown left end pushed ob at IND 35 for 6 yards (W.Middleton).,14,16,2012 -20120923_JAC@IND,4,9,15,IND,JAC,2,4,65,(9:15) (Run formation) A.Luck pass incomplete short right to R.Wayne (P.Posluszny).,14,16,2012 -20120923_JAC@IND,4,9,11,IND,JAC,3,4,65,(9:11) (Shotgun) A.Luck scrambles right end to IND 43 for 8 yards (R.Allen).,14,16,2012 -20120923_JAC@IND,4,8,24,IND,JAC,1,10,57,(8:24) D.Brown right end pushed ob at JAX 48 for 9 yards (D.Landry; W.Middleton).,14,16,2012 -20120923_JAC@IND,4,7,44,IND,JAC,2,1,48,(7:44) (Run formation) D.Brown up the middle to JAX 47 for 1 yard (R.Allen).,14,16,2012 -20120923_JAC@IND,4,7,2,IND,JAC,1,10,47,(7:02) (Run formation) A.Luck scrambles left end ran ob at JAX 37 for 10 yards. PENALTY on JAX-R.Allen Unnecessary Roughness 15 yards enforced at JAX 37.,14,16,2012 -20120923_JAC@IND,4,6,43,IND,JAC,1,10,22,(6:43) (Run formation) D.Brown left end ran ob at JAX 19 for 3 yards.,14,16,2012 -20120923_JAC@IND,4,6,13,IND,JAC,2,7,19,(6:13) (Run formation) D.Brown left end pushed ob at JAX 17 for 2 yards (D.Landry).,14,16,2012 -20120923_JAC@IND,4,5,37,IND,JAC,3,5,17,(5:37) (Shotgun) A.Luck pass short middle to D.Allen to JAX 13 for 4 yards (M.Harris).,14,16,2012 -20120923_JAC@IND,4,4,45,IND,JAC,4,1,13,(4:45) (Field Goal formation) PENALTY on IND-A.Vinatieri Delay of Game 5 yards enforced at JAX 13 - No Play.,14,16,2012 -20120923_JAC@IND,4,4,45,IND,JAC,4,6,18,(4:45) A.Vinatieri 36 yard field goal is No Good Wide Left Center-M.Overton Holder-P.McAfee.,14,16,2012 -20120923_JAC@IND,4,4,40,JAC,IND,1,10,74,(4:40) (Run formation) M.Jones-Drew up the middle to JAX 29 for 3 yards (R.Mathews).,16,14,2012 -20120923_JAC@IND,4,3,57,JAC,IND,2,7,71,(3:57) M.Jones-Drew up the middle to JAX 29 for no gain (R.Mathis; V.Davis). IND-V.Davis was injured during the play.,16,14,2012 -20120923_JAC@IND,4,3,20,JAC,IND,3,7,71,(3:20) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (A.Bethea).,16,14,2012 -20120923_JAC@IND,4,3,15,JAC,IND,4,7,71,(3:15) B.Anger punts 55 yards to IND 16 Center-J.Cain. T.Hilton to IND 25 for 9 yards (A.Blake; J.Cain).,16,14,2012 -20120923_JAC@IND,4,3,2,IND,JAC,1,10,75,(3:02) (Shotgun) A.Luck scrambles left end ran ob at IND 31 for 6 yards. PENALTY on IND-D.Allen Offensive Holding 10 yards enforced at IND 25 - No Play.,14,16,2012 -20120923_JAC@IND,4,2,56,IND,JAC,1,20,85,(2:56) (Shotgun) A.Luck pass deep left to T.Hilton to IND 47 for 32 yards (W.Middleton).,14,16,2012 -20120923_JAC@IND,4,2,32,IND,JAC,1,10,53,(2:32) (No Huddle Shotgun) A.Luck pass incomplete short right to D.Avery.,14,16,2012 -20120923_JAC@IND,4,2,28,IND,JAC,2,10,53,(2:28) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,14,16,2012 -20120923_JAC@IND,4,2,23,IND,JAC,3,10,53,(2:23) (Shotgun) A.Luck pass incomplete deep middle to R.Wayne. PENALTY on IND-M.Moore Offensive Holding 10 yards enforced at IND 47 - No Play.,14,16,2012 -20120923_JAC@IND,4,2,17,IND,JAC,3,20,63,(2:17) (Shotgun) A.Luck pass incomplete deep middle to D.Avery.,14,16,2012 -20120923_JAC@IND,4,2,10,IND,JAC,4,20,63,(2:10) P.McAfee punts 63 yards to JAX 0 Center-M.Overton. M.Thomas Touchback.,14,16,2012 -20120923_JAC@IND,4,2,1,JAC,IND,1,10,80,(2:01) (Run formation) M.Jones-Drew right tackle to JAX 24 for 4 yards (J.Freeman).,16,14,2012 -20120923_JAC@IND,4,1,56,JAC,IND,2,6,76,(1:56) (Run formation) M.Jones-Drew up the middle to JAX 23 for -1 yards. FUMBLES and recovers at JAX 21. M.Jones-Drew to JAX 21 for no gain (J.Powers).,16,14,2012 -20120923_JAC@IND,4,1,50,JAC,IND,3,9,79,(1:50) (Shotgun) M.Jones-Drew up the middle to JAX 21 for no gain (S.Brown).,16,14,2012 -20120923_JAC@IND,4,1,46,JAC,IND,4,9,79,(1:46) B.Anger punts 60 yards to IND 19 Center-J.Cain. T.Hilton to IND 33 for 14 yards (K.Bosworth; J.Stanford).,16,14,2012 -20120923_JAC@IND,4,1,33,IND,JAC,1,10,67,(1:33) (Shotgun) A.Luck pass short left to D.Brown pushed ob at JAX 28 for 39 yards (A.Ross).,14,16,2012 -20120923_JAC@IND,4,1,23,IND,JAC,1,10,28,(1:23) (Run formation) D.Brown left tackle to JAX 27 for 1 yard (R.Allen).,14,16,2012 -20120923_JAC@IND,4,1,18,IND,JAC,2,9,27,(1:18) (Run formation) D.Brown up the middle to JAX 26 for 1 yard (P.Posluszny).,14,16,2012 -20120923_JAC@IND,4,1,15,IND,JAC,3,8,26,(1:15) (Run formation) D.Brown up the middle to JAX 19 for 7 yards (R.Allen).,14,16,2012 -20120923_JAC@IND,4,1,1,IND,JAC,4,1,19,(1:01) A.Vinatieri 37 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,14,16,2012 -20120923_JAC@IND,4,1,1,IND,JAC,,,19,P.McAfee kicks 74 yards from IND 35 to JAX -9. M.Thomas Touchback.,17,16,2012 -20120923_JAC@IND,4,0,56,JAC,IND,1,10,80,(:56) (Shotgun) B.Gabbert pass short right to C.Shorts for 80 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,16,17,2012 -20120923_JAC@IND,4,0,56,JAC,IND,,,80,(Run formation) TWO-POINT CONVERSION ATTEMPT. M.Jones-Drew rushes left end. ATTEMPT FAILS.,16,17,2012 -20120923_JAC@IND,4,0,56,JAC,IND,,,80,J.Scobee kicks 67 yards from JAX 35 to IND -2. C.Vaughn to IND 38 for 40 yards (M.Harris).,22,17,2012 -20120923_JAC@IND,4,0,35,IND,JAC,1,10,62,(:35) (Shotgun) A.Luck pass incomplete short right to T.Hilton [T.Knighton].,17,22,2012 -20120923_JAC@IND,4,0,31,IND,JAC,2,10,62,(:31) (Shotgun) A.Luck pass incomplete deep left to K.Adams.,17,22,2012 -20120923_JAC@IND,4,0,26,IND,JAC,3,10,62,(:26) (Shotgun) A.Luck pass deep left to T.Hilton to JAX 26 for 36 yards (C.Prosinski).,17,22,2012 -20120923_JAC@IND,4,0,7,IND,JAC,1,10,26,(:07) A.Luck spiked the ball to stop the clock.,17,22,2012 -20120923_JAC@IND,4,0,7,IND,JAC,2,10,26,(:07) (Shotgun) A.Luck pass incomplete short right to R.Wayne (J.Mincey).,17,22,2012 -20120923_JAC@IND,4,0,2,IND,JAC,3,10,26,(:02) (Shotgun) A.Luck pass incomplete deep right to R.Wayne (A.Ross).,17,22,2012 -20120923_JAC@IND,4,0,2,IND,JAC,,,26,                      ,17,22,2012 -20120923_NYJ@MIA,1,0,0,MIA,NYJ,,,26,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,0,0,2012 -20120923_NYJ@MIA,1,60,0,NYJ,MIA,1,10,80,(15:00) M.Sanchez pass incomplete short right to S.Hill.,0,0,2012 -20120923_NYJ@MIA,1,59,56,NYJ,MIA,2,10,80,(14:56) J.Smith reported in as eligible. S.Greene right tackle to NYJ 22 for 2 yards (K.Dansby).,0,0,2012 -20120923_NYJ@MIA,1,59,16,NYJ,MIA,3,8,78,(14:16) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes. PENALTY on MIA-N.Carroll Defensive Pass Interference 14 yards enforced at NYJ 22 - No Play.,0,0,2012 -20120923_NYJ@MIA,1,59,8,NYJ,MIA,1,10,64,(14:08) M.Sanchez pass short middle to S.Greene to NYJ 39 for 3 yards (K.Dansby).,0,0,2012 -20120923_NYJ@MIA,1,58,32,NYJ,MIA,2,7,61,(13:32) (Shotgun) M.Sanchez pass short middle intended for E.Gates INTERCEPTED by R.Marshall at MIA 46. R.Marshall to NYJ 47 for 7 yards (E.Gates).,0,0,2012 -20120923_NYJ@MIA,1,58,20,MIA,NYJ,1,10,47,(13:20) R.Tannehill pass short middle to A.Fasano to NYJ 44 for 3 yards (C.Pace).,0,0,2012 -20120923_NYJ@MIA,1,58,20,MIA,NYJ,2,7,44,(13:20) R.Bush left guard to NYJ 38 for 6 yards (M.Devito; B.Scott).,0,0,2012 -20120923_NYJ@MIA,1,57,13,MIA,NYJ,3,1,38,(12:13) J.Lane right guard to NYJ 35 for 3 yards (S.Pouha).,0,0,2012 -20120923_NYJ@MIA,1,56,44,MIA,NYJ,1,10,35,(11:44) (Shotgun) R.Tannehill pass short left to A.Fasano to NYJ 26 for 9 yards (D.Harris).,0,0,2012 -20120923_NYJ@MIA,1,56,44,MIA,NYJ,2,11,36,(11:44) R.Bush left end to NYJ 10 for 26 yards (D.Revis).,0,0,2012 -20120923_NYJ@MIA,1,55,44,MIA,NYJ,1,10,10,(10:44) R.Bush up the middle to NYJ 3 for 7 yards (D.Revis).,0,0,2012 -20120923_NYJ@MIA,1,55,5,MIA,NYJ,2,3,3,(10:05) R.Bush right tackle to NYJ 1 for 2 yards (M.Wilkerson).,0,0,2012 -20120923_NYJ@MIA,1,54,25,MIA,NYJ,3,1,1,(9:25) D.Thomas up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20120923_NYJ@MIA,1,54,25,MIA,NYJ,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20120923_NYJ@MIA,1,54,25,MIA,NYJ,,,1,D.Carpenter kicks 70 yards from MIA 35 to NYJ -5. J.McKnight to NYJ 19 for 24 yards (A.Spitler; R.Stanford).,7,0,2012 -20120923_NYJ@MIA,1,54,8,NYJ,MIA,1,10,81,(9:08) New QB #15 - Tebow Tim. J.Smith reported in as eligible. S.Greene left end to NYJ 19 for no gain (R.Jones).,0,7,2012 -20120923_NYJ@MIA,1,53,31,NYJ,MIA,2,10,81,(8:31) M.Sanchez pass short right to J.Cumberland to NYJ 22 for 3 yards (K.Dansby). PENALTY on MIA-S.Smith Illegal Contact 5 yards enforced at NYJ 19 - No Play.,0,7,2012 -20120923_NYJ@MIA,1,53,0,NYJ,MIA,1,10,76,(8:00) S.Greene right end to NYJ 30 for 6 yards (C.Clemons).,0,7,2012 -20120923_NYJ@MIA,1,52,21,NYJ,MIA,2,4,70,(7:21) J.Smith reported in as eligible. S.Greene left end to NYJ 33 for 3 yards (K.Misi; K.Burnett). NYJ-S.Hill was injured during the play. His return is Questionable.,0,7,2012 -20120923_NYJ@MIA,1,52,3,NYJ,MIA,3,1,67,(7:03) M.Sanchez pass short right to K.Reuland to NYJ 35 for 2 yards (K.Dansby).,0,7,2012 -20120923_NYJ@MIA,1,51,15,NYJ,MIA,1,10,65,(6:15) J.Smith reported in as eligible. M.Sanchez pass incomplete short left to J.Kerley.,0,7,2012 -20120923_NYJ@MIA,1,51,6,NYJ,MIA,2,10,65,(6:06) J.Smith reported in as eligible. S.Greene right end to NYJ 39 for 4 yards (K.Dansby).,0,7,2012 -20120923_NYJ@MIA,1,50,29,NYJ,MIA,3,6,61,(5:29) M.Sanchez pass incomplete deep middle to S.Hill (S.Smith) [J.Odrick].,0,7,2012 -20120923_NYJ@MIA,1,50,22,NYJ,MIA,4,6,61,(5:22) (Punt formation) R.Malone punts 54 yards to MIA 7 Center-T.Purdum. M.Thigpen to MIA 8 for 1 yard (D.Davis). PENALTY on MIA-N.Carroll Illegal Block Above the Waist 3 yards enforced at MIA 8.,0,7,2012 -20120923_NYJ@MIA,1,50,10,MIA,NYJ,1,10,95,(5:10) R.Bush right end to MIA 12 for 7 yards (L.Landry).,7,0,2012 -20120923_NYJ@MIA,1,48,56,MIA,NYJ,2,3,88,(3:56) R.Bush left guard to MIA 24 for 12 yards (D.Revis; Y.Bell).,7,0,2012 -20120923_NYJ@MIA,1,48,56,MIA,NYJ,1,10,76,(3:56) R.Tannehill pass incomplete short right to D.Bess.,7,0,2012 -20120923_NYJ@MIA,1,48,53,MIA,NYJ,2,10,76,(3:53) (Shotgun) R.Tannehill pass short left to A.Armstrong to MIA 33 for 9 yards (D.Revis).,7,0,2012 -20120923_NYJ@MIA,1,48,17,MIA,NYJ,3,1,67,(3:17) R.Tannehill pass incomplete short right to D.Thomas.,7,0,2012 -20120923_NYJ@MIA,1,48,8,MIA,NYJ,4,1,67,(3:08) (Punt formation) B.Fields punts 57 yards to NYJ 10 Center-J.Denney. J.Kerley to NYJ 28 for 18 yards (N.Carroll). PENALTY on NYJ Illegal Block Above the Waist 10 yards enforced at NYJ 28.,7,0,2012 -20120923_NYJ@MIA,1,47,57,NYJ,MIA,1,10,82,(2:57) B.Powell up the middle to NYJ 22 for 4 yards (K.Burnett).,0,7,2012 -20120923_NYJ@MIA,1,47,15,NYJ,MIA,2,6,78,(2:15) M.Sanchez pass short middle to B.Powell to NYJ 32 for 10 yards (K.Dansby).,0,7,2012 -20120923_NYJ@MIA,1,46,29,NYJ,MIA,1,10,68,(1:29) M.Sanchez pass incomplete deep left to S.Holmes. PENALTY on MIA-R.Marshall Illegal Contact 5 yards enforced at NYJ 32 - No Play.,0,7,2012 -20120923_NYJ@MIA,1,46,22,NYJ,MIA,1,10,63,(1:22) B.Powell up the middle to NYJ 41 for 4 yards (J.Odrick).,0,7,2012 -20120923_NYJ@MIA,1,45,52,NYJ,MIA,2,6,59,(:52) M.Sanchez pass short right to K.Reuland to MIA 49 for 10 yards (S.Smith).,0,7,2012 -20120923_NYJ@MIA,1,45,8,NYJ,MIA,1,10,49,(:08) B.Powell right guard to MIA 49 for no gain (K.Misi).,0,7,2012 -20120923_NYJ@MIA,2,45,0,NYJ,MIA,2,10,49,(15:00) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,0,7,2012 -20120923_NYJ@MIA,2,44,55,NYJ,MIA,3,10,49,(14:55) (Shotgun) M.Sanchez sacked at NYJ 45 for -6 yards (sack split by J.Odrick and O.Vernon).,0,7,2012 -20120923_NYJ@MIA,2,44,27,NYJ,MIA,4,16,55,(14:27) (Punt formation) R.Malone punts 43 yards to MIA 12 Center-T.Purdum. D.Bess to MIA 22 for 10 yards (N.Bellore).,0,7,2012 -20120923_NYJ@MIA,2,44,14,MIA,NYJ,1,10,78,(14:14) D.Thomas left guard to MIA 25 for 3 yards (M.Wilkerson).,7,0,2012 -20120923_NYJ@MIA,2,43,42,MIA,NYJ,2,7,75,(13:42) D.Thomas left end to MIA 29 for 4 yards (D.Harris).,7,0,2012 -20120923_NYJ@MIA,2,43,13,MIA,NYJ,3,3,71,(13:13) (Shotgun) R.Tannehill pass incomplete short left to R.Bush. PENALTY on NYJ-B.Scott Illegal Contact 5 yards enforced at MIA 29 - No Play.,7,0,2012 -20120923_NYJ@MIA,2,43,9,MIA,NYJ,1,10,66,(13:09) R.Bush left tackle to MIA 38 for 4 yards (D.Harris).,7,0,2012 -20120923_NYJ@MIA,2,42,43,MIA,NYJ,2,6,62,(12:43) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 39 for 1 yard (D.Revis).,7,0,2012 -20120923_NYJ@MIA,2,42,9,MIA,NYJ,3,5,61,(12:09) (Shotgun) R.Tannehill pass short right to D.Bess to NYJ 38 for 23 yards (D.Harris).,7,0,2012 -20120923_NYJ@MIA,2,41,21,MIA,NYJ,1,10,38,(11:21) R.Tannehill pass short right to A.Fasano to NYJ 21 for 17 yards (A.Cromartie).,7,0,2012 -20120923_NYJ@MIA,2,41,1,MIA,NYJ,1,10,21,(11:01) D.Thomas right tackle to NYJ 17 for 4 yards (Y.Bell).,7,0,2012 -20120923_NYJ@MIA,2,40,38,MIA,NYJ,2,6,17,(10:38) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,7,0,2012 -20120923_NYJ@MIA,2,40,34,MIA,NYJ,3,7,17,(10:34) (Shotgun) D.Thomas up the middle to NYJ 11 for 6 yards (L.Landry).,7,0,2012 -20120923_NYJ@MIA,2,39,57,MIA,NYJ,1,10,11,(9:57) D.Thomas left end to NYJ 4 for 7 yards (S.Pouha).,7,0,2012 -20120923_NYJ@MIA,2,39,17,MIA,NYJ,2,3,4,(9:17) D.Thomas left tackle to NYJ 3 for 1 yard (C.Pace).,7,0,2012 -20120923_NYJ@MIA,2,38,40,MIA,NYJ,3,2,3,(8:40) R.Tannehill pass incomplete short right to B.Hartline. NYJ-L.Landry was injured during the play.,7,0,2012 -20120923_NYJ@MIA,2,38,31,MIA,NYJ,4,2,3,(8:31) (Field Goal formation) D.Carpenter 21 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,7,0,2012 -20120923_NYJ@MIA,2,38,31,MIA,NYJ,,,3,D.Carpenter kicks 62 yards from MIA 35 to NYJ 3. J.McKnight to NYJ 18 for 15 yards (L.Naanee).,10,0,2012 -20120923_NYJ@MIA,2,38,20,NYJ,MIA,1,10,82,(8:20) M.Sanchez pass incomplete short right to S.Hill.,0,10,2012 -20120923_NYJ@MIA,2,38,14,NYJ,MIA,2,10,82,(8:14) (Shotgun) PENALTY on NYJ-A.Howard False Start 5 yards enforced at NYJ 18 - No Play.,0,10,2012 -20120923_NYJ@MIA,2,38,14,NYJ,MIA,2,15,87,(8:14) (Shotgun) M.Sanchez pass incomplete deep right to S.Holmes (K.Dansby).,0,10,2012 -20120923_NYJ@MIA,2,38,10,NYJ,MIA,3,15,87,(8:10) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 25 for 12 yards (C.Clemons).,0,10,2012 -20120923_NYJ@MIA,2,37,18,NYJ,MIA,4,3,75,(7:18) (Punt formation) T.Tebow left guard to NYJ 30 for 5 yards (O.Vernon).,0,10,2012 -20120923_NYJ@MIA,2,36,53,NYJ,MIA,1,10,70,(6:53) M.Sanchez pass incomplete short right to J.Cumberland.,0,10,2012 -20120923_NYJ@MIA,2,36,46,NYJ,MIA,2,10,70,(6:46) M.Sanchez pass incomplete short middle to S.Holmes.,0,10,2012 -20120923_NYJ@MIA,2,36,42,NYJ,MIA,3,10,70,(6:42) (Shotgun) M.Sanchez pass short right to S.Holmes to NYJ 45 for 15 yards (N.Carroll).,0,10,2012 -20120923_NYJ@MIA,2,36,5,NYJ,MIA,1,10,55,(6:05) M.Sanchez pass short right to S.Greene to MIA 49 for 6 yards (K.Misi).,0,10,2012 -20120923_NYJ@MIA,2,35,27,NYJ,MIA,2,4,49,(5:27) B.Powell right end to MIA 43 for 6 yards (C.Wake).,0,10,2012 -20120923_NYJ@MIA,2,34,39,NYJ,MIA,1,10,43,(4:39) M.Sanchez pass incomplete short right to J.Cumberland (K.Burnett) [C.Wake].,0,10,2012 -20120923_NYJ@MIA,2,34,32,NYJ,MIA,2,10,43,(4:32) (Shotgun) B.Powell right guard to MIA 40 for 3 yards (P.Soliai).,0,10,2012 -20120923_NYJ@MIA,2,33,55,NYJ,MIA,3,7,40,(3:55) (Shotgun) M.Sanchez pass short right to J.Cumberland to MIA 21 for 19 yards (R.Jones) [J.Odrick].,0,10,2012 -20120923_NYJ@MIA,2,33,15,NYJ,MIA,1,10,21,(3:15) S.Greene up the middle to MIA 16 for 5 yards (K.Misi).,0,10,2012 -20120923_NYJ@MIA,2,32,30,NYJ,MIA,2,5,16,(2:30) S.Greene left guard to MIA 15 for 1 yard (C.Wake).,0,10,2012 -20120923_NYJ@MIA,2,32,0,NYJ,MIA,3,4,15,(2:00) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,0,10,2012 -20120923_NYJ@MIA,2,31,55,NYJ,MIA,4,4,15,(1:55) (Field Goal formation) N.Folk 33 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,10,2012 -20120923_NYJ@MIA,2,31,55,NYJ,MIA,,,15,N.Folk kicks 70 yards from NYJ 35 to MIA -5. M.Thigpen to MIA 13 for 18 yards (J.Mauga). PENALTY on MIA Illegal Block Above the Waist 6 yards enforced at MIA 13.,3,10,2012 -20120923_NYJ@MIA,2,31,44,MIA,NYJ,1,10,93,(1:44) (Shotgun) R.Bush up the middle to MIA 10 for 3 yards (D.Harris).,10,3,2012 -20120923_NYJ@MIA,2,31,1,MIA,NYJ,2,7,90,(1:01) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,10,3,2012 -20120923_NYJ@MIA,2,30,52,MIA,NYJ,3,7,90,(:52) (Shotgun) R.Bush up the middle to MIA 10 for no gain (Q.Coples). PENALTY on MIA-J.Martin Unsportsmanlike Conduct 5 yards enforced at MIA 10.,10,3,2012 -20120923_NYJ@MIA,2,30,47,MIA,NYJ,4,12,95,(:47) (Punt formation) B.Fields punts 55 yards to NYJ 40 Center-J.Denney. J.Kerley to MIA 49 for 11 yards (J.Denney). PENALTY on NYJ-E.Smith Roughing the Kicker 15 yards enforced at MIA 5 - No Play.,10,3,2012 -20120923_NYJ@MIA,2,30,36,MIA,NYJ,1,10,80,(:36) R.Bush up the middle to MIA 24 for 4 yards (B.Scott). MIA-R.Bush was injured during the play. His return is Probable.,10,3,2012 -20120923_NYJ@MIA,2,30,23,MIA,NYJ,2,6,76,(:23) D.Thomas right tackle to MIA 28 for 4 yards (M.Wilkerson).,10,3,2012 -20120923_NYJ@MIA,3,30,0,NYJ,MIA,,,76,N.Folk kicks 69 yards from NYJ 35 to MIA -4. M.Thigpen to MIA 24 for 28 yards (N.Bellore). PENALTY on MIA-T.Nolan Illegal Block Above the Waist 6 yards enforced at MIA 12.,3,10,2012 -20120923_NYJ@MIA,3,29,54,MIA,NYJ,1,10,94,(14:54) D.Thomas right guard to MIA 6 for no gain (M.Wilkerson).,10,3,2012 -20120923_NYJ@MIA,3,29,27,MIA,NYJ,2,10,94,(14:27) R.Tannehill pass short right intended for A.Fasano INTERCEPTED by L.Landry at MIA 18. L.Landry for 18 yards TOUCHDOWN.,10,3,2012 -20120923_NYJ@MIA,3,29,27,NYJ,MIA,,,94,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,3,10,2012 -20120923_NYJ@MIA,3,29,27,NYJ,MIA,,,94,N.Folk kicks 70 yards from NYJ 35 to MIA -5. M.Thigpen Touchback.,10,10,2012 -20120923_NYJ@MIA,3,29,16,MIA,NYJ,1,10,80,(14:16) D.Thomas right end to MIA 24 for 4 yards (K.Ellis). FUMBLES (K.Ellis) RECOVERED by NYJ-D.Revis at MIA 26. D.Revis to MIA 26 for no gain (R.Incognito). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,10,2012 -20120923_NYJ@MIA,3,29,8,NYJ,MIA,1,10,26,(14:08) M.Sanchez pass short right to S.Holmes to MIA 13 for 13 yards (R.Marshall).,10,10,2012 -20120923_NYJ@MIA,3,28,27,NYJ,MIA,1,10,13,(13:27) J.Smith reported in as eligible. S.Greene right tackle to MIA 13 for no gain (K.Burnett; R.Starks).,10,10,2012 -20120923_NYJ@MIA,3,27,44,NYJ,MIA,2,10,13,(12:44) M.Sanchez pass short right to S.Holmes to MIA 3 for 10 yards (R.Marshall).,10,10,2012 -20120923_NYJ@MIA,3,27,8,NYJ,MIA,1,3,3,(12:08) J.Smith reported in as eligible. S.Greene right tackle to MIA 2 for 1 yard (K.Dansby).,10,10,2012 -20120923_NYJ@MIA,3,26,31,NYJ,MIA,2,2,2,(11:31) New QB - #15 - Tebow Tim. (Shotgun) J.Smith reported in as eligible. T.Tebow left end to MIA 7 for -5 yards (R.Starks).,10,10,2012 -20120923_NYJ@MIA,3,25,53,NYJ,MIA,3,7,7,(10:53) M.Sanchez pass short right intended for S.Hill INTERCEPTED by C.Clemons at MIA -5. Touchback.,10,10,2012 -20120923_NYJ@MIA,3,25,37,MIA,NYJ,1,10,80,(10:37) L.Miller right tackle to MIA 25 for 5 yards (S.Pouha).,10,10,2012 -20120923_NYJ@MIA,3,25,7,MIA,NYJ,2,5,75,(10:07) L.Miller up the middle to MIA 32 for 7 yards (D.Harris).,10,10,2012 -20120923_NYJ@MIA,3,24,40,MIA,NYJ,1,10,68,(9:40) D.Thomas right guard to MIA 37 for 5 yards (M.Devito; C.Pace).,10,10,2012 -20120923_NYJ@MIA,3,24,3,MIA,NYJ,2,5,63,(9:03) L.Miller right tackle to MIA 40 for 3 yards (M.Wilkerson; D.Revis).,10,10,2012 -20120923_NYJ@MIA,3,23,17,MIA,NYJ,3,2,60,(8:17) L.Miller right end to MIA 41 for 1 yard (B.Scott).,10,10,2012 -20120923_NYJ@MIA,3,22,34,MIA,NYJ,4,1,59,(7:34) (Punt formation) B.Fields punts 59 yards to end zone Center-J.Denney Touchback.,10,10,2012 -20120923_NYJ@MIA,3,22,24,NYJ,MIA,1,10,80,(7:24) M.Sanchez pass short left to S.Holmes to NYJ 28 for 8 yards (R.Marshall).,10,10,2012 -20120923_NYJ@MIA,3,21,56,NYJ,MIA,2,2,72,(6:56) S.Greene left guard to NYJ 27 for -1 yards (C.Clemons).,10,10,2012 -20120923_NYJ@MIA,3,21,44,NYJ,MIA,3,3,73,(6:44) M.Sanchez pass incomplete short left to T.Tebow (R.Jones).,10,10,2012 -20120923_NYJ@MIA,3,21,18,NYJ,MIA,4,3,73,(6:18) (Punt formation) R.Malone punts 61 yards to MIA 12 Center-T.Purdum. M.Thigpen to MIA 20 for 8 yards (I.Trufant).,10,10,2012 -20120923_NYJ@MIA,3,21,6,MIA,NYJ,1,10,80,(6:06) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (A.Cromartie).,10,10,2012 -20120923_NYJ@MIA,3,21,1,MIA,NYJ,2,10,80,(6:01) L.Miller left tackle to MIA 42 for 22 yards (Y.Bell).,10,10,2012 -20120923_NYJ@MIA,3,20,47,MIA,NYJ,1,10,58,(5:47) L.Miller left end to MIA 42 for no gain (M.Devito). NYJ-M.Devito was injured during the play. His return is Questionable.,10,10,2012 -20120923_NYJ@MIA,3,19,58,MIA,NYJ,2,10,58,(4:58) D.Thomas left tackle to MIA 43 for 1 yard (M.Wilkerson; Y.Bell).,10,10,2012 -20120923_NYJ@MIA,3,19,26,MIA,NYJ,3,9,57,(4:26) (No Huddle Shotgun) R.Tannehill pass short left to D.Thomas to NYJ 46 for 11 yards (D.Harris). NYJ-D.Revis was injured during the play. He is Out.,10,10,2012 -20120923_NYJ@MIA,3,18,54,MIA,NYJ,1,10,46,(3:54) L.Miller up the middle to NYJ 40 for 6 yards (Q.Coples).,10,10,2012 -20120923_NYJ@MIA,3,18,23,MIA,NYJ,2,4,40,(3:23) R.Tannehill right end to NYJ 43 for -3 yards (B.Scott).,10,10,2012 -20120923_NYJ@MIA,3,18,7,MIA,NYJ,3,7,43,(3:07) (Shotgun) R.Tannehill pass short middle to D.Bess to NYJ 29 for 14 yards (E.Smith). PENALTY on NYJ-E.Smith Unnecessary Roughness 15 yards enforced at NYJ 29.,10,10,2012 -20120923_NYJ@MIA,3,17,29,MIA,NYJ,1,10,14,(2:29) (Shotgun) R.Tannehill pass short left to A.Fasano to NYJ 2 for 12 yards (K.Wilson). New York Jets challenged the pass completion ruling and the play was Upheld. (Timeout #1.),10,10,2012 -20120923_NYJ@MIA,3,17,10,MIA,NYJ,1,2,2,(2:10) R.Tannehill right end to NYJ 1 for 1 yard (Y.Bell).,10,10,2012 -20120923_NYJ@MIA,3,16,51,MIA,NYJ,2,1,1,(1:51) J.Lane right tackle for 1 yard TOUCHDOWN.,10,10,2012 -20120923_NYJ@MIA,3,16,51,MIA,NYJ,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,10,10,2012 -20120923_NYJ@MIA,3,16,51,MIA,NYJ,,,1,D.Carpenter kicks 63 yards from MIA 35 to NYJ 2. J.McKnight to NYJ 25 for 23 yards (J.Freeny).,17,10,2012 -20120923_NYJ@MIA,3,16,37,NYJ,MIA,1,10,75,(1:37) J.Smith reported in as eligible. B.Powell right guard to NYJ 29 for 4 yards (R.Starks; C.Wake).,10,17,2012 -20120923_NYJ@MIA,3,16,1,NYJ,MIA,2,6,71,(1:01) (Shotgun) M.Sanchez pass short right to J.Kerley to MIA 5 for 66 yards (S.Smith).,10,17,2012 -20120923_NYJ@MIA,3,15,35,NYJ,MIA,1,5,5,(:35) J.Smith reported in as eligible. S.Greene left guard to MIA 4 for 1 yard (R.Marshall).,10,17,2012 -20120923_NYJ@MIA,4,15,0,NYJ,MIA,2,4,4,(15:00) M.Sanchez pass incomplete short left to S.Holmes. PENALTY on MIA-R.Marshall Defensive Pass Interference 3 yards enforced at MIA 4 - No Play.,10,17,2012 -20120923_NYJ@MIA,4,14,56,NYJ,MIA,1,1,1,(14:56) S.Greene up the middle to MIA 1 for no gain (K.Burnett).,10,17,2012 -20120923_NYJ@MIA,4,14,22,NYJ,MIA,2,1,1,(14:22) M.Sanchez pass incomplete short right to J.Cumberland [R.Jones].,10,17,2012 -20120923_NYJ@MIA,4,14,17,NYJ,MIA,3,1,1,(14:17) PENALTY on NYJ-M.Slauson False Start 5 yards enforced at MIA 1 - No Play.,10,17,2012 -20120923_NYJ@MIA,4,14,17,NYJ,MIA,3,6,6,(14:17) M.Sanchez scrambles left guard to MIA 2 for 4 yards (C.Wake).,10,17,2012 -20120923_NYJ@MIA,4,13,35,NYJ,MIA,4,2,2,(13:35) (Field Goal formation) N.Folk 20 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,10,17,2012 -20120923_NYJ@MIA,4,13,35,NYJ,MIA,,,2,N.Folk kicks 71 yards from NYJ 35 to MIA -6. M.Thigpen to MIA 21 for 27 yards (J.Bush; N.Bellore).,13,17,2012 -20120923_NYJ@MIA,4,13,24,MIA,NYJ,1,10,79,(13:24) L.Miller left guard to MIA 25 for 4 yards (D.Harris; G.McIntyre).,17,13,2012 -20120923_NYJ@MIA,4,12,52,MIA,NYJ,2,6,75,(12:52) L.Miller right tackle to MIA 25 for no gain (M.Devito).,17,13,2012 -20120923_NYJ@MIA,4,12,12,MIA,NYJ,3,6,75,(12:12) (Shotgun) R.Tannehill pass deep left to D.Bess ran ob at MIA 45 for 20 yards [Q.Coples].,17,13,2012 -20120923_NYJ@MIA,4,12,2,MIA,NYJ,1,10,55,(12:02) R.Tannehill pass incomplete deep right to B.Hartline. NYJ-A.Cromartie was injured during the play. His return is Probable. PENALTY on NYJ-A.Cromartie Defensive Pass Interference 24 yards enforced at MIA 45 - No Play. Penalty on NYJ-M.Dixon Defensive Offside declined.,17,13,2012 -20120923_NYJ@MIA,4,11,52,MIA,NYJ,1,10,31,(11:52) PENALTY on MIA-J.Jerry False Start 5 yards enforced at NYJ 31 - No Play.,17,13,2012 -20120923_NYJ@MIA,4,11,51,MIA,NYJ,1,15,36,(11:51) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline. PENALTY on MIA-B.Hartline Offensive Pass Interference 10 yards enforced at NYJ 36 - No Play.,17,13,2012 -20120923_NYJ@MIA,4,11,44,MIA,NYJ,1,25,46,(11:44) (Shotgun) R.Tannehill pass incomplete short right to A.Armstrong.,17,13,2012 -20120923_NYJ@MIA,4,11,40,MIA,NYJ,2,25,46,(11:40) (Shotgun) R.Tannehill pass incomplete deep left to A.Armstrong.,17,13,2012 -20120923_NYJ@MIA,4,11,34,MIA,NYJ,3,25,46,(11:34) (Shotgun) R.Tannehill pass short middle to D.Bess to NYJ 29 for 17 yards (E.Lankster).,17,13,2012 -20120923_NYJ@MIA,4,10,48,MIA,NYJ,4,8,29,(10:48) (Field Goal formation) D.Carpenter 47 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,17,13,2012 -20120923_NYJ@MIA,4,10,41,NYJ,MIA,1,10,62,(10:41) M.Sanchez pass incomplete deep right to S.Hill.,13,17,2012 -20120923_NYJ@MIA,4,10,34,NYJ,MIA,2,10,62,(10:34) M.Sanchez pass incomplete short middle to B.Powell.,13,17,2012 -20120923_NYJ@MIA,4,10,30,NYJ,MIA,3,10,62,(10:30) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,13,17,2012 -20120923_NYJ@MIA,4,10,24,NYJ,MIA,4,10,62,(10:24) (Punt formation) R.Malone punts 48 yards to MIA 14 Center-T.Purdum fair catch by D.Bess.,13,17,2012 -20120923_NYJ@MIA,4,10,19,MIA,NYJ,1,10,86,(10:19) R.Tannehill pass incomplete short right to B.Hartline [B.Scott].,17,13,2012 -20120923_NYJ@MIA,4,10,14,MIA,NYJ,2,10,86,(10:14) R.Tannehill pass incomplete short left to D.Bess (G.McIntyre).,17,13,2012 -20120923_NYJ@MIA,4,10,8,MIA,NYJ,3,10,86,(10:08) (Shotgun) R.Tannehill pass incomplete short middle to A.Armstrong.,17,13,2012 -20120923_NYJ@MIA,4,10,3,MIA,NYJ,4,10,86,(10:03) (Punt formation) B.Fields punts 62 yards to NYJ 24 Center-J.Denney. J.Kerley to NYJ 40 for 16 yards (O.Vernon).,17,13,2012 -20120923_NYJ@MIA,4,9,50,NYJ,MIA,1,10,60,(9:50) M.Sanchez pass incomplete deep left to S.Holmes (R.Marshall).,13,17,2012 -20120923_NYJ@MIA,4,9,44,NYJ,MIA,2,10,60,(9:44) (Shotgun) M.Sanchez pass deep left to S.Holmes ran ob at MIA 42 for 18 yards.,13,17,2012 -20120923_NYJ@MIA,4,9,12,NYJ,MIA,1,10,42,(9:12) J.Smith reported in as eligible. B.Powell right end to MIA 37 for 5 yards (K.Misi).,13,17,2012 -20120923_NYJ@MIA,4,8,40,NYJ,MIA,2,5,37,(8:40) New QB - #15 Tebow Tim. J.McKnight right end to MIA 38 for -1 yards (K.Misi).,13,17,2012 -20120923_NYJ@MIA,4,7,26,NYJ,MIA,3,6,38,(7:26) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,13,17,2012 -20120923_NYJ@MIA,4,7,21,NYJ,MIA,4,6,38,(7:21) (Punt formation) R.Malone punts 33 yards to MIA 5 Center-T.Purdum downed by NYJ-I.Trufant.,13,17,2012 -20120923_NYJ@MIA,4,7,13,MIA,NYJ,1,10,95,(7:13) R.Tannehill pass short right to J.Lane to MIA 6 for 1 yard (A.Cromartie).,17,13,2012 -20120923_NYJ@MIA,4,6,36,MIA,NYJ,2,9,94,(6:36) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,13,2012 -20120923_NYJ@MIA,4,6,26,MIA,NYJ,3,9,94,(6:26) PENALTY on MIA-R.Tannehill Delay of Game 3 yards enforced at MIA 6 - No Play.,17,13,2012 -20120923_NYJ@MIA,4,6,26,MIA,NYJ,3,12,97,(6:26) D.Thomas left tackle to MIA 7 for 4 yards (Y.Bell).,17,13,2012 -20120923_NYJ@MIA,4,5,48,MIA,NYJ,4,8,93,(5:48) (Punt formation) B.Fields punts 57 yards to NYJ 36 Center-J.Denney. J.Kerley to NYJ 47 for 11 yards (O.Vernon).,17,13,2012 -20120923_NYJ@MIA,4,5,34,NYJ,MIA,1,10,53,(5:34) M.Sanchez pass short right to S.Holmes to MIA 35 for 18 yards (C.Clemons).,13,17,2012 -20120923_NYJ@MIA,4,4,57,NYJ,MIA,1,10,35,(4:57) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes.,13,17,2012 -20120923_NYJ@MIA,4,4,48,NYJ,MIA,2,10,35,(4:48) (Shotgun) M.Sanchez pass short left to B.Powell to MIA 16 for 19 yards (R.Jones). PENALTY on NYJ-S.Holmes Offensive Holding 10 yards enforced at MIA 21.,13,17,2012 -20120923_NYJ@MIA,4,4,39,NYJ,MIA,2,6,31,(4:39) M.Sanchez pass incomplete deep right to C.Schilens.,13,17,2012 -20120923_NYJ@MIA,4,4,32,NYJ,MIA,3,6,31,(4:32) (Shotgun) M.Sanchez pass short left to S.Holmes to MIA 16 for 15 yards (C.Clemons).,13,17,2012 -20120923_NYJ@MIA,4,4,0,NYJ,MIA,1,10,16,(4:00) S.Greene left end to MIA 7 for 9 yards (R.Jones).,13,17,2012 -20120923_NYJ@MIA,4,3,44,NYJ,MIA,2,1,7,(3:44) S.Greene up the middle to MIA 7 for no gain (C.Clemons).,13,17,2012 -20120923_NYJ@MIA,4,3,5,NYJ,MIA,3,1,7,(3:05) (Shotgun) M.Sanchez pass short middle to J.Kerley for 7 yards TOUCHDOWN.,13,17,2012 -20120923_NYJ@MIA,4,3,5,NYJ,MIA,,,7,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,13,17,2012 -20120923_NYJ@MIA,4,3,5,NYJ,MIA,,,7,N.Folk kicks 67 yards from NYJ 35 to MIA -2. M.Thigpen to MIA 29 for 31 yards (J.McKnight).,20,17,2012 -20120923_NYJ@MIA,4,2,52,MIA,NYJ,1,10,71,(2:52) D.Thomas right tackle to MIA 32 for 3 yards (M.Wilkerson).,17,20,2012 -20120923_NYJ@MIA,4,2,28,MIA,NYJ,2,7,68,(2:28) (Shotgun) R.Tannehill pass short right to A.Armstrong to MIA 32 for no gain (B.Scott).,17,20,2012 -20120923_NYJ@MIA,4,2,0,MIA,NYJ,3,7,68,(2:00) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 44 for 12 yards (K.Wilson).,17,20,2012 -20120923_NYJ@MIA,4,1,36,MIA,NYJ,1,10,56,(1:36) (Shotgun) R.Tannehill pass incomplete short left to A.Armstrong.,17,20,2012 -20120923_NYJ@MIA,4,1,27,MIA,NYJ,2,10,56,(1:27) (Shotgun) D.Thomas up the middle to NYJ 47 for 9 yards (C.Pace; M.Wilkerson).,17,20,2012 -20120923_NYJ@MIA,4,1,14,MIA,NYJ,3,1,47,(1:14) R.Tannehill right guard to NYJ 42 for 5 yards (C.Pace).,17,20,2012 -20120923_NYJ@MIA,4,0,53,MIA,NYJ,1,10,42,(:53) (No Huddle Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (E.Smith).,17,20,2012 -20120923_NYJ@MIA,4,0,46,MIA,NYJ,2,10,42,(:46) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,20,2012 -20120923_NYJ@MIA,4,0,41,MIA,NYJ,3,10,42,(:41) (Shotgun) R.Tannehill pass incomplete deep middle to D.Bess. PENALTY on NYJ-K.Wilson Defensive Pass Interference 19 yards enforced at NYJ 42 - No Play.,17,20,2012 -20120923_NYJ@MIA,4,0,36,MIA,NYJ,1,10,23,(:36) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,17,20,2012 -20120923_NYJ@MIA,4,0,32,MIA,NYJ,2,10,23,(:32) (No Huddle Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,17,20,2012 -20120923_NYJ@MIA,4,0,27,MIA,NYJ,3,10,23,(:27) R.Tannehill pass incomplete deep right to B.Hartline.,17,20,2012 -20120923_NYJ@MIA,4,0,21,MIA,NYJ,4,10,23,(:21) (Field Goal formation) D.Carpenter 41 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,17,20,2012 -20120923_NYJ@MIA,4,0,21,MIA,NYJ,,,23,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,20,20,2012 -20120923_NYJ@MIA,4,0,16,NYJ,MIA,1,10,80,(:16) J.Smith reported in as eligible. S.Greene up the middle to NYJ 22 for 2 yards (K.Dansby).,20,20,2012 -20120923_NYJ@MIA,4,0,10,NYJ,MIA,2,8,78,(:10) S.Greene right guard to NYJ 25 for 3 yards (C.Wake).,20,20,2012 -20120923_NYJ@MIA,4,0,6,NYJ,MIA,3,5,75,(:06) S.Greene right end to NYJ 26 for 1 yard (K.Burnett; K.Dansby).,20,20,2012 -20120923_NYJ@MIA,5,0,0,MIA,NYJ,,,75,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,20,20,2012 -20120923_NYJ@MIA,5,0,0,NYJ,MIA,1,10,80,(15:00) J.Smith reported in as eligible. B.Powell left tackle to NYJ 24 for 4 yards (P.Soliai).,20,20,2012 -20120923_NYJ@MIA,5,-1,25,NYJ,MIA,2,6,76,(14:25) B.Powell left tackle to NYJ 35 for 11 yards (R.Jones).,20,20,2012 -20120923_NYJ@MIA,5,-2,42,NYJ,MIA,1,10,65,(13:42) B.Powell right tackle to NYJ 39 for 4 yards (K.Misi).,20,20,2012 -20120923_NYJ@MIA,5,-2,9,NYJ,MIA,2,6,61,(13:09) M.Sanchez pass incomplete short middle to J.Cumberland (R.Marshall) [C.Wake].,20,20,2012 -20120923_NYJ@MIA,5,-2,0,NYJ,MIA,3,6,61,(13:00) (Shotgun) M.Sanchez pass short left to C.Schilens to NYJ 47 for 8 yards (K.Burnett).,20,20,2012 -20120923_NYJ@MIA,5,-3,24,NYJ,MIA,1,10,53,(12:24) J.Smith reported in as eligible. M.Sanchez pass incomplete deep right to S.Holmes.,20,20,2012 -20120923_NYJ@MIA,5,-3,13,NYJ,MIA,2,10,53,(12:13) (Shotgun) M.Sanchez to NYJ 42 for -5 yards. FUMBLES and recovers at NYJ 42. M.Sanchez pass incomplete short left.,20,20,2012 -20120923_NYJ@MIA,5,-4,33,NYJ,MIA,3,10,53,(11:33) (Shotgun) M.Sanchez pass short left to C.Schilens to MIA 45 for 8 yards (O.Vernon).,20,20,2012 -20120923_NYJ@MIA,5,-4,28,NYJ,MIA,4,2,45,(11:28) (Punt formation) R.Malone punts 35 yards to MIA 10 Center-T.Purdum fair catch by D.Bess.,20,20,2012 -20120923_NYJ@MIA,5,-4,22,MIA,NYJ,1,10,90,(11:22) D.Thomas up the middle to MIA 15 for 5 yards (D.Harris).,20,20,2012 -20120923_NYJ@MIA,5,-5,47,MIA,NYJ,2,5,85,(10:47) D.Thomas up the middle to MIA 18 for 3 yards (B.Scott).,20,20,2012 -20120923_NYJ@MIA,5,-5,7,MIA,NYJ,3,2,82,(10:07) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 24 for 6 yards (Y.Bell).,20,20,2012 -20120923_NYJ@MIA,5,-6,39,MIA,NYJ,1,10,76,(9:39) R.Tannehill pass deep right to B.Hartline ran ob at NYJ 35 for 41 yards.,20,20,2012 -20120923_NYJ@MIA,5,-6,25,MIA,NYJ,1,10,35,(9:25) D.Thomas right tackle to NYJ 32 for 3 yards (G.McIntyre).,20,20,2012 -20120923_NYJ@MIA,5,-7,49,MIA,NYJ,2,7,32,(8:49) (Shotgun) R.Tannehill pass incomplete deep left to B.Hartline.,20,20,2012 -20120923_NYJ@MIA,5,-7,39,MIA,NYJ,3,7,32,(8:39) D.Thomas right end to NYJ 30 for 2 yards (M.Wilkerson).,20,20,2012 -20120923_NYJ@MIA,5,-7,0,MIA,NYJ,4,5,30,(8:00) (Field Goal formation) D.Carpenter 48 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,20,20,2012 -20120923_NYJ@MIA,5,-8,53,NYJ,MIA,1,10,62,(7:53) M.Sanchez pass short left to J.Cumberland to NYJ 44 for 6 yards (K.Burnett).,20,20,2012 -20120923_NYJ@MIA,5,-8,47,NYJ,MIA,2,4,56,(7:47) M.Sanchez pass deep left to S.Holmes to MIA 18 for 38 yards (R.Marshall). MIA-R.Marshall was injured during the play. His return is Questionable. Penalty on MIA-R.Marshall Defensive Holding declined.,20,20,2012 -20120923_NYJ@MIA,5,-8,34,NYJ,MIA,1,10,18,(7:34) J.Smith reported in as eligible. S.Greene left guard to MIA 13 for 5 yards (K.Burnett).,20,20,2012 -20120923_NYJ@MIA,5,-9,53,NYJ,MIA,2,5,13,(6:53) S.Greene right end to MIA 15 for -2 yards (K.Misi; K.Burnett).,20,20,2012 -20120923_NYJ@MIA,5,-9,4,NYJ,MIA,3,7,15,(6:04) (Field Goal formation) N.Folk 33 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,20,20,2012 -20120923_NYJ@MIA,5,-9,4,NYJ,MIA,,,15,                      ,23,20,2012 -20120923_SF@MIN,1,-9,0,SF,MIN,,,15,D.Akers kicks 69 yards from SF 35 to MIN -4. P.Harvin to MIN 18 for 22 yards (C.Culliver).,0,0,2012 -20120923_SF@MIN,1,59,55,MIN,SF,1,10,82,(14:55) A.Peterson right tackle to MIN 22 for 4 yards (R.McDonald; A.Brooks).,0,0,2012 -20120923_SF@MIN,1,59,22,MIN,SF,2,6,78,(14:22) C.Ponder pass short left to P.Harvin to MIN 34 for 12 yards (T.Brown).,0,0,2012 -20120923_SF@MIN,1,58,37,MIN,SF,1,10,66,(13:37) A.Peterson right tackle to MIN 34 for no gain (A.Brooks).,0,0,2012 -20120923_SF@MIN,1,58,4,MIN,SF,2,10,66,(13:04) C.Ponder pass short middle to K.Rudolph to 50 for 16 yards (D.Goldson).,0,0,2012 -20120923_SF@MIN,1,57,27,MIN,SF,1,10,50,(12:27) A.Peterson left guard to SF 47 for 3 yards (R.McDonald; N.Bowman).,0,0,2012 -20120923_SF@MIN,1,56,46,MIN,SF,2,7,47,(11:46) C.Ponder pass short right to P.Harvin to SF 45 for 2 yards (C.Culliver; N.Bowman). PENALTY on SF-C.Culliver Face Mask (15 Yards) 15 yards enforced at SF 45.,0,0,2012 -20120923_SF@MIN,1,56,24,MIN,SF,1,10,30,(11:24) A.Peterson left guard to SF 27 for 3 yards (A.Brooks; N.Bowman).,0,0,2012 -20120923_SF@MIN,1,55,47,MIN,SF,2,7,27,(10:47) C.Ponder pass short right to K.Rudolph pushed ob at SF 21 for 6 yards (A.Brooks).,0,0,2012 -20120923_SF@MIN,1,55,27,MIN,SF,3,1,21,(10:27) A.Peterson up the middle to SF 18 for 3 yards (P.Willis).,0,0,2012 -20120923_SF@MIN,1,54,52,MIN,SF,1,10,18,(9:52) C.Ponder pass incomplete short middle to T.Gerhart [A.Brooks].,0,0,2012 -20120923_SF@MIN,1,54,48,MIN,SF,2,10,18,(9:48) C.Ponder pass incomplete short right to S.Burton.,0,0,2012 -20120923_SF@MIN,1,54,45,MIN,SF,3,10,18,(9:45) (Shotgun) C.Ponder pass short middle to K.Rudolph to SF 7 for 11 yards (D.Whitner).,0,0,2012 -20120923_SF@MIN,1,54,10,MIN,SF,1,7,7,(9:10) A.Peterson right tackle to SF 2 for 5 yards (N.Bowman; D.Goldson).,0,0,2012 -20120923_SF@MIN,1,53,35,MIN,SF,2,2,2,(8:35) A.Peterson left guard to SF 1 for 1 yard (P.Willis; N.Bowman).,0,0,2012 -20120923_SF@MIN,1,53,0,MIN,SF,3,1,1,(8:00) A.Peterson up the middle to SF 1 for no gain (I.Sopoaga).,0,0,2012 -20120923_SF@MIN,1,52,25,MIN,SF,4,1,1,(7:25) C.Ponder pass short left to K.Rudolph for 1 yard TOUCHDOWN.,0,0,2012 -20120923_SF@MIN,1,52,25,MIN,SF,,,1,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20120923_SF@MIN,1,52,25,MIN,SF,,,1,B.Walsh kicks 65 yards from MIN 35 to SF 0. K.Hunter to SF 20 for 20 yards (R.Ellison).,7,0,2012 -20120923_SF@MIN,1,52,15,SF,MIN,1,10,80,(7:15) A.Smith pass short right to M.Crabtree to SF 26 for 6 yards (C.Greenway).,0,7,2012 -20120923_SF@MIN,1,51,38,SF,MIN,2,4,74,(6:38) A.Smith pass incomplete short right to D.Walker (H.Smith).,0,7,2012 -20120923_SF@MIN,1,51,27,SF,MIN,3,4,74,(6:27) (Shotgun) A.Smith pass short right to V.Davis to SF 38 for 12 yards (J.Robinson).,0,7,2012 -20120923_SF@MIN,1,50,50,SF,MIN,1,10,62,(5:50) F.Gore left end pushed ob at SF 42 for 4 yards (L.Guion).,0,7,2012 -20120923_SF@MIN,1,50,30,SF,MIN,2,6,58,(5:30) (Shotgun) A.Smith pass incomplete short right to R.Moss.,0,7,2012 -20120923_SF@MIN,1,50,24,SF,MIN,3,6,58,(5:24) (Shotgun) A.Smith sacked at SF 36 for -6 yards (C.Greenway).,0,7,2012 -20120923_SF@MIN,1,49,54,SF,MIN,4,12,64,(4:54) A.Lee punts 44 yards to MIN 20 Center-B.Jennings fair catch by M.Sherels.,0,7,2012 -20120923_SF@MIN,1,49,47,MIN,SF,1,10,80,(4:47) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph.,7,0,2012 -20120923_SF@MIN,1,49,43,MIN,SF,2,10,80,(4:43) C.Ponder pass deep left to P.Harvin ran ob at MIN 44 for 24 yards.,7,0,2012 -20120923_SF@MIN,1,49,22,MIN,SF,1,10,56,(4:22) A.Peterson up the middle to MIN 44 for no gain (P.Willis).,7,0,2012 -20120923_SF@MIN,1,48,48,MIN,SF,2,10,56,(3:48) A.Peterson left tackle to MIN 46 for 2 yards (Ald.Smith).,7,0,2012 -20120923_SF@MIN,1,48,8,MIN,SF,3,8,54,(3:08) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins [Ald.Smith].,7,0,2012 -20120923_SF@MIN,1,48,3,MIN,SF,4,8,54,(3:03) C.Kluwe punts 35 yards to SF 19 Center-C.Loeffler. K.Williams to SF 35 for 16 yards (H.Smith).,7,0,2012 -20120923_SF@MIN,1,47,53,SF,MIN,1,10,65,(2:53) (Shotgun) A.Smith pass short left to M.Manningham to SF 41 for 6 yards (L.Guion).,0,7,2012 -20120923_SF@MIN,1,47,19,SF,MIN,2,4,59,(2:19) A.Smith pass incomplete short left to R.Moss [J.Brinkley].,0,7,2012 -20120923_SF@MIN,1,47,15,SF,MIN,3,4,59,(2:15) A.Smith pass short right to M.Crabtree pushed ob at SF 47 for 6 yards (J.Robinson).,0,7,2012 -20120923_SF@MIN,1,46,59,SF,MIN,1,10,53,(1:59) D.Kilgore reported in as eligible. F.Gore left end to MIN 48 for 5 yards (C.Cook).,0,7,2012 -20120923_SF@MIN,1,46,25,SF,MIN,2,5,48,(1:25) A.Smith pass short left to M.Manningham to MIN 41 for 7 yards (H.Smith).,0,7,2012 -20120923_SF@MIN,1,45,56,SF,MIN,1,10,41,(:56) A.Smith sacked at MIN 41 for 0 yards (C.Greenway).,0,7,2012 -20120923_SF@MIN,1,45,11,SF,MIN,2,10,41,(:11) F.Gore left end to MIN 30 for 11 yards (H.Smith).,0,7,2012 -20120923_SF@MIN,2,45,0,SF,MIN,1,10,30,(15:00) A.Smith pass short middle to K.Hunter to MIN 28 for 2 yards (C.Greenway).,0,7,2012 -20120923_SF@MIN,2,44,18,SF,MIN,2,8,28,(14:18) A.Smith pass short left to R.Moss pushed ob at MIN 20 for 8 yards (C.Cook).,0,7,2012 -20120923_SF@MIN,2,43,55,SF,MIN,1,10,20,(13:55) F.Gore up the middle to MIN 18 for 2 yards (C.Greenway).,0,7,2012 -20120923_SF@MIN,2,43,14,SF,MIN,2,8,18,(13:14) (Shotgun) A.Smith pass incomplete deep left to R.Moss.,0,7,2012 -20120923_SF@MIN,2,43,9,SF,MIN,3,8,18,(13:09) (Shotgun) A.Smith pass short right to K.Williams to MIN 11 for 7 yards (J.Brinkley).,0,7,2012 -20120923_SF@MIN,2,42,17,SF,MIN,4,1,11,(12:17) D.Akers 29 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,7,2012 -20120923_SF@MIN,2,42,17,SF,MIN,,,11,D.Akers kicks 74 yards from SF 35 to MIN -9. P.Harvin Touchback.,3,7,2012 -20120923_SF@MIN,2,42,13,MIN,SF,1,10,80,(12:13) C.Ponder scrambles left end to MIN 22 for 2 yards (A.Brooks).,7,3,2012 -20120923_SF@MIN,2,41,32,MIN,SF,2,8,78,(11:32) C.Ponder scrambles left end pushed ob at MIN 31 for 9 yards (J.Smith).,7,3,2012 -20120923_SF@MIN,2,41,8,MIN,SF,1,10,69,(11:08) A.Peterson right guard to MIN 32 for 1 yard (P.Willis; N.Bowman).,7,3,2012 -20120923_SF@MIN,2,40,31,MIN,SF,2,9,68,(10:31) C.Ponder pass short middle to A.Peterson to MIN 44 for 12 yards (P.Willis; I.Sopoaga).,7,3,2012 -20120923_SF@MIN,2,39,49,MIN,SF,1,10,56,(9:49) C.Ponder pass short middle to D.Aromashodu to SF 43 for 13 yards (D.Whitner).,7,3,2012 -20120923_SF@MIN,2,39,6,MIN,SF,1,10,43,(9:06) A.Peterson up the middle to SF 36 for 7 yards (N.Bowman).,7,3,2012 -20120923_SF@MIN,2,38,25,MIN,SF,2,3,36,(8:25) A.Peterson right guard to SF 33 for 3 yards (N.Bowman; P.Willis).,7,3,2012 -20120923_SF@MIN,2,37,35,MIN,SF,1,10,33,(7:35) A.Peterson right guard to SF 36 for -3 yards (A.Brooks).,7,3,2012 -20120923_SF@MIN,2,36,59,MIN,SF,2,13,36,(6:59) C.Ponder pass short left to P.Harvin to SF 34 for 2 yards (D.Whitner; N.Bowman).,7,3,2012 -20120923_SF@MIN,2,36,22,MIN,SF,3,11,34,(6:22) (Shotgun) C.Ponder pass short left to D.Aromashodu to SF 23 for 11 yards (T.Brown).,7,3,2012 -20120923_SF@MIN,2,35,39,MIN,SF,1,10,23,(5:39) C.Ponder scrambles up the middle for 23 yards TOUCHDOWN.,7,3,2012 -20120923_SF@MIN,2,35,39,MIN,SF,,,23,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,3,2012 -20120923_SF@MIN,2,35,39,MIN,SF,,,23,B.Walsh kicks 70 yards from MIN 35 to SF -5. K.Hunter to SF 24 for 29 yards (M.Sherels).,14,3,2012 -20120923_SF@MIN,2,35,24,SF,MIN,1,10,76,(5:24) F.Gore up the middle to SF 27 for 3 yards (H.Smith; B.Robison).,3,14,2012 -20120923_SF@MIN,2,34,50,SF,MIN,2,7,73,(4:50) (Shotgun) A.Smith pass incomplete short middle to V.Davis (K.Williams).,3,14,2012 -20120923_SF@MIN,2,34,47,SF,MIN,3,7,73,(4:47) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 36 for 9 yards (C.Greenway).,3,14,2012 -20120923_SF@MIN,2,34,4,SF,MIN,1,10,64,(4:04) K.Hunter right guard to SF 31 for -5 yards (A.Winfield).,3,14,2012 -20120923_SF@MIN,2,33,24,SF,MIN,2,15,69,(3:24) A.Smith scrambles left end to SF 41 for 10 yards (C.Greenway). MIN-M.Raymond was injured during the play. His return is Probable.,3,14,2012 -20120923_SF@MIN,2,32,37,SF,MIN,3,5,59,(2:37) (Shotgun) A.Smith pass short middle to V.Davis to MIN 46 for 13 yards (J.Robinson; E.Griffen).,3,14,2012 -20120923_SF@MIN,2,32,0,SF,MIN,1,10,46,(2:00) F.Gore up the middle to MIN 39 for 7 yards (K.Williams).,3,14,2012 -20120923_SF@MIN,2,31,28,SF,MIN,2,3,39,(1:28) A.Smith pass short middle to M.Crabtree to MIN 33 for 6 yards (Team).,3,14,2012 -20120923_SF@MIN,2,31,20,SF,MIN,1,10,33,(1:20) A.Smith pass short right to R.Moss pushed ob at MIN 26 for 7 yards (A.Winfield).,3,14,2012 -20120923_SF@MIN,2,31,15,SF,MIN,2,3,26,(1:15) (Shotgun) A.Smith pass incomplete short right to F.Gore.,3,14,2012 -20120923_SF@MIN,2,31,9,SF,MIN,3,3,26,(1:09) (Shotgun) A.Smith pass short right to D.Walker to MIN 25 for 1 yard (C.Greenway H.Smith).,3,14,2012 -20120923_SF@MIN,2,31,0,SF,MIN,4,2,25,(1:00) D.Akers 43 yard field goal is BLOCKED (L.Guion) Center-B.Jennings Holder-A.Lee declared dead at MIN 33.,3,14,2012 -20120923_SF@MIN,2,30,52,MIN,SF,1,10,67,(:52) C.Ponder pass short right to M.Jenkins pushed ob at MIN 41 for 8 yards (C.Culliver).,14,3,2012 -20120923_SF@MIN,2,30,47,MIN,SF,2,2,59,(:47) (Shotgun) C.Ponder pass incomplete short right to T.Gerhart.,14,3,2012 -20120923_SF@MIN,2,30,44,MIN,SF,3,2,59,(:44) (Shotgun) C.Ponder pass short left to T.Gerhart to MIN 47 for 6 yards (C.Rogers).,14,3,2012 -20120923_SF@MIN,2,30,37,MIN,SF,1,10,53,(:37) (Shotgun) C.Ponder pass incomplete short right to A.Reisner.,14,3,2012 -20120923_SF@MIN,2,30,31,MIN,SF,2,10,53,(:31) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,14,3,2012 -20120923_SF@MIN,2,30,26,MIN,SF,3,10,53,(:26) (Shotgun) C.Ponder pass deep right to T.Gerhart to SF 39 for 14 yards (N.Bowman).,14,3,2012 -20120923_SF@MIN,2,30,15,MIN,SF,1,10,39,(:15) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,14,3,2012 -20120923_SF@MIN,2,30,9,MIN,SF,2,10,39,(:09) (Shotgun) C.Ponder pass short middle to P.Harvin ran ob at SF 34 for 5 yards.,14,3,2012 -20120923_SF@MIN,2,30,4,MIN,SF,3,5,34,(:04) B.Walsh 52 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,3,2012 -20120923_SF@MIN,3,30,0,MIN,SF,,,34,B.Walsh kicks 73 yards from MIN 35 to SF -8. K.Williams to MIN 14 for 94 yards (J.Sanford).,17,3,2012 -20120923_SF@MIN,3,29,49,SF,MIN,1,10,14,(14:49) K.Hunter left end to MIN 11 for 3 yards (M.Mitchell).,3,17,2012 -20120923_SF@MIN,3,29,12,SF,MIN,2,7,11,(14:12) (Shotgun) F.Gore right guard to MIN 7 for 4 yards (J.Brinkley; L.Guion).,3,17,2012 -20120923_SF@MIN,3,28,31,SF,MIN,3,3,7,(13:31) A.Smith scrambles right end to MIN 6 for 1 yard (A.Winfield).,3,17,2012 -20120923_SF@MIN,3,28,31,SF,MIN,4,2,6,(13:31) (Run formation) PENALTY on SF-A.Smith Delay of Game 5 yards enforced at MIN 6 - No Play.,3,17,2012 -20120923_SF@MIN,3,27,50,SF,MIN,4,7,11,(12:50) D.Akers 29 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,3,17,2012 -20120923_SF@MIN,3,27,50,SF,MIN,,,11,D.Akers kicks 70 yards from SF 35 to MIN -5. P.Harvin to MIN 27 for 32 yards (P.Cox).,6,17,2012 -20120923_SF@MIN,3,27,41,MIN,SF,1,10,73,(12:41) A.Peterson right guard to MIN 31 for 4 yards (N.Bowman).,17,6,2012 -20120923_SF@MIN,3,27,4,MIN,SF,2,6,69,(12:04) A.Peterson up the middle to MIN 35 for 4 yards (N.Bowman).,17,6,2012 -20120923_SF@MIN,3,26,29,MIN,SF,3,2,65,(11:29) (Shotgun) C.Ponder pass incomplete short left to A.Peterson.,17,6,2012 -20120923_SF@MIN,3,26,25,MIN,SF,4,2,65,(11:25) C.Kluwe punts 51 yards to SF 14 Center-C.Loeffler fair catch by K.Williams.,17,6,2012 -20120923_SF@MIN,3,26,17,SF,MIN,1,10,86,(11:17) A.Smith pass short right to M.Crabtree to SF 23 for 9 yards (A.Winfield; J.Sanford).,6,17,2012 -20120923_SF@MIN,3,25,40,SF,MIN,2,1,77,(10:40) D.Kilgore and L.Davis reported in as eligible. F.Gore left end to SF 29 for 6 yards (A.Winfield; C.Greenway).,6,17,2012 -20120923_SF@MIN,3,25,40,SF,MIN,1,10,71,(10:40) A.Smith pass short middle to R.Moss to SF 41 for 12 yards (H.Smith; C.Cook).,6,17,2012 -20120923_SF@MIN,3,24,23,SF,MIN,1,10,59,(9:23) W.Tukuafu reported in as eligible. F.Gore right tackle to MIN 48 for 11 yards (J.Sanford).,6,17,2012 -20120923_SF@MIN,3,23,41,SF,MIN,1,10,48,(8:41) A.Smith pass short left to M.Manningham to MIN 31 for 17 yards (J.Sanford).,6,17,2012 -20120923_SF@MIN,3,22,55,SF,MIN,1,10,31,(7:55) A.Smith pass short right to K.Williams to MIN 22 for 9 yards (A.Winfield).,6,17,2012 -20120923_SF@MIN,3,22,31,SF,MIN,2,1,22,(7:31) D.Kilgore and L.Davis reported in as eligible. F.Gore left guard to MIN 21 for 1 yard (A.Winfield; C.Greenway).,6,17,2012 -20120923_SF@MIN,3,21,48,SF,MIN,1,10,21,(6:48) (Shotgun) A.Smith pass deep right to V.Davis to MIN 1 for 20 yards (J.Sanford).,6,17,2012 -20120923_SF@MIN,3,21,21,SF,MIN,1,1,1,(6:21) D.Kilgore L.Davis and W.Tukuafu reported in as eligible. A.Smith pass short right to V.Davis for 1 yard TOUCHDOWN.,6,17,2012 -20120923_SF@MIN,3,21,21,SF,MIN,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,6,17,2012 -20120923_SF@MIN,3,21,21,SF,MIN,,,1,D.Akers kicks 71 yards from SF 35 to MIN -6. P.Harvin to MIN 14 for 20 yards (L.Grant).,13,17,2012 -20120923_SF@MIN,3,21,12,MIN,SF,1,10,86,(6:12) C.Ponder scrambles right end to MIN 18 for 4 yards (I.Sopoaga).,17,13,2012 -20120923_SF@MIN,3,20,35,MIN,SF,2,6,82,(5:35) C.Ponder pass short left to P.Harvin to MIN 25 for 7 yards (P.Willis).,17,13,2012 -20120923_SF@MIN,3,20,0,MIN,SF,1,10,75,(5:00) C.Ponder pass incomplete short left to A.Peterson.,17,13,2012 -20120923_SF@MIN,3,19,52,MIN,SF,2,10,75,(4:52) A.Peterson up the middle to MIN 30 for 5 yards (D.Whitner). FUMBLES (D.Whitner) recovered by MIN-P.Harvin at MIN 34. P.Harvin to MIN 34 for no gain (Team). PENALTY on SF Unnecessary Roughness 15 yards enforced at MIN 34.,17,13,2012 -20120923_SF@MIN,3,19,23,MIN,SF,1,10,51,(4:23) A.Peterson left tackle to SF 47 for 4 yards (P.Willis). PENALTY on MIN Offensive Holding 10 yards enforced at MIN 49 - No Play.,17,13,2012 -20120923_SF@MIN,3,19,52,MIN,SF,1,20,61,(4:52) C.Ponder pass short right to P.Harvin ran ob at SF 48 for 13 yards.,17,13,2012 -20120923_SF@MIN,3,18,48,MIN,SF,2,7,48,(3:48) (Shotgun) C.Ponder pass short left to P.Harvin to SF 38 for 10 yards (N.Bowman).,17,13,2012 -20120923_SF@MIN,3,18,7,MIN,SF,1,10,38,(3:07) A.Peterson up the middle to SF 35 for 3 yards (P.Willis; N.Bowman).,17,13,2012 -20120923_SF@MIN,3,17,34,MIN,SF,2,7,35,(2:34) C.Ponder pass short middle to A.Peterson to SF 26 for 9 yards (D.Whitner).,17,13,2012 -20120923_SF@MIN,3,16,51,MIN,SF,1,10,26,(1:51) C.Ponder pass incomplete deep middle to K.Rudolph. PENALTY on SF-D.Goldson Unnecessary Roughness 12 yards enforced at SF 26 - No Play.,17,13,2012 -20120923_SF@MIN,3,16,45,MIN,SF,1,10,14,(1:45) P.Harvin up the middle to SF 5 for 9 yards (P.Willis).,17,13,2012 -20120923_SF@MIN,3,16,9,MIN,SF,2,1,5,(1:09) C.Ponder pass short right to M.Asiata to SF 4 for 1 yard (D.Whitner; N.Bowman). PENALTY on SF Defensive Holding 2 yards enforced at SF 5 - No Play.,17,13,2012 -20120923_SF@MIN,3,15,46,MIN,SF,1,3,3,(:46) A.Peterson up the middle to SF 4 for -1 yards (J.Smith).,17,13,2012 -20120923_SF@MIN,4,15,0,MIN,SF,2,4,4,(15:00) A.Peterson up the middle to SF 2 for 2 yards (Ald.Smith).,17,13,2012 -20120923_SF@MIN,4,14,22,MIN,SF,3,2,2,(14:22) (Shotgun) C.Ponder pass short middle to K.Rudolph for 2 yards TOUCHDOWN.,17,13,2012 -20120923_SF@MIN,4,14,22,MIN,SF,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,13,2012 -20120923_SF@MIN,4,14,22,MIN,SF,,,2,B.Walsh kicks 72 yards from MIN 35 to SF -7. K.Williams pushed ob at SF 43 for 50 yards (J.Robinson).,24,13,2012 -20120923_SF@MIN,4,14,10,SF,MIN,1,10,57,(14:10) F.Gore right guard to 50 for 7 yards (J.Sanford). Play Challenged by MIN and REVERSED. F.Gore right guard to 50 for 7 yards (J.Sanford). FUMBLES (J.Sanford) RECOVERED by MIN-M.Mitchell at 50. M.Mitchell to 50 for no gain (Team).,13,24,2012 -20120923_SF@MIN,4,14,4,MIN,SF,1,10,50,(14:04) A.Peterson up the middle to SF 42 for 8 yards (D.Goldson).,24,13,2012 -20120923_SF@MIN,4,13,30,MIN,SF,2,2,42,(13:30) C.Ponder pass incomplete deep middle to P.Harvin.,24,13,2012 -20120923_SF@MIN,4,13,24,MIN,SF,3,2,42,(13:24) (Shotgun) C.Ponder pass incomplete short left to J.Carlson.,24,13,2012 -20120923_SF@MIN,4,13,19,MIN,SF,4,2,42,(13:19) C.Kluwe punts 42 yards to end zone Center-C.Loeffler Touchback.,24,13,2012 -20120923_SF@MIN,4,13,9,SF,MIN,1,10,80,(13:09) F.Gore left end to SF 22 for 2 yards (K.Williams H.Smith).,13,24,2012 -20120923_SF@MIN,4,12,30,SF,MIN,2,8,78,(12:30) A.Smith scrambles left end ran ob at SF 30 for 8 yards.,13,24,2012 -20120923_SF@MIN,4,12,4,SF,MIN,1,10,70,(12:04) A.Smith pass short right to M.Crabtree to SF 34 for 4 yards (C.Greenway; A.Winfield).,13,24,2012 -20120923_SF@MIN,4,11,31,SF,MIN,2,6,66,(11:31) A.Smith pass short middle to F.Gore to SF 43 for 9 yards (J.Brinkley).,13,24,2012 -20120923_SF@MIN,4,10,45,SF,MIN,1,10,57,(10:45) K.Hunter right tackle to SF 43 for no gain (J.Brinkley).,13,24,2012 -20120923_SF@MIN,4,10,9,SF,MIN,2,10,57,(10:09) (Shotgun) K.Hunter left tackle to SF 45 for 2 yards (C.Greenway).,13,24,2012 -20120923_SF@MIN,4,9,23,SF,MIN,3,8,55,(9:23) (Shotgun) A.Smith pass incomplete short right to K.Williams.,13,24,2012 -20120923_SF@MIN,4,9,15,SF,MIN,4,8,55,(9:15) A.Lee punts 53 yards to MIN 2 Center-B.Jennings downed by SF-D.Goldson.,13,24,2012 -20120923_SF@MIN,4,9,2,MIN,SF,1,10,98,(9:02) A.Peterson right guard to MIN 5 for 3 yards (N.Bowman A.Brooks). SF-I.Sopoaga was injured during the play. His return is Probable.,24,13,2012 -20120923_SF@MIN,4,8,38,MIN,SF,2,7,95,(8:38) A.Peterson left guard ran ob at MIN 25 for 20 yards (T.Brown).,24,13,2012 -20120923_SF@MIN,4,8,10,MIN,SF,1,10,75,(8:10) C.Ponder pass incomplete short right to P.Harvin.,24,13,2012 -20120923_SF@MIN,4,8,5,MIN,SF,2,10,75,(8:05) A.Peterson up the middle to MIN 27 for 2 yards (R.Jean Francois).,24,13,2012 -20120923_SF@MIN,4,7,30,MIN,SF,3,8,73,(7:30) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,24,13,2012 -20120923_SF@MIN,4,7,25,MIN,SF,4,8,73,(7:25) C.Kluwe punts 53 yards to SF 20 Center-C.Loeffler. K.Williams to SF 28 for 8 yards (L.Dean). PENALTY on SF Face Mask (15 Yards) 11 yards enforced at SF 28.,24,13,2012 -20120923_SF@MIN,4,7,12,SF,MIN,1,10,83,(7:12) (Shotgun) A.Smith pass short left to M.Manningham to SF 21 for 4 yards (C.Cook).,13,24,2012 -20120923_SF@MIN,4,6,46,SF,MIN,2,6,79,(6:46) (Shotgun) A.Smith pass incomplete short left to V.Davis.,13,24,2012 -20120923_SF@MIN,4,6,41,SF,MIN,3,6,79,(6:41) (Shotgun) A.Smith pass incomplete short right to V.Davis.,13,24,2012 -20120923_SF@MIN,4,6,36,SF,MIN,4,6,79,(6:36) A.Lee punts 49 yards to MIN 30 Center-B.Jennings fair catch by M.Sherels.,13,24,2012 -20120923_SF@MIN,4,6,28,MIN,SF,1,10,70,(6:28) A.Peterson left end to MIN 37 for 7 yards (Ald.Smith).,24,13,2012 -20120923_SF@MIN,4,5,59,MIN,SF,2,3,63,(5:59) T.Gerhart left tackle to MIN 46 for 9 yards (P.Willis).,24,13,2012 -20120923_SF@MIN,4,5,15,MIN,SF,1,10,54,(5:15) T.Gerhart left guard to MIN 49 for 3 yards (N.Bowman; L.Grant).,24,13,2012 -20120923_SF@MIN,4,4,31,MIN,SF,2,7,51,(4:31) T.Gerhart left guard to SF 49 for 2 yards (J.Smith N.Bowman).,24,13,2012 -20120923_SF@MIN,4,3,49,MIN,SF,3,5,49,(3:49) (Shotgun) C.Ponder pass short left to P.Harvin to SF 35 for 14 yards (N.Bowman).,24,13,2012 -20120923_SF@MIN,4,3,39,MIN,SF,1,10,35,(3:39) T.Gerhart up the middle to SF 35 for no gain (W.Tukuafu; D.Whitner).,24,13,2012 -20120923_SF@MIN,4,3,33,MIN,SF,2,10,35,(3:33) T.Gerhart up the middle to SF 35 for no gain (R.Jean Francois; A.Brooks). San Francisco challenged the fumble ruling and the play was REVERSED. T.Gerhart up the middle to SF 35 for no gain. FUMBLES RECOVERED by SF-P.Willis at SF 35. P.Willis to SF 38 for 3 yards.,24,13,2012 -20120923_SF@MIN,4,3,29,SF,MIN,1,10,62,(3:29) (Shotgun) A.Smith scrambles left end to SF 45 for 7 yards (E.Griffen).,13,24,2012 -20120923_SF@MIN,4,2,58,SF,MIN,2,3,55,(2:58) (Shotgun) A.Smith pass short left to V.Davis to MIN 48 for 7 yards (C.Greenway).,13,24,2012 -20120923_SF@MIN,4,2,35,SF,MIN,1,10,48,(2:35) (Shotgun) A.Smith pass incomplete short right to M.Crabtree (A.Winfield).,13,24,2012 -20120923_SF@MIN,4,2,30,SF,MIN,2,10,48,(2:30) (Shotgun) A.Smith pass deep right intended for M.Crabtree INTERCEPTED by J.Robinson at MIN 32. J.Robinson to SF 44 for 24 yards (A.Davis).,13,24,2012 -20120923_SF@MIN,4,2,18,MIN,SF,1,10,44,(2:18) T.Gerhart up the middle to SF 42 for 2 yards (A.Brooks). San Francisco challenged the fumble ruling and the play was REVERSED. T.Gerhart up the middle to SF 42 for 2 yards. FUMBLES and recovers at SF 42.,24,13,2012 -20120923_SF@MIN,4,2,18,MIN,SF,2,8,42,(2:18) T.Gerhart left end to SF 43 for -1 yards (R.Jean Francois).,24,13,2012 -20120923_SF@MIN,4,2,0,MIN,SF,3,9,43,(2:00) T.Gerhart up the middle to SF 40 for 3 yards (A.Brooks). FUMBLES (A.Brooks) touched at SF 35 RECOVERED by SF-C.Rogers at SF 32. C.Rogers to SF 43 for 11 yards (R.Ellison).,24,13,2012 -20120923_SF@MIN,4,1,46,SF,MIN,1,10,57,(1:46) (Shotgun) A.Smith pass deep right to M.Manningham to MIN 35 for 22 yards (J.Sanford).,13,24,2012 -20120923_SF@MIN,4,1,41,SF,MIN,1,10,35,(1:41) (Shotgun) A.Smith sacked at MIN 42 for -7 yards (J.Allen). FUMBLES (J.Allen) RECOVERED by MIN-B.Robison at MIN 42. B.Robison to MIN 42 for no gain (M.Iupati).,13,24,2012 -20120923_SF@MIN,4,1,33,MIN,SF,1,10,58,(1:33) C.Ponder kneels to MIN 40 for -2 yards.,24,13,2012 -20120923_SF@MIN,4,0,53,MIN,SF,2,12,60,(:53) C.Ponder kneels to MIN 38 for -2 yards.,24,13,2012 -20120923_SF@MIN,4,0,28,MIN,SF,3,14,62,(:28) C.Ponder kneels to MIN 37 for -1 yards.,24,13,2012 -20120923_SF@MIN,4,0,28,MIN,SF,,,62,                      ,24,13,2012 -20120923_KC@NO,1,0,0,KC,NO,,,62,R.Succop kicks 69 yards from KC 35 to NO -4. D.Sproles to NO 17 for 21 yards (T.Hartman).,0,0,2012 -20120923_KC@NO,1,59,56,NO,KC,1,10,83,(14:56) P.Thomas right guard to NO 17 for no gain (D.Johnson).,0,0,2012 -20120923_KC@NO,1,59,24,NO,KC,2,10,83,(14:24) (Shotgun) D.Brees pass short middle to M.Colston to NO 25 for 8 yards (B.Flowers; E.Berry). Pass 7 YAC 1,0,0,2012 -20120923_KC@NO,1,58,52,NO,KC,3,2,75,(13:52) D.Sproles left end to KC 28 for 47 yards (J.Arenas).,0,0,2012 -20120923_KC@NO,1,58,1,NO,KC,1,10,28,(13:01) (Shotgun) D.Brees pass short left to M.Colston to KC 9 for 19 yards (S.Routt). Pass 9 YAC 10,0,0,2012 -20120923_KC@NO,1,57,28,NO,KC,1,9,9,(12:28) (Shotgun) D.Brees pass incomplete short right to M.Colston (B.Flowers).,0,0,2012 -20120923_KC@NO,1,57,23,NO,KC,2,9,9,(12:23) (Shotgun) D.Brees pass short right to L.Moore for 9 yards TOUCHDOWN. Pass 9 YAC 0,0,0,2012 -20120923_KC@NO,1,57,23,NO,KC,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20120923_KC@NO,1,57,23,NO,KC,,,9,T.Morstead kicks 71 yards from NO 35 to KC -6. J.Arenas to KC 12 for 18 yards (J.Patrick).,7,0,2012 -20120923_KC@NO,1,57,15,KC,NO,1,10,88,(12:15) J.Charles right guard to KC 14 for 2 yards (D.Hawthorne).,0,7,2012 -20120923_KC@NO,1,56,38,KC,NO,2,8,86,(11:38) P.Hillis right guard to KC 18 for 4 yards (S.Ellis; D.Hawthorne).,0,7,2012 -20120923_KC@NO,1,55,51,KC,NO,3,4,82,(10:51) (Shotgun) M.Cassel pass short left to D.Bowe to KC 29 for 11 yards (P.Robinson). Pass 7 YAC 4,0,7,2012 -20120923_KC@NO,1,55,14,KC,NO,1,10,71,(10:14) M.Cassel pass short right to J.Charles pushed ob at KC 33 for 4 yards (R.Harper). Pass -6 YAC 10,0,7,2012 -20120923_KC@NO,1,54,47,KC,NO,2,6,67,(9:47) (Shotgun) M.Cassel pass short middle to D.McCluster pushed ob at NO 47 for 20 yards (M.Jenkins). Pass -3 YAC 23,0,7,2012 -20120923_KC@NO,1,54,26,KC,NO,1,10,47,(9:26) J.Charles right guard to NO 36 for 11 yards (M.Jenkins).,0,7,2012 -20120923_KC@NO,1,53,54,KC,NO,1,10,36,(8:54) D.McCluster left end to NO 31 for 5 yards (J.Casillas).,0,7,2012 -20120923_KC@NO,1,53,9,KC,NO,2,5,31,(8:09) M.Cassel pass short right to D.McCluster to NO 26 for 5 yards (C.White). Pass 2 YAC 3,0,7,2012 -20120923_KC@NO,1,52,27,KC,NO,1,10,26,(7:27) J.Charles right end to NO 17 for 9 yards (M.Wilson).,0,7,2012 -20120923_KC@NO,1,51,49,KC,NO,2,1,17,(6:49) J.Charles left end pushed ob at NO 11 for 6 yards (J.Casillas).,0,7,2012 -20120923_KC@NO,1,51,22,KC,NO,1,10,11,(6:22) J.Charles left guard to NO 13 for -2 yards (T.Johnson).,0,7,2012 -20120923_KC@NO,1,50,43,KC,NO,2,12,13,(5:43) (Shotgun) M.Cassel pass short left to T.Moeaki to NO 6 for 7 yards (M.Jenkins). Pass 4 YAC 3,0,7,2012 -20120923_KC@NO,1,50,1,KC,NO,3,5,6,(5:01) (Shotgun) M.Cassel pass incomplete short middle to J.Baldwin.,0,7,2012 -20120923_KC@NO,1,49,56,KC,NO,4,5,6,(4:56) R.Succop 25 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20120923_KC@NO,1,49,56,KC,NO,,,6,R.Succop kicks 72 yards from KC 35 to NO -7. D.Sproles to NO 13 for 20 yards (E.Jones).,3,7,2012 -20120923_KC@NO,1,49,48,NO,KC,1,10,87,(4:48) M.Ingram left guard to NO 13 for no gain (E.Berry; J.Belcher).,7,3,2012 -20120923_KC@NO,1,49,10,NO,KC,2,10,87,(4:10) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,3,2012 -20120923_KC@NO,1,49,6,NO,KC,3,10,87,(4:06) (Shotgun) D.Brees pass deep right to D.Henderson to NO 49 for 36 yards (B.Flowers). Pass 29 YAC 7,7,3,2012 -20120923_KC@NO,1,48,25,NO,KC,1,10,51,(3:25) M.Ingram left guard to KC 47 for 4 yards (Ty.Jackson; D.Johnson).,7,3,2012 -20120923_KC@NO,1,47,52,NO,KC,2,6,47,(2:52) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,3,2012 -20120923_KC@NO,1,47,46,NO,KC,3,6,47,(2:46) (Shotgun) D.Brees pass deep left to L.Moore to KC 30 for 17 yards (S.Routt) [T.Hali]. Pass 17 YAC 0,7,3,2012 -20120923_KC@NO,1,47,6,NO,KC,1,10,30,(2:06) (Shotgun) D.Sproles right guard to KC 31 for -1 yards (J.Powe; G.Dorsey).,7,3,2012 -20120923_KC@NO,1,46,35,NO,KC,2,11,31,(1:35) D.Brees pass short left to J.Graham to KC 24 for 7 yards (J.Belcher; S.Routt). Pass 8 YAC -1,7,3,2012 -20120923_KC@NO,1,45,51,NO,KC,3,4,24,(:51) (Shotgun) D.Brees pass short right to J.Graham to KC 20 for 4 yards (E.Berry). Kansas City challenged the first down ruling and the play was REVERSED. (Shotgun) D.Brees pass short right to J.Graham to KC 22 for 2 yards (E.Berry). Pass 3 YAC -1,7,3,2012 -20120923_KC@NO,2,45,0,NO,KC,4,2,22,(15:00) G.Hartley 40 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,3,2012 -20120923_KC@NO,2,45,0,NO,KC,,,22,T.Morstead kicks 68 yards from NO 35 to KC -3. J.Arenas to KC 24 for 27 yards (C.White).,10,3,2012 -20120923_KC@NO,2,44,50,KC,NO,1,10,76,(14:50) J.Charles right tackle to KC 24 for no gain (C.Lofton).,3,10,2012 -20120923_KC@NO,2,44,18,KC,NO,2,10,76,(14:18) P.Hillis left tackle to KC 29 for 5 yards (C.Lofton).,3,10,2012 -20120923_KC@NO,2,43,39,KC,NO,3,5,71,(13:39) (Shotgun) M.Cassel pass incomplete short right to D.McCluster (M.Jenkins).,3,10,2012 -20120923_KC@NO,2,43,32,KC,NO,4,5,71,(13:32) D.Colquitt punts 55 yards to NO 16 Center-T.Gafford. D.Sproles to NO 18 for 2 yards (E.Jones).,3,10,2012 -20120923_KC@NO,2,43,22,NO,KC,1,10,82,(13:22) (Shotgun) D.Brees pass short right to P.Thomas to NO 32 for 14 yards (D.Johnson). Pass 8 YAC 6,10,3,2012 -20120923_KC@NO,2,42,51,NO,KC,1,10,68,(12:51) P.Thomas right guard to NO 33 for 1 yard (Ty.Jackson).,10,3,2012 -20120923_KC@NO,2,42,7,NO,KC,2,9,67,(12:07) (Shotgun) D.Brees sacked at NO 23 for -10 yards (D.Johnson).,10,3,2012 -20120923_KC@NO,2,41,33,NO,KC,3,19,77,(11:33) (Shotgun) D.Brees pass short left to P.Thomas to NO 30 for 7 yards (E.Berry; D.Johnson). Pass 4 YAC 3,10,3,2012 -20120923_KC@NO,2,40,53,NO,KC,4,12,70,(10:53) T.Morstead punts 70 yards to end zone Center-J.Drescher Touchback.,10,3,2012 -20120923_KC@NO,2,40,45,KC,NO,1,10,80,(10:45) J.Charles right end to KC 27 for 7 yards (C.White).,3,10,2012 -20120923_KC@NO,2,40,10,KC,NO,2,3,73,(10:10) M.Cassel pass short left to D.Bowe to KC 36 for 9 yards (S.Shanle). Pass 5 YAC 4,3,10,2012 -20120923_KC@NO,2,39,36,KC,NO,1,10,64,(9:36) M.Cassel pass short left to J.Baldwin to 50 for 14 yards (J.Greer). Pass 11 YAC 3,3,10,2012 -20120923_KC@NO,2,38,55,KC,NO,1,10,50,(8:55) P.Hillis right guard to NO 42 for 8 yards (W.Smith; S.Shanle). PENALTY on KC-R.Lilja Offensive Holding 10 yards enforced at 50 - No Play.,3,10,2012 -20120923_KC@NO,2,38,36,KC,NO,1,20,60,(8:36) J.Charles right end to KC 41 for 1 yard (P.Robinson).,3,10,2012 -20120923_KC@NO,2,38,1,KC,NO,2,19,59,(8:01) (Shotgun) M.Cassel pass short left to J.Charles ran ob at NO 45 for 14 yards (C.Lofton). Pass 6 YAC 8,3,10,2012 -20120923_KC@NO,2,37,28,KC,NO,3,5,45,(7:28) (Shotgun) M.Cassel pass incomplete short right to D.Bowe (P.Robinson).,3,10,2012 -20120923_KC@NO,2,37,21,KC,NO,4,5,45,(7:21) D.Colquitt punts 35 yards to NO 10 Center-T.Gafford fair catch by D.Sproles.,3,10,2012 -20120923_KC@NO,2,37,14,NO,KC,1,10,90,(7:14) M.Ingram right tackle to NO 13 for 3 yards (J.Belcher).,10,3,2012 -20120923_KC@NO,2,36,40,NO,KC,2,7,87,(6:40) D.Brees pass incomplete short right to L.Moore.,10,3,2012 -20120923_KC@NO,2,36,36,NO,KC,3,7,87,(6:36) (Shotgun) D.Brees pass incomplete short left to J.Graham [J.Houston].,10,3,2012 -20120923_KC@NO,2,36,30,NO,KC,4,7,87,(6:30) T.Morstead punts 56 yards to KC 31 Center-J.Drescher. J.Arenas to NO 45 for 24 yards (R.Bush).,10,3,2012 -20120923_KC@NO,2,36,15,KC,NO,1,10,45,(6:15) M.Cassel pass short middle to D.Bowe to NO 30 for 15 yards (J.Greer). Pass 9 YAC 6,3,10,2012 -20120923_KC@NO,2,35,36,KC,NO,1,10,30,(5:36) J.Charles left end to NO 27 for 3 yards (W.Smith; S.Ellis).,3,10,2012 -20120923_KC@NO,2,34,58,KC,NO,2,7,27,(4:58) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,3,10,2012 -20120923_KC@NO,2,34,52,KC,NO,3,7,27,(4:52) (Shotgun) M.Cassel pass incomplete deep middle to D.Bowe (C.Lofton) [W.Smith].,3,10,2012 -20120923_KC@NO,2,34,46,KC,NO,4,7,27,(4:46) R.Succop 45 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 -20120923_KC@NO,2,34,46,KC,NO,,,27,R.Succop kicks 74 yards from KC 35 to NO -9. D.Sproles Touchback.,6,10,2012 -20120923_KC@NO,2,34,41,NO,KC,1,10,80,(4:41) D.Brees pass incomplete deep left to L.Moore. PENALTY on KC-Ty.Jackson Defensive Offside 5 yards enforced at NO 20 - No Play.,10,6,2012 -20120923_KC@NO,2,34,35,NO,KC,1,5,75,(4:35) D.Brees pass short left to L.Moore to NO 35 for 10 yards (S.Routt). Pass 5 YAC 5,10,6,2012 -20120923_KC@NO,2,34,5,NO,KC,1,10,65,(4:05) (Shotgun) D.Sproles left guard to NO 44 for 9 yards (A.Elam).,10,6,2012 -20120923_KC@NO,2,33,33,NO,KC,2,1,56,(3:33) M.Ingram right guard to NO 47 for 3 yards (E.Berry).,10,6,2012 -20120923_KC@NO,2,33,0,NO,KC,1,10,53,(3:00) D.Brees pass short right to D.Henderson pushed ob at KC 46 for 7 yards (B.Flowers). Pass 3 YAC 4,10,6,2012 -20120923_KC@NO,2,32,36,NO,KC,2,3,46,(2:36) D.Brees pass short left to P.Thomas to KC 39 for 7 yards (J.Belcher) [D.Johnson]. Pass -1 YAC 8,10,6,2012 -20120923_KC@NO,2,32,0,NO,KC,1,10,39,(2:00) D.Brees pass short left to P.Thomas to KC 12 for 27 yards (A.Elam). Pass -7 YAC 34,10,6,2012 -20120923_KC@NO,2,31,49,NO,KC,1,10,12,(1:49) P.Thomas left tackle to KC 9 for 3 yards (J.Houston; D.Johnson).,10,6,2012 -20120923_KC@NO,2,31,15,NO,KC,2,7,9,(1:15) (Shotgun) D.Brees pass short left to P.Thomas for 9 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) D.Brees pass incomplete short left to P.Thomas.,10,6,2012 -20120923_KC@NO,2,31,11,NO,KC,3,7,9,(1:11) (Shotgun) D.Brees sacked at KC 20 for -11 yards (J.Houston).,10,6,2012 -20120923_KC@NO,2,30,51,NO,KC,4,18,20,(:51) G.Hartley 38 yard field goal is No Good Wide Right Center-J.Drescher Holder-C.Daniel.,10,6,2012 -20120923_KC@NO,2,30,47,KC,NO,1,10,72,(:47) (Shotgun) S.Draughn right end to KC 33 for 5 yards (R.Harper).,6,10,2012 -20120923_KC@NO,2,30,41,KC,NO,2,5,67,(:41) (Shotgun) M.Cassel sacked at KC 26 for -7 yards (J.Galette). Penalty on KC-R.Lilja Offensive Holding declined.,6,10,2012 -20120923_KC@NO,2,30,35,KC,NO,3,12,74,(:35) (Shotgun) M.Cassel pass short left to J.Charles to KC 45 for 19 yards (R.Harper; J.Casillas). Pass -7 YAC 26,6,10,2012 -20120923_KC@NO,2,30,17,KC,NO,1,10,55,(:17) M.Cassel spiked the ball to stop the clock.,6,10,2012 -20120923_KC@NO,2,30,16,KC,NO,2,10,55,(:16) (Shotgun) M.Cassel pass short left to S.Draughn to NO 45 for 10 yards (J.Greer). Pass 3 YAC 7,6,10,2012 -20120923_KC@NO,2,30,8,KC,NO,1,10,45,(:08) (Shotgun) M.Cassel sacked at NO 45 for 0 yards (J.Galette). FUMBLES (J.Galette) RECOVERED by NO-C.Jordan at NO 38. C.Jordan to NO 38 for no gain (R.Hudson).,6,10,2012 -20120923_KC@NO,3,30,0,NO,KC,,,45,T.Morstead kicks 72 yards from NO 35 to KC -7. S.Draughn to KC 16 for 23 yards (W.Herring).,10,6,2012 -20120923_KC@NO,3,29,51,NO,KC,1,10,19,(14:51) D.Brees pass incomplete short left to P.Thomas (J.Houston).,10,6,2012 -20120923_KC@NO,3,29,46,NO,KC,2,10,19,(14:46) D.Brees pass deep left to L.Moore pushed ob at KC 1 for 18 yards (S.Routt). Kansas City challenged the pass completion ruling and the play was REVERSED. D.Brees pass incomplete deep left to L.Moore.,10,6,2012 -20120923_KC@NO,3,29,27,NO,KC,3,10,19,(14:27) (Shotgun) D.Brees pass short middle to M.Colston to KC 6 for 13 yards (S.Routt). Pass 13 YAC 0,10,6,2012 -20120923_KC@NO,3,28,51,NO,KC,1,6,6,(13:51) P.Thomas left guard to KC 1 for 5 yards (B.Flowers).,10,6,2012 -20120923_KC@NO,3,28,14,NO,KC,2,1,1,(13:14) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN. Pass 0 YAC 1,10,6,2012 -20120923_KC@NO,3,28,14,NO,KC,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,10,6,2012 -20120923_KC@NO,3,28,14,NO,KC,,,1,T.Morstead kicks 74 yards from NO 35 to KC -9. S.Draughn Touchback.,17,6,2012 -20120923_KC@NO,3,28,10,KC,NO,1,10,80,(13:10) J.Charles right end to KC 29 for 9 yards (R.Harper; S.Shanle).,6,17,2012 -20120923_KC@NO,3,27,33,KC,NO,2,1,71,(12:33) J.Charles right tackle to KC 33 for 4 yards (R.Harper).,6,17,2012 -20120923_KC@NO,3,27,3,KC,NO,1,10,67,(12:03) J.Charles left tackle to KC 39 for 6 yards (M.Jenkins).,6,17,2012 -20120923_KC@NO,3,26,32,KC,NO,2,4,61,(11:32) J.Charles left end pushed ob at KC 44 for 5 yards (J.Casillas).,6,17,2012 -20120923_KC@NO,3,26,5,KC,NO,1,10,56,(11:05) P.Hillis right guard to KC 46 for 2 yards (C.Lofton).,6,17,2012 -20120923_KC@NO,3,25,26,KC,NO,2,8,54,(10:26) (Shotgun) M.Cassel pass incomplete short left to P.Hillis.,6,17,2012 -20120923_KC@NO,3,25,21,KC,NO,3,8,54,(10:21) (Shotgun) M.Cassel pass short right to S.Draughn to NO 49 for 5 yards (P.Robinson). KC-R.Hudson was injured during the play. His return is Questionable. Pass 5 YAC 0,6,17,2012 -20120923_KC@NO,3,25,1,KC,NO,4,3,49,(10:01) D.Colquitt punts 24 yards to NO 25 Center-T.Gafford out of bounds.,6,17,2012 -20120923_KC@NO,3,24,54,NO,KC,1,10,75,(9:54) D.Sproles left end to NO 29 for 4 yards (T.Daniels). PENALTY on NO-C.Roby Offensive Holding 10 yards enforced at NO 29.,17,6,2012 -20120923_KC@NO,3,24,31,NO,KC,1,16,81,(9:31) D.Brees pass short right to D.Henderson to NO 23 for 4 yards (B.Flowers). Pass 4 YAC 0,17,6,2012 -20120923_KC@NO,3,23,55,NO,KC,2,12,77,(8:55) D.Brees pass short left to J.Graham to NO 29 for 6 yards (D.Johnson). Pass 4 YAC 2,17,6,2012 -20120923_KC@NO,3,23,14,NO,KC,3,6,71,(8:14) (Shotgun) D.Brees pass incomplete deep middle to J.Graham (T.Daniels).,17,6,2012 -20120923_KC@NO,3,23,9,NO,KC,4,6,71,(8:09) T.Morstead punts 55 yards to KC 16 Center-J.Drescher downed by NO-C.Roby.,17,6,2012 -20120923_KC@NO,3,22,58,KC,NO,1,10,84,(7:58) M.Cassel pass short right to S.Maneri to KC 26 for 10 yards (P.Robinson; S.Shanle). Pass 2 YAC 8,6,17,2012 -20120923_KC@NO,3,22,34,KC,NO,1,10,74,(7:34) J.Charles right tackle to KC 29 for 3 yards (C.Lofton; C.Jordan).,6,17,2012 -20120923_KC@NO,3,21,48,KC,NO,2,7,71,(6:48) (Shotgun) PENALTY on KC-B.Albert False Start 5 yards enforced at KC 29 - No Play.,6,17,2012 -20120923_KC@NO,3,21,31,KC,NO,2,12,76,(6:31) M.Cassel pass short left intended for S.Breaston INTERCEPTED by J.Greer at KC 35. J.Greer to KC 7 for 28 yards (B.Albert).,6,17,2012 -20120923_KC@NO,3,21,21,NO,KC,1,7,7,(6:21) M.Ingram left guard to KC 6 for 1 yard (Ty.Jackson).,17,6,2012 -20120923_KC@NO,3,20,41,NO,KC,2,6,6,(5:41) D.Brees pass short right to J.Collins for 6 yards TOUCHDOWN. Pass 0 YAC 6,17,6,2012 -20120923_KC@NO,3,20,41,NO,KC,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,6,2012 -20120923_KC@NO,3,20,41,NO,KC,,,6,T.Morstead kicks 70 yards from NO 35 to KC -5. S.Draughn to KC 9 for 14 yards (C.Roby).,24,6,2012 -20120923_KC@NO,3,20,32,KC,NO,1,10,91,(5:32) J.Charles left end for 91 yards TOUCHDOWN.,6,24,2012 -20120923_KC@NO,3,20,32,KC,NO,,,91,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,6,24,2012 -20120923_KC@NO,3,20,32,KC,NO,,,91,R.Succop kicks 73 yards from KC 35 to NO -8. D.Sproles to NO 30 for 38 yards (J.Brown).,13,24,2012 -20120923_KC@NO,3,20,12,NO,KC,1,10,70,(5:12) PENALTY on NO-D.Graham False Start 5 yards enforced at NO 30 - No Play.,24,13,2012 -20120923_KC@NO,3,20,12,NO,KC,1,15,75,(5:12) (Shotgun) D.Brees pass short left to D.Henderson ran ob at NO 31 for 6 yards. Pass 6 YAC 0,24,13,2012 -20120923_KC@NO,3,19,50,NO,KC,2,9,69,(4:50) P.Thomas right tackle to NO 34 for 3 yards (Ty.Jackson; E.Berry).,24,13,2012 -20120923_KC@NO,3,19,6,NO,KC,3,6,66,(4:06) (Shotgun) D.Brees pass deep right to L.Moore to KC 32 for 34 yards (J.Arenas). Pass 34 YAC 0,24,13,2012 -20120923_KC@NO,3,18,21,NO,KC,1,10,32,(3:21) (Shotgun) D.Sproles left guard to KC 29 for 3 yards (R.Pitoitua).,24,13,2012 -20120923_KC@NO,3,17,43,NO,KC,2,7,29,(2:43) D.Brees pass deep left intended for D.Henderson INTERCEPTED by S.Routt at KC 0. S.Routt to KC 32 for 32 yards (D.Brees).,24,13,2012 -20120923_KC@NO,3,17,28,KC,NO,1,10,68,(2:28) M.Cassel pass incomplete short right to D.Bowe.,13,24,2012 -20120923_KC@NO,3,17,22,KC,NO,2,10,68,(2:22) J.Charles right tackle to KC 36 for 4 yards (B.Bunkley).,13,24,2012 -20120923_KC@NO,3,16,40,KC,NO,3,6,64,(1:40) (Shotgun) M.Cassel pass short left to D.Bowe to KC 47 for 11 yards (C.Lofton; P.Robinson). Pass 11 YAC 0,13,24,2012 -20120923_KC@NO,3,15,58,KC,NO,1,10,53,(:58) J.Charles right tackle to NO 13 for 40 yards (M.Jenkins).,13,24,2012 -20120923_KC@NO,3,15,12,KC,NO,1,10,13,(:12) S.Draughn left end to NO 17 for -4 yards (C.Jordan; R.Harper).,13,24,2012 -20120923_KC@NO,4,15,0,KC,NO,2,14,17,(15:00) (Shotgun) M.Cassel pass short left to J.Charles to NO 12 for 5 yards (M.Jenkins). Pass -2 YAC 7,13,24,2012 -20120923_KC@NO,4,14,16,KC,NO,3,9,12,(14:16) (Shotgun) M.Cassel sacked at NO 16 for -4 yards (W.Smith).,13,24,2012 -20120923_KC@NO,4,13,45,KC,NO,4,13,16,(13:45) R.Succop 34 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,13,24,2012 -20120923_KC@NO,4,13,45,KC,NO,,,16,R.Succop kicks 73 yards from KC 35 to NO -8. D.Sproles to NO 20 for 28 yards (B.Siler).,16,24,2012 -20120923_KC@NO,4,13,34,NO,KC,1,10,80,(13:34) D.Sproles right guard to NO 22 for 2 yards (D.Johnson).,24,16,2012 -20120923_KC@NO,4,13,2,NO,KC,2,8,78,(13:02) (Shotgun) D.Brees pass incomplete short right to D.Henderson.,24,16,2012 -20120923_KC@NO,4,12,55,NO,KC,3,8,78,(12:55) (Shotgun) D.Brees pass incomplete short right to J.Graham.,24,16,2012 -20120923_KC@NO,4,12,50,NO,KC,4,8,78,(12:50) T.Morstead punts 48 yards to KC 30 Center-J.Drescher out of bounds.,24,16,2012 -20120923_KC@NO,4,12,43,KC,NO,1,10,70,(12:43) J.Charles left guard to KC 44 for 14 yards (R.Harper).,16,24,2012 -20120923_KC@NO,4,12,12,KC,NO,1,10,56,(12:12) J.Charles right tackle to KC 47 for 3 yards (W.Smith; A.Hicks).,16,24,2012 -20120923_KC@NO,4,11,37,KC,NO,2,7,53,(11:37) (Shotgun) M.Cassel pass short middle to J.Baldwin to NO 42 for 11 yards (J.Greer). Pass 10 YAC 1,16,24,2012 -20120923_KC@NO,4,10,58,KC,NO,1,10,42,(10:58) M.Cassel pass incomplete short left to D.Bowe.,16,24,2012 -20120923_KC@NO,4,10,52,KC,NO,2,10,42,(10:52) J.Charles right tackle to NO 41 for 1 yard (C.Jordan).,16,24,2012 -20120923_KC@NO,4,10,10,KC,NO,3,9,41,(10:10) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe. PENALTY on NO-P.Robinson Defensive Pass Interference 26 yards enforced at NO 41 - No Play.,16,24,2012 -20120923_KC@NO,4,10,4,KC,NO,1,10,15,(10:04) PENALTY on KC-B.Albert False Start 5 yards enforced at NO 15 - No Play.,16,24,2012 -20120923_KC@NO,4,10,4,KC,NO,1,15,20,(10:04) S.Draughn left guard to NO 15 for 5 yards (R.Harper).,16,24,2012 -20120923_KC@NO,4,9,27,KC,NO,2,10,15,(9:27) M.Cassel pass incomplete short right to J.Charles [W.Smith].,16,24,2012 -20120923_KC@NO,4,9,21,KC,NO,3,10,15,(9:21) (Shotgun) NO-W.Smith was injured during the play. His return is Probable. PENALTY on KC-E.Winston False Start 5 yards enforced at NO 15 - No Play.,16,24,2012 -20120923_KC@NO,4,9,21,KC,NO,3,15,20,(9:21) (Shotgun) M.Cassel pass incomplete deep middle to T.Moeaki (R.Harper).,16,24,2012 -20120923_KC@NO,4,9,16,KC,NO,4,15,20,(9:16) R.Succop 38 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,16,24,2012 -20120923_KC@NO,4,9,16,KC,NO,,,20,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,19,24,2012 -20120923_KC@NO,4,9,11,NO,KC,1,10,80,(9:11) P.Thomas left guard to NO 19 for -1 yards (E.Berry).,24,19,2012 -20120923_KC@NO,4,8,32,NO,KC,2,11,81,(8:32) D.Brees pass incomplete short left to D.Sproles (J.Houston).,24,19,2012 -20120923_KC@NO,4,8,27,NO,KC,3,11,81,(8:27) (Shotgun) D.Brees sacked at NO 12 for -7 yards (J.Houston).,24,19,2012 -20120923_KC@NO,4,7,57,NO,KC,4,18,88,(7:57) T.Morstead punts 46 yards to KC 42 Center-J.Drescher. J.Arenas to NO 21 for 37 yards (C.White). PENALTY on KC-J.Brown Offensive Holding 10 yards enforced at KC 48.,24,19,2012 -20120923_KC@NO,4,7,38,KC,NO,1,10,62,(7:38) J.Charles right guard to KC 38 for no gain (C.Jordan; A.Hicks).,19,24,2012 -20120923_KC@NO,4,7,1,KC,NO,2,10,62,(7:01) M.Cassel pass short right to S.Breaston to KC 40 for 2 yards (P.Robinson). Pass 0 YAC 2,19,24,2012 -20120923_KC@NO,4,6,31,KC,NO,3,8,60,(6:31) (Shotgun) M.Cassel pass incomplete short left to J.Charles (C.Lofton).,19,24,2012 -20120923_KC@NO,4,6,26,KC,NO,4,8,60,(6:26) D.Colquitt punts 51 yards to NO 9 Center-T.Gafford downed by KC-B.Siler.,19,24,2012 -20120923_KC@NO,4,6,15,NO,KC,1,10,91,(6:15) D.Sproles left end to NO 7 for -2 yards (D.Johnson; E.Berry).,24,19,2012 -20120923_KC@NO,4,5,40,NO,KC,2,12,93,(5:40) (Shotgun) D.Brees sacked in End Zone for -7 yards SAFETY (J.Houston).,24,19,2012 -20120923_KC@NO,4,5,40,NO,KC,,,93,T.Morstead kicks 55 yards from NO 20 to KC 25. J.Arenas to KC 38 for 13 yards (W.Herring).,24,21,2012 -20120923_KC@NO,4,5,26,KC,NO,1,10,62,(5:26) J.Charles right end to KC 40 for 2 yards (B.Bunkley; S.Ellis).,21,24,2012 -20120923_KC@NO,4,4,41,KC,NO,2,8,60,(4:41) J.Charles left end pushed ob at KC 38 for -2 yards (R.Harper).,21,24,2012 -20120923_KC@NO,4,4,35,KC,NO,3,10,62,(4:35) (Shotgun) M.Cassel pass short left to J.Baldwin to KC 49 for 11 yards (R.Harper). Pass 11 YAC 0,21,24,2012 -20120923_KC@NO,4,3,52,KC,NO,1,10,51,(3:52) M.Cassel pass incomplete deep left to D.Bowe (P.Robinson).,21,24,2012 -20120923_KC@NO,4,3,46,KC,NO,2,10,51,(3:46) (Shotgun) S.Draughn right tackle to 50 for 1 yard (C.Lofton; A.Hicks).,21,24,2012 -20120923_KC@NO,4,2,59,KC,NO,3,9,50,(2:59) (Shotgun) M.Cassel pass short right to J.Charles to NO 46 for 4 yards (J.Greer). Pass -5 YAC 9,21,24,2012 -20120923_KC@NO,4,2,26,KC,NO,4,5,46,(2:26) (Shotgun) M.Cassel pass short left to D.Bowe to NO 39 for 7 yards (C.White). Pass 4 YAC 3,21,24,2012 -20120923_KC@NO,4,2,2,KC,NO,1,10,39,(2:02) J.Charles right tackle to NO 33 for 6 yards (A.Hicks).,21,24,2012 -20120923_KC@NO,4,1,56,KC,NO,2,4,33,(1:56) J.Charles right end to NO 34 for -1 yards (C.Jordan).,21,24,2012 -20120923_KC@NO,4,1,51,KC,NO,3,5,34,(1:51) PENALTY on NO Defensive Delay of Game 4 yards enforced at NO 34 - No Play.,21,24,2012 -20120923_KC@NO,4,1,51,KC,NO,3,1,30,(1:51) M.Cassel up the middle to NO 28 for 2 yards (W.Smith).,21,24,2012 -20120923_KC@NO,4,1,17,KC,NO,1,10,28,(1:17) J.Charles left tackle to NO 29 for -1 yards (T.Johnson; W.Smith).,21,24,2012 -20120923_KC@NO,4,0,36,KC,NO,2,11,29,(:36) J.Charles left guard to NO 25 for 4 yards (R.Harper).,21,24,2012 -20120923_KC@NO,4,0,8,KC,NO,3,7,25,(:08) R.Succop 43 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,21,24,2012 -20120923_KC@NO,4,0,8,KC,NO,,,25,R.Succop kicks 34 yards from KC 35 to NO 31. J.Collins (didn't try to advance) to NO 31 for no gain.,24,24,2012 -20120923_KC@NO,4,0,1,NO,KC,1,10,69,(:01) D.Brees kneels to NO 30 for -1 yards.,24,24,2012 -20120923_KC@NO,5,0,0,NO,KC,,,69,T.Morstead kicks 73 yards from NO 35 to KC -8. S.Draughn Touchback.,24,24,2012 -20120923_KC@NO,5,0,0,KC,NO,1,10,80,(15:00) M.Cassel pass short right to D.Bowe to KC 37 for 17 yards (P.Robinson; M.Jenkins). Pass 14 YAC 3,24,24,2012 -20120923_KC@NO,5,-1,28,KC,NO,1,10,63,(14:28) M.Cassel pass incomplete deep right to D.Bowe.,24,24,2012 -20120923_KC@NO,5,-1,23,KC,NO,2,10,63,(14:23) J.Charles right tackle to KC 39 for 2 yards (C.Lofton).,24,24,2012 -20120923_KC@NO,5,-2,46,KC,NO,3,8,61,(13:46) (Shotgun) M.Cassel pass short middle to J.Charles to KC 48 for 9 yards (C.Lofton). Pass 3 YAC 6,24,24,2012 -20120923_KC@NO,5,-2,9,KC,NO,1,10,52,(13:09) S.Draughn left end to NO 46 for 6 yards (A.Hicks).,24,24,2012 -20120923_KC@NO,5,-3,33,KC,NO,2,4,46,(12:33) M.Cassel pass incomplete short right to D.Bowe (J.Greer).,24,24,2012 -20120923_KC@NO,5,-3,28,KC,NO,3,4,46,(12:28) (Shotgun) M.Cassel pass incomplete short right to S.Breaston (R.Harper).,24,24,2012 -20120923_KC@NO,5,-3,23,KC,NO,4,4,46,(12:23) D.Colquitt punts 43 yards to NO 3 Center-T.Gafford downed by KC-B.Siler. The Replay Assistant challenged the touchback ruling and the play was Upheld.,24,24,2012 -20120923_KC@NO,5,-3,12,NO,KC,1,10,97,(12:12) D.Brees pass incomplete short left to J.Graham.,24,24,2012 -20120923_KC@NO,5,-3,7,NO,KC,2,10,97,(12:07) D.Brees pass incomplete short middle to L.Moore.,24,24,2012 -20120923_KC@NO,5,-3,3,NO,KC,3,10,97,(12:03) (Shotgun) D.Brees pass incomplete deep right to D.Henderson [R.Pitoitua].,24,24,2012 -20120923_KC@NO,5,-4,58,NO,KC,4,10,97,(11:58) T.Morstead punts 60 yards to KC 37 Center-J.Drescher. J.Arenas to KC 47 for 10 yards (I.Abdul-Quddus).,24,24,2012 -20120923_KC@NO,5,-4,46,KC,NO,1,10,53,(11:46) M.Cassel pass incomplete deep left to D.Bowe (P.Robinson).,24,24,2012 -20120923_KC@NO,5,-4,40,KC,NO,2,10,53,(11:40) J.Charles left end to KC 45 for -2 yards (M.Jenkins).,24,24,2012 -20120923_KC@NO,5,-5,55,KC,NO,3,12,55,(10:55) (Shotgun) M.Cassel pass short left to S.Draughn to NO 43 for 12 yards (S.Shanle). FUMBLES (S.Shanle) RECOVERED by NO-R.Harper at NO 43. R.Harper for 57 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) M.Cassel pass short left to S.Draughn to NO 44 for 11 yards (S.Shanle). Pass -2 YAC 13,24,24,2012 -20120923_KC@NO,5,-5,40,KC,NO,4,1,44,(10:40) J.Charles right tackle to NO 41 for 3 yards (C.Lofton).,24,24,2012 -20120923_KC@NO,5,-5,4,KC,NO,1,10,41,(10:04) J.Charles left end pushed ob at NO 41 for no gain (C.Lofton).,24,24,2012 -20120923_KC@NO,5,-6,39,KC,NO,2,10,41,(9:39) M.Cassel pass short right to T.Moeaki to NO 36 for 5 yards (C.Lofton). Pass 5 YAC 0,24,24,2012 -20120923_KC@NO,5,-7,58,KC,NO,3,5,36,(8:58) (Shotgun) M.Cassel pass short right to D.Bowe pushed ob at NO 27 for 9 yards (P.Robinson). Pass 7 YAC 2,24,24,2012 -20120923_KC@NO,5,-7,37,KC,NO,1,10,27,(8:37) S.Draughn right tackle to NO 20 for 7 yards (C.Lofton; A.Hicks).,24,24,2012 -20120923_KC@NO,5,-8,58,KC,NO,2,3,20,(7:58) J.Charles left tackle to NO 17 for 3 yards (A.Hicks).,24,24,2012 -20120923_KC@NO,5,-8,16,KC,NO,1,10,17,(7:16) J.Charles right guard to NO 15 for 2 yards (A.Hicks; S.Ellis).,24,24,2012 -20120923_KC@NO,5,-9,40,KC,NO,2,8,15,(6:40) S.Draughn left tackle to NO 13 for 2 yards (W.Smith).,24,24,2012 -20120923_KC@NO,5,-9,32,KC,NO,3,6,13,(6:32) R.Succop 31 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,24,24,2012 -20120923_KC@NO,5,-9,32,KC,NO,,,13,                      ,27,24,2012 -20120923_DET@TEN,1,-9,0,TEN,DET,,,13,R.Bironas kicks 52 yards from TEN 35 to DET 13. S.Logan to DET 32 for 19 yards (P.Bailey).,0,0,2012 -20120923_DET@TEN,1,59,53,DET,TEN,1,10,68,(14:53) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,0,0,2012 -20120923_DET@TEN,1,59,50,DET,TEN,2,10,68,(14:50) (Shotgun) M.Leshoure right guard to DET 35 for 3 yards (A.Ayers).,0,0,2012 -20120923_DET@TEN,1,59,14,DET,TEN,3,7,65,(14:14) (Shotgun) M.Stafford pass short left to N.Burleson to 50 for 15 yards (R.Mouton). Penalty on TEN-R.Mouton Defensive Holding declined.,0,0,2012 -20120923_DET@TEN,1,58,54,DET,TEN,1,10,50,(13:54) (No Huddle Shotgun) M.Stafford pass short left to C.Johnson to TEN 44 for 6 yards (A.Ayers; A.Verner).,0,0,2012 -20120923_DET@TEN,1,58,28,DET,TEN,2,4,44,(13:28) (No Huddle) M.Leshoure left guard to TEN 37 for 7 yards (W.Witherspoon).,0,0,2012 -20120923_DET@TEN,1,57,59,DET,TEN,1,10,37,(12:59) (No Huddle) M.Stafford pass short right to N.Burleson to TEN 32 for 5 yards (W.Witherspoon; J.McCourty).,0,0,2012 -20120923_DET@TEN,1,57,29,DET,TEN,2,5,32,(12:29) (No Huddle Shotgun) M.Leshoure up the middle to TEN 29 for 3 yards (J.Casey; W.Witherspoon).,0,0,2012 -20120923_DET@TEN,1,56,49,DET,TEN,3,2,29,(11:49) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (A.Ayers).,0,0,2012 -20120923_DET@TEN,1,56,43,DET,TEN,4,2,29,(11:43) (Field Goal formation) J.Hanson 47 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,0,0,2012 -20120923_DET@TEN,1,56,43,DET,TEN,,,29,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,3,0,2012 -20120923_DET@TEN,1,56,38,TEN,DET,1,10,80,(11:38) (Shotgun) J.Locker pass short left to K.Britt pushed ob at TEN 27 for 7 yards (J.Wendling).,0,3,2012 -20120923_DET@TEN,1,56,12,TEN,DET,2,3,73,(11:12) (Shotgun) J.Locker pass short right to K.Wright to TEN 31 for 4 yards (E.Coleman; S.Tulloch).,0,3,2012 -20120923_DET@TEN,1,55,35,TEN,DET,1,10,69,(10:35) J.Locker pass short right to J.Cook to TEN 33 for 2 yards (C.Houston).,0,3,2012 -20120923_DET@TEN,1,54,54,TEN,DET,2,8,67,(9:54) J.Locker pass short left to K.Wright to TEN 38 for 5 yards (D.Bentley).,0,3,2012 -20120923_DET@TEN,1,54,14,TEN,DET,3,3,62,(9:14) (Shotgun) J.Locker pass short left to K.Britt to DET 45 for 17 yards (D.Bentley; J.Wendling). Penalty on DET-D.Bentley Defensive Pass Interference declined.,0,3,2012 -20120923_DET@TEN,1,53,57,DET,TEN,1,10,47,(8:57) (Shotgun) J.Locker FUMBLES (Aborted) at DET 49 RECOVERED by DET-N.Fairley at DET 47. N.Fairley to DET 47 for no gain (M.Roos).,3,0,2012 -20120923_DET@TEN,1,53,52,DET,TEN,1,10,53,(8:52) M.Leshoure left tackle to TEN 47 for 6 yards (K.Wimbley).,3,0,2012 -20120923_DET@TEN,1,53,23,DET,TEN,2,4,47,(8:23) (No Huddle Shotgun) M.Leshoure right guard to TEN 41 for 6 yards (A.Ayers).,3,0,2012 -20120923_DET@TEN,1,52,49,DET,TEN,1,10,41,(7:49) (No Huddle Shotgun) M.Leshoure up the middle to TEN 38 for 3 yards (D.Morgan; A.Ayers).,3,0,2012 -20120923_DET@TEN,1,52,25,DET,TEN,2,7,38,(7:25) (No Huddle Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew.,3,0,2012 -20120923_DET@TEN,1,52,21,DET,TEN,3,7,38,(7:21) (Shotgun) M.Stafford pass short middle to T.Young to TEN 34 for 4 yards (C.Sensabaugh).,3,0,2012 -20120923_DET@TEN,1,51,41,DET,TEN,4,3,34,(6:41) (Field Goal formation) J.Hanson 53 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,3,0,2012 -20120923_DET@TEN,1,51,41,DET,TEN,,,34,J.Hanson kicks 69 yards from DET 35 to TEN -4. D.Reynaud pushed ob at TEN 21 for 25 yards (A.Spievey).,6,0,2012 -20120923_DET@TEN,1,51,29,TEN,DET,1,10,79,(6:29) J.Locker pass deep left to N.Washington to DET 47 for 32 yards (D.Bentley).,0,6,2012 -20120923_DET@TEN,1,50,48,TEN,DET,1,10,47,(5:48) (Shotgun) C.Johnson left end to DET 43 for 4 yards (D.Bentley).,0,6,2012 -20120923_DET@TEN,1,50,8,TEN,DET,2,6,43,(5:08) (Shotgun) C.Johnson up the middle to DET 39 for 4 yards (D.Levy; S.Tulloch).,0,6,2012 -20120923_DET@TEN,1,49,30,TEN,DET,3,2,39,(4:30) C.Johnson right tackle to DET 28 for 11 yards (J.Durant).,0,6,2012 -20120923_DET@TEN,1,48,44,TEN,DET,1,10,28,(3:44) J.Locker pass short middle to C.Stevens to DET 18 for 10 yards (D.Levy).,0,6,2012 -20120923_DET@TEN,1,48,5,TEN,DET,1,10,18,(3:05) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,6,2012 -20120923_DET@TEN,1,48,1,TEN,DET,2,10,18,(3:01) D.Reynaud right guard to DET 18 for no gain (N.Suh).,0,6,2012 -20120923_DET@TEN,1,47,21,TEN,DET,3,10,18,(2:21) (Shotgun) PENALTY on DET-D.Levy Neutral Zone Infraction 5 yards enforced at DET 18 - No Play.,0,6,2012 -20120923_DET@TEN,1,47,13,TEN,DET,3,5,13,(2:13) J.Locker pass incomplete short right to K.Britt (C.Houston).,0,6,2012 -20120923_DET@TEN,1,47,7,TEN,DET,4,5,13,(2:07) (Field Goal formation) R.Bironas 31 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,6,2012 -20120923_DET@TEN,1,47,7,TEN,DET,,,13,R.Bironas kicks 74 yards from TEN 35 to DET -9. S.Logan Touchback.,3,6,2012 -20120923_DET@TEN,1,47,2,DET,TEN,1,10,80,(2:02) M.Leshoure right tackle to DET 25 for 5 yards (J.Casey).,6,3,2012 -20120923_DET@TEN,1,46,36,DET,TEN,2,5,75,(1:36) (No Huddle) M.Leshoure up the middle to DET 25 for no gain (S.Marks; D.Morgan).,6,3,2012 -20120923_DET@TEN,1,45,56,DET,TEN,3,5,75,(:56) (Shotgun) M.Stafford pass deep right to C.Johnson pushed ob at DET 42 for 17 yards (J.Babineaux). Tennessee challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (J.Babineaux).,6,3,2012 -20120923_DET@TEN,1,45,49,DET,TEN,4,5,75,(:49) (Punt formation) B.Graham punts 38 yards to TEN 37 Center-D.Muhlbach. D.Reynaud to TEN 35 for -2 yards. Pass back to T.Campbell for 65 yards TOUCHDOWN.,6,3,2012 -20120923_DET@TEN,1,45,49,TEN,DET,,,75,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,6,2012 -20120923_DET@TEN,1,45,49,TEN,DET,,,75,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,6,2012 -20120923_DET@TEN,1,45,32,DET,TEN,1,10,80,(:32) N.Burleson left end to DET 24 for 4 yards (R.Mouton; A.Ayers).,6,10,2012 -20120923_DET@TEN,1,45,2,DET,TEN,2,6,76,(:02) (No Huddle) M.Leshoure up the middle to DET 23 for -1 yards (W.Witherspoon).,6,10,2012 -20120923_DET@TEN,2,45,0,DET,TEN,3,7,77,(15:00) (Shotgun) M.Stafford pass short left to S.Logan to DET 26 for 3 yards (A.Verner).,6,10,2012 -20120923_DET@TEN,2,44,22,DET,TEN,4,4,74,(14:22) (Punt formation) J.Hanson punts 37 yards to TEN 37 Center-D.Muhlbach. D.Reynaud to TEN 41 for 4 yards (A.Palmer).,6,10,2012 -20120923_DET@TEN,2,44,12,TEN,DET,1,10,59,(14:12) C.Johnson left end to TEN 34 for -7 yards (D.Levy).,10,6,2012 -20120923_DET@TEN,2,43,32,TEN,DET,2,17,66,(13:32) (Shotgun) PENALTY on DET-N.Fairley Neutral Zone Infraction 5 yards enforced at TEN 34 - No Play.,10,6,2012 -20120923_DET@TEN,2,43,11,TEN,DET,2,12,61,(13:11) (Shotgun) J.Locker pass deep middle to J.Cook for 61 yards TOUCHDOWN.,10,6,2012 -20120923_DET@TEN,2,43,11,TEN,DET,,,61,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,10,6,2012 -20120923_DET@TEN,2,43,11,TEN,DET,,,61,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,17,6,2012 -20120923_DET@TEN,2,43,0,DET,TEN,1,10,80,(13:00) M.Stafford pass short right to B.Pettigrew to DET 30 for 10 yards (J.McCourty).,6,17,2012 -20120923_DET@TEN,2,42,23,DET,TEN,1,10,70,(12:23) M.Stafford pass short left to T.Young to DET 32 for 2 yards (R.Mouton).,6,17,2012 -20120923_DET@TEN,2,41,50,DET,TEN,2,8,68,(11:50) (No Huddle Shotgun) M.Stafford scrambles up the middle to DET 37 for 5 yards (A.Ayers).,6,17,2012 -20120923_DET@TEN,2,41,10,DET,TEN,3,3,63,(11:10) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to DET 41 for 4 yards (A.Ayers).,6,17,2012 -20120923_DET@TEN,2,40,35,DET,TEN,1,10,59,(10:35) (No Huddle) M.Leshoure left guard to DET 44 for 3 yards (M.Martin).,6,17,2012 -20120923_DET@TEN,2,40,8,DET,TEN,2,7,56,(10:08) M.Leshoure left tackle to TEN 44 for 12 yards (M.Griffin; M.Martin).,6,17,2012 -20120923_DET@TEN,2,39,42,DET,TEN,1,10,44,(9:42) (No Huddle Shotgun) M.Stafford pass short left to T.Young ran ob at TEN 34 for 10 yards.,6,17,2012 -20120923_DET@TEN,2,39,16,DET,TEN,1,10,34,(9:16) (Shotgun) M.Stafford pass short right to T.Young pushed ob at TEN 27 for 7 yards (R.Mouton).,6,17,2012 -20120923_DET@TEN,2,38,52,DET,TEN,2,3,27,(8:52) M.Leshoure right guard to TEN 22 for 5 yards (S.Marks).,6,17,2012 -20120923_DET@TEN,2,38,20,DET,TEN,1,10,22,(8:20) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to TEN 15 for 7 yards (A.Ayers).,6,17,2012 -20120923_DET@TEN,2,37,48,DET,TEN,2,3,15,(7:48) (No Huddle) M.Stafford pass short left to N.Burleson pushed ob at TEN 14 for 1 yard (R.Mouton; A.Verner).,6,17,2012 -20120923_DET@TEN,2,37,11,DET,TEN,3,2,14,(7:11) M.Leshoure left tackle to TEN 15 for -1 yards (M.Martin).,6,17,2012 -20120923_DET@TEN,2,36,35,DET,TEN,4,3,15,(6:35) (Field Goal formation) J.Hanson 33 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,6,17,2012 -20120923_DET@TEN,2,36,35,DET,TEN,,,15,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,9,17,2012 -20120923_DET@TEN,2,36,30,TEN,DET,1,10,80,(6:30) (Shotgun) J.Locker pass incomplete short right to K.Wright.,17,9,2012 -20120923_DET@TEN,2,36,27,TEN,DET,2,10,80,(6:27) J.Locker pass short right to Q.Johnson to TEN 25 for 5 yards (S.Tulloch).,17,9,2012 -20120923_DET@TEN,2,35,55,TEN,DET,3,5,75,(5:55) (Shotgun) J.Locker pass short right to K.Britt to TEN 28 for 3 yards (C.Houston).,17,9,2012 -20120923_DET@TEN,2,35,10,TEN,DET,4,2,72,(5:10) (Punt formation) B.Kern punts 41 yards to DET 31 Center-B.Brinkley fair catch by S.Logan. PENALTY on TEN Illegal Formation 5 yards enforced at DET 31.,17,9,2012 -20120923_DET@TEN,2,35,2,DET,TEN,1,10,64,(5:02) M.Stafford pass short left to N.Burleson pushed ob at DET 42 for 6 yards (Z.Brown).,9,17,2012 -20120923_DET@TEN,2,34,33,DET,TEN,2,4,58,(4:33) M.Leshoure up the middle to DET 47 for 5 yards (J.Casey; W.Witherspoon).,9,17,2012 -20120923_DET@TEN,2,33,50,DET,TEN,1,10,53,(3:50) M.Stafford pass short left to B.Pettigrew to DET 50 for 3 yards (Z.Brown).,9,17,2012 -20120923_DET@TEN,2,33,14,DET,TEN,2,7,50,(3:14) (Shotgun) M.Leshoure up the middle to TEN 45 for 5 yards (M.Martin).,9,17,2012 -20120923_DET@TEN,2,32,47,DET,TEN,3,2,45,(2:47) (No Huddle) M.Leshoure left end pushed ob at TEN 45 for no gain (A.Verner).,9,17,2012 -20120923_DET@TEN,2,32,24,DET,TEN,4,2,45,(2:24) (Punt formation) J.Hanson punts 35 yards to TEN 10 Center-D.Muhlbach fair catch by D.Reynaud.,9,17,2012 -20120923_DET@TEN,2,32,17,TEN,DET,1,10,90,(2:17) (Shotgun) J.Locker pass short right to J.Cook to TEN 17 for 7 yards (E.Coleman; D.Levy).,17,9,2012 -20120923_DET@TEN,2,32,0,TEN,DET,2,3,83,(2:00) (Shotgun) J.Locker pass short middle to J.Cook to TEN 24 for 7 yards (A.Spievey).,17,9,2012 -20120923_DET@TEN,2,31,38,TEN,DET,1,10,76,(1:38) (No Huddle Shotgun) J.Locker pass short middle to C.Johnson to TEN 29 for 5 yards (J.Lacey).,17,9,2012 -20120923_DET@TEN,2,31,14,TEN,DET,2,5,71,(1:14) (No Huddle Shotgun) J.Locker scrambles up the middle to DET 40 for 31 yards (A.Spievey).,17,9,2012 -20120923_DET@TEN,2,31,3,TEN,DET,1,10,40,(1:03) (Shotgun) J.Locker pass incomplete short right to K.Britt. PENALTY on DET-S.Tulloch Unnecessary Roughness 15 yards enforced at DET 40.,17,9,2012 -20120923_DET@TEN,2,31,0,TEN,DET,1,10,25,(1:00) (Shotgun) PENALTY on DET-K.Vanden Bosch Neutral Zone Infraction 5 yards enforced at DET 25 - No Play.,17,9,2012 -20120923_DET@TEN,2,31,0,TEN,DET,1,5,20,(1:00) (Shotgun) J.Locker up the middle to DET 25 for -5 yards (J.Durant).,17,9,2012 -20120923_DET@TEN,2,30,33,TEN,DET,2,10,25,(:33) (No Huddle Shotgun) J.Locker pass incomplete short middle to C.Johnson.,17,9,2012 -20120923_DET@TEN,2,30,30,TEN,DET,3,10,25,(:30) (Shotgun) J.Locker pass short left to K.Wright to DET 20 for 5 yards (J.Lacey).,17,9,2012 -20120923_DET@TEN,2,30,3,TEN,DET,4,5,20,(:03) (Field Goal formation) R.Bironas 38 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,17,9,2012 -20120923_DET@TEN,3,30,0,DET,TEN,,,20,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,9,20,2012 -20120923_DET@TEN,3,30,0,TEN,DET,1,10,80,(15:00) C.Johnson left guard to TEN 23 for 3 yards (S.Tulloch; C.Avril).,20,9,2012 -20120923_DET@TEN,3,29,21,TEN,DET,2,7,77,(14:21) (Shotgun) J.Locker pass short left to K.Britt pushed ob at TEN 38 for 15 yards (J.Wendling).,20,9,2012 -20120923_DET@TEN,3,28,54,TEN,DET,1,10,62,(13:54) C.Johnson left end pushed ob at TEN 49 for 11 yards (J.Wendling).,20,9,2012 -20120923_DET@TEN,3,28,29,TEN,DET,1,10,51,(13:29) J.Locker pass incomplete short middle to C.Stevens.,20,9,2012 -20120923_DET@TEN,3,28,24,TEN,DET,2,10,51,(13:24) (Shotgun) C.Johnson right guard to 50 for 1 yard (N.Suh).,20,9,2012 -20120923_DET@TEN,3,27,41,TEN,DET,3,9,50,(12:41) (Shotgun) PENALTY on DET-C.Avril Neutral Zone Infraction 5 yards enforced at 50 - No Play.,20,9,2012 -20120923_DET@TEN,3,27,25,TEN,DET,3,4,45,(12:25) (Shotgun) J.Locker pass short right to C.Stevens ran ob at DET 40 for 5 yards.,20,9,2012 -20120923_DET@TEN,3,27,13,TEN,DET,1,10,40,(12:13) J.Locker pass incomplete deep left to K.Britt (SamL.Hill).,20,9,2012 -20120923_DET@TEN,3,27,6,TEN,DET,2,10,40,(12:06) PENALTY on TEN-J.Locker Delay of Game 5 yards enforced at DET 40 - No Play.,20,9,2012 -20120923_DET@TEN,3,27,6,TEN,DET,2,15,45,(12:06) J.Locker pass short right to N.Washington to DET 36 for 9 yards (C.Houston).,20,9,2012 -20120923_DET@TEN,3,26,27,TEN,DET,3,6,36,(11:27) J.Locker pass incomplete short left to K.Britt (C.Houston). PENALTY on DET-C.Houston Defensive Holding 5 yards enforced at DET 36 - No Play.,20,9,2012 -20120923_DET@TEN,3,26,21,TEN,DET,1,10,31,(11:21) (Shotgun) C.Johnson up the middle to DET 28 for 3 yards (C.Avril).,20,9,2012 -20120923_DET@TEN,3,25,40,TEN,DET,2,7,28,(10:40) C.Johnson right end to DET 31 for -3 yards (C.Avril).,20,9,2012 -20120923_DET@TEN,3,24,54,TEN,DET,3,10,31,(9:54) (Shotgun) J.Locker pass short left to K.Britt to DET 23 for 8 yards (J.Durant). Penalty on TEN-D.Stewart Illegal Formation declined.,20,9,2012 -20120923_DET@TEN,3,24,36,TEN,DET,4,2,23,(9:36) (Field Goal formation) R.Bironas 41 yard field goal is No Good Wide Left Center-B.Brinkley Holder-B.Kern.,20,9,2012 -20120923_DET@TEN,3,24,30,DET,TEN,1,10,69,(9:30) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,9,20,2012 -20120923_DET@TEN,3,24,24,DET,TEN,2,10,69,(9:24) (Shotgun) M.Stafford pass deep middle to C.Johnson to TEN 41 for 28 yards (J.Babineaux; M.Griffin).,9,20,2012 -20120923_DET@TEN,3,23,57,DET,TEN,1,10,41,(8:57) (No Huddle Shotgun) M.Leshoure left guard to TEN 35 for 6 yards (D.Harris).,9,20,2012 -20120923_DET@TEN,3,23,20,DET,TEN,2,4,35,(8:20) (Shotgun) M.Stafford pass short right to B.Pettigrew to TEN 28 for 7 yards (W.Witherspoon).,9,20,2012 -20120923_DET@TEN,3,22,43,DET,TEN,1,10,28,(7:43) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,9,20,2012 -20120923_DET@TEN,3,22,38,DET,TEN,2,10,28,(7:38) (Shotgun) M.Stafford pass short right to C.Johnson to TEN 10 for 18 yards (W.Witherspoon) [K.Klug].,9,20,2012 -20120923_DET@TEN,3,22,10,DET,TEN,1,10,10,(7:10) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to TEN 1 for 9 yards (J.McCourty; A.Ayers).,9,20,2012 -20120923_DET@TEN,3,21,41,DET,TEN,2,1,1,(6:41) (No Huddle) M.Leshoure up the middle for 1 yard TOUCHDOWN.,9,20,2012 -20120923_DET@TEN,3,21,41,DET,TEN,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,9,20,2012 -20120923_DET@TEN,3,21,41,DET,TEN,,,1,J.Hanson kicks 69 yards from DET 35 to TEN -4. D.Reynaud to TEN 15 for 19 yards (A.Palmer).,16,20,2012 -20120923_DET@TEN,3,21,30,TEN,DET,1,10,85,(6:30) C.Johnson left guard to TEN 16 for 1 yard (C.Avril).,20,16,2012 -20120923_DET@TEN,3,20,55,TEN,DET,2,9,84,(5:55) J.Locker pass short right to K.Wright ran ob at TEN 18 for 2 yards.,20,16,2012 -20120923_DET@TEN,3,20,24,TEN,DET,3,7,82,(5:24) (Shotgun) J.Locker pass short middle to C.Stevens to TEN 35 for 17 yards (D.Levy).,20,16,2012 -20120923_DET@TEN,3,19,47,TEN,DET,1,10,65,(4:47) C.Johnson left tackle to TEN 48 for 13 yards (A.Spievey).,20,16,2012 -20120923_DET@TEN,3,19,2,TEN,DET,1,10,52,(4:02) J.Locker pass short left to K.Wright to DET 35 for 17 yards (D.Bentley).,20,16,2012 -20120923_DET@TEN,3,18,15,TEN,DET,1,10,35,(3:15) (Shotgun) J.Locker pass incomplete short left to K.Britt.,20,16,2012 -20120923_DET@TEN,3,18,12,TEN,DET,2,10,35,(3:12) (Shotgun) J.Locker pass incomplete short left to K.Britt (C.Houston).,20,16,2012 -20120923_DET@TEN,3,18,7,TEN,DET,3,10,35,(3:07) (Shotgun) J.Locker pass short left to K.Britt to DET 30 for 5 yards (S.Tulloch).,20,16,2012 -20120923_DET@TEN,3,17,24,TEN,DET,4,5,30,(2:24) (Field Goal formation) R.Bironas 48 yard field goal is No Good Wide Left Center-B.Brinkley Holder-B.Kern.,20,16,2012 -20120923_DET@TEN,3,17,18,DET,TEN,1,10,62,(2:18) M.Leshoure right guard to DET 39 for 1 yard (S.Marks).,16,20,2012 -20120923_DET@TEN,3,16,42,DET,TEN,2,9,61,(1:42) (Shotgun) M.Stafford pass short middle to C.Johnson to TEN 44 for 17 yards (M.Griffin).,16,20,2012 -20120923_DET@TEN,3,16,14,DET,TEN,1,10,44,(1:14) (No Huddle) M.Leshoure up the middle to TEN 40 for 4 yards (A.Ayers; S.Marks).,16,20,2012 -20120923_DET@TEN,3,15,36,DET,TEN,2,6,40,(:36) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at TEN 27 for 13 yards (M.Griffin).,16,20,2012 -20120923_DET@TEN,3,15,17,DET,TEN,1,10,27,(:17) (Shotgun) M.Leshoure up the middle to TEN 26 for 1 yard (W.Witherspoon).,16,20,2012 -20120923_DET@TEN,4,15,0,DET,TEN,2,9,26,(15:00) (Shotgun) M.Stafford pass short middle to M.Leshoure to TEN 16 for 10 yards (Z.Brown). PENALTY on TEN-S.Solomon Roughing the Passer 8 yards enforced at TEN 16.,16,20,2012 -20120923_DET@TEN,4,14,34,DET,TEN,1,8,8,(14:34) M.Leshoure up the middle to TEN 8 for no gain. PENALTY on DET-G.Cherilus Offensive Holding 9 yards enforced at TEN 8 - No Play.,16,20,2012 -20120923_DET@TEN,4,14,13,DET,TEN,1,17,17,(14:13) (Shotgun) N.Burleson left end to TEN 14 for 3 yards (R.Johnson; D.Morgan).,16,20,2012 -20120923_DET@TEN,4,13,30,DET,TEN,2,14,14,(13:30) (Shotgun) M.Stafford pass short left to T.Young to TEN 8 for 6 yards (A.Ayers).,16,20,2012 -20120923_DET@TEN,4,12,53,DET,TEN,3,8,8,(12:53) (Shotgun) M.Stafford pass incomplete short right to T.Young (J.Babineaux) [K.Wimbley]. Penalty on DET-T.Young Illegal Touch Pass declined.,16,20,2012 -20120923_DET@TEN,4,12,44,DET,TEN,4,8,8,(12:44) (Field Goal formation) J.Hanson 26 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,16,20,2012 -20120923_DET@TEN,4,12,44,DET,TEN,,,8,J.Hanson kicks 55 yards from DET 35 to TEN 10 out of bounds.,19,20,2012 -20120923_DET@TEN,4,12,39,TEN,DET,1,10,60,(12:39) C.Johnson up the middle to TEN 39 for -1 yards (S.Tulloch).,20,19,2012 -20120923_DET@TEN,4,11,57,TEN,DET,2,11,61,(11:57) (Shotgun) J.Locker pass short right to K.Wright to TEN 47 for 8 yards (C.Houston). FUMBLES (C.Houston) RECOVERED by DET-D.Levy at TEN 46. D.Levy to TEN 46 for no gain (C.Stevens). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,20,19,2012 -20120923_DET@TEN,4,11,50,DET,TEN,1,10,46,(11:50) (Shotgun) M.Leshoure up the middle to TEN 38 for 8 yards (K.Wimbley; M.Griffin).,19,20,2012 -20120923_DET@TEN,4,11,21,DET,TEN,2,2,38,(11:21) (No Huddle Shotgun) M.Leshoure right tackle to TEN 34 for 4 yards (S.Marks).,19,20,2012 -20120923_DET@TEN,4,10,42,DET,TEN,1,10,34,(10:42) (Shotgun) M.Leshoure right tackle to TEN 31 for 3 yards (S.Marks).,19,20,2012 -20120923_DET@TEN,4,10,4,DET,TEN,2,7,31,(10:04) (Shotgun) M.Stafford scrambles up the middle to TEN 24 for 7 yards (J.Babineaux).,19,20,2012 -20120923_DET@TEN,4,9,27,DET,TEN,1,10,24,(9:27) (Shotgun) M.Leshoure up the middle to TEN 15 for 9 yards (M.Griffin).,19,20,2012 -20120923_DET@TEN,4,8,45,DET,TEN,2,1,15,(8:45) M.Leshoure right tackle to TEN 13 for 2 yards (J.Casey).,19,20,2012 -20120923_DET@TEN,4,8,3,DET,TEN,1,10,13,(8:03) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at TEN 5 for 8 yards (J.McCourty).,19,20,2012 -20120923_DET@TEN,4,7,36,DET,TEN,2,2,5,(7:36) J.Bell up the middle to TEN 3 for 2 yards (Z.Diles; J.Babineaux).,19,20,2012 -20120923_DET@TEN,4,6,58,DET,TEN,1,3,3,(6:58) M.Stafford pass short left to N.Burleson for 3 yards TOUCHDOWN.,19,20,2012 -20120923_DET@TEN,4,6,58,DET,TEN,,,3,TWO-POINT CONVERSION ATTEMPT. M.Stafford pass to N.Burleson is complete. ATTEMPT SUCCEEDS.,19,20,2012 -20120923_DET@TEN,4,6,58,DET,TEN,,,3,J.Hanson kicks 70 yards from DET 35 to TEN -5. D.Reynaud for 105 yards TOUCHDOWN.,27,20,2012 -20120923_DET@TEN,4,6,58,TEN,DET,,,3,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,20,27,2012 -20120923_DET@TEN,4,6,58,TEN,DET,,,3,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,27,27,2012 -20120923_DET@TEN,4,6,41,DET,TEN,1,10,80,(6:41) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 33 for 13 yards (J.Babineaux).,27,27,2012 -20120923_DET@TEN,4,6,4,DET,TEN,1,10,67,(6:04) M.Leshoure right guard to DET 35 for 2 yards (J.Casey). PENALTY on DET-B.Pettigrew Offensive Holding 10 yards enforced at DET 33 - No Play.,27,27,2012 -20120923_DET@TEN,4,5,44,DET,TEN,1,20,77,(5:44) (Shotgun) M.Stafford pass short left to M.Leshoure to DET 27 for 4 yards (D.Reynaud).,27,27,2012 -20120923_DET@TEN,4,5,2,DET,TEN,2,16,73,(5:02) (Shotgun) M.Stafford pass short left to N.Burleson to DET 34 for 7 yards (A.Verner).,27,27,2012 -20120923_DET@TEN,4,4,15,DET,TEN,3,9,66,(4:15) (Shotgun) M.Stafford sacked at DET 26 for -8 yards (A.Ayers).,27,27,2012 -20120923_DET@TEN,4,3,41,DET,TEN,4,17,74,(3:41) (Punt formation) J.Hanson punts 46 yards to TEN 28 Center-D.Muhlbach. D.Reynaud to TEN 34 for 6 yards (A.Palmer).,27,27,2012 -20120923_DET@TEN,4,3,30,TEN,DET,1,10,66,(3:30) (Shotgun) J.Locker left end to TEN 43 for 9 yards (J.Wendling). PENALTY on TEN-C.Stevens Illegal Motion 5 yards enforced at TEN 34 - No Play.,27,27,2012 -20120923_DET@TEN,4,3,23,TEN,DET,1,15,71,(3:23) J.Locker pass deep left to N.Washington for 71 yards TOUCHDOWN.,27,27,2012 -20120923_DET@TEN,4,3,23,TEN,DET,,,71,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,27,27,2012 -20120923_DET@TEN,4,3,23,TEN,DET,,,71,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,34,27,2012 -20120923_DET@TEN,4,3,10,DET,TEN,1,10,80,(3:10) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 27 for 7 yards (A.Ayers).,27,34,2012 -20120923_DET@TEN,4,2,48,DET,TEN,2,3,73,(2:48) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to DET 42 for 15 yards (J.Babineaux).,27,34,2012 -20120923_DET@TEN,4,2,24,DET,TEN,1,10,58,(2:24) (No Huddle Shotgun) M.Stafford pass short left to N.Burleson pushed ob at DET 49 for 7 yards (R.Mouton).,27,34,2012 -20120923_DET@TEN,4,2,20,DET,TEN,2,3,51,(2:20) (Shotgun) M.Stafford pass incomplete short middle to W.Heller.,27,34,2012 -20120923_DET@TEN,4,2,16,DET,TEN,3,3,51,(2:16) (Shotgun) M.Stafford pass short middle to N.Burleson to TEN 47 for 4 yards (A.Ayers).,27,34,2012 -20120923_DET@TEN,4,2,0,DET,TEN,1,10,47,(2:00) (Shotgun) M.Stafford pass short middle to J.Bell to TEN 34 for 13 yards (R.Mouton; A.Ayers).,27,34,2012 -20120923_DET@TEN,4,1,36,DET,TEN,1,10,34,(1:36) (Shotgun) M.Stafford pass incomplete short left to N.Burleson.,27,34,2012 -20120923_DET@TEN,4,1,32,DET,TEN,2,10,34,(1:32) (Shotgun) M.Stafford pass short left to B.Pettigrew to TEN 28 for 6 yards (A.Verner). FUMBLES (A.Verner) RECOVERED by TEN-A.Verner at TEN 28. A.Verner for 72 yards TOUCHDOWN.,27,34,2012 -20120923_DET@TEN,4,1,32,TEN,DET,,,34,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,34,27,2012 -20120923_DET@TEN,4,1,32,TEN,DET,,,34,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,41,27,2012 -20120923_DET@TEN,4,1,16,DET,TEN,1,10,80,(1:16) (Shotgun) Sh.Hill pass short right to J.Bell to DET 29 for 9 yards (A.Ayers).,27,41,2012 -20120923_DET@TEN,4,1,8,DET,TEN,2,1,71,(1:08) (Shotgun) Sh.Hill pass deep right to C.Johnson ran ob at DET 49 for 20 yards. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,27,41,2012 -20120923_DET@TEN,4,1,1,DET,TEN,1,10,51,(1:01) (Shotgun) Sh.Hill pass short middle to J.Bell to TEN 39 for 12 yards (C.Sensabaugh).,27,41,2012 -20120923_DET@TEN,4,0,55,DET,TEN,1,10,39,(:55) (Shotgun) Sh.Hill pass short right to C.Johnson to TEN 17 for 22 yards (R.Mouton).,27,41,2012 -20120923_DET@TEN,4,0,47,DET,TEN,1,10,17,(:47) (Shotgun) Sh.Hill pass short right to J.Bell to TEN 7 for 10 yards (J.McCourty).,27,41,2012 -20120923_DET@TEN,4,0,28,DET,TEN,1,7,7,(:28) Sh.Hill spiked the ball to stop the clock.,27,41,2012 -20120923_DET@TEN,4,0,28,DET,TEN,2,7,7,(:28) (Shotgun) Sh.Hill pass short left intended for N.Burleson INTERCEPTED by A.Verner at TEN -5. Touchback. PENALTY on TEN-A.Ayers Roughing the Passer 4 yards enforced at TEN 7 - No Play.,27,41,2012 -20120923_DET@TEN,4,0,20,DET,TEN,1,3,3,(:20) (Shotgun) Sh.Hill pass short right to C.Johnson for 3 yards TOUCHDOWN.,27,41,2012 -20120923_DET@TEN,4,0,20,DET,TEN,,,3,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,27,41,2012 -20120923_DET@TEN,4,0,20,DET,TEN,,,3,(Onside Kick formation) J.Hanson kicks onside 19 yards from DET 35 to TEN 46. RECOVERED by DET-A.Spievey.,34,41,2012 -20120923_DET@TEN,4,0,16,DET,TEN,1,10,46,(:16) (Shotgun) Sh.Hill pass incomplete short right to N.Burleson (J.McCourty).,34,41,2012 -20120923_DET@TEN,4,0,6,DET,TEN,2,10,46,(:06) (Shotgun) Sh.Hill pass deep middle to T.Young for 46 yards TOUCHDOWN.,34,41,2012 -20120923_DET@TEN,4,0,6,DET,TEN,,,46,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,34,41,2012 -20120923_DET@TEN,5,0,0,DET,TEN,,,46,J.Hanson kicks 70 yards from DET 35 to TEN -5. D.Reynaud to TEN 20 for 25 yards (A.Palmer; T.Whitehead).,41,41,2012 -20120923_DET@TEN,5,-1,54,TEN,DET,1,10,80,(14:54) (Shotgun) J.Locker pass deep right to C.Stevens to TEN 44 for 24 yards (J.Wendling).,41,41,2012 -20120923_DET@TEN,5,-1,16,TEN,DET,1,10,56,(14:16) C.Johnson left tackle to TEN 36 for -8 yards (K.Vanden Bosch).,41,41,2012 -20120923_DET@TEN,5,-2,28,TEN,DET,2,18,64,(13:28) (Shotgun) J.Locker pass short middle to C.Stevens to TEN 43 for 7 yards (J.Lacey; D.Levy).,41,41,2012 -20120923_DET@TEN,5,-3,52,TEN,DET,3,11,57,(12:52) (Shotgun) PENALTY on TEN-L.Harris False Start 5 yards enforced at TEN 43 - No Play.,41,41,2012 -20120923_DET@TEN,5,-3,42,TEN,DET,3,16,62,(12:42) J.Locker scrambles left end to TEN 47 for 9 yards (J.Durant). PENALTY on DET-D.Bentley Defensive Holding 5 yards enforced at TEN 47.,41,41,2012 -20120923_DET@TEN,5,-3,29,TEN,DET,1,10,48,(12:29) C.Johnson up the middle to TEN 44 for -8 yards (C.Avril; C.Houston).,41,41,2012 -20120923_DET@TEN,5,-3,18,TEN,DET,2,18,56,(12:18) (Shotgun) J.Locker pass deep middle to C.Stevens to DET 32 for 24 yards (S.Tulloch). PENALTY on DET-S.Tulloch Personal Foul 15 yards enforced at DET 32. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Locker pass incomplete deep middle to C.Stevens (S.Tulloch). PENALTY on DET-S.Tulloch Personal Foul 27 yards enforced at TEN 44.,41,41,2012 -20120923_DET@TEN,5,-3,14,TEN,DET,1,10,29,(12:14) (Shotgun) J.Locker pass incomplete short right to K.Wright.,41,41,2012 -20120923_DET@TEN,5,-3,10,TEN,DET,2,10,29,(12:10) (Shotgun) J.Locker pass incomplete short left to K.Wright.,41,41,2012 -20120923_DET@TEN,5,-3,5,TEN,DET,3,10,29,(12:05) (Shotgun) J.Locker pass short right to D.Williams ran ob at DET 16 for 13 yards.,41,41,2012 -20120923_DET@TEN,5,-4,35,TEN,DET,1,10,16,(11:35) (Shotgun) J.Locker pass short left to K.Wright to DET 15 for 1 yard (D.Bentley).,41,41,2012 -20120923_DET@TEN,5,-5,53,TEN,DET,2,9,15,(10:53) (Shotgun) J.Locker pass incomplete short right to D.Williams [N.Suh].,41,41,2012 -20120923_DET@TEN,5,-5,47,TEN,DET,3,9,15,(10:47) (Shotgun) J.Locker pass short left to D.Williams to DET 8 for 7 yards (J.Wendling).,41,41,2012 -20120923_DET@TEN,5,-5,41,TEN,DET,4,2,8,(10:41) (Field Goal formation) R.Bironas 26 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,41,41,2012 -20120923_DET@TEN,5,-5,41,TEN,DET,,,8,R.Bironas kicks 66 yards from TEN 35 to DET -1. S.Logan to DET 22 for 23 yards (T.Shaw; Z.Brown).,44,41,2012 -20120923_DET@TEN,5,-5,30,DET,TEN,1,10,78,(10:30) Sh.Hill pass short right to B.Pettigrew to DET 39 for 17 yards (J.McCourty).,41,44,2012 -20120923_DET@TEN,5,-6,53,DET,TEN,1,10,61,(9:53) J.Bell up the middle to DET 44 for 5 yards (M.Martin; W.Witherspoon).,41,44,2012 -20120923_DET@TEN,5,-6,22,DET,TEN,2,5,56,(9:22) (Shotgun) Sh.Hill pass deep left to C.Johnson to TEN 30 for 26 yards (M.Griffin).,41,44,2012 -20120923_DET@TEN,5,-7,50,DET,TEN,1,10,30,(8:50) (No Huddle) J.Bell up the middle to TEN 25 for 5 yards (J.Casey).,41,44,2012 -20120923_DET@TEN,5,-7,22,DET,TEN,2,5,25,(8:22) (No Huddle) J.Bell left tackle to TEN 16 for 9 yards (M.Griffin; A.Verner).,41,44,2012 -20120923_DET@TEN,5,-8,49,DET,TEN,1,10,16,(7:49) (No Huddle) J.Bell left end to TEN 14 for 2 yards (J.Casey).,41,44,2012 -20120923_DET@TEN,5,-8,9,DET,TEN,2,8,14,(7:09) (Shotgun) Sh.Hill pass incomplete short left to J.Bell.,41,44,2012 -20120923_DET@TEN,5,-8,2,DET,TEN,3,8,14,(7:02) (Shotgun) Sh.Hill pass short middle to M.Leshoure to TEN 7 for 7 yards (R.Mouton).,41,44,2012 -20120923_DET@TEN,5,-9,41,DET,TEN,4,1,7,(6:41) Sh.Hill up the middle to TEN 8 for -1 yards (J.Casey). The Replay Assistant challenged the first down ruling and the play was Upheld.,41,44,2012 -20120923_DET@TEN,5,-9,41,DET,TEN,,,7,                      ,41,44,2012 -20120923_CIN@WAS,1,-9,0,WAS,CIN,,,7,B.Cundiff kicks 69 yards from WAS 35 to CIN -4. B.Tate to CIN 27 for 31 yards (D.Gomes; D.Young). Tackled at the CIN 31 moved back to where runner lost helmet.,0,0,2012 -20120923_CIN@WAS,1,59,53,CIN,WAS,1,10,73,(14:53) (Shotgun) Direct snap to M.Sanu. M.Sanu pass deep middle to A.Green for 73 yards TOUCHDOWN.,0,0,2012 -20120923_CIN@WAS,1,59,53,CIN,WAS,,,73,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20120923_CIN@WAS,1,59,53,CIN,WAS,,,73,M.Nugent kicks 67 yards from CIN 35 to WAS -2. B.Banks to WAS 17 for 19 yards (D.Skuta).,7,0,2012 -20120923_CIN@WAS,1,59,37,WAS,CIN,1,10,83,(14:37) (Shotgun) A.Morris right end to WAS 27 for 10 yards (D.Peko V.Burfict). 46 - Morris tackled at the 31 but ball placed at the 27 where he lost his helmet.,0,7,2012 -20120923_CIN@WAS,1,59,15,WAS,CIN,1,10,73,(14:15) A.Morris left end to WAS 39 for 12 yards (R.Maualuga V.Burfict). WAS-T.Williams was injured during the play. His return is Questionable. Trent Williams injury is a knee,0,7,2012 -20120923_CIN@WAS,1,58,46,WAS,CIN,1,10,61,(13:46) (Shotgun) R.Griffin sacked at WAS 30 for -9 yards. FUMBLES and recovers at WAS 29. R.Griffin to WAS 29 for no gain (M.Johnson).,0,7,2012 -20120923_CIN@WAS,1,58,8,WAS,CIN,2,20,71,(13:08) R.Griffin pass short middle to F.Davis to WAS 37 for 8 yards (R.Maualuga; V.Burfict).,0,7,2012 -20120923_CIN@WAS,1,57,27,WAS,CIN,3,12,63,(12:27) (Shotgun) R.Griffin pass short left to F.Davis to WAS 41 for 4 yards (J.Allen T.Mays).,0,7,2012 -20120923_CIN@WAS,1,56,58,WAS,CIN,4,8,59,(11:58) S.Rocca punts 58 yards to CIN 1 Center-J.Snow downed by WAS-N.Paul.,0,7,2012 -20120923_CIN@WAS,1,56,45,CIN,WAS,1,10,99,(11:45) B.Green-Ellis right guard to CIN 2 for 1 yard (P.Riley; L.Fletcher).,7,0,2012 -20120923_CIN@WAS,1,56,5,CIN,WAS,2,9,98,(11:05) A.Dalton pass short left intended for B.Green-Ellis INTERCEPTED by R.Jackson [R.Kerrigan] at CIN 0. TOUCHDOWN.,7,0,2012 -20120923_CIN@WAS,1,56,5,WAS,CIN,,,98,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,7,2012 -20120923_CIN@WAS,1,56,5,WAS,CIN,,,98,B.Cundiff kicks 61 yards from WAS 35 to CIN 4. B.Tate to CIN 18 for 14 yards (L.Alexander).,7,7,2012 -20120923_CIN@WAS,1,56,0,CIN,WAS,1,10,82,(11:00) PENALTY on CIN-J.Gresham False Start 5 yards enforced at CIN 18 - No Play.,7,7,2012 -20120923_CIN@WAS,1,55,53,CIN,WAS,1,15,87,(10:53) B.Green-Ellis left guard to CIN 16 for 3 yards (D.Gomes; P.Riley).,7,7,2012 -20120923_CIN@WAS,1,55,14,CIN,WAS,2,12,84,(10:14) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 38 for 22 yards (D.Hall L.Fletcher).,7,7,2012 -20120923_CIN@WAS,1,54,42,CIN,WAS,1,10,62,(9:42) B.Green-Ellis left tackle to CIN 40 for 2 yards (R.Kerrigan; L.Fletcher).,7,7,2012 -20120923_CIN@WAS,1,54,6,CIN,WAS,2,8,60,(9:06) (Shotgun) A.Dalton pass incomplete short left to A.Binns. PENALTY on WAS-J.Wilson Defensive Pass Interference 8 yards enforced at CIN 40 - No Play.,7,7,2012 -20120923_CIN@WAS,1,54,1,CIN,WAS,1,10,52,(9:01) A.Dalton pass short right to A.Green to WAS 38 for 14 yards (D.Hall).,7,7,2012 -20120923_CIN@WAS,1,53,22,CIN,WAS,1,10,38,(8:22) B.Green-Ellis left end to WAS 40 for -2 yards (R.Jackson L.Fletcher).,7,7,2012 -20120923_CIN@WAS,1,52,40,CIN,WAS,2,12,40,(7:40) (Shotgun) A.Dalton pass incomplete deep right to J.Gresham.,7,7,2012 -20120923_CIN@WAS,1,52,34,CIN,WAS,3,12,40,(7:34) (Shotgun) A.Dalton sacked at WAS 47 for -7 yards (sack split by C.Wilson and R.Kerrigan). Penalty on CIN-A.Whitworth Offensive Holding declined.,7,7,2012 -20120923_CIN@WAS,1,52,16,CIN,WAS,4,19,47,(7:16) K.Huber punts 37 yards to WAS 10 Center-C.Harris fair catch by B.Banks.,7,7,2012 -20120923_CIN@WAS,1,52,12,WAS,CIN,1,10,90,(7:12) A.Morris right end to WAS 10 for no gain (G.Atkins).,7,7,2012 -20120923_CIN@WAS,1,51,36,WAS,CIN,2,10,90,(6:36) (Shotgun) A.Morris left end to WAS 13 for 3 yards (M.Johnson).,7,7,2012 -20120923_CIN@WAS,1,50,56,WAS,CIN,3,7,87,(5:56) (Shotgun) R.Griffin pass incomplete short right to L.Hankerson (T.Newman).,7,7,2012 -20120923_CIN@WAS,1,50,49,WAS,CIN,4,7,87,(5:49) S.Rocca punts 45 yards to CIN 42 Center-J.Snow. A.Jones to CIN 42 for no gain (C.Wilson).,7,7,2012 -20120923_CIN@WAS,1,50,40,CIN,WAS,1,10,58,(5:40) D.Roland reported in as eligible. B.Scott left end to CIN 34 for -8 yards (R.Jackson).,7,7,2012 -20120923_CIN@WAS,1,50,0,CIN,WAS,2,18,66,(5:00) (Shotgun) A.Dalton scrambles left guard to WAS 49 for 17 yards (L.Fletcher).,7,7,2012 -20120923_CIN@WAS,1,49,12,CIN,WAS,3,1,49,(4:12) A.Hawkins left end pushed ob at WAS 38 for 11 yards (D.Gomes; L.Fletcher).,7,7,2012 -20120923_CIN@WAS,1,48,46,CIN,WAS,1,10,38,(3:46) A.Dalton pass incomplete short middle to A.Binns (L.Fletcher). PENALTY on CIN-J.Faine Offensive Holding 10 yards enforced at WAS 38 - No Play.,7,7,2012 -20120923_CIN@WAS,1,48,41,CIN,WAS,1,20,48,(3:41) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins (D.Hall).,7,7,2012 -20120923_CIN@WAS,1,48,37,CIN,WAS,2,20,48,(3:37) (Shotgun) A.Dalton pass short left to A.Binns for 48 yards TOUCHDOWN [Mad.Williams].,7,7,2012 -20120923_CIN@WAS,1,48,37,CIN,WAS,,,48,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,7,2012 -20120923_CIN@WAS,1,48,37,CIN,WAS,,,48,M.Nugent kicks 71 yards from CIN 35 to WAS -6. B.Banks Touchback.,14,7,2012 -20120923_CIN@WAS,1,48,28,WAS,CIN,1,10,80,(3:28) R.Griffin pass short left to J.Morgan to WAS 31 for 11 yards (N.Clements) [M.Johnson].,7,14,2012 -20120923_CIN@WAS,1,47,52,WAS,CIN,1,10,69,(2:52) R.Griffin sacked at WAS 27 for -4 yards (M.Johnson).,7,14,2012 -20120923_CIN@WAS,1,47,15,WAS,CIN,2,14,73,(2:15) (Shotgun) R.Griffin sacked at WAS 22 for -5 yards (M.Johnson).,7,14,2012 -20120923_CIN@WAS,1,46,44,WAS,CIN,3,19,78,(1:44) (Shotgun) R.Griffin pass short left to E.Royster to WAS 36 for 14 yards (R.Maualuga; M.Johnson).,7,14,2012 -20120923_CIN@WAS,1,46,14,WAS,CIN,4,5,64,(1:14) S.Rocca punts 40 yards to CIN 24 Center-J.Snow. B.Tate to CIN 26 for 2 yards (R.Doughty; N.Paul).,7,14,2012 -20120923_CIN@WAS,1,46,4,CIN,WAS,1,10,74,(1:04) B.Green-Ellis up the middle to CIN 29 for 3 yards (C.Baker).,14,7,2012 -20120923_CIN@WAS,1,45,28,CIN,WAS,2,7,71,(:28) A.Dalton pass short right to A.Green to CIN 34 for 5 yards (D.Hall R.Kerrigan).,14,7,2012 -20120923_CIN@WAS,2,45,0,CIN,WAS,3,2,66,(15:00) A.Hawkins left end pushed ob at CIN 39 for 5 yards (C.Wilson).,14,7,2012 -20120923_CIN@WAS,2,44,38,CIN,WAS,1,10,61,(14:38) B.Green-Ellis up the middle to CIN 41 for 2 yards (J.Jenkins; C.Baker).,14,7,2012 -20120923_CIN@WAS,2,44,2,CIN,WAS,2,8,59,(14:02) A.Dalton pass short right to A.Green pushed ob at WAS 47 for 12 yards (R.Crawford).,14,7,2012 -20120923_CIN@WAS,2,43,37,CIN,WAS,1,10,47,(13:37) B.Scott up the middle to WAS 45 for 2 yards (K.Golston; P.Riley).,14,7,2012 -20120923_CIN@WAS,2,42,56,CIN,WAS,2,8,45,(12:56) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,14,7,2012 -20120923_CIN@WAS,2,42,50,CIN,WAS,3,8,45,(12:50) (Shotgun) A.Dalton pass short middle to J.Gresham to WAS 30 for 15 yards (P.Riley).,14,7,2012 -20120923_CIN@WAS,2,42,26,CIN,WAS,1,10,30,(12:26) B.Leonard right end to WAS 19 for 11 yards (Mad.Williams).,14,7,2012 -20120923_CIN@WAS,2,42,1,CIN,WAS,1,10,19,(12:01) A.Dalton pass short left to A.Binns to WAS 13 for 6 yards (J.Wilson).,14,7,2012 -20120923_CIN@WAS,2,41,37,CIN,WAS,2,4,13,(11:37) (No Huddle) B.Leonard right tackle to WAS 6 for 7 yards (L.Fletcher R.Crawford). WAS-K.Golston was injured during the play.,14,7,2012 -20120923_CIN@WAS,2,41,7,CIN,WAS,1,6,6,(11:07) B.Scott right guard to WAS 5 for 1 yard (L.Fletcher Mad.Williams).,14,7,2012 -20120923_CIN@WAS,2,40,33,CIN,WAS,2,5,5,(10:33) A.Dalton sacked at WAS 14 for -9 yards (P.Riley).,14,7,2012 -20120923_CIN@WAS,2,39,56,CIN,WAS,3,14,14,(9:56) (Shotgun) A.Dalton pass short right to J.Gresham pushed ob at WAS 5 for 9 yards (R.Crawford).,14,7,2012 -20120923_CIN@WAS,2,39,34,CIN,WAS,4,5,5,(9:34) (Field Goal formation) Direct snap to K.Huber. K.Huber right end to WAS 6 for -1 yards (Mad.Williams D.Hall).,14,7,2012 -20120923_CIN@WAS,2,39,29,WAS,CIN,1,10,94,(9:29) R.Griffin pass incomplete short middle to L.Paulsen. PENALTY on CIN-N.Clements Defensive Pass Interference 15 yards enforced at WAS 6 - No Play.,7,14,2012 -20120923_CIN@WAS,2,39,25,WAS,CIN,1,10,79,(9:25) (Shotgun) R.Griffin right guard to WAS 25 for 4 yards (R.Geathers).,7,14,2012 -20120923_CIN@WAS,2,38,47,WAS,CIN,2,6,75,(8:47) (Shotgun) A.Morris left end to WAS 24 for -1 yards (G.Atkins).,7,14,2012 -20120923_CIN@WAS,2,38,8,WAS,CIN,3,7,76,(8:08) (Shotgun) R.Griffin pass incomplete short right to E.Royster [C.Dunlap].,7,14,2012 -20120923_CIN@WAS,2,38,2,WAS,CIN,4,7,76,(8:02) S.Rocca punts 33 yards to CIN 43 Center-J.Snow. A.Jones to WAS 49 for 8 yards (R.Doughty).,7,14,2012 -20120923_CIN@WAS,2,37,51,CIN,WAS,1,10,49,(7:51) A.Dalton pass short right to A.Binns to WAS 40 for 9 yards (D.Hall).,14,7,2012 -20120923_CIN@WAS,2,37,12,CIN,WAS,2,1,40,(7:12) B.Green-Ellis right end to WAS 36 for 4 yards (L.Fletcher D.Hall).,14,7,2012 -20120923_CIN@WAS,2,36,35,CIN,WAS,1,10,36,(6:35) A.Dalton pass short left to A.Binns to WAS 33 for 3 yards (D.Hall). PENALTY on CIN-A.Whitworth Offensive Holding 10 yards enforced at WAS 36 - No Play.,14,7,2012 -20120923_CIN@WAS,2,36,15,CIN,WAS,1,20,46,(6:15) B.Green-Ellis right tackle to WAS 41 for 5 yards (C.Wilson; P.Riley).,14,7,2012 -20120923_CIN@WAS,2,35,30,CIN,WAS,2,15,41,(5:30) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins (P.Riley).,14,7,2012 -20120923_CIN@WAS,2,35,26,CIN,WAS,3,15,41,(5:26) (Shotgun) A.Dalton pass short middle to J.Gresham to WAS 29 for 12 yards (D.Gomes).,14,7,2012 -20120923_CIN@WAS,2,34,42,CIN,WAS,4,3,29,(4:42) M.Nugent 47 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,7,2012 -20120923_CIN@WAS,2,34,42,CIN,WAS,,,29,M.Nugent kicks 72 yards from CIN 35 to WAS -7. B.Banks Touchback.,17,7,2012 -20120923_CIN@WAS,2,34,36,WAS,CIN,1,10,80,(4:36) A.Morris up the middle to WAS 23 for 3 yards (D.Peko V.Burfict).,7,17,2012 -20120923_CIN@WAS,2,34,1,WAS,CIN,2,7,77,(4:01) (Shotgun) R.Griffin sacked at WAS 19 for -4 yards (C.Dunlap). FUMBLES (C.Dunlap) RECOVERED by CIN-C.Dunlap at WAS 12. C.Dunlap to WAS 12 for no gain (A.Morris).,7,17,2012 -20120923_CIN@WAS,2,33,49,CIN,WAS,1,10,12,(3:49) A.Green left end to WAS 1 for 11 yards (J.Wilson). CIN-A.Green was injured during the play. End around,17,7,2012 -20120923_CIN@WAS,2,33,14,CIN,WAS,1,1,1,(3:14) D.Roland reported in as eligible. Direct snap to B.Green-Ellis. B.Green-Ellis right guard for 1 yard TOUCHDOWN.,17,7,2012 -20120923_CIN@WAS,2,33,14,CIN,WAS,,,1,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,7,2012 -20120923_CIN@WAS,2,33,14,,WAS,,,1,M.Nugent kicks 73 yards from CIN 30 to WAS -3. B.Banks to CIN 48 for 55 yards (M.Nugent).,24,7,2012 -20120923_CIN@WAS,2,33,3,WAS,CIN,1,10,48,(3:03) R.Griffin pass incomplete short middle to L.Paulsen.,7,24,2012 -20120923_CIN@WAS,2,32,58,WAS,CIN,2,10,48,(2:58) (Shotgun) R.Griffin pass incomplete short right to A.Morris (V.Rey).,7,24,2012 -20120923_CIN@WAS,2,32,50,WAS,CIN,3,10,48,(2:50) (Shotgun) R.Griffin scrambles right end pushed ob at CIN 37 for 11 yards (V.Rey).,7,24,2012 -20120923_CIN@WAS,2,32,26,WAS,CIN,1,10,37,(2:26) (Shotgun) E.Royster left end to CIN 25 for 12 yards (A.Jones).,7,24,2012 -20120923_CIN@WAS,2,32,0,WAS,CIN,1,10,25,(2:00) R.Griffin pass short right to E.Royster to CIN 26 for -1 yards (T.Newman N.Clements) [G.Atkins].,7,24,2012 -20120923_CIN@WAS,2,31,27,WAS,CIN,2,11,26,(1:27) (Shotgun) R.Griffin pass incomplete short left to S.Moss (A.Jones).,7,24,2012 -20120923_CIN@WAS,2,31,24,WAS,CIN,3,11,26,(1:24) (Shotgun) R.Griffin right tackle to CIN 18 for 8 yards (V.Rey).,7,24,2012 -20120923_CIN@WAS,2,30,36,WAS,CIN,4,3,18,(:36) B.Cundiff 36 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,7,24,2012 -20120923_CIN@WAS,2,30,36,WAS,CIN,,,18,B.Cundiff kicks 73 yards from WAS 35 to CIN -8. A.Jones MUFFS catch RECOVERED by WAS-D.Gomes at CIN -8. D.Gomes to CIN 10 for -18 yards ([37]).,10,24,2012 -20120923_CIN@WAS,2,30,27,CIN,WAS,1,10,90,(:27) A.Dalton kneels to CIN 9 for -1 yards.,24,10,2012 -20120923_CIN@WAS,3,30,0,CIN,WAS,,,90,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,24,10,2012 -20120923_CIN@WAS,3,30,0,WAS,CIN,1,10,80,(15:00) A.Morris right tackle to WAS 25 for 5 yards (R.Maualuga).,10,24,2012 -20120923_CIN@WAS,3,29,28,WAS,CIN,2,5,75,(14:28) A.Morris right end to WAS 25 for no gain (G.Atkins; R.Geathers).,10,24,2012 -20120923_CIN@WAS,3,28,53,WAS,CIN,3,5,75,(13:53) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 39 for 14 yards (R.Nelson).,10,24,2012 -20120923_CIN@WAS,3,28,18,WAS,CIN,1,10,61,(13:18) (Shotgun) R.Griffin pass short middle to F.Davis to CIN 49 for 12 yards (R.Maualuga V.Burfict) [M.Johnson].,10,24,2012 -20120923_CIN@WAS,3,27,36,WAS,CIN,1,10,49,(12:36) (Shotgun) E.Royster up the middle to CIN 40 for 9 yards (R.Nelson; D.Still).,10,24,2012 -20120923_CIN@WAS,3,26,58,WAS,CIN,2,1,40,(11:58) A.Morris up the middle to CIN 35 for 5 yards (A.Jones). PENALTY on CIN-A.Jones Horse Collar Tackle 15 yards enforced at CIN 35.,10,24,2012 -20120923_CIN@WAS,3,26,36,WAS,CIN,1,10,20,(11:36) A.Morris left end to CIN 14 for 6 yards (M.Lawson; R.Maualuga).,10,24,2012 -20120923_CIN@WAS,3,25,58,WAS,CIN,2,4,14,(10:58) (Shotgun) R.Griffin left end pushed ob at CIN 7 for 7 yards (R.Nelson).,10,24,2012 -20120923_CIN@WAS,3,25,29,WAS,CIN,1,7,7,(10:29) A.Morris right tackle for 7 yards TOUCHDOWN.,10,24,2012 -20120923_CIN@WAS,3,25,29,WAS,CIN,,,7,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,10,24,2012 -20120923_CIN@WAS,3,25,29,WAS,CIN,,,7,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,17,24,2012 -20120923_CIN@WAS,3,25,23,CIN,WAS,1,10,80,(10:23) (Shotgun) A.Dalton pass short right to A.Green to CIN 28 for 8 yards (D.Hall).,24,17,2012 -20120923_CIN@WAS,3,24,50,CIN,WAS,2,2,72,(9:50) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (L.Fletcher R.Kerrigan).,24,17,2012 -20120923_CIN@WAS,3,24,45,CIN,WAS,3,2,72,(9:45) B.Green-Ellis left tackle to CIN 29 for 1 yard (D.Hall; P.Riley).,24,17,2012 -20120923_CIN@WAS,3,24,8,CIN,WAS,4,1,71,(9:08) K.Huber punts 56 yards to WAS 15 Center-C.Harris. B.Banks pushed ob at WAS 14 for -1 yards (B.Leonard).,24,17,2012 -20120923_CIN@WAS,3,23,57,WAS,CIN,1,10,86,(8:57) R.Griffin pass deep middle to L.Hankerson to WAS 37 for 23 yards (T.Newman N.Clements).,17,24,2012 -20120923_CIN@WAS,3,23,14,WAS,CIN,1,10,63,(8:14) (Shotgun) A.Morris right tackle to 50 for 13 yards (B.Green-Ellis; R.Nelson).,17,24,2012 -20120923_CIN@WAS,3,22,37,WAS,CIN,1,10,50,(7:37) (Shotgun) B.Banks left end pushed ob at CIN 29 for 21 yards (R.Nelson).,17,24,2012 -20120923_CIN@WAS,3,22,10,WAS,CIN,1,10,29,(7:10) A.Morris right end to CIN 30 for -1 yards (C.Dunlap).,17,24,2012 -20120923_CIN@WAS,3,21,31,WAS,CIN,2,11,30,(6:31) (Shotgun) A.Morris left guard to CIN 26 for 4 yards (R.Maualuga).,17,24,2012 -20120923_CIN@WAS,3,20,54,WAS,CIN,3,7,26,(5:54) (Shotgun) R.Griffin up the middle to CIN 17 for 9 yards (R.Nelson).,17,24,2012 -20120923_CIN@WAS,3,20,17,WAS,CIN,1,10,18,(5:17) (Shotgun) R.Griffin FUMBLES (Aborted) at CIN 20 recovered by WAS-B.Banks at CIN 18. B.Banks pushed ob at CIN 12 for 6 yards (R.Nelson).,17,24,2012 -20120923_CIN@WAS,3,19,39,WAS,CIN,2,5,12,(4:39) (Shotgun) A.Morris up the middle to CIN 6 for 6 yards (M.Lawson; V.Burfict).,17,24,2012 -20120923_CIN@WAS,3,19,0,WAS,CIN,1,6,6,(4:00) (Shotgun) R.Griffin left end pushed ob at CIN 3 for 3 yards (V.Rey).,17,24,2012 -20120923_CIN@WAS,3,18,34,WAS,CIN,2,3,3,(3:34) R.Griffin pass short right to S.Moss for 3 yards TOUCHDOWN.,17,24,2012 -20120923_CIN@WAS,3,18,34,WAS,CIN,,,3,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,17,24,2012 -20120923_CIN@WAS,3,18,34,WAS,CIN,,,3,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,24,24,2012 -20120923_CIN@WAS,3,18,29,CIN,WAS,1,10,80,(3:29) A.Dalton pass deep right to A.Green to CIN 47 for 27 yards (D.Hall).,24,24,2012 -20120923_CIN@WAS,3,18,2,CIN,WAS,1,10,53,(3:02) (No Huddle) B.Green-Ellis left end to CIN 47 for no gain (J.Wilson). FUMBLES (J.Wilson) RECOVERED by WAS-J.Wilson at CIN 47. J.Wilson to CIN 47 for no gain (B.Green-Ellis).,24,24,2012 -20120923_CIN@WAS,3,17,53,WAS,CIN,1,10,47,(2:53) (Shotgun) B.Banks right end pushed ob at CIN 47 for no gain (V.Burfict).,24,24,2012 -20120923_CIN@WAS,3,17,28,WAS,CIN,2,10,47,(2:28) R.Griffin sacked at WAS 45 for -8 yards (M.Johnson).,24,24,2012 -20120923_CIN@WAS,3,16,56,WAS,CIN,3,18,55,(1:56) (Shotgun) R.Griffin pass incomplete deep left to L.Hankerson [C.Dunlap].,24,24,2012 -20120923_CIN@WAS,3,16,49,WAS,CIN,4,18,55,(1:49) S.Rocca punts 41 yards to CIN 14 Center-J.Snow fair catch by B.Tate.,24,24,2012 -20120923_CIN@WAS,3,16,41,CIN,WAS,1,10,86,(1:41) B.Green-Ellis left end to CIN 13 for -1 yards (R.Jackson L.Fletcher).,24,24,2012 -20120923_CIN@WAS,3,16,2,CIN,WAS,2,11,87,(1:02) A.Dalton pass incomplete short right to A.Green (R.Kerrigan).,24,24,2012 -20120923_CIN@WAS,3,15,58,CIN,WAS,3,11,87,(:58) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 20 for 7 yards (J.Wilson).,24,24,2012 -20120923_CIN@WAS,3,15,21,CIN,WAS,4,4,80,(:21) K.Huber punts 33 yards to WAS 47 Center-C.Harris out of bounds.,24,24,2012 -20120923_CIN@WAS,3,15,4,WAS,CIN,1,10,53,(:04) (Shotgun) R.Griffin pass incomplete short middle to A.Robinson.,24,24,2012 -20120923_CIN@WAS,4,15,0,WAS,CIN,2,10,53,(15:00) (Shotgun) A.Morris up the middle to WAS 49 for 2 yards (M.Lawson; D.Peko).,24,24,2012 -20120923_CIN@WAS,4,14,24,WAS,CIN,3,8,51,(14:24) (Shotgun) R.Griffin left end to CIN 44 for 7 yards (R.Maualuga; N.Clements).,24,24,2012 -20120923_CIN@WAS,4,13,41,WAS,CIN,4,1,44,(13:41) S.Rocca punts 44 yards to end zone Center-J.Snow Touchback. Washington challenged the touchback ruling and the play was Upheld. (Timeout #3 at 13:27.),24,24,2012 -20120923_CIN@WAS,4,13,27,CIN,WAS,1,10,80,(13:27) A.Dalton pass short right to A.Green to CIN 31 for 11 yards (D.Hall).,24,24,2012 -20120923_CIN@WAS,4,12,42,CIN,WAS,1,10,69,(12:42) A.Dalton pass deep right to O.Charles to WAS 44 for 25 yards (L.Fletcher) [R.Kerrigan].,24,24,2012 -20120923_CIN@WAS,4,12,4,CIN,WAS,1,10,44,(12:04) A.Dalton pass deep right to A.Green to WAS 13 for 31 yards (D.Hall Mad.Williams). PENALTY on WAS-D.Hall Face Mask (15 Yards) 7 yards enforced at WAS 13.,24,24,2012 -20120923_CIN@WAS,4,11,35,CIN,WAS,1,6,6,(11:35) (Shotgun) A.Dalton pass incomplete short middle to B.Leonard.,24,24,2012 -20120923_CIN@WAS,4,11,31,CIN,WAS,2,6,6,(11:31) (Shotgun) A.Dalton pass short right to J.Gresham for 6 yards TOUCHDOWN.,24,24,2012 -20120923_CIN@WAS,4,11,31,CIN,WAS,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,24,24,2012 -20120923_CIN@WAS,4,11,31,CIN,WAS,,,6,M.Nugent kicks 71 yards from CIN 35 to WAS -6. B.Banks to WAS 20 for 26 yards (V.Rey).,31,24,2012 -20120923_CIN@WAS,4,11,19,WAS,CIN,1,10,80,(11:19) (Shotgun) R.Griffin pass short right to B.Banks pushed ob at WAS 25 for 5 yards (N.Clements).,24,31,2012 -20120923_CIN@WAS,4,10,51,WAS,CIN,2,5,75,(10:51) (Shotgun) B.Banks right end pushed ob at WAS 33 for 8 yards (N.Clements).,24,31,2012 -20120923_CIN@WAS,4,10,19,WAS,CIN,1,10,67,(10:19) A.Morris right end to WAS 37 for 4 yards (N.Clements).,24,31,2012 -20120923_CIN@WAS,4,9,36,WAS,CIN,2,6,63,(9:36) (Shotgun) R.Griffin pass incomplete deep middle to L.Hankerson [M.Johnson].,24,31,2012 -20120923_CIN@WAS,4,9,28,WAS,CIN,3,6,63,(9:28) (Shotgun) R.Griffin pass incomplete short middle to A.Robinson (M.Johnson R.Muckelroy).,24,31,2012 -20120923_CIN@WAS,4,9,22,WAS,CIN,4,6,63,(9:22) S.Rocca punts 49 yards to CIN 14 Center-J.Snow. B.Tate to CIN 28 for 14 yards (D.Young).,24,31,2012 -20120923_CIN@WAS,4,9,9,CIN,WAS,1,10,72,(9:09) A.Dalton pass short middle to A.Green to CIN 30 for 2 yards (L.Fletcher).,31,24,2012 -20120923_CIN@WAS,4,8,34,CIN,WAS,2,8,70,(8:34) B.Green-Ellis left end to CIN 39 for 9 yards (P.Riley Mad.Williams).,31,24,2012 -20120923_CIN@WAS,4,7,58,CIN,WAS,1,10,61,(7:58) B.Green-Ellis right end to CIN 41 for 2 yards (R.Kerrigan).,31,24,2012 -20120923_CIN@WAS,4,7,17,CIN,WAS,2,8,59,(7:17) (Shotgun) A.Dalton pass deep middle to A.Hawkins for 59 yards TOUCHDOWN. Penalty on WAS-J.Wilson Defensive Holding declined.,31,24,2012 -20120923_CIN@WAS,4,7,17,CIN,WAS,,,59,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,31,24,2012 -20120923_CIN@WAS,4,7,8,WAS,CIN,1,10,90,(7:08) R.Griffin pass incomplete short left to E.Royster [R.Geathers]. WAS-E.Royster was injured during the play. Royster's return was questionable,24,38,2012 -20120923_CIN@WAS,4,7,2,WAS,CIN,2,10,90,(7:02) (Shotgun) R.Griffin pass short right to F.Davis pushed ob at WAS 26 for 16 yards (R.Nelson) [C.Dunlap].,24,38,2012 -20120923_CIN@WAS,4,6,45,WAS,CIN,1,10,74,(6:45) (Shotgun) R.Griffin pass short left to R.Helu pushed ob at WAS 32 for 6 yards (V.Rey).,24,38,2012 -20120923_CIN@WAS,4,6,23,WAS,CIN,2,4,68,(6:23) (Shotgun) R.Griffin pass short left to F.Davis to WAS 43 for 11 yards (A.Jones). PENALTY on WAS-J.Black Offensive Holding 10 yards enforced at WAS 32 - No Play.,24,38,2012 -20120923_CIN@WAS,4,6,4,WAS,CIN,2,14,78,(6:04) (Shotgun) R.Griffin pass deep middle to F.Davis pushed ob at CIN 49 for 29 yards (A.Jones).,24,38,2012 -20120923_CIN@WAS,4,5,46,WAS,CIN,1,10,49,(5:46) (Shotgun) R.Griffin scrambles left end to CIN 44 for 5 yards (R.Nelson W.Gilberry).,24,38,2012 -20120923_CIN@WAS,4,5,21,WAS,CIN,2,5,44,(5:21) (No Huddle Shotgun) R.Griffin pass short left to L.Hankerson pushed ob at CIN 34 for 10 yards (J.Allen).,24,38,2012 -20120923_CIN@WAS,4,5,0,WAS,CIN,1,10,34,(5:00) (Shotgun) R.Griffin pass short right to R.Helu to CIN 29 for 5 yards (N.Clements R.Maualuga).,24,38,2012 -20120923_CIN@WAS,4,4,34,WAS,CIN,2,5,29,(4:34) (No Huddle Shotgun) R.Griffin pass short middle to F.Davis to CIN 22 for 7 yards (N.Clements; R.Maualuga).,24,38,2012 -20120923_CIN@WAS,4,4,11,WAS,CIN,1,10,22,(4:11) (No Huddle Shotgun) R.Griffin pass incomplete short middle to S.Moss.,24,38,2012 -20120923_CIN@WAS,4,4,8,WAS,CIN,2,10,22,(4:08) (Shotgun) R.Griffin pass short middle to L.Hankerson ran ob at CIN 11 for 11 yards [M.Johnson].,24,38,2012 -20120923_CIN@WAS,4,4,0,WAS,CIN,1,10,11,(4:00) (Shotgun) R.Griffin pass short middle to R.Helu to CIN 2 for 9 yards (R.Nelson; C.Dunlap).,24,38,2012 -20120923_CIN@WAS,4,3,38,WAS,CIN,2,1,2,(3:38) (No Huddle Shotgun) R.Griffin up the middle for 2 yards TOUCHDOWN.,24,38,2012 -20120923_CIN@WAS,4,3,38,WAS,CIN,,,2,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,24,38,2012 -20120923_CIN@WAS,4,3,38,WAS,CIN,,,2,B.Cundiff kicks onside 9 yards from WAS 35 to WAS 44 downed by WAS-N.Paul.,31,38,2012 -20120923_CIN@WAS,4,3,30,CIN,WAS,1,10,56,(3:30) B.Green-Ellis up the middle to WAS 40 for 16 yards (Mad.Williams; P.Riley).,38,31,2012 -20120923_CIN@WAS,4,2,50,CIN,WAS,1,10,40,(2:50) D.Roland reported in as eligible. B.Green-Ellis up the middle to WAS 38 for 2 yards (L.Fletcher; P.Riley).,38,31,2012 -20120923_CIN@WAS,4,2,7,CIN,WAS,3,4,38,(2:07) B.Green-Ellis right end to WAS 36 for 2 yards (B.Cofield; P.Riley).,38,31,2012 -20120923_CIN@WAS,4,1,57,CIN,WAS,4,2,36,(1:57) (Shotgun) PENALTY on CIN-A.Dalton Delay of Game 5 yards enforced at WAS 36 - No Play.,38,31,2012 -20120923_CIN@WAS,4,1,57,CIN,WAS,4,7,41,(1:57) K.Huber punts 39 yards to WAS 2 Center-C.Harris downed by CIN-A.Hawkins.,38,31,2012 -20120923_CIN@WAS,4,1,47,WAS,CIN,1,10,98,(1:47) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 13 for 11 yards (R.Maualuga).,31,38,2012 -20120923_CIN@WAS,4,1,23,WAS,CIN,1,10,87,(1:23) (No Huddle Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 25 for 12 yards (R.Maualuga). WAS-L.Hankerson was injured during the play.,31,38,2012 -20120923_CIN@WAS,4,1,2,WAS,CIN,1,10,75,(1:02) (Shotgun) R.Griffin scrambles pushed ob at WAS 35 for 10 yards (T.Newman). PENALTY on CIN-T.Newman Personal Foul 15 yards enforced at WAS 35.,31,38,2012 -20120923_CIN@WAS,4,0,51,WAS,CIN,1,10,50,(:51) R.Griffin pass short right to A.Robinson to CIN 38 for 12 yards (T.Newman).,31,38,2012 -20120923_CIN@WAS,4,0,36,WAS,CIN,1,10,38,(:36) (No Huddle Shotgun) R.Griffin scrambles left end pushed ob at CIN 19 for 19 yards (R.Maualuga).,31,38,2012 -20120923_CIN@WAS,4,0,29,WAS,CIN,1,10,19,(:29) (Shotgun) R.Griffin sacked at CIN 34 for -15 yards (G.Atkins).,31,38,2012 -20120923_CIN@WAS,4,0,7,WAS,CIN,2,25,34,(:07) R.Griffin pass incomplete. Spiked,31,38,2012 -20120923_CIN@WAS,4,0,7,WAS,CIN,3,25,34,(:07) (Shotgun) PENALTY on WAS-F.Davis False Start 5 yards enforced at CIN 34 - No Play. PENALTY on WAS Unsportsmanlike Conduct 20 yards enforced between downs.,31,38,2012 -20120923_CIN@WAS,4,0,6,WAS,CIN,3,45,54,(:06) (Shotgun) R.Griffin pass incomplete deep right to J.Morgan.,31,38,2012 -20120923_CIN@WAS,4,0,6,WAS,CIN,,,54,                      ,31,38,2012 -20120923_PHI@ARI,1,0,0,ARI,PHI,,,54,J.Feely kicks 64 yards from ARZ 35 to PHI 1. B.Boykin to PHI 24 for 23 yards (M.Adams).,0,0,2012 -20120923_PHI@ARI,1,59,54,PHI,ARI,1,10,76,(14:54) M.Vick left end pushed ob at PHI 27 for 3 yards (D.Washington).,0,0,2012 -20120923_PHI@ARI,1,59,30,PHI,ARI,2,7,73,(14:30) M.Vick pass incomplete deep left to D.Johnson [D.Washington].,0,0,2012 -20120923_PHI@ARI,1,59,21,PHI,ARI,3,7,73,(14:21) (Shotgun) M.Vick pass incomplete short left to D.Johnson (K.Rhodes).,0,0,2012 -20120923_PHI@ARI,1,59,16,PHI,ARI,4,7,73,(14:16) C.Henry punts 52 yards to ARZ 21 Center-J.Dorenbos. P.Peterson ran ob at ARZ 35 for 14 yards (N.Allen).,0,0,2012 -20120923_PHI@ARI,1,59,5,ARI,PHI,1,10,65,(14:05) K.Kolb pass short left to A.Roberts to ARZ 49 for 14 yards (N.Asomugha).,0,0,2012 -20120923_PHI@ARI,1,58,25,ARI,PHI,1,10,51,(13:25) (Shotgun) K.Kolb pass short right to L.Fitzgerald to PHI 35 for 16 yards (D.Ryans).,0,0,2012 -20120923_PHI@ARI,1,57,46,ARI,PHI,1,10,35,(12:46) C.Wells left tackle to PHI 33 for 2 yards (T.Cole).,0,0,2012 -20120923_PHI@ARI,1,57,5,ARI,PHI,2,8,33,(12:05) (Shotgun) K.Kolb pass short left to R.Williams pushed ob at PHI 21 for 12 yards (M.Kendricks).,0,0,2012 -20120923_PHI@ARI,1,56,52,ARI,PHI,1,10,21,(11:52) C.Wells left tackle to PHI 17 for 4 yards (D.Tapp).,0,0,2012 -20120923_PHI@ARI,1,56,14,ARI,PHI,2,6,17,(11:14) (Shotgun) P.Peterson left end pushed ob at PHI 21 for -4 yards (N.Asomugha).,0,0,2012 -20120923_PHI@ARI,1,55,43,ARI,PHI,3,10,21,(10:43) (Shotgun) K.Kolb sacked at PHI 29 for -8 yards (sack split by T.Cole and J.Babin).,0,0,2012 -20120923_PHI@ARI,1,55,43,ARI,PHI,4,18,29,(10:43) J.Feely 47 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20120923_PHI@ARI,1,55,43,ARI,PHI,,,29,J.Feely kicks 67 yards from ARZ 35 to PHI -2. B.Boykin ran ob at PHI 22 for 24 yards (J.Sanders).,3,0,2012 -20120923_PHI@ARI,1,55,13,PHI,ARI,1,10,78,(10:13) L.McCoy right tackle to PHI 22 for no gain (D.Williams).,0,3,2012 -20120923_PHI@ARI,1,54,36,PHI,ARI,2,10,78,(9:36) M.Vick pass short left to L.McCoy to PHI 26 for 4 yards (S.Acho).,0,3,2012 -20120923_PHI@ARI,1,53,45,PHI,ARI,3,6,74,(8:45) (Shotgun) M.Vick pass deep right to D.Johnson to PHI 46 for 20 yards (J.Sanders) [C.Campbell].,0,3,2012 -20120923_PHI@ARI,1,53,5,PHI,ARI,1,10,54,(8:05) M.Vick sacked at PHI 35 for -11 yards (O.Schofield).,0,3,2012 -20120923_PHI@ARI,1,52,32,PHI,ARI,2,21,65,(7:32) B.Brown left tackle to PHI 38 for 3 yards (P.Lenon S.Acho).,0,3,2012 -20120923_PHI@ARI,1,51,51,PHI,ARI,3,18,62,(6:51) (Shotgun) M.Vick pass incomplete short left to M.Gilyard (C.Campbell).,0,3,2012 -20120923_PHI@ARI,1,51,51,PHI,ARI,4,18,62,(6:51) C.Henry punts 54 yards to ARZ 8 Center-J.Dorenbos. P.Peterson to ARZ 18 for 10 yards (P.Hunt).,0,3,2012 -20120923_PHI@ARI,1,51,33,ARI,PHI,1,10,82,(6:33) (Shotgun) R.Williams up the middle to ARZ 17 for -1 yards (D.Landri).,3,0,2012 -20120923_PHI@ARI,1,50,50,ARI,PHI,2,11,83,(5:50) K.Kolb pass incomplete short right to A.Roberts (D.Rodgers-Cromartie).,3,0,2012 -20120923_PHI@ARI,1,50,44,ARI,PHI,3,11,83,(5:44) (Shotgun) PENALTY on ARZ Defensive Delay of Game 5 yards enforced at ARZ 17 - No Play.,3,0,2012 -20120923_PHI@ARI,1,50,41,ARI,PHI,3,16,88,(5:41) K.Kolb pass short right to L.Fitzgerald to ARZ 16 for 4 yards (B.Boykin) [J.Babin].,3,0,2012 -20120923_PHI@ARI,1,50,2,ARI,PHI,4,12,84,(5:02) D.Zastudil punts 58 yards to PHI 26 Center-M.Leach. D.Johnson to PHI 38 for 12 yards (A.Sherman). FUMBLES (A.Sherman) RECOVERED by ARZ-M.Leach at PHI 38. M.Leach to PHI 38 for no gain (D.Johnson).,3,0,2012 -20120923_PHI@ARI,1,49,36,ARI,PHI,1,10,38,(4:36) C.Wells right tackle to PHI 36 for 2 yards (J.Babin K.Coleman).,3,0,2012 -20120923_PHI@ARI,1,49,6,ARI,PHI,2,8,36,(4:06) (Shotgun) K.Kolb pass incomplete deep left to A.Roberts.,3,0,2012 -20120923_PHI@ARI,1,49,1,ARI,PHI,3,8,36,(4:01) (Shotgun) K.Kolb pass short left to A.Roberts to PHI 24 for 12 yards (B.Boykin).,3,0,2012 -20120923_PHI@ARI,1,47,49,ARI,PHI,1,10,24,(2:49) C.Wells left tackle to PHI 24 for no gain (D.Tapp C.Thornton).,3,0,2012 -20120923_PHI@ARI,1,47,39,ARI,PHI,2,10,24,(2:39) K.Kolb pass short right to L.Fitzgerald to PHI 13 for 11 yards (K.Coleman).,3,0,2012 -20120923_PHI@ARI,1,47,1,ARI,PHI,1,10,13,(2:01) C.Wells up the middle to PHI 8 for 5 yards (D.Ryans).,3,0,2012 -20120923_PHI@ARI,1,46,15,ARI,PHI,2,5,8,(1:15) (Shotgun) K.Kolb pass incomplete short left to E.Doucet.,3,0,2012 -20120923_PHI@ARI,1,46,10,ARI,PHI,3,5,8,(1:10) (Shotgun) K.Kolb pass short right to M.Floyd for 8 yards TOUCHDOWN.,3,0,2012 -20120923_PHI@ARI,1,46,10,ARI,PHI,,,8,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,0,2012 -20120923_PHI@ARI,1,46,10,ARI,PHI,,,8,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,10,0,2012 -20120923_PHI@ARI,1,46,4,PHI,ARI,1,10,80,(1:04) L.McCoy left tackle to PHI 28 for 8 yards (D.Dockett).,0,10,2012 -20120923_PHI@ARI,1,45,28,PHI,ARI,2,2,72,(:28) (Shotgun) M.Vick pass deep left to B.Celek to ARZ 38 for 34 yards (R.Johnson).,0,10,2012 -20120923_PHI@ARI,2,45,0,PHI,ARI,1,10,38,(15:00) PENALTY on PHI-D.Bell False Start 5 yards enforced at ARZ 38 - No Play.,0,10,2012 -20120923_PHI@ARI,2,45,0,PHI,ARI,1,15,43,(15:00) L.McCoy up the middle to ARZ 36 for 7 yards (W.Gay; O.Schofield).,0,10,2012 -20120923_PHI@ARI,2,44,30,PHI,ARI,2,8,36,(14:30) M.Vick right end to ARZ 35 for 1 yard (S.Acho). Arizona challenged the fumble ruling and the play was REVERSED. M.Vick scrambles right end to ARZ 35 for 1 yard (S.Acho). FUMBLES (S.Acho) RECOVERED by ARZ-D.Williams at ARZ 35. D.Williams to ARZ 35 for no gain (D.Reynolds).,0,10,2012 -20120923_PHI@ARI,2,44,22,ARI,PHI,1,10,65,(14:22) R.Williams right tackle to ARZ 39 for 4 yards (D.Ryans N.Allen).,10,0,2012 -20120923_PHI@ARI,2,43,48,ARI,PHI,2,7,61,(13:48) R.Williams right tackle to ARZ 43 for 4 yards (K.Coleman).,10,0,2012 -20120923_PHI@ARI,2,43,7,ARI,PHI,3,2,57,(13:07) K.Kolb pass short right to R.Housler to PHI 46 for 11 yards (M.Kendricks; K.Coleman).,10,0,2012 -20120923_PHI@ARI,2,42,22,ARI,PHI,1,10,46,(12:22) R.Williams right tackle to PHI 37 for 9 yards (N.Allen). PENALTY on ARZ-A.Sherman Unsportsmanlike Conduct 15 yards enforced at PHI 37.,10,0,2012 -20120923_PHI@ARI,2,41,45,ARI,PHI,2,16,52,(11:45) (Shotgun) K.Kolb sacked at ARZ 40 for -8 yards (D.Tapp). PENALTY on ARZ-D.Batiste Offensive Holding 10 yards enforced at ARZ 48 - No Play.,10,0,2012 -20120923_PHI@ARI,2,41,17,ARI,PHI,2,26,62,(11:17) (Shotgun) K.Kolb pass incomplete short right to M.Floyd.,10,0,2012 -20120923_PHI@ARI,2,41,12,ARI,PHI,3,26,62,(11:12) (Shotgun) K.Kolb pass short left to L.Fitzgerald to PHI 40 for 22 yards (D.Rodgers-Cromartie).,10,0,2012 -20120923_PHI@ARI,2,40,23,ARI,PHI,4,4,40,(10:23) D.Zastudil punts 31 yards to PHI 9 Center-M.Leach fair catch by D.Johnson.,10,0,2012 -20120923_PHI@ARI,2,40,14,PHI,ARI,1,10,91,(10:14) M.Vick pass incomplete deep left to D.Jackson.,0,10,2012 -20120923_PHI@ARI,2,40,6,PHI,ARI,2,10,91,(10:06) (Shotgun) M.Vick sacked at PHI 6 for -3 yards (D.Washington).,0,10,2012 -20120923_PHI@ARI,2,39,25,PHI,ARI,3,13,94,(9:25) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,0,10,2012 -20120923_PHI@ARI,2,39,18,PHI,ARI,4,13,94,(9:18) C.Henry punts 49 yards to ARZ 45 impetus ends at ARZ 49 Center-J.Dorenbos. P.Peterson to ARZ 45 for no gain (C.Anderson).,0,10,2012 -20120923_PHI@ARI,2,39,2,ARI,PHI,1,10,55,(9:02) K.Kolb pass incomplete short right to A.Roberts (D.Rodgers-Cromartie).,10,0,2012 -20120923_PHI@ARI,2,39,2,ARI,PHI,2,10,55,(9:02) C.Wells up the middle to ARZ 48 for 3 yards (D.Landri).,10,0,2012 -20120923_PHI@ARI,2,38,19,ARI,PHI,3,7,52,(8:19) (Shotgun) K.Kolb pass short middle to J.King to PHI 37 for 15 yards (N.Allen).,10,0,2012 -20120923_PHI@ARI,2,37,40,ARI,PHI,1,10,37,(7:40) K.Kolb pass deep left to L.Fitzgerald for 37 yards TOUCHDOWN.,10,0,2012 -20120923_PHI@ARI,2,37,40,ARI,PHI,,,37,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,10,0,2012 -20120923_PHI@ARI,2,37,40,ARI,PHI,,,37,J.Feely kicks 59 yards from ARZ 35 to PHI 6. B.Boykin to PHI 25 for 19 yards (J.Feely).,17,0,2012 -20120923_PHI@ARI,2,37,22,PHI,ARI,1,10,75,(7:22) (Shotgun) M.Vick scrambles left end to PHI 30 for 5 yards (C.Campbell). PENALTY on PHI-D.Bell Offensive Holding 10 yards enforced at PHI 25 - No Play.,0,17,2012 -20120923_PHI@ARI,2,37,3,PHI,ARI,1,20,85,(7:03) (Shotgun) M.Vick pass incomplete short left to B.Celek.,0,17,2012 -20120923_PHI@ARI,2,36,58,PHI,ARI,2,20,85,(6:58) (Shotgun) M.Vick pass incomplete deep left to B.Celek.,0,17,2012 -20120923_PHI@ARI,2,36,52,PHI,ARI,3,20,85,(6:52) L.McCoy right tackle to PHI 15 for no gain (Q.Groves).,0,17,2012 -20120923_PHI@ARI,2,36,6,PHI,ARI,4,20,85,(6:06) C.Henry punts 62 yards to ARZ 23 Center-J.Dorenbos. P.Peterson ran ob at ARZ 40 for 17 yards (S.Havili).,0,17,2012 -20120923_PHI@ARI,2,35,54,ARI,PHI,1,10,60,(5:54) C.Wells up the middle to ARZ 42 for 2 yards (M.Kendricks).,17,0,2012 -20120923_PHI@ARI,2,35,14,ARI,PHI,2,8,58,(5:14) (Shotgun) K.Kolb pass short right to L.Fitzgerald pushed ob at PHI 49 for 9 yards (B.Boykin).,17,0,2012 -20120923_PHI@ARI,2,34,42,ARI,PHI,1,10,49,(4:42) R.Williams right tackle to PHI 47 for 2 yards (K.Coleman).,17,0,2012 -20120923_PHI@ARI,2,33,58,ARI,PHI,2,8,47,(3:58) K.Kolb sacked at ARZ 46 for -7 yards (sack split by B.Graham and D.Tapp).,17,0,2012 -20120923_PHI@ARI,2,33,19,ARI,PHI,3,15,54,(3:19) (Shotgun) K.Kolb pass short right to L.Fitzgerald to PHI 48 for 6 yards (D.Rodgers-Cromartie).,17,0,2012 -20120923_PHI@ARI,2,32,34,ARI,PHI,4,9,48,(2:34) D.Zastudil punts 48 yards to end zone Center-M.Leach Touchback.,17,0,2012 -20120923_PHI@ARI,2,32,26,PHI,ARI,1,10,80,(2:26) M.Vick pass short middle to L.McCoy to PHI 25 for 5 yards (W.Gay).,0,17,2012 -20120923_PHI@ARI,2,32,1,PHI,ARI,2,5,75,(2:01) (Shotgun) M.Vick pass short left to L.McCoy to PHI 24 for -1 yards (W.Gay).,0,17,2012 -20120923_PHI@ARI,2,31,53,PHI,ARI,3,6,76,(1:53) (Shotgun) M.Vick pass short left to D.Johnson ran ob at 50 for 26 yards (J.Fleming).,0,17,2012 -20120923_PHI@ARI,2,31,44,PHI,ARI,1,10,50,(1:44) M.Vick pass short right to B.Celek to ARZ 48 for 2 yards (P.Lenon).,0,17,2012 -20120923_PHI@ARI,2,31,13,PHI,ARI,2,8,48,(1:13) (Shotgun) M.Vick pass short right to J.Avant to ARZ 35 for 13 yards (D.Washington).,0,17,2012 -20120923_PHI@ARI,2,30,41,PHI,ARI,1,10,35,(:41) (Shotgun) M.Vick pass incomplete deep right to D.Johnson.,0,17,2012 -20120923_PHI@ARI,2,30,35,PHI,ARI,2,10,35,(:35) (Shotgun) M.Vick scrambles up the middle to ARZ 15 for 20 yards (D.Washington).,0,17,2012 -20120923_PHI@ARI,2,30,24,PHI,ARI,1,10,15,(:24) M.Vick pass short left to D.Jackson to ARZ 1 for 14 yards (K.Rhodes).,0,17,2012 -20120923_PHI@ARI,2,30,16,PHI,ARI,1,1,1,(:16) M.Vick pass incomplete short left to D.Jackson.,0,17,2012 -20120923_PHI@ARI,2,30,11,PHI,ARI,2,1,1,(:11) M.Vick pass incomplete short right to D.Jackson [Q.Groves].,0,17,2012 -20120923_PHI@ARI,2,30,6,PHI,ARI,3,1,1,(:06) M.Vick sacked at ARZ 7 for -6 yards (K.Rhodes). FUMBLES (K.Rhodes) RECOVERED by ARZ-J.Sanders at ARZ 7. J.Sanders for 93 yards TOUCHDOWN.,0,17,2012 -20120923_PHI@ARI,2,30,6,ARI,PHI,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil. PENALTY on ARZ-D.Washington Unsportsmanlike Conduct 15 yards enforced between downs. Enforced on third quarter kickoff.,17,0,2012 -20120923_PHI@ARI,3,30,0,PHI,ARI,,,1,A.Henery kicks 76 yards from PHI 20 to ARZ 4. L.Stephens-Howling to ARZ 16 for 12 yards (B.Brown; D.Sims).,6,27,2012 -20120923_PHI@ARI,3,29,55,ARI,PHI,1,10,84,(14:55) C.Wells left end to ARZ 16 for no gain (M.Kendricks).,27,6,2012 -20120923_PHI@ARI,3,29,13,ARI,PHI,2,10,84,(14:13) K.Kolb pass short left to A.Roberts ran ob at PHI 5 for 79 yards (D.Rodgers-Cromartie). PENALTY on ARZ-L.Fitzgerald Illegal Block Above the Waist 10 yards enforced at ARZ 45.,27,6,2012 -20120923_PHI@ARI,3,28,15,ARI,PHI,1,10,65,(13:15) L.Stephens-Howling left tackle to ARZ 30 for -5 yards (D.Ryans).,27,6,2012 -20120923_PHI@ARI,3,27,36,ARI,PHI,2,15,70,(12:36) K.Kolb pass incomplete short left to J.King.,27,6,2012 -20120923_PHI@ARI,3,27,31,ARI,PHI,3,15,70,(12:31) (Shotgun) K.Kolb scrambles right end to ARZ 44 for 14 yards (J.Babin).,27,6,2012 -20120923_PHI@ARI,3,26,43,ARI,PHI,4,1,56,(11:43) D.Zastudil punts 51 yards to PHI 5 Center-M.Leach fair catch by D.Johnson.,27,6,2012 -20120923_PHI@ARI,3,26,37,PHI,ARI,1,10,95,(11:37) L.McCoy right tackle to PHI 10 for 5 yards (J.Fleming).,6,27,2012 -20120923_PHI@ARI,3,26,7,PHI,ARI,2,5,90,(11:07) M.Vick pass short right to D.Johnson to PHI 17 for 7 yards (W.Gay).,6,27,2012 -20120923_PHI@ARI,3,25,20,PHI,ARI,1,10,83,(10:20) M.Vick pass incomplete short right to B.Brown [O.Schofield].,6,27,2012 -20120923_PHI@ARI,3,25,17,PHI,ARI,2,10,83,(10:17) L.McCoy up the middle to PHI 21 for 4 yards (O.Schofield; D.Washington).,6,27,2012 -20120923_PHI@ARI,3,24,38,PHI,ARI,3,6,79,(9:38) M.Vick pass short left to D.Jackson ran ob at PHI 34 for 13 yards. Penalty on ARZ-W.Gay Defensive Holding declined.,6,27,2012 -20120923_PHI@ARI,3,24,17,PHI,ARI,1,10,66,(9:17) (Shotgun) L.McCoy right tackle to PHI 45 for 11 yards (W.Gay; R.Johnson).,6,27,2012 -20120923_PHI@ARI,3,23,46,PHI,ARI,1,10,55,(8:46) (No Huddle) L.McCoy up the middle to ARZ 48 for 7 yards (V.Holliday).,6,27,2012 -20120923_PHI@ARI,3,23,12,PHI,ARI,2,3,48,(8:12) M.Vick pass short right to J.Avant to ARZ 40 for 8 yards (R.Johnson) [S.Acho].,6,27,2012 -20120923_PHI@ARI,3,22,36,PHI,ARI,1,10,40,(7:36) (No Huddle) B.Brown left tackle to ARZ 23 for 17 yards (P.Peterson).,6,27,2012 -20120923_PHI@ARI,3,22,4,PHI,ARI,1,10,23,(7:04) (No Huddle) B.Brown right tackle pushed ob at ARZ 22 for 1 yard (O.Schofield).,6,27,2012 -20120923_PHI@ARI,3,21,30,PHI,ARI,2,9,22,(6:30) L.McCoy up the middle to ARZ 22 for no gain (K.Rhodes).,6,27,2012 -20120923_PHI@ARI,3,20,53,PHI,ARI,3,9,22,(5:53) (Shotgun) M.Vick scrambles up the middle to ARZ 18 for 4 yards (O.Schofield).,6,27,2012 -20120923_PHI@ARI,3,20,11,PHI,ARI,4,5,18,(5:11) A.Henery 36 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,6,27,2012 -20120923_PHI@ARI,3,20,11,PHI,ARI,,,18,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,3,23,2012 -20120923_PHI@ARI,3,20,7,ARI,PHI,1,10,80,(5:07) R.Williams left end pushed ob at ARZ 23 for 3 yards (N.Asomugha).,23,3,2012 -20120923_PHI@ARI,3,19,36,ARI,PHI,2,7,77,(4:36) (Shotgun) L.Stephens-Howling up the middle to ARZ 19 for -4 yards (D.Tapp; M.Kendricks).,23,3,2012 -20120923_PHI@ARI,3,18,57,ARI,PHI,3,11,81,(3:57) (Shotgun) K.Kolb sacked at ARZ 5 for -14 yards (J.Babin).,23,3,2012 -20120923_PHI@ARI,3,18,23,ARI,PHI,4,25,95,(3:23) D.Zastudil punts 50 yards to PHI 45 Center-M.Leach fair catch by D.Johnson.,23,3,2012 -20120923_PHI@ARI,3,18,14,PHI,ARI,1,10,55,(3:14) M.Vick pass short left to D.Jackson to ARZ 39 for 16 yards (K.Rhodes).,3,23,2012 -20120923_PHI@ARI,3,17,37,PHI,ARI,1,10,39,(2:37) (Shotgun) M.Vick sacked at ARZ 42 for -3 yards (Q.Groves).,3,23,2012 -20120923_PHI@ARI,3,17,0,PHI,ARI,2,13,42,(2:00) (No Huddle Shotgun) M.Vick pass incomplete short middle to J.Avant.,3,23,2012 -20120923_PHI@ARI,3,17,0,PHI,ARI,3,13,42,(2:00) M.Vick pass short right to D.Johnson to ARZ 27 for 15 yards (J.Fleming).,3,23,2012 -20120923_PHI@ARI,3,16,29,PHI,ARI,1,10,27,(1:29) M.Vick sacked at ARZ 39 for -12 yards (D.Washington).,3,23,2012 -20120923_PHI@ARI,3,15,55,PHI,ARI,2,22,39,(:55) (Shotgun) M.Vick pass deep right to J.Avant to ARZ 22 for 17 yards (J.Fleming).,3,23,2012 -20120923_PHI@ARI,3,15,14,PHI,ARI,3,5,22,(:14) M.Vick pass incomplete short right to D.Johnson.,3,23,2012 -20120923_PHI@ARI,3,15,14,PHI,ARI,4,5,22,(:14) A.Henery 40 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,3,23,2012 -20120923_PHI@ARI,3,15,14,PHI,ARI,,,22,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,6,23,2012 -20120923_PHI@ARI,3,15,1,ARI,PHI,1,10,80,(:01) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 25 for 5 yards (B.Hughes).,23,6,2012 -20120923_PHI@ARI,4,15,0,ARI,PHI,2,5,75,(15:00) (Shotgun) K.Kolb pass short right to L.Fitzgerald to ARZ 29 for 4 yards (K.Coleman).,23,6,2012 -20120923_PHI@ARI,4,14,14,ARI,PHI,3,1,71,(14:14) (Shotgun) R.Williams left tackle to ARZ 29 for no gain (D.Tapp M.Kendricks).,23,6,2012 -20120923_PHI@ARI,4,13,26,ARI,PHI,4,1,71,(13:26) D.Zastudil punts 45 yards to PHI 26 Center-M.Leach. D.Johnson to PHI 30 for 4 yards (Q.Groves).,23,6,2012 -20120923_PHI@ARI,4,13,15,PHI,ARI,1,10,70,(13:15) L.McCoy right end pushed ob at PHI 39 for 9 yards (R.Johnson).,6,23,2012 -20120923_PHI@ARI,4,12,53,PHI,ARI,2,1,61,(12:53) L.McCoy left tackle to ARZ 47 for 14 yards (R.Johnson).,6,23,2012 -20120923_PHI@ARI,4,12,31,PHI,ARI,1,10,47,(12:31) M.Vick pass incomplete short right to D.Johnson.,6,23,2012 -20120923_PHI@ARI,4,12,27,PHI,ARI,2,10,47,(12:27) (Shotgun) B.Brown left tackle to ARZ 40 for 7 yards (O.Schofield). ARZ-D.Dockett was injured during the play. His return is Questionable.,6,23,2012 -20120923_PHI@ARI,4,11,54,PHI,ARI,3,3,40,(11:54) M.Vick pass short left to B.Brown to ARZ 32 for 8 yards (G.Toler).,6,23,2012 -20120923_PHI@ARI,4,11,24,PHI,ARI,1,10,32,(11:24) L.McCoy right tackle to ARZ 31 for 1 yard (P.Lenon).,6,23,2012 -20120923_PHI@ARI,4,10,53,PHI,ARI,2,9,31,(10:53) (Shotgun) M.Vick pass short right to B.Celek to ARZ 29 for 2 yards (D.Washington). Arizona challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Vick pass incomplete short right to B.Celek.,6,23,2012 -20120923_PHI@ARI,4,10,42,PHI,ARI,3,9,31,(10:42) (Shotgun) M.Vick pass incomplete short left to B.Celek [S.Acho]. PENALTY on PHI-M.Vick Intentional Grounding 20 yards enforced at ARZ 31.,6,23,2012 -20120923_PHI@ARI,4,10,38,PHI,ARI,4,29,51,(10:38) C.Henry punts 33 yards to ARZ 18 Center-J.Dorenbos. P.Peterson to ARZ 29 for 11 yards (S.Havili).,6,23,2012 -20120923_PHI@ARI,4,10,26,ARI,PHI,1,10,71,(10:26) (Shotgun) K.Kolb scrambles right end to ARZ 32 for 3 yards (K.Coleman).,23,6,2012 -20120923_PHI@ARI,4,9,41,ARI,PHI,2,7,68,(9:41) K.Kolb pass short right to R.Housler pushed ob at ARZ 39 for 7 yards (B.Rolle).,23,6,2012 -20120923_PHI@ARI,4,9,10,ARI,PHI,1,10,61,(9:10) L.Stephens-Howling up the middle to ARZ 37 for -2 yards (B.Graham).,23,6,2012 -20120923_PHI@ARI,4,8,25,ARI,PHI,2,12,63,(8:25) (Shotgun) K.Kolb pass incomplete short left to R.Williams (K.Coleman).,23,6,2012 -20120923_PHI@ARI,4,8,25,ARI,PHI,3,12,63,(8:25) (Shotgun) PENALTY on ARZ-K.Kolb False Start 5 yards enforced at ARZ 37 - No Play.,23,6,2012 -20120923_PHI@ARI,4,8,21,ARI,PHI,3,17,68,(8:21) (Shotgun) R.Williams up the middle ran ob at PHI 43 for 25 yards (D.Ryans).,23,6,2012 -20120923_PHI@ARI,4,7,46,ARI,PHI,1,10,43,(7:46) R.Williams up the middle to PHI 44 for -1 yards (K.Coleman). PENALTY on PHI-D.Rodgers-Cromartie Unnecessary Roughness 15 yards enforced at PHI 44.,23,6,2012 -20120923_PHI@ARI,4,7,15,ARI,PHI,1,10,29,(7:15) (Shotgun) R.Williams up the middle to PHI 22 for 7 yards (D.Ryans).,23,6,2012 -20120923_PHI@ARI,4,6,29,ARI,PHI,2,3,22,(6:29) (Shotgun) R.Williams left end to PHI 22 for no gain (P.Hunt).,23,6,2012 -20120923_PHI@ARI,4,5,44,ARI,PHI,3,3,22,(5:44) R.Williams up the middle to PHI 11 for 11 yards (K.Coleman).,23,6,2012 -20120923_PHI@ARI,4,4,58,ARI,PHI,1,10,11,(4:58) L.Stephens-Howling left tackle to PHI 6 for 5 yards (D.Tapp).,23,6,2012 -20120923_PHI@ARI,4,4,12,ARI,PHI,2,5,6,(4:12) (Shotgun) L.Stephens-Howling right end to PHI 8 for -2 yards (J.Babin).,23,6,2012 -20120923_PHI@ARI,4,4,3,ARI,PHI,3,7,8,(4:03) L.Stephens-Howling up the middle to PHI 9 for -1 yards (T.Cole F.Cox).,23,6,2012 -20120923_PHI@ARI,4,3,57,ARI,PHI,4,8,9,(3:57) J.Feely 27 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,23,6,2012 -20120923_PHI@ARI,4,3,57,ARI,PHI,,,9,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,26,6,2012 -20120923_PHI@ARI,4,3,52,PHI,ARI,1,10,80,(3:52) (Shotgun) M.Vick pass short left to D.Johnson to PHI 36 for 16 yards (W.Gay).,6,26,2012 -20120923_PHI@ARI,4,3,19,PHI,ARI,1,10,64,(3:19) (No Huddle Shotgun) M.Vick pass incomplete short left to D.Jackson [C.Campbell].,6,26,2012 -20120923_PHI@ARI,4,3,17,PHI,ARI,2,10,64,(3:17) (Shotgun) M.Vick pass incomplete deep right to D.Jackson [J.Sanders].,6,26,2012 -20120923_PHI@ARI,4,3,12,PHI,ARI,3,10,64,(3:12) (Shotgun) M.Vick pass incomplete short left to D.Johnson [J.Sanders].,6,26,2012 -20120923_PHI@ARI,4,3,8,PHI,ARI,4,10,64,(3:08) (Shotgun) M.Vick pass incomplete short right to D.Jackson.,6,26,2012 -20120923_PHI@ARI,4,3,5,ARI,PHI,1,10,36,(3:05) R.Williams up the middle to PHI 16 for 20 yards (B.Rolle). ARZ-R.Williams was injured during the play. His return is Questionable.,26,6,2012 -20120923_PHI@ARI,4,2,7,ARI,PHI,1,10,16,(2:07) L.Stephens-Howling up the middle to PHI 18 for -2 yards (B.Graham).,26,6,2012 -20120923_PHI@ARI,4,2,0,ARI,PHI,2,12,18,(2:00) L.Stephens-Howling up the middle to PHI 21 for -3 yards (B.Graham).,26,6,2012 -20120923_PHI@ARI,4,1,18,ARI,PHI,3,15,21,(1:18) K.Kolb kneels to PHI 22 for -1 yards.,26,6,2012 -20120923_PHI@ARI,4,2,0,ARI,PHI,4,16,22,(2:00) K.Kolb kneels to PHI 22 for no gain.,26,6,2012 -20120923_PHI@ARI,4,0,33,PHI,ARI,1,10,78,(:33) L.McCoy left tackle to PHI 26 for 4 yards (V.Holliday).,6,26,2012 -20120923_PHI@ARI,4,0,33,PHI,ARI,,,78,                      ,6,26,2012 -20120923_ATL@SD,1,0,0,SD,ATL,,,78,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,0,0,2012 -20120923_ATL@SD,1,60,0,ATL,SD,1,10,80,(15:00) M.Ryan pass deep middle to J.Jones to ATL 39 for 19 yards (E.Weddle).,0,0,2012 -20120923_ATL@SD,1,59,18,ATL,SD,1,10,61,(14:18) M.Ryan pass short left to T.Gonzalez to ATL 48 for 9 yards (A.Bigby J.Johnson).,0,0,2012 -20120923_ATL@SD,1,58,41,ATL,SD,2,1,52,(13:41) M.Turner up the middle to SD 49 for 3 yards (T.Spikes V.Martin).,0,0,2012 -20120923_ATL@SD,1,58,3,ATL,SD,1,10,49,(13:03) M.Ryan pass short right to M.Palmer to SD 48 for 1 yard (T.Spikes).,0,0,2012 -20120923_ATL@SD,1,57,25,ATL,SD,2,9,48,(12:25) (Shotgun) M.Ryan pass short right to Jz. Rodgers to SD 37 for 11 yards (V.Martin A.Bigby).,0,0,2012 -20120923_ATL@SD,1,56,41,ATL,SD,1,10,37,(11:41) Jz. Rodgers up the middle to SD 35 for 2 yards (A.Franklin).,0,0,2012 -20120923_ATL@SD,1,55,58,ATL,SD,2,8,35,(10:58) (Shotgun) M.Ryan pass short middle to T.Gonzalez to SD 22 for 13 yards (D.Butler A.Bigby).,0,0,2012 -20120923_ATL@SD,1,55,21,ATL,SD,1,10,22,(10:21) M.Ryan pass short left to R.White to SD 8 for 14 yards (A.Cason).,0,0,2012 -20120923_ATL@SD,1,54,56,ATL,SD,1,8,8,(9:56) M.Ryan pass incomplete short right.,0,0,2012 -20120923_ATL@SD,1,54,49,ATL,SD,2,8,8,(9:49) M.Ryan pass short middle to Jz. Rodgers for 8 yards TOUCHDOWN.,0,0,2012 -20120923_ATL@SD,1,54,49,ATL,SD,,,8,(Kick formation) TWO-POINT CONVERSION ATTEMPT. M.Bosher rushes right end. ATTEMPT FAILS.,0,0,2012 -20120923_ATL@SD,1,54,49,ATL,SD,,,8,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,6,0,2012 -20120923_ATL@SD,1,54,43,SD,ATL,1,10,80,(9:43) R.Mathews up the middle to SD 23 for 3 yards (S.Nicholas A.Dent).,0,6,2012 -20120923_ATL@SD,1,54,4,SD,ATL,2,7,77,(9:04) P.Rivers pass short right to R.Mathews pushed ob at SD 33 for 10 yards (W.Moore).,0,6,2012 -20120923_ATL@SD,1,53,29,SD,ATL,1,10,67,(8:29) (Shotgun) P.Rivers pass incomplete short right to R.Mathews.,0,6,2012 -20120923_ATL@SD,1,53,25,SD,ATL,2,10,67,(8:25) (Shotgun) P.Rivers pass short left to R.Meachem to SD 37 for 4 yards (S.Nicholas).,0,6,2012 -20120923_ATL@SD,1,52,38,SD,ATL,3,6,63,(7:38) (Shotgun) P.Rivers pass short left to E.Royal to SD 40 for 3 yards (T.DeCoud).,0,6,2012 -20120923_ATL@SD,1,52,8,SD,ATL,4,3,60,(7:08) M.Scifres punts 49 yards to ATL 11 Center-M.Windt. D.Franks to ATL 23 for 12 yards (M.Gilchrist).,0,6,2012 -20120923_ATL@SD,1,51,56,ATL,SD,1,10,77,(6:56) M.Ryan pass short right to M.Turner to ATL 24 for 1 yard (D.Butler).,6,0,2012 -20120923_ATL@SD,1,51,19,ATL,SD,2,9,76,(6:19) M.Ryan pass short right to R.White pushed ob at ATL 29 for 5 yards (Q.Jammer E.Weddle).,6,0,2012 -20120923_ATL@SD,1,50,50,ATL,SD,3,4,71,(5:50) (Shotgun) M.Ryan pass short middle to R.White to ATL 38 for 9 yards (D.Williams A.Bigby). PENALTY on ATL-J.Snelling Illegal Formation 5 yards enforced at ATL 29 - No Play.,6,0,2012 -20120923_ATL@SD,1,50,26,ATL,SD,3,9,76,(5:26) (Shotgun) M.Ryan pass incomplete deep left to R.White.,6,0,2012 -20120923_ATL@SD,1,50,20,ATL,SD,4,9,76,(5:20) M.Bosher punts 51 yards to SD 25 Center-J.Harris. E.Royal to SD 28 for 3 yards (K.Biermann).,6,0,2012 -20120923_ATL@SD,1,50,6,SD,ATL,1,10,72,(5:06) P.Rivers pass incomplete short left to M.Floyd.,0,6,2012 -20120923_ATL@SD,1,50,2,SD,ATL,2,10,72,(5:02) P.Rivers pass incomplete short middle to M.Floyd.,0,6,2012 -20120923_ATL@SD,1,49,57,SD,ATL,3,10,72,(4:57) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd.,0,6,2012 -20120923_ATL@SD,1,49,50,SD,ATL,4,10,72,(4:50) M.Scifres punts 64 yards to ATL 8 Center-M.Windt. D.Franks to ATL 30 for 22 yards (C.Lynch J.Battle).,0,6,2012 -20120923_ATL@SD,1,49,37,ATL,SD,1,10,70,(4:37) M.Turner left guard to ATL 31 for 1 yard (V.Martin D.Butler).,6,0,2012 -20120923_ATL@SD,1,49,3,ATL,SD,2,9,69,(4:03) (Shotgun) M.Ryan pass incomplete short left to R.White. PENALTY on SD-A.Cason Defensive Holding 5 yards enforced at ATL 31 - No Play.,6,0,2012 -20120923_ATL@SD,1,48,58,ATL,SD,1,10,64,(3:58) M.Ryan pass incomplete short middle to T.Gallarda.,6,0,2012 -20120923_ATL@SD,1,48,54,ATL,SD,2,10,64,(3:54) M.Turner left tackle to ATL 42 for 6 yards (A.Bigby).,6,0,2012 -20120923_ATL@SD,1,48,13,ATL,SD,3,4,58,(3:13) (Shotgun) M.Ryan pass short right to T.Gonzalez to 50 for 8 yards (D.Butler D.Williams).,6,0,2012 -20120923_ATL@SD,1,47,35,ATL,SD,1,10,50,(2:35) Jz. Rodgers right tackle to SD 41 for 9 yards (A.Bigby T.Spikes).,6,0,2012 -20120923_ATL@SD,1,46,56,ATL,SD,2,1,41,(1:56) M.Ryan pass deep right to R.White for 41 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on ATL-R.White Offensive Pass Interference 10 yards enforced at SD 41 - No Play.,6,0,2012 -20120923_ATL@SD,1,46,46,ATL,SD,2,11,51,(1:46) M.Turner up the middle to ATL 48 for -1 yards (D.Butler A.Barnes).,6,0,2012 -20120923_ATL@SD,1,46,10,ATL,SD,3,12,52,(1:10) (Shotgun) M.Ryan pass short left to Jz. Rodgers to SD 46 for 6 yards (A.Bigby M.Gilchrist).,6,0,2012 -20120923_ATL@SD,1,45,29,ATL,SD,4,6,46,(:29) M.Bosher punts 34 yards to SD 12 Center-J.Harris fair catch by M.Spurlock.,6,0,2012 -20120923_ATL@SD,1,45,21,SD,ATL,1,10,88,(:21) R.Mathews right end pushed ob at SD 19 for 7 yards (T.DeCoud).,0,6,2012 -20120923_ATL@SD,2,45,0,SD,ATL,2,3,81,(15:00) R.Mathews up the middle to SD 24 for 5 yards (S.Weatherspoon).,0,6,2012 -20120923_ATL@SD,2,44,21,SD,ATL,1,10,76,(14:21) (Shotgun) P.Rivers pass deep middle to M.Floyd to SD 40 for 16 yards (D.Robinson).,0,6,2012 -20120923_ATL@SD,2,43,38,SD,ATL,1,10,60,(13:38) (Shotgun) P.Rivers pass short right to R.Meachem pushed ob at ATL 46 for 14 yards (A.Samuel).,0,6,2012 -20120923_ATL@SD,2,43,17,SD,ATL,1,10,46,(13:17) R.Mathews left end to ATL 45 for 1 yard (J.Abraham A.Dent).,0,6,2012 -20120923_ATL@SD,2,42,31,SD,ATL,2,9,45,(12:31) (Shotgun) P.Rivers pass deep left to M.Floyd to ATL 17 for 28 yards (D.Robinson).,0,6,2012 -20120923_ATL@SD,2,42,6,SD,ATL,1,10,17,(12:06) R.Mathews up the middle to ATL 14 for 3 yards (A.Dent R.Edwards).,0,6,2012 -20120923_ATL@SD,2,41,27,SD,ATL,2,7,14,(11:27) (Shotgun) R.Mathews right end to ATL 7 for 7 yards (S.Nicholas).,0,6,2012 -20120923_ATL@SD,2,40,42,SD,ATL,1,7,7,(10:42) R.Mathews up the middle to ATL 4 for 3 yards (S.Weatherspoon). FUMBLES (S.Weatherspoon) RECOVERED by ATL-T.DeCoud at ATL 4. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,6,2012 -20120923_ATL@SD,2,40,31,ATL,SD,1,10,96,(10:31) M.Turner right tackle to ATL 5 for 1 yard (A.Franklin D.Butler).,6,0,2012 -20120923_ATL@SD,2,39,51,ATL,SD,2,9,95,(9:51) M.Turner up the middle to ATL 9 for 4 yards (A.Franklin).,6,0,2012 -20120923_ATL@SD,2,39,6,ATL,SD,3,5,91,(9:06) (Shotgun) M.Ryan sacked at ATL 1 for -8 yards (A.Barnes). PENALTY on SD-A.Bigby Defensive Holding 5 yards enforced at ATL 9 - No Play.,6,0,2012 -20120923_ATL@SD,2,38,48,ATL,SD,1,10,86,(8:48) M.Ryan sacked at ATL 13 for -1 yards (V.Martin).,6,0,2012 -20120923_ATL@SD,2,38,8,ATL,SD,2,11,87,(8:08) M.Ryan pass short left to H.Douglas to ATL 23 for 10 yards (A.Cason).,6,0,2012 -20120923_ATL@SD,2,37,26,ATL,SD,3,1,77,(7:26) (Shotgun) M.Ryan pass short right to J.Jones to ATL 27 for 4 yards (M.Gilchrist).,6,0,2012 -20120923_ATL@SD,2,36,47,ATL,SD,1,10,73,(6:47) M.Ryan pass deep left to J.Jones to SD 44 for 29 yards (A.Cason).,6,0,2012 -20120923_ATL@SD,2,36,9,ATL,SD,1,10,44,(6:09) M.Ryan pass incomplete short right to R.White.,6,0,2012 -20120923_ATL@SD,2,36,4,ATL,SD,2,10,44,(6:04) M.Turner left end to SD 44 for no gain (M.Ingram).,6,0,2012 -20120923_ATL@SD,2,35,26,ATL,SD,3,10,44,(5:26) (Shotgun) M.Ryan pass short middle to R.White to SD 33 for 11 yards (E.Weddle).,6,0,2012 -20120923_ATL@SD,2,34,42,ATL,SD,1,10,33,(4:42) (Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez.,6,0,2012 -20120923_ATL@SD,2,34,38,ATL,SD,2,10,33,(4:38) M.Ryan pass short right to Jz. Rodgers to SD 27 for 6 yards (D.Butler S.Phillips).,6,0,2012 -20120923_ATL@SD,2,33,50,ATL,SD,3,4,27,(3:50) M.Ryan pass short left to R.White to SD 21 for 6 yards (A.Cason).,6,0,2012 -20120923_ATL@SD,2,33,13,ATL,SD,1,10,21,(3:13) M.Ryan pass incomplete short left to T.Gonzalez (M.Ingram).,6,0,2012 -20120923_ATL@SD,2,33,10,ATL,SD,2,10,21,(3:10) (Shotgun) M.Ryan pass incomplete short left to J.Jones (A.Cason).,6,0,2012 -20120923_ATL@SD,2,33,6,ATL,SD,3,10,21,(3:06) (Shotgun) M.Ryan pass short middle to J.Snelling to SD 9 for 12 yards (C.Lynch).,6,0,2012 -20120923_ATL@SD,2,32,42,ATL,SD,1,9,9,(2:42) (Shotgun) Jz. Rodgers right guard to SD 7 for 2 yards (T.Spikes C.Thomas).,6,0,2012 -20120923_ATL@SD,2,32,37,ATL,SD,2,7,7,(2:37) (Shotgun) M.Ryan pass short middle to T.Gonzalez for 7 yards TOUCHDOWN.,6,0,2012 -20120923_ATL@SD,2,32,37,ATL,SD,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,6,0,2012 -20120923_ATL@SD,2,32,37,ATL,SD,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,13,0,2012 -20120923_ATL@SD,2,32,32,SD,ATL,1,10,80,(2:32) (Shotgun) P.Rivers pass short right to R.Mathews to SD 25 for 5 yards (A.Samuel S.Nicholas).,0,13,2012 -20120923_ATL@SD,2,32,4,SD,ATL,2,5,75,(2:04) (Shotgun) P.Rivers pass incomplete short right to E.Royal.,0,13,2012 -20120923_ATL@SD,2,32,0,SD,ATL,3,5,75,(2:00) (Shotgun) P.Rivers pass incomplete short right to A.Gates (T.DeCoud). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) P.Rivers pass short right intended for A.Gates INTERCEPTED by T.DeCoud at SD 29. T.DeCoud pushed ob at SD 29 for no gain (A.Gates).,0,13,2012 -20120923_ATL@SD,2,31,53,ATL,SD,1,10,29,(1:53) M.Ryan pass short left to T.Gonzalez pushed ob at SD 16 for 13 yards (A.Bigby).,13,0,2012 -20120923_ATL@SD,2,31,49,ATL,SD,1,10,16,(1:49) M.Ryan pass short right to J.Jones pushed ob at SD 10 for 6 yards (A.Cason).,13,0,2012 -20120923_ATL@SD,2,31,43,ATL,SD,2,4,10,(1:43) M.Turner right end pushed ob at SD 9 for 1 yard (T.Spikes A.Franklin).,13,0,2012 -20120923_ATL@SD,2,30,58,ATL,SD,3,3,9,(:58) M.Ryan pass short right to J.Jones for 9 yards TOUCHDOWN.,13,0,2012 -20120923_ATL@SD,2,30,58,ATL,SD,,,9,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,0,2012 -20120923_ATL@SD,2,30,58,ATL,SD,,,9,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 -20120923_ATL@SD,2,30,54,SD,ATL,1,10,80,(:54) (Shotgun) P.Rivers pass short middle to A.Gates to SD 27 for 7 yards (S.Nicholas).,0,20,2012 -20120923_ATL@SD,2,30,34,SD,ATL,2,3,73,(:34) (Shotgun) PENALTY on SD-N.Hardwick False Start 5 yards enforced at SD 27 - No Play.,0,20,2012 -20120923_ATL@SD,2,30,15,SD,ATL,2,8,78,(:15) (Shotgun) P.Rivers sacked at SD 13 for -9 yards (J.Abraham).,0,20,2012 -20120923_ATL@SD,3,30,0,ATL,SD,,,78,M.Bosher kicks 60 yards from ATL 35 to SD 5. R.Goodman to SD 36 for 31 yards (C.Hope M.Bosher).,20,0,2012 -20120923_ATL@SD,3,29,54,SD,ATL,1,10,64,(14:54) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,0,20,2012 -20120923_ATL@SD,3,29,49,SD,ATL,2,10,64,(14:49) (Shotgun) P.Rivers pass short left to R.Meachem pushed ob at SD 42 for 6 yards (D.Robinson).,0,20,2012 -20120923_ATL@SD,3,29,25,SD,ATL,3,4,58,(14:25) (Shotgun) E.Royal left end to ATL 48 for 10 yards (T.DeCoud).,0,20,2012 -20120923_ATL@SD,3,28,43,SD,ATL,1,10,48,(13:43) P.Rivers pass incomplete deep left to M.Floyd (W.Moore).,0,20,2012 -20120923_ATL@SD,3,28,36,SD,ATL,2,10,48,(13:36) P.Rivers pass incomplete short right to R.Meachem.,0,20,2012 -20120923_ATL@SD,3,28,31,SD,ATL,3,10,48,(13:31) (Shotgun) P.Rivers pass short middle to A.Gates to ATL 34 for 14 yards (S.Weatherspoon).,0,20,2012 -20120923_ATL@SD,3,27,50,SD,ATL,1,10,34,(12:50) P.Rivers scrambles right end ran ob at ATL 31 for 3 yards (V.Walker).,0,20,2012 -20120923_ATL@SD,3,27,18,SD,ATL,2,7,31,(12:18) (Shotgun) P.Rivers pass incomplete short right to R.Mathews [K.Biermann].,0,20,2012 -20120923_ATL@SD,3,27,13,SD,ATL,3,7,31,(12:13) (Shotgun) P.Rivers pass short left to M.Floyd to ATL 23 for 8 yards (D.Franks D.Robinson).,0,20,2012 -20120923_ATL@SD,3,26,29,SD,ATL,1,10,23,(11:29) (Shotgun) P.Rivers pass incomplete deep left to A.Gates (T.DeCoud).,0,20,2012 -20120923_ATL@SD,3,26,23,SD,ATL,2,10,23,(11:23) (Shotgun) P.Rivers pass incomplete short left to A.Gates.,0,20,2012 -20120923_ATL@SD,3,26,19,SD,ATL,3,10,23,(11:19) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd [J.Abraham].,0,20,2012 -20120923_ATL@SD,3,26,14,SD,ATL,4,10,23,(11:14) N.Kaeding 41 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,20,2012 -20120923_ATL@SD,3,26,14,SD,ATL,,,23,N.Kaeding kicks 73 yards from SD 35 to ATL -8. Jz. Rodgers Touchback.,3,20,2012 -20120923_ATL@SD,3,26,10,ATL,SD,1,10,80,(11:10) M.Ryan pass short right to M.Turner to ATL 20 for no gain (T.Spikes A.Bigby).,20,3,2012 -20120923_ATL@SD,3,25,35,ATL,SD,2,10,80,(10:35) (Shotgun) M.Ryan pass incomplete short left to J.Jones (A.Cason).,20,3,2012 -20120923_ATL@SD,3,25,30,ATL,SD,3,10,80,(10:30) (Shotgun) M.Ryan pass deep middle to R.White to ATL 39 for 19 yards (Q.Jammer).,20,3,2012 -20120923_ATL@SD,3,24,43,ATL,SD,1,10,61,(9:43) M.Turner right end to ATL 43 for 4 yards (T.Spikes E.Weddle).,20,3,2012 -20120923_ATL@SD,3,24,9,ATL,SD,2,6,57,(9:09) M.Ryan pass short right to H.Douglas to ATL 46 for 3 yards (M.Gilchrist).,20,3,2012 -20120923_ATL@SD,3,23,26,ATL,SD,3,3,54,(8:26) (Shotgun) M.Ryan pass short middle to T.Gonzalez to SD 46 for 8 yards (D.Butler).,20,3,2012 -20120923_ATL@SD,3,22,57,ATL,SD,1,10,46,(7:57) M.Ryan pass incomplete deep right to R.White.,20,3,2012 -20120923_ATL@SD,3,22,50,ATL,SD,2,10,46,(7:50) Jz. Rodgers up the middle to SD 39 for 7 yards (A.Bigby D.Butler).,20,3,2012 -20120923_ATL@SD,3,22,4,ATL,SD,3,3,39,(7:04) (Shotgun) M.Ryan sacked at SD 48 for -9 yards (A.Barnes S.Phillips).,20,3,2012 -20120923_ATL@SD,3,21,30,ATL,SD,4,12,48,(6:30) M.Bosher punts 33 yards to SD 15 Center-J.Harris fair catch by M.Spurlock.,20,3,2012 -20120923_ATL@SD,3,21,21,SD,ATL,1,10,85,(6:21) (Shotgun) P.Rivers pass short right to R.Mathews to SD 26 for 11 yards (A.Samuel L.Sidbury).,3,20,2012 -20120923_ATL@SD,3,20,53,SD,ATL,1,10,74,(5:53) (Shotgun) R.Mathews right end to SD 30 for 4 yards (A.Samuel).,3,20,2012 -20120923_ATL@SD,3,20,17,SD,ATL,2,6,70,(5:17) (Shotgun) P.Rivers pass short left to R.Meachem to SD 49 for 19 yards (W.Moore).,3,20,2012 -20120923_ATL@SD,3,19,34,SD,ATL,1,10,51,(4:34) (Shotgun) P.Rivers pass short right to R.McMichael to ATL 46 for 5 yards (D.Franks).,3,20,2012 -20120923_ATL@SD,3,18,57,SD,ATL,2,5,46,(3:57) (Shotgun) R.Mathews up the middle to ATL 40 for 6 yards (V.Walker).,3,20,2012 -20120923_ATL@SD,3,18,24,SD,ATL,1,10,40,(3:24) (Shotgun) P.Rivers pass short left to R.Mathews to ATL 36 for 4 yards (D.Franks).,3,20,2012 -20120923_ATL@SD,3,17,40,SD,ATL,2,6,36,(2:40) (Shotgun) P.Rivers pass short middle intended for A.Gates INTERCEPTED by T.DeCoud at ATL 21. T.DeCoud to ATL 19 for -2 yards (C.Brinkley).,3,20,2012 -20120923_ATL@SD,3,17,32,ATL,SD,1,10,81,(2:32) M.Ryan pass short left to Jz. Rodgers to ATL 23 for 4 yards (A.Bigby).,20,3,2012 -20120923_ATL@SD,3,16,48,ATL,SD,2,6,77,(1:48) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 32 for 9 yards (A.Bigby).,20,3,2012 -20120923_ATL@SD,3,16,6,ATL,SD,1,10,68,(1:06) M.Turner up the middle to ATL 36 for 4 yards (T.Spikes J.Johnson).,20,3,2012 -20120923_ATL@SD,3,15,22,ATL,SD,2,6,64,(:22) M.Ryan pass short middle to T.Gonzalez to SD 49 for 15 yards (T.Spikes A.Bigby).,20,3,2012 -20120923_ATL@SD,4,15,0,ATL,SD,1,10,49,(15:00) M.Turner up the middle to SD 24 for 25 yards (A.Bigby).,20,3,2012 -20120923_ATL@SD,4,14,19,ATL,SD,1,10,24,(14:19) M.Ryan pass short left to T.Gonzalez pushed ob at SD 15 for 9 yards (A.Bigby).,20,3,2012 -20120923_ATL@SD,4,13,51,ATL,SD,2,1,15,(13:51) J.Snelling up the middle to SD 12 for 3 yards (V.Martin M.Ingram).,20,3,2012 -20120923_ATL@SD,4,13,8,ATL,SD,1,10,12,(13:08) Jz. Rodgers up the middle to SD 9 for 3 yards (T.Spikes K.Reyes).,20,3,2012 -20120923_ATL@SD,4,12,27,ATL,SD,2,7,9,(12:27) M.Ryan pass short left intended for T.Gonzalez INTERCEPTED by A.Cason at SD 0. A.Cason ran ob at SD 3 for 3 yards (T.Gonzalez).,20,3,2012 -20120923_ATL@SD,4,12,21,SD,ATL,1,10,97,(12:21) J.Battle up the middle to SD 4 for 1 yard (S.Nicholas V.Walker).,3,20,2012 -20120923_ATL@SD,4,11,43,SD,ATL,2,9,96,(11:43) P.Rivers pass short left to A.Gates to SD 5 for 1 yard (D.Robinson).,3,20,2012 -20120923_ATL@SD,4,10,57,SD,ATL,3,8,95,(10:57) (Shotgun) PENALTY on SD-M.Floyd False Start 2 yards enforced at SD 5 - No Play.,3,20,2012 -20120923_ATL@SD,4,10,38,SD,ATL,3,10,97,(10:38) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,3,20,2012 -20120923_ATL@SD,4,10,34,SD,ATL,4,10,97,(10:34) M.Scifres punts 29 yards to SD 32 Center-M.Windt out of bounds.,3,20,2012 -20120923_ATL@SD,4,10,26,ATL,SD,1,10,32,(10:26) M.Turner up the middle to SD 25 for 7 yards (A.Bigby).,20,3,2012 -20120923_ATL@SD,4,9,43,ATL,SD,2,3,25,(9:43) M.Turner left end to SD 7 for 18 yards (E.Weddle).,20,3,2012 -20120923_ATL@SD,4,8,56,ATL,SD,1,7,7,(8:56) M.Turner right tackle for 7 yards TOUCHDOWN.,20,3,2012 -20120923_ATL@SD,4,8,56,ATL,SD,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,3,2012 -20120923_ATL@SD,4,8,56,ATL,SD,,,7,M.Bosher kicks 74 yards from ATL 35 to SD -9. R.Goodman Touchback.,27,3,2012 -20120923_ATL@SD,4,8,51,SD,ATL,1,10,80,(8:51) (Shotgun) R.Mathews up the middle to SD 25 for 5 yards (S.Weatherspoon W.Moore).,3,27,2012 -20120923_ATL@SD,4,8,24,SD,ATL,2,5,75,(8:24) (Shotgun) P.Rivers pass short left to R.Mathews to SD 27 for 2 yards (J.Babineaux).,3,27,2012 -20120923_ATL@SD,4,7,43,SD,ATL,3,3,73,(7:43) (Shotgun) P.Rivers pass short right to E.Royal to SD 31 for 4 yards (A.Samuel).,3,27,2012 -20120923_ATL@SD,4,7,9,SD,ATL,1,10,69,(7:09) (Shotgun) P.Rivers pass incomplete short middle to R.Meachem.,3,27,2012 -20120923_ATL@SD,4,7,5,SD,ATL,2,10,69,(7:05) (Shotgun) P.Rivers pass incomplete deep right to R.Meachem.,3,27,2012 -20120923_ATL@SD,4,6,59,SD,ATL,3,10,69,(6:59) (Shotgun) P.Rivers pass short right to C.Brinkley pushed ob at SD 36 for 5 yards (A.Samuel).,3,27,2012 -20120923_ATL@SD,4,6,41,SD,ATL,4,5,64,(6:41) M.Scifres punts 64 yards to end zone Center-M.Windt Touchback.,3,27,2012 -20120923_ATL@SD,4,6,32,ATL,SD,1,10,80,(6:32) Jz. Rodgers up the middle to ATL 21 for 1 yard (D.Butler J.Johnson).,27,3,2012 -20120923_ATL@SD,4,5,46,ATL,SD,2,9,79,(5:46) Jz. Rodgers left tackle to ATL 24 for 3 yards (T.Spikes).,27,3,2012 -20120923_ATL@SD,4,5,1,ATL,SD,3,6,76,(5:01) (Shotgun) M.Ryan scrambles right end to ATL 28 for 4 yards (M.Gilchrist).,27,3,2012 -20120923_ATL@SD,4,4,20,ATL,SD,4,2,72,(4:20) M.Bosher punts 52 yards to SD 20 Center-J.Harris fair catch by M.Spurlock.,27,3,2012 -20120923_ATL@SD,4,4,11,SD,ATL,1,10,80,(4:11) J.Battle right guard to ATL 28 for 52 yards (D.Robinson).,3,27,2012 -20120923_ATL@SD,4,3,30,SD,ATL,1,10,28,(3:30) J.Battle right tackle to ATL 26 for 2 yards (K.Biermann V.Walker).,3,27,2012 -20120923_ATL@SD,4,2,54,SD,ATL,2,8,26,(2:54) (Shotgun) P.Rivers pass short left to C.Brinkley to ATL 19 for 7 yards (S.Weatherspoon P.Jerry).,3,27,2012 -20120923_ATL@SD,4,2,27,SD,ATL,3,1,19,(2:27) (Shotgun) C.Brinkley up the middle to ATL 14 for 5 yards (W.Moore).,3,27,2012 -20120923_ATL@SD,4,2,20,SD,ATL,1,10,14,(2:20) (Shotgun) P.Rivers pass short left to D.Rosario to ATL 8 for 6 yards (D.Robinson). Atlanta challenged the fumble ruling and the play was REVERSED. (Shotgun) P.Rivers pass short left to D.Rosario to ATL 8 for 6 yards (W.Moore D.Robinson). FUMBLES (W.Moore) RECOVERED by ATL-W.Moore at ATL 14. W.Moore to ATL 14 for no gain (N.Hardwick).,3,27,2012 -20120923_ATL@SD,4,2,11,ATL,SD,1,10,86,(2:11) Jz. Rodgers up the middle to ATL 16 for 2 yards (D.Butler J.Johnson).,27,3,2012 -20120923_ATL@SD,4,2,0,ATL,SD,2,8,84,(2:00) Jz. Rodgers right end to ATL 17 for 1 yard (T.Spikes D.Butler).,27,3,2012 -20120923_ATL@SD,4,1,13,ATL,SD,3,7,83,(1:13) Jz. Rodgers right guard to ATL 19 for 2 yards (V.Martin T.Spikes).,27,3,2012 -20120923_ATL@SD,4,0,27,ATL,SD,4,5,81,(:27) M.Bosher punts 53 yards to SD 28 Center-J.Harris. M.Spurlock to SD 36 for 8 yards (C.Hope S.Nicholas).,27,3,2012 -20120923_ATL@SD,4,0,14,SD,ATL,1,10,64,(:14) P.Rivers kneels dead ball declared at SD 35 for -1 yards.,3,27,2012 -20120923_ATL@SD,4,0,14,SD,ATL,,,64,                      ,3,27,2012 -20120923_HOU@DEN,1,0,0,HOU,DEN,,,64,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,0,0,2012 -20120923_HOU@DEN,1,60,0,DEN,HOU,1,10,80,(15:00) W.McGahee up the middle to DEN 35 for 15 yards (G.Quin).,0,0,2012 -20120923_HOU@DEN,1,59,23,DEN,HOU,1,10,65,(14:23) (Shotgun) P.Manning pass incomplete short right to W.McGahee (B.Cushing).,0,0,2012 -20120923_HOU@DEN,1,59,19,DEN,HOU,2,10,65,(14:19) W.McGahee right guard to DEN 38 for 3 yards (B.Cushing).,0,0,2012 -20120923_HOU@DEN,1,58,40,DEN,HOU,3,7,62,(13:40) (Shotgun) P.Manning pass incomplete short middle to J.Tamme.,0,0,2012 -20120923_HOU@DEN,1,58,35,DEN,HOU,4,7,62,(13:35) B.Colquitt punts 57 yards to HST 5 Center-A.Brewer. T.Holliday ran ob at HST 5 for no gain.,0,0,2012 -20120923_HOU@DEN,1,58,26,HOU,DEN,1,10,94,(13:26) Direction Change. M.Schaub sacked in End Zone for -6 yards SAFETY (E.Dumervil).,0,0,2012 -20120923_HOU@DEN,1,58,26,HOU,DEN,,,94,D.Jones kicks 58 yards from HST 20 to DEN 22. J.Leonhard to DEN 40 for 18 yards (J.Nading).,0,2,2012 -20120923_HOU@DEN,1,58,14,DEN,HOU,1,10,60,(13:14) P.Manning pass short right to E.Decker pushed ob at DEN 45 for 5 yards (K.Jackson).,2,0,2012 -20120923_HOU@DEN,1,57,45,DEN,HOU,2,5,55,(12:45) W.McGahee left tackle to 50 for 5 yards (B.Reed; K.Jackson).,2,0,2012 -20120923_HOU@DEN,1,57,2,DEN,HOU,1,10,50,(12:02) (Shotgun) P.Manning pass short right to C.Gronkowski pushed ob at HST 39 for 11 yards (B.Cushing).,2,0,2012 -20120923_HOU@DEN,1,56,36,DEN,HOU,1,10,39,(11:36) W.McGahee right tackle to HST 34 for 5 yards (J.Joseph).,2,0,2012 -20120923_HOU@DEN,1,55,59,DEN,HOU,2,5,34,(10:59) P.Manning pass incomplete short left to D.Thomas (J.Joseph).,2,0,2012 -20120923_HOU@DEN,1,55,53,DEN,HOU,3,5,34,(10:53) (Shotgun) P.Manning pass short middle to J.Tamme to HST 20 for 14 yards (Q.Demps; D.Manning).,2,0,2012 -20120923_HOU@DEN,1,55,15,DEN,HOU,1,10,20,(10:15) L.Ball left end to HST 20 for no gain (D.Manning).,2,0,2012 -20120923_HOU@DEN,1,54,34,DEN,HOU,2,10,20,(9:34) P.Manning pass incomplete deep left to J.Dreessen.,2,0,2012 -20120923_HOU@DEN,1,54,28,DEN,HOU,3,10,20,(9:28) (Shotgun) P.Manning pass short left to W.McGahee to HST 14 for 6 yards (C.Barwin).,2,0,2012 -20120923_HOU@DEN,1,53,45,DEN,HOU,4,4,14,(8:45) M.Prater 32 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,2,0,2012 -20120923_HOU@DEN,1,53,45,DEN,HOU,,,14,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,5,0,2012 -20120923_HOU@DEN,1,53,41,HOU,DEN,1,10,80,(8:41) M.Schaub pass deep middle to K.Walter to HST 38 for 18 yards (M.Adams; T.Porter).,0,5,2012 -20120923_HOU@DEN,1,53,5,HOU,DEN,1,10,62,(8:05) A.Foster right end to HST 49 for 11 yards (R.Moore).,0,5,2012 -20120923_HOU@DEN,1,52,18,HOU,DEN,1,10,51,(7:18) PENALTY on HST-D.Brown False Start 4 yards enforced at HST 49 - No Play.,0,5,2012 -20120923_HOU@DEN,1,51,55,HOU,DEN,1,14,55,(6:55) PENALTY on HST-D.Newton False Start 5 yards enforced at HST 45 - No Play.,0,5,2012 -20120923_HOU@DEN,1,51,38,HOU,DEN,1,19,60,(6:38) M.Schaub pass deep middle to A.Johnson for 60 yards TOUCHDOWN.,0,5,2012 -20120923_HOU@DEN,1,51,38,HOU,DEN,,,60,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,5,2012 -20120923_HOU@DEN,1,51,38,HOU,DEN,,,60,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,7,5,2012 -20120923_HOU@DEN,1,51,28,DEN,HOU,1,10,80,(6:28) P.Manning pass deep middle to E.Decker to HST 45 for 35 yards (K.Jackson).,5,7,2012 -20120923_HOU@DEN,1,50,49,DEN,HOU,1,10,45,(5:49) W.McGahee up the middle to HST 44 for 1 yard (T.Jamison).,5,7,2012 -20120923_HOU@DEN,1,50,9,DEN,HOU,2,9,44,(5:09) (Shotgun) P.Manning pass short left to D.Thomas to HST 40 for 4 yards (J.Joseph).,5,7,2012 -20120923_HOU@DEN,1,49,30,DEN,HOU,3,5,40,(4:30) (Shotgun) P.Manning pass incomplete short right to D.Thomas (J.Joseph). PENALTY on HST-B.McCain Defensive Holding 5 yards enforced at HST 40 - No Play.,5,7,2012 -20120923_HOU@DEN,1,49,25,DEN,HOU,1,10,35,(4:25) W.McGahee left tackle to HST 34 for 1 yard (J.Watt).,5,7,2012 -20120923_HOU@DEN,1,48,52,DEN,HOU,2,9,34,(3:52) (Shotgun) PENALTY on DEN-Z.Beadles False Start 5 yards enforced at HST 34 - No Play.,5,7,2012 -20120923_HOU@DEN,1,48,50,DEN,HOU,2,14,39,(3:50) (Shotgun) L.Ball up the middle to HST 37 for 2 yards (E.Mitchell).,5,7,2012 -20120923_HOU@DEN,1,48,15,DEN,HOU,3,12,37,(3:15) (Shotgun) P.Manning sacked at HST 42 for -5 yards (sack split by B.Reed and J.Watt). Penalty on DEN-M.Ramirez Offensive Holding declined.,5,7,2012 -20120923_HOU@DEN,1,48,10,DEN,HOU,4,17,42,(3:10) B.Colquitt punts 40 yards to HST 2 Center-A.Brewer downed by DEN-O.Bolden.,5,7,2012 -20120923_HOU@DEN,1,47,58,HOU,DEN,1,10,97,(2:58) Direction Change. PENALTY on HST-D.Newton False Start 1 yard enforced at HST 3 - No Play.,7,5,2012 -20120923_HOU@DEN,1,47,58,HOU,DEN,1,11,98,(2:58) B.Tate up the middle to HST 7 for 5 yards (E.Dumervil).,7,5,2012 -20120923_HOU@DEN,1,47,20,HOU,DEN,2,6,93,(2:20) M.Schaub pass short right to O.Daniels to HST 9 for 2 yards (K.Brooking).,7,5,2012 -20120923_HOU@DEN,1,46,40,HOU,DEN,3,4,91,(1:40) A.Foster right tackle to HST 17 for 8 yards (C.Harris).,7,5,2012 -20120923_HOU@DEN,1,46,0,HOU,DEN,1,10,83,(1:00) A.Foster right tackle pushed ob at HST 39 for 22 yards (M.Adams).,7,5,2012 -20120923_HOU@DEN,1,45,29,HOU,DEN,1,10,61,(:29) M.Schaub pass incomplete short left to A.Johnson.,7,5,2012 -20120923_HOU@DEN,1,45,24,HOU,DEN,2,10,61,(:24) B.Tate right guard to HST 48 for 9 yards (R.Moore).,7,5,2012 -20120923_HOU@DEN,2,45,0,HOU,DEN,3,1,52,(15:00) B.Tate right guard to DEN 48 for 4 yards (D.Wolfe; M.Adams).,7,5,2012 -20120923_HOU@DEN,2,44,23,HOU,DEN,1,10,48,(14:23) M.Schaub pass short left to J.Casey to HST 49 for -3 yards (T.Porter).,7,5,2012 -20120923_HOU@DEN,2,43,44,HOU,DEN,2,13,51,(13:44) A.Foster right tackle to DEN 49 for 2 yards (V.Miller; J.Mays).,7,5,2012 -20120923_HOU@DEN,2,43,2,HOU,DEN,3,11,49,(13:02) (Shotgun) M.Schaub pass short middle to K.Martin to DEN 31 for 18 yards (T.Porter).,7,5,2012 -20120923_HOU@DEN,2,42,25,HOU,DEN,1,10,31,(12:25) M.Schaub pass deep middle to G.Graham to DEN 4 for 27 yards (R.Moore) [N.Irving].,7,5,2012 -20120923_HOU@DEN,2,41,41,HOU,DEN,1,4,4,(11:41) M.Schaub pass incomplete (E.Dumervil).,7,5,2012 -20120923_HOU@DEN,2,41,34,HOU,DEN,2,4,4,(11:34) A.Foster right guard to DEN 3 for 1 yard (D.Wolfe).,7,5,2012 -20120923_HOU@DEN,2,40,53,HOU,DEN,3,3,3,(10:53) M.Schaub pass short right to A.Foster for 3 yards TOUCHDOWN.,7,5,2012 -20120923_HOU@DEN,2,40,53,HOU,DEN,,,3,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,5,2012 -20120923_HOU@DEN,2,40,53,HOU,DEN,,,3,S.Graham kicks 64 yards from HST 35 to DEN 1. O.Bolden to DEN 18 for 17 yards (W.Mercilus).,14,5,2012 -20120923_HOU@DEN,2,40,42,DEN,HOU,1,10,82,(10:42) W.McGahee right tackle to DEN 22 for 4 yards (C.Barwin).,5,14,2012 -20120923_HOU@DEN,2,40,2,DEN,HOU,2,6,78,(10:02) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (E.Mitchell).,5,14,2012 -20120923_HOU@DEN,2,39,57,DEN,HOU,3,6,78,(9:57) (Shotgun) P.Manning pass incomplete deep right to L.Ball.,5,14,2012 -20120923_HOU@DEN,2,39,51,DEN,HOU,4,6,78,(9:51) B.Colquitt punts 48 yards to HST 30 Center-A.Brewer. T.Holliday to HST 43 for 13 yards (Q.Carter).,5,14,2012 -20120923_HOU@DEN,2,39,40,HOU,DEN,1,10,57,(9:40) A.Foster left guard to HST 48 for 5 yards (R.Moore).,14,5,2012 -20120923_HOU@DEN,2,39,3,HOU,DEN,2,5,52,(9:03) M.Schaub pass short middle to K.Walter for 52 yards TOUCHDOWN.,14,5,2012 -20120923_HOU@DEN,2,39,3,HOU,DEN,,,52,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,5,2012 -20120923_HOU@DEN,2,39,3,HOU,DEN,,,52,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,21,5,2012 -20120923_HOU@DEN,2,38,54,DEN,HOU,1,10,80,(8:54) (Shotgun) W.McGahee up the middle to DEN 21 for 1 yard (A.Smith).,5,21,2012 -20120923_HOU@DEN,2,38,32,DEN,HOU,2,9,79,(8:32) P.Manning pass short left to J.Dreessen to HST 49 for 30 yards (Q.Demps).,5,21,2012 -20120923_HOU@DEN,2,38,7,DEN,HOU,1,10,49,(8:07) (Shotgun) P.Manning pass short left to J.Tamme to HST 43 for 6 yards (J.Joseph).,5,21,2012 -20120923_HOU@DEN,2,37,40,DEN,HOU,2,4,43,(7:40) (Shotgun) R.Hillman left tackle to HST 39 for 4 yards (J.Joseph).,5,21,2012 -20120923_HOU@DEN,2,37,11,DEN,HOU,1,10,39,(7:11) P.Manning pass short middle to D.Thomas pushed ob at HST 16 for 23 yards (Q.Demps). PENALTY on HST-C.Barwin Roughing the Passer 8 yards enforced at HST 16.,5,21,2012 -20120923_HOU@DEN,2,36,38,DEN,HOU,1,8,8,(6:38) (Shotgun) P.Manning pass incomplete short left to M.Willis.,5,21,2012 -20120923_HOU@DEN,2,36,33,DEN,HOU,2,8,8,(6:33) (Shotgun) W.McGahee up the middle to HST 5 for 3 yards (D.Manning).,5,21,2012 -20120923_HOU@DEN,2,35,52,DEN,HOU,3,5,5,(5:52) P.Manning pass incomplete short left to D.Thomas.,5,21,2012 -20120923_HOU@DEN,2,35,48,DEN,HOU,4,5,5,(5:48) M.Prater 23 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,5,21,2012 -20120923_HOU@DEN,2,35,48,DEN,HOU,,,5,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,8,21,2012 -20120923_HOU@DEN,2,35,44,HOU,DEN,1,10,80,(5:44) A.Foster left guard to HST 21 for 1 yard (J.Bannan; K.Vickerson).,21,8,2012 -20120923_HOU@DEN,2,35,7,HOU,DEN,2,9,79,(5:07) M.Schaub pass incomplete short left to G.Graham (J.Bannan).,21,8,2012 -20120923_HOU@DEN,2,35,3,HOU,DEN,3,9,79,(5:03) (Shotgun) M.Schaub pass incomplete short left to O.Daniels (M.Adams).,21,8,2012 -20120923_HOU@DEN,2,34,58,HOU,DEN,4,9,79,(4:58) D.Jones punts 49 yards to DEN 30 Center-J.Weeks. J.Leonhard to DEN 43 for 13 yards (J.Forsett).,21,8,2012 -20120923_HOU@DEN,2,34,46,DEN,HOU,1,10,57,(4:46) (Shotgun) P.Manning pass incomplete short middle to D.Thomas.,8,21,2012 -20120923_HOU@DEN,2,34,42,DEN,HOU,2,10,57,(4:42) (Shotgun) P.Manning pass short left to B.Stokley to DEN 49 for 6 yards (B.Cushing).,8,21,2012 -20120923_HOU@DEN,2,34,21,DEN,HOU,3,4,51,(4:21) (Shotgun) W.McGahee up the middle to DEN 49 for no gain (B.Cushing).,8,21,2012 -20120923_HOU@DEN,2,33,41,DEN,HOU,4,4,51,(3:41) B.Colquitt punts 39 yards to HST 12 Center-A.Brewer. T.Holliday to HST 16 for 4 yards (N.Irving). DEN-N.Irving was injured during the play.,8,21,2012 -20120923_HOU@DEN,2,33,31,HOU,DEN,1,10,84,(3:31) K.Martin left end to HST 37 for 21 yards (M.Adams).,21,8,2012 -20120923_HOU@DEN,2,32,48,HOU,DEN,1,10,63,(2:48) B.Tate left tackle to HST 37 for no gain (J.Bannan).,21,8,2012 -20120923_HOU@DEN,2,32,7,HOU,DEN,2,10,63,(2:07) M.Schaub pass short right to G.Graham to HST 49 for 12 yards (C.Bailey).,21,8,2012 -20120923_HOU@DEN,2,31,59,HOU,DEN,1,10,51,(1:59) A.Foster right tackle to DEN 49 for 2 yards (E.Dumervil; K.Brooking).,21,8,2012 -20120923_HOU@DEN,2,31,29,HOU,DEN,2,8,49,(1:29) M.Schaub pass incomplete deep left to O.Daniels (M.Adams).,21,8,2012 -20120923_HOU@DEN,2,31,22,HOU,DEN,3,8,49,(1:22) (Shotgun) M.Schaub pass short left to O.Daniels to DEN 39 for 10 yards (M.Adams).,21,8,2012 -20120923_HOU@DEN,2,31,14,HOU,DEN,1,10,39,(1:14) (Shotgun) A.Foster right tackle to DEN 38 for 1 yard (W.Woodyard).,21,8,2012 -20120923_HOU@DEN,2,30,51,HOU,DEN,2,9,38,(:51) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,21,8,2012 -20120923_HOU@DEN,2,30,46,HOU,DEN,3,9,38,(:46) (Shotgun) M.Schaub pass short left intended for K.Walter INTERCEPTED by W.Woodyard [E.Dumervil] at DEN 33. W.Woodyard ran ob at DEN 40 for 7 yards.,21,8,2012 -20120923_HOU@DEN,2,30,34,DEN,HOU,1,10,60,(:34) (Shotgun) P.Manning sacked at DEN 37 for -3 yards (J.Watt).,8,21,2012 -20120923_HOU@DEN,2,30,22,DEN,HOU,2,13,63,(:22) (Shotgun) P.Manning pass incomplete short middle to E.Decker.,8,21,2012 -20120923_HOU@DEN,2,30,17,DEN,HOU,3,13,63,(:17) (Shotgun) P.Manning pass deep right to E.Decker ran ob at HST 41 for 22 yards.,8,21,2012 -20120923_HOU@DEN,2,30,10,DEN,HOU,1,10,41,(:10) (Shotgun) P.Manning pass short middle to E.Decker to HST 35 for 6 yards (K.Jackson).,8,21,2012 -20120923_HOU@DEN,2,30,6,DEN,HOU,2,4,35,(:06) M.Prater 53 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,8,21,2012 -20120923_HOU@DEN,2,30,6,DEN,HOU,,,35,M.Prater kicks 31 yards from DEN 35 to HST 34. J.Casey to HST 34 for no gain (W.Woodyard).,11,21,2012 -20120923_HOU@DEN,3,30,0,DEN,HOU,,,35,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,11,21,2012 -20120923_HOU@DEN,3,30,0,HOU,DEN,1,10,80,(15:00) M.Schaub pass incomplete deep left to A.Johnson (M.Adams).,21,11,2012 -20120923_HOU@DEN,3,29,51,HOU,DEN,2,10,80,(14:51) A.Foster right end to HST 24 for 4 yards (C.Harris).,21,11,2012 -20120923_HOU@DEN,3,29,10,HOU,DEN,3,6,76,(14:10) (Shotgun) M.Schaub pass incomplete deep right to K.Walter.,21,11,2012 -20120923_HOU@DEN,3,29,5,HOU,DEN,4,6,76,(14:05) D.Jones punts 46 yards to DEN 30 Center-J.Weeks. J.Leonhard to DEN 32 for 2 yards (W.Mercilus).,21,11,2012 -20120923_HOU@DEN,3,28,54,DEN,HOU,1,10,68,(13:54) W.McGahee left tackle to DEN 30 for -2 yards (J.Watt).,11,21,2012 -20120923_HOU@DEN,3,28,22,DEN,HOU,2,12,70,(13:22) (Shotgun) P.Manning pass incomplete short right to J.Dreessen [A.Smith].,11,21,2012 -20120923_HOU@DEN,3,28,17,DEN,HOU,3,12,70,(13:17) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,11,21,2012 -20120923_HOU@DEN,3,28,11,DEN,HOU,4,12,70,(13:11) B.Colquitt punts 47 yards to HST 23 Center-A.Brewer fair catch by T.Holliday. PENALTY on DEN-O.Bolden Interference with Opportunity to Catch 15 yards enforced at HST 23.,11,21,2012 -20120923_HOU@DEN,3,27,56,HOU,DEN,1,10,62,(12:56) A.Foster right guard to HST 41 for 3 yards (M.Unrein).,21,11,2012 -20120923_HOU@DEN,3,27,16,HOU,DEN,2,7,59,(12:16) A.Foster left guard to HST 46 for 5 yards (E.Dumervil).,21,11,2012 -20120923_HOU@DEN,3,26,40,HOU,DEN,3,2,54,(11:40) M.Schaub pass short right to K.Walter to HST 49 for 3 yards (C.Harris). PENALTY on DEN-V.Miller Roughing the Passer 15 yards enforced at HST 49.,21,11,2012 -20120923_HOU@DEN,3,26,17,HOU,DEN,1,10,36,(11:17) M.Schaub pass incomplete deep right to A.Johnson (C.Bailey). PENALTY on DEN-J.Mays Roughing the Passer 15 yards enforced at DEN 36 - No Play.,21,11,2012 -20120923_HOU@DEN,3,26,8,HOU,DEN,1,10,21,(11:08) B.Tate left end to DEN 18 for 3 yards (R.Moore).,21,11,2012 -20120923_HOU@DEN,3,25,29,HOU,DEN,2,7,18,(10:29) A.Foster left guard to DEN 13 for 5 yards (E.Dumervil).,21,11,2012 -20120923_HOU@DEN,3,24,49,HOU,DEN,3,2,13,(9:49) A.Foster right end to DEN 12 for 1 yard (C.Harris). PENALTY on HST-D.Newton Offensive Holding 10 yards enforced at DEN 13 - No Play.,21,11,2012 -20120923_HOU@DEN,3,24,20,HOU,DEN,3,12,23,(9:20) (Shotgun) M.Schaub pass incomplete short middle to K.Martin (C.Harris).,21,11,2012 -20120923_HOU@DEN,3,24,16,HOU,DEN,4,12,23,(9:16) S.Graham 41 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,21,11,2012 -20120923_HOU@DEN,3,24,16,HOU,DEN,,,23,S.Graham kicks 63 yards from HST 35 to DEN 2. O.Bolden to DEN 26 for 24 yards (S.Keo).,24,11,2012 -20120923_HOU@DEN,3,24,6,DEN,HOU,1,10,74,(9:06) (Shotgun) P.Manning pass incomplete short left to L.Ball (E.Mitchell).,11,24,2012 -20120923_HOU@DEN,3,24,1,DEN,HOU,2,10,74,(9:01) (Shotgun) P.Manning pass short left to L.Ball to DEN 25 for -1 yards (Q.Demps).,11,24,2012 -20120923_HOU@DEN,3,23,34,DEN,HOU,3,11,75,(8:34) (Shotgun) P.Manning pass short right to B.Stokley to DEN 35 for 10 yards (B.McCain). PENALTY on HST-J.Joseph Defensive Holding 5 yards enforced at DEN 25 - No Play.,11,24,2012 -20120923_HOU@DEN,3,23,17,DEN,HOU,1,10,70,(8:17) R.Hillman left end to DEN 33 for 3 yards (S.Cody).,11,24,2012 -20120923_HOU@DEN,3,22,41,DEN,HOU,2,7,67,(7:41) P.Manning pass incomplete short left to J.Tamme (B.Reed).,11,24,2012 -20120923_HOU@DEN,3,22,34,DEN,HOU,3,7,67,(7:34) (Shotgun) P.Manning pass deep right to E.Decker to HST 31 for 36 yards (D.Manning). PENALTY on DEN-M.Ramirez Offensive Holding 10 yards enforced at DEN 33 - No Play.,11,24,2012 -20120923_HOU@DEN,3,22,3,DEN,HOU,3,17,77,(7:03) (Shotgun) P.Manning pass incomplete deep middle to E.Decker (K.Jackson).,11,24,2012 -20120923_HOU@DEN,3,21,56,DEN,HOU,4,17,77,(6:56) B.Colquitt punts 52 yards to HST 25 Center-A.Brewer. T.Holliday to HST 27 for 2 yards (J.Tamme).,11,24,2012 -20120923_HOU@DEN,3,21,43,HOU,DEN,1,10,73,(6:43) B.Tate left end to HST 32 for 5 yards (M.Adams).,24,11,2012 -20120923_HOU@DEN,3,21,4,HOU,DEN,2,5,68,(6:04) B.Tate right guard to HST 34 for 2 yards (K.Vickerson).,24,11,2012 -20120923_HOU@DEN,3,20,24,HOU,DEN,3,3,66,(5:24) (Shotgun) M.Schaub pass incomplete short right to K.Walter.,24,11,2012 -20120923_HOU@DEN,3,20,18,HOU,DEN,4,3,66,(5:18) D.Jones punts 66 yards to end zone Center-J.Weeks Touchback.,24,11,2012 -20120923_HOU@DEN,3,20,7,DEN,HOU,1,10,80,(5:07) W.McGahee up the middle to DEN 20 for no gain (J.Watt).,11,24,2012 -20120923_HOU@DEN,3,19,43,DEN,HOU,2,10,80,(4:43) (Shotgun) P.Manning pass short middle to R.Hillman to DEN 21 for 1 yard (B.James).,11,24,2012 -20120923_HOU@DEN,3,19,4,DEN,HOU,3,9,79,(4:04) (Shotgun) P.Manning pass incomplete short right to D.Thomas (J.Joseph Q.Demps).,11,24,2012 -20120923_HOU@DEN,3,18,57,DEN,HOU,4,9,79,(3:57) B.Colquitt punts 51 yards to HST 28 Center-A.Brewer fair catch by T.Holliday.,11,24,2012 -20120923_HOU@DEN,3,18,52,HOU,DEN,1,10,72,(3:52) M.Schaub pass short right to J.Casey to HST 40 for 12 yards (R.Moore).,24,11,2012 -20120923_HOU@DEN,3,18,5,HOU,DEN,1,10,60,(3:05) M.Schaub pass incomplete.,24,11,2012 -20120923_HOU@DEN,3,17,57,HOU,DEN,2,10,60,(2:57) M.Schaub pass short left to L.Jean to DEN 14 for 46 yards (R.Moore).,24,11,2012 -20120923_HOU@DEN,3,17,20,HOU,DEN,1,10,14,(2:20) A.Foster up the middle to DEN 14 for no gain (M.Jackson).,24,11,2012 -20120923_HOU@DEN,3,16,39,HOU,DEN,2,10,14,(1:39) M.Schaub pass short left to O.Daniels for 14 yards TOUCHDOWN.,24,11,2012 -20120923_HOU@DEN,3,16,39,HOU,DEN,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,24,11,2012 -20120923_HOU@DEN,3,16,39,HOU,DEN,,,14,S.Graham kicks 69 yards from HST 35 to DEN -4. O.Bolden to DEN 21 for 25 yards (M.Alexander). PENALTY on DEN-J.Dreessen Offensive Holding 10 yards enforced at DEN 21.,31,11,2012 -20120923_HOU@DEN,3,16,24,DEN,HOU,1,10,89,(1:24) P.Manning pass incomplete deep right to E.Decker.,11,31,2012 -20120923_HOU@DEN,3,16,20,DEN,HOU,2,10,89,(1:20) (Shotgun) P.Manning pass incomplete short left to D.Thomas (J.Joseph).,11,31,2012 -20120923_HOU@DEN,3,16,16,DEN,HOU,3,10,89,(1:16) P.Manning pass deep right to E.Decker to DEN 37 for 26 yards (K.Jackson).,11,31,2012 -20120923_HOU@DEN,3,15,48,DEN,HOU,1,10,63,(:48) (Shotgun) P.Manning pass short right to E.Decker to 50 for 13 yards (Q.Demps).,11,31,2012 -20120923_HOU@DEN,3,15,16,DEN,HOU,1,10,50,(:16) (Shotgun) P.Manning pass short right to D.Thomas to HST 47 for 3 yards (J.Joseph).,11,31,2012 -20120923_HOU@DEN,4,15,0,DEN,HOU,2,7,47,(15:00) (No Huddle) P.Manning pass incomplete short right to J.Dreessen.,11,31,2012 -20120923_HOU@DEN,4,14,56,DEN,HOU,3,7,47,(14:56) (Shotgun) P.Manning pass incomplete deep right to J.Tamme (G.Quin).,11,31,2012 -20120923_HOU@DEN,4,14,50,DEN,HOU,4,7,47,(14:50) B.Colquitt punts 47 yards to end zone Center-A.Brewer Touchback.,11,31,2012 -20120923_HOU@DEN,4,14,41,HOU,DEN,1,10,80,(14:41) A.Foster left guard to HST 24 for 4 yards (J.Bannan). DEN-J.Mays was injured during the play.,31,11,2012 -20120923_HOU@DEN,4,14,0,HOU,DEN,2,6,76,(14:00) A.Foster left end pushed ob at HST 32 for 8 yards (R.Moore).,31,11,2012 -20120923_HOU@DEN,4,13,22,HOU,DEN,1,10,68,(13:22) A.Foster right tackle to HST 33 for 1 yard (M.Unrein; D.Wolfe).,31,11,2012 -20120923_HOU@DEN,4,12,40,HOU,DEN,2,9,67,(12:40) M.Schaub pass short left to J.Casey to HST 35 for 2 yards (R.Moore).,31,11,2012 -20120923_HOU@DEN,4,11,56,HOU,DEN,3,7,65,(11:56) (Shotgun) M.Schaub pass incomplete short left to A.Johnson. PENALTY on DEN-C.Bailey Illegal Contact 5 yards enforced at HST 35 - No Play.,31,11,2012 -20120923_HOU@DEN,4,11,51,HOU,DEN,1,10,60,(11:51) A.Foster right tackle to HST 43 for 3 yards (C.Harris).,31,11,2012 -20120923_HOU@DEN,4,11,13,HOU,DEN,2,7,57,(11:13) A.Foster left end to DEN 48 for 9 yards (T.Carter).,31,11,2012 -20120923_HOU@DEN,4,10,28,HOU,DEN,1,10,48,(10:28) B.Tate right guard to 50 for -2 yards (K.Vickerson). FUMBLES (K.Vickerson) RECOVERED by DEN-J.Bannan at 50. J.Bannan to 50 for no gain (A.Caldwell).,31,11,2012 -20120923_HOU@DEN,4,10,20,DEN,HOU,1,10,49,(10:20) Direction Change. (Shotgun) L.Ball up the middle to HST 38 for 11 yards (K.Jackson).,11,31,2012 -20120923_HOU@DEN,4,9,56,DEN,HOU,1,10,38,(9:56) (Shotgun) P.Manning pass deep middle to B.Stokley for 38 yards TOUCHDOWN.,11,31,2012 -20120923_HOU@DEN,4,9,56,DEN,HOU,,,38,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,11,31,2012 -20120923_HOU@DEN,4,9,56,DEN,HOU,,,38,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,18,31,2012 -20120923_HOU@DEN,4,9,49,HOU,DEN,1,10,80,(9:49) M.Schaub pass incomplete deep middle to G.Graham [M.Adams].,31,18,2012 -20120923_HOU@DEN,4,9,44,HOU,DEN,2,10,80,(9:44) (Shotgun) A.Foster up the middle to HST 18 for -2 yards (V.Miller; D.Wolfe).,31,18,2012 -20120923_HOU@DEN,4,9,1,HOU,DEN,3,12,82,(9:01) (Shotgun) M.Schaub pass short left to K.Martin to HST 20 for 2 yards (J.Mays).,31,18,2012 -20120923_HOU@DEN,4,8,21,HOU,DEN,4,10,80,(8:21) D.Jones punts 55 yards to DEN 25 Center-J.Weeks. J.Leonhard to DEN 26 for 1 yard (G.Graham).,31,18,2012 -20120923_HOU@DEN,4,8,8,DEN,HOU,1,10,74,(8:08) (Shotgun) L.Ball up the middle to DEN 30 for 4 yards (G.Quin).,18,31,2012 -20120923_HOU@DEN,4,7,45,DEN,HOU,2,6,70,(7:45) (Shotgun) P.Manning pass short right to B.Stokley to DEN 34 for 4 yards (Q.Demps).,18,31,2012 -20120923_HOU@DEN,4,7,17,DEN,HOU,3,2,66,(7:17) (Shotgun) P.Manning pass short right to B.Stokley to DEN 38 for 4 yards (B.McCain) [A.Smith].,18,31,2012 -20120923_HOU@DEN,4,6,47,DEN,HOU,1,10,62,(6:47) (Shotgun) P.Manning pass incomplete deep left to J.Tamme.,18,31,2012 -20120923_HOU@DEN,4,6,41,DEN,HOU,2,10,62,(6:41) (Shotgun) P.Manning pass short middle to B.Stokley pushed ob at 50 for 12 yards (K.Jackson).,18,31,2012 -20120923_HOU@DEN,4,6,15,DEN,HOU,1,10,50,(6:15) (Shotgun) P.Manning pass incomplete short right to D.Thomas.,18,31,2012 -20120923_HOU@DEN,4,6,9,DEN,HOU,2,10,50,(6:09) (Shotgun) P.Manning pass short middle to J.Tamme to HST 39 for 11 yards (Q.Demps).,18,31,2012 -20120923_HOU@DEN,4,5,44,DEN,HOU,1,10,39,(5:44) (Shotgun) P.Manning pass incomplete short right to J.Tamme (B.McCain).,18,31,2012 -20120923_HOU@DEN,4,5,39,DEN,HOU,2,10,39,(5:39) (Shotgun) P.Manning sacked at HST 45 for -6 yards (J.Watt).,18,31,2012 -20120923_HOU@DEN,4,5,10,DEN,HOU,3,16,45,(5:10) (Shotgun) P.Manning pass incomplete deep left to J.Tamme (G.Quin). DEN-J.Tamme was injured during the play.,18,31,2012 -20120923_HOU@DEN,4,5,4,DEN,HOU,4,16,45,(5:04) (Shotgun) P.Manning pass incomplete deep right to D.Thomas. PENALTY on HST-B.McCain Illegal Contact 5 yards enforced at HST 45 - No Play.,18,31,2012 -20120923_HOU@DEN,4,4,57,DEN,HOU,1,10,40,(4:57) (Shotgun) P.Manning pass short middle to B.Stokley to HST 31 for 9 yards (G.Quin). DEN-B.Stokley was injured during the play.,18,31,2012 -20120923_HOU@DEN,4,4,41,DEN,HOU,2,1,31,(4:41) P.Manning pass deep right to D.Thomas for 31 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. P.Manning pass incomplete deep right to D.Thomas.,18,31,2012 -20120923_HOU@DEN,4,4,33,DEN,HOU,3,1,31,(4:33) (Shotgun) L.Ball up the middle to HST 27 for 4 yards (A.Smith; B.Cushing).,18,31,2012 -20120923_HOU@DEN,4,4,8,DEN,HOU,1,10,27,(4:08) (Shotgun) P.Manning pass incomplete deep left to E.Decker (K.Jackson). PENALTY on HST-K.Jackson Defensive Pass Interference 26 yards enforced at HST 27 - No Play.,18,31,2012 -20120923_HOU@DEN,4,4,2,DEN,HOU,1,1,1,(4:02) L.Ball left tackle to HST 4 for -3 yards (B.James).,18,31,2012 -20120923_HOU@DEN,4,3,34,DEN,HOU,2,4,4,(3:34) (Shotgun) L.Ball up the middle to HST 6 for -2 yards (J.Watt).,18,31,2012 -20120923_HOU@DEN,4,3,5,DEN,HOU,3,6,6,(3:05) (Shotgun) P.Manning pass short left to J.Dreessen for 6 yards TOUCHDOWN.,18,31,2012 -20120923_HOU@DEN,4,3,5,DEN,HOU,,,6,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,18,31,2012 -20120923_HOU@DEN,4,3,5,DEN,HOU,,,6,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,25,31,2012 -20120923_HOU@DEN,4,3,0,HOU,DEN,1,10,80,(3:00) A.Foster right tackle to HST 23 for 3 yards (K.Vickerson).,31,25,2012 -20120923_HOU@DEN,4,2,54,HOU,DEN,2,7,77,(2:54) A.Foster left guard to HST 25 for 2 yards (J.Mays; D.Wolfe).,31,25,2012 -20120923_HOU@DEN,4,2,49,HOU,DEN,3,5,75,(2:49) (Shotgun) M.Schaub pass short left to A.Johnson ran ob at HST 37 for 12 yards.,31,25,2012 -20120923_HOU@DEN,4,2,43,HOU,DEN,1,10,63,(2:43) A.Foster right tackle to HST 41 for 4 yards (M.Unrein; J.Bannan).,31,25,2012 -20120923_HOU@DEN,4,2,0,HOU,DEN,2,6,59,(2:00) A.Foster up the middle to HST 44 for 3 yards (J.Bannan).,31,25,2012 -20120923_HOU@DEN,4,1,17,HOU,DEN,3,3,56,(1:17) A.Foster left guard to HST 44 for no gain (K.Vickerson; V.Miller).,31,25,2012 -20120923_HOU@DEN,4,0,33,HOU,DEN,4,3,56,(:33) D.Jones punts 55 yards to DEN 1 Center-J.Weeks. E.Decker to DEN 14 for 13 yards (J.Weeks; J.Nading).,31,25,2012 -20120923_HOU@DEN,4,0,20,DEN,HOU,1,10,86,(:20) (Shotgun) P.Manning pass short middle to E.Decker to DEN 30 for 16 yards (K.Jackson).,25,31,2012 -20120923_HOU@DEN,4,0,20,DEN,HOU,1,10,70,(:20) P.Manning spiked the ball to stop the clock.,25,31,2012 -20120923_HOU@DEN,4,0,0,DEN,HOU,2,10,70,(:00) (Shotgun) P.Manning pass short right to E.Decker to DEN 43 for 13 yards. Lateral to D.Thomas to 50 for 7 yards. Lateral to L.Ball to HST 47 for 3 yards. Lateral to D.Thomas to HST 47 for no gain. FUMBLES RECOVERED by HST-C.Barwin at 50. C.Barwin to 50 for no gain (J.Tamme).,25,31,2012 -20120923_HOU@DEN,4,0,0,DEN,HOU,,,70,                      ,25,31,2012 -20120923_PIT@OAK,1,0,0,PIT,OAK,,,70,S.Suisham kicks 60 yards from PIT 35 to OAK 5. M.Reece to OAK 41 for 36 yards (S.Suisham; R.Mundy).,0,0,2012 -20120923_PIT@OAK,1,59,52,OAK,PIT,1,10,59,(14:52) C.Palmer pass deep middle intended for D.Moore INTERCEPTED by R.Clark at PIT 38. R.Clark to OAK 36 for 26 yards (D.McFadden).,0,0,2012 -20120923_PIT@OAK,1,59,39,PIT,OAK,1,10,36,(14:39) B.Roethlisberger pass incomplete short right to M.Wallace (M.Burris).,0,0,2012 -20120923_PIT@OAK,1,59,35,PIT,OAK,2,10,36,(14:35) B.Roethlisberger pass incomplete deep right to H.Miller. Pittsburgh challenged the pass completion ruling and the play was Upheld. (Timeout #1 at 14:30.),0,0,2012 -20120923_PIT@OAK,1,59,30,PIT,OAK,3,10,36,(14:30) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to OAK 27 for 9 yards (J.Hanson; P.Lee).,0,0,2012 -20120923_PIT@OAK,1,58,39,PIT,OAK,4,1,27,(13:39) (No Huddle) B.Roethlisberger pass short middle to M.Wallace to OAK 7 for 20 yards (R.Seymour).,0,0,2012 -20120923_PIT@OAK,1,58,6,PIT,OAK,1,7,7,(13:06) I.Redman up the middle to OAK 5 for 2 yards (Team).,0,0,2012 -20120923_PIT@OAK,1,57,21,PIT,OAK,2,5,5,(12:21) (Shotgun) M.Wallace right end to OAK 4 for 1 yard (T.Branch J.Hanson).,0,0,2012 -20120923_PIT@OAK,1,56,37,PIT,OAK,3,4,4,(11:37) B.Roethlisberger pass short right to H.Miller for 4 yards TOUCHDOWN.,0,0,2012 -20120923_PIT@OAK,1,56,37,PIT,OAK,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20120923_PIT@OAK,1,56,37,PIT,OAK,,,4,S.Suisham kicks 72 yards from PIT 35 to OAK -7. M.Goodson Touchback.,7,0,2012 -20120923_PIT@OAK,1,56,33,OAK,PIT,1,10,80,(11:33) C.Palmer pass incomplete short left to D.Moore (C.Carter).,0,7,2012 -20120923_PIT@OAK,1,56,28,OAK,PIT,2,10,80,(11:28) (No Huddle) C.Palmer pass short middle to B.Myers to OAK 36 for 16 yards (L.Foote I.Taylor).,0,7,2012 -20120923_PIT@OAK,1,55,44,OAK,PIT,1,10,64,(10:44) (No Huddle) D.McFadden right tackle for 64 yards TOUCHDOWN.,0,7,2012 -20120923_PIT@OAK,1,55,44,OAK,PIT,,,64,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 -20120923_PIT@OAK,1,55,44,OAK,PIT,,,64,S.Janikowski kicks 66 yards from OAK 35 to PIT -1. C.Rainey to PIT 19 for 20 yards (P.Adams).,7,7,2012 -20120923_PIT@OAK,1,55,28,PIT,OAK,1,10,81,(10:28) B.Roethlisberger pass short right to I.Redman to PIT 23 for 4 yards (M.Huff T.Kelly).,7,7,2012 -20120923_PIT@OAK,1,54,42,PIT,OAK,2,6,77,(9:42) K.Beachum reported in as eligible. B.Roethlisberger pass incomplete deep middle to A.Brown (P.Wheeler).,7,7,2012 -20120923_PIT@OAK,1,54,37,PIT,OAK,3,6,77,(9:37) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to PIT 39 for 16 yards (M.Giordano).,7,7,2012 -20120923_PIT@OAK,1,53,51,PIT,OAK,1,10,61,(8:51) B.Roethlisberger pass incomplete short left to E.Sanders.,7,7,2012 -20120923_PIT@OAK,1,53,48,PIT,OAK,2,10,61,(8:48) B.Roethlisberger scrambles up the middle to PIT 47 for 8 yards (L.Houston).,7,7,2012 -20120923_PIT@OAK,1,53,1,PIT,OAK,3,2,53,(8:01) B.Roethlisberger pass short right to E.Sanders to OAK 46 for 7 yards (T.Branch).,7,7,2012 -20120923_PIT@OAK,1,52,21,PIT,OAK,1,10,46,(7:21) B.Roethlisberger pass short left to I.Redman to OAK 35 for 11 yards (R.McClain D.Bryant).,7,7,2012 -20120923_PIT@OAK,1,51,32,PIT,OAK,1,10,35,(6:32) B.Roethlisberger pass short right to A.Brown to OAK 21 for 14 yards (M.Huff).,7,7,2012 -20120923_PIT@OAK,1,51,1,PIT,OAK,1,10,21,(6:01) J.Dwyer up the middle to OAK 18 for 3 yards (R.McClain).,7,7,2012 -20120923_PIT@OAK,1,50,18,PIT,OAK,2,7,18,(5:18) B.Roethlisberger pass short middle to M.Wallace to OAK 4 for 14 yards (M.Giordano).,7,7,2012 -20120923_PIT@OAK,1,49,34,PIT,OAK,1,4,4,(4:34) J.Dwyer right tackle to OAK 4 for no gain (M.Huff; T.Branch).,7,7,2012 -20120923_PIT@OAK,1,48,53,PIT,OAK,2,4,4,(3:53) B.Roethlisberger pass short middle to H.Miller for 4 yards TOUCHDOWN.,7,7,2012 -20120923_PIT@OAK,1,48,53,PIT,OAK,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,7,7,2012 -20120923_PIT@OAK,1,48,53,PIT,OAK,,,4,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,14,7,2012 -20120923_PIT@OAK,1,48,49,OAK,PIT,1,10,80,(3:49) C.Palmer pass short left to D.McFadden to OAK 17 for -3 yards (R.Clark C.Hampton).,7,14,2012 -20120923_PIT@OAK,1,48,7,OAK,PIT,2,13,83,(3:07) (No Huddle) C.Palmer pass incomplete short left to D.Moore.,7,14,2012 -20120923_PIT@OAK,1,48,3,OAK,PIT,3,13,83,(3:03) (Shotgun) C.Palmer sacked at OAK 10 for -7 yards (L.Woodley).,7,14,2012 -20120923_PIT@OAK,1,47,37,OAK,PIT,4,20,90,(2:37) S.Lechler punts 60 yards to PIT 30 Center-J.Condo. A.Brown to OAK 48 for 22 yards (M.Giordano).,7,14,2012 -20120923_PIT@OAK,1,47,20,PIT,OAK,1,10,48,(2:20) B.Roethlisberger pass incomplete short right.,14,7,2012 -20120923_PIT@OAK,1,47,13,PIT,OAK,2,10,48,(2:13) PENALTY on PIT-R.Foster False Start 5 yards enforced at OAK 48 - No Play.,14,7,2012 -20120923_PIT@OAK,1,47,13,PIT,OAK,2,15,53,(2:13) I.Redman up the middle to PIT 47 for no gain (P.Wheeler M.Giordano). PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 47 - No Play.,14,7,2012 -20120923_PIT@OAK,1,46,43,PIT,OAK,2,25,63,(1:43) B.Roethlisberger pass incomplete deep right to A.Brown.,14,7,2012 -20120923_PIT@OAK,1,46,37,PIT,OAK,3,25,63,(1:37) (Shotgun) B.Roethlisberger pass short left to C.Rainey to OAK 49 for 14 yards (L.Houston).,14,7,2012 -20120923_PIT@OAK,1,46,3,PIT,OAK,4,11,49,(1:03) D.Butler punts 35 yards to OAK 14 Center-G.Warren fair catch by P.Adams.,14,7,2012 -20120923_PIT@OAK,1,45,57,OAK,PIT,1,10,86,(:57) D.McFadden up the middle to OAK 15 for 1 yard (L.Foote).,7,14,2012 -20120923_PIT@OAK,1,45,20,OAK,PIT,2,9,85,(:20) D.McFadden left tackle to OAK 18 for 3 yards (E.Hood).,7,14,2012 -20120923_PIT@OAK,2,45,0,OAK,PIT,3,6,82,(15:00) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey.,7,14,2012 -20120923_PIT@OAK,2,44,55,OAK,PIT,4,6,82,(14:55) S.Lechler punts 54 yards to PIT 28 Center-J.Condo. A.Brown for 72 yards TOUCHDOWN NULLIFIED by Penalty. Penalty on PIT-W.Johnson Illegal Block Above the Waist declined. PENALTY on PIT Offensive Holding 10 yards enforced at PIT 28.,7,14,2012 -20120923_PIT@OAK,2,44,36,PIT,OAK,1,10,82,(14:36) B.Batch up the middle to PIT 20 for 2 yards (T.Branch; L.Houston).,14,7,2012 -20120923_PIT@OAK,2,43,55,PIT,OAK,2,8,80,(13:55) B.Roethlisberger pass short left to H.Miller to PIT 27 for 7 yards (P.Wheeler).,14,7,2012 -20120923_PIT@OAK,2,43,10,PIT,OAK,3,1,73,(13:10) B.Batch left tackle to PIT 30 for 3 yards (M.Burris).,14,7,2012 -20120923_PIT@OAK,2,42,29,PIT,OAK,1,10,70,(12:29) B.Batch right guard to PIT 32 for 2 yards (L.Houston R.McClain).,14,7,2012 -20120923_PIT@OAK,2,41,44,PIT,OAK,2,8,68,(11:44) B.Roethlisberger pass short right to W.Johnson to PIT 36 for 4 yards (R.McClain).,14,7,2012 -20120923_PIT@OAK,2,41,37,PIT,OAK,3,4,64,(11:37) (Shotgun) PENALTY on PIT-B.Roethlisberger Delay of Game 5 yards enforced at PIT 36 - No Play.,14,7,2012 -20120923_PIT@OAK,2,40,30,PIT,OAK,3,9,69,(10:30) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to OAK 47 for 22 yards (P.Wheeler). Oakland challenged the pass completion ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass incomplete deep middle to H.Miller (P.Wheeler).,14,7,2012 -20120923_PIT@OAK,2,40,25,PIT,OAK,4,9,69,(10:25) D.Butler punts 29 yards to OAK 40 Center-G.Warren out of bounds.,14,7,2012 -20120923_PIT@OAK,2,40,19,OAK,PIT,1,10,60,(10:19) D.McFadden right guard to OAK 41 for 1 yard (J.Worilds).,7,14,2012 -20120923_PIT@OAK,2,39,44,OAK,PIT,2,9,59,(9:44) (No Huddle) C.Palmer pass short left to D.McFadden ran ob at OAK 46 for 5 yards (J.Worilds).,7,14,2012 -20120923_PIT@OAK,2,39,11,OAK,PIT,3,4,54,(9:11) (No Huddle) D.McFadden left end to OAK 44 for -2 yards (I.Taylor).,7,14,2012 -20120923_PIT@OAK,2,38,39,OAK,PIT,4,6,56,(8:39) S.Lechler punts 41 yards to PIT 15 Center-J.Condo fair catch by A.Brown. PENALTY on PIT-J.Worilds Face Mask (15 Yards) 7 yards enforced at PIT 15.,7,14,2012 -20120923_PIT@OAK,2,38,32,PIT,OAK,1,10,92,(8:32) I.Redman up the middle to PIT 12 for 4 yards (M.Huff).,14,7,2012 -20120923_PIT@OAK,2,37,52,PIT,OAK,2,6,88,(7:52) B.Roethlisberger pass short right to A.Brown to PIT 17 for 5 yards (J.Hanson; T.Branch).,14,7,2012 -20120923_PIT@OAK,2,37,20,PIT,OAK,3,1,83,(7:20) I.Redman up the middle to PIT 21 for 4 yards (M.Burris; R.McClain).,14,7,2012 -20120923_PIT@OAK,2,36,36,PIT,OAK,1,10,79,(6:36) B.Roethlisberger pass short middle to I.Redman to PIT 30 for 9 yards (M.Burris).,14,7,2012 -20120923_PIT@OAK,2,35,52,PIT,OAK,2,1,70,(5:52) I.Redman left tackle to PIT 33 for 3 yards (M.Giordano).,14,7,2012 -20120923_PIT@OAK,2,35,10,PIT,OAK,1,10,67,(5:10) B.Roethlisberger pass short middle to J.Dwyer to PIT 34 for 1 yard (P.Wheeler).,14,7,2012 -20120923_PIT@OAK,2,34,26,PIT,OAK,2,9,66,(4:26) J.Dwyer up the middle to PIT 30 for -4 yards (D.Bryant). FUMBLES (D.Bryant) touched at PIT 30 RECOVERED by OAK-J.Hanson at PIT 31. J.Hanson to PIT 30 for 1 yard (M.Gilbert).,14,7,2012 -20120923_PIT@OAK,2,34,20,OAK,PIT,1,10,30,(4:20) C.Palmer pass short right to M.Reece to PIT 27 for 3 yards (L.Timmons).,7,14,2012 -20120923_PIT@OAK,2,33,52,OAK,PIT,2,7,27,(3:52) C.Palmer pass short right to D.Ausberry to PIT 14 for 13 yards (R.Mundy).,7,14,2012 -20120923_PIT@OAK,2,33,20,OAK,PIT,1,10,14,(3:20) D.McFadden left tackle to PIT 13 for 1 yard (R.Clark; L.Foote).,7,14,2012 -20120923_PIT@OAK,2,32,38,OAK,PIT,2,9,13,(2:38) C.Palmer scrambles right end to PIT 7 for 6 yards (L.Woodley).,7,14,2012 -20120923_PIT@OAK,2,32,9,OAK,PIT,3,3,7,(2:09) M.Goodson left end to PIT 6 for 1 yard (C.Allen).,7,14,2012 -20120923_PIT@OAK,2,32,0,OAK,PIT,4,2,6,(2:00) (Run formation) PENALTY on PIT-E.Hood Neutral Zone Infraction 3 yards enforced at PIT 6 - No Play.,7,14,2012 -20120923_PIT@OAK,2,32,0,OAK,PIT,1,3,3,(2:00) C.Palmer pass short right to D.Heyward-Bey for 3 yards TOUCHDOWN.,7,14,2012 -20120923_PIT@OAK,2,32,0,OAK,PIT,,,3,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,7,14,2012 -20120923_PIT@OAK,2,32,0,OAK,PIT,,,3,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,14,14,2012 -20120923_PIT@OAK,2,31,54,PIT,OAK,1,10,80,(1:54) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 27 for 7 yards (J.Hanson).,14,14,2012 -20120923_PIT@OAK,2,31,48,PIT,OAK,2,3,73,(1:48) (Shotgun) B.Roethlisberger pass short middle to B.Batch to PIT 32 for 5 yards (P.Wheeler; R.McClain).,14,14,2012 -20120923_PIT@OAK,2,31,21,PIT,OAK,1,10,68,(1:21) (No Huddle Shotgun) B.Roethlisberger pass short left to B.Batch to PIT 47 for 15 yards (P.Lee).,14,14,2012 -20120923_PIT@OAK,2,31,12,PIT,OAK,1,10,53,(1:12) (Shotgun) B.Roethlisberger pass short middle to H.Miller to OAK 46 for 7 yards (J.Hanson).,14,14,2012 -20120923_PIT@OAK,2,30,48,PIT,OAK,2,3,46,(:48) (No Huddle Shotgun) B.Roethlisberger pass deep middle to E.Sanders to OAK 25 for 21 yards (M.Giordano).,14,14,2012 -20120923_PIT@OAK,2,30,39,PIT,OAK,1,10,25,(:39) (No Huddle) B.Roethlisberger spiked the ball to stop the clock.,14,14,2012 -20120923_PIT@OAK,2,30,23,PIT,OAK,2,10,25,(:23) B.Roethlisberger pass short middle to C.Rainey to OAK 16 for 9 yards (P.Wheeler).,14,14,2012 -20120923_PIT@OAK,2,30,3,PIT,OAK,3,1,16,(:03) (No Huddle) B.Roethlisberger spiked the ball to stop the clock.,14,14,2012 -20120923_PIT@OAK,2,30,2,PIT,OAK,4,1,16,(:02) S.Suisham 33 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,14,14,2012 -20120923_PIT@OAK,3,30,0,OAK,PIT,,,16,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,14,17,2012 -20120923_PIT@OAK,3,30,0,PIT,OAK,1,10,80,(15:00) PENALTY on PIT-K.Beachum False Start 5 yards enforced at PIT 20 - No Play.,17,14,2012 -20120923_PIT@OAK,3,30,0,PIT,OAK,1,15,85,(15:00) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace.,17,14,2012 -20120923_PIT@OAK,3,29,55,PIT,OAK,2,15,85,(14:55) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown.,17,14,2012 -20120923_PIT@OAK,3,29,50,PIT,OAK,3,15,85,(14:50) (Shotgun) B.Roethlisberger pass deep middle to M.Wallace to PIT 37 for 22 yards (T.Branch).,17,14,2012 -20120923_PIT@OAK,3,29,7,PIT,OAK,1,10,63,(14:07) (No Huddle Shotgun) B.Batch up the middle to PIT 42 for 5 yards (D.Bryant R.McClain).,17,14,2012 -20120923_PIT@OAK,3,28,31,PIT,OAK,2,5,58,(13:31) (No Huddle Shotgun) B.Roethlisberger pass short middle to A.Brown to OAK 39 for 19 yards (J.Hanson).,17,14,2012 -20120923_PIT@OAK,3,27,55,PIT,OAK,1,10,39,(12:55) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to OAK 27 for 12 yards (P.Wheeler).,17,14,2012 -20120923_PIT@OAK,3,27,21,PIT,OAK,1,10,27,(12:21) (No Huddle Shotgun) B.Roethlisberger pass incomplete short right to A.Brown.,17,14,2012 -20120923_PIT@OAK,3,27,17,PIT,OAK,2,10,27,(12:17) (No Huddle Shotgun) B.Roethlisberger pass short left to E.Sanders to OAK 22 for 5 yards (P.Lee).,17,14,2012 -20120923_PIT@OAK,3,26,50,PIT,OAK,3,5,22,(11:50) (No Huddle Shotgun) B.Roethlisberger pass deep middle to M.Wallace for 22 yards TOUCHDOWN. OAK-M.Giordano was injured during the play. His return is Questionable.,17,14,2012 -20120923_PIT@OAK,3,26,50,PIT,OAK,,,22,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,14,2012 -20120923_PIT@OAK,3,26,50,PIT,OAK,,,22,S.Suisham kicks 64 yards from PIT 35 to OAK 1. M.Goodson pushed ob at PIT 48 for 51 yards (Cu.Brown).,24,14,2012 -20120923_PIT@OAK,3,26,30,OAK,PIT,1,10,48,(11:30) D.McFadden left tackle to PIT 32 for 16 yards (C.Carter).,14,24,2012 -20120923_PIT@OAK,3,26,1,OAK,PIT,1,10,32,(11:01) (No Huddle Shotgun) C.Palmer pass incomplete deep right to D.Heyward-Bey.,14,24,2012 -20120923_PIT@OAK,3,25,56,OAK,PIT,2,10,32,(10:56) (No Huddle) D.McFadden right end to PIT 31 for 1 yard (L.Woodley).,14,24,2012 -20120923_PIT@OAK,3,25,11,OAK,PIT,3,9,31,(10:11) (Shotgun) C.Palmer pass short middle to D.Moore to PIT 19 for 12 yards (C.Allen; L.Foote).,14,24,2012 -20120923_PIT@OAK,3,24,25,OAK,PIT,1,10,19,(9:25) (No Huddle) C.Palmer pass short left to R.Streater to PIT 14 for 5 yards (I.Taylor).,14,24,2012 -20120923_PIT@OAK,3,23,53,OAK,PIT,2,5,14,(8:53) (No Huddle) C.Palmer pass short middle to D.Moore to PIT 10 for 4 yards (L.Foote).,14,24,2012 -20120923_PIT@OAK,3,23,9,OAK,PIT,3,1,10,(8:09) D.McFadden left tackle to PIT 5 for 5 yards (R.Clark C.Carter).,14,24,2012 -20120923_PIT@OAK,3,22,29,OAK,PIT,1,5,5,(7:29) D.McFadden left tackle for 5 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. D.McFadden left tackle to PIT 1 for 4 yards (R.Mundy K.Lewis).,14,24,2012 -20120923_PIT@OAK,3,22,10,OAK,PIT,2,1,1,(7:10) D.McFadden left tackle to PIT 1 for no gain (W.Allen; C.Carter). PIT-W.Allen was injured during the play.,14,24,2012 -20120923_PIT@OAK,3,21,39,OAK,PIT,3,1,1,(6:39) C.Palmer pass short middle to R.Gordon for 1 yard TOUCHDOWN.,14,24,2012 -20120923_PIT@OAK,3,21,39,OAK,PIT,,,1,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,14,24,2012 -20120923_PIT@OAK,3,21,39,OAK,PIT,,,1,S.Janikowski kicks onside 13 yards from OAK 35 to OAK 48 out of bounds.,21,24,2012 -20120923_PIT@OAK,3,21,35,PIT,OAK,1,10,48,(6:35) (Shotgun) B.Roethlisberger pass short left to A.Brown to OAK 42 for 6 yards (P.Wheeler; T.Branch).,24,21,2012 -20120923_PIT@OAK,3,20,56,PIT,OAK,2,4,42,(5:56) (No Huddle Shotgun) C.Rainey up the middle to OAK 37 for 5 yards (D.Tollefson).,24,21,2012 -20120923_PIT@OAK,3,20,29,PIT,OAK,1,10,37,(5:29) B.Roethlisberger pass short middle to H.Miller to OAK 21 for 16 yards (J.Hanson R.McClain).,24,21,2012 -20120923_PIT@OAK,3,19,51,PIT,OAK,1,10,21,(4:51) (No Huddle Shotgun) C.Rainey right tackle to OAK 19 for 2 yards (T.Branch).,24,21,2012 -20120923_PIT@OAK,3,19,12,PIT,OAK,2,8,19,(4:12) (No Huddle Shotgun) B.Roethlisberger pass short left to M.Wallace to OAK 12 for 7 yards (P.Lee). PENALTY on PIT-M.Gilbert Illegal Formation 5 yards enforced at OAK 19 - No Play.,24,21,2012 -20120923_PIT@OAK,3,18,47,PIT,OAK,2,13,24,(3:47) (Shotgun) B.Roethlisberger pass short left to M.Wallace to OAK 19 for 5 yards (T.Branch).,24,21,2012 -20120923_PIT@OAK,3,18,3,PIT,OAK,3,8,19,(3:03) (Shotgun) B.Roethlisberger pass short right to H.Miller to OAK 10 for 9 yards (M.Mitchell).,24,21,2012 -20120923_PIT@OAK,3,17,22,PIT,OAK,1,10,10,(2:22) (No Huddle Shotgun) I.Redman up the middle to OAK 11 for -1 yards (J.Hanson).,24,21,2012 -20120923_PIT@OAK,3,16,32,PIT,OAK,2,11,11,(1:32) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to OAK 1 for 10 yards (P.Wheeler). FUMBLES (P.Wheeler) and recovers at OAK 0. TOUCHDOWN. PENALTY on OAK-T.Kelly Unnecessary Roughness 15 yards enforced between downs. The Replay Assistant challenged the loose ball recovery ruling and the play was Upheld.,24,21,2012 -20120923_PIT@OAK,3,16,32,PIT,OAK,,,11,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,24,21,2012 -20120923_PIT@OAK,3,16,32,PIT,OAK,,,11,S.Suisham kicks 73 yards from PIT 35 to OAK -8. M.Goodson Touchback.,31,21,2012 -20120923_PIT@OAK,3,16,31,OAK,PIT,1,10,80,(1:31) C.Palmer pass deep left to D.Moore to OAK 38 for 18 yards (K.Lewis).,21,31,2012 -20120923_PIT@OAK,3,16,7,OAK,PIT,1,10,62,(1:07) (No Huddle) C.Palmer pass short right to D.Heyward-Bey to OAK 49 for 11 yards (I.Taylor).,21,31,2012 -20120923_PIT@OAK,3,15,45,OAK,PIT,1,10,51,(:45) (No Huddle) C.Palmer pass short middle to B.Myers to PIT 34 for 17 yards (R.Clark).,21,31,2012 -20120923_PIT@OAK,3,15,6,OAK,PIT,1,10,34,(:06) (No Huddle) C.Palmer pass short left to M.Reece to PIT 28 for 6 yards (R.Mundy).,21,31,2012 -20120923_PIT@OAK,4,15,0,OAK,PIT,2,4,28,(15:00) PENALTY on OAK-M.Reece False Start 5 yards enforced at PIT 28 - No Play.,21,31,2012 -20120923_PIT@OAK,4,15,0,OAK,PIT,2,9,33,(15:00) C.Palmer pass incomplete deep left to D.Moore.,21,31,2012 -20120923_PIT@OAK,4,14,55,OAK,PIT,3,9,33,(14:55) (Shotgun) C.Palmer pass deep right to R.Streater to PIT 16 for 17 yards (C.Allen).,21,31,2012 -20120923_PIT@OAK,4,14,35,OAK,PIT,1,10,16,(14:35) C.Palmer pass incomplete deep middle to D.Heyward-Bey. OAK-D.Heyward-Bey was injured during the play. He is Out.,21,31,2012 -20120923_PIT@OAK,4,14,31,OAK,PIT,2,10,16,(14:31) D.McFadden right tackle to PIT 14 for 2 yards (L.Timmons).,21,31,2012 -20120923_PIT@OAK,4,13,51,OAK,PIT,3,8,14,(13:51) (Shotgun) C.Palmer pass short left to M.Reece to PIT 4 for 10 yards (C.Allen).,21,31,2012 -20120923_PIT@OAK,4,13,21,OAK,PIT,1,4,4,(13:21) D.McFadden left tackle to PIT 1 for 3 yards (Team).,21,31,2012 -20120923_PIT@OAK,4,12,41,OAK,PIT,2,1,1,(12:41) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at PIT 1 - No Play.,21,31,2012 -20120923_PIT@OAK,4,12,19,OAK,PIT,2,6,6,(12:19) C.Palmer pass short left to D.Moore for 6 yards TOUCHDOWN.,21,31,2012 -20120923_PIT@OAK,4,12,19,OAK,PIT,,,6,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,21,31,2012 -20120923_PIT@OAK,4,12,19,OAK,PIT,,,6,S.Janikowski kicks 67 yards from OAK 35 to PIT -2. C.Rainey to PIT 22 for 24 yards (B.Ross).,28,31,2012 -20120923_PIT@OAK,4,12,7,PIT,OAK,1,10,78,(12:07) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 29 for 7 yards (D.Tollefson).,31,28,2012 -20120923_PIT@OAK,4,11,35,PIT,OAK,2,3,71,(11:35) (No Huddle Shotgun) I.Redman right tackle to PIT 36 for 7 yards (R.McClain; T.Branch).,31,28,2012 -20120923_PIT@OAK,4,10,57,PIT,OAK,1,10,64,(10:57) (No Huddle Shotgun) B.Roethlisberger pass short middle to A.Brown to OAK 44 for 20 yards (P.Lee). FUMBLES (P.Lee) RECOVERED by OAK-P.Wheeler at OAK 36. P.Wheeler to OAK 36 for no gain (A.Brown).,31,28,2012 -20120923_PIT@OAK,4,10,45,OAK,PIT,1,10,64,(10:45) C.Palmer pass short middle to B.Myers to OAK 43 for 7 yards (R.Clark).,28,31,2012 -20120923_PIT@OAK,4,10,5,OAK,PIT,2,3,57,(10:05) (No Huddle) D.McFadden right guard to OAK 48 for 5 yards (R.Clark).,28,31,2012 -20120923_PIT@OAK,4,9,30,OAK,PIT,1,10,52,(9:30) C.Palmer pass incomplete deep right to D.Moore. PENALTY on PIT-K.Lewis Defensive Pass Interference 21 yards enforced at OAK 48 - No Play.,28,31,2012 -20120923_PIT@OAK,4,9,26,OAK,PIT,1,10,31,(9:26) (No Huddle) C.Palmer pass incomplete short left to M.Reece.,28,31,2012 -20120923_PIT@OAK,4,9,21,OAK,PIT,2,10,31,(9:21) (No Huddle) D.McFadden left tackle to PIT 24 for 7 yards (R.Clark).,28,31,2012 -20120923_PIT@OAK,4,8,36,OAK,PIT,3,3,24,(8:36) C.Palmer pass short left to D.Hagan to PIT 20 for 4 yards (I.Taylor).,28,31,2012 -20120923_PIT@OAK,4,8,18,OAK,PIT,1,10,20,(8:18) (No Huddle) D.McFadden left tackle to PIT 18 for 2 yards (L.Foote).,28,31,2012 -20120923_PIT@OAK,4,7,54,OAK,PIT,2,8,18,(7:54) (No Huddle) D.McFadden right end to PIT 19 for -1 yards (L.Woodley).,28,31,2012 -20120923_PIT@OAK,4,7,11,OAK,PIT,3,9,19,(7:11) (Shotgun) C.Palmer pass short left to D.Moore to PIT 14 for 5 yards (L.Timmons).,28,31,2012 -20120923_PIT@OAK,4,6,34,OAK,PIT,4,4,14,(6:34) S.Janikowski 32 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,28,31,2012 -20120923_PIT@OAK,4,6,34,OAK,PIT,,,14,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,31,31,2012 -20120923_PIT@OAK,4,6,30,PIT,OAK,1,10,80,(6:30) (Shotgun) B.Roethlisberger scrambles up the middle to PIT 20 for no gain. PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 20 - No Play.,31,31,2012 -20120923_PIT@OAK,4,6,5,PIT,OAK,1,20,90,(6:05) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 24 for 14 yards (P.Wheeler). FUMBLES (P.Wheeler) and recovers at PIT 27. M.Wallace to PIT 27 for no gain (P.Wheeler; M.Giordano).,31,31,2012 -20120923_PIT@OAK,4,5,10,PIT,OAK,2,3,73,(5:10) I.Redman right guard to PIT 29 for 2 yards (L.Houston).,31,31,2012 -20120923_PIT@OAK,4,4,34,PIT,OAK,3,1,71,(4:34) I.Redman left guard to PIT 29 for no gain (Team).,31,31,2012 -20120923_PIT@OAK,4,3,51,PIT,OAK,4,1,71,(3:51) I.Redman up the middle to PIT 35 for 6 yards (P.Wheeler; M.Giordano).,31,31,2012 -20120923_PIT@OAK,4,3,9,PIT,OAK,1,10,65,(3:09) (No Huddle Shotgun) B.Roethlisberger sacked at PIT 30 for -5 yards (R.Seymour).,31,31,2012 -20120923_PIT@OAK,4,2,31,PIT,OAK,2,15,70,(2:31) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 36 for 6 yards (P.Wheeler).,31,31,2012 -20120923_PIT@OAK,4,2,0,PIT,OAK,3,9,64,(2:00) (Shotgun) B.Roethlisberger pass incomplete deep middle to M.Wallace [M.Burris].,31,31,2012 -20120923_PIT@OAK,4,1,43,PIT,OAK,4,9,64,(1:43) D.Butler punts 44 yards to OAK 20 Center-G.Warren. P.Adams to OAK 25 for 5 yards (B.Batch).,31,31,2012 -20120923_PIT@OAK,4,1,43,OAK,PIT,1,10,75,(1:43) (Shotgun) C.Palmer pass incomplete short right to D.Hagan.,31,31,2012 -20120923_PIT@OAK,4,1,39,OAK,PIT,2,10,75,(1:39) C.Palmer pass incomplete short right to D.Moore.,31,31,2012 -20120923_PIT@OAK,4,1,23,OAK,PIT,3,10,75,(1:23) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 49 for 24 yards.,31,31,2012 -20120923_PIT@OAK,4,0,48,OAK,PIT,1,10,60,(:48) C.Palmer pass deep right to D.Hagan to OAK 49 for 9 yards (K.Lewis).,31,31,2012 -20120923_PIT@OAK,4,0,48,OAK,PIT,2,1,51,(:48) C.Palmer pass short middle to M.Reece to PIT 43 for 8 yards (I.Taylor).,31,31,2012 -20120923_PIT@OAK,4,0,48,OAK,PIT,1,10,43,(:48) C.Palmer pass short middle to D.Hagan to PIT 26 for 17 yards (C.Allen).,31,31,2012 -20120923_PIT@OAK,4,0,21,OAK,PIT,2,9,25,(:21) C.Palmer up the middle to PIT 26 for -1 yards (R.Mundy).,31,31,2012 -20120923_PIT@OAK,4,0,0,OAK,PIT,3,10,26,(:00) S.Janikowski 43 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,31,31,2012 -20120923_PIT@OAK,4,0,0,OAK,PIT,,,26,                      ,34,31,2012 -20120923_NE@BAL,1,0,0,BAL,NE,,,26,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.Woodhead Touchback.,0,0,2012 -20120923_NE@BAL,1,60,0,NE,BAL,1,10,80,(15:00) T.Brady pass short left to B.Lloyd to NE 32 for 12 yards (C.Williams).,0,0,2012 -20120923_NE@BAL,1,59,30,NE,BAL,1,10,68,(14:30) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to NE 31 for -1 yards (E.Reed).,0,0,2012 -20120923_NE@BAL,1,59,2,NE,BAL,2,11,72,(14:02) (No Huddle Shotgun) T.Brady FUMBLES (Aborted) at NE 28 and recovers at NE 28. T.Brady to NE 28 for no gain (P.Kruger).,0,0,2012 -20120923_NE@BAL,1,58,21,NE,BAL,3,14,72,(13:21) (Shotgun) T.Brady sacked at NE 19 for -9 yards (D.Ellerbe).,0,0,2012 -20120923_NE@BAL,1,57,53,NE,BAL,4,23,81,(12:53) (Punt formation) Z.Mesko punts 56 yards to BLT 25 Center-D.Aiken. J.Jones to BLT 44 for 19 yards (B.Bolden).,0,0,2012 -20120923_NE@BAL,1,57,40,BAL,NE,1,10,56,(12:40) R.Rice left end to BLT 47 for 3 yards (K.Arrington C.Jones).,0,0,2012 -20120923_NE@BAL,1,57,11,BAL,NE,2,7,53,(12:11) (No Huddle) R.Rice left guard to BLT 48 for 1 yard (V.Wilfork).,0,0,2012 -20120923_NE@BAL,1,56,39,BAL,NE,3,6,52,(11:39) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to NE 47 for 5 yards (K.Arrington).,0,0,2012 -20120923_NE@BAL,1,55,57,BAL,NE,4,1,47,(10:57) (Punt formation) S.Koch punts 37 yards to NE 10 Center-M.Cox downed by BLT-D.Pitta.,0,0,2012 -20120923_NE@BAL,1,55,49,NE,BAL,1,10,90,(10:49) (Shotgun) T.Brady pass short left to J.Edelman to NE 17 for 7 yards (R.Lewis).,0,0,2012 -20120923_NE@BAL,1,55,26,NE,BAL,2,3,83,(10:26) (No Huddle) D.Woodhead right end to NE 19 for 2 yards (H.Ngata E.Reed).,0,0,2012 -20120923_NE@BAL,1,55,1,NE,BAL,3,1,81,(10:01) (No Huddle) D.Woodhead right tackle to NE 21 for 2 yards (P.Kruger R.Lewis).,0,0,2012 -20120923_NE@BAL,1,54,32,NE,BAL,1,10,79,(9:32) (No Huddle) T.Brady pass deep left to W.Welker to BLT 20 for 59 yards (B.Pollard).,0,0,2012 -20120923_NE@BAL,1,54,21,NE,BAL,1,10,20,(9:21) (No Huddle) S.Ridley right tackle to BLT 20 for no gain (P.Kruger T.Cody).,0,0,2012 -20120923_NE@BAL,1,53,40,NE,BAL,2,10,20,(8:40) S.Ridley left guard to BLT 19 for 1 yard (D.Ellerbe).,0,0,2012 -20120923_NE@BAL,1,52,58,NE,BAL,3,9,19,(7:58) (No Huddle Shotgun) T.Brady pass incomplete deep middle to J.Edelman (E.Reed) [H.Ngata].,0,0,2012 -20120923_NE@BAL,1,52,52,NE,BAL,4,9,19,(7:52) (Field Goal formation) S.Gostkowski 37 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20120923_NE@BAL,1,52,52,NE,BAL,,,19,S.Gostkowski kicks 64 yards from NE 35 to BLT 1. D.Thompson to BLT 24 for 23 yards (M.Cole).,3,0,2012 -20120923_NE@BAL,1,52,42,BAL,NE,1,10,76,(7:42) J.Flacco pass deep middle intended for D.Pitta INTERCEPTED by S.Gregory at BLT 42. S.Gregory to BLT 6 for 36 yards (R.Rice).,0,3,2012 -20120923_NE@BAL,1,52,31,NE,BAL,1,6,6,(7:31) T.Brady pass incomplete short right to B.Lloyd.,3,0,2012 -20120923_NE@BAL,1,52,28,NE,BAL,2,6,6,(7:28) T.Brady pass short left to M.Hoomanawanui to BLT 2 for 4 yards (E.Reed).,3,0,2012 -20120923_NE@BAL,1,52,14,NE,BAL,3,2,2,(7:14) (No Huddle) B.Bolden up the middle for 2 yards TOUCHDOWN.,3,0,2012 -20120923_NE@BAL,1,52,14,NE,BAL,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,3,0,2012 -20120923_NE@BAL,1,52,14,NE,BAL,,,2,S.Gostkowski kicks 68 yards from NE 35 to BLT -3. D.Thompson to BLT 33 for 36 yards (B.Bolden).,10,0,2012 -20120923_NE@BAL,1,52,1,BAL,NE,1,10,67,(7:01) J.Flacco pass short right to E.Dickson to BLT 35 for 2 yards (K.Arrington).,0,10,2012 -20120923_NE@BAL,1,51,30,BAL,NE,2,8,65,(6:30) (No Huddle) R.Rice right guard to BLT 38 for 3 yards (R.Ninkovich J.Mayo).,0,10,2012 -20120923_NE@BAL,1,50,55,BAL,NE,3,5,62,(5:55) (No Huddle Shotgun) J.Flacco pass short right to E.Dickson to BLT 41 for 3 yards (T.Wilson).,0,10,2012 -20120923_NE@BAL,1,50,14,BAL,NE,4,2,59,(5:14) (Punt formation) S.Koch punts 52 yards to NE 7 Center-M.Cox. J.Edelman pushed ob at NE 18 for 11 yards (D.Ellerbe). PENALTY on NE-N.Koutouvides Illegal Block Above the Waist 9 yards enforced at NE 18.,0,10,2012 -20120923_NE@BAL,1,50,2,NE,BAL,1,10,91,(5:02) T.Brady pass incomplete short right to W.Welker.,10,0,2012 -20120923_NE@BAL,1,49,56,NE,BAL,2,10,91,(4:56) S.Ridley left guard to NE 13 for 4 yards (H.Ngata).,10,0,2012 -20120923_NE@BAL,1,49,26,NE,BAL,3,6,87,(4:26) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd to NE 24 for 11 yards (C.Williams).,10,0,2012 -20120923_NE@BAL,1,48,54,NE,BAL,1,10,76,(3:54) (No Huddle) D.Woodhead left guard to NE 27 for 3 yards (T.Cody).,10,0,2012 -20120923_NE@BAL,1,48,26,NE,BAL,2,8,73,(3:26) (No Huddle) T.Brady pass short left to B.Lloyd pushed ob at NE 49 for 22 yards (C.Williams).,10,0,2012 -20120923_NE@BAL,1,48,10,NE,BAL,1,10,51,(3:10) (Shotgun) T.Brady scrambles left end to BLT 44 for 7 yards (H.Ngata). PENALTY on BLT-C.Upshaw Personal Foul 15 yards enforced at BLT 44.,10,0,2012 -20120923_NE@BAL,1,47,41,NE,BAL,1,10,29,(2:41) S.Ridley right tackle to BLT 27 for 2 yards.,10,0,2012 -20120923_NE@BAL,1,47,14,NE,BAL,2,8,27,(2:14) (No Huddle) S.Ridley right tackle to BLT 18 for 9 yards (R.Lewis). PENALTY on NE-R.Gronkowski Offensive Holding 10 yards enforced at BLT 20.,10,0,2012 -20120923_NE@BAL,1,46,52,NE,BAL,2,11,30,(1:52) T.Brady pass incomplete short left to W.Welker.,10,0,2012 -20120923_NE@BAL,1,46,48,NE,BAL,3,11,30,(1:48) (Shotgun) T.Brady pass deep left to J.Edelman to BLT 11 for 19 yards (C.Williams). PENALTY on NE-J.Edelman Offensive Pass Interference 10 yards enforced at BLT 30 - No Play.,10,0,2012 -20120923_NE@BAL,1,46,22,NE,BAL,3,21,40,(1:22) (Shotgun) T.Brady pass short right to W.Welker to BLT 31 for 9 yards (H.Ngata).,10,0,2012 -20120923_NE@BAL,1,46,22,NE,BAL,4,12,31,(1:22) (Field Goal formation) S.Gostkowski 49 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,10,0,2012 -20120923_NE@BAL,1,46,22,NE,BAL,,,31,S.Gostkowski kicks 69 yards from NE 35 to BLT -4. D.Thompson to BLT 18 for 22 yards (T.Wilson).,13,0,2012 -20120923_NE@BAL,1,45,30,BAL,NE,1,10,82,(:30) J.Flacco pass incomplete deep right to T.Smith (D.McCourty).,0,13,2012 -20120923_NE@BAL,1,45,22,BAL,NE,2,10,82,(:22) R.Rice left tackle to BLT 22 for 4 yards (J.Mayo C.Jones).,0,13,2012 -20120923_NE@BAL,2,45,0,BAL,NE,3,6,78,(15:00) (Shotgun) J.Flacco pass incomplete short left to R.Rice. PENALTY on NE-J.Mayo Defensive Pass Interference 2 yards enforced at BLT 22 - No Play.,0,13,2012 -20120923_NE@BAL,2,44,54,BAL,NE,1,10,76,(14:54) J.Flacco pass short right to R.Rice to BLT 28 for 4 yards (B.Spikes J.Mayo).,0,13,2012 -20120923_NE@BAL,2,44,20,BAL,NE,2,6,72,(14:20) (No Huddle) R.Rice right tackle to BLT 47 for 19 yards (S.Gregory). PENALTY on BLT-A.Boldin Offensive Holding 10 yards enforced at BLT 37.,0,13,2012 -20120923_NE@BAL,2,43,45,BAL,NE,2,7,73,(13:45) (No Huddle) J.Flacco pass short right to B.Pierce to BLT 37 for 10 yards (D.McCourty).,0,13,2012 -20120923_NE@BAL,2,43,24,BAL,NE,1,10,63,(13:24) B.Pierce right end to BLT 45 for 8 yards (D.McCourty).,0,13,2012 -20120923_NE@BAL,2,42,31,BAL,NE,2,2,55,(12:31) (No Huddle) J.Flacco pass short right to V.Leach to NE 49 for 6 yards (D.McCourty).,0,13,2012 -20120923_NE@BAL,2,42,11,BAL,NE,1,10,49,(12:11) (No Huddle) PENALTY on BLT-M.Yanda False Start 5 yards enforced at NE 49 - No Play.,0,13,2012 -20120923_NE@BAL,2,41,51,BAL,NE,1,15,54,(11:51) R.Rice left guard to BLT 48 for 2 yards (V.Wilfork).,0,13,2012 -20120923_NE@BAL,2,41,30,BAL,NE,2,13,52,(11:30) J.Flacco pass incomplete short right to A.Boldin.,0,13,2012 -20120923_NE@BAL,2,41,28,BAL,NE,3,13,52,(11:28) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to NE 40 for 12 yards (D.McCourty).,0,13,2012 -20120923_NE@BAL,2,40,53,BAL,NE,1,10,38,(10:53) R.Rice left guard to NE 30 for 8 yards (D.McCourty).,0,13,2012 -20120923_NE@BAL,2,40,27,BAL,NE,2,2,30,(10:27) R.Rice left guard to NE 25 for 5 yards (B.Spikes).,0,13,2012 -20120923_NE@BAL,2,39,53,BAL,NE,1,10,25,(9:53) (No Huddle) J.Flacco pass deep left to T.Smith for 25 yards TOUCHDOWN.,0,13,2012 -20120923_NE@BAL,2,39,53,BAL,NE,,,25,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,13,2012 -20120923_NE@BAL,2,39,53,BAL,NE,,,25,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,7,13,2012 -20120923_NE@BAL,2,39,45,NE,BAL,1,10,80,(9:45) PENALTY on NE-J.Edelman False Start 5 yards enforced at NE 20 - No Play.,13,7,2012 -20120923_NE@BAL,2,39,45,NE,BAL,1,15,85,(9:45) T.Brady pass short left to R.Gronkowski to NE 24 for 9 yards (E.Reed J.McClain).,13,7,2012 -20120923_NE@BAL,2,39,25,NE,BAL,2,6,76,(9:25) (No Huddle) J.Edelman left end to NE 32 for 8 yards (B.Pollard E.Reed). Reverse,13,7,2012 -20120923_NE@BAL,2,38,50,NE,BAL,1,10,68,(8:50) (No Huddle Shotgun) T.Brady pass short middle to J.Edelman to NE 47 for 15 yards (C.Williams).,13,7,2012 -20120923_NE@BAL,2,38,24,NE,BAL,1,10,53,(8:24) (No Huddle) D.Woodhead left tackle to BLT 49 for 4 yards (R.Lewis).,13,7,2012 -20120923_NE@BAL,2,37,48,NE,BAL,2,6,49,(7:48) (Shotgun) J.Edelman left end to NE 38 for -13 yards (C.Upshaw). Direct snap to Woodhead who hands off to Edelman on reverse.,13,7,2012 -20120923_NE@BAL,2,37,6,NE,BAL,3,19,62,(7:06) (Shotgun) D.Woodhead right tackle to NE 42 for 4 yards.,13,7,2012 -20120923_NE@BAL,2,36,41,NE,BAL,4,15,58,(6:41) (Punt formation) Z.Mesko punts 50 yards to BLT 8 Center-D.Aiken fair catch by J.Jones.,13,7,2012 -20120923_NE@BAL,2,36,36,BAL,NE,1,10,92,(6:36) J.Flacco pass short right to V.Leach to BLT 9 for 1 yard (D.Hightower).,7,13,2012 -20120923_NE@BAL,2,35,58,BAL,NE,2,9,91,(5:58) B.Pierce left end to BLT 14 for 5 yards (D.Hightower B.Spikes).,7,13,2012 -20120923_NE@BAL,2,35,24,BAL,NE,3,4,86,(5:24) (No Huddle Shotgun) J.Flacco scrambles up the middle to BLT 19 for 5 yards (J.Cunningham).,7,13,2012 -20120923_NE@BAL,2,34,49,BAL,NE,1,10,81,(4:49) (No Huddle) R.Rice right tackle to BLT 22 for 3 yards (J.Mayo).,7,13,2012 -20120923_NE@BAL,2,34,24,BAL,NE,2,7,78,(4:24) (No Huddle) J.Flacco pass deep middle to J.Jones to NE 37 for 41 yards (K.Arrington P.Chung).,7,13,2012 -20120923_NE@BAL,2,33,44,BAL,NE,1,10,37,(3:44) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to NE 32 for 5 yards (D.McCourty).,7,13,2012 -20120923_NE@BAL,2,33,6,BAL,NE,2,5,32,(3:06) (No Huddle) R.Rice right tackle to NE 26 for 6 yards (J.Mayo B.Spikes).,7,13,2012 -20120923_NE@BAL,2,32,30,BAL,NE,1,10,26,(2:30) (No Huddle) R.Rice left guard to NE 20 for 6 yards (J.Mayo).,7,13,2012 -20120923_NE@BAL,2,32,0,BAL,NE,2,4,20,(2:00) J.Flacco pass incomplete deep right to A.Boldin.,7,13,2012 -20120923_NE@BAL,2,31,53,BAL,NE,3,4,20,(1:53) (Shotgun) J.Flacco pass short right to D.Pitta for 20 yards TOUCHDOWN.,7,13,2012 -20120923_NE@BAL,2,31,53,BAL,NE,,,20,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,13,2012 -20120923_NE@BAL,2,31,53,BAL,NE,,,20,J.Tucker kicks 70 yards from BLT 35 to NE -5. D.McCourty to NE 19 for 24 yards (C.Graham).,14,13,2012 -20120923_NE@BAL,2,31,41,NE,BAL,1,10,81,(1:41) (Shotgun) T.Brady pass incomplete short right to J.Edelman (J.Smith).,13,14,2012 -20120923_NE@BAL,2,31,37,NE,BAL,2,10,81,(1:37) (Shotgun) T.Brady pass short right to R.Gronkowski to NE 31 for 12 yards (D.Ellerbe B.Pollard).,13,14,2012 -20120923_NE@BAL,2,31,14,NE,BAL,1,10,69,(1:14) (No Huddle Shotgun) T.Brady pass short left to D.Woodhead pushed ob at NE 36 for 5 yards (R.Lewis). PENALTY on BLT-D.Ellerbe Defensive Holding 5 yards enforced at NE 31 - No Play.,13,14,2012 -20120923_NE@BAL,2,31,7,NE,BAL,1,10,64,(1:07) (Shotgun) D.Woodhead right guard to NE 40 for 4 yards (H.Ngata).,13,14,2012 -20120923_NE@BAL,2,31,1,NE,BAL,2,6,60,(1:01) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,13,14,2012 -20120923_NE@BAL,2,30,57,NE,BAL,3,6,60,(:57) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 49 for 9 yards (J.Smith).,13,14,2012 -20120923_NE@BAL,2,30,35,NE,BAL,1,10,51,(:35) (No Huddle Shotgun) T.Brady pass incomplete deep left to B.Lloyd. PENALTY on BLT-C.Williams Illegal Contact 5 yards enforced at NE 49 - No Play.,13,14,2012 -20120923_NE@BAL,2,30,28,NE,BAL,1,10,46,(:28) (No Huddle Shotgun) T.Brady pass short left to D.Branch pushed ob at BLT 35 for 11 yards (E.Reed).,13,14,2012 -20120923_NE@BAL,2,30,23,NE,BAL,1,10,35,(:23) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to BLT 7 for 28 yards (E.Reed).,13,14,2012 -20120923_NE@BAL,2,30,13,NE,BAL,1,7,7,(:13) T.Brady pass incomplete short right to J.Edelman [P.McPhee].,13,14,2012 -20120923_NE@BAL,2,30,7,NE,BAL,2,7,7,(:07) (Shotgun) T.Brady pass short middle to J.Edelman for 7 yards TOUCHDOWN.,13,14,2012 -20120923_NE@BAL,2,30,7,NE,BAL,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko. PENALTY on BLT-C.Upshaw Personal Foul 15 yards enforced between downs.,13,14,2012 -20120923_NE@BAL,2,30,7,NE,BAL,,,7,S.Gostkowski kicks 26 yards from 50 to BLT 24. D.Pitta to BLT 24 for no gain (T.Wilson).,20,14,2012 -20120923_NE@BAL,3,30,0,NE,BAL,,,7,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,20,14,2012 -20120923_NE@BAL,3,30,0,BAL,NE,1,10,80,(15:00) R.Rice left tackle to BLT 35 for 15 yards (K.Arrington).,14,20,2012 -20120923_NE@BAL,3,29,35,BAL,NE,1,10,65,(14:35) (No Huddle) R.Rice right tackle to BLT 37 for 2 yards (V.Wilfork).,14,20,2012 -20120923_NE@BAL,3,29,6,BAL,NE,2,8,63,(14:06) J.Flacco pass incomplete deep middle to A.Boldin. PENALTY on NE-K.Arrington Defensive Holding 5 yards enforced at BLT 37 - No Play.,14,20,2012 -20120923_NE@BAL,3,28,58,BAL,NE,1,10,58,(13:58) (No Huddle) J.Flacco pass short right to R.Rice to BLT 46 for 4 yards (J.Mayo).,14,20,2012 -20120923_NE@BAL,3,28,26,BAL,NE,2,6,54,(13:26) (No Huddle) R.Rice right guard to BLT 50 for 4 yards (J.Mayo).,14,20,2012 -20120923_NE@BAL,3,27,49,BAL,NE,3,2,50,(12:49) (No Huddle Shotgun) J.Flacco pass short middle to T.Smith pushed ob at NE 39 for 11 yards (S.Gregory).,14,20,2012 -20120923_NE@BAL,3,27,26,BAL,NE,1,10,39,(12:26) (No Huddle) J.Flacco pass incomplete deep right to J.Jones (D.McCourty).,14,20,2012 -20120923_NE@BAL,3,27,18,BAL,NE,2,10,39,(12:18) J.Flacco pass deep middle to T.Smith to NE 7 for 32 yards (S.Gregory D.McCourty).,14,20,2012 -20120923_NE@BAL,3,26,42,BAL,NE,1,7,7,(11:42) (No Huddle) R.Rice left guard for 7 yards TOUCHDOWN.,14,20,2012 -20120923_NE@BAL,3,26,42,BAL,NE,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,20,2012 -20120923_NE@BAL,3,26,42,BAL,NE,,,7,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,21,20,2012 -20120923_NE@BAL,3,26,36,NE,BAL,1,10,80,(11:36) T.Brady pass short middle to B.Lloyd to NE 31 for 11 yards (C.Williams).,20,21,2012 -20120923_NE@BAL,3,26,7,NE,BAL,1,10,69,(11:07) (No Huddle) S.Ridley right guard to NE 36 for 5 yards (R.Lewis M.Kemoeatu).,20,21,2012 -20120923_NE@BAL,3,25,36,NE,BAL,2,5,64,(10:36) (No Huddle) T.Brady pass incomplete short right to K.Winslow (L.Webb).,20,21,2012 -20120923_NE@BAL,3,25,30,NE,BAL,3,5,64,(10:30) (No Huddle Shotgun) T.Brady pass short left to W.Welker to NE 47 for 11 yards (C.Williams).,20,21,2012 -20120923_NE@BAL,3,24,56,NE,BAL,1,10,53,(9:56) (No Huddle Shotgun) D.Woodhead left guard to NE 50 for 3 yards (R.Lewis).,20,21,2012 -20120923_NE@BAL,3,24,32,NE,BAL,2,7,50,(9:32) (No Huddle) D.Woodhead left guard to BLT 49 for 1 yard (C.Upshaw H.Ngata).,20,21,2012 -20120923_NE@BAL,3,23,56,NE,BAL,3,6,49,(8:56) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd pushed ob at BLT 39 for 10 yards (C.Williams).,20,21,2012 -20120923_NE@BAL,3,23,49,NE,BAL,1,10,39,(8:49) (No Huddle) D.Woodhead left end to BLT 36 for 3 yards (D.Ellerbe). PENALTY on BLT-B.Pollard Personal Foul 15 yards enforced at BLT 36.,20,21,2012 -20120923_NE@BAL,3,23,22,NE,BAL,1,10,21,(8:22) (No Huddle Shotgun) D.Woodhead right guard to BLT 18 for 3 yards (D.Ellerbe).,20,21,2012 -20120923_NE@BAL,3,22,42,NE,BAL,2,7,18,(7:42) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd pushed ob at BLT 9 for 9 yards (C.Williams).,20,21,2012 -20120923_NE@BAL,3,22,16,NE,BAL,1,9,9,(7:16) (No Huddle) D.Woodhead right guard to BLT 3 for 6 yards (D.Ellerbe R.Lewis).,20,21,2012 -20120923_NE@BAL,3,21,52,NE,BAL,2,3,3,(6:52) (No Huddle) D.Woodhead right tackle for 3 yards TOUCHDOWN.,20,21,2012 -20120923_NE@BAL,3,21,52,NE,BAL,,,3,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,20,21,2012 -20120923_NE@BAL,3,21,52,NE,BAL,,,3,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,27,21,2012 -20120923_NE@BAL,3,21,48,BAL,NE,1,10,80,(6:48) PENALTY on BLT-T.Smith False Start 5 yards enforced at BLT 20 - No Play.,21,27,2012 -20120923_NE@BAL,3,21,48,BAL,NE,1,15,85,(6:48) J.Flacco pass incomplete short right to T.Smith.,21,27,2012 -20120923_NE@BAL,3,21,43,BAL,NE,2,15,85,(6:43) J.Flacco pass deep left to T.Smith pushed ob at NE 47 for 38 yards (P.Chung). Penalty on NE-S.Moore Defensive Holding declined.,21,27,2012 -20120923_NE@BAL,3,21,22,BAL,NE,1,10,47,(6:22) B.Pierce left guard to NE 42 for 5 yards (J.Mayo).,21,27,2012 -20120923_NE@BAL,3,20,54,BAL,NE,2,5,42,(5:54) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to NE 33 for 9 yards (R.Dowling). PENALTY on BLT-M.Yanda Offensive Holding 10 yards enforced at NE 42 - No Play.,21,27,2012 -20120923_NE@BAL,3,20,29,BAL,NE,2,15,52,(5:29) J.Flacco pass incomplete short left to V.Leach.,21,27,2012 -20120923_NE@BAL,3,20,21,BAL,NE,3,15,52,(5:21) (No Huddle Shotgun) J.Flacco pass incomplete deep right to T.Smith (D.McCourty).,21,27,2012 -20120923_NE@BAL,3,20,15,BAL,NE,4,15,52,(5:15) (Punt formation) S.Koch punts 41 yards to NE 11 Center-M.Cox. W.Welker to NE 18 for 7 yards (C.Brown). PENALTY on NE-N.Koutouvides Defensive Offside 5 yards enforced at BLT 48 - No Play.,21,27,2012 -20120923_NE@BAL,3,20,4,BAL,NE,4,10,47,(5:04) (Punt formation) S.Koch punts 47 yards to end zone Center-M.Cox Touchback.,21,27,2012 -20120923_NE@BAL,3,19,57,NE,BAL,1,10,80,(4:57) T.Brady pass short right to K.Winslow to NE 32 for 12 yards (J.Smith).,27,21,2012 -20120923_NE@BAL,3,19,34,NE,BAL,1,10,68,(4:34) S.Ridley up the middle to NE 31 for -1 yards (H.Ngata).,27,21,2012 -20120923_NE@BAL,3,19,7,NE,BAL,2,11,69,(4:07) (Shotgun) T.Brady pass short right to B.Lloyd to NE 41 for 10 yards (E.Reed).,27,21,2012 -20120923_NE@BAL,3,18,41,NE,BAL,3,1,59,(3:41) S.Ridley right tackle to NE 45 for 4 yards (P.McPhee R.Lewis).,27,21,2012 -20120923_NE@BAL,3,17,59,NE,BAL,1,10,55,(2:59) (Shotgun) T.Brady pass short right to B.Lloyd to BLT 45 for 10 yards (J.Smith).,27,21,2012 -20120923_NE@BAL,3,17,53,NE,BAL,1,10,45,(2:53) (No Huddle Shotgun) T.Brady pass incomplete short middle to D.Branch. PENALTY on BLT-J.Smith Defensive Holding 5 yards enforced at BLT 45 - No Play.,27,21,2012 -20120923_NE@BAL,3,17,46,NE,BAL,1,10,40,(2:46) (No Huddle) D.Woodhead right end to BLT 40 for no gain (C.Upshaw).,27,21,2012 -20120923_NE@BAL,3,17,8,NE,BAL,2,10,40,(2:08) (No Huddle) T.Brady pass short left to W.Welker to BLT 33 for 7 yards (C.Williams).,27,21,2012 -20120923_NE@BAL,3,16,28,NE,BAL,3,3,33,(1:28) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Branch. PENALTY on BLT-E.Reed Unnecessary Roughness 15 yards enforced at BLT 33.,27,21,2012 -20120923_NE@BAL,3,16,20,NE,BAL,1,10,18,(1:20) S.Ridley left tackle to BLT 4 for 14 yards (E.Reed J.Smith).,27,21,2012 -20120923_NE@BAL,3,15,40,NE,BAL,1,4,4,(:40) (No Huddle) S.Ridley up the middle to BLT 8 for -4 yards (B.Pollard).,27,21,2012 -20120923_NE@BAL,4,15,0,NE,BAL,2,8,8,(15:00) (No Huddle Shotgun) D.Woodhead right guard to BLT 8 for no gain (L.Webb P.McPhee).,27,21,2012 -20120923_NE@BAL,4,14,19,NE,BAL,3,8,8,(14:19) (Shotgun) T.Brady pass short left to W.Welker to BLT 2 for 6 yards (L.Webb).,27,21,2012 -20120923_NE@BAL,4,14,19,NE,BAL,4,2,2,(14:19) (Field Goal formation) S.Gostkowski 20 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,27,21,2012 -20120923_NE@BAL,4,14,19,NE,BAL,,,2,S.Gostkowski kicks 74 yards from NE 35 to BLT -9. D.Thompson Touchback.,30,21,2012 -20120923_NE@BAL,4,14,10,BAL,NE,1,10,80,(14:10) J.Flacco pass short right to D.Pitta pushed ob at BLT 25 for 5 yards (D.Hightower).,21,30,2012 -20120923_NE@BAL,4,13,39,BAL,NE,2,5,75,(13:39) (No Huddle) R.Rice left guard to BLT 34 for 9 yards (T.Scott).,21,30,2012 -20120923_NE@BAL,4,13,13,BAL,NE,1,10,66,(13:13) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Smith (D.McCourty).,21,30,2012 -20120923_NE@BAL,4,13,5,BAL,NE,2,10,66,(13:05) (No Huddle) J.Flacco pass deep left to A.Boldin pushed ob at NE 42 for 24 yards (K.Arrington).,21,30,2012 -20120923_NE@BAL,4,12,43,BAL,NE,1,10,42,(12:43) R.Rice left guard to NE 41 for 1 yard (V.Wilfork).,21,30,2012 -20120923_NE@BAL,4,12,14,BAL,NE,2,9,41,(12:14) (No Huddle) R.Rice left guard to NE 35 for 6 yards (D.Hightower).,21,30,2012 -20120923_NE@BAL,4,11,43,BAL,NE,3,3,35,(11:43) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to NE 33 for 2 yards (J.Mayo).,21,30,2012 -20120923_NE@BAL,4,10,56,BAL,NE,4,1,33,(10:56) B.Pierce left guard to NE 34 for -1 yards (P.Chung).,21,30,2012 -20120923_NE@BAL,4,10,50,NE,BAL,1,10,66,(10:50) T.Brady pass short left to B.Lloyd to NE 47 for 13 yards (C.Williams).,30,21,2012 -20120923_NE@BAL,4,10,16,NE,BAL,1,10,53,(10:16) B.Bolden left end to NE 49 for 2 yards (H.Ngata).,30,21,2012 -20120923_NE@BAL,4,9,36,NE,BAL,2,8,51,(9:36) (Shotgun) T.Brady pass short middle to W.Welker to BLT 40 for 11 yards (B.Pollard).,30,21,2012 -20120923_NE@BAL,4,9,2,NE,BAL,1,10,40,(9:02) (No Huddle) D.Woodhead left end to BLT 44 for -4 yards (D.Ellerbe).,30,21,2012 -20120923_NE@BAL,4,8,28,NE,BAL,2,14,44,(8:28) (No Huddle Shotgun) T.Brady pass short right to D.Branch to BLT 44 for no gain (J.Smith).,30,21,2012 -20120923_NE@BAL,4,7,44,NE,BAL,3,14,44,(7:44) (Shotgun) T.Brady pass incomplete short right to D.Woodhead.,30,21,2012 -20120923_NE@BAL,4,7,44,NE,BAL,4,14,44,(7:44) (Punt formation) Z.Mesko punts 36 yards to BLT 8 Center-D.Aiken fair catch by L.Webb.,30,21,2012 -20120923_NE@BAL,4,7,29,BAL,NE,1,10,92,(7:29) J.Flacco pass short middle to R.Rice to BLT 20 for 12 yards (J.Mayo).,21,30,2012 -20120923_NE@BAL,4,6,55,BAL,NE,1,10,80,(6:55) (No Huddle) J.Flacco pass incomplete deep right to T.Smith. PENALTY on BLT-M.Yanda Offensive Holding 10 yards enforced at BLT 20 - No Play.,21,30,2012 -20120923_NE@BAL,4,6,50,BAL,NE,1,20,90,(6:50) R.Rice left guard to BLT 16 for 6 yards (D.Hightower).,21,30,2012 -20120923_NE@BAL,4,6,18,BAL,NE,2,14,84,(6:18) (No Huddle Shotgun) J.Flacco pass incomplete deep right to T.Smith. PENALTY on NE-D.McCourty Defensive Holding 5 yards enforced at BLT 16 - No Play.,21,30,2012 -20120923_NE@BAL,4,6,11,BAL,NE,1,10,79,(6:11) (No Huddle Shotgun) J.Flacco pass short middle to J.Jones to BLT 42 for 21 yards (S.Gregory).,21,30,2012 -20120923_NE@BAL,4,5,40,BAL,NE,1,10,58,(5:40) (No Huddle Shotgun) J.Flacco pass short right to T.Smith ran ob at NE 42 for 16 yards.,21,30,2012 -20120923_NE@BAL,4,5,20,BAL,NE,1,10,42,(5:20) (No Huddle Shotgun) J.Flacco pass short left to D.Pitta to NE 37 for 5 yards (S.Moore).,21,30,2012 -20120923_NE@BAL,4,4,48,BAL,NE,2,5,37,(4:48) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to NE 10 for 27 yards (K.Arrington). NE-K.Arrington was injured during the play.,21,30,2012 -20120923_NE@BAL,4,4,21,BAL,NE,1,10,10,(4:21) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,21,30,2012 -20120923_NE@BAL,4,4,15,BAL,NE,2,10,10,(4:15) (No Huddle Shotgun) J.Flacco sacked at NE 22 for -12 yards (sack split by C.Jones and K.Love). PENALTY on NE-B.Spikes Defensive Holding 5 yards enforced at NE 10 - No Play.,21,30,2012 -20120923_NE@BAL,4,4,8,BAL,NE,1,5,5,(4:08) (No Huddle) J.Flacco pass short right to T.Smith for 5 yards TOUCHDOWN.,21,30,2012 -20120923_NE@BAL,4,4,8,BAL,NE,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,30,2012 -20120923_NE@BAL,4,4,8,BAL,NE,,,5,J.Tucker kicks 74 yards from BLT 35 to NE -9. D.McCourty Touchback.,28,30,2012 -20120923_NE@BAL,4,4,1,NE,BAL,1,10,80,(4:01) T.Brady pass incomplete short right to S.Ridley.,30,28,2012 -20120923_NE@BAL,4,3,57,NE,BAL,2,10,80,(3:57) (Shotgun) T.Brady pass short right to W.Welker to NE 31 for 11 yards (B.Pollard).,30,28,2012 -20120923_NE@BAL,4,3,15,NE,BAL,1,10,69,(3:15) S.Ridley left end to NE 32 for 1 yard (R.Lewis C.Upshaw).,30,28,2012 -20120923_NE@BAL,4,2,32,NE,BAL,2,9,68,(2:32) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,30,28,2012 -20120923_NE@BAL,4,2,28,NE,BAL,3,9,68,(2:28) (Shotgun) T.Brady pass short right intended for W.Welker INTERCEPTED by L.Webb at NE 40. L.Webb to NE 40 for no gain (R.Gronkowski). PENALTY on BLT-L.Webb Illegal Contact 5 yards enforced at NE 32 - No Play.,30,28,2012 -20120923_NE@BAL,4,2,23,NE,BAL,1,10,63,(2:23) S.Ridley left guard to NE 40 for 3 yards (A.McClellan). PENALTY on BLT Unsportsmanlike Conduct 15 yards enforced at NE 40. Unsportsmanlike conduct called on Baltimore Bench.,30,28,2012 -20120923_NE@BAL,4,2,18,NE,BAL,1,10,45,(2:18) S.Ridley right tackle to BLT 44 for 1 yard (R.Lewis J.McClain).,30,28,2012 -20120923_NE@BAL,4,2,12,NE,BAL,2,9,44,(2:12) (Shotgun) T.Brady sacked at NE 49 for -7 yards (sack split by D.Ellerbe and H.Ngata).,30,28,2012 -20120923_NE@BAL,4,2,6,NE,BAL,3,16,51,(2:06) (Shotgun) T.Brady pass incomplete short right to R.Gronkowski (B.Pollard) [P.Kruger].,30,28,2012 -20120923_NE@BAL,4,2,1,NE,BAL,4,16,51,(2:01) (Punt formation) Z.Mesko punts 30 yards to BLT 21 Center-D.Aiken. J.Jones MUFFS catch and recovers at BLT 21. J.Jones to BLT 21 for no gain (M.Slater).,30,28,2012 -20120923_NE@BAL,4,1,55,BAL,NE,1,10,79,(1:55) (Shotgun) J.Flacco pass deep right to J.Jones to BLT 45 for 24 yards (P.Chung).,28,30,2012 -20120923_NE@BAL,4,1,31,BAL,NE,1,10,55,(1:31) J.Flacco pass short right to D.Pitta to BLT 48 for 3 yards (T.Wilson).,28,30,2012 -20120923_NE@BAL,4,1,26,BAL,NE,2,7,52,(1:26) (No Huddle Shotgun) J.Flacco pass deep right to D.Pitta pushed ob at NE 35 for 17 yards (P.Chung).,28,30,2012 -20120923_NE@BAL,4,1,21,BAL,NE,1,10,35,(1:21) (No Huddle Shotgun) R.Rice up the middle to NE 34 for 1 yard (J.Cunningham R.Ninkovich).,28,30,2012 -20120923_NE@BAL,4,0,55,BAL,NE,2,9,34,(:55) (No Huddle Shotgun) J.Flacco pass incomplete deep left to A.Boldin.,28,30,2012 -20120923_NE@BAL,4,0,52,BAL,NE,3,9,34,(:52) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones. PENALTY on NE-D.McCourty Defensive Pass Interference 27 yards enforced at NE 34 - No Play.,28,30,2012 -20120923_NE@BAL,4,0,52,BAL,NE,1,7,7,(:52) J.Flacco kneels to NE 9 for -2 yards.,28,30,2012 -20120923_NE@BAL,4,0,2,BAL,NE,2,9,9,(:02) (Field Goal formation) J.Tucker 27 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,28,30,2012 -20120923_NE@BAL,4,0,2,BAL,NE,,,9,                      ,31,30,2012 -20120924_GB@SEA,1,0,0,GB,SEA,,,9,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,0,0,2012 -20120924_GB@SEA,1,60,0,SEA,GB,1,10,80,(15:00) M.Lynch left tackle to SEA 24 for 4 yards (A.Hawk; C.Wilson).,0,0,2012 -20120924_GB@SEA,1,59,25,SEA,GB,2,6,76,(14:25) M.Lynch right tackle to SEA 28 for 4 yards (R.Pickett; B.Raji).,0,0,2012 -20120924_GB@SEA,1,58,45,SEA,GB,3,2,72,(13:45) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 28 - No Play.,0,0,2012 -20120924_GB@SEA,1,58,17,SEA,GB,3,7,77,(13:17) (Shotgun) R.Wilson pass incomplete short right to B.Obomanu.,0,0,2012 -20120924_GB@SEA,1,58,11,SEA,GB,4,7,77,(13:11) J.Ryan punts 42 yards to GB 35 Center-C.Gresham fair catch by R.Cobb.,0,0,2012 -20120924_GB@SEA,1,58,3,GB,SEA,1,10,65,(13:03) (Shotgun) A.Rodgers scrambles up the middle to SEA 49 for 16 yards.,0,0,2012 -20120924_GB@SEA,1,57,23,GB,SEA,1,10,49,(12:23) A.Rodgers pass short right to C.Benson to SEA 49 for no gain (K.Wright).,0,0,2012 -20120924_GB@SEA,1,56,43,GB,SEA,2,10,49,(11:43) C.Benson left end to SEA 49 for no gain (R.Bryant).,0,0,2012 -20120924_GB@SEA,1,56,2,GB,SEA,3,10,49,(11:02) (Shotgun) A.Rodgers sacked at GB 48 for -3 yards (B.Irvin).,0,0,2012 -20120924_GB@SEA,1,55,46,GB,SEA,4,13,52,(10:46) T.Masthay punts 43 yards to SEA 9 Center-B.Goode downed by GB-M.Jennings.,0,0,2012 -20120924_GB@SEA,1,55,36,SEA,GB,1,10,91,(10:36) (Shotgun) R.Wilson pass short left to B.Obomanu to SEA 17 for 8 yards (D.Smith).,0,0,2012 -20120924_GB@SEA,1,55,4,SEA,GB,2,2,83,(10:04) R.Wilson pass short right to C.Martin to SEA 27 for 10 yards (A.Hawk).,0,0,2012 -20120924_GB@SEA,1,54,25,SEA,GB,1,10,73,(9:25) R.Wilson pass short right to A.McCoy pushed ob at SEA 36 for 9 yards (N.Perry).,0,0,2012 -20120924_GB@SEA,1,53,58,SEA,GB,2,1,64,(8:58) M.Lynch right guard to SEA 44 for 8 yards (N.Perry T.Williams).,0,0,2012 -20120924_GB@SEA,1,53,14,SEA,GB,1,10,56,(8:14) PENALTY on SEA-A.McCoy False Start 5 yards enforced at SEA 44 - No Play.,0,0,2012 -20120924_GB@SEA,1,52,45,SEA,GB,1,15,61,(7:45) M.Lynch right tackle to SEA 45 for 6 yards (C.Wilson).,0,0,2012 -20120924_GB@SEA,1,52,10,SEA,GB,2,9,55,(7:10) R.Wilson pass incomplete deep left to S.Rice (S.Shields). PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at SEA 45 - No Play.,0,0,2012 -20120924_GB@SEA,1,52,4,SEA,GB,1,10,50,(7:04) R.Wilson pass incomplete short right to A.McCoy [E.Walden].,0,0,2012 -20120924_GB@SEA,1,51,58,SEA,GB,2,10,50,(6:58) M.Lynch right tackle to GB 44 for 6 yards (C.Matthews; C.Woodson).,0,0,2012 -20120924_GB@SEA,1,51,13,SEA,GB,3,4,44,(6:13) (Shotgun) R.Wilson pass incomplete short right to B.Obomanu (J.McMillian).,0,0,2012 -20120924_GB@SEA,1,51,9,SEA,GB,4,4,44,(6:09) J.Ryan punts 43 yards to GB 1 Center-C.Gresham downed by SEA-B.Obomanu.,0,0,2012 -20120924_GB@SEA,1,50,59,GB,SEA,1,10,99,(5:59) A.Rodgers pass incomplete deep left to G.Jennings (B.Browner).,0,0,2012 -20120924_GB@SEA,1,50,54,GB,SEA,2,10,99,(5:54) (Shotgun) A.Rodgers pass short right to D.Williams pushed ob at GB 12 for 11 yards (L.Hill).,0,0,2012 -20120924_GB@SEA,1,50,28,GB,SEA,1,10,88,(5:28) A.Rodgers pass short left to J.Nelson to GB 18 for 6 yards (E.Thomas; B.Browner).,0,0,2012 -20120924_GB@SEA,1,49,47,GB,SEA,2,4,82,(4:47) A.Rodgers sacked at GB 12 for -6 yards (B.Mebane).,0,0,2012 -20120924_GB@SEA,1,49,18,GB,SEA,3,10,88,(4:18) (Shotgun) A.Rodgers pass short left to J.Kuhn to GB 21 for 9 yards (L.Hill; K.Wright). PENALTY on SEA-C.Clemons Defensive Offside 5 yards enforced at GB 12 - No Play.,0,0,2012 -20120924_GB@SEA,1,49,0,GB,SEA,3,5,83,(4:00) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 24 for 7 yards (L.Hill; K.Chancellor).,0,0,2012 -20120924_GB@SEA,1,48,22,GB,SEA,1,10,76,(3:22) A.Rodgers pass short middle to C.Benson to GB 32 for 8 yards (B.Wagner). PENALTY on GB-J.Sitton Illegal Use of Hands 10 yards enforced at GB 24 - No Play.,0,0,2012 -20120924_GB@SEA,1,47,57,GB,SEA,1,20,86,(2:57) (Shotgun) A.Rodgers pass incomplete short right to C.Benson.,0,0,2012 -20120924_GB@SEA,1,47,52,GB,SEA,2,20,86,(2:52) (Shotgun) A.Rodgers sacked at GB 8 for -6 yards (B.Irvin).,0,0,2012 -20120924_GB@SEA,1,47,22,GB,SEA,3,26,92,(2:22) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 21 for 13 yards (K.Wright).,0,0,2012 -20120924_GB@SEA,1,46,52,GB,SEA,4,13,79,(1:52) T.Masthay punts 51 yards to SEA 28 Center-B.Goode downed by GB-J.Bush. PENALTY on GB-B.Saine Ineligible Downfield Kick 5 yards enforced at GB 21 - No Play.,0,0,2012 -20120924_GB@SEA,1,46,39,GB,SEA,4,18,84,(1:39) T.Masthay punts 48 yards to SEA 36 Center-B.Goode fair catch by L.Washington.,0,0,2012 -20120924_GB@SEA,1,46,31,SEA,GB,1,10,64,(1:31) M.Lynch right tackle to SEA 38 for 2 yards (R.Pickett; A.Hawk).,0,0,2012 -20120924_GB@SEA,1,45,55,SEA,GB,2,8,62,(:55) R.Wilson pass short left to M.Lynch to SEA 39 for 1 yard (A.Hawk).,0,0,2012 -20120924_GB@SEA,1,45,15,SEA,GB,3,7,61,(:15) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,0,0,2012 -20120924_GB@SEA,1,45,7,SEA,GB,4,7,61,(:07) J.Ryan punts 41 yards to GB 20 Center-C.Gresham. R.Cobb to GB 22 for 2 yards (J.Lane; B.Obomanu). PENALTY on SEA-M.Smith Unnecessary Roughness 15 yards enforced at GB 22.,0,0,2012 -20120924_GB@SEA,2,45,0,GB,SEA,1,10,63,(15:00) A.Rodgers pass short right to C.Benson to GB 45 for 8 yards (B.Wagner).,0,0,2012 -20120924_GB@SEA,2,44,25,GB,SEA,2,2,55,(14:25) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 46 for 1 yard (K.Chancellor).,0,0,2012 -20120924_GB@SEA,2,43,40,GB,SEA,3,1,54,(13:40) A.Rodgers sacked at GB 40 for -6 yards (C.Clemons).,0,0,2012 -20120924_GB@SEA,2,43,22,GB,SEA,4,7,60,(13:22) T.Masthay punts 43 yards to SEA 17 Center-B.Goode fair catch by L.Washington.,0,0,2012 -20120924_GB@SEA,2,43,14,SEA,GB,1,10,83,(13:14) M.Lynch left tackle to SEA 22 for 5 yards (R.Pickett; S.Shields).,0,0,2012 -20120924_GB@SEA,2,42,36,SEA,GB,2,5,78,(12:36) M.Lynch left tackle to SEA 22 for no gain (B.Raji).,0,0,2012 -20120924_GB@SEA,2,41,56,SEA,GB,3,5,78,(11:56) (Shotgun) R.Wilson pass incomplete short right to G.Tate (C.Hayward).,0,0,2012 -20120924_GB@SEA,2,41,52,SEA,GB,4,5,78,(11:52) J.Ryan punts 65 yards to GB 13 Center-C.Gresham. R.Cobb MUFFS catch and recovers at GB 5. R.Cobb to GB 11 for 6 yards (M.Smith; H.Farwell).,0,0,2012 -20120924_GB@SEA,2,41,38,GB,SEA,1,10,89,(11:38) (Shotgun) R.Cobb left end pushed ob at GB 31 for 20 yards (B.Browner).,0,0,2012 -20120924_GB@SEA,2,41,14,GB,SEA,1,10,69,(11:14) A.Rodgers pass short right to G.Jennings to GB 44 for 13 yards (B.Wagner).,0,0,2012 -20120924_GB@SEA,2,40,29,GB,SEA,1,10,56,(10:29) C.Benson right end to GB 48 for 4 yards (R.Bryant; B.Wagner).,0,0,2012 -20120924_GB@SEA,2,39,50,GB,SEA,2,6,52,(9:50) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb.,0,0,2012 -20120924_GB@SEA,2,39,47,GB,SEA,3,6,52,(9:47) (Shotgun) A.Rodgers sacked at GB 42 for -6 yards (C.Clemons). Penalty on GB-B.Bulaga Offensive Holding declined.,0,0,2012 -20120924_GB@SEA,2,39,34,GB,SEA,4,12,58,(9:34) T.Masthay punts 37 yards to SEA 21 Center-B.Goode. L.Washington to SEA 27 for 6 yards (D.Williams; J.Bush).,0,0,2012 -20120924_GB@SEA,2,39,24,SEA,GB,1,10,73,(9:24) R.Wilson scrambles left end to SEA 38 for 11 yards (S.Shields). PENALTY on SEA-P.McQuistan Offensive Holding 10 yards enforced at SEA 27 - No Play. Penalty on SEA-R.Okung Offensive Holding declined.,0,0,2012 -20120924_GB@SEA,2,38,55,SEA,GB,1,20,83,(8:55) Unabated to QB. (Shotgun) PENALTY on GB-J.Worthy Defensive Offside 5 yards enforced at SEA 17 - No Play.,0,0,2012 -20120924_GB@SEA,2,38,42,SEA,GB,1,15,78,(8:42) M.Lynch right tackle to SEA 30 for 8 yards (D.Smith; C.Woodson).,0,0,2012 -20120924_GB@SEA,2,38,5,SEA,GB,2,7,70,(8:05) M.Lynch right tackle to SEA 33 for 3 yards (P.Merling; R.Pickett).,0,0,2012 -20120924_GB@SEA,2,37,23,SEA,GB,3,4,67,(7:23) (Shotgun) R.Wilson scrambles right end ran ob at SEA 40 for 7 yards.,0,0,2012 -20120924_GB@SEA,2,36,54,SEA,GB,1,10,60,(6:54) M.Lynch left tackle to SEA 44 for 4 yards (A.Hawk). PENALTY on GB-D.Smith Unnecessary Roughness 15 yards enforced at SEA 44.,0,0,2012 -20120924_GB@SEA,2,36,29,SEA,GB,1,10,41,(6:29) R.Wilson pass deep right to G.Tate for 41 yards TOUCHDOWN.,0,0,2012 -20120924_GB@SEA,2,36,29,SEA,GB,,,41,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120924_GB@SEA,2,36,29,SEA,GB,,,41,S.Hauschka kicks 64 yards from SEA 35 to GB 1. R.Cobb to GB 24 for 23 yards (J.Johnson; S.Hauschka).,7,0,2012 -20120924_GB@SEA,2,36,15,GB,SEA,1,10,76,(6:15) A.Rodgers pass short right to J.Finley to GB 29 for 5 yards (K.Chancellor) [A.Branch].,0,7,2012 -20120924_GB@SEA,2,35,38,GB,SEA,2,5,71,(5:38) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 28 for -1 yards (J.Johnson).,0,7,2012 -20120924_GB@SEA,2,34,58,GB,SEA,3,6,72,(4:58) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 42 for 14 yards (K.Wright).,0,7,2012 -20120924_GB@SEA,2,34,20,GB,SEA,1,10,58,(4:20) A.Rodgers sacked at GB 38 for -4 yards (B.Mebane). PENALTY on SEA-B.Mebane Face Mask (15 Yards) 15 yards enforced at GB 38.,0,7,2012 -20120924_GB@SEA,2,33,55,GB,SEA,1,10,47,(3:55) (Shotgun) A.Rodgers pass incomplete short middle. PENALTY on GB-J.Saturday Offensive Holding 10 yards enforced at SEA 47 - No Play.,0,7,2012 -20120924_GB@SEA,2,33,51,GB,SEA,1,20,57,(3:51) (Shotgun) A.Rodgers sacked at GB 36 for -7 yards (C.Clemons).,0,7,2012 -20120924_GB@SEA,2,33,21,GB,SEA,2,27,64,(3:21) (Shotgun) A.Rodgers sacked at GB 35 for -1 yards (C.Clemons).,0,7,2012 -20120924_GB@SEA,2,32,46,GB,SEA,3,28,65,(2:46) (Shotgun) A.Rodgers pass short right to J.Kuhn to GB 44 for 9 yards (K.Wright).,0,7,2012 -20120924_GB@SEA,2,32,28,GB,SEA,4,19,56,(2:28) T.Masthay punts 55 yards to SEA 1 Center-B.Goode downed by GB-J.Bush.,0,7,2012 -20120924_GB@SEA,2,32,17,SEA,GB,1,10,99,(2:17) M.Lynch left tackle to SEA 5 for 4 yards (R.Pickett; C.Matthews).,7,0,2012 -20120924_GB@SEA,2,32,0,SEA,GB,2,6,95,(2:00) M.Lynch right tackle to SEA 5 for no gain (M.Burnett; E.Walden).,7,0,2012 -20120924_GB@SEA,2,31,19,SEA,GB,3,6,95,(1:19) M.Lynch right tackle to SEA 14 for 9 yards (C.Woodson).,7,0,2012 -20120924_GB@SEA,2,31,5,SEA,GB,1,10,86,(1:05) M.Lynch right tackle to SEA 20 for 6 yards (E.Walden).,7,0,2012 -20120924_GB@SEA,2,30,32,SEA,GB,2,4,80,(:32) M.Lynch left tackle to SEA 22 for 2 yards (R.Pickett; S.Shields).,7,0,2012 -20120924_GB@SEA,3,30,0,SEA,GB,,,80,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,7,0,2012 -20120924_GB@SEA,3,30,0,GB,SEA,1,10,80,(15:00) C.Benson right tackle to GB 26 for 6 yards (B.Mebane).,0,7,2012 -20120924_GB@SEA,3,29,27,GB,SEA,2,4,74,(14:27) C.Benson up the middle to GB 34 for 8 yards (B.Wagner R.Sherman).,0,7,2012 -20120924_GB@SEA,3,28,56,GB,SEA,1,10,66,(13:56) A.Rodgers pass incomplete short right to D.Williams.,0,7,2012 -20120924_GB@SEA,3,28,51,GB,SEA,2,10,66,(13:51) C.Benson right tackle to GB 40 for 6 yards (K.Wright).,0,7,2012 -20120924_GB@SEA,3,28,9,GB,SEA,3,4,60,(13:09) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 45 for 5 yards (K.Chancellor).,0,7,2012 -20120924_GB@SEA,3,27,31,GB,SEA,1,10,55,(12:31) C.Benson up the middle to SEA 46 for 9 yards (B.Browner).,0,7,2012 -20120924_GB@SEA,3,26,57,GB,SEA,2,1,46,(11:57) C.Benson left guard to SEA 43 for 3 yards (B.Wagner).,0,7,2012 -20120924_GB@SEA,3,26,22,GB,SEA,1,10,43,(11:22) A.Rodgers pass incomplete short middle to J.Finley (E.Thomas) [B.Wagner]. PENALTY on SEA-B.Wagner Roughing the Passer 15 yards enforced at SEA 43 - No Play.,0,7,2012 -20120924_GB@SEA,3,26,18,GB,SEA,1,10,28,(11:18) C.Benson right tackle to SEA 25 for 3 yards (C.McDonald).,0,7,2012 -20120924_GB@SEA,3,25,39,GB,SEA,2,7,25,(10:39) (Shotgun) A.Rodgers pass short right to C.Benson to SEA 20 for 5 yards (L.Hill).,0,7,2012 -20120924_GB@SEA,3,24,59,GB,SEA,3,2,20,(9:59) PENALTY on SEA Defensive 12 On-field 5 yards enforced at SEA 20 - No Play.,0,7,2012 -20120924_GB@SEA,3,24,43,GB,SEA,1,10,15,(9:43) C.Benson right tackle to SEA 16 for -1 yards (K.Wright).,0,7,2012 -20120924_GB@SEA,3,24,5,GB,SEA,2,11,16,(9:05) A.Rodgers pass short right to J.Kuhn to SEA 10 for 6 yards (R.Sherman).,0,7,2012 -20120924_GB@SEA,3,23,20,GB,SEA,3,5,10,(8:20) (Shotgun) A.Rodgers pass incomplete short middle to D.Driver.,0,7,2012 -20120924_GB@SEA,3,23,11,GB,SEA,4,5,10,(8:11) M.Crosby 29 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,7,2012 -20120924_GB@SEA,3,23,11,GB,SEA,,,10,M.Crosby kicks 59 yards from GB 35 to SEA 6. L.Washington to SEA 27 for 21 yards (R.Taylor). PENALTY on GB-R.Francois Unnecessary Roughness 15 yards enforced at SEA 27.,3,7,2012 -20120924_GB@SEA,3,23,1,SEA,GB,1,10,58,(8:01) PENALTY on SEA-A.McCoy False Start 5 yards enforced at SEA 42 - No Play.,7,3,2012 -20120924_GB@SEA,3,23,1,SEA,GB,1,15,63,(8:01) M.Lynch right tackle to SEA 39 for 2 yards (R.Pickett; N.Perry).,7,3,2012 -20120924_GB@SEA,3,22,23,SEA,GB,2,13,61,(7:23) R.Wilson sacked at SEA 20 for -19 yards (N.Perry).,7,3,2012 -20120924_GB@SEA,3,21,48,SEA,GB,3,32,80,(6:48) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 20 - No Play.,7,3,2012 -20120924_GB@SEA,3,21,38,SEA,GB,3,37,85,(6:38) L.Washington left tackle to SEA 26 for 11 yards (E.Walden).,7,3,2012 -20120924_GB@SEA,3,21,5,SEA,GB,4,26,74,(6:05) J.Ryan punts 66 yards to GB 8 Center-C.Gresham. R.Cobb to GB 12 for 4 yards (C.Maragos; H.Farwell).,7,3,2012 -20120924_GB@SEA,3,20,50,GB,SEA,1,10,88,(5:50) C.Benson right tackle to GB 17 for 5 yards (R.Bryant).,3,7,2012 -20120924_GB@SEA,3,20,14,GB,SEA,2,5,83,(5:14) A.Rodgers pass incomplete short left to J.Kuhn [B.Mebane].,3,7,2012 -20120924_GB@SEA,3,20,10,GB,SEA,3,5,83,(5:10) (Shotgun) A.Rodgers pass deep left to J.Finley to GB 48 for 31 yards (E.Thomas).,3,7,2012 -20120924_GB@SEA,3,19,33,GB,SEA,1,10,52,(4:33) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones to SEA 43 for 9 yards (M.Trufant; K.Wright).,3,7,2012 -20120924_GB@SEA,3,19,9,GB,SEA,2,1,43,(4:09) (No Huddle) A.Rodgers pass short left to G.Jennings to SEA 39 for 4 yards (M.Trufant).,3,7,2012 -20120924_GB@SEA,3,18,45,GB,SEA,1,10,39,(3:45) (Shotgun) A.Rodgers pass short right to G.Jennings to SEA 36 for 3 yards (K.Chancellor).,3,7,2012 -20120924_GB@SEA,3,18,9,GB,SEA,2,7,36,(3:09) C.Benson right end to SEA 34 for 2 yards (L.Hill; K.Chancellor).,3,7,2012 -20120924_GB@SEA,3,17,27,GB,SEA,3,5,34,(2:27) (Shotgun) C.Benson right end to SEA 30 for 4 yards (K.Wright). PENALTY on SEA-B.Browner Illegal Use of Hands 5 yards enforced at SEA 34 - No Play.,3,7,2012 -20120924_GB@SEA,3,17,0,GB,SEA,1,10,29,(2:00) (Shotgun) C.Benson up the middle to SEA 22 for 7 yards (K.Wright C.McDonald).,3,7,2012 -20120924_GB@SEA,3,16,27,GB,SEA,2,3,22,(1:27) A.Rodgers pass incomplete short left to G.Jennings (C.Clemons).,3,7,2012 -20120924_GB@SEA,3,16,23,GB,SEA,3,3,22,(1:23) (Shotgun) A.Rodgers pass incomplete short right to J.Finley (R.Sherman).,3,7,2012 -20120924_GB@SEA,3,16,18,GB,SEA,4,3,22,(1:18) M.Crosby 40 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,3,7,2012 -20120924_GB@SEA,3,16,18,GB,SEA,,,22,M.Crosby kicks 69 yards from GB 35 to SEA -4. L.Washington to SEA 17 for 21 yards (C.Hayward B.Saine).,6,7,2012 -20120924_GB@SEA,3,16,8,SEA,GB,1,10,83,(1:08) M.Lynch left tackle to SEA 20 for 3 yards (D.Smith; A.Hawk).,7,6,2012 -20120924_GB@SEA,3,15,27,SEA,GB,2,7,80,(:27) J.Sweezy reported in as eligible. M.Lynch right tackle to SEA 22 for 2 yards (C.Wilson; A.Hawk).,7,6,2012 -20120924_GB@SEA,4,15,0,SEA,GB,3,5,78,(15:00) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,7,6,2012 -20120924_GB@SEA,4,14,55,SEA,GB,4,5,78,(14:55) J.Ryan punts 44 yards to GB 34 Center-C.Gresham fair catch by R.Cobb. PENALTY on GB-J.Bush Unnecessary Roughness 15 yards enforced at GB 34.,7,6,2012 -20120924_GB@SEA,4,14,46,GB,SEA,1,10,81,(14:46) A.Rodgers pass incomplete short right [A.Branch].,6,7,2012 -20120924_GB@SEA,4,14,39,GB,SEA,2,10,81,(14:39) C.Benson right tackle to GB 19 for no gain (B.Wagner B.Mebane).,6,7,2012 -20120924_GB@SEA,4,13,57,GB,SEA,3,10,81,(13:57) (Shotgun) A.Rodgers pass short right to J.Finley to GB 32 for 13 yards (K.Wright).,6,7,2012 -20120924_GB@SEA,4,13,34,GB,SEA,1,10,68,(13:34) (No Huddle) A.Rodgers pass incomplete short left to G.Jennings.,6,7,2012 -20120924_GB@SEA,4,13,29,GB,SEA,2,10,68,(13:29) A.Rodgers pass incomplete short left to Ja.Jones.,6,7,2012 -20120924_GB@SEA,4,13,24,GB,SEA,3,10,68,(13:24) (Shotgun) A.Rodgers pass short right to Ja.Jones to GB 45 for 13 yards (R.Sherman; E.Thomas) [B.Irvin].,6,7,2012 -20120924_GB@SEA,4,12,49,GB,SEA,1,10,55,(12:49) C.Benson left tackle to GB 42 for -3 yards (K.Wright; K.Chancellor).,6,7,2012 -20120924_GB@SEA,4,12,9,GB,SEA,2,13,58,(12:09) (Shotgun) A.Rodgers pass short middle to J.Finley to SEA 47 for 11 yards (M.Trufant).,6,7,2012 -20120924_GB@SEA,4,11,31,GB,SEA,3,2,47,(11:31) (Shotgun) A.Rodgers pass incomplete short right to J.Finley. PENALTY on SEA-K.Chancellor Defensive Pass Interference 8 yards enforced at SEA 47 - No Play.,6,7,2012 -20120924_GB@SEA,4,11,28,GB,SEA,1,10,39,(11:28) A.Rodgers pass incomplete short left to J.Nelson.,6,7,2012 -20120924_GB@SEA,4,11,21,GB,SEA,2,10,39,(11:21) (Shotgun) A.Rodgers pass short right to Ja.Jones to SEA 27 for 12 yards (R.Sherman).,6,7,2012 -20120924_GB@SEA,4,10,41,GB,SEA,1,10,27,(10:41) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to SEA 21 for 6 yards (K.Chancellor). Penalty on GB-G.Jennings Unsportsmanlike Conduct offsetting. Penalty on SEA-B.Browner Unsportsmanlike Conduct offsetting.,6,7,2012 -20120924_GB@SEA,4,10,16,GB,SEA,2,4,21,(10:16) A.Rodgers pass short middle to J.Kuhn to SEA 11 for 10 yards (K.Wright).,6,7,2012 -20120924_GB@SEA,4,9,42,GB,SEA,1,10,11,(9:42) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings.,6,7,2012 -20120924_GB@SEA,4,9,38,GB,SEA,2,10,11,(9:38) (Shotgun) A.Rodgers pass short right to G.Jennings for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. (Shotgun) A.Rodgers pass short right to G.Jennings ran ob at SEA 2 for 9 yards.,6,7,2012 -20120924_GB@SEA,4,9,24,GB,SEA,3,1,2,(9:24) A.Rodgers sacked at SEA 2 for 0 yards (C.McDonald B.Wagner). Green Bay challenged the first down ruling and the play was REVERSED. A.Rodgers scrambles right tackle to SEA 1 for 1 yard (C.McDonald B.Wagner).,6,7,2012 -20120924_GB@SEA,4,8,53,GB,SEA,1,1,1,(8:53) C.Benson up the middle for 1 yard TOUCHDOWN.,6,7,2012 -20120924_GB@SEA,4,8,53,GB,SEA,,,1,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to Ja.Jones is incomplete. ATTEMPT FAILS. Thrown from shotgun formation. SS #39 pass defense.,6,7,2012 -20120924_GB@SEA,4,8,53,GB,SEA,,,1,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,12,7,2012 -20120924_GB@SEA,4,8,44,SEA,GB,1,10,80,(8:44) R.Wilson pass intended for E.Moore INTERCEPTED by J.McMillian [E.Walden] at SEA 26. J.McMillian ran ob at SEA 26 for no gain. PENALTY on GB-E.Walden Roughing the Passer 15 yards enforced at SEA 20 - No Play.,7,12,2012 -20120924_GB@SEA,4,8,36,SEA,GB,1,10,65,(8:36) M.Lynch left tackle to SEA 41 for 6 yards (R.Pickett).,7,12,2012 -20120924_GB@SEA,4,8,10,SEA,GB,2,4,59,(8:10) M.Lynch up the middle to SEA 46 for 5 yards (E.Walden; C.Matthews).,7,12,2012 -20120924_GB@SEA,4,7,29,SEA,GB,1,10,54,(7:29) R.Wilson scrambles up the middle to GB 42 for 12 yards.,7,12,2012 -20120924_GB@SEA,4,6,42,SEA,GB,1,10,42,(6:42) J.Sweezy reported in as eligible. M.Lynch right tackle to GB 40 for 2 yards (S.Shields). PENALTY on SEA-R.Okung Offensive Holding 10 yards enforced at GB 42 - No Play.,7,12,2012 -20120924_GB@SEA,4,6,28,SEA,GB,1,20,52,(6:28) M.Lynch right tackle to GB 47 for 5 yards (A.Hawk). PENALTY on SEA-B.Obomanu Offensive Holding 10 yards enforced at GB 47.,7,12,2012 -20120924_GB@SEA,4,6,14,SEA,GB,1,25,57,(6:14) R.Wilson pass incomplete deep right to S.Rice. PENALTY on GB-S.Shields Defensive Pass Interference 32 yards enforced at SEA 43 - No Play.,7,12,2012 -20120924_GB@SEA,4,6,10,SEA,GB,1,10,25,(6:10) (Shotgun) R.Wilson pass short right to Z.Miller to GB 17 for 8 yards (A.Hawk).,7,12,2012 -20120924_GB@SEA,4,5,46,SEA,GB,2,2,17,(5:46) M.Lynch right guard to GB 16 for 1 yard (A.Hawk; R.Pickett).,7,12,2012 -20120924_GB@SEA,4,5,0,SEA,GB,3,1,16,(5:00) R.Wilson right tackle to GB 17 for -1 yards (D.Smith). Option run.,7,12,2012 -20120924_GB@SEA,4,4,21,SEA,GB,4,2,17,(4:21) M.Lynch left guard to GB 14 for 3 yards (B.Raji; M.Burnett).,7,12,2012 -20120924_GB@SEA,4,3,38,SEA,GB,1,10,14,(3:38) R.Wilson pass short right to Z.Miller to GB 10 for 4 yards (D.Smith).,7,12,2012 -20120924_GB@SEA,4,3,2,SEA,GB,2,6,10,(3:02) M.Lynch left guard to GB 10 for no gain (E.Walden; A.Hawk).,7,12,2012 -20120924_GB@SEA,4,2,22,SEA,GB,3,6,10,(2:22) (Shotgun) R.Wilson pass short middle to G.Tate to GB 7 for 3 yards (C.Hayward).,7,12,2012 -20120924_GB@SEA,4,2,0,SEA,GB,4,3,7,(2:00) (Shotgun) R.Wilson pass incomplete short left to G.Tate.,7,12,2012 -20120924_GB@SEA,4,1,54,GB,SEA,1,10,93,(1:54) C.Benson up the middle to GB 2 for -5 yards (E.Thomas). FUMBLES (E.Thomas) recovered by GB-J.Saturday at GB 2. J.Saturday to GB 2 for no gain (K.Chancellor).,12,7,2012 -20120924_GB@SEA,4,1,45,GB,SEA,2,15,98,(1:45) C.Benson right guard to GB 2 for no gain (K.Chancellor).,12,7,2012 -20120924_GB@SEA,4,1,41,GB,SEA,3,15,98,(1:41) J.Kuhn up the middle to GB 4 for 2 yards (B.Wagner; L.Hill).,12,7,2012 -20120924_GB@SEA,4,0,57,GB,SEA,4,13,96,(:57) T.Masthay punts 41 yards to GB 45 Center-B.Goode. L.Washington to GB 46 for -1 yards (R.Francois; D.Moses).,12,7,2012 -20120924_GB@SEA,4,0,46,SEA,GB,1,10,46,(:46) (Shotgun) R.Wilson pass incomplete deep middle to E.Moore (C.Woodson).,7,12,2012 -20120924_GB@SEA,4,0,41,SEA,GB,2,10,46,(:41) (Shotgun) R.Wilson pass deep right to S.Rice to GB 24 for 22 yards (T.Williams).,7,12,2012 -20120924_GB@SEA,4,0,24,SEA,GB,1,10,24,(:24) (No Huddle Shotgun) R.Wilson pass incomplete deep left to G.Tate (S.Shields).,7,12,2012 -20120924_GB@SEA,4,0,18,SEA,GB,2,10,24,(:18) (Shotgun) R.Wilson pass incomplete deep middle to E.Moore.,7,12,2012 -20120924_GB@SEA,4,0,12,SEA,GB,3,10,24,(:12) (Shotgun) R.Wilson pass incomplete deep right to G.Tate.,7,12,2012 -20120924_GB@SEA,4,0,8,SEA,GB,4,10,24,(:08) (Shotgun) R.Wilson pass deep left to G.Tate for 24 yards TOUCHDOWN [C.Matthews]. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,7,12,2012 -20120924_GB@SEA,4,0,8,SEA,GB,,,24,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,12,2012 -20120924_GB@SEA,4,0,8,SEA,GB,,,24,                      ,14,12,2012 -20120927_CLE@BAL,1,0,0,BAL,CLE,,,24,J.Tucker kicks 74 yards from BLT 35 to CLV -9. J.Cribbs Touchback.,0,0,2012 -20120927_CLE@BAL,1,60,0,CLE,BAL,1,10,80,(15:00) T.Richardson right guard to CLV 27 for 7 yards (R.Lewis J.McClain).,0,0,2012 -20120927_CLE@BAL,1,59,32,CLE,BAL,2,3,73,(14:32) B.Weeden pass short left to G.Little to CLV 34 for 7 yards (C.Williams).,0,0,2012 -20120927_CLE@BAL,1,59,3,CLE,BAL,1,10,66,(14:03) (Shotgun) B.Weeden pass incomplete short right to G.Little.,0,0,2012 -20120927_CLE@BAL,1,58,57,CLE,BAL,2,10,66,(13:57) T.Richardson left tackle to CLV 37 for 3 yards (D.Ellerbe).,0,0,2012 -20120927_CLE@BAL,1,58,20,CLE,BAL,3,7,63,(13:20) (Shotgun) B.Weeden pass incomplete short left to C.Ogbonnaya (P.Kruger) [R.Lewis].,0,0,2012 -20120927_CLE@BAL,1,58,16,CLE,BAL,4,7,63,(13:16) (Punt formation) R.Hodges punts 33 yards to BLT 30 Center-C.Yount out of bounds.,0,0,2012 -20120927_CLE@BAL,1,58,8,BAL,CLE,1,10,70,(13:08) J.Flacco pass incomplete deep left to T.Smith.,0,0,2012 -20120927_CLE@BAL,1,58,8,BAL,CLE,2,10,70,(13:08) (No Huddle) R.Rice left guard to BLT 40 for 10 yards (U.Young S.Brown).,0,0,2012 -20120927_CLE@BAL,1,57,29,BAL,CLE,1,10,60,(12:29) (No Huddle) J.Flacco pass short left to V.Leach to BLT 47 for 7 yards (K.Maiava). PENALTY on CLV-S.Brown Illegal Contact 5 yards enforced at BLT 40 - No Play.,0,0,2012 -20120927_CLE@BAL,1,57,4,BAL,CLE,1,10,55,(12:04) J.Flacco pass incomplete short right to T.Smith.,0,0,2012 -20120927_CLE@BAL,1,56,59,BAL,CLE,2,10,55,(11:59) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 47 for 8 yards (D.Patterson D.Jackson).,0,0,2012 -20120927_CLE@BAL,1,56,24,BAL,CLE,3,2,47,(11:24) R.Rice left tackle to CLV 47 for no gain (B.Winn F.Rucker). Penalty on BLT-M.Oher Offensive Holding declined.,0,0,2012 -20120927_CLE@BAL,1,56,12,BAL,CLE,4,2,47,(11:12) (Punt formation) S.Koch punts 47 yards to end zone Center-M.Cox Touchback.,0,0,2012 -20120927_CLE@BAL,1,56,4,CLE,BAL,1,10,80,(11:04) (Shotgun) B.Weeden pass short right to J.Cribbs to CLV 22 for 2 yards (L.Webb A.McClellan).,0,0,2012 -20120927_CLE@BAL,1,55,36,CLE,BAL,2,8,78,(10:36) T.Richardson left tackle to CLV 25 for 3 yards (T.Cody C.Upshaw).,0,0,2012 -20120927_CLE@BAL,1,54,48,CLE,BAL,3,5,75,(9:48) B.Weeden pass short middle to J.Cribbs to CLV 34 for 9 yards (D.Ellerbe C.Upshaw) [R.Lewis].,0,0,2012 -20120927_CLE@BAL,1,54,4,CLE,BAL,1,10,66,(9:04) G.Little left end to CLV 32 for -2 yards (A.McClellan).,0,0,2012 -20120927_CLE@BAL,1,53,20,CLE,BAL,2,12,68,(8:20) T.Richardson left tackle to CLV 32 for no gain (P.McPhee).,0,0,2012 -20120927_CLE@BAL,1,52,45,CLE,BAL,3,12,68,(7:45) (Shotgun) B.Weeden pass incomplete short right to J.Cameron (D.Ellerbe).,0,0,2012 -20120927_CLE@BAL,1,52,43,CLE,BAL,4,12,68,(7:43) (Punt formation) R.Hodges punts 44 yards to BLT 24 Center-C.Yount fair catch by J.Jones.,0,0,2012 -20120927_CLE@BAL,1,52,35,BAL,CLE,1,10,76,(7:35) T.Smith right end to BLT 24 for no gain. Reverse,0,0,2012 -20120927_CLE@BAL,1,52,2,BAL,CLE,2,10,76,(7:02) (No Huddle) R.Rice right guard to BLT 28 for 4 yards (J.Hughes F.Rucker). PENALTY on BLT Illegal Formation 5 yards enforced at BLT 24 - No Play.,0,0,2012 -20120927_CLE@BAL,1,51,40,BAL,CLE,2,15,81,(6:40) (Shotgun) R.Rice up the middle to BLT 17 for -2 yards (B.Winn).,0,0,2012 -20120927_CLE@BAL,1,51,10,BAL,CLE,3,17,83,(6:10) (No Huddle Shotgun) PENALTY on BLT-K.Osemele False Start 5 yards enforced at BLT 17 - No Play.,0,0,2012 -20120927_CLE@BAL,1,50,54,BAL,CLE,3,22,88,(5:54) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 20 for 8 yards (A.Rubin).,0,0,2012 -20120927_CLE@BAL,1,50,18,BAL,CLE,4,14,80,(5:18) (Punt formation) S.Koch punts 54 yards to CLV 26 Center-M.Cox. J.Cribbs to CLV 40 for 14 yards (D.Ellerbe). FUMBLES (D.Ellerbe) RECOVERED by BLT-J.McClain at CLV 40. J.McClain to CLV 40 for no gain (K.Maiava). Penalty on BLT-J.Ihedigbo Personal Foul offsetting enforced at CLV 40. Penalty on CLV-J.Bademosi Personal Foul offsetting. #16 Josh Cribbs for Cleveland injured on the play The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 -20120927_CLE@BAL,1,50,7,BAL,CLE,1,10,40,(5:07) R.Rice left tackle to CLV 38 for 2 yards (B.Winn).,0,0,2012 -20120927_CLE@BAL,1,49,30,BAL,CLE,2,8,38,(4:30) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 29 for 9 yards (S.Brown).,0,0,2012 -20120927_CLE@BAL,1,49,16,BAL,CLE,1,10,29,(4:16) (No Huddle Shotgun) J.Flacco pass short left to T.Smith to CLV 17 for 12 yards (D.Jackson).,0,0,2012 -20120927_CLE@BAL,1,48,40,BAL,CLE,1,10,17,(3:40) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to CLV 10 for 7 yards (B.Winn D.Jackson).,0,0,2012 -20120927_CLE@BAL,1,48,28,BAL,CLE,2,3,10,(3:28) (No Huddle Shotgun) J.Flacco pass short right intended for A.Boldin INTERCEPTED by C.Robertson at CLV 0. Touchback.,0,0,2012 -20120927_CLE@BAL,1,48,21,CLE,BAL,1,10,80,(3:21) B.Weeden pass short left to T.Richardson pushed ob at CLV 38 for 18 yards (L.Webb).,0,0,2012 -20120927_CLE@BAL,1,47,50,CLE,BAL,1,10,62,(2:50) T.Richardson left tackle to CLV 48 for 10 yards (R.Lewis). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at CLV 38 - No Play.,0,0,2012 -20120927_CLE@BAL,1,47,22,CLE,BAL,1,20,72,(2:22) B.Weeden pass incomplete short right to G.Little.,0,0,2012 -20120927_CLE@BAL,1,47,16,CLE,BAL,2,20,72,(2:16) T.Richardson left guard to CLV 31 for 3 yards (H.Ngata A.McClellan).,0,0,2012 -20120927_CLE@BAL,1,46,34,CLE,BAL,3,17,69,(1:34) (Shotgun) B.Weeden pass short left to J.Norwood to CLV 33 for 2 yards (C.Upshaw).,0,0,2012 -20120927_CLE@BAL,1,46,0,CLE,BAL,4,15,67,(1:00) (Punt formation) R.Hodges punts 52 yards to BLT 15 Center-C.Yount. J.Jones to BLT 15 for no gain (J.Bademosi).,0,0,2012 -20120927_CLE@BAL,1,45,50,BAL,CLE,1,10,85,(:50) B.Pierce left end to BLT 15 for no gain (D.Jackson).,0,0,2012 -20120927_CLE@BAL,1,45,17,BAL,CLE,2,10,85,(:17) (No Huddle) B.Pierce right end to BLT 18 for 3 yards (D.Patterson).,0,0,2012 -20120927_CLE@BAL,2,45,0,BAL,CLE,3,7,82,(15:00) (Shotgun) J.Flacco pass deep left to T.Doss to CLV 43 for 39 yards (S.Brown).,0,0,2012 -20120927_CLE@BAL,2,44,35,BAL,CLE,1,10,43,(14:35) (No Huddle) J.Flacco pass deep right to T.Smith ran ob at CLV 9 for 34 yards.,0,0,2012 -20120927_CLE@BAL,2,44,1,BAL,CLE,1,9,9,(14:01) (No Huddle) PENALTY on BLT-D.Pitta False Start 5 yards enforced at CLV 9 - No Play.,0,0,2012 -20120927_CLE@BAL,2,43,43,BAL,CLE,1,14,14,(13:43) (Shotgun) J.Flacco pass short right to R.Rice to CLV 18 for -4 yards (B.Winn).,0,0,2012 -20120927_CLE@BAL,2,43,3,BAL,CLE,2,18,18,(13:03) (Shotgun) J.Flacco pass deep middle to T.Smith for 18 yards TOUCHDOWN.,0,0,2012 -20120927_CLE@BAL,2,43,3,BAL,CLE,,,18,J.Tucker extra point is Aborted Center-M.Cox Holder-S.Koch. Holder fumbled snap,0,0,2012 -20120927_CLE@BAL,2,43,3,BAL,CLE,,,18,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin Touchback.,0,0,2012 -20120927_CLE@BAL,2,42,57,CLE,BAL,1,10,80,(12:57) B.Weeden pass incomplete short right to T.Benjamin.,0,0,2012 -20120927_CLE@BAL,2,42,53,CLE,BAL,2,10,80,(12:53) T.Richardson left guard to CLV 25 for 5 yards (P.McPhee A.McClellan).,0,0,2012 -20120927_CLE@BAL,2,42,17,CLE,BAL,3,5,75,(12:17) (Shotgun) B.Weeden pass incomplete short left to C.Ogbonnaya.,0,0,2012 -20120927_CLE@BAL,2,42,12,CLE,BAL,4,5,75,(12:12) (Punt formation) R.Hodges punts 49 yards to BLT 26 Center-C.Yount fair catch by J.Jones. PENALTY on CLV-J.Bademosi Fair Catch Interference 15 yards enforced at BLT 26.,0,0,2012 -20120927_CLE@BAL,2,42,1,BAL,CLE,1,10,59,(12:01) J.Flacco pass short right to V.Leach to BLT 49 for 8 yards (S.Fujita).,0,0,2012 -20120927_CLE@BAL,2,41,46,BAL,CLE,2,2,51,(11:46) (No Huddle) R.Rice right guard to CLV 45 for 6 yards (J.Hughes E.Stephens).,0,0,2012 -20120927_CLE@BAL,2,41,23,BAL,CLE,1,10,45,(11:23) (No Huddle Shotgun) J.Flacco pass short middle to T.Smith to CLV 30 for 15 yards (D.Patterson).,0,0,2012 -20120927_CLE@BAL,2,40,51,BAL,CLE,1,10,30,(10:51) (No Huddle) J.Flacco pass incomplete deep right to T.Smith (D.Patterson).,0,0,2012 -20120927_CLE@BAL,2,40,44,BAL,CLE,2,10,30,(10:44) (Shotgun) R.Rice left guard to CLV 27 for 3 yards (A.Rubin F.Rucker).,0,0,2012 -20120927_CLE@BAL,2,40,17,BAL,CLE,3,7,27,(10:17) (No Huddle Shotgun) J.Flacco pass incomplete deep left to D.Pitta.,0,0,2012 -20120927_CLE@BAL,2,40,8,BAL,CLE,4,7,27,(10:08) (Field Goal formation) J.Tucker 45 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20120927_CLE@BAL,2,40,8,BAL,CLE,,,27,J.Tucker kicks 72 yards from BLT 35 to CLV -7. T.Benjamin to CLV 17 for 24 yards (J.Smith).,9,0,2012 -20120927_CLE@BAL,2,39,57,CLE,BAL,1,10,83,(9:57) T.Richardson right end to CLV 20 for 3 yards (L.Webb).,0,9,2012 -20120927_CLE@BAL,2,39,17,CLE,BAL,2,7,80,(9:17) B.Weeden pass incomplete short right to J.Cameron (E.Reed).,0,9,2012 -20120927_CLE@BAL,2,39,12,CLE,BAL,3,7,80,(9:12) B.Weeden sacked at CLV 14 for -6 yards (P.Kruger).,0,9,2012 -20120927_CLE@BAL,2,38,48,CLE,BAL,4,13,86,(8:48) (Punt formation) R.Hodges punts 32 yards to CLV 46 Center-C.Yount downed by CLV-C.Ogbonnaya. PENALTY on BLT-J.Smith Illegal Use of Hands 10 yards enforced at CLV 46.,0,9,2012 -20120927_CLE@BAL,2,38,37,BAL,CLE,1,10,56,(8:37) B.Pierce right tackle to BLT 48 for 4 yards (A.Rubin T.Gipson).,9,0,2012 -20120927_CLE@BAL,2,38,6,BAL,CLE,2,6,52,(8:06) (No Huddle) J.Flacco pass incomplete deep left to T.Smith [B.Winn].,9,0,2012 -20120927_CLE@BAL,2,38,1,BAL,CLE,3,6,52,(8:01) (No Huddle Shotgun) J.Flacco sacked at BLT 44 for -4 yards (A.Rubin).,9,0,2012 -20120927_CLE@BAL,2,37,34,BAL,CLE,4,10,56,(7:34) (Punt formation) S.Koch punts 50 yards to CLV 6 Center-M.Cox out of bounds.,9,0,2012 -20120927_CLE@BAL,2,37,24,CLE,BAL,1,10,94,(7:24) B.Weeden pass incomplete deep right to J.Cameron.,0,9,2012 -20120927_CLE@BAL,2,37,18,CLE,BAL,2,10,94,(7:18) T.Richardson left tackle to CLV 12 for 6 yards (B.Pollard).,0,9,2012 -20120927_CLE@BAL,2,36,36,CLE,BAL,3,4,88,(6:36) (Shotgun) B.Weeden pass short middle to B.Watson to CLV 18 for 6 yards (R.Lewis).,0,9,2012 -20120927_CLE@BAL,2,36,1,CLE,BAL,1,10,82,(6:01) B.Weeden pass incomplete short right to B.Watson (P.Kruger).,0,9,2012 -20120927_CLE@BAL,2,35,57,CLE,BAL,2,10,82,(5:57) B.Weeden pass deep left to G.Little to BLT 39 for 43 yards (C.Williams).,0,9,2012 -20120927_CLE@BAL,2,35,13,CLE,BAL,1,10,39,(5:13) B.Weeden pass incomplete short right to G.Little [J.McClain].,0,9,2012 -20120927_CLE@BAL,2,35,7,CLE,BAL,2,10,39,(5:07) B.Weeden pass short right to T.Benjamin to BLT 27 for 12 yards (A.McClellan).,0,9,2012 -20120927_CLE@BAL,2,34,31,CLE,BAL,1,10,27,(4:31) T.Richardson left guard to BLT 20 for 7 yards (A.McClellan B.Pollard).,0,9,2012 -20120927_CLE@BAL,2,33,51,CLE,BAL,2,3,20,(3:51) B.Weeden pass short middle to C.Ogbonnaya to BLT 15 for 5 yards (R.Lewis).,0,9,2012 -20120927_CLE@BAL,2,33,14,CLE,BAL,1,10,15,(3:14) B.Weeden pass short middle to T.Benjamin to BLT 1 for 14 yards (J.Smith).,0,9,2012 -20120927_CLE@BAL,2,32,37,CLE,BAL,1,1,1,(2:37) T.Richardson left end for 1 yard TOUCHDOWN.,0,9,2012 -20120927_CLE@BAL,2,32,37,CLE,BAL,,,1,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,9,2012 -20120927_CLE@BAL,2,32,37,CLE,BAL,,,1,P.Dawson kicks 71 yards from CLV 35 to BLT -6. D.Thompson to BLT 19 for 25 yards (C.Robertson).,7,9,2012 -20120927_CLE@BAL,2,32,26,BAL,CLE,1,10,81,(2:26) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to BLT 30 for 11 yards (D.Jackson).,9,7,2012 -20120927_CLE@BAL,2,32,7,BAL,CLE,1,10,70,(2:07) (No Huddle) J.Flacco pass short left to A.Boldin to BLT 36 for 6 yards (D.Patterson).,9,7,2012 -20120927_CLE@BAL,2,32,0,BAL,CLE,2,4,64,(2:00) (Shotgun) J.Flacco pass short right to J.Jones to BLT 43 for 7 yards (B.Skrine).,9,7,2012 -20120927_CLE@BAL,2,31,44,BAL,CLE,1,10,57,(1:44) (No Huddle Shotgun) PENALTY on BLT-M.Oher False Start 5 yards enforced at BLT 43 - No Play.,9,7,2012 -20120927_CLE@BAL,2,31,41,BAL,CLE,1,15,62,(1:41) (No Huddle Shotgun) J.Flacco pass incomplete short right to J.Jones (B.Skrine).,9,7,2012 -20120927_CLE@BAL,2,31,35,BAL,CLE,2,15,62,(1:35) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 -20120927_CLE@BAL,2,31,26,BAL,CLE,3,15,62,(1:26) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to BLT 46 for 8 yards (C.Robertson).,9,7,2012 -20120927_CLE@BAL,2,31,12,BAL,CLE,4,7,54,(1:12) (Punt formation) S.Koch punts 54 yards to end zone Center-M.Cox Touchback.,9,7,2012 -20120927_CLE@BAL,2,31,3,CLE,BAL,1,10,80,(1:03) (Shotgun) C.Ogbonnaya up the middle to CLV 18 for -2 yards (H.Ngata).,7,9,2012 -20120927_CLE@BAL,2,30,59,CLE,BAL,2,12,82,(:59) (Shotgun) B.Weeden pass short middle to C.Ogbonnaya to CLV 23 for 5 yards (D.Ellerbe).,7,9,2012 -20120927_CLE@BAL,2,30,52,CLE,BAL,3,7,77,(:52) B.Weeden pass incomplete short middle to J.Norwood (L.Webb).,7,9,2012 -20120927_CLE@BAL,2,30,47,CLE,BAL,4,7,77,(:47) (Punt formation) R.Hodges punts 32 yards to BLT 45 Center-C.Yount out of bounds.,7,9,2012 -20120927_CLE@BAL,2,30,40,BAL,CLE,1,10,55,(:40) (No Huddle Shotgun) J.Flacco sacked at BLT 36 for -9 yards (J.Sheard).,9,7,2012 -20120927_CLE@BAL,2,30,15,BAL,CLE,2,19,64,(:15) (Shotgun) J.Flacco pass short right to R.Rice to BLT 36 for no gain (C.Robertson).,9,7,2012 -20120927_CLE@BAL,2,30,10,BAL,CLE,3,19,64,(:10) (Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 -20120927_CLE@BAL,2,30,10,BAL,CLE,4,19,64,(:10) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,9,7,2012 -20120927_CLE@BAL,3,30,0,CLE,BAL,,,64,P.Dawson kicks 73 yards from CLV 35 to BLT -8. D.Thompson to BLT 11 for 19 yards (T.Carder).,7,9,2012 -20120927_CLE@BAL,3,29,56,BAL,CLE,1,10,89,(14:56) J.Flacco pass incomplete short left to R.Rice.,9,7,2012 -20120927_CLE@BAL,3,29,50,BAL,CLE,2,10,89,(14:50) J.Flacco pass short right to T.Smith to BLT 19 for 8 yards (T.Ward S.Fujita).,9,7,2012 -20120927_CLE@BAL,3,29,17,BAL,CLE,3,2,81,(14:17) (No Huddle) R.Rice right tackle to BLT 27 for 8 yards (T.Gipson).,9,7,2012 -20120927_CLE@BAL,3,29,17,BAL,CLE,1,10,73,(14:17) (No Huddle Shotgun) PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at BLT 27 - No Play.,9,7,2012 -20120927_CLE@BAL,3,28,36,BAL,CLE,1,5,68,(13:36) (No Huddle Shotgun) J.Flacco pass incomplete short left to J.Jones.,9,7,2012 -20120927_CLE@BAL,3,28,32,BAL,CLE,2,5,68,(13:32) (No Huddle) J.Flacco pass short right to A.Boldin ran ob at BLT 50 for 18 yards.,9,7,2012 -20120927_CLE@BAL,3,28,14,BAL,CLE,1,10,50,(13:14) (No Huddle) R.Rice left guard to CLV 47 for 3 yards (J.Parker S.Fujita).,9,7,2012 -20120927_CLE@BAL,3,27,53,BAL,CLE,2,7,47,(12:53) (No Huddle Shotgun) J.Flacco pass incomplete short right to R.Rice.,9,7,2012 -20120927_CLE@BAL,3,27,49,BAL,CLE,3,7,47,(12:49) (No Huddle Shotgun) J.Flacco pass deep right to A.Boldin to CLV 26 for 21 yards (D.Patterson).,9,7,2012 -20120927_CLE@BAL,3,27,19,BAL,CLE,1,10,26,(12:19) (No Huddle Shotgun) R.Rice left end to CLV 23 for 3 yards (D.Jackson J.Sheard).,9,7,2012 -20120927_CLE@BAL,3,26,50,BAL,CLE,2,7,23,(11:50) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin to CLV 2 for 21 yards (S.Fujita U.Young).,9,7,2012 -20120927_CLE@BAL,3,26,9,BAL,CLE,1,2,2,(11:09) (No Huddle) R.Rice left guard to CLV 2 for no gain (J.Hughes J.Sheard).,9,7,2012 -20120927_CLE@BAL,3,25,31,BAL,CLE,2,2,2,(10:31) R.Rice left guard to CLV 1 for 1 yard (T.Ward L.Fort).,9,7,2012 -20120927_CLE@BAL,3,25,0,BAL,CLE,3,1,1,(10:00) (No Huddle) J.Flacco right end for 1 yard TOUCHDOWN.,9,7,2012 -20120927_CLE@BAL,3,25,0,BAL,CLE,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,9,7,2012 -20120927_CLE@BAL,3,25,0,BAL,CLE,,,1,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin to CLV 14 for 23 yards (C.Graham).,16,7,2012 -20120927_CLE@BAL,3,24,49,CLE,BAL,1,10,86,(9:49) T.Richardson left tackle to CLV 17 for 3 yards (P.McPhee R.Lewis).,7,16,2012 -20120927_CLE@BAL,3,24,8,CLE,BAL,2,7,83,(9:08) (Shotgun) B.Weeden pass short left to G.Little to CLV 22 for 5 yards (P.Kruger).,7,16,2012 -20120927_CLE@BAL,3,23,37,CLE,BAL,3,2,78,(8:37) B.Weeden pass short right to T.Richardson to CLV 37 for 15 yards (J.McClain).,7,16,2012 -20120927_CLE@BAL,3,23,7,CLE,BAL,1,10,63,(8:07) B.Weeden pass short middle to B.Watson to CLV 50 for 13 yards (B.Pollard). PENALTY on BLT-B.Pollard Unnecessary Roughness 15 yards enforced at CLV 50.,7,16,2012 -20120927_CLE@BAL,3,22,5,CLE,BAL,1,10,35,(7:05) T.Richardson left guard to BLT 33 for 2 yards (A.McClellan H.Ngata).,7,16,2012 -20120927_CLE@BAL,3,22,5,CLE,BAL,2,8,33,(7:05) B.Weeden pass incomplete deep middle to J.Norwood (L.Webb).,7,16,2012 -20120927_CLE@BAL,3,22,2,CLE,BAL,3,8,33,(7:02) (Shotgun) B.Weeden pass incomplete short middle to J.Norwood.,7,16,2012 -20120927_CLE@BAL,3,22,2,CLE,BAL,4,8,33,(7:02) (Field Goal formation) P.Dawson 51 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,7,16,2012 -20120927_CLE@BAL,3,22,2,CLE,BAL,,,33,P.Dawson kicks 74 yards from CLV 35 to BLT -9. D.Thompson Touchback.,10,16,2012 -20120927_CLE@BAL,3,21,52,BAL,CLE,1,10,80,(6:52) J.Flacco pass short right to V.Leach to BLT 37 for 17 yards (D.Patterson).,16,10,2012 -20120927_CLE@BAL,3,21,14,BAL,CLE,1,10,63,(6:14) J.Flacco pass short right to A.Boldin to BLT 44 for 7 yards (D.Patterson).,16,10,2012 -20120927_CLE@BAL,3,20,47,BAL,CLE,2,3,56,(5:47) (No Huddle) B.Pierce up the middle to CLV 35 for 21 yards (U.Young).,16,10,2012 -20120927_CLE@BAL,3,20,14,BAL,CLE,1,10,35,(5:14) J.Flacco pass incomplete short left to A.Boldin. Flea flicker - Rice laterals back to Flacco.,16,10,2012 -20120927_CLE@BAL,3,20,6,BAL,CLE,2,10,35,(5:06) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CLV 28 for 7 yards (D.Jackson).,16,10,2012 -20120927_CLE@BAL,3,19,32,BAL,CLE,3,3,28,(4:32) (No Huddle Shotgun) J.Flacco pass short right to T.Smith to CLV 18 for 10 yards (B.Skrine).,16,10,2012 -20120927_CLE@BAL,3,19,0,BAL,CLE,1,10,18,(4:00) (No Huddle Shotgun) J.Flacco sacked at CLV 24 for -6 yards (U.Young).,16,10,2012 -20120927_CLE@BAL,3,18,24,BAL,CLE,2,16,24,(3:24) (No Huddle Shotgun) PENALTY on BLT-D.Pitta False Start 5 yards enforced at CLV 24 - No Play.,16,10,2012 -20120927_CLE@BAL,3,18,9,BAL,CLE,2,21,29,(3:09) (No Huddle Shotgun) J.Flacco pass incomplete short right to R.Rice [J.Parker].,16,10,2012 -20120927_CLE@BAL,3,18,1,BAL,CLE,3,21,29,(3:01) (No Huddle Shotgun) J.Flacco pass incomplete short left to T.Smith. PENALTY on BLT-K.Osemele Illegal Use of Hands 10 yards enforced at CLV 29 - No Play.,16,10,2012 -20120927_CLE@BAL,3,17,55,BAL,CLE,3,31,39,(2:55) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CLV 29 for 10 yards (D.Patterson D.Jackson).,16,10,2012 -20120927_CLE@BAL,3,17,13,BAL,CLE,4,21,29,(2:13) (Field Goal formation) J.Tucker 47 yard field goal is No Good Wide Right Center-M.Cox Holder-S.Koch. First miss of career for Tucker. made 8 in row.,16,10,2012 -20120927_CLE@BAL,3,17,7,CLE,BAL,1,10,63,(2:07) B.Weeden pass incomplete deep right to T.Benjamin.,10,16,2012 -20120927_CLE@BAL,3,17,1,CLE,BAL,2,10,63,(2:01) (Shotgun) B.Weeden pass short right to J.Cameron to BLT 48 for 15 yards (D.Ellerbe E.Reed).,10,16,2012 -20120927_CLE@BAL,3,16,34,CLE,BAL,1,10,48,(1:34) T.Richardson right guard to BLT 43 for 5 yards (A.Jones T.Cody).,10,16,2012 -20120927_CLE@BAL,3,15,56,CLE,BAL,2,5,43,(:56) T.Benjamin right end to BLT 43 for no gain (L.Webb). Benjamin reverse.,10,16,2012 -20120927_CLE@BAL,3,15,27,CLE,BAL,3,5,43,(:27) B.Weeden pass short left intended for T.Benjamin INTERCEPTED by C.Williams at BLT 37. C.Williams for 63 yards TOUCHDOWN. Cary Williams' first interception of career is returned for touchdown.,10,16,2012 -20120927_CLE@BAL,3,15,27,BAL,CLE,,,43,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,16,10,2012 -20120927_CLE@BAL,3,15,27,BAL,CLE,,,43,J.Tucker kicks 74 yards from BLT 35 to CLV -9. T.Benjamin Touchback.,23,10,2012 -20120927_CLE@BAL,3,15,15,CLE,BAL,1,10,80,(:15) B.Weeden pass short left to B.Watson to CLV 23 for 3 yards (J.McClain).,10,23,2012 -20120927_CLE@BAL,4,15,0,CLE,BAL,2,7,77,(15:00) B.Weeden pass short right to T.Richardson to CLV 43 for 20 yards (J.McClain).,10,23,2012 -20120927_CLE@BAL,4,14,19,CLE,BAL,1,10,57,(14:19) B.Weeden pass short middle to T.Richardson to CLV 47 for 4 yards (J.McClain).,10,23,2012 -20120927_CLE@BAL,4,13,38,CLE,BAL,2,6,53,(13:38) B.Weeden pass deep left to G.Little to BLT 31 for 22 yards (C.Williams).,10,23,2012 -20120927_CLE@BAL,4,13,11,CLE,BAL,1,10,31,(13:11) B.Weeden pass incomplete short right to J.Cameron.,10,23,2012 -20120927_CLE@BAL,4,13,4,CLE,BAL,2,10,31,(13:04) T.Richardson left tackle to BLT 32 for -1 yards (A.McClellan).,10,23,2012 -20120927_CLE@BAL,4,12,20,CLE,BAL,3,11,32,(12:20) (Shotgun) B.Weeden pass incomplete short left to T.Richardson.,10,23,2012 -20120927_CLE@BAL,4,12,16,CLE,BAL,4,11,32,(12:16) (Field Goal formation) P.Dawson 50 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,23,2012 -20120927_CLE@BAL,4,12,16,CLE,BAL,,,32,P.Dawson kicks 66 yards from CLV 35 to BLT -1. D.Thompson to BLT 23 for 24 yards (O.Marecic).,13,23,2012 -20120927_CLE@BAL,4,12,5,BAL,CLE,1,10,77,(12:05) R.Rice left guard to BLT 28 for 5 yards (F.Rucker C.Robertson).,23,13,2012 -20120927_CLE@BAL,4,11,31,BAL,CLE,2,5,72,(11:31) (No Huddle) J.Flacco pass short middle to A.Boldin to BLT 41 for 13 yards (D.Patterson).,23,13,2012 -20120927_CLE@BAL,4,10,59,BAL,CLE,1,10,59,(10:59) (No Huddle) J.Flacco pass incomplete short right to D.Pitta (D.Patterson).,23,13,2012 -20120927_CLE@BAL,4,10,52,BAL,CLE,2,10,59,(10:52) (No Huddle Shotgun) R.Rice left guard to BLT 48 for 7 yards (A.Rubin D.Jackson).,23,13,2012 -20120927_CLE@BAL,4,10,15,BAL,CLE,3,3,52,(10:15) (No Huddle) J.Flacco pass incomplete short left to A.Boldin.,23,13,2012 -20120927_CLE@BAL,4,10,9,BAL,CLE,4,3,52,(10:09) (Punt formation) S.Koch punts 36 yards to CLV 16 Center-M.Cox fair catch by T.Benjamin. PENALTY on BLT-A.Allen Fair Catch Interference 15 yards enforced at CLV 16.,23,13,2012 -20120927_CLE@BAL,4,10,1,CLE,BAL,1,10,69,(10:01) B.Weeden pass incomplete short left to J.Norwood.,13,23,2012 -20120927_CLE@BAL,4,9,55,CLE,BAL,2,10,69,(9:55) (Shotgun) B.Weeden pass incomplete short right to T.Richardson [P.McPhee].,13,23,2012 -20120927_CLE@BAL,4,9,51,CLE,BAL,3,10,69,(9:51) (Shotgun) B.Weeden pass short left to J.Norwood to CLV 36 for 5 yards (E.Reed).,13,23,2012 -20120927_CLE@BAL,4,9,18,CLE,BAL,4,5,64,(9:18) (Punt formation) R.Hodges punts 48 yards to BLT 16 Center-C.Yount fair catch by L.Webb.,13,23,2012 -20120927_CLE@BAL,4,9,10,BAL,CLE,1,10,84,(9:10) B.Pierce left end to BLT 20 for 4 yards (S.Fujita).,23,13,2012 -20120927_CLE@BAL,4,8,24,BAL,CLE,2,6,80,(8:24) J.Flacco pass short right to J.Jones to BLT 30 for 10 yards (D.Patterson).,23,13,2012 -20120927_CLE@BAL,4,7,47,BAL,CLE,1,10,70,(7:47) R.Rice right tackle to BLT 31 for 1 yard (J.Sheard D.Jackson).,23,13,2012 -20120927_CLE@BAL,4,7,12,BAL,CLE,2,9,69,(7:12) J.Flacco sacked at BLT 31 for 0 yards (S.Fujita).,23,13,2012 -20120927_CLE@BAL,4,6,31,BAL,CLE,3,9,69,(6:31) (Shotgun) J.Flacco pass incomplete deep middle to T.Doss (B.Skrine).,23,13,2012 -20120927_CLE@BAL,4,6,25,BAL,CLE,4,9,69,(6:25) (Punt formation) S.Koch punts 55 yards to CLV 14 Center-M.Cox. T.Benjamin to BLT 46 for 40 yards (S.Koch).,23,13,2012 -20120927_CLE@BAL,4,6,8,CLE,BAL,1,10,46,(6:08) B.Weeden pass short right to J.Gordon to BLT 30 for 16 yards (L.Webb).,13,23,2012 -20120927_CLE@BAL,4,5,32,CLE,BAL,1,10,30,(5:32) B.Weeden pass incomplete short right [H.Ngata]. PENALTY on CLV-B.Weeden Intentional Grounding 11 yards enforced at BLT 30. PENALTY on CLV Unsportsmanlike Conduct 15 yards enforced between downs. Unsportsmanlike conduct called on CLV bench.,13,23,2012 -20120927_CLE@BAL,4,5,27,CLE,BAL,2,36,56,(5:27) B.Weeden pass deep middle to J.Norwood to BLT 34 for 22 yards (L.Webb).,13,23,2012 -20120927_CLE@BAL,4,4,45,CLE,BAL,3,14,34,(4:45) (Shotgun) B.Weeden pass incomplete deep middle to G.Little.,13,23,2012 -20120927_CLE@BAL,4,4,38,CLE,BAL,4,14,34,(4:38) (Field Goal formation) P.Dawson 52 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,13,23,2012 -20120927_CLE@BAL,4,4,38,CLE,BAL,,,34,P.Dawson kicks 73 yards from CLV 35 to BLT -8. D.Thompson Touchback.,16,23,2012 -20120927_CLE@BAL,4,4,33,BAL,CLE,1,10,80,(4:33) R.Rice right guard to BLT 18 for -2 yards (J.Sheard).,23,16,2012 -20120927_CLE@BAL,4,3,56,BAL,CLE,2,12,82,(3:56) J.Flacco pass deep right to A.Boldin to BLT 46 for 28 yards (D.Patterson).,23,16,2012 -20120927_CLE@BAL,4,3,46,BAL,CLE,1,10,54,(3:46) R.Rice left end to BLT 47 for 1 yard (S.Brown).,23,16,2012 -20120927_CLE@BAL,4,3,41,BAL,CLE,2,9,53,(3:41) R.Rice left end to CLV 32 for 21 yards (T.Ward). PENALTY on BLT-M.Oher Offensive Holding 10 yards enforced at BLT 47 - No Play.,23,16,2012 -20120927_CLE@BAL,4,3,33,BAL,CLE,2,19,63,(3:33) (Shotgun) B.Pierce left guard to CLV 47 for 16 yards (T.Ward).,23,16,2012 -20120927_CLE@BAL,4,3,27,BAL,CLE,3,3,47,(3:27) J.Flacco pass incomplete deep left to J.Jones. PENALTY on CLV-B.Skrine Defensive Holding 5 yards enforced at CLV 47 - No Play.,23,16,2012 -20120927_CLE@BAL,4,3,21,BAL,CLE,1,10,42,(3:21) R.Rice up the middle to CLV 40 for 2 yards (A.Rubin K.Maiava).,23,16,2012 -20120927_CLE@BAL,4,2,38,BAL,CLE,2,8,40,(2:38) R.Rice right guard to CLV 39 for 1 yard (K.Maiava D.Jackson).,23,16,2012 -20120927_CLE@BAL,4,2,0,BAL,CLE,3,7,39,(2:00) J.Flacco right end to CLV 36 for 3 yards (J.Sheard).,23,16,2012 -20120927_CLE@BAL,4,1,13,BAL,CLE,4,4,36,(1:13) (Punt formation) S.Koch punts 26 yards to CLV 10 Center-M.Cox out of bounds.,23,16,2012 -20120927_CLE@BAL,4,1,5,CLE,BAL,1,10,90,(1:05) (Shotgun) B.Weeden pass short middle to B.Watson ran ob at CLV 23 for 13 yards [B.Pollard].,16,23,2012 -20120927_CLE@BAL,4,0,56,CLE,BAL,1,10,77,(:56) (Shotgun) B.Weeden pass incomplete short right to J.Norwood (L.Webb).,16,23,2012 -20120927_CLE@BAL,4,0,53,CLE,BAL,2,10,77,(:53) (Shotgun) B.Weeden pass short right to J.Norwood to CLV 50 for 27 yards (B.Pollard).,16,23,2012 -20120927_CLE@BAL,4,0,45,CLE,BAL,1,10,50,(:45) (Shotgun) B.Weeden pass short right to B.Watson to BLT 33 for 17 yards (H.Ngata).,16,23,2012 -20120927_CLE@BAL,4,0,23,CLE,BAL,1,10,33,(:23) (No Huddle) B.Weeden spiked the ball to stop the clock.,16,23,2012 -20120927_CLE@BAL,4,0,23,CLE,BAL,2,10,33,(:23) (Shotgun) B.Weeden pass incomplete deep middle to J.Norwood (E.Reed).,16,23,2012 -20120927_CLE@BAL,4,0,15,CLE,BAL,3,10,33,(:15) B.Weeden pass incomplete deep right to G.Little (J.Smith).,16,23,2012 -20120927_CLE@BAL,4,0,10,CLE,BAL,4,10,33,(:10) (Shotgun) B.Weeden pass incomplete deep left to J.Cameron (E.Reed). PENALTY on BLT-P.Kruger Unnecessary Roughness 15 yards enforced at BLT 33.,16,23,2012 -20120927_CLE@BAL,4,0,2,CLE,BAL,1,10,18,(:02) (Shotgun) B.Weeden pass incomplete deep left to G.Little [P.McPhee].,16,23,2012 -20120927_CLE@BAL,4,0,2,CLE,BAL,,,18,                      ,16,23,2012 -20120930_CAR@ATL,1,0,0,CAR,ATL,,,18,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 -20120930_CAR@ATL,1,60,0,ATL,CAR,1,10,80,(15:00) M.Ryan pass incomplete short middle to R.White (L.Kuechly) [J.Beason].,0,0,2012 -20120930_CAR@ATL,1,59,56,ATL,CAR,2,10,80,(14:56) M.Ryan pass incomplete short right to R.White (C.Johnson).,0,0,2012 -20120930_CAR@ATL,1,59,53,ATL,CAR,3,10,80,(14:53) (Shotgun) M.Ryan sacked at ATL 9 for -11 yards (sack split by C.Johnson and F.Alexander).,0,0,2012 -20120930_CAR@ATL,1,59,26,ATL,CAR,4,21,91,(14:26) M.Bosher punts 45 yards to CAR 46 Center-J.Harris. C.Munnerlyn ran ob at CAR 47 for 1 yard (J.Harris).,0,0,2012 -20120930_CAR@ATL,1,59,14,CAR,ATL,1,10,53,(14:14) (Shotgun) C.Newton pass short right to G.Olsen pushed ob at 50 for 3 yards (W.Moore).,0,0,2012 -20120930_CAR@ATL,1,58,46,CAR,ATL,2,7,50,(13:46) (Shotgun) C.Newton left end pushed ob at ATL 18 for 32 yards (T.DeCoud).,0,0,2012 -20120930_CAR@ATL,1,58,13,CAR,ATL,1,10,18,(13:13) J.Stewart right end to ATL 19 for -1 yards (J.Babineaux).,0,0,2012 -20120930_CAR@ATL,1,57,34,CAR,ATL,2,11,19,(12:34) C.Newton pass short left to D.Williams pushed ob at ATL 17 for 2 yards (D.Robinson).,0,0,2012 -20120930_CAR@ATL,1,56,54,CAR,ATL,3,9,17,(11:54) (Shotgun) C.Newton pass short left to G.Olsen for 17 yards TOUCHDOWN.,0,0,2012 -20120930_CAR@ATL,1,56,54,CAR,ATL,,,17,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20120930_CAR@ATL,1,56,54,CAR,ATL,,,17,J.Medlock kicks 68 yards from CAR 35 to ATL -3. Jz. Rodgers to ATL 24 for 27 yards (J.Phillips).,7,0,2012 -20120930_CAR@ATL,1,56,39,ATL,CAR,1,10,76,(11:39) M.Ryan pass short right to R.White ran ob at ATL 37 for 13 yards.,0,7,2012 -20120930_CAR@ATL,1,56,14,ATL,CAR,1,10,63,(11:14) M.Turner right end to ATL 38 for 1 yard (J.Norman; J.Beason).,0,7,2012 -20120930_CAR@ATL,1,55,29,ATL,CAR,2,9,62,(10:29) (Shotgun) M.Ryan pass short right to T.Gonzalez to CAR 49 for 13 yards (H.Nakamura).,0,7,2012 -20120930_CAR@ATL,1,54,54,ATL,CAR,1,10,49,(9:54) M.Ryan pass short right to J.Snelling pushed ob at CAR 46 for 3 yards (H.Nakamura).,0,7,2012 -20120930_CAR@ATL,1,54,26,ATL,CAR,2,7,46,(9:26) M.Turner right guard to CAR 40 for 6 yards (D.Edwards).,0,7,2012 -20120930_CAR@ATL,1,53,48,ATL,CAR,3,1,40,(8:48) M.Turner right tackle to CAR 28 for 12 yards (J.Anderson; C.Gamble).,0,7,2012 -20120930_CAR@ATL,1,53,8,ATL,CAR,1,10,28,(8:08) Jz. Rodgers right end to CAR 27 for 1 yard (L.Kuechly).,0,7,2012 -20120930_CAR@ATL,1,52,27,ATL,CAR,2,9,27,(7:27) M.Ryan pass short right to R.White to CAR 14 for 13 yards (C.Gamble).,0,7,2012 -20120930_CAR@ATL,1,51,42,ATL,CAR,1,10,14,(6:42) Jz. Rodgers right tackle to CAR 10 for 4 yards (C.Godfrey).,0,7,2012 -20120930_CAR@ATL,1,50,57,ATL,CAR,2,6,10,(5:57) M.Turner right end to CAR 4 for 6 yards (C.Godfrey; L.Kuechly).,0,7,2012 -20120930_CAR@ATL,1,50,11,ATL,CAR,1,4,4,(5:11) M.Turner right end to CAR 1 for 3 yards (J.Anderson).,0,7,2012 -20120930_CAR@ATL,1,49,37,ATL,CAR,2,1,1,(4:37) J.Snelling right guard to CAR 1 for no gain. PENALTY on CAR-G.Hardy Defensive Offside 0 yards enforced at CAR 1 - No Play. Penalty on CAR Defensive 12 On-field declined.,0,7,2012 -20120930_CAR@ATL,1,49,22,ATL,CAR,2,1,1,(4:22) M.Ryan pass short middle to T.Gallarda for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on ATL-T.Gallarda Offensive Pass Interference 10 yards enforced at CAR 1 - No Play.,0,7,2012 -20120930_CAR@ATL,1,49,16,ATL,CAR,2,11,11,(4:16) M.Ryan pass incomplete short right to R.White. PENALTY on CAR-J.Norman Personal Foul 6 yards enforced at CAR 11 - No Play.,0,7,2012 -20120930_CAR@ATL,1,49,10,ATL,CAR,1,5,5,(4:10) M.Ryan pass incomplete short middle to R.White.,0,7,2012 -20120930_CAR@ATL,1,49,6,ATL,CAR,2,5,5,(4:06) (Shotgun) M.Ryan sacked at CAR 13 for -8 yards (R.Edwards).,0,7,2012 -20120930_CAR@ATL,1,48,32,ATL,CAR,3,13,13,(3:32) (Shotgun) M.Ryan pass short middle intended for J.Jones INTERCEPTED by H.Nakamura at CAR 0. H.Nakamura pushed ob at CAR 21 for 21 yards (J.Snelling).,0,7,2012 -20120930_CAR@ATL,1,48,24,CAR,ATL,1,10,79,(3:24) C.Newton pass short right to G.Olsen ran ob at CAR 32 for 11 yards.,7,0,2012 -20120930_CAR@ATL,1,48,0,CAR,ATL,1,10,68,(3:00) (Shotgun) J.Stewart right end to CAR 33 for 1 yard (K.Biermann).,7,0,2012 -20120930_CAR@ATL,1,47,17,CAR,ATL,2,9,67,(2:17) C.Newton pass incomplete short left to D.Williams.,7,0,2012 -20120930_CAR@ATL,1,47,10,CAR,ATL,3,9,67,(2:10) C.Newton pass incomplete short middle to M.Tolbert.,7,0,2012 -20120930_CAR@ATL,1,47,3,CAR,ATL,4,9,67,(2:03) B.Nortman punts 44 yards to ATL 23 Center-J.Jansen fair catch by D.Franks.,7,0,2012 -20120930_CAR@ATL,1,46,56,ATL,CAR,1,10,77,(1:56) M.Turner left end to ATL 40 for 17 yards (C.Munnerlyn).,0,7,2012 -20120930_CAR@ATL,1,46,7,ATL,CAR,1,10,60,(1:07) M.Turner right guard to CAR 49 for 11 yards (C.Godfrey).,0,7,2012 -20120930_CAR@ATL,1,45,33,ATL,CAR,1,10,49,(:33) M.Ryan pass deep right to R.White for 49 yards TOUCHDOWN.,0,7,2012 -20120930_CAR@ATL,1,45,33,ATL,CAR,,,49,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,7,2012 -20120930_CAR@ATL,1,45,33,ATL,CAR,,,49,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,7,2012 -20120930_CAR@ATL,1,45,26,CAR,ATL,1,10,80,(:26) S.Smith left end to CAR 30 for 10 yards (D.Robinson). FUMBLES (D.Robinson) RECOVERED by ATL-R.Edwards at CAR 30. CAR-R.Kalil was injured during the play. His return is Probable.,7,7,2012 -20120930_CAR@ATL,1,45,16,ATL,CAR,1,10,30,(:16) M.Ryan pass short right to Jz. Rodgers to CAR 21 for 9 yards (J.Beason).,7,7,2012 -20120930_CAR@ATL,2,45,0,ATL,CAR,2,1,21,(15:00) M.Ryan sacked at CAR 34 for -13 yards (C.Johnson). PENALTY on CAR-C.Johnson Face Mask (15 Yards) 15 yards enforced at CAR 34.,7,7,2012 -20120930_CAR@ATL,2,44,33,ATL,CAR,1,10,19,(14:33) M.Ryan pass short left to J.Snelling to CAR 22 for -3 yards (L.Kuechly).,7,7,2012 -20120930_CAR@ATL,2,43,58,ATL,CAR,2,13,22,(13:58) M.Ryan pass short right to R.White to CAR 23 for -1 yards (L.Kuechly) [C.Johnson].,7,7,2012 -20120930_CAR@ATL,2,43,22,ATL,CAR,3,14,23,(13:22) (Shotgun) M.Ryan pass incomplete deep right to J.Jones (H.Nakamura).,7,7,2012 -20120930_CAR@ATL,2,43,16,ATL,CAR,4,14,23,(13:16) M.Bryant 41 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,7,2012 -20120930_CAR@ATL,2,43,16,ATL,CAR,,,23,M.Bosher kicks 72 yards from ATL 35 to CAR -7. K.Pilares to CAR 21 for 28 yards (T.Gallarda).,10,7,2012 -20120930_CAR@ATL,2,43,7,CAR,ATL,1,10,79,(13:07) (Shotgun) D.Williams right end to CAR 31 for 10 yards (S.Nicholas).,7,10,2012 -20120930_CAR@ATL,2,42,23,CAR,ATL,1,10,69,(12:23) D.Williams right end to CAR 44 for 13 yards (A.Samuel).,7,10,2012 -20120930_CAR@ATL,2,41,40,CAR,ATL,1,10,56,(11:40) (Shotgun) D.Williams right guard to CAR 46 for 2 yards (V.Walker).,7,10,2012 -20120930_CAR@ATL,2,40,58,CAR,ATL,2,8,54,(10:58) (Shotgun) C.Newton pass short left to L.Murphy to ATL 46 for 8 yards (D.Robinson).,7,10,2012 -20120930_CAR@ATL,2,40,14,CAR,ATL,1,10,46,(10:14) (Shotgun) J.Stewart left end pushed ob at ATL 40 for 6 yards (A.Dent).,7,10,2012 -20120930_CAR@ATL,2,39,39,CAR,ATL,2,4,40,(9:39) C.Newton pass deep left to S.Smith to ATL 13 for 27 yards (T.DeCoud).,7,10,2012 -20120930_CAR@ATL,2,38,50,CAR,ATL,1,10,13,(8:50) (Shotgun) D.Williams left guard for 13 yards TOUCHDOWN.,7,10,2012 -20120930_CAR@ATL,2,38,50,CAR,ATL,,,13,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,10,2012 -20120930_CAR@ATL,2,38,50,CAR,ATL,,,13,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,14,10,2012 -20120930_CAR@ATL,2,38,44,ATL,CAR,1,10,80,(8:44) M.Turner right tackle to ATL 21 for 1 yard (C.Johnson).,10,14,2012 -20120930_CAR@ATL,2,38,0,ATL,CAR,2,9,79,(8:00) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 27 for 6 yards (C.Munnerlyn).,10,14,2012 -20120930_CAR@ATL,2,37,30,ATL,CAR,3,3,73,(7:30) (No Huddle) M.Ryan pass incomplete short left to J.Jones (C.Godfrey).,10,14,2012 -20120930_CAR@ATL,2,37,24,ATL,CAR,4,3,73,(7:24) M.Bosher punts 56 yards to CAR 17 Center-J.Harris. C.Munnerlyn to CAR 19 for 2 yards (M.Peterson).,10,14,2012 -20120930_CAR@ATL,2,37,13,CAR,ATL,1,10,81,(7:13) (Shotgun) J.Stewart right tackle to CAR 26 for 7 yards (S.Weatherspoon).,14,10,2012 -20120930_CAR@ATL,2,36,35,CAR,ATL,2,3,74,(6:35) D.Williams right end to CAR 24 for -2 yards (D.Robinson).,14,10,2012 -20120930_CAR@ATL,2,35,49,CAR,ATL,3,5,76,(5:49) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,14,10,2012 -20120930_CAR@ATL,2,35,44,CAR,ATL,4,5,76,(5:44) B.Nortman punts 45 yards to ATL 31 Center-J.Jansen. D.Franks to ATL 49 for 18 yards (J.Phillips).,14,10,2012 -20120930_CAR@ATL,2,35,29,ATL,CAR,1,10,51,(5:29) M.Turner right tackle to CAR 48 for 3 yards (D.Edwards).,10,14,2012 -20120930_CAR@ATL,2,34,47,ATL,CAR,2,7,48,(4:47) M.Ryan pass short right to T.Gonzalez to CAR 34 for 14 yards (C.Gamble).,10,14,2012 -20120930_CAR@ATL,2,34,12,ATL,CAR,1,10,34,(4:12) M.Ryan pass incomplete deep left to R.White.,10,14,2012 -20120930_CAR@ATL,2,34,5,ATL,CAR,2,10,34,(4:05) (No Huddle) Jz. Rodgers right tackle to CAR 29 for 5 yards (C.Munnerlyn).,10,14,2012 -20120930_CAR@ATL,2,33,21,ATL,CAR,3,5,29,(3:21) (Shotgun) M.Ryan pass short middle to R.White to CAR 20 for 9 yards (C.Godfrey).,10,14,2012 -20120930_CAR@ATL,2,32,39,ATL,CAR,1,10,20,(2:39) M.Ryan pass short right to J.Snelling to CAR 15 for 5 yards (J.Beason; J.Anderson).,10,14,2012 -20120930_CAR@ATL,2,32,2,ATL,CAR,2,5,15,(2:02) M.Turner right end to CAR 14 for 1 yard (L.Kuechly; C.Johnson).,10,14,2012 -20120930_CAR@ATL,2,31,55,ATL,CAR,3,4,14,(1:55) (Shotgun) M.Ryan pass short middle to R.White for 14 yards TOUCHDOWN. Penalty on CAR-F.Alexander Defensive Offside declined.,10,14,2012 -20120930_CAR@ATL,2,31,55,ATL,CAR,,,14,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,14,2012 -20120930_CAR@ATL,2,31,55,ATL,CAR,,,14,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,14,2012 -20120930_CAR@ATL,2,31,49,CAR,ATL,1,10,80,(1:49) (Shotgun) C.Newton pass short left to S.Smith to CAR 28 for 8 yards (D.Robinson).,14,17,2012 -20120930_CAR@ATL,2,31,25,CAR,ATL,2,2,72,(1:25) (No Huddle Shotgun) M.Tolbert right guard to CAR 32 for 4 yards (S.Nicholas).,14,17,2012 -20120930_CAR@ATL,2,31,2,CAR,ATL,1,10,68,(1:02) (Shotgun) C.Newton pass short middle to M.Tolbert to CAR 40 for 8 yards (R.McClain).,14,17,2012 -20120930_CAR@ATL,2,30,41,CAR,ATL,2,2,60,(:41) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 46 for 6 yards (W.Moore).,14,17,2012 -20120930_CAR@ATL,2,30,35,CAR,ATL,1,10,54,(:35) (Shotgun) C.Newton pass incomplete short left to B.LaFell [K.Biermann].,14,17,2012 -20120930_CAR@ATL,2,30,31,CAR,ATL,2,10,54,(:31) (Shotgun) C.Newton pass incomplete short left to S.Smith. PENALTY on CAR-S.Smith Offensive Pass Interference 10 yards enforced at CAR 46 - No Play.,14,17,2012 -20120930_CAR@ATL,2,30,26,CAR,ATL,2,20,64,(:26) (Shotgun) C.Newton scrambles right end to CAR 42 for 6 yards (W.Moore).,14,17,2012 -20120930_CAR@ATL,2,30,17,CAR,ATL,3,14,58,(:17) (Shotgun) C.Newton scrambles right end to CAR 44 for 2 yards (S.Nicholas).,14,17,2012 -20120930_CAR@ATL,3,30,0,ATL,CAR,,,58,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,14,2012 -20120930_CAR@ATL,3,30,0,CAR,ATL,1,10,80,(15:00) (Shotgun) C.Newton pass short middle to J.Stewart to CAR 28 for 8 yards (R.McClain).,14,17,2012 -20120930_CAR@ATL,3,29,18,CAR,ATL,2,2,72,(14:18) (Shotgun) J.Stewart right guard to CAR 29 for 1 yard (J.Abraham).,14,17,2012 -20120930_CAR@ATL,3,28,37,CAR,ATL,3,1,71,(13:37) (Shotgun) J.Stewart left guard to CAR 30 for 1 yard (J.Babineaux).,14,17,2012 -20120930_CAR@ATL,3,27,55,CAR,ATL,1,10,70,(12:55) C.Newton pass incomplete short right to M.Tolbert.,14,17,2012 -20120930_CAR@ATL,3,27,49,CAR,ATL,2,10,70,(12:49) (Shotgun) M.Tolbert up the middle to CAR 31 for 1 yard (K.Biermann; S.Nicholas).,14,17,2012 -20120930_CAR@ATL,3,27,8,CAR,ATL,3,9,69,(12:08) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,14,17,2012 -20120930_CAR@ATL,3,27,1,CAR,ATL,4,9,69,(12:01) B.Nortman punts 41 yards to ATL 28 Center-J.Jansen fair catch by D.Franks.,14,17,2012 -20120930_CAR@ATL,3,26,54,ATL,CAR,1,10,72,(11:54) M.Turner right end to ATL 29 for 1 yard (C.Johnson).,17,14,2012 -20120930_CAR@ATL,3,26,9,ATL,CAR,2,9,71,(11:09) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 40 for 11 yards (H.Nakamura).,17,14,2012 -20120930_CAR@ATL,3,25,29,ATL,CAR,1,10,60,(10:29) M.Ryan pass short middle to M.Turner for 60 yards TOUCHDOWN.,17,14,2012 -20120930_CAR@ATL,3,25,29,ATL,CAR,,,60,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,14,2012 -20120930_CAR@ATL,3,25,29,ATL,CAR,,,60,M.Bosher kicks 69 yards from ATL 35 to CAR -4. K.Pilares to CAR 23 for 27 yards (R.James; C.Hope).,24,14,2012 -20120930_CAR@ATL,3,25,11,CAR,ATL,1,10,77,(10:11) (Shotgun) D.Williams right end to CAR 26 for 3 yards (R.Edwards).,14,24,2012 -20120930_CAR@ATL,3,24,31,CAR,ATL,2,7,74,(9:31) PENALTY on CAR-R.Kalil False Start 5 yards enforced at CAR 26 - No Play.,14,24,2012 -20120930_CAR@ATL,3,24,13,CAR,ATL,2,12,79,(9:13) (Shotgun) C.Newton pass deep right to S.Smith to CAR 38 for 17 yards (A.Samuel).,14,24,2012 -20120930_CAR@ATL,3,23,31,CAR,ATL,1,10,62,(8:31) (Shotgun) M.Tolbert left end to CAR 44 for 6 yards (S.Nicholas).,14,24,2012 -20120930_CAR@ATL,3,22,52,CAR,ATL,2,4,56,(7:52) (Shotgun) C.Newton left end to CAR 49 for 5 yards (R.Edwards).,14,24,2012 -20120930_CAR@ATL,3,22,12,CAR,ATL,1,10,51,(7:12) C.Newton sacked at CAR 49 for 0 yards (S.Weatherspoon).,14,24,2012 -20120930_CAR@ATL,3,21,23,CAR,ATL,2,10,51,(6:23) (Shotgun) C.Newton pass short left to A.Edwards to ATL 39 for 12 yards (P.Jerry).,14,24,2012 -20120930_CAR@ATL,3,20,45,CAR,ATL,1,10,39,(5:45) (Shotgun) A.Edwards pass incomplete deep right to S.Smith.,14,24,2012 -20120930_CAR@ATL,3,20,39,CAR,ATL,2,10,39,(5:39) (Shotgun) C.Newton pass short left to G.Olsen to ATL 21 for 18 yards (T.DeCoud).,14,24,2012 -20120930_CAR@ATL,3,19,58,CAR,ATL,1,10,21,(4:58) D.Williams right end to ATL 19 for 2 yards (V.Walker).,14,24,2012 -20120930_CAR@ATL,3,19,15,CAR,ATL,2,8,19,(4:15) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,14,24,2012 -20120930_CAR@ATL,3,19,9,CAR,ATL,3,8,19,(4:09) (Shotgun) C.Newton scrambles up the middle to ATL 4 for 15 yards (R.McClain).,14,24,2012 -20120930_CAR@ATL,3,18,23,CAR,ATL,1,4,4,(3:23) C.Newton up the middle for 4 yards TOUCHDOWN.,14,24,2012 -20120930_CAR@ATL,3,18,23,CAR,ATL,,,4,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,24,2012 -20120930_CAR@ATL,3,18,23,CAR,ATL,,,4,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,21,24,2012 -20120930_CAR@ATL,3,18,16,ATL,CAR,1,10,80,(3:16) M.Ryan pass incomplete short left to J.Snelling.,24,21,2012 -20120930_CAR@ATL,3,18,10,ATL,CAR,2,10,80,(3:10) (Shotgun) M.Ryan pass short left to M.Turner to ATL 21 for 1 yard (J.Norman).,24,21,2012 -20120930_CAR@ATL,3,17,31,ATL,CAR,3,9,79,(2:31) (Shotgun) M.Ryan pass short left to R.White to ATL 34 for 13 yards (J.Norman).,24,21,2012 -20120930_CAR@ATL,3,16,55,ATL,CAR,1,10,66,(1:55) Jz. Rodgers left tackle to ATL 37 for 3 yards (C.Johnson).,24,21,2012 -20120930_CAR@ATL,3,16,18,ATL,CAR,2,7,63,(1:18) M.Ryan sacked at ATL 28 for -9 yards (C.Johnson).,24,21,2012 -20120930_CAR@ATL,3,15,47,ATL,CAR,3,16,72,(:47) (Shotgun) M.Ryan pass incomplete short left to H.Douglas.,24,21,2012 -20120930_CAR@ATL,3,15,42,ATL,CAR,4,16,72,(:42) M.Bosher punts 59 yards to CAR 13 Center-J.Harris. C.Munnerlyn to CAR 33 for 20 yards (K.Biermann).,24,21,2012 -20120930_CAR@ATL,3,15,29,CAR,ATL,1,10,67,(:29) D.Williams right end to CAR 32 for -1 yards (A.Dent).,21,24,2012 -20120930_CAR@ATL,4,15,0,CAR,ATL,2,11,68,(15:00) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 32 - No Play.,21,24,2012 -20120930_CAR@ATL,4,15,0,CAR,ATL,2,16,73,(15:00) (Shotgun) C.Newton scrambles right end ran ob at CAR 38 for 11 yards (S.Weatherspoon).,21,24,2012 -20120930_CAR@ATL,4,14,23,CAR,ATL,3,5,62,(14:23) (Shotgun) C.Newton pass short right to S.Smith pushed ob at CAR 44 for 6 yards (A.Samuel). Play Challenged by ATL and REVERSED. (Shotgun) C.Newton pass incomplete short right to S.Smith.,21,24,2012 -20120930_CAR@ATL,4,14,20,CAR,ATL,4,5,62,(14:20) B.Nortman punts 44 yards to ATL 18 Center-J.Jansen fair catch by D.Franks.,21,24,2012 -20120930_CAR@ATL,4,14,13,ATL,CAR,1,10,82,(14:13) M.Ryan pass incomplete short middle to M.Turner.,24,21,2012 -20120930_CAR@ATL,4,14,7,ATL,CAR,2,10,82,(14:07) M.Turner right tackle to ATL 32 for 14 yards (J.Beason).,24,21,2012 -20120930_CAR@ATL,4,13,26,ATL,CAR,1,10,68,(13:26) M.Turner left end pushed ob at CAR 41 for 27 yards (C.Munnerlyn).,24,21,2012 -20120930_CAR@ATL,4,12,58,ATL,CAR,1,10,41,(12:58) Jz. Rodgers left tackle to CAR 39 for 2 yards (H.Nakamura).,24,21,2012 -20120930_CAR@ATL,4,12,28,ATL,CAR,2,8,39,(12:28) (No Huddle) Jz. Rodgers left guard to CAR 36 for 3 yards (J.Anderson; D.Edwards).,24,21,2012 -20120930_CAR@ATL,4,11,49,ATL,CAR,3,5,36,(11:49) (Shotgun) M.Ryan sacked at CAR 42 for -6 yards (G.Hardy).,24,21,2012 -20120930_CAR@ATL,4,11,25,ATL,CAR,4,11,42,(11:25) M.Bosher punts 30 yards to CAR 12 Center-J.Harris fair catch by C.Munnerlyn.,24,21,2012 -20120930_CAR@ATL,4,11,18,CAR,ATL,1,10,88,(11:18) (Shotgun) C.Newton pass deep right to G.Olsen ran ob at CAR 46 for 34 yards (W.Moore).,21,24,2012 -20120930_CAR@ATL,4,10,47,CAR,ATL,1,10,54,(10:47) (Shotgun) M.Tolbert right guard to CAR 49 for 3 yards (R.Edwards; S.Nicholas).,21,24,2012 -20120930_CAR@ATL,4,10,3,CAR,ATL,2,7,51,(10:03) J.Stewart right end pushed ob at ATL 36 for 15 yards (T.DeCoud).,21,24,2012 -20120930_CAR@ATL,4,9,32,CAR,ATL,1,10,36,(9:32) (Shotgun) J.Stewart left guard to ATL 31 for 5 yards (A.Dent; S.Weatherspoon).,21,24,2012 -20120930_CAR@ATL,4,8,51,CAR,ATL,2,5,31,(8:51) (Shotgun) C.Newton sacked at ATL 38 for -7 yards (V.Walker). FUMBLES (V.Walker) recovered by CAR-B.Hartsock at ATL 36. B.Hartsock to ATL 36 for no gain (J.Babineaux).,21,24,2012 -20120930_CAR@ATL,4,8,3,CAR,ATL,3,10,36,(8:03) (Shotgun) C.Newton pass short left to K.Pilares for 36 yards TOUCHDOWN. Penalty on ATL-T.DeCoud Defensive Offside declined.,21,24,2012 -20120930_CAR@ATL,4,8,3,CAR,ATL,,,36,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,21,24,2012 -20120930_CAR@ATL,4,8,3,CAR,ATL,,,36,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,28,24,2012 -20120930_CAR@ATL,4,7,55,ATL,CAR,1,10,80,(7:55) M.Ryan pass incomplete short left to J.Jones (J.Norman).,24,28,2012 -20120930_CAR@ATL,4,7,50,ATL,CAR,2,10,80,(7:50) (Shotgun) M.Ryan pass incomplete short middle to M.Turner.,24,28,2012 -20120930_CAR@ATL,4,7,45,ATL,CAR,3,10,80,(7:45) M.Ryan pass deep middle to J.Jones to 50 for 30 yards (C.Godfrey).,24,28,2012 -20120930_CAR@ATL,4,6,59,ATL,CAR,1,10,50,(6:59) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers pushed ob at CAR 35 for 15 yards (T.Davis).,24,28,2012 -20120930_CAR@ATL,4,6,36,ATL,CAR,1,10,35,(6:36) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers to CAR 26 for 9 yards (T.Davis; J.Norman). PENALTY on CAR-J.Norman Face Mask (15 Yards) 13 yards enforced at CAR 26. Penalty on CAR-F.Alexander Defensive Offside declined.,24,28,2012 -20120930_CAR@ATL,4,6,20,ATL,CAR,1,10,13,(6:20) M.Ryan sacked at CAR 22 for -9 yards (F.Alexander).,24,28,2012 -20120930_CAR@ATL,4,5,51,ATL,CAR,2,19,22,(5:51) (No Huddle) M.Ryan pass incomplete short left to J.Jones (J.Norman).,24,28,2012 -20120930_CAR@ATL,4,5,46,ATL,CAR,3,19,22,(5:46) M.Ryan pass short middle to Jz. Rodgers to CAR 15 for 7 yards (T.Davis; J.Beason) [G.Hardy].,24,28,2012 -20120930_CAR@ATL,4,5,0,ATL,CAR,4,12,15,(5:00) M.Bryant 33 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,24,28,2012 -20120930_CAR@ATL,4,5,0,ATL,CAR,,,15,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,27,28,2012 -20120930_CAR@ATL,4,4,57,CAR,ATL,1,10,80,(4:57) D.Williams right end to CAR 21 for 1 yard (S.Nicholas).,28,27,2012 -20120930_CAR@ATL,4,4,12,CAR,ATL,2,9,79,(4:12) (Shotgun) J.Stewart up the middle to CAR 22 for 1 yard (W.Moore).,28,27,2012 -20120930_CAR@ATL,4,3,31,CAR,ATL,3,8,78,(3:31) (Shotgun) C.Newton pass incomplete short left to S.Smith.,28,27,2012 -20120930_CAR@ATL,4,3,25,CAR,ATL,4,8,78,(3:25) B.Nortman punts 48 yards to ATL 30 Center-J.Jansen. D.Franks to ATL 29 for -1 yards (J.Senn).,28,27,2012 -20120930_CAR@ATL,4,3,16,ATL,CAR,1,10,71,(3:16) M.Ryan pass incomplete deep left to J.Jones.,27,28,2012 -20120930_CAR@ATL,4,3,8,ATL,CAR,2,10,71,(3:08) (Shotgun) M.Ryan pass short left to M.Turner to ATL 36 for 7 yards (J.Norman) [F.Alexander].,27,28,2012 -20120930_CAR@ATL,4,2,41,ATL,CAR,3,3,64,(2:41) (No Huddle Shotgun) M.Ryan sacked at ATL 28 for -8 yards (C.Johnson).,27,28,2012 -20120930_CAR@ATL,4,2,34,ATL,CAR,4,11,72,(2:34) M.Bosher punts 45 yards to CAR 27 Center-J.Harris fair catch by C.Munnerlyn. PENALTY on ATL-K.Cone Player Out of Bounds on Punt 5 yards enforced at CAR 27.,27,28,2012 -20120930_CAR@ATL,4,2,26,CAR,ATL,1,10,68,(2:26) (Shotgun) J.Stewart right guard to CAR 36 for 4 yards (A.Dent).,28,27,2012 -20120930_CAR@ATL,4,2,21,CAR,ATL,2,6,64,(2:21) C.Newton left end to CAR 46 for 10 yards (J.Abraham).,28,27,2012 -20120930_CAR@ATL,4,2,0,CAR,ATL,1,10,54,(2:00) (Shotgun) D.Williams left guard to 50 for 4 yards (J.Abraham).,28,27,2012 -20120930_CAR@ATL,4,1,55,CAR,ATL,2,6,50,(1:55) (Shotgun) D.Williams right guard to ATL 46 for 4 yards (S.Nicholas).,28,27,2012 -20120930_CAR@ATL,4,1,51,CAR,ATL,3,2,46,(1:51) (Shotgun) C.Newton left tackle to ATL 44 for 2 yards (J.Abraham). FUMBLES (J.Abraham) recovered by CAR-M.Tolbert at ATL 44. The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) C.Newton left tackle to ATL 44 for 2 yards (J.Abraham). FUMBLES (J.Abraham) recovered by CAR-M.Tolbert at ATL 45.,28,27,2012 -20120930_CAR@ATL,4,1,44,CAR,ATL,4,1,45,(1:44) (Punt formation) PENALTY on CAR-C.Newton Delay of Game 5 yards enforced at ATL 45 - No Play.,28,27,2012 -20120930_CAR@ATL,4,1,9,CAR,ATL,4,6,50,(1:09) B.Nortman punts 49 yards to ATL 1 Center-J.Jansen downed by CAR-K.Onatolu.,28,27,2012 -20120930_CAR@ATL,4,0,59,ATL,CAR,1,10,99,(:59) M.Ryan pass deep left to R.White to CAR 40 for 59 yards (J.Norman).,27,28,2012 -20120930_CAR@ATL,4,0,27,ATL,CAR,1,10,40,(:27) (No Huddle Shotgun) M.Ryan pass incomplete short left to J.Jones.,27,28,2012 -20120930_CAR@ATL,4,0,22,ATL,CAR,2,10,40,(:22) (Shotgun) M.Ryan pass incomplete short left to J.Jones. PENALTY on CAR-C.Munnerlyn Defensive Pass Interference 5 yards enforced at CAR 40 - No Play.,27,28,2012 -20120930_CAR@ATL,4,0,19,ATL,CAR,1,10,35,(:19) (Shotgun) M.Ryan pass short left to T.Gonzalez pushed ob at CAR 28 for 7 yards (J.Norman).,27,28,2012 -20120930_CAR@ATL,4,0,14,ATL,CAR,2,3,28,(:14) (Shotgun) M.Ryan pass short left to H.Douglas ran ob at CAR 22 for 6 yards.,27,28,2012 -20120930_CAR@ATL,4,0,10,ATL,CAR,1,10,22,(:10) M.Bryant 40 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,27,28,2012 -20120930_CAR@ATL,4,0,10,ATL,CAR,,,22,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,30,28,2012 -20120930_CAR@ATL,4,0,5,CAR,ATL,1,10,80,(:05) (Shotgun) C.Newton sacked at CAR 15 for -5 yards (J.Abraham).,28,30,2012 -20120930_CAR@ATL,4,0,5,CAR,ATL,,,80,                      ,28,30,2012 -20120930_NE@BUF,1,0,0,NE,BUF,,,80,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,0,0,2012 -20120930_NE@BUF,1,60,0,BUF,NE,1,10,80,(15:00) (Shotgun) F.Jackson up the middle to BUF 31 for 11 yards (J.Mayo R.Ninkovich).,0,0,2012 -20120930_NE@BUF,1,59,21,BUF,NE,1,10,69,(14:21) (Shotgun) R.Fitzpatrick pass short left to T.Graham pushed ob at BUF 41 for 10 yards (S.Gregory). Screen pass caught at BUF 30.,0,0,2012 -20120930_NE@BUF,1,58,56,BUF,NE,1,10,59,(13:56) (Shotgun) F.Jackson left end to BUF 41 for no gain (R.Ninkovich; J.Mayo).,0,0,2012 -20120930_NE@BUF,1,58,15,BUF,NE,2,10,59,(13:15) (Shotgun) R.Fitzpatrick scrambles right end ran ob at BUF 48 for 7 yards.,0,0,2012 -20120930_NE@BUF,1,57,38,BUF,NE,3,3,52,(12:38) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to NE 46 for 6 yards (J.Mayo P.Chung). Caught at NE 47 crossing from left.,0,0,2012 -20120930_NE@BUF,1,56,58,BUF,NE,1,10,46,(11:58) F.Jackson right guard to NE 41 for 5 yards (C.Jones; J.Mayo).,0,0,2012 -20120930_NE@BUF,1,56,18,BUF,NE,2,5,41,(11:18) (Shotgun) F.Jackson up the middle to NE 38 for 3 yards (J.Mayo C.Jones).,0,0,2012 -20120930_NE@BUF,1,55,37,BUF,NE,3,2,38,(10:37) F.Jackson left guard to NE 41 for -3 yards (C.Jones).,0,0,2012 -20120930_NE@BUF,1,55,4,BUF,NE,4,5,41,(10:04) S.Powell punts 31 yards to NE 10 Center-G.Sanborn fair catch by W.Welker.,0,0,2012 -20120930_NE@BUF,1,54,56,NE,BUF,1,10,90,(9:56) T.Brady pass short right to D.Fells pushed ob at NE 28 for 18 yards (J.Byrd). Out-pattern caught at NE 11.,0,0,2012 -20120930_NE@BUF,1,54,33,NE,BUF,1,10,72,(9:33) (Shotgun) T.Brady pass short left to S.Vereen to NE 33 for 5 yards (J.Rogers J.Byrd). Flat pass caught at NE 31.,0,0,2012 -20120930_NE@BUF,1,53,57,NE,BUF,2,5,67,(8:57) (Shotgun) T.Brady pass deep right to R.Gronkowski to BUF 26 for 41 yards (J.Rogers). Caught at BUF 32 slanting to sideline.,0,0,2012 -20120930_NE@BUF,1,53,16,NE,BUF,1,10,26,(8:16) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski to BUF 19 for 7 yards (B.Scott; S.Gilmore). Screen pass caught at BUF 29.,0,0,2012 -20120930_NE@BUF,1,52,43,NE,BUF,2,3,19,(7:43) S.Ridley up the middle to BUF 15 for 4 yards (M.Williams).,0,0,2012 -20120930_NE@BUF,1,52,16,NE,BUF,1,10,15,(7:16) (Shotgun) T.Brady pass short left to W.Welker to BUF 6 for 9 yards (N.Barnett). Screen pass caught at BUF 18.,0,0,2012 -20120930_NE@BUF,1,51,52,NE,BUF,2,1,6,(6:52) (Shotgun) S.Ridley left tackle for 6 yards TOUCHDOWN.,0,0,2012 -20120930_NE@BUF,1,51,52,NE,BUF,,,6,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20120930_NE@BUF,1,51,52,NE,BUF,,,6,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick rolled out of bounds 6 yds. into end zone.,7,0,2012 -20120930_NE@BUF,1,51,49,BUF,NE,1,10,80,(6:49) (Shotgun) R.Fitzpatrick pass short right to T.Graham pushed ob at BUF 28 for 8 yards (D.McCourty). Screen pass caught at BUF 19.,0,7,2012 -20120930_NE@BUF,1,51,24,BUF,NE,2,2,72,(6:24) C.Spiller right tackle pushed ob at BUF 24 for -4 yards (D.Hightower).,0,7,2012 -20120930_NE@BUF,1,50,49,BUF,NE,3,6,76,(5:49) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at BUF 40 for 16 yards (P.Chung). Caught at BUF 35 slanting from middle.,0,7,2012 -20120930_NE@BUF,1,50,22,BUF,NE,1,10,60,(5:22) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 43 for 3 yards (R.Ninkovich). Screen pass caught at BUF 40.,0,7,2012 -20120930_NE@BUF,1,49,42,BUF,NE,2,7,57,(4:42) R.Fitzpatrick sacked at BUF 43 for 0 yards (D.Hightower).,0,7,2012 -20120930_NE@BUF,1,49,13,BUF,NE,3,7,57,(4:13) (Shotgun) R.Fitzpatrick pass short middle intended for St.Johnson INTERCEPTED by J.Mayo (V.Wilfork) at BUF 49. J.Mayo to BUF 49 for no gain (St.Johnson). Pass tipped at line prior to INT.,0,7,2012 -20120930_NE@BUF,1,49,6,NE,BUF,1,10,49,(4:06) T.Brady pass incomplete short right to R.Gronkowski (M.Dareus). Pass tipped at line receiver at BUF 40.,7,0,2012 -20120930_NE@BUF,1,49,0,NE,BUF,2,10,49,(4:00) (Shotgun) S.Ridley up the middle to BUF 41 for 8 yards (N.Barnett).,7,0,2012 -20120930_NE@BUF,1,48,30,NE,BUF,3,2,41,(3:30) (Shotgun) T.Brady pass incomplete short left to B.Lloyd. Thrown wide of receiver near sideline at BUF 33.,7,0,2012 -20120930_NE@BUF,1,48,26,NE,BUF,4,2,41,(3:26) Z.Mesko punts 35 yards to BUF 6 Center-D.Aiken downed by NE-M.Slater.,7,0,2012 -20120930_NE@BUF,1,48,18,BUF,NE,1,10,94,(3:18) R.Fitzpatrick pass short left to D.Dickerson to BUF 30 for 24 yards (S.Gregory). Screen pass caught at BUF 5. Key block: E.Wood.,0,7,2012 -20120930_NE@BUF,1,47,32,BUF,NE,1,10,70,(2:32) F.Jackson up the middle to BUF 35 for 5 yards (K.Love P.Chung).,0,7,2012 -20120930_NE@BUF,1,46,57,BUF,NE,2,5,65,(1:57) F.Jackson right guard to BUF 36 for 1 yard (T.Wilson). BUF-K.Urbik was injured during the play. K.Urbik walks off.,0,7,2012 -20120930_NE@BUF,1,46,15,BUF,NE,3,4,64,(1:15) (Shotgun) R.Fitzpatrick sacked at BUF 31 for -5 yards (C.Jones).,0,7,2012 -20120930_NE@BUF,1,45,53,BUF,NE,4,9,69,(:53) S.Powell punts 54 yards to NE 15 Center-G.Sanborn. W.Welker to NE 29 for 14 yards (C.White).,0,7,2012 -20120930_NE@BUF,1,45,42,NE,BUF,1,10,71,(:42) T.Brady pass incomplete deep left to B.Lloyd (S.Gilmore). Receiver and coverage along sideline at NE 49.,7,0,2012 -20120930_NE@BUF,1,45,36,NE,BUF,2,10,71,(:36) (No Huddle) B.Bolden left tackle to NE 41 for 12 yards (G.Wilson).,7,0,2012 -20120930_NE@BUF,2,45,0,NE,BUF,1,10,59,(15:00) (Shotgun) T.Brady pass incomplete short right to W.Welker. Thrown wide of receiver at BUF 49.,7,0,2012 -20120930_NE@BUF,2,44,55,NE,BUF,2,10,59,(14:55) B.Bolden left tackle pushed ob at NE 43 for 2 yards (B.Scott).,7,0,2012 -20120930_NE@BUF,2,44,27,NE,BUF,3,8,57,(14:27) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 49 for 6 yards (N.Barnett J.Byrd). Caught at NE 49.,7,0,2012 -20120930_NE@BUF,2,43,52,NE,BUF,4,2,51,(13:52) Z.Mesko punts 49 yards to BUF 2 Center-D.Aiken downed by NE-M.Slater. Kick kept in play by M.Cole.,7,0,2012 -20120930_NE@BUF,2,43,41,BUF,NE,1,10,98,(13:41) C.Spiller left guard to BUF 4 for 2 yards (K.Arrington).,0,7,2012 -20120930_NE@BUF,2,43,4,BUF,NE,2,8,96,(13:04) R.Fitzpatrick pass deep right intended for T.Graham INTERCEPTED by D.McCourty [C.Jones] at BUF 42. D.McCourty to BUF 42 for no gain (T.Graham). Coverage near sideline thrown under pressure.,0,7,2012 -20120930_NE@BUF,2,42,56,NE,BUF,1,10,42,(12:56) B.Bolden right guard to BUF 30 for 12 yards (S.Gilmore J.Byrd). BUF-S.Gilmore was injured during the play. S.Gilmore assisted off.,7,0,2012 -20120930_NE@BUF,2,42,18,NE,BUF,1,10,30,(12:18) T.Brady pass incomplete short right to R.Gronkowski. Thrown wide of receiver near sideline at BUF 28. Pressure on QB: K.Williams.,7,0,2012 -20120930_NE@BUF,2,42,9,NE,BUF,2,10,30,(12:09) B.Bolden right guard to BUF 31 for -1 yards (K.Williams).,7,0,2012 -20120930_NE@BUF,2,41,27,NE,BUF,3,11,31,(11:27) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd (A.Williams). Receiver and coverage along sideline at BUF 12.,7,0,2012 -20120930_NE@BUF,2,41,21,NE,BUF,4,11,31,(11:21) S.Gostkowski 49 yard field goal is No Good Wide Right Center-D.Aiken Holder-Z.Mesko.,7,0,2012 -20120930_NE@BUF,2,41,16,BUF,NE,1,10,61,(11:16) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to NE 49 for 12 yards (P.Chung). Caught at BUF 45 slanting from right.,0,7,2012 -20120930_NE@BUF,2,40,41,BUF,NE,1,10,49,(10:41) (No Huddle Shotgun) F.Jackson right tackle to BUF 49 for -2 yards (D.McCourty). Penalty on BUF-E.Pears Offensive Holding declined.,0,7,2012 -20120930_NE@BUF,2,40,18,BUF,NE,2,12,51,(10:18) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham [J.Cunningham]. Overthrown receiver at NE 10.,0,7,2012 -20120930_NE@BUF,2,40,13,BUF,NE,3,12,51,(10:13) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler. Overthrown receiver at NE 38.,0,7,2012 -20120930_NE@BUF,2,40,7,BUF,NE,4,12,51,(10:07) S.Powell punts 42 yards to NE 9 Center-G.Sanborn fair catch by W.Welker.,0,7,2012 -20120930_NE@BUF,2,40,0,NE,BUF,1,10,91,(10:00) T.Brady pass short middle to R.Gronkowski to NE 24 for 15 yards (J.Byrd). FUMBLES (J.Byrd) RECOVERED by BUF-J.Byrd at NE 24. J.Byrd to NE 24 for no gain (R.Gronkowski). Caught at NE 20 slanting from left.,7,0,2012 -20120930_NE@BUF,2,39,51,BUF,NE,1,10,24,(9:51) (Shotgun) R.Fitzpatrick pass deep right to S.Chandler for 24 yards TOUCHDOWN. Caught in coverage in front corner of end zone.,0,7,2012 -20120930_NE@BUF,2,39,51,BUF,NE,,,24,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,0,7,2012 -20120930_NE@BUF,2,39,51,BUF,NE,,,24,J.Potter kicks 66 yards from BUF 35 to NE -1. D.McCourty to NE 19 for 20 yards (J.White).,7,7,2012 -20120930_NE@BUF,2,39,38,NE,BUF,1,10,81,(9:38) T.Brady pass short left to W.Welker pushed ob at NE 28 for 9 yards (S.Gilmore). Caught near sideline at NE 25.,7,7,2012 -20120930_NE@BUF,2,39,27,NE,BUF,2,1,72,(9:27) (No Huddle) S.Ridley left guard to NE 37 for 9 yards (S.Gilmore M.Anderson).,7,7,2012 -20120930_NE@BUF,2,39,2,NE,BUF,1,10,63,(9:02) (No Huddle) S.Ridley up the middle to NE 44 for 7 yards (A.Williams B.Scott).,7,7,2012 -20120930_NE@BUF,2,38,40,NE,BUF,2,3,56,(8:40) (No Huddle) S.Ridley up the middle to 50 for 6 yards (J.Byrd N.Barnett).,7,7,2012 -20120930_NE@BUF,2,38,15,NE,BUF,1,10,50,(8:15) (No Huddle Shotgun) S.Vereen up the middle to 50 for no gain (N.Barnett B.Scott).,7,7,2012 -20120930_NE@BUF,2,37,45,NE,BUF,2,10,50,(7:45) (No Huddle Shotgun) T.Brady pass incomplete short middle to S.Vereen. Underthrown receiver at NE 47.,7,7,2012 -20120930_NE@BUF,2,37,41,NE,BUF,3,10,50,(7:41) (Shotgun) T.Brady pass short middle to B.Lloyd to BUF 33 for 17 yards (S.Gilmore). Caught at BUF 35 slanting from left.,7,7,2012 -20120930_NE@BUF,2,36,57,NE,BUF,1,10,33,(6:57) (No Huddle Shotgun) T.Brady pass incomplete short left to R.Gronkowski. Underthrown receiver at BUF 29. Thrown under pressure: K.Williams.,7,7,2012 -20120930_NE@BUF,2,36,52,NE,BUF,2,10,33,(6:52) S.Ridley left guard to BUF 25 for 8 yards (N.Barnett).,7,7,2012 -20120930_NE@BUF,2,36,29,NE,BUF,3,2,25,(6:29) (No Huddle) S.Ridley left guard to BUF 24 for 1 yard (B.Scott N.Barnett).,7,7,2012 -20120930_NE@BUF,2,35,46,NE,BUF,4,1,24,(5:46) S.Gostkowski 42 yard field goal is No Good Wide Left Center-D.Aiken Holder-Z.Mesko.,7,7,2012 -20120930_NE@BUF,2,35,42,BUF,NE,1,10,68,(5:42) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 39 for 7 yards (B.Spikes). Screen pass caught at BUF 30.,7,7,2012 -20120930_NE@BUF,2,35,25,BUF,NE,2,3,61,(5:25) (No Huddle Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 39 for no gain (D.McCourty B.Spikes). Out-pattern caught at BUF 37.,7,7,2012 -20120930_NE@BUF,2,34,40,BUF,NE,3,3,61,(4:40) (Shotgun) R.Fitzpatrick pass deep left to F.Jackson to NE 27 for 34 yards (S.Ridley). Caught along sideline at NE 30.,7,7,2012 -20120930_NE@BUF,2,34,0,BUF,NE,1,10,27,(4:00) (No Huddle Shotgun) C.Spiller up the middle pushed ob at NE 20 for 7 yards (D.McCourty).,7,7,2012 -20120930_NE@BUF,2,33,35,BUF,NE,2,3,20,(3:35) (No Huddle Shotgun) R.Fitzpatrick pass deep middle to S.Chandler for 20 yards TOUCHDOWN. Caught at goal line.,7,7,2012 -20120930_NE@BUF,2,33,35,BUF,NE,,,20,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,7,7,2012 -20120930_NE@BUF,2,33,35,BUF,NE,,,20,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,14,7,2012 -20120930_NE@BUF,2,33,30,NE,BUF,1,10,80,(3:30) S.Ridley right guard to NE 20 for no gain (B.Scott).,7,14,2012 -20120930_NE@BUF,2,32,59,NE,BUF,2,10,80,(2:59) T.Brady sacked at NE 13 for -7 yards (sack split by M.Dareus and K.Williams).,7,14,2012 -20120930_NE@BUF,2,32,24,NE,BUF,3,17,87,(2:24) (Shotgun) T.Brady pass short middle to W.Welker to NE 27 for 14 yards (J.Byrd). FUMBLES (J.Byrd) RECOVERED by BUF-B.Scott at NE 29. B.Scott to NE 21 for 8 yards (R.Wendell). The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,14,2012 -20120930_NE@BUF,2,32,15,BUF,NE,1,10,21,(2:15) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler (P.Chung). Receiver and coverage along sideline at NE 9.,14,7,2012 -20120930_NE@BUF,2,32,10,BUF,NE,2,10,21,(2:10) (Shotgun) R.Fitzpatrick pass incomplete deep middle to St.Johnson. Overthrown receiver at NE 3.,14,7,2012 -20120930_NE@BUF,2,32,6,BUF,NE,3,10,21,(2:06) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to NE 7 for 14 yards (T.Wilson). Caught at NE 7 crossing from right.,14,7,2012 -20120930_NE@BUF,2,31,59,BUF,NE,1,7,7,(1:59) C.Spiller up the middle to NE 4 for 3 yards (B.Spikes K.Love).,14,7,2012 -20120930_NE@BUF,2,31,19,BUF,NE,2,4,4,(1:19) (Shotgun) C.Spiller up the middle to NE 1 for 3 yards (V.Wilfork). FUMBLES (V.Wilfork) RECOVERED by NE-V.Wilfork at NE 2. V.Wilfork to NE 4 for 2 yards (R.Fitzpatrick).,14,7,2012 -20120930_NE@BUF,2,31,11,NE,BUF,1,10,96,(1:11) S.Ridley up the middle to NE 13 for 9 yards (G.Wilson S.Gilmore).,7,14,2012 -20120930_NE@BUF,2,30,43,NE,BUF,2,1,87,(:43) S.Ridley up the middle to NE 18 for 5 yards (M.Anderson N.Barnett).,7,14,2012 -20120930_NE@BUF,3,30,0,BUF,NE,,,87,J.Potter kicks 73 yards from BUF 35 to NE -8. D.McCourty Touchback.,14,7,2012 -20120930_NE@BUF,3,30,0,NE,BUF,1,10,80,(15:00) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 46 for 26 yards (J.Byrd). Out-pattern caught at NE 23.,7,14,2012 -20120930_NE@BUF,3,29,38,NE,BUF,1,10,54,(14:38) B.Bolden up the middle to NE 48 for 2 yards (B.Scott; N.Barnett).,7,14,2012 -20120930_NE@BUF,3,29,7,NE,BUF,2,8,52,(14:07) (Shotgun) T.Brady pass incomplete deep left to R.Gronkowski (S.Gilmore). Receiver and coverage at BUF 5.,7,14,2012 -20120930_NE@BUF,3,28,58,NE,BUF,3,8,52,(13:58) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker (K.Williams). Pass batted at line.,7,14,2012 -20120930_NE@BUF,3,28,54,NE,BUF,4,8,52,(13:54) Z.Mesko punts 35 yards to BUF 17 Center-D.Aiken fair catch by L.McKelvin.,7,14,2012 -20120930_NE@BUF,3,28,45,BUF,NE,1,10,83,(13:45) (Shotgun) F.Jackson left tackle to BUF 17 for no gain (T.White).,14,7,2012 -20120930_NE@BUF,3,28,6,BUF,NE,2,10,83,(13:06) (Shotgun) PENALTY on BUF-E.Pears False Start 5 yards enforced at BUF 17 - No Play.,14,7,2012 -20120930_NE@BUF,3,27,45,BUF,NE,2,15,88,(12:45) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (B.Spikes). Pass tipped at BUF 23 receiver at BUF 27.,14,7,2012 -20120930_NE@BUF,3,27,40,BUF,NE,3,15,88,(12:40) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to BUF 28 for 16 yards (K.Arrington). Screen pass caught at BUF 10.,14,7,2012 -20120930_NE@BUF,3,26,56,BUF,NE,1,10,72,(11:56) F.Jackson left guard to BUF 32 for 4 yards (V.Wilfork).,14,7,2012 -20120930_NE@BUF,3,26,18,BUF,NE,2,6,68,(11:18) (Shotgun) R.Fitzpatrick pass short middle to D.Jones for 68 yards TOUCHDOWN. Caught at BUF 39 crossing from right.,14,7,2012 -20120930_NE@BUF,3,26,18,BUF,NE,,,68,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,14,7,2012 -20120930_NE@BUF,3,26,18,BUF,NE,,,68,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,21,7,2012 -20120930_NE@BUF,3,26,8,NE,BUF,1,10,80,(11:08) (Shotgun) T.Brady pass short middle to B.Bolden to NE 31 for 11 yards (S.Gilmore). Caught at NE 25 crossing from left.,7,21,2012 -20120930_NE@BUF,3,25,41,NE,BUF,1,10,69,(10:41) (Shotgun) B.Bolden right guard pushed ob at BUF 42 for 27 yards (G.Wilson).,7,21,2012 -20120930_NE@BUF,3,25,11,NE,BUF,1,10,42,(10:11) (No Huddle) B.Bolden right tackle to BUF 29 for 13 yards (N.Barnett A.Williams).,7,21,2012 -20120930_NE@BUF,3,24,47,NE,BUF,1,10,29,(9:47) (No Huddle) S.Ridley up the middle to BUF 22 for 7 yards (G.Wilson; J.Byrd).,7,21,2012 -20120930_NE@BUF,3,24,22,NE,BUF,2,3,22,(9:22) S.Ridley up the middle to BUF 18 for 4 yards (B.Scott).,7,21,2012 -20120930_NE@BUF,3,23,54,NE,BUF,1,10,18,(8:54) T.Brady pass incomplete short middle to R.Gronkowski. Pass dropped at BUF 4 crossing from left.,7,21,2012 -20120930_NE@BUF,3,23,51,NE,BUF,2,10,18,(8:51) S.Ridley left guard to BUF 17 for 1 yard (B.Scott M.Dareus).,7,21,2012 -20120930_NE@BUF,3,23,18,NE,BUF,3,9,17,(8:18) (Shotgun) T.Brady pass short left to D.Woodhead for 17 yards TOUCHDOWN. Caught in flat at BUF 10 slanted toward middle after catch.,7,21,2012 -20120930_NE@BUF,3,23,18,NE,BUF,,,17,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,21,2012 -20120930_NE@BUF,3,23,18,NE,BUF,,,17,S.Gostkowski kicks 68 yards from NE 35 to BUF -3. L.McKelvin Touchback.,14,21,2012 -20120930_NE@BUF,3,23,10,BUF,NE,1,10,80,(8:10) (Shotgun) R.Fitzpatrick pass incomplete deep right to T.Graham. Overthrown receiver along sideline at BUF 48.,21,14,2012 -20120930_NE@BUF,3,23,5,BUF,NE,2,10,80,(8:05) (Shotgun) C.Spiller up the middle to BUF 21 for 1 yard (V.Wilfork).,21,14,2012 -20120930_NE@BUF,3,22,24,BUF,NE,3,9,79,(7:24) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler. Thrown wide of receiver in flat at BUF 31.,21,14,2012 -20120930_NE@BUF,3,22,19,BUF,NE,4,9,79,(7:19) S.Powell punts 54 yards to NE 25 Center-G.Sanborn out of bounds. PENALTY on NE-T.Wilson Offensive Holding 10 yards enforced at NE 25.,21,14,2012 -20120930_NE@BUF,3,22,12,NE,BUF,1,10,85,(7:12) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 28 for 13 yards (J.Rogers). Caught near sideline at NE 25.,14,21,2012 -20120930_NE@BUF,3,21,57,NE,BUF,1,10,72,(6:57) S.Ridley left guard to NE 30 for 2 yards (M.Dareus; A.Carrington).,14,21,2012 -20120930_NE@BUF,3,21,24,NE,BUF,2,8,70,(6:24) (Shotgun) T.Brady pass short middle to W.Welker to NE 44 for 14 yards (B.Scott). Caught at NE 35.,14,21,2012 -20120930_NE@BUF,3,20,53,NE,BUF,1,10,56,(5:53) B.Bolden up the middle to BUF 36 for 20 yards (G.Wilson J.Rogers).,14,21,2012 -20120930_NE@BUF,3,20,24,NE,BUF,1,10,36,(5:24) (No Huddle) B.Bolden left guard to BUF 32 for 4 yards (K.Williams B.Scott).,14,21,2012 -20120930_NE@BUF,3,19,49,NE,BUF,2,6,32,(4:49) (Shotgun) T.Brady pass deep middle to W.Welker to BUF 13 for 19 yards (G.Wilson) [K.Williams]. Caught at BUF 15 slanting from right. PENALTY on BUF-K.Williams Roughing the Passer 7 yards enforced at BUF 13.,14,21,2012 -20120930_NE@BUF,3,19,24,NE,BUF,1,6,6,(4:24) (Shotgun) B.Bolden up the middle to BUF 4 for 2 yards (B.Scott).,14,21,2012 -20120930_NE@BUF,3,18,59,NE,BUF,2,4,4,(3:59) (No Huddle Shotgun) T.Brady scrambles left tackle for 4 yards TOUCHDOWN.,14,21,2012 -20120930_NE@BUF,3,18,59,NE,BUF,,,4,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,21,2012 -20120930_NE@BUF,3,18,59,NE,BUF,,,4,S.Gostkowski kicks 72 yards from NE 35 to BUF -7. L.McKelvin Touchback.,21,21,2012 -20120930_NE@BUF,3,18,53,BUF,NE,1,10,80,(3:53) R.Fitzpatrick pass deep left to D.Jones to BUF 42 for 22 yards (P.Chung). Caught in flat at BUF 37.,21,21,2012 -20120930_NE@BUF,3,18,12,BUF,NE,1,10,58,(3:12) (Shotgun) F.Jackson up the middle to BUF 40 for -2 yards (R.Ninkovich; B.Spikes).,21,21,2012 -20120930_NE@BUF,3,17,31,BUF,NE,2,12,60,(2:31) (Shotgun) R.Fitzpatrick sacked at BUF 34 for -6 yards (R.Ninkovich). FUMBLES (R.Ninkovich) and recovers at BUF 35. BUF-C.Glenn was injured during the play. Sack credited for 5 yds. (to point of recovery). C.Glenn walks off.,21,21,2012 -20120930_NE@BUF,3,17,7,BUF,NE,3,17,65,(2:07) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver along sideline at NE 45.,21,21,2012 -20120930_NE@BUF,3,17,3,BUF,NE,4,17,65,(2:03) S.Powell punts 28 yards to NE 37 Center-G.Sanborn out of bounds.,21,21,2012 -20120930_NE@BUF,3,16,56,NE,BUF,1,10,63,(1:56) (Shotgun) T.Brady pass short left to W.Welker pushed ob at NE 45 for 8 yards (J.Rogers). Caught along sideline at NE 42.,21,21,2012 -20120930_NE@BUF,3,16,34,NE,BUF,2,2,55,(1:34) S.Ridley right guard to NE 48 for 3 yards (N.Barnett K.Williams).,21,21,2012 -20120930_NE@BUF,3,15,48,NE,BUF,1,10,52,(:48) (Shotgun) T.Brady pass short left to R.Gronkowski to BUF 39 for 13 yards (N.Barnett). Caught at BUF 44 crossing from middle.,21,21,2012 -20120930_NE@BUF,3,15,15,NE,BUF,1,10,39,(:15) S.Ridley left guard to BUF 28 for 11 yards (G.Wilson N.Barnett).,21,21,2012 -20120930_NE@BUF,4,15,0,NE,BUF,1,10,28,(15:00) T.Brady pass deep middle to R.Gronkowski for 28 yards TOUCHDOWN. Caught at BUF 10.,21,21,2012 -20120930_NE@BUF,4,15,0,NE,BUF,,,28,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,21,2012 -20120930_NE@BUF,4,15,0,NE,BUF,,,28,S.Gostkowski kicks 70 yards from NE 35 to BUF -5. L.McKelvin to BUF 21 for 26 yards (N.Ebner M.Slater).,28,21,2012 -20120930_NE@BUF,4,14,49,BUF,NE,1,10,79,(14:49) (Shotgun) C.Spiller up the middle to BUF 35 for 14 yards (R.Ninkovich).,21,28,2012 -20120930_NE@BUF,4,14,12,BUF,NE,1,10,65,(14:12) (Shotgun) F.Jackson right guard to BUF 37 for 2 yards (R.Ninkovich B.Spikes).,21,28,2012 -20120930_NE@BUF,4,13,33,BUF,NE,2,8,63,(13:33) (Shotgun) F.Jackson right guard to BUF 42 for 5 yards (B.Spikes). FUMBLES (B.Spikes) RECOVERED by NE-T.Wilson at BUF 42. T.Wilson to BUF 42 for no gain (E.Pears).,21,28,2012 -20120930_NE@BUF,4,13,26,NE,BUF,1,10,42,(13:26) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd (S.Gilmore). Receiver and coverage near sideline at BUF 25.,28,21,2012 -20120930_NE@BUF,4,13,21,NE,BUF,2,10,42,(13:21) S.Ridley left guard to BUF 29 for 13 yards (G.Wilson A.Williams).,28,21,2012 -20120930_NE@BUF,4,12,48,NE,BUF,1,10,29,(12:48) B.Bolden left guard to BUF 16 for 13 yards (G.Wilson B.Scott). BUF-M.Anderson was injured during the play. M.Anderson walks off.,28,21,2012 -20120930_NE@BUF,4,12,17,NE,BUF,1,10,16,(12:17) B.Bolden left tackle to BUF 2 for 14 yards (G.Wilson D.Searcy).,28,21,2012 -20120930_NE@BUF,4,11,49,NE,BUF,1,2,2,(11:49) (No Huddle) T.Brady pass incomplete short left to R.Gronkowski (S.Gilmore). Receiver and coverage in rear corner of end zone.,28,21,2012 -20120930_NE@BUF,4,11,46,NE,BUF,2,2,2,(11:46) S.Ridley left tackle for 2 yards TOUCHDOWN. Penalty on BUF Defensive 12 On-field declined.,28,21,2012 -20120930_NE@BUF,4,11,46,NE,BUF,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,28,21,2012 -20120930_NE@BUF,4,11,46,NE,BUF,,,2,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,35,21,2012 -20120930_NE@BUF,4,11,42,BUF,NE,1,10,80,(11:42) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones (V.Wilfork). Receiver and breakup at BUF 18.,21,35,2012 -20120930_NE@BUF,4,11,37,BUF,NE,2,10,80,(11:37) (Shotgun) PENALTY on BUF-E.Pears False Start 5 yards enforced at BUF 20 - No Play.,21,35,2012 -20120930_NE@BUF,4,11,37,BUF,NE,2,15,85,(11:37) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Dropped at BUF 21.,21,35,2012 -20120930_NE@BUF,4,11,33,BUF,NE,3,15,85,(11:33) (Shotgun) R.Fitzpatrick pass deep right intended for St.Johnson INTERCEPTED by D.McCourty at BUF 46. D.McCourty pushed ob at BUF 12 for 34 yards (E.Wood). Receiver underthrown in flat.,21,35,2012 -20120930_NE@BUF,4,11,19,NE,BUF,1,10,12,(11:19) B.Bolden left guard to BUF 7 for 5 yards (A.Moats).,35,21,2012 -20120930_NE@BUF,4,10,34,NE,BUF,2,5,7,(10:34) B.Bolden left tackle for 7 yards TOUCHDOWN.,35,21,2012 -20120930_NE@BUF,4,10,34,NE,BUF,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,35,21,2012 -20120930_NE@BUF,4,10,34,NE,BUF,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,42,21,2012 -20120930_NE@BUF,4,10,29,BUF,NE,1,10,80,(10:29) (Shotgun) R.Fitzpatrick pass short middle to T.Graham to BUF 29 for 9 yards (K.Arrington). Caught at BUF 23 slanting from right.,21,42,2012 -20120930_NE@BUF,4,9,58,BUF,NE,2,1,71,(9:58) (No Huddle Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 36 for 7 yards (S.Gregory). Caught in flat at BUF 34 turned to middle after catch.,21,42,2012 -20120930_NE@BUF,4,9,24,BUF,NE,1,10,64,(9:24) (No Huddle Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 38 for 2 yards (S.Moore). Screen pass caught at BUF 30.,21,42,2012 -20120930_NE@BUF,4,9,5,BUF,NE,2,8,62,(9:05) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver along sideline at NE 45.,21,42,2012 -20120930_NE@BUF,4,9,0,BUF,NE,3,8,62,(9:00) (Shotgun) R.Fitzpatrick pass short left to D.Dickerson to 50 for 12 yards (S.Gregory). Caught at 50 crossing from middle.,21,42,2012 -20120930_NE@BUF,4,8,27,BUF,NE,1,10,50,(8:27) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short right to T.Graham (K.Arrington). Receiver and breakup along sideline at NE 41.,21,42,2012 -20120930_NE@BUF,4,8,20,BUF,NE,2,10,50,(8:20) (Shotgun) R.Fitzpatrick up the middle to NE 45 for 5 yards (J.Mayo T.Wilson).,21,42,2012 -20120930_NE@BUF,4,7,47,BUF,NE,3,5,45,(7:47) (Shotgun) C.Spiller up the middle to NE 37 for 8 yards (C.Jones B.Spikes).,21,42,2012 -20120930_NE@BUF,4,7,17,BUF,NE,1,10,37,(7:17) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Caught out of bounds at NE 11.,21,42,2012 -20120930_NE@BUF,4,7,12,BUF,NE,2,10,37,(7:12) (Shotgun) R.Fitzpatrick scrambles up the middle to NE 35 for 2 yards.,21,42,2012 -20120930_NE@BUF,4,6,39,BUF,NE,3,8,35,(6:39) (No Huddle Shotgun) R.Fitzpatrick pass deep right to B.Smith for 35 yards TOUCHDOWN. Caught in flat at NE 10.,21,42,2012 -20120930_NE@BUF,4,6,39,BUF,NE,,,35,R.Lindell extra point is GOOD Center-G.Sanborn Holder-T.Thigpen.,21,42,2012 -20120930_NE@BUF,4,6,39,BUF,NE,,,35,J.Potter kicks onside 13 yards from BUF 35 to BUF 48. R.Gronkowski (didn't try to advance) to BUF 48 for no gain.,28,42,2012 -20120930_NE@BUF,4,6,31,NE,BUF,1,10,48,(6:31) T.Brady pass incomplete deep right to D.Fells. Overthrown receiver along sideline at BUF 27.,42,28,2012 -20120930_NE@BUF,4,6,24,NE,BUF,2,10,48,(6:24) S.Ridley up the middle to BUF 47 for 1 yard (N.Barnett).,42,28,2012 -20120930_NE@BUF,4,5,47,NE,BUF,3,9,47,(5:47) (Shotgun) T.Brady pass deep middle to W.Welker to BUF 30 for 17 yards (B.Scott). Caught at BUF 30 crossing from left.,42,28,2012 -20120930_NE@BUF,4,5,1,NE,BUF,1,10,30,(5:01) B.Bolden up the middle to BUF 24 for 6 yards (N.Barnett A.Carrington).,42,28,2012 -20120930_NE@BUF,4,4,13,NE,BUF,2,4,24,(4:13) B.Bolden right guard to BUF 25 for -1 yards (M.Williams K.Sheppard).,42,28,2012 -20120930_NE@BUF,4,4,9,NE,BUF,3,5,25,(4:09) (Shotgun) T.Brady pass deep right to B.Lloyd for 25 yards TOUCHDOWN. Caught in front corner of end zone. Penalty on BUF-J.Rogers Defensive Holding declined.,42,28,2012 -20120930_NE@BUF,4,4,9,NE,BUF,,,25,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,42,28,2012 -20120930_NE@BUF,4,4,9,NE,BUF,,,25,S.Gostkowski kicks 72 yards from NE 35 to BUF -7. B.Smith Touchback.,49,28,2012 -20120930_NE@BUF,4,4,2,BUF,NE,1,10,80,(4:02) (Shotgun) R.Fitzpatrick pass deep left intended for St.Johnson INTERCEPTED by T.Wilson at BUF 41. T.Wilson to BUF 19 for 22 yards (F.Jackson).,28,49,2012 -20120930_NE@BUF,4,3,54,NE,BUF,1,10,19,(3:54) S.Ridley left guard to BUF 21 for -2 yards (A.Carrington).,49,28,2012 -20120930_NE@BUF,4,3,11,NE,BUF,2,12,21,(3:11) S.Ridley left tackle to BUF 20 for 1 yard (D.Searcy). FUMBLES (D.Searcy) ball out of bounds at BUF 20.,49,28,2012 -20120930_NE@BUF,4,2,41,NE,BUF,3,11,20,(2:41) (Shotgun) T.Brady pass short left to B.Lloyd to BUF 12 for 8 yards (K.Williams). Screen pass caught at BUF 20.,49,28,2012 -20120930_NE@BUF,4,2,0,NE,BUF,4,3,12,(2:00) S.Gostkowski 30 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,49,28,2012 -20120930_NE@BUF,4,2,0,NE,BUF,,,12,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. Kick through end zone.,52,28,2012 -20120930_NE@BUF,4,1,56,BUF,NE,1,10,80,(1:56) (Shotgun) T.Choice left guard to BUF 22 for 2 yards (J.Cunningham).,28,52,2012 -20120930_NE@BUF,4,1,18,BUF,NE,2,8,78,(1:18) (Shotgun) T.Choice right guard pushed ob at BUF 34 for 12 yards (D.McCourty).,28,52,2012 -20120930_NE@BUF,4,1,10,BUF,NE,1,10,66,(1:10) (Shotgun) R.Fitzpatrick pass short right to T.Choice to BUF 35 for 1 yard (R.Dowling). Screen pass caught at BUF 29.,28,52,2012 -20120930_NE@BUF,4,0,29,BUF,NE,2,9,65,(:29) J.White up the middle to BUF 43 for 8 yards (P.Chung).,28,52,2012 -20120930_NE@BUF,4,0,29,BUF,NE,,,65,                      ,28,52,2012 -20120930_MIN@DET,1,0,0,DET,MIN,,,65,J.Hanson kicks 70 yards from DET 35 to MIN -5. P.Harvin for 105 yards TOUCHDOWN.,0,0,2012 -20120930_MIN@DET,1,0,0,MIN,DET,,,65,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20120930_MIN@DET,1,0,0,MIN,DET,,,65,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,7,0,2012 -20120930_MIN@DET,1,59,48,DET,MIN,1,10,80,(14:48) R.Reiff reported in as eligible. M.Stafford pass incomplete deep middle to C.Johnson (C.Cook). PENALTY on MIN-J.Sanford Defensive Pass Interference 56 yards enforced at DET 20 - No Play. Penalty on MIN-K.Williams Defensive Offside declined.,0,7,2012 -20120930_MIN@DET,1,59,40,DET,MIN,1,10,24,(14:40) (Shotgun) M.Stafford scrambles left end to MIN 23 for 1 yard (J.Brinkley; J.Allen).,0,7,2012 -20120930_MIN@DET,1,58,57,DET,MIN,2,9,23,(13:57) M.Leshoure right tackle to MIN 22 for 1 yard (B.Robison).,0,7,2012 -20120930_MIN@DET,1,58,16,DET,MIN,3,8,22,(13:16) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (J.Robinson).,0,7,2012 -20120930_MIN@DET,1,58,10,DET,MIN,4,8,22,(13:10) J.Hanson 40 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,7,2012 -20120930_MIN@DET,1,58,10,DET,MIN,,,22,J.Hanson kicks 37 yards from DET 35 to MIN 28. C.Ballard to MIN 32 for 4 yards (J.Lacey).,3,7,2012 -20120930_MIN@DET,1,58,2,MIN,DET,1,10,68,(13:02) A.Peterson up the middle to MIN 44 for 12 yards (E.Coleman K.Vanden Bosch).,7,3,2012 -20120930_MIN@DET,1,57,25,MIN,DET,1,10,56,(12:25) P.Harvin right end to MIN 41 for -3 yards (C.Avril).,7,3,2012 -20120930_MIN@DET,1,56,49,MIN,DET,2,13,59,(11:49) C.Ponder pass short right to A.Peterson to 50 for 9 yards (D.Levy).,7,3,2012 -20120930_MIN@DET,1,56,11,MIN,DET,3,4,50,(11:11) (Shotgun) C.Ponder pass short right to J.Simpson to DET 44 for 6 yards (C.Houston).,7,3,2012 -20120930_MIN@DET,1,55,37,MIN,DET,1,10,44,(10:37) C.Ponder pass short left to J.Carlson to DET 45 for -1 yards (D.Levy).,7,3,2012 -20120930_MIN@DET,1,55,3,MIN,DET,2,11,45,(10:03) A.Peterson left tackle to DET 42 for 3 yards (E.Coleman C.Houston).,7,3,2012 -20120930_MIN@DET,1,54,23,MIN,DET,3,8,42,(9:23) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,7,3,2012 -20120930_MIN@DET,1,54,18,MIN,DET,4,8,42,(9:18) C.Kluwe punts 32 yards to DET 10 Center-C.Loeffler. S.Logan to DET 19 for 9 yards (C.Loeffler).,7,3,2012 -20120930_MIN@DET,1,54,9,DET,MIN,1,10,81,(9:09) (Shotgun) M.Leshoure up the middle to DET 22 for 3 yards (J.Brinkley; J.Allen).,3,7,2012 -20120930_MIN@DET,1,53,35,DET,MIN,2,7,78,(8:35) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 30 for 8 yards (J.Brinkley).,3,7,2012 -20120930_MIN@DET,1,52,56,DET,MIN,1,10,70,(7:56) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 43 for 13 yards (H.Smith).,3,7,2012 -20120930_MIN@DET,1,52,11,DET,MIN,1,10,57,(7:11) M.Leshoure left tackle to DET 40 for -3 yards (J.Allen).,3,7,2012 -20120930_MIN@DET,1,51,28,DET,MIN,2,13,60,(6:28) (Shotgun) M.Stafford sacked at DET 34 for -6 yards (L.Guion).,3,7,2012 -20120930_MIN@DET,1,50,51,DET,MIN,3,19,66,(5:51) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 49 for 15 yards (A.Winfield).,3,7,2012 -20120930_MIN@DET,1,50,17,DET,MIN,4,4,51,(5:17) N.Harris punts 42 yards to MIN 9 Center-D.Muhlbach fair catch by M.Sherels.,3,7,2012 -20120930_MIN@DET,1,50,9,MIN,DET,1,10,91,(5:09) PENALTY on DET-N.Fairley Neutral Zone Infraction 5 yards enforced at MIN 9 - No Play.,7,3,2012 -20120930_MIN@DET,1,50,9,MIN,DET,1,5,86,(5:09) A.Peterson right tackle to MIN 18 for 4 yards (R.Silva).,7,3,2012 -20120930_MIN@DET,1,49,27,MIN,DET,2,1,82,(4:27) A.Peterson up the middle to MIN 25 for 7 yards (E.Coleman D.Bentley).,7,3,2012 -20120930_MIN@DET,1,48,53,MIN,DET,1,10,75,(3:53) C.Ponder pass short right to P.Harvin to MIN 32 for 7 yards (R.Silva).,7,3,2012 -20120930_MIN@DET,1,48,18,MIN,DET,2,3,68,(3:18) C.Ponder pass incomplete deep left to J.Simpson. PENALTY on DET-D.Bentley Defensive Pass Interference 31 yards enforced at MIN 32 - No Play.,7,3,2012 -20120930_MIN@DET,1,48,11,MIN,DET,1,10,37,(3:11) A.Peterson up the middle to DET 33 for 4 yards (D.Levy).,7,3,2012 -20120930_MIN@DET,1,47,35,MIN,DET,2,6,33,(2:35) C.Ponder pass short right to M.Jenkins to DET 29 for 4 yards (J.Durant).,7,3,2012 -20120930_MIN@DET,1,46,53,MIN,DET,3,2,29,(1:53) C.Ponder pass short left to P.Harvin to DET 31 for -2 yards (C.Houston).,7,3,2012 -20120930_MIN@DET,1,46,21,MIN,DET,4,4,31,(1:21) B.Walsh 49 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,3,2012 -20120930_MIN@DET,1,46,21,MIN,DET,,,31,B.Walsh kicks 71 yards from MIN 35 to DET -6. S.Logan Touchback.,10,3,2012 -20120930_MIN@DET,1,46,16,DET,MIN,1,10,80,(1:16) R.Reiff reported in as eligible. M.Stafford pass short right to M.Leshoure to DET 24 for 4 yards (M.Mitchell).,3,10,2012 -20120930_MIN@DET,1,45,40,DET,MIN,2,6,76,(:40) (Shotgun) M.Stafford pass incomplete deep left to M.Leshoure.,3,10,2012 -20120930_MIN@DET,1,45,32,DET,MIN,3,6,76,(:32) (Shotgun) M.Stafford pass short right to C.Johnson to DET 31 for 7 yards (J.Robinson).,3,10,2012 -20120930_MIN@DET,2,45,0,DET,MIN,1,10,69,(15:00) M.Leshoure left end to DET 26 for -5 yards (E.Griffen C.Ballard).,3,10,2012 -20120930_MIN@DET,2,44,21,DET,MIN,2,15,74,(14:21) (Shotgun) M.Stafford pass short right to N.Burleson pushed ob at DET 34 for 8 yards (J.Robinson).,3,10,2012 -20120930_MIN@DET,2,43,50,DET,MIN,3,7,66,(13:50) (Shotgun) M.Stafford pass short left to C.Johnson to DET 40 for 6 yards (J.Brinkley).,3,10,2012 -20120930_MIN@DET,2,43,17,DET,MIN,4,1,60,(13:17) N.Harris punts 51 yards to MIN 9 Center-D.Muhlbach out of bounds.,3,10,2012 -20120930_MIN@DET,2,43,10,MIN,DET,1,10,91,(13:10) PENALTY on MIN-C.Johnson False Start 4 yards enforced at MIN 9 - No Play.,10,3,2012 -20120930_MIN@DET,2,43,10,MIN,DET,1,14,95,(13:10) A.Peterson left tackle pushed ob at MIN 23 for 18 yards (D.Bentley).,10,3,2012 -20120930_MIN@DET,2,42,40,MIN,DET,1,10,77,(12:40) C.Ponder pass short left to A.Peterson to MIN 27 for 4 yards (S.Tulloch).,10,3,2012 -20120930_MIN@DET,2,42,7,MIN,DET,2,6,73,(12:07) A.Peterson up the middle to MIN 31 for 4 yards (S.Tulloch).,10,3,2012 -20120930_MIN@DET,2,41,31,MIN,DET,3,2,69,(11:31) (Shotgun) C.Ponder pass short middle to P.Harvin to MIN 48 for 17 yards (D.Levy).,10,3,2012 -20120930_MIN@DET,2,40,52,MIN,DET,1,10,52,(10:52) T.Gerhart left tackle to DET 49 for 3 yards (L.Jackson).,10,3,2012 -20120930_MIN@DET,2,40,13,MIN,DET,2,7,49,(10:13) C.Ponder pass incomplete deep right to M.Jenkins.,10,3,2012 -20120930_MIN@DET,2,40,6,MIN,DET,3,7,49,(10:06) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson [S.Tulloch]. PENALTY on DET-D.Bentley Defensive Pass Interference 26 yards enforced at DET 49 - No Play.,10,3,2012 -20120930_MIN@DET,2,40,0,MIN,DET,1,10,23,(10:00) P.Harvin left tackle to DET 9 for 14 yards (K.Vanden Bosch).,10,3,2012 -20120930_MIN@DET,2,39,24,MIN,DET,1,9,9,(9:24) C.Ponder pass incomplete short right to P.Harvin (R.Silva).,10,3,2012 -20120930_MIN@DET,2,39,18,MIN,DET,2,9,9,(9:18) (Shotgun) Direct snap to P.Harvin. P.Harvin up the middle to DET 8 for 1 yard (J.Durant).,10,3,2012 -20120930_MIN@DET,2,38,42,MIN,DET,3,8,8,(8:42) C.Ponder sacked at DET 9 for -1 yards (K.Vanden Bosch).,10,3,2012 -20120930_MIN@DET,2,38,14,MIN,DET,4,9,9,(8:14) B.Walsh 27 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,3,2012 -20120930_MIN@DET,2,38,14,MIN,DET,,,9,B.Walsh kicks 71 yards from MIN 35 to DET -6. S.Logan Touchback.,13,3,2012 -20120930_MIN@DET,2,38,14,DET,MIN,1,10,80,(8:14) (Shotgun) M.Leshoure right tackle to DET 24 for 4 yards (J.Robinson).,3,13,2012 -20120930_MIN@DET,2,37,34,DET,MIN,2,6,76,(7:34) (Shotgun) PENALTY on DET-D.Raiola False Start 5 yards enforced at DET 24 - No Play.,3,13,2012 -20120930_MIN@DET,2,37,12,DET,MIN,2,11,81,(7:12) M.Stafford pass short right to K.Williams pushed ob at DET 24 for 5 yards (J.Robinson C.Greenway).,3,13,2012 -20120930_MIN@DET,2,36,40,DET,MIN,3,6,76,(6:40) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 32 for 8 yards (J.Brinkley).,3,13,2012 -20120930_MIN@DET,2,36,4,DET,MIN,1,10,68,(6:04) (Shotgun) M.Leshoure left tackle to DET 31 for -1 yards (J.Allen).,3,13,2012 -20120930_MIN@DET,2,35,25,DET,MIN,2,11,69,(5:25) (Shotgun) M.Stafford pass deep middle to C.Johnson to 50 for 19 yards (J.Sanford).,3,13,2012 -20120930_MIN@DET,2,34,41,DET,MIN,1,10,50,(4:41) (Shotgun) M.Stafford pass deep right to T.Young to MIN 33 for 17 yards (J.Robinson).,3,13,2012 -20120930_MIN@DET,2,34,4,DET,MIN,1,10,33,(4:04) M.Leshoure right tackle to MIN 30 for 3 yards (J.Brinkley; K.Williams).,3,13,2012 -20120930_MIN@DET,2,33,28,DET,MIN,2,7,30,(3:28) N.Burleson right end to MIN 22 for 8 yards (C.Greenway).,3,13,2012 -20120930_MIN@DET,2,32,47,DET,MIN,1,10,22,(2:47) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew (J.Sanford).,3,13,2012 -20120930_MIN@DET,2,32,42,DET,MIN,2,10,22,(2:42) (Shotgun) M.Stafford pass short right to N.Burleson to MIN 16 for 6 yards (J.Robinson). PENALTY on MIN-J.Robinson Unnecessary Roughness 8 yards enforced at MIN 16.,3,13,2012 -20120930_MIN@DET,2,32,17,DET,MIN,1,8,8,(2:17) (Shotgun) M.Stafford sacked at MIN 13 for -5 yards (J.Allen).,3,13,2012 -20120930_MIN@DET,2,32,0,DET,MIN,2,13,13,(2:00) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (H.Smith J.Sanford).,3,13,2012 -20120930_MIN@DET,2,31,55,DET,MIN,3,13,13,(1:55) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew [K.Williams].,3,13,2012 -20120930_MIN@DET,2,31,50,DET,MIN,4,13,13,(1:50) J.Hanson 31 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,3,13,2012 -20120930_MIN@DET,2,31,50,DET,MIN,,,13,J.Hanson kicks 44 yards from DET 35 to MIN 21 fair catch by R.Ellison.,6,13,2012 -20120930_MIN@DET,2,31,46,MIN,DET,1,10,79,(1:46) (Shotgun) C.Ponder pass incomplete short right to P.Harvin (C.Avril).,13,6,2012 -20120930_MIN@DET,2,31,42,MIN,DET,2,10,79,(1:42) (Shotgun) C.Ponder pass short left to J.Simpson to MIN 33 for 12 yards (D.Bentley) [K.Vanden Bosch].,13,6,2012 -20120930_MIN@DET,2,31,19,MIN,DET,1,10,67,(1:19) (No Huddle Shotgun) C.Ponder sacked at MIN 23 for -10 yards (sack split by C.Avril and N.Suh).,13,6,2012 -20120930_MIN@DET,2,30,41,MIN,DET,2,20,77,(:41) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (C.Houston).,13,6,2012 -20120930_MIN@DET,2,30,35,MIN,DET,3,20,77,(:35) (Shotgun) C.Ponder pass short right to A.Peterson to MIN 26 for 3 yards (S.Tulloch).,13,6,2012 -20120930_MIN@DET,2,30,29,MIN,DET,4,17,74,(:29) C.Kluwe punts 52 yards to DET 22 Center-C.Loeffler. S.Logan to DET 21 for -1 yards (J.Sanford).,13,6,2012 -20120930_MIN@DET,2,30,16,DET,MIN,1,10,79,(:16) (Shotgun) M.Leshoure left end to DET 25 for 4 yards (A.Winfield).,6,13,2012 -20120930_MIN@DET,3,30,0,MIN,DET,,,79,B.Walsh kicks 72 yards from MIN 35 to DET -7. S.Logan Touchback.,13,6,2012 -20120930_MIN@DET,3,30,0,DET,MIN,1,10,80,(15:00) (Shotgun) M.Stafford pass deep middle to T.Scheffler to DET 36 for 16 yards (J.Brinkley).,6,13,2012 -20120930_MIN@DET,3,29,25,DET,MIN,1,10,64,(14:25) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 36 for no gain (C.Greenway).,6,13,2012 -20120930_MIN@DET,3,28,44,DET,MIN,2,10,64,(13:44) (Shotgun) M.Stafford pass incomplete deep right to N.Burleson.,6,13,2012 -20120930_MIN@DET,3,28,38,DET,MIN,3,10,64,(13:38) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (H.Smith).,6,13,2012 -20120930_MIN@DET,3,28,30,DET,MIN,4,10,64,(13:30) N.Harris punts 41 yards to MIN 23 Center-D.Muhlbach. M.Sherels for 77 yards TOUCHDOWN.,6,13,2012 -20120930_MIN@DET,3,28,30,MIN,DET,,,64,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,6,2012 -20120930_MIN@DET,3,28,30,MIN,DET,,,64,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,20,6,2012 -20120930_MIN@DET,3,28,9,DET,MIN,1,10,80,(13:09) R.Reiff reported in as eligible. T.Young left end to DET 25 for 5 yards (J.Sanford).,6,20,2012 -20120930_MIN@DET,3,27,35,DET,MIN,2,5,75,(12:35) (Shotgun) M.Stafford pass deep right to N.Burleson to MIN 49 for 26 yards (J.Robinson).,6,20,2012 -20120930_MIN@DET,3,27,6,DET,MIN,1,10,49,(12:06) (No Huddle Shotgun) M.Leshoure up the middle to MIN 45 for 4 yards (A.Winfield; C.Greenway).,6,20,2012 -20120930_MIN@DET,3,26,43,DET,MIN,2,6,45,(11:43) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to MIN 40 for 5 yards (A.Winfield).,6,20,2012 -20120930_MIN@DET,3,26,21,DET,MIN,3,1,40,(11:21) (No Huddle) M.Leshoure up the middle to MIN 40 for no gain (J.Sanford).,6,20,2012 -20120930_MIN@DET,3,25,40,DET,MIN,4,1,40,(10:40) N.Harris punts 30 yards to MIN 10 Center-D.Muhlbach fair catch by M.Sherels.,6,20,2012 -20120930_MIN@DET,3,25,33,MIN,DET,1,10,90,(10:33) C.Ponder pass short right to K.Rudolph pushed ob at MIN 17 for 7 yards (J.Durant).,20,6,2012 -20120930_MIN@DET,3,25,10,MIN,DET,2,3,83,(10:10) A.Peterson right tackle to MIN 24 for 7 yards (D.Levy E.Coleman).,20,6,2012 -20120930_MIN@DET,3,24,32,MIN,DET,1,10,76,(9:32) C.Ponder pass incomplete deep right to P.Harvin [C.Avril].,20,6,2012 -20120930_MIN@DET,3,24,24,MIN,DET,2,10,76,(9:24) A.Peterson up the middle to MIN 27 for 3 yards (D.Levy).,20,6,2012 -20120930_MIN@DET,3,23,52,MIN,DET,3,7,73,(8:52) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 28 for 1 yard (D.Levy).,20,6,2012 -20120930_MIN@DET,3,23,16,MIN,DET,4,6,72,(8:16) C.Kluwe punts 51 yards to DET 21 Center-C.Loeffler. S.Logan to DET 48 for 27 yards (M.Mitchell).,20,6,2012 -20120930_MIN@DET,3,23,2,DET,MIN,1,10,52,(8:02) M.Stafford pass incomplete short right to N.Burleson (A.Winfield).,6,20,2012 -20120930_MIN@DET,3,22,53,DET,MIN,2,10,52,(7:53) (Shotgun) M.Stafford pass short left to J.Bell to MIN 47 for 5 yards (C.Greenway J.Brinkley).,6,20,2012 -20120930_MIN@DET,3,22,8,DET,MIN,3,5,47,(7:08) (Shotgun) M.Stafford pass incomplete short left to T.Young (C.Cook).,6,20,2012 -20120930_MIN@DET,3,22,3,DET,MIN,4,5,47,(7:03) N.Harris punts 34 yards to MIN 13 Center-D.Muhlbach fair catch by M.Sherels.,6,20,2012 -20120930_MIN@DET,3,21,56,MIN,DET,1,10,87,(6:56) C.Ponder scrambles left end ran ob at MIN 18 for 5 yards (J.Lacey).,20,6,2012 -20120930_MIN@DET,3,21,27,MIN,DET,2,5,82,(6:27) A.Peterson up the middle to MIN 20 for 2 yards (S.Tulloch).,20,6,2012 -20120930_MIN@DET,3,20,50,MIN,DET,3,3,80,(5:50) (Shotgun) C.Ponder pass incomplete short right to J.Simpson [C.Avril].,20,6,2012 -20120930_MIN@DET,3,20,44,MIN,DET,4,3,80,(5:44) C.Kluwe punts 37 yards to DET 43 Center-C.Loeffler fair catch by S.Logan.,20,6,2012 -20120930_MIN@DET,3,20,38,DET,MIN,1,10,57,(5:38) M.Leshoure right tackle to DET 45 for 2 yards (B.Robison; C.Ballard).,6,20,2012 -20120930_MIN@DET,3,20,3,DET,MIN,2,8,55,(5:03) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,6,20,2012 -20120930_MIN@DET,3,19,59,DET,MIN,3,8,55,(4:59) (Shotgun) M.Stafford pass short left to B.Pettigrew to MIN 45 for 10 yards (C.Greenway).,6,20,2012 -20120930_MIN@DET,3,19,30,DET,MIN,1,10,45,(4:30) (No Huddle Shotgun) M.Leshoure right tackle to MIN 31 for 14 yards (J.Sanford). FUMBLES (J.Sanford) RECOVERED by MIN-J.Sanford at MIN 29. J.Sanford to MIN 29 for no gain (T.Young).,6,20,2012 -20120930_MIN@DET,3,19,22,MIN,DET,1,10,71,(4:22) A.Peterson left tackle to MIN 30 for 1 yard (E.Coleman).,20,6,2012 -20120930_MIN@DET,3,18,45,MIN,DET,2,9,70,(3:45) A.Peterson up the middle to MIN 40 for 10 yards (S.Tulloch).,20,6,2012 -20120930_MIN@DET,3,18,1,MIN,DET,1,10,60,(3:01) A.Peterson right tackle to MIN 39 for -1 yards (J.Durant).,20,6,2012 -20120930_MIN@DET,3,17,16,MIN,DET,2,11,61,(2:16) A.Peterson left tackle to DET 46 for 15 yards (R.Silva).,20,6,2012 -20120930_MIN@DET,3,16,35,MIN,DET,1,10,46,(1:35) PENALTY on DET-L.Jackson Neutral Zone Infraction 5 yards enforced at DET 46 - No Play.,20,6,2012 -20120930_MIN@DET,3,16,12,MIN,DET,1,5,41,(1:12) T.Gerhart up the middle to DET 40 for 1 yard (L.Jackson; J.Durant).,20,6,2012 -20120930_MIN@DET,3,15,35,MIN,DET,2,4,40,(:35) A.Peterson up the middle to DET 37 for 3 yards (N.Fairley).,20,6,2012 -20120930_MIN@DET,4,15,0,MIN,DET,3,1,37,(15:00) A.Peterson right end to DET 32 for 5 yards (C.Avril).,20,6,2012 -20120930_MIN@DET,4,14,16,MIN,DET,1,10,32,(14:16) T.Gerhart right tackle to DET 28 for 4 yards (C.Houston; R.Silva).,20,6,2012 -20120930_MIN@DET,4,13,32,MIN,DET,2,6,28,(13:32) C.Ponder pass incomplete short right to K.Rudolph. DET-C.Avril was injured during the play. His return is Questionable.,20,6,2012 -20120930_MIN@DET,4,13,25,MIN,DET,3,6,28,(13:25) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph [K.Vanden Bosch].,20,6,2012 -20120930_MIN@DET,4,13,19,MIN,DET,4,6,28,(13:19) B.Walsh 46 yard field goal is No Good Wide Left Center-C.Loeffler Holder-C.Kluwe.,20,6,2012 -20120930_MIN@DET,4,13,15,DET,MIN,1,10,64,(13:15) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 41 for 5 yards (J.Allen). MIN-L.Guion was injured during the play. His return is Probable.,6,20,2012 -20120930_MIN@DET,4,12,33,DET,MIN,2,5,59,(12:33) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (F.Evans).,6,20,2012 -20120930_MIN@DET,4,12,29,DET,MIN,3,5,59,(12:29) (Shotgun) M.Stafford pass short middle to N.Burleson to DET 47 for 6 yards (A.Winfield).,6,20,2012 -20120930_MIN@DET,4,12,2,DET,MIN,1,10,53,(12:02) (No Huddle Shotgun) M.Stafford pass incomplete short left to C.Johnson. DET-C.Johnson was injured during the play. His return is Probable. PENALTY on MIN-C.Greenway Unnecessary Roughness 15 yards enforced at DET 47.,6,20,2012 -20120930_MIN@DET,4,11,58,DET,MIN,1,10,38,(11:58) (Shotgun) M.Stafford pass short middle to B.Pettigrew to MIN 27 for 11 yards (A.Winfield; J.Brinkley).,6,20,2012 -20120930_MIN@DET,4,11,33,DET,MIN,1,10,27,(11:33) (No Huddle Shotgun) M.Stafford pass short middle to M.Leshoure pushed ob at MIN 12 for 15 yards (J.Brinkley).,6,20,2012 -20120930_MIN@DET,4,11,8,DET,MIN,1,10,12,(11:08) (No Huddle Shotgun) J.Bell up the middle to MIN 10 for 2 yards (F.Evans).,6,20,2012 -20120930_MIN@DET,4,10,43,DET,MIN,2,8,10,(10:43) (No Huddle Shotgun) M.Stafford scrambles up the middle to MIN 7 for 3 yards (B.Robison).,6,20,2012 -20120930_MIN@DET,4,9,57,DET,MIN,3,5,7,(9:57) (Shotgun) M.Stafford pass incomplete short middle to J.Bell (H.Smith).,6,20,2012 -20120930_MIN@DET,4,9,51,DET,MIN,4,5,7,(9:51) (Shotgun) M.Stafford sacked at MIN 17 for -10 yards (E.Griffen).,6,20,2012 -20120930_MIN@DET,4,9,48,MIN,DET,1,10,83,(9:48) C.Ponder pass short left to A.Peterson to MIN 21 for 4 yards (E.Coleman).,20,6,2012 -20120930_MIN@DET,4,9,5,MIN,DET,2,6,79,(9:05) A.Peterson right end to MIN 29 for 8 yards (S.Tulloch).,20,6,2012 -20120930_MIN@DET,4,8,21,MIN,DET,1,10,71,(8:21) A.Peterson up the middle to MIN 28 for -1 yards (N.Suh).,20,6,2012 -20120930_MIN@DET,4,7,40,MIN,DET,2,11,72,(7:40) A.Peterson right tackle to MIN 27 for -1 yards (D.Levy; SamL.Hill).,20,6,2012 -20120930_MIN@DET,4,7,2,MIN,DET,3,12,73,(7:02) (Shotgun) C.Ponder pass short right to T.Gerhart to MIN 35 for 8 yards (D.Levy).,20,6,2012 -20120930_MIN@DET,4,6,21,MIN,DET,4,4,65,(6:21) C.Kluwe punts 40 yards to DET 25 Center-C.Loeffler downed by MIN-L.Dean.,20,6,2012 -20120930_MIN@DET,4,6,8,DET,MIN,1,10,75,(6:08) (Shotgun) M.Stafford pass incomplete short right to J.Bell [E.Griffen].,6,20,2012 -20120930_MIN@DET,4,6,2,DET,MIN,2,10,75,(6:02) (Shotgun) M.Stafford pass short right to J.Bell to DET 29 for 4 yards (C.Greenway).,6,20,2012 -20120930_MIN@DET,4,5,36,DET,MIN,3,6,71,(5:36) (No Huddle Shotgun) M.Stafford pass incomplete short middle to C.Johnson (A.Winfield). PENALTY on MIN-A.Winfield Defensive Pass Interference 4 yards enforced at DET 29 - No Play.,6,20,2012 -20120930_MIN@DET,4,5,33,DET,MIN,1,10,67,(5:33) (No Huddle Shotgun) M.Stafford scrambles left end to DET 42 for 9 yards (C.Greenway).,6,20,2012 -20120930_MIN@DET,4,5,7,DET,MIN,2,1,58,(5:07) (No Huddle Shotgun) M.Stafford pass short left to J.Bell to MIN 42 for 16 yards (J.Sanford).,6,20,2012 -20120930_MIN@DET,4,4,35,DET,MIN,1,10,42,(4:35) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to MIN 29 for 13 yards (A.Winfield).,6,20,2012 -20120930_MIN@DET,4,4,12,DET,MIN,1,10,29,(4:12) (No Huddle Shotgun) M.Stafford pass incomplete short left to R.Broyles [C.Ballard].,6,20,2012 -20120930_MIN@DET,4,4,6,DET,MIN,2,10,29,(4:06) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler (J.Sanford A.Winfield).,6,20,2012 -20120930_MIN@DET,4,4,0,DET,MIN,3,10,29,(4:00) (Shotgun) M.Stafford pass short middle to J.Bell to MIN 6 for 23 yards (K.Williams).,6,20,2012 -20120930_MIN@DET,4,3,27,DET,MIN,1,6,6,(3:27) (No Huddle Shotgun) M.Stafford pass incomplete short right to T.Young [J.Allen].,6,20,2012 -20120930_MIN@DET,4,3,21,DET,MIN,2,6,6,(3:21) (Shotgun) M.Stafford pass short middle to N.Burleson to MIN 1 for 5 yards (C.Greenway).,6,20,2012 -20120930_MIN@DET,4,2,58,DET,MIN,3,1,1,(2:58) (No Huddle) M.Stafford up the middle for 1 yard TOUCHDOWN.,6,20,2012 -20120930_MIN@DET,4,2,58,DET,MIN,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,6,20,2012 -20120930_MIN@DET,4,2,58,DET,MIN,,,1,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,13,20,2012 -20120930_MIN@DET,4,2,56,MIN,DET,1,10,80,(2:56) A.Peterson up the middle to MIN 19 for -1 yards (J.Durant).,20,13,2012 -20120930_MIN@DET,4,2,53,MIN,DET,2,11,81,(2:53) (Shotgun) C.Ponder pass deep left to J.Simpson to MIN 46 for 27 yards (D.Bentley).,20,13,2012 -20120930_MIN@DET,4,2,47,MIN,DET,1,10,54,(2:47) A.Peterson left tackle to MIN 46 for no gain (E.Coleman; W.Young).,20,13,2012 -20120930_MIN@DET,4,2,3,MIN,DET,2,10,54,(2:03) C.Ponder pass incomplete short right to K.Rudolph.,20,13,2012 -20120930_MIN@DET,4,1,58,MIN,DET,3,10,54,(1:58) (Shotgun) C.Ponder pass short left to J.Simpson to DET 49 for 5 yards (D.Bentley R.Silva).,20,13,2012 -20120930_MIN@DET,4,1,53,MIN,DET,4,5,49,(1:53) C.Kluwe punts 47 yards to DET 2 Center-C.Loeffler downed by MIN-R.Blanton.,20,13,2012 -20120930_MIN@DET,4,1,42,DET,MIN,1,10,98,(1:42) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 11 for 9 yards (A.Winfield; C.Greenway).,13,20,2012 -20120930_MIN@DET,4,1,20,DET,MIN,2,1,89,(1:20) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to DET 22 for 11 yards (A.Winfield; C.Greenway).,13,20,2012 -20120930_MIN@DET,4,0,59,DET,MIN,1,10,78,(:59) (No Huddle Shotgun) M.Stafford pass incomplete deep left to N.Burleson.,13,20,2012 -20120930_MIN@DET,4,0,54,DET,MIN,2,10,78,(:54) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson.,13,20,2012 -20120930_MIN@DET,4,0,49,DET,MIN,3,10,78,(:49) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,13,20,2012 -20120930_MIN@DET,4,0,44,DET,MIN,4,10,78,(:44) (Shotgun) M.Stafford pass deep right to C.Johnson to DET 39 for 17 yards (A.Winfield).,13,20,2012 -20120930_MIN@DET,4,0,24,DET,MIN,1,10,61,(:24) (No Huddle) M.Stafford spiked the ball to stop the clock.,13,20,2012 -20120930_MIN@DET,4,0,23,DET,MIN,2,10,61,(:23) (Shotgun) M.Stafford sacked at DET 38 for -1 yards (L.Guion). FUMBLES (L.Guion) RECOVERED by MIN-J.Brinkley at DET 47. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) M.Stafford sacked at DET 38 for -1 yards (L.Guion).,13,20,2012 -20120930_MIN@DET,4,0,9,DET,MIN,3,11,62,(:09) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at DET 44 for 6 yards (C.Cook).,13,20,2012 -20120930_MIN@DET,4,0,5,DET,MIN,4,5,56,(:05) (Shotgun) M.Stafford sacked at DET 33 for -11 yards (E.Griffen).,13,20,2012 -20120930_MIN@DET,4,0,5,DET,MIN,,,56,                      ,13,20,2012 -20120930_TEN@HOU,1,0,0,TEN,HOU,,,56,R.Bironas kicks 72 yards from TEN 35 to HST -7. T.Holliday pushed ob at HST 23 for 30 yards (R.Johnson).,0,0,2012 -20120930_TEN@HOU,1,59,54,HOU,TEN,1,10,77,(14:54) M.Schaub pass incomplete short left to K.Walter.,0,0,2012 -20120930_TEN@HOU,1,59,48,HOU,TEN,2,10,77,(14:48) M.Schaub pass short left to A.Johnson to TEN 44 for 33 yards (J.Babineaux).,0,0,2012 -20120930_TEN@HOU,1,59,2,HOU,TEN,1,10,44,(14:02) M.Schaub pass short middle to A.Johnson to TEN 24 for 20 yards (W.Witherspoon).,0,0,2012 -20120930_TEN@HOU,1,58,26,HOU,TEN,1,10,24,(13:26) A.Foster right tackle to TEN 19 for 5 yards (W.Witherspoon).,0,0,2012 -20120930_TEN@HOU,1,57,57,HOU,TEN,2,5,19,(12:57) A.Foster left end pushed ob at TEN 14 for 5 yards (J.McCourty).,0,0,2012 -20120930_TEN@HOU,1,57,22,HOU,TEN,1,10,14,(12:22) A.Foster right tackle to TEN 11 for 3 yards (D.Morgan A.Ayers).,0,0,2012 -20120930_TEN@HOU,1,56,46,HOU,TEN,2,7,11,(11:46) M.Schaub pass short middle to J.Casey for 11 yards TOUCHDOWN.,0,0,2012 -20120930_TEN@HOU,1,56,46,HOU,TEN,,,11,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20120930_TEN@HOU,1,56,46,HOU,TEN,,,11,S.Graham kicks 69 yards from HST 35 to TEN -4. D.Reynaud to TEN 18 for 22 yards (B.Braman).,7,0,2012 -20120930_TEN@HOU,1,56,35,TEN,HOU,1,10,82,(11:35) C.Johnson up the middle to TEN 31 for 13 yards (J.Joseph B.Cushing).,0,7,2012 -20120930_TEN@HOU,1,55,58,TEN,HOU,1,10,69,(10:58) (Shotgun) J.Locker pass incomplete short middle to K.Wright.,0,7,2012 -20120930_TEN@HOU,1,55,53,TEN,HOU,2,10,69,(10:53) C.Johnson up the middle to TEN 36 for 5 yards (B.Cushing B.James).,0,7,2012 -20120930_TEN@HOU,1,55,12,TEN,HOU,3,5,64,(10:12) (Shotgun) J.Locker pass incomplete short right to J.Cook (B.Reed).,0,7,2012 -20120930_TEN@HOU,1,55,7,TEN,HOU,4,5,64,(10:07) B.Kern punts 50 yards to HST 14 Center-B.Brinkley. T.Holliday to HST 23 for 9 yards (T.Thompson T.Shaw). (The punt hang time was 4.4 seconds.),0,7,2012 -20120930_TEN@HOU,1,54,56,HOU,TEN,1,10,77,(9:56) M.Schaub pass incomplete deep right to K.Walter.,7,0,2012 -20120930_TEN@HOU,1,54,49,HOU,TEN,2,10,77,(9:49) M.Schaub pass short middle to B.Tate to HST 32 for 9 yards (Z.Brown).,7,0,2012 -20120930_TEN@HOU,1,54,10,HOU,TEN,3,1,68,(9:10) A.Foster right guard to HST 32 for no gain (D.Morgan J.Casey).,7,0,2012 -20120930_TEN@HOU,1,53,24,HOU,TEN,4,1,68,(8:24) D.Jones punts 61 yards to TEN 7 Center-J.Weeks. D.Reynaud to TEN 17 for 10 yards (B.Braman). PENALTY on TEN-T.Campbell Illegal Block Above the Waist 8 yards enforced at TEN 17. (The punt hang time was 4.7 seconds.),7,0,2012 -20120930_TEN@HOU,1,53,12,TEN,HOU,1,10,91,(8:12) C.Johnson left guard to TEN 8 for -1 yards (J.Watt).,0,7,2012 -20120930_TEN@HOU,1,52,35,TEN,HOU,2,11,92,(7:35) C.Johnson left tackle to TEN 12 for 4 yards (B.James E.Mitchell).,0,7,2012 -20120930_TEN@HOU,1,51,53,TEN,HOU,3,7,88,(6:53) (Shotgun) J.Locker sacked at TEN 4 for -8 yards (G.Quin). TEN-J.Locker was injured during the play. His return is Questionable.,0,7,2012 -20120930_TEN@HOU,1,51,29,TEN,HOU,4,15,96,(6:29) B.Kern punts 50 yards to HST 46 Center-B.Brinkley. T.Holliday to TEN 47 for 7 yards (W.Witherspoon J.Babineaux). (The punt hang time was 4.5 seconds.),0,7,2012 -20120930_TEN@HOU,1,51,16,HOU,TEN,1,10,47,(6:16) A.Foster right end to TEN 44 for 3 yards (W.Witherspoon).,7,0,2012 -20120930_TEN@HOU,1,50,41,HOU,TEN,2,7,44,(5:41) A.Foster left end to TEN 38 for 6 yards (A.Verner).,7,0,2012 -20120930_TEN@HOU,1,50,1,HOU,TEN,3,1,38,(5:01) A.Foster left tackle to TEN 38 for no gain (J.Casey A.Ayers).,7,0,2012 -20120930_TEN@HOU,1,49,19,HOU,TEN,4,1,38,(4:19) B.Tate right end to TEN 33 for 5 yards (W.Witherspoon A.Verner).,7,0,2012 -20120930_TEN@HOU,1,48,45,HOU,TEN,1,10,33,(3:45) M.Schaub pass short right to J.Casey to TEN 22 for 11 yards (J.McCourty Z.Brown).,7,0,2012 -20120930_TEN@HOU,1,48,4,HOU,TEN,1,10,22,(3:04) M.Schaub pass short left to J.Casey to TEN 16 for 6 yards (A.Verner).,7,0,2012 -20120930_TEN@HOU,1,47,23,HOU,TEN,2,4,16,(2:23) A.Foster right tackle to TEN 13 for 3 yards (D.Morgan M.Martin).,7,0,2012 -20120930_TEN@HOU,1,46,36,HOU,TEN,3,1,13,(1:36) (Shotgun) M.Schaub pass short right to K.Martin pushed ob at TEN 13 for no gain (R.Mouton) [D.Morgan]. Houston challenged the first down ruling and the play was REVERSED. (Shotgun) M.Schaub pass short right to K.Martin pushed ob at TEN 11 for 2 yards (R.Mouton) [D.Morgan].,7,0,2012 -20120930_TEN@HOU,1,45,59,HOU,TEN,1,10,11,(:59) A.Foster right guard to TEN 4 for 7 yards (J.Casey).,7,0,2012 -20120930_TEN@HOU,1,45,23,HOU,TEN,2,3,4,(:23) A.Foster up the middle for 4 yards TOUCHDOWN.,7,0,2012 -20120930_TEN@HOU,1,45,23,HOU,TEN,,,4,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,0,2012 -20120930_TEN@HOU,1,45,23,HOU,TEN,,,4,S.Graham kicks 70 yards from HST 35 to TEN -5. D.Reynaud to TEN 17 for 22 yards (B.Braman).,14,0,2012 -20120930_TEN@HOU,1,45,10,TEN,HOU,1,10,83,(:10) (Shotgun) M.Hasselbeck pass short left to J.Cook to TEN 42 for 25 yards (D.Manning).,0,14,2012 -20120930_TEN@HOU,2,45,0,TEN,HOU,1,10,58,(15:00) C.Johnson right end to TEN 36 for -6 yards (J.Watt; J.Joseph).,0,14,2012 -20120930_TEN@HOU,2,44,13,TEN,HOU,2,16,64,(14:13) (Shotgun) M.Hasselbeck pass incomplete deep middle to N.Washington.,0,14,2012 -20120930_TEN@HOU,2,44,9,TEN,HOU,3,16,64,(14:09) (Shotgun) M.Hasselbeck pass incomplete short middle to K.Wright. Penalty on TEN Illegal Formation declined.,0,14,2012 -20120930_TEN@HOU,2,44,3,TEN,HOU,4,16,64,(14:03) B.Kern punts 52 yards to HST 12 Center-B.Brinkley downed by TEN-J.Babineaux. (The punt hang time was 5.0 seconds.),0,14,2012 -20120930_TEN@HOU,2,43,50,HOU,TEN,1,10,88,(13:50) M.Schaub pass incomplete short left to A.Johnson (A.Verner).,14,0,2012 -20120930_TEN@HOU,2,43,45,HOU,TEN,2,10,88,(13:45) M.Schaub pass short left to B.Tate to HST 6 for -6 yards (J.Casey).,14,0,2012 -20120930_TEN@HOU,2,43,4,HOU,TEN,3,16,94,(13:04) (Shotgun) A.Foster left tackle to HST 13 for 7 yards (A.Verner J.Babineaux). HST-A.Caldwell was injured during the play. His return is Questionable.,14,0,2012 -20120930_TEN@HOU,2,42,37,HOU,TEN,4,9,87,(12:37) D.Jones punts 54 yards to TEN 33 Center-J.Weeks. D.Reynaud to TEN 35 for 2 yards (A.Ball). FUMBLES (A.Ball) recovered by TEN-T.Campbell at TEN 32. T.Campbell to TEN 32 for no gain (T.Dobbins). PENALTY on TEN-T.Campbell Illegal Block Above the Waist 10 yards enforced at TEN 32.,14,0,2012 -20120930_TEN@HOU,2,42,23,TEN,HOU,1,10,78,(12:23) C.Johnson up the middle to TEN 31 for 9 yards (B.James).,0,14,2012 -20120930_TEN@HOU,2,41,50,TEN,HOU,2,1,69,(11:50) C.Johnson right guard to TEN 36 for 5 yards (B.Cushing).,0,14,2012 -20120930_TEN@HOU,2,41,16,TEN,HOU,1,10,64,(11:16) (Shotgun) M.Hasselbeck pass short right to D.Williams to TEN 41 for 5 yards (D.Manning). PENALTY on TEN-J.Cook Offensive Pass Interference 10 yards enforced at TEN 36 - No Play.,0,14,2012 -20120930_TEN@HOU,2,40,45,TEN,HOU,1,20,74,(10:45) C.Johnson up the middle to TEN 32 for 6 yards (B.Cushing).,0,14,2012 -20120930_TEN@HOU,2,40,0,TEN,HOU,2,14,68,(10:00) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 45 for 13 yards (B.James G.Quin).,0,14,2012 -20120930_TEN@HOU,2,39,17,TEN,HOU,3,1,55,(9:17) M.Hasselbeck pass short right to Q.Johnson to HST 38 for 17 yards (K.Jackson).,0,14,2012 -20120930_TEN@HOU,2,38,41,TEN,HOU,1,10,38,(8:41) C.Johnson up the middle to HST 19 for 19 yards (G.Quin).,0,14,2012 -20120930_TEN@HOU,2,38,0,TEN,HOU,1,10,19,(8:00) M.Hasselbeck pass short middle to C.Stevens for 19 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,14,2012 -20120930_TEN@HOU,2,38,0,TEN,HOU,,,19,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,14,2012 -20120930_TEN@HOU,2,38,0,TEN,HOU,,,19,R.Bironas kicks 68 yards from TEN 35 to HST -3. T.Holliday pushed ob at HST 23 for 26 yards (R.Johnson).,7,14,2012 -20120930_TEN@HOU,2,37,44,HOU,TEN,1,10,77,(7:44) A.Foster left end pushed ob at HST 28 for 5 yards (A.Ayers).,14,7,2012 -20120930_TEN@HOU,2,37,18,HOU,TEN,2,5,72,(7:18) A.Foster right guard to HST 31 for 3 yards (A.Ayers).,14,7,2012 -20120930_TEN@HOU,2,36,36,HOU,TEN,3,2,69,(6:36) M.Schaub pass short right to O.Daniels to HST 38 for 7 yards (J.McCourty) [M.Griffin].,14,7,2012 -20120930_TEN@HOU,2,36,4,HOU,TEN,1,10,62,(6:04) M.Schaub pass short left to O.Daniels pushed ob at HST 49 for 11 yards (J.Babineaux). Penalty on TEN-A.Ayers Defensive Holding declined.,14,7,2012 -20120930_TEN@HOU,2,35,38,HOU,TEN,1,10,51,(5:38) B.Tate right end to 50 for 1 yard (Z.Diles).,14,7,2012 -20120930_TEN@HOU,2,34,57,HOU,TEN,2,9,50,(4:57) M.Schaub pass short middle to J.Casey to TEN 45 for 5 yards (Z.Diles).,14,7,2012 -20120930_TEN@HOU,2,34,11,HOU,TEN,3,4,45,(4:11) (Shotgun) A.Foster up the middle to TEN 48 for -3 yards (J.Casey).,14,7,2012 -20120930_TEN@HOU,2,33,33,HOU,TEN,4,7,48,(3:33) D.Jones punts 33 yards to TEN 15 Center-J.Weeks fair catch by D.Reynaud.,14,7,2012 -20120930_TEN@HOU,2,33,24,TEN,HOU,1,10,85,(3:24) C.Johnson left guard to TEN 19 for 4 yards (J.Watt B.Cushing).,7,14,2012 -20120930_TEN@HOU,2,32,50,TEN,HOU,2,6,81,(2:50) (Shotgun) M.Hasselbeck sacked at TEN 8 for -11 yards (J.Watt). Penalty on TEN-D.Stewart Offensive Holding declined.,7,14,2012 -20120930_TEN@HOU,2,32,20,TEN,HOU,3,17,92,(2:20) (Shotgun) M.Hasselbeck pass short left to C.Johnson to TEN 16 for 8 yards (B.Cushing) [C.Barwin].,7,14,2012 -20120930_TEN@HOU,2,32,7,TEN,HOU,4,9,84,(2:07) B.Kern punts 46 yards to HST 38 Center-B.Brinkley. T.Holliday to HST 45 for 7 yards (C.Stevens).,7,14,2012 -20120930_TEN@HOU,2,31,55,HOU,TEN,1,10,55,(1:55) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,14,7,2012 -20120930_TEN@HOU,2,31,51,HOU,TEN,2,10,55,(1:51) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 48 for 3 yards (J.Babineaux).,14,7,2012 -20120930_TEN@HOU,2,31,15,HOU,TEN,3,7,52,(1:15) (Shotgun) M.Schaub pass short middle to O.Daniels to TEN 46 for 6 yards (J.Babineaux).,14,7,2012 -20120930_TEN@HOU,2,30,28,HOU,TEN,4,1,46,(:28) D.Jones punts 39 yards to TEN 7 Center-J.Weeks fair catch by D.Reynaud. (The punt hang time was 4.2 seconds.),14,7,2012 -20120930_TEN@HOU,2,30,21,TEN,HOU,1,10,93,(:21) M.Hasselbeck kneels to TEN 6 for -1 yards.,7,14,2012 -20120930_TEN@HOU,3,30,0,HOU,TEN,,,93,S.Graham kicks 55 yards from HST 35 to TEN 10. C.Stevens to TEN 28 for 18 yards (T.Dobbins).,14,7,2012 -20120930_TEN@HOU,3,30,0,TEN,HOU,1,10,72,(15:00) C.Johnson up the middle to TEN 33 for 5 yards (G.Quin).,7,14,2012 -20120930_TEN@HOU,3,29,29,TEN,HOU,2,5,67,(14:29) C.Johnson right guard to TEN 33 for no gain (B.Cushing).,7,14,2012 -20120930_TEN@HOU,3,28,47,TEN,HOU,3,5,67,(13:47) (Shotgun) M.Hasselbeck pass short middle to N.Washington to HST 42 for 25 yards (Q.Demps).,7,14,2012 -20120930_TEN@HOU,3,28,10,TEN,HOU,1,10,42,(13:10) C.Johnson left guard to HST 40 for 2 yards (B.James).,7,14,2012 -20120930_TEN@HOU,3,27,35,TEN,HOU,2,8,40,(12:35) M.Hasselbeck pass incomplete short right to K.Wright.,7,14,2012 -20120930_TEN@HOU,3,27,31,TEN,HOU,3,8,40,(12:31) (Shotgun) M.Hasselbeck pass incomplete short right.,7,14,2012 -20120930_TEN@HOU,3,27,25,TEN,HOU,4,8,40,(12:25) B.Kern punts 33 yards to HST 7 Center-B.Brinkley downed by TEN-B.Brinkley. (The punt hang time was 4.7 seconds.),7,14,2012 -20120930_TEN@HOU,3,27,12,HOU,TEN,1,10,93,(12:12) M.Schaub pass short middle to A.Johnson to HST 19 for 12 yards (Z.Diles). PENALTY on HST-K.Walter Illegal Crackback 3 yards enforced at HST 7 - No Play.,14,7,2012 -20120930_TEN@HOU,3,26,49,HOU,TEN,1,13,96,(11:49) M.Schaub pass incomplete short right to A.Johnson (A.Ayers).,14,7,2012 -20120930_TEN@HOU,3,26,13,HOU,TEN,2,13,96,(11:13) A.Foster right tackle to HST 3 for -1 yards (D.Morgan S.Marks).,14,7,2012 -20120930_TEN@HOU,3,25,31,HOU,TEN,3,14,97,(10:31) (Shotgun) M.Schaub pass short middle to O.Daniels to HST 14 for 11 yards (J.Babineaux).,14,7,2012 -20120930_TEN@HOU,3,24,52,HOU,TEN,4,3,86,(9:52) D.Jones punts 44 yards to TEN 42 Center-J.Weeks. D.Reynaud pushed ob at HST 30 for 28 yards (D.Jones). PENALTY on TEN-T.Thompson Offensive Holding 10 yards enforced at TEN 42.,14,7,2012 -20120930_TEN@HOU,3,24,39,TEN,HOU,1,10,68,(9:39) M.Hasselbeck pass deep left intended for T.Thompson INTERCEPTED by D.Manning at HST 45. D.Manning for 55 yards TOUCHDOWN. PENALTY on TEN-D.Stewart Personal Foul 15 yards enforced between downs.,7,14,2012 -20120930_TEN@HOU,3,24,39,HOU,TEN,,,68,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,7,2012 -20120930_TEN@HOU,3,24,39,HOU,TEN,,,68,S.Graham kicks 50 yards from 50 to end zone Touchback.,21,7,2012 -20120930_TEN@HOU,3,24,21,TEN,HOU,1,10,80,(9:21) C.Johnson right tackle to TEN 22 for 2 yards (S.Cody B.Cushing).,7,21,2012 -20120930_TEN@HOU,3,23,51,TEN,HOU,2,8,78,(8:51) C.Johnson up the middle to TEN 31 for 9 yards (D.Manning).,7,21,2012 -20120930_TEN@HOU,3,23,11,TEN,HOU,1,10,69,(8:11) (Shotgun) C.Johnson up the middle to TEN 36 for 5 yards (B.James B.Reed).,7,21,2012 -20120930_TEN@HOU,3,22,35,TEN,HOU,2,5,64,(7:35) D.Reynaud right guard to TEN 36 for no gain (S.Cody). PENALTY on TEN-D.Stewart Personal Foul 15 yards enforced at TEN 36 - No Play.,7,21,2012 -20120930_TEN@HOU,3,22,20,TEN,HOU,2,20,79,(7:20) (Shotgun) M.Hasselbeck pass short right to L.Hawkins to TEN 26 for 5 yards (G.Quin).,7,21,2012 -20120930_TEN@HOU,3,22,20,TEN,HOU,3,15,74,(7:20) (Shotgun) PENALTY on TEN-M.Hasselbeck Delay of Game 5 yards enforced at TEN 26 - No Play.,7,21,2012 -20120930_TEN@HOU,3,21,17,TEN,HOU,3,20,79,(6:17) (Shotgun) J.Ringer left guard to TEN 26 for 5 yards (B.Cushing).,7,21,2012 -20120930_TEN@HOU,3,20,37,TEN,HOU,4,15,74,(5:37) B.Kern punts 60 yards to HST 14 Center-B.Brinkley. T.Holliday to HST 25 for 11 yards (J.Babineaux). (the punt hang time was 4.4 seconds.),7,21,2012 -20120930_TEN@HOU,3,20,24,HOU,TEN,1,10,75,(5:24) B.Tate left tackle to HST 25 for no gain (D.Morgan Z.Brown).,21,7,2012 -20120930_TEN@HOU,3,19,56,HOU,TEN,2,10,75,(4:56) M.Schaub pass short middle to O.Daniels to HST 34 for 9 yards (Z.Brown A.Ayers).,21,7,2012 -20120930_TEN@HOU,3,19,28,HOU,TEN,3,1,66,(4:28) A.Foster left tackle to 50 for 16 yards (R.Johnson).,21,7,2012 -20120930_TEN@HOU,3,19,0,HOU,TEN,1,10,50,(4:00) M.Schaub pass deep middle to K.Martin to TEN 33 for 17 yards (Z.Brown).,21,7,2012 -20120930_TEN@HOU,3,18,30,HOU,TEN,1,10,33,(3:30) A.Foster left guard to TEN 28 for 5 yards (J.McCourty J.Babineaux).,21,7,2012 -20120930_TEN@HOU,3,18,1,HOU,TEN,2,5,28,(3:01) M.Schaub pass incomplete short middle to A.Foster.,21,7,2012 -20120930_TEN@HOU,3,17,56,HOU,TEN,3,5,28,(2:56) (Shotgun) M.Schaub pass short left to O.Daniels for 28 yards TOUCHDOWN.,21,7,2012 -20120930_TEN@HOU,3,17,56,HOU,TEN,,,28,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,21,7,2012 -20120930_TEN@HOU,3,17,56,HOU,TEN,,,28,S.Graham kicks 62 yards from HST 35 to TEN 3. D.Reynaud to TEN 26 for 23 yards (J.Forsett).,28,7,2012 -20120930_TEN@HOU,3,17,38,TEN,HOU,1,10,74,(2:38) (Shotgun) M.Hasselbeck pass short right to J.Cook to TEN 35 for 9 yards (B.Reed).,7,28,2012 -20120930_TEN@HOU,3,17,8,TEN,HOU,2,1,65,(2:08) (Shotgun) M.Hasselbeck pass short right to D.Williams to TEN 41 for 6 yards (J.Joseph).,7,28,2012 -20120930_TEN@HOU,3,16,43,TEN,HOU,1,10,59,(1:43) (Shotgun) M.Hasselbeck pass incomplete deep left to K.Wright (K.Jackson) [E.Mitchell].,7,28,2012 -20120930_TEN@HOU,3,16,36,TEN,HOU,2,10,59,(1:36) (Shotgun) C.Johnson up the middle to TEN 46 for 5 yards (B.Reed).,7,28,2012 -20120930_TEN@HOU,3,16,12,TEN,HOU,3,5,54,(1:12) (Shotgun) M.Hasselbeck sacked at TEN 40 for -6 yards (J.Watt).,7,28,2012 -20120930_TEN@HOU,3,15,46,TEN,HOU,4,11,60,(:46) B.Kern punts 35 yards to HST 25 Center-B.Brinkley out of bounds. (The punt hang time was 3.3 seconds.),7,28,2012 -20120930_TEN@HOU,3,15,36,HOU,TEN,1,10,75,(:36) M.Schaub pass short right to A.Foster to HST 33 for 8 yards (A.Ayers).,28,7,2012 -20120930_TEN@HOU,4,15,0,HOU,TEN,2,2,67,(15:00) A.Foster left guard to HST 34 for 1 yard (J.Casey Z.Brown).,28,7,2012 -20120930_TEN@HOU,4,14,24,HOU,TEN,3,1,66,(14:24) M.Schaub pass short right to J.Casey to HST 37 for 3 yards (J.Babineaux).,28,7,2012 -20120930_TEN@HOU,4,13,55,HOU,TEN,1,10,63,(13:55) A.Foster left end to HST 40 for 3 yards (A.Ayers).,28,7,2012 -20120930_TEN@HOU,4,13,18,HOU,TEN,2,7,60,(13:18) M.Schaub pass incomplete short right to G.Graham.,28,7,2012 -20120930_TEN@HOU,4,13,13,HOU,TEN,3,7,60,(13:13) (Shotgun) M.Schaub pass short left to K.Walter to HST 48 for 8 yards (J.Babineaux).,28,7,2012 -20120930_TEN@HOU,4,12,30,HOU,TEN,1,10,52,(12:30) A.Foster left tackle to TEN 49 for 3 yards (A.Ayers Z.Diles).,28,7,2012 -20120930_TEN@HOU,4,11,47,HOU,TEN,2,7,49,(11:47) A.Foster right tackle to TEN 41 for 8 yards (J.McCourty J.Babineaux).,28,7,2012 -20120930_TEN@HOU,4,11,2,HOU,TEN,1,10,41,(11:02) B.Tate left end to TEN 34 for 7 yards (M.Griffin).,28,7,2012 -20120930_TEN@HOU,4,10,19,HOU,TEN,2,3,34,(10:19) B.Tate right end to TEN 36 for -2 yards (P.Egboh).,28,7,2012 -20120930_TEN@HOU,4,9,37,HOU,TEN,3,5,36,(9:37) M.Schaub pass incomplete deep left to A.Johnson [M.Martin]. Penalty on HST-B.Jones Offensive Holding declined.,28,7,2012 -20120930_TEN@HOU,4,9,30,HOU,TEN,4,5,36,(9:30) D.Jones punts 28 yards to TEN 8 Center-J.Weeks downed by HST-S.Keo. (The punt hang time was 4.3 seconds.),28,7,2012 -20120930_TEN@HOU,4,9,20,TEN,HOU,1,10,92,(9:20) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 13 for 5 yards (B.McCain).,7,28,2012 -20120930_TEN@HOU,4,8,46,TEN,HOU,2,5,87,(8:46) (Shotgun) M.Hasselbeck pass short right to J.Cook to TEN 15 for 2 yards (Q.Demps).,7,28,2012 -20120930_TEN@HOU,4,8,15,TEN,HOU,3,3,85,(8:15) (Shotgun) M.Hasselbeck pass incomplete short right to N.Washington (D.Manning).,7,28,2012 -20120930_TEN@HOU,4,8,11,TEN,HOU,4,3,85,(8:11) (Shotgun) M.Hasselbeck pass short left to C.Stevens to TEN 20 for 5 yards (B.Cushing).,7,28,2012 -20120930_TEN@HOU,4,7,45,TEN,HOU,1,10,80,(7:45) (Shotgun) C.Johnson up the middle to TEN 25 for 5 yards (G.Quin).,7,28,2012 -20120930_TEN@HOU,4,7,22,TEN,HOU,2,5,75,(7:22) (Shotgun) M.Hasselbeck sacked at TEN 24 for -1 yards (A.Smith). FUMBLES (A.Smith) RECOVERED by HST-J.Watt at TEN 24. J.Watt to TEN 17 for 7 yards (F.Velasco).,7,28,2012 -20120930_TEN@HOU,4,7,10,HOU,TEN,1,10,17,(7:10) A.Foster up the middle to TEN 15 for 2 yards (P.Egboh).,28,7,2012 -20120930_TEN@HOU,4,6,29,HOU,TEN,2,8,15,(6:29) A.Foster right end pushed ob at TEN 13 for 2 yards (Z.Diles).,28,7,2012 -20120930_TEN@HOU,4,5,54,HOU,TEN,3,6,13,(5:54) A.Foster right end to TEN 14 for -1 yards (J.McCourty).,28,7,2012 -20120930_TEN@HOU,4,5,42,HOU,TEN,4,7,14,(5:42) S.Graham 33 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,28,7,2012 -20120930_TEN@HOU,4,5,42,HOU,TEN,,,14,S.Graham kicks 70 yards from HST 35 to TEN -5. D.Reynaud Touchback.,31,7,2012 -20120930_TEN@HOU,4,5,38,TEN,HOU,1,10,80,(5:38) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 40 for 20 yards (E.Mitchell). HST-S.Keo was injured during the play.,7,31,2012 -20120930_TEN@HOU,4,5,25,TEN,HOU,1,10,60,(5:25) (Shotgun) M.Hasselbeck pass short middle to C.Johnson to TEN 48 for 8 yards (K.Jackson).,7,31,2012 -20120930_TEN@HOU,4,4,56,TEN,HOU,2,2,52,(4:56) (Shotgun) C.Johnson up the middle to HST 46 for 6 yards (T.Dobbins).,7,31,2012 -20120930_TEN@HOU,4,4,31,TEN,HOU,1,10,46,(4:31) (Shotgun) M.Hasselbeck scrambles up the middle to HST 42 for 4 yards (T.Dobbins).,7,31,2012 -20120930_TEN@HOU,4,4,8,TEN,HOU,2,6,42,(4:08) (Shotgun) M.Hasselbeck pass short left intended for D.Williams INTERCEPTED by K.Jackson at HST 37. K.Jackson for 63 yards TOUCHDOWN.,7,31,2012 -20120930_TEN@HOU,4,4,8,HOU,TEN,,,42,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,31,7,2012 -20120930_TEN@HOU,4,4,8,HOU,TEN,,,42,S.Graham kicks 66 yards from HST 35 to TEN -1. D.Reynaud to TEN 21 for 22 yards (J.Nading T.Dobbins).,38,7,2012 -20120930_TEN@HOU,4,3,49,TEN,HOU,1,10,79,(3:49) (Shotgun) C.Johnson left guard to TEN 33 for 12 yards (A.Ball).,7,38,2012 -20120930_TEN@HOU,4,3,26,TEN,HOU,1,10,67,(3:26) (Shotgun) C.Johnson up the middle to TEN 39 for 6 yards (B.Braman).,7,38,2012 -20120930_TEN@HOU,4,3,3,TEN,HOU,2,4,61,(3:03) (Shotgun) C.Johnson right guard to TEN 40 for 1 yard (D.Manning).,7,38,2012 -20120930_TEN@HOU,4,2,32,TEN,HOU,3,3,60,(2:32) (Shotgun) M.Hasselbeck pass short right to K.Wright to 50 for 10 yards (J.Joseph).,7,38,2012 -20120930_TEN@HOU,4,2,9,TEN,HOU,1,10,50,(2:09) (Shotgun) J.Ringer left guard to HST 41 for 9 yards (A.Ball).,7,38,2012 -20120930_TEN@HOU,4,2,0,TEN,HOU,2,1,41,(2:00) C.Johnson right guard to HST 26 for 15 yards (D.Manning).,7,38,2012 -20120930_TEN@HOU,4,1,40,TEN,HOU,1,10,26,(1:40) (Shotgun) M.Hasselbeck pass short left to K.Wright to HST 21 for 5 yards (W.Mercilus).,7,38,2012 -20120930_TEN@HOU,4,1,16,TEN,HOU,2,5,21,(1:16) C.Johnson right end to HST 18 for 3 yards (E.Mitchell T.Jamison).,7,38,2012 -20120930_TEN@HOU,4,1,9,TEN,HOU,3,2,18,(1:09) (Shotgun) C.Johnson up the middle to HST 11 for 7 yards (D.Manning).,7,38,2012 -20120930_TEN@HOU,4,1,1,TEN,HOU,1,10,11,(1:01) (Shotgun) M.Hasselbeck pass short left to K.Wright for 11 yards TOUCHDOWN.,7,38,2012 -20120930_TEN@HOU,4,1,1,TEN,HOU,,,11,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,38,2012 -20120930_TEN@HOU,4,1,1,TEN,HOU,,,11,R.Bironas kicks 69 yards from TEN 35 to HST -4. J.Forsett Touchback.,14,38,2012 -20120930_TEN@HOU,4,0,57,HOU,TEN,1,10,80,(:57) M.Schaub kneels to HST 19 for -1 yards.,38,14,2012 -20120930_TEN@HOU,4,0,34,HOU,TEN,2,11,81,(:34) M.Schaub kneels to HST 18 for -1 yards.,38,14,2012 -20120930_TEN@HOU,4,0,34,HOU,TEN,,,81,                      ,38,14,2012 -20120930_SD@KC,1,0,0,KC,SD,,,81,R.Succop kicks 74 yards from KC 35 to SD -9. R.Goodman to SD 24 for 33 yards (J.Brown).,0,0,2012 -20120930_SD@KC,1,59,56,SD,KC,1,10,76,(14:56) P.Rivers pass short right to J.Battle to SD 38 for 14 yards (J.Belcher).,0,0,2012 -20120930_SD@KC,1,59,17,SD,KC,1,10,62,(14:17) J.Battle up the middle to SD 38 for no gain (R.Pitoitua).,0,0,2012 -20120930_SD@KC,1,58,35,SD,KC,2,10,62,(13:35) J.Battle right guard to SD 38 for no gain (T.Hali).,0,0,2012 -20120930_SD@KC,1,57,46,SD,KC,3,10,62,(12:46) (Shotgun) P.Rivers pass incomplete short right to A.Gates. PENALTY on KC-E.Berry Defensive Pass Interference 15 yards enforced at SD 38 - No Play.,0,0,2012 -20120930_SD@KC,1,57,41,SD,KC,1,10,47,(12:41) P.Rivers pass short left to L.McClain to KC 49 for -2 yards (E.Berry).,0,0,2012 -20120930_SD@KC,1,56,58,SD,KC,2,12,49,(11:58) P.Rivers pass incomplete deep left to R.Meachem (A.Elam).,0,0,2012 -20120930_SD@KC,1,56,50,SD,KC,3,12,49,(11:50) (Shotgun) P.Rivers pass deep left to M.Floyd to KC 22 for 27 yards (A.Elam). Kansas City challenged the runner was in bounds ruling and the play was REVERSED. (Shotgun) P.Rivers pass deep left to M.Floyd to KC 28 for 21 yards (S.Routt).,0,0,2012 -20120930_SD@KC,1,56,25,SD,KC,1,10,28,(11:25) (Shotgun) P.Rivers pass incomplete deep left to A.Gates [J.Houston]. PENALTY on KC-E.Berry Defensive Pass Interference 13 yards enforced at KC 28 - No Play.,0,0,2012 -20120930_SD@KC,1,56,20,SD,KC,1,10,15,(11:20) J.Battle right guard to KC 3 for 12 yards (T.Hali).,0,0,2012 -20120930_SD@KC,1,55,46,SD,KC,1,3,3,(10:46) J.Battle up the middle to KC 4 for -1 yards (D.Johnson).,0,0,2012 -20120930_SD@KC,1,55,8,SD,KC,2,4,4,(10:08) (Shotgun) P.Rivers pass short middle to E.Royal for 4 yards TOUCHDOWN.,0,0,2012 -20120930_SD@KC,1,55,8,SD,KC,,,4,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20120930_SD@KC,1,55,8,SD,KC,,,4,N.Novak kicks 72 yards from SD 35 to KC -7. S.Draughn to KC 22 for 29 yards (M.Ingram).,7,0,2012 -20120930_SD@KC,1,54,56,KC,SD,1,10,78,(9:56) M.Cassel pass short left to D.Bowe pushed ob at KC 29 for 7 yards (A.Cason) [A.Bigby].,0,7,2012 -20120930_SD@KC,1,54,35,KC,SD,2,3,71,(9:35) M.Cassel pass short right to D.Bowe to KC 37 for 8 yards (Q.Jammer).,0,7,2012 -20120930_SD@KC,1,53,53,KC,SD,1,10,63,(8:53) M.Cassel pass short left intended for D.Bowe INTERCEPTED by E.Weddle at KC 49. E.Weddle to KC 28 for 21 yards (D.McCluster).,0,7,2012 -20120930_SD@KC,1,53,39,SD,KC,1,10,28,(8:39) P.Rivers pass short right to R.Mathews to KC 15 for 13 yards (B.Flowers).,7,0,2012 -20120930_SD@KC,1,52,55,SD,KC,1,10,15,(7:55) R.Mathews up the middle to KC 19 for -4 yards (T.Hali).,7,0,2012 -20120930_SD@KC,1,52,16,SD,KC,2,14,19,(7:16) P.Rivers pass short middle to A.Gates to KC 6 for 13 yards (E.Berry).,7,0,2012 -20120930_SD@KC,1,51,38,SD,KC,3,1,6,(6:38) (Shotgun) P.Rivers pass incomplete short right to E.Royal (B.Flowers).,7,0,2012 -20120930_SD@KC,1,51,29,SD,KC,4,1,6,(6:29) N.Novak 24 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,7,0,2012 -20120930_SD@KC,1,51,29,SD,KC,,,6,N.Novak kicks 68 yards from SD 35 to KC -3. S.Draughn to KC 21 for 24 yards (R.Goodman).,10,0,2012 -20120930_SD@KC,1,51,21,KC,SD,1,10,79,(6:21) PENALTY on KC-T.Moeaki False Start 5 yards enforced at KC 21 - No Play.,0,10,2012 -20120930_SD@KC,1,51,21,KC,SD,1,15,84,(6:21) J.Charles left tackle to KC 12 for -4 yards (T.Spikes). FUMBLES (T.Spikes) RECOVERED by SD-S.Phillips at KC 5. S.Phillips to KC 5 for no gain (T.Moeaki).,0,10,2012 -20120930_SD@KC,1,51,12,SD,KC,1,5,5,(6:12) J.Battle up the middle to KC 1 for 4 yards (A.Elam).,10,0,2012 -20120930_SD@KC,1,50,32,SD,KC,2,1,1,(5:32) J.Battle right guard for 1 yard TOUCHDOWN.,10,0,2012 -20120930_SD@KC,1,50,32,SD,KC,,,1,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,10,0,2012 -20120930_SD@KC,1,50,32,SD,KC,,,1,N.Novak kicks 68 yards from SD 35 to KC -3. S.Draughn to KC 20 for 23 yards (R.Goodman).,17,0,2012 -20120930_SD@KC,1,50,23,KC,SD,1,10,80,(5:23) (Shotgun) J.Charles up the middle to KC 21 for 1 yard (E.Weddle; D.Butler).,0,17,2012 -20120930_SD@KC,1,49,50,KC,SD,2,9,79,(4:50) M.Cassel pass short right to J.Charles to KC 27 for 6 yards (Q.Jammer).,0,17,2012 -20120930_SD@KC,1,49,4,KC,SD,3,3,73,(4:04) (Shotgun) M.Cassel pass short left to D.McCluster pushed ob at KC 31 for 4 yards (A.Bigby).,0,17,2012 -20120930_SD@KC,1,48,41,KC,SD,1,10,69,(3:41) (No Huddle) M.Cassel pass incomplete short right to S.Maneri [V.Martin].,0,17,2012 -20120930_SD@KC,1,48,35,KC,SD,2,10,69,(3:35) M.Cassel pass incomplete short middle to J.Charles.,0,17,2012 -20120930_SD@KC,1,48,30,KC,SD,3,10,69,(3:30) (Shotgun) M.Cassel pass short right to J.Baldwin to KC 34 for 3 yards (S.Phillips).,0,17,2012 -20120930_SD@KC,1,47,54,KC,SD,4,7,66,(2:54) D.Colquitt punts 60 yards to SD 6 Center-T.Gafford downed by KC-J.Brown.,0,17,2012 -20120930_SD@KC,1,47,44,SD,KC,1,10,94,(2:44) J.Battle right guard to SD 9 for 3 yards (J.Powe).,17,0,2012 -20120930_SD@KC,1,47,8,SD,KC,2,7,91,(2:08) J.Battle right tackle to SD 11 for 2 yards (J.Belcher).,17,0,2012 -20120930_SD@KC,1,46,23,SD,KC,3,5,89,(1:23) (Shotgun) P.Rivers pass short right to R.Brown ran ob at SD 32 for 21 yards (T.Daniels).,17,0,2012 -20120930_SD@KC,1,45,37,SD,KC,1,10,68,(:37) P.Rivers pass short left to J.Battle pushed ob at 50 for 18 yards (J.Belcher).,17,0,2012 -20120930_SD@KC,1,45,5,SD,KC,1,10,50,(:05) P.Rivers pass incomplete short left to M.Floyd. PENALTY on SD-P.Rivers Intentional Grounding 13 yards enforced at 50.,17,0,2012 -20120930_SD@KC,2,45,0,SD,KC,2,23,63,(15:00) (Shotgun) R.Mathews right guard to SD 39 for 2 yards (J.Houston). Penalty on SD-T.Green Offensive Holding declined.,17,0,2012 -20120930_SD@KC,2,44,36,SD,KC,3,21,61,(14:36) (Shotgun) P.Rivers pass short right to R.Brown to KC 48 for 13 yards (J.Brown).,17,0,2012 -20120930_SD@KC,2,43,58,SD,KC,4,8,48,(13:58) M.Scifres punts 27 yards to KC 21 Center-M.Windt out of bounds.,17,0,2012 -20120930_SD@KC,2,43,51,KC,SD,1,10,79,(13:51) J.Charles up the middle to KC 27 for 6 yards (T.Spikes).,0,17,2012 -20120930_SD@KC,2,43,8,KC,SD,2,4,73,(13:08) M.Cassel pass incomplete short left to D.McCluster [C.Liuget]. San Diego challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),0,17,2012 -20120930_SD@KC,2,42,59,KC,SD,3,4,73,(12:59) (Shotgun) M.Cassel pass deep right to D.Bowe to SD 36 for 37 yards (E.Weddle). PENALTY on KC-E.Winston Illegal Formation 5 yards enforced at KC 27 - No Play.,0,17,2012 -20120930_SD@KC,2,42,32,KC,SD,3,9,78,(12:32) (Shotgun) M.Cassel sacked at KC 13 for -9 yards (S.Phillips). FUMBLES (S.Phillips) and recovers at KC 12. M.Cassel to KC 12 for no gain (S.Phillips).,0,17,2012 -20120930_SD@KC,2,42,2,KC,SD,4,19,88,(12:02) D.Colquitt punts 49 yards to SD 39 Center-T.Gafford fair catch by E.Royal. PENALTY on SD-R.Goodman Offensive Holding 10 yards enforced at SD 39.,0,17,2012 -20120930_SD@KC,2,41,56,SD,KC,1,10,71,(11:56) R.Mathews right end to SD 29 for no gain (E.Berry).,17,0,2012 -20120930_SD@KC,2,41,14,SD,KC,2,10,71,(11:14) (Shotgun) P.Rivers pass short right to A.Gates to KC 38 for 33 yards (T.Daniels).,17,0,2012 -20120930_SD@KC,2,40,25,SD,KC,1,10,38,(10:25) (Shotgun) P.Rivers pass short left to M.Floyd to KC 36 for 2 yards (B.Flowers).,17,0,2012 -20120930_SD@KC,2,39,42,SD,KC,2,8,36,(9:42) R.Mathews left tackle to KC 33 for 3 yards (D.Johnson).,17,0,2012 -20120930_SD@KC,2,38,57,SD,KC,3,5,33,(8:57) (Shotgun) P.Rivers pass short left to E.Royal to KC 29 for 4 yards (J.Arenas).,17,0,2012 -20120930_SD@KC,2,38,13,SD,KC,4,1,29,(8:13) N.Novak 47 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,17,0,2012 -20120930_SD@KC,2,38,13,SD,KC,,,29,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,20,0,2012 -20120930_SD@KC,2,38,9,KC,SD,1,10,80,(8:09) J.Charles right tackle to KC 25 for 5 yards (V.Martin). FUMBLES (V.Martin) RECOVERED by SD-C.Liuget at KC 28. C.Liuget to KC 28 for no gain (J.Charles).,0,20,2012 -20120930_SD@KC,2,38,2,SD,KC,1,10,28,(8:02) P.Rivers FUMBLES (Aborted) at KC 28 ball out of bounds at KC 36.,20,0,2012 -20120930_SD@KC,2,37,57,SD,KC,2,18,36,(7:57) (Shotgun) P.Rivers pass short left to A.Gates pushed ob at KC 23 for 13 yards (E.Berry).,20,0,2012 -20120930_SD@KC,2,37,37,SD,KC,3,5,23,(7:37) (Shotgun) P.Rivers pass short right intended for R.Meachem INTERCEPTED by B.Flowers at KC 14. B.Flowers to KC 15 for 1 yard (R.Meachem).,20,0,2012 -20120930_SD@KC,2,37,28,KC,SD,1,10,85,(7:28) M.Cassel pass short left to D.Bowe to KC 28 for 13 yards (A.Cason).,0,20,2012 -20120930_SD@KC,2,36,46,KC,SD,1,10,72,(6:46) M.Cassel pass incomplete deep right to J.Baldwin.,0,20,2012 -20120930_SD@KC,2,36,40,KC,SD,2,10,72,(6:40) J.Charles up the middle to KC 36 for 8 yards (E.Weddle).,0,20,2012 -20120930_SD@KC,2,36,3,KC,SD,3,2,64,(6:03) (Shotgun) M.Cassel pass incomplete short right to D.Bowe. PENALTY on SD-Q.Jammer Defensive Pass Interference 12 yards enforced at KC 36 - No Play.,0,20,2012 -20120930_SD@KC,2,35,58,KC,SD,1,10,52,(5:58) M.Cassel pass short left to D.Bowe to SD 37 for 15 yards (Q.Jammer).,0,20,2012 -20120930_SD@KC,2,35,22,KC,SD,1,10,37,(5:22) J.Charles left end for 37 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,20,2012 -20120930_SD@KC,2,35,22,KC,SD,,,37,(Kick formation) TWO-POINT CONVERSION ATTEMPT. D.Colquitt pass is incomplete. ATTEMPT FAILS. Pass intercepted in endzone.,0,20,2012 -20120930_SD@KC,2,35,22,KC,SD,,,37,R.Succop kicks 67 yards from KC 35 to SD -2. R.Goodman to SD 18 for 20 yards (E.Jones).,6,20,2012 -20120930_SD@KC,2,35,3,SD,KC,1,10,82,(5:03) (Shotgun) P.Rivers pass incomplete short left to M.Floyd. PENALTY on KC-S.Routt Defensive Pass Interference 12 yards enforced at SD 18 - No Play.,20,6,2012 -20120930_SD@KC,2,34,59,SD,KC,1,10,70,(4:59) (Shotgun) P.Rivers sacked at SD 24 for -6 yards (R.Pitoitua).,20,6,2012 -20120930_SD@KC,2,34,34,SD,KC,2,16,76,(4:34) J.Battle up the middle to SD 26 for 2 yards (J.Belcher).,20,6,2012 -20120930_SD@KC,2,33,49,SD,KC,3,14,74,(3:49) (Shotgun) P.Rivers pass short left to E.Royal to SD 34 for 8 yards (J.Arenas).,20,6,2012 -20120930_SD@KC,2,33,13,SD,KC,4,6,66,(3:13) M.Scifres punts 66 yards to end zone Center-M.Windt Touchback.,20,6,2012 -20120930_SD@KC,2,33,4,KC,SD,1,10,80,(3:04) (Shotgun) PENALTY on KC-T.Moeaki False Start 5 yards enforced at KC 20 - No Play.,6,20,2012 -20120930_SD@KC,2,33,4,KC,SD,1,15,85,(3:04) (Shotgun) M.Cassel pass incomplete short left to C.Gray.,6,20,2012 -20120930_SD@KC,2,32,59,KC,SD,2,15,85,(2:59) M.Cassel pass short left intended for T.Moeaki INTERCEPTED by D.Butler at KC 21. D.Butler for 21 yards TOUCHDOWN.,6,20,2012 -20120930_SD@KC,2,32,59,SD,KC,,,85,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,20,6,2012 -20120930_SD@KC,2,32,59,SD,KC,,,85,N.Novak kicks 73 yards from SD 35 to KC -8. C.Gray Touchback.,27,6,2012 -20120930_SD@KC,2,32,51,KC,SD,1,10,80,(2:51) M.Cassel pass short right to D.Bowe ran ob at KC 32 for 12 yards. PENALTY on KC-E.Winston Offensive Holding 10 yards enforced at KC 20 - No Play. Penalty on KC-D.Bowe Illegal Touch Pass declined.,6,27,2012 -20120930_SD@KC,2,32,34,KC,SD,1,20,90,(2:34) J.Charles right tackle to KC 10 for no gain (D.Butler).,6,27,2012 -20120930_SD@KC,2,32,0,KC,SD,2,20,90,(2:00) (Shotgun) M.Cassel pass incomplete deep left to D.Bowe. PENALTY on SD-A.Cason Defensive Pass Interference 15 yards enforced at KC 10 - No Play.,6,27,2012 -20120930_SD@KC,2,31,54,KC,SD,1,10,75,(1:54) (No Huddle Shotgun) M.Cassel pass deep left to D.Bowe to SD 49 for 26 yards (A.Bigby).,6,27,2012 -20120930_SD@KC,2,31,22,KC,SD,1,10,49,(1:22) (No Huddle Shotgun) M.Cassel pass short middle to S.Draughn ran ob at SD 40 for 9 yards (M.Gilchrist).,6,27,2012 -20120930_SD@KC,2,31,15,KC,SD,2,1,40,(1:15) (No Huddle Shotgun) S.Draughn up the middle to SD 37 for 3 yards (D.Butler).,6,27,2012 -20120930_SD@KC,2,31,10,KC,SD,1,10,37,(1:10) (Shotgun) M.Cassel pass incomplete short left to D.McCluster [A.Bigby]. PENALTY on SD-Q.Jammer Illegal Contact 5 yards enforced at SD 37 - No Play.,6,27,2012 -20120930_SD@KC,2,31,5,KC,SD,1,10,32,(1:05) (Shotgun) M.Cassel pass short left to D.Bowe to SD 22 for 10 yards (M.Ingram) [D.Williams].,6,27,2012 -20120930_SD@KC,2,30,49,KC,SD,1,10,22,(:49) (Shotgun) M.Cassel pass short left intended for D.McCluster INTERCEPTED by A.Cason at SD 13. A.Cason ran ob at SD 44 for 31 yards (J.Allen). PENALTY on SD-D.Butler Personal Foul 15 yards enforced at SD 44.,6,27,2012 -20120930_SD@KC,2,30,33,SD,KC,1,10,71,(:33) P.Rivers kneels to SD 28 for -1 yards.,27,6,2012 -20120930_SD@KC,3,30,0,SD,KC,,,71,N.Novak kicks 74 yards from SD 35 to KC -9. C.Gray Touchback.,27,6,2012 -20120930_SD@KC,3,30,0,KC,SD,1,10,80,(15:00) J.Charles right end to KC 20 for no gain (A.Franklin).,6,27,2012 -20120930_SD@KC,3,29,21,KC,SD,2,10,80,(14:21) M.Cassel pass incomplete short right to N.Eachus.,6,27,2012 -20120930_SD@KC,3,29,17,KC,SD,3,10,80,(14:17) (Shotgun) M.Cassel pass short right to S.Breaston to KC 32 for 12 yards (Q.Jammer).,6,27,2012 -20120930_SD@KC,3,28,51,KC,SD,1,10,68,(13:51) M.Cassel pass short middle to J.Baldwin to SD 43 for 25 yards (E.Weddle).,6,27,2012 -20120930_SD@KC,3,28,15,KC,SD,1,10,43,(13:15) J.Charles left end pushed ob at SD 36 for 7 yards (D.Butler).,6,27,2012 -20120930_SD@KC,3,27,49,KC,SD,2,3,36,(12:49) J.Charles left end ran ob at SD 32 for 4 yards.,6,27,2012 -20120930_SD@KC,3,27,23,KC,SD,1,10,32,(12:23) (Shotgun) M.Cassel sacked at SD 39 for -7 yards (sack split by D.Butler and L.English).,6,27,2012 -20120930_SD@KC,3,26,47,KC,SD,2,17,39,(11:47) (Shotgun) M.Cassel pass short right to D.McCluster to SD 37 for 2 yards (M.Gilchrist).,6,27,2012 -20120930_SD@KC,3,26,4,KC,SD,3,15,37,(11:04) (Shotgun) M.Cassel pass incomplete short middle to T.Moeaki. PENALTY on SD-D.Butler Illegal Contact 5 yards enforced at SD 37 - No Play.,6,27,2012 -20120930_SD@KC,3,25,58,KC,SD,1,10,32,(10:58) J.Charles right end to SD 30 for 2 yards (D.Williams).,6,27,2012 -20120930_SD@KC,3,25,19,KC,SD,2,8,30,(10:19) (Shotgun) M.Cassel pass short right to S.Draughn to SD 12 for 18 yards (D.Williams).,6,27,2012 -20120930_SD@KC,3,24,32,KC,SD,1,10,12,(9:32) M.Cassel pass incomplete to S.Maneri (M.Ingram).,6,27,2012 -20120930_SD@KC,3,24,27,KC,SD,2,10,12,(9:27) S.Draughn up the middle to SD 13 for -1 yards (M.Ingram).,6,27,2012 -20120930_SD@KC,3,23,48,KC,SD,3,11,13,(8:48) (Shotgun) M.Cassel pass short left to J.Charles for 13 yards TOUCHDOWN.,6,27,2012 -20120930_SD@KC,3,23,48,KC,SD,,,13,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,6,27,2012 -20120930_SD@KC,3,23,48,KC,SD,,,13,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,13,27,2012 -20120930_SD@KC,3,23,40,SD,KC,1,10,80,(8:40) P.Rivers scrambles right end to SD 21 for 1 yard (D.Johnson).,27,13,2012 -20120930_SD@KC,3,22,53,SD,KC,2,9,79,(7:53) J.Battle up the middle to SD 21 for no gain (E.Berry).,27,13,2012 -20120930_SD@KC,3,22,11,SD,KC,3,9,79,(7:11) (Shotgun) P.Rivers pass incomplete short left to E.Royal (J.Arenas).,27,13,2012 -20120930_SD@KC,3,22,7,SD,KC,4,9,79,(7:07) M.Scifres punts 59 yards to KC 20 Center-M.Windt. J.Arenas to KC 35 for 15 yards (M.Spurlock).,27,13,2012 -20120930_SD@KC,3,21,56,KC,SD,1,10,65,(6:56) J.Charles up the middle to KC 38 for 3 yards (C.Liuget; E.Weddle).,13,27,2012 -20120930_SD@KC,3,21,23,KC,SD,2,7,62,(6:23) M.Cassel pass incomplete short right to D.Bowe.,13,27,2012 -20120930_SD@KC,3,21,19,KC,SD,3,7,62,(6:19) (Shotgun) M.Cassel pass incomplete short left to D.Bowe (A.Cason).,13,27,2012 -20120930_SD@KC,3,21,14,KC,SD,4,7,62,(6:14) D.Colquitt punts 54 yards to SD 8 Center-T.Gafford. E.Royal MUFFS catch recovered by SD-D.Stuckey at SD 8. D.Stuckey ran ob at SD 13 for 5 yards.,13,27,2012 -20120930_SD@KC,3,21,5,SD,KC,1,10,87,(6:05) J.Battle right guard to SD 16 for 3 yards (J.Belcher).,27,13,2012 -20120930_SD@KC,3,20,29,SD,KC,2,7,84,(5:29) P.Rivers sacked at SD 12 for -4 yards (R.Pitoitua).,27,13,2012 -20120930_SD@KC,3,19,49,SD,KC,3,11,88,(4:49) (Shotgun) P.Rivers sacked at SD 2 for -10 yards (T.Hali).,27,13,2012 -20120930_SD@KC,3,19,17,SD,KC,4,21,98,(4:17) M.Scifres punts 56 yards to KC 42 Center-M.Windt. J.Arenas to SD 30 for 28 yards (M.Windt). PENALTY on KC-T.Hartman Offensive Holding 10 yards enforced at KC 48.,27,13,2012 -20120930_SD@KC,3,19,6,KC,SD,1,10,62,(4:06) M.Cassel pass short right to T.Moeaki to KC 42 for 4 yards (D.Butler).,13,27,2012 -20120930_SD@KC,3,18,32,KC,SD,2,6,58,(3:32) S.Draughn up the middle to KC 45 for 3 yards (C.Thomas).,13,27,2012 -20120930_SD@KC,3,17,56,KC,SD,3,3,55,(2:56) (Shotgun) M.Cassel pass incomplete short left to D.Bowe.,13,27,2012 -20120930_SD@KC,3,17,50,KC,SD,4,3,55,(2:50) D.Colquitt punts 42 yards to SD 13 Center-T.Gafford downed by KC-T.Copper.,13,27,2012 -20120930_SD@KC,3,17,38,SD,KC,1,10,87,(2:38) J.Battle right guard to SD 16 for 3 yards (D.Johnson).,27,13,2012 -20120930_SD@KC,3,16,57,SD,KC,2,7,84,(1:57) (Shotgun) P.Rivers pass short middle to J.Battle to SD 22 for 6 yards (J.Houston).,27,13,2012 -20120930_SD@KC,3,16,16,SD,KC,3,1,78,(1:16) L.McClain up the middle to SD 22 for no gain (R.Pitoitua).,27,13,2012 -20120930_SD@KC,3,15,33,SD,KC,4,1,78,(:33) M.Scifres punts 61 yards to KC 17 Center-M.Windt. J.Arenas to KC 35 for 18 yards (M.Ingram).,27,13,2012 -20120930_SD@KC,3,15,18,KC,SD,1,10,65,(:18) J.Charles left end to KC 45 for 10 yards (A.Bigby).,13,27,2012 -20120930_SD@KC,4,15,0,KC,SD,1,10,55,(15:00) J.Charles left end to KC 46 for 1 yard (K.Reyes).,13,27,2012 -20120930_SD@KC,4,14,20,KC,SD,2,9,54,(14:20) (Shotgun) M.Cassel pass short right to S.Draughn to KC 42 for -4 yards (Q.Jammer).,13,27,2012 -20120930_SD@KC,4,13,36,KC,SD,3,13,58,(13:36) (Shotgun) S.Draughn up the middle to 50 for 8 yards (Q.Jammer). FUMBLES (Q.Jammer) RECOVERED by SD-A.Bigby at KC 49. A.Bigby to KC 49 for no gain (S.Draughn).,13,27,2012 -20120930_SD@KC,4,13,25,SD,KC,1,10,49,(13:25) (Shotgun) R.Mathews up the middle to KC 43 for 6 yards (D.Johnson).,27,13,2012 -20120930_SD@KC,4,12,50,SD,KC,2,4,43,(12:50) R.Mathews up the middle to KC 39 for 4 yards (D.Johnson).,27,13,2012 -20120930_SD@KC,4,12,7,SD,KC,1,10,39,(12:07) (Shotgun) P.Rivers pass short right to R.Mathews to KC 31 for 8 yards (B.Flowers).,27,13,2012 -20120930_SD@KC,4,11,22,SD,KC,2,2,31,(11:22) R.Mathews right end to KC 27 for 4 yards (J.Houston).,27,13,2012 -20120930_SD@KC,4,10,43,SD,KC,1,10,27,(10:43) R.Mathews left end to KC 23 for 4 yards (J.Belcher).,27,13,2012 -20120930_SD@KC,4,10,0,SD,KC,2,6,23,(10:00) J.Battle up the middle to KC 20 for 3 yards (C.Greenwood).,27,13,2012 -20120930_SD@KC,4,9,15,SD,KC,3,3,20,(9:15) (Shotgun) P.Rivers pass short left to R.Brown to KC 4 for 16 yards (S.Routt).,27,13,2012 -20120930_SD@KC,4,8,47,SD,KC,1,4,4,(8:47) J.Battle left end to KC 4 for no gain (D.Poe).,27,13,2012 -20120930_SD@KC,4,7,59,SD,KC,2,4,4,(7:59) (Shotgun) P.Rivers pass short left to J.Battle for 4 yards TOUCHDOWN.,27,13,2012 -20120930_SD@KC,4,7,59,SD,KC,,,4,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,27,13,2012 -20120930_SD@KC,4,7,59,SD,KC,,,4,N.Novak kicks 69 yards from SD 35 to KC -4. C.Gray to KC 29 for 33 yards (M.Ingram).,34,13,2012 -20120930_SD@KC,4,7,48,KC,SD,1,10,71,(7:48) (Shotgun) M.Cassel pass short right to J.Baldwin to KC 41 for 12 yards (D.Williams).,13,34,2012 -20120930_SD@KC,4,7,32,KC,SD,1,10,59,(7:32) (No Huddle Shotgun) J.Charles up the middle to SD 46 for 13 yards (D.Williams).,13,34,2012 -20120930_SD@KC,4,7,2,KC,SD,1,10,46,(7:02) (No Huddle Shotgun) M.Cassel pass incomplete short right to D.Bowe.,13,34,2012 -20120930_SD@KC,4,6,57,KC,SD,2,10,46,(6:57) (Shotgun) C.Gray left end to SD 31 for 15 yards (S.Phillips).,13,34,2012 -20120930_SD@KC,4,6,29,KC,SD,1,10,31,(6:29) (No Huddle Shotgun) J.Charles up the middle to SD 33 for -2 yards (A.Barnes).,13,34,2012 -20120930_SD@KC,4,6,6,KC,SD,2,12,33,(6:06) (No Huddle Shotgun) M.Cassel pass short middle to J.Charles to SD 29 for 4 yards (D.Williams).,13,34,2012 -20120930_SD@KC,4,5,37,KC,SD,3,8,29,(5:37) (No Huddle Shotgun) M.Cassel pass deep left to D.Bowe for 29 yards TOUCHDOWN.,13,34,2012 -20120930_SD@KC,4,5,37,KC,SD,,,29,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,13,34,2012 -20120930_SD@KC,4,5,37,KC,SD,,,29,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,20,34,2012 -20120930_SD@KC,4,5,29,SD,KC,1,10,80,(5:29) J.Battle right end to SD 27 for 7 yards (Ty.Jackson; C.Greenwood).,34,20,2012 -20120930_SD@KC,4,4,44,SD,KC,2,3,73,(4:44) R.Mathews left end pushed ob at SD 35 for 8 yards (J.Belcher).,34,20,2012 -20120930_SD@KC,4,4,37,SD,KC,1,10,65,(4:37) R.Mathews left end to SD 44 for 9 yards (C.Greenwood).,34,20,2012 -20120930_SD@KC,4,3,54,SD,KC,2,1,56,(3:54) R.Mathews left tackle to 50 for 6 yards (E.Berry).,34,20,2012 -20120930_SD@KC,4,3,38,SD,KC,1,10,50,(3:38) R.Mathews up the middle to KC 36 for 14 yards (A.Elam).,34,20,2012 -20120930_SD@KC,4,3,26,SD,KC,1,10,36,(3:26) L.McClain left tackle to KC 32 for 4 yards (R.Pitoitua).,34,20,2012 -20120930_SD@KC,4,3,18,SD,KC,2,6,32,(3:18) R.Mathews up the middle to KC 27 for 5 yards (T.Hali).,34,20,2012 -20120930_SD@KC,4,2,32,SD,KC,3,1,27,(2:32) R.Mathews up the middle to KC 27 for no gain (R.Pitoitua).,34,20,2012 -20120930_SD@KC,4,2,0,SD,KC,4,1,27,(2:00) N.Novak 45 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,34,20,2012 -20120930_SD@KC,4,2,0,SD,KC,,,27,N.Novak kicks 22 yards from SD 35 to KC 43 out of bounds.,37,20,2012 -20120930_SD@KC,4,1,56,KC,SD,1,10,57,(1:56) (Shotgun) J.Charles up the middle to SD 49 for 8 yards (E.Weddle).,20,37,2012 -20120930_SD@KC,4,1,32,KC,SD,2,2,49,(1:32) (No Huddle Shotgun) M.Cassel pass short right to T.Moeaki to SD 47 for 2 yards (Q.Jammer). KC-J.Allen was injured during the play. 4th timeout due to injury 10 second runoff forf KC.,20,37,2012 -20120930_SD@KC,4,0,51,KC,SD,1,10,47,(:51) M.Cassel pass incomplete to S.Draughn.,20,37,2012 -20120930_SD@KC,4,0,51,KC,SD,2,10,47,(:51) (Shotgun) M.Cassel pass short middle to T.Moeaki to SD 35 for 12 yards (A.Bigby).,20,37,2012 -20120930_SD@KC,4,0,36,KC,SD,1,10,35,(:36) M.Cassel spiked the ball to stop the clock.,20,37,2012 -20120930_SD@KC,4,0,35,KC,SD,2,10,35,(:35) M.Cassel pass short right to S.Draughn to SD 24 for 11 yards (A.Bigby; C.Thomas).,20,37,2012 -20120930_SD@KC,4,0,35,KC,SD,1,10,24,(:35) M.Cassel spiked the ball to stop the clock.,20,37,2012 -20120930_SD@KC,4,0,19,KC,SD,2,10,24,(:19) (Shotgun) M.Cassel pass incomplete short middle to S.Maneri.,20,37,2012 -20120930_SD@KC,4,0,11,KC,SD,3,10,24,(:11) (Shotgun) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at SD 24 - No Play.,20,37,2012 -20120930_SD@KC,4,0,9,KC,SD,3,15,29,(:09) (Shotgun) M.Cassel pass short right to J.Baldwin to SD 19 for 10 yards (Q.Jammer).,20,37,2012 -20120930_SD@KC,4,0,9,KC,SD,,,29,                      ,20,37,2012 -20120930_SF@NYJ,1,0,0,NYJ,SF,,,29,N.Folk kicks 70 yards from NYJ 35 to SF -5. K.Williams to SF 20 for 25 yards (N.Bellore).,0,0,2012 -20120930_SF@NYJ,1,59,56,SF,NYJ,1,10,80,(14:56) A.Smith pass incomplete deep right to M.Crabtree. PENALTY on NYJ-K.Wilson Defensive Pass Interference 14 yards enforced at SF 20 - No Play.,0,0,2012 -20120930_SF@NYJ,1,59,50,SF,NYJ,1,10,66,(14:50) F.Gore right end to SF 36 for 2 yards (D.Harris).,0,0,2012 -20120930_SF@NYJ,1,59,15,SF,NYJ,2,8,64,(14:15) F.Gore right tackle to SF 39 for 3 yards (K.Wilson).,0,0,2012 -20120930_SF@NYJ,1,58,35,SF,NYJ,3,5,61,(13:35) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,0,0,2012 -20120930_SF@NYJ,1,58,32,SF,NYJ,4,5,61,(13:32) A.Lee punts 61 yards to end zone Center-B.Jennings Touchback. PENALTY on SF-C.Spillman Illegal Touch Kick 5 yards enforced at NYJ 20.,0,0,2012 -20120930_SF@NYJ,1,58,21,NYJ,SF,1,10,75,(13:21) M.Sanchez pass short right to S.Holmes pushed ob at NYJ 36 for 11 yards (D.Whitner).,0,0,2012 -20120930_SF@NYJ,1,57,54,NYJ,SF,1,10,64,(12:54) Direct snap to T.Tebow. T.Tebow up the middle to NYJ 38 for 2 yards (N.Bowman).,0,0,2012 -20120930_SF@NYJ,1,57,14,NYJ,SF,2,8,62,(12:14) S.Greene right guard to NYJ 41 for 3 yards (J.Smith).,0,0,2012 -20120930_SF@NYJ,1,56,35,NYJ,SF,3,5,59,(11:35) (Shotgun) M.Sanchez pass short left to J.Kerley to SF 49 for 10 yards. PENALTY on NYJ Offensive Holding 10 yards enforced at NYJ 41 - No Play.,0,0,2012 -20120930_SF@NYJ,1,56,7,NYJ,SF,3,15,69,(11:07) (Shotgun) M.Sanchez pass short left to C.Schilens pushed ob at SF 47 for 22 yards (D.Goldson).,0,0,2012 -20120930_SF@NYJ,1,55,40,NYJ,SF,1,10,47,(10:40) S.Greene right tackle to SF 42 for 5 yards (N.Bowman).,0,0,2012 -20120930_SF@NYJ,1,55,5,NYJ,SF,2,5,42,(10:05) S.Greene up the middle to SF 40 for 2 yards (R.McDonald).,0,0,2012 -20120930_SF@NYJ,1,54,23,NYJ,SF,3,3,40,(9:23) (Shotgun) M.Sanchez sacked at SF 45 for -5 yards (Ald.Smith).,0,0,2012 -20120930_SF@NYJ,1,53,57,NYJ,SF,4,8,45,(8:57) R.Malone punts 37 yards to SF 8 Center-T.Purdum fair catch by T.Ginn.,0,0,2012 -20120930_SF@NYJ,1,53,49,SF,NYJ,1,10,92,(8:49) F.Gore left tackle to SF 13 for 5 yards (Y.Bell; M.Devito).,0,0,2012 -20120930_SF@NYJ,1,53,11,SF,NYJ,2,5,87,(8:11) F.Gore right tackle to SF 19 for 6 yards (S.Pouha).,0,0,2012 -20120930_SF@NYJ,1,52,31,SF,NYJ,1,10,81,(7:31) Direct snap to C.Kaepernick. C.Kaepernick left tackle to SF 36 for 17 yards (Y.Bell).,0,0,2012 -20120930_SF@NYJ,1,51,43,SF,NYJ,1,10,64,(6:43) F.Gore up the middle to SF 49 for 13 yards (Y.Bell). PENALTY on SF Offensive Holding 10 yards enforced at SF 36 - No Play.,0,0,2012 -20120930_SF@NYJ,1,51,13,SF,NYJ,1,20,74,(6:13) A.Smith pass deep left to M.Manningham pushed ob at NYJ 48 for 26 yards (L.Landry).,0,0,2012 -20120930_SF@NYJ,1,50,47,SF,NYJ,1,10,48,(5:47) #7 Kaepenick in at QB C.Kaepernick pass incomplete deep left to R.Moss (L.Landry).,0,0,2012 -20120930_SF@NYJ,1,50,39,SF,NYJ,2,10,48,(5:39) F.Gore left end to NYJ 45 for 3 yards (B.Scott).,0,0,2012 -20120930_SF@NYJ,1,49,56,SF,NYJ,3,7,45,(4:56) (Shotgun) A.Smith pass incomplete deep left to M.Manningham.,0,0,2012 -20120930_SF@NYJ,1,49,52,SF,NYJ,4,7,45,(4:52) A.Lee punts 42 yards to NYJ 3 Center-B.Jennings downed by SF-C.Spillman.,0,0,2012 -20120930_SF@NYJ,1,49,42,NYJ,SF,1,10,97,(4:42) S.Greene right guard to NYJ 4 for 1 yard (P.Willis).,0,0,2012 -20120930_SF@NYJ,1,49,3,NYJ,SF,2,9,96,(4:03) S.Greene right end to NYJ 9 for 5 yards (P.Willis; D.Whitner).,0,0,2012 -20120930_SF@NYJ,1,48,20,NYJ,SF,3,4,91,(3:20) (Shotgun) M.Sanchez pass incomplete short left to S.Holmes.,0,0,2012 -20120930_SF@NYJ,1,48,17,NYJ,SF,4,4,91,(3:17) R.Malone punts 54 yards to SF 37 Center-T.Purdum. T.Ginn to SF 46 for 9 yards (T.Purdum; R.Malone). PENALTY on SF-A.Dixon Illegal Block Above the Waist 10 yards enforced at SF 42.,0,0,2012 -20120930_SF@NYJ,1,48,4,SF,NYJ,1,10,68,(3:04) A.Smith pass short middle to F.Gore to SF 37 for 5 yards (G.McIntyre).,0,0,2012 -20120930_SF@NYJ,1,47,24,SF,NYJ,2,5,63,(2:24) (Shotgun) A.Smith scrambles right end ran ob at SF 46 for 9 yards.,0,0,2012 -20120930_SF@NYJ,1,46,48,SF,NYJ,1,10,54,(1:48) F.Gore up the middle to 50 for 4 yards (K.Ellis).,0,0,2012 -20120930_SF@NYJ,1,46,11,SF,NYJ,2,6,50,(1:11) M.Manningham right end to NYJ 22 for 28 yards (D.Harris). End around,0,0,2012 -20120930_SF@NYJ,1,45,31,SF,NYJ,1,10,22,(:31) K.Hunter left end to NYJ 11 for 11 yards (L.Landry).,0,0,2012 -20120930_SF@NYJ,2,45,0,SF,NYJ,1,10,11,(15:00) A.Smith pass incomplete short right to M.Crabtree [B.Scott].,0,0,2012 -20120930_SF@NYJ,2,44,54,SF,NYJ,2,10,11,(14:54) (Shotgun) K.Williams right end to NYJ 2 for 9 yards (B.Scott).,0,0,2012 -20120930_SF@NYJ,2,44,7,SF,NYJ,3,1,2,(14:07) PENALTY on SF-L.Davis False Start 5 yards enforced at NYJ 2 - No Play.,0,0,2012 -20120930_SF@NYJ,2,43,43,SF,NYJ,3,6,7,(13:43) Direct snap to C.Kaepernick. C.Kaepernick left end for 7 yards TOUCHDOWN.,0,0,2012 -20120930_SF@NYJ,2,43,43,SF,NYJ,,,7,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20120930_SF@NYJ,2,43,43,SF,NYJ,,,7,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,7,0,2012 -20120930_SF@NYJ,2,43,37,NYJ,SF,1,10,80,(13:37) M.Sanchez pass incomplete short right to J.Conner (P.Willis).,0,7,2012 -20120930_SF@NYJ,2,43,28,NYJ,SF,2,10,80,(13:28) (Shotgun) M.Sanchez pass short right to C.Schilens to NYJ 29 for 9 yards (D.Whitner).,0,7,2012 -20120930_SF@NYJ,2,42,48,NYJ,SF,3,1,71,(12:48) S.Greene up the middle to NYJ 30 for 1 yard (P.Willis; N.Bowman).,0,7,2012 -20120930_SF@NYJ,2,42,5,NYJ,SF,1,10,70,(12:05) (Shotgun) M.Sanchez pass short left to S.Holmes pushed ob at NYJ 36 for 6 yards (C.Rogers).,0,7,2012 -20120930_SF@NYJ,2,41,35,NYJ,SF,2,4,64,(11:35) B.Powell left tackle to NYJ 39 for 3 yards (Ald.Smith; P.Willis).,0,7,2012 -20120930_SF@NYJ,2,40,51,NYJ,SF,3,1,61,(10:51) Direct snap to T.Tebow. T.Tebow pass short right to D.Epps to NYJ 48 for 9 yards (D.Goldson). FUMBLES (D.Goldson) RECOVERED by SF-C.Rogers at NYJ 48. C.Rogers to NYJ 47 for 1 yard (B.Powell). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,7,2012 -20120930_SF@NYJ,2,40,39,SF,NYJ,1,10,47,(10:39) A.Smith pass short right to B.Miller to NYJ 38 for 9 yards (K.Wilson).,7,0,2012 -20120930_SF@NYJ,2,39,51,SF,NYJ,2,1,38,(9:51) A.Smith pass short left to M.Manningham pushed ob at NYJ 29 for 9 yards (K.Wilson).,7,0,2012 -20120930_SF@NYJ,2,39,17,SF,NYJ,1,10,29,(9:17) F.Gore left end to NYJ 28 for 1 yard (K.Wilson; D.Harris).,7,0,2012 -20120930_SF@NYJ,2,38,37,SF,NYJ,2,9,28,(8:37) A.Smith sacked at NYJ 32 for -4 yards (B.Thomas).,7,0,2012 -20120930_SF@NYJ,2,37,57,SF,NYJ,3,13,32,(7:57) (Shotgun) A.Smith sacked at NYJ 37 for -5 yards (C.Pace).,7,0,2012 -20120930_SF@NYJ,2,37,28,SF,NYJ,4,18,37,(7:28) D.Akers 55 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,7,0,2012 -20120930_SF@NYJ,2,37,22,NYJ,SF,1,10,55,(7:22) Direct snap to T.Tebow. S.Greene left guard to NYJ 49 for 4 yards (J.Smith).,0,7,2012 -20120930_SF@NYJ,2,36,48,NYJ,SF,2,6,51,(6:48) S.Greene left guard to SF 46 for 5 yards (J.Smith; D.Whitner).,0,7,2012 -20120930_SF@NYJ,2,36,12,NYJ,SF,3,1,46,(6:12) M.Sanchez sacked at NYJ 48 for -6 yards (A.Brooks).,0,7,2012 -20120930_SF@NYJ,2,35,44,NYJ,SF,4,7,52,(5:44) R.Malone punts 41 yards to SF 11 Center-T.Purdum fair catch by T.Ginn.,0,7,2012 -20120930_SF@NYJ,2,35,36,SF,NYJ,1,10,89,(5:36) F.Gore up the middle to SF 17 for 6 yards (Y.Bell; M.Devito).,7,0,2012 -20120930_SF@NYJ,2,34,59,SF,NYJ,2,4,83,(4:59) F.Gore left guard to SF 23 for 6 yards (L.Landry; B.Scott).,7,0,2012 -20120930_SF@NYJ,2,34,19,SF,NYJ,1,10,77,(4:19) (Shotgun) Direct snap to C.Kaepernick. F.Gore right tackle to SF 22 for -1 yards (Q.Coples).,7,0,2012 -20120930_SF@NYJ,2,33,44,SF,NYJ,2,11,78,(3:44) (Shotgun) A.Smith pass short right to M.Crabtree to SF 25 for 3 yards (B.Scott).,7,0,2012 -20120930_SF@NYJ,2,33,1,SF,NYJ,3,8,75,(3:01) (Shotgun) A.Smith pass incomplete deep left to M.Crabtree. PENALTY on SF-A.Davis Unnecessary Roughness 12 yards enforced at SF 25.,7,0,2012 -20120930_SF@NYJ,2,32,57,SF,NYJ,4,20,87,(2:57) A.Lee punts 34 yards to SF 47 Center-B.Jennings out of bounds.,7,0,2012 -20120930_SF@NYJ,2,32,49,NYJ,SF,1,10,47,(2:49) (Shotgun) M.Sanchez pass short middle to J.Kerley to SF 43 for 4 yards (P.Willis).,0,7,2012 -20120930_SF@NYJ,2,32,49,NYJ,SF,2,6,43,(2:49) M.Sanchez pass incomplete short middle to S.Holmes (D.Goldson).,0,7,2012 -20120930_SF@NYJ,2,32,1,NYJ,SF,3,6,43,(2:01) (Shotgun) M.Sanchez pass incomplete short middle to P.Turner. PENALTY on SF-Ald.Smith Unnecessary Roughness 15 yards enforced at SF 43.,0,7,2012 -20120930_SF@NYJ,2,31,57,NYJ,SF,1,10,28,(1:57) B.Powell left guard to SF 25 for 3 yards (N.Bowman; P.Willis).,0,7,2012 -20120930_SF@NYJ,2,31,26,NYJ,SF,2,7,25,(1:26) (Shotgun) M.Sanchez pass incomplete short left to J.Kerley (J.Smith).,0,7,2012 -20120930_SF@NYJ,2,31,22,NYJ,SF,3,7,25,(1:22) (Shotgun) M.Sanchez sacked at SF 25 for 0 yards (Ald.Smith). FUMBLES (Ald.Smith) RECOVERED by SF-J.Smith at SF 26.,0,7,2012 -20120930_SF@NYJ,2,31,11,SF,NYJ,1,10,74,(1:11) (Shotgun) A.Smith pass short left to V.Davis pushed ob at SF 49 for 23 yards (L.Landry).,7,0,2012 -20120930_SF@NYJ,2,31,5,SF,NYJ,1,10,51,(1:05) (Shotgun) A.Smith pass short right to M.Crabtree to NYJ 45 for 6 yards (K.Wilson; D.Harris). PENALTY on NYJ-A.Cromartie Illegal Contact 5 yards enforced at SF 49 - No Play.,7,0,2012 -20120930_SF@NYJ,2,30,59,SF,NYJ,1,10,46,(:59) (Shotgun) A.Smith pass short left to F.Gore to NYJ 38 for 8 yards (E.Lankster; M.Wilkerson).,7,0,2012 -20120930_SF@NYJ,2,30,34,SF,NYJ,2,2,38,(:34) (No Huddle Shotgun) A.Smith pass short left to V.Davis pushed ob at NYJ 33 for 5 yards (E.Lankster).,7,0,2012 -20120930_SF@NYJ,2,30,31,SF,NYJ,1,10,33,(:31) (Shotgun) A.Smith pass short right to M.Crabtree to NYJ 21 for 12 yards (D.Davis).,7,0,2012 -20120930_SF@NYJ,2,30,23,SF,NYJ,1,10,21,(:23) (Shotgun) A.Smith left end to NYJ 18 for 3 yards (A.Maybin).,7,0,2012 -20120930_SF@NYJ,2,30,2,SF,NYJ,2,7,18,(:02) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,7,0,2012 -20120930_SF@NYJ,3,30,0,SF,NYJ,,,18,D.Akers kicks 73 yards from SF 35 to NYJ -8. J.McKnight to NYJ 21 for 29 yards (T.Gooden).,10,0,2012 -20120930_SF@NYJ,3,29,55,NYJ,SF,1,10,79,(14:55) S.Greene left guard to NYJ 23 for 2 yards (P.Willis; N.Bowman).,0,10,2012 -20120930_SF@NYJ,3,29,18,NYJ,SF,2,8,77,(14:18) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 32 for 9 yards (D.Whitner; P.Willis).,0,10,2012 -20120930_SF@NYJ,3,28,52,NYJ,SF,1,10,68,(13:52) M.Sanchez pass short left to C.Schilens to NYJ 46 for 14 yards (C.Culliver).,0,10,2012 -20120930_SF@NYJ,3,28,25,NYJ,SF,1,10,54,(13:25) M.Sanchez pass short right INTERCEPTED by P.Willis (R.McDonald) at NYJ 41. P.Willis to NYJ 41 for no gain (N.Mangold). Ball tipped by SF 91 - McDonald.,0,10,2012 -20120930_SF@NYJ,3,28,19,SF,NYJ,1,10,41,(13:19) K.Hunter left tackle to NYJ 29 for 12 yards (L.Landry).,10,0,2012 -20120930_SF@NYJ,3,27,40,SF,NYJ,1,10,29,(12:40) F.Gore right guard to NYJ 25 for 4 yards (S.Pouha).,10,0,2012 -20120930_SF@NYJ,3,26,55,SF,NYJ,2,6,25,(11:55) F.Gore left end to NYJ 22 for 3 yards (M.Devito).,10,0,2012 -20120930_SF@NYJ,3,26,22,SF,NYJ,3,3,22,(11:22) A.Smith pass incomplete short right to D.Walker.,10,0,2012 -20120930_SF@NYJ,3,26,17,SF,NYJ,4,3,22,(11:17) D.Akers 40 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,10,0,2012 -20120930_SF@NYJ,3,26,13,NYJ,SF,1,10,70,(11:13) S.Greene right tackle to NYJ 33 for 3 yards (A.Brooks; P.Willis).,0,10,2012 -20120930_SF@NYJ,3,25,29,NYJ,SF,2,7,67,(10:29) (Shotgun) M.Sanchez pass incomplete deep middle to J.Cumberland (N.Bowman).,0,10,2012 -20120930_SF@NYJ,3,25,23,NYJ,SF,3,7,67,(10:23) (Shotgun) M.Sanchez pass incomplete deep right to S.Holmes.,0,10,2012 -20120930_SF@NYJ,3,25,19,NYJ,SF,4,7,67,(10:19) R.Malone punts 41 yards to SF 26 Center-T.Purdum. T.Ginn pushed ob at SF 40 for 14 yards (J.Mauga).,0,10,2012 -20120930_SF@NYJ,3,25,11,SF,NYJ,1,10,60,(10:11) A.Smith pass incomplete short right to D.Walker.,10,0,2012 -20120930_SF@NYJ,3,25,5,SF,NYJ,2,10,60,(10:05) A.Smith pass short right to D.Walker to SF 46 for 6 yards (K.Wilson; D.Harris).,10,0,2012 -20120930_SF@NYJ,3,24,25,SF,NYJ,3,4,54,(9:25) (Shotgun) K.Hunter right tackle to NYJ 46 for 8 yards (L.Landry).,10,0,2012 -20120930_SF@NYJ,3,23,50,SF,NYJ,1,10,46,(8:50) F.Gore to NYJ 48 for -2 yards (C.Pace; K.Ellis). FUMBLES (C.Pace) and recovers at NYJ 48.,10,0,2012 -20120930_SF@NYJ,3,23,9,SF,NYJ,2,12,48,(8:09) F.Gore right guard to NYJ 49 for -1 yards (Q.Coples).,10,0,2012 -20120930_SF@NYJ,3,22,31,SF,NYJ,3,13,49,(7:31) (Shotgun) A.Smith pass incomplete deep right to M.Manningham.,10,0,2012 -20120930_SF@NYJ,3,22,19,SF,NYJ,4,13,49,(7:19) A.Lee punts 47 yards to NYJ 2 Center-B.Jennings downed by SF-T.Brock.,10,0,2012 -20120930_SF@NYJ,3,22,13,NYJ,SF,1,10,98,(7:13) B.Powell left guard to NYJ 4 for 2 yards (J.Smith; N.Bowman).,0,10,2012 -20120930_SF@NYJ,3,21,35,NYJ,SF,2,8,96,(6:35) M.Sanchez pass incomplete short middle to B.Powell.,0,10,2012 -20120930_SF@NYJ,3,21,31,NYJ,SF,3,8,96,(6:31) (Shotgun) M.Sanchez pass incomplete short right to B.Powell.,0,10,2012 -20120930_SF@NYJ,3,21,18,NYJ,SF,4,8,96,(6:18) R.Malone punts 45 yards to NYJ 49 Center-T.Purdum. T.Ginn to NYJ 48 for 1 yard (D.Davis).,0,10,2012 -20120930_SF@NYJ,3,21,15,SF,NYJ,1,10,48,(6:15) A.Smith pass short right to M.Manningham to NYJ 36 for 12 yards (D.Harris).,10,0,2012 -20120930_SF@NYJ,3,20,40,SF,NYJ,1,10,36,(5:40) A.Smith pass deep left to D.Walker to NYJ 11 for 25 yards (A.Cromartie).,10,0,2012 -20120930_SF@NYJ,3,19,58,SF,NYJ,1,10,11,(4:58) B.Miller left guard to NYJ 6 for 5 yards (B.Scott).,10,0,2012 -20120930_SF@NYJ,3,19,17,SF,NYJ,2,5,6,(4:17) F.Gore left guard to NYJ 2 for 4 yards (M.Wilkerson; G.McIntyre).,10,0,2012 -20120930_SF@NYJ,3,18,38,SF,NYJ,3,1,2,(3:38) F.Gore left guard to NYJ 2 for no gain (M.Wilkerson; K.Ellis).,10,0,2012 -20120930_SF@NYJ,3,17,55,SF,NYJ,4,1,2,(2:55) F.Gore left guard for 2 yards TOUCHDOWN.,10,0,2012 -20120930_SF@NYJ,3,17,55,SF,NYJ,,,2,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,10,0,2012 -20120930_SF@NYJ,3,17,55,SF,NYJ,,,2,D.Akers kicks 73 yards from SF 35 to NYJ -8. J.McKnight pushed ob at NYJ 36 for 44 yards (P.Cox).,17,0,2012 -20120930_SF@NYJ,3,17,42,NYJ,SF,1,10,64,(2:42) S.Greene right guard to NYJ 39 for 3 yards (N.Bowman; R.McDonald).,0,17,2012 -20120930_SF@NYJ,3,17,5,NYJ,SF,2,7,61,(2:05) (Shotgun) M.Sanchez pass short left to S.Holmes to NYJ 47 for 8 yards (C.Rogers; N.Bowman).,0,17,2012 -20120930_SF@NYJ,3,16,26,NYJ,SF,1,10,53,(1:26) M.Sanchez pass incomplete deep middle to S.Holmes (D.Goldson).,0,17,2012 -20120930_SF@NYJ,3,16,17,NYJ,SF,2,10,53,(1:17) (Shotgun) M.Sanchez pass short left to J.Cumberland to SF 47 for 6 yards (P.Willis).,0,17,2012 -20120930_SF@NYJ,3,15,35,NYJ,SF,3,4,47,(:35) (Shotgun) M.Sanchez sacked at SF 47 for 0 yards (R.McDonald). PENALTY on SF-C.Rogers Illegal Use of Hands 5 yards enforced at SF 47 - No Play.,0,17,2012 -20120930_SF@NYJ,3,15,4,NYJ,SF,1,10,42,(:04) (Shotgun) Direct snap to T.Tebow. T.Tebow left end to SF 44 for -2 yards (P.Willis).,0,17,2012 -20120930_SF@NYJ,4,15,0,NYJ,SF,2,12,44,(15:00) M.Sanchez pass short right to S.Holmes to SF 40 for 4 yards. FUMBLES touched at SF 40 RECOVERED by SF-C.Rogers at SF 49. C.Rogers for 51 yards TOUCHDOWN. NYJ-S.Holmes was injured during the play. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,17,2012 -20120930_SF@NYJ,4,15,0,SF,NYJ,,,44,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,0,2012 -20120930_SF@NYJ,4,15,0,SF,NYJ,,,44,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,18,0,2012 -20120930_SF@NYJ,4,14,46,NYJ,SF,1,10,80,(14:46) M.Sanchez pass incomplete short middle to B.Powell.,0,18,2012 -20120930_SF@NYJ,4,14,42,NYJ,SF,2,10,80,(14:42) (Shotgun) M.Sanchez pass short middle to J.Kerley to NYJ 28 for 8 yards (C.Rogers).,0,18,2012 -20120930_SF@NYJ,4,13,59,NYJ,SF,3,2,72,(13:59) M.Sanchez pass short right to J.Cumberland to NYJ 25 for -3 yards (D.Goldson; D.Whitner).,0,18,2012 -20120930_SF@NYJ,4,13,28,NYJ,SF,4,5,75,(13:28) R.Malone punts 43 yards to SF 32 Center-T.Purdum fair catch by T.Ginn.,0,18,2012 -20120930_SF@NYJ,4,13,21,SF,NYJ,1,10,68,(13:21) K.Hunter left end pushed ob at SF 45 for 13 yards (A.Cromartie).,18,0,2012 -20120930_SF@NYJ,4,12,50,SF,NYJ,1,10,55,(12:50) F.Gore right tackle to SF 47 for 2 yards (D.Harris; C.Pace).,18,0,2012 -20120930_SF@NYJ,4,12,9,SF,NYJ,2,8,53,(12:09) F.Gore left guard to NYJ 42 for 11 yards (Y.Bell).,18,0,2012 -20120930_SF@NYJ,4,11,23,SF,NYJ,1,10,42,(11:23) F.Gore right tackle to NYJ 40 for 2 yards (K.Ellis; C.Pace).,18,0,2012 -20120930_SF@NYJ,4,10,39,SF,NYJ,2,8,40,(10:39) (Shotgun) T.Ginn left end pushed ob at NYJ 33 for 7 yards (A.Cromartie). End around.,18,0,2012 -20120930_SF@NYJ,4,10,14,SF,NYJ,3,1,33,(10:14) F.Gore right tackle to NYJ 31 for 2 yards (D.Harris).,18,0,2012 -20120930_SF@NYJ,4,9,26,SF,NYJ,1,10,31,(9:26) K.Hunter left end to NYJ 22 for 9 yards (D.Harris).,18,0,2012 -20120930_SF@NYJ,4,8,36,SF,NYJ,2,1,22,(8:36) A.Smith pass incomplete deep right to M.Crabtree (A.Cromartie).,18,0,2012 -20120930_SF@NYJ,4,8,31,SF,NYJ,3,1,22,(8:31) A.Smith pass incomplete short right to M.Crabtree (A.Cromartie).,18,0,2012 -20120930_SF@NYJ,4,8,27,SF,NYJ,4,1,22,(8:27) D.Akers 40 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,18,0,2012 -20120930_SF@NYJ,4,8,27,SF,NYJ,,,22,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,21,0,2012 -20120930_SF@NYJ,4,8,23,NYJ,SF,1,10,80,(8:23) (Shotgun) M.Sanchez sacked at NYJ 14 for -6 yards (Ald.Smith). PENALTY on SF-T.Brown Defensive Holding 5 yards enforced at NYJ 20 - No Play.,0,21,2012 -20120930_SF@NYJ,4,7,58,NYJ,SF,1,10,75,(7:58) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,21,2012 -20120930_SF@NYJ,4,7,54,NYJ,SF,2,10,75,(7:54) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,21,2012 -20120930_SF@NYJ,4,7,49,NYJ,SF,3,10,75,(7:49) (Shotgun) M.Sanchez pass incomplete short left to P.Turner.,0,21,2012 -20120930_SF@NYJ,4,7,43,NYJ,SF,4,10,75,(7:43) R.Malone punt is BLOCKED by L.Grant Center-T.Purdum ball out of bounds at NYJ 4.,0,21,2012 -20120930_SF@NYJ,4,7,35,SF,NYJ,1,4,4,(7:35) K.Hunter left tackle to NYJ 2 for 2 yards (D.Harris).,21,0,2012 -20120930_SF@NYJ,4,6,52,SF,NYJ,2,2,2,(6:52) K.Hunter left guard to NYJ 2 for no gain (S.Pouha).,21,0,2012 -20120930_SF@NYJ,4,6,52,SF,NYJ,3,2,2,(6:52) A.Smith pass incomplete short right. PENALTY on NYJ-B.Scott Defensive Holding 1 yard enforced at NYJ 2 - No Play.,21,0,2012 -20120930_SF@NYJ,4,6,6,SF,NYJ,1,1,1,(6:06) K.Hunter left guard for 1 yard TOUCHDOWN.,21,0,2012 -20120930_SF@NYJ,4,6,6,SF,NYJ,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,21,0,2012 -20120930_SF@NYJ,4,6,6,SF,NYJ,,,1,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,28,0,2012 -20120930_SF@NYJ,4,6,3,NYJ,SF,1,10,80,(6:03) SF 7 - Kaepernick in at QB. (Shotgun) B.Powell up the middle to NYJ 23 for 3 yards (T.Gooden).,0,28,2012 -20120930_SF@NYJ,4,5,23,NYJ,SF,2,7,77,(5:23) (Shotgun) M.Sanchez pass incomplete short right to P.Turner.,0,28,2012 -20120930_SF@NYJ,4,5,19,NYJ,SF,3,7,77,(5:19) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 28 for 5 yards (C.Spillman).,0,28,2012 -20120930_SF@NYJ,4,4,43,NYJ,SF,4,2,72,(4:43) R.Malone punts 42 yards to SF 30 Center-T.Purdum. T.Ginn to 50 for 20 yards (E.Lankster). FUMBLES (E.Lankster) recovered by SF-A.Dixon at NYJ 49. A.Dixon to NYJ 49 for no gain (T.Tebow).,0,28,2012 -20120930_SF@NYJ,4,4,28,SF,NYJ,1,10,49,(4:28) A.Dixon right tackle to NYJ 42 for 7 yards (Y.Bell).,28,0,2012 -20120930_SF@NYJ,4,3,46,SF,NYJ,2,3,42,(3:46) A.Dixon left guard to NYJ 39 for 3 yards (D.Harris).,28,0,2012 -20120930_SF@NYJ,4,3,6,SF,NYJ,1,10,39,(3:06) A.Dixon right guard to NYJ 36 for 3 yards (L.Landry).,28,0,2012 -20120930_SF@NYJ,4,2,25,SF,NYJ,2,7,36,(2:25) A.Dixon left end to NYJ 33 for 3 yards (D.Harris).,28,0,2012 -20120930_SF@NYJ,4,2,0,SF,NYJ,3,4,33,(2:00) C.Kaepernick right end to NYJ 3 for 30 yards.,28,0,2012 -20120930_SF@NYJ,4,1,12,SF,NYJ,1,3,3,(1:12) C.Kaepernick kneels to NYJ 5 for -2 yards.,28,0,2012 -20120930_SF@NYJ,4,1,12,SF,NYJ,2,5,5,(1:12) C.Kaepernick kneels to NYJ 7 for -2 yards.,28,0,2012 -20120930_SF@NYJ,4,1,12,SF,NYJ,,,5,                      ,28,0,2012 -20120930_SEA@STL,1,1,0,STL,SEA,,,5,G.Zuerlein kicks 73 yards from SL 35 to SEA -8. L.Washington Touchback.,0,0,2012 -20120930_SEA@STL,1,60,0,SEA,STL,1,10,80,(15:00) R.Wilson pass short right to S.Rice to SEA 37 for 17 yards (C.Finnegan).,0,0,2012 -20120930_SEA@STL,1,59,23,SEA,STL,1,10,63,(14:23) R.Wilson scrambles right end to SEA 45 for 8 yards (R.McIntosh).,0,0,2012 -20120930_SEA@STL,1,59,4,SEA,STL,2,2,55,(14:04) M.Lynch left tackle to SEA 49 for 4 yards (J.Laurinaitis).,0,0,2012 -20120930_SEA@STL,1,58,29,SEA,STL,1,10,51,(13:29) M.Lynch left tackle to SL 48 for 3 yards (W.Hayes).,0,0,2012 -20120930_SEA@STL,1,57,50,SEA,STL,2,7,48,(12:50) R.Wilson pass deep right to S.Rice to SL 32 for 16 yards (Q.Mikell).,0,0,2012 -20120930_SEA@STL,1,57,10,SEA,STL,1,10,32,(12:10) (Shotgun) M.Lynch up the middle to SL 25 for 7 yards (J.Dunbar).,0,0,2012 -20120930_SEA@STL,1,56,26,SEA,STL,2,3,25,(11:26) R.Wilson pass short right to G.Tate to SL 18 for 7 yards (C.Finnegan).,0,0,2012 -20120930_SEA@STL,1,55,52,SEA,STL,1,10,18,(10:52) M.Lynch left tackle for 18 yards TOUCHDOWN. Penalty on SL-K.Langford Defensive Offside declined.,0,0,2012 -20120930_SEA@STL,1,55,52,SEA,STL,,,18,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120930_SEA@STL,1,55,52,SEA,STL,,,18,S.Hauschka kicks 74 yards from SEA 35 to SL -9. C.Givens Touchback.,7,0,2012 -20120930_SEA@STL,1,55,45,STL,SEA,1,10,80,(10:45) S.Jackson up the middle to SL 21 for 1 yard (K.Wright).,0,7,2012 -20120930_SEA@STL,1,55,6,STL,SEA,2,9,79,(10:06) S.Jackson left tackle to SL 22 for 1 yard (B.Mebane).,0,7,2012 -20120930_SEA@STL,1,54,21,STL,SEA,3,8,78,(9:21) (Shotgun) PENALTY on SL-W.Hunter False Start 5 yards enforced at SL 22 - No Play.,0,7,2012 -20120930_SEA@STL,1,54,8,STL,SEA,3,13,83,(9:08) S.Bradford pass short right to B.Gibson to SL 31 for 14 yards (K.Chancellor). Pass tipped by 99 - A. Branch,0,7,2012 -20120930_SEA@STL,1,53,33,STL,SEA,1,10,69,(8:33) S.Bradford pass incomplete short right to B.Quick.,0,7,2012 -20120930_SEA@STL,1,53,26,STL,SEA,2,10,69,(8:26) S.Bradford pass short middle to B.Gibson to SL 45 for 14 yards (R.Turbin).,0,7,2012 -20120930_SEA@STL,1,52,51,STL,SEA,1,10,55,(7:51) S.Jackson right tackle to SEA 32 for 23 yards (E.Thomas).,0,7,2012 -20120930_SEA@STL,1,52,6,STL,SEA,1,10,32,(7:06) S.Bradford pass short left to L.Kendricks to SEA 36 for -4 yards (K.Wright).,0,7,2012 -20120930_SEA@STL,1,51,20,STL,SEA,2,14,36,(6:20) (Shotgun) S.Bradford sacked at SEA 44 for -8 yards (J.Jones).,0,7,2012 -20120930_SEA@STL,1,50,48,STL,SEA,3,22,44,(5:48) S.Jackson up the middle to SEA 40 for 4 yards (M.Smith).,0,7,2012 -20120930_SEA@STL,1,50,3,STL,SEA,4,18,40,(5:03) G.Zuerlein 58 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 -20120930_SEA@STL,1,50,3,STL,SEA,,,40,G.Zuerlein kicks 68 yards from SL 35 to SEA -3. L.Washington Touchback.,3,7,2012 -20120930_SEA@STL,1,49,59,SEA,STL,1,10,80,(4:59) M.Lynch up the middle to SEA 22 for 2 yards (R.Quinn).,7,3,2012 -20120930_SEA@STL,1,49,23,SEA,STL,2,8,78,(4:23) (Shotgun) R.Wilson pass short middle to Z.Miller to SEA 31 for 9 yards (R.McIntosh; J.Laurinaitis). SEA-J.Carpenter was injured during the play.,7,3,2012 -20120930_SEA@STL,1,48,47,SEA,STL,1,10,69,(3:47) R.Wilson pass short right to R.Turbin pushed ob at SEA 37 for 6 yards (R.McIntosh).,7,3,2012 -20120930_SEA@STL,1,48,22,SEA,STL,2,4,63,(3:22) M.Lynch right guard to SEA 40 for 3 yards (R.McIntosh). SL-M.Brockers was injured during the play.,7,3,2012 -20120930_SEA@STL,1,47,52,SEA,STL,3,1,60,(2:52) M.Lynch left end to SEA 38 for -2 yards (J.Jenkins).,7,3,2012 -20120930_SEA@STL,1,47,9,SEA,STL,4,3,62,(2:09) J.Ryan punts 62 yards to end zone Center-C.Gresham Touchback. PENALTY on SL-T.Johnson Offensive Holding 10 yards enforced at SL 20.,7,3,2012 -20120930_SEA@STL,1,46,59,STL,SEA,1,10,90,(1:59) S.Jackson right end to SL 14 for 4 yards (B.Wagner).,3,7,2012 -20120930_SEA@STL,1,46,18,STL,SEA,2,6,86,(1:18) S.Bradford pass short left to D.Amendola to SL 20 for 6 yards (K.Chancellor).,3,7,2012 -20120930_SEA@STL,1,45,32,STL,SEA,1,10,80,(:32) S.Bradford pass deep right to C.Givens to SEA 28 for 52 yards (E.Thomas).,3,7,2012 -20120930_SEA@STL,2,45,0,STL,SEA,1,10,28,(15:00) S.Jackson right guard to SEA 28 for no gain (B.Mebane).,3,7,2012 -20120930_SEA@STL,2,44,16,STL,SEA,2,10,28,(14:16) (Shotgun) S.Bradford pass short right intended for B.Gibson INTERCEPTED by R.Sherman at SEA 13. R.Sherman pushed ob at SEA 42 for 29 yards (H.Dahl). PENALTY on SEA-C.Clemons Personal Foul 15 yards enforced at SEA 42.,3,7,2012 -20120930_SEA@STL,2,44,6,SEA,STL,1,10,73,(14:06) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 37 for 10 yards (K.Langford). PENALTY on SEA-B.Giacomini Personal Foul 15 yards enforced at SEA 37.,7,3,2012 -20120930_SEA@STL,2,43,34,SEA,STL,2,15,78,(13:34) (Shotgun) R.Wilson pass short middle to Z.Miller to SEA 35 for 13 yards (R.McIntosh).,7,3,2012 -20120930_SEA@STL,2,43,4,SEA,STL,3,2,65,(13:04) (Shotgun) R.Wilson pass incomplete short middle to G.Tate [R.Quinn].,7,3,2012 -20120930_SEA@STL,2,42,53,SEA,STL,4,2,65,(12:53) J.Ryan punts 62 yards to SL 3 Center-C.Gresham. D.Amendola to SL 21 for 18 yards (J.Lane).,7,3,2012 -20120930_SEA@STL,2,42,40,STL,SEA,1,10,79,(12:40) S.Bradford pass short right to D.Amendola pushed ob at SL 27 for 6 yards (R.Sherman).,3,7,2012 -20120930_SEA@STL,2,42,8,STL,SEA,2,4,73,(12:08) D.Richardson left end to SL 29 for 2 yards (K.Wright).,3,7,2012 -20120930_SEA@STL,2,41,25,STL,SEA,3,2,71,(11:25) (Shotgun) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 -20120930_SEA@STL,2,41,21,STL,SEA,4,2,71,(11:21) J.Hekker punts 47 yards to SEA 24 Center-J.McQuaide. L.Washington to SEA 21 for -3 yards (R.McLeod).,3,7,2012 -20120930_SEA@STL,2,41,13,SEA,STL,1,10,79,(11:13) M.Lynch left tackle to SEA 30 for 9 yards (J.Laurinaitis).,7,3,2012 -20120930_SEA@STL,2,40,34,SEA,STL,2,1,70,(10:34) M.Lynch right tackle to SEA 33 for 3 yards (C.Long).,7,3,2012 -20120930_SEA@STL,2,39,54,SEA,STL,1,10,67,(9:54) R.Wilson scrambles right end to SEA 34 for 1 yard (W.Hayes).,7,3,2012 -20120930_SEA@STL,2,39,9,SEA,STL,2,9,66,(9:09) M.Lynch left end to SEA 49 for 15 yards (J.Laurinaitis).,7,3,2012 -20120930_SEA@STL,2,38,41,SEA,STL,1,10,51,(8:41) R.Wilson up the middle to SEA 44 for -5 yards (K.Heard).,7,3,2012 -20120930_SEA@STL,2,38,11,SEA,STL,2,15,56,(8:11) (Shotgun) R.Wilson pass short right to R.Turbin to SL 49 for 7 yards (J.Dunbar).,7,3,2012 -20120930_SEA@STL,2,37,35,SEA,STL,3,8,49,(7:35) (Shotgun) R.Wilson pass short left intended for D.Baldwin INTERCEPTED by T.Johnson at SL 44. T.Johnson to SL 48 for 4 yards (D.Baldwin).,7,3,2012 -20120930_SEA@STL,2,37,23,STL,SEA,1,10,52,(7:23) S.Jackson up the middle to SEA 43 for 9 yards (B.Wagner).,3,7,2012 -20120930_SEA@STL,2,36,40,STL,SEA,2,1,43,(6:40) D.Richardson right guard to SEA 42 for 1 yard (B.Wagner).,3,7,2012 -20120930_SEA@STL,2,35,58,STL,SEA,1,10,42,(5:58) S.Bradford pass incomplete short right to B.Miller (A.Branch).,3,7,2012 -20120930_SEA@STL,2,35,50,STL,SEA,2,10,42,(5:50) S.Bradford sacked at SEA 46 for -4 yards (A.Branch).,3,7,2012 -20120930_SEA@STL,2,35,10,STL,SEA,3,14,46,(5:10) (Shotgun) S.Bradford pass short right to A.Pettis to SEA 29 for 17 yards (R.Sherman).,3,7,2012 -20120930_SEA@STL,2,34,32,STL,SEA,1,10,29,(4:32) S.Jackson right tackle to SEA 24 for 5 yards (B.Wagner).,3,7,2012 -20120930_SEA@STL,2,33,50,STL,SEA,2,5,24,(3:50) (Shotgun) S.Bradford pass short middle to A.Pettis to SEA 15 for 9 yards (B.Wagner). PENALTY on SL-B.Gibson Illegal Formation 5 yards enforced at SEA 24 - No Play.,3,7,2012 -20120930_SEA@STL,2,33,21,STL,SEA,2,10,29,(3:21) S.Bradford pass incomplete short right to D.Richardson (C.McDonald).,3,7,2012 -20120930_SEA@STL,2,33,16,STL,SEA,3,10,29,(3:16) (Shotgun) S.Bradford pass deep middle to B.Quick to SEA 10 for 19 yards (R.Sherman).,3,7,2012 -20120930_SEA@STL,2,32,33,STL,SEA,1,10,10,(2:33) S.Jackson right end to SEA 3 for 7 yards (K.Wright).,3,7,2012 -20120930_SEA@STL,2,32,0,STL,SEA,2,3,3,(2:00) S.Jackson right tackle for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SEA 3 - No Play.,3,7,2012 -20120930_SEA@STL,2,31,56,STL,SEA,2,13,13,(1:56) (Shotgun) S.Bradford pass short left to D.Amendola to SEA 2 for 11 yards (K.Wright).,3,7,2012 -20120930_SEA@STL,2,31,20,STL,SEA,3,2,2,(1:20) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 -20120930_SEA@STL,2,31,16,STL,SEA,4,2,2,(1:16) (Field Goal formation) J.Hekker pass short right to D.Amendola for 2 yards TOUCHDOWN.,3,7,2012 -20120930_SEA@STL,2,31,16,STL,SEA,,,2,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,3,7,2012 -20120930_SEA@STL,2,31,16,STL,SEA,,,2,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,10,7,2012 -20120930_SEA@STL,2,31,11,SEA,STL,1,10,80,(1:11) (Shotgun) L.Washington up the middle to SEA 22 for 2 yards (C.Finnegan).,7,10,2012 -20120930_SEA@STL,2,30,53,SEA,STL,2,8,78,(:53) (No Huddle Shotgun) R.Wilson pass incomplete short right to S.Rice.,7,10,2012 -20120930_SEA@STL,2,30,49,SEA,STL,3,8,78,(:49) (Shotgun) PENALTY on SL-R.Quinn Defensive Offside 5 yards enforced at SEA 22 - No Play.,7,10,2012 -20120930_SEA@STL,2,30,49,SEA,STL,3,3,73,(:49) (Shotgun) R.Wilson sacked at SEA 15 for -12 yards (E.Sims).,7,10,2012 -20120930_SEA@STL,2,30,40,SEA,STL,4,15,85,(:40) J.Ryan punts 31 yards to SEA 46 Center-C.Gresham out of bounds.,7,10,2012 -20120930_SEA@STL,2,30,34,STL,SEA,1,10,46,(:34) S.Bradford pass short middle to D.Richardson to SEA 35 for 11 yards (M.Smith).,10,7,2012 -20120930_SEA@STL,2,30,18,STL,SEA,1,10,35,(:18) S.Bradford spiked the ball to stop the clock.,10,7,2012 -20120930_SEA@STL,2,30,18,STL,SEA,2,10,35,(:18) (Shotgun) D.Richardson up the middle to SEA 30 for 5 yards (C.Clemons).,10,7,2012 -20120930_SEA@STL,2,30,3,STL,SEA,3,5,30,(:03) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,10,7,2012 -20120930_SEA@STL,3,30,0,SEA,STL,,,30,S.Hauschka kicks onside 13 yards from SEA 35 to SEA 48. J.Hull (didn't try to advance) to SEA 48 for no gain.,7,13,2012 -20120930_SEA@STL,3,29,58,STL,SEA,1,10,48,(14:58) D.Amendola left end to SEA 42 for 6 yards (C.Maragos).,13,7,2012 -20120930_SEA@STL,3,29,28,STL,SEA,2,4,42,(14:28) S.Jackson right tackle to SEA 42 for no gain (B.Mebane).,13,7,2012 -20120930_SEA@STL,3,29,1,STL,SEA,3,4,42,(14:01) (Shotgun) S.Bradford pass incomplete short right to B.Quick (R.Sherman).,13,7,2012 -20120930_SEA@STL,3,28,51,STL,SEA,4,4,42,(13:51) G.Zuerlein 60 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,13,7,2012 -20120930_SEA@STL,3,28,51,STL,SEA,,,42,G.Zuerlein kicks 70 yards from SL 35 to SEA -5. L.Washington pushed ob at SL 36 for 69 yards (T.Johnson).,16,7,2012 -20120930_SEA@STL,3,28,35,SEA,STL,1,10,36,(13:35) M.Lynch left tackle to SL 34 for 2 yards (C.Long).,7,16,2012 -20120930_SEA@STL,3,27,57,SEA,STL,2,8,34,(12:57) R.Wilson pass short right intended for S.Rice INTERCEPTED by R.McIntosh at SL 19. R.McIntosh to SEA 47 for 34 yards (A.McCoy). J. Jenkins hit quaterback's arm,7,16,2012 -20120930_SEA@STL,3,27,43,STL,SEA,1,10,47,(12:43) (Shotgun) S.Bradford pass incomplete short right to B.Gibson.,16,7,2012 -20120930_SEA@STL,3,27,38,STL,SEA,2,10,47,(12:38) S.Jackson right end to SL 48 for -5 yards (B.Wagner).,16,7,2012 -20120930_SEA@STL,3,26,58,STL,SEA,3,15,52,(11:58) (Shotgun) PENALTY on SEA-J.Jones Neutral Zone Infraction 5 yards enforced at SL 48 - No Play.,16,7,2012 -20120930_SEA@STL,3,26,41,STL,SEA,3,10,47,(11:41) (Shotgun) S.Bradford pass incomplete deep left to C.Givens.,16,7,2012 -20120930_SEA@STL,3,26,33,STL,SEA,4,10,47,(11:33) J.Hekker punts 34 yards to SEA 13 Center-J.McQuaide fair catch by L.Washington.,16,7,2012 -20120930_SEA@STL,3,26,25,SEA,STL,1,10,87,(11:25) R.Wilson pass short right to M.Lynch to SEA 18 for 5 yards (J.Laurinaitis).,7,16,2012 -20120930_SEA@STL,3,25,45,SEA,STL,2,5,82,(10:45) R.Wilson pass short middle to M.Lynch to SEA 34 for 16 yards (J.Dunbar).,7,16,2012 -20120930_SEA@STL,3,25,1,SEA,STL,1,10,66,(10:01) R.Turbin left tackle to SEA 43 for 9 yards (C.Dahl; M.Haggan).,7,16,2012 -20120930_SEA@STL,3,24,25,SEA,STL,2,1,57,(9:25) R.Turbin up the middle to SEA 45 for 2 yards (J.Laurinaitis).,7,16,2012 -20120930_SEA@STL,3,23,47,SEA,STL,1,10,55,(8:47) (Shotgun) R.Turbin right tackle to SL 44 for 11 yards (C.Finnegan).,7,16,2012 -20120930_SEA@STL,3,23,5,SEA,STL,1,10,44,(8:05) R.Wilson pass short left to A.McCoy ran ob at SL 29 for 15 yards (J.Jenkins).,7,16,2012 -20120930_SEA@STL,3,22,46,SEA,STL,1,10,29,(7:46) M.Lynch left tackle to SL 20 for 9 yards (Q.Mikell).,7,16,2012 -20120930_SEA@STL,3,22,8,SEA,STL,2,1,20,(7:08) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at SL 20 - No Play.,7,16,2012 -20120930_SEA@STL,3,21,56,SEA,STL,2,6,25,(6:56) R.Wilson pass short right to S.Rice to SL 20 for 5 yards (C.Finnegan).,7,16,2012 -20120930_SEA@STL,3,21,22,SEA,STL,3,1,20,(6:22) R.Wilson up the middle to SL 18 for 2 yards (J.Dunbar).,7,16,2012 -20120930_SEA@STL,3,20,46,SEA,STL,1,10,18,(5:46) M.Lynch right end to SL 16 for 2 yards (C.Finnegan).,7,16,2012 -20120930_SEA@STL,3,20,0,SEA,STL,2,8,16,(5:00) (Shotgun) R.Wilson scrambles left end to SL 12 for 4 yards (M.Haggan).,7,16,2012 -20120930_SEA@STL,3,19,23,SEA,STL,3,4,12,(4:23) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,7,16,2012 -20120930_SEA@STL,3,19,14,SEA,STL,4,4,12,(4:14) S.Hauschka 31 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,7,16,2012 -20120930_SEA@STL,3,19,14,SEA,STL,,,12,S.Hauschka kicks 70 yards from SEA 35 to SL -5. D.Amendola to SL 7 for 12 yards. Lateral to C.Givens to SL 5 for -2 yards (H.Farwell).,10,16,2012 -20120930_SEA@STL,3,19,4,STL,SEA,1,10,95,(4:04) D.Richardson right tackle to SL 7 for 2 yards (L.Hill).,16,10,2012 -20120930_SEA@STL,3,18,27,STL,SEA,2,8,93,(3:27) D.Richardson up the middle to SL 5 for -2 yards (B.Wagner).,16,10,2012 -20120930_SEA@STL,3,17,35,STL,SEA,3,10,95,(2:35) (Shotgun) PENALTY on SL-S.Bradford Delay of Game 2 yards enforced at SL 5 - No Play.,16,10,2012 -20120930_SEA@STL,3,17,19,STL,SEA,3,12,97,(2:19) D.Richardson left tackle to SL 11 for 8 yards (K.Chancellor). Penalty on SL-R.Turner Offensive Holding declined.,16,10,2012 -20120930_SEA@STL,3,16,59,STL,SEA,4,4,89,(1:59) J.Hekker punts 48 yards to SEA 41 Center-J.McQuaide. L.Washington to SEA 45 for 4 yards (R.McIntosh).,16,10,2012 -20120930_SEA@STL,3,16,48,SEA,STL,1,10,55,(1:48) M.Lynch left end pushed ob at SL 48 for 7 yards (C.Dahl).,10,16,2012 -20120930_SEA@STL,3,16,19,SEA,STL,2,3,48,(1:19) R.Wilson pass short right to M.Lynch to SL 40 for 8 yards (Q.Mikell).,10,16,2012 -20120930_SEA@STL,3,15,41,SEA,STL,1,10,40,(:41) R.Turbin right guard to SL 31 for 9 yards (J.Laurinaitis).,10,16,2012 -20120930_SEA@STL,3,15,6,SEA,STL,2,1,31,(:06) R.Turbin left tackle to SL 18 for 13 yards (C.Dahl).,10,16,2012 -20120930_SEA@STL,4,15,0,SEA,STL,1,10,18,(15:00) M.Lynch left tackle to SL 13 for 5 yards (J.Jenkins; C.Dahl).,10,16,2012 -20120930_SEA@STL,4,14,24,SEA,STL,2,5,13,(14:24) M.Lynch left tackle to SL 10 for 3 yards (R.Quinn).,10,16,2012 -20120930_SEA@STL,4,13,46,SEA,STL,3,2,10,(13:46) (Shotgun) R.Wilson right tackle to SL 12 for -2 yards (W.Hayes).,10,16,2012 -20120930_SEA@STL,4,13,8,SEA,STL,4,4,12,(13:08) S.Hauschka 30 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,16,2012 -20120930_SEA@STL,4,13,8,SEA,STL,,,12,S.Hauschka kicks 74 yards from SEA 35 to SL -9. C.Givens Touchback.,13,16,2012 -20120930_SEA@STL,4,13,3,STL,SEA,1,10,80,(13:03) S.Bradford pass short right to D.Amendola to SL 35 for 15 yards (M.Trufant).,16,13,2012 -20120930_SEA@STL,4,12,29,STL,SEA,1,10,65,(12:29) S.Bradford pass incomplete short right to C.Givens.,16,13,2012 -20120930_SEA@STL,4,12,22,STL,SEA,2,10,65,(12:22) (Shotgun) S.Bradford pass incomplete short right to D.Amendola.,16,13,2012 -20120930_SEA@STL,4,12,19,STL,SEA,3,10,65,(12:19) (Shotgun) S.Bradford pass short right to D.Amendola to 50 for 15 yards (E.Thomas).,16,13,2012 -20120930_SEA@STL,4,11,42,STL,SEA,1,10,50,(11:42) S.Jackson up the middle to SEA 45 for 5 yards (R.Bryant).,16,13,2012 -20120930_SEA@STL,4,10,56,STL,SEA,2,5,45,(10:56) S.Bradford pass short right to A.Pettis to SEA 40 for 5 yards (K.Chancellor).,16,13,2012 -20120930_SEA@STL,4,10,18,STL,SEA,1,10,40,(10:18) S.Jackson right guard to SEA 45 for -5 yards (B.Mebane).,16,13,2012 -20120930_SEA@STL,4,9,32,STL,SEA,2,15,45,(9:32) (Shotgun) S.Bradford pass short right to D.Richardson to SEA 43 for 2 yards (M.Morgan). Penalty on SL Illegal Shift declined.,16,13,2012 -20120930_SEA@STL,4,9,9,STL,SEA,3,13,43,(9:09) (Shotgun) S.Bradford pass deep right to L.Kendricks to SEA 17 for 26 yards (E.Thomas). Penalty on SEA-C.McDonald Illegal Use of Hands declined.,16,13,2012 -20120930_SEA@STL,4,8,37,STL,SEA,1,10,17,(8:37) S.Jackson up the middle to SEA 19 for -2 yards (B.Mebane).,16,13,2012 -20120930_SEA@STL,4,7,56,STL,SEA,2,12,19,(7:56) (Shotgun) S.Bradford pass short left to S.Jackson to SEA 7 for 12 yards (M.Morgan).,16,13,2012 -20120930_SEA@STL,4,7,10,STL,SEA,1,7,7,(7:10) S.Jackson right tackle to SEA 6 for 1 yard (C.McDonald).,16,13,2012 -20120930_SEA@STL,4,6,24,STL,SEA,2,6,6,(6:24) (Shotgun) S.Bradford pass incomplete short right to D.Amendola [E.Thomas].,16,13,2012 -20120930_SEA@STL,4,6,16,STL,SEA,3,6,6,(6:16) (Shotgun) S.Bradford pass incomplete short left to S.Jackson.,16,13,2012 -20120930_SEA@STL,4,6,10,STL,SEA,4,6,6,(6:10) G.Zuerlein 24 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,16,13,2012 -20120930_SEA@STL,4,6,10,STL,SEA,,,6,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,19,13,2012 -20120930_SEA@STL,4,6,7,SEA,STL,1,10,80,(6:07) M.Lynch left tackle to SEA 29 for 9 yards (K.Langford).,13,19,2012 -20120930_SEA@STL,4,5,32,SEA,STL,2,1,71,(5:32) M.Lynch left tackle to SEA 35 for 6 yards (J.Laurinaitis). PENALTY on SEA-B.Giacomini Personal Foul 15 yards enforced between downs.,13,19,2012 -20120930_SEA@STL,4,5,11,SEA,STL,1,10,80,(5:11) R.Turbin left guard to SEA 21 for 1 yard (W.Hayes).,13,19,2012 -20120930_SEA@STL,4,4,27,SEA,STL,2,9,79,(4:27) R.Wilson pass incomplete deep left to G.Tate (J.Jenkins).,13,19,2012 -20120930_SEA@STL,4,4,20,SEA,STL,3,9,79,(4:20) (Shotgun) R.Wilson sacked at SEA 13 for -8 yards (R.Quinn).,13,19,2012 -20120930_SEA@STL,4,3,49,SEA,STL,4,17,87,(3:49) J.Ryan punts 41 yards to SL 46 Center-C.Gresham out of bounds.,13,19,2012 -20120930_SEA@STL,4,3,35,STL,SEA,1,10,54,(3:35) S.Jackson right tackle to SL 45 for -1 yards (B.Wagner).,19,13,2012 -20120930_SEA@STL,4,3,29,STL,SEA,2,11,55,(3:29) S.Jackson up the middle to SEA 45 for 10 yards (J.Lane).,19,13,2012 -20120930_SEA@STL,4,3,22,STL,SEA,3,1,45,(3:22) S.Jackson right tackle to SEA 47 for -2 yards (E.Thomas).,19,13,2012 -20120930_SEA@STL,4,3,17,STL,SEA,4,3,47,(3:17) J.Hekker punts 27 yards to SEA 20 Center-J.McQuaide fair catch by L.Washington.,19,13,2012 -20120930_SEA@STL,4,3,9,SEA,STL,1,10,80,(3:09) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin.,13,19,2012 -20120930_SEA@STL,4,3,4,SEA,STL,2,10,80,(3:04) (Shotgun) R.Wilson pass short right to D.Baldwin pushed ob at SEA 30 for 10 yards (C.Finnegan).,13,19,2012 -20120930_SEA@STL,4,2,59,SEA,STL,1,10,70,(2:59) (Shotgun) R.Wilson right end to SEA 36 for 6 yards (C.Finnegan).,13,19,2012 -20120930_SEA@STL,4,2,48,SEA,STL,2,4,64,(2:48) R.Wilson pass short right to S.Rice to SEA 39 for 3 yards (J.Dunbar).,13,19,2012 -20120930_SEA@STL,4,2,27,SEA,STL,3,1,61,(2:27) M.Lynch left guard to SEA 47 for 8 yards (Q.Mikell).,13,19,2012 -20120930_SEA@STL,4,2,6,SEA,STL,1,10,53,(2:06) R.Wilson pass short middle to M.Lynch to SL 45 for 8 yards (J.Dunbar).,13,19,2012 -20120930_SEA@STL,4,2,0,SEA,STL,2,2,45,(2:00) M.Lynch left end to SL 40 for 5 yards (Q.Mikell).,13,19,2012 -20120930_SEA@STL,4,1,36,SEA,STL,1,10,40,(1:36) (Shotgun) R.Wilson pass short left to A.McCoy to SL 35 for 5 yards (J.Laurinaitis) [J.Dunbar].,13,19,2012 -20120930_SEA@STL,4,1,8,SEA,STL,2,5,35,(1:08) (Shotgun) R.Wilson pass short right intended for A.McCoy INTERCEPTED by B.Fletcher at SL 23. B.Fletcher to SL 25 for 2 yards.,13,19,2012 -20120930_SEA@STL,4,1,0,STL,SEA,1,10,75,(1:00) S.Bradford kneels to SL 24 for -1 yards.,19,13,2012 -20120930_SEA@STL,4,0,27,STL,SEA,2,11,76,(:27) S.Bradford kneels to SL 23 for -1 yards.,19,13,2012 -20120930_SEA@STL,4,0,27,STL,SEA,,,76,                      ,19,13,2012 -20120930_MIA@ARI,1,0,0,MIA,ARI,,,76,D.Carpenter kicks 71 yards from MIA 35 to ARZ -6. W.Powell to ARZ 18 for 24 yards (O.Vernon). FUMBLES (O.Vernon) recovered by ARZ-A.Sherman at ARZ 20. A.Sherman to ARZ 31 for 11 yards (R.Marshall).,0,0,2012 -20120930_MIA@ARI,1,60,0,ARI,MIA,1,10,69,(15:00) K.Kolb pass short left to J.King to ARZ 33 for 2 yards (R.Marshall).,0,0,2012 -20120930_MIA@ARI,1,59,51,ARI,MIA,2,8,67,(14:51) R.Williams up the middle to ARZ 38 for 5 yards (R.Starks; K.Dansby).,0,0,2012 -20120930_MIA@ARI,1,59,11,ARI,MIA,3,3,62,(14:11) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 41 for 3 yards (S.Smith).,0,0,2012 -20120930_MIA@ARI,1,57,55,ARI,MIA,1,10,59,(12:55) K.Kolb pass short middle to J.King to MIA 39 for 20 yards (R.Jones).,0,0,2012 -20120930_MIA@ARI,1,57,17,ARI,MIA,1,10,39,(12:17) R.Williams left end to MIA 35 for 4 yards (R.Marshall R.Jones).,0,0,2012 -20120930_MIA@ARI,1,56,37,ARI,MIA,2,6,35,(11:37) (Shotgun) W.Powell left tackle to MIA 35 for no gain (J.Odrick).,0,0,2012 -20120930_MIA@ARI,1,55,54,ARI,MIA,3,6,35,(10:54) (Shotgun) K.Kolb sacked at MIA 42 for -7 yards (C.Wake).,0,0,2012 -20120930_MIA@ARI,1,55,26,ARI,MIA,4,13,42,(10:26) D.Zastudil punts 31 yards to MIA 11 Center-M.Leach fair catch by M.Thigpen.,0,0,2012 -20120930_MIA@ARI,1,55,19,MIA,ARI,1,10,89,(10:19) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 -20120930_MIA@ARI,1,55,16,MIA,ARI,2,10,89,(10:16) PENALTY on MIA-J.Martin False Start 5 yards enforced at MIA 11 - No Play.,0,0,2012 -20120930_MIA@ARI,1,55,16,MIA,ARI,2,15,94,(10:16) R.Bush left tackle to MIA 11 for 5 yards (P.Lenon).,0,0,2012 -20120930_MIA@ARI,1,54,34,MIA,ARI,3,10,89,(9:34) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 27 for 16 yards (A.Wilson).,0,0,2012 -20120930_MIA@ARI,1,54,10,MIA,ARI,1,10,73,(9:10) R.Tannehill pass short right to A.Fasano to MIA 29 for 2 yards (K.Rhodes).,0,0,2012 -20120930_MIA@ARI,1,53,37,MIA,ARI,2,8,71,(8:37) R.Bush left end to MIA 32 for 3 yards (W.Gay). FUMBLES (W.Gay) and recovers at MIA 35. R.Bush to MIA 35 for no gain (S.Acho). PENALTY on MIA-D.Bess Illegal Shift 5 yards enforced at MIA 29 - No Play.,0,0,2012 -20120930_MIA@ARI,1,53,37,MIA,ARI,2,13,76,(8:37) R.Tannehill pass short middle to B.Hartline to MIA 31 for 7 yards (A.Wilson).,0,0,2012 -20120930_MIA@ARI,1,52,43,MIA,ARI,3,6,69,(7:43) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 39 for 8 yards (A.Wilson).,0,0,2012 -20120930_MIA@ARI,1,52,10,MIA,ARI,1,10,61,(7:10) L.Miller left tackle to MIA 41 for 2 yards (P.Lenon).,0,0,2012 -20120930_MIA@ARI,1,51,35,MIA,ARI,2,8,59,(6:35) R.Tannehill sacked at MIA 35 for -6 yards (S.Acho).,0,0,2012 -20120930_MIA@ARI,1,50,59,MIA,ARI,3,14,65,(5:59) (Shotgun) R.Tannehill pass short middle to D.Thomas to MIA 41 for 6 yards (P.Lenon) [A.Wilson].,0,0,2012 -20120930_MIA@ARI,1,50,13,MIA,ARI,4,8,59,(5:13) B.Fields punts 39 yards to ARZ 20 Center-J.Denney. P.Peterson to ARZ 22 for 2 yards (J.Wilson).,0,0,2012 -20120930_MIA@ARI,1,50,3,ARI,MIA,1,10,78,(5:03) (Shotgun) K.Kolb pass incomplete deep left to M.Floyd.,0,0,2012 -20120930_MIA@ARI,1,49,56,ARI,MIA,2,10,78,(4:56) R.Williams left tackle to ARZ 27 for 5 yards (K.Misi).,0,0,2012 -20120930_MIA@ARI,1,49,16,ARI,MIA,3,5,73,(4:16) (Shotgun) K.Kolb pass incomplete short right to L.Fitzgerald (C.Clemons).,0,0,2012 -20120930_MIA@ARI,1,49,12,ARI,MIA,4,5,73,(4:12) D.Zastudil punts 51 yards to MIA 22 Center-M.Leach out of bounds.,0,0,2012 -20120930_MIA@ARI,1,49,4,MIA,ARI,1,10,78,(4:04) R.Bush left tackle to MIA 21 for -1 yards (A.Wilson).,0,0,2012 -20120930_MIA@ARI,1,49,4,MIA,ARI,2,11,79,(4:04) R.Tannehill pass short left to D.Bess to MIA 42 for 21 yards (A.Wilson W.Gay).,0,0,2012 -20120930_MIA@ARI,1,47,49,MIA,ARI,1,10,58,(2:49) R.Bush up the middle to MIA 46 for 4 yards (W.Gay).,0,0,2012 -20120930_MIA@ARI,1,47,2,MIA,ARI,2,6,54,(2:02) (Shotgun) R.Tannehill pass incomplete deep middle to C.Clay (A.Wilson).,0,0,2012 -20120930_MIA@ARI,1,46,56,MIA,ARI,3,6,54,(1:56) (Shotgun) R.Tannehill pass short left to D.Bess to ARZ 40 for 14 yards (J.Fleming).,0,0,2012 -20120930_MIA@ARI,1,46,8,MIA,ARI,1,10,40,(1:08) R.Bush up the middle to ARZ 39 for 1 yard (C.Campbell).,0,0,2012 -20120930_MIA@ARI,1,45,35,MIA,ARI,2,9,39,(:35) R.Tannehill pass short right to B.Hartline to ARZ 27 for 12 yards (P.Peterson).,0,0,2012 -20120930_MIA@ARI,2,45,0,MIA,ARI,1,10,27,(15:00) R.Tannehill pass incomplete short right to B.Hartline (A.Wilson).,0,0,2012 -20120930_MIA@ARI,2,44,44,MIA,ARI,2,10,27,(14:44) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 -20120930_MIA@ARI,2,44,42,MIA,ARI,3,10,27,(14:42) (Shotgun) R.Tannehill pass short left to B.Hartline to ARZ 14 for 13 yards (J.Fleming).,0,0,2012 -20120930_MIA@ARI,2,44,9,MIA,ARI,1,10,14,(14:09) D.Thomas left tackle to ARZ 14 for no gain (K.Rhodes).,0,0,2012 -20120930_MIA@ARI,2,43,29,MIA,ARI,2,10,14,(13:29) (Shotgun) R.Tannehill pass incomplete short left to R.Bush.,0,0,2012 -20120930_MIA@ARI,2,43,25,MIA,ARI,3,10,14,(13:25) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (P.Peterson).,0,0,2012 -20120930_MIA@ARI,2,43,25,MIA,ARI,4,10,14,(13:25) D.Carpenter 32 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20120930_MIA@ARI,2,43,25,MIA,ARI,,,14,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,3,0,2012 -20120930_MIA@ARI,2,43,15,ARI,MIA,1,10,80,(13:15) K.Kolb pass short right to W.Powell to ARZ 22 for 2 yards (K.Burnett).,0,3,2012 -20120930_MIA@ARI,2,42,32,ARI,MIA,2,8,78,(12:32) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to ARZ 31 for 9 yards (S.Smith K.Dansby).,0,3,2012 -20120930_MIA@ARI,2,41,53,ARI,MIA,1,10,69,(11:53) R.Williams right tackle to ARZ 35 for 4 yards (K.Dansby).,0,3,2012 -20120930_MIA@ARI,2,41,17,ARI,MIA,2,6,65,(11:17) K.Kolb pass short right to R.Williams to ARZ 35 for no gain (K.Burnett).,0,3,2012 -20120930_MIA@ARI,2,40,30,ARI,MIA,3,6,65,(10:30) (Shotgun) K.Kolb sacked at ARZ 28 for -7 yards (C.Wake).,0,3,2012 -20120930_MIA@ARI,2,40,11,ARI,MIA,4,13,72,(10:11) D.Zastudil punts 51 yards to MIA 21 Center-M.Leach. M.Thigpen to MIA 39 for 18 yards (J.Sanders). PENALTY on MIA-R.Jones Offensive Holding 10 yards enforced at MIA 21.,0,3,2012 -20120930_MIA@ARI,2,39,56,MIA,ARI,1,10,89,(9:56) R.Tannehill pass short left to D.Bess to MIA 28 for 17 yards (P.Lenon).,3,0,2012 -20120930_MIA@ARI,2,39,27,MIA,ARI,1,10,72,(9:27) L.Miller left tackle to MIA 35 for 7 yards (P.Lenon A.Wilson).,3,0,2012 -20120930_MIA@ARI,2,38,51,MIA,ARI,2,3,65,(8:51) R.Tannehill pass short right to B.Hartline to MIA 37 for 2 yards (P.Peterson A.Wilson).,3,0,2012 -20120930_MIA@ARI,2,38,22,MIA,ARI,3,1,63,(8:22) D.Thomas left tackle to MIA 37 for no gain (P.Lenon).,3,0,2012 -20120930_MIA@ARI,2,37,54,MIA,ARI,4,1,63,(7:54) B.Fields punts 42 yards to ARZ 21 Center-J.Denney. P.Peterson MUFFS catch touched at ARZ 21 and recovers at ARZ 25. PENALTY on ARZ-M.Adams Illegal Block Above the Waist 10 yards enforced at ARZ 21.,3,0,2012 -20120930_MIA@ARI,2,37,45,ARI,MIA,1,10,89,(7:45) K.Kolb pass incomplete deep right to L.Fitzgerald. PENALTY on MIA-S.Smith Defensive Pass Interference 20 yards enforced at ARZ 11 - No Play.,0,3,2012 -20120930_MIA@ARI,2,37,39,ARI,MIA,1,10,69,(7:39) K.Kolb pass short left to E.Doucet to ARZ 34 for 3 yards (J.Wilson).,0,3,2012 -20120930_MIA@ARI,2,37,6,ARI,MIA,2,7,66,(7:06) W.Powell up the middle to ARZ 36 for 2 yards (K.Burnett).,0,3,2012 -20120930_MIA@ARI,2,36,27,ARI,MIA,3,5,64,(6:27) (Shotgun) K.Kolb sacked at ARZ 27 for -9 yards (C.Wake).,0,3,2012 -20120930_MIA@ARI,2,35,59,ARI,MIA,4,14,73,(5:59) D.Zastudil punts 68 yards to MIA 5 Center-M.Leach downed by ARZ-M.Adams.,0,3,2012 -20120930_MIA@ARI,2,35,45,MIA,ARI,1,10,95,(5:45) R.Bush left tackle to MIA 26 for 21 yards (P.Peterson).,3,0,2012 -20120930_MIA@ARI,2,35,9,MIA,ARI,1,10,74,(5:09) R.Bush left tackle to MIA 35 for 9 yards (A.Wilson).,3,0,2012 -20120930_MIA@ARI,2,34,39,MIA,ARI,2,1,65,(4:39) J.Lane up the middle to MIA 36 for 1 yard (V.Holliday; C.Campbell).,3,0,2012 -20120930_MIA@ARI,2,34,1,MIA,ARI,1,10,64,(4:01) R.Tannehill pass deep right to B.Hartline to ARZ 7 for 57 yards (W.Gay). Penalty on ARZ-W.Gay Illegal Contact declined.,3,0,2012 -20120930_MIA@ARI,2,33,32,MIA,ARI,1,7,7,(3:32) D.Thomas left tackle to ARZ 6 for 1 yard (O.Schofield).,3,0,2012 -20120930_MIA@ARI,2,32,52,MIA,ARI,2,6,6,(2:52) R.Tannehill sacked at ARZ 20 for -14 yards (O.Schofield).,3,0,2012 -20120930_MIA@ARI,2,32,14,MIA,ARI,3,20,20,(2:14) (Shotgun) R.Tannehill pass short right to B.Hartline to ARZ 1 for 19 yards (P.Lenon; J.Fleming).,3,0,2012 -20120930_MIA@ARI,2,32,0,MIA,ARI,4,1,1,(2:00) J.Lane up the middle for 1 yard TOUCHDOWN.,3,0,2012 -20120930_MIA@ARI,2,32,0,MIA,ARI,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,0,2012 -20120930_MIA@ARI,2,32,0,MIA,ARI,,,1,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,10,0,2012 -20120930_MIA@ARI,2,31,56,ARI,MIA,1,10,80,(1:56) (Shotgun) K.Kolb pass short left to M.Floyd to ARZ 30 for 10 yards (N.Carroll).,0,10,2012 -20120930_MIA@ARI,2,31,34,ARI,MIA,1,10,70,(1:34) (Shotgun) K.Kolb pass short right to M.Floyd to ARZ 40 for 10 yards (N.Carroll).,0,10,2012 -20120930_MIA@ARI,2,31,9,ARI,MIA,1,10,60,(1:09) (Shotgun) K.Kolb pass short right to M.Floyd to ARZ 45 for 5 yards (N.Carroll).,0,10,2012 -20120930_MIA@ARI,2,30,48,ARI,MIA,2,5,55,(:48) (Shotgun) K.Kolb pass short right to A.Roberts to MIA 48 for 7 yards (K.Burnett).,0,10,2012 -20120930_MIA@ARI,2,30,40,ARI,MIA,1,10,48,(:40) (Shotgun) K.Kolb pass short right intended for L.Fitzgerald INTERCEPTED by S.Smith at MIA 35. S.Smith to ARZ 34 for 31 yards (D.Colledge).,0,10,2012 -20120930_MIA@ARI,2,30,27,MIA,ARI,1,10,34,(:27) (Shotgun) R.Tannehill pass short left to A.Fasano to ARZ 27 for 7 yards (D.Washington) [S.Acho].,10,0,2012 -20120930_MIA@ARI,2,30,14,MIA,ARI,2,3,27,(:14) (Shotgun) R.Tannehill pass short left to D.Bess to ARZ 9 for 18 yards (K.Rhodes) [O.Schofield].,10,0,2012 -20120930_MIA@ARI,2,30,6,MIA,ARI,1,9,9,(:06) D.Carpenter 27 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,10,0,2012 -20120930_MIA@ARI,2,30,6,MIA,ARI,,,9,D.Carpenter kicks 65 yards from MIA 35 to ARZ 0. W.Powell to ARZ 25 for 25 yards (N.Carroll).,13,0,2012 -20120930_MIA@ARI,3,30,0,MIA,ARI,1,10,65,(15:00) R.Tannehill pass short right to B.Hartline pushed ob at MIA 41 for 6 yards (G.Toler).,13,0,2012 -20120930_MIA@ARI,3,29,35,MIA,ARI,2,4,59,(14:35) R.Bush right tackle to MIA 42 for 1 yard (V.Holliday; P.Lenon).,13,0,2012 -20120930_MIA@ARI,3,29,2,MIA,ARI,3,3,58,(14:02) (Shotgun) R.Tannehill pass deep right to B.Hartline to ARZ 28 for 30 yards (P.Peterson).,13,0,2012 -20120930_MIA@ARI,3,28,30,MIA,ARI,1,10,28,(13:30) R.Bush left tackle to ARZ 33 for -5 yards (C.Campbell).,13,0,2012 -20120930_MIA@ARI,3,27,58,MIA,ARI,2,15,33,(12:58) (Shotgun) R.Tannehill pass incomplete deep left to D.Bess.,13,0,2012 -20120930_MIA@ARI,3,27,52,MIA,ARI,3,15,33,(12:52) (Shotgun) R.Tannehill pass incomplete short left to D.Bess (G.Toler).,13,0,2012 -20120930_MIA@ARI,3,27,48,MIA,ARI,4,15,33,(12:48) D.Carpenter 51 yard field goal is No Good Wide Right Center-J.Denney Holder-B.Fields.,13,0,2012 -20120930_MIA@ARI,3,27,43,ARI,MIA,1,10,59,(12:43) (Shotgun) K.Kolb pass short left to L.Fitzgerald to MIA 47 for 12 yards (S.Smith).,0,13,2012 -20120930_MIA@ARI,3,27,5,ARI,MIA,1,10,47,(12:05) (Shotgun) K.Kolb pass incomplete deep middle to E.Doucet.,0,13,2012 -20120930_MIA@ARI,3,27,1,ARI,MIA,2,10,47,(12:01) (Shotgun) K.Kolb pass short left to R.Housler to MIA 32 for 15 yards (K.Burnett).,0,13,2012 -20120930_MIA@ARI,3,26,18,ARI,MIA,1,10,32,(11:18) (No Huddle Shotgun) K.Kolb pass incomplete short right to A.Roberts.,0,13,2012 -20120930_MIA@ARI,3,26,14,ARI,MIA,2,10,32,(11:14) K.Kolb pass deep left to A.Roberts to MIA 7 for 25 yards (N.Carroll).,0,13,2012 -20120930_MIA@ARI,3,25,31,ARI,MIA,1,7,7,(10:31) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (R.Marshall).,0,13,2012 -20120930_MIA@ARI,3,25,26,ARI,MIA,2,7,7,(10:26) (Shotgun) K.Kolb pass short right to L.Fitzgerald to MIA 3 for 4 yards (S.Smith).,0,13,2012 -20120930_MIA@ARI,3,24,50,ARI,MIA,3,3,3,(9:50) (Shotgun) K.Kolb pass short left to L.Fitzgerald for 3 yards TOUCHDOWN.,0,13,2012 -20120930_MIA@ARI,3,24,50,ARI,MIA,,,3,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,13,2012 -20120930_MIA@ARI,3,24,50,ARI,MIA,,,3,J.Feely kicks 72 yards from ARZ 35 to MIA -7. M.Thigpen to MIA 16 for 23 yards (A.Smith).,7,13,2012 -20120930_MIA@ARI,3,24,41,MIA,ARI,1,10,84,(9:41) R.Tannehill pass deep left to D.Bess to MIA 33 for 17 yards (P.Peterson).,13,7,2012 -20120930_MIA@ARI,3,24,6,MIA,ARI,1,10,67,(9:06) R.Bush right tackle to MIA 29 for -4 yards (G.Toler).,13,7,2012 -20120930_MIA@ARI,3,23,25,MIA,ARI,2,14,71,(8:25) R.Tannehill pass short left intended for D.Bess INTERCEPTED by A.Wilson at MIA 36. A.Wilson to MIA 36 for no gain (D.Bess). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. R.Tannehill pass incomplete short left to D.Bess (A.Wilson).,13,7,2012 -20120930_MIA@ARI,3,23,20,MIA,ARI,3,14,71,(8:20) R.Tannehill pass incomplete deep right to B.Hartline. PENALTY on ARZ-G.Toler Defensive Pass Interference 17 yards enforced at MIA 29 - No Play.,13,7,2012 -20120930_MIA@ARI,3,23,10,MIA,ARI,1,10,54,(8:10) R.Bush up the middle to 50 for 4 yards (D.Williams D.Washington).,13,7,2012 -20120930_MIA@ARI,3,22,33,MIA,ARI,2,6,50,(7:33) L.Miller up the middle to ARZ 48 for 2 yards (N.Eason S.Acho).,13,7,2012 -20120930_MIA@ARI,3,21,50,MIA,ARI,3,4,48,(6:50) (Shotgun) R.Tannehill pass incomplete deep right to L.Naanee (K.Rhodes) [V.Holliday]. Penalty on MIA-R.Bush Offensive Pass Interference declined.,13,7,2012 -20120930_MIA@ARI,3,21,41,MIA,ARI,4,4,48,(6:41) B.Fields punts 45 yards to ARZ 3 Center-J.Denney fair catch by P.Peterson.,13,7,2012 -20120930_MIA@ARI,3,21,33,ARI,MIA,1,10,97,(6:33) R.Williams up the middle to ARZ 1 for -2 yards (K.Dansby).,7,13,2012 -20120930_MIA@ARI,3,20,51,ARI,MIA,2,12,99,(5:51) K.Kolb pass incomplete short right to L.Fitzgerald (S.Smith).,7,13,2012 -20120930_MIA@ARI,3,20,48,ARI,MIA,3,12,99,(5:48) (Shotgun) K.Kolb pass short right to E.Doucet to ARZ 10 for 9 yards (R.Jones).,7,13,2012 -20120930_MIA@ARI,3,20,12,ARI,MIA,4,3,90,(5:12) D.Zastudil punts 56 yards to MIA 34 Center-M.Leach downed by ARZ-J.Bethel.,7,13,2012 -20120930_MIA@ARI,3,19,59,MIA,ARI,1,10,66,(4:59) R.Tannehill pass short left to B.Hartline pushed ob at MIA 45 for 11 yards (G.Toler).,13,7,2012 -20120930_MIA@ARI,3,19,32,MIA,ARI,1,10,55,(4:32) D.Thomas up the middle to MIA 48 for 3 yards (D.Williams).,13,7,2012 -20120930_MIA@ARI,3,18,52,MIA,ARI,2,7,52,(3:52) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (C.Campbell).,13,7,2012 -20120930_MIA@ARI,3,18,48,MIA,ARI,3,7,52,(3:48) (No Huddle Shotgun) R.Tannehill pass short right intended for B.Hartline INTERCEPTED by G.Toler at ARZ 39. G.Toler to ARZ 39 for no gain (B.Hartline).,13,7,2012 -20120930_MIA@ARI,3,18,42,ARI,MIA,1,10,61,(3:42) (Shotgun) R.Williams right tackle to ARZ 40 for 1 yard (K.Dansby).,7,13,2012 -20120930_MIA@ARI,3,18,4,ARI,MIA,2,9,60,(3:04) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (S.Smith).,7,13,2012 -20120930_MIA@ARI,3,17,59,ARI,MIA,3,9,60,(2:59) (Shotgun) K.Kolb pass short right to L.Fitzgerald to MIA 49 for 11 yards (R.Marshall).,7,13,2012 -20120930_MIA@ARI,3,17,23,ARI,MIA,1,10,49,(2:23) K.Kolb pass short right to L.Fitzgerald to MIA 36 for 13 yards (S.Smith).,7,13,2012 -20120930_MIA@ARI,3,16,53,ARI,MIA,1,10,36,(1:53) (No Huddle Shotgun) K.Kolb pass incomplete short right to M.Floyd.,7,13,2012 -20120930_MIA@ARI,3,16,53,ARI,MIA,2,10,36,(1:53) (Shotgun) PENALTY on ARZ-D.Batiste False Start 5 yards enforced at MIA 36 - No Play.,7,13,2012 -20120930_MIA@ARI,3,16,50,ARI,MIA,2,15,41,(1:50) K.Kolb pass incomplete short right to L.Fitzgerald.,7,13,2012 -20120930_MIA@ARI,3,16,44,ARI,MIA,3,15,41,(1:44) (Shotgun) K.Kolb pass incomplete short left to E.Doucet.,7,13,2012 -20120930_MIA@ARI,3,16,41,ARI,MIA,4,15,41,(1:41) D.Zastudil punts 24 yards to MIA 17 Center-M.Leach fair catch by D.Bess.,7,13,2012 -20120930_MIA@ARI,3,16,33,MIA,ARI,1,10,83,(1:33) R.Bush up the middle to MIA 29 for 12 yards (O.Schofield).,13,7,2012 -20120930_MIA@ARI,3,16,1,MIA,ARI,1,10,71,(1:01) R.Tannehill pass short right to B.Hartline to MIA 37 for 8 yards (G.Toler).,13,7,2012 -20120930_MIA@ARI,3,15,22,MIA,ARI,2,2,63,(:22) R.Bush left tackle to MIA 28 for -9 yards (S.Acho).,13,7,2012 -20120930_MIA@ARI,4,15,0,MIA,ARI,3,11,72,(15:00) (Shotgun) R.Tannehill sacked at MIA 19 for -9 yards (A.Wilson).,13,7,2012 -20120930_MIA@ARI,4,14,22,MIA,ARI,4,20,81,(14:22) B.Fields punts 47 yards to ARZ 34 Center-J.Denney. P.Peterson MUFFS catch touched at ARZ 34 and recovers at ARZ 34. P.Peterson to ARZ 42 for 8 yards (K.Misi). FUMBLES (K.Misi) and recovers at ARZ 42. P.Peterson to ARZ 42 for no gain (J.Denney).,13,7,2012 -20120930_MIA@ARI,4,14,11,ARI,MIA,1,10,58,(14:11) (Shotgun) K.Kolb pass incomplete short right to R.Housler.,7,13,2012 -20120930_MIA@ARI,4,14,7,ARI,MIA,2,10,58,(14:07) (Shotgun) K.Kolb sacked at ARZ 33 for -9 yards (K.Dansby).,7,13,2012 -20120930_MIA@ARI,4,13,31,ARI,MIA,3,19,67,(13:31) (Shotgun) K.Kolb sacked at ARZ 27 for -6 yards (C.Wake).,7,13,2012 -20120930_MIA@ARI,4,13,5,ARI,MIA,4,25,73,(13:05) D.Zastudil punts 51 yards to MIA 22 Center-M.Leach fair catch by D.Bess.,7,13,2012 -20120930_MIA@ARI,4,12,56,MIA,ARI,1,10,78,(12:56) R.Bush right tackle to MIA 23 for 1 yard (C.Campbell).,13,7,2012 -20120930_MIA@ARI,4,12,15,MIA,ARI,2,9,77,(12:15) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 31 for 8 yards (G.Toler).,13,7,2012 -20120930_MIA@ARI,4,11,43,MIA,ARI,3,1,69,(11:43) J.Lane right tackle to MIA 31 for no gain (Q.Groves).,13,7,2012 -20120930_MIA@ARI,4,11,23,MIA,ARI,4,1,69,(11:23) B.Fields punts 48 yards to ARZ 21 Center-J.Denney. P.Peterson to ARZ 29 for 8 yards (J.Freeny). PENALTY on ARZ-A.Smith Illegal Block Above the Waist 10 yards enforced at ARZ 29.,13,7,2012 -20120930_MIA@ARI,4,11,12,ARI,MIA,1,10,81,(11:12) R.Williams right tackle to ARZ 21 for 2 yards (K.Randall).,7,13,2012 -20120930_MIA@ARI,4,10,35,ARI,MIA,2,8,79,(10:35) K.Kolb pass short left to R.Housler to MIA 46 for 33 yards (C.Clemons).,7,13,2012 -20120930_MIA@ARI,4,9,54,ARI,MIA,1,10,46,(9:54) K.Kolb pass deep right to A.Roberts for 46 yards TOUCHDOWN.,7,13,2012 -20120930_MIA@ARI,4,9,54,ARI,MIA,,,46,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,13,2012 -20120930_MIA@ARI,4,9,54,ARI,MIA,,,46,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,14,13,2012 -20120930_MIA@ARI,4,9,45,MIA,ARI,1,10,80,(9:45) R.Tannehill pass incomplete deep right to B.Hartline [D.Williams].,13,14,2012 -20120930_MIA@ARI,4,9,37,MIA,ARI,2,10,80,(9:37) L.Miller left tackle to MIA 22 for 2 yards (D.Washington).,13,14,2012 -20120930_MIA@ARI,4,8,52,MIA,ARI,3,8,78,(8:52) (Shotgun) R.Tannehill pass short left to D.Bess ran ob at MIA 42 for 20 yards (K.Rhodes).,13,14,2012 -20120930_MIA@ARI,4,8,25,MIA,ARI,1,10,58,(8:25) R.Tannehill pass deep left to L.Naanee to ARZ 39 for 19 yards (A.Wilson). FUMBLES (A.Wilson) RECOVERED by ARZ-P.Peterson at ARZ 37. P.Peterson to MIA 3 for 60 yards (L.Naanee). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,14,2012 -20120930_MIA@ARI,4,8,5,ARI,MIA,1,3,3,(8:05) R.Williams left tackle to MIA 2 for 1 yard (P.Soliai; K.Misi).,14,13,2012 -20120930_MIA@ARI,4,7,24,ARI,MIA,2,2,2,(7:24) K.Kolb pass short right intended for L.Fitzgerald INTERCEPTED by S.Smith at MIA 0. Touchback (L.Fitzgerald).,14,13,2012 -20120930_MIA@ARI,4,7,17,MIA,ARI,1,10,80,(7:17) R.Tannehill pass deep left to B.Hartline for 80 yards TOUCHDOWN.,13,14,2012 -20120930_MIA@ARI,4,7,17,MIA,ARI,,,80,TWO-POINT CONVERSION ATTEMPT. R.Tannehill pass to J.Lane is complete. ATTEMPT SUCCEEDS.,13,14,2012 -20120930_MIA@ARI,4,7,17,MIA,ARI,,,80,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,21,14,2012 -20120930_MIA@ARI,4,7,5,ARI,MIA,1,10,80,(7:05) (Shotgun) PENALTY on ARZ-B.Massie False Start 5 yards enforced at ARZ 20 - No Play.,14,21,2012 -20120930_MIA@ARI,4,7,5,ARI,MIA,1,15,85,(7:05) (Shotgun) K.Kolb sacked at ARZ 6 for -9 yards (J.Odrick).,14,21,2012 -20120930_MIA@ARI,4,6,30,ARI,MIA,2,24,94,(6:30) (Shotgun) K.Kolb pass short left to W.Powell to ARZ 10 for 4 yards (K.Burnett) [R.Starks].,14,21,2012 -20120930_MIA@ARI,4,5,56,ARI,MIA,3,20,90,(5:56) (Shotgun) K.Kolb pass short right to E.Doucet to ARZ 19 for 9 yards (C.Clemons).,14,21,2012 -20120930_MIA@ARI,4,5,23,ARI,MIA,4,11,81,(5:23) D.Zastudil punts 46 yards to MIA 35 Center-M.Leach fair catch by D.Bess.,14,21,2012 -20120930_MIA@ARI,4,5,14,MIA,ARI,1,10,65,(5:14) R.Bush up the middle to MIA 42 for 7 yards (G.Toler).,21,14,2012 -20120930_MIA@ARI,4,4,31,MIA,ARI,2,3,58,(4:31) R.Bush left tackle to ARZ 43 for 15 yards (D.Washington).,21,14,2012 -20120930_MIA@ARI,4,3,45,MIA,ARI,1,10,43,(3:45) R.Bush up the middle to ARZ 41 for 2 yards (K.Rhodes).,21,14,2012 -20120930_MIA@ARI,4,3,0,MIA,ARI,2,8,41,(3:00) R.Tannehill sacked at ARZ 48 for -7 yards (D.Washington). FUMBLES (D.Washington) RECOVERED by ARZ-V.Holliday at ARZ 49. V.Holliday to ARZ 49 for no gain (J.Jerry).,21,14,2012 -20120930_MIA@ARI,4,2,51,ARI,MIA,1,10,51,(2:51) (Shotgun) K.Kolb sacked at ARZ 44 for -5 yards (K.Misi).,14,21,2012 -20120930_MIA@ARI,4,2,18,ARI,MIA,2,15,56,(2:18) (Shotgun) K.Kolb sacked at ARZ 41 for -3 yards (sack split by K.Misi and C.Wake).,14,21,2012 -20120930_MIA@ARI,4,1,59,ARI,MIA,3,18,59,(1:59) (Shotgun) K.Kolb pass short right to A.Roberts to MIA 43 for 16 yards (R.Marshall K.Dansby).,14,21,2012 -20120930_MIA@ARI,4,1,50,ARI,MIA,4,2,43,(1:50) (Shotgun) K.Kolb pass short left to A.Roberts to MIA 34 for 9 yards (N.Carroll).,14,21,2012 -20120930_MIA@ARI,4,1,26,ARI,MIA,1,10,34,(1:26) (No Huddle Shotgun) K.Kolb pass short left to L.Fitzgerald to MIA 25 for 9 yards (S.Smith).,14,21,2012 -20120930_MIA@ARI,4,1,5,ARI,MIA,2,1,25,(1:05) (No Huddle Shotgun) K.Kolb pass short right to M.Floyd to MIA 15 for 10 yards (N.Carroll).,14,21,2012 -20120930_MIA@ARI,4,0,42,ARI,MIA,1,10,15,(:42) (No Huddle Shotgun) K.Kolb pass incomplete short right to M.Floyd.,14,21,2012 -20120930_MIA@ARI,4,0,38,ARI,MIA,2,10,15,(:38) (Shotgun) K.Kolb pass incomplete short left to E.Doucet (K.Dansby).,14,21,2012 -20120930_MIA@ARI,4,0,34,ARI,MIA,3,10,15,(:34) (Shotgun) K.Kolb pass incomplete short right to M.Floyd.,14,21,2012 -20120930_MIA@ARI,4,0,29,ARI,MIA,4,10,15,(:29) (Shotgun) K.Kolb pass short left to A.Roberts for 15 yards TOUCHDOWN.,14,21,2012 -20120930_MIA@ARI,4,0,29,ARI,MIA,,,15,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,14,21,2012 -20120930_MIA@ARI,4,0,29,ARI,MIA,,,15,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,21,21,2012 -20120930_MIA@ARI,4,0,22,MIA,ARI,1,10,80,(:22) R.Tannehill kneels to MIA 20 for no gain.,21,21,2012 -20120930_MIA@ARI,5,0,0,MIA,ARI,,,80,D.Carpenter kicks 72 yards from MIA 35 to ARZ -7. W.Powell to ARZ 34 for 41 yards (D.Carpenter).,21,21,2012 -20120930_MIA@ARI,5,-1,55,ARI,MIA,1,10,66,(14:55) R.Williams left tackle to ARZ 31 for -3 yards (P.Soliai).,21,21,2012 -20120930_MIA@ARI,5,-1,22,ARI,MIA,2,13,69,(14:22) (Shotgun) K.Kolb pass incomplete short left to R.Williams.,21,21,2012 -20120930_MIA@ARI,5,-1,17,ARI,MIA,3,13,69,(14:17) (Shotgun) K.Kolb pass incomplete short left to A.Roberts.,21,21,2012 -20120930_MIA@ARI,5,-1,12,ARI,MIA,4,13,69,(14:12) D.Zastudil punts 57 yards to MIA 12 Center-M.Leach. D.Bess to MIA 21 for 9 yards (J.Bethel).,21,21,2012 -20120930_MIA@ARI,5,-1,0,MIA,ARI,1,10,79,(14:00) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 29 for 8 yards (G.Toler).,21,21,2012 -20120930_MIA@ARI,5,-2,26,MIA,ARI,2,2,71,(13:26) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 34 for 5 yards (O.Schofield).,21,21,2012 -20120930_MIA@ARI,5,-3,57,MIA,ARI,1,10,66,(12:57) R.Bush up the middle to MIA 38 for 4 yards (C.Campbell).,21,21,2012 -20120930_MIA@ARI,5,-3,13,MIA,ARI,2,6,62,(12:13) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,21,21,2012 -20120930_MIA@ARI,5,-3,9,MIA,ARI,3,6,62,(12:09) (No Huddle Shotgun) R.Tannehill pass short right intended for B.Hartline INTERCEPTED by K.Rhodes [P.Lenon] at ARZ 48. K.Rhodes to MIA 47 for 5 yards (A.Fasano).,21,21,2012 -20120930_MIA@ARI,5,-4,59,ARI,MIA,1,10,47,(11:59) R.Williams left tackle to MIA 45 for 2 yards (K.Burnett).,21,21,2012 -20120930_MIA@ARI,5,-4,15,ARI,MIA,2,8,45,(11:15) (Shotgun) K.Kolb pass incomplete deep right to A.Roberts.,21,21,2012 -20120930_MIA@ARI,5,-4,11,ARI,MIA,3,8,45,(11:11) (Shotgun) K.Kolb pass short left to E.Doucet to MIA 35 for 10 yards (R.Jones).,21,21,2012 -20120930_MIA@ARI,5,-5,27,ARI,MIA,1,10,35,(10:27) R.Williams right tackle to MIA 33 for 2 yards (K.Burnett).,21,21,2012 -20120930_MIA@ARI,5,-6,47,ARI,MIA,2,8,33,(9:47) (Shotgun) R.Williams up the middle to MIA 29 for 4 yards (J.Wilson).,21,21,2012 -20120930_MIA@ARI,5,-6,8,ARI,MIA,3,4,29,(9:08) (Shotgun) R.Williams up the middle to MIA 28 for 1 yard (J.Odrick).,21,21,2012 -20120930_MIA@ARI,5,-7,34,ARI,MIA,4,3,28,(8:34) J.Feely 46 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,21,21,2012 -20120930_MIA@ARI,5,-7,34,ARI,MIA,,,28,                      ,24,21,2012 -20120930_OAK@DEN,1,-7,0,OAK,DEN,,,28,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 -20120930_OAK@DEN,1,60,0,DEN,OAK,1,10,80,(15:00) P.Manning pass incomplete deep middle to J.Dreessen (P.Wheeler).,0,0,2012 -20120930_OAK@DEN,1,59,55,DEN,OAK,2,10,80,(14:55) (Shotgun) W.McGahee left guard to DEN 24 for 4 yards (M.Shaughnessy).,0,0,2012 -20120930_OAK@DEN,1,59,19,DEN,OAK,3,6,76,(14:19) (Shotgun) P.Manning pass short middle to B.Stokley to 50 for 26 yards (M.Giordano).,0,0,2012 -20120930_OAK@DEN,1,58,57,DEN,OAK,1,10,50,(13:57) (Shotgun) W.McGahee left guard to 50 for no gain (M.Shaughnessy; R.McClain).,0,0,2012 -20120930_OAK@DEN,1,58,32,DEN,OAK,2,10,50,(13:32) (Shotgun) P.Manning pass short right to E.Decker to OAK 41 for 9 yards (J.Hanson; M.Huff).,0,0,2012 -20120930_OAK@DEN,1,58,32,DEN,OAK,3,1,41,(13:32) (Shotgun) W.McGahee left guard to OAK 39 for 2 yards (R.McClain).,0,0,2012 -20120930_OAK@DEN,1,57,31,DEN,OAK,1,10,39,(12:31) (Shotgun) P.Manning pass incomplete short middle to D.Thomas (P.Lee).,0,0,2012 -20120930_OAK@DEN,1,57,26,DEN,OAK,2,10,39,(12:26) P.Manning pass short left to R.Hillman to OAK 36 for 3 yards (P.Lee).,0,0,2012 -20120930_OAK@DEN,1,56,55,DEN,OAK,3,7,36,(11:55) (Shotgun) P.Manning pass short middle to J.Tamme to OAK 30 for 6 yards (R.McClain).,0,0,2012 -20120930_OAK@DEN,1,56,8,DEN,OAK,4,1,30,(11:08) P.Manning pass short middle to J.Tamme to OAK 22 for 8 yards (T.Branch).,0,0,2012 -20120930_OAK@DEN,1,55,39,DEN,OAK,1,10,22,(10:39) (Shotgun) P.Manning pass deep middle to J.Dreessen for 22 yards TOUCHDOWN.,0,0,2012 -20120930_OAK@DEN,1,55,39,DEN,OAK,,,22,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20120930_OAK@DEN,1,55,39,DEN,OAK,,,22,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,0,2012 -20120930_OAK@DEN,1,55,32,OAK,DEN,1,10,80,(10:32) D.McFadden right end pushed ob at OAK 22 for 2 yards (C.Bailey).,0,7,2012 -20120930_OAK@DEN,1,55,5,OAK,DEN,2,8,78,(10:05) D.McFadden left end to OAK 30 for 8 yards (K.Brooking).,0,7,2012 -20120930_OAK@DEN,1,54,38,OAK,DEN,1,10,70,(9:38) C.Palmer pass short right to M.Reece pushed ob at DEN 39 for 31 yards (R.Moore).,0,7,2012 -20120930_OAK@DEN,1,54,6,OAK,DEN,1,10,39,(9:06) C.Palmer pass short right to M.Reece to DEN 35 for 4 yards (V.Miller).,0,7,2012 -20120930_OAK@DEN,1,53,27,OAK,DEN,2,6,35,(8:27) (Shotgun) C.Palmer pass short left to D.Hagan to DEN 25 for 10 yards (W.Woodyard).,0,7,2012 -20120930_OAK@DEN,1,52,43,OAK,DEN,1,10,25,(7:43) (Shotgun) C.Palmer pass incomplete deep right to D.Moore.,0,7,2012 -20120930_OAK@DEN,1,52,37,OAK,DEN,2,10,25,(7:37) D.McFadden up the middle to DEN 20 for 5 yards (R.Moore).,0,7,2012 -20120930_OAK@DEN,1,51,56,OAK,DEN,3,5,20,(6:56) (Shotgun) C.Palmer pass incomplete short right to D.Moore [E.Dumervil].,0,7,2012 -20120930_OAK@DEN,1,51,51,OAK,DEN,4,5,20,(6:51) S.Janikowski 38 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 -20120930_OAK@DEN,1,51,51,OAK,DEN,,,20,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,3,7,2012 -20120930_OAK@DEN,1,51,47,DEN,OAK,1,10,80,(6:47) W.McGahee right tackle to DEN 25 for 5 yards (P.Wheeler).,7,3,2012 -20120930_OAK@DEN,1,51,22,DEN,OAK,2,5,75,(6:22) P.Manning pass short left to W.McGahee to DEN 29 for 4 yards (P.Lee).,7,3,2012 -20120930_OAK@DEN,1,50,40,DEN,OAK,3,1,71,(5:40) P.Manning pass short middle to J.Tamme to DEN 39 for 10 yards (T.Branch).,7,3,2012 -20120930_OAK@DEN,1,50,7,DEN,OAK,1,10,61,(5:07) PENALTY on DEN-O.Franklin False Start 5 yards enforced at DEN 39 - No Play.,7,3,2012 -20120930_OAK@DEN,1,49,53,DEN,OAK,1,15,66,(4:53) (Shotgun) P.Manning pass short left to L.Ball pushed ob at DEN 39 for 5 yards (P.Lee). PENALTY on DEN-J.Tamme Illegal Formation 5 yards enforced at DEN 34 - No Play.,7,3,2012 -20120930_OAK@DEN,1,49,27,DEN,OAK,1,20,71,(4:27) P.Manning pass short left to J.Tamme to DEN 39 for 10 yards (T.Branch).,7,3,2012 -20120930_OAK@DEN,1,48,56,DEN,OAK,2,10,61,(3:56) P.Manning pass deep right to D.Thomas to OAK 38 for 23 yards (T.Branch).,7,3,2012 -20120930_OAK@DEN,1,48,8,DEN,OAK,1,10,38,(3:08) P.Manning pass short right to W.McGahee to OAK 35 for 3 yards (R.McClain).,7,3,2012 -20120930_OAK@DEN,1,47,27,DEN,OAK,2,7,35,(2:27) A.Caldwell right end pushed ob at OAK 21 for 14 yards (M.Giordano).,7,3,2012 -20120930_OAK@DEN,1,46,57,DEN,OAK,1,10,21,(1:57) (Shotgun) P.Manning pass short left to E.Decker to OAK 12 for 9 yards (M.Giordano).,7,3,2012 -20120930_OAK@DEN,1,46,26,DEN,OAK,2,1,12,(1:26) (Shotgun) W.McGahee up the middle to OAK 4 for 8 yards (L.Houston; J.Hanson).,7,3,2012 -20120930_OAK@DEN,1,45,48,DEN,OAK,1,4,4,(:48) (Shotgun) P.Manning pass short right to W.McGahee to OAK 3 for 1 yard (T.Branch).,7,3,2012 -20120930_OAK@DEN,1,45,11,DEN,OAK,2,3,3,(:11) P.Manning pass incomplete short middle to E.Decker.,7,3,2012 -20120930_OAK@DEN,1,45,6,DEN,OAK,3,3,3,(:06) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (R.Seymour).,7,3,2012 -20120930_OAK@DEN,1,45,3,DEN,OAK,4,3,3,(:03) M.Prater 21 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,7,3,2012 -20120930_OAK@DEN,2,45,0,DEN,OAK,,,3,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,10,3,2012 -20120930_OAK@DEN,2,45,0,OAK,DEN,1,10,80,(15:00) D.McFadden right tackle to OAK 22 for 2 yards (K.Brooking; V.Miller).,3,10,2012 -20120930_OAK@DEN,2,44,22,OAK,DEN,2,8,78,(14:22) C.Palmer pass short left to B.Myers pushed ob at OAK 44 for 22 yards (M.Adams).,3,10,2012 -20120930_OAK@DEN,2,43,51,OAK,DEN,1,10,56,(13:51) C.Palmer pass short right to M.Reece to DEN 41 for 15 yards (R.Moore).,3,10,2012 -20120930_OAK@DEN,2,42,58,OAK,DEN,1,10,41,(12:58) D.McFadden right guard to DEN 35 for 6 yards (K.Brooking). PENALTY on OAK-C.Carlisle Offensive Holding 10 yards enforced at DEN 41 - No Play.,3,10,2012 -20120930_OAK@DEN,2,42,35,OAK,DEN,1,20,51,(12:35) M.Goodson left guard to DEN 43 for 8 yards (M.Adams).,3,10,2012 -20120930_OAK@DEN,2,41,58,OAK,DEN,2,12,43,(11:58) C.Palmer pass incomplete deep middle to D.Moore [M.Adams].,3,10,2012 -20120930_OAK@DEN,2,41,51,OAK,DEN,3,12,43,(11:51) (Shotgun) C.Palmer sacked at OAK 46 for -11 yards (C.Harris).,3,10,2012 -20120930_OAK@DEN,2,41,39,OAK,DEN,4,23,54,(11:39) S.Lechler punts 46 yards to DEN 8 Center-J.Condo. J.Leonhard to DEN 7 for -1 yards (T.Jones).,3,10,2012 -20120930_OAK@DEN,2,41,29,DEN,OAK,1,10,93,(11:29) (Shotgun) W.McGahee left guard to DEN 24 for 17 yards (P.Lee).,10,3,2012 -20120930_OAK@DEN,2,41,2,DEN,OAK,1,10,76,(11:02) (Shotgun) R.Hillman up the middle to DEN 29 for 5 yards (M.Shaughnessy).,10,3,2012 -20120930_OAK@DEN,2,40,34,DEN,OAK,2,5,71,(10:34) (Shotgun) P.Manning pass short left to E.Decker to DEN 38 for 9 yards (P.Lee). Oakland challenged the pass completion ruling and the play was REVERSED. (Shotgun) P.Manning pass incomplete short left.,10,3,2012 -20120930_OAK@DEN,2,40,30,DEN,OAK,3,5,71,(10:30) (Shotgun) P.Manning pass short left to D.Thomas to OAK 31 for 40 yards. FUMBLES RECOVERED by OAK-L.Houston at OAK 4. L.Houston to OAK 4 for no gain (J.Tamme). Thomas dropped the ball. No force on the fuimble.,10,3,2012 -20120930_OAK@DEN,2,40,18,OAK,DEN,1,10,96,(10:18) D.McFadden right guard to OAK 1 for -3 yards (D.Wolfe; W.Woodyard).,3,10,2012 -20120930_OAK@DEN,2,39,39,OAK,DEN,2,13,99,(9:39) C.Palmer pass short right to D.Moore to OAK 12 for 11 yards (C.Bailey).,3,10,2012 -20120930_OAK@DEN,2,38,58,OAK,DEN,3,2,88,(8:58) M.Goodson right end pushed ob at OAK 15 for 3 yards (C.Harris). Denver challenged the first down ruling and the play was REVERSED. M.Goodson right end pushed ob at OAK 13 for 1 yard (C.Harris).,3,10,2012 -20120930_OAK@DEN,2,38,24,OAK,DEN,4,1,87,(8:24) S.Lechler punts 54 yards to DEN 33 Center-J.Condo. J.Leonhard to DEN 33 for no gain (T.Jones).,3,10,2012 -20120930_OAK@DEN,2,38,13,DEN,OAK,1,10,67,(8:13) R.Hillman left end to DEN 36 for 3 yards (P.Lee).,10,3,2012 -20120930_OAK@DEN,2,37,53,DEN,OAK,2,7,64,(7:53) (Shotgun) P.Manning pass short right to B.Stokley to DEN 42 for 6 yards (M.Giordano).,10,3,2012 -20120930_OAK@DEN,2,37,12,DEN,OAK,3,1,58,(7:12) W.McGahee up the middle to DEN 43 for 1 yard (P.Wheeler; J.Crawford).,10,3,2012 -20120930_OAK@DEN,2,36,33,DEN,OAK,1,10,57,(6:33) P.Manning pass short middle to W.McGahee to OAK 48 for 9 yards (R.Seymour).,10,3,2012 -20120930_OAK@DEN,2,36,7,DEN,OAK,2,1,48,(6:07) W.McGahee up the middle to OAK 45 for 3 yards (M.Shaughnessy).,10,3,2012 -20120930_OAK@DEN,2,35,23,DEN,OAK,1,10,45,(5:23) (Shotgun) PENALTY on DEN-O.Franklin False Start 5 yards enforced at OAK 45 - No Play.,10,3,2012 -20120930_OAK@DEN,2,35,3,DEN,OAK,1,15,50,(5:03) (Shotgun) R.Hillman up the middle to OAK 47 for 3 yards (D.Bryant).,10,3,2012 -20120930_OAK@DEN,2,34,29,DEN,OAK,2,12,47,(4:29) (Shotgun) P.Manning pass short right to E.Decker to OAK 40 for 7 yards (M.Huff).,10,3,2012 -20120930_OAK@DEN,2,33,44,DEN,OAK,3,5,40,(3:44) (Shotgun) L.Ball up the middle to OAK 36 for 4 yards (J.Crawford).,10,3,2012 -20120930_OAK@DEN,2,33,21,DEN,OAK,4,1,36,(3:21) M.Prater pass incomplete deep left to Z.Beadles.,10,3,2012 -20120930_OAK@DEN,2,33,14,OAK,DEN,1,10,64,(3:14) D.McFadden left end pushed ob at OAK 37 for 1 yard (V.Miller).,3,10,2012 -20120930_OAK@DEN,2,32,54,OAK,DEN,2,9,63,(2:54) C.Palmer pass short right to M.Reece pushed ob at OAK 45 for 8 yards (M.Adams).,3,10,2012 -20120930_OAK@DEN,2,32,24,OAK,DEN,3,1,55,(2:24) C.Palmer pass short right to D.McFadden pushed ob at OAK 49 for 4 yards (K.Brooking) [E.Dumervil].,3,10,2012 -20120930_OAK@DEN,2,32,1,OAK,DEN,1,10,51,(2:01) D.McFadden right tackle to 50 for 1 yard (E.Dumervil; M.Unrein).,3,10,2012 -20120930_OAK@DEN,2,31,56,OAK,DEN,2,9,50,(1:56) C.Palmer pass deep left to D.Moore to DEN 13 for 37 yards (R.Moore).,3,10,2012 -20120930_OAK@DEN,2,31,11,OAK,DEN,1,10,13,(1:11) D.McFadden up the middle to DEN 11 for 2 yards (K.Brooking).,3,10,2012 -20120930_OAK@DEN,2,30,35,OAK,DEN,2,8,11,(:35) D.McFadden right tackle to DEN 6 for 5 yards (E.Dumervil).,3,10,2012 -20120930_OAK@DEN,2,30,29,OAK,DEN,3,3,6,(:29) C.Palmer pass incomplete short right to D.Ausberry.,3,10,2012 -20120930_OAK@DEN,2,30,25,OAK,DEN,4,3,6,(:25) S.Janikowski 24 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,10,2012 -20120930_OAK@DEN,2,30,25,OAK,DEN,,,6,S.Janikowski kicks 66 yards from OAK 35 to DEN -1. O.Bolden to DEN 15 for 16 yards (C.Francies).,6,10,2012 -20120930_OAK@DEN,2,30,15,DEN,OAK,1,10,85,(:15) P.Manning kneels to DEN 14 for -1 yards.,10,6,2012 -20120930_OAK@DEN,3,30,0,DEN,OAK,,,85,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,10,6,2012 -20120930_OAK@DEN,3,30,0,OAK,DEN,1,10,80,(15:00) C.Palmer pass incomplete short right to M.Reece (C.Bailey).,6,10,2012 -20120930_OAK@DEN,3,29,57,OAK,DEN,2,10,80,(14:57) D.McFadden right end to OAK 25 for 5 yards (K.Brooking; M.Adams).,6,10,2012 -20120930_OAK@DEN,3,29,57,OAK,DEN,3,5,75,(14:57) C.Palmer pass to D.Moore to OAK 29 for 4 yards (C.Harris).,6,10,2012 -20120930_OAK@DEN,3,29,10,OAK,DEN,4,1,71,(14:10) S.Lechler punts 62 yards to DEN 9 Center-J.Condo. J.Leonhard to DEN 21 for 12 yards (T.Goethel; T.Jones).,6,10,2012 -20120930_OAK@DEN,3,28,59,DEN,OAK,1,10,79,(13:59) (Shotgun) W.McGahee left tackle to DEN 24 for 3 yards (L.Houston; T.Kelly).,10,6,2012 -20120930_OAK@DEN,3,28,35,DEN,OAK,2,7,76,(13:35) P.Manning pass short left to W.McGahee to DEN 28 for 4 yards (P.Lee).,10,6,2012 -20120930_OAK@DEN,3,28,6,DEN,OAK,3,3,72,(13:06) (Shotgun) P.Manning pass short right to J.Tamme to DEN 32 for 4 yards (J.Hanson).,10,6,2012 -20120930_OAK@DEN,3,27,37,DEN,OAK,1,10,68,(12:37) W.McGahee up the middle to DEN 43 for 11 yards (L.Houston; M.Huff).,10,6,2012 -20120930_OAK@DEN,3,27,11,DEN,OAK,1,10,57,(12:11) R.Hillman right guard to DEN 46 for 3 yards (T.Branch).,10,6,2012 -20120930_OAK@DEN,3,26,43,DEN,OAK,2,7,54,(11:43) (Shotgun) P.Manning pass short right to R.Hillman to OAK 25 for 29 yards (J.Hanson).,10,6,2012 -20120930_OAK@DEN,3,26,18,DEN,OAK,1,10,25,(11:18) (Shotgun) P.Manning pass short right to E.Decker to OAK 19 for 6 yards (T.Branch).,10,6,2012 -20120930_OAK@DEN,3,25,53,DEN,OAK,2,4,19,(10:53) L.Ball up the middle to OAK 17 for 2 yards (R.McClain).,10,6,2012 -20120930_OAK@DEN,3,25,17,DEN,OAK,3,2,17,(10:17) (Shotgun) P.Manning pass short left to E.Decker for 17 yards TOUCHDOWN.,10,6,2012 -20120930_OAK@DEN,3,25,17,DEN,OAK,,,17,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,10,6,2012 -20120930_OAK@DEN,3,25,17,DEN,OAK,,,17,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,17,6,2012 -20120930_OAK@DEN,3,25,8,OAK,DEN,1,10,80,(10:08) C.Palmer pass short right to M.Reece to OAK 16 for -4 yards (C.Bailey).,6,17,2012 -20120930_OAK@DEN,3,24,42,OAK,DEN,2,14,84,(9:42) C.Palmer pass incomplete deep middle to D.Hagan.,6,17,2012 -20120930_OAK@DEN,3,24,35,OAK,DEN,3,14,84,(9:35) (Shotgun) C.Palmer pass incomplete short right to B.Myers (M.Adams).,6,17,2012 -20120930_OAK@DEN,3,24,28,OAK,DEN,4,14,84,(9:28) (Shotgun) S.Lechler punts 2 yards to OAK 18 Center-J.Condo downed by OAK-J.Condo. Ball was deflected by Bruton,6,17,2012 -20120930_OAK@DEN,3,24,17,DEN,OAK,1,10,18,(9:17) W.McGahee left end to OAK 15 for 3 yards (P.Wheeler; T.Branch).,17,6,2012 -20120930_OAK@DEN,3,23,41,DEN,OAK,2,7,15,(8:41) W.McGahee up the middle to OAK 4 for 11 yards (P.Wheeler).,17,6,2012 -20120930_OAK@DEN,3,23,11,DEN,OAK,1,4,4,(8:11) (Shotgun) W.McGahee right tackle to OAK 2 for 2 yards (L.Houston).,17,6,2012 -20120930_OAK@DEN,3,22,36,DEN,OAK,2,2,2,(7:36) (Shotgun) W.McGahee up the middle for 2 yards TOUCHDOWN.,17,6,2012 -20120930_OAK@DEN,3,22,36,DEN,OAK,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,6,2012 -20120930_OAK@DEN,3,22,36,DEN,OAK,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,24,6,2012 -20120930_OAK@DEN,3,22,30,OAK,DEN,1,10,80,(7:30) D.McFadden left tackle to OAK 23 for 3 yards (K.Vickerson).,6,24,2012 -20120930_OAK@DEN,3,21,53,OAK,DEN,2,7,77,(6:53) D.McFadden right tackle to OAK 28 for 5 yards (C.Bailey).,6,24,2012 -20120930_OAK@DEN,3,21,12,OAK,DEN,3,2,72,(6:12) D.McFadden left end to OAK 26 for -2 yards (V.Miller W.Woodyard).,6,24,2012 -20120930_OAK@DEN,3,20,38,OAK,DEN,4,4,74,(5:38) S.Lechler punts 68 yards to DEN 6 Center-J.Condo. J.Leonhard to DEN 22 for 16 yards (M.Goodson). PENALTY on OAK-T.Jones Face Mask (15 Yards) 15 yards enforced at DEN 22.,6,24,2012 -20120930_OAK@DEN,3,20,22,DEN,OAK,1,10,63,(5:22) (Shotgun) P.Manning pass short right to D.Thomas to OAK 38 for 25 yards (M.Giordano).,24,6,2012 -20120930_OAK@DEN,3,20,3,DEN,OAK,1,10,38,(5:03) (Shotgun) W.McGahee up the middle to OAK 14 for 24 yards (M.Giordano). OAK-M.Giordano was injured during the play.,24,6,2012 -20120930_OAK@DEN,3,19,24,DEN,OAK,1,10,14,(4:24) (Shotgun) L.Ball left tackle to OAK 14 for no gain (M.Shaughnessy).,24,6,2012 -20120930_OAK@DEN,3,18,59,DEN,OAK,2,10,14,(3:59) (Shotgun) P.Manning pass incomplete short right to E.Decker.,24,6,2012 -20120930_OAK@DEN,3,18,52,DEN,OAK,3,10,14,(3:52) (Shotgun) P.Manning pass short left to L.Ball for 14 yards TOUCHDOWN.,24,6,2012 -20120930_OAK@DEN,3,18,52,DEN,OAK,,,14,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,6,2012 -20120930_OAK@DEN,3,18,52,DEN,OAK,,,14,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,6,2012 -20120930_OAK@DEN,3,18,46,OAK,DEN,1,10,80,(3:46) C.Palmer pass short middle to M.Goodson to OAK 20 for no gain (K.Vickerson).,6,31,2012 -20120930_OAK@DEN,3,18,9,OAK,DEN,2,10,80,(3:09) C.Palmer pass incomplete short right to M.Reece.,6,31,2012 -20120930_OAK@DEN,3,18,5,OAK,DEN,3,10,80,(3:05) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 6 yards enforced at OAK 20 - No Play.,6,31,2012 -20120930_OAK@DEN,3,18,5,OAK,DEN,3,16,86,(3:05) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,6,31,2012 -20120930_OAK@DEN,3,17,58,OAK,DEN,4,16,86,(2:58) S.Lechler punts 55 yards to DEN 31 Center-J.Condo downed by OAK-M.Goodson.,6,31,2012 -20120930_OAK@DEN,3,17,45,DEN,OAK,1,10,69,(2:45) (Shotgun) W.McGahee up the middle to DEN 35 for 4 yards (R.Seymour; P.Wheeler).,31,6,2012 -20120930_OAK@DEN,3,17,9,DEN,OAK,2,6,65,(2:09) (Shotgun) P.Manning pass short left to W.McGahee to DEN 37 for 2 yards (P.Wheeler).,31,6,2012 -20120930_OAK@DEN,3,17,9,DEN,OAK,3,4,63,(2:09) (Shotgun) PENALTY on OAK-R.Seymour Defensive Offside 5 yards enforced at DEN 37 - No Play.,31,6,2012 -20120930_OAK@DEN,3,16,21,DEN,OAK,1,10,58,(1:21) (Shotgun) R.Hillman right tackle to DEN 45 for 3 yards (P.Wheeler).,31,6,2012 -20120930_OAK@DEN,3,15,52,DEN,OAK,2,7,55,(:52) (Shotgun) P.Manning pass incomplete short right to A.Caldwell.,31,6,2012 -20120930_OAK@DEN,3,15,48,DEN,OAK,3,7,55,(:48) (Shotgun) P.Manning pass short right to E.Decker to OAK 43 for 12 yards (J.Hanson).,31,6,2012 -20120930_OAK@DEN,3,15,9,DEN,OAK,1,10,43,(:09) L.Ball right tackle to OAK 44 for -1 yards (T.Kelly; R.McClain).,31,6,2012 -20120930_OAK@DEN,4,15,0,DEN,OAK,2,11,44,(15:00) P.Manning pass short right to E.Decker to OAK 25 for 19 yards (M.Giordano).,31,6,2012 -20120930_OAK@DEN,4,14,30,DEN,OAK,1,10,25,(14:30) (Shotgun) W.McGahee left tackle to OAK 20 for 5 yards (P.Wheeler).,31,6,2012 -20120930_OAK@DEN,4,13,45,DEN,OAK,2,5,20,(13:45) (Shotgun) P.Manning pass short left to J.Dreessen to OAK 25 for -5 yards (T.Branch).,31,6,2012 -20120930_OAK@DEN,4,13,5,DEN,OAK,3,10,25,(13:05) (Shotgun) P.Manning pass incomplete short middle to L.Ball.,31,6,2012 -20120930_OAK@DEN,4,13,0,DEN,OAK,4,10,25,(13:00) M.Prater 43 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,31,6,2012 -20120930_OAK@DEN,4,13,0,DEN,OAK,,,25,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,34,6,2012 -20120930_OAK@DEN,4,12,56,OAK,DEN,1,10,80,(12:56) C.Palmer pass incomplete deep right to D.Moore.,6,34,2012 -20120930_OAK@DEN,4,12,51,OAK,DEN,2,10,80,(12:51) (Shotgun) C.Palmer pass deep right to D.Moore to OAK 39 for 19 yards (C.Bailey).,6,34,2012 -20120930_OAK@DEN,4,12,20,OAK,DEN,1,10,61,(12:20) C.Palmer sacked at OAK 37 for -2 yards (sack split by W.Woodyard and E.Dumervil).,6,34,2012 -20120930_OAK@DEN,4,11,53,OAK,DEN,2,12,63,(11:53) C.Palmer pass incomplete short right to M.Reece [V.Miller].,6,34,2012 -20120930_OAK@DEN,4,11,48,OAK,DEN,3,12,63,(11:48) (Shotgun) C.Palmer pass short right to M.Goodson to OAK 32 for -5 yards (W.Woodyard; R.Ayers).,6,34,2012 -20120930_OAK@DEN,4,11,12,OAK,DEN,4,17,68,(11:12) S.Lechler punts 59 yards to DEN 9 Center-J.Condo. J.Leonhard to DEN 24 for 15 yards (J.Condo).,6,34,2012 -20120930_OAK@DEN,4,11,0,DEN,OAK,1,10,76,(11:00) W.McGahee up the middle to DEN 28 for 4 yards (R.McClain).,34,6,2012 -20120930_OAK@DEN,4,10,16,DEN,OAK,2,6,72,(10:16) W.McGahee right tackle to DEN 31 for 3 yards (D.Bryant).,34,6,2012 -20120930_OAK@DEN,4,9,31,DEN,OAK,3,3,69,(9:31) (Shotgun) P.Manning pass short left to D.Thomas to DEN 36 for 5 yards (M.Giordano).,34,6,2012 -20120930_OAK@DEN,4,8,47,DEN,OAK,1,10,64,(8:47) R.Hillman right end to DEN 36 for no gain (R.McClain).,34,6,2012 -20120930_OAK@DEN,4,8,13,DEN,OAK,2,10,64,(8:13) R.Hillman up the middle to DEN 48 for 12 yards (M.Huff).,34,6,2012 -20120930_OAK@DEN,4,7,26,DEN,OAK,1,10,52,(7:26) R.Hillman up the middle to OAK 46 for 6 yards (L.Houston).,34,6,2012 -20120930_OAK@DEN,4,6,43,DEN,OAK,2,4,46,(6:43) R.Hillman up the middle to OAK 48 for -2 yards (M.Shaughnessy).,34,6,2012 -20120930_OAK@DEN,4,5,58,DEN,OAK,3,6,48,(5:58) (Shotgun) P.Manning pass short left to D.Thomas ran ob at OAK 38 for 10 yards.,34,6,2012 -20120930_OAK@DEN,4,5,26,DEN,OAK,1,10,38,(5:26) R.Hillman up the middle to OAK 40 for -2 yards (L.Houston).,34,6,2012 -20120930_OAK@DEN,4,4,43,DEN,OAK,2,12,40,(4:43) L.Ball up the middle to OAK 38 for 2 yards (T.Kelly; L.Houston).,34,6,2012 -20120930_OAK@DEN,4,3,59,DEN,OAK,3,10,38,(3:59) (Shotgun) L.Ball right tackle to OAK 35 for 3 yards (P.Wheeler).,34,6,2012 -20120930_OAK@DEN,4,3,48,DEN,OAK,4,7,35,(3:48) M.Prater 53 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,34,6,2012 -20120930_OAK@DEN,4,3,48,DEN,OAK,,,35,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,37,6,2012 -20120930_OAK@DEN,4,3,43,OAK,DEN,1,10,80,(3:43) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan.,6,37,2012 -20120930_OAK@DEN,4,3,39,OAK,DEN,2,10,80,(3:39) (Shotgun) C.Palmer pass incomplete deep left to R.Streater.,6,37,2012 -20120930_OAK@DEN,4,3,34,OAK,DEN,3,10,80,(3:34) (Shotgun) C.Palmer pass short right to D.Ausberry to OAK 29 for 9 yards (V.Miller).,6,37,2012 -20120930_OAK@DEN,4,3,0,OAK,DEN,4,1,71,(3:00) (Shotgun) C.Palmer pass short left to J.Criner to OAK 42 for 13 yards (T.Porter).,6,37,2012 -20120930_OAK@DEN,4,2,28,OAK,DEN,1,10,58,(2:28) (Shotgun) M.Goodson up the middle to DEN 45 for 13 yards (R.Moore).,6,37,2012 -20120930_OAK@DEN,4,2,3,OAK,DEN,1,10,45,(2:03) (Shotgun) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at DEN 45 - No Play.,6,37,2012 -20120930_OAK@DEN,4,2,1,OAK,DEN,1,15,50,(2:01) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan.,6,37,2012 -20120930_OAK@DEN,4,1,55,OAK,DEN,2,15,50,(1:55) C.Palmer pass short left to J.Criner to DEN 34 for 16 yards (W.Woodyard; R.Moore).,6,37,2012 -20120930_OAK@DEN,4,1,27,OAK,DEN,1,10,34,(1:27) C.Palmer pass incomplete short middle to B.Myers. PENALTY on DEN-R.Ayers Roughing the Passer 15 yards enforced at DEN 34 - No Play.,6,37,2012 -20120930_OAK@DEN,4,1,26,OAK,DEN,1,10,19,(1:26) (Shotgun) C.Palmer pass incomplete short left to J.Criner [V.Miller].,6,37,2012 -20120930_OAK@DEN,4,1,21,OAK,DEN,2,10,19,(1:21) (Shotgun) C.Palmer sacked at DEN 27 for -8 yards (E.Dumervil). FUMBLES (E.Dumervil) recovered by OAK-W.Smith at DEN 27. W.Smith to DEN 27 for no gain (D.Wolfe).,6,37,2012 -20120930_OAK@DEN,4,0,37,OAK,DEN,3,18,27,(:37) (Shotgun) C.Palmer pass short left to M.Goodson to DEN 27 for no gain (D.Trevathan).,6,37,2012 -20120930_OAK@DEN,4,0,27,OAK,DEN,4,18,27,(:27) (Shotgun) C.Palmer pass short right to D.Hagan to DEN 19 for 8 yards (D.Bruton).,6,37,2012 -20120930_OAK@DEN,4,0,18,DEN,OAK,1,10,81,(:18) B.Osweiler kneels to DEN 18 for -1 yards.,37,6,2012 -20120930_OAK@DEN,4,0,18,DEN,OAK,,,81,                      ,37,6,2012 -20120930_CIN@JAC,1,0,0,CIN,JAC,,,81,M.Nugent kicks 64 yards from CIN 35 to JAX 1. J.Parmele to JAX 22 for 21 yards (D.Skuta).,0,0,2012 -20120930_CIN@JAC,1,59,56,JAC,CIN,1,10,78,(14:56) (Shotgun) B.Gabbert sacked at JAX 15 for -7 yards (D.Peko).,0,0,2012 -20120930_CIN@JAC,1,59,33,JAC,CIN,2,17,85,(14:33) R.Jennings up the middle to JAX 21 for 6 yards (M.Lawson). PENALTY on CIN-M.Johnson Defensive Offside 5 yards enforced at JAX 15 - No Play.,0,0,2012 -20120930_CIN@JAC,1,59,12,JAC,CIN,2,12,80,(14:12) B.Gabbert pass incomplete short right to C.Shorts. PENALTY on CIN-R.Maualuga Defensive Offside 5 yards enforced at JAX 20 - No Play.,0,0,2012 -20120930_CIN@JAC,1,59,8,JAC,CIN,2,7,75,(14:08) M.Jones-Drew left end to JAX 27 for 2 yards (G.Atkins).,0,0,2012 -20120930_CIN@JAC,1,58,24,JAC,CIN,3,5,73,(13:24) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,0,0,2012 -20120930_CIN@JAC,1,58,24,JAC,CIN,4,5,73,(13:24) B.Anger punts 44 yards to CIN 29 Center-J.Cain. B.Tate to CIN 30 for 1 yard (C.Prosinski). PENALTY on CIN-J.Miles Illegal Block Above the Waist 10 yards enforced at CIN 30.,0,0,2012 -20120930_CIN@JAC,1,58,9,CIN,JAC,1,10,80,(13:09) B.Green-Ellis right end to CIN 23 for 3 yards (R.Allen).,0,0,2012 -20120930_CIN@JAC,1,57,31,CIN,JAC,2,7,77,(12:31) A.Dalton pass short right intended for C.Pressley INTERCEPTED by K.Bosworth at CIN 23. K.Bosworth to CIN 13 for 10 yards. FUMBLES RECOVERED by CIN-A.Smith at CIN 9. A.Smith to CIN 9 for no gain (K.Bosworth).,0,0,2012 -20120930_CIN@JAC,1,57,21,CIN,JAC,1,10,91,(12:21) B.Green-Ellis left end to CIN 12 for 3 yards (T.Alualu).,0,0,2012 -20120930_CIN@JAC,1,56,39,CIN,JAC,2,7,88,(11:39) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 19 for 7 yards (A.Ross).,0,0,2012 -20120930_CIN@JAC,1,55,59,CIN,JAC,1,10,81,(10:59) A.Dalton pass short right to O.Charles to CIN 29 for 10 yards (R.Allen).,0,0,2012 -20120930_CIN@JAC,1,55,25,CIN,JAC,1,10,71,(10:25) B.Green-Ellis up the middle to CIN 32 for 3 yards (P.Posluszny).,0,0,2012 -20120930_CIN@JAC,1,54,49,CIN,JAC,2,7,68,(9:49) B.Green-Ellis up the middle to CIN 45 for 13 yards (D.Lowery).,0,0,2012 -20120930_CIN@JAC,1,54,5,CIN,JAC,1,10,55,(9:05) (Shotgun) A.Dalton pass short left to M.Jones to 50 for 5 yards (D.Cox).,0,0,2012 -20120930_CIN@JAC,1,53,28,CIN,JAC,2,5,50,(8:28) A.Dalton scrambles left end to JAX 45 for 5 yards (R.Allen).,0,0,2012 -20120930_CIN@JAC,1,52,44,CIN,JAC,1,10,45,(7:44) A.Dalton pass incomplete deep right to M.Jones.,0,0,2012 -20120930_CIN@JAC,1,52,40,CIN,JAC,2,10,45,(7:40) (Shotgun) PENALTY on CIN-A.Hawkins False Start 5 yards enforced at JAX 45 - No Play.,0,0,2012 -20120930_CIN@JAC,1,52,40,CIN,JAC,2,15,50,(7:40) (Shotgun) A.Dalton pass incomplete short right to A.Green (R.Mathis).,0,0,2012 -20120930_CIN@JAC,1,52,35,CIN,JAC,3,15,50,(7:35) (Shotgun) A.Dalton pass short middle to B.Leonard to JAX 37 for 13 yards (DA.Smith; C.Prosinski) [A.Blake]. PENALTY on JAX-A.Blake Roughing the Passer 15 yards enforced at JAX 37.,0,0,2012 -20120930_CIN@JAC,1,52,8,CIN,JAC,1,10,22,(7:08) B.Green-Ellis up the middle to JAX 18 for 4 yards (R.Allen).,0,0,2012 -20120930_CIN@JAC,1,52,8,CIN,JAC,2,6,18,(7:08) (Shotgun) A.Dalton pass incomplete short left to B.Green-Ellis.,0,0,2012 -20120930_CIN@JAC,1,51,26,CIN,JAC,3,6,18,(6:26) (Shotgun) A.Dalton pass short right to A.Hawkins to JAX 17 for 1 yard (D.Lowery).,0,0,2012 -20120930_CIN@JAC,1,51,14,CIN,JAC,4,5,17,(6:14) M.Nugent 35 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20120930_CIN@JAC,1,51,14,CIN,JAC,,,17,M.Nugent kicks 69 yards from CIN 35 to JAX -4. R.Jennings to JAX 23 for 27 yards (J.Miles).,3,0,2012 -20120930_CIN@JAC,1,51,5,JAC,CIN,1,10,77,(6:05) (Shotgun) B.Gabbert scrambles up the middle to JAX 32 for 9 yards (W.Gilberry).,0,3,2012 -20120930_CIN@JAC,1,50,20,JAC,CIN,2,1,68,(5:20) M.Jones-Drew left end ran ob at JAX 41 for 9 yards (R.Maualuga).,0,3,2012 -20120930_CIN@JAC,1,49,53,JAC,CIN,1,10,59,(4:53) B.Gabbert sacked at JAX 29 for -12 yards (M.Lawson).,0,3,2012 -20120930_CIN@JAC,1,49,23,JAC,CIN,2,22,71,(4:23) B.Gabbert pass short left to M.Lewis to CIN 48 for 23 yards (M.Lawson).,0,3,2012 -20120930_CIN@JAC,1,48,48,JAC,CIN,1,10,48,(3:48) R.Jennings right end to CIN 44 for 4 yards (V.Burfict).,0,3,2012 -20120930_CIN@JAC,1,48,8,JAC,CIN,2,6,44,(3:08) R.Jennings up the middle to CIN 36 for 8 yards (R.Maualuga).,0,3,2012 -20120930_CIN@JAC,1,47,30,JAC,CIN,1,10,36,(2:30) B.Gabbert pass short left to G.Jones to CIN 30 for 6 yards (D.Skuta).,0,3,2012 -20120930_CIN@JAC,1,46,48,JAC,CIN,2,4,30,(1:48) B.Gabbert pass short middle to M.Jones-Drew to CIN 24 for 6 yards (V.Burfict).,0,3,2012 -20120930_CIN@JAC,1,46,7,JAC,CIN,1,10,24,(1:07) M.Jones-Drew left end to CIN 27 for -3 yards (C.Dunlap).,0,3,2012 -20120930_CIN@JAC,1,45,28,JAC,CIN,2,13,27,(:28) B.Gabbert pass short right to J.Blackmon pushed ob at CIN 13 for 14 yards (T.Mays).,0,3,2012 -20120930_CIN@JAC,2,45,0,JAC,CIN,1,10,13,(15:00) M.Jones-Drew up the middle to CIN 7 for 6 yards.,0,3,2012 -20120930_CIN@JAC,2,44,23,JAC,CIN,2,4,7,(14:23) M.Jones-Drew up the middle to CIN 2 for 5 yards (V.Burfict).,0,3,2012 -20120930_CIN@JAC,2,43,40,JAC,CIN,1,2,2,(13:40) B.Gabbert pass short left to M.Lewis for 2 yards TOUCHDOWN.,0,3,2012 -20120930_CIN@JAC,2,43,40,JAC,CIN,,,2,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,3,2012 -20120930_CIN@JAC,2,43,40,JAC,CIN,,,2,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,7,3,2012 -20120930_CIN@JAC,2,43,33,CIN,JAC,1,10,80,(13:33) B.Green-Ellis right end to CIN 20 for no gain (R.Allen).,3,7,2012 -20120930_CIN@JAC,2,42,56,CIN,JAC,2,10,80,(12:56) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 29 for 9 yards (R.Allen).,3,7,2012 -20120930_CIN@JAC,2,42,12,CIN,JAC,3,1,71,(12:12) A.Dalton pass incomplete deep left to A.Binns.,3,7,2012 -20120930_CIN@JAC,2,42,7,CIN,JAC,4,1,71,(12:07) (Punt formation) K.Huber punts 58 yards to JAX 13 Center-C.Harris out of bounds.,3,7,2012 -20120930_CIN@JAC,2,41,58,JAC,CIN,1,10,87,(11:58) B.Gabbert pass short left to G.Jones to JAX 23 for 10 yards (V.Burfict).,7,3,2012 -20120930_CIN@JAC,2,41,22,JAC,CIN,1,10,77,(11:22) M.Jones-Drew left end to JAX 27 for 4 yards (R.Maualuga).,7,3,2012 -20120930_CIN@JAC,2,40,43,JAC,CIN,2,6,73,(10:43) M.Jones-Drew right end to JAX 27 for no gain (T.Newman; R.Nelson).,7,3,2012 -20120930_CIN@JAC,2,40,15,JAC,CIN,3,6,73,(10:15) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon.,7,3,2012 -20120930_CIN@JAC,2,40,11,JAC,CIN,4,6,73,(10:11) (Punt formation) B.Anger punts 61 yards to CIN 12 Center-J.Cain. B.Tate pushed ob at CIN 25 for 13 yards (J.Parmele).,7,3,2012 -20120930_CIN@JAC,2,39,59,CIN,JAC,1,10,75,(9:59) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 24 for -1 yards (R.Allen).,3,7,2012 -20120930_CIN@JAC,2,39,19,CIN,JAC,2,11,76,(9:19) (Shotgun) A.Dalton pass incomplete short left to A.Binns (D.Cox).,3,7,2012 -20120930_CIN@JAC,2,39,15,CIN,JAC,3,11,76,(9:15) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 34 for 10 yards (A.Ross; D.Landry).,3,7,2012 -20120930_CIN@JAC,2,38,36,CIN,JAC,4,1,66,(8:36) (Punt formation) Direct snap to C.Peerman. C.Peerman right end to JAX 18 for 48 yards (M.Owens).,3,7,2012 -20120930_CIN@JAC,2,37,45,CIN,JAC,1,10,18,(7:45) B.Green-Ellis up the middle to JAX 13 for 5 yards (J.Mincey; D.Landry).,3,7,2012 -20120930_CIN@JAC,2,37,4,CIN,JAC,2,5,13,(7:04) (Shotgun) A.Dalton pass incomplete short middle to A.Binns (J.Mincey).,3,7,2012 -20120930_CIN@JAC,2,37,0,CIN,JAC,3,5,13,(7:00) (Shotgun) A.Dalton pass incomplete short right to J.Gresham. PENALTY on JAX-D.Lowery Defensive Pass Interference 12 yards enforced at JAX 13 - No Play.,3,7,2012 -20120930_CIN@JAC,2,36,53,CIN,JAC,1,1,1,(6:53) B.Green-Ellis left end to JAX 1 for no gain (J.Stanford).,3,7,2012 -20120930_CIN@JAC,2,36,21,CIN,JAC,2,1,1,(6:21) A.Dalton pass short left to C.Pressley for 1 yard TOUCHDOWN.,3,7,2012 -20120930_CIN@JAC,2,36,21,CIN,JAC,,,1,(Kick formation) M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,7,2012 -20120930_CIN@JAC,2,36,21,CIN,JAC,,,1,M.Nugent kicks 69 yards from CIN 35 to JAX -4. J.Parmele to JAX 25 for 29 yards (V.Rey). PENALTY on JAX-J.Stanford Illegal Block Above the Waist 10 yards enforced at JAX 18.,10,7,2012 -20120930_CIN@JAC,2,36,10,JAC,CIN,1,10,92,(6:10) M.Jones-Drew right end to JAX 8 for no gain (W.Gilberry).,7,10,2012 -20120930_CIN@JAC,2,35,31,JAC,CIN,2,10,92,(5:31) B.Gabbert pass short left to G.Jones to JAX 12 for 4 yards (R.Nelson).,7,10,2012 -20120930_CIN@JAC,2,34,57,JAC,CIN,3,6,88,(4:57) (Shotgun) B.Gabbert sacked at JAX 6 for -6 yards (C.Dunlap). PENALTY on CIN-C.Dunlap Face Mask (15 Yards) 15 yards enforced at JAX 6. Sack caused fumble which was negated by penalty.,7,10,2012 -20120930_CIN@JAC,2,34,49,JAC,CIN,1,10,79,(4:49) B.Gabbert pass incomplete deep right to J.Blackmon.,7,10,2012 -20120930_CIN@JAC,2,34,44,JAC,CIN,2,10,79,(4:44) (Shotgun) B.Gabbert pass short left to R.Jennings to JAX 19 for -2 yards (R.Nelson).,7,10,2012 -20120930_CIN@JAC,2,34,0,JAC,CIN,3,12,81,(4:00) (Shotgun) B.Gabbert pass short middle to J.Blackmon to JAX 18 for -1 yards (V.Burfict).,7,10,2012 -20120930_CIN@JAC,2,33,25,JAC,CIN,4,13,82,(3:25) (Punt formation) B.Anger punts 42 yards to CIN 40 Center-J.Cain out of bounds.,7,10,2012 -20120930_CIN@JAC,2,33,17,CIN,JAC,1,10,60,(3:17) B.Green-Ellis up the middle to CIN 49 for 9 yards (P.Posluszny).,10,7,2012 -20120930_CIN@JAC,2,32,51,CIN,JAC,2,1,51,(2:51) (No Huddle) B.Green-Ellis up the middle to JAX 42 for 9 yards (P.Posluszny).,10,7,2012 -20120930_CIN@JAC,2,32,28,CIN,JAC,1,10,42,(2:28) (No Huddle) B.Green-Ellis left end to JAX 43 for -1 yards (J.Mincey).,10,7,2012 -20120930_CIN@JAC,2,32,0,CIN,JAC,2,11,43,(2:00) (Shotgun) A.Dalton pass deep right to A.Green pushed ob at JAX 1 for 42 yards (R.Mathis).,10,7,2012 -20120930_CIN@JAC,2,31,53,CIN,JAC,1,1,1,(1:53) B.Green-Ellis left guard to JAX 1 for no gain (T.Knighton).,10,7,2012 -20120930_CIN@JAC,2,31,15,CIN,JAC,2,1,1,(1:15) A.Dalton up the middle for 1 yard TOUCHDOWN.,10,7,2012 -20120930_CIN@JAC,2,31,15,CIN,JAC,,,1,(Kick formation) M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,10,7,2012 -20120930_CIN@JAC,2,31,15,CIN,JAC,,,1,M.Nugent kicks 74 yards from CIN 35 to JAX -9. R.Jennings Touchback.,17,7,2012 -20120930_CIN@JAC,2,31,11,JAC,CIN,1,10,80,(1:11) (Shotgun) B.Gabbert scrambles up the middle to JAX 23 for 3 yards.,7,17,2012 -20120930_CIN@JAC,2,30,51,JAC,CIN,2,7,77,(:51) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 30 for 7 yards (V.Burfict).,7,17,2012 -20120930_CIN@JAC,2,30,43,JAC,CIN,1,10,70,(:43) (Shotgun) B.Gabbert pass incomplete short middle to M.Thomas [G.Atkins].,7,17,2012 -20120930_CIN@JAC,2,30,39,JAC,CIN,2,10,70,(:39) (Shotgun) B.Gabbert pass short right to M.Thomas pushed ob at JAX 39 for 9 yards (C.Crocker).,7,17,2012 -20120930_CIN@JAC,2,30,31,JAC,CIN,3,1,61,(:31) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (T.Newman).,7,17,2012 -20120930_CIN@JAC,2,30,27,JAC,CIN,4,1,61,(:27) (Punt formation) B.Anger punts 61 yards to end zone Center-J.Cain Touchback.,7,17,2012 -20120930_CIN@JAC,2,30,4,CIN,JAC,1,10,80,(:04) A.Dalton kneels to CIN 19 for -1 yards.,17,7,2012 -20120930_CIN@JAC,3,30,0,JAC,CIN,,,80,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,7,17,2012 -20120930_CIN@JAC,3,30,0,CIN,JAC,1,10,80,(15:00) A.Dalton pass short left to J.Gresham to CIN 36 for 16 yards (D.Cox).,17,7,2012 -20120930_CIN@JAC,3,29,34,CIN,JAC,1,10,64,(14:34) B.Green-Ellis up the middle to CIN 40 for 4 yards (P.Posluszny; T.Alualu).,17,7,2012 -20120930_CIN@JAC,3,28,51,CIN,JAC,2,6,60,(13:51) (Shotgun) A.Dalton pass deep right to A.Green pushed ob at JAX 30 for 30 yards (R.Mathis).,17,7,2012 -20120930_CIN@JAC,3,28,26,CIN,JAC,1,10,30,(13:26) B.Green-Ellis up the middle to JAX 28 for 2 yards (D.Landry).,17,7,2012 -20120930_CIN@JAC,3,27,52,CIN,JAC,2,8,28,(12:52) A.Dalton pass short left to A.Green to JAX 20 for 8 yards (D.Cox).,17,7,2012 -20120930_CIN@JAC,3,27,20,CIN,JAC,1,10,20,(12:20) A.Dalton pass short middle to A.Green to JAX 6 for 14 yards (D.Lowery).,17,7,2012 -20120930_CIN@JAC,3,26,43,CIN,JAC,1,6,6,(11:43) A.Dalton pass incomplete short right to A.Green.,17,7,2012 -20120930_CIN@JAC,3,26,40,CIN,JAC,2,6,6,(11:40) (Shotgun) A.Dalton pass short left to A.Green to JAX 1 for 5 yards (R.Allen; P.Posluszny).,17,7,2012 -20120930_CIN@JAC,3,26,7,CIN,JAC,3,1,1,(11:07) B.Green-Ellis left end to JAX 1 for no gain (J.Mincey). FUMBLES (J.Mincey) RECOVERED by JAX-C.Mosley at JAX 0. Touchback.,17,7,2012 -20120930_CIN@JAC,3,25,59,JAC,CIN,1,10,80,(10:59) M.Jones-Drew up the middle to JAX 24 for 4 yards (D.Peko).,7,17,2012 -20120930_CIN@JAC,3,25,17,JAC,CIN,2,6,76,(10:17) B.Gabbert pass short right to G.Jones to JAX 29 for 5 yards (T.Mays).,7,17,2012 -20120930_CIN@JAC,3,24,43,JAC,CIN,3,1,71,(9:43) (Shotgun) B.Gabbert pass short left to J.Blackmon ran ob at JAX 34 for 5 yards.,7,17,2012 -20120930_CIN@JAC,3,24,17,JAC,CIN,1,10,66,(9:17) B.Gabbert pass deep middle to L.Robinson to CIN 47 for 19 yards (A.Jones). JAX-L.Robinson was injured during the play. His return is Questionable.,7,17,2012 -20120930_CIN@JAC,3,23,47,JAC,CIN,1,10,47,(8:47) B.Gabbert pass short right to J.Blackmon to CIN 33 for 14 yards (T.Newman).,7,17,2012 -20120930_CIN@JAC,3,23,9,JAC,CIN,1,10,33,(8:09) M.Jones-Drew up the middle to CIN 31 for 2 yards (R.Geathers).,7,17,2012 -20120930_CIN@JAC,3,22,26,JAC,CIN,2,8,31,(7:26) B.Gabbert pass short right to J.Blackmon to CIN 22 for 9 yards (T.Newman).,7,17,2012 -20120930_CIN@JAC,3,21,43,JAC,CIN,1,10,22,(6:43) B.Gabbert scrambles up the middle to CIN 15 for 7 yards (V.Burfict).,7,17,2012 -20120930_CIN@JAC,3,20,58,JAC,CIN,2,3,15,(5:58) M.Jones-Drew up the middle to CIN 13 for 2 yards (R.Geathers; D.Peko).,7,17,2012 -20120930_CIN@JAC,3,20,12,JAC,CIN,3,1,13,(5:12) M.Jones-Drew up the middle to CIN 12 for 1 yard (M.Lawson).,7,17,2012 -20120930_CIN@JAC,3,19,39,JAC,CIN,1,10,12,(4:39) B.Gabbert pass incomplete short right to C.Shorts.,7,17,2012 -20120930_CIN@JAC,3,19,32,JAC,CIN,2,10,12,(4:32) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to CIN 8 for 4 yards (R.Nelson).,7,17,2012 -20120930_CIN@JAC,3,18,50,JAC,CIN,3,6,8,(3:50) (Shotgun) B.Gabbert pass short left to K.Elliott to CIN 3 for 5 yards (A.Jones).,7,17,2012 -20120930_CIN@JAC,3,18,8,JAC,CIN,4,1,3,(3:08) (Field Goal formation) J.Scobee 21 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,7,17,2012 -20120930_CIN@JAC,3,18,8,JAC,CIN,,,3,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,10,17,2012 -20120930_CIN@JAC,3,18,4,CIN,JAC,1,10,80,(3:04) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 33 for 13 yards (D.Cox; P.Posluszny).,17,10,2012 -20120930_CIN@JAC,3,17,24,CIN,JAC,1,10,67,(2:24) B.Green-Ellis up the middle to CIN 34 for 1 yard (T.Alualu; R.Allen).,17,10,2012 -20120930_CIN@JAC,3,16,51,CIN,JAC,2,9,66,(1:51) (Shotgun) A.Dalton scrambles up the middle to CIN 36 for 2 yards (A.Branch).,17,10,2012 -20120930_CIN@JAC,3,16,8,CIN,JAC,3,7,64,(1:08) (Shotgun) A.Dalton pass short right to A.Hawkins to JAX 33 for 31 yards (P.Posluszny).,17,10,2012 -20120930_CIN@JAC,3,15,28,CIN,JAC,1,10,33,(:28) A.Dalton pass short right to J.Gresham to JAX 28 for 5 yards (P.Posluszny).,17,10,2012 -20120930_CIN@JAC,4,15,0,CIN,JAC,2,5,28,(15:00) (Shotgun) A.Dalton pass short right to J.Gresham to JAX 21 for 7 yards (D.Lowery).,17,10,2012 -20120930_CIN@JAC,4,14,36,CIN,JAC,1,10,21,(14:36) B.Green-Ellis up the middle to JAX 18 for 3 yards (J.Mincey).,17,10,2012 -20120930_CIN@JAC,4,13,57,CIN,JAC,2,7,18,(13:57) (Shotgun) A.Dalton pass deep right to A.Green for 18 yards TOUCHDOWN.,17,10,2012 -20120930_CIN@JAC,4,13,57,,JAC,,,18,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,10,2012 -20120930_CIN@JAC,4,13,57,CIN,JAC,,,18,M.Nugent kicks 72 yards from CIN 35 to JAX -7. R.Jennings Touchback.,24,10,2012 -20120930_CIN@JAC,4,13,51,JAC,CIN,1,10,80,(13:51) B.Gabbert pass deep middle intended for J.Blackmon INTERCEPTED by C.Crocker at JAX 39. C.Crocker pushed ob at JAX 16 for 23 yards (M.Lewis).,10,24,2012 -20120930_CIN@JAC,4,13,39,CIN,JAC,1,10,16,(13:39) B.Green-Ellis up the middle to JAX 16 for no gain (K.Bosworth; R.Allen).,24,10,2012 -20120930_CIN@JAC,4,12,53,CIN,JAC,2,10,16,(12:53) A.Dalton pass incomplete deep right to A.Binns.,24,10,2012 -20120930_CIN@JAC,4,12,47,CIN,JAC,3,10,16,(12:47) (Shotgun) A.Dalton pass incomplete deep left to A.Binns.,24,10,2012 -20120930_CIN@JAC,4,12,42,CIN,JAC,4,10,16,(12:42) M.Nugent 35 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,24,10,2012 -20120930_CIN@JAC,4,12,42,CIN,JAC,,,16,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,27,10,2012 -20120930_CIN@JAC,4,12,38,JAC,CIN,1,10,80,(12:38) B.Gabbert pass incomplete short right to C.Shorts.,10,27,2012 -20120930_CIN@JAC,4,12,29,JAC,CIN,2,10,80,(12:29) (Shotgun) B.Gabbert sacked at JAX 9 for -11 yards (V.Burfict).,10,27,2012 -20120930_CIN@JAC,4,12,13,JAC,CIN,3,21,91,(12:13) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 22 for 13 yards (R.Nelson).,10,27,2012 -20120930_CIN@JAC,4,11,44,JAC,CIN,4,8,78,(11:44) B.Anger punts 43 yards to CIN 35 Center-J.Cain. B.Tate to JAX 46 for 19 yards (A.Morgan).,10,27,2012 -20120930_CIN@JAC,4,11,34,CIN,JAC,1,10,46,(11:34) B.Green-Ellis right end to JAX 46 for no gain (A.Lane).,27,10,2012 -20120930_CIN@JAC,4,10,53,CIN,JAC,2,10,46,(10:53) B.Green-Ellis up the middle to JAX 40 for 6 yards (C.Mosley).,27,10,2012 -20120930_CIN@JAC,4,10,10,CIN,JAC,3,4,40,(10:10) A.Dalton pass incomplete deep left to A.Green.,27,10,2012 -20120930_CIN@JAC,4,10,3,CIN,JAC,4,4,40,(10:03) K.Huber punts 36 yards to JAX 4 Center-C.Harris downed by CIN-A.Hawkins.,27,10,2012 -20120930_CIN@JAC,4,9,55,JAC,CIN,1,10,96,(9:55) B.Gabbert pass short middle to M.Lewis to JAX 11 for 7 yards (M.Lawson).,10,27,2012 -20120930_CIN@JAC,4,9,16,JAC,CIN,2,3,89,(9:16) M.Jones-Drew up the middle to JAX 17 for 6 yards (R.Maualuga).,10,27,2012 -20120930_CIN@JAC,4,8,45,JAC,CIN,1,10,83,(8:45) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to JAX 27 for 10 yards (R.Maualuga).,10,27,2012 -20120930_CIN@JAC,4,8,18,JAC,CIN,1,10,73,(8:18) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott.,10,27,2012 -20120930_CIN@JAC,4,8,15,JAC,CIN,2,10,73,(8:15) (Shotgun) B.Gabbert sacked at JAX 24 for -3 yards (G.Atkins).,10,27,2012 -20120930_CIN@JAC,4,7,43,JAC,CIN,3,13,76,(7:43) (Shotgun) B.Gabbert pass short middle to C.Shorts to JAX 32 for 8 yards (V.Rey).,10,27,2012 -20120930_CIN@JAC,4,7,8,JAC,CIN,4,5,68,(7:08) B.Anger punts 44 yards to CIN 24 Center-J.Cain fair catch by B.Tate.,10,27,2012 -20120930_CIN@JAC,4,7,2,CIN,JAC,1,10,76,(7:02) B.Green-Ellis up the middle to CIN 25 for 1 yard (J.Mincey). FUMBLES (J.Mincey) and recovers at CIN 25. B.Green-Ellis to CIN 25 for no gain (R.Allen).,27,10,2012 -20120930_CIN@JAC,4,6,19,CIN,JAC,2,9,75,(6:19) B.Green-Ellis up the middle to CIN 27 for 2 yards (P.Posluszny).,27,10,2012 -20120930_CIN@JAC,4,5,36,CIN,JAC,3,7,73,(5:36) (Shotgun) B.Leonard up the middle to CIN 30 for 3 yards (DA.Smith; T.Knighton).,27,10,2012 -20120930_CIN@JAC,4,5,1,CIN,JAC,4,4,70,(5:01) K.Huber punts 49 yards to JAX 21 Center-C.Harris downed by CIN-A.Hawkins.,27,10,2012 -20120930_CIN@JAC,4,4,47,JAC,CIN,1,10,79,(4:47) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott (A.Jones). Heavy rain began on this play.,10,27,2012 -20120930_CIN@JAC,4,4,43,JAC,CIN,2,10,79,(4:43) (Shotgun) B.Gabbert pass incomplete short left to J.Blackmon (V.Burfict).,10,27,2012 -20120930_CIN@JAC,4,4,38,JAC,CIN,3,10,79,(4:38) (Shotgun) B.Gabbert sacked at JAX 17 for -4 yards (G.Atkins).,10,27,2012 -20120930_CIN@JAC,4,4,38,JAC,CIN,4,14,83,(4:38) B.Gabbert pass short middle to M.Jones-Drew to JAX 26 for 9 yards (R.Geathers).,10,27,2012 -20120930_CIN@JAC,4,3,43,CIN,JAC,1,10,26,(3:43) B.Green-Ellis up the middle to JAX 19 for 7 yards (P.Posluszny).,27,10,2012 -20120930_CIN@JAC,4,3,2,CIN,JAC,2,3,19,(3:02) B.Green-Ellis right end to JAX 17 for 2 yards (D.Landry).,27,10,2012 -20120930_CIN@JAC,4,2,21,CIN,JAC,3,1,17,(2:21) B.Green-Ellis up the middle to JAX 14 for 3 yards (P.Posluszny).,27,10,2012 -20120930_CIN@JAC,4,2,0,CIN,JAC,1,10,14,(2:00) B.Green-Ellis right end to JAX 11 for 3 yards (D.Landry).,27,10,2012 -20120930_CIN@JAC,4,1,17,CIN,JAC,2,7,11,(1:17) A.Dalton kneels to JAX 12 for -1 yards.,27,10,2012 -20120930_CIN@JAC,4,0,36,CIN,JAC,3,8,12,(:36) A.Dalton kneels to JAX 13 for -1 yards.,27,10,2012 -20120930_CIN@JAC,4,0,36,CIN,JAC,,,12,                      ,27,10,2012 -20120930_NO@GB,1,0,0,NO,GB,,,12,T.Morstead kicks 66 yards from NO 35 to GB -1. R.Cobb to GB 23 for 24 yards (T.Cadet).,0,0,2012 -20120930_NO@GB,1,59,55,GB,NO,1,10,77,(14:55) C.Benson up the middle to GB 25 for 2 yards (W.Herring).,0,0,2012 -20120930_NO@GB,1,59,24,GB,NO,2,8,75,(14:24) C.Benson left end to GB 30 for 5 yards (J.Greer).,0,0,2012 -20120930_NO@GB,1,58,42,GB,NO,3,3,70,(13:42) (Shotgun) A.Rodgers pass short right to Ja.Jones to GB 32 for 2 yards (J.Greer).,0,0,2012 -20120930_NO@GB,1,57,53,GB,NO,4,1,68,(12:53) T.Masthay punts 47 yards to NO 21 Center-B.Goode. D.Sproles to NO 25 for 4 yards (R.Taylor).,0,0,2012 -20120930_NO@GB,1,57,42,NO,GB,1,10,75,(12:42) (Shotgun) D.Brees pass short right to M.Colston to NO 31 for 6 yards (T.Williams; D.Smith).,0,0,2012 -20120930_NO@GB,1,57,10,NO,GB,2,4,69,(12:10) P.Thomas right tackle to NO 34 for 3 yards (M.Burnett; J.McMillian).,0,0,2012 -20120930_NO@GB,1,56,46,NO,GB,3,1,66,(11:46) (No Huddle) P.Thomas right tackle to NO 34 for no gain (C.Matthews).,0,0,2012 -20120930_NO@GB,1,56,13,NO,GB,4,1,66,(11:13) T.Morstead punts 28 yards to GB 38 Center-J.Drescher out of bounds.,0,0,2012 -20120930_NO@GB,1,56,6,GB,NO,1,10,62,(11:06) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at NO 47 for 15 yards (P.Robinson).,0,0,2012 -20120930_NO@GB,1,55,52,GB,NO,1,10,47,(10:52) (No Huddle Shotgun) C.Benson right tackle to NO 42 for 5 yards (S.Shanle; C.Jordan).,0,0,2012 -20120930_NO@GB,1,55,23,GB,NO,2,5,42,(10:23) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley pushed ob at NO 30 for 12 yards (R.Harper).,0,0,2012 -20120930_NO@GB,1,54,57,GB,NO,1,10,30,(9:57) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to G.Jennings.,0,0,2012 -20120930_NO@GB,1,54,53,GB,NO,2,10,30,(9:53) (No Huddle Shotgun) A.Rodgers pass short middle to J.Nelson to NO 12 for 18 yards (R.Harper).,0,0,2012 -20120930_NO@GB,1,54,14,GB,NO,1,10,12,(9:14) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (S.Shanle).,0,0,2012 -20120930_NO@GB,1,54,9,GB,NO,2,10,12,(9:09) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones for 12 yards TOUCHDOWN.,0,0,2012 -20120930_NO@GB,1,54,9,,GB,,,12,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20120930_NO@GB,1,54,9,GB,NO,,,12,M.Crosby kicks 74 yards from GB 35 to NO -9. D.Sproles Touchback.,7,0,2012 -20120930_NO@GB,1,54,2,NO,GB,1,10,80,(9:02) M.Ingram right tackle to NO 23 for 3 yards (C.Woodson T.Williams).,0,7,2012 -20120930_NO@GB,1,53,34,NO,GB,2,7,77,(8:34) (Shotgun) D.Brees pass short right to D.Sproles to NO 29 for 6 yards (C.Woodson).,0,7,2012 -20120930_NO@GB,1,52,56,NO,GB,3,1,71,(7:56) D.Brees pass short right to J.Graham to NO 35 for 6 yards (C.Woodson).,0,7,2012 -20120930_NO@GB,1,52,14,NO,GB,1,10,65,(7:14) (Shotgun) D.Brees pass short left to D.Thomas to NO 41 for 6 yards (M.Burnett; C.Hayward).,0,7,2012 -20120930_NO@GB,1,51,42,NO,GB,2,4,59,(6:42) (Shotgun) D.Brees pass short right to L.Moore ran ob at GB 49 for 10 yards (T.Williams).,0,7,2012 -20120930_NO@GB,1,51,19,NO,GB,1,10,49,(6:19) M.Ingram up the middle to GB 44 for 5 yards (A.Hawk). PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at GB 49 - No Play.,0,7,2012 -20120930_NO@GB,1,50,57,NO,GB,1,20,59,(5:57) (Shotgun) D.Brees pass short middle to J.Graham to GB 35 for 24 yards (M.Jennings C.Woodson).,0,7,2012 -20120930_NO@GB,1,50,24,NO,GB,1,10,35,(5:24) D.Sproles right guard to GB 31 for 4 yards (J.Worthy M.Burnett).,0,7,2012 -20120930_NO@GB,1,49,49,NO,GB,2,6,31,(4:49) (Shotgun) D.Brees pass short middle to J.Graham to GB 19 for 12 yards (M.Burnett; T.Williams).,0,7,2012 -20120930_NO@GB,1,48,38,NO,GB,2,11,20,(3:38) D.Brees pass deep left to M.Colston for 20 yards TOUCHDOWN.,0,7,2012 -20120930_NO@GB,1,48,38,NO,GB,,,20,G.Hartley extra point is GOOD.,0,7,2012 -20120930_NO@GB,1,48,38,NO,GB,,,20,T.Morstead kicks 74 yards from NO 35 to GB -9. R.Cobb Touchback.,7,7,2012 -20120930_NO@GB,1,48,33,GB,NO,1,10,80,(3:33) A.Rodgers pass incomplete short middle to G.Jennings.,7,7,2012 -20120930_NO@GB,1,48,28,GB,NO,2,10,80,(3:28) (No Huddle) C.Benson left end to GB 24 for 4 yards (M.Jenkins C.Lofton).,7,7,2012 -20120930_NO@GB,1,47,52,GB,NO,3,6,76,(2:52) (No Huddle Shotgun) A.Rodgers right end ran ob at GB 31 for 7 yards (C.Lofton).,7,7,2012 -20120930_NO@GB,1,47,28,GB,NO,1,10,69,(2:28) (No Huddle) A.Rodgers pass short left to R.Cobb pushed ob at GB 36 for 5 yards (M.Jenkins).,7,7,2012 -20120930_NO@GB,1,47,8,GB,NO,2,5,64,(2:08) (No Huddle Shotgun) C.Benson right guard to GB 43 for 7 yards (C.Lofton).,7,7,2012 -20120930_NO@GB,1,46,42,GB,NO,1,10,57,(1:42) (No Huddle Shotgun) A.Rodgers pass short right to C.Benson to GB 45 for 2 yards (C.Lofton).,7,7,2012 -20120930_NO@GB,1,46,15,GB,NO,2,8,55,(1:15) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to NO 45 for 10 yards (J.Greer).,7,7,2012 -20120930_NO@GB,1,45,46,GB,NO,1,10,45,(:46) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to NO 25 for 20 yards (I.Abdul-Quddus).,7,7,2012 -20120930_NO@GB,1,45,10,GB,NO,1,10,25,(:10) (No Huddle) A.Rodgers pass short left to D.Driver to NO 22 for 3 yards (M.Jenkins).,7,7,2012 -20120930_NO@GB,2,45,0,GB,NO,2,7,22,(15:00) (Shotgun) PENALTY on NO-J.Galette Neutral Zone Infraction 5 yards enforced at NO 22 - No Play.,7,7,2012 -20120930_NO@GB,2,45,0,GB,NO,2,2,17,(15:00) (Shotgun) A.Rodgers pass short left to J.Finley to NO 9 for 8 yards (R.Harper I.Abdul-Quddus).,7,7,2012 -20120930_NO@GB,2,44,22,GB,NO,1,9,9,(14:22) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings for 9 yards TOUCHDOWN.,7,7,2012 -20120930_NO@GB,2,44,22,GB,NO,,,9,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,7,2012 -20120930_NO@GB,2,44,22,GB,NO,,,9,M.Crosby kicks 69 yards from GB 35 to NO -4. D.Sproles to NO 28 for 32 yards (S.Shields; J.Bush).,14,7,2012 -20120930_NO@GB,2,44,10,NO,GB,1,10,72,(14:10) D.Brees pass incomplete short right to L.Moore.,7,14,2012 -20120930_NO@GB,2,44,3,NO,GB,2,10,72,(14:03) (Shotgun) D.Brees pass short left to P.Thomas to NO 31 for 3 yards (S.Shields D.Smith).,7,14,2012 -20120930_NO@GB,2,43,19,NO,GB,3,7,69,(13:19) (Shotgun) D.Brees pass short middle to J.Graham to NO 40 for 9 yards (M.Burnett).,7,14,2012 -20120930_NO@GB,2,42,47,NO,GB,1,10,60,(12:47) M.Ingram right tackle to NO 42 for 2 yards (D.Smith C.Matthews).,7,14,2012 -20120930_NO@GB,2,42,13,NO,GB,2,8,58,(12:13) D.Brees pass short middle to M.Colston to GB 41 for 17 yards (M.Jennings). GB-M.Jennings was injured during the play.,7,14,2012 -20120930_NO@GB,2,41,50,NO,GB,1,10,41,(11:50) P.Thomas right tackle to GB 40 for 1 yard (A.Hawk M.Burnett).,7,14,2012 -20120930_NO@GB,2,41,13,NO,GB,2,9,40,(11:13) D.Brees pass incomplete short middle to L.Moore (T.Williams).,7,14,2012 -20120930_NO@GB,2,41,10,NO,GB,3,9,40,(11:10) (Shotgun) D.Brees pass incomplete short middle to M.Colston (C.Hayward).,7,14,2012 -20120930_NO@GB,2,41,5,NO,GB,4,9,40,(11:05) T.Morstead punts 32 yards to GB 8 Center-J.Drescher fair catch by R.Cobb.,7,14,2012 -20120930_NO@GB,2,40,58,GB,NO,1,10,92,(10:58) C.Benson left tackle to GB 12 for 4 yards (A.Hicks; S.Shanle).,14,7,2012 -20120930_NO@GB,2,40,15,GB,NO,2,6,88,(10:15) A.Rodgers left end to GB 15 for 3 yards (W.Smith). PENALTY on GB-J.Sitton Illegal Use of Hands 6 yards enforced at GB 12 - No Play.,14,7,2012 -20120930_NO@GB,2,39,51,GB,NO,2,12,94,(9:51) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson (P.Robinson). Green Bay challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),14,7,2012 -20120930_NO@GB,2,39,43,GB,NO,3,12,94,(9:43) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 17 for 11 yards (M.Wilson).,14,7,2012 -20120930_NO@GB,2,39,27,GB,NO,4,1,83,(9:27) (Punt formation) J.Kuhn left guard to GB 22 for 5 yards (I.Abdul-Quddus).,14,7,2012 -20120930_NO@GB,2,38,43,GB,NO,1,10,78,(8:43) (Shotgun) C.Benson left end to GB 25 for 3 yards (W.Smith).,14,7,2012 -20120930_NO@GB,2,38,15,GB,NO,2,7,75,(8:15) (No Huddle) A.Rodgers pass incomplete short right to J.Nelson. PENALTY on NO-P.Robinson Defensive Holding 5 yards enforced at GB 25 - No Play.,14,7,2012 -20120930_NO@GB,2,38,9,GB,NO,1,10,70,(8:09) (Shotgun) C.Benson left tackle to GB 35 for 5 yards (C.Lofton; S.Ellis).,14,7,2012 -20120930_NO@GB,2,37,38,GB,NO,2,5,65,(7:38) (No Huddle) C.Benson right guard to GB 42 for 7 yards (R.Harper).,14,7,2012 -20120930_NO@GB,2,37,7,GB,NO,1,10,58,(7:07) (No Huddle) C.Benson right end to GB 47 for 5 yards (M.Jenkins).,14,7,2012 -20120930_NO@GB,2,36,33,GB,NO,2,5,53,(6:33) (No Huddle) A.Rodgers pass short left to R.Cobb to NO 45 for 8 yards (M.Jenkins). PENALTY on NO-M.Jenkins Face Mask (15 Yards) 15 yards enforced at NO 45.,14,7,2012 -20120930_NO@GB,2,36,12,GB,NO,1,10,30,(6:12) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to NO 19 for 11 yards (R.Harper).,14,7,2012 -20120930_NO@GB,2,35,28,GB,NO,1,10,19,(5:28) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to NO 14 for 5 yards (C.Jordan; M.Jenkins) [W.Smith].,14,7,2012 -20120930_NO@GB,2,34,56,GB,NO,2,5,14,(4:56) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson (P.Robinson).,14,7,2012 -20120930_NO@GB,2,34,53,GB,NO,3,5,14,(4:53) (Shotgun) A.Rodgers pass short middle to Ja.Jones for 14 yards TOUCHDOWN.,14,7,2012 -20120930_NO@GB,2,34,53,GB,NO,,,14,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,7,2012 -20120930_NO@GB,2,34,53,GB,NO,,,14,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,21,7,2012 -20120930_NO@GB,2,34,50,NO,GB,1,10,80,(4:50) (Shotgun) D.Brees pass short middle to M.Colston to NO 34 for 14 yards (M.Burnett).,7,21,2012 -20120930_NO@GB,2,34,22,NO,GB,1,10,66,(4:22) (No Huddle Shotgun) D.Brees pass incomplete deep middle to L.Moore. PENALTY on NO-M.Colston Illegal Formation 5 yards enforced at NO 34 - No Play.,7,21,2012 -20120930_NO@GB,2,34,16,NO,GB,1,15,71,(4:16) (Shotgun) D.Brees pass short right to D.Henderson pushed ob at NO 39 for 10 yards (T.Williams).,7,21,2012 -20120930_NO@GB,2,33,53,NO,GB,2,5,61,(3:53) (Shotgun) D.Brees pass short right to D.Sproles to NO 43 for 4 yards (C.Hayward).,7,21,2012 -20120930_NO@GB,2,33,19,NO,GB,3,1,57,(3:19) (Shotgun) D.Brees pass short right to L.Moore ran ob at NO 45 for 2 yards (T.Williams).,7,21,2012 -20120930_NO@GB,2,33,6,NO,GB,1,10,55,(3:06) M.Ingram left guard to NO 47 for 2 yards (B.Raji; J.Worthy).,7,21,2012 -20120930_NO@GB,2,32,26,NO,GB,2,8,53,(2:26) D.Brees pass incomplete deep middle to M.Colston. PENALTY on GB-B.Raji Defensive Offside 5 yards enforced at NO 47 - No Play.,7,21,2012 -20120930_NO@GB,2,32,22,NO,GB,2,3,48,(2:22) P.Thomas right tackle to GB 46 for 2 yards (C.Woodson; M.Burnett).,7,21,2012 -20120930_NO@GB,2,32,0,NO,GB,3,1,46,(2:00) D.Brees pass short middle to J.Graham to GB 40 for 6 yards (C.Woodson).,7,21,2012 -20120930_NO@GB,2,31,39,NO,GB,1,10,40,(1:39) (No Huddle Shotgun) D.Brees pass incomplete deep right to L.Moore.,7,21,2012 -20120930_NO@GB,2,31,32,NO,GB,2,10,40,(1:32) (Shotgun) D.Brees pass short right to D.Sproles to GB 20 for 20 yards (C.Woodson E.Walden).,7,21,2012 -20120930_NO@GB,2,30,58,NO,GB,1,10,20,(:58) (No Huddle Shotgun) D.Brees pass short middle to L.Moore to GB 11 for 9 yards (C.Hayward).,7,21,2012 -20120930_NO@GB,2,30,40,NO,GB,2,1,11,(:40) (No Huddle Shotgun) D.Brees pass short middle to M.Colston to GB 6 for 5 yards (D.Smith).,7,21,2012 -20120930_NO@GB,2,30,33,NO,GB,1,6,6,(:33) (Shotgun) D.Brees pass short left to D.Sproles for 6 yards TOUCHDOWN.,7,21,2012 -20120930_NO@GB,2,30,33,NO,GB,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,21,2012 -20120930_NO@GB,2,30,33,NO,GB,,,6,T.Morstead kicks 70 yards from NO 35 to GB -5. R.Cobb to GB 25 for 30 yards (M.Wilson).,14,21,2012 -20120930_NO@GB,2,30,21,GB,NO,1,10,75,(:21) (Shotgun) C.Benson right end to GB 29 for 4 yards (R.Harper W.Smith).,21,14,2012 -20120930_NO@GB,3,30,0,GB,NO,,,75,M.Crosby kicks 63 yards from GB 35 to NO 2. D.Sproles pushed ob at NO 26 for 24 yards (J.Bush).,21,14,2012 -20120930_NO@GB,3,29,54,NO,GB,1,10,74,(14:54) D.Brees pass incomplete short right to M.Colston (C.Woodson).,14,21,2012 -20120930_NO@GB,3,29,49,NO,GB,2,10,74,(14:49) (Shotgun) D.Brees pass incomplete short left to L.Moore.,14,21,2012 -20120930_NO@GB,3,29,44,NO,GB,3,10,74,(14:44) (Shotgun) PENALTY on GB-J.Worthy Encroachment 5 yards enforced at NO 26 - No Play.,14,21,2012 -20120930_NO@GB,3,29,44,NO,GB,3,5,69,(14:44) (Shotgun) D.Brees pass short middle to J.Graham to NO 39 for 8 yards (M.Burnett). Green Bay challenged the pass completion ruling and the play was Upheld. (Timeout #1.),14,21,2012 -20120930_NO@GB,3,29,17,NO,GB,1,10,61,(14:17) P.Thomas up the middle to NO 40 for 1 yard (R.Pickett; A.Hawk).,14,21,2012 -20120930_NO@GB,3,28,41,NO,GB,2,9,60,(13:41) D.Brees pass short left to M.Colston to GB 34 for 26 yards (S.Shields).,14,21,2012 -20120930_NO@GB,3,28,1,NO,GB,1,10,34,(13:01) P.Thomas left guard to GB 32 for 2 yards (C.Woodson).,14,21,2012 -20120930_NO@GB,3,27,26,NO,GB,2,8,32,(12:26) (Shotgun) D.Sproles right end to GB 30 for 2 yards (C.Hayward; N.Perry).,14,21,2012 -20120930_NO@GB,3,26,50,NO,GB,3,6,30,(11:50) (Shotgun) D.Brees pass deep right to L.Moore pushed ob at GB 11 for 19 yards (T.Williams).,14,21,2012 -20120930_NO@GB,3,26,24,NO,GB,1,10,11,(11:24) D.Brees pass incomplete short left to D.Thomas (D.Smith).,14,21,2012 -20120930_NO@GB,3,26,19,NO,GB,2,10,11,(11:19) D.Brees pass incomplete short middle to L.Moore (M.Burnett).,14,21,2012 -20120930_NO@GB,3,26,15,NO,GB,3,10,11,(11:15) (Shotgun) D.Brees pass short middle to D.Sproles to GB 3 for 8 yards (C.Hayward; C.Matthews).,14,21,2012 -20120930_NO@GB,3,24,49,NO,GB,2,2,2,(9:49) D.Brees pass incomplete short right to M.Colston.,14,21,2012 -20120930_NO@GB,3,24,46,NO,GB,3,2,2,(9:46) D.Brees pass incomplete short right to J.Graham (T.Williams).,14,21,2012 -20120930_NO@GB,3,24,43,NO,GB,4,2,2,(9:43) G.Hartley 20 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,21,2012 -20120930_NO@GB,3,24,43,NO,GB,,,2,T.Morstead kicks 73 yards from NO 35 to GB -8. R.Cobb Touchback.,17,21,2012 -20120930_NO@GB,3,24,41,GB,NO,1,10,80,(9:41) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 31 for 11 yards (C.Lofton).,21,17,2012 -20120930_NO@GB,3,24,20,GB,NO,1,10,69,(9:20) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to GB 35 for 4 yards (C.Lofton S.Shanle).,21,17,2012 -20120930_NO@GB,3,23,50,GB,NO,2,6,65,(8:50) (No Huddle Shotgun) A.Rodgers pass deep left to Ja.Jones ran ob at NO 45 for 20 yards (J.Greer).,21,17,2012 -20120930_NO@GB,3,23,41,GB,NO,1,10,45,(8:41) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to D.Driver (C.White). PENALTY on NO-C.Jordan Illegal Use of Hands 5 yards enforced at NO 45 - No Play.,21,17,2012 -20120930_NO@GB,3,23,36,GB,NO,1,10,40,(8:36) (No Huddle Shotgun) C.Benson left tackle to NO 37 for 3 yards (C.Lofton).,21,17,2012 -20120930_NO@GB,3,23,1,GB,NO,2,7,37,(8:01) (No Huddle Shotgun) A.Rodgers pass short right to J.Nelson to NO 25 for 12 yards (C.White).,21,17,2012 -20120930_NO@GB,3,22,30,GB,NO,1,10,25,(7:30) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to NO 11 for 14 yards (S.Shanle).,21,17,2012 -20120930_NO@GB,3,21,56,GB,NO,1,10,11,(6:56) (No Huddle Shotgun) C.Benson right guard to NO 8 for 3 yards (M.Jenkins).,21,17,2012 -20120930_NO@GB,3,21,13,GB,NO,2,7,8,(6:13) (Shotgun) A.Rodgers pass short left to J.Nelson to NO 4 for 4 yards (J.Greer).,21,17,2012 -20120930_NO@GB,3,20,26,GB,NO,3,3,4,(5:26) (Shotgun) A.Rodgers pass incomplete short right to D.Driver (C.White). GB-A.Rodgers was injured during the play. PENALTY on NO-M.Jenkins Face Mask (15 Yards) 2 yards enforced at NO 4 - No Play.,21,17,2012 -20120930_NO@GB,3,20,19,NO,GB,1,2,8,(5:19) G.Harrell FUMBLES (Aborted) at NO 7 RECOVERED by NO-M.Jenkins at NO 8. M.Jenkins to NO 8 for no gain (C.Benson).,17,21,2012 -20120930_NO@GB,3,20,10,NO,GB,1,10,92,(5:10) D.Sproles right tackle to NO 13 for 5 yards (N.Perry; M.Burnett).,17,21,2012 -20120930_NO@GB,3,19,39,NO,GB,2,5,87,(4:39) D.Brees pass incomplete short middle to L.Moore.,17,21,2012 -20120930_NO@GB,3,19,35,NO,GB,3,5,87,(4:35) (Shotgun) D.Brees pass short middle to L.Moore to NO 20 for 7 yards (S.Shields).,17,21,2012 -20120930_NO@GB,3,19,2,NO,GB,1,10,80,(4:02) D.Brees pass deep left to J.Morgan for 80 yards TOUCHDOWN.,17,21,2012 -20120930_NO@GB,3,19,2,NO,GB,,,80,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,21,2012 -20120930_NO@GB,3,19,2,NO,GB,,,80,T.Morstead kicks 73 yards from NO 35 to GB -8. R.Cobb Touchback.,24,21,2012 -20120930_NO@GB,3,18,49,GB,NO,1,10,80,(3:49) (Shotgun) C.Benson right end to GB 27 for 7 yards (I.Abdul-Quddus). PENALTY on GB-T.Crabtree Offensive Holding 10 yards enforced at GB 20 - No Play.,21,24,2012 -20120930_NO@GB,3,18,24,GB,NO,1,20,90,(3:24) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 26 for 16 yards (P.Robinson).,21,24,2012 -20120930_NO@GB,3,17,59,GB,NO,2,4,74,(2:59) (No Huddle Shotgun) A.Rodgers pass short right to T.Crabtree pushed ob at GB 42 for 16 yards (I.Abdul-Quddus).,21,24,2012 -20120930_NO@GB,3,17,41,GB,NO,1,10,58,(2:41) (No Huddle Shotgun) A.Rodgers pass deep right intended for J.Nelson INTERCEPTED by P.Robinson at NO 34. P.Robinson to NO 34 for no gain (J.Nelson).,21,24,2012 -20120930_NO@GB,3,17,35,NO,GB,1,10,66,(2:35) D.Brees pass short left to J.Collins to NO 46 for 12 yards (C.Matthews).,24,21,2012 -20120930_NO@GB,3,17,6,NO,GB,1,10,54,(2:06) M.Ingram right tackle to NO 49 for 3 yards (C.Woodson).,24,21,2012 -20120930_NO@GB,3,16,29,NO,GB,2,7,51,(1:29) (Shotgun) D.Brees sacked at NO 39 for -10 yards (C.Matthews).,24,21,2012 -20120930_NO@GB,3,15,50,NO,GB,3,17,61,(:50) (Shotgun) D.Brees pass deep middle to M.Colston to GB 38 for 23 yards (C.Woodson). GB-C.Woodson was injured during the play.,24,21,2012 -20120930_NO@GB,3,15,24,NO,GB,1,10,38,(:24) D.Sproles up the middle to GB 38 for no gain (C.Matthews).,24,21,2012 -20120930_NO@GB,4,15,0,NO,GB,2,10,38,(15:00) (Shotgun) D.Brees pass short left to P.Thomas to GB 42 for -4 yards (D.Smith).,24,21,2012 -20120930_NO@GB,4,14,25,NO,GB,3,14,42,(14:25) (Shotgun) D.Brees pass deep middle to M.Colston to GB 15 for 27 yards (M.Burnett; J.McMillian).,24,21,2012 -20120930_NO@GB,4,13,52,NO,GB,1,10,15,(13:52) P.Thomas right tackle to GB 9 for 6 yards (M.Burnett).,24,21,2012 -20120930_NO@GB,4,13,15,NO,GB,2,4,9,(13:15) D.Brees pass incomplete short right to P.Thomas.,24,21,2012 -20120930_NO@GB,4,13,12,NO,GB,3,4,9,(13:12) (Shotgun) D.Brees pass incomplete short left to D.Henderson.,24,21,2012 -20120930_NO@GB,4,13,7,NO,GB,4,4,9,(13:07) G.Hartley 27 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,24,21,2012 -20120930_NO@GB,4,13,7,NO,GB,,,9,T.Morstead kicks 65 yards from NO 35 to GB 0. R.Cobb ran ob at GB 34 for 34 yards (J.Patrick).,27,21,2012 -20120930_NO@GB,4,12,57,GB,NO,1,10,66,(12:57) (Shotgun) C.Benson left end pushed ob at GB 43 for 9 yards (R.Harper).,21,27,2012 -20120930_NO@GB,4,12,25,GB,NO,2,1,57,(12:25) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,21,27,2012 -20120930_NO@GB,4,12,17,GB,NO,3,1,57,(12:17) A.Rodgers left end ran ob at NO 47 for 10 yards (M.Jenkins).,21,27,2012 -20120930_NO@GB,4,11,48,GB,NO,1,10,47,(11:48) A.Rodgers pass incomplete deep right to Ja.Jones.,21,27,2012 -20120930_NO@GB,4,11,42,GB,NO,2,10,47,(11:42) C.Benson left end to NO 44 for 3 yards (C.Lofton).,21,27,2012 -20120930_NO@GB,4,11,2,GB,NO,3,7,44,(11:02) (Shotgun) A.Rodgers pass incomplete deep right to R.Cobb.,21,27,2012 -20120930_NO@GB,4,10,53,GB,NO,4,7,44,(10:53) T.Masthay punts 35 yards to NO 9 Center-B.Goode out of bounds.,21,27,2012 -20120930_NO@GB,4,10,46,NO,GB,1,10,91,(10:46) D.Brees pass incomplete short left to L.Moore.,27,21,2012 -20120930_NO@GB,4,10,41,NO,GB,2,10,91,(10:41) (Shotgun) D.Brees pass incomplete short right to M.Colston (D.Smith).,27,21,2012 -20120930_NO@GB,4,10,36,NO,GB,3,10,91,(10:36) (Shotgun) D.Brees pass incomplete short left to J.Graham.,27,21,2012 -20120930_NO@GB,4,10,32,NO,GB,4,10,91,(10:32) T.Morstead punts 48 yards to GB 43 Center-J.Drescher out of bounds.,27,21,2012 -20120930_NO@GB,4,10,25,GB,NO,1,10,57,(10:25) (Shotgun) C.Benson right guard to NO 49 for 8 yards (C.Jordan I.Abdul-Quddus).,21,27,2012 -20120930_NO@GB,4,9,47,GB,NO,2,2,49,(9:47) A.Rodgers pass short left to R.Cobb to NO 41 for 8 yards (M.Jenkins).,21,27,2012 -20120930_NO@GB,4,9,6,GB,NO,1,10,41,(9:06) (Shotgun) A.Rodgers pass short left to R.Cobb to NO 34 for 7 yards (C.Lofton).,21,27,2012 -20120930_NO@GB,4,8,25,GB,NO,2,3,34,(8:25) (Shotgun) A.Rodgers pass short right to J.Nelson to NO 28 for 6 yards (R.Harper).,21,27,2012 -20120930_NO@GB,4,7,44,GB,NO,1,10,28,(7:44) (Shotgun) A.Rodgers pass short middle to R.Cobb to NO 11 for 17 yards (R.Harper C.Lofton).,21,27,2012 -20120930_NO@GB,4,7,10,GB,NO,1,10,11,(7:10) (Shotgun) A.Rodgers pass incomplete short left to D.Driver.,21,27,2012 -20120930_NO@GB,4,7,5,GB,NO,2,10,11,(7:05) (Shotgun) A.Rodgers pass short right to J.Nelson for 11 yards TOUCHDOWN.,21,27,2012 -20120930_NO@GB,4,7,5,GB,NO,,,11,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,21,27,2012 -20120930_NO@GB,4,7,5,GB,NO,,,11,M.Crosby kicks 69 yards from GB 35 to NO -4. D.Sproles to NO 31 for 35 yards (D.Moses).,28,27,2012 -20120930_NO@GB,4,6,53,NO,GB,1,10,69,(6:53) (Shotgun) D.Sproles up the middle to NO 40 for 9 yards (N.Perry).,27,28,2012 -20120930_NO@GB,4,6,36,NO,GB,2,1,60,(6:36) M.Ingram right end to NO 41 for 1 yard (D.Smith C.Wilson).,27,28,2012 -20120930_NO@GB,4,6,2,NO,GB,1,10,59,(6:02) (Shotgun) D.Brees sacked at NO 34 for -7 yards (C.Wilson).,27,28,2012 -20120930_NO@GB,4,5,29,NO,GB,2,17,66,(5:29) (Shotgun) D.Brees pass short middle to M.Colston to NO 49 for 15 yards (S.Shields).,27,28,2012 -20120930_NO@GB,4,4,45,NO,GB,3,2,51,(4:45) (Shotgun) D.Brees pass incomplete short middle to D.Sproles (D.Smith).,27,28,2012 -20120930_NO@GB,4,4,41,NO,GB,4,2,51,(4:41) (Shotgun) D.Brees pass short middle to L.Moore to GB 45 for 6 yards (C.Hayward).,27,28,2012 -20120930_NO@GB,4,4,6,NO,GB,1,10,45,(4:06) D.Brees pass incomplete short right to L.Moore (T.Williams).,27,28,2012 -20120930_NO@GB,4,4,0,NO,GB,2,10,45,(4:00) (Shotgun) D.Brees pass short right to L.Moore ran ob at GB 31 for 14 yards (M.Burnett).,27,28,2012 -20120930_NO@GB,4,3,54,NO,GB,1,10,31,(3:54) PENALTY on NO-J.Morgan False Start 5 yards enforced at GB 31 - No Play.,27,28,2012 -20120930_NO@GB,4,3,54,NO,GB,1,15,36,(3:54) D.Brees pass short right to J.Graham pushed ob at GB 25 for 11 yards (T.Williams).,27,28,2012 -20120930_NO@GB,4,3,47,NO,GB,2,4,25,(3:47) P.Thomas right end to GB 25 for no gain (A.Hawk; C.Woodson).,27,28,2012 -20120930_NO@GB,4,3,2,NO,GB,3,4,25,(3:02) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,27,28,2012 -20120930_NO@GB,4,2,58,NO,GB,4,4,25,(2:58) G.Hartley 43 yard field goal is GOOD NULLIFIED by Penalty Center-J.Drescher Holder-C.Daniel. PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at GB 25 - No Play.,27,28,2012 -20120930_NO@GB,4,2,58,NO,GB,4,14,35,(2:58) (Field Goal formation) PENALTY on GB-M.Daniels Encroachment 5 yards enforced at GB 35 - No Play.,27,28,2012 -20120930_NO@GB,4,2,54,NO,GB,4,9,30,(2:54) G.Hartley 48 yard field goal is No Good Wide Left Center-J.Drescher Holder-C.Daniel.,27,28,2012 -20120930_NO@GB,4,2,49,GB,NO,1,10,62,(2:49) C.Benson right end to GB 41 for 3 yards (C.Lofton M.Jenkins).,28,27,2012 -20120930_NO@GB,4,2,44,GB,NO,2,7,59,(2:44) C.Benson right end to GB 45 for 4 yards (T.Johnson W.Smith).,28,27,2012 -20120930_NO@GB,4,2,0,GB,NO,3,3,55,(2:00) (Shotgun) A.Rodgers pass short right to Ja.Jones to NO 47 for 8 yards (J.Greer). Penalty on NO-J.Greer Defensive Pass Interference declined.,28,27,2012 -20120930_NO@GB,4,2,0,GB,NO,1,10,47,(2:00) A.Rodgers kneels to NO 49 for -2 yards.,28,27,2012 -20120930_NO@GB,4,1,12,GB,NO,2,12,49,(1:12) A.Rodgers kneels to 50 for -1 yards.,28,27,2012 -20120930_NO@GB,4,0,36,GB,NO,3,13,50,(:36) A.Rodgers kneels to GB 49 for -1 yards.,28,27,2012 -20120930_NO@GB,4,0,36,GB,NO,,,50,                      ,28,27,2012 -20120930_WAS@TB,1,0,0,WAS,TB,,,50,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 -20120930_WAS@TB,1,60,0,TB,WAS,1,10,80,(15:00) J.Freeman pass short right to M.Williams pushed ob at TB 32 for 12 yards (J.Wilson).,0,0,2012 -20120930_WAS@TB,1,59,37,TB,WAS,1,10,68,(14:37) J.Freeman pass short right to A.Benn to TB 35 for 3 yards (J.Wilson).,0,0,2012 -20120930_WAS@TB,1,58,51,TB,WAS,2,7,65,(13:51) (Shotgun) D.Martin right tackle to TB 39 for 4 yards (R.Kerrigan).,0,0,2012 -20120930_WAS@TB,1,58,8,TB,WAS,3,3,61,(13:08) (Shotgun) J.Freeman pass short middle to V.Jackson to TB 45 for 6 yards (R.Doughty).,0,0,2012 -20120930_WAS@TB,1,57,26,TB,WAS,1,10,55,(12:26) D.Martin up the middle to TB 45 for no gain (J.Jenkins).,0,0,2012 -20120930_WAS@TB,1,56,52,TB,WAS,2,10,55,(11:52) J.Freeman pass incomplete short right to V.Jackson (Mad.Williams).,0,0,2012 -20120930_WAS@TB,1,56,46,TB,WAS,3,10,55,(11:46) (Shotgun) J.Freeman scrambles right end to 50 for 5 yards (D.Hall).,0,0,2012 -20120930_WAS@TB,1,56,1,TB,WAS,4,5,50,(11:01) (Punt formation) M.Koenen punts 40 yards to WAS 10 Center-A.Economos fair catch by B.Banks.,0,0,2012 -20120930_WAS@TB,1,55,54,WAS,TB,1,10,90,(10:54) (Shotgun) A.Morris left tackle to WAS 10 for no gain (G.McCoy). PENALTY on TB Defensive Offside 5 yards enforced at WAS 10 - No Play.,0,0,2012 -20120930_WAS@TB,1,55,37,WAS,TB,1,5,85,(10:37) (Shotgun) A.Morris right tackle to WAS 12 for -3 yards (G.McCoy).,0,0,2012 -20120930_WAS@TB,1,55,4,WAS,TB,2,8,88,(10:04) R.Griffin pass incomplete short middle to A.Morris.,0,0,2012 -20120930_WAS@TB,1,54,59,WAS,TB,3,8,88,(9:59) (Shotgun) R.Griffin pass short right to E.Royster to WAS 18 for 6 yards (L.David).,0,0,2012 -20120930_WAS@TB,1,54,27,WAS,TB,4,2,82,(9:27) (Punt formation) S.Rocca punts 61 yards to TB 21 Center-J.Snow. R.Parrish to TB 30 for 9 yards (R.Jackson).,0,0,2012 -20120930_WAS@TB,1,54,12,TB,WAS,1,10,70,(9:12) J.Freeman pass short left to V.Jackson ran ob at TB 36 for 6 yards.,0,0,2012 -20120930_WAS@TB,1,53,46,TB,WAS,2,4,64,(8:46) A.Benn left end to TB 41 for 5 yards (Mad.Williams).,0,0,2012 -20120930_WAS@TB,1,53,13,TB,WAS,1,10,59,(8:13) J.Freeman pass deep right to M.Williams to WAS 39 for 20 yards (J.Wilson).,0,0,2012 -20120930_WAS@TB,1,52,25,TB,WAS,1,10,39,(7:25) D.Martin left tackle to WAS 20 for 19 yards (P.Riley). PENALTY on TB-J.Zuttah Offensive Holding 10 yards enforced at WAS 39 - No Play.,0,0,2012 -20120930_WAS@TB,1,51,56,TB,WAS,1,20,49,(6:56) J.Freeman pass short left to D.Martin to WAS 43 for 6 yards (Mad.Williams).,0,0,2012 -20120930_WAS@TB,1,51,9,TB,WAS,2,14,43,(6:09) (Shotgun) J.Freeman pass short left to A.Benn to WAS 37 for 6 yards (Mad.Williams).,0,0,2012 -20120930_WAS@TB,1,50,35,TB,WAS,3,8,37,(5:35) (Shotgun) J.Freeman pass short right to D.Ware to WAS 32 for 5 yards (R.Doughty).,0,0,2012 -20120930_WAS@TB,1,49,48,TB,WAS,4,3,32,(4:48) (Field Goal formation) C.Barth 50 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20120930_WAS@TB,1,49,48,TB,WAS,,,32,M.Koenen kicks 65 yards from TB 35 to WAS 0. N.Paul to WAS 25 for 25 yards (B.McDonald).,3,0,2012 -20120930_WAS@TB,1,49,35,WAS,TB,1,10,75,(4:35) A.Morris left tackle to WAS 29 for 4 yards (M.Foster).,0,3,2012 -20120930_WAS@TB,1,49,0,WAS,TB,2,6,71,(4:00) A.Morris right guard to WAS 46 for 17 yards (L.David).,0,3,2012 -20120930_WAS@TB,1,48,17,WAS,TB,1,10,54,(3:17) R.Griffin pass short right to D.Young to TB 30 for 24 yards (L.David; Q.Black).,0,3,2012 -20120930_WAS@TB,1,47,39,WAS,TB,1,10,30,(2:39) (Shotgun) A.Morris left end to TB 26 for 4 yards (G.Gibson). PENALTY on WAS-J.Morgan Offensive Holding 10 yards enforced at TB 30 - No Play.,0,3,2012 -20120930_WAS@TB,1,47,11,WAS,TB,1,20,40,(2:11) (Shotgun) R.Griffin pass short right to F.Davis pushed ob at TB 14 for 26 yards (M.Barron) [M.Bennett].,0,3,2012 -20120930_WAS@TB,1,46,36,WAS,TB,1,10,14,(1:36) (Shotgun) R.Griffin pass short left to L.Hankerson to TB 12 for 2 yards (E.Wright).,0,3,2012 -20120930_WAS@TB,1,45,53,WAS,TB,2,8,12,(:53) (Shotgun) A.Morris right guard to TB 9 for 3 yards (L.David).,0,3,2012 -20120930_WAS@TB,1,45,9,WAS,TB,3,5,9,(:09) (Shotgun) R.Griffin up the middle to TB 1 for 8 yards (M.Barron). FUMBLES (M.Barron) recovered by WAS-P.Garcon at TB 0. TOUCHDOWN.,0,3,2012 -20120930_WAS@TB,1,45,9,WAS,TB,,,9,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,3,2012 -20120930_WAS@TB,2,45,0,WAS,TB,,,9,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,7,3,2012 -20120930_WAS@TB,2,45,0,TB,WAS,1,10,80,(15:00) J.Freeman pass incomplete short right to A.Benn.,3,7,2012 -20120930_WAS@TB,2,44,55,TB,WAS,2,10,80,(14:55) (Shotgun) J.Freeman pass short left to L.Stocker to TB 25 for 5 yards (L.Fletcher).,3,7,2012 -20120930_WAS@TB,2,44,14,TB,WAS,3,5,75,(14:14) (Shotgun) J.Freeman pass incomplete deep middle to M.Williams.,3,7,2012 -20120930_WAS@TB,2,44,8,TB,WAS,4,5,75,(14:08) (Punt formation) M.Koenen punts 55 yards to WAS 20 Center-A.Economos. B.Banks ran ob at WAS 20 for no gain. PENALTY on WAS-L.Paulsen Offensive Holding 10 yards enforced at WAS 20.,3,7,2012 -20120930_WAS@TB,2,43,59,WAS,TB,1,10,90,(13:59) (Shotgun) R.Griffin left end to WAS 8 for -2 yards (M.Barron). PENALTY on TB-M.Barron Unnecessary Roughness 15 yards enforced at WAS 8.,7,3,2012 -20120930_WAS@TB,2,43,37,WAS,TB,1,10,77,(13:37) R.Griffin pass short right to P.Garcon to WAS 43 for 20 yards (E.Wright).,7,3,2012 -20120930_WAS@TB,2,42,52,WAS,TB,1,10,57,(12:52) R.Griffin pass incomplete deep middle to P.Garcon. PENALTY on TB-R.Barber Defensive Pass Interference 32 yards enforced at WAS 43 - No Play.,7,3,2012 -20120930_WAS@TB,2,42,42,WAS,TB,1,10,25,(12:42) (Shotgun) A.Morris left end to TB 26 for -1 yards (L.David M.Barron).,7,3,2012 -20120930_WAS@TB,2,42,11,WAS,TB,2,11,26,(12:11) (Shotgun) R.Griffin pass incomplete short left to N.Paul.,7,3,2012 -20120930_WAS@TB,2,42,3,WAS,TB,3,11,26,(12:03) (Shotgun) R.Griffin pass short middle to L.Hankerson to TB 23 for 3 yards (E.Biggers R.Barber).,7,3,2012 -20120930_WAS@TB,2,42,3,WAS,TB,4,8,23,(12:03) (Field Goal formation) B.Cundiff 41 yard field goal is No Good Wide Right Center-J.Snow Holder-S.Rocca.,7,3,2012 -20120930_WAS@TB,2,41,59,TB,WAS,1,10,69,(11:59) L.Blount right guard to TB 36 for 5 yards (D.Worthington).,3,7,2012 -20120930_WAS@TB,2,41,19,TB,WAS,2,5,64,(11:19) J.Freeman pass short left intended for V.Jackson INTERCEPTED by D.Hall at TB 48. D.Hall to TB 35 for 13 yards (V.Jackson).,3,7,2012 -20120930_WAS@TB,2,41,9,WAS,TB,1,10,35,(11:09) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson.,7,3,2012 -20120930_WAS@TB,2,41,5,WAS,TB,2,10,35,(11:05) A.Morris up the middle to TB 38 for -3 yards (E.Wright; D.Te'o-Nesheim).,7,3,2012 -20120930_WAS@TB,2,40,27,WAS,TB,3,13,38,(10:27) (Shotgun) R.Griffin pass short right to F.Davis to TB 26 for 12 yards (L.David).,7,3,2012 -20120930_WAS@TB,2,39,39,WAS,TB,4,1,26,(9:39) A.Morris up the middle to TB 19 for 7 yards (M.Barron). Penalty on TB-G.McCoy Defensive Offside declined.,7,3,2012 -20120930_WAS@TB,2,39,10,WAS,TB,1,10,19,(9:10) (Shotgun) A.Morris up the middle to TB 17 for 2 yards (C.Irvin; M.Foster).,7,3,2012 -20120930_WAS@TB,2,38,36,WAS,TB,2,8,17,(8:36) A.Morris up the middle to TB 10 for 7 yards (G.Gibson).,7,3,2012 -20120930_WAS@TB,2,37,56,WAS,TB,3,1,10,(7:56) PENALTY on TB-G.Gibson Encroachment 5 yards enforced at TB 10 - No Play.,7,3,2012 -20120930_WAS@TB,2,37,32,WAS,TB,1,5,5,(7:32) (Shotgun) R.Griffin up the middle for 5 yards TOUCHDOWN.,7,3,2012 -20120930_WAS@TB,2,37,32,WAS,TB,,,5,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,7,3,2012 -20120930_WAS@TB,2,37,32,WAS,TB,,,5,B.Cundiff kicks 71 yards from WAS 35 to TB -6. A.Benn Touchback.,14,3,2012 -20120930_WAS@TB,2,37,26,TB,WAS,1,10,80,(7:26) D.Martin right guard to TB 21 for 1 yard (D.Worthington).,3,14,2012 -20120930_WAS@TB,2,36,50,TB,WAS,2,9,79,(6:50) J.Freeman pass incomplete short left to V.Jackson (J.Wilson).,3,14,2012 -20120930_WAS@TB,2,36,45,TB,WAS,3,9,79,(6:45) (Shotgun) J.Freeman sacked at TB 15 for -6 yards (R.Kerrigan).,3,14,2012 -20120930_WAS@TB,2,36,18,TB,WAS,4,15,85,(6:18) (Punt formation) M.Koenen punts 64 yards to WAS 21 Center-A.Economos. B.Banks to WAS 40 for 19 yards (A.Benn).,3,14,2012 -20120930_WAS@TB,2,36,3,WAS,TB,1,10,60,(6:03) R.Griffin pass short right to L.Hankerson to TB 39 for 21 yards (R.Barber).,14,3,2012 -20120930_WAS@TB,2,35,25,WAS,TB,1,10,39,(5:25) (Shotgun) A.Morris left tackle for 39 yards TOUCHDOWN.,14,3,2012 -20120930_WAS@TB,2,35,25,WAS,TB,,,39,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,14,3,2012 -20120930_WAS@TB,2,35,25,WAS,TB,,,39,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,21,3,2012 -20120930_WAS@TB,2,35,15,TB,WAS,1,10,80,(5:15) J.Freeman pass short left to V.Jackson to TB 25 for 5 yards (D.Hall).,3,21,2012 -20120930_WAS@TB,2,34,40,TB,WAS,2,5,75,(4:40) D.Martin up the middle to TB 35 for 10 yards (Mad.Williams).,3,21,2012 -20120930_WAS@TB,2,34,2,TB,WAS,1,10,65,(4:02) J.Freeman pass incomplete short middle to D.Martin.,3,21,2012 -20120930_WAS@TB,2,33,56,TB,WAS,2,10,65,(3:56) (Shotgun) J.Freeman pass short right to D.Clark to TB 41 for 6 yards (R.Crawford).,3,21,2012 -20120930_WAS@TB,2,33,14,TB,WAS,3,4,59,(3:14) (Shotgun) D.Ware left end to WAS 42 for 17 yards (Mad.Williams).,3,21,2012 -20120930_WAS@TB,2,32,29,TB,WAS,1,10,42,(2:29) (Shotgun) J.Freeman pass incomplete short right to D.Clark.,3,21,2012 -20120930_WAS@TB,2,32,25,TB,WAS,2,10,42,(2:25) (Shotgun) J.Freeman pass incomplete short middle to D.Martin.,3,21,2012 -20120930_WAS@TB,2,32,17,TB,WAS,3,10,42,(2:17) (Shotgun) J.Freeman scrambles left end to WAS 39 for 3 yards.,3,21,2012 -20120930_WAS@TB,2,32,0,TB,WAS,4,7,39,(2:00) (Field Goal formation) C.Barth 57 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,3,21,2012 -20120930_WAS@TB,2,32,0,TB,WAS,,,39,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,6,21,2012 -20120930_WAS@TB,2,31,55,WAS,TB,1,10,80,(1:55) PENALTY on WAS-C.Chester False Start 5 yards enforced at WAS 20 - No Play.,21,6,2012 -20120930_WAS@TB,2,31,55,WAS,TB,1,15,85,(1:55) R.Griffin pass short left to D.Young pushed ob at WAS 31 for 16 yards (M.Foster).,21,6,2012 -20120930_WAS@TB,2,31,46,WAS,TB,1,10,69,(1:46) (Shotgun) R.Griffin pass short left to A.Morris to WAS 27 for -4 yards (L.David).,21,6,2012 -20120930_WAS@TB,2,31,3,WAS,TB,2,14,73,(1:03) (Shotgun) A.Morris right tackle to WAS 30 for 3 yards (M.Foster).,21,6,2012 -20120930_WAS@TB,2,30,57,WAS,TB,3,11,70,(:57) (Shotgun) E.Royster left tackle to WAS 31 for 1 yard (D.Te'o-Nesheim; L.David).,21,6,2012 -20120930_WAS@TB,2,30,51,WAS,TB,4,10,69,(:51) (Punt formation) S.Rocca punts 51 yards to TB 18 Center-J.Snow. R.Parrish to TB 27 for 9 yards (L.Alexander).,21,6,2012 -20120930_WAS@TB,2,30,40,TB,WAS,1,10,73,(:40) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson.,6,21,2012 -20120930_WAS@TB,2,30,35,TB,WAS,2,10,73,(:35) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at TB 30 for 3 yards (P.Riley).,6,21,2012 -20120930_WAS@TB,2,30,29,TB,WAS,3,7,70,(:29) (Shotgun) J.Freeman pass short middle to D.Clark to TB 35 for 5 yards (C.Wilson).,6,21,2012 -20120930_WAS@TB,2,30,20,TB,WAS,4,2,65,(:20) (Punt formation) M.Koenen punts 23 yards to WAS 42 Center-A.Economos out of bounds.,6,21,2012 -20120930_WAS@TB,2,30,14,WAS,TB,1,10,58,(:14) (Shotgun) R.Griffin pass short left to L.Hankerson ran ob at WAS 48 for 6 yards.,21,6,2012 -20120930_WAS@TB,2,30,7,WAS,TB,2,4,52,(:07) (Shotgun) R.Griffin pass short right to J.Morgan to TB 39 for 13 yards (A.Talib).,21,6,2012 -20120930_WAS@TB,2,30,2,WAS,TB,1,10,39,(:02) (Field Goal formation) B.Cundiff 57 yard field goal is No Good Short Center-J.Snow Holder-S.Rocca.,21,6,2012 -20120930_WAS@TB,3,30,0,TB,WAS,,,39,M.Koenen kicks 71 yards from TB 35 to WAS -6. N.Paul to WAS 11 for 17 yards (A.Hayward).,6,21,2012 -20120930_WAS@TB,3,29,55,WAS,TB,1,10,89,(14:55) A.Morris right end pushed ob at WAS 24 for 13 yards (L.David).,21,6,2012 -20120930_WAS@TB,3,29,36,WAS,TB,1,10,76,(14:36) (Shotgun) R.Griffin pass short left to F.Davis to WAS 36 for 12 yards (M.Foster).,21,6,2012 -20120930_WAS@TB,3,28,57,WAS,TB,1,10,64,(13:57) E.Royster left tackle to WAS 39 for 3 yards (G.McCoy).,21,6,2012 -20120930_WAS@TB,3,28,31,WAS,TB,2,7,61,(13:31) R.Griffin pass short middle to J.Morgan to TB 44 for 17 yards (M.Barron).,21,6,2012 -20120930_WAS@TB,3,27,30,WAS,TB,1,25,59,(12:30) R.Griffin pass incomplete short middle to L.Hankerson.,21,6,2012 -20120930_WAS@TB,3,27,0,WAS,TB,2,25,59,(12:00) R.Griffin pass short middle to L.Hankerson to TB 49 for 10 yards (C.Irvin).,21,6,2012 -20120930_WAS@TB,3,26,44,WAS,TB,3,15,49,(11:44) (Shotgun) R.Griffin scrambles left end ran ob at TB 41 for 8 yards.,21,6,2012 -20120930_WAS@TB,3,26,32,WAS,TB,4,7,41,(11:32) (Punt formation) S.Rocca punts 28 yards to TB 13 Center-J.Snow fair catch by R.Parrish. PENALTY on TB Offensive Holding 7 yards enforced at TB 13.,21,6,2012 -20120930_WAS@TB,3,26,21,TB,WAS,1,10,94,(11:21) PENALTY on TB-E.Lorig False Start 3 yards enforced at TB 6 - No Play.,6,21,2012 -20120930_WAS@TB,3,26,21,TB,WAS,1,13,97,(11:21) J.Freeman pass incomplete short right to L.Stocker (R.Kerrigan).,6,21,2012 -20120930_WAS@TB,3,26,17,TB,WAS,2,13,97,(11:17) (Shotgun) J.Freeman pass deep right to M.Williams ran ob at TB 21 for 18 yards.,6,21,2012 -20120930_WAS@TB,3,25,49,TB,WAS,1,10,79,(10:49) J.Freeman pass incomplete short left to V.Jackson (D.Hall).,6,21,2012 -20120930_WAS@TB,3,25,44,TB,WAS,2,10,79,(10:44) J.Freeman pass incomplete short left to D.Martin.,6,21,2012 -20120930_WAS@TB,3,25,39,TB,WAS,3,10,79,(10:39) J.Freeman pass short middle to A.Benn to TB 30 for 9 yards (R.Crawford).,6,21,2012 -20120930_WAS@TB,3,24,54,TB,WAS,4,1,70,(9:54) (Punt formation) M.Koenen punts 58 yards to WAS 12 Center-A.Economos. B.Banks to WAS 10 for -2 yards (D.Watson).,6,21,2012 -20120930_WAS@TB,3,24,46,WAS,TB,1,10,90,(9:46) A.Morris left tackle to WAS 8 for -2 yards (L.David).,21,6,2012 -20120930_WAS@TB,3,24,13,WAS,TB,2,12,92,(9:13) (Shotgun) R.Griffin sacked at WAS 1 for -7 yards (sack split by M.Foster and G.Johnson).,21,6,2012 -20120930_WAS@TB,3,23,28,WAS,TB,3,19,99,(8:28) R.Griffin pass incomplete short right to D.Young. PENALTY on TB Roughing the Passer 15 yards enforced at WAS 1 - No Play.,21,6,2012 -20120930_WAS@TB,3,23,22,WAS,TB,1,10,84,(8:22) R.Griffin pass incomplete deep right to P.Garcon. PENALTY on WAS-P.Garcon Offensive Pass Interference 8 yards enforced at WAS 16 - No Play.,21,6,2012 -20120930_WAS@TB,3,23,13,WAS,TB,1,18,92,(8:13) (Shotgun) R.Griffin pass short right to J.Morgan to WAS 24 for 16 yards (M.Foster).,21,6,2012 -20120930_WAS@TB,3,22,32,WAS,TB,2,2,76,(7:32) A.Morris right guard to WAS 29 for 5 yards (D.Te'o-Nesheim).,21,6,2012 -20120930_WAS@TB,3,21,53,WAS,TB,1,10,71,(6:53) R.Griffin pass short right to S.Moss pushed ob at WAS 40 for 11 yards (L.David).,21,6,2012 -20120930_WAS@TB,3,21,20,WAS,TB,1,10,60,(6:20) A.Morris right tackle to WAS 41 for 1 yard (R.Miller).,21,6,2012 -20120930_WAS@TB,3,20,38,WAS,TB,2,9,59,(5:38) (Shotgun) R.Griffin pass short middle to E.Royster to WAS 46 for 5 yards (M.Bennett). PENALTY on WAS-P.Garcon Unnecessary Roughness 15 yards enforced at WAS 46.,21,6,2012 -20120930_WAS@TB,3,20,10,WAS,TB,3,19,69,(5:10) (Shotgun) R.Griffin pass short right to L.Hankerson to WAS 30 for -1 yards (R.Barber).,21,6,2012 -20120930_WAS@TB,3,19,37,WAS,TB,4,20,70,(4:37) (Punt formation) S.Rocca punts 50 yards to TB 20 Center-J.Snow. R.Parrish to TB 29 for 9 yards (L.Alexander). PENALTY on TB-L.Johnson Illegal Block Above the Waist 10 yards enforced at TB 25.,21,6,2012 -20120930_WAS@TB,3,19,24,TB,WAS,1,10,85,(4:24) (Shotgun) J.Freeman pass deep right to M.Williams to WAS 20 for 65 yards (J.Wilson).,6,21,2012 -20120930_WAS@TB,3,18,30,TB,WAS,1,10,20,(3:30) (Shotgun) PENALTY on WAS-R.Kerrigan Neutral Zone Infraction 5 yards enforced at WAS 20 - No Play.,6,21,2012 -20120930_WAS@TB,3,18,30,TB,WAS,1,5,15,(3:30) (Shotgun) L.Blount left guard to WAS 9 for 6 yards (R.Doughty).,6,21,2012 -20120930_WAS@TB,3,17,46,TB,WAS,1,9,9,(2:46) (Shotgun) L.Blount left guard to WAS 7 for 2 yards (C.Wilson).,6,21,2012 -20120930_WAS@TB,3,17,6,TB,WAS,2,7,7,(2:06) (Shotgun) J.Freeman pass incomplete short left to M.Williams.,6,21,2012 -20120930_WAS@TB,3,17,1,TB,WAS,3,7,7,(2:01) (Shotgun) J.Freeman pass short left to V.Jackson for 7 yards TOUCHDOWN.,6,21,2012 -20120930_WAS@TB,3,17,1,TB,WAS,,,7,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,6,21,2012 -20120930_WAS@TB,3,17,1,TB,WAS,,,7,M.Koenen kicks 70 yards from TB 35 to WAS -5. N.Paul Touchback.,13,21,2012 -20120930_WAS@TB,3,16,56,WAS,TB,1,10,80,(1:56) (Shotgun) A.Morris up the middle to WAS 24 for 4 yards (L.David).,21,13,2012 -20120930_WAS@TB,3,16,21,WAS,TB,2,6,76,(1:21) (Shotgun) A.Morris right end to WAS 32 for 8 yards (R.Barber G.Johnson).,21,13,2012 -20120930_WAS@TB,3,15,54,WAS,TB,1,10,68,(:54) (Shotgun) A.Morris up the middle to WAS 33 for 1 yard (D.Te'o-Nesheim; M.Foster).,21,13,2012 -20120930_WAS@TB,3,15,21,WAS,TB,2,9,67,(:21) (Shotgun) R.Griffin pass incomplete short right to J.Morgan (A.Talib).,21,13,2012 -20120930_WAS@TB,3,15,20,WAS,TB,3,9,67,(:20) (Shotgun) R.Griffin pass deep right to N.Paul to TB 37 for 30 yards (B.McDonald; A.Black). 10 lateral to 16 16 lateraled back to 10 Tampa Bay challenged the illegal forward pass ruling and the play was Upheld. (Timeout #2.),21,13,2012 -20120930_WAS@TB,4,15,0,WAS,TB,1,10,37,(15:00) R.Griffin pass deep left to J.Morgan to TB 21 for 16 yards (M.Barron).,21,13,2012 -20120930_WAS@TB,4,14,20,WAS,TB,1,10,21,(14:20) A.Morris right tackle pushed ob at TB 19 for 2 yards (L.David).,21,13,2012 -20120930_WAS@TB,4,13,37,WAS,TB,2,8,19,(13:37) (Shotgun) A.Morris up the middle to TB 13 for 6 yards (Q.Black).,21,13,2012 -20120930_WAS@TB,4,12,57,WAS,TB,3,2,13,(12:57) (Shotgun) R.Griffin left tackle to TB 13 for no gain (G.McCoy).,21,13,2012 -20120930_WAS@TB,4,12,17,WAS,TB,4,2,13,(12:17) (Field Goal formation) B.Cundiff 31 yard field goal is No Good Wide Left Center-J.Snow Holder-S.Rocca.,21,13,2012 -20120930_WAS@TB,4,12,13,TB,WAS,1,10,79,(12:13) J.Freeman pass deep left to V.Jackson to WAS 25 for 54 yards (D.Hall).,13,21,2012 -20120930_WAS@TB,4,11,22,TB,WAS,1,10,25,(11:22) L.Blount right guard to WAS 24 for 1 yard (R.Jackson).,13,21,2012 -20120930_WAS@TB,4,10,38,TB,WAS,2,9,24,(10:38) (Shotgun) J.Freeman pass deep middle to V.Jackson to WAS 2 for 22 yards (D.Hall).,13,21,2012 -20120930_WAS@TB,4,9,51,TB,WAS,1,2,2,(9:51) J.Freeman pass incomplete short middle to M.Williams.,13,21,2012 -20120930_WAS@TB,4,9,47,TB,WAS,2,2,2,(9:47) L.Blount up the middle for 2 yards TOUCHDOWN.,13,21,2012 -20120930_WAS@TB,4,9,47,TB,WAS,,,2,(Pass formation) PENALTY on TB False Start 5 yards enforced at WAS 2 - No Play.,13,21,2012 -20120930_WAS@TB,4,9,47,TB,WAS,,,2,TWO-POINT CONVERSION ATTEMPT. J.Freeman pass to M.Williams is incomplete. ATTEMPT FAILS.,13,21,2012 -20120930_WAS@TB,4,9,47,TB,WAS,,,2,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,19,21,2012 -20120930_WAS@TB,4,9,41,WAS,TB,1,10,80,(9:41) (Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 36 for 16 yards (M.Barron).,21,19,2012 -20120930_WAS@TB,4,9,3,WAS,TB,1,10,64,(9:03) R.Griffin pass incomplete short middle to L.Hankerson.,21,19,2012 -20120930_WAS@TB,4,8,58,WAS,TB,2,10,64,(8:58) (Shotgun) R.Griffin sacked at WAS 34 for -2 yards (M.Bennett).,21,19,2012 -20120930_WAS@TB,4,8,29,WAS,TB,3,12,66,(8:29) (Shotgun) R.Griffin pass incomplete short right to S.Moss.,21,19,2012 -20120930_WAS@TB,4,8,23,WAS,TB,4,12,66,(8:23) (Punt formation) S.Rocca punts 33 yards to TB 33 Center-J.Snow fair catch by R.Parrish.,21,19,2012 -20120930_WAS@TB,4,8,14,TB,WAS,1,10,67,(8:14) D.Martin right end to TB 37 for 4 yards (D.Hall).,19,21,2012 -20120930_WAS@TB,4,7,30,TB,WAS,2,6,63,(7:30) (Shotgun) J.Freeman pass short middle to T.Underwood to WAS 48 for 15 yards (R.Doughty).,19,21,2012 -20120930_WAS@TB,4,6,52,TB,WAS,1,10,48,(6:52) (Shotgun) D.Martin right end to WAS 45 for 3 yards (C.Wilson).,19,21,2012 -20120930_WAS@TB,4,6,13,TB,WAS,2,7,45,(6:13) (Shotgun) D.Martin up the middle to WAS 41 for 4 yards (Mad.Williams).,19,21,2012 -20120930_WAS@TB,4,5,33,TB,WAS,3,3,41,(5:33) (Shotgun) J.Freeman pass short right to D.Ware to WAS 48 for -7 yards (R.Kerrigan).,19,21,2012 -20120930_WAS@TB,4,4,50,TB,WAS,4,10,48,(4:50) (Punt formation) M.Koenen punts 37 yards to WAS 11 Center-A.Economos fair catch by B.Banks.,19,21,2012 -20120930_WAS@TB,4,4,43,WAS,TB,1,10,89,(4:43) A.Morris left tackle to WAS 11 for no gain (M.Foster).,21,19,2012 -20120930_WAS@TB,4,4,6,WAS,TB,2,10,89,(4:06) (Shotgun) R.Griffin pass incomplete deep left to L.Hankerson (E.Biggers).,21,19,2012 -20120930_WAS@TB,4,3,57,WAS,TB,3,10,89,(3:57) (Shotgun) R.Griffin scrambles left end pushed ob at WAS 20 for 9 yards (A.Black). Washington challenged the first down ruling and the play was Upheld. (Timeout #1.),21,19,2012 -20120930_WAS@TB,4,3,50,WAS,TB,4,1,80,(3:50) (Punt formation) S.Rocca punts 57 yards to TB 23 Center-J.Snow. R.Parrish to TB 36 for 13 yards (S.Bowen).,21,19,2012 -20120930_WAS@TB,4,3,38,TB,WAS,1,10,64,(3:38) D.Martin left end to TB 43 for 7 yards (R.Doughty).,19,21,2012 -20120930_WAS@TB,4,2,59,TB,WAS,2,3,57,(2:59) (Shotgun) J.Freeman pass short left to D.Clark pushed ob at TB 47 for 4 yards (Mad.Williams).,19,21,2012 -20120930_WAS@TB,4,2,54,TB,WAS,1,10,53,(2:54) (Shotgun) J.Freeman pass deep middle to T.Underwood to WAS 34 for 19 yards (R.Crawford).,19,21,2012 -20120930_WAS@TB,4,2,7,TB,WAS,1,10,34,(2:07) (Shotgun) L.Blount left guard to WAS 33 for 1 yard (R.Doughty).,19,21,2012 -20120930_WAS@TB,4,2,0,TB,WAS,2,9,33,(2:00) (Shotgun) J.Freeman pass incomplete short left to M.Williams (J.Wilson).,19,21,2012 -20120930_WAS@TB,4,1,52,TB,WAS,3,9,33,(1:52) (Shotgun) J.Freeman pass short left to T.Underwood to WAS 28 for 5 yards (J.Wilson).,19,21,2012 -20120930_WAS@TB,4,1,47,TB,WAS,4,4,28,(1:47) (Field Goal formation) C.Barth 47 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,19,21,2012 -20120930_WAS@TB,4,1,47,TB,WAS,,,28,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,22,21,2012 -20120930_WAS@TB,4,1,42,WAS,TB,1,10,80,(1:42) (Shotgun) R.Griffin pass short middle to S.Moss to WAS 35 for 15 yards (L.David).,21,22,2012 -20120930_WAS@TB,4,1,20,WAS,TB,1,10,65,(1:20) (No Huddle) R.Griffin pass short middle to F.Davis to TB 45 for 20 yards (A.Talib).,21,22,2012 -20120930_WAS@TB,4,1,0,WAS,TB,1,10,45,(1:00) (No Huddle) R.Griffin pass short left to E.Royster to TB 41 for 4 yards (A.Talib).,21,22,2012 -20120930_WAS@TB,4,0,38,WAS,TB,2,6,41,(:38) (No Huddle) R.Griffin scrambles right end to TB 26 for 15 yards (M.Foster).,21,22,2012 -20120930_WAS@TB,4,0,18,WAS,TB,1,10,26,(:18) R.Griffin spiked the ball to stop the clock.,21,22,2012 -20120930_WAS@TB,4,0,18,WAS,TB,2,10,26,(:18) (Field Goal formation) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at TB 26 - No Play.,21,22,2012 -20120930_WAS@TB,4,0,18,WAS,TB,2,15,31,(:18) (Shotgun) R.Griffin pass short middle to S.Moss to TB 24 for 7 yards (B.McDonald).,21,22,2012 -20120930_WAS@TB,4,0,7,WAS,TB,3,8,24,(:07) (Field Goal formation) B.Cundiff 41 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,21,22,2012 -20120930_WAS@TB,4,0,7,,TB,,,24,                      ,24,22,2012 -20120930_NYG@PHI,1,0,0,PHI,NYG,,,24,A.Henery kicks 62 yards from PHI 35 to NYG 3. D.Wilson to NYG 39 for 36 yards (B.Brown).,0,0,2012 -20120930_NYG@PHI,1,59,53,NYG,PHI,1,10,61,(14:53) E.Manning pass incomplete deep right to D.Hixon.,0,0,2012 -20120930_NYG@PHI,1,59,47,NYG,PHI,2,10,61,(14:47) A.Brown left tackle to NYG 39 for no gain (T.Cole; J.Chaney).,0,0,2012 -20120930_NYG@PHI,1,59,4,NYG,PHI,3,10,61,(14:04) (Shotgun) E.Manning pass short left to V.Cruz to 50 for 11 yards (D.Ryans).,0,0,2012 -20120930_NYG@PHI,1,58,27,NYG,PHI,1,10,50,(13:27) (Shotgun) E.Manning pass incomplete short left to A.Bradshaw.,0,0,2012 -20120930_NYG@PHI,1,58,23,NYG,PHI,2,10,50,(13:23) E.Manning pass incomplete short right to B.Pascoe.,0,0,2012 -20120930_NYG@PHI,1,58,17,NYG,PHI,3,10,50,(13:17) (Shotgun) E.Manning pass incomplete short right to V.Cruz (F.Cox).,0,0,2012 -20120930_NYG@PHI,1,58,12,NYG,PHI,4,10,50,(13:12) S.Weatherford punts 39 yards to PHI 11 Center-Z.DeOssie fair catch by D.Johnson.,0,0,2012 -20120930_NYG@PHI,1,58,4,PHI,NYG,1,10,89,(13:04) L.McCoy left end to PHI 11 for no gain (C.Blackburn).,0,0,2012 -20120930_NYG@PHI,1,57,32,PHI,NYG,2,10,89,(12:32) M.Vick pass incomplete short right to S.Havili.,0,0,2012 -20120930_NYG@PHI,1,57,27,PHI,NYG,3,10,89,(12:27) (Shotgun) M.Vick pass short right to B.Celek to PHI 16 for 5 yards (W.Hill; J.Tuck).,0,0,2012 -20120930_NYG@PHI,1,56,45,PHI,NYG,4,5,84,(11:45) M.McBriar punts 56 yards to NYG 28 Center-J.Dorenbos. R.Randle to NYG 46 for 18 yards (J.Dorenbos).,0,0,2012 -20120930_NYG@PHI,1,56,31,NYG,PHI,1,10,54,(11:31) A.Bradshaw up the middle to PHI 49 for 5 yards (C.Thornton).,0,0,2012 -20120930_NYG@PHI,1,55,52,NYG,PHI,2,5,49,(10:52) (Shotgun) E.Manning pass incomplete short middle to D.Wilson.,0,0,2012 -20120930_NYG@PHI,1,55,47,NYG,PHI,3,5,49,(10:47) (Shotgun) E.Manning pass deep right to M.Bennett to PHI 11 for 38 yards (N.Asomugha). PENALTY on NYG-W.Beatty Offensive Holding 10 yards enforced at PHI 49 - No Play.,0,0,2012 -20120930_NYG@PHI,1,55,18,NYG,PHI,3,15,59,(10:18) (Shotgun) E.Manning pass short middle to A.Bradshaw to 50 for 9 yards (C.Jenkins).,0,0,2012 -20120930_NYG@PHI,1,54,47,NYG,PHI,4,6,50,(9:47) S.Weatherford punts 43 yards to PHI 7 Center-Z.DeOssie. D.Johnson to PHI 10 for 3 yards (S.Brown).,0,0,2012 -20120930_NYG@PHI,1,54,35,PHI,NYG,1,10,90,(9:35) M.Vick pass incomplete short left.,0,0,2012 -20120930_NYG@PHI,1,54,28,PHI,NYG,2,10,90,(9:28) B.Brown left end to PHI 9 for -1 yards (J.Pierre-Paul).,0,0,2012 -20120930_NYG@PHI,1,53,47,PHI,NYG,3,11,91,(8:47) (Shotgun) M.Vick pass deep left to D.Jackson ran ob at PHI 41 for 32 yards.,0,0,2012 -20120930_NYG@PHI,1,53,19,PHI,NYG,1,10,59,(8:19) L.McCoy right end to NYG 45 for 14 yards (C.Webster; A.Rolle). NYG-K.Phillips was injured during the play. His return is Doubtful. PENALTY on PHI-T.Herremans Offensive Holding 10 yards enforced at PHI 41 - No Play.,0,0,2012 -20120930_NYG@PHI,1,52,51,PHI,NYG,1,20,69,(7:51) (Shotgun) L.McCoy right guard to PHI 30 for -1 yards (C.Blackburn).,0,0,2012 -20120930_NYG@PHI,1,52,18,PHI,NYG,2,21,70,(7:18) (Shotgun) M.Vick pass short middle to C.Harbor to PHI 37 for 7 yards (J.Williams).,0,0,2012 -20120930_NYG@PHI,1,51,44,PHI,NYG,3,14,63,(6:44) (Shotgun) PENALTY on NYG-M.Kiwanuka Neutral Zone Infraction 5 yards enforced at PHI 37 - No Play.,0,0,2012 -20120930_NYG@PHI,1,51,30,PHI,NYG,3,9,58,(6:30) (Shotgun) M.Vick pass incomplete short left to B.Celek. Penalty on PHI-T.Herremans Offensive Holding declined.,0,0,2012 -20120930_NYG@PHI,1,51,23,PHI,NYG,4,9,58,(6:23) M.McBriar punts 43 yards to NYG 15 Center-J.Dorenbos. R.Randle to NYG 13 for -2 yards (B.Hughes).,0,0,2012 -20120930_NYG@PHI,1,51,14,NYG,PHI,1,10,87,(6:14) H.Hynoski up the middle to NYG 17 for 4 yards (J.Chaney).,0,0,2012 -20120930_NYG@PHI,1,50,38,NYG,PHI,2,6,83,(5:38) E.Manning pass short right to V.Cruz to NYG 21 for 4 yards (D.Rodgers-Cromartie).,0,0,2012 -20120930_NYG@PHI,1,50,3,NYG,PHI,3,2,79,(5:03) (Shotgun) E.Manning pass incomplete deep left to R.Randle. PENALTY on PHI-D.Rodgers-Cromartie Illegal Contact 5 yards enforced at NYG 21 - No Play.,0,0,2012 -20120930_NYG@PHI,1,49,58,NYG,PHI,1,10,74,(4:58) E.Manning pass incomplete deep left to M.Bennett.,0,0,2012 -20120930_NYG@PHI,1,49,52,NYG,PHI,2,10,74,(4:52) (Shotgun) E.Manning pass short right to D.Hixon ran ob at NYG 37 for 11 yards.,0,0,2012 -20120930_NYG@PHI,1,49,33,NYG,PHI,1,10,63,(4:33) A.Bradshaw up the middle to NYG 45 for 8 yards (K.Coleman).,0,0,2012 -20120930_NYG@PHI,1,48,52,NYG,PHI,2,2,55,(3:52) A.Bradshaw left end to NYG 40 for -5 yards (C.Jenkins).,0,0,2012 -20120930_NYG@PHI,1,48,8,NYG,PHI,3,7,60,(3:08) (Shotgun) E.Manning pass incomplete deep left to D.Hixon (N.Allen).,0,0,2012 -20120930_NYG@PHI,1,48,2,NYG,PHI,4,7,60,(3:02) S.Weatherford punts 60 yards to end zone Center-Z.DeOssie Touchback.,0,0,2012 -20120930_NYG@PHI,1,47,54,PHI,NYG,1,10,80,(2:54) M.Vick pass incomplete short right to J.Maclin [S.Brown].,0,0,2012 -20120930_NYG@PHI,1,47,50,PHI,NYG,2,10,80,(2:50) M.Vick pass incomplete short left to D.Jackson. Philadelphia challenged the incomplete pass ruling and the play was REVERSED. M.Vick pass short left to D.Jackson to PHI 31 for 11 yards (C.Webster).,0,0,2012 -20120930_NYG@PHI,1,47,34,PHI,NYG,1,10,69,(2:34) (Shotgun) M.Vick scrambles left end ran ob at PHI 34 for 3 yards.,0,0,2012 -20120930_NYG@PHI,1,47,0,PHI,NYG,2,7,66,(2:00) (Shotgun) L.McCoy left end to PHI 39 for 5 yards (C.Blackburn; R.Bernard).,0,0,2012 -20120930_NYG@PHI,1,46,24,PHI,NYG,3,2,61,(1:24) (Shotgun) M.Vick pass short right to B.Celek to NYG 44 for 17 yards (M.Kiwanuka; S.Brown).,0,0,2012 -20120930_NYG@PHI,1,45,40,PHI,NYG,1,10,44,(:40) B.Brown left tackle to NYG 44 for no gain (O.Umenyiora).,0,0,2012 -20120930_NYG@PHI,2,45,0,PHI,NYG,2,10,44,(15:00) (Shotgun) D.Johnson left guard to NYG 45 for -1 yards (M.Boley).,0,0,2012 -20120930_NYG@PHI,2,44,28,PHI,NYG,3,11,45,(14:28) M.Vick pass incomplete deep left to D.Jackson (W.Hill).,0,0,2012 -20120930_NYG@PHI,2,44,22,PHI,NYG,4,11,45,(14:22) M.McBriar punts 32 yards to NYG 13 Center-J.Dorenbos fair catch by R.Randle.,0,0,2012 -20120930_NYG@PHI,2,44,14,NYG,PHI,1,10,87,(14:14) A.Bradshaw right tackle to NYG 15 for 2 yards (D.Landri).,0,0,2012 -20120930_NYG@PHI,2,43,34,NYG,PHI,2,8,85,(13:34) E.Manning pass short right to A.Bradshaw to NYG 35 for 20 yards (K.Coleman; D.Landri).,0,0,2012 -20120930_NYG@PHI,2,42,54,NYG,PHI,1,10,65,(12:54) E.Manning pass incomplete deep right to D.Hixon. PENALTY on NYG-S.Locklear Offensive Holding 10 yards enforced at NYG 35 - No Play.,0,0,2012 -20120930_NYG@PHI,2,42,47,NYG,PHI,1,20,75,(12:47) A.Brown left end to NYG 28 for 3 yards (C.Thornton).,0,0,2012 -20120930_NYG@PHI,2,42,7,NYG,PHI,2,17,72,(12:07) (Shotgun) E.Manning pass incomplete short left to R.Randle.,0,0,2012 -20120930_NYG@PHI,2,42,2,NYG,PHI,3,17,72,(12:02) (Shotgun) E.Manning pass short right to D.Hixon to NYG 41 for 13 yards (D.Ryans). PENALTY on PHI-J.Babin Illegal Use of Hands 5 yards enforced at NYG 28 - No Play.,0,0,2012 -20120930_NYG@PHI,2,41,38,NYG,PHI,1,10,67,(11:38) (Shotgun) E.Manning pass short right to V.Cruz to NYG 44 for 11 yards (B.Boykin). PHI-N.Asomugha was injured during the play. His return is Probable.,0,0,2012 -20120930_NYG@PHI,2,40,52,NYG,PHI,1,10,56,(10:52) (Shotgun) A.Bradshaw left end to NYG 47 for 3 yards (D.Ryans).,0,0,2012 -20120930_NYG@PHI,2,40,15,NYG,PHI,2,7,53,(10:15) A.Brown left end to PHI 49 for 4 yards (J.Chaney; D.Landri).,0,0,2012 -20120930_NYG@PHI,2,39,29,NYG,PHI,3,3,49,(9:29) (Shotgun) E.Manning pass incomplete deep left to D.Hixon (B.Hughes).,0,0,2012 -20120930_NYG@PHI,2,39,23,NYG,PHI,4,3,49,(9:23) S.Weatherford punts 49 yards to end zone Center-Z.DeOssie Touchback.,0,0,2012 -20120930_NYG@PHI,2,39,13,PHI,NYG,1,10,80,(9:13) (Shotgun) M.Vick pass incomplete short left to L.McCoy.,0,0,2012 -20120930_NYG@PHI,2,39,7,PHI,NYG,2,10,80,(9:07) (Shotgun) L.McCoy right end pushed ob at PHI 17 for -3 yards (S.Brown).,0,0,2012 -20120930_NYG@PHI,2,38,41,PHI,NYG,3,13,83,(8:41) (Shotgun) M.Vick up the middle to PHI 29 for 12 yards (W.Hill).,0,0,2012 -20120930_NYG@PHI,2,37,55,PHI,NYG,4,1,71,(7:55) M.McBriar punts 51 yards to NYG 20 Center-J.Dorenbos. R.Randle to NYG 33 for 13 yards (C.Marsh).,0,0,2012 -20120930_NYG@PHI,2,37,42,NYG,PHI,1,10,67,(7:42) A.Bradshaw up the middle to NYG 35 for 2 yards (C.Thornton).,0,0,2012 -20120930_NYG@PHI,2,36,58,NYG,PHI,2,8,65,(6:58) E.Manning pass short right to A.Brown to NYG 39 for 4 yards (D.Rodgers-Cromartie).,0,0,2012 -20120930_NYG@PHI,2,36,15,NYG,PHI,3,4,61,(6:15) (Shotgun) E.Manning pass incomplete short right (D.Ryans).,0,0,2012 -20120930_NYG@PHI,2,36,10,NYG,PHI,4,4,61,(6:10) S.Weatherford punts 31 yards to PHI 30 Center-Z.DeOssie out of bounds.,0,0,2012 -20120930_NYG@PHI,2,36,4,PHI,NYG,1,10,70,(6:04) M.Vick pass incomplete (C.Blackburn).,0,0,2012 -20120930_NYG@PHI,2,36,0,PHI,NYG,2,10,70,(6:00) M.Vick pass short left to L.McCoy to PHI 36 for 6 yards (O.Umenyiora).,0,0,2012 -20120930_NYG@PHI,2,35,24,PHI,NYG,3,4,64,(5:24) (Shotgun) PENALTY on NYG-O.Umenyiora Defensive Offside 5 yards enforced at PHI 36 - No Play.,0,0,2012 -20120930_NYG@PHI,2,35,8,PHI,NYG,1,10,59,(5:08) M.Vick pass incomplete deep left to D.Jackson.,0,0,2012 -20120930_NYG@PHI,2,35,4,PHI,NYG,2,10,59,(5:04) (No Huddle Shotgun) M.Vick pass short right to D.Johnson pushed ob at NYG 42 for 17 yards (P.Amukamara).,0,0,2012 -20120930_NYG@PHI,2,34,28,PHI,NYG,1,10,42,(4:28) (No Huddle) M.Vick pass short left to L.McCoy to NYG 30 for 12 yards (A.Rolle).,0,0,2012 -20120930_NYG@PHI,2,33,53,PHI,NYG,1,10,30,(3:53) (No Huddle Shotgun) M.Vick pass short right to J.Avant to NYG 23 for 7 yards (S.Brown). PHI-J.Avant was injured during the play. His return is Probable.,0,0,2012 -20120930_NYG@PHI,2,33,14,PHI,NYG,2,3,23,(3:14) (Shotgun) L.McCoy up the middle to NYG 24 for -1 yards (O.Umenyiora).,0,0,2012 -20120930_NYG@PHI,2,32,39,PHI,NYG,3,4,24,(2:39) M.Vick scrambles left end ran ob at NYG 20 for 4 yards (C.Blackburn).,0,0,2012 -20120930_NYG@PHI,2,32,17,PHI,NYG,1,10,20,(2:17) (Shotgun) L.McCoy right end ran ob at NYG 18 for 2 yards (J.Tryon).,0,0,2012 -20120930_NYG@PHI,2,32,0,PHI,NYG,2,8,18,(2:00) (Shotgun) M.Vick pass short right to L.McCoy to NYG 19 for -1 yards (S.Brown).,0,0,2012 -20120930_NYG@PHI,2,31,53,PHI,NYG,3,9,19,(1:53) (Shotgun) M.Vick pass deep left to D.Jackson for 19 yards TOUCHDOWN.,0,0,2012 -20120930_NYG@PHI,2,31,53,PHI,NYG,,,19,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20120930_NYG@PHI,2,31,53,PHI,NYG,,,19,A.Henery kicks 65 yards from PHI 35 to NYG 0. D.Wilson to NYG 48 for 48 yards (C.Matthews). PENALTY on NYG-S.Paysinger Offensive Holding 10 yards enforced at NYG 23.,7,0,2012 -20120930_NYG@PHI,2,31,39,NYG,PHI,1,10,87,(1:39) (Shotgun) E.Manning pass deep right to D.Hixon to NYG 45 for 32 yards (D.Rodgers-Cromartie).,0,7,2012 -20120930_NYG@PHI,2,31,14,NYG,PHI,1,10,55,(1:14) (No Huddle Shotgun) E.Manning pass short right to D.Hixon ran ob at PHI 48 for 7 yards.,0,7,2012 -20120930_NYG@PHI,2,31,7,NYG,PHI,2,3,48,(1:07) (Shotgun) E.Manning pass short left to D.Hixon to PHI 38 for 10 yards (N.Allen).,0,7,2012 -20120930_NYG@PHI,2,30,59,NYG,PHI,1,10,38,(:59) (Shotgun) E.Manning pass incomplete deep right to V.Cruz.,0,7,2012 -20120930_NYG@PHI,2,30,52,NYG,PHI,2,10,38,(:52) (Shotgun) E.Manning pass short right to V.Cruz to PHI 25 for 13 yards (B.Boykin).,0,7,2012 -20120930_NYG@PHI,2,30,46,NYG,PHI,1,10,25,(:46) (Shotgun) E.Manning pass short left to V.Cruz to PHI 13 for 12 yards (B.Boykin).,0,7,2012 -20120930_NYG@PHI,2,30,22,NYG,PHI,1,10,13,(:22) (No Huddle Shotgun) E.Manning pass short left to V.Cruz to PHI 8 for 5 yards (N.Allen).,0,7,2012 -20120930_NYG@PHI,2,30,19,NYG,PHI,2,5,8,(:19) (Shotgun) E.Manning pass short right to M.Bennett to PHI 6 for 2 yards (N.Allen).,0,7,2012 -20120930_NYG@PHI,2,30,13,NYG,PHI,3,3,6,(:13) (Shotgun) E.Manning pass incomplete short left to D.Hixon (B.Hughes).,0,7,2012 -20120930_NYG@PHI,2,30,8,NYG,PHI,4,3,6,(:08) L.Tynes 25 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,7,2012 -20120930_NYG@PHI,2,30,8,NYG,PHI,,,6,L.Tynes kicks 56 yards from NYG 35 to PHI 9. B.Boykin to PHI 23 for 14 yards (J.Tryon).,3,7,2012 -20120930_NYG@PHI,3,30,0,NYG,PHI,,,6,L.Tynes kicks 66 yards from NYG 35 to PHI -1. B.Boykin to PHI 20 for 21 yards (S.Paysinger).,3,7,2012 -20120930_NYG@PHI,3,29,56,PHI,NYG,1,10,80,(14:56) L.McCoy right end to PHI 20 for no gain (J.Tuck).,7,3,2012 -20120930_NYG@PHI,3,29,23,PHI,NYG,2,10,80,(14:23) M.Vick pass short right to D.Jackson to PHI 34 for 14 yards (J.Williams).,7,3,2012 -20120930_NYG@PHI,3,28,47,PHI,NYG,1,10,66,(13:47) PENALTY on NYG-J.Pierre-Paul Neutral Zone Infraction 5 yards enforced at PHI 34 - No Play.,7,3,2012 -20120930_NYG@PHI,3,28,36,PHI,NYG,1,5,61,(13:36) L.McCoy up the middle to PHI 43 for 4 yards (R.Bernard).,7,3,2012 -20120930_NYG@PHI,3,27,59,PHI,NYG,2,1,57,(12:59) L.McCoy right end to NYG 23 for 34 yards (C.Blackburn).,7,3,2012 -20120930_NYG@PHI,3,27,17,PHI,NYG,1,10,23,(12:17) L.McCoy right end to NYG 1 for 22 yards (M.Kiwanuka).,7,3,2012 -20120930_NYG@PHI,3,26,31,PHI,NYG,1,1,1,(11:31) L.McCoy right end to NYG 1 for no gain (R.Bernard).,7,3,2012 -20120930_NYG@PHI,3,25,54,PHI,NYG,2,1,1,(10:54) L.McCoy right end to NYG 1 for no gain (C.Blackburn).,7,3,2012 -20120930_NYG@PHI,3,25,12,PHI,NYG,3,1,1,(10:12) L.McCoy left end to NYG 2 for -1 yards. FUMBLES ball out of bounds at NYG 2.,7,3,2012 -20120930_NYG@PHI,3,24,57,PHI,NYG,4,2,2,(9:57) A.Henery 20 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,3,2012 -20120930_NYG@PHI,3,24,57,PHI,NYG,,,2,A.Henery kicks 67 yards from PHI 35 to NYG -2. D.Wilson to NYG 43 for 45 yards (C.Matthews).,10,3,2012 -20120930_NYG@PHI,3,24,46,NYG,PHI,1,10,57,(9:46) E.Manning pass short left to R.Barden to NYG 48 for 5 yards (K.Coleman).,3,10,2012 -20120930_NYG@PHI,3,24,14,NYG,PHI,2,5,52,(9:14) A.Bradshaw left end to PHI 47 for 5 yards (D.Landri; B.Hughes).,3,10,2012 -20120930_NYG@PHI,3,23,36,NYG,PHI,1,10,47,(8:36) A.Bradshaw up the middle to PHI 38 for 9 yards (K.Coleman; C.Jenkins).,3,10,2012 -20120930_NYG@PHI,3,23,4,NYG,PHI,2,1,38,(8:04) A.Bradshaw left tackle to PHI 34 for 4 yards (K.Coleman).,3,10,2012 -20120930_NYG@PHI,3,22,23,NYG,PHI,1,10,34,(7:23) E.Manning pass short left to D.Hixon to PHI 21 for 13 yards (B.Hughes).,3,10,2012 -20120930_NYG@PHI,3,21,49,NYG,PHI,1,10,21,(6:49) A.Brown right guard to PHI 17 for 4 yards (F.Cox).,3,10,2012 -20120930_NYG@PHI,3,21,11,NYG,PHI,2,6,17,(6:11) A.Brown left end to PHI 14 for 3 yards (D.Rodgers-Cromartie; M.Kendricks).,3,10,2012 -20120930_NYG@PHI,3,20,33,NYG,PHI,3,3,14,(5:33) (Shotgun) E.Manning pass short right to V.Cruz for 14 yards TOUCHDOWN.,3,10,2012 -20120930_NYG@PHI,3,20,33,NYG,PHI,,,14,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,10,2012 -20120930_NYG@PHI,3,20,33,NYG,PHI,,,14,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,10,10,2012 -20120930_NYG@PHI,3,20,28,PHI,NYG,1,10,80,(5:28) M.Vick pass incomplete deep left to D.Jackson (C.Blackburn).,10,10,2012 -20120930_NYG@PHI,3,20,22,PHI,NYG,2,10,80,(5:22) M.Vick pass deep middle to B.Celek to PHI 47 for 27 yards (S.Brown).,10,10,2012 -20120930_NYG@PHI,3,19,42,PHI,NYG,1,10,53,(4:42) L.McCoy right end to PHI 48 for 1 yard (J.Pierre-Paul).,10,10,2012 -20120930_NYG@PHI,3,19,0,PHI,NYG,2,9,52,(4:00) (Shotgun) M.Vick scrambles left end ran ob at NYG 34 for 18 yards.,10,10,2012 -20120930_NYG@PHI,3,18,28,PHI,NYG,1,10,34,(3:28) L.McCoy left end to NYG 34 for no gain (S.Brown).,10,10,2012 -20120930_NYG@PHI,3,17,53,PHI,NYG,2,10,34,(2:53) (Shotgun) M.Vick pass short right to D.Jackson to NYG 30 for 4 yards (C.Webster).,10,10,2012 -20120930_NYG@PHI,3,17,17,PHI,NYG,3,6,30,(2:17) M.Vick pass incomplete short right to J.Maclin (P.Amukamara).,10,10,2012 -20120930_NYG@PHI,3,17,12,PHI,NYG,4,6,30,(2:12) A.Henery 48 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,10,2012 -20120930_NYG@PHI,3,17,12,PHI,NYG,,,30,A.Henery kicks 67 yards from PHI 35 to NYG -2. D.Wilson to PHI 49 for 53 yards (M.Gilyard).,13,10,2012 -20120930_NYG@PHI,3,16,59,NYG,PHI,1,10,49,(1:59) E.Manning pass short right to H.Hynoski to PHI 49 for no gain (M.Kendricks).,10,13,2012 -20120930_NYG@PHI,3,16,19,NYG,PHI,2,10,49,(1:19) (Shotgun) E.Manning pass short right to A.Bradshaw to PHI 40 for 9 yards (J.Babin).,10,13,2012 -20120930_NYG@PHI,3,15,28,NYG,PHI,3,1,40,(:28) A.Bradshaw right end to PHI 40 for no gain (F.Cox).,10,13,2012 -20120930_NYG@PHI,3,15,4,NYG,PHI,4,1,40,(:04) (Shotgun) E.Manning pass short middle to V.Cruz to PHI 10 for 30 yards (D.Rodgers-Cromartie).,10,13,2012 -20120930_NYG@PHI,4,15,0,NYG,PHI,1,10,10,(15:00) E.Manning pass short left intended for M.Bennett INTERCEPTED by D.Rodgers-Cromartie at PHI -5. D.Rodgers-Cromartie to PHI 9 for 14 yards (S.Locklear).,10,13,2012 -20120930_NYG@PHI,4,14,49,PHI,NYG,1,10,91,(14:49) L.McCoy left end pushed ob at PHI 15 for 6 yards (P.Amukamara).,13,10,2012 -20120930_NYG@PHI,4,14,26,PHI,NYG,2,4,85,(14:26) M.Vick pass deep middle to J.Avant to PHI 38 for 23 yards (W.Hill).,13,10,2012 -20120930_NYG@PHI,4,13,50,PHI,NYG,1,10,62,(13:50) (No Huddle) S.Havili up the middle to PHI 45 for 7 yards (C.Blackburn; J.Tuck).,13,10,2012 -20120930_NYG@PHI,4,13,10,PHI,NYG,2,3,55,(13:10) L.McCoy up the middle to NYG 45 for 10 yards (M.Boley).,13,10,2012 -20120930_NYG@PHI,4,12,30,PHI,NYG,1,10,45,(12:30) L.McCoy left tackle to NYG 32 for 13 yards (A.Rolle).,13,10,2012 -20120930_NYG@PHI,4,11,48,PHI,NYG,1,10,32,(11:48) M.Vick pass short middle to S.Havili to NYG 25 for 7 yards (M.Boley).,13,10,2012 -20120930_NYG@PHI,4,11,16,PHI,NYG,2,3,25,(11:16) (No Huddle) B.Brown left end to NYG 21 for 4 yards (R.Bernard; L.Joseph).,13,10,2012 -20120930_NYG@PHI,4,10,39,PHI,NYG,1,10,21,(10:39) (Shotgun) M.Vick pass incomplete deep left.,13,10,2012 -20120930_NYG@PHI,4,10,34,PHI,NYG,2,10,21,(10:34) S.Havili right tackle to NYG 13 for 8 yards (J.Tuck).,13,10,2012 -20120930_NYG@PHI,4,9,53,PHI,NYG,3,2,13,(9:53) M.Vick sacked at NYG 17 for -4 yards (C.Blackburn).,13,10,2012 -20120930_NYG@PHI,4,9,29,PHI,NYG,4,6,17,(9:29) A.Henery 35 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,13,10,2012 -20120930_NYG@PHI,4,9,29,PHI,NYG,,,17,A.Henery kicks 71 yards from PHI 35 to NYG -6. D.Wilson to NYG 17 for 23 yards (D.Sims).,16,10,2012 -20120930_NYG@PHI,4,9,19,NYG,PHI,1,10,83,(9:19) A.Bradshaw right end to NYG 20 for 3 yards (N.Asomugha).,10,16,2012 -20120930_NYG@PHI,4,8,42,NYG,PHI,2,7,80,(8:42) E.Manning pass deep right to R.Barden to PHI 49 for 31 yards (K.Coleman).,10,16,2012 -20120930_NYG@PHI,4,8,1,NYG,PHI,1,10,49,(8:01) E.Manning pass deep right to D.Hixon to PHI 8 for 41 yards (N.Asomugha).,10,16,2012 -20120930_NYG@PHI,4,7,29,NYG,PHI,1,8,8,(7:29) A.Bradshaw left tackle to PHI 6 for 2 yards (T.Cole).,10,16,2012 -20120930_NYG@PHI,4,6,49,NYG,PHI,2,6,6,(6:49) (Shotgun) E.Manning pass short middle to B.Pascoe for 6 yards TOUCHDOWN.,10,16,2012 -20120930_NYG@PHI,4,6,49,NYG,PHI,,,6,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,16,2012 -20120930_NYG@PHI,4,6,49,NYG,PHI,,,6,L.Tynes kicks 63 yards from NYG 35 to PHI 2. B.Boykin to PHI 17 for 15 yards (S.Paysinger).,17,16,2012 -20120930_NYG@PHI,4,6,38,PHI,NYG,1,10,83,(6:38) (Shotgun) M.Vick pass deep left to D.Jackson to PHI 36 for 19 yards (C.Webster).,16,17,2012 -20120930_NYG@PHI,4,6,6,PHI,NYG,1,10,64,(6:06) L.McCoy right end to NYG 49 for 15 yards (S.Brown).,16,17,2012 -20120930_NYG@PHI,4,5,23,PHI,NYG,1,10,49,(5:23) L.McCoy right end to NYG 44 for 5 yards (M.Boley).,16,17,2012 -20120930_NYG@PHI,4,4,49,PHI,NYG,2,5,44,(4:49) (Shotgun) M.Vick pass short left to J.Maclin ran ob at NYG 37 for 7 yards (P.Amukamara).,16,17,2012 -20120930_NYG@PHI,4,4,41,PHI,NYG,1,10,37,(4:41) L.McCoy right end to NYG 36 for 1 yard (C.Blackburn).,16,17,2012 -20120930_NYG@PHI,4,4,5,PHI,NYG,2,9,36,(4:05) M.Vick scrambles right end ran ob at NYG 23 for 13 yards.,16,17,2012 -20120930_NYG@PHI,4,3,58,PHI,NYG,1,10,23,(3:58) (Shotgun) M.Vick pass short left to B.Celek to NYG 15 for 8 yards (M.Boley).,16,17,2012 -20120930_NYG@PHI,4,3,14,PHI,NYG,2,2,15,(3:14) L.McCoy up the middle to NYG 8 for 7 yards (M.Kiwanuka).,16,17,2012 -20120930_NYG@PHI,4,2,31,PHI,NYG,1,8,8,(2:31) L.McCoy right end to NYG 4 for 4 yards (P.Amukamara).,16,17,2012 -20120930_NYG@PHI,4,2,0,PHI,NYG,2,4,4,(2:00) B.Brown right guard to NYG 2 for 2 yards (C.Blackburn).,16,17,2012 -20120930_NYG@PHI,4,1,57,PHI,NYG,3,2,2,(1:57) M.Vick sacked at NYG 8 for -6 yards (O.Umenyiora).,16,17,2012 -20120930_NYG@PHI,4,1,49,PHI,NYG,4,8,8,(1:49) A.Henery 26 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,16,17,2012 -20120930_NYG@PHI,4,1,49,PHI,NYG,,,8,A.Henery kicks 67 yards from PHI 35 to NYG -2. D.Wilson to NYG 35 for 37 yards (A.Henery).,19,17,2012 -20120930_NYG@PHI,4,1,43,NYG,PHI,1,10,65,(1:43) (Shotgun) E.Manning pass incomplete short right to V.Cruz.,17,19,2012 -20120930_NYG@PHI,4,1,39,NYG,PHI,2,10,70,(1:39) (Shotgun) E.Manning FUMBLES (Aborted) at NYG 30 and recovers at NYG 30. E.Manning pass incomplete to R.Barden.,17,19,2012 -20120930_NYG@PHI,4,1,34,NYG,PHI,3,10,65,(1:34) (Shotgun) E.Manning pass short right to V.Cruz to NYG 44 for 9 yards (B.Boykin).,17,19,2012 -20120930_NYG@PHI,4,1,3,NYG,PHI,4,1,56,(1:03) E.Manning pass incomplete deep right to R.Barden. PENALTY on PHI-D.Rodgers-Cromartie Defensive Pass Interference 21 yards enforced at NYG 44 - No Play.,17,19,2012 -20120930_NYG@PHI,4,1,3,NYG,PHI,1,10,35,(1:03) (Shotgun) E.Manning pass incomplete short left to V.Cruz (B.Boykin).,17,19,2012 -20120930_NYG@PHI,4,0,58,NYG,PHI,2,10,35,(:58) (Shotgun) E.Manning pass incomplete short right to R.Barden (N.Asomugha).,17,19,2012 -20120930_NYG@PHI,4,0,53,NYG,PHI,3,10,35,(:53) (Shotgun) E.Manning pass incomplete short right to R.Barden. PENALTY on PHI-N.Asomugha Defensive Pass Interference 8 yards enforced at PHI 35 - No Play.,17,19,2012 -20120930_NYG@PHI,4,0,49,NYG,PHI,1,10,27,(:49) (Shotgun) A.Bradshaw left tackle to PHI 26 for 1 yard (C.Jenkins).,17,19,2012 -20120930_NYG@PHI,4,0,25,NYG,PHI,2,9,26,(:25) (Shotgun) E.Manning pass incomplete deep right to R.Barden. PENALTY on NYG-R.Barden Offensive Pass Interference 10 yards enforced at PHI 26 - No Play.,17,19,2012 -20120930_NYG@PHI,4,0,21,NYG,PHI,2,19,36,(:21) (Shotgun) E.Manning pass incomplete deep right to D.Hixon.,17,19,2012 -20120930_NYG@PHI,4,0,10,NYG,PHI,3,19,36,(:10) L.Tynes 54 yard field goal is No Good Short Center-Z.DeOssie Holder-S.Weatherford.,17,19,2012 -20120930_NYG@PHI,4,0,8,PHI,NYG,1,10,56,(:08) M.Vick kneels to PHI 43 for -1 yards.,19,17,2012 -20120930_NYG@PHI,4,0,8,PHI,NYG,,,56,                      ,19,17,2012 -20121001_CHI@DAL,1,0,0,CHI,DAL,,,56,R.Gould kicks 65 yards from CHI 35 to DAL 0. F.Jones Touchback. Ball was kicked out of the end zone.,0,0,2012 -20121001_CHI@DAL,1,60,0,DAL,CHI,1,10,80,(15:00) D.Murray left end to DAL 31 for 11 yards (H.Melton).,0,0,2012 -20121001_CHI@DAL,1,59,20,DAL,CHI,1,10,69,(14:20) D.Murray right tackle to DAL 34 for 3 yards (M.Wright).,0,0,2012 -20121001_CHI@DAL,1,58,45,DAL,CHI,2,7,66,(13:45) (Shotgun) T.Romo pass short right to K.Ogletree ran ob at DAL 47 for 13 yards (B.Urlacher). Pass complete on a curl.,0,0,2012 -20121001_CHI@DAL,1,58,22,DAL,CHI,1,10,53,(13:22) D.Murray right end to DAL 44 for -3 yards (L.Briggs).,0,0,2012 -20121001_CHI@DAL,1,57,46,DAL,CHI,2,13,56,(12:46) (Shotgun) T.Romo pass short left to J.Witten to CHI 50 for 6 yards (B.Urlacher C.Conte).,0,0,2012 -20121001_CHI@DAL,1,57,0,DAL,CHI,3,7,50,(12:00) (Shotgun) T.Romo pass short middle to J.Witten to CHI 43 for 7 yards (C.Conte).,0,0,2012 -20121001_CHI@DAL,1,56,22,DAL,CHI,1,10,43,(11:22) K.Ogletree left end pushed ob at CHI 39 for 4 yards (M.Wright). End around.,0,0,2012 -20121001_CHI@DAL,1,55,45,DAL,CHI,2,6,39,(10:45) D.Murray right tackle to CHI 40 for -1 yards (B.Urlacher).,0,0,2012 -20121001_CHI@DAL,1,55,4,DAL,CHI,3,7,40,(10:04) (Shotgun) T.Romo sacked at CHI 47 for -7 yards (H.Melton).,0,0,2012 -20121001_CHI@DAL,1,54,36,DAL,CHI,4,14,47,(9:36) (Punt formation) B.Moorman punts 41 yards to CHI 6 Center-L.Ladouceur downed by DAL-P.Tanner.,0,0,2012 -20121001_CHI@DAL,1,54,32,CHI,DAL,1,10,94,(9:32) M.Forte up the middle to CHI 14 for 8 yards (S.Lissemore; M.Claiborne).,0,0,2012 -20121001_CHI@DAL,1,53,55,CHI,DAL,2,2,86,(8:55) M.Bush right guard to CHI 19 for 5 yards (S.Lissemore).,0,0,2012 -20121001_CHI@DAL,1,53,11,CHI,DAL,1,10,81,(8:11) J.Cutler pass incomplete short right to A.Jeffery. Quick 3-step drop back out pattern.,0,0,2012 -20121001_CHI@DAL,1,53,6,CHI,DAL,2,10,81,(8:06) M.Bush left guard to CHI 22 for 3 yards (B.Carter).,0,0,2012 -20121001_CHI@DAL,1,52,25,CHI,DAL,3,7,78,"(7:25) (Shotgun) J.Cutler pass short middle to B.Marshall to CHI 35 for 13 yards (S.Lee B.Carter). Pass complete on a ""slant"" pattern.",0,0,2012 -20121001_CHI@DAL,1,51,52,CHI,DAL,1,10,65,(6:52) M.Bush right guard to CHI 38 for 3 yards (S.Lee).,0,0,2012 -20121001_CHI@DAL,1,51,8,CHI,DAL,2,7,62,"(6:08) J.Cutler pass short left to M.Bush to CHI 46 for 8 yards (B.Carr). Pass complete on a ""wheel"" route.",0,0,2012 -20121001_CHI@DAL,1,50,25,CHI,DAL,1,10,54,(5:25) J.Cutler pass short left to D.Hester to CHI 47 for 1 yard (D.Ware).,0,0,2012 -20121001_CHI@DAL,1,49,56,CHI,DAL,2,9,53,(4:56) (Shotgun) J.Cutler pass short left to M.Forte to CHI 44 for -3 yards (S.Lee). Screen pass.,0,0,2012 -20121001_CHI@DAL,1,49,14,CHI,DAL,3,12,56,(4:14) J.Cutler pass short right to D.Hester to CHI 47 for 3 yards (M.Claiborne).,0,0,2012 -20121001_CHI@DAL,1,48,34,CHI,DAL,4,9,53,(3:34) (Punt formation) A.Podlesh punts 37 yards to DAL 16 Center-P.Mannelly downed by CHI-B.Costanzo.,0,0,2012 -20121001_CHI@DAL,1,48,24,DAL,CHI,1,10,84,(3:24) T.Romo pass short right to D.Murray pushed ob at DAL 36 for 20 yards (C.Conte).,0,0,2012 -20121001_CHI@DAL,1,47,53,DAL,CHI,1,10,64,(2:53) D.Murray up the middle to DAL 36 for no gain (J.Peppers; M.Wright). Injury update: Dallas' Bruce Carter has left hip injury; return questionable.,0,0,2012 -20121001_CHI@DAL,1,47,15,DAL,CHI,2,10,64,(2:15) (Shotgun) T.Romo pass short middle to D.Murray to DAL 40 for 4 yards (L.Briggs). FUMBLES (L.Briggs) recovered by DAL-R.Cook at DAL 41. R.Cook to DAL 41 for no gain (I.Idonije).,0,0,2012 -20121001_CHI@DAL,1,46,25,DAL,CHI,3,5,59,(1:25) (Shotgun) T.Romo pass incomplete short right to D.Bryant. Pass incomplete at the 50 sideline; Tillman closest defender.,0,0,2012 -20121001_CHI@DAL,1,46,17,DAL,CHI,4,5,59,(1:17) (Punt formation) B.Moorman punts 38 yards to CHI 21 Center-L.Ladouceur. D.Hester to CHI 29 for 8 yards (P.Tanner). PENALTY on CHI-G.Hayes Illegal Block Above the Waist 10 yards enforced at CHI 29.,0,0,2012 -20121001_CHI@DAL,1,46,10,CHI,DAL,1,10,81,(1:10) M.Forte left tackle to CHI 20 for 1 yard (T.Crawford).,0,0,2012 -20121001_CHI@DAL,1,45,37,CHI,DAL,2,9,80,"(:37) J.Cutler pass incomplete short middle to K.Davis. Pass incomplete on a ""seam"" route; Butler closest defender.",0,0,2012 -20121001_CHI@DAL,1,45,30,CHI,DAL,3,9,80,(:30) (Shotgun) J.Cutler scrambles up the middle to CHI 22 for 2 yards (D.Ware).,0,0,2012 -20121001_CHI@DAL,2,45,0,CHI,DAL,4,7,78,(15:00) (Punt formation) A.Podlesh punts 52 yards to DAL 26 Center-P.Mannelly out of bounds.,0,0,2012 -20121001_CHI@DAL,2,44,50,DAL,CHI,1,10,74,(14:50) T.Romo pass deep middle to D.Bryant to DAL 42 for 16 yards (C.Conte).,0,0,2012 -20121001_CHI@DAL,2,44,14,DAL,CHI,1,10,58,(14:14) D.Murray left tackle to DAL 46 for 4 yards (L.Briggs).,0,0,2012 -20121001_CHI@DAL,2,43,40,DAL,CHI,2,6,54,"(13:40) (Shotgun) T.Romo pass short left to D.Bryant to CHI 44 for 10 yards (C.Tillman). Pass complete on a ""quick"" out.",0,0,2012 -20121001_CHI@DAL,2,42,58,DAL,CHI,1,10,44,(12:58) D.Murray right end to CHI 45 for -1 yards (S.Paea).,0,0,2012 -20121001_CHI@DAL,2,42,22,DAL,CHI,2,11,45,(12:22) (Shotgun) T.Romo pass short right to K.Ogletree to CHI 38 for 7 yards (T.Jennings) [A.Okoye]. Pass complete on a curl pattern.,0,0,2012 -20121001_CHI@DAL,2,41,37,DAL,CHI,3,4,38,"(11:37) (Shotgun) T.Romo pass incomplete deep right to D.Bryant. Pass incomplete on a ""fly"" pattern; ball incomplete at the Chicago 10.",0,0,2012 -20121001_CHI@DAL,2,41,32,DAL,CHI,4,4,38,(11:32) (Punt formation) B.Moorman punts 32 yards to CHI 6 Center-L.Ladouceur downed by DAL-L.Ladouceur.,0,0,2012 -20121001_CHI@DAL,2,41,22,CHI,DAL,1,10,94,(11:22) M.Forte left guard to CHI 7 for 1 yard (J.Hatcher).,0,0,2012 -20121001_CHI@DAL,2,40,42,CHI,DAL,2,9,93,"(10:42) J.Cutler pass short middle to B.Marshall to CHI 25 for 18 yards (D.McCray). Pass complete on a ""skinny"" post.",0,0,2012 -20121001_CHI@DAL,2,40,6,CHI,DAL,1,10,75,(10:06) M.Forte right end pushed ob at CHI 34 for 9 yards (D.McCray).,0,0,2012 -20121001_CHI@DAL,2,39,32,CHI,DAL,2,1,66,"(9:32) J.Cutler pass incomplete deep middle to D.Hester. Pass incomplete on a ""fly"" pattern; ball incomplete at the Dallas 15; McCray closest defender.",0,0,2012 -20121001_CHI@DAL,2,39,24,CHI,DAL,3,1,66,(9:24) M.Bush up the middle to CHI 36 for 2 yards (S.Lee).,0,0,2012 -20121001_CHI@DAL,2,38,43,CHI,DAL,1,10,64,(8:43) M.Forte right tackle to DAL 50 for 14 yards (D.McCray).,0,0,2012 -20121001_CHI@DAL,2,38,6,CHI,DAL,1,10,50,"(8:06) J.Cutler pass incomplete deep right to A.Jeffery [T.Crawford]. Pass incomplete on a ""GO"" route.",0,0,2012 -20121001_CHI@DAL,2,37,59,CHI,DAL,2,10,50,(7:59) (Shotgun) J.Cutler pass incomplete short right to D.Sanzenbacher (O.Scandrick). Pass knocked away at the Dallas 45.,0,0,2012 -20121001_CHI@DAL,2,37,54,CHI,DAL,3,10,50,(7:54) (Shotgun) J.Cutler pass deep middle to K.Davis to DAL 34 for 16 yards (D.McCray). Pass complete after avoiding heavy pressure.,0,0,2012 -20121001_CHI@DAL,2,37,13,CHI,DAL,1,10,34,(7:13) PENALTY on CHI-M.Spaeth False Start 5 yards enforced at DAL 34 - No Play.,0,0,2012 -20121001_CHI@DAL,2,36,41,CHI,DAL,1,15,39,(6:41) J.Cutler pass short left to B.Marshall to DAL 27 for 12 yards (B.Carr). PENALTY on DAL-B.Carr Illegal Contact 5 yards enforced at DAL 39 - No Play.,0,0,2012 -20121001_CHI@DAL,2,36,14,CHI,DAL,1,10,34,(6:14) M.Forte left end to DAL 29 for 5 yards (B.Carr).,0,0,2012 -20121001_CHI@DAL,2,35,39,CHI,DAL,2,5,29,(5:39) (Shotgun) M.Forte left tackle to DAL 25 for 4 yards (S.Lee).,0,0,2012 -20121001_CHI@DAL,2,35,0,CHI,DAL,3,1,25,(5:00) M.Bush up the middle to DAL 25 for no gain (J.Hatcher; M.Spears).,0,0,2012 -20121001_CHI@DAL,2,34,21,CHI,DAL,4,1,25,(4:21) (Field Goal formation) R.Gould 43 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121001_CHI@DAL,2,34,21,CHI,DAL,,,25,R.Gould kicks 72 yards from CHI 35 to DAL -7. F.Jones Touchback.,3,0,2012 -20121001_CHI@DAL,2,34,15,DAL,CHI,1,10,80,"(4:15) T.Romo pass short left to J.Witten to DAL 25 for 5 yards (C.Conte). Pass complete on a ""crossing pattern.""",0,3,2012 -20121001_CHI@DAL,2,33,34,DAL,CHI,2,5,81,(3:34) (Shotgun) T.Romo FUMBLES (Aborted) at DAL 21 recovered by DAL-D.Murray at DAL 19. D.Murray to DAL 21 for 2 yards (C.Conte).,0,3,2012 -20121001_CHI@DAL,2,32,46,DAL,CHI,3,9,79,(2:46) (Shotgun) T.Romo pass short left intended for D.Bryant INTERCEPTED by C.Tillman at DAL 25. C.Tillman for 25 yards TOUCHDOWN.,0,3,2012 -20121001_CHI@DAL,2,32,46,CHI,DAL,,,79,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,0,2012 -20121001_CHI@DAL,2,32,46,CHI,DAL,,,79,R.Gould kicks 65 yards from CHI 35 to end zone Touchback. Ball was kicked out of the end zone.,10,0,2012 -20121001_CHI@DAL,2,32,38,DAL,CHI,1,10,80,(2:38) (Shotgun) T.Romo pass short middle to D.Murray to DAL 25 for 5 yards (D.Moore).,0,10,2012 -20121001_CHI@DAL,2,32,9,DAL,CHI,2,5,75,(2:09) (No Huddle Shotgun) T.Romo pass short right to J.Witten to DAL 36 for 11 yards (D.Moore).,0,10,2012 -20121001_CHI@DAL,2,32,0,DAL,CHI,1,10,64,(2:00) (Shotgun) T.Romo pass short right to D.Murray to DAL 41 for 5 yards (J.Peppers). Screen pass.,0,10,2012 -20121001_CHI@DAL,2,31,30,DAL,CHI,2,5,59,"(1:30) (No Huddle Shotgun) T.Romo pass short middle to D.Bryant to CHI 48 for 11 yards (C.Conte; D.Moore). Pass complete on a ""crossing"" pattern.",0,10,2012 -20121001_CHI@DAL,2,31,21,DAL,CHI,1,10,48,(1:21) (Shotgun) T.Romo pass short middle to M.Austin to CHI 36 for 12 yards (T.Jennings).,0,10,2012 -20121001_CHI@DAL,2,31,2,DAL,CHI,1,10,36,(1:02) (No Huddle Shotgun) T.Romo pass incomplete deep right. Pass too tall sideline at the Chicago 15.,0,10,2012 -20121001_CHI@DAL,2,30,55,DAL,CHI,2,10,36,(:55) (Shotgun) T.Romo pass deep middle to M.Austin to CHI 17 for 19 yards (C.Conte). Pass complete after being forced out of the pocket.,0,10,2012 -20121001_CHI@DAL,2,30,46,DAL,CHI,1,10,17,(:46) (Shotgun) T.Romo pass short left to D.Bryant to CHI 10 for 7 yards (T.Jennings). CHI-J.Peppers was injured during the play. His return is Probable.,0,10,2012 -20121001_CHI@DAL,2,30,20,DAL,CHI,2,3,10,"(:20) (Shotgun) T.Romo pass short middle to M.Austin for 10 yards TOUCHDOWN. Pass complete on a ""slant"" pattern.",0,10,2012 -20121001_CHI@DAL,2,30,20,DAL,CHI,,,10,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,10,2012 -20121001_CHI@DAL,2,30,20,DAL,CHI,,,10,D.Bailey kicks 38 yards from DAL 35 to CHI 27. C.Wootton to CHI 27 for no gain (A.Holmes).,7,10,2012 -20121001_CHI@DAL,2,30,14,CHI,DAL,1,10,73,(:14) J.Cutler kneels to CHI 26 for -1 yards.,10,7,2012 -20121001_CHI@DAL,3,30,0,DAL,CHI,,,73,D.Bailey kicks 67 yards from DAL 35 to CHI -2. D.Hester to CHI 27 for 29 yards (O.Lemon). Return outside the yard line markers.,7,10,2012 -20121001_CHI@DAL,3,29,53,CHI,DAL,1,10,73,"(14:53) J.Cutler pass short right to A.Jeffery to CHI 38 for 11 yards (M.Claiborne). Pass complete on a ""crossing"" pattern.",10,7,2012 -20121001_CHI@DAL,3,29,14,CHI,DAL,1,10,62,(14:14) M.Forte up the middle to CHI 40 for 2 yards (S.Lissemore).,10,7,2012 -20121001_CHI@DAL,3,28,28,CHI,DAL,2,8,60,"(13:28) J.Cutler pass deep left to A.Jeffery to DAL 44 for 16 yards (G.Sensabaugh). Pass complete on a ""curl"" route.",10,7,2012 -20121001_CHI@DAL,3,27,43,CHI,DAL,1,10,44,"(12:43) J.Cutler pass short left to B.Marshall to DAL 34 for 10 yards (G.Sensabaugh). Pass complete on a ""crossing"" pattern.",10,7,2012 -20121001_CHI@DAL,3,27,2,CHI,DAL,1,10,34,"(12:02) J.Cutler pass deep middle to D.Hester for 34 yards TOUCHDOWN. Pass complete on a ""post"" pattern. The Replay Assistant challenged the pass completion ruling and the play was Upheld.",10,7,2012 -20121001_CHI@DAL,3,27,2,CHI,DAL,,,34,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,7,2012 -20121001_CHI@DAL,3,27,2,CHI,DAL,,,34,R.Gould kicks 74 yards from CHI 35 to DAL -9. F.Jones Touchback.,17,7,2012 -20121001_CHI@DAL,3,26,54,DAL,CHI,1,10,80,(11:54) D.Murray right end to DAL 21 for 1 yard (I.Idonije).,7,17,2012 -20121001_CHI@DAL,3,26,19,DAL,CHI,2,9,79,"(11:19) (Shotgun) T.Romo pass short middle to K.Ogletree to DAL 25 for 4 yards (C.Tillman). Pass complete on a ""crossing"" pattern.",7,17,2012 -20121001_CHI@DAL,3,25,36,DAL,CHI,3,5,75,(10:36) (Shotgun) T.Romo pass short left to J.Witten pushed ob at DAL 39 for 14 yards (C.Conte). Pass complete after Romo flushed out of the pocket.,7,17,2012 -20121001_CHI@DAL,3,25,6,DAL,CHI,1,10,61,"(10:06) T.Romo pass deep middle to D.Bryant to CHI 36 for 25 yards (C.Conte; M.Wright). Pass complete on a ""post"" pattern.",7,17,2012 -20121001_CHI@DAL,3,24,25,DAL,CHI,1,10,36,"(9:25) T.Romo pass deep left to D.Bryant pushed ob at CHI 16 for 20 yards (C.Conte). Pass complete on a ""flag"" pattern.",7,17,2012 -20121001_CHI@DAL,3,23,53,DAL,CHI,1,10,16,(8:53) D.Murray left end to CHI 18 for -2 yards (N.Roach).,7,17,2012 -20121001_CHI@DAL,3,23,17,DAL,CHI,2,12,18,(8:17) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by M.Wright at CHI 6. M.Wright to CHI 6 for no gain (M.Austin).,7,17,2012 -20121001_CHI@DAL,3,23,9,CHI,DAL,1,10,94,(8:09) J.Cutler pass short middle to B.Marshall pushed ob at CHI 31 for 25 yards (D.McCray; G.Sensabaugh) [B.Carter].,17,7,2012 -20121001_CHI@DAL,3,22,40,CHI,DAL,1,10,69,(7:40) M.Forte left guard to CHI 34 for 3 yards (S.Lee).,17,7,2012 -20121001_CHI@DAL,3,22,0,CHI,DAL,2,7,66,(7:00) PENALTY on CHI-B.Marshall False Start 5 yards enforced at CHI 34 - No Play.,17,7,2012 -20121001_CHI@DAL,3,21,33,CHI,DAL,2,12,71,(6:33) (Shotgun) J.Cutler sacked at CHI 22 for -7 yards (D.Ware). FUMBLES (D.Ware) RECOVERED by DAL-V.Butler at CHI 27. V.Butler to CHI 27 for no gain (K.Davis).,17,7,2012 -20121001_CHI@DAL,3,21,25,DAL,CHI,1,10,27,(6:25) T.Romo pass short middle intended for J.Witten INTERCEPTED by L.Briggs at CHI 26. L.Briggs for 74 yards TOUCHDOWN. Heavy pressure by Melton,7,17,2012 -20121001_CHI@DAL,3,21,25,CHI,DAL,,,27,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,17,7,2012 -20121001_CHI@DAL,3,21,25,CHI,DAL,,,27,R.Gould kicks 65 yards from CHI 35 to end zone Touchback. Ball was kicked out of the end zone.,24,7,2012 -20121001_CHI@DAL,3,21,11,DAL,CHI,1,10,80,(6:11) D.Murray up the middle to DAL 26 for 6 yards (D.Moore).,7,24,2012 -20121001_CHI@DAL,3,20,45,DAL,CHI,2,4,74,(5:45) (No Huddle Shotgun) T.Romo pass short middle to J.Witten to DAL 32 for 6 yards (D.Moore).,7,24,2012 -20121001_CHI@DAL,3,20,19,DAL,CHI,1,10,68,(5:19) (No Huddle Shotgun) T.Romo pass short left to D.Murray to DAL 47 for 15 yards (C.Tillman). Pass complete in the flat.,7,24,2012 -20121001_CHI@DAL,3,19,37,DAL,CHI,1,10,53,(4:37) (Shotgun) D.Murray left tackle to CHI 47 for 6 yards (M.Wright).,7,24,2012 -20121001_CHI@DAL,3,19,0,DAL,CHI,2,4,47,(4:00) (Shotgun) T.Romo pass short middle to J.Witten to CHI 39 for 8 yards (D.Moore).,7,24,2012 -20121001_CHI@DAL,3,18,26,DAL,CHI,1,10,39,(3:26) F.Jones up the middle to CHI 26 for 13 yards (D.Moore C.Tillman).,7,24,2012 -20121001_CHI@DAL,3,17,50,DAL,CHI,1,10,26,(2:50) (Shotgun) T.Romo pass short left to J.Witten pushed ob at CHI 22 for 4 yards (B.Urlacher).,7,24,2012 -20121001_CHI@DAL,3,17,25,DAL,CHI,2,6,22,(2:25) (Shotgun) T.Romo pass incomplete deep right to M.Austin. Pass incomplete end zone; Hayden closest defender.,7,24,2012 -20121001_CHI@DAL,3,17,20,DAL,CHI,3,6,22,"(2:20) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete on a ""slant"" pattern; Tillman closest defender.",7,24,2012 -20121001_CHI@DAL,3,17,14,DAL,CHI,4,6,22,(2:14) (Field Goal formation) D.Bailey 39 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,7,24,2012 -20121001_CHI@DAL,3,17,14,DAL,CHI,,,22,D.Bailey kicks 67 yards from DAL 35 to CHI -2. D.Hester to CHI 19 for 21 yards (D.Connor). Return inside the yard line markers.,10,24,2012 -20121001_CHI@DAL,3,17,4,CHI,DAL,1,10,81,"(2:04) J.Cutler pass short middle to B.Marshall to CHI 30 for 11 yards (G.Sensabaugh). Pass complete on a ""curl.""",24,10,2012 -20121001_CHI@DAL,3,16,19,CHI,DAL,1,10,70,(1:19) J.Cutler pass short left to A.Jeffery to CHI 35 for 5 yards (M.Claiborne). FUMBLES (M.Claiborne) RECOVERED by DAL-M.Claiborne at CHI 36. M.Claiborne ran ob at CHI 32 for 4 yards. The Replay Assistant challenged the fumble ruling and the play was REVERSED. J.Cutler pass short left to A.Jeffery to CHI 35 for 5 yards (M.Claiborne).,24,10,2012 -20121001_CHI@DAL,3,15,59,CHI,DAL,2,5,65,(:59) M.Forte left tackle to CHI 36 for 1 yard (S.Lee).,24,10,2012 -20121001_CHI@DAL,3,15,20,CHI,DAL,3,4,64,(:20) (Shotgun) J.Cutler pass deep right to K.Davis to DAL 43 for 21 yards (M.Jenkins).,24,10,2012 -20121001_CHI@DAL,4,15,0,CHI,DAL,1,10,43,(15:00) M.Forte left end to DAL 41 for 2 yards (J.Price-Brent).,24,10,2012 -20121001_CHI@DAL,4,14,23,CHI,DAL,2,8,41,(14:23) M.Forte up the middle to DAL 38 for 3 yards (V.Butler S.Lee).,24,10,2012 -20121001_CHI@DAL,4,13,42,CHI,DAL,3,5,38,"(13:42) (Shotgun) J.Cutler pass deep right to B.Marshall to DAL 8 for 30 yards (B.Carr). Pass complete on a ""fly"" pattern.",24,10,2012 -20121001_CHI@DAL,4,12,57,CHI,DAL,1,8,8,(12:57) (Shotgun) M.Bush left tackle to DAL 3 for 5 yards (S.Lissemore S.Lee).,24,10,2012 -20121001_CHI@DAL,4,12,14,CHI,DAL,2,3,3,(12:14) M.Forte up the middle to DAL 4 for -1 yards (M.Spears; S.Lee).,24,10,2012 -20121001_CHI@DAL,4,11,34,CHI,DAL,3,4,4,(11:34) (Shotgun) J.Cutler pass incomplete short left to B.Marshall. PENALTY on DAL-B.Carr Defensive Pass Interference 3 yards enforced at DAL 4 - No Play. Dallas challenged the tipped pass ruling and the play was REVERSED. (Shotgun) J.Cutler pass incomplete short left to B.Marshall.,24,10,2012 -20121001_CHI@DAL,4,11,27,CHI,DAL,4,4,4,(11:27) (Field Goal formation) R.Gould 21 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,24,10,2012 -20121001_CHI@DAL,4,11,27,CHI,DAL,,,4,R.Gould kicks 72 yards from CHI 35 to DAL -7. F.Jones to DAL 15 for 22 yards (E.Weems). Return inside the yard line markers.,27,10,2012 -20121001_CHI@DAL,4,11,17,DAL,CHI,1,10,85,(11:17) T.Romo pass short middle to D.Bryant to DAL 24 for 9 yards (L.Briggs).,10,27,2012 -20121001_CHI@DAL,4,10,52,DAL,CHI,2,1,76,(10:52) (No Huddle Shotgun) T.Romo pass short left to D.Murray to DAL 32 for 8 yards (L.Briggs).,10,27,2012 -20121001_CHI@DAL,4,10,27,DAL,CHI,1,10,68,"(10:27) (No Huddle Shotgun) T.Romo pass incomplete deep right to D.Bryant. Pass incomplete on a ""fly"" pattern; Wright was the closest defender.",10,27,2012 -20121001_CHI@DAL,4,10,20,DAL,CHI,2,10,68,(10:20) (Shotgun) T.Romo pass short left to D.Bryant pushed ob at DAL 39 for 7 yards (C.Tillman).,10,27,2012 -20121001_CHI@DAL,4,9,55,DAL,CHI,3,3,61,(9:55) (No Huddle Shotgun) T.Romo pass incomplete short middle to D.Harris.,10,27,2012 -20121001_CHI@DAL,4,9,48,DAL,CHI,4,3,61,(9:48) (Shotgun) T.Romo pass short middle to M.Austin to CHI 45 for 16 yards (D.Moore). Pass complete on a slant.,10,27,2012 -20121001_CHI@DAL,4,9,22,DAL,CHI,1,10,45,(9:22) (No Huddle Shotgun) T.Romo pass short middle to D.Murray to CHI 41 for 4 yards (D.Moore). PENALTY on DAL-D.Bryant Illegal Shift 5 yards enforced at CHI 45 - No Play.,10,27,2012 -20121001_CHI@DAL,4,9,9,DAL,CHI,1,15,50,(9:09) (No Huddle Shotgun) T.Romo pass short middle to D.Murray to CHI 50 for no gain (D.Moore).,10,27,2012 -20121001_CHI@DAL,4,8,37,DAL,CHI,2,15,50,(8:37) (No Huddle Shotgun) T.Romo pass deep middle intended for M.Austin INTERCEPTED by D.Moore at CHI 33. D.Moore to CHI 33 for no gain (M.Austin).,10,27,2012 -20121001_CHI@DAL,4,8,30,CHI,DAL,1,10,67,(8:30) M.Bush left guard to CHI 38 for 5 yards (J.Price-Brent).,27,10,2012 -20121001_CHI@DAL,4,7,46,CHI,DAL,2,5,62,(7:46) M.Bush up the middle to CHI 40 for 2 yards (S.Lee).,27,10,2012 -20121001_CHI@DAL,4,7,37,CHI,DAL,3,3,60,(7:37) J.Cutler pass deep right to K.Davis to DAL 35 for 25 yards (G.Sensabaugh).,27,10,2012 -20121001_CHI@DAL,4,6,47,CHI,DAL,1,10,35,(6:47) M.Bush up the middle to DAL 32 for 3 yards (D.McCray; S.Lee).,27,10,2012 -20121001_CHI@DAL,4,6,41,CHI,DAL,2,7,32,(6:41) M.Bush left end to DAL 31 for 1 yard (S.Lee).,27,10,2012 -20121001_CHI@DAL,4,6,35,CHI,DAL,3,6,31,(6:35) J.Cutler pass short middle to B.Marshall for 31 yards TOUCHDOWN.,27,10,2012 -20121001_CHI@DAL,4,6,35,CHI,DAL,,,31,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,27,10,2012 -20121001_CHI@DAL,4,6,35,CHI,DAL,,,31,R.Gould kicks 74 yards from CHI 35 to DAL -9. F.Jones to DAL 17 for 26 yards (K.Hayden).,34,10,2012 -20121001_CHI@DAL,4,6,21,DAL,CHI,1,10,83,(6:21) (Shotgun) T.Romo pass short right to J.Witten to DAL 20 for 3 yards (L.Briggs).,10,34,2012 -20121001_CHI@DAL,4,5,57,DAL,CHI,2,7,80,(5:57) (No Huddle Shotgun) T.Romo pass deep right intended for K.Ogletree INTERCEPTED by M.Wright at DAL 43. M.Wright ran ob at DAL 43 for no gain.,10,34,2012 -20121001_CHI@DAL,4,5,51,CHI,DAL,1,10,43,(5:51) K.Bell up the middle to DAL 41 for 2 yards (J.Price-Brent).,34,10,2012 -20121001_CHI@DAL,4,5,9,CHI,DAL,2,8,41,(5:09) PENALTY on CHI-K.Bell False Start 5 yards enforced at DAL 41 - No Play.,34,10,2012 -20121001_CHI@DAL,4,4,42,CHI,DAL,2,13,46,(4:42) J.Cutler sacked at CHI 48 for -6 yards (J.Price-Brent).,34,10,2012 -20121001_CHI@DAL,4,4,1,CHI,DAL,3,19,52,(4:01) K.Bell up the middle to DAL 42 for 10 yards (S.Lee).,34,10,2012 -20121001_CHI@DAL,4,3,7,CHI,DAL,4,9,42,(3:07) (Punt formation) A.Podlesh punts 31 yards to DAL 11 Center-P.Mannelly fair catch by D.Harris.,34,10,2012 -20121001_CHI@DAL,4,3,3,DAL,CHI,1,10,89,(3:03) (Shotgun) K.Orton pass short middle to J.Witten to DAL 19 for 8 yards (D.Moore).,10,34,2012 -20121001_CHI@DAL,4,2,38,DAL,CHI,2,2,81,(2:38) K.Orton pass short middle to P.Tanner to DAL 24 for 5 yards (G.Hayes).,10,34,2012 -20121001_CHI@DAL,4,2,38,DAL,CHI,1,10,76,(2:38) (No Huddle Shotgun) K.Orton pass incomplete short middle to P.Tanner.,10,34,2012 -20121001_CHI@DAL,4,2,14,DAL,CHI,2,10,76,(2:14) (Shotgun) K.Orton pass short middle to C.Beasley to DAL 31 for 7 yards (G.Hayes).,10,34,2012 -20121001_CHI@DAL,4,2,0,DAL,CHI,3,3,69,(2:00) (Shotgun) K.Orton pass short middle to A.Holmes to DAL 38 for 7 yards (T.Jennings).,10,34,2012 -20121001_CHI@DAL,4,1,40,DAL,CHI,1,10,62,(1:40) (No Huddle Shotgun) K.Orton pass deep middle to J.Witten to CHI 41 for 21 yards (C.Steltz).,10,34,2012 -20121001_CHI@DAL,4,1,18,DAL,CHI,1,10,41,(1:18) (No Huddle Shotgun) K.Orton pass short right to P.Tanner to CHI 26 for 15 yards (T.Jennings).,10,34,2012 -20121001_CHI@DAL,4,0,52,DAL,CHI,1,10,26,(:52) (No Huddle Shotgun) K.Orton pass short right to J.Witten pushed ob at CHI 12 for 14 yards (C.Steltz).,10,34,2012 -20121001_CHI@DAL,4,0,45,DAL,CHI,1,10,12,(:45) (Shotgun) K.Orton pass short right to C.Beasley ran ob at CHI 5 for 7 yards.,10,34,2012 -20121001_CHI@DAL,4,0,38,DAL,CHI,2,3,5,(:38) (Shotgun) K.Orton pass short right to J.Witten for 5 yards TOUCHDOWN.,10,34,2012 -20121001_CHI@DAL,4,0,38,DAL,CHI,,,5,TWO-POINT CONVERSION ATTEMPT. K.Orton pass to D.Bryant is complete. ATTEMPT SUCCEEDS.,10,34,2012 -20121001_CHI@DAL,4,0,38,DAL,CHI,,,5,D.Bailey kicks onside 13 yards from DAL 35 to DAL 48. A.Jeffery (didn't try to advance) to DAL 48 for no gain (N.Livings).,18,34,2012 -20121001_CHI@DAL,4,0,34,CHI,DAL,1,10,48,(:34) J.Cutler kneels to DAL 49 for -1 yards.,34,18,2012 -20121001_CHI@DAL,4,0,34,CHI,DAL,,,48,                      ,34,18,2012 -20121004_ARI@STL,1,0,0,ARI,STL,,,48,J.Feely kicks 70 yards from ARZ 35 to SL -5. C.Givens to SL 31 for 36 yards (G.Toler).,0,0,2012 -20121004_ARI@STL,1,59,52,STL,ARI,1,10,69,(14:52) S.Bradford pass short right to B.Gibson to SL 45 for 14 yards (O.Schofield) [C.Campbell].,0,0,2012 -20121004_ARI@STL,1,59,10,STL,ARI,1,10,55,(14:10) S.Bradford pass deep left to D.Amendola to ARZ 11 for 44 yards (P.Peterson) [D.Washington]. Penalty on ARZ-P.Peterson Defensive Pass Interference declined.,0,0,2012 -20121004_ARI@STL,1,58,36,STL,ARI,1,10,11,(13:36) (Shotgun) S.Bradford pass incomplete short middle to A.Pettis.,0,0,2012 -20121004_ARI@STL,1,58,30,STL,ARI,2,10,11,(13:30) (Shotgun) S.Bradford scrambles up the middle to ARZ 7 for 4 yards (S.Acho).,0,0,2012 -20121004_ARI@STL,1,57,45,STL,ARI,3,6,7,(12:45) (Shotgun) S.Bradford pass short left to L.Kendricks for 7 yards TOUCHDOWN.,0,0,2012 -20121004_ARI@STL,1,57,45,STL,ARI,,,7,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121004_ARI@STL,1,57,45,STL,ARI,,,7,G.Zuerlein kicks 73 yards from SL 35 to ARZ -8. W.Powell Touchback.,7,0,2012 -20121004_ARI@STL,1,57,39,ARI,STL,1,10,80,(12:39) (Shotgun) K.Kolb pass short right to L.Fitzgerald to ARZ 25 for 5 yards (C.Finnegan; B.Fletcher).,0,7,2012 -20121004_ARI@STL,1,57,11,ARI,STL,2,5,75,(12:11) (Shotgun) K.Kolb pass short left to A.Roberts to ARZ 28 for 3 yards (Q.Mikell; J.Jenkins).,0,7,2012 -20121004_ARI@STL,1,56,20,ARI,STL,3,2,72,(11:20) (Shotgun) K.Kolb pass short left to R.Williams to ARZ 33 for 5 yards (J.Laurinaitis).,0,7,2012 -20121004_ARI@STL,1,55,43,ARI,STL,1,10,67,(10:43) R.Williams left tackle to ARZ 38 for 5 yards (R.Quinn).,0,7,2012 -20121004_ARI@STL,1,54,59,ARI,STL,2,5,62,(9:59) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 42 for 4 yards (Q.Mikell).,0,7,2012 -20121004_ARI@STL,1,54,59,ARI,STL,3,1,58,(9:59) K.Kolb up the middle to ARZ 44 for 2 yards (M.Brockers; R.Quinn).,0,7,2012 -20121004_ARI@STL,1,53,35,ARI,STL,1,10,56,(8:35) R.Williams right guard to ARZ 45 for 1 yard (C.Long; C.Finnegan).,0,7,2012 -20121004_ARI@STL,1,52,55,ARI,STL,2,9,55,(7:55) (Shotgun) K.Kolb pass short right to A.Roberts to SL 47 for 8 yards (C.Dahl).,0,7,2012 -20121004_ARI@STL,1,52,20,ARI,STL,3,1,47,(7:20) R.Williams right tackle to SL 44 for 3 yards (J.Dunbar; C.Finnegan).,0,7,2012 -20121004_ARI@STL,1,51,41,ARI,STL,1,10,44,(6:41) A.Roberts up the middle to SL 41 for 3 yards (J.Laurinaitis).,0,7,2012 -20121004_ARI@STL,1,50,57,ARI,STL,2,7,41,(5:57) R.Williams up the middle to SL 37 for 4 yards (Q.Mikell). PENALTY on SL-C.Long Defensive Offside 5 yards enforced at SL 41 - No Play.,0,7,2012 -20121004_ARI@STL,1,50,33,ARI,STL,2,2,36,(5:33) (Shotgun) R.Williams right end to SL 30 for 6 yards (J.Cudjo; J.Laurinaitis).,0,7,2012 -20121004_ARI@STL,1,49,47,ARI,STL,1,10,30,(4:47) K.Kolb pass incomplete deep middle to R.Housler.,0,7,2012 -20121004_ARI@STL,1,49,41,ARI,STL,2,10,30,(4:41) (Shotgun) K.Kolb pass short right to A.Roberts to SL 19 for 11 yards (B.Fletcher).,0,7,2012 -20121004_ARI@STL,1,49,12,ARI,STL,1,10,19,(4:12) R.Williams left end to SL 17 for 2 yards (J.Laurinaitis).,0,7,2012 -20121004_ARI@STL,1,48,27,ARI,STL,2,8,17,(3:27) (Shotgun) K.Kolb pass incomplete short middle to L.Fitzgerald (J.Dunbar).,0,7,2012 -20121004_ARI@STL,1,48,22,ARI,STL,3,8,17,(3:22) (Shotgun) K.Kolb pass incomplete short right to E.Doucet.,0,7,2012 -20121004_ARI@STL,1,48,19,ARI,STL,4,8,17,(3:19) J.Feely 35 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,7,2012 -20121004_ARI@STL,1,48,19,ARI,STL,,,17,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,3,7,2012 -20121004_ARI@STL,1,48,15,STL,ARI,1,10,80,(3:15) (Shotgun) S.Bradford pass short right to A.Pettis to SL 26 for 6 yards (M.Adams).,7,3,2012 -20121004_ARI@STL,1,47,44,STL,ARI,2,4,74,(2:44) S.Jackson right tackle to SL 26 for no gain (O.Schofield; D.Williams).,7,3,2012 -20121004_ARI@STL,1,47,2,STL,ARI,3,4,74,(2:02) S.Bradford pass incomplete short left to D.Amendola (P.Peterson).,7,3,2012 -20121004_ARI@STL,1,46,53,STL,ARI,4,4,74,(1:53) J.Hekker punts 56 yards to ARZ 18 Center-J.McQuaide. P.Peterson to ARZ 29 for 11 yards (M.Haggan). SL-M.Haggan was injured during the play.,7,3,2012 -20121004_ARI@STL,1,46,42,ARI,STL,1,10,71,(1:42) K.Kolb pass deep middle to L.Fitzgerald to ARZ 48 for 19 yards (J.Laurinaitis).,3,7,2012 -20121004_ARI@STL,1,45,56,ARI,STL,1,10,52,(:56) (Shotgun) K.Kolb sacked at ARZ 48 for 0 yards (B.Fletcher).,3,7,2012 -20121004_ARI@STL,1,45,26,ARI,STL,2,10,52,(:26) R.Williams right end pushed ob at SL 48 for 4 yards (C.Finnegan).,3,7,2012 -20121004_ARI@STL,2,45,0,ARI,STL,3,6,48,(15:00) (Shotgun) K.Kolb sacked at ARZ 43 for -9 yards (C.Long).,3,7,2012 -20121004_ARI@STL,2,45,0,ARI,STL,4,15,57,(15:00) D.Zastudil punts 49 yards to SL 8 Center-M.Leach fair catch by D.Amendola.,3,7,2012 -20121004_ARI@STL,2,44,25,STL,ARI,1,10,92,(14:25) S.Bradford pass short left to B.Gibson to SL 18 for 10 yards (P.Peterson).,7,3,2012 -20121004_ARI@STL,2,43,44,STL,ARI,1,10,82,(13:44) S.Bradford pass incomplete short left to L.Kendricks [O.Schofield].,7,3,2012 -20121004_ARI@STL,2,43,38,STL,ARI,2,10,82,(13:38) (Shotgun) S.Bradford pass incomplete short middle to D.Richardson (C.Campbell).,7,3,2012 -20121004_ARI@STL,2,43,34,STL,ARI,3,10,82,(13:34) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,7,3,2012 -20121004_ARI@STL,2,43,30,STL,ARI,4,10,82,(13:30) J.Hekker punts 68 yards to ARZ 14 Center-J.McQuaide out of bounds.,7,3,2012 -20121004_ARI@STL,2,43,21,ARI,STL,1,10,86,(13:21) R.Williams up the middle to ARZ 18 for 4 yards (Q.Mikell; M.Brockers).,3,7,2012 -20121004_ARI@STL,2,42,46,ARI,STL,2,6,82,(12:46) (Shotgun) K.Kolb pass incomplete deep right to L.Fitzgerald.,3,7,2012 -20121004_ARI@STL,2,42,41,ARI,STL,3,6,82,(12:41) (Shotgun) K.Kolb pass incomplete short right to W.Powell.,3,7,2012 -20121004_ARI@STL,2,42,37,ARI,STL,4,6,82,(12:37) D.Zastudil punts 46 yards to SL 36 Center-M.Leach. D.Amendola to 50 for 14 yards (R.Johnson).,3,7,2012 -20121004_ARI@STL,2,42,23,STL,ARI,1,10,50,(12:23) S.Jackson right guard to ARZ 38 for 12 yards (P.Lenon).,7,3,2012 -20121004_ARI@STL,2,41,37,STL,ARI,1,10,38,(11:37) S.Jackson left tackle to ARZ 36 for 2 yards (S.Acho).,7,3,2012 -20121004_ARI@STL,2,41,0,STL,ARI,2,8,36,(11:00) (No Huddle) S.Bradford pass incomplete short left to C.Givens.,7,3,2012 -20121004_ARI@STL,2,40,56,STL,ARI,3,8,36,(10:56) (Shotgun) S.Bradford pass incomplete deep right to D.Amendola.,7,3,2012 -20121004_ARI@STL,2,40,50,STL,ARI,4,8,36,(10:50) G.Zuerlein 53 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,7,3,2012 -20121004_ARI@STL,2,40,50,STL,ARI,,,36,G.Zuerlein kicks 74 yards from SL 35 to ARZ -9. W.Powell Touchback.,10,3,2012 -20121004_ARI@STL,2,40,45,ARI,STL,1,10,80,(10:45) K.Kolb pass incomplete short right to L.Fitzgerald (C.Finnegan).,3,10,2012 -20121004_ARI@STL,2,40,39,ARI,STL,2,10,80,(10:39) K.Kolb pass incomplete deep left to R.Housler (J.Jenkins).,3,10,2012 -20121004_ARI@STL,2,40,34,ARI,STL,3,10,80,(10:34) (Shotgun) K.Kolb pass short left to R.Housler pushed ob at ARZ 45 for 25 yards (C.Dahl).,3,10,2012 -20121004_ARI@STL,2,40,12,ARI,STL,1,10,55,(10:12) K.Kolb pass incomplete deep middle to A.Roberts.,3,10,2012 -20121004_ARI@STL,2,40,5,ARI,STL,2,10,55,(10:05) R.Williams left tackle to 50 for 5 yards (J.Dunbar).,3,10,2012 -20121004_ARI@STL,2,39,22,ARI,STL,3,5,50,(9:22) (Shotgun) K.Kolb pass incomplete short left to M.Floyd.,3,10,2012 -20121004_ARI@STL,2,39,17,ARI,STL,4,5,50,(9:17) D.Zastudil punts 46 yards to SL 4 Center-M.Leach downed by ARZ-R.Johnson.,3,10,2012 -20121004_ARI@STL,2,39,5,STL,ARI,1,10,96,(9:05) S.Jackson right tackle to SL 8 for 4 yards (D.Williams).,10,3,2012 -20121004_ARI@STL,2,38,35,STL,ARI,2,6,92,(8:35) S.Jackson up the middle to SL 9 for 1 yard (V.Holliday).,10,3,2012 -20121004_ARI@STL,2,37,51,STL,ARI,3,5,91,(7:51) (Shotgun) S.Bradford pass short right to D.Amendola to SL 31 for 22 yards (W.Gay). Arizona challenged the pass completion ruling and the play was REVERSED. (Shotgun) S.Bradford pass incomplete deep right to D.Amendola. SL-D.Amendola was injured during the play. His return is Questionable.,10,3,2012 -20121004_ARI@STL,2,37,47,STL,ARI,4,5,91,(7:47) J.Hekker punts 60 yards to ARZ 31 Center-J.McQuaide. P.Peterson to 50 for 19 yards (R.McIntosh; J.Cole).,10,3,2012 -20121004_ARI@STL,2,37,33,ARI,STL,1,10,50,(7:33) (Shotgun) K.Kolb pass short left to R.Housler to SL 37 for 13 yards (C.Finnegan). SL-Q.Mikell was injured during the play. His return is Doubtful.,3,10,2012 -20121004_ARI@STL,2,36,54,ARI,STL,1,10,37,(6:54) (Shotgun) K.Kolb sacked at SL 46 for -9 yards (R.Quinn).,3,10,2012 -20121004_ARI@STL,2,36,22,ARI,STL,2,19,46,(6:22) (Shotgun) K.Kolb pass short middle to R.Housler to SL 39 for 7 yards (J.Dunbar).,3,10,2012 -20121004_ARI@STL,2,35,35,ARI,STL,3,12,39,(5:35) (Shotgun) K.Kolb pass short middle to E.Doucet to SL 27 for 12 yards (C.Finnegan; C.Dahl).,3,10,2012 -20121004_ARI@STL,2,34,51,ARI,STL,1,10,27,(4:51) K.Kolb pass incomplete deep left to L.Fitzgerald.,3,10,2012 -20121004_ARI@STL,2,34,45,ARI,STL,2,10,27,(4:45) R.Williams left tackle to SL 27 for no gain (J.Laurinaitis; C.Dahl).,3,10,2012 -20121004_ARI@STL,2,34,6,ARI,STL,3,10,27,(4:06) (Shotgun) PENALTY on SL-M.Brockers Neutral Zone Infraction 5 yards enforced at SL 27 - No Play.,3,10,2012 -20121004_ARI@STL,2,33,43,ARI,STL,3,5,22,(3:43) (Shotgun) K.Kolb pass incomplete short left to A.Roberts (J.Jenkins).,3,10,2012 -20121004_ARI@STL,2,33,35,ARI,STL,4,5,22,(3:35) J.Feely 40 yard field goal is No Good Wide Left Center-M.Leach Holder-D.Zastudil.,3,10,2012 -20121004_ARI@STL,2,33,31,STL,ARI,1,10,70,(3:31) D.Richardson right tackle to SL 37 for 7 yards (P.Lenon).,10,3,2012 -20121004_ARI@STL,2,32,56,STL,ARI,2,3,63,(2:56) D.Richardson up the middle to SL 37 for no gain (O.Schofield).,10,3,2012 -20121004_ARI@STL,2,32,12,STL,ARI,3,3,63,(2:12) S.Bradford sacked at SL 27 for -10 yards (D.Washington).,10,3,2012 -20121004_ARI@STL,2,32,0,STL,ARI,4,13,73,(2:00) (Punt formation) J.Hekker punts 55 yards to ARZ 18 Center-J.McQuaide. P.Peterson to SL 47 for 35 yards (L.Kendricks). PENALTY on ARZ-A.Smith Defensive Offside 5 yards enforced at SL 27 - No Play.,10,3,2012 -20121004_ARI@STL,2,31,46,STL,ARI,4,8,68,(1:46) (Punt formation) PENALTY on ARZ-J.Bethel Neutral Zone Infraction 5 yards enforced at SL 32 - No Play.,10,3,2012 -20121004_ARI@STL,2,31,46,STL,ARI,4,3,63,(1:46) J.Hekker punts 57 yards to ARZ 6 Center-J.McQuaide out of bounds.,10,3,2012 -20121004_ARI@STL,2,31,38,ARI,STL,1,10,94,(1:38) W.Powell left tackle to ARZ 13 for 7 yards (C.Dahl).,3,10,2012 -20121004_ARI@STL,2,30,59,ARI,STL,2,3,87,(:59) K.Kolb sacked at ARZ 8 for -5 yards (J.Dunbar).,3,10,2012 -20121004_ARI@STL,2,30,55,ARI,STL,3,8,92,(:55) (Shotgun) K.Kolb pass short middle to W.Powell to ARZ 10 for 2 yards (C.Finnegan; J.Dunbar). PENALTY on SL-K.Langford Roughing the Passer 15 yards enforced at ARZ 10.,3,10,2012 -20121004_ARI@STL,2,30,47,ARI,STL,1,10,75,(:47) K.Kolb pass short right to W.Powell to ARZ 35 for 10 yards (B.Fletcher).,3,10,2012 -20121004_ARI@STL,2,30,41,ARI,STL,1,10,65,(:41) (Shotgun) K.Kolb pass incomplete short left to M.Floyd.,3,10,2012 -20121004_ARI@STL,2,30,38,ARI,STL,2,10,65,(:38) (Shotgun) K.Kolb pass short right to W.Powell to ARZ 43 for 8 yards (J.Dunbar).,3,10,2012 -20121004_ARI@STL,2,30,29,ARI,STL,3,2,57,(:29) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (J.Jenkins).,3,10,2012 -20121004_ARI@STL,2,30,25,ARI,STL,4,2,57,(:25) D.Zastudil punts 49 yards to SL 8 Center-M.Leach. J.Jenkins to SL 21 for 13 yards (S.Acho).,3,10,2012 -20121004_ARI@STL,2,30,15,STL,ARI,1,10,79,(:15) S.Bradford kneels to SL 20 for -1 yards.,10,3,2012 -20121004_ARI@STL,3,30,0,STL,ARI,,,79,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,10,3,2012 -20121004_ARI@STL,3,30,0,ARI,STL,1,10,80,(15:00) R.Williams left tackle to ARZ 16 for -4 yards (R.Quinn; K.Langford).,3,10,2012 -20121004_ARI@STL,3,29,21,ARI,STL,2,14,84,(14:21) (Shotgun) K.Kolb pass incomplete short right to A.Roberts.,3,10,2012 -20121004_ARI@STL,3,29,15,ARI,STL,3,14,84,(14:15) (Shotgun) K.Kolb pass short left to J.King to ARZ 20 for 4 yards (T.Johnson).,3,10,2012 -20121004_ARI@STL,3,28,32,ARI,STL,4,10,80,(13:32) D.Zastudil punts 48 yards to SL 32 Center-M.Leach. J.Jenkins to SL 36 for 4 yards (M.Leach).,3,10,2012 -20121004_ARI@STL,3,28,20,STL,ARI,1,10,64,(13:20) S.Bradford pass incomplete short left to C.Givens.,10,3,2012 -20121004_ARI@STL,3,28,15,STL,ARI,2,10,64,(13:15) (Shotgun) S.Bradford pass incomplete short middle to C.Givens.,10,3,2012 -20121004_ARI@STL,3,28,11,STL,ARI,3,10,64,(13:11) (Shotgun) PENALTY on SL-B.Richardson False Start 5 yards enforced at SL 36 - No Play.,10,3,2012 -20121004_ARI@STL,3,27,46,STL,ARI,3,15,69,(12:46) (Shotgun) S.Bradford pass incomplete deep left to C.Givens.,10,3,2012 -20121004_ARI@STL,3,27,38,STL,ARI,4,15,69,(12:38) J.Hekker punts 58 yards to ARZ 11 Center-J.McQuaide. P.Peterson to ARZ 13 for 2 yards (J.Hull). SL-B.Fletcher was injured during the play.,10,3,2012 -20121004_ARI@STL,3,27,23,ARI,STL,1,10,87,(12:23) R.Williams up the middle to ARZ 11 for -2 yards (W.Hayes; K.Langford).,3,10,2012 -20121004_ARI@STL,3,26,43,ARI,STL,2,12,89,(11:43) K.Kolb pass incomplete short left to E.Doucet [C.Long].,3,10,2012 -20121004_ARI@STL,3,26,36,ARI,STL,3,12,89,(11:36) (Shotgun) K.Kolb pass incomplete deep right to L.Fitzgerald.,3,10,2012 -20121004_ARI@STL,3,26,30,ARI,STL,4,12,89,(11:30) D.Zastudil punts 51 yards to SL 38 Center-M.Leach. J.Jenkins to SL 43 for 5 yards (R.Johnson; K.Rhodes).,3,10,2012 -20121004_ARI@STL,3,26,15,STL,ARI,1,10,57,(11:15) S.Jackson right guard to 50 for 7 yards (G.Toler).,10,3,2012 -20121004_ARI@STL,3,25,43,STL,ARI,2,3,50,(10:43) S.Jackson right tackle to ARZ 45 for 5 yards (D.Washington; N.Eason).,10,3,2012 -20121004_ARI@STL,3,25,4,STL,ARI,1,10,45,(10:04) S.Jackson left tackle to ARZ 34 for 11 yards (A.Wilson).,10,3,2012 -20121004_ARI@STL,3,24,29,STL,ARI,1,10,34,(9:29) S.Jackson right tackle to ARZ 29 for 5 yards (P.Peterson).,10,3,2012 -20121004_ARI@STL,3,23,45,STL,ARI,2,5,29,(8:45) D.Richardson left end to ARZ 25 for 4 yards (G.Toler).,10,3,2012 -20121004_ARI@STL,3,23,5,STL,ARI,3,1,25,(8:05) S.Jackson right guard to ARZ 20 for 5 yards (D.Carter).,10,3,2012 -20121004_ARI@STL,3,22,26,STL,ARI,1,10,20,(7:26) D.Richardson right guard to ARZ 16 for 4 yards (V.Holliday; P.Lenon).,10,3,2012 -20121004_ARI@STL,3,21,46,STL,ARI,2,6,16,(6:46) S.Bradford pass incomplete short left to D.Richardson [S.Acho].,10,3,2012 -20121004_ARI@STL,3,21,39,STL,ARI,3,6,16,(6:39) (Shotgun) S.Bradford pass deep right intended for B.Quick INTERCEPTED by P.Peterson at ARZ -8. Touchback.,10,3,2012 -20121004_ARI@STL,3,21,32,ARI,STL,1,10,80,(6:32) K.Kolb pass incomplete short middle to R.Housler (J.Dunbar).,3,10,2012 -20121004_ARI@STL,3,21,28,ARI,STL,2,10,80,(6:28) (Shotgun) K.Kolb sacked at ARZ 14 for -6 yards (J.Cudjo). PENALTY on SL-J.Cudjo Unnecessary Roughness 15 yards enforced at ARZ 14.,3,10,2012 -20121004_ARI@STL,3,21,6,ARI,STL,1,10,71,(6:06) (Shotgun) R.Williams up the middle to ARZ 26 for -3 yards (J.Dunbar).,3,10,2012 -20121004_ARI@STL,3,20,29,ARI,STL,2,13,74,(5:29) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to ARZ 40 for 14 yards (D.Stewart).,3,10,2012 -20121004_ARI@STL,3,19,48,ARI,STL,1,10,60,(4:48) (No Huddle Shotgun) K.Kolb pass incomplete short left to A.Roberts (R.Quinn).,3,10,2012 -20121004_ARI@STL,3,19,44,ARI,STL,2,10,60,(4:44) (No Huddle Shotgun) K.Kolb sacked at ARZ 35 for -5 yards (R.Quinn).,3,10,2012 -20121004_ARI@STL,3,19,22,ARI,STL,3,15,65,(4:22) (Shotgun) K.Kolb pass deep left to L.Fitzgerald to SL 36 for 29 yards (C.Dahl) [W.Hayes].,3,10,2012 -20121004_ARI@STL,3,18,50,ARI,STL,1,10,36,(3:50) R.Williams left tackle to SL 36 for no gain (J.Laurinaitis).,3,10,2012 -20121004_ARI@STL,3,18,12,ARI,STL,2,10,36,(3:12) K.Kolb sacked at SL 42 for -6 yards (J.Laurinaitis).,3,10,2012 -20121004_ARI@STL,3,17,35,ARI,STL,3,16,42,(2:35) (Shotgun) K.Kolb pass incomplete deep right to A.Roberts. Penalty on ARZ-B.Massie Offensive Holding declined.,3,10,2012 -20121004_ARI@STL,3,17,26,ARI,STL,4,16,42,(2:26) D.Zastudil punts 31 yards to SL 11 Center-M.Leach fair catch by J.Jenkins.,3,10,2012 -20121004_ARI@STL,3,17,19,STL,ARI,1,10,89,(2:19) S.Bradford pass incomplete deep left to B.Gibson.,10,3,2012 -20121004_ARI@STL,3,17,12,STL,ARI,2,10,89,(2:12) D.Richardson left tackle to SL 27 for 16 yards (G.Toler).,10,3,2012 -20121004_ARI@STL,3,16,34,STL,ARI,1,10,73,(1:34) D.Richardson left tackle to SL 32 for 5 yards (D.Washington).,10,3,2012 -20121004_ARI@STL,3,15,59,STL,ARI,2,5,68,(:59) D.Richardson right tackle to SL 28 for -4 yards (O.Schofield).,10,3,2012 -20121004_ARI@STL,3,15,18,STL,ARI,3,9,72,(:18) (Shotgun) S.Bradford pass short left to B.Gibson to SL 37 for 9 yards (G.Toler).,10,3,2012 -20121004_ARI@STL,4,15,0,STL,ARI,1,10,63,(15:00) D.Richardson left tackle to SL 38 for 1 yard (P.Lenon).,10,3,2012 -20121004_ARI@STL,4,14,21,STL,ARI,2,9,62,(14:21) S.Jackson right end pushed ob at 50 for 12 yards (P.Peterson).,10,3,2012 -20121004_ARI@STL,4,13,48,STL,ARI,1,10,50,(13:48) S.Jackson right tackle to ARZ 42 for 8 yards (O.Schofield; P.Lenon).,10,3,2012 -20121004_ARI@STL,4,13,9,STL,ARI,2,2,42,(13:09) S.Jackson right tackle to ARZ 41 for 1 yard (V.Holliday).,10,3,2012 -20121004_ARI@STL,4,12,27,STL,ARI,3,1,41,(12:27) S.Bradford pass short right to B.Gibson to ARZ 28 for 13 yards (P.Peterson) [D.Washington]. PENALTY on SL-H.Dahl Illegal Use of Hands 10 yards enforced at ARZ 41 - No Play.,10,3,2012 -20121004_ARI@STL,4,11,58,STL,ARI,3,11,51,(11:58) (Shotgun) S.Bradford pass deep left to C.Givens for 51 yards TOUCHDOWN.,10,3,2012 -20121004_ARI@STL,4,11,58,STL,ARI,,,51,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,10,3,2012 -20121004_ARI@STL,4,11,58,STL,ARI,,,51,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,17,3,2012 -20121004_ARI@STL,4,11,49,ARI,STL,1,10,80,(11:49) (Shotgun) K.Kolb pass short middle to A.Roberts to ARZ 28 for 8 yards (C.Finnegan).,3,17,2012 -20121004_ARI@STL,4,11,25,ARI,STL,2,2,72,(11:25) (No Huddle Shotgun) R.Williams up the middle to ARZ 40 for 12 yards (D.Stewart). ARZ-R.Williams was injured during the play.,3,17,2012 -20121004_ARI@STL,4,11,2,ARI,STL,1,10,60,(11:02) (Shotgun) K.Kolb pass short right to E.Doucet ran ob at ARZ 46 for 6 yards (T.Johnson).,3,17,2012 -20121004_ARI@STL,4,10,48,ARI,STL,2,4,54,(10:48) (No Huddle Shotgun) K.Kolb pass short right to A.Roberts to SL 48 for 6 yards (C.Finnegan). PENALTY on ARZ-A.Roberts Illegal Touch Pass 5 yards enforced at ARZ 46 - No Play.,3,17,2012 -20121004_ARI@STL,4,10,17,ARI,STL,2,9,59,(10:17) (Shotgun) K.Kolb scrambles left end ran ob at SL 47 for 12 yards. PENALTY on ARZ-D.Batiste Offensive Holding 10 yards enforced at ARZ 41 - No Play.,3,17,2012 -20121004_ARI@STL,4,9,46,ARI,STL,2,19,69,(9:46) (Shotgun) K.Kolb pass short right to A.Smith to ARZ 44 for 13 yards (D.Stewart).,3,17,2012 -20121004_ARI@STL,4,8,59,ARI,STL,3,6,56,(8:59) (Shotgun) K.Kolb pass short right to M.Floyd to SL 39 for 17 yards (J.Laurinaitis).,3,17,2012 -20121004_ARI@STL,4,8,24,ARI,STL,1,10,39,(8:24) (No Huddle Shotgun) K.Kolb pass short left to L.Fitzgerald ran ob at SL 28 for 11 yards (J.Jenkins).,3,17,2012 -20121004_ARI@STL,4,7,54,ARI,STL,1,10,28,(7:54) (No Huddle Shotgun) K.Kolb pass short middle to A.Sherman to SL 9 for 19 yards (T.Johnson) [R.Quinn].,3,17,2012 -20121004_ARI@STL,4,7,6,ARI,STL,1,9,9,(7:06) (Shotgun) K.Kolb pass incomplete short middle to E.Doucet.,3,17,2012 -20121004_ARI@STL,4,7,1,ARI,STL,2,9,9,(7:01) K.Kolb pass short middle to A.Sherman to SL 3 for 6 yards (J.Laurinaitis; J.Dunbar).,3,17,2012 -20121004_ARI@STL,4,6,20,ARI,STL,3,3,3,(6:20) (Shotgun) K.Kolb pass incomplete short left to M.Floyd (J.Jenkins). PENALTY on ARZ-M.Floyd Offensive Pass Interference 10 yards enforced at SL 3 - No Play.,3,17,2012 -20121004_ARI@STL,4,6,16,ARI,STL,3,13,13,(6:16) (Shotgun) K.Kolb pass short middle to L.Fitzgerald to SL 6 for 7 yards (C.Finnegan).,3,17,2012 -20121004_ARI@STL,4,5,30,ARI,STL,4,6,6,(5:30) (Shotgun) K.Kolb pass short left to L.Fitzgerald to SL 3 for 3 yards (J.Jenkins).,3,17,2012 -20121004_ARI@STL,4,5,25,STL,ARI,1,10,97,(5:25) S.Jackson right guard to SL 3 for no gain (D.Washington). SL-Q.Ojinnaka was injured during the play.,17,3,2012 -20121004_ARI@STL,4,4,47,STL,ARI,2,10,97,(4:47) S.Jackson right tackle to SL 10 for 7 yards (D.Williams).,17,3,2012 -20121004_ARI@STL,4,4,7,STL,ARI,3,3,90,(4:07) S.Jackson right tackle to SL 9 for -1 yards (O.Schofield). SL-B.Miller was injured during the play. His return is Questionable.,17,3,2012 -20121004_ARI@STL,4,3,26,STL,ARI,4,4,91,(3:26) J.Hekker punts 55 yards to ARZ 36 Center-J.McQuaide. P.Peterson pushed ob at SL 38 for 26 yards (R.McLeod).,17,3,2012 -20121004_ARI@STL,4,3,13,ARI,STL,1,10,38,(3:13) (Shotgun) K.Kolb pass incomplete deep right to E.Doucet. PENALTY on SL-J.Jenkins Defensive Holding 5 yards enforced at SL 38 - No Play.,3,17,2012 -20121004_ARI@STL,4,3,4,ARI,STL,1,10,33,(3:04) (Shotgun) K.Kolb pass short left to E.Doucet ran ob at SL 22 for 11 yards (J.Jenkins).,3,17,2012 -20121004_ARI@STL,4,2,56,ARI,STL,1,10,22,(2:56) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald.,3,17,2012 -20121004_ARI@STL,4,2,50,ARI,STL,2,10,22,(2:50) (No Huddle Shotgun) K.Kolb pass short right to A.Roberts to SL 13 for 9 yards (T.Johnson).,3,17,2012 -20121004_ARI@STL,4,2,20,ARI,STL,3,1,13,(2:20) (Shotgun) K.Kolb pass incomplete short right to E.Doucet.,3,17,2012 -20121004_ARI@STL,4,2,15,ARI,STL,4,1,13,(2:15) (Shotgun) K.Kolb sacked at SL 20 for -7 yards (C.Finnegan).,3,17,2012 -20121004_ARI@STL,4,2,9,STL,ARI,1,10,80,(2:09) S.Jackson right tackle to SL 20 for no gain (K.Rhodes).,17,3,2012 -20121004_ARI@STL,4,2,5,STL,ARI,2,10,80,(2:05) S.Jackson right tackle to SL 17 for -3 yards (D.Washington).,17,3,2012 -20121004_ARI@STL,4,1,59,STL,ARI,3,13,83,(1:59) D.Richardson right tackle to SL 19 for 2 yards (K.Rhodes).,17,3,2012 -20121004_ARI@STL,4,1,55,STL,ARI,4,11,81,(1:55) J.Hekker punts 44 yards to ARZ 37 Center-J.McQuaide. P.Peterson to SL 45 for 18 yards (B.Miller).,17,3,2012 -20121004_ARI@STL,4,1,41,ARI,STL,1,10,45,(1:41) (Shotgun) K.Kolb sacked at ARZ 48 for -7 yards (R.Quinn). FUMBLES (R.Quinn) touched at 50 RECOVERED by SL-W.Hayes at ARZ 47. W.Hayes to ARZ 47 for no gain (A.Smith).,3,17,2012 -20121004_ARI@STL,4,1,32,STL,ARI,1,10,47,(1:32) S.Bradford kneels to ARZ 48 for -1 yards.,17,3,2012 -20121004_ARI@STL,4,0,53,STL,ARI,2,11,48,(:53) S.Bradford kneels to ARZ 49 for -1 yards.,17,3,2012 -20121004_ARI@STL,4,0,23,STL,ARI,3,12,49,(:23) S.Bradford kneels to 50 for -1 yards.,17,3,2012 -20121004_ARI@STL,4,0,23,STL,ARI,,,49,                      ,17,3,2012 -20121007_MIA@CIN,1,0,0,CIN,MIA,,,49,M.Nugent kicks 72 yards from CIN 35 to MIA -7. M.Thigpen Touchback.,0,0,2012 -20121007_MIA@CIN,1,60,0,MIA,CIN,1,10,80,(15:00) R.Bush left guard to MIA 22 for 2 yards (R.Nelson).,0,0,2012 -20121007_MIA@CIN,1,59,29,MIA,CIN,2,8,78,(14:29) R.Bush right end to MIA 20 for -2 yards (T.Newman).,0,0,2012 -20121007_MIA@CIN,1,58,49,MIA,CIN,3,10,80,(13:49) (Shotgun) R.Tannehill sacked at MIA 17 for -3 yards (M.Johnson).,0,0,2012 -20121007_MIA@CIN,1,58,27,MIA,CIN,4,13,83,(13:27) B.Fields punts 45 yards to CIN 38 Center-J.Denney out of bounds.,0,0,2012 -20121007_MIA@CIN,1,58,18,CIN,MIA,1,10,62,(13:18) A.Dalton sacked at CIN 32 for -6 yards (sack split by J.Odrick and P.Soliai).,0,0,2012 -20121007_MIA@CIN,1,57,52,CIN,MIA,2,16,68,(12:52) B.Green-Ellis left tackle to CIN 33 for 1 yard (C.Wake).,0,0,2012 -20121007_MIA@CIN,1,57,14,CIN,MIA,3,15,67,(12:14) (Shotgun) A.Dalton pass incomplete deep middle to A.Green (S.Smith).,0,0,2012 -20121007_MIA@CIN,1,57,4,CIN,MIA,4,15,67,(12:04) K.Huber punts 40 yards to MIA 27 Center-C.Harris. R.Jones MUFFS catch RECOVERED by CIN-V.Burfict at MIA 26. V.Burfict ran ob at MIA 26 for no gain. The Replay Assistant challenged the kick touched ruling and the play was Upheld.,0,0,2012 -20121007_MIA@CIN,1,56,54,CIN,MIA,1,10,26,(11:54) (Shotgun) PENALTY on CIN-A.Smith False Start 5 yards enforced at MIA 26 - No Play.,0,0,2012 -20121007_MIA@CIN,1,56,54,CIN,MIA,1,15,31,(11:54) B.Green-Ellis right guard to MIA 31 for no gain (R.Starks).,0,0,2012 -20121007_MIA@CIN,1,56,15,CIN,MIA,2,15,31,(11:15) (Shotgun) A.Dalton pass short right to A.Binns pushed ob at MIA 24 for 7 yards (S.Smith).,0,0,2012 -20121007_MIA@CIN,1,55,45,CIN,MIA,3,8,24,(10:45) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins.,0,0,2012 -20121007_MIA@CIN,1,55,39,CIN,MIA,4,8,24,(10:39) M.Nugent 42 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121007_MIA@CIN,1,55,39,CIN,MIA,,,24,M.Nugent kicks 67 yards from CIN 35 to MIA -2. M.Thigpen to MIA 28 for 30 yards (J.Miles; D.Skuta).,3,0,2012 -20121007_MIA@CIN,1,55,28,MIA,CIN,1,10,72,(10:28) R.Bush right guard to MIA 35 for 7 yards (V.Burfict).,0,3,2012 -20121007_MIA@CIN,1,54,56,MIA,CIN,2,3,65,(9:56) R.Tannehill pass short middle to B.Hartline to CIN 49 for 16 yards (R.Nelson; T.Newman).,0,3,2012 -20121007_MIA@CIN,1,54,23,MIA,CIN,1,10,49,(9:23) (Shotgun) R.Bush left guard to 50 for -1 yards (M.Johnson M.Lawson).,0,3,2012 -20121007_MIA@CIN,1,53,46,MIA,CIN,2,11,50,(8:46) (Shotgun) R.Tannehill pass short left to R.Bush to CIN 29 for 21 yards (R.Nelson; N.Clements) [M.Johnson].,0,3,2012 -20121007_MIA@CIN,1,53,9,MIA,CIN,1,10,29,(8:09) R.Tannehill pass short middle to B.Hartline to CIN 23 for 6 yards (M.Lawson).,0,3,2012 -20121007_MIA@CIN,1,52,42,MIA,CIN,2,4,23,(7:42) R.Bush right guard to CIN 17 for 6 yards (D.Still; V.Burfict).,0,3,2012 -20121007_MIA@CIN,1,52,11,MIA,CIN,1,10,17,(7:11) R.Tannehill pass short left to C.Clay to CIN 11 for 6 yards (M.Johnson).,0,3,2012 -20121007_MIA@CIN,1,51,41,MIA,CIN,2,4,11,(6:41) J.Lane right tackle to CIN 11 for no gain (N.Clements). FUMBLES (N.Clements) RECOVERED by CIN-T.Newman at CIN 16. T.Newman to CIN 21 for 5 yards (J.Jerry).,0,3,2012 -20121007_MIA@CIN,1,51,33,CIN,MIA,1,10,79,(6:33) A.Dalton pass short left to A.Green pushed ob at CIN 23 for 2 yards (S.Smith).,3,0,2012 -20121007_MIA@CIN,1,51,6,CIN,MIA,2,8,77,(6:06) A.Dalton pass incomplete short left to A.Green.,3,0,2012 -20121007_MIA@CIN,1,51,1,CIN,MIA,3,8,77,(6:01) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins. PENALTY on MIA-S.Smith Defensive Holding 5 yards enforced at CIN 23 - No Play.,3,0,2012 -20121007_MIA@CIN,1,50,56,CIN,MIA,1,10,72,(5:56) B.Scott right end to MIA 43 for 29 yards (K.Misi).,3,0,2012 -20121007_MIA@CIN,1,50,7,CIN,MIA,1,10,43,(5:07) B.Scott left guard to MIA 37 for 6 yards (K.Burnett).,3,0,2012 -20121007_MIA@CIN,1,49,39,CIN,MIA,2,4,37,(4:39) B.Scott up the middle to MIA 35 for 2 yards (K.Dansby).,3,0,2012 -20121007_MIA@CIN,1,49,1,CIN,MIA,3,2,35,(4:01) B.Green-Ellis left guard to MIA 35 for no gain (K.Dansby).,3,0,2012 -20121007_MIA@CIN,1,48,23,CIN,MIA,4,2,35,(3:23) A.Dalton pass deep middle to J.Gresham to MIA 15 for 20 yards (K.Misi; C.Clemons).,3,0,2012 -20121007_MIA@CIN,1,47,36,CIN,MIA,1,10,15,(2:36) (Shotgun) A.Dalton pass short right to A.Hawkins to MIA 10 for 5 yards (S.Smith; K.Misi).,3,0,2012 -20121007_MIA@CIN,1,46,54,CIN,MIA,2,5,10,(1:54) B.Scott right guard to MIA 4 for 6 yards (R.Jones; C.Clemons).,3,0,2012 -20121007_MIA@CIN,1,46,8,CIN,MIA,1,4,4,(1:08) B.Scott right tackle to MIA 7 for -3 yards (R.Jones).,3,0,2012 -20121007_MIA@CIN,1,45,26,CIN,MIA,2,7,7,(:26) (Shotgun) A.Dalton pass incomplete short middle to A.Binns.,3,0,2012 -20121007_MIA@CIN,1,45,22,CIN,MIA,3,7,7,(:22) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins (J.Wilson).,3,0,2012 -20121007_MIA@CIN,1,45,17,CIN,MIA,4,7,7,(:17) M.Nugent 24 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,3,0,2012 -20121007_MIA@CIN,1,45,17,CIN,MIA,,,7,M.Nugent kicks 70 yards from CIN 35 to MIA -5. M.Thigpen Touchback.,6,0,2012 -20121007_MIA@CIN,1,45,13,MIA,CIN,1,10,80,(:13) R.Tannehill pass incomplete short right to B.Hartline [W.Gilberry].,0,6,2012 -20121007_MIA@CIN,1,45,7,MIA,CIN,2,10,80,(:07) D.Thomas left guard to MIA 25 for 5 yards (R.Maualuga).,0,6,2012 -20121007_MIA@CIN,2,45,0,MIA,CIN,3,5,75,(15:00) (Shotgun) R.Tannehill pass incomplete short left to D.Bess (L.Hall).,0,6,2012 -20121007_MIA@CIN,2,44,56,MIA,CIN,4,5,75,(14:56) B.Fields punts 59 yards to CIN 16 Center-J.Denney. A.Jones to CIN 26 for 10 yards (J.Amaya).,0,6,2012 -20121007_MIA@CIN,2,44,41,CIN,MIA,1,10,74,(14:41) B.Green-Ellis right guard to CIN 29 for 3 yards (T.McDaniel; P.Soliai).,6,0,2012 -20121007_MIA@CIN,2,44,3,CIN,MIA,2,7,71,(14:03) (Shotgun) A.Dalton scrambles up the middle to CIN 31 for 2 yards (O.Vernon).,6,0,2012 -20121007_MIA@CIN,2,43,22,CIN,MIA,3,5,69,(13:22) (Shotgun) A.Dalton pass short middle to A.Green to CIN 42 for 11 yards (C.Clemons; R.Jones).,6,0,2012 -20121007_MIA@CIN,2,42,40,CIN,MIA,1,10,58,(12:40) B.Green-Ellis right tackle to CIN 45 for 3 yards (D.Shelby).,6,0,2012 -20121007_MIA@CIN,2,42,5,CIN,MIA,2,7,55,(12:05) A.Dalton pass incomplete short right. {Thrown away} PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at CIN 45 - No Play.,6,0,2012 -20121007_MIA@CIN,2,41,47,CIN,MIA,2,17,65,(11:47) (Shotgun) A.Dalton pass short right to B.Leonard to CIN 38 for 3 yards (T.McDaniel).,6,0,2012 -20121007_MIA@CIN,2,41,16,CIN,MIA,3,14,62,(11:16) (Shotgun) A.Dalton pass incomplete deep right to A.Hawkins.,6,0,2012 -20121007_MIA@CIN,2,41,10,CIN,MIA,4,14,62,(11:10) K.Huber punts 25 yards to MIA 37 Center-C.Harris out of bounds.,6,0,2012 -20121007_MIA@CIN,2,41,3,MIA,CIN,1,10,63,(11:03) R.Bush right tackle to MIA 42 for 5 yards (T.Newman).,0,6,2012 -20121007_MIA@CIN,2,40,31,MIA,CIN,2,5,58,(10:31) R.Tannehill pass short left to J.Lane pushed ob at CIN 43 for 15 yards (R.Nelson).,0,6,2012 -20121007_MIA@CIN,2,39,57,MIA,CIN,1,10,43,(9:57) R.Bush right guard to CIN 43 for no gain (G.Atkins; M.Johnson).,0,6,2012 -20121007_MIA@CIN,2,39,33,MIA,CIN,2,10,43,(9:33) R.Tannehill pass incomplete deep right [R.Maualuga]. {Thrown away},0,6,2012 -20121007_MIA@CIN,2,39,26,MIA,CIN,3,10,43,(9:26) (Shotgun) R.Tannehill pass deep middle to C.Clay to CIN 19 for 24 yards (R.Maualuga; N.Clements) [V.Burfict].,0,6,2012 -20121007_MIA@CIN,2,38,52,MIA,CIN,1,10,19,(8:52) D.Thomas right guard to CIN 17 for 2 yards (D.Peko; D.Still).,0,6,2012 -20121007_MIA@CIN,2,38,16,MIA,CIN,2,8,17,(8:16) (Shotgun) R.Tannehill pass short middle to A.Fasano to CIN 4 for 13 yards (R.Maualuga; R.Nelson).,0,6,2012 -20121007_MIA@CIN,2,37,38,MIA,CIN,1,4,4,(7:38) D.Thomas left guard to CIN 1 for 3 yards (N.Clements).,0,6,2012 -20121007_MIA@CIN,2,36,58,MIA,CIN,2,1,1,(6:58) D.Thomas right tackle for 1 yard TOUCHDOWN.,0,6,2012 -20121007_MIA@CIN,2,36,58,MIA,CIN,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,6,2012 -20121007_MIA@CIN,2,36,58,MIA,CIN,,,1,D.Carpenter kicks 70 yards from MIA 35 to CIN -5. B.Tate to CIN 29 for 34 yards (O.Vernon).,7,6,2012 -20121007_MIA@CIN,2,36,48,CIN,MIA,1,10,71,(6:48) A.Dalton pass short right to A.Green to CIN 39 for 10 yards (C.Wake). FUMBLES (C.Wake) RECOVERED by MIA-K.Burnett at CIN 38. K.Burnett to CIN 38 for no gain (A.Green). The Replay Assistant challenged the fumble ruling and the play was REVERSED. A.Dalton pass short right to A.Green to CIN 39 for 10 yards (C.Wake).,6,7,2012 -20121007_MIA@CIN,2,36,21,CIN,MIA,1,10,61,(6:21) A.Dalton sacked at CIN 36 for -3 yards (sack split by R.Starks and C.Wake).,6,7,2012 -20121007_MIA@CIN,2,35,48,CIN,MIA,2,13,64,(5:48) (Shotgun) A.Hawkins right end to CIN 41 for 5 yards (N.Carroll). {End around},6,7,2012 -20121007_MIA@CIN,2,35,0,CIN,MIA,3,8,59,(5:00) (Shotgun) A.Dalton pass short middle to A.Binns to CIN 48 for 7 yards (K.Misi). FUMBLES (K.Misi) RECOVERED by MIA-T.McDaniel at CIN 47. T.McDaniel to CIN 47 for no gain (A.Binns). {6 yards passing due to where fumble was recovered},6,7,2012 -20121007_MIA@CIN,2,34,50,MIA,CIN,1,10,47,(4:50) R.Bush up the middle to CIN 42 for 5 yards (R.Maualuga; M.Lawson).,7,6,2012 -20121007_MIA@CIN,2,34,20,MIA,CIN,2,5,42,(4:20) R.Bush left end pushed ob at CIN 38 for 4 yards (V.Burfict).,7,6,2012 -20121007_MIA@CIN,2,34,1,MIA,CIN,3,1,38,(4:01) D.Thomas left guard to CIN 38 for no gain (R.Maualuga; N.Clements).,7,6,2012 -20121007_MIA@CIN,2,32,53,MIA,CIN,4,1,38,(2:53) J.Lane right guard to CIN 38 for no gain (R.Nelson; V.Burfict).,7,6,2012 -20121007_MIA@CIN,2,32,49,CIN,MIA,1,10,63,(2:49) {Yard line change with change of possession} (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 48 for 11 yards (R.Jones; N.Carroll).,6,7,2012 -20121007_MIA@CIN,2,32,8,CIN,MIA,1,10,52,(2:08) A.Dalton pass short left to A.Hawkins ran ob at MIA 47 for 5 yards.,6,7,2012 -20121007_MIA@CIN,2,32,0,CIN,MIA,2,5,47,(2:00) (Shotgun) A.Dalton pass short middle to A.Green to MIA 44 for 3 yards (S.Smith).,6,7,2012 -20121007_MIA@CIN,2,31,27,CIN,MIA,3,2,44,(1:27) (Shotgun) A.Dalton pass incomplete deep left to J.Gresham.,6,7,2012 -20121007_MIA@CIN,2,31,22,CIN,MIA,4,2,44,(1:22) K.Huber punts 42 yards to MIA 2 Center-C.Harris downed by CIN-J.Miles.,6,7,2012 -20121007_MIA@CIN,2,31,11,MIA,CIN,1,10,98,(1:11) D.Thomas left tackle to MIA 6 for 4 yards (N.Clements; R.Maualuga).,7,6,2012 -20121007_MIA@CIN,2,31,5,MIA,CIN,2,6,94,(1:05) R.Tannehill kneels to MIA 5 for -1 yards.,7,6,2012 -20121007_MIA@CIN,2,30,35,MIA,CIN,3,7,95,(:35) R.Tannehill kneels to MIA 4 for -1 yards.,7,6,2012 -20121007_MIA@CIN,3,30,0,CIN,MIA,1,10,80,(15:00) (Shotgun) A.Dalton pass short left to A.Binns to CIN 36 for 16 yards (N.Carroll; K.Burnett). MIA-N.Carroll was injured during the play.,6,7,2012 -20121007_MIA@CIN,3,29,36,CIN,MIA,1,10,64,(14:36) A.Dalton pass short right to J.Gresham to CIN 41 for 5 yards (R.Stanford; K.Misi).,6,7,2012 -20121007_MIA@CIN,3,29,4,CIN,MIA,2,5,59,(14:04) B.Green-Ellis left tackle to CIN 42 for 1 yard (P.Soliai; K.Burnett).,6,7,2012 -20121007_MIA@CIN,3,28,19,CIN,MIA,3,4,58,(13:19) (Shotgun) A.Dalton pass short middle intended for A.Hawkins INTERCEPTED by R.Starks at CIN 40. R.Starks to CIN 36 for 4 yards (J.Faine).,6,7,2012 -20121007_MIA@CIN,3,28,12,MIA,CIN,1,10,36,(13:12) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano.,7,6,2012 -20121007_MIA@CIN,3,28,9,MIA,CIN,2,10,36,(13:09) R.Bush right guard to CIN 25 for 11 yards (R.Nelson). PENALTY on MIA Illegal Formation 5 yards enforced at CIN 36 - No Play.,7,6,2012 -20121007_MIA@CIN,3,27,47,MIA,CIN,2,15,41,(12:47) R.Tannehill pass deep right to D.Bess pushed ob at CIN 13 for 28 yards (N.Clements).,7,6,2012 -20121007_MIA@CIN,3,27,27,MIA,CIN,1,10,13,(12:27) R.Bush left end for 13 yards TOUCHDOWN.,7,6,2012 -20121007_MIA@CIN,3,27,27,MIA,CIN,,,13,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,7,6,2012 -20121007_MIA@CIN,3,27,27,MIA,CIN,,,13,D.Carpenter kicks 69 yards from MIA 35 to CIN -4. B.Tate to CIN 11 for 15 yards (J.Amaya; M.Moore).,14,6,2012 -20121007_MIA@CIN,3,27,14,CIN,MIA,1,10,89,(12:14) (Shotgun) A.Dalton pass incomplete short right to A.Green (R.Starks). {Tipped at the line of scrimmage},6,14,2012 -20121007_MIA@CIN,3,27,10,CIN,MIA,2,10,89,(12:10) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 13 for 2 yards (K.Dansby).,6,14,2012 -20121007_MIA@CIN,3,26,29,CIN,MIA,3,8,87,(11:29) (Shotgun) A.Dalton pass incomplete deep right to A.Hawkins.,6,14,2012 -20121007_MIA@CIN,3,26,24,CIN,MIA,4,8,87,(11:24) K.Huber punts 41 yards to MIA 46 Center-C.Harris. M.Thigpen pushed ob at 50 for 4 yards (D.Skuta).,6,14,2012 -20121007_MIA@CIN,3,26,14,MIA,CIN,1,10,50,(11:14) (Shotgun) R.Tannehill pass incomplete deep left to D.Bess.,14,6,2012 -20121007_MIA@CIN,3,26,8,MIA,CIN,2,10,50,(11:08) R.Bush left end pushed ob at CIN 44 for 6 yards (R.Maualuga).,14,6,2012 -20121007_MIA@CIN,3,25,39,MIA,CIN,3,4,44,(10:39) (Shotgun) R.Tannehill pass short middle to B.Hartline to CIN 37 for 7 yards (N.Clements; R.Maualuga). Penalty on CIN-R.Maualuga Illegal Contact declined.,14,6,2012 -20121007_MIA@CIN,3,25,19,MIA,CIN,1,10,37,(10:19) R.Bush up the middle to CIN 37 for no gain (T.Newman W.Gilberry).,14,6,2012 -20121007_MIA@CIN,3,24,32,MIA,CIN,2,10,37,(9:32) R.Bush left tackle to CIN 36 for 1 yard (V.Burfict). Penalty on MIA-J.Lane Illegal Shift declined.,14,6,2012 -20121007_MIA@CIN,3,24,7,MIA,CIN,3,9,36,(9:07) (Shotgun) R.Tannehill pass short left to D.Thomas pushed ob at CIN 28 for 8 yards (G.Atkins).,14,6,2012 -20121007_MIA@CIN,3,23,40,MIA,CIN,4,1,28,(8:40) (Field Goal formation) D.Carpenter 46 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,14,6,2012 -20121007_MIA@CIN,3,23,40,MIA,CIN,,,28,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,17,6,2012 -20121007_MIA@CIN,3,23,35,CIN,MIA,1,10,80,(8:35) B.Green-Ellis left tackle to CIN 18 for -2 yards (R.Jones; R.Starks).,6,17,2012 -20121007_MIA@CIN,3,23,8,CIN,MIA,2,12,82,(8:08) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 29 for 11 yards (J.Wilson; J.Odrick).,6,17,2012 -20121007_MIA@CIN,3,22,24,CIN,MIA,3,1,71,(7:24) (Shotgun) A.Dalton pass incomplete short right to A.Green.,6,17,2012 -20121007_MIA@CIN,3,22,19,CIN,MIA,4,1,71,(7:19) K.Huber punts 55 yards to MIA 16 Center-C.Harris. M.Thigpen pushed ob at MIA 27 for 11 yards (C.Peerman).,6,17,2012 -20121007_MIA@CIN,3,22,14,MIA,CIN,1,10,73,(7:14) R.Bush right end to MIA 29 for 2 yards (R.Geathers).,17,6,2012 -20121007_MIA@CIN,3,21,38,MIA,CIN,2,8,71,(6:38) (Shotgun) R.Tannehill pass short left to A.Fasano to MIA 33 for 4 yards (R.Maualuga).,17,6,2012 -20121007_MIA@CIN,3,20,55,MIA,CIN,3,4,67,(5:55) (Shotgun) R.Tannehill pass deep right to B.Hartline to CIN 37 for 30 yards (T.Newman).,17,6,2012 -20121007_MIA@CIN,3,20,16,MIA,CIN,1,10,37,(5:16) R.Tannehill pass incomplete deep left to D.Bess.,17,6,2012 -20121007_MIA@CIN,3,20,9,MIA,CIN,2,10,37,(5:09) R.Tannehill sacked at CIN 46 for -9 yards (G.Atkins).,17,6,2012 -20121007_MIA@CIN,3,19,39,MIA,CIN,3,19,46,(4:39) (Shotgun) R.Tannehill pass short left to A.Fasano pushed ob at CIN 35 for 11 yards (A.Jones).,17,6,2012 -20121007_MIA@CIN,3,19,27,MIA,CIN,4,8,35,(4:27) D.Carpenter 53 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,17,6,2012 -20121007_MIA@CIN,3,19,22,CIN,MIA,1,10,57,(4:22) A.Dalton pass short left to A.Hawkins to CIN 46 for 3 yards (C.Clemons).,6,17,2012 -20121007_MIA@CIN,3,18,45,CIN,MIA,2,7,54,(3:45) (Shotgun) A.Dalton pass short right to A.Green to MIA 43 for 11 yards (S.Smith; J.Wilson).,6,17,2012 -20121007_MIA@CIN,3,18,1,CIN,MIA,1,10,43,(3:01) (Shotgun) A.Dalton pass short right to A.Green to MIA 40 for 3 yards (K.Dansby).,6,17,2012 -20121007_MIA@CIN,3,17,26,CIN,MIA,2,7,40,(2:26) (Shotgun) A.Dalton pass short middle to A.Hawkins to MIA 30 for 10 yards (J.Wilson).,6,17,2012 -20121007_MIA@CIN,3,16,43,CIN,MIA,1,10,30,(1:43) (Shotgun) A.Dalton pass deep left to A.Green to MIA 12 for 18 yards (S.Smith). FUMBLES (S.Smith) and recovers at MIA 12. A.Green to MIA 12 for no gain (C.Clemons).,6,17,2012 -20121007_MIA@CIN,3,15,58,CIN,MIA,1,10,12,(:58) (Shotgun) A.Dalton scrambles up the middle to MIA 6 for 6 yards (R.Jones).,6,17,2012 -20121007_MIA@CIN,3,15,29,CIN,MIA,2,4,6,(:29) B.Green-Ellis right tackle to MIA 3 for 3 yards (C.Wake; C.Clemons).,6,17,2012 -20121007_MIA@CIN,4,15,0,CIN,MIA,3,1,3,(15:00) A.Dalton right guard to MIA 2 for 1 yard (K.Burnett).,6,17,2012 -20121007_MIA@CIN,4,14,19,CIN,MIA,1,2,2,(14:19) A.Dalton pass short right to A.Green for 2 yards TOUCHDOWN.,6,17,2012 -20121007_MIA@CIN,4,14,19,CIN,MIA,,,2,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,6,17,2012 -20121007_MIA@CIN,4,14,19,CIN,MIA,,,2,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,13,17,2012 -20121007_MIA@CIN,4,14,15,MIA,CIN,1,10,80,(14:15) (Shotgun) R.Tannehill pass incomplete short middle to C.Clay (M.Lawson).,17,13,2012 -20121007_MIA@CIN,4,14,8,MIA,CIN,2,10,80,(14:08) (Shotgun) R.Bush left end to MIA 18 for -2 yards (R.Nelson).,17,13,2012 -20121007_MIA@CIN,4,13,32,MIA,CIN,3,12,82,(13:32) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 21 for 3 yards (C.Dunlap).,17,13,2012 -20121007_MIA@CIN,4,12,54,MIA,CIN,4,9,79,(12:54) B.Fields punts 46 yards to CIN 33 Center-J.Denney. A.Jones to CIN 48 for 15 yards (B.Fields).,17,13,2012 -20121007_MIA@CIN,4,12,38,CIN,MIA,1,10,52,(12:38) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins.,13,17,2012 -20121007_MIA@CIN,4,12,34,CIN,MIA,2,10,52,(12:34) (Shotgun) A.Dalton scrambles left end to MIA 40 for 12 yards (S.Smith).,13,17,2012 -20121007_MIA@CIN,4,11,53,CIN,MIA,1,10,40,(11:53) B.Green-Ellis right tackle to MIA 35 for 5 yards (K.Burnett).,13,17,2012 -20121007_MIA@CIN,4,11,16,CIN,MIA,2,5,35,(11:16) A.Dalton pass incomplete short right to B.Green-Ellis.,13,17,2012 -20121007_MIA@CIN,4,11,9,CIN,MIA,3,5,35,(11:09) (Shotgun) A.Dalton sacked at MIA 42 for -7 yards (sack split by C.Wake and K.Burnett).,13,17,2012 -20121007_MIA@CIN,4,10,46,CIN,MIA,4,12,42,(10:46) K.Huber punts 39 yards to MIA 3 Center-C.Harris downed by CIN-C.Harris. Miami challenged the touchback ruling and the play was Upheld. (Timeout #1 at 10:34.),13,17,2012 -20121007_MIA@CIN,4,10,34,MIA,CIN,1,10,97,(10:34) R.Tannehill pass short right to J.Lane to MIA 8 for 5 yards (R.Maualuga; T.Newman).,17,13,2012 -20121007_MIA@CIN,4,9,58,MIA,CIN,2,5,92,(9:58) D.Thomas left guard to MIA 12 for 4 yards (R.Nelson).,17,13,2012 -20121007_MIA@CIN,4,9,25,MIA,CIN,3,1,88,(9:25) D.Thomas left tackle to MIA 15 for 3 yards (V.Burfict; D.Peko).,17,13,2012 -20121007_MIA@CIN,4,8,43,MIA,CIN,1,10,85,(8:43) D.Thomas left tackle to MIA 20 for 5 yards (R.Nelson; V.Burfict).,17,13,2012 -20121007_MIA@CIN,4,8,15,MIA,CIN,2,5,80,(8:15) R.Tannehill pass short right to D.Bess ran ob at MIA 41 for 21 yards.,17,13,2012 -20121007_MIA@CIN,4,7,43,MIA,CIN,1,10,59,(7:43) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush. PENALTY on CIN-D.Skuta Defensive Holding 5 yards enforced at MIA 41 - No Play.,17,13,2012 -20121007_MIA@CIN,4,7,36,MIA,CIN,1,10,54,(7:36) D.Thomas left guard to MIA 48 for 2 yards (R.Maualuga). MIA-D.Thomas was injured during the play.,17,13,2012 -20121007_MIA@CIN,4,6,56,MIA,CIN,2,8,52,(6:56) R.Bush right tackle to MIA 47 for -1 yards (G.Atkins).,17,13,2012 -20121007_MIA@CIN,4,6,14,MIA,CIN,3,9,53,(6:14) (Shotgun) R.Tannehill pass incomplete short left to D.Bess (A.Jones).,17,13,2012 -20121007_MIA@CIN,4,6,9,MIA,CIN,4,9,53,(6:09) B.Fields punts 53 yards to end zone Center-J.Denney Touchback.,17,13,2012 -20121007_MIA@CIN,4,6,1,CIN,MIA,1,10,80,(6:01) (Shotgun) A.Dalton pass short right to B.Leonard to CIN 36 for 16 yards (K.Burnett).,13,17,2012 -20121007_MIA@CIN,4,5,16,CIN,MIA,1,10,64,(5:16) (Shotgun) A.Dalton pass short right to A.Binns to CIN 48 for 12 yards (N.Carroll).,13,17,2012 -20121007_MIA@CIN,4,4,31,CIN,MIA,1,10,52,(4:31) A.Dalton pass deep middle to A.Hawkins to MIA 28 for 24 yards (K.Dansby) [O.Vernon].,13,17,2012 -20121007_MIA@CIN,4,3,52,CIN,MIA,1,10,28,(3:52) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins.,13,17,2012 -20121007_MIA@CIN,4,3,45,CIN,MIA,2,10,28,(3:45) (Shotgun) A.Dalton pass short middle to A.Green to MIA 23 for 5 yards (R.Jones).,13,17,2012 -20121007_MIA@CIN,4,3,8,CIN,MIA,3,5,23,(3:08) (Shotgun) A.Dalton pass incomplete short left to B.Tate.,13,17,2012 -20121007_MIA@CIN,4,3,5,CIN,MIA,4,5,23,(3:05) M.Nugent 41 yard field goal is No Good Wide Right Center-C.Harris Holder-K.Huber.,13,17,2012 -20121007_MIA@CIN,4,3,0,MIA,CIN,1,10,69,(3:00) R.Bush left guard to MIA 32 for 1 yard (N.Clements).,17,13,2012 -20121007_MIA@CIN,4,2,55,MIA,CIN,2,9,68,(2:55) R.Tannehill pass incomplete short right to C.Clay (N.Clements).,17,13,2012 -20121007_MIA@CIN,4,2,50,MIA,CIN,3,9,68,(2:50) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on CIN-T.Newman Defensive Pass Interference 16 yards enforced at MIA 32 - No Play.,17,13,2012 -20121007_MIA@CIN,4,2,45,MIA,CIN,1,10,52,(2:45) R.Bush left guard to CIN 49 for 3 yards (L.Hall).,17,13,2012 -20121007_MIA@CIN,4,2,39,MIA,CIN,2,7,49,(2:39) R.Bush left end to 50 for -1 yards (L.Hall; D.Peko).,17,13,2012 -20121007_MIA@CIN,4,2,0,MIA,CIN,3,8,50,(2:00) R.Tannehill pass short right to C.Clay pushed ob at CIN 45 for 5 yards (R.Nelson).,17,13,2012 -20121007_MIA@CIN,4,1,54,MIA,CIN,4,3,45,(1:54) B.Fields punts 45 yards to end zone Center-J.Denney Touchback.,17,13,2012 -20121007_MIA@CIN,4,1,45,CIN,MIA,1,10,80,(1:45) (Shotgun) A.Dalton pass short right to J.Gresham ran ob at CIN 33 for 13 yards (S.Smith).,13,17,2012 -20121007_MIA@CIN,4,1,39,CIN,MIA,1,10,67,(1:39) (Shotgun) A.Dalton pass incomplete short right to A.Binns (N.Carroll).,13,17,2012 -20121007_MIA@CIN,4,1,34,CIN,MIA,2,10,67,(1:34) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins (O.Vernon). PENALTY on CIN-J.Faine Offensive Holding 10 yards enforced at CIN 33 - No Play.,13,17,2012 -20121007_MIA@CIN,4,1,30,CIN,MIA,2,20,77,(1:30) (Shotgun) A.Dalton pass deep middle intended for A.Hawkins INTERCEPTED by R.Jones at 50. R.Jones to MIA 47 for -3 yards (A.Hawkins).,13,17,2012 -20121007_MIA@CIN,4,1,22,MIA,CIN,1,10,53,(1:22) R.Tannehill kneels to MIA 46 for -1 yards.,17,13,2012 -20121007_MIA@CIN,4,0,41,MIA,CIN,2,11,54,(:41) R.Tannehill kneels to MIA 45 for -1 yards.,17,13,2012 -20121007_MIA@CIN,4,0,41,MIA,CIN,,,54,                      ,17,13,2012 -20121007_GB@IND,1,0,0,GB,IND,,,54,M.Crosby kicks 74 yards from GB 35 to IND -9. C.Vaughn Touchback.,0,0,2012 -20121007_GB@IND,1,60,0,IND,GB,1,10,80,(15:00) A.Luck pass short right to R.Wayne to IND 26 for 6 yards (C.Woodson).,0,0,2012 -20121007_GB@IND,1,59,28,IND,GB,2,4,74,(14:28) (Shotgun) A.Luck pass incomplete short right to D.Avery.,0,0,2012 -20121007_GB@IND,1,59,23,IND,GB,3,4,74,(14:23) A.Luck pass short left to R.Wayne to IND 45 for 19 yards (M.Burnett).,0,0,2012 -20121007_GB@IND,1,58,50,IND,GB,1,10,55,(13:50) (Run formation) D.Brown right end to IND 48 for 3 yards (J.Worthy).,0,0,2012 -20121007_GB@IND,1,58,11,IND,GB,2,7,52,(13:11) (Run formation) D.Brown up the middle to IND 49 for 1 yard (E.Walden; A.Hawk).,0,0,2012 -20121007_GB@IND,1,57,37,IND,GB,3,6,51,(12:37) (Shotgun) A.Luck pass incomplete short left to D.Avery (E.Walden).,0,0,2012 -20121007_GB@IND,1,57,33,IND,GB,4,6,51,(12:33) P.McAfee punts 42 yards to GB 9 Center-M.Overton fair catch by R.Cobb.,0,0,2012 -20121007_GB@IND,1,57,26,GB,IND,1,10,91,(12:26) (Run formation) A.Rodgers pass short left to J.Finley to GB 11 for 2 yards (C.Vaughn).,0,0,2012 -20121007_GB@IND,1,56,56,GB,IND,2,8,89,(11:56) (Shotgun) A.Rodgers pass short left to J.Finley to GB 14 for 3 yards (J.Freeman).,0,0,2012 -20121007_GB@IND,1,56,19,GB,IND,3,5,86,(11:19) (Shotgun) A.Rodgers scrambles left guard to GB 29 for 15 yards (J.Gordy).,0,0,2012 -20121007_GB@IND,1,55,43,GB,IND,1,10,71,(10:43) (Run formation) C.Benson left tackle to GB 33 for 4 yards (A.Bethea; D.Nevis).,0,0,2012 -20121007_GB@IND,1,55,9,GB,IND,2,6,67,(10:09) (Run formation) C.Benson left end pushed ob at GB 33 for no gain (K.Conner; C.Redding).,0,0,2012 -20121007_GB@IND,1,54,24,GB,IND,3,6,67,(9:24) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,0,0,2012 -20121007_GB@IND,1,54,15,GB,IND,4,6,67,(9:15) T.Masthay punts 57 yards to IND 10 Center-B.Goode. T.Hilton to IND 16 for 6 yards (J.Bush).,0,0,2012 -20121007_GB@IND,1,54,0,IND,GB,1,10,84,(9:00) D.Brown right end pushed ob at IND 30 for 14 yards (S.Shields).,0,0,2012 -20121007_GB@IND,1,53,26,IND,GB,1,10,70,(8:26) A.Luck pass short right to T.Hilton to IND 39 for 9 yards (D.Smith).,0,0,2012 -20121007_GB@IND,1,52,55,IND,GB,2,1,61,(7:55) (Run formation) D.Brown up the middle to IND 47 for 8 yards (C.Woodson).,0,0,2012 -20121007_GB@IND,1,52,22,IND,GB,1,10,53,(7:22) D.Brown right tackle to IND 48 for 1 yard (B.Raji). PENALTY on GB-C.Matthews Defensive Offside 5 yards enforced at IND 47 - No Play.,0,0,2012 -20121007_GB@IND,1,51,56,IND,GB,1,5,48,(6:56) PENALTY on IND-W.Justice False Start 5 yards enforced at GB 48 - No Play.,0,0,2012 -20121007_GB@IND,1,51,30,IND,GB,1,10,53,(6:30) V.Ballard up the middle to IND 45 for -2 yards (A.Hawk).,0,0,2012 -20121007_GB@IND,1,50,50,IND,GB,2,12,55,(5:50) (Shotgun) A.Luck pass short left to R.Wayne to GB 46 for 9 yards (T.Williams).,0,0,2012 -20121007_GB@IND,1,50,7,IND,GB,3,3,46,(5:07) (Shotgun) A.Luck pass short right to C.Fleener to GB 44 for 2 yards (C.Woodson).,0,0,2012 -20121007_GB@IND,1,49,43,IND,GB,4,1,44,(4:43) A.Luck right guard to GB 44 for no gain (A.Hawk). Penalty on IND-D.Avery Illegal Shift declined.,0,0,2012 -20121007_GB@IND,1,49,40,GB,IND,1,10,56,(4:40) (Run formation) C.Benson up the middle to GB 46 for 2 yards (D.Nevis).,0,0,2012 -20121007_GB@IND,1,48,58,GB,IND,2,8,54,(3:58) (Run formation) A.Rodgers pass short right to J.Nelson pushed ob at IND 35 for 19 yards (A.Bethea).,0,0,2012 -20121007_GB@IND,1,48,51,GB,IND,1,10,35,(3:51) C.Benson up the middle to IND 26 for 9 yards (K.Conner). IND-F.Moala was injured during the play. His return is Questionable.,0,0,2012 -20121007_GB@IND,1,48,15,GB,IND,2,1,26,(3:15) (Shotgun) C.Benson up the middle to IND 25 for 1 yard (J.Gordy).,0,0,2012 -20121007_GB@IND,1,48,15,GB,IND,1,10,25,(3:15) (No Huddle) A.Rodgers pass incomplete deep left to J.Nelson (C.Vaughn). PENALTY on IND-D.Nevis Defensive Offside 5 yards enforced at IND 25 - No Play. Penalty on IND-D.Nevis Defensive 12 On-field declined.,0,0,2012 -20121007_GB@IND,1,47,49,GB,IND,1,5,20,(2:49) (Shotgun) A.Rodgers pass short right to C.Benson to IND 2 for 18 yards (C.Redding).,0,0,2012 -20121007_GB@IND,1,47,10,GB,IND,1,2,2,(2:10) (Run formation) J.Kuhn up the middle for 2 yards TOUCHDOWN.,0,0,2012 -20121007_GB@IND,1,47,10,GB,IND,,,2,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20121007_GB@IND,1,47,10,GB,IND,,,2,M.Crosby kicks 74 yards from GB 35 to IND -9. C.Vaughn Touchback.,7,0,2012 -20121007_GB@IND,1,47,7,IND,GB,1,10,80,(2:07) (Shotgun) A.Luck pass short right to T.Hilton to IND 22 for 2 yards (E.Walden).,0,7,2012 -20121007_GB@IND,1,46,35,IND,GB,2,8,78,(1:35) (Run formation) V.Ballard up the middle to IND 25 for 3 yards (D.Smith; A.Hawk).,0,7,2012 -20121007_GB@IND,1,45,53,IND,GB,3,5,75,(:53) (Shotgun) A.Luck pass short right to D.Avery to IND 29 for 4 yards (S.Shields).,0,7,2012 -20121007_GB@IND,1,45,22,IND,GB,4,1,71,(:22) P.McAfee punts 44 yards to GB 27 Center-M.Overton. R.Cobb to GB 35 for 8 yards (M.Overton).,0,7,2012 -20121007_GB@IND,1,45,11,GB,IND,1,10,65,(:11) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 45 for 10 yards (J.Powers).,7,0,2012 -20121007_GB@IND,2,45,0,GB,IND,1,10,55,(15:00) C.Benson left end to GB 46 for 1 yard (C.Vaughn).,7,0,2012 -20121007_GB@IND,2,44,32,GB,IND,2,9,54,(14:32) (Shotgun) A.Rodgers pass short middle to R.Cobb to IND 36 for 18 yards (A.Bethea; J.Gordy).,7,0,2012 -20121007_GB@IND,2,44,2,GB,IND,1,10,36,(14:02) (Shotgun) C.Benson up the middle to IND 33 for 3 yards (J.Freeman).,7,0,2012 -20121007_GB@IND,2,43,34,GB,IND,2,7,33,(13:34) (No Huddle Shotgun) A.Rodgers pass short middle to C.Benson to IND 30 for 3 yards (M.Fokou). GB-C.Benson was injured during the play. His return is Questionable. PENALTY on IND-C.Redding Unnecessary Roughness 15 yards enforced at IND 30. Penalty on IND-J.Hickman Illegal Use of Hands declined.,7,0,2012 -20121007_GB@IND,2,43,9,GB,IND,1,10,15,(13:09) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley (T.Zbikowski) [R.Mathis].,7,0,2012 -20121007_GB@IND,2,43,4,GB,IND,2,10,15,(13:04) (Shotgun) A.Green up the middle to IND 6 for 9 yards (T.Zbikowski).,7,0,2012 -20121007_GB@IND,2,42,31,GB,IND,3,1,6,(12:31) (Shotgun) A.Rodgers pass short right to Ja.Jones for 6 yards TOUCHDOWN.,7,0,2012 -20121007_GB@IND,2,42,31,GB,IND,,,6,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,0,2012 -20121007_GB@IND,2,42,31,,IND,,,6,M.Crosby kicks 50 yards from 50 to end zone Touchback.,14,0,2012 -20121007_GB@IND,2,42,25,IND,GB,1,10,80,(12:25) (Run formation) PENALTY on IND-W.Justice False Start 5 yards enforced at IND 20 - No Play.,0,14,2012 -20121007_GB@IND,2,42,25,IND,GB,1,15,85,(12:25) (Shotgun) A.Luck pass short left to D.Avery to IND 25 for 10 yards (S.Shields).,0,14,2012 -20121007_GB@IND,2,41,54,IND,GB,2,5,75,(11:54) D.Brown right end to IND 25 for no gain (S.Shields). GB-B.Raji was injured during the play.,0,14,2012 -20121007_GB@IND,2,41,31,IND,GB,3,5,75,(11:31) (Shotgun) A.Luck sacked at IND 17 for -8 yards (N.Perry). PENALTY on GB-N.Perry Unnecessary Roughness 15 yards enforced at IND 17. Penalty nullified Luck's fumble which was recovered by GB-D.Smith.,0,14,2012 -20121007_GB@IND,2,41,23,IND,GB,1,10,68,(11:23) D.Brown up the middle to IND 35 for 3 yards (R.Pickett).,0,14,2012 -20121007_GB@IND,2,40,50,IND,GB,2,7,65,(10:50) A.Luck sacked at IND 27 for -8 yards (C.Matthews). FUMBLES (C.Matthews) touched at IND 38 ball out of bounds at IND 30.,0,14,2012 -20121007_GB@IND,2,40,41,IND,GB,3,12,70,(10:41) (Shotgun) A.Luck pass incomplete deep left to R.Wayne (C.Woodson).,0,14,2012 -20121007_GB@IND,2,40,37,IND,GB,4,12,70,(10:37) P.McAfee punts 47 yards to GB 23 Center-M.Overton. R.Cobb to GB 32 for 9 yards (M.Fokou).,0,14,2012 -20121007_GB@IND,2,40,20,GB,IND,1,10,68,(10:20) (Shotgun) A.Green left tackle to GB 33 for 1 yard (D.Freeney).,14,0,2012 -20121007_GB@IND,2,39,49,GB,IND,2,9,67,(9:49) (Shotgun) A.Rodgers pass incomplete short right to D.Driver.,14,0,2012 -20121007_GB@IND,2,39,42,GB,IND,3,9,67,(9:42) (Shotgun) A.Rodgers pass incomplete short left to J.Nelson.,14,0,2012 -20121007_GB@IND,2,39,38,GB,IND,4,9,67,(9:38) T.Masthay punts 36 yards to IND 31 Center-B.Goode fair catch by T.Hilton.,14,0,2012 -20121007_GB@IND,2,39,30,IND,GB,1,10,69,(9:30) (Shotgun) A.Luck pass deep right to R.Wayne to GB 40 for 29 yards (M.Burnett).,0,14,2012 -20121007_GB@IND,2,39,0,IND,GB,1,10,40,(9:00) (Run formation) V.Ballard up the middle to GB 40 for no gain (A.Hawk).,0,14,2012 -20121007_GB@IND,2,38,23,IND,GB,2,10,40,(8:23) (Shotgun) A.Luck pass short left to V.Ballard to GB 36 for 4 yards (M.Burnett).,0,14,2012 -20121007_GB@IND,2,37,40,IND,GB,3,6,36,(7:40) (Shotgun) A.Luck pass deep left to R.Wayne to GB 6 for 30 yards (M.Burnett) [J.Worthy]. Penalty on GB-C.Woodson Defensive Pass Interference declined.,0,14,2012 -20121007_GB@IND,2,37,15,IND,GB,1,6,6,(7:15) A.Luck pass incomplete short right to R.Wayne.,0,14,2012 -20121007_GB@IND,2,37,11,IND,GB,2,6,6,(7:11) (Shotgun) T.Hilton left end pushed ob at GB 6 for no gain (M.Burnett).,0,14,2012 -20121007_GB@IND,2,36,30,IND,GB,3,6,6,(6:30) (Shotgun) A.Luck pass incomplete short middle to N.Palmer (E.Walden).,0,14,2012 -20121007_GB@IND,2,36,25,IND,GB,4,6,6,(6:25) A.Vinatieri 24 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,0,14,2012 -20121007_GB@IND,2,36,25,IND,GB,,,6,P.McAfee kicks 66 yards from IND 35 to GB -1. R.Cobb pushed ob at GB 34 for 35 yards (M.Harvey).,3,14,2012 -20121007_GB@IND,2,36,15,GB,IND,1,10,66,(6:15) (Run formation) A.Rodgers pass incomplete deep left to J.Nelson (C.Vaughn). PENALTY on IND-C.Vaughn Defensive Pass Interference 30 yards enforced at GB 34 - No Play.,14,3,2012 -20121007_GB@IND,2,36,7,GB,IND,1,10,36,(6:07) (Shotgun) A.Rodgers pass short right to T.Crabtree to IND 30 for 6 yards (M.Fokou).,14,3,2012 -20121007_GB@IND,2,35,39,GB,IND,2,4,30,(5:39) (Shotgun) A.Green up the middle to IND 27 for 3 yards (M.Fokou).,14,3,2012 -20121007_GB@IND,2,34,54,GB,IND,3,1,27,(4:54) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at IND 11 for 16 yards (A.Bethea). PENALTY on GB-J.Finley Illegal Motion 4 yards enforced at IND 27 - No Play.,14,3,2012 -20121007_GB@IND,2,34,27,GB,IND,3,5,31,(4:27) (Shotgun) A.Rodgers pass short middle to R.Cobb for 31 yards TOUCHDOWN.,14,3,2012 -20121007_GB@IND,2,34,27,GB,IND,,,31,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,3,2012 -20121007_GB@IND,2,34,27,GB,IND,,,31,M.Crosby kicks 74 yards from GB 35 to IND -9. C.Vaughn Touchback.,21,3,2012 -20121007_GB@IND,2,34,21,IND,GB,1,10,80,(4:21) D.Brown left end to IND 29 for 9 yards (N.Perry).,3,21,2012 -20121007_GB@IND,2,33,57,IND,GB,2,1,71,(3:57) (Run formation) D.Brown right end to IND 32 for 3 yards (C.Hayward; C.Woodson).,3,21,2012 -20121007_GB@IND,2,33,28,IND,GB,1,10,68,(3:28) (Shotgun) A.Luck sacked at IND 32 for 0 yards (D.Smith).,3,21,2012 -20121007_GB@IND,2,32,49,IND,GB,2,10,68,(2:49) (Shotgun) A.Luck pass short right to D.Avery to IND 40 for 8 yards (S.Shields).,3,21,2012 -20121007_GB@IND,2,32,8,IND,GB,3,2,60,(2:08) (Shotgun) A.Luck pass short right to C.Fleener pushed ob at GB 42 for 18 yards (T.Williams).,3,21,2012 -20121007_GB@IND,2,32,0,IND,GB,1,10,42,(2:00) (Shotgun) A.Luck pass short left to D.Brown to GB 37 for 5 yards (D.Smith).,3,21,2012 -20121007_GB@IND,2,31,40,IND,GB,2,5,37,(1:40) (No Huddle Shotgun) A.Luck pass short left to R.Wayne ran ob at GB 26 for 11 yards.,3,21,2012 -20121007_GB@IND,2,31,35,IND,GB,1,10,26,(1:35) (Shotgun) A.Luck pass incomplete short middle to C.Fleener [E.Walden].,3,21,2012 -20121007_GB@IND,2,31,32,IND,GB,2,10,26,(1:32) (Shotgun) A.Luck sacked at GB 35 for -9 yards (M.Neal).,3,21,2012 -20121007_GB@IND,2,31,26,IND,GB,3,19,35,(1:26) (Shotgun) A.Luck pass incomplete short left to D.Avery (S.Shields).,3,21,2012 -20121007_GB@IND,2,31,22,IND,GB,4,19,35,(1:22) A.Vinatieri 53 yard field goal is No Good Wide Left Center-M.Overton Holder-P.McAfee.,3,21,2012 -20121007_GB@IND,2,31,17,GB,IND,1,10,57,(1:17) (Shotgun) A.Rodgers pass short right to J.Kuhn pushed ob at GB 49 for 6 yards (J.Freeman).,21,3,2012 -20121007_GB@IND,2,31,12,GB,IND,2,4,51,(1:12) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,21,3,2012 -20121007_GB@IND,2,31,7,GB,IND,3,4,51,(1:07) (Shotgun) A.Rodgers pass incomplete short right to J.Finley (S.Brown).,21,3,2012 -20121007_GB@IND,2,31,4,GB,IND,4,4,51,(1:04) T.Masthay punts 36 yards to IND 15 Center-B.Goode fair catch by T.Hilton.,21,3,2012 -20121007_GB@IND,2,30,56,IND,GB,1,10,85,(:56) (Shotgun) A.Luck pass short left to C.Fleener pushed ob at IND 23 for 8 yards (T.Williams).,3,21,2012 -20121007_GB@IND,2,30,50,IND,GB,2,2,77,(:50) (Shotgun) A.Luck pass incomplete deep right to R.Wayne [D.Smith].,3,21,2012 -20121007_GB@IND,2,30,46,IND,GB,3,2,77,(:46) (Shotgun) A.Luck pass incomplete short left to C.Fleener (C.Woodson). PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at IND 23 - No Play.,3,21,2012 -20121007_GB@IND,2,30,42,IND,GB,1,10,72,(:42) (Shotgun) A.Luck pass incomplete deep right to T.Hilton.,3,21,2012 -20121007_GB@IND,2,30,36,IND,GB,2,10,72,(:36) (Shotgun) A.Luck scrambles left end ran ob at IND 37 for 9 yards.,3,21,2012 -20121007_GB@IND,2,30,29,IND,GB,3,1,63,(:29) (Shotgun) A.Luck pass incomplete short right to T.Hilton (T.Williams).,3,21,2012 -20121007_GB@IND,2,30,25,IND,GB,4,1,63,(:25) P.McAfee punts 45 yards to GB 18 Center-M.Overton. R.Cobb to GB 17 for -1 yards (S.Brown).,3,21,2012 -20121007_GB@IND,2,30,16,GB,IND,1,10,83,(:16) (Shotgun) J.Kuhn up the middle to GB 24 for 7 yards (M.Fokou; J.Freeman).,21,3,2012 -20121007_GB@IND,3,30,0,IND,GB,,,83,P.McAfee kicks 74 yards from IND 35 to GB -9. R.Cobb Touchback.,3,21,2012 -20121007_GB@IND,3,30,0,GB,IND,1,10,80,(15:00) (Shotgun) A.Rodgers pass incomplete short left. PENALTY on GB-T.Crabtree Offensive Holding 10 yards enforced at GB 20 - No Play.,21,3,2012 -20121007_GB@IND,3,29,51,GB,IND,1,20,90,(14:51) (Shotgun) A.Rodgers scrambles up the middle to GB 22 for 12 yards (T.Zbikowski).,21,3,2012 -20121007_GB@IND,3,29,11,GB,IND,2,8,78,(14:11) (Shotgun) A.Rodgers pass short right to J.Finley to GB 28 for 6 yards (J.Powers).,21,3,2012 -20121007_GB@IND,3,28,24,GB,IND,3,2,72,(13:24) (Shotgun) A.Rodgers pass short right intended for Ja.Jones INTERCEPTED by J.Powers at GB 39. J.Powers pushed ob at GB 39 for no gain (Ja.Jones).,21,3,2012 -20121007_GB@IND,3,28,19,IND,GB,1,10,39,(13:19) (Shotgun) A.Luck pass deep left to R.Wayne to GB 21 for 18 yards (T.Williams).,3,21,2012 -20121007_GB@IND,3,27,43,IND,GB,1,10,21,(12:43) (Run formation) A.Luck pass incomplete deep right to D.Avery.,3,21,2012 -20121007_GB@IND,3,27,37,IND,GB,2,10,21,(12:37) V.Ballard left end to GB 14 for 7 yards (C.Wilson).,3,21,2012 -20121007_GB@IND,3,26,52,IND,GB,3,3,14,(11:52) (Shotgun) A.Luck scrambles right end ran ob at GB 8 for 6 yards.,3,21,2012 -20121007_GB@IND,3,26,11,IND,GB,1,8,8,(11:11) (Run formation) A.Luck pass short right to D.Allen for 8 yards TOUCHDOWN.,3,21,2012 -20121007_GB@IND,3,26,11,IND,GB,,,8,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,3,21,2012 -20121007_GB@IND,3,26,11,IND,GB,,,8,P.McAfee kicks 74 yards from IND 35 to GB -9. R.Cobb Touchback.,10,21,2012 -20121007_GB@IND,3,26,6,GB,IND,1,10,80,(11:06) A.Rodgers pass incomplete short left to Ja.Jones.,21,10,2012 -20121007_GB@IND,3,26,3,GB,IND,2,10,80,(11:03) (Shotgun) A.Rodgers sacked at GB 15 for -5 yards (C.Redding).,21,10,2012 -20121007_GB@IND,3,25,16,GB,IND,4,18,88,(10:16) T.Masthay punts 58 yards to IND 30 Center-B.Goode fair catch by T.Hilton.,21,10,2012 -20121007_GB@IND,3,25,8,IND,GB,1,10,70,(10:08) D.Brown right tackle to IND 39 for 9 yards (D.Smith; A.Hawk).,10,21,2012 -20121007_GB@IND,3,24,47,IND,GB,2,1,61,(9:47) D.Brown right tackle pushed ob at 50 for 11 yards (M.Burnett).,10,21,2012 -20121007_GB@IND,3,24,13,IND,GB,1,10,50,(9:13) (Run formation) A.Luck pass short right to D.Allen to GB 42 for 8 yards (C.Matthews). IND-M.McGlynn was injured during the play.,10,21,2012 -20121007_GB@IND,3,23,38,IND,GB,2,2,42,(8:38) D.Brown right end ran ob at GB 32 for 10 yards.,10,21,2012 -20121007_GB@IND,3,23,1,IND,GB,1,10,32,(8:01) (Shotgun) A.Luck pass incomplete deep left to R.Wayne.,10,21,2012 -20121007_GB@IND,3,22,56,IND,GB,2,10,32,(7:56) (Shotgun) A.Luck pass short left intended for T.Hilton INTERCEPTED by T.Williams at GB 20. T.Williams to GB 20 for no gain (T.Hilton). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) A.Luck pass incomplete short left to T.Hilton (T.Williams).,10,21,2012 -20121007_GB@IND,3,22,50,IND,GB,3,10,32,(7:50) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Smith) [E.Walden].,10,21,2012 -20121007_GB@IND,3,22,45,IND,GB,4,10,32,(7:45) A.Vinatieri 50 yard field goal is GOOD Center-M.Overton Holder-P.McAfee. Penalty on GB-J.McMillian Defensive Offside declined.,10,21,2012 -20121007_GB@IND,3,22,45,IND,GB,,,32,P.McAfee kicks 74 yards from IND 35 to GB -9. R.Cobb to GB 17 for 26 yards (J.Hughes).,13,21,2012 -20121007_GB@IND,3,22,37,GB,IND,1,10,83,(7:37) (Run formation) A.Green left end to GB 18 for 1 yard (T.Zbikowski; J.Freeman).,21,13,2012 -20121007_GB@IND,3,21,59,GB,IND,2,9,82,(6:59) (Shotgun) A.Rodgers pass short left to D.Williams pushed ob at GB 26 for 8 yards (C.Vaughn; J.Freeman).,21,13,2012 -20121007_GB@IND,3,21,26,GB,IND,3,1,74,(6:26) (Run formation) A.Rodgers pass short right to A.Green pushed ob at GB 34 for 8 yards (A.Bethea). PENALTY on IND-A.Bethea Horse Collar Tackle 15 yards enforced at GB 34.,21,13,2012 -20121007_GB@IND,3,20,59,GB,IND,1,10,51,(5:59) (Run formation) A.Green left tackle to 50 for 1 yard (D.Nevis; K.Conner).,21,13,2012 -20121007_GB@IND,3,20,22,GB,IND,2,9,50,(5:22) (Shotgun) A.Rodgers pass short left to D.Williams to IND 38 for 12 yards (S.Brown).,21,13,2012 -20121007_GB@IND,3,19,46,GB,IND,1,10,38,(4:46) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones.,21,13,2012 -20121007_GB@IND,3,19,41,GB,IND,2,10,38,(4:41) A.Green left end to IND 42 for -4 yards (K.Conner).,21,13,2012 -20121007_GB@IND,3,18,57,GB,IND,3,14,42,(3:57) (Shotgun) A.Rodgers pass short left to Ja.Jones to IND 34 for 8 yards (C.Vaughn).,21,13,2012 -20121007_GB@IND,3,18,22,GB,IND,4,6,34,(3:22) M.Crosby 52 yard field goal is No Good Wide Right Center-B.Goode Holder-T.Masthay.,21,13,2012 -20121007_GB@IND,3,18,17,IND,GB,1,10,58,(3:17) (Run formation) PENALTY on GB-J.Worthy Encroachment 5 yards enforced at IND 42 - No Play.,13,21,2012 -20121007_GB@IND,3,18,17,IND,GB,1,5,53,(3:17) (Run formation) V.Ballard right end to IND 47 for no gain (C.Woodson).,13,21,2012 -20121007_GB@IND,3,17,39,IND,GB,2,5,53,(2:39) A.Luck pass short right to D.Allen to GB 42 for 11 yards (M.Burnett).,13,21,2012 -20121007_GB@IND,3,16,59,IND,GB,1,10,42,(1:59) A.Luck pass incomplete deep right to D.Avery. PENALTY on GB-S.Shields Defensive Pass Interference 25 yards enforced at GB 42 - No Play.,13,21,2012 -20121007_GB@IND,3,16,53,IND,GB,1,10,17,(1:53) (Run formation) A.Luck pass short left to D.Allen to GB 6 for 11 yards (D.Smith).,13,21,2012 -20121007_GB@IND,3,16,14,IND,GB,1,6,6,(1:14) (Run formation) V.Ballard up the middle to GB 3 for 3 yards (N.Perry).,13,21,2012 -20121007_GB@IND,3,15,28,IND,GB,2,3,3,(:28) (Run formation) M.Harvey reported in as eligible. A.Luck pass incomplete short middle to D.Allen.,13,21,2012 -20121007_GB@IND,3,15,23,IND,GB,3,3,3,(:23) (Shotgun) A.Luck up the middle for 3 yards TOUCHDOWN.,13,21,2012 -20121007_GB@IND,3,15,23,IND,GB,,,3,TWO-POINT CONVERSION ATTEMPT. A.Luck pass to R.Wayne is incomplete. ATTEMPT FAILS.,13,21,2012 -20121007_GB@IND,3,15,23,IND,GB,,,3,P.McAfee kicks 74 yards from IND 35 to GB -9. R.Cobb Touchback.,19,21,2012 -20121007_GB@IND,3,15,18,GB,IND,1,10,80,(:18) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb. PENALTY on IND-C.Vaughn Defensive Holding 5 yards enforced at GB 20 - No Play.,21,19,2012 -20121007_GB@IND,3,15,15,GB,IND,1,10,75,(:15) (Shotgun) A.Green up the middle to GB 23 for -2 yards (J.Hickman).,21,19,2012 -20121007_GB@IND,4,15,0,GB,IND,2,12,77,(15:00) (Shotgun) A.Rodgers pass incomplete deep middle to D.Williams.,21,19,2012 -20121007_GB@IND,4,14,57,GB,IND,3,12,77,(14:57) (Shotgun) A.Rodgers sacked at GB 19 for -4 yards (D.Freeney).,21,19,2012 -20121007_GB@IND,4,14,37,GB,IND,4,16,81,(14:37) T.Masthay punts 43 yards to IND 38 Center-B.Goode. T.Hilton to IND 45 for 7 yards (R.Francois).,21,19,2012 -20121007_GB@IND,4,14,26,IND,GB,1,10,55,(14:26) (Run formation) D.Brown left tackle to GB 49 for 6 yards (C.Wilson).,19,21,2012 -20121007_GB@IND,4,13,47,IND,GB,2,4,49,(13:47) (Run formation) A.Luck pass incomplete deep left to D.Avery.,19,21,2012 -20121007_GB@IND,4,13,15,IND,GB,3,4,49,(13:15) (Shotgun) A.Luck pass deep left intended for R.Wayne INTERCEPTED by C.Hayward at GB 29. C.Hayward to GB 29 for no gain (R.Wayne).,19,21,2012 -20121007_GB@IND,4,13,8,GB,IND,1,10,71,(13:08) (Shotgun) A.Rodgers scrambles up the middle pushed ob at GB 48 for 19 yards (A.Bethea).,21,19,2012 -20121007_GB@IND,4,12,32,GB,IND,1,10,52,(12:32) (Run formation) A.Rodgers sacked at GB 42 for -6 yards (R.Mathis). IND-R.Mathis was injured during the play. His return is Questionable.,21,19,2012 -20121007_GB@IND,4,12,13,GB,IND,2,16,58,(12:13) (Shotgun) A.Rodgers pass incomplete short left to D.Williams.,21,19,2012 -20121007_GB@IND,4,12,9,GB,IND,3,16,58,(12:09) (Shotgun) A.Rodgers scrambles right end to IND 49 for 9 yards (J.Powers).,21,19,2012 -20121007_GB@IND,4,11,36,GB,IND,4,7,49,(11:36) T.Masthay punts 34 yards to IND 15 Center-B.Goode fair catch by T.Hilton.,21,19,2012 -20121007_GB@IND,4,11,27,IND,GB,1,10,85,(11:27) (Run formation) A.Luck pass deep middle to R.Wayne to IND 41 for 26 yards (T.Williams).,19,21,2012 -20121007_GB@IND,4,10,49,IND,GB,1,10,59,(10:49) (Run formation) D.Brown left end pushed ob at 50 for 9 yards (A.Hawk). PENALTY on GB-S.Shields Face Mask (15 Yards) 15 yards enforced at 50.,19,21,2012 -20121007_GB@IND,4,10,24,IND,GB,1,10,35,(10:24) (Run formation) D.Brown right end pushed ob at GB 37 for -2 yards (T.Williams).,19,21,2012 -20121007_GB@IND,4,9,54,IND,GB,2,12,37,(9:54) A.Luck pass deep left to T.Hilton to GB 11 for 26 yards (C.Woodson).,19,21,2012 -20121007_GB@IND,4,9,2,IND,GB,1,10,11,(9:02) (Run formation) D.Brown up the middle to GB 10 for 1 yard (E.Walden).,19,21,2012 -20121007_GB@IND,4,8,16,IND,GB,2,9,10,(8:16) (Shotgun) A.Luck pass incomplete short middle to T.Hilton [M.Neal].,19,21,2012 -20121007_GB@IND,4,8,12,IND,GB,3,9,10,(8:12) (Shotgun) A.Luck pass incomplete short middle to C.Fleener.,19,21,2012 -20121007_GB@IND,4,8,8,IND,GB,4,9,10,(8:08) A.Vinatieri 28 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,19,21,2012 -20121007_GB@IND,4,8,8,IND,GB,,,10,P.McAfee kicks 73 yards from IND 35 to GB -8. R.Cobb to GB 26 for 34 yards (J.Hughes).,22,21,2012 -20121007_GB@IND,4,7,58,GB,IND,1,10,74,(7:58) (Shotgun) A.Rodgers pass short right to Ja.Jones to 50 for 24 yards (K.Conner).,21,22,2012 -20121007_GB@IND,4,7,28,GB,IND,1,10,50,(7:28) (Run formation) A.Green right end to IND 45 for 5 yards (A.Bethea).,21,22,2012 -20121007_GB@IND,4,6,53,GB,IND,2,5,45,(6:53) (Shotgun) A.Rodgers sacked at GB 49 for -6 yards (M.Fokou).,21,22,2012 -20121007_GB@IND,4,6,22,GB,IND,3,11,51,(6:22) (Shotgun) A.Rodgers sacked at GB 42 for -7 yards (C.Redding).,21,22,2012 -20121007_GB@IND,4,5,56,GB,IND,4,18,58,(5:56) T.Masthay punts 52 yards to IND 6 Center-B.Goode fair catch by T.Hilton.,21,22,2012 -20121007_GB@IND,4,5,47,IND,GB,1,10,94,(5:47) (Run formation) A.Luck pass incomplete short right to C.Fleener.,22,21,2012 -20121007_GB@IND,4,5,42,IND,GB,2,10,94,(5:42) (Run formation) D.Brown up the middle to IND 7 for 1 yard (A.Hawk).,22,21,2012 -20121007_GB@IND,4,5,3,IND,GB,3,9,93,(5:03) (Shotgun) A.Luck pass incomplete short left to T.Hilton.,22,21,2012 -20121007_GB@IND,4,4,58,IND,GB,4,9,93,(4:58) P.McAfee punts 45 yards to GB 48 Center-M.Overton. R.Cobb to IND 49 for 3 yards (S.Brown; J.Hughes).,22,21,2012 -20121007_GB@IND,4,4,44,GB,IND,1,10,49,(4:44) (Run formation) A.Green up the middle pushed ob at IND 8 for 41 yards (J.Powers).,21,22,2012 -20121007_GB@IND,4,4,34,GB,IND,1,8,8,(4:34) (Run formation) A.Rodgers pass short middle to Ja.Jones for 8 yards TOUCHDOWN.,21,22,2012 -20121007_GB@IND,4,4,34,GB,IND,,,8,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to Ja.Jones is incomplete. ATTEMPT FAILS.,21,22,2012 -20121007_GB@IND,4,4,34,GB,IND,,,8,M.Crosby kicks 74 yards from GB 35 to IND -9. C.Vaughn Touchback.,27,22,2012 -20121007_GB@IND,4,4,30,IND,GB,1,10,80,(4:30) (Shotgun) A.Luck pass short right to C.Fleener to IND 26 for 6 yards (D.Smith).,22,27,2012 -20121007_GB@IND,4,4,30,IND,GB,2,4,74,(4:30) (No Huddle Shotgun) PENALTY on IND-W.Justice False Start 5 yards enforced at IND 26 - No Play.,22,27,2012 -20121007_GB@IND,4,4,6,IND,GB,2,9,79,(4:06) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (C.Woodson).,22,27,2012 -20121007_GB@IND,4,4,3,IND,GB,3,9,79,(4:03) (Shotgun) A.Luck pass short middle to R.Wayne to IND 36 for 15 yards (M.Burnett).,22,27,2012 -20121007_GB@IND,4,3,33,IND,GB,1,10,64,(3:33) (No Huddle Shotgun) A.Luck pass short left to C.Fleener to IND 43 for 7 yards (C.Woodson).,22,27,2012 -20121007_GB@IND,4,3,8,IND,GB,2,3,57,(3:08) (No Huddle Shotgun) A.Luck pass short right to R.Wayne to GB 45 for 12 yards (T.Williams).,22,27,2012 -20121007_GB@IND,4,2,31,IND,GB,1,10,45,(2:31) (No Huddle Shotgun) A.Luck pass incomplete short left to T.Hilton (T.Williams) [C.Wilson].,22,27,2012 -20121007_GB@IND,4,2,25,IND,GB,2,10,45,(2:25) (Shotgun) D.Brown up the middle to GB 47 for -2 yards (D.Smith).,22,27,2012 -20121007_GB@IND,4,2,0,IND,GB,3,12,47,(2:00) (Shotgun) A.Luck pass short right to R.Wayne to GB 32 for 15 yards (C.Woodson) [C.Matthews].,22,27,2012 -20121007_GB@IND,4,1,48,IND,GB,1,10,32,(1:48) (Shotgun) A.Luck pass deep middle to R.Wayne to GB 14 for 18 yards (M.Burnett).,22,27,2012 -20121007_GB@IND,4,1,26,IND,GB,1,10,14,(1:26) (No Huddle) A.Luck pass incomplete short right to C.Fleener (N.Perry).,22,27,2012 -20121007_GB@IND,4,1,22,IND,GB,2,10,14,(1:22) (Shotgun) A.Luck pass short right to D.Brown to GB 11 for 3 yards (C.Hayward).,22,27,2012 -20121007_GB@IND,4,0,47,IND,GB,3,7,11,(:47) (Shotgun) A.Luck scrambles up the middle to GB 4 for 7 yards (D.Smith). The Replay Assistant challenged the first down ruling and the play was Upheld.,22,27,2012 -20121007_GB@IND,4,0,39,IND,GB,1,4,4,(:39) (Shotgun) A.Luck pass short left to R.Wayne for 4 yards TOUCHDOWN.,22,27,2012 -20121007_GB@IND,4,0,39,IND,GB,,,4,TWO-POINT CONVERSION ATTEMPT. D.Brown rushes left guard. ATTEMPT SUCCEEDS.,22,27,2012 -20121007_GB@IND,4,0,39,IND,GB,,,4,P.McAfee kicks 74 yards from IND 35 to GB -9. R.Cobb Touchback.,30,27,2012 -20121007_GB@IND,4,0,35,GB,IND,1,10,80,(:35) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 27 for 7 yards (J.Freeman; C.Redding).,27,30,2012 -20121007_GB@IND,4,0,30,GB,IND,2,3,73,(:30) (Shotgun) A.Rodgers pass deep right to R.Cobb ran ob at IND 47 for 26 yards.,27,30,2012 -20121007_GB@IND,4,0,25,GB,IND,1,10,47,(:25) (Shotgun) A.Rodgers pass short right to D.Driver to IND 33 for 14 yards (J.Freeman).,27,30,2012 -20121007_GB@IND,4,0,9,GB,IND,1,10,33,(:09) A.Rodgers spiked the ball to stop the clock.,27,30,2012 -20121007_GB@IND,4,0,8,GB,IND,2,10,33,(:08) M.Crosby 51 yard field goal is No Good Wide Right Center-B.Goode Holder-T.Masthay.,27,30,2012 -20121007_GB@IND,4,0,3,IND,GB,1,10,59,(:03) A.Luck kneels to IND 40 for -1 yards.,30,27,2012 -20121007_GB@IND,4,0,3,IND,GB,,,59,                      ,30,27,2012 -20121007_BAL@KC,1,0,0,BAL,KC,,,59,J.Tucker kicks 66 yards from BLT 35 to KC -1. S.Draughn to KC 20 for 21 yards (L.Williams).,0,0,2012 -20121007_BAL@KC,1,59,55,KC,BAL,1,10,80,(14:55) J.Charles left end to KC 25 for 5 yards (H.Ngata).,0,0,2012 -20121007_BAL@KC,1,59,17,KC,BAL,2,5,75,(14:17) (No Huddle Shotgun) J.Charles up the middle to KC 29 for 4 yards (B.Pollard).,0,0,2012 -20121007_BAL@KC,1,58,57,KC,BAL,3,1,71,(13:57) (No Huddle) J.Charles right guard to KC 28 for -1 yards (P.McPhee).,0,0,2012 -20121007_BAL@KC,1,58,20,KC,BAL,4,2,72,(13:20) D.Colquitt punts 51 yards to BLT 21 Center-T.Gafford fair catch by J.Jones.,0,0,2012 -20121007_BAL@KC,1,58,12,BAL,KC,1,10,79,(13:12) R.Rice up the middle to BLT 27 for 6 yards (Ty.Jackson).,0,0,2012 -20121007_BAL@KC,1,57,46,BAL,KC,2,4,73,(12:46) J.Flacco pass short right to T.Smith to BLT 36 for 9 yards (B.Flowers).,0,0,2012 -20121007_BAL@KC,1,57,19,BAL,KC,1,10,64,(12:19) (No Huddle) R.Rice up the middle to BLT 36 for no gain (J.Belcher).,0,0,2012 -20121007_BAL@KC,1,56,44,BAL,KC,2,10,64,(11:44) (No Huddle Shotgun) J.Flacco pass short left to D.Pitta pushed ob at BLT 38 for 2 yards (S.Routt).,0,0,2012 -20121007_BAL@KC,1,56,15,BAL,KC,3,8,62,(11:15) (No Huddle Shotgun) J.Flacco pass incomplete short right to D.Pitta.,0,0,2012 -20121007_BAL@KC,1,56,8,BAL,KC,4,8,62,(11:08) S.Koch punts 47 yards to KC 15 Center-M.Cox. J.Arenas to KC 16 for 1 yard (C.Brown).,0,0,2012 -20121007_BAL@KC,1,55,57,KC,BAL,1,10,84,(10:57) J.Charles left end to KC 20 for 4 yards (P.McPhee).,0,0,2012 -20121007_BAL@KC,1,55,17,KC,BAL,2,6,80,(10:17) (No Huddle) M.Cassel pass short left to D.Bowe to KC 27 for 7 yards (C.Williams).,0,0,2012 -20121007_BAL@KC,1,54,34,KC,BAL,1,10,73,(9:34) (No Huddle) J.Charles left tackle to BLT 48 for 25 yards (J.McClain).,0,0,2012 -20121007_BAL@KC,1,53,51,KC,BAL,1,10,48,(8:51) (No Huddle) S.Draughn right tackle to BLT 49 for -1 yards (C.Upshaw; T.Cody).,0,0,2012 -20121007_BAL@KC,1,53,24,KC,BAL,2,11,49,(8:24) (No Huddle) S.Draughn left tackle to BLT 46 for 3 yards (J.McClain).,0,0,2012 -20121007_BAL@KC,1,52,38,KC,BAL,3,8,46,(7:38) (No Huddle Shotgun) S.Draughn up the middle to BLT 49 for -3 yards (P.Kruger).,0,0,2012 -20121007_BAL@KC,1,52,6,KC,BAL,4,11,49,(7:06) D.Colquitt punts 40 yards to BLT 9 Center-T.Gafford fair catch by L.Webb.,0,0,2012 -20121007_BAL@KC,1,51,59,BAL,KC,1,10,91,(6:59) J.Flacco pass incomplete short right to A.Boldin (A.Elam).,0,0,2012 -20121007_BAL@KC,1,51,55,BAL,KC,2,10,91,(6:55) (No Huddle) R.Rice right guard to BLT 13 for 4 yards (E.Berry).,0,0,2012 -20121007_BAL@KC,1,51,14,BAL,KC,3,6,87,(6:14) (Shotgun) J.Flacco sacked at BLT 9 for -4 yards (T.Hali).,0,0,2012 -20121007_BAL@KC,1,50,44,BAL,KC,4,10,91,(5:44) S.Koch punts 49 yards to KC 42 Center-M.Cox. J.Arenas to 50 for 8 yards (J.Ihedigbo). PENALTY on KC-E.Jones Offensive Holding 10 yards enforced at KC 35.,0,0,2012 -20121007_BAL@KC,1,50,33,KC,BAL,1,10,75,(5:33) J.Charles up the middle to KC 37 for 12 yards (A.Jones). FUMBLES (A.Jones) ball out of bounds at KC 38.,0,0,2012 -20121007_BAL@KC,1,50,1,KC,BAL,1,10,62,(5:01) J.Charles up the middle to KC 46 for 8 yards (B.Pollard).,0,0,2012 -20121007_BAL@KC,1,49,30,KC,BAL,2,2,54,(4:30) M.Cassel pass short right to J.Charles to BLT 49 for 5 yards (A.McClellan).,0,0,2012 -20121007_BAL@KC,1,48,53,KC,BAL,1,10,49,(3:53) C.Gray left guard to BLT 45 for 4 yards (J.McClain).,0,0,2012 -20121007_BAL@KC,1,48,17,BAL,KC,2,6,58,(3:17) M.Cassel FUMBLES (Aborted) at KC 42 touched at KC 49 RECOVERED by BLT-C.Upshaw at KC 42. C.Upshaw to KC 42 for no gain (M.Cassel).,0,0,2012 -20121007_BAL@KC,1,48,10,BAL,KC,1,10,42,(3:10) (Shotgun) J.Flacco pass short right to T.Smith to KC 17 for 25 yards (J.Belcher). PENALTY on BLT-A.Boldin Illegal Block Above the Waist 10 yards enforced at KC 39.,0,0,2012 -20121007_BAL@KC,1,47,41,BAL,KC,1,17,49,(2:41) R.Rice left tackle to KC 12 for 37 yards (J.Houston).,0,0,2012 -20121007_BAL@KC,1,47,6,BAL,KC,1,10,12,(2:06) (No Huddle) R.Rice right guard to KC 10 for 2 yards (J.Belcher).,0,0,2012 -20121007_BAL@KC,1,46,34,BAL,KC,2,8,10,(1:34) (No Huddle) J.Flacco pass incomplete short right to A.Boldin.,0,0,2012 -20121007_BAL@KC,1,46,29,BAL,KC,3,8,10,(1:29) (Shotgun) J.Flacco pass incomplete short left to T.Doss.,0,0,2012 -20121007_BAL@KC,1,46,24,BAL,KC,4,8,10,(1:24) J.Tucker 28 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121007_BAL@KC,1,46,24,BAL,KC,,,10,J.Tucker kicks 71 yards from BLT 35 to KC -6. S.Draughn to KC 35 for 41 yards (J.Tucker).,3,0,2012 -20121007_BAL@KC,1,46,15,KC,BAL,1,10,65,(1:15) J.Charles right tackle to KC 43 for 8 yards (R.Lewis).,0,3,2012 -20121007_BAL@KC,1,45,42,KC,BAL,2,2,57,(:42) (No Huddle Shotgun) J.Charles up the middle to KC 49 for 6 yards (R.Lewis).,0,3,2012 -20121007_BAL@KC,1,45,12,KC,BAL,1,10,51,(:12) (No Huddle) J.Charles right guard to BLT 40 for 11 yards (R.Lewis).,0,3,2012 -20121007_BAL@KC,2,45,0,KC,BAL,1,10,40,(15:00) J.Charles right tackle to BLT 36 for 4 yards (L.Webb).,0,3,2012 -20121007_BAL@KC,2,44,23,KC,BAL,2,6,36,(14:23) J.Charles left tackle to BLT 35 for 1 yard (H.Ngata).,0,3,2012 -20121007_BAL@KC,2,43,52,KC,BAL,3,5,35,(13:52) (No Huddle Shotgun) PENALTY on KC-B.Albert False Start 5 yards enforced at BLT 35 - No Play.,0,3,2012 -20121007_BAL@KC,2,43,29,KC,BAL,3,10,40,(13:29) (Shotgun) M.Cassel pass short right to D.Bowe ran ob at BLT 29 for 11 yards. Penalty on BLT-J.Smith Defensive Holding declined.,0,3,2012 -20121007_BAL@KC,2,43,14,KC,BAL,1,10,29,(13:14) (No Huddle) J.Charles right tackle to BLT 27 for 2 yards (P.Kruger).,0,3,2012 -20121007_BAL@KC,2,42,38,KC,BAL,2,8,27,(12:38) (No Huddle) M.Cassel pass short left intended for D.Bowe INTERCEPTED by L.Webb [P.Kruger] at BLT 21. L.Webb to BLT 29 for 8 yards (J.Asamoah).,0,3,2012 -20121007_BAL@KC,2,42,28,BAL,KC,1,10,71,(12:28) J.Flacco pass short middle to A.Boldin to BLT 45 for 16 yards (B.Flowers).,3,0,2012 -20121007_BAL@KC,2,42,0,BAL,KC,1,10,55,(12:00) (No Huddle) R.Rice up the middle to BLT 46 for 1 yard (D.Poe).,3,0,2012 -20121007_BAL@KC,2,41,28,BAL,KC,2,9,54,(11:28) (Shotgun) J.Flacco sacked at BLT 40 for -6 yards (J.Houston).,3,0,2012 -20121007_BAL@KC,2,40,53,BAL,KC,3,15,60,(10:53) (Shotgun) J.Flacco pass incomplete deep right to A.Boldin (A.Elam). PENALTY on KC-S.Routt Defensive Holding 5 yards enforced at BLT 40 - No Play.,3,0,2012 -20121007_BAL@KC,2,40,41,BAL,KC,1,10,55,(10:41) J.Flacco pass incomplete deep left to T.Smith.,3,0,2012 -20121007_BAL@KC,2,40,36,BAL,KC,2,10,55,(10:36) A.Allen right end to BLT 45 for no gain (D.Johnson).,3,0,2012 -20121007_BAL@KC,2,39,55,BAL,KC,3,10,55,(9:55) (Shotgun) PENALTY on BLT-K.Osemele False Start 5 yards enforced at BLT 45 - No Play.,3,0,2012 -20121007_BAL@KC,2,39,55,BAL,KC,3,15,60,(9:55) (Shotgun) J.Flacco pass short left to A.Boldin to KC 46 for 14 yards (J.Arenas).,3,0,2012 -20121007_BAL@KC,2,39,16,BAL,KC,4,1,46,(9:16) S.Koch punts 36 yards to KC 10 Center-M.Cox. T.Copper to KC 35 for 25 yards (D.Ellerbe).,3,0,2012 -20121007_BAL@KC,2,39,1,KC,BAL,1,10,65,(9:01) J.Charles left guard to KC 43 for 8 yards (E.Reed).,0,3,2012 -20121007_BAL@KC,2,38,37,KC,BAL,2,2,57,(8:37) (No Huddle) J.Charles up the middle to BLT 47 for 10 yards (E.Reed).,0,3,2012 -20121007_BAL@KC,2,38,11,KC,BAL,1,10,47,(8:11) S.Draughn left guard to BLT 41 for 6 yards (A.Jones).,0,3,2012 -20121007_BAL@KC,2,37,39,KC,BAL,2,4,41,(7:39) (No Huddle) M.Cassel left tackle ran ob at BLT 29 for 12 yards (B.Pollard).,0,3,2012 -20121007_BAL@KC,2,37,20,KC,BAL,1,10,29,(7:20) (No Huddle) J.Charles up the middle to BLT 20 for 9 yards (B.Pollard).,0,3,2012 -20121007_BAL@KC,2,36,50,KC,BAL,2,1,20,(6:50) (No Huddle) S.Draughn right end pushed ob at BLT 18 for 2 yards (E.Reed).,0,3,2012 -20121007_BAL@KC,2,36,23,KC,BAL,1,10,18,(6:23) (No Huddle) S.Draughn right tackle to BLT 13 for 5 yards (R.Lewis).,0,3,2012 -20121007_BAL@KC,2,35,57,KC,BAL,2,5,13,(5:57) (No Huddle) S.Draughn left end to BLT 9 for 4 yards (B.Pollard).,0,3,2012 -20121007_BAL@KC,2,35,23,KC,BAL,3,1,9,(5:23) M.Cassel up the middle to BLT 7 for 2 yards (T.Cody).,0,3,2012 -20121007_BAL@KC,2,35,23,KC,BAL,1,7,7,(5:23) (No Huddle) PENALTY on KC-S.Maneri False Start 5 yards enforced at BLT 7 - No Play.,0,3,2012 -20121007_BAL@KC,2,34,37,KC,BAL,1,12,12,(4:37) J.Charles left end to BLT 20 for -8 yards (P.Kruger).,0,3,2012 -20121007_BAL@KC,2,34,1,KC,BAL,2,20,20,(4:01) J.Charles left end to BLT 22 for -2 yards (P.Kruger).,0,3,2012 -20121007_BAL@KC,2,33,19,KC,BAL,3,22,22,(3:19) (Shotgun) S.Draughn left end pushed ob at BLT 12 for 10 yards (B.Pollard).,0,3,2012 -20121007_BAL@KC,2,32,52,KC,BAL,4,12,12,(2:52) R.Succop 30 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,3,2012 -20121007_BAL@KC,2,32,52,KC,BAL,,,12,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,3,3,2012 -20121007_BAL@KC,2,32,48,BAL,KC,1,10,80,(2:48) (Shotgun) J.Flacco pass short right to D.Pitta to BLT 29 for 9 yards (T.Daniels).,3,3,2012 -20121007_BAL@KC,2,32,25,BAL,KC,2,1,71,(2:25) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,3,3,2012 -20121007_BAL@KC,2,32,20,BAL,KC,3,1,71,(2:20) (Shotgun) R.Rice up the middle to BLT 31 for 2 yards (D.Johnson).,3,3,2012 -20121007_BAL@KC,2,32,0,BAL,KC,1,10,69,(2:00) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,3,3,2012 -20121007_BAL@KC,2,31,55,BAL,KC,2,10,69,(1:55) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to BLT 42 for 11 yards (E.Berry) [T.Hali].,3,3,2012 -20121007_BAL@KC,2,31,27,BAL,KC,1,10,58,(1:27) J.Flacco pass incomplete short left to A.Boldin.,3,3,2012 -20121007_BAL@KC,2,31,25,BAL,KC,2,10,58,(1:25) J.Flacco pass incomplete deep left to J.Jones.,3,3,2012 -20121007_BAL@KC,2,31,20,BAL,KC,3,10,58,(1:20) (No Huddle Shotgun) J.Flacco pass incomplete short middle to R.Rice.,3,3,2012 -20121007_BAL@KC,2,31,15,BAL,KC,4,10,58,(1:15) S.Koch punts 44 yards to KC 14 Center-M.Cox. J.Arenas to KC 19 for 5 yards (B.Ayanbadejo).,3,3,2012 -20121007_BAL@KC,2,31,4,KC,BAL,1,10,81,(1:04) S.Draughn up the middle to KC 22 for 3 yards (R.Lewis).,3,3,2012 -20121007_BAL@KC,2,30,55,KC,BAL,2,7,78,(:55) J.Charles left end to KC 24 for 2 yards (A.Jones; A.McClellan).,3,3,2012 -20121007_BAL@KC,2,30,50,KC,BAL,3,5,76,(:50) (Shotgun) S.Draughn right end to KC 31 for 7 yards (M.Kemoeatu).,3,3,2012 -20121007_BAL@KC,2,30,40,KC,BAL,1,10,69,(:40) (Shotgun) J.Charles up the middle pushed ob at KC 48 for 17 yards (C.Williams).,3,3,2012 -20121007_BAL@KC,2,30,33,KC,BAL,1,10,52,(:33) (Shotgun) M.Cassel pass short left to D.Bowe to BLT 43 for 9 yards (C.Williams; B.Pollard).,3,3,2012 -20121007_BAL@KC,2,30,33,KC,BAL,2,1,43,(:33) M.Cassel spiked the ball to stop the clock.,3,3,2012 -20121007_BAL@KC,2,30,33,KC,BAL,3,1,43,(:33) (Shotgun) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at BLT 43 - No Play.,3,3,2012 -20121007_BAL@KC,2,30,16,KC,BAL,3,6,48,(:16) (Shotgun) M.Cassel pass short left to S.Draughn pushed ob at BLT 43 for 5 yards (D.Ellerbe). The Replay Assistant challenged the first down ruling and the play was Upheld.,3,3,2012 -20121007_BAL@KC,2,30,12,KC,BAL,4,1,43,(:12) (Punt formation) D.Colquitt punts 34 yards to BLT 9 Center-T.Gafford downed by KC-A.Studebaker. Penalty on KC Illegal Touch Kick declined.,3,3,2012 -20121007_BAL@KC,3,30,0,KC,BAL,,,43,R.Succop kicks 68 yards from KC 35 to BLT -3. D.Thompson to BLT 29 for 32 yards (T.Copper). FUMBLES (T.Copper) RECOVERED by KC-E.Jones at BLT 29. E.Jones to BLT 29 for no gain (E.Dickson). The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,3,2012 -20121007_BAL@KC,3,29,54,KC,BAL,1,10,29,(14:54) J.Charles left end to BLT 26 for 3 yards (R.Lewis).,3,3,2012 -20121007_BAL@KC,3,29,17,KC,BAL,2,7,26,(14:17) M.Cassel pass short right to D.Bowe to BLT 20 for 6 yards (L.Webb).,3,3,2012 -20121007_BAL@KC,3,28,55,KC,BAL,3,1,20,(13:55) J.Charles right tackle to BLT 19 for 1 yard (J.McClain).,3,3,2012 -20121007_BAL@KC,3,28,14,KC,BAL,1,10,19,(13:14) (No Huddle) S.Draughn right end to BLT 20 for -1 yards (J.McClain).,3,3,2012 -20121007_BAL@KC,3,27,41,KC,BAL,2,11,20,(12:41) (No Huddle) M.Cassel pass short left to D.Bowe to BLT 13 for 7 yards (C.Williams).,3,3,2012 -20121007_BAL@KC,3,27,0,KC,BAL,3,4,13,(12:00) (No Huddle Shotgun) M.Cassel pass incomplete short left to D.Bowe (C.Williams). PENALTY on BLT-C.Williams Defensive Pass Interference 12 yards enforced at BLT 13 - No Play.,3,3,2012 -20121007_BAL@KC,3,26,54,BAL,KC,1,1,,(11:54) M.Cassel Aborted. R.Lilja FUMBLES at BLT 1 RECOVERED by BLT-E.Reed at BLT -1. E.Reed to BLT 12 for 13 yards (J.Allen). The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,3,2012 -20121007_BAL@KC,3,26,41,BAL,KC,1,10,88,(11:41) R.Rice right end to BLT 15 for 3 yards (T.Hali).,3,3,2012 -20121007_BAL@KC,3,26,9,BAL,KC,2,7,85,(11:09) J.Flacco pass deep middle to A.Boldin to KC 42 for 43 yards (E.Berry).,3,3,2012 -20121007_BAL@KC,3,26,9,BAL,KC,1,10,42,(11:09) R.Rice left end pushed ob at KC 16 for 26 yards (S.Routt).,3,3,2012 -20121007_BAL@KC,3,25,19,BAL,KC,1,10,16,(10:19) PENALTY on BLT-K.Osemele False Start 5 yards enforced at KC 16 - No Play.,3,3,2012 -20121007_BAL@KC,3,25,1,BAL,KC,1,15,21,(10:01) J.Flacco pass short left to A.Boldin to KC 12 for 9 yards (S.Routt).,3,3,2012 -20121007_BAL@KC,3,24,24,BAL,KC,2,6,12,(9:24) R.Rice up the middle to KC 10 for 2 yards (T.Hali).,3,3,2012 -20121007_BAL@KC,3,23,46,BAL,KC,3,4,10,(8:46) R.Rice up the middle to KC 8 for 2 yards (D.Johnson).,3,3,2012 -20121007_BAL@KC,3,23,4,BAL,KC,4,2,8,(8:04) J.Tucker 26 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,3,3,2012 -20121007_BAL@KC,3,23,4,BAL,KC,,,8,J.Tucker kicks 63 yards from BLT 35 to KC 2. S.Draughn to KC 22 for 20 yards (S.Considine).,6,3,2012 -20121007_BAL@KC,3,22,53,KC,BAL,1,10,78,(7:53) J.Charles left end to KC 25 for 3 yards (C.Upshaw).,3,6,2012 -20121007_BAL@KC,3,22,15,KC,BAL,2,7,75,(7:15) J.Charles left tackle to KC 20 for -5 yards (H.Ngata).,3,6,2012 -20121007_BAL@KC,3,21,36,KC,BAL,3,12,80,(6:36) (Shotgun) J.Charles left tackle to KC 27 for 7 yards (P.Kruger).,3,6,2012 -20121007_BAL@KC,3,21,3,KC,BAL,4,5,73,(6:03) D.Colquitt punts 58 yards to BLT 15 Center-T.Gafford. J.Jones to BLT 25 for 10 yards (E.Jones).,3,6,2012 -20121007_BAL@KC,3,20,50,BAL,KC,1,10,75,(5:50) J.Flacco pass short middle to E.Dickson to BLT 36 for 11 yards (T.Hali).,6,3,2012 -20121007_BAL@KC,3,20,22,BAL,KC,1,10,64,(5:22) (No Huddle) J.Flacco pass short right to R.Rice to KC 48 for 16 yards (T.Hali).,6,3,2012 -20121007_BAL@KC,3,19,39,BAL,KC,1,10,48,(4:39) J.Flacco pass short left intended for A.Boldin INTERCEPTED by B.Flowers at KC 35. B.Flowers to BLT 36 for 29 yards (A.Boldin).,6,3,2012 -20121007_BAL@KC,3,19,28,KC,BAL,1,10,36,(4:28) J.Charles left end to BLT 37 for -1 yards (P.McPhee).,3,6,2012 -20121007_BAL@KC,3,18,56,KC,BAL,2,11,37,(3:56) M.Cassel pass short middle intended for D.Bowe INTERCEPTED by C.Williams at BLT 22. C.Williams to BLT 23 for 1 yard (S.Maneri).,3,6,2012 -20121007_BAL@KC,3,18,48,BAL,KC,1,10,77,(3:48) R.Rice left end to BLT 25 for 2 yards (D.Johnson).,6,3,2012 -20121007_BAL@KC,3,18,16,BAL,KC,2,8,75,(3:16) J.Flacco pass short left to V.Leach pushed ob at BLT 43 for 18 yards (J.Belcher). Penalty on KC-S.Routt Defensive Holding declined.,6,3,2012 -20121007_BAL@KC,3,17,52,BAL,KC,1,10,57,(2:52) (No Huddle) R.Rice left guard to BLT 48 for 5 yards (A.Toribio).,6,3,2012 -20121007_BAL@KC,3,17,20,BAL,KC,2,5,52,(2:20) (No Huddle) J.Flacco pass short right to T.Smith to KC 26 for 26 yards (A.Elam).,6,3,2012 -20121007_BAL@KC,3,16,38,BAL,KC,1,10,26,(1:38) B.Pierce left guard to KC 14 for 12 yards (E.Berry).,6,3,2012 -20121007_BAL@KC,3,15,51,BAL,KC,1,10,14,(:51) (No Huddle) J.Flacco pass incomplete short right to V.Leach.,6,3,2012 -20121007_BAL@KC,3,15,47,BAL,KC,2,10,14,(:47) (Shotgun) J.Flacco pass incomplete short left to R.Rice.,6,3,2012 -20121007_BAL@KC,3,15,41,BAL,KC,3,10,14,(:41) (Shotgun) J.Flacco sacked at KC 21 for -7 yards (J.Houston).,6,3,2012 -20121007_BAL@KC,3,15,1,BAL,KC,4,17,21,(:01) J.Tucker 39 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,6,3,2012 -20121007_BAL@KC,4,15,0,BAL,KC,,,21,J.Tucker kicks 73 yards from BLT 35 to KC -8. S.Draughn Touchback.,9,3,2012 -20121007_BAL@KC,4,15,0,KC,BAL,1,10,80,(15:00) J.Charles up the middle to KC 22 for 2 yards (M.Kemoeatu).,3,9,2012 -20121007_BAL@KC,4,14,34,KC,BAL,2,8,78,(14:34) (No Huddle) J.Charles left tackle to KC 24 for 2 yards (H.Ngata).,3,9,2012 -20121007_BAL@KC,4,13,50,KC,BAL,3,6,76,(13:50) (No Huddle Shotgun) M.Cassel pass deep right to J.Baldwin to 50 for 26 yards (L.Webb).,3,9,2012 -20121007_BAL@KC,4,13,16,KC,BAL,1,10,50,(13:16) (No Huddle Shotgun) S.Draughn left tackle to BLT 45 for 5 yards (R.Lewis).,3,9,2012 -20121007_BAL@KC,4,12,44,KC,BAL,2,5,45,(12:44) (No Huddle Shotgun) M.Cassel pass incomplete short right to J.Baldwin.,3,9,2012 -20121007_BAL@KC,4,12,40,KC,BAL,3,5,45,(12:40) (No Huddle Shotgun) M.Cassel pass deep right to D.McCluster pushed ob at BLT 20 for 25 yards (E.Reed). PENALTY on KC-D.Bowe Offensive Pass Interference 10 yards enforced at BLT 45 - No Play.,3,9,2012 -20121007_BAL@KC,4,12,14,KC,BAL,3,15,55,(12:14) (Shotgun) M.Cassel pass incomplete deep right to J.Baldwin.,3,9,2012 -20121007_BAL@KC,4,12,7,KC,BAL,4,15,55,(12:07) D.Colquitt punts 53 yards to BLT 2 Center-T.Gafford downed by KC-B.Kehl. PENALTY on BLT-D.Thompson Offensive Holding 1 yard enforced at BLT 2.,3,9,2012 -20121007_BAL@KC,4,11,56,BAL,KC,1,10,99,(11:56) V.Leach up the middle to BLT 5 for 4 yards (A.Bailey).,9,3,2012 -20121007_BAL@KC,4,11,15,BAL,KC,2,6,95,(11:15) B.Pierce up the middle to BLT 6 for 1 yard (D.Johnson).,9,3,2012 -20121007_BAL@KC,4,10,33,BAL,KC,3,5,94,(10:33) (Shotgun) J.Flacco pass incomplete deep left to A.Boldin [D.Poe].,9,3,2012 -20121007_BAL@KC,4,10,26,BAL,KC,4,5,94,(10:26) S.Koch punts 56 yards to KC 38 Center-M.Cox. J.Arenas to KC 42 for 4 yards (J.Ihedigbo). PENALTY on KC-C.Greenwood Offensive Holding 10 yards enforced at KC 40.,9,3,2012 -20121007_BAL@KC,4,10,15,KC,BAL,1,10,70,(10:15) M.Cassel pass incomplete short right to T.Moeaki.,3,9,2012 -20121007_BAL@KC,4,10,10,KC,BAL,2,10,70,(10:10) M.Cassel pass short right to J.Charles to KC 46 for 16 yards (B.Pollard) [H.Ngata]. KC-M.Cassel was injured during the play. His return is Questionable.,3,9,2012 -20121007_BAL@KC,4,9,37,KC,BAL,1,10,54,(9:37) J.Charles right guard to 50 for 4 yards (R.Lewis).,3,9,2012 -20121007_BAL@KC,4,9,13,KC,BAL,2,6,50,(9:13) (No Huddle) J.Charles left end to KC 49 for -1 yards (J.McClain).,3,9,2012 -20121007_BAL@KC,4,8,31,KC,BAL,3,7,51,(8:31) (Shotgun) B.Quinn pass short middle to D.Bowe to BLT 31 for 20 yards (B.Pollard).,3,9,2012 -20121007_BAL@KC,4,7,55,KC,BAL,1,10,31,(7:55) (No Huddle) C.Gray up the middle to BLT 25 for 6 yards (B.Pollard).,3,9,2012 -20121007_BAL@KC,4,7,17,KC,BAL,2,4,25,(7:17) (No Huddle) C.Gray right tackle to BLT 14 for 11 yards (J.McClain).,3,9,2012 -20121007_BAL@KC,4,6,44,KC,BAL,1,10,14,(6:44) (No Huddle) C.Gray up the middle to BLT 15 for -1 yards (R.Lewis).,3,9,2012 -20121007_BAL@KC,4,6,9,KC,BAL,2,11,15,(6:09) (No Huddle Shotgun) B.Quinn pass short left to J.Charles to BLT 15 for no gain (R.Lewis).,3,9,2012 -20121007_BAL@KC,4,5,24,KC,BAL,3,11,15,(5:24) (Shotgun) B.Quinn pass short middle to D.Bowe for 15 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on KC-D.McCluster Offensive Pass Interference 10 yards enforced at BLT 15 - No Play.,3,9,2012 -20121007_BAL@KC,4,5,16,KC,BAL,3,21,25,(5:16) (Shotgun) B.Quinn pass short middle to C.Gray to BLT 13 for 12 yards (D.Ellerbe).,3,9,2012 -20121007_BAL@KC,4,4,34,KC,BAL,4,9,13,(4:34) R.Succop 31 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,9,2012 -20121007_BAL@KC,4,4,34,KC,BAL,,,13,R.Succop kicks 65 yards from KC 35 to BLT 0. D.Thompson to BLT 20 for 20 yards (C.Gray).,6,9,2012 -20121007_BAL@KC,4,4,24,BAL,KC,1,10,80,(4:24) R.Rice up the middle to BLT 20 for no gain (D.Johnson).,9,6,2012 -20121007_BAL@KC,4,3,42,BAL,KC,2,10,80,(3:42) J.Flacco sacked at BLT 15 for -5 yards (T.Hali).,9,6,2012 -20121007_BAL@KC,4,3,2,BAL,KC,3,15,85,(3:02) (Shotgun) J.Flacco scrambles up the middle to BLT 31 for 16 yards (A.Bailey).,9,6,2012 -20121007_BAL@KC,4,2,43,BAL,KC,1,10,69,(2:43) R.Rice right end to BLT 37 for 6 yards (J.Houston).,9,6,2012 -20121007_BAL@KC,4,2,34,BAL,KC,2,4,63,(2:34) R.Rice right tackle to BLT 40 for 3 yards (J.Belcher).,9,6,2012 -20121007_BAL@KC,4,2,0,BAL,KC,3,1,60,(2:00) R.Rice right guard to BLT 41 for 1 yard (E.Berry). The Replay Assistant challenged the first down ruling and the play was Upheld.,9,6,2012 -20121007_BAL@KC,4,1,18,BAL,KC,1,10,59,(1:18) J.Flacco kneels to BLT 40 for -1 yards.,9,6,2012 -20121007_BAL@KC,4,0,39,BAL,KC,2,11,60,(:39) J.Flacco kneels to BLT 39 for -1 yards.,9,6,2012 -20121007_BAL@KC,4,0,39,BAL,KC,,,60,                      ,9,6,2012 -20121007_CLE@NYG,1,0,0,CLE,NYG,,,60,P.Dawson kicks 62 yards from CLV 35 to NYG 3. D.Wilson to NYG 14 for 11 yards (J.Bademosi).,0,0,2012 -20121007_CLE@NYG,1,59,54,NYG,CLE,1,10,86,(14:54) A.Bradshaw right tackle to NYG 16 for 2 yards. FUMBLES RECOVERED by CLV-S.Brown at NYG 22. S.Brown to NYG 22 for no gain (M.Bennett).,0,0,2012 -20121007_CLE@NYG,1,59,45,CLE,NYG,1,10,22,(14:45) T.Richardson right tackle to NYG 15 for 7 yards (C.Webster S.Paysinger).,0,0,2012 -20121007_CLE@NYG,1,59,17,CLE,NYG,2,3,15,(14:17) T.Richardson up the middle for 15 yards TOUCHDOWN.,0,0,2012 -20121007_CLE@NYG,1,59,17,CLE,NYG,,,15,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20121007_CLE@NYG,1,59,17,CLE,NYG,,,15,P.Dawson kicks 56 yards from CLV 35 to NYG 9. D.Wilson to NYG 22 for 13 yards (R.Ventrone J.Bademosi).,7,0,2012 -20121007_CLE@NYG,1,59,2,NYG,CLE,1,10,78,(14:02) E.Manning pass short right to V.Cruz to NYG 30 for 8 yards (D.Patterson).,0,7,2012 -20121007_CLE@NYG,1,58,29,NYG,CLE,2,2,70,(13:29) E.Manning pass incomplete short right to A.Bradshaw [B.Winn].,0,7,2012 -20121007_CLE@NYG,1,58,18,NYG,CLE,3,2,70,(13:18) E.Manning pass incomplete short right to D.Hixon (D.Patterson). PENALTY on CLV-D.Patterson Defensive Pass Interference 8 yards enforced at NYG 30 - No Play.,0,7,2012 -20121007_CLE@NYG,1,58,15,NYG,CLE,1,10,62,(13:15) PENALTY on NYG-C.Snee False Start 5 yards enforced at NYG 38 - No Play.,0,7,2012 -20121007_CLE@NYG,1,58,15,NYG,CLE,1,15,67,(13:15) E.Manning pass incomplete short left to A.Bradshaw.,0,7,2012 -20121007_CLE@NYG,1,58,9,NYG,CLE,2,15,67,(13:09) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 43 for 10 yards (C.Robertson J.Hughes).,0,7,2012 -20121007_CLE@NYG,1,57,29,NYG,CLE,3,5,57,(12:29) (Shotgun) E.Manning pass incomplete short right to M.Bennett.,0,7,2012 -20121007_CLE@NYG,1,57,23,NYG,CLE,4,5,57,(12:23) S.Weatherford punts 57 yards to end zone Center-Z.DeOssie Touchback.,0,7,2012 -20121007_CLE@NYG,1,57,14,CLE,NYG,1,10,80,(12:14) T.Richardson left end to CLV 21 for 1 yard (J.Pierre-Paul P.Amukamara).,7,0,2012 -20121007_CLE@NYG,1,56,43,CLE,NYG,2,9,79,(11:43) (Shotgun) B.Weeden pass short middle to J.Norwood to CLV 28 for 7 yards (W.Hill).,7,0,2012 -20121007_CLE@NYG,1,56,9,CLE,NYG,3,2,72,(11:09) B.Weeden pass short left to J.Cameron ran ob at CLV 33 for 5 yards (A.Rolle).,7,0,2012 -20121007_CLE@NYG,1,55,48,CLE,NYG,1,10,67,(10:48) T.Richardson right tackle to CLV 38 for 5 yards (C.Webster J.Tuck).,7,0,2012 -20121007_CLE@NYG,1,55,14,CLE,NYG,2,5,62,(10:14) B.Weeden pass deep middle to J.Gordon for 62 yards TOUCHDOWN.,7,0,2012 -20121007_CLE@NYG,1,55,14,CLE,NYG,,,62,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,7,0,2012 -20121007_CLE@NYG,1,55,14,CLE,NYG,,,62,P.Dawson kicks 70 yards from CLV 35 to NYG -5. A.Brown to NYG 8 for 13 yards (B.Skrine T.Carder).,14,0,2012 -20121007_CLE@NYG,1,54,58,NYG,CLE,1,10,92,(9:58) A.Bradshaw right end to NYG 11 for 3 yards (D.Jackson). NYG-M.Bennett was injured during the play.,0,14,2012 -20121007_CLE@NYG,1,54,45,NYG,CLE,2,7,89,(9:45) E.Manning pass deep middle to D.Hixon to NYG 27 for 16 yards (D.Patterson).,0,14,2012 -20121007_CLE@NYG,1,54,12,NYG,CLE,1,10,73,(9:12) A.Bradshaw right guard to NYG 30 for 3 yards (J.Sheard I.Kitchen).,0,14,2012 -20121007_CLE@NYG,1,53,27,NYG,CLE,2,7,70,(8:27) A.Bradshaw right guard to NYG 41 for 11 yards (D.Jackson U.Young).,0,14,2012 -20121007_CLE@NYG,1,52,45,NYG,CLE,1,10,59,(7:45) E.Manning pass incomplete short right to D.Hixon (D.Patterson). Penalty on NYG Offensive Holding declined. PENALTY on NYG-A.Bradshaw Chop Block 15 yards enforced at NYG 41 - No Play.,0,14,2012 -20121007_CLE@NYG,1,52,37,NYG,CLE,1,25,74,(7:37) (Shotgun) E.Manning pass short right to R.Randle to NYG 40 for 14 yards (B.Skrine).,0,14,2012 -20121007_CLE@NYG,1,52,0,NYG,CLE,2,11,60,(7:00) (Shotgun) E.Manning pass incomplete short right to R.Randle (B.Skrine). PENALTY on CLV-B.Skrine Defensive Pass Interference 13 yards enforced at NYG 40 - No Play.,0,14,2012 -20121007_CLE@NYG,1,51,51,NYG,CLE,1,10,47,(6:51) (Shotgun) E.Manning pass short middle to R.Randle to CLV 35 for 12 yards (B.Skrine U.Young).,0,14,2012 -20121007_CLE@NYG,1,51,10,NYG,CLE,1,10,35,(6:10) (Shotgun) E.Manning pass short right to R.Randle to CLV 24 for 11 yards (B.Skrine).,0,14,2012 -20121007_CLE@NYG,1,50,34,NYG,CLE,1,10,24,(5:34) A.Bradshaw right tackle to CLV 18 for 6 yards (J.Hughes T.Ward).,0,14,2012 -20121007_CLE@NYG,1,49,59,NYG,CLE,2,4,18,(4:59) A.Bradshaw left guard to CLV 8 for 10 yards (U.Young).,0,14,2012 -20121007_CLE@NYG,1,49,13,NYG,CLE,1,8,8,(4:13) (Shotgun) E.Manning pass short middle to R.Randle to CLV 3 for 5 yards (D.Jackson U.Young).,0,14,2012 -20121007_CLE@NYG,1,48,32,NYG,CLE,2,3,3,(3:32) E.Manning pass short right to V.Cruz for 3 yards TOUCHDOWN.,0,14,2012 -20121007_CLE@NYG,1,48,32,NYG,CLE,,,3,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,14,2012 -20121007_CLE@NYG,1,48,32,NYG,CLE,,,3,L.Tynes kicks 69 yards from NYG 35 to CLV -4. J.Cribbs to CLV 36 for 40 yards (S.Paysinger).,7,14,2012 -20121007_CLE@NYG,1,48,15,CLE,NYG,1,10,64,(3:15) T.Richardson right end pushed ob at CLV 43 for 7 yards (A.Rolle). PENALTY on CLV-B.Watson Offensive Holding 10 yards enforced at CLV 36 - No Play.,14,7,2012 -20121007_CLE@NYG,1,47,57,CLE,NYG,1,20,74,(2:57) (Shotgun) B.Weeden pass short left to T.Richardson to CLV 48 for 22 yards (C.Webster).,14,7,2012 -20121007_CLE@NYG,1,47,17,CLE,NYG,1,10,52,(2:17) T.Richardson right tackle to 50 for 2 yards (L.Joseph).,14,7,2012 -20121007_CLE@NYG,1,46,46,CLE,NYG,2,8,50,(1:46) B.Weeden pass short right to J.Norwood to NYG 42 for 8 yards (C.Webster).,14,7,2012 -20121007_CLE@NYG,1,46,21,CLE,NYG,1,10,42,(1:21) T.Richardson right end to NYG 35 for 7 yards (C.Blackburn J.Pierre-Paul).,14,7,2012 -20121007_CLE@NYG,1,45,40,CLE,NYG,2,3,35,(:40) B.Weeden pass incomplete deep right to G.Little.,14,7,2012 -20121007_CLE@NYG,1,45,29,CLE,NYG,3,3,35,(:29) (Shotgun) B.Weeden pass short middle to J.Norwood to NYG 21 for 14 yards (M.Boley).,14,7,2012 -20121007_CLE@NYG,2,45,0,CLE,NYG,1,10,21,(15:00) T.Richardson left end to NYG 12 for 9 yards (M.Kiwanuka S.Brown).,14,7,2012 -20121007_CLE@NYG,2,44,28,CLE,NYG,2,1,12,(14:28) B.Weeden pass incomplete short left to J.Gordon.,14,7,2012 -20121007_CLE@NYG,2,44,22,CLE,NYG,3,1,12,(14:22) T.Richardson up the middle to NYG 14 for -2 yards (A.Rolle O.Umenyiora).,14,7,2012 -20121007_CLE@NYG,2,43,48,CLE,NYG,4,3,14,(13:48) P.Dawson 32 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,14,7,2012 -20121007_CLE@NYG,2,43,48,CLE,NYG,,,14,P.Dawson kicks 53 yards from CLV 35 to NYG 12. D.Wilson to NYG 21 for 9 yards (B.Skrine C.Robertson).,17,7,2012 -20121007_CLE@NYG,2,43,32,NYG,CLE,1,10,79,(13:32) A.Bradshaw left guard to NYG 22 for 1 yard (D.Patterson A.Rubin).,7,17,2012 -20121007_CLE@NYG,2,43,1,NYG,CLE,2,9,78,(13:01) E.Manning pass short left to D.Hixon to NYG 39 for 17 yards (U.Young D.Jackson).,7,17,2012 -20121007_CLE@NYG,2,42,26,NYG,CLE,1,10,61,(12:26) D.Wilson right end to NYG 43 for 4 yards (K.Maiava D.Jackson).,7,17,2012 -20121007_CLE@NYG,2,41,46,NYG,CLE,2,6,57,(11:46) A.Bradshaw up the middle to NYG 46 for 3 yards (B.Winn A.Rubin).,7,17,2012 -20121007_CLE@NYG,2,41,7,NYG,CLE,3,3,54,(11:07) (Shotgun) E.Manning pass short left to D.Hixon to CLV 47 for 7 yards (S.Brown).,7,17,2012 -20121007_CLE@NYG,2,40,25,NYG,CLE,1,10,47,(10:25) E.Manning pass short middle to M.Bennett to CLV 39 for 8 yards (U.Young).,7,17,2012 -20121007_CLE@NYG,2,39,44,NYG,CLE,2,2,39,(9:44) A.Bradshaw left end to CLV 33 for 6 yards (S.Fujita).,7,17,2012 -20121007_CLE@NYG,2,39,7,NYG,CLE,1,10,33,(9:07) A.Bradshaw left tackle to CLV 33 for no gain (I.Kitchen).,7,17,2012 -20121007_CLE@NYG,2,38,27,NYG,CLE,2,10,33,(8:27) (Shotgun) E.Manning pass short right to D.Hixon to CLV 25 for 8 yards (B.Skrine).,7,17,2012 -20121007_CLE@NYG,2,37,46,NYG,CLE,3,2,25,(7:46) (Shotgun) A.Bradshaw left guard to CLV 11 for 14 yards (C.Robertson).,7,17,2012 -20121007_CLE@NYG,2,37,7,NYG,CLE,1,10,11,(7:07) E.Manning pass incomplete short right to D.Hixon (D.Patterson).,7,17,2012 -20121007_CLE@NYG,2,37,0,NYG,CLE,2,10,11,(7:00) (Shotgun) E.Manning pass incomplete short right to R.Randle (B.Skrine).,7,17,2012 -20121007_CLE@NYG,2,36,55,NYG,CLE,3,10,11,(6:55) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (D.Patterson).,7,17,2012 -20121007_CLE@NYG,2,36,49,NYG,CLE,4,10,11,(6:49) L.Tynes 29 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,17,2012 -20121007_CLE@NYG,2,36,49,NYG,CLE,,,11,L.Tynes kicks 72 yards from NYG 35 to CLV -7. J.Cribbs Touchback.,10,17,2012 -20121007_CLE@NYG,2,36,46,CLE,NYG,1,10,80,(6:46) B.Weeden pass incomplete short right to J.Norwood. PENALTY on NYG-P.Amukamara Illegal Use of Hands 5 yards enforced at CLV 20 - No Play.,17,10,2012 -20121007_CLE@NYG,2,36,38,CLE,NYG,1,10,75,(6:38) (Shotgun) T.Richardson left tackle to CLV 28 for 3 yards (M.Boley J.Tuck).,17,10,2012 -20121007_CLE@NYG,2,36,0,CLE,NYG,2,7,72,(6:00) B.Weeden pass incomplete short right to T.Richardson.,17,10,2012 -20121007_CLE@NYG,2,35,51,CLE,NYG,3,7,72,(5:51) (Shotgun) B.Weeden pass short right to C.Ogbonnaya to NYG 34 for 38 yards (C.Webster).,17,10,2012 -20121007_CLE@NYG,2,35,16,CLE,NYG,1,10,34,(5:16) T.Richardson right end to NYG 30 for 4 yards (W.Hill C.Blackburn).,17,10,2012 -20121007_CLE@NYG,2,34,41,CLE,NYG,2,6,30,(4:41) T.Richardson left tackle to NYG 25 for 5 yards (M.Boley L.Joseph).,17,10,2012 -20121007_CLE@NYG,2,34,0,CLE,NYG,3,1,25,(4:00) B.Weeden pass short right intended for J.Gordon INTERCEPTED by S.Brown [C.Blackburn] at NYG 14. S.Brown pushed ob at CLV 40 for 46 yards (C.Ogbonnaya).,17,10,2012 -20121007_CLE@NYG,2,33,46,NYG,CLE,1,10,40,(3:46) (Shotgun) E.Manning pass deep left to R.Randle to CLV 4 for 36 yards (S.Brown U.Young).,10,17,2012 -20121007_CLE@NYG,2,32,59,NYG,CLE,1,4,4,(2:59) A.Bradshaw left guard for 4 yards TOUCHDOWN.,10,17,2012 -20121007_CLE@NYG,2,32,59,NYG,CLE,,,4,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,17,2012 -20121007_CLE@NYG,2,32,59,NYG,CLE,,,4,L.Tynes kicks 65 yards from NYG 35 to CLV 0. J.Cribbs to CLV 30 for 30 yards (W.Hill). FUMBLES (W.Hill) RECOVERED by NYG-S.Brown at CLV 38. S.Brown to CLV 29 for 9 yards (L.Fort).,17,17,2012 -20121007_CLE@NYG,2,32,37,NYG,CLE,1,10,29,(2:37) (Shotgun) E.Manning pass incomplete short left to R.Randle.,17,17,2012 -20121007_CLE@NYG,2,32,31,NYG,CLE,2,10,29,(2:31) A.Bradshaw up the middle to CLV 27 for 2 yards (A.Rubin). CLV-D.Jackson was injured during the play.,17,17,2012 -20121007_CLE@NYG,2,32,0,NYG,CLE,3,8,27,(2:00) (Shotgun) E.Manning pass short middle to M.Bennett to CLV 10 for 17 yards (C.Robertson). Penalty on CLV-J.Sheard Defensive Offside declined.,17,17,2012 -20121007_CLE@NYG,2,31,53,NYG,CLE,1,10,10,(1:53) (Shotgun) A.Bradshaw right guard to CLV 7 for 3 yards (L.Fort).,17,17,2012 -20121007_CLE@NYG,2,31,16,NYG,CLE,2,7,7,(1:16) (Shotgun) E.Manning pass short left to V.Cruz for 7 yards TOUCHDOWN.,17,17,2012 -20121007_CLE@NYG,2,31,16,NYG,CLE,,,7,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,17,2012 -20121007_CLE@NYG,2,31,16,NYG,CLE,,,7,L.Tynes kicks 72 yards from NYG 35 to CLV -7. J.Cribbs to CLV 17 for 24 yards (A.Tracy).,24,17,2012 -20121007_CLE@NYG,2,31,5,CLE,NYG,1,10,83,(1:05) (Shotgun) B.Weeden pass incomplete short right to J.Gordon.,17,24,2012 -20121007_CLE@NYG,2,30,59,CLE,NYG,2,10,83,(:59) (Shotgun) T.Richardson left guard to CLV 26 for 9 yards (O.Umenyiora). PENALTY on CLV-J.Norwood Illegal Crackback 11 yards enforced at CLV 22. Officially a rush for 5 yards.,17,24,2012 -20121007_CLE@NYG,2,30,50,CLE,NYG,2,16,89,(:50) B.Weeden pass short left to T.Richardson to CLV 10 for -1 yards (P.Amukamara J.Tuck). PENALTY on CLV-A.Mack Illegal Block Above the Waist 5 yards enforced at CLV 11 - No Play.,17,24,2012 -20121007_CLE@NYG,2,30,42,CLE,NYG,2,21,94,(:42) T.Richardson right end to CLV 12 for 6 yards (J.Tuck).,17,24,2012 -20121007_CLE@NYG,2,30,35,CLE,NYG,3,15,88,(:35) (Shotgun) B.Weeden pass short left to J.Norwood to CLV 17 for 5 yards (P.Amukamara O.Umenyiora).,17,24,2012 -20121007_CLE@NYG,2,30,28,CLE,NYG,4,10,83,(:28) R.Hodges punts 49 yards to NYG 34 Center-C.Yount. R.Randle to NYG 42 for 8 yards (C.Ogbonnaya B.Skrine).,17,24,2012 -20121007_CLE@NYG,2,30,17,NYG,CLE,1,10,58,(:17) (Shotgun) A.Bradshaw right tackle to CLV 46 for 12 yards (L.Fort C.Robertson).,24,17,2012 -20121007_CLE@NYG,2,30,10,NYG,CLE,1,10,46,(:10) (Shotgun) E.Manning pass incomplete deep right to R.Randle. PENALTY on CLV-B.Skrine Defensive Pass Interference 24 yards enforced at CLV 46 - No Play.,24,17,2012 -20121007_CLE@NYG,2,30,4,NYG,CLE,1,10,22,(:04) L.Tynes 40 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,24,17,2012 -20121007_CLE@NYG,3,30,0,NYG,CLE,,,22,L.Tynes kicks 66 yards from NYG 35 to CLV -1. J.Cribbs to CLV 27 for 28 yards (M.Coe M.Herzlich).,27,17,2012 -20121007_CLE@NYG,3,29,55,CLE,NYG,1,10,73,(14:55) B.Weeden pass short right to J.Norwood to CLV 35 for 8 yards (C.Webster).,17,27,2012 -20121007_CLE@NYG,3,29,32,CLE,NYG,2,2,65,(14:32) T.Richardson right tackle to CLV 35 for no gain (J.Tuck C.Webster).,17,27,2012 -20121007_CLE@NYG,3,28,45,CLE,NYG,3,2,65,(13:45) (Shotgun) B.Weeden pass short right to C.Ogbonnaya to CLV 36 for 1 yard (A.Rolle).,17,27,2012 -20121007_CLE@NYG,3,28,12,CLE,NYG,4,1,64,(13:12) B.Weeden up the middle to CLV 38 for 2 yards (J.Tuck).,17,27,2012 -20121007_CLE@NYG,3,27,33,CLE,NYG,1,10,62,(12:33) T.Richardson left end to 50 for 12 yards (M.Kuhn).,17,27,2012 -20121007_CLE@NYG,3,26,54,CLE,NYG,1,10,50,(11:54) J.Norwood left end to NYG 49 for 1 yard (A.Rolle M.Kuhn). Double reverse involving #16 - J.Cribbs.,17,27,2012 -20121007_CLE@NYG,3,26,9,CLE,NYG,2,9,49,(11:09) (Shotgun) B.Weeden pass incomplete short left to J.Gordon (M.Kuhn).,17,27,2012 -20121007_CLE@NYG,3,26,5,CLE,NYG,3,9,49,(11:05) B.Weeden pass short left to J.Norwood to NYG 45 for 4 yards (A.Rolle M.Boley) [O.Umenyiora].,17,27,2012 -20121007_CLE@NYG,3,25,34,CLE,NYG,4,5,45,(10:34) R.Hodges punts 40 yards to NYG 5 Center-C.Yount downed by CLV-B.Skrine.,17,27,2012 -20121007_CLE@NYG,3,25,19,NYG,CLE,1,10,95,(10:19) A.Bradshaw up the middle to NYG 7 for 2 yards (J.Sheard K.Maiava).,27,17,2012 -20121007_CLE@NYG,3,24,39,NYG,CLE,2,8,93,(9:39) E.Manning pass short left to D.Hixon to NYG 14 for 7 yards (S.Brown).,27,17,2012 -20121007_CLE@NYG,3,24,6,NYG,CLE,3,1,86,(9:06) A.Bradshaw left tackle to NYG 19 for 5 yards (A.Rubin).,27,17,2012 -20121007_CLE@NYG,3,23,30,NYG,CLE,1,10,81,(8:30) (Shotgun) E.Manning pass short left to R.Randle to NYG 23 for 4 yards (S.Brown).,27,17,2012 -20121007_CLE@NYG,3,22,48,NYG,CLE,2,6,77,(7:48) A.Bradshaw left end pushed ob at CLV 40 for 37 yards (T.Ward).,27,17,2012 -20121007_CLE@NYG,3,22,13,NYG,CLE,1,10,40,(7:13) (Shotgun) E.Manning pass short middle to M.Bennett to CLV 35 for 5 yards (S.Fujita).,27,17,2012 -20121007_CLE@NYG,3,21,32,NYG,CLE,2,5,35,(6:32) (Shotgun) A.Bradshaw left tackle to CLV 28 for 7 yards (E.Stephens I.Kitchen).,27,17,2012 -20121007_CLE@NYG,3,20,55,NYG,CLE,1,10,28,(5:55) A.Bradshaw left tackle to CLV 28 for no gain (F.Rucker).,27,17,2012 -20121007_CLE@NYG,3,20,14,NYG,CLE,2,10,28,(5:14) (Shotgun) E.Manning pass deep right to V.Cruz for 28 yards TOUCHDOWN.,27,17,2012 -20121007_CLE@NYG,3,20,14,NYG,CLE,,,28,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,27,17,2012 -20121007_CLE@NYG,3,20,14,NYG,CLE,,,28,L.Tynes kicks 69 yards from NYG 35 to CLV -4. J.Cribbs to NYG 30 for 74 yards (M.Herzlich).,34,17,2012 -20121007_CLE@NYG,3,19,55,CLE,NYG,1,10,30,(4:55) B.Weeden pass incomplete short right to G.Little.,17,34,2012 -20121007_CLE@NYG,3,19,50,CLE,NYG,2,10,30,(4:50) B.Weeden pass short left to T.Richardson to NYG 24 for 6 yards (S.Paysinger O.Umenyiora).,17,34,2012 -20121007_CLE@NYG,3,19,10,CLE,NYG,3,4,24,(4:10) (Shotgun) B.Weeden pass short right to B.Watson to NYG 23 for 1 yard (C.Webster).,17,34,2012 -20121007_CLE@NYG,3,18,37,CLE,NYG,4,3,23,(3:37) P.Dawson 41 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,17,34,2012 -20121007_CLE@NYG,3,18,37,CLE,NYG,,,23,P.Dawson kicks 69 yards from CLV 35 to NYG -4. D.Wilson to NYG 17 for 21 yards (T.Wade).,20,34,2012 -20121007_CLE@NYG,3,18,21,NYG,CLE,1,10,83,(3:21) E.Manning pass short right to A.Bradshaw to NYG 31 for 14 yards (L.Fort).,34,20,2012 -20121007_CLE@NYG,3,17,45,NYG,CLE,1,10,69,(2:45) E.Manning pass incomplete short middle to D.Hixon (B.Skrine).,34,20,2012 -20121007_CLE@NYG,3,17,38,NYG,CLE,2,10,69,(2:38) E.Manning pass incomplete deep left to D.Hixon.,34,20,2012 -20121007_CLE@NYG,3,17,31,NYG,CLE,3,10,69,(2:31) (Shotgun) E.Manning pass short left to J.Jernigan to NYG 37 for 6 yards (T.Wade C.Robertson).,34,20,2012 -20121007_CLE@NYG,3,17,0,NYG,CLE,4,4,63,(2:00) (Punt formation) PENALTY on CLV-T.Carder Defensive Offside 5 yards enforced at NYG 37 - No Play.,34,20,2012 -20121007_CLE@NYG,3,16,52,NYG,CLE,1,10,58,(1:52) E.Manning pass short right to B.Pascoe to NYG 49 for 7 yards (L.Fort U.Young).,34,20,2012 -20121007_CLE@NYG,3,16,4,NYG,CLE,2,3,51,(1:04) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,34,20,2012 -20121007_CLE@NYG,3,15,58,NYG,CLE,3,3,51,(:58) (Shotgun) E.Manning pass incomplete short right to R.Randle (B.Skrine).,34,20,2012 -20121007_CLE@NYG,3,15,54,NYG,CLE,4,3,51,(:54) S.Weatherford punts 43 yards to CLV 8 Center-Z.DeOssie. J.Cribbs to CLV 20 for 12 yards (A.Tracy M.Kiwanuka).,34,20,2012 -20121007_CLE@NYG,3,15,42,CLE,NYG,1,10,80,(:42) B.Weeden pass short right to T.Richardson to CLV 24 for 4 yards (S.Paysinger J.Tuck).,20,34,2012 -20121007_CLE@NYG,3,15,3,CLE,NYG,2,6,76,(:03) (Shotgun) B.Weeden pass incomplete short middle to B.Watson (M.Boley).,20,34,2012 -20121007_CLE@NYG,4,15,0,CLE,NYG,3,6,76,(15:00) B.Weeden pass incomplete short right to C.Ogbonnaya (O.Umenyiora).,20,34,2012 -20121007_CLE@NYG,4,14,54,CLE,NYG,4,6,76,(14:54) R.Hodges punts 55 yards to NYG 21 Center-C.Yount downed by CLV-C.Ogbonnaya.,20,34,2012 -20121007_CLE@NYG,4,14,38,NYG,CLE,1,10,79,(14:38) A.Bradshaw left tackle to NYG 21 for no gain (U.Young).,34,20,2012 -20121007_CLE@NYG,4,13,53,NYG,CLE,2,10,79,(13:53) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 23 for 2 yards (C.Robertson).,34,20,2012 -20121007_CLE@NYG,4,13,11,NYG,CLE,3,8,77,(13:11) (Shotgun) E.Manning pass deep left intended for V.Cruz INTERCEPTED by U.Young (S.Brown) at CLV 29. U.Young to NYG 27 for 44 yards (J.Jernigan).,34,20,2012 -20121007_CLE@NYG,4,12,53,CLE,NYG,1,10,27,(12:53) T.Richardson left tackle to NYG 30 for -3 yards (W.Hill M.Austin).,20,34,2012 -20121007_CLE@NYG,4,12,22,CLE,NYG,2,13,30,(12:22) PENALTY on CLV-M.Schwartz False Start 5 yards enforced at NYG 30 - No Play.,20,34,2012 -20121007_CLE@NYG,4,12,6,CLE,NYG,2,18,35,(12:06) B.Weeden pass short middle to T.Richardson to NYG 30 for 5 yards (M.Boley M.Austin).,20,34,2012 -20121007_CLE@NYG,4,11,30,CLE,NYG,3,13,30,(11:30) PENALTY on CLV-S.Lauvao False Start 5 yards enforced at NYG 30 - No Play.,20,34,2012 -20121007_CLE@NYG,4,11,6,CLE,NYG,3,18,35,(11:06) (Shotgun) B.Weeden pass short left to C.Ogbonnaya pushed ob at NYG 20 for 15 yards (P.Amukamara). Penalty on NYG-O.Umenyiora Defensive Offside declined.,20,34,2012 -20121007_CLE@NYG,4,10,50,CLE,NYG,4,3,20,(10:50) B.Weeden pass short middle to T.Richardson to NYG 10 for 10 yards (S.Brown A.Rolle).,20,34,2012 -20121007_CLE@NYG,4,10,8,CLE,NYG,1,10,10,(10:08) (Shotgun) B.Weeden pass incomplete short left to T.Richardson (J.Pierre-Paul).,20,34,2012 -20121007_CLE@NYG,4,10,1,CLE,NYG,2,10,10,(10:01) T.Richardson up the middle to NYG 5 for 5 yards (L.Joseph).,20,34,2012 -20121007_CLE@NYG,4,9,22,CLE,NYG,3,5,5,(9:22) B.Weeden pass short middle to B.Weeden to NYG 13 for -8 yards. B.Weeden pass short middle to J.Cameron for 13 yards TOUCHDOWN NULLIFIED by Penalty. Ball batted by #91 - J. Tuck back into the hands of the QB. PENALTY on CLV-B.Weeden Illegal Forward Pass 5 yards enforced at NYG 5 - No Play.,20,34,2012 -20121007_CLE@NYG,4,9,10,CLE,NYG,3,10,5,(9:10) B.Weeden pass short middle intended for B.Watson INTERCEPTED by C.Blackburn at NYG -4. Touchback.,20,34,2012 -20121007_CLE@NYG,4,9,5,NYG,CLE,1,10,80,(9:05) A.Bradshaw left guard to NYG 22 for 2 yards (B.Winn).,34,20,2012 -20121007_CLE@NYG,4,8,36,NYG,CLE,2,8,78,(8:36) A.Bradshaw left end to 50 for 28 yards (U.Young L.Fort).,34,20,2012 -20121007_CLE@NYG,4,7,54,NYG,CLE,1,10,50,(7:54) A.Bradshaw right tackle to CLV 47 for 3 yards (J.Sheard).,34,20,2012 -20121007_CLE@NYG,4,7,17,NYG,CLE,2,7,47,(7:17) (Shotgun) E.Manning pass short left to A.Bradshaw to CLV 44 for 3 yards (J.Hughes).,34,20,2012 -20121007_CLE@NYG,4,6,34,NYG,CLE,3,4,44,(6:34) (Shotgun) E.Manning pass short middle to V.Cruz to CLV 40 for 4 yards (T.Ward).,34,20,2012 -20121007_CLE@NYG,4,5,49,NYG,CLE,1,10,40,(5:49) D.Wilson right guard for 40 yards TOUCHDOWN.,34,20,2012 -20121007_CLE@NYG,4,5,49,NYG,CLE,,,40,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,34,20,2012 -20121007_CLE@NYG,4,5,49,NYG,CLE,,,40,L.Tynes kicks 66 yards from NYG 35 to CLV -1. J.Cribbs to CLV 24 for 25 yards (M.Coe).,41,20,2012 -20121007_CLE@NYG,4,5,34,CLE,NYG,1,10,76,(5:34) (Shotgun) B.Weeden pass incomplete short right to J.Gordon.,20,41,2012 -20121007_CLE@NYG,4,5,30,CLE,NYG,2,10,76,(5:30) (Shotgun) B.Weeden pass short right to J.Norwood to CLV 35 for 11 yards (M.Boley).,20,41,2012 -20121007_CLE@NYG,4,5,8,CLE,NYG,1,10,65,(5:08) (Shotgun) B.Weeden pass short middle to J.Norwood to CLV 44 for 9 yards (C.Blackburn).,20,41,2012 -20121007_CLE@NYG,4,4,38,CLE,NYG,2,1,56,(4:38) (Shotgun) B.Weeden pass short right to J.Norwood pushed ob at NYG 41 for 15 yards (C.Blackburn).,20,41,2012 -20121007_CLE@NYG,4,4,31,CLE,NYG,1,10,41,(4:31) (Shotgun) B.Weeden pass incomplete deep left to J.Gordon (M.Kuhn).,20,41,2012 -20121007_CLE@NYG,4,4,26,CLE,NYG,2,10,41,(4:26) (Shotgun) B.Weeden pass short middle to J.Cameron to NYG 20 for 21 yards (S.Brown).,20,41,2012 -20121007_CLE@NYG,4,4,3,CLE,NYG,1,10,20,(4:03) (Shotgun) B.Weeden pass deep right to J.Gordon for 20 yards TOUCHDOWN.,20,41,2012 -20121007_CLE@NYG,4,4,3,CLE,NYG,,,20,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,20,41,2012 -20121007_CLE@NYG,4,4,3,CLE,NYG,,,20,(Onside Kick formation) P.Dawson kicks onside 16 yards from CLV 35 to NYG 49. W.Hill (didn't try to advance) to NYG 49 for no gain (J.Bademosi).,27,41,2012 -20121007_CLE@NYG,4,3,55,NYG,CLE,1,10,51,(3:55) A.Bradshaw right tackle to CLV 43 for 8 yards (B.Skrine L.Fort).,41,27,2012 -20121007_CLE@NYG,4,3,40,NYG,CLE,2,2,43,(3:40) A.Bradshaw right guard to CLV 43 for no gain (S.Fujita T.Ward).,41,27,2012 -20121007_CLE@NYG,4,3,34,NYG,CLE,3,2,43,(3:34) A.Bradshaw left tackle to CLV 40 for 3 yards (E.Stephens A.Rubin).,41,27,2012 -20121007_CLE@NYG,4,3,27,NYG,CLE,1,10,40,(3:27) A.Bradshaw left tackle to CLV 29 for 11 yards (L.Fort).,41,27,2012 -20121007_CLE@NYG,4,2,43,NYG,CLE,1,10,29,(2:43) A.Bradshaw left tackle to CLV 27 for 2 yards (S.Fujita L.Fort).,41,27,2012 -20121007_CLE@NYG,4,2,0,NYG,CLE,2,8,27,(2:00) A.Bradshaw up the middle to CLV 15 for 12 yards (B.Skrine L.Fort).,41,27,2012 -20121007_CLE@NYG,4,1,22,NYG,CLE,1,10,15,(1:22) E.Manning kneels to CLV 15 for no gain.,41,27,2012 -20121007_CLE@NYG,4,0,40,NYG,CLE,2,10,15,(:40) E.Manning kneels to CLV 16 for -1 yards.,41,27,2012 -20121007_CLE@NYG,4,0,40,NYG,CLE,,,15,                      ,41,27,2012 -20121007_PHI@PIT,1,0,0,PIT,PHI,,,15,S.Suisham kicks 70 yards from PIT 35 to PHI -5. B.Boykin to PHI 16 for 21 yards (J.Worilds C.Allen).,0,0,2012 -20121007_PHI@PIT,1,59,56,PHI,PIT,1,10,84,(14:56) L.McCoy left guard to PHI 19 for 3 yards (R.Clark).,0,0,2012 -20121007_PHI@PIT,1,59,29,PHI,PIT,2,7,81,(14:29) M.Vick pass short right to J.Maclin to PHI 28 for 9 yards (K.Lewis).,0,0,2012 -20121007_PHI@PIT,1,58,51,PHI,PIT,1,10,72,(13:51) (No Huddle) M.Vick pass incomplete deep middle to J.Maclin. Coverage by #24 Taylor.,0,0,2012 -20121007_PHI@PIT,1,58,42,PHI,PIT,2,10,72,(13:42) S.Havili left guard to PHI 33 for 5 yards (E.Hood).,0,0,2012 -20121007_PHI@PIT,1,58,2,PHI,PIT,3,5,67,(13:02) (No Huddle Shotgun) PENALTY on PHI-D.Bell False Start 5 yards enforced at PHI 33 - No Play.,0,0,2012 -20121007_PHI@PIT,1,57,44,PHI,PIT,3,10,72,(12:44) (Shotgun) M.Vick pass short left to J.Avant pushed ob at PHI 40 for 12 yards (C.Allen).,0,0,2012 -20121007_PHI@PIT,1,57,19,PHI,PIT,1,10,60,(12:19) (Shotgun) M.Vick pass short left to L.McCoy to PHI 49 for 9 yards (L.Timmons).,0,0,2012 -20121007_PHI@PIT,1,56,42,PHI,PIT,2,1,51,(11:42) L.McCoy left tackle pushed ob at PIT 43 for 8 yards (A.Woods).,0,0,2012 -20121007_PHI@PIT,1,56,20,PHI,PIT,1,10,43,(11:20) (No Huddle) L.McCoy right guard to PIT 43 for no gain (T.Polamalu).,0,0,2012 -20121007_PHI@PIT,1,55,41,PHI,PIT,2,10,43,(10:41) (No Huddle Shotgun) M.Vick sacked at PIT 43 for 0 yards (E.Hood).,0,0,2012 -20121007_PHI@PIT,1,54,59,PHI,PIT,3,10,43,(9:59) M.Vick pass incomplete short left to J.Maclin (K.Lewis).,0,0,2012 -20121007_PHI@PIT,1,54,55,PHI,PIT,4,10,43,(9:55) (Punt formation) M.McBriar punts 25 yards to PIT 18 Center-J.Dorenbos fair catch by A.Brown.,0,0,2012 -20121007_PHI@PIT,1,54,46,PIT,PHI,1,10,82,(9:46) R.Mendenhall right guard to PIT 18 for no gain (C.Jenkins D.Ryans).,0,0,2012 -20121007_PHI@PIT,1,53,59,PIT,PHI,2,10,88,(8:59) (Shotgun) B.Roethlisberger Aborted. M.Pouncey FUMBLES at PIT 18 recovered by PIT-M.Starks at PIT 12. M.Starks to PIT 12 for no gain (J.Babin).,0,0,2012 -20121007_PHI@PIT,1,53,18,PIT,PHI,3,16,88,(8:18) B.Roethlisberger pass short right to H.Miller to PIT 13 for 1 yard (N.Asomugha).,0,0,2012 -20121007_PHI@PIT,1,53,2,PIT,PHI,4,15,87,(8:02) (Punt formation) D.Butler punts 48 yards to PHI 39 Center-G.Warren fair catch by D.Johnson.,0,0,2012 -20121007_PHI@PIT,1,52,47,PHI,PIT,1,10,61,(7:47) M.Vick pass incomplete deep right to B.Celek (R.Clark) [L.Timmons]. Pressure by #94 Timmons.,0,0,2012 -20121007_PHI@PIT,1,52,29,PHI,PIT,2,10,61,(7:29) L.McCoy left tackle to PHI 49 for 10 yards (T.Polamalu).,0,0,2012 -20121007_PHI@PIT,1,52,6,PHI,PIT,1,10,51,(7:06) M.Vick scrambles up the middle to PIT 42 for 9 yards. FUMBLES RECOVERED by PIT-L.Timmons at PIT 36. L.Timmons to PIT 36 for no gain (J.Maclin). Play Challenged by PHI and REVERSED. M.Vick scrambles up the middle to PIT 42 for 9 yards (L.Foote).,0,0,2012 -20121007_PHI@PIT,1,51,52,PHI,PIT,2,1,42,(6:52) L.McCoy left tackle to PIT 44 for -2 yards (L.Timmons).,0,0,2012 -20121007_PHI@PIT,1,51,22,PHI,PIT,3,3,44,(6:22) M.Vick pass incomplete deep left to J.Maclin. Coverage by #24 Taylor. PENALTY on PIT-I.Taylor Defensive Pass Interference 31 yards enforced at PIT 44 - No Play.,0,0,2012 -20121007_PHI@PIT,1,51,16,PHI,PIT,1,10,13,(6:16) M.Vick pass short right to J.Maclin to PIT 3 for 10 yards (K.Lewis).,0,0,2012 -20121007_PHI@PIT,1,50,42,PHI,PIT,1,3,3,(5:42) (Shotgun) M.Vick right guard to PIT 1 for 2 yards (R.Clark). FUMBLES (R.Clark) RECOVERED by PIT-L.Foote at PIT 0. Touchback. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 -20121007_PHI@PIT,1,50,36,PIT,PHI,1,10,80,(5:36) R.Mendenhall right guard to PIT 23 for 3 yards (N.Allen).,0,0,2012 -20121007_PHI@PIT,1,49,50,PIT,PHI,2,7,77,(4:50) B.Roethlisberger pass short right to H.Miller to PIT 41 for 18 yards (D.Ryans).,0,0,2012 -20121007_PHI@PIT,1,49,8,PIT,PHI,1,10,59,(4:08) (No Huddle Shotgun) R.Mendenhall up the middle to PIT 42 for 1 yard (C.Thornton). PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 41 - No Play.,0,0,2012 -20121007_PHI@PIT,1,48,36,PIT,PHI,1,20,69,(3:36) B.Roethlisberger pass incomplete short middle to E.Sanders (M.Kendricks) [B.Graham]. PENALTY on PHI-D.Tapp Unnecessary Roughness 15 yards enforced at PIT 31.,0,0,2012 -20121007_PHI@PIT,1,48,31,PIT,PHI,1,10,54,(3:31) (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace (K.Coleman).,0,0,2012 -20121007_PHI@PIT,1,48,25,PIT,PHI,2,10,54,(3:25) (No Huddle) R.Mendenhall up the middle to PHI 30 for 24 yards (J.Babin). PENALTY on PIT-M.Wallace Illegal Formation 5 yards enforced at PIT 46 - No Play.,0,0,2012 -20121007_PHI@PIT,1,47,42,PIT,PHI,2,15,59,(2:42) I.Redman right guard to PIT 42 for 1 yard (M.Kendricks).,0,0,2012 -20121007_PHI@PIT,1,47,1,PIT,PHI,3,14,58,(2:01) (Shotgun) PENALTY on PIT-A.Brown False Start 5 yards enforced at PIT 42 - No Play.,0,0,2012 -20121007_PHI@PIT,1,46,36,PIT,PHI,3,19,63,(1:36) (Shotgun) B.Roethlisberger pass short left to H.Miller to PIT 44 for 7 yards (B.Boykin M.Kendricks). Penalty on PIT-W.Colon Offensive Holding declined.,0,0,2012 -20121007_PHI@PIT,1,46,18,PIT,PHI,4,12,56,(1:18) (Punt formation) D.Butler punts 45 yards to PHI 11 Center-G.Warren fair catch by D.Johnson. PENALTY on PIT-D.Van Dyke Player Out of Bounds on Punt 5 yards enforced at PIT 44 - No Play.,0,0,2012 -20121007_PHI@PIT,1,46,5,PIT,PHI,4,17,61,(1:05) (Punt formation) D.Butler punts 36 yards to PHI 25 Center-G.Warren out of bounds.,0,0,2012 -20121007_PHI@PIT,1,46,5,PHI,PIT,1,10,75,(1:05) L.McCoy left tackle to PHI 31 for 6 yards (L.Foote).,0,0,2012 -20121007_PHI@PIT,1,45,30,PHI,PIT,2,4,69,(:30) (No Huddle) PENALTY on PHI-C.Harbor False Start 5 yards enforced at PHI 31 - No Play.,0,0,2012 -20121007_PHI@PIT,1,45,10,PHI,PIT,2,9,74,(:10) (Shotgun) M.Vick scrambles up the middle to PHI 27 for 1 yard (L.Timmons). FUMBLES (L.Timmons) RECOVERED by PIT-L.Foote at PHI 34. L.Foote to PHI 34 for no gain (T.Herremans).,0,0,2012 -20121007_PHI@PIT,1,45,2,PIT,PHI,1,10,34,(:02) C.Rainey right guard to PHI 34 for no gain (C.Thornton).,0,0,2012 -20121007_PHI@PIT,2,45,0,PIT,PHI,2,10,34,(15:00) (Shotgun) B.Roethlisberger pass incomplete short right to E.Sanders [B.Graham].,0,0,2012 -20121007_PHI@PIT,2,44,51,PIT,PHI,3,10,34,(14:51) (Shotgun) B.Roethlisberger pass incomplete short middle to A.Brown. Coverage by #22 Boykin.,0,0,2012 -20121007_PHI@PIT,2,44,51,PIT,PHI,4,10,45,(14:51) (Shotgun) B.Roethlisberger FUMBLES (Aborted) at PHI 34 and recovers at PHI 45. B.Roethlisberger pass incomplete deep left to M.Wallace.,0,0,2012 -20121007_PHI@PIT,2,44,37,PHI,PIT,1,10,66,(14:37) M.Vick pass short left to D.Jackson to PHI 43 for 9 yards (I.Taylor).,0,0,2012 -20121007_PHI@PIT,2,44,20,PHI,PIT,2,1,57,(14:20) (No Huddle) B.Brown right tackle to PHI 47 for 4 yards (R.Clark).,0,0,2012 -20121007_PHI@PIT,2,43,36,PHI,PIT,1,10,53,(13:36) M.Vick pass incomplete deep middle to D.Jackson [J.Harrison]. Coverage by #24 Taylor #25 Clark; Pressure by #92 Harrison.,0,0,2012 -20121007_PHI@PIT,2,43,28,PHI,PIT,2,10,53,(13:28) L.McCoy left tackle to PHI 45 for -2 yards (L.Timmons).,0,0,2012 -20121007_PHI@PIT,2,42,45,PHI,PIT,3,12,55,(12:45) (Shotgun) M.Vick to PHI 44 for -1 yards (B.Keisel E.Hood).,0,0,2012 -20121007_PHI@PIT,2,42,31,PHI,PIT,4,13,56,(12:31) (Punt formation) M.McBriar punts 56 yards to end zone Center-J.Dorenbos Touchback. PENALTY on PHI-M.Gilyard Player Out of Bounds on Punt 5 yards enforced at PIT 20.,0,0,2012 -20121007_PHI@PIT,2,42,22,PIT,PHI,1,10,75,(12:22) B.Roethlisberger pass short right to A.Brown to PIT 31 for 6 yards (N.Asomugha).,0,0,2012 -20121007_PHI@PIT,2,41,41,PIT,PHI,2,4,69,(11:41) B.Roethlisberger pass short right to R.Mendenhall to PIT 36 for 5 yards (N.Allen).,0,0,2012 -20121007_PHI@PIT,2,40,58,PIT,PHI,1,10,64,(10:58) (Shotgun) I.Redman up the middle to PIT 40 for 4 yards (N.Allen).,0,0,2012 -20121007_PHI@PIT,2,40,13,PIT,PHI,2,6,60,(10:13) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 49 for 9 yards (D.Rodgers-Cromartie).,0,0,2012 -20121007_PHI@PIT,2,39,33,PIT,PHI,1,10,51,(9:33) (Shotgun) B.Roethlisberger right guard to PHI 46 for 5 yards (M.Kendricks).,0,0,2012 -20121007_PHI@PIT,2,38,58,PIT,PHI,2,5,46,(8:58) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to PHI 35 for 11 yards (N.Asomugha).,0,0,2012 -20121007_PHI@PIT,2,38,12,PIT,PHI,1,10,35,(8:12) (Shotgun) B.Roethlisberger pass incomplete short middle to E.Sanders (N.Allen).,0,0,2012 -20121007_PHI@PIT,2,38,5,PIT,PHI,2,10,35,(8:05) (Shotgun) B.Roethlisberger scrambles up the middle to PHI 26 for 9 yards (D.Ryans).,0,0,2012 -20121007_PHI@PIT,2,37,17,PIT,PHI,3,1,26,(7:17) I.Redman up the middle to PHI 25 for 1 yard (D.Ryans).,0,0,2012 -20121007_PHI@PIT,2,36,33,PIT,PHI,1,10,25,(6:33) B.Roethlisberger pass short left to M.Wallace to PHI 17 for 8 yards (D.Rodgers-Cromartie).,0,0,2012 -20121007_PHI@PIT,2,35,55,PIT,PHI,2,2,17,(5:55) R.Mendenhall up the middle to PHI 13 for 4 yards (J.Chaney).,0,0,2012 -20121007_PHI@PIT,2,35,1,PIT,PHI,1,10,13,(5:01) (Shotgun) R.Mendenhall right end for 13 yards TOUCHDOWN. From lateral by #7 Roethlisberger.,0,0,2012 -20121007_PHI@PIT,2,35,1,PIT,PHI,,,13,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121007_PHI@PIT,2,35,1,PIT,PHI,,,13,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,7,0,2012 -20121007_PHI@PIT,2,35,1,PHI,PIT,1,10,80,(5:01) L.McCoy right guard to PHI 24 for 4 yards (J.Harrison).,0,7,2012 -20121007_PHI@PIT,2,34,27,PHI,PIT,2,6,76,(4:27) (No Huddle Shotgun) M.Vick pass short right to D.Jackson to PHI 49 for 25 yards (K.Lewis). FUMBLES (K.Lewis) and recovers at PHI 47. D.Jackson to PHI 47 for no gain (K.Lewis).,0,7,2012 -20121007_PHI@PIT,2,33,53,PHI,PIT,1,10,53,(3:53) M.Vick pass short middle to L.McCoy to PHI 45 for -2 yards (J.Worilds).,0,7,2012 -20121007_PHI@PIT,2,33,17,PHI,PIT,2,12,55,(3:17) (Shotgun) M.Vick pass incomplete deep right to J.Maclin. Coverage by #24 Taylor Pressure by #94 Timmons.,0,7,2012 -20121007_PHI@PIT,2,33,9,PHI,PIT,3,12,55,(3:09) (Shotgun) M.Vick sacked at PHI 40 for -5 yards (J.Worilds).,0,7,2012 -20121007_PHI@PIT,2,32,47,PHI,PIT,4,17,60,(2:47) (Punt formation) M.McBriar punts 39 yards to PIT 21 Center-J.Dorenbos downed by PHI-B.Hughes.,0,7,2012 -20121007_PHI@PIT,2,32,34,PIT,PHI,1,10,79,(2:34) (Shotgun) B.Roethlisberger pass short right to C.Rainey to PIT 19 for -2 yards (N.Allen). PENALTY on PHI-N.Asomugha Defensive Holding 5 yards enforced at PIT 21 - No Play.,7,0,2012 -20121007_PHI@PIT,2,32,7,PIT,PHI,1,10,74,(2:07) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 41 for 15 yards (K.Coleman; D.Ryans).,7,0,2012 -20121007_PHI@PIT,2,32,0,PIT,PHI,1,10,59,(2:00) (Shotgun) B.Roethlisberger pass incomplete deep right to E.Sanders [D.Ryans]. Pressure by #59 Ryans.,7,0,2012 -20121007_PHI@PIT,2,31,50,PIT,PHI,2,10,59,(1:50) (Shotgun) B.Roethlisberger pass short right to E.Sanders to PIT 44 for 3 yards (N.Asomugha).,7,0,2012 -20121007_PHI@PIT,2,31,44,PIT,PHI,3,7,56,(1:44) (Shotgun) B.Roethlisberger pass short middle to A.Brown to PHI 45 for 11 yards (D.Rodgers-Cromartie).,7,0,2012 -20121007_PHI@PIT,2,31,9,PIT,PHI,1,10,45,(1:09) (Shotgun) B.Roethlisberger pass short left to E.Sanders to PHI 33 for 12 yards (B.Boykin).,7,0,2012 -20121007_PHI@PIT,2,31,4,PIT,PHI,1,10,33,(1:04) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown. Coverage by #24 Asomugha.,7,0,2012 -20121007_PHI@PIT,2,30,57,PIT,PHI,2,10,33,(:57) (Shotgun) B.Roethlisberger pass short left to C.Rainey to PHI 27 for 6 yards (D.Landri).,7,0,2012 -20121007_PHI@PIT,2,30,49,PIT,PHI,3,4,27,(:49) (Shotgun) B.Roethlisberger pass short right to A.Brown to PHI 9 for 18 yards (K.Coleman).,7,0,2012 -20121007_PHI@PIT,2,30,24,PIT,PHI,1,9,9,(:24) B.Roethlisberger spiked the ball to stop the clock.,7,0,2012 -20121007_PHI@PIT,2,30,23,PIT,PHI,2,9,9,(:23) B.Roethlisberger pass short left to J.Cotchery to PHI 2 for 7 yards (D.Ryans).,7,0,2012 -20121007_PHI@PIT,2,30,12,PIT,PHI,3,2,2,(:12) (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace (J.Babin).,7,0,2012 -20121007_PHI@PIT,2,30,9,PIT,PHI,4,2,2,(:09) (Field Goal formation) S.Suisham 20 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,7,0,2012 -20121007_PHI@PIT,2,30,9,PIT,PHI,,,2,S.Suisham kicks 59 yards from PIT 35 to PHI 6. B.Boykin ran ob at PHI 31 for 25 yards (Cu.Brown).,10,0,2012 -20121007_PHI@PIT,3,30,0,PHI,PIT,,,2,A.Henery kicks 70 yards from PHI 35 to PIT -5. C.Rainey to PIT 8 for 13 yards (C.Anderson).,0,10,2012 -20121007_PHI@PIT,3,29,56,PIT,PHI,1,10,92,(14:56) R.Mendenhall left guard to PIT 13 for 5 yards (K.Coleman).,10,0,2012 -20121007_PHI@PIT,3,29,20,PIT,PHI,2,5,87,(14:20) R.Mendenhall left tackle to PIT 30 for 17 yards. FUMBLES ball out of bounds at PIT 30.,10,0,2012 -20121007_PHI@PIT,3,28,43,PIT,PHI,1,10,70,(13:43) I.Redman left guard to PIT 34 for 4 yards (T.Cole).,10,0,2012 -20121007_PHI@PIT,3,28,2,PIT,PHI,2,6,66,(13:02) B.Roethlisberger pass incomplete short right to M.Wallace. Coverage by # 51 Chaney.,10,0,2012 -20121007_PHI@PIT,3,27,57,PIT,PHI,3,6,66,(12:57) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 40 for 6 yards (N.Asomugha).,10,0,2012 -20121007_PHI@PIT,3,27,22,PIT,PHI,1,10,60,(12:22) I.Redman right guard to PIT 42 for 2 yards (D.Ryans M.Kendricks).,10,0,2012 -20121007_PHI@PIT,3,26,38,PIT,PHI,2,8,58,(11:38) I.Redman up the middle to PIT 46 for 4 yards (J.Chaney C.Thornton).,10,0,2012 -20121007_PHI@PIT,3,25,54,PIT,PHI,3,4,54,(10:54) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace. Coverage by #23 Rodgers-Cramartie.,10,0,2012 -20121007_PHI@PIT,3,25,46,PIT,PHI,4,4,54,(10:46) (Punt formation) D.Butler punts 45 yards to PHI 9 Center-G.Warren. D.Johnson to PHI 11 for 2 yards (R.Mundy). PENALTY on PIT-S.Sylvester Offensive Holding 10 yards enforced at PIT 46 - No Play.,10,0,2012 -20121007_PHI@PIT,3,25,33,PIT,PHI,4,14,64,(10:33) (Punt formation) D.Butler punts 57 yards to PHI 7 Center-G.Warren. D.Johnson to PHI 20 for 13 yards (Cu.Brown).,10,0,2012 -20121007_PHI@PIT,3,25,22,PHI,PIT,1,10,80,(10:22) M.Vick pass short right to B.Celek to PHI 25 for 5 yards (L.Foote L.Timmons). PENALTY on PIT-R.Clark Unnecessary Roughness 15 yards enforced at PHI 25.,0,10,2012 -20121007_PHI@PIT,3,25,3,PHI,PIT,1,10,60,(10:03) M.Vick scrambles left end pushed ob at PHI 45 for 5 yards (L.Timmons).,0,10,2012 -20121007_PHI@PIT,3,24,37,PHI,PIT,2,5,55,(9:37) L.McCoy right tackle to PHI 48 for 3 yards (J.Worilds).,0,10,2012 -20121007_PHI@PIT,3,23,56,PHI,PIT,3,2,52,(8:56) L.McCoy right guard to PIT 49 for 3 yards (K.Lewis).,0,10,2012 -20121007_PHI@PIT,3,23,16,PHI,PIT,1,10,49,(8:16) (Shotgun) M.Vick sacked at PHI 48 for -3 yards (S.McLendon). FUMBLES (S.McLendon) recovered by PHI-D.Watkins at PHI 49. D.Watkins to PHI 49 for no gain (L.Foote).,0,10,2012 -20121007_PHI@PIT,3,22,40,PHI,PIT,2,12,51,(7:40) M.Vick pass short left to J.Maclin to PIT 40 for 11 yards (R.Mundy). PENALTY on PIT-R.Mundy Personal Foul 15 yards enforced at PIT 40.,0,10,2012 -20121007_PHI@PIT,3,22,12,PHI,PIT,1,10,25,(7:12) (Shotgun) M.Vick pass short middle to J.Avant to PIT 15 for 10 yards (R.Mundy) [J.Worilds].,0,10,2012 -20121007_PHI@PIT,3,21,40,PHI,PIT,1,10,15,(6:40) (Shotgun) M.Vick pass short right to L.McCoy for 15 yards TOUCHDOWN.,0,10,2012 -20121007_PHI@PIT,3,21,40,PHI,PIT,,,15,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,10,2012 -20121007_PHI@PIT,3,21,40,PHI,PIT,,,15,A.Henery kicks 69 yards from PHI 35 to PIT -4. C.Rainey pushed ob at PIT 40 for 44 yards (B.Boykin).,7,10,2012 -20121007_PHI@PIT,3,21,23,PIT,PHI,1,10,60,(6:23) R.Mendenhall up the middle to PIT 43 for 3 yards (N.Allen B.Graham).,10,7,2012 -20121007_PHI@PIT,3,20,44,PIT,PHI,2,7,57,(5:44) B.Roethlisberger pass incomplete short left to R.Mendenhall (D.Landri).,10,7,2012 -20121007_PHI@PIT,3,20,39,PIT,PHI,3,7,57,(5:39) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown. Coverage by #29 Allen.,10,7,2012 -20121007_PHI@PIT,3,20,32,PIT,PHI,4,7,57,(5:32) (Punt formation) D.Butler punts 44 yards to PHI 13 Center-G.Warren downed by PIT-J.Worilds.,10,7,2012 -20121007_PHI@PIT,3,20,21,PHI,PIT,1,10,87,(5:21) M.Vick pass short left to L.McCoy to PHI 18 for 5 yards (R.Mundy).,7,10,2012 -20121007_PHI@PIT,3,19,41,PHI,PIT,2,5,82,(4:41) (Shotgun) M.Vick pass incomplete short left to D.Jackson [J.Harrison]. Pressure by #92 Harrison.,7,10,2012 -20121007_PHI@PIT,3,19,36,PHI,PIT,3,5,82,(4:36) (Shotgun) M.Vick pass incomplete short left to D.Jackson. Pressure by #94 Timmons #96 Hood.,7,10,2012 -20121007_PHI@PIT,3,19,29,PHI,PIT,4,5,82,(4:29) (Punt formation) M.McBriar punts 56 yards to PIT 26 Center-J.Dorenbos. A.Brown to PIT 33 for 7 yards (B.Hughes).,7,10,2012 -20121007_PHI@PIT,3,19,16,PIT,PHI,1,10,67,(4:16) R.Mendenhall right guard to PIT 40 for 7 yards (N.Allen).,10,7,2012 -20121007_PHI@PIT,3,18,39,PIT,PHI,2,3,60,(3:39) R.Mendenhall up the middle to PIT 49 for 9 yards (D.Landri).,10,7,2012 -20121007_PHI@PIT,3,18,1,PIT,PHI,1,10,51,(3:01) R.Mendenhall up the middle to PHI 47 for 4 yards (K.Coleman).,10,7,2012 -20121007_PHI@PIT,3,17,16,PIT,PHI,2,6,47,(2:16) I.Redman up the middle to PHI 34 for 13 yards (N.Asomugha).,10,7,2012 -20121007_PHI@PIT,3,16,32,PIT,PHI,1,10,34,(1:32) B.Roethlisberger pass short right to A.Brown ran ob at PHI 20 for 14 yards.,10,7,2012 -20121007_PHI@PIT,3,16,5,PIT,PHI,1,10,20,(1:05) I.Redman left guard to PHI 20 for no gain (C.Matthews; D.Ryans).,10,7,2012 -20121007_PHI@PIT,3,15,22,PIT,PHI,2,10,20,(:22) I.Redman right guard to PHI 16 for 4 yards (C.Matthews).,10,7,2012 -20121007_PHI@PIT,4,15,0,PIT,PHI,3,6,16,(15:00) (Shotgun) B.Roethlisberger pass incomplete short right to H.Miller.,10,7,2012 -20121007_PHI@PIT,4,14,55,PIT,PHI,4,6,16,(14:55) (Field Goal formation) S.Suisham 34 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,7,2012 -20121007_PHI@PIT,4,14,55,PIT,PHI,,,16,S.Suisham kicks 63 yards from PIT 35 to PHI 2. B.Boykin to PHI 21 for 19 yards (R.Mundy).,13,7,2012 -20121007_PHI@PIT,4,14,41,PHI,PIT,1,10,79,(14:41) L.McCoy right tackle to PHI 26 for 5 yards (L.Foote).,7,13,2012 -20121007_PHI@PIT,4,14,13,PHI,PIT,2,5,74,(14:13) M.Vick pass short left to B.Celek to PHI 28 for 2 yards (J.Harrison L.Foote).,7,13,2012 -20121007_PHI@PIT,4,0,**,PHI,PIT,3,3,72,*** play under review ***,7,13,2012 -20121007_PHI@PIT,4,13,11,PHI,PIT,4,1,70,(13:11) L.McCoy up the middle to PHI 32 for 2 yards (K.Lewis).,7,13,2012 -20121007_PHI@PIT,4,12,30,PHI,PIT,1,10,68,(12:30) (Shotgun) M.Vick pass short right to J.Avant to PHI 44 for 12 yards (L.Timmons).,7,13,2012 -20121007_PHI@PIT,4,11,57,PHI,PIT,1,10,56,(11:57) L.McCoy right tackle to PHI 46 for 2 yards (L.Timmons).,7,13,2012 -20121007_PHI@PIT,4,11,28,PHI,PIT,2,8,54,(11:28) M.Vick pass short left to J.Maclin to PIT 50 for 4 yards (I.Taylor L.Foote).,7,13,2012 -20121007_PHI@PIT,4,10,45,PHI,PIT,3,4,50,(10:45) L.McCoy right end pushed ob at PIT 47 for 3 yards (E.Hood).,7,13,2012 -20121007_PHI@PIT,4,10,2,PHI,PIT,4,1,47,(10:02) L.McCoy right guard to PIT 45 for 2 yards (L.Timmons).,7,13,2012 -20121007_PHI@PIT,4,9,23,PHI,PIT,1,10,45,(9:23) (Shotgun) M.Vick pass short right to J.Maclin to PIT 40 for 5 yards (K.Lewis) [L.Timmons].,7,13,2012 -20121007_PHI@PIT,4,8,50,PHI,PIT,2,5,40,(8:50) (No Huddle) L.McCoy left tackle to PIT 34 for 6 yards (R.Clark).,7,13,2012 -20121007_PHI@PIT,4,8,11,PHI,PIT,1,10,34,(8:11) M.Vick pass incomplete short right to D.Jackson. Coverage by #24 Taylor Pressure by #92 Harrison.,7,13,2012 -20121007_PHI@PIT,4,8,5,PHI,PIT,2,10,34,(8:05) M.Vick pass incomplete short middle to B.Celek (J.Worilds) [J.Harrison].,7,13,2012 -20121007_PHI@PIT,4,8,0,PHI,PIT,3,10,34,(8:00) (Shotgun) M.Vick pass deep left to D.Jackson ran ob at PIT 10 for 24 yards.,7,13,2012 -20121007_PHI@PIT,4,7,26,PHI,PIT,1,10,10,(7:26) (Shotgun) M.Vick pass incomplete short left to L.McCoy. Coverage by #94 Timmons.,7,13,2012 -20121007_PHI@PIT,4,7,21,PHI,PIT,2,10,10,(7:21) M.Vick pass short middle to C.Harbor to PIT 2 for 8 yards (L.Foote; R.Mundy).,7,13,2012 -20121007_PHI@PIT,4,6,38,PHI,PIT,3,2,2,(6:38) (Shotgun) M.Vick pass short left to B.Celek for 2 yards TOUCHDOWN.,7,13,2012 -20121007_PHI@PIT,4,6,38,PHI,PIT,,,2,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,13,2012 -20121007_PHI@PIT,4,6,38,PHI,PIT,,,2,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,14,13,2012 -20121007_PHI@PIT,4,6,33,PIT,PHI,1,10,80,(6:33) C.Rainey right guard to PIT 20 for no gain (N.Allen T.Cole). PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 20 - No Play.,13,14,2012 -20121007_PHI@PIT,4,6,10,PIT,PHI,1,20,90,(6:10) B.Roethlisberger pass short left to D.Paulson to PIT 18 for 8 yards (N.Allen D.Ryans).,13,14,2012 -20121007_PHI@PIT,4,5,25,PIT,PHI,2,12,82,(5:25) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,13,14,2012 -20121007_PHI@PIT,4,5,19,PIT,PHI,3,12,82,(5:19) (Shotgun) B.Roethlisberger pass short middle to A.Brown to PIT 38 for 20 yards (B.Boykin).,13,14,2012 -20121007_PHI@PIT,4,4,35,PIT,PHI,1,10,62,(4:35) R.Mendenhall right guard to PIT 41 for 3 yards (P.Hunt N.Asomugha).,13,14,2012 -20121007_PHI@PIT,4,3,57,PIT,PHI,2,7,59,(3:57) B.Roethlisberger pass short right to R.Mendenhall to PHI 44 for 15 yards (M.Kendricks).,13,14,2012 -20121007_PHI@PIT,4,3,10,PIT,PHI,1,10,44,(3:10) I.Redman up the middle to PHI 40 for 4 yards (J.Chaney D.Ryans).,13,14,2012 -20121007_PHI@PIT,4,2,29,PIT,PHI,2,6,40,(2:29) I.Redman right guard to PHI 38 for 2 yards (F.Cox).,13,14,2012 -20121007_PHI@PIT,4,2,0,PIT,PHI,3,4,38,(2:00) (Shotgun) B.Roethlisberger pass short right to E.Sanders to PHI 31 for 7 yards (B.Boykin).,13,14,2012 -20121007_PHI@PIT,4,1,53,PIT,PHI,1,10,31,(1:53) R.Mendenhall right tackle pushed ob at PHI 23 for 8 yards (N.Asomugha).,13,14,2012 -20121007_PHI@PIT,4,1,47,PIT,PHI,2,2,23,(1:47) R.Mendenhall left guard to PHI 20 for 3 yards (N.Allen).,13,14,2012 -20121007_PHI@PIT,4,1,10,PIT,PHI,1,10,20,(1:10) R.Mendenhall right tackle to PHI 18 for 2 yards (D.Ryans).,13,14,2012 -20121007_PHI@PIT,4,0,33,PIT,PHI,2,8,18,(:33) I.Redman up the middle to PHI 18 for no gain (C.Thornton; N.Allen).,13,14,2012 -20121007_PHI@PIT,4,0,14,PIT,PHI,3,8,18,(:14) I.Redman up the middle to PHI 16 for 2 yards (K.Coleman D.Ryans).,13,14,2012 -20121007_PHI@PIT,4,0,3,PIT,PHI,4,6,16,(:03) (Field Goal formation) S.Suisham 34 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,13,14,2012 -20121007_PHI@PIT,4,0,3,PIT,PHI,,,16,                      ,16,14,2012 -20121007_ATL@WAS,1,59,50,ATL,WAS,1,10,92,(14:50) M.Turner right guard to ATL 9 for 1 yard (S.Bowen).,0,0,2012 -20121007_ATL@WAS,1,59,13,ATL,WAS,2,9,91,(14:13) M.Ryan pass short left to J.Jones to ATL 14 for 5 yards (R.Jackson J.Wilson).,0,0,2012 -20121007_ATL@WAS,1,58,33,ATL,WAS,3,4,86,(13:33) (Shotgun) M.Ryan pass short middle to J.Jones to ATL 20 for 6 yards (C.Wilson D.Hall).,0,0,2012 -20121007_ATL@WAS,1,57,48,ATL,WAS,1,10,80,(12:48) (No Huddle) M.Ryan pass short middle to T.Gonzalez to ATL 23 for 3 yards (P.Riley; J.Jenkins).,0,0,2012 -20121007_ATL@WAS,1,57,14,ATL,WAS,2,7,77,(12:14) (No Huddle) M.Ryan pass short right to T.Gonzalez pushed ob at ATL 33 for 10 yards (D.Hall).,0,0,2012 -20121007_ATL@WAS,1,56,41,ATL,WAS,1,10,67,(11:41) (No Huddle) M.Turner left end to ATL 38 for 5 yards (R.Crawford; L.Fletcher).,0,0,2012 -20121007_ATL@WAS,1,56,6,ATL,WAS,2,5,62,(11:06) (No Huddle Shotgun) M.Ryan pass incomplete short left to M.Turner.,0,0,2012 -20121007_ATL@WAS,1,56,2,ATL,WAS,3,5,62,(11:02) (No Huddle Shotgun) M.Ryan pass short right to R.White pushed ob at 50 for 12 yards (R.Crawford).,0,0,2012 -20121007_ATL@WAS,1,55,38,ATL,WAS,1,10,50,(10:38) (No Huddle) M.Ryan pass incomplete deep left to J.Jones (J.Wilson).,0,0,2012 -20121007_ATL@WAS,1,55,31,ATL,WAS,2,10,50,(10:31) (No Huddle) Jz. Rodgers right tackle to WAS 48 for 2 yards (L.Fletcher P.Riley).,0,0,2012 -20121007_ATL@WAS,1,54,54,ATL,WAS,3,8,48,(9:54) (No Huddle Shotgun) PENALTY on ATL-T.Gonzalez False Start 5 yards enforced at WAS 48 - No Play.,0,0,2012 -20121007_ATL@WAS,1,54,29,ATL,WAS,3,13,53,(9:29) (Shotgun) M.Ryan pass incomplete deep left to H.Douglas.,0,0,2012 -20121007_ATL@WAS,1,54,23,ATL,WAS,4,13,53,(9:23) (Punt formation) M.Bosher punts 40 yards to WAS 13 Center-J.Harris. B.Banks to WAS 20 for 7 yards (C.Hope).,0,0,2012 -20121007_ATL@WAS,1,54,10,WAS,ATL,1,10,80,(9:10) R.Griffin pass incomplete short left to P.Garcon (J.Abraham).,0,0,2012 -20121007_ATL@WAS,1,54,7,WAS,ATL,2,10,80,(9:07) A.Morris left end to WAS 31 for 11 yards (W.Moore).,0,0,2012 -20121007_ATL@WAS,1,53,25,WAS,ATL,1,10,69,(8:25) A.Morris left end to WAS 47 for 16 yards (T.DeCoud).,0,0,2012 -20121007_ATL@WAS,1,52,44,WAS,ATL,1,10,53,(7:44) R.Griffin sacked at WAS 40 for -7 yards (sack split by D.Robinson and J.Babineaux).,0,0,2012 -20121007_ATL@WAS,1,52,12,WAS,ATL,2,17,60,(7:12) (Shotgun) R.Griffin pass short middle to A.Robinson to 50 for 10 yards (S.Weatherspoon).,0,0,2012 -20121007_ATL@WAS,1,51,37,WAS,ATL,3,7,50,(6:37) (Shotgun) R.Griffin pass incomplete short middle to L.Paulsen.,0,0,2012 -20121007_ATL@WAS,1,51,32,WAS,ATL,4,7,50,(6:32) S.Rocca punts 35 yards to ATL 15 Center-J.Snow fair catch by D.Franks.,0,0,2012 -20121007_ATL@WAS,1,51,24,ATL,WAS,1,10,85,(6:24) M.Turner left end to ATL 18 for 3 yards (P.Riley; J.Jenkins).,0,0,2012 -20121007_ATL@WAS,1,50,40,ATL,WAS,2,7,82,(5:40) (No Huddle Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez.,0,0,2012 -20121007_ATL@WAS,1,50,35,ATL,WAS,3,7,82,(5:35) (No Huddle Shotgun) M.Ryan pass incomplete short right to R.White.,0,0,2012 -20121007_ATL@WAS,1,50,29,ATL,WAS,4,7,82,(5:29) M.Bosher punts 63 yards to WAS 19 Center-J.Harris. B.Banks to WAS 21 for 2 yards (C.Owens).,0,0,2012 -20121007_ATL@WAS,1,50,16,WAS,ATL,1,10,79,(5:16) L.Hankerson left end to WAS 23 for 2 yards (S.Nicholas). End around,0,0,2012 -20121007_ATL@WAS,1,49,35,WAS,ATL,2,8,77,(4:35) (Shotgun) A.Morris right tackle to WAS 24 for 1 yard (S.Weatherspoon).,0,0,2012 -20121007_ATL@WAS,1,49,3,WAS,ATL,3,7,76,(4:03) (Shotgun) R.Griffin pass incomplete short middle to S.Moss [S.Weatherspoon].,0,0,2012 -20121007_ATL@WAS,1,48,57,WAS,ATL,4,7,76,(3:57) S.Rocca punts 56 yards to ATL 20 Center-J.Snow. D.Franks to ATL 20 for no gain (L.Alexander; P.Riley).,0,0,2012 -20121007_ATL@WAS,1,48,46,ATL,WAS,1,10,80,(3:46) M.Ryan pass short right to T.Gonzalez to ATL 29 for 9 yards (R.Kerrigan).,0,0,2012 -20121007_ATL@WAS,1,48,6,ATL,WAS,2,1,71,(3:06) M.Johnson and J.Hawley reported in as eligible. M.Turner left end to ATL 28 for -1 yards (D.Hall L.Fletcher).,0,0,2012 -20121007_ATL@WAS,1,47,23,ATL,WAS,3,2,72,(2:23) (Shotgun) M.Ryan pass short middle to T.Gonzalez to ATL 34 for 6 yards (J.Wilson).,0,0,2012 -20121007_ATL@WAS,1,46,46,ATL,WAS,1,10,66,(1:46) M.Ryan pass short right to T.Gallarda pushed ob at ATL 41 for 7 yards (R.Kerrigan).,0,0,2012 -20121007_ATL@WAS,1,46,11,ATL,WAS,2,3,59,(1:11) M.Ryan pass incomplete short right to M.Turner.,0,0,2012 -20121007_ATL@WAS,1,46,4,ATL,WAS,3,3,59,(1:04) (Shotgun) M.Ryan pass short left to J.Jones to ATL 43 for 2 yards (J.Wilson).,0,0,2012 -20121007_ATL@WAS,1,45,27,ATL,WAS,4,1,57,(:27) M.Bosher punts 57 yards to end zone Center-J.Harris Touchback.,0,0,2012 -20121007_ATL@WAS,1,45,7,WAS,ATL,1,10,80,(:07) R.Griffin pass short left to P.Garcon to WAS 20 for no gain (S.Weatherspoon).,0,0,2012 -20121007_ATL@WAS,2,45,0,WAS,ATL,2,10,80,(15:00) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 34 for 14 yards (W.Moore).,0,0,2012 -20121007_ATL@WAS,2,44,28,WAS,ATL,1,10,66,(14:28) A.Morris left guard to WAS 47 for 13 yards (D.Robinson; W.Moore).,0,0,2012 -20121007_ATL@WAS,2,43,52,WAS,ATL,1,10,53,(13:52) (Shotgun) A.Morris right end to WAS 49 for 2 yards (S.Weatherspoon S.Nicholas).,0,0,2012 -20121007_ATL@WAS,2,43,13,WAS,ATL,2,8,51,(13:13) (Shotgun) R.Griffin pass incomplete short middle to P.Garcon.,0,0,2012 -20121007_ATL@WAS,2,43,9,WAS,ATL,3,8,51,(13:09) (Shotgun) R.Griffin pass short right to F.Davis to ATL 46 for 5 yards (S.Weatherspoon).,0,0,2012 -20121007_ATL@WAS,2,42,35,WAS,ATL,4,3,46,(12:35) S.Rocca punts 35 yards to ATL 11 Center-J.Snow fair catch by D.Franks.,0,0,2012 -20121007_ATL@WAS,2,42,27,ATL,WAS,1,10,89,(12:27) M.Ryan pass short middle to T.Gonzalez to ATL 22 for 11 yards (D.Hall; L.Fletcher).,0,0,2012 -20121007_ATL@WAS,2,41,48,ATL,WAS,1,10,78,(11:48) J.Hawley reported in as eligible. M.Ryan pass incomplete short middle to J.Hawley (P.Riley).,0,0,2012 -20121007_ATL@WAS,2,41,40,ATL,WAS,2,10,78,(11:40) M.Ryan pass short right to T.Gonzalez to ATL 33 for 11 yards (J.Jenkins; D.Hall).,0,0,2012 -20121007_ATL@WAS,2,41,3,ATL,WAS,1,10,67,(11:03) M.Johnson reported in as eligible. M.Turner left end to ATL 38 for 5 yards (L.Fletcher).,0,0,2012 -20121007_ATL@WAS,2,40,46,ATL,WAS,2,5,62,(10:46) M.Ryan pass incomplete short left to T.Gallarda. Penalty on ATL-G.Reynolds Ineligible Downfield Pass declined.,0,0,2012 -20121007_ATL@WAS,2,40,25,ATL,WAS,3,5,62,(10:25) (Shotgun) M.Ryan pass short middle intended for H.Douglas INTERCEPTED by R.Kerrigan at ATL 28. R.Kerrigan for 28 yards TOUCHDOWN.,0,0,2012 -20121007_ATL@WAS,2,40,25,WAS,ATL,,,62,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,0,0,2012 -20121007_ATL@WAS,2,40,25,WAS,ATL,,,62,B.Cundiff kicks 63 yards from WAS 35 to ATL 2. Jz. Rodgers to ATL 20 for 18 yards (L.Alexander).,7,0,2012 -20121007_ATL@WAS,2,40,5,ATL,WAS,1,10,80,(10:05) M.Ryan pass short left to J.Jones pushed ob at ATL 32 for 12 yards (J.Wilson).,0,7,2012 -20121007_ATL@WAS,2,39,42,ATL,WAS,1,10,68,(9:42) M.Ryan pass short left to J.Jones to ATL 37 for 5 yards (R.Jackson).,0,7,2012 -20121007_ATL@WAS,2,39,2,ATL,WAS,2,5,63,(9:02) M.Johnson and J.Hawley reported in as eligible. M.Turner right end to ATL 41 for 4 yards (L.Fletcher).,0,7,2012 -20121007_ATL@WAS,2,38,24,ATL,WAS,3,1,59,(8:24) H.Douglas left end to ATL 46 for 5 yards (B.Cofield). End around,0,7,2012 -20121007_ATL@WAS,2,37,47,ATL,WAS,1,10,54,(7:47) M.Johnson reported in as eligible. J.Jones left end to ATL 47 for 1 yard (P.Riley; B.Cofield). End around,0,7,2012 -20121007_ATL@WAS,2,37,0,ATL,WAS,2,9,53,(7:00) (Shotgun) M.Turner up the middle to WAS 45 for 8 yards (L.Fletcher; R.Crawford).,0,7,2012 -20121007_ATL@WAS,2,36,17,ATL,WAS,3,1,45,(6:17) Jz. Rodgers left guard to WAS 44 for 1 yard (P.Riley; L.Fletcher).,0,7,2012 -20121007_ATL@WAS,2,35,36,ATL,WAS,1,10,44,(5:36) M.Ryan pass incomplete deep middle to J.Jones.,0,7,2012 -20121007_ATL@WAS,2,35,30,ATL,WAS,2,10,44,(5:30) M.Ryan pass short right to T.Gonzalez pushed ob at WAS 30 for 14 yards (P.Riley).,0,7,2012 -20121007_ATL@WAS,2,35,0,WAS,ATL,1,10,32,(5:00) M.Johnson reported in as eligible. M.Ryan FUMBLES (Aborted) at WAS 30 RECOVERED by WAS-P.Riley at WAS 32. P.Riley to WAS 32 for no gain (G.Reynolds).,7,0,2012 -20121007_ATL@WAS,2,34,55,WAS,ATL,1,10,68,(4:55) (Shotgun) R.Griffin pass short left to A.Morris to ATL 48 for 20 yards (S.Weatherspoon W.Moore) [R.Edwards].,7,0,2012 -20121007_ATL@WAS,2,34,14,WAS,ATL,1,10,48,(4:14) A.Morris left end pushed ob at ATL 19 for 29 yards (W.Moore).,7,0,2012 -20121007_ATL@WAS,2,33,45,WAS,ATL,1,10,19,(3:45) R.Grant right guard to ATL 14 for 5 yards (A.Dent; S.Weatherspoon).,7,0,2012 -20121007_ATL@WAS,2,33,8,WAS,ATL,2,5,14,(3:08) (Shotgun) R.Griffin pass short left to L.Hankerson to ATL 11 for 3 yards (R.McClain).,7,0,2012 -20121007_ATL@WAS,2,32,30,WAS,ATL,3,2,11,(2:30) (Shotgun) A.Morris right end to ATL 13 for -2 yards (K.Biermann). Penalty on WAS-T.Williams Offensive Holding declined.,7,0,2012 -20121007_ATL@WAS,2,32,21,WAS,ATL,4,4,13,(2:21) B.Cundiff 31 yard field goal is No Good Wide Right Center-J.Snow Holder-S.Rocca.,7,0,2012 -20121007_ATL@WAS,2,32,16,ATL,WAS,1,10,79,(2:16) (Shotgun) M.Ryan pass short middle to R.White to ATL 41 for 20 yards (J.Wilson; L.Fletcher).,0,7,2012 -20121007_ATL@WAS,2,32,0,ATL,WAS,1,10,59,(2:00) (Shotgun) M.Ryan pass short middle to T.Gonzalez to ATL 45 for 4 yards (L.Fletcher). PENALTY on WAS-L.Fletcher Defensive Holding 5 yards enforced at ATL 41 - No Play.,0,7,2012 -20121007_ATL@WAS,2,31,53,ATL,WAS,1,10,54,(1:53) (Shotgun) M.Ryan pass short left to H.Douglas ran ob at WAS 39 for 15 yards.,0,7,2012 -20121007_ATL@WAS,2,31,48,ATL,WAS,1,10,39,(1:48) (Shotgun) M.Ryan pass short middle to J.Jones to WAS 34 for 5 yards (Mad.Williams).,0,7,2012 -20121007_ATL@WAS,2,31,26,ATL,WAS,2,5,34,(1:26) (No Huddle Shotgun) M.Ryan pass short left to J.Jones to WAS 29 for 5 yards (J.Wilson Mad.Williams) [D.Jones].,0,7,2012 -20121007_ATL@WAS,2,30,57,ATL,WAS,1,10,29,(:57) (No Huddle Shotgun) M.Ryan pass incomplete deep left to J.Jones (Mad.Williams).,0,7,2012 -20121007_ATL@WAS,2,30,52,ATL,WAS,2,10,29,(:52) (Shotgun) M.Ryan pass short right to J.Jones to WAS 22 for 7 yards (D.Hall).,0,7,2012 -20121007_ATL@WAS,2,30,44,ATL,WAS,3,3,22,(:44) (Shotgun) M.Ryan pass deep middle to T.Gonzalez to WAS 1 for 21 yards (D.Gomes Mad.Williams). The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,7,2012 -20121007_ATL@WAS,2,30,35,ATL,WAS,1,1,1,(:35) J.Hawley and M.Johnson reported in as eligible. PENALTY on WAS-B.Cofield Encroachment 0 yards enforced at WAS 1 - No Play.,0,7,2012 -20121007_ATL@WAS,2,30,30,ATL,WAS,1,1,1,(:30) M.Ryan pass short right to T.Gonzalez for 1 yard TOUCHDOWN. Penalty on WAS-B.Cofield Defensive Holding declined.,0,7,2012 -20121007_ATL@WAS,2,30,30,ATL,WAS,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,7,2012 -20121007_ATL@WAS,2,30,30,ATL,WAS,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,7,2012 -20121007_ATL@WAS,2,30,30,WAS,ATL,1,10,80,(:30) A.Morris up the middle to WAS 32 for 12 yards (S.Weatherspoon T.DeCoud).,7,7,2012 -20121007_ATL@WAS,2,30,23,WAS,ATL,1,10,68,(:23) (Shotgun) A.Morris right tackle to WAS 36 for 4 yards (S.Nicholas S.Weatherspoon).,7,7,2012 -20121007_ATL@WAS,2,30,17,WAS,ATL,2,6,64,(:17) (Shotgun) A.Morris left guard to WAS 36 for no gain (J.Babineaux).,7,7,2012 -20121007_ATL@WAS,3,30,0,ATL,WAS,,,64,M.Bosher kicks 70 yards from ATL 35 to WAS -5. B.Banks to WAS 22 for 27 yards (R.James).,7,7,2012 -20121007_ATL@WAS,3,29,18,WAS,ATL,2,3,71,(14:18) R.Griffin pass short middle to F.Davis to WAS 36 for 7 yards (T.DeCoud).,7,7,2012 -20121007_ATL@WAS,3,28,37,WAS,ATL,1,10,64,(13:37) A.Morris left tackle to WAS 36 for no gain (S.Nicholas).,7,7,2012 -20121007_ATL@WAS,3,27,59,WAS,ATL,2,10,64,(12:59) A.Morris right end to WAS 36 for no gain (K.Biermann J.Babineaux). PENALTY on WAS-A.Robinson Illegal Block Above the Waist 10 yards enforced at WAS 36 - No Play.,7,7,2012 -20121007_ATL@WAS,3,27,36,WAS,ATL,2,20,74,(12:36) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 44 for 18 yards (W.Moore).,7,7,2012 -20121007_ATL@WAS,3,26,54,WAS,ATL,3,2,56,(11:54) A.Morris left tackle to WAS 45 for 1 yard (K.Biermann; C.Mitchell).,7,7,2012 -20121007_ATL@WAS,3,26,16,WAS,ATL,4,1,55,(11:16) S.Rocca punts 53 yards to ATL 2 Center-J.Snow downed by WAS-N.Paul.,7,7,2012 -20121007_ATL@WAS,3,26,9,ATL,WAS,1,10,98,(11:09) J.Snelling up the middle to ATL 4 for 2 yards (R.Kerrigan).,7,7,2012 -20121007_ATL@WAS,3,25,27,ATL,WAS,2,8,96,(10:27) M.Johnson and J.Hawley reported in as eligible. M.Ryan pass incomplete deep left to J.Jones (J.Wilson).,7,7,2012 -20121007_ATL@WAS,3,25,18,ATL,WAS,3,8,96,(10:18) M.Ryan pass short right to T.Gonzalez to ATL 8 for 4 yards (P.Riley).,7,7,2012 -20121007_ATL@WAS,3,24,39,ATL,WAS,4,4,92,(9:39) M.Bosher punts 44 yards to WAS 48 Center-J.Harris. B.Banks pushed ob at ATL 39 for 13 yards (C.Hope).,7,7,2012 -20121007_ATL@WAS,3,24,25,WAS,ATL,1,10,39,(9:25) R.Griffin pass deep middle to P.Garcon to ATL 22 for 17 yards (D.Robinson). FUMBLES (D.Robinson) RECOVERED by ATL-S.Nicholas at ATL 23. S.Nicholas to ATL 23 for no gain (J.Morgan). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. R.Griffin pass incomplete deep middle to P.Garcon (D.Robinson).,7,7,2012 -20121007_ATL@WAS,3,24,21,WAS,ATL,2,10,39,(9:21) (Shotgun) R.Griffin pass short middle to F.Davis to ATL 29 for 10 yards (W.Moore).,7,7,2012 -20121007_ATL@WAS,3,23,52,WAS,ATL,1,10,29,(8:52) R.Griffin scrambles left end pushed ob at ATL 22 for 7 yards (K.Biermann).,7,7,2012 -20121007_ATL@WAS,3,23,23,WAS,ATL,2,3,22,(8:23) A.Morris left end to ATL 9 for 13 yards (J.Babineaux).,7,7,2012 -20121007_ATL@WAS,3,22,38,WAS,ATL,1,9,9,(7:38) (Shotgun) R.Griffin pass short middle to P.Garcon to ATL 5 for 4 yards (D.Robinson).,7,7,2012 -20121007_ATL@WAS,3,22,3,WAS,ATL,2,5,5,(7:03) (Shotgun) Direct snap to A.Morris. A.Morris left guard to ATL 3 for 2 yards (S.Weatherspoon; V.Walker).,7,7,2012 -20121007_ATL@WAS,3,21,22,WAS,ATL,3,3,3,(6:22) (Shotgun) R.Griffin sacked at ATL 5 for -2 yards (S.Weatherspoon). WAS-R.Griffin was injured during the play. His return is Questionable.,7,7,2012 -20121007_ATL@WAS,3,21,0,WAS,ATL,4,5,5,(6:00) B.Cundiff 23 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,7,7,2012 -20121007_ATL@WAS,3,21,0,WAS,ATL,,,5,B.Cundiff kicks 73 yards from WAS 35 to ATL -8. Jz. Rodgers Touchback.,10,7,2012 -20121007_ATL@WAS,3,20,56,ATL,WAS,1,10,80,(5:56) M.Johnson and J.Hawley reported in as eligible. M.Ryan pass incomplete short right to J.Hawley.,7,10,2012 -20121007_ATL@WAS,3,20,50,ATL,WAS,2,10,80,(5:50) (Shotgun) M.Ryan pass incomplete short middle to J.Jones (J.Wilson).,7,10,2012 -20121007_ATL@WAS,3,20,45,ATL,WAS,3,10,80,(5:45) (Shotgun) M.Ryan pass deep right to R.White pushed ob at ATL 37 for 17 yards (D.Hall) [S.Bowen].,7,10,2012 -20121007_ATL@WAS,3,20,22,ATL,WAS,1,10,63,(5:22) M.Turner left end to ATL 42 for 5 yards (L.Fletcher).,7,10,2012 -20121007_ATL@WAS,3,19,41,ATL,WAS,2,5,58,(4:41) M.Johnson and J.Hawley reported in as eligible. M.Turner up the middle to ATL 42 for no gain (J.Jenkins).,7,10,2012 -20121007_ATL@WAS,3,19,2,ATL,WAS,3,5,58,(4:02) (Shotgun) M.Ryan scrambles left end pushed ob at ATL 48 for 6 yards (L.Fletcher).,7,10,2012 -20121007_ATL@WAS,3,18,40,ATL,WAS,1,10,52,(3:40) M.Ryan pass incomplete short middle to Jz. Rodgers.,7,10,2012 -20121007_ATL@WAS,3,18,35,ATL,WAS,2,10,52,(3:35) (Shotgun) M.Ryan pass short right to T.Gonzalez to WAS 45 for 7 yards (L.Fletcher R.Doughty). WAS-K.Golston was injured during the play.,7,10,2012 -20121007_ATL@WAS,3,18,4,ATL,WAS,3,3,45,(3:04) (Shotgun) Jz. Rodgers right guard to WAS 44 for 1 yard (L.Fletcher; P.Riley).,7,10,2012 -20121007_ATL@WAS,3,17,27,ATL,WAS,4,2,44,(2:27) M.Bosher punts 33 yards to WAS 11 Center-J.Harris fair catch by B.Banks.,7,10,2012 -20121007_ATL@WAS,3,17,19,WAS,ATL,1,10,89,(2:19) K.Cousins pass short right to J.Morgan to WAS 15 for 4 yards (A.Samuel).,10,7,2012 -20121007_ATL@WAS,3,16,44,WAS,ATL,2,6,85,(1:44) A.Morris left end to WAS 14 for -1 yards (D.Robinson).,10,7,2012 -20121007_ATL@WAS,3,16,7,WAS,ATL,3,7,86,(1:07) (Shotgun) K.Cousins pass incomplete short middle to S.Moss [J.Abraham].,10,7,2012 -20121007_ATL@WAS,3,16,0,WAS,ATL,4,7,86,(1:00) S.Rocca punts 33 yards to WAS 47 Center-J.Snow out of bounds.,10,7,2012 -20121007_ATL@WAS,3,15,55,ATL,WAS,1,10,47,(:55) M.Ryan pass deep middle to R.White to WAS 28 for 19 yards (R.Doughty).,7,10,2012 -20121007_ATL@WAS,3,15,7,ATL,WAS,1,10,28,(:07) M.Ryan pass incomplete short middle to M.Turner.,7,10,2012 -20121007_ATL@WAS,3,15,1,ATL,WAS,2,10,28,(:01) M.Ryan pass short middle to M.Turner to WAS 23 for 5 yards (L.Fletcher P.Riley).,7,10,2012 -20121007_ATL@WAS,4,15,0,ATL,WAS,3,5,23,(15:00) (Shotgun) M.Ryan pass short left to Jz. Rodgers to WAS 15 for 8 yards (R.Crawford).,7,10,2012 -20121007_ATL@WAS,4,14,18,ATL,WAS,1,10,15,(14:18) M.Ryan pass short right to M.Turner to WAS 18 for -3 yards (K.Golston R.Kerrigan).,7,10,2012 -20121007_ATL@WAS,4,13,30,ATL,WAS,2,13,18,(13:30) (Shotgun) M.Ryan pass deep left to J.Jones for 18 yards TOUCHDOWN.,7,10,2012 -20121007_ATL@WAS,4,13,30,ATL,WAS,,,18,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,7,10,2012 -20121007_ATL@WAS,4,13,30,ATL,WAS,,,18,M.Bosher kicks 70 yards from ATL 35 to WAS -5. B.Banks to WAS 22 for 27 yards (C.Owens C.Hope).,14,10,2012 -20121007_ATL@WAS,4,13,17,WAS,ATL,1,10,78,(13:17) A.Morris left end to WAS 23 for 1 yard (D.Robinson K.Biermann).,10,14,2012 -20121007_ATL@WAS,4,12,40,WAS,ATL,2,9,77,(12:40) K.Cousins pass incomplete deep middle to P.Garcon.,10,14,2012 -20121007_ATL@WAS,4,12,34,WAS,ATL,3,9,77,(12:34) (Shotgun) K.Cousins pass deep middle to S.Moss for 77 yards TOUCHDOWN.,10,14,2012 -20121007_ATL@WAS,4,12,34,WAS,ATL,,,77,B.Cundiff extra point is GOOD Center-J.Snow Holder-S.Rocca.,10,14,2012 -20121007_ATL@WAS,4,12,34,WAS,ATL,,,77,B.Cundiff kicks 74 yards from WAS 35 to ATL -9. Jz. Rodgers Touchback.,17,14,2012 -20121007_ATL@WAS,4,12,24,ATL,WAS,1,10,80,(12:24) M.Ryan pass short right to J.Snelling to ATL 29 for 9 yards (R.Doughty; L.Fletcher). PENALTY on WAS-R.Doughty Illegal Contact 5 yards enforced at ATL 20 - No Play.,14,17,2012 -20121007_ATL@WAS,4,12,3,ATL,WAS,1,10,75,(12:03) M.Turner left guard to ATL 29 for 4 yards (L.Fletcher; R.Kerrigan).,14,17,2012 -20121007_ATL@WAS,4,11,21,ATL,WAS,2,6,71,(11:21) M.Johnson reported in as eligible. M.Turner left tackle to ATL 37 for 8 yards (D.Gomes).,14,17,2012 -20121007_ATL@WAS,4,10,41,ATL,WAS,1,10,63,(10:41) M.Ryan pass incomplete deep left to R.White (Mad.Williams).,14,17,2012 -20121007_ATL@WAS,4,10,34,ATL,WAS,2,10,63,(10:34) (Shotgun) M.Ryan pass deep middle to H.Douglas to WAS 44 for 19 yards (R.Doughty).,14,17,2012 -20121007_ATL@WAS,4,9,52,ATL,WAS,1,10,44,(9:52) M.Ryan pass short middle to T.Gonzalez to WAS 31 for 13 yards (L.Fletcher).,14,17,2012 -20121007_ATL@WAS,4,9,11,ATL,WAS,1,10,31,(9:11) M.Johnson reported in as eligible. M.Turner left tackle to WAS 28 for 3 yards (L.Fletcher; B.Cofield).,14,17,2012 -20121007_ATL@WAS,4,8,29,ATL,WAS,2,7,28,(8:29) J.Hawley and M.Johnson reported in as eligible. M.Ryan sacked at WAS 35 for -7 yards (B.Cofield).,14,17,2012 -20121007_ATL@WAS,4,7,52,ATL,WAS,3,14,35,(7:52) (Shotgun) M.Ryan pass incomplete deep middle to H.Douglas (B.Cofield).,14,17,2012 -20121007_ATL@WAS,4,7,47,ATL,WAS,4,14,35,(7:47) M.Bryant 53 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,14,17,2012 -20121007_ATL@WAS,4,7,47,ATL,WAS,,,35,M.Bosher kicks 67 yards from ATL 35 to WAS -2. B.Banks to WAS 22 for 24 yards (M.Bosher).,17,17,2012 -20121007_ATL@WAS,4,7,34,WAS,ATL,1,10,78,(7:34) A.Morris right end to WAS 28 for 6 yards (P.Jerry).,17,17,2012 -20121007_ATL@WAS,4,6,59,WAS,ATL,2,4,72,(6:59) K.Cousins sacked at WAS 22 for -6 yards (K.Biermann).,17,17,2012 -20121007_ATL@WAS,4,6,21,WAS,ATL,3,10,78,(6:21) (Shotgun) K.Cousins pass short middle to E.Royster to WAS 29 for 7 yards (K.Biermann; R.James).,17,17,2012 -20121007_ATL@WAS,4,5,49,WAS,ATL,4,3,71,(5:49) S.Rocca punts 42 yards to ATL 29 Center-J.Snow. D.Franks to ATL 31 for 2 yards (L.Alexander).,17,17,2012 -20121007_ATL@WAS,4,5,40,ATL,WAS,1,10,69,(5:40) M.Johnson reported in as eligible. M.Turner left end to ATL 35 for 4 yards (P.Riley L.Fletcher).,17,17,2012 -20121007_ATL@WAS,4,5,3,ATL,WAS,2,6,65,(5:03) M.Ryan pass short right to T.Gonzalez to ATL 48 for 13 yards (Mad.Williams; D.Hall).,17,17,2012 -20121007_ATL@WAS,4,4,25,ATL,WAS,1,10,52,(4:25) M.Turner right guard to ATL 49 for 1 yard (S.Bowen).,17,17,2012 -20121007_ATL@WAS,4,3,45,ATL,WAS,2,9,51,(3:45) M.Johnson reported in as eligible. M.Ryan pass deep left to J.Jones pushed ob at WAS 22 for 29 yards (D.Gomes).,17,17,2012 -20121007_ATL@WAS,4,3,36,ATL,WAS,1,10,22,(3:36) M.Ryan pass short left to J.Snelling to WAS 13 for 9 yards (L.Fletcher; D.Gomes).,17,17,2012 -20121007_ATL@WAS,4,2,52,ATL,WAS,2,1,13,(2:52) M.Turner left guard for 13 yards TOUCHDOWN.,17,17,2012 -20121007_ATL@WAS,4,2,52,ATL,WAS,,,13,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,17,2012 -20121007_ATL@WAS,4,2,52,ATL,WAS,,,13,M.Bosher kicks 69 yards from ATL 35 to WAS -4. B.Banks pushed ob at WAS 31 for 35 yards (C.Owens).,24,17,2012 -20121007_ATL@WAS,4,2,39,WAS,ATL,1,10,69,(2:39) K.Cousins pass deep middle to P.Garcon to ATL 49 for 20 yards (D.Robinson; W.Moore).,17,24,2012 -20121007_ATL@WAS,4,2,10,WAS,ATL,1,10,49,(2:10) (Shotgun) K.Cousins pass short left to S.Moss to ATL 46 for 3 yards (R.McClain).,17,24,2012 -20121007_ATL@WAS,4,2,0,WAS,ATL,2,7,46,(2:00) (Shotgun) K.Cousins pass short left intended for F.Davis INTERCEPTED by D.Robinson at ATL 36. D.Robinson to ATL 40 for 4 yards (A.Morris).,17,24,2012 -20121007_ATL@WAS,4,1,53,ATL,WAS,1,10,60,(1:53) M.Turner right guard to ATL 40 for no gain (P.Riley; B.Cofield).,24,17,2012 -20121007_ATL@WAS,4,1,47,ATL,WAS,2,10,60,(1:47) M.Johnson reported in as eligible. M.Turner right end to ATL 41 for 1 yard (D.Hall; L.Fletcher).,24,17,2012 -20121007_ATL@WAS,4,1,42,ATL,WAS,3,9,59,(1:42) M.Turner left end to ATL 44 for 3 yards (R.Jackson).,24,17,2012 -20121007_ATL@WAS,4,1,29,ATL,WAS,4,6,56,(1:29) M.Bosher punts 56 yards to end zone Center-J.Harris Touchback.,24,17,2012 -20121007_ATL@WAS,4,1,21,WAS,ATL,1,10,80,(1:21) (Shotgun) K.Cousins pass deep middle intended for S.Moss INTERCEPTED by T.DeCoud [J.Babineaux] at WAS 45. T.DeCoud to WAS 21 for 24 yards (T.Polumbus).,17,24,2012 -20121007_ATL@WAS,4,1,5,ATL,WAS,1,10,21,(1:05) M.Ryan kneels to WAS 22 for -1 yards.,24,17,2012 -20121007_ATL@WAS,4,0,39,ATL,WAS,2,11,22,(:39) M.Ryan kneels to WAS 23 for -1 yards.,24,17,2012 -20121007_ATL@WAS,4,0,39,ATL,WAS,,,22,                      ,24,17,2012 -20121007_SEA@CAR,1,0,0,SEA,CAR,,,22,S.Hauschka kicks 67 yards from SEA 35 to CAR -2. K.Pilares to CAR 13 for 15 yards (K.Wright).,0,0,2012 -20121007_SEA@CAR,1,59,55,CAR,SEA,1,10,87,(14:55) (Shotgun) D.Williams up the middle to CAR 16 for 3 yards (C.Clemons; B.Mebane).,0,0,2012 -20121007_SEA@CAR,1,59,20,CAR,SEA,2,7,84,(14:20) C.Newton pass incomplete short left to S.Smith.,0,0,2012 -20121007_SEA@CAR,1,59,13,CAR,SEA,3,7,84,(14:13) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (K.Chancellor).,0,0,2012 -20121007_SEA@CAR,1,59,7,CAR,SEA,4,7,84,(14:07) B.Nortman punts 29 yards to CAR 45 Center-J.Jansen out of bounds.,0,0,2012 -20121007_SEA@CAR,1,59,2,SEA,CAR,1,10,45,(14:02) R.Wilson pass deep left to S.Rice ran ob at CAR 27 for 18 yards.,0,0,2012 -20121007_SEA@CAR,1,58,34,SEA,CAR,1,10,27,(13:34) R.Wilson pass incomplete short right to A.McCoy.,0,0,2012 -20121007_SEA@CAR,1,58,26,SEA,CAR,2,10,27,(13:26) M.Lynch right guard to CAR 24 for 3 yards (R.Edwards; D.Edwards).,0,0,2012 -20121007_SEA@CAR,1,57,46,SEA,CAR,3,7,24,(12:46) (Shotgun) R.Wilson pass short middle to D.Baldwin to CAR 11 for 13 yards (L.Kuechly).,0,0,2012 -20121007_SEA@CAR,1,57,12,SEA,CAR,1,10,11,(12:12) M.Lynch left guard to CAR 10 for 1 yard (S.Fua; F.Alexander).,0,0,2012 -20121007_SEA@CAR,1,56,37,SEA,CAR,2,9,10,(11:37) M.Lynch right tackle to CAR 10 for no gain (A.Applewhite; F.Kearse).,0,0,2012 -20121007_SEA@CAR,1,55,52,SEA,CAR,3,9,10,(10:52) (Shotgun) R.Wilson pass short right to Z.Miller to CAR 4 for 6 yards (J.Thomas).,0,0,2012 -20121007_SEA@CAR,1,55,33,SEA,CAR,4,3,4,(10:33) S.Hauschka 22 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121007_SEA@CAR,1,55,33,SEA,CAR,,,4,S.Hauschka kicks 70 yards from SEA 35 to CAR -5. K.Pilares to CAR 19 for 24 yards (H.Farwell).,3,0,2012 -20121007_SEA@CAR,1,55,24,CAR,SEA,1,10,81,(10:24) (Shotgun) D.Williams up the middle to CAR 22 for 3 yards (L.Hill).,0,3,2012 -20121007_SEA@CAR,1,54,50,CAR,SEA,2,7,78,(9:50) (Shotgun) J.Stewart left tackle to CAR 23 for 1 yard (B.Mebane).,0,3,2012 -20121007_SEA@CAR,1,54,12,CAR,SEA,3,6,77,(9:12) (Shotgun) C.Newton pass incomplete deep middle to S.Smith (K.Chancellor).,0,3,2012 -20121007_SEA@CAR,1,54,5,CAR,SEA,4,6,77,(9:05) B.Nortman punts 63 yards to SEA 14 Center-J.Jansen. L.Washington to SEA 31 for 17 yards (H.Nakamura).,0,3,2012 -20121007_SEA@CAR,1,53,52,SEA,CAR,1,10,69,(8:52) PENALTY on SEA-B.Giacomini Offensive Holding 10 yards enforced at SEA 31 - No Play.,3,0,2012 -20121007_SEA@CAR,1,53,18,SEA,CAR,1,20,79,(8:18) (Shotgun) R.Wilson pass short left to D.Baldwin to SEA 40 for 19 yards (S.Martin).,3,0,2012 -20121007_SEA@CAR,1,52,43,SEA,CAR,2,1,60,(7:43) M.Robinson right guard to SEA 42 for 2 yards (R.Edwards; D.Edwards).,3,0,2012 -20121007_SEA@CAR,1,52,7,SEA,CAR,1,10,58,(7:07) R.Wilson pass short left to G.Tate to CAR 46 for 12 yards (C.Godfrey).,3,0,2012 -20121007_SEA@CAR,1,51,31,SEA,CAR,1,10,46,(6:31) M.Lynch left tackle to CAR 40 for 6 yards (A.Applewhite; L.Kuechly).,3,0,2012 -20121007_SEA@CAR,1,50,51,SEA,CAR,2,4,40,(5:51) R.Wilson pass short right to M.Robinson to CAR 40 for no gain (T.Davis).,3,0,2012 -20121007_SEA@CAR,1,50,51,SEA,CAR,3,4,40,(5:51) (Shotgun) R.Wilson scrambles right end pushed ob at CAR 39 for 1 yard (G.Hardy).,3,0,2012 -20121007_SEA@CAR,1,49,49,SEA,CAR,4,3,39,(4:49) J.Ryan punts 34 yards to CAR 5 Center-C.Gresham downed by SEA-B.Maxwell.,3,0,2012 -20121007_SEA@CAR,1,49,40,CAR,SEA,1,10,95,(4:40) J.Stewart left guard to CAR 16 for 11 yards (K.Wright).,0,3,2012 -20121007_SEA@CAR,1,48,55,CAR,SEA,1,10,84,(3:55) (Shotgun) C.Newton scrambles up the middle to CAR 18 for 2 yards (C.Clemons).,0,3,2012 -20121007_SEA@CAR,1,48,14,CAR,SEA,2,8,82,(3:14) (Shotgun) C.Newton right end to CAR 19 for 1 yard. Lateral to K.Pilares to CAR 31 for 12 yards (R.Sherman).,0,3,2012 -20121007_SEA@CAR,1,47,30,CAR,SEA,1,10,69,(2:30) (Shotgun) C.Newton pass short left to S.Smith to CAR 43 for 12 yards (K.Chancellor; B.Browner).,0,3,2012 -20121007_SEA@CAR,1,46,43,CAR,SEA,1,10,57,(1:43) C.Newton pass incomplete short middle to S.Smith.,0,3,2012 -20121007_SEA@CAR,1,46,38,CAR,SEA,2,10,57,(1:38) L.Murphy right end to CAR 46 for 3 yards (R.Sherman).,0,3,2012 -20121007_SEA@CAR,1,46,4,CAR,SEA,3,7,54,(1:04) (Shotgun) C.Newton sacked at CAR 42 for -4 yards (B.Wagner).,0,3,2012 -20121007_SEA@CAR,1,45,37,CAR,SEA,4,11,58,(:37) B.Nortman punts 38 yards to SEA 20 Center-J.Jansen. L.Washington to SEA 32 for 12 yards (H.Nakamura).,0,3,2012 -20121007_SEA@CAR,1,45,27,SEA,CAR,1,10,68,(:27) B.Obomanu right end to SEA 43 for 11 yards. PENALTY on SEA-B.Giacomini Unnecessary Roughness 15 yards enforced between downs.,3,0,2012 -20121007_SEA@CAR,2,45,0,SEA,CAR,1,14,72,(15:00) M.Lynch up the middle to SEA 42 for 14 yards (H.Nakamura; L.Kuechly).,3,0,2012 -20121007_SEA@CAR,2,44,26,SEA,CAR,1,10,58,(14:26) R.Wilson sacked at SEA 37 for -5 yards (G.Hardy).,3,0,2012 -20121007_SEA@CAR,2,43,53,SEA,CAR,2,15,63,(13:53) R.Wilson pass short left to B.Edwards to SEA 47 for 10 yards (C.Munnerlyn; J.Norman).,3,0,2012 -20121007_SEA@CAR,2,43,4,SEA,CAR,3,5,53,(13:04) (Shotgun) R.Wilson pass short left to S.Rice to CAR 41 for 12 yards (J.Norman).,3,0,2012 -20121007_SEA@CAR,2,42,32,SEA,CAR,1,10,41,(12:32) R.Wilson scrambles up the middle to CAR 32 for 9 yards (C.Munnerlyn).,3,0,2012 -20121007_SEA@CAR,2,41,43,SEA,CAR,2,1,32,(11:43) R.Wilson sacked at CAR 36 for -4 yards (A.Applewhite).,3,0,2012 -20121007_SEA@CAR,2,41,5,SEA,CAR,3,5,36,(11:05) (Shotgun) R.Wilson pass short right to S.Rice to CAR 25 for 11 yards (J.Thomas).,3,0,2012 -20121007_SEA@CAR,2,40,41,SEA,CAR,1,10,25,(10:41) M.Lynch right guard to CAR 23 for 2 yards (S.Martin; G.Hardy).,3,0,2012 -20121007_SEA@CAR,2,40,6,SEA,CAR,2,8,23,(10:06) M.Lynch left guard to CAR 21 for 2 yards (A.Applewhite; J.Anderson).,3,0,2012 -20121007_SEA@CAR,2,39,22,SEA,CAR,3,6,21,(9:22) (Shotgun) R.Wilson pass short right to R.Turbin to CAR 18 for 3 yards (J.Thomas).,3,0,2012 -20121007_SEA@CAR,2,38,29,SEA,CAR,4,3,18,(8:29) S.Hauschka 36 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,3,0,2012 -20121007_SEA@CAR,2,38,29,SEA,CAR,,,18,S.Hauschka kicks 67 yards from SEA 35 to CAR -2. K.Pilares to CAR 23 for 25 yards (J.Johnson; C.Maragos).,6,0,2012 -20121007_SEA@CAR,2,38,22,CAR,SEA,1,10,77,(8:22) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,6,2012 -20121007_SEA@CAR,2,38,16,CAR,SEA,2,10,77,(8:16) C.Newton pass incomplete short middle to D.Williams (B.Mebane).,0,6,2012 -20121007_SEA@CAR,2,38,11,CAR,SEA,3,10,77,(8:11) (Shotgun) C.Newton sacked at CAR 10 for -13 yards (B.Irvin).,0,6,2012 -20121007_SEA@CAR,2,37,29,CAR,SEA,4,23,90,(7:29) B.Nortman punts 52 yards to SEA 38 Center-J.Jansen. L.Washington to SEA 38 for no gain (K.Onatolu; R.Brockel).,0,6,2012 -20121007_SEA@CAR,2,37,29,SEA,CAR,1,10,62,(7:29) M.Lynch left guard to CAR 42 for 20 yards (H.Nakamura; C.Munnerlyn). PENALTY on SEA-R.Okung Offensive Holding 10 yards enforced at SEA 38 - No Play.,6,0,2012 -20121007_SEA@CAR,2,36,55,SEA,CAR,1,20,72,(6:55) (Shotgun) R.Wilson pass short right to S.Rice to SEA 43 for 15 yards (S.Martin).,6,0,2012 -20121007_SEA@CAR,2,36,17,SEA,CAR,2,5,57,(6:17) R.Turbin left guard to SEA 47 for 4 yards (D.Edwards; C.Johnson).,6,0,2012 -20121007_SEA@CAR,2,35,32,SEA,CAR,3,1,53,(5:32) M.Robinson left guard to SEA 48 for 1 yard (T.Davis; J.Norman).,6,0,2012 -20121007_SEA@CAR,2,34,47,SEA,CAR,1,10,52,(4:47) G.Tate right end to SEA 47 for -1 yards (T.Davis).,6,0,2012 -20121007_SEA@CAR,2,34,2,SEA,CAR,2,11,53,(4:02) (Shotgun) R.Turbin up the middle to CAR 48 for 5 yards (F.Kearse).,6,0,2012 -20121007_SEA@CAR,2,33,28,SEA,CAR,3,6,47,(3:28) (Shotgun) R.Wilson pass short left to D.Baldwin to CAR 43 for 4 yards (S.Martin).,6,0,2012 -20121007_SEA@CAR,2,32,46,SEA,CAR,4,1,43,(2:46) J.Ryan punts 34 yards to CAR 9 Center-C.Gresham out of bounds.,6,0,2012 -20121007_SEA@CAR,2,32,46,CAR,SEA,1,10,91,(2:46) (Shotgun) C.Newton up the middle to CAR 15 for 6 yards (A.Branch).,0,6,2012 -20121007_SEA@CAR,2,32,11,CAR,SEA,2,4,85,(2:11) (Shotgun) C.Newton pass incomplete short left to S.Smith.,0,6,2012 -20121007_SEA@CAR,2,32,8,CAR,SEA,3,4,85,(2:08) (Shotgun) C.Newton pass incomplete short middle to J.Stewart [C.Clemons]. PENALTY on SEA-C.Clemons Roughing the Passer 15 yards enforced at CAR 15 - No Play.,0,6,2012 -20121007_SEA@CAR,2,32,3,CAR,SEA,1,10,70,(2:03) (Shotgun) C.Newton pass incomplete short middle to S.Smith (C.Clemons).,0,6,2012 -20121007_SEA@CAR,2,31,58,CAR,SEA,2,10,70,(1:58) (Shotgun) C.Newton pass short right to B.LaFell ran ob at SEA 49 for 21 yards (K.Chancellor).,0,6,2012 -20121007_SEA@CAR,2,31,51,CAR,SEA,1,10,49,(1:51) (Shotgun) C.Newton pass incomplete deep right to S.Smith (E.Thomas).,0,6,2012 -20121007_SEA@CAR,2,31,46,CAR,SEA,2,10,49,(1:46) (Shotgun) C.Newton pass incomplete short right to S.Smith.,0,6,2012 -20121007_SEA@CAR,2,31,42,CAR,SEA,3,10,49,(1:42) (Shotgun) C.Newton scrambles left end to SEA 34 for 15 yards (B.Wagner).,0,6,2012 -20121007_SEA@CAR,2,31,27,CAR,SEA,1,10,34,(1:27) (Shotgun) C.Newton up the middle to SEA 21 for 13 yards.,0,6,2012 -20121007_SEA@CAR,2,31,2,CAR,SEA,1,10,21,(1:02) (No Huddle Shotgun) C.Newton pass incomplete deep right to L.Murphy.,0,6,2012 -20121007_SEA@CAR,2,30,59,CAR,SEA,2,10,21,(:59) (Shotgun) C.Newton pass incomplete short middle to M.Tolbert [B.Irvin].,0,6,2012 -20121007_SEA@CAR,2,30,55,CAR,SEA,3,10,21,(:55) (Shotgun) C.Newton pass short right to S.Smith to SEA 14 for 7 yards (R.Sherman).,0,6,2012 -20121007_SEA@CAR,2,30,2,CAR,SEA,4,3,14,(:02) J.Medlock 32 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,0,6,2012 -20121007_SEA@CAR,2,30,2,CAR,SEA,,,14,J.Medlock kicks 45 yards from CAR 35 to SEA 20. L.Washington (didn't try to advance) to SEA 20 for no gain (R.Parker).,3,6,2012 -20121007_SEA@CAR,3,30,0,CAR,SEA,,,14,J.Medlock kicks 69 yards from CAR 35 to SEA -4. L.Washington to SEA 43 for 47 yards (J.Phillips). FUMBLES (J.Phillips) RECOVERED by CAR-J.Thomas at SEA 41. J.Thomas to SEA 37 for 4 yards (M.Morgan).,3,6,2012 -20121007_SEA@CAR,3,29,48,CAR,SEA,1,10,37,(14:48) C.Newton pass incomplete deep right to S.Smith (R.Sherman).,3,6,2012 -20121007_SEA@CAR,3,29,42,CAR,SEA,2,10,37,(14:42) (Shotgun) C.Newton left tackle to SEA 35 for 2 yards (C.Clemons).,3,6,2012 -20121007_SEA@CAR,3,29,1,CAR,SEA,3,8,35,(14:01) (Shotgun) C.Newton sacked at SEA 45 for -10 yards (sack split by C.Clemons and B.Wagner).,3,6,2012 -20121007_SEA@CAR,3,28,35,CAR,SEA,4,18,45,(13:35) (Punt formation) PENALTY on CAR-J.Senn Offensive Holding 10 yards enforced at SEA 45 - No Play.,3,6,2012 -20121007_SEA@CAR,3,28,15,CAR,SEA,4,28,55,(13:15) B.Nortman punts 47 yards to SEA 8 Center-J.Jansen. L.Washington to SEA 17 for 9 yards (G.Barnidge).,3,6,2012 -20121007_SEA@CAR,3,28,15,SEA,CAR,1,10,83,(13:15) M.Lynch left tackle to SEA 19 for 2 yards (L.Kuechly).,6,3,2012 -20121007_SEA@CAR,3,27,26,SEA,CAR,2,8,81,(12:26) R.Wilson pass short right intended for A.McCoy INTERCEPTED by C.Munnerlyn at SEA 33. C.Munnerlyn for 33 yards TOUCHDOWN.,6,3,2012 -20121007_SEA@CAR,3,27,26,CAR,SEA,,,81,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,3,6,2012 -20121007_SEA@CAR,3,27,26,CAR,SEA,,,81,J.Medlock kicks 40 yards from CAR 35 to SEA 25. D.Baldwin to SEA 28 for 3 yards (C.Jones).,10,6,2012 -20121007_SEA@CAR,3,27,21,SEA,CAR,1,10,72,(12:21) M.Lynch left guard to SEA 31 for 3 yards (S.Fua).,6,10,2012 -20121007_SEA@CAR,3,26,50,SEA,CAR,2,7,69,(11:50) (Shotgun) M.Lynch up the middle to SEA 34 for 3 yards (F.Kearse; L.Kuechly).,6,10,2012 -20121007_SEA@CAR,3,26,16,SEA,CAR,3,4,66,(11:16) (Shotgun) R.Wilson pass short left to G.Tate to SEA 40 for 6 yards (S.Martin).,6,10,2012 -20121007_SEA@CAR,3,25,46,SEA,CAR,1,10,60,(10:46) R.Wilson pass deep middle to Z.Miller to CAR 30 for 30 yards (C.Godfrey; H.Nakamura).,6,10,2012 -20121007_SEA@CAR,3,24,39,SEA,CAR,1,10,30,(9:39) R.Wilson pass short left intended for M.Lynch INTERCEPTED by L.Kuechly at CAR 23. L.Kuechly to CAR 20 for -3 yards (M.Unger).,6,10,2012 -20121007_SEA@CAR,3,24,39,CAR,SEA,1,10,80,(9:39) D.Williams up the middle to CAR 24 for 4 yards (B.Wagner; C.Clemons).,10,6,2012 -20121007_SEA@CAR,3,23,57,CAR,SEA,2,6,76,(8:57) (Shotgun) J.Stewart up the middle to CAR 26 for 2 yards (B.Mebane).,10,6,2012 -20121007_SEA@CAR,3,23,12,CAR,SEA,3,4,74,(8:12) (Shotgun) C.Newton pass incomplete short left to S.Smith. PENALTY on SEA-B.Browner Defensive Holding 5 yards enforced at CAR 26 - No Play.,10,6,2012 -20121007_SEA@CAR,3,23,8,CAR,SEA,1,10,69,(8:08) C.Newton left tackle to CAR 32 for 1 yard. PENALTY on CAR-S.Smith Offensive Holding 10 yards enforced at CAR 31 - No Play.,10,6,2012 -20121007_SEA@CAR,3,22,41,CAR,SEA,1,20,79,(7:41) (Shotgun) C.Newton pass short left to S.Smith to CAR 28 for 7 yards (B.Browner).,10,6,2012 -20121007_SEA@CAR,3,22,2,CAR,SEA,2,13,72,(7:02) (Shotgun) C.Newton pass incomplete short left to J.Stewart.,10,6,2012 -20121007_SEA@CAR,3,21,57,CAR,SEA,3,13,72,(6:57) (Shotgun) C.Newton pass short left to J.Stewart to CAR 36 for 8 yards (B.Browner).,10,6,2012 -20121007_SEA@CAR,3,21,5,CAR,SEA,4,5,64,(6:05) B.Nortman punts 53 yards to SEA 11 Center-J.Jansen. L.Washington to SEA 12 for 1 yard (J.Thomas).,10,6,2012 -20121007_SEA@CAR,3,21,5,SEA,CAR,1,10,88,(6:05) M.Lynch left tackle to SEA 13 for 1 yard (S.Fua; J.Anderson).,6,10,2012 -20121007_SEA@CAR,3,20,28,SEA,CAR,2,9,87,(5:28) R.Wilson pass short right to S.Rice to SEA 24 for 11 yards (L.Kuechly).,6,10,2012 -20121007_SEA@CAR,3,19,51,SEA,CAR,1,10,76,(4:51) M.Lynch right tackle to SEA 28 for 4 yards (C.Godfrey; L.Kuechly).,6,10,2012 -20121007_SEA@CAR,3,19,15,SEA,CAR,2,6,72,(4:15) M.Lynch left end to SEA 39 for 11 yards (J.Anderson). PENALTY on SEA-B.Obomanu Offensive Holding 10 yards enforced at SEA 34.,6,10,2012 -20121007_SEA@CAR,3,18,38,SEA,CAR,2,10,76,(3:38) R.Wilson pass incomplete short right to D.Baldwin.,6,10,2012 -20121007_SEA@CAR,3,18,34,SEA,CAR,3,10,76,(3:34) (Shotgun) R.Wilson pass short left to R.Turbin to SEA 29 for 5 yards (L.Kuechly).,6,10,2012 -20121007_SEA@CAR,3,17,46,SEA,CAR,4,5,71,(2:46) J.Ryan punts 54 yards to CAR 17 Center-C.Gresham. C.Munnerlyn ran ob at CAR 30 for 13 yards (M.Morgan).,6,10,2012 -20121007_SEA@CAR,3,17,37,CAR,SEA,1,10,70,(2:37) D.Williams to CAR 29 for -1 yards (B.Browner). FUMBLES (B.Browner) RECOVERED by SEA-B.Browner at CAR 27. B.Browner to CAR 27 for no gain (D.Williams).,10,6,2012 -20121007_SEA@CAR,3,17,37,SEA,CAR,1,10,27,(2:37) R.Wilson pass short right to M.Lynch to CAR 18 for 9 yards (L.Kuechly).,6,10,2012 -20121007_SEA@CAR,3,16,59,SEA,CAR,2,1,18,(1:59) M.Lynch left tackle to CAR 15 for 3 yards (H.Nakamura; R.Edwards).,6,10,2012 -20121007_SEA@CAR,3,16,26,SEA,CAR,1,10,15,(1:26) M.Lynch left guard to CAR 13 for 2 yards (G.Hardy).,6,10,2012 -20121007_SEA@CAR,3,15,49,SEA,CAR,2,8,13,(:49) (Shotgun) R.Wilson pass incomplete short right to G.Tate.,6,10,2012 -20121007_SEA@CAR,3,15,35,SEA,CAR,3,8,13,(:35) (Shotgun) R.Wilson pass short middle to G.Tate for 13 yards TOUCHDOWN.,6,10,2012 -20121007_SEA@CAR,3,15,35,SEA,CAR,,,13,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,6,10,2012 -20121007_SEA@CAR,3,15,35,SEA,CAR,,,13,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,13,10,2012 -20121007_SEA@CAR,3,15,35,CAR,SEA,1,10,80,(:35) (Shotgun) C.Newton pass incomplete short right to D.Williams.,10,13,2012 -20121007_SEA@CAR,3,15,30,CAR,SEA,2,10,80,(:30) (Shotgun) J.Stewart up the middle to CAR 22 for 2 yards (B.Wagner).,10,13,2012 -20121007_SEA@CAR,4,15,0,CAR,SEA,3,8,78,(15:00) (Shotgun) C.Newton pass short right to J.Stewart to CAR 32 for 10 yards (R.Sherman). FUMBLES (R.Sherman) and recovers at CAR 29. J.Stewart to CAR 29 for no gain (R.Sherman).,10,13,2012 -20121007_SEA@CAR,4,14,0,CAR,SEA,4,1,71,(14:00) B.Nortman punts 36 yards to SEA 35 Center-J.Jansen downed by CAR-J.Jansen.,10,13,2012 -20121007_SEA@CAR,4,14,0,SEA,CAR,1,10,65,(14:00) M.Lynch left tackle to SEA 43 for 8 yards (L.Kuechly).,13,10,2012 -20121007_SEA@CAR,4,13,24,SEA,CAR,2,2,57,(13:24) M.Lynch right end to CAR 46 for 11 yards (J.Anderson).,13,10,2012 -20121007_SEA@CAR,4,12,39,SEA,CAR,1,10,46,(12:39) R.Wilson pass deep right to Z.Miller to CAR 23 for 23 yards (J.Norman).,13,10,2012 -20121007_SEA@CAR,4,12,0,SEA,CAR,1,10,23,(12:00) R.Turbin left end to CAR 23 for no gain (H.Nakamura; T.Davis).,13,10,2012 -20121007_SEA@CAR,4,11,21,SEA,CAR,2,10,23,(11:21) R.Turbin up the middle to CAR 26 for -3 yards (L.Kuechly).,13,10,2012 -20121007_SEA@CAR,4,10,41,SEA,CAR,3,13,26,(10:41) (Shotgun) R.Wilson pass incomplete deep right to S.Rice. Penalty on SEA-M.Unger Ineligible Downfield Pass declined.,13,10,2012 -20121007_SEA@CAR,4,10,27,SEA,CAR,4,13,26,(10:27) S.Hauschka 44 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,13,10,2012 -20121007_SEA@CAR,4,10,27,SEA,CAR,,,26,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,16,10,2012 -20121007_SEA@CAR,4,10,27,CAR,SEA,1,10,80,(10:27) (Shotgun) D.Williams right end to CAR 22 for 2 yards (L.Hill; B.Wagner).,10,16,2012 -20121007_SEA@CAR,4,9,48,CAR,SEA,2,8,78,(9:48) (Shotgun) M.Tolbert up the middle to CAR 25 for 3 yards (K.Wright).,10,16,2012 -20121007_SEA@CAR,4,9,7,CAR,SEA,3,5,75,(9:07) (Shotgun) C.Newton pass short left to B.LaFell pushed ob at CAR 31 for 6 yards (K.Wright).,10,16,2012 -20121007_SEA@CAR,4,8,44,CAR,SEA,1,10,69,(8:44) (Shotgun) C.Newton pass deep left to G.Olsen to SEA 45 for 24 yards (K.Chancellor).,10,16,2012 -20121007_SEA@CAR,4,8,2,CAR,SEA,1,10,45,(8:02) C.Newton pass short left to S.Smith to SEA 31 for 14 yards (K.Chancellor).,10,16,2012 -20121007_SEA@CAR,4,7,23,CAR,SEA,1,10,31,(7:23) C.Newton pass short left to G.Olsen to SEA 18 for 13 yards (K.Wright) [C.Clemons].,10,16,2012 -20121007_SEA@CAR,4,6,56,CAR,SEA,1,10,18,(6:56) (Shotgun) PENALTY on CAR-B.LaFell False Start 5 yards enforced at SEA 18 - No Play.,10,16,2012 -20121007_SEA@CAR,4,6,31,CAR,SEA,1,15,23,(6:31) (Shotgun) C.Newton pass short left to B.LaFell to SEA 6 for 17 yards (B.Browner).,10,16,2012 -20121007_SEA@CAR,4,5,51,CAR,SEA,1,6,6,(5:51) (Shotgun) C.Newton right end to SEA 3 for 3 yards (E.Thomas).,10,16,2012 -20121007_SEA@CAR,4,5,17,CAR,SEA,2,3,3,(5:17) D.Williams up the middle to SEA 6 for -3 yards (C.Clemons; A.Branch).,10,16,2012 -20121007_SEA@CAR,4,4,38,CAR,SEA,3,6,6,(4:38) (Shotgun) C.Newton pass short left to L.Murphy to SEA 1 for 5 yards (M.Trufant; B.Browner).,10,16,2012 -20121007_SEA@CAR,4,3,47,CAR,SEA,4,1,1,(3:47) C.Newton pass incomplete short middle to B.Hartsock.,10,16,2012 -20121007_SEA@CAR,4,3,47,SEA,CAR,1,10,99,(3:47) PENALTY on SEA-J.Carpenter False Start 0 yards enforced at SEA 1 - No Play.,16,10,2012 -20121007_SEA@CAR,4,3,47,SEA,CAR,1,10,99,(3:47) R.Wilson up the middle to SEA 1 for no gain (C.Johnson).,16,10,2012 -20121007_SEA@CAR,4,3,6,SEA,CAR,2,10,99,(3:06) M.Lynch right tackle to SEA 4 for 3 yards (T.Davis).,16,10,2012 -20121007_SEA@CAR,4,2,58,SEA,CAR,3,7,96,(2:58) M.Lynch up the middle to SEA 15 for 11 yards (H.Nakamura).,16,10,2012 -20121007_SEA@CAR,4,2,11,SEA,CAR,1,10,85,(2:11) M.Lynch left tackle to SEA 17 for 2 yards (G.Hardy; T.Davis).,16,10,2012 -20121007_SEA@CAR,4,2,0,SEA,CAR,2,8,83,(2:00) M.Lynch right guard to SEA 15 for -2 yards (G.Hardy).,16,10,2012 -20121007_SEA@CAR,4,1,53,SEA,CAR,3,10,85,(1:53) R.Wilson right end to SEA 18 for 3 yards (C.Munnerlyn).,16,10,2012 -20121007_SEA@CAR,4,0,59,SEA,CAR,4,7,82,(:59) J.Ryan left end tackled in End Zone for -18 yards SAFETY (K.Onatolu). Punter intentionally runs out of the end zone for a safety.,16,10,2012 -20121007_SEA@CAR,4,0,59,SEA,CAR,,,82,S.Hauschka kicks 66 yards from SEA 20 to CAR 14. C.Munnerlyn to CAR 31 for 17 yards (E.Thomas).,16,12,2012 -20121007_SEA@CAR,4,0,53,CAR,SEA,1,10,69,(:53) (Shotgun) C.Newton pass incomplete short right to J.Stewart.,12,16,2012 -20121007_SEA@CAR,4,0,49,CAR,SEA,2,10,69,(:49) (Shotgun) C.Newton sacked at CAR 23 for -8 yards (B.Irvin). FUMBLES (B.Irvin) recovered by CAR-F.Kearse at CAR 25. F.Kearse to CAR 25 for no gain (J.Carpenter).,12,16,2012 -20121007_SEA@CAR,4,0,39,SEA,CAR,1,10,25,(:39) R.Wilson kneels to CAR 26 for -1 yards.,16,12,2012 -20121007_SEA@CAR,4,0,39,SEA,CAR,,,25,                      ,16,12,2012 -20121007_CHI@JAC,1,0,0,CHI,JAC,,,25,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121007_CHI@JAC,1,60,0,JAC,CHI,1,10,80,(15:00) M.Jones-Drew up the middle to JAX 20 for no gain (L.Briggs).,0,0,2012 -20121007_CHI@JAC,1,59,24,JAC,CHI,2,10,80,(14:24) M.Jones-Drew up the middle to JAX 23 for 3 yards (S.Paea).,0,0,2012 -20121007_CHI@JAC,1,58,40,JAC,CHI,3,7,77,(13:40) (Shotgun) B.Gabbert pass short right to M.Thomas to JAX 26 for 3 yards (T.Jennings).,0,0,2012 -20121007_CHI@JAC,1,58,0,JAC,CHI,4,4,74,(13:00) B.Anger punts 49 yards to CHI 25 Center-J.Cain. D.Hester to CHI 29 for 4 yards (R.Allen).,0,0,2012 -20121007_CHI@JAC,1,57,46,CHI,JAC,1,10,71,(12:46) M.Forte right end to CHI 35 for 6 yards (D.Lowery).,0,0,2012 -20121007_CHI@JAC,1,57,16,CHI,JAC,2,4,65,(12:16) M.Forte up the middle to CHI 38 for 3 yards (A.Lane).,0,0,2012 -20121007_CHI@JAC,1,56,35,CHI,JAC,3,1,62,(11:35) (Shotgun) J.Cutler pass short left intended for B.Marshall INTERCEPTED by D.Cox at CHI 45. D.Cox to CHI 45 for no gain (B.Marshall).,0,0,2012 -20121007_CHI@JAC,1,56,29,JAC,CHI,1,10,45,(11:29) B.Gabbert pass incomplete short left to Z.Potter.,0,0,2012 -20121007_CHI@JAC,1,56,24,JAC,CHI,2,10,45,(11:24) M.Jones-Drew up the middle to CHI 43 for 2 yards (M.Wright).,0,0,2012 -20121007_CHI@JAC,1,55,44,JAC,CHI,3,8,43,(10:44) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew.,0,0,2012 -20121007_CHI@JAC,1,55,40,JAC,CHI,4,8,43,(10:40) B.Anger punts 34 yards to CHI 9 Center-J.Cain fair catch by D.Hester.,0,0,2012 -20121007_CHI@JAC,1,55,34,CHI,JAC,1,10,91,(10:34) J.Cutler pass incomplete short middle to K.Davis.,0,0,2012 -20121007_CHI@JAC,1,55,30,CHI,JAC,2,10,91,(10:30) M.Forte up the middle to CHI 14 for 5 yards (R.Mathis).,0,0,2012 -20121007_CHI@JAC,1,54,45,CHI,JAC,3,5,86,(9:45) (Shotgun) M.Forte up the middle to CHI 24 for 10 yards (D.Landry).,0,0,2012 -20121007_CHI@JAC,1,54,13,CHI,JAC,1,10,76,(9:13) J.Cutler pass short right to K.Davis to CHI 39 for 15 yards (R.Mathis).,0,0,2012 -20121007_CHI@JAC,1,53,32,CHI,JAC,1,10,61,(8:32) J.Cutler pass short right to B.Marshall to 50 for 11 yards (R.Allen).,0,0,2012 -20121007_CHI@JAC,1,52,54,CHI,JAC,1,10,50,(7:54) M.Forte right end to JAX 36 for 14 yards (R.Allen; K.Bosworth).,0,0,2012 -20121007_CHI@JAC,1,52,14,CHI,JAC,1,10,36,(7:14) M.Bush up the middle to JAX 27 for 9 yards (P.Posluszny).,0,0,2012 -20121007_CHI@JAC,1,51,33,CHI,JAC,2,1,27,(6:33) J.Cutler pass short left to K.Davis to JAX 16 for 11 yards (D.Landry).,0,0,2012 -20121007_CHI@JAC,1,50,44,CHI,JAC,1,10,16,(5:44) PENALTY on CHI-J.Cutler Delay of Game 5 yards enforced at JAX 16 - No Play.,0,0,2012 -20121007_CHI@JAC,1,50,17,CHI,JAC,1,15,21,(5:17) (Shotgun) J.Cutler pass incomplete deep left to K.Davis.,0,0,2012 -20121007_CHI@JAC,1,50,10,CHI,JAC,2,15,21,(5:10) M.Forte right end to JAX 14 for 7 yards (R.Mathis).,0,0,2012 -20121007_CHI@JAC,1,49,31,CHI,JAC,3,8,14,(4:31) J.Cutler pass incomplete short left to A.Jeffery [P.Posluszny].,0,0,2012 -20121007_CHI@JAC,1,49,26,CHI,JAC,4,8,14,(4:26) R.Gould 32 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121007_CHI@JAC,1,49,26,CHI,JAC,,,14,R.Gould kicks 60 yards from CHI 35 to JAX 5. R.Jennings to JAX 26 for 21 yards (D.Moore).,3,0,2012 -20121007_CHI@JAC,1,49,17,JAC,CHI,1,10,74,(4:17) M.Jones-Drew right end to JAX 24 for -2 yards (M.Wright).,0,3,2012 -20121007_CHI@JAC,1,48,39,JAC,CHI,2,12,76,(3:39) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,0,3,2012 -20121007_CHI@JAC,1,48,37,JAC,CHI,3,12,76,(3:37) (Shotgun) B.Gabbert pass short right to J.Blackmon pushed ob at JAX 37 for 13 yards (T.Jennings).,0,3,2012 -20121007_CHI@JAC,1,48,11,JAC,CHI,1,10,63,(3:11) M.Jones-Drew left end to CHI 43 for 20 yards (C.Conte).,0,3,2012 -20121007_CHI@JAC,1,47,25,JAC,CHI,1,10,43,(2:25) B.Gabbert pass incomplete short right to M.Thomas (T.Jennings).,0,3,2012 -20121007_CHI@JAC,1,47,19,JAC,CHI,2,10,43,(2:19) (Shotgun) R.Jennings left end to CHI 47 for -4 yards (D.Moore).,0,3,2012 -20121007_CHI@JAC,1,46,36,JAC,CHI,3,14,47,(1:36) (Shotgun) B.Gabbert pass deep right to J.Blackmon to CHI 28 for 19 yards (B.Urlacher).,0,3,2012 -20121007_CHI@JAC,1,45,50,JAC,CHI,1,10,28,(:50) B.Gabbert pass incomplete short right to K.Elliott.,0,3,2012 -20121007_CHI@JAC,1,45,46,JAC,CHI,2,10,28,(:46) M.Jones-Drew left end to CHI 26 for 2 yards (C.Tillman).,0,3,2012 -20121007_CHI@JAC,1,45,8,JAC,CHI,3,8,26,(:08) (Shotgun) B.Gabbert pass short left to M.Lewis to CHI 12 for 14 yards (C.Tillman).,0,3,2012 -20121007_CHI@JAC,2,45,0,JAC,CHI,1,10,12,(15:00) PENALTY on JAX-E.Britton False Start 5 yards enforced at CHI 12 - No Play.,0,3,2012 -20121007_CHI@JAC,2,45,0,JAC,CHI,1,15,17,(15:00) (Shotgun) B.Gabbert pass incomplete deep left to M.Lewis (N.Roach).,0,3,2012 -20121007_CHI@JAC,2,44,54,JAC,CHI,2,15,17,(14:54) B.Gabbert pass incomplete deep middle to M.Lewis.,0,3,2012 -20121007_CHI@JAC,2,44,49,JAC,CHI,3,15,17,(14:49) (Shotgun) B.Gabbert pass short right to M.Thomas to CHI 13 for 4 yards (M.Wright).,0,3,2012 -20121007_CHI@JAC,2,44,6,JAC,CHI,4,11,13,(14:06) J.Scobee 31 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,3,2012 -20121007_CHI@JAC,2,44,6,JAC,CHI,,,13,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,3,3,2012 -20121007_CHI@JAC,2,44,2,CHI,JAC,1,10,80,(14:02) J.Cutler pass short left to B.Marshall to CHI 31 for 11 yards (D.Cox).,3,3,2012 -20121007_CHI@JAC,2,43,24,CHI,JAC,1,10,69,(13:24) M.Forte up the middle to CHI 33 for 2 yards (T.Knighton; A.Lane).,3,3,2012 -20121007_CHI@JAC,2,42,53,CHI,JAC,2,8,67,(12:53) J.Cutler pass short right to A.Jeffery to CHI 43 for 10 yards (R.Mathis).,3,3,2012 -20121007_CHI@JAC,2,42,42,CHI,JAC,1,10,57,(12:42) M.Forte left end to 50 for 7 yards (P.Posluszny).,3,3,2012 -20121007_CHI@JAC,2,42,12,CHI,JAC,2,3,50,(12:12) M.Forte up the middle to JAX 45 for 5 yards (C.Mosley).,3,3,2012 -20121007_CHI@JAC,2,41,41,CHI,JAC,1,10,45,(11:41) M.Bush up the middle to JAX 43 for 2 yards (C.Mosley).,3,3,2012 -20121007_CHI@JAC,2,41,10,CHI,JAC,2,8,43,(11:10) J.Cutler pass incomplete short right to A.Jeffery. PENALTY on CHI-A.Jeffery Offensive Pass Interference 10 yards enforced at JAX 43 - No Play.,3,3,2012 -20121007_CHI@JAC,2,41,5,CHI,JAC,2,18,53,(11:05) (Shotgun) J.Cutler scrambles left end pushed ob at JAX 40 for 13 yards (A.Ross).,3,3,2012 -20121007_CHI@JAC,2,40,36,CHI,JAC,3,5,40,(10:36) (Shotgun) J.Cutler pass incomplete short left to M.Forte.,3,3,2012 -20121007_CHI@JAC,2,40,30,CHI,JAC,4,5,40,(10:30) A.Podlesh punts 37 yards to JAX 3 Center-P.Mannelly downed by CHI-E.Weems.,3,3,2012 -20121007_CHI@JAC,2,40,20,JAC,CHI,1,10,97,(10:20) M.Jones-Drew up the middle to JAX 4 for 1 yard (I.Idonije).,3,3,2012 -20121007_CHI@JAC,2,39,41,JAC,CHI,2,9,96,(9:41) B.Gabbert pass short right to M.Thomas pushed ob at JAX 9 for 5 yards (T.Jennings).,3,3,2012 -20121007_CHI@JAC,2,39,30,JAC,CHI,3,4,91,(9:30) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas.,3,3,2012 -20121007_CHI@JAC,2,39,24,JAC,CHI,4,4,91,(9:24) B.Anger punts 65 yards to CHI 26 Center-J.Cain. D.Hester pushed ob at CHI 30 for 4 yards (J.Stanford).,3,3,2012 -20121007_CHI@JAC,2,39,10,CHI,JAC,1,10,70,(9:10) M.Forte left guard to CHI 28 for -2 yards (T.Knighton).,3,3,2012 -20121007_CHI@JAC,2,38,37,CHI,JAC,2,12,72,(8:37) J.Cutler pass short right to B.Marshall to CHI 35 for 7 yards (A.Ross).,3,3,2012 -20121007_CHI@JAC,2,37,55,CHI,JAC,3,5,65,(7:55) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall (D.Cox).,3,3,2012 -20121007_CHI@JAC,2,37,49,CHI,JAC,4,5,65,(7:49) A.Podlesh punts 43 yards to JAX 22 Center-P.Mannelly fair catch by A.Ross.,3,3,2012 -20121007_CHI@JAC,2,37,42,JAC,CHI,1,10,78,(7:42) M.Jones-Drew left end to JAX 23 for 1 yard (C.Conte).,3,3,2012 -20121007_CHI@JAC,2,37,2,JAC,CHI,2,9,77,(7:02) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 31 for 8 yards (C.Tillman) [C.Wootton].,3,3,2012 -20121007_CHI@JAC,2,36,20,JAC,CHI,3,1,69,(6:20) B.Gabbert up the middle to JAX 33 for 2 yards (L.Briggs).,3,3,2012 -20121007_CHI@JAC,2,35,37,JAC,CHI,1,10,67,(5:37) B.Gabbert pass short left to J.Blackmon to CHI 48 for 19 yards (T.Jennings). PENALTY on JAX-C.Bradfield Offensive Holding 10 yards enforced at JAX 33 - No Play.,3,3,2012 -20121007_CHI@JAC,2,35,12,JAC,CHI,1,20,77,(5:12) M.Jones-Drew up the middle to JAX 25 for 2 yards (L.Briggs).,3,3,2012 -20121007_CHI@JAC,2,34,35,JAC,CHI,2,18,75,(4:35) (Shotgun) B.Gabbert pass short left to K.Elliott pushed ob at JAX 36 for 11 yards (D.Moore).,3,3,2012 -20121007_CHI@JAC,2,34,3,JAC,CHI,3,7,64,(4:03) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 45 for 9 yards (T.Jennings).,3,3,2012 -20121007_CHI@JAC,2,33,29,JAC,CHI,1,10,55,(3:29) M.Jones-Drew up the middle to JAX 46 for 1 yard (M.Toeaina; I.Idonije).,3,3,2012 -20121007_CHI@JAC,2,32,53,JAC,CHI,2,9,54,(2:53) (Shotgun) B.Gabbert pass deep right to C.Shorts to CHI 20 for 34 yards (T.Jennings).,3,3,2012 -20121007_CHI@JAC,2,32,14,JAC,CHI,1,10,20,(2:14) M.Jones-Drew up the middle to CHI 21 for -1 yards (C.Conte).,3,3,2012 -20121007_CHI@JAC,2,32,0,JAC,CHI,2,11,21,(2:00) (Shotgun) B.Gabbert sacked at CHI 28 for -7 yards (C.Wootton). FUMBLES (C.Wootton) RECOVERED by CHI-J.Peppers at CHI 23. J.Peppers to CHI 23 for no gain (E.Monroe).,3,3,2012 -20121007_CHI@JAC,2,31,55,CHI,JAC,1,10,77,(1:55) (Shotgun) J.Cutler pass short right to M.Forte to CHI 31 for 8 yards (P.Posluszny).,3,3,2012 -20121007_CHI@JAC,2,31,32,CHI,JAC,2,2,69,(1:32) (Shotgun) J.Cutler pass short left to M.Forte to CHI 43 for 12 yards (D.Landry).,3,3,2012 -20121007_CHI@JAC,2,31,5,CHI,JAC,1,10,57,(1:05) (No Huddle Shotgun) J.Cutler pass short right to K.Davis to JAX 45 for 12 yards (D.Landry). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at CHI 43 - No Play.,3,3,2012 -20121007_CHI@JAC,2,30,57,CHI,JAC,1,20,67,(:57) (Shotgun) J.Cutler pass short right to B.Marshall to CHI 48 for 15 yards (P.Posluszny). CHI-B.Marshall was injured during the play. His return is Questionable.,3,3,2012 -20121007_CHI@JAC,2,30,48,CHI,JAC,2,5,52,(:48) (Shotgun) J.Cutler pass incomplete deep right to D.Hester.,3,3,2012 -20121007_CHI@JAC,2,30,43,CHI,JAC,3,5,52,(:43) (Shotgun) J.Cutler pass short middle to D.Hester to JAX 42 for 10 yards (R.Mathis).,3,3,2012 -20121007_CHI@JAC,2,30,35,CHI,JAC,1,10,42,(:35) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,3,3,2012 -20121007_CHI@JAC,2,30,30,CHI,JAC,2,10,42,(:30) (Shotgun) J.Cutler pass incomplete short right to M.Forte.,3,3,2012 -20121007_CHI@JAC,2,30,26,CHI,JAC,3,10,42,(:26) (Shotgun) J.Cutler pass incomplete short right to D.Sanzenbacher.,3,3,2012 -20121007_CHI@JAC,2,30,20,CHI,JAC,4,10,42,(:20) A.Podlesh punts 42 yards to end zone Center-P.Mannelly Touchback. JAX-D.Landry was injured during the play. His return is Questionable.,3,3,2012 -20121007_CHI@JAC,2,30,12,JAC,CHI,1,10,80,(:12) B.Gabbert kneels to JAX 19 for -1 yards.,3,3,2012 -20121007_CHI@JAC,3,30,0,JAC,CHI,,,80,J.Scobee kicks 72 yards from JAX 35 to CHI -7. D.Hester ran ob at CHI 21 for 28 yards (J.Stanford). PENALTY on CHI-S.McManis Offensive Holding 10 yards enforced at CHI 21.,3,3,2012 -20121007_CHI@JAC,3,30,0,CHI,JAC,1,10,89,(15:00) M.Forte up the middle to CHI 14 for 3 yards (K.Bosworth).,3,3,2012 -20121007_CHI@JAC,3,29,12,CHI,JAC,2,7,86,(14:12) J.Cutler pass incomplete deep right to B.Marshall [J.Mincey].,3,3,2012 -20121007_CHI@JAC,3,29,12,CHI,JAC,3,7,86,(14:12) (Shotgun) J.Cutler pass deep middle to B.Marshall to CHI 32 for 18 yards (P.Posluszny).,3,3,2012 -20121007_CHI@JAC,3,28,31,CHI,JAC,1,10,68,(13:31) M.Forte up the middle to CHI 32 for no gain (R.Allen).,3,3,2012 -20121007_CHI@JAC,3,27,49,CHI,JAC,2,10,68,(12:49) J.Cutler pass short middle to B.Marshall to CHI 39 for 7 yards (R.Mathis).,3,3,2012 -20121007_CHI@JAC,3,27,6,CHI,JAC,3,3,61,(12:06) (Shotgun) J.Cutler pass short left to D.Sanzenbacher to CHI 46 for 7 yards (D.Cox).,3,3,2012 -20121007_CHI@JAC,3,26,31,CHI,JAC,1,10,54,(11:31) J.Cutler sacked at CHI 41 for -5 yards (A.Lane).,3,3,2012 -20121007_CHI@JAC,3,26,2,CHI,JAC,2,15,59,(11:02) (Shotgun) J.Cutler pass short middle to B.Marshall to CHI 47 for 6 yards (R.Allen).,3,3,2012 -20121007_CHI@JAC,3,25,22,CHI,JAC,3,9,53,(10:22) (Shotgun) J.Cutler pass short middle to B.Marshall to JAX 45 for 8 yards (D.Cox).,3,3,2012 -20121007_CHI@JAC,3,24,34,CHI,JAC,4,1,45,(9:34) J.Cutler pass short middle to B.Marshall to JAX 33 for 12 yards (K.Bosworth) [J.Mincey]. PENALTY on JAX Roughing the Passer 15 yards enforced at JAX 33.,3,3,2012 -20121007_CHI@JAC,3,24,9,CHI,JAC,1,10,18,(9:09) M.Forte up the middle to JAX 14 for 4 yards (T.Knighton).,3,3,2012 -20121007_CHI@JAC,3,23,35,CHI,JAC,2,6,14,(8:35) M.Forte up the middle to JAX 16 for -2 yards (C.Mosley).,3,3,2012 -20121007_CHI@JAC,3,22,50,CHI,JAC,3,8,16,(7:50) (Shotgun) J.Cutler scrambles right end to JAX 7 for 9 yards (D.Lowery).,3,3,2012 -20121007_CHI@JAC,3,22,26,CHI,JAC,1,7,7,(7:26) J.Cutler pass incomplete short left to M.Bush.,3,3,2012 -20121007_CHI@JAC,3,22,22,CHI,JAC,2,7,7,(7:22) J.Cutler pass short middle to B.Marshall to JAX 3 for 4 yards (P.Posluszny).,3,3,2012 -20121007_CHI@JAC,3,21,39,CHI,JAC,3,3,3,(6:39) PENALTY on CHI-G.Carimi False Start 5 yards enforced at JAX 3 - No Play.,3,3,2012 -20121007_CHI@JAC,3,21,16,CHI,JAC,3,8,8,(6:16) (Shotgun) PENALTY on CHI-G.Carimi False Start 5 yards enforced at JAX 8 - No Play.,3,3,2012 -20121007_CHI@JAC,3,20,53,CHI,JAC,3,13,13,(5:53) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall (D.Lowery). JAX-D.Lowery was injured during the play. His return is Questionable.,3,3,2012 -20121007_CHI@JAC,3,20,46,CHI,JAC,4,13,13,(5:46) R.Gould 31 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,3,2012 -20121007_CHI@JAC,3,20,46,CHI,JAC,,,13,R.Gould kicks 66 yards from CHI 35 to JAX -1. R.Jennings to JAX 25 for 26 yards (A.Allen).,6,3,2012 -20121007_CHI@JAC,3,20,35,JAC,CHI,1,10,75,(5:35) M.Jones-Drew left end pushed ob at JAX 25 for no gain (L.Briggs). PENALTY on JAX-E.Monroe Offensive Holding 10 yards enforced at JAX 25 - No Play.,3,6,2012 -20121007_CHI@JAC,3,20,16,JAC,CHI,1,20,85,(5:16) (Shotgun) B.Gabbert pass deep left intended for J.Blackmon INTERCEPTED by C.Tillman at JAX 36. C.Tillman for 36 yards TOUCHDOWN.,3,6,2012 -20121007_CHI@JAC,3,20,16,CHI,JAC,,,85,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,6,3,2012 -20121007_CHI@JAC,3,20,16,CHI,JAC,,,85,R.Gould kicks 71 yards from CHI 35 to JAX -6. R.Jennings to JAX 12 for 18 yards (A.Walters). PENALTY on JAX-G.Jones Offensive Holding 6 yards enforced at JAX 12.,13,3,2012 -20121007_CHI@JAC,3,19,59,JAC,CHI,1,10,94,(4:59) PENALTY on JAX-U.Nwaneri False Start 3 yards enforced at JAX 6 - No Play.,3,13,2012 -20121007_CHI@JAC,3,19,58,JAC,CHI,1,13,97,(4:58) B.Gabbert pass incomplete deep right to J.Blackmon.,3,13,2012 -20121007_CHI@JAC,3,19,58,JAC,CHI,2,13,97,(4:58) (Shotgun) B.Gabbert pass short middle to M.Lewis to JAX 8 for 5 yards (D.Moore).,3,13,2012 -20121007_CHI@JAC,3,19,10,JAC,CHI,3,8,92,(4:10) (Shotgun) B.Gabbert sacked at JAX 2 for -6 yards (L.Briggs).,3,13,2012 -20121007_CHI@JAC,3,18,43,JAC,CHI,4,14,98,(3:43) B.Anger punts 55 yards to CHI 43 Center-J.Cain. D.Hester to JAX 45 for 12 yards (J.Stanford). PENALTY on CHI-S.McManis Offensive Holding 10 yards enforced at CHI 43.,3,13,2012 -20121007_CHI@JAC,3,18,31,CHI,JAC,1,10,67,(3:31) J.Cutler pass short left to M.Bush to CHI 44 for 11 yards (J.Stanford).,13,3,2012 -20121007_CHI@JAC,3,17,51,CHI,JAC,1,10,56,(2:51) M.Bush up the middle to CHI 48 for 4 yards (T.Alualu).,13,3,2012 -20121007_CHI@JAC,3,17,13,CHI,JAC,2,6,52,(2:13) J.Cutler pass incomplete short right to K.Adams.,13,3,2012 -20121007_CHI@JAC,3,17,8,CHI,JAC,3,6,52,(2:08) (Shotgun) J.Cutler pass deep right to B.Marshall to JAX 31 for 21 yards (D.Cox).,13,3,2012 -20121007_CHI@JAC,3,16,20,CHI,JAC,1,10,31,(1:20) J.Cutler pass incomplete short left to A.Jeffery.,13,3,2012 -20121007_CHI@JAC,3,16,16,CHI,JAC,2,10,31,(1:16) J.Cutler pass incomplete short left to D.Hester (R.Mathis).,13,3,2012 -20121007_CHI@JAC,3,16,16,CHI,JAC,3,10,31,(1:16) (Shotgun) PENALTY on CHI-K.Davis False Start 5 yards enforced at JAX 31 - No Play.,13,3,2012 -20121007_CHI@JAC,3,16,9,CHI,JAC,3,15,36,(1:09) (Shotgun) J.Cutler pass short right to M.Bush to JAX 21 for 15 yards (P.Posluszny).,13,3,2012 -20121007_CHI@JAC,3,15,24,CHI,JAC,1,10,21,(:24) M.Bush up the middle to JAX 10 for 11 yards (D.Landry). JAX-D.Landry was injured during the play. His return is Questionable.,13,3,2012 -20121007_CHI@JAC,4,15,0,CHI,JAC,1,10,10,(15:00) J.Cutler pass short right to A.Jeffery for 10 yards TOUCHDOWN.,13,3,2012 -20121007_CHI@JAC,4,15,0,CHI,JAC,,,10,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,13,3,2012 -20121007_CHI@JAC,4,15,0,CHI,JAC,,,10,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,20,3,2012 -20121007_CHI@JAC,4,14,55,JAC,CHI,1,10,80,(14:55) B.Gabbert pass short left to M.Lewis to JAX 19 for -1 yards (B.Urlacher).,3,20,2012 -20121007_CHI@JAC,4,14,18,JAC,CHI,2,11,81,(14:18) M.Jones-Drew up the middle to JAX 46 for 27 yards (C.Conte).,3,20,2012 -20121007_CHI@JAC,4,13,40,JAC,CHI,1,10,54,(13:40) B.Gabbert pass short middle to M.Jones-Drew to JAX 49 for 3 yards (N.Roach).,3,20,2012 -20121007_CHI@JAC,4,13,4,JAC,CHI,2,7,51,(13:04) B.Gabbert pass incomplete short middle to J.Blackmon.,3,20,2012 -20121007_CHI@JAC,4,12,59,JAC,CHI,3,7,51,(12:59) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon.,3,20,2012 -20121007_CHI@JAC,4,12,55,JAC,CHI,4,7,51,(12:55) (Punt formation) B.Anger punts 38 yards to CHI 13 Center-J.Cain. D.Hester pushed ob at CHI 11 for -2 yards (J.Parmele). PENALTY on CHI-D.Hester Face Mask (15 Yards) 5 yards enforced at CHI 11.,3,20,2012 -20121007_CHI@JAC,4,12,40,CHI,JAC,1,10,94,(12:40) M.Forte up the middle to CHI 10 for 4 yards (A.Lane).,20,3,2012 -20121007_CHI@JAC,4,11,56,CHI,JAC,2,6,90,(11:56) J.Cutler pass deep right to D.Hester to CHI 49 for 39 yards (R.Mathis). Jacksonville challenged the pass completion ruling and the play was Upheld. (Timeout #1.),20,3,2012 -20121007_CHI@JAC,4,11,40,CHI,JAC,1,10,51,(11:40) M.Forte up the middle to JAX 42 for 9 yards (K.Bosworth).,20,3,2012 -20121007_CHI@JAC,4,10,56,CHI,JAC,2,1,42,(10:56) M.Forte up the middle to JAX 31 for 11 yards (D.Landry).,20,3,2012 -20121007_CHI@JAC,4,10,12,CHI,JAC,1,10,31,(10:12) M.Forte right end to JAX 24 for 7 yards (K.Bosworth).,20,3,2012 -20121007_CHI@JAC,4,9,25,CHI,JAC,2,3,24,(9:25) M.Forte up the middle to JAX 24 for no gain (C.Mosley).,20,3,2012 -20121007_CHI@JAC,4,8,44,CHI,JAC,3,3,24,(8:44) J.Cutler pass deep right to B.Marshall for 24 yards TOUCHDOWN.,20,3,2012 -20121007_CHI@JAC,4,8,44,CHI,JAC,,,24,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,20,3,2012 -20121007_CHI@JAC,4,8,44,CHI,JAC,,,24,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,27,3,2012 -20121007_CHI@JAC,4,8,37,JAC,CHI,1,10,80,(8:37) (Shotgun) B.Gabbert pass short left to K.Elliott to JAX 26 for 6 yards (C.Tillman).,3,27,2012 -20121007_CHI@JAC,4,8,12,JAC,CHI,2,4,74,(8:12) (Shotgun) B.Gabbert pass incomplete short middle to M.Thomas.,3,27,2012 -20121007_CHI@JAC,4,8,9,JAC,CHI,3,4,74,(8:09) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas (D.Moore). PENALTY on CHI-I.Idonije Defensive Offside 5 yards enforced at JAX 26 - No Play.,3,27,2012 -20121007_CHI@JAC,4,8,5,JAC,CHI,1,10,69,(8:05) (Shotgun) B.Gabbert pass short middle intended for M.Jones-Drew INTERCEPTED by L.Briggs at JAX 36. L.Briggs for 36 yards TOUCHDOWN.,3,27,2012 -20121007_CHI@JAC,4,8,5,CHI,JAC,,,69,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,27,3,2012 -20121007_CHI@JAC,4,8,5,CHI,JAC,,,69,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,34,3,2012 -20121007_CHI@JAC,4,7,54,JAC,CHI,1,10,80,(7:54) (Shotgun) B.Gabbert sacked at JAX 15 for -5 yards (C.Wootton).,3,34,2012 -20121007_CHI@JAC,4,7,36,JAC,CHI,2,15,85,(7:36) (Shotgun) B.Gabbert pass short right to M.Thomas to JAX 18 for 3 yards (T.Jennings).,3,34,2012 -20121007_CHI@JAC,4,7,3,JAC,CHI,3,12,82,(7:03) (Shotgun) B.Gabbert pass short right to M.Lewis to JAX 23 for 5 yards (G.Hayes).,3,34,2012 -20121007_CHI@JAC,4,6,50,JAC,CHI,4,7,77,(6:50) B.Anger punts 50 yards to CHI 27 Center-J.Cain downed by JAX-J.Cain.,3,34,2012 -20121007_CHI@JAC,4,6,31,CHI,JAC,1,10,73,(6:31) M.Forte up the middle to CHI 31 for 4 yards (D.Landry).,34,3,2012 -20121007_CHI@JAC,4,5,49,CHI,JAC,2,6,69,(5:49) M.Forte up the middle to CHI 34 for 3 yards (P.Posluszny).,34,3,2012 -20121007_CHI@JAC,4,5,6,CHI,JAC,3,3,66,(5:06) M.Forte right end to CHI 41 for 7 yards (T.Knighton).,34,3,2012 -20121007_CHI@JAC,4,4,20,CHI,JAC,1,10,59,(4:20) A.Allen up the middle to CHI 46 for 5 yards (T.Alualu). QB Change - Jason Campbell,34,3,2012 -20121007_CHI@JAC,4,3,36,CHI,JAC,2,5,54,(3:36) A.Allen up the middle to 50 for 4 yards (C.Mosley; P.Posluszny).,34,3,2012 -20121007_CHI@JAC,4,2,52,CHI,JAC,3,1,50,(2:52) A.Allen up the middle to JAX 47 for 3 yards (DA.Smith).,34,3,2012 -20121007_CHI@JAC,4,2,7,CHI,JAC,1,10,47,(2:07) A.Allen up the middle to JAX 46 for 1 yard (D.Landry; DA.Smith).,34,3,2012 -20121007_CHI@JAC,4,2,0,CHI,JAC,2,9,46,(2:00) A.Allen up the middle for 46 yards TOUCHDOWN.,34,3,2012 -20121007_CHI@JAC,4,2,0,CHI,JAC,,,46,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,34,3,2012 -20121007_CHI@JAC,4,2,0,CHI,JAC,,,46,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,41,3,2012 -20121007_CHI@JAC,4,1,49,JAC,CHI,1,10,80,(1:49) R.Jennings up the middle to JAX 18 for -2 yards (A.Okoye). PENALTY on CHI-M.Toeaina Defensive Offside 5 yards enforced at JAX 20 - No Play.,3,41,2012 -20121007_CHI@JAC,4,1,45,JAC,CHI,1,5,75,(1:45) R.Jennings up the middle to JAX 29 for 4 yards (B.Costanzo).,3,41,2012 -20121007_CHI@JAC,4,1,13,JAC,CHI,2,1,71,(1:13) B.Gabbert pass incomplete short left to J.Blackmon (G.Hayes).,3,41,2012 -20121007_CHI@JAC,4,1,8,JAC,CHI,3,1,71,(1:08) R.Jennings up the middle to JAX 31 for 2 yards (M.Toeaina). PENALTY on CHI-C.Wootton Defensive Offside 5 yards enforced at JAX 29 - No Play.,3,41,2012 -20121007_CHI@JAC,4,1,3,JAC,CHI,1,10,66,(1:03) R.Jennings up the middle to JAX 37 for 3 yards (B.Costanzo).,3,41,2012 -20121007_CHI@JAC,4,0,38,JAC,CHI,2,7,63,(:38) (Shotgun) B.Gabbert pass incomplete short left to M.Thomas.,3,41,2012 -20121007_CHI@JAC,4,0,30,JAC,CHI,3,7,63,(:30) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 38 for 1 yard (G.Hayes).,3,41,2012 -20121007_CHI@JAC,4,0,30,JAC,CHI,,,63,                      ,3,41,2012 -20121007_TEN@MIN,1,0,0,MIN,TEN,,,63,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,0,0,2012 -20121007_TEN@MIN,1,60,0,TEN,MIN,1,10,80,(15:00) C.Johnson left guard to TEN 26 for 6 yards (J.Sanford).,0,0,2012 -20121007_TEN@MIN,1,59,20,TEN,MIN,2,4,74,(14:20) C.Johnson left guard to TEN 25 for -1 yards (E.Henderson).,0,0,2012 -20121007_TEN@MIN,1,58,35,TEN,MIN,3,5,75,(13:35) (Shotgun) M.Hasselbeck pass short left to D.Reynaud pushed ob at TEN 42 for 17 yards (A.Winfield).,0,0,2012 -20121007_TEN@MIN,1,58,6,TEN,MIN,1,10,58,(13:06) M.Hasselbeck pass short middle to N.Washington to MIN 46 for 12 yards (Team).,0,0,2012 -20121007_TEN@MIN,1,57,21,TEN,MIN,1,10,46,(12:21) M.Hasselbeck pass short right to N.Washington pushed ob at MIN 39 for 7 yards (J.Robinson).,0,0,2012 -20121007_TEN@MIN,1,56,53,TEN,MIN,2,3,39,(11:53) C.Johnson up the middle to MIN 39 for no gain (L.Guion).,0,0,2012 -20121007_TEN@MIN,1,56,10,TEN,MIN,3,3,39,(11:10) (Shotgun) M.Hasselbeck sacked at MIN 47 for -8 yards (B.Robison).,0,0,2012 -20121007_TEN@MIN,1,55,43,TEN,MIN,4,11,47,(10:43) B.Kern punts 37 yards to MIN 10 Center-B.Brinkley fair catch by M.Sherels.,0,0,2012 -20121007_TEN@MIN,1,55,35,MIN,TEN,1,10,90,(10:35) C.Ponder pass incomplete short right to J.Simpson (J.McCourty).,0,0,2012 -20121007_TEN@MIN,1,55,29,MIN,TEN,2,10,90,(10:29) A.Peterson up the middle to MIN 13 for 3 yards (C.McCarthy).,0,0,2012 -20121007_TEN@MIN,1,54,55,MIN,TEN,3,7,87,(9:55) (Shotgun) C.Ponder pass short middle to A.Peterson to MIN 15 for 2 yards (C.McCarthy; J.Babineaux).,0,0,2012 -20121007_TEN@MIN,1,54,15,MIN,TEN,4,5,85,(9:15) C.Kluwe punts 52 yards to TEN 33 Center-C.Loeffler. D.Reynaud to TEN 47 for 14 yards (H.Smith; M.Sherels).,0,0,2012 -20121007_TEN@MIN,1,54,2,TEN,MIN,1,10,53,(9:02) M.Hasselbeck pass incomplete short left to K.Wright (K.Williams).,0,0,2012 -20121007_TEN@MIN,1,53,58,TEN,MIN,2,10,53,(8:58) C.Johnson up the middle to 50 for 3 yards (C.Greenway).,0,0,2012 -20121007_TEN@MIN,1,53,14,TEN,MIN,3,7,50,(8:14) (Shotgun) M.Hasselbeck pass short middle to K.Wright to MIN 47 for 3 yards (H.Smith).,0,0,2012 -20121007_TEN@MIN,1,52,37,TEN,MIN,4,4,47,(7:37) B.Kern punts 38 yards to MIN 9 Center-B.Brinkley out of bounds.,0,0,2012 -20121007_TEN@MIN,1,52,30,MIN,TEN,1,10,91,(7:30) (Shotgun) C.Ponder scrambles right end to MIN 22 for 13 yards (Team).,0,0,2012 -20121007_TEN@MIN,1,51,50,MIN,TEN,1,10,78,(6:50) A.Peterson left end to MIN 20 for -2 yards (A.Verner).,0,0,2012 -20121007_TEN@MIN,1,51,16,MIN,TEN,2,12,80,(6:16) C.Ponder pass short right to M.Jenkins to MIN 35 for 15 yards (J.Babineaux).,0,0,2012 -20121007_TEN@MIN,1,50,35,MIN,TEN,1,10,65,(5:35) C.Ponder pass short right to K.Rudolph to MIN 39 for 4 yards (J.McCourty).,0,0,2012 -20121007_TEN@MIN,1,49,57,MIN,TEN,2,6,61,(4:57) (Shotgun) C.Ponder pass deep left to P.Harvin to TEN 16 for 45 yards (A.Verner).,0,0,2012 -20121007_TEN@MIN,1,49,26,MIN,TEN,1,10,16,(4:26) A.Peterson right guard to TEN 15 for 1 yard (M.Martin).,0,0,2012 -20121007_TEN@MIN,1,48,50,MIN,TEN,2,9,15,(3:50) A.Peterson left end to TEN 16 for -1 yards (W.Witherspoon; A.Verner).,0,0,2012 -20121007_TEN@MIN,1,48,14,MIN,TEN,3,10,16,(3:14) (Shotgun) C.Ponder pass short right to M.Jenkins to TEN 4 for 12 yards (A.Verner; J.Babineaux).,0,0,2012 -20121007_TEN@MIN,1,47,35,MIN,TEN,1,4,4,(2:35) (Shotgun) P.Harvin right guard for 4 yards TOUCHDOWN.,0,0,2012 -20121007_TEN@MIN,1,47,35,MIN,TEN,,,4,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121007_TEN@MIN,1,47,35,MIN,TEN,,,4,B.Walsh kicks 63 yards from MIN 35 to TEN 2. D.Reynaud to TEN 32 for 30 yards (E.Griffen).,7,0,2012 -20121007_TEN@MIN,1,47,24,TEN,MIN,1,10,68,(2:24) C.Johnson left guard to TEN 30 for -2 yards (F.Evans; A.Winfield).,0,7,2012 -20121007_TEN@MIN,1,46,47,TEN,MIN,2,12,70,(1:47) M.Hasselbeck pass incomplete short middle to C.Stevens (C.Greenway).,0,7,2012 -20121007_TEN@MIN,1,46,44,TEN,MIN,3,12,70,(1:44) (Shotgun) M.Hasselbeck scrambles up the middle to TEN 42 for 12 yards (H.Smith). Minnesota challenged the first down ruling and the play was REVERSED. (Shotgun) M.Hasselbeck scrambles up the middle to TEN 41 for 11 yards (H.Smith).,0,7,2012 -20121007_TEN@MIN,1,46,9,TEN,MIN,4,1,59,(1:09) (Run formation) J.Babineaux right end to MIN 49 for 10 yards (T.McKenzie).,0,7,2012 -20121007_TEN@MIN,1,45,35,TEN,MIN,1,10,49,(:35) C.Johnson left guard to MIN 47 for 2 yards (J.Brinkley). FUMBLES (J.Brinkley) RECOVERED by MIN-H.Smith at MIN 44. PENALTY on MIN-C.Cook Unnecessary Roughness 15 yards enforced at MIN 44.,0,7,2012 -20121007_TEN@MIN,1,45,28,MIN,TEN,1,10,71,(:28) A.Peterson up the middle to MIN 36 for 7 yards (Team). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at MIN 29 - No Play.,7,0,2012 -20121007_TEN@MIN,1,45,1,MIN,TEN,1,20,81,(:01) A.Peterson up the middle to MIN 21 for 2 yards (M.Martin; Z.Brown).,7,0,2012 -20121007_TEN@MIN,2,45,0,MIN,TEN,2,18,79,(15:00) C.Ponder pass deep left to D.Aromashodu to MIN 40 for 19 yards (Z.Brown).,7,0,2012 -20121007_TEN@MIN,2,44,35,MIN,TEN,1,10,60,(14:35) P.Harvin left end to MIN 44 for 4 yards (A.Verner).,7,0,2012 -20121007_TEN@MIN,2,43,57,MIN,TEN,2,6,56,(13:57) (Shotgun) C.Ponder pass incomplete short right to P.Harvin (R.Mouton).,7,0,2012 -20121007_TEN@MIN,2,43,53,MIN,TEN,3,6,56,(13:53) (Shotgun) C.Ponder pass short middle to A.Peterson to MIN 47 for 3 yards (C.McCarthy; M.Martin).,7,0,2012 -20121007_TEN@MIN,2,43,16,MIN,TEN,4,3,53,(13:16) C.Kluwe punts 35 yards to TEN 18 Center-C.Loeffler fair catch by D.Reynaud.,7,0,2012 -20121007_TEN@MIN,2,43,8,TEN,MIN,1,10,82,(13:08) M.Hasselbeck pass short right to Q.Johnson to TEN 33 for 15 yards (C.Greenway; L.Guion).,0,7,2012 -20121007_TEN@MIN,2,42,33,TEN,MIN,1,10,67,(12:33) PENALTY on TEN-S.Hutchinson False Start 5 yards enforced at TEN 33 - No Play.,0,7,2012 -20121007_TEN@MIN,2,42,14,TEN,MIN,1,15,72,(12:14) M.Hasselbeck pass short right to C.Stevens to TEN 24 for -4 yards (C.Greenway).,0,7,2012 -20121007_TEN@MIN,2,41,35,TEN,MIN,2,19,76,(11:35) (Shotgun) M.Hasselbeck pass incomplete short left to K.Britt (J.Sanford).,0,7,2012 -20121007_TEN@MIN,2,41,31,TEN,MIN,3,19,76,(11:31) (Shotgun) M.Hasselbeck pass short left intended for N.Washington INTERCEPTED by A.Winfield at TEN 34. A.Winfield to TEN 28 for 6 yards (N.Washington). PENALTY on MIN-H.Smith Disqualification 15 yards enforced at TEN 28. Harrison Smith ejected from game for making contact with official.,0,7,2012 -20121007_TEN@MIN,2,41,24,MIN,TEN,1,10,43,(11:24) A.Peterson up the middle to TEN 39 for 4 yards (Z.Brown). PENALTY on TEN-C.Sensabaugh Unnecessary Roughness 15 yards enforced at TEN 39.,7,0,2012 -20121007_TEN@MIN,2,41,0,MIN,TEN,1,10,24,(11:00) C.Ponder pass incomplete short middle to K.Rudolph.,7,0,2012 -20121007_TEN@MIN,2,40,51,MIN,TEN,2,10,24,(10:51) C.Ponder pass incomplete deep right to J.Simpson.,7,0,2012 -20121007_TEN@MIN,2,40,45,MIN,TEN,3,10,24,(10:45) (Shotgun) C.Ponder sacked at TEN 24 for 0 yards (M.Martin).,7,0,2012 -20121007_TEN@MIN,2,40,32,MIN,TEN,4,10,24,(10:32) B.Walsh 42 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,0,2012 -20121007_TEN@MIN,2,40,32,MIN,TEN,,,24,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,10,0,2012 -20121007_TEN@MIN,2,40,27,TEN,MIN,1,10,80,(10:27) C.Johnson up the middle to TEN 22 for 2 yards (B.Robison; K.Williams).,0,10,2012 -20121007_TEN@MIN,2,39,49,TEN,MIN,2,8,78,(9:49) PENALTY on TEN-D.Stewart False Start 5 yards enforced at TEN 22 - No Play.,0,10,2012 -20121007_TEN@MIN,2,39,34,TEN,MIN,2,13,83,(9:34) M.Hasselbeck pass short left to C.Stevens to TEN 38 for 21 yards (E.Henderson). FUMBLES (E.Henderson) ball out of bounds at TEN 35.,0,10,2012 -20121007_TEN@MIN,2,39,11,TEN,MIN,1,10,65,(9:11) C.Johnson left end to TEN 37 for 2 yards (C.Cook).,0,10,2012 -20121007_TEN@MIN,2,38,30,TEN,MIN,2,8,63,(8:30) M.Hasselbeck pass incomplete short left to N.Washington (C.Cook).,0,10,2012 -20121007_TEN@MIN,2,38,25,TEN,MIN,3,8,63,(8:25) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 41 for 4 yards (C.Cook; C.Greenway) [E.Griffen].,0,10,2012 -20121007_TEN@MIN,2,37,47,TEN,MIN,4,4,59,(7:47) B.Kern punts 49 yards to MIN 10 Center-B.Brinkley. M.Sherels to MIN 10 for no gain (C.Sensabaugh). PENALTY on MIN-J.Robinson Offensive Holding 5 yards enforced at MIN 10.,0,10,2012 -20121007_TEN@MIN,2,37,34,MIN,TEN,1,10,95,(7:34) C.Ponder pass short middle to P.Harvin to MIN 23 for 18 yards (J.McCourty).,10,0,2012 -20121007_TEN@MIN,2,36,55,MIN,TEN,1,10,77,(6:55) A.Peterson right guard to MIN 24 for 1 yard (A.Ayers).,10,0,2012 -20121007_TEN@MIN,2,36,21,MIN,TEN,2,9,76,(6:21) A.Peterson left guard to MIN 46 for 22 yards (Team).,10,0,2012 -20121007_TEN@MIN,2,35,37,MIN,TEN,1,10,54,(5:37) C.Ponder pass incomplete deep right to P.Harvin.,10,0,2012 -20121007_TEN@MIN,2,35,31,MIN,TEN,2,10,54,(5:31) C.Ponder pass short middle to D.Aromashodu to TEN 45 for 9 yards (J.McCourty).,10,0,2012 -20121007_TEN@MIN,2,34,50,MIN,TEN,3,11,55,(4:50) T.Gerhart right guard to TEN 44 for 11 yards (S.Marks).,10,0,2012 -20121007_TEN@MIN,2,34,23,MIN,TEN,1,10,44,(4:23) C.Ponder scrambles right end ran ob at TEN 33 for 11 yards.,10,0,2012 -20121007_TEN@MIN,2,33,46,MIN,TEN,1,10,33,(3:46) C.Ponder pass short right to P.Harvin to TEN 23 for 10 yards (J.McCourty).,10,0,2012 -20121007_TEN@MIN,2,33,4,MIN,TEN,1,10,23,(3:04) A.Peterson up the middle to TEN 24 for -1 yards (Z.Brown).,10,0,2012 -20121007_TEN@MIN,2,32,29,MIN,TEN,2,11,24,(2:29) A.Peterson up the middle to TEN 18 for 6 yards (Z.Brown).,10,0,2012 -20121007_TEN@MIN,2,32,0,MIN,TEN,3,5,18,(2:00) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,10,0,2012 -20121007_TEN@MIN,2,31,56,MIN,TEN,4,5,18,(1:56) B.Walsh 36 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,0,2012 -20121007_TEN@MIN,2,31,56,MIN,TEN,,,18,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,13,0,2012 -20121007_TEN@MIN,2,31,52,TEN,MIN,1,10,80,(1:52) (Shotgun) PENALTY on TEN-J.Cook False Start 5 yards enforced at TEN 20 - No Play.,0,13,2012 -20121007_TEN@MIN,2,31,52,TEN,MIN,1,15,85,(1:52) (Shotgun) M.Hasselbeck pass incomplete short middle to J.Ringer. Penalty on TEN-M.Roos Offensive Holding declined.,0,13,2012 -20121007_TEN@MIN,2,31,49,TEN,MIN,2,15,85,(1:49) (Shotgun) M.Hasselbeck pass short right to J.Ringer to TEN 17 for 2 yards (C.Greenway).,0,13,2012 -20121007_TEN@MIN,2,31,43,TEN,MIN,3,13,83,(1:43) (Shotgun) M.Hasselbeck sacked at TEN 6 for -11 yards (J.Allen).,0,13,2012 -20121007_TEN@MIN,2,31,37,TEN,MIN,4,24,94,(1:37) B.Kern punts 53 yards to MIN 41 Center-B.Brinkley. M.Sherels pushed ob at MIN 40 for -1 yards.,0,13,2012 -20121007_TEN@MIN,2,31,29,MIN,TEN,1,10,60,(1:29) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 48 for 8 yards (J.McCourty; R.Mouton).,13,0,2012 -20121007_TEN@MIN,2,31,9,MIN,TEN,2,2,52,(1:09) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins. PENALTY on TEN-M.Griffin Unnecessary Roughness 15 yards enforced at MIN 48 - No Play.,13,0,2012 -20121007_TEN@MIN,2,31,4,MIN,TEN,1,10,37,(1:04) C.Ponder pass short left to P.Harvin to TEN 23 for 14 yards (C.McCarthy) [J.Babineaux].,13,0,2012 -20121007_TEN@MIN,2,30,35,MIN,TEN,1,10,23,(:35) (Shotgun) C.Ponder pass short left to K.Rudolph to TEN 24 for -1 yards (A.Verner).,13,0,2012 -20121007_TEN@MIN,2,30,28,MIN,TEN,2,11,24,(:28) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (R.Mouton).,13,0,2012 -20121007_TEN@MIN,2,30,24,MIN,TEN,3,11,24,(:24) (Shotgun) C.Ponder pass intended for K.Rudolph INTERCEPTED by R.Johnson at TEN 2. R.Johnson ran ob at TEN 4 for 2 yards. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,13,0,2012 -20121007_TEN@MIN,2,30,15,TEN,MIN,1,10,96,(:15) M.Hasselbeck kneels to TEN 3 for -1 yards.,0,13,2012 -20121007_TEN@MIN,3,30,0,TEN,MIN,,,96,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,0,13,2012 -20121007_TEN@MIN,3,30,0,MIN,TEN,1,10,80,(15:00) A.Peterson right guard to TEN 46 for 34 yards (J.McCourty).,13,0,2012 -20121007_TEN@MIN,3,29,18,MIN,TEN,1,10,46,(14:18) (Shotgun) A.Peterson left tackle to TEN 45 for 1 yard (J.Casey; A.Verner).,13,0,2012 -20121007_TEN@MIN,3,28,45,MIN,TEN,2,9,45,(13:45) A.Peterson right guard to TEN 48 for -3 yards (A.Ayers; S.Marks).,13,0,2012 -20121007_TEN@MIN,3,28,12,MIN,TEN,3,12,48,(13:12) (Shotgun) C.Ponder pass deep right intended for J.Simpson INTERCEPTED by J.Babineaux at TEN 30. J.Babineaux to TEN 40 for 10 yards (T.Gerhart).,13,0,2012 -20121007_TEN@MIN,3,28,0,TEN,MIN,1,10,60,(13:00) C.Johnson left guard to TEN 43 for 3 yards (K.Williams).,0,13,2012 -20121007_TEN@MIN,3,27,25,TEN,MIN,2,7,57,(12:25) C.Johnson left end to TEN 40 for -3 yards (E.Henderson).,0,13,2012 -20121007_TEN@MIN,3,26,42,TEN,MIN,3,10,60,(11:42) (Shotgun) M.Hasselbeck pass incomplete short middle to D.Williams.,0,13,2012 -20121007_TEN@MIN,3,26,37,TEN,MIN,4,10,60,(11:37) B.Kern punts 37 yards to MIN 23 Center-B.Brinkley fair catch by M.Sherels.,0,13,2012 -20121007_TEN@MIN,3,26,31,MIN,TEN,1,10,77,(11:31) C.Ponder pass short left to J.Carlson to MIN 25 for 2 yards (Z.Brown; J.Babineaux).,13,0,2012 -20121007_TEN@MIN,3,25,58,MIN,TEN,2,8,75,(10:58) C.Ponder pass short left to A.Peterson to MIN 35 for 10 yards (Z.Brown).,13,0,2012 -20121007_TEN@MIN,3,25,16,MIN,TEN,1,10,65,(10:16) A.Peterson up the middle to MIN 40 for 5 yards (J.Babineaux).,13,0,2012 -20121007_TEN@MIN,3,24,41,MIN,TEN,2,5,60,(9:41) T.Gerhart up the middle to TEN 38 for 22 yards (M.Griffin). TEN-M.Griffin was injured during the play. His return is Probable.,13,0,2012 -20121007_TEN@MIN,3,24,8,MIN,TEN,1,10,38,(9:08) C.Ponder pass short right to P.Harvin to TEN 36 for 2 yards (A.Ayers; C.McCarthy).,13,0,2012 -20121007_TEN@MIN,3,23,29,MIN,TEN,2,8,36,(8:29) C.Ponder pass short left to P.Harvin pushed ob at TEN 27 for 9 yards (R.Mouton).,13,0,2012 -20121007_TEN@MIN,3,22,50,MIN,TEN,1,10,27,(7:50) C.Ponder pass short left to R.Ellison to TEN 21 for 6 yards (A.Verner).,13,0,2012 -20121007_TEN@MIN,3,22,11,MIN,TEN,2,4,21,(7:11) (Shotgun) C.Ponder pass short left to D.Aromashodu to TEN 15 for 6 yards (J.Babineaux).,13,0,2012 -20121007_TEN@MIN,3,21,31,MIN,TEN,1,10,15,(6:31) C.Ponder pass short right to P.Harvin to TEN 15 for no gain (J.McCourty).,13,0,2012 -20121007_TEN@MIN,3,20,56,MIN,TEN,2,10,15,(5:56) C.Ponder pass incomplete short left to D.Aromashodu.,13,0,2012 -20121007_TEN@MIN,3,20,51,MIN,TEN,3,10,15,(5:51) (Shotgun) C.Ponder scrambles right end to TEN 8 for 7 yards (J.Babineaux).,13,0,2012 -20121007_TEN@MIN,3,20,9,MIN,TEN,4,3,8,(5:09) B.Walsh 26 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,0,2012 -20121007_TEN@MIN,3,20,9,MIN,TEN,,,8,B.Walsh kicks 74 yards from MIN 35 to TEN -9. D.Reynaud Touchback.,16,0,2012 -20121007_TEN@MIN,3,20,7,TEN,MIN,1,10,80,(5:07) M.Hasselbeck pass short middle to K.Wright to TEN 29 for 9 yards (C.Greenway).,0,16,2012 -20121007_TEN@MIN,3,19,31,TEN,MIN,2,1,71,(4:31) M.Hasselbeck pass short right to C.Johnson to TEN 33 for 4 yards (C.Greenway). PENALTY on TEN-D.Stewart Offensive Holding 10 yards enforced at TEN 29 - No Play.,0,16,2012 -20121007_TEN@MIN,3,19,3,TEN,MIN,2,11,81,(4:03) (Shotgun) M.Hasselbeck pass incomplete deep left to C.Stevens.,0,16,2012 -20121007_TEN@MIN,3,18,49,TEN,MIN,3,11,81,(3:49) (Shotgun) M.Hasselbeck pass incomplete deep right to N.Washington.,0,16,2012 -20121007_TEN@MIN,3,18,43,TEN,MIN,4,11,81,(3:43) B.Kern punts 42 yards to MIN 39 Center-B.Brinkley fair catch by M.Sherels.,0,16,2012 -20121007_TEN@MIN,3,18,36,MIN,TEN,1,10,61,(3:36) A.Peterson right guard to TEN 44 for 17 yards (D.Morgan; M.Griffin).,16,0,2012 -20121007_TEN@MIN,3,17,55,MIN,TEN,1,10,44,(2:55) A.Peterson left tackle to TEN 44 for no gain (C.McCarthy; J.Casey).,16,0,2012 -20121007_TEN@MIN,3,17,16,MIN,TEN,2,10,44,(2:16) C.Ponder pass short right to R.Ellison to TEN 15 for 29 yards (J.McCourty).,16,0,2012 -20121007_TEN@MIN,3,16,27,MIN,TEN,1,10,15,(1:27) C.Ponder pass short right to S.Burton to TEN 9 for 6 yards (J.McCourty; A.Ayers).,16,0,2012 -20121007_TEN@MIN,3,15,52,MIN,TEN,2,4,9,(:52) A.Peterson left tackle to TEN 10 for -1 yards (K.Wimbley; M.Griffin).,16,0,2012 -20121007_TEN@MIN,3,15,13,MIN,TEN,3,5,10,(:13) (Shotgun) C.Ponder pass short right to P.Harvin for 10 yards TOUCHDOWN.,16,0,2012 -20121007_TEN@MIN,3,15,13,MIN,TEN,,,10,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,16,0,2012 -20121007_TEN@MIN,3,15,13,MIN,TEN,,,10,B.Walsh kicks 73 yards from MIN 35 to TEN -8. D.Reynaud to TEN 23 for 31 yards (A.Jefferson).,23,0,2012 -20121007_TEN@MIN,4,15,0,TEN,MIN,1,10,77,(15:00) (Shotgun) M.Hasselbeck pass short middle to J.Cook to TEN 30 for 7 yards (A.Winfield).,0,23,2012 -20121007_TEN@MIN,4,14,40,TEN,MIN,2,3,70,(14:40) (Shotgun) C.Johnson left tackle to TEN 33 for 3 yards (K.Williams).,0,23,2012 -20121007_TEN@MIN,4,14,9,TEN,MIN,1,10,67,(14:09) (Shotgun) M.Hasselbeck pass short middle to J.Cook to TEN 37 for 4 yards (R.Blanton).,0,23,2012 -20121007_TEN@MIN,4,13,41,TEN,MIN,2,6,63,(13:41) (Shotgun) C.Johnson right guard to TEN 40 for 3 yards (K.Williams J.Brinkley).,0,23,2012 -20121007_TEN@MIN,4,13,12,TEN,MIN,3,3,60,(13:12) (Shotgun) M.Hasselbeck pass short right to K.Wright to 50 for 10 yards (J.Robinson). PENALTY on MIN-E.Griffen Roughing the Passer 15 yards enforced at 50.,0,23,2012 -20121007_TEN@MIN,4,12,51,TEN,MIN,1,10,35,(12:51) (Shotgun) M.Hasselbeck pass short right to D.Williams to MIN 26 for 9 yards (J.Robinson).,0,23,2012 -20121007_TEN@MIN,4,12,26,TEN,MIN,2,1,26,(12:26) C.Johnson right guard to MIN 25 for 1 yard (B.Robison).,0,23,2012 -20121007_TEN@MIN,4,11,47,TEN,MIN,1,10,25,(11:47) (Shotgun) M.Hasselbeck pass incomplete short middle to J.Cook (J.Brinkley).,0,23,2012 -20121007_TEN@MIN,4,11,42,TEN,MIN,2,10,25,(11:42) (Shotgun) M.Hasselbeck pass incomplete deep right to K.Britt.,0,23,2012 -20121007_TEN@MIN,4,11,37,TEN,MIN,3,10,25,(11:37) (Shotgun) M.Hasselbeck pass short right to K.Wright to MIN 15 for 10 yards (R.Blanton).,0,23,2012 -20121007_TEN@MIN,4,11,7,TEN,MIN,1,10,15,(11:07) (Shotgun) M.Hasselbeck pass short left to K.Wright to MIN 10 for 5 yards (R.Blanton).,0,23,2012 -20121007_TEN@MIN,4,10,40,TEN,MIN,2,5,10,(10:40) (Shotgun) M.Hasselbeck pass short middle to J.Cook for 10 yards TOUCHDOWN.,0,23,2012 -20121007_TEN@MIN,4,10,40,TEN,MIN,,,10,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,23,2012 -20121007_TEN@MIN,4,10,34,MIN,TEN,1,10,43,(10:34) T.Gerhart right end to TEN 36 for 7 yards (Z.Diles).,23,7,2012 -20121007_TEN@MIN,4,9,56,MIN,TEN,2,3,36,(9:56) T.Gerhart left end to TEN 36 for no gain (A.Ayers).,23,7,2012 -20121007_TEN@MIN,4,9,16,MIN,TEN,3,3,36,(9:16) PENALTY on TEN-K.Klug Neutral Zone Infraction 5 yards enforced at TEN 36 - No Play.,23,7,2012 -20121007_TEN@MIN,4,8,57,MIN,TEN,1,10,31,(8:57) T.Gerhart up the middle to TEN 31 for no gain (M.Martin).,23,7,2012 -20121007_TEN@MIN,4,8,13,MIN,TEN,2,10,31,(8:13) T.Gerhart right end to TEN 20 for 11 yards (J.Casey; M.Griffin).,23,7,2012 -20121007_TEN@MIN,4,7,30,MIN,TEN,1,10,20,(7:30) C.Ponder pass short right to K.Rudolph to TEN 15 for 5 yards (Z.Diles).,23,7,2012 -20121007_TEN@MIN,4,6,45,MIN,TEN,2,5,15,(6:45) C.Ponder pass short left to K.Rudolph for 15 yards TOUCHDOWN [B.Kern].,23,7,2012 -20121007_TEN@MIN,4,6,45,MIN,TEN,,,15,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,23,7,2012 -20121007_TEN@MIN,4,6,45,MIN,TEN,,,15,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,30,7,2012 -20121007_TEN@MIN,4,6,38,TEN,MIN,1,10,80,(6:38) (Shotgun) M.Hasselbeck pass short left to C.Johnson to TEN 25 for 5 yards (J.Brinkley; C.Greenway).,7,30,2012 -20121007_TEN@MIN,4,6,7,TEN,MIN,2,5,75,(6:07) (Shotgun) M.Hasselbeck pass short left to J.Cook to TEN 31 for 6 yards (C.Cook).,7,30,2012 -20121007_TEN@MIN,4,5,40,TEN,MIN,1,10,69,(5:40) (Shotgun) M.Hasselbeck pass incomplete short right to J.Cook (J.Sanford).,7,30,2012 -20121007_TEN@MIN,4,5,36,TEN,MIN,2,10,69,(5:36) (Shotgun) M.Hasselbeck pass incomplete short middle to N.Washington (K.Williams).,7,30,2012 -20121007_TEN@MIN,4,5,32,TEN,MIN,3,10,69,(5:32) (Shotgun) M.Hasselbeck pass short right to N.Washington pushed ob at TEN 41 for 10 yards (A.Winfield).,7,30,2012 -20121007_TEN@MIN,4,5,16,TEN,MIN,1,10,59,(5:16) (Shotgun) M.Hasselbeck pass short middle to K.Britt to TEN 47 for 6 yards (C.Cook).,7,30,2012 -20121007_TEN@MIN,4,4,53,TEN,MIN,2,4,53,(4:53) (Shotgun) M.Hasselbeck pass incomplete short middle to K.Britt.,7,30,2012 -20121007_TEN@MIN,4,4,49,TEN,MIN,3,4,53,(4:49) (Shotgun) M.Hasselbeck pass short right to K.Wright to MIN 47 for 6 yards (J.Robinson).,7,30,2012 -20121007_TEN@MIN,4,4,22,TEN,MIN,1,10,47,(4:22) (Shotgun) M.Hasselbeck pass short middle to J.Ringer to MIN 41 for 6 yards (C.Greenway).,7,30,2012 -20121007_TEN@MIN,4,3,54,TEN,MIN,2,4,41,(3:54) (Shotgun) M.Hasselbeck pass incomplete short middle to J.Ringer.,7,30,2012 -20121007_TEN@MIN,4,3,50,TEN,MIN,3,4,41,(3:50) (Shotgun) M.Hasselbeck pass short middle to K.Wright to MIN 32 for 9 yards (J.Robinson).,7,30,2012 -20121007_TEN@MIN,4,3,24,TEN,MIN,1,10,32,(3:24) (Shotgun) M.Hasselbeck pass short right to J.Ringer to MIN 28 for 4 yards (J.Robinson). TEN-J.Ringer was injured during the play. His return is Doubtful.,7,30,2012 -20121007_TEN@MIN,4,3,5,TEN,MIN,2,6,28,(3:05) (Shotgun) M.Hasselbeck pass short middle to J.Cook to MIN 18 for 10 yards (J.Brinkley).,7,30,2012 -20121007_TEN@MIN,4,2,42,TEN,MIN,1,10,18,(2:42) (Shotgun) M.Hasselbeck pass incomplete short middle to J.Cook (J.Allen).,7,30,2012 -20121007_TEN@MIN,4,2,39,TEN,MIN,2,10,18,(2:39) (Shotgun) C.Johnson right guard to MIN 9 for 9 yards (J.Sanford).,7,30,2012 -20121007_TEN@MIN,4,2,10,TEN,MIN,3,1,9,(2:10) (Shotgun) M.Hasselbeck pass incomplete short left to K.Wright.,7,30,2012 -20121007_TEN@MIN,4,2,5,TEN,MIN,4,1,9,(2:05) (Shotgun) C.Johnson left guard to MIN 13 for -4 yards (R.Blanton; C.Greenway).,7,30,2012 -20121007_TEN@MIN,4,2,0,MIN,TEN,1,10,87,(2:00) J.Webb kneels to MIN 12 for -1 yards.,30,7,2012 -20121007_TEN@MIN,4,1,57,MIN,TEN,2,11,88,(1:57) M.Asiata left end to MIN 17 for 5 yards (Z.Diles).,30,7,2012 -20121007_TEN@MIN,4,1,50,MIN,TEN,3,6,83,(1:50) M.Asiata up the middle to MIN 20 for 3 yards (T.Campbell).,30,7,2012 -20121007_TEN@MIN,4,1,44,MIN,TEN,4,3,80,(1:44) C.Kluwe punts 51 yards to TEN 29 Center-C.Loeffler. D.Reynaud to TEN 40 for 11 yards (T.McKenzie).,30,7,2012 -20121007_TEN@MIN,4,1,31,TEN,MIN,1,10,60,(1:31) (Shotgun) R.Smith pass short middle to D.Williams to TEN 48 for 8 yards (J.Robinson). PENALTY on TEN Illegal Formation 5 yards enforced at TEN 40 - No Play.,7,30,2012 -20121007_TEN@MIN,4,1,26,TEN,MIN,1,15,65,(1:26) (Shotgun) R.Smith pass incomplete short right to T.Thompson.,7,30,2012 -20121007_TEN@MIN,4,1,21,TEN,MIN,2,15,65,(1:21) (Shotgun) R.Smith pass short middle to T.Thompson to TEN 42 for 7 yards (Team).,7,30,2012 -20121007_TEN@MIN,4,0,57,TEN,MIN,3,8,58,(:57) (Shotgun) R.Smith pass short left to K.Wright to MIN 48 for 10 yards (J.Brinkley).,7,30,2012 -20121007_TEN@MIN,4,0,32,TEN,MIN,1,10,48,(:32) (Shotgun) R.Smith pass incomplete deep right to D.Williams.,7,30,2012 -20121007_TEN@MIN,4,0,27,TEN,MIN,2,10,48,(:27) (Shotgun) PENALTY on TEN-M.Roos False Start 5 yards enforced at MIN 48 - No Play.,7,30,2012 -20121007_TEN@MIN,4,0,27,TEN,MIN,2,15,53,(:27) (Shotgun) D.Reynaud up the middle to MIN 45 for 8 yards (R.Blanton).,7,30,2012 -20121007_TEN@MIN,4,0,6,TEN,MIN,3,7,45,(:06) (Shotgun) R.Smith pass short middle to K.Britt to MIN 28 for 17 yards (A.Jefferson).,7,30,2012 -20121007_TEN@MIN,4,0,6,TEN,MIN,,,45,                      ,7,30,2012 -20121007_DEN@NE,1,0,0,NE,DEN,,,45,S.Gostkowski kicks 67 yards from NE 35 to DEN -2. O.Bolden to DEN 16 for 18 yards (K.Arrington).,0,0,2012 -20121007_DEN@NE,1,59,56,DEN,NE,1,10,84,(14:56) (Shotgun) P.Manning pass incomplete short middle to J.Tamme.,0,0,2012 -20121007_DEN@NE,1,59,52,DEN,NE,2,10,84,(14:52) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at DEN 27 for 11 yards (B.Spikes).,0,0,2012 -20121007_DEN@NE,1,59,27,DEN,NE,1,10,73,(14:27) (Shotgun) P.Manning pass short right to D.Thomas pushed ob at DEN 28 for 1 yard (T.Wilson).,0,0,2012 -20121007_DEN@NE,1,59,7,DEN,NE,2,9,72,(14:07) (Shotgun) P.Manning pass short right to J.Dreessen pushed ob at DEN 32 for 4 yards (T.Wilson).,0,0,2012 -20121007_DEN@NE,1,58,31,DEN,NE,3,5,68,(13:31) (Shotgun) P.Manning scrambles right end ran ob at DEN 42 for 10 yards.,0,0,2012 -20121007_DEN@NE,1,58,3,DEN,NE,1,10,58,(13:03) (Shotgun) P.Manning pass short middle to J.Tamme to DEN 47 for 5 yards (J.Mayo).,0,0,2012 -20121007_DEN@NE,1,57,37,DEN,NE,2,5,53,(12:37) (Shotgun) P.Manning pass incomplete short right to J.Tamme.,0,0,2012 -20121007_DEN@NE,1,57,33,DEN,NE,3,5,53,(12:33) (Shotgun) P.Manning pass deep middle to D.Thomas to NE 10 for 43 yards (S.Moore). FUMBLES (S.Moore) RECOVERED by NE-S.Moore at NE 3. S.Moore to NE 17 for 14 yards.,0,0,2012 -20121007_DEN@NE,1,57,22,NE,DEN,1,10,83,(12:22) (Shotgun) T.Brady pass short right to R.Gronkowski pushed ob at NE 29 for 12 yards (M.Adams).,0,0,2012 -20121007_DEN@NE,1,57,8,NE,DEN,1,10,71,(12:08) (No Huddle) D.Woodhead right guard to NE 34 for 5 yards (D.Wolfe).,0,0,2012 -20121007_DEN@NE,1,56,49,NE,DEN,2,5,66,(11:49) (No Huddle Shotgun) T.Brady pass short left to W.Welker to NE 31 for -3 yards (R.Moore). NE 83-Welker 99th consecutive game with a reception.,0,0,2012 -20121007_DEN@NE,1,56,23,NE,DEN,3,8,69,(11:23) (No Huddle Shotgun) T.Brady pass incomplete deep right to W.Welker [M.Unrein].,0,0,2012 -20121007_DEN@NE,1,56,18,NE,DEN,4,8,69,(11:18) Z.Mesko punts 42 yards to DEN 27 Center-D.Aiken fair catch by J.Leonhard. Penalty on DEN-D.Trevathan Running Into the Kicker declined.,0,0,2012 -20121007_DEN@NE,1,56,11,DEN,NE,1,10,73,(11:11) W.McGahee left tackle to DEN 23 for -4 yards (B.Spikes).,0,0,2012 -20121007_DEN@NE,1,55,42,DEN,NE,2,14,77,(10:42) (Shotgun) P.Manning pass short right to W.McGahee to DEN 27 for 4 yards (K.Arrington; J.Mayo).,0,0,2012 -20121007_DEN@NE,1,54,57,DEN,NE,3,10,73,(9:57) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 42 for 15 yards (D.McCourty).,0,0,2012 -20121007_DEN@NE,1,54,21,DEN,NE,1,10,58,(9:21) (Shotgun) W.McGahee left tackle to DEN 43 for 1 yard (J.Mayo; K.Love).,0,0,2012 -20121007_DEN@NE,1,53,49,DEN,NE,2,9,57,(8:49) (Shotgun) P.Manning pass short left to J.Tamme ran ob at DEN 47 for 4 yards.,0,0,2012 -20121007_DEN@NE,1,53,22,DEN,NE,3,5,53,(8:22) (Shotgun) P.Manning sacked at DEN 40 for -7 yards (J.Mayo). Penalty on DEN Illegal Formation declined.,0,0,2012 -20121007_DEN@NE,1,53,1,DEN,NE,4,12,60,(8:01) B.Colquitt punts 49 yards to NE 11 Center-A.Brewer. W.Welker pushed ob at NE 16 for 5 yards (O.Bolden).,0,0,2012 -20121007_DEN@NE,1,52,52,NE,DEN,1,10,84,(7:52) (Shotgun) T.Brady pass short middle to W.Welker to NE 31 for 15 yards (K.Brooking). DEN-J.Mays was injured during the play.,0,0,2012 -20121007_DEN@NE,1,52,28,NE,DEN,1,10,69,(7:28) S.Ridley up the middle to NE 38 for 7 yards (D.Trevathan; W.Woodyard).,0,0,2012 -20121007_DEN@NE,1,52,7,NE,DEN,2,3,62,(7:07) (No Huddle) S.Ridley right guard to NE 43 for 5 yards (J.Bannan; D.Trevathan).,0,0,2012 -20121007_DEN@NE,1,51,50,NE,DEN,1,10,57,(6:50) (No Huddle) S.Ridley right end to NE 46 for 3 yards (M.Adams; J.Bannan).,0,0,2012 -20121007_DEN@NE,1,51,18,NE,DEN,2,7,54,(6:18) (No Huddle Shotgun) T.Brady pass short right to W.Welker ran ob at DEN 45 for 9 yards.,0,0,2012 -20121007_DEN@NE,1,51,7,NE,DEN,1,10,45,(6:07) (No Huddle) S.Ridley up the middle to DEN 30 for 15 yards (C.Harris; T.Porter).,0,0,2012 -20121007_DEN@NE,1,50,46,NE,DEN,1,10,30,(5:46) (No Huddle) S.Ridley left guard to DEN 27 for 3 yards (W.Woodyard; R.Moore).,0,0,2012 -20121007_DEN@NE,1,50,12,NE,DEN,2,7,27,(5:12) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to DEN 19 for 8 yards (C.Harris).,0,0,2012 -20121007_DEN@NE,1,49,42,NE,DEN,1,10,19,(4:42) (No Huddle) B.Bolden up the middle to DEN 14 for 5 yards (M.Adams; V.Miller).,0,0,2012 -20121007_DEN@NE,1,49,19,NE,DEN,2,5,14,(4:19) (No Huddle) B.Bolden right end to DEN 17 for -3 yards (V.Miller).,0,0,2012 -20121007_DEN@NE,1,48,41,NE,DEN,3,8,17,(3:41) (Shotgun) T.Brady pass short middle to B.Lloyd to DEN 8 for 9 yards (C.Bailey).,0,0,2012 -20121007_DEN@NE,1,48,13,NE,DEN,1,8,8,(3:13) T.Brady pass short left to W.Welker for 8 yards TOUCHDOWN. NE 12-Brady 37th straight regular season game with a TD pass 3rd longest all-time.,0,0,2012 -20121007_DEN@NE,1,48,13,NE,DEN,,,8,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121007_DEN@NE,1,48,13,NE,DEN,,,8,S.Gostkowski kicks 71 yards from NE 35 to DEN -6. O.Bolden Touchback.,7,0,2012 -20121007_DEN@NE,1,48,8,DEN,NE,1,10,80,(3:08) (Shotgun) W.McGahee up the middle to DEN 24 for 4 yards (J.Mayo; T.Wilson).,0,7,2012 -20121007_DEN@NE,1,47,42,DEN,NE,2,6,76,(2:42) (Shotgun) W.McGahee left guard to DEN 27 for 3 yards (K.Love; J.Mayo).,0,7,2012 -20121007_DEN@NE,1,47,8,DEN,NE,3,3,73,(2:08) (Shotgun) P.Manning pass short left to W.McGahee pushed ob at DEN 36 for 9 yards (K.Arrington).,0,7,2012 -20121007_DEN@NE,1,46,44,DEN,NE,1,10,64,(1:44) (Shotgun) P.Manning pass deep left to D.Thomas pushed ob at NE 34 for 30 yards (P.Chung).,0,7,2012 -20121007_DEN@NE,1,46,18,DEN,NE,1,10,34,(1:18) (Shotgun) R.Hillman up the middle to NE 27 for 7 yards (R.Ninkovich; J.Mayo).,0,7,2012 -20121007_DEN@NE,1,45,51,DEN,NE,2,3,27,(:51) (Shotgun) R.Hillman up the middle to NE 25 for 2 yards (T.Wilson; J.Mayo).,0,7,2012 -20121007_DEN@NE,1,45,5,DEN,NE,3,1,25,(:05) W.McGahee left guard to NE 24 for 1 yard (J.Mayo). Play Challenged by NE and Upheld. (Timeout #1.),0,7,2012 -20121007_DEN@NE,2,45,0,DEN,NE,1,10,24,(15:00) (Shotgun) P.Manning pass incomplete short right to D.Thomas (C.Jones).,0,7,2012 -20121007_DEN@NE,2,44,56,DEN,NE,2,10,24,(14:56) W.McGahee right guard to NE 20 for 4 yards (T.White; J.Mayo).,0,7,2012 -20121007_DEN@NE,2,44,15,DEN,NE,3,6,20,(14:15) (Shotgun) P.Manning pass incomplete deep right to E.Decker [B.Spikes]. PENALTY on NE-D.McCourty Defensive Pass Interference 19 yards enforced at NE 20 - No Play.,0,7,2012 -20121007_DEN@NE,2,44,9,DEN,NE,1,1,1,(14:09) C.Clark reported in as eligible. P.Manning pass short right to J.Dreessen for 1 yard TOUCHDOWN.,0,7,2012 -20121007_DEN@NE,2,44,9,DEN,NE,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,7,2012 -20121007_DEN@NE,2,44,9,DEN,NE,,,1,M.Prater kicks 70 yards from DEN 35 to NE -5. D.McCourty Touchback.,7,7,2012 -20121007_DEN@NE,2,44,5,NE,DEN,1,10,80,(14:05) (Shotgun) T.Brady pass short right to R.Gronkowski to NE 20 for no gain (M.Adams) [K.Vickerson].,7,7,2012 -20121007_DEN@NE,2,43,21,NE,DEN,2,10,80,(13:21) (No Huddle Shotgun) T.Brady pass incomplete deep middle to R.Gronkowski.,7,7,2012 -20121007_DEN@NE,2,43,17,NE,DEN,3,10,80,(13:17) (Shotgun) T.Brady pass short right to W.Welker to NE 34 for 14 yards (R.Moore; C.Harris).,7,7,2012 -20121007_DEN@NE,2,42,54,NE,DEN,1,10,66,(12:54) (No Huddle) D.Woodhead right tackle to NE 34 for no gain (W.Woodyard).,7,7,2012 -20121007_DEN@NE,2,42,22,NE,DEN,2,10,66,(12:22) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to NE 41 for 7 yards (W.Woodyard).,7,7,2012 -20121007_DEN@NE,2,41,58,NE,DEN,3,3,59,(11:58) (No Huddle) D.Woodhead left guard to NE 48 for 7 yards (R.Moore).,7,7,2012 -20121007_DEN@NE,2,41,35,NE,DEN,1,10,52,(11:35) (No Huddle Shotgun) S.Ridley right guard to DEN 44 for 8 yards (W.Woodyard).,7,7,2012 -20121007_DEN@NE,2,41,17,NE,DEN,2,2,44,(11:17) (No Huddle Shotgun) S.Ridley left tackle to DEN 40 for 4 yards (C.Harris).,7,7,2012 -20121007_DEN@NE,2,40,59,NE,DEN,1,10,40,(10:59) (No Huddle) S.Ridley left end to DEN 37 for 3 yards (J.Mays).,7,7,2012 -20121007_DEN@NE,2,40,30,NE,DEN,2,7,37,(10:30) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd to DEN 22 for 15 yards (C.Bailey; R.Moore).,7,7,2012 -20121007_DEN@NE,2,39,53,NE,DEN,1,10,22,(9:53) (No Huddle) PENALTY on NE-L.Mankins False Start 5 yards enforced at DEN 22 - No Play.,7,7,2012 -20121007_DEN@NE,2,39,28,NE,DEN,1,15,27,(9:28) (Shotgun) T.Brady pass short middle to R.Gronkowski to DEN 14 for 13 yards (M.Adams; R.Moore).,7,7,2012 -20121007_DEN@NE,2,39,7,NE,DEN,2,2,14,(9:07) (No Huddle) S.Ridley up the middle to DEN 11 for 3 yards (D.Wolfe; K.Vickerson).,7,7,2012 -20121007_DEN@NE,2,38,25,NE,DEN,1,10,11,(8:25) (No Huddle Shotgun) T.Brady pass short middle to B.Lloyd to DEN 1 for 10 yards (C.Bailey).,7,7,2012 -20121007_DEN@NE,2,38,0,NE,DEN,1,1,1,(8:00) (No Huddle) S.Vereen left guard for 1 yard TOUCHDOWN.,7,7,2012 -20121007_DEN@NE,2,38,0,NE,DEN,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,7,2012 -20121007_DEN@NE,2,37,51,DEN,NE,1,10,68,(7:51) (Shotgun) W.McGahee up the middle to DEN 40 for 8 yards (J.Mayo).,7,14,2012 -20121007_DEN@NE,2,37,26,DEN,NE,2,2,60,(7:26) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 45 for 5 yards (B.Spikes). DEN-O.Franklin was injured during the play.,7,14,2012 -20121007_DEN@NE,2,36,55,DEN,NE,1,10,55,(6:55) (Shotgun) W.McGahee up the middle to NE 46 for 9 yards (R.Ninkovich; J.Mayo).,7,14,2012 -20121007_DEN@NE,2,36,28,DEN,NE,2,1,46,(6:28) (Shotgun) W.McGahee up the middle to NE 44 for 2 yards (T.Scott; R.Brace).,7,14,2012 -20121007_DEN@NE,2,35,54,DEN,NE,1,10,44,(5:54) (No Huddle Shotgun) P.Manning pass short middle to E.Decker to NE 39 for 5 yards (T.Wilson).,7,14,2012 -20121007_DEN@NE,2,35,23,DEN,NE,2,5,39,(5:23) (Shotgun) P.Manning pass incomplete deep right to J.Tamme.,7,14,2012 -20121007_DEN@NE,2,35,18,DEN,NE,3,5,39,(5:18) (Shotgun) P.Manning pass incomplete short middle to B.Stokley (A.Dennard).,7,14,2012 -20121007_DEN@NE,2,35,13,DEN,NE,4,5,39,(5:13) B.Colquitt punts 37 yards to NE 2 Center-A.Brewer downed by DEN.,7,14,2012 -20121007_DEN@NE,2,35,3,NE,DEN,1,10,98,(5:03) (Shotgun) T.Brady pass short left to W.Welker to NE 9 for 7 yards (J.Mays).,14,7,2012 -20121007_DEN@NE,2,34,33,NE,DEN,2,3,91,(4:33) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to NE 15 for 6 yards (K.Brooking).,14,7,2012 -20121007_DEN@NE,2,34,6,NE,DEN,1,10,85,(4:06) (No Huddle) B.Bolden right tackle to NE 11 for -4 yards (K.Vickerson).,14,7,2012 -20121007_DEN@NE,2,33,45,NE,DEN,2,14,89,(3:45) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Fells.,14,7,2012 -20121007_DEN@NE,2,33,42,NE,DEN,3,14,89,(3:42) (No Huddle Shotgun) T.Brady pass short right to D.Woodhead to NE 36 for 25 yards (M.Adams; J.Mays).,14,7,2012 -20121007_DEN@NE,2,33,15,NE,DEN,1,10,64,(3:15) (No Huddle) D.Woodhead left tackle to NE 42 for 6 yards (M.Jackson).,14,7,2012 -20121007_DEN@NE,2,32,51,NE,DEN,2,4,58,(2:51) (Shotgun) B.Bolden up the middle to NE 45 for 3 yards (M.Adams; E.Dumervil).,14,7,2012 -20121007_DEN@NE,2,32,29,NE,DEN,3,1,55,(2:29) (No Huddle) B.Bolden right end to DEN 31 for 24 yards (R.Moore; W.Woodyard).,14,7,2012 -20121007_DEN@NE,2,32,0,NE,DEN,1,10,31,(2:00) (Shotgun) S.Ridley up the middle to DEN 29 for 2 yards (J.Bannan; E.Dumervil).,14,7,2012 -20121007_DEN@NE,2,31,37,NE,DEN,2,8,29,(1:37) (No Huddle Shotgun) T.Brady pass short right to R.Gronkowski to DEN 19 for 10 yards (J.Mays; W.Woodyard).,14,7,2012 -20121007_DEN@NE,2,31,8,NE,DEN,1,10,19,(1:08) (No Huddle Shotgun) S.Ridley up the middle to DEN 14 for 5 yards (J.Bannan; E.Dumervil).,14,7,2012 -20121007_DEN@NE,2,30,47,NE,DEN,2,5,14,(:47) (No Huddle) S.Ridley left tackle to DEN 9 for 5 yards (R.Moore).,14,7,2012 -20121007_DEN@NE,2,30,32,NE,DEN,1,9,9,(:32) (No Huddle) S.Ridley left tackle to DEN 2 for 7 yards (R.Moore; J.Mays).,14,7,2012 -20121007_DEN@NE,2,30,25,NE,DEN,2,2,2,(:25) B.Bolden up the middle to DEN 1 for 1 yard (E.Dumervil; K.Vickerson).,14,7,2012 -20121007_DEN@NE,2,30,9,NE,DEN,3,1,1,(:09) (No Huddle) B.Bolden up the middle to DEN 5 for -4 yards (V.Miller).,14,7,2012 -20121007_DEN@NE,2,30,6,NE,DEN,4,5,5,(:06) S.Gostkowski 23 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,14,7,2012 -20121007_DEN@NE,2,30,6,NE,DEN,,,5,S.Gostkowski kicks 34 yards from NE 35 to DEN 31. C.Gronkowski (didn't try to advance) dead ball declared at DEN 31 for no gain.,17,7,2012 -20121007_DEN@NE,2,30,1,DEN,NE,1,10,69,(:01) P.Manning kneels to DEN 30 for -1 yards.,7,17,2012 -20121007_DEN@NE,3,30,0,DEN,NE,,,69,M.Prater kicks 69 yards from DEN 35 to NE -4. D.McCourty to NE 19 for 23 yards (N.Irving; D.Trevathan).,7,17,2012 -20121007_DEN@NE,3,29,54,NE,DEN,1,10,81,(14:54) S.Ridley right guard to NE 22 for 3 yards (W.Woodyard; E.Dumervil).,17,7,2012 -20121007_DEN@NE,3,29,24,NE,DEN,2,7,78,(14:24) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,17,7,2012 -20121007_DEN@NE,3,29,21,NE,DEN,3,7,78,(14:21) (No Huddle Shotgun) T.Brady sacked at NE 19 for -3 yards (V.Miller).,17,7,2012 -20121007_DEN@NE,3,28,51,NE,DEN,4,10,81,(13:51) Z.Mesko punts 50 yards to DEN 31 Center-D.Aiken fair catch by J.Leonhard.,17,7,2012 -20121007_DEN@NE,3,28,44,DEN,NE,1,10,69,(13:44) (Shotgun) W.McGahee up the middle to DEN 42 for 11 yards (T.Wilson; P.Chung).,7,17,2012 -20121007_DEN@NE,3,28,17,DEN,NE,1,10,58,(13:17) (No Huddle Shotgun) P.Manning pass short right to E.Decker pushed ob at DEN 44 for 2 yards (T.Wilson).,7,17,2012 -20121007_DEN@NE,3,27,45,DEN,NE,2,8,56,(12:45) (Shotgun) W.McGahee left guard to DEN 48 for 4 yards (K.Love; V.Wilfork).,7,17,2012 -20121007_DEN@NE,3,27,10,DEN,NE,3,4,52,(12:10) (Shotgun) L.Ball up the middle to DEN 49 for 1 yard (C.Jones; B.Spikes).,7,17,2012 -20121007_DEN@NE,3,26,31,DEN,NE,4,3,51,(11:31) B.Colquitt punts 51 yards to end zone Center-A.Brewer Touchback.,7,17,2012 -20121007_DEN@NE,3,26,24,NE,DEN,1,10,80,(11:24) (Shotgun) T.Brady pass incomplete deep right to D.Fells.,17,7,2012 -20121007_DEN@NE,3,26,18,NE,DEN,2,10,80,(11:18) (No Huddle) S.Ridley left end pushed ob at NE 39 for 19 yards (R.Moore).,17,7,2012 -20121007_DEN@NE,3,26,14,NE,DEN,1,10,61,(11:14) (No Huddle) T.Brady sacked at NE 39 for 0 yards (J.Mays). PENALTY on DEN Defensive 12 On-field 5 yards enforced at NE 39 - No Play.,17,7,2012 -20121007_DEN@NE,3,25,59,NE,DEN,1,5,56,(10:59) (No Huddle) B.Bolden left end to NE 46 for 2 yards (V.Miller).,17,7,2012 -20121007_DEN@NE,3,25,43,NE,DEN,2,3,54,(10:43) (No Huddle) B.Bolden left tackle to 50 for 4 yards (C.Bailey).,17,7,2012 -20121007_DEN@NE,3,25,12,NE,DEN,1,10,50,(10:12) (Shotgun) T.Brady pass incomplete short middle to D.Branch.,17,7,2012 -20121007_DEN@NE,3,25,7,NE,DEN,2,10,50,(10:07) (No Huddle Shotgun) S.Ridley up the middle to DEN 47 for 3 yards (J.Mays; M.Unrein).,17,7,2012 -20121007_DEN@NE,3,24,24,NE,DEN,3,7,47,(9:24) (Shotgun) T.Brady pass short right to R.Gronkowski to DEN 37 for 10 yards (J.Mays). PENALTY on NE-R.Wendell Offensive Holding 10 yards enforced at DEN 47 - No Play.,17,7,2012 -20121007_DEN@NE,3,24,5,NE,DEN,3,17,57,(9:05) D.Woodhead left end to DEN 38 for 19 yards (C.Harris).,17,7,2012 -20121007_DEN@NE,3,23,44,NE,DEN,1,10,38,(8:44) (No Huddle) D.Woodhead left tackle to DEN 31 for 7 yards (K.Vickerson; D.Wolfe).,17,7,2012 -20121007_DEN@NE,3,23,23,NE,DEN,2,3,31,(8:23) (No Huddle) D.Woodhead left tackle to DEN 28 for 3 yards (E.Dumervil; K.Vickerson).,17,7,2012 -20121007_DEN@NE,3,22,40,NE,DEN,1,10,28,(7:40) (Shotgun) T.Brady pass short middle to W.Welker to DEN 17 for 11 yards (R.Moore). NE 83-Welker 15th career 10+ reception game tying Andre Johnson for 3rd all-time.,17,7,2012 -20121007_DEN@NE,3,22,23,NE,DEN,1,10,17,(7:23) (No Huddle Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,17,7,2012 -20121007_DEN@NE,3,22,1,NE,DEN,2,10,17,(7:01) (No Huddle) S.Ridley right end to DEN 18 for -1 yards (T.Porter). PENALTY on DEN Encroachment 5 yards enforced at DEN 17 - No Play.,17,7,2012 -20121007_DEN@NE,3,21,53,NE,DEN,2,5,12,(6:53) S.Ridley left guard to DEN 8 for 4 yards (K.Vickerson; J.Mays).,17,7,2012 -20121007_DEN@NE,3,21,30,NE,DEN,3,1,8,(6:30) (No Huddle) S.Ridley left guard to DEN 6 for 2 yards (J.Bannan). NE 22-Ridley 3rd career 100-yard game.,17,7,2012 -20121007_DEN@NE,3,21,7,NE,DEN,1,6,6,(6:07) S.Ridley left guard to DEN 1 for 5 yards (K.Brooking).,17,7,2012 -20121007_DEN@NE,3,20,37,NE,DEN,2,1,1,(5:37) (No Huddle Shotgun) T.Brady pass incomplete short right to W.Welker. PENALTY on DEN-E.Dumervil Defensive Offside 0 yards enforced at DEN 1 - No Play.,17,7,2012 -20121007_DEN@NE,3,20,34,NE,DEN,2,1,1,(5:34) D.Connolly reported in as eligible. S.Ridley left guard to DEN 1 for no gain (J.Bannan; K.Brooking).,17,7,2012 -20121007_DEN@NE,3,20,2,NE,DEN,3,1,1,(5:02) D.Connolly reported in as eligible. T.Brady up the middle for 1 yard TOUCHDOWN.,17,7,2012 -20121007_DEN@NE,3,20,2,NE,DEN,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,17,7,2012 -20121007_DEN@NE,3,20,2,NE,DEN,,,1,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,24,7,2012 -20121007_DEN@NE,3,20,0,DEN,NE,1,10,80,(5:00) (Shotgun) P.Manning sacked at DEN 17 for -3 yards (R.Ninkovich). FUMBLES (R.Ninkovich) [R.Ninkovich] RECOVERED by NE-V.Wilfork at DEN 14. V.Wilfork to DEN 14 for no gain (Z.Beadles).,7,24,2012 -20121007_DEN@NE,3,19,51,NE,DEN,1,10,14,(4:51) (Shotgun) T.Brady pass incomplete short right to S.Vereen. PENALTY on DEN-J.Mays Defensive Pass Interference 11 yards enforced at DEN 14 - No Play.,24,7,2012 -20121007_DEN@NE,3,19,47,NE,DEN,1,3,3,(4:47) (Shotgun) PENALTY on NE-N.Solder False Start 5 yards enforced at DEN 3 - No Play.,24,7,2012 -20121007_DEN@NE,3,19,47,NE,DEN,1,8,8,(4:47) S.Ridley left end for 8 yards TOUCHDOWN.,24,7,2012 -20121007_DEN@NE,3,19,47,NE,DEN,,,8,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,24,7,2012 -20121007_DEN@NE,3,19,47,NE,DEN,,,8,S.Gostkowski kicks 65 yards from NE 35 to DEN 0. O.Bolden to DEN 10 for 10 yards (M.Slater).,31,7,2012 -20121007_DEN@NE,3,19,37,DEN,NE,1,10,90,(4:37) (Shotgun) P.Manning pass short left to J.Tamme to DEN 20 for 10 yards (P.Chung).,7,31,2012 -20121007_DEN@NE,3,19,17,DEN,NE,1,10,80,(4:17) (No Huddle Shotgun) P.Manning pass short left to J.Tamme pushed ob at DEN 23 for 3 yards (S.Moore).,7,31,2012 -20121007_DEN@NE,3,18,51,DEN,NE,2,7,77,(3:51) (No Huddle Shotgun) P.Manning pass incomplete short left to J.Tamme [C.Jones].,7,31,2012 -20121007_DEN@NE,3,18,44,DEN,NE,3,7,77,(3:44) (No Huddle Shotgun) P.Manning pass short left to D.Thomas to DEN 43 for 20 yards (S.Moore; R.Dowling). DEN 88-Thomas 5th career 100-yard game.,7,31,2012 -20121007_DEN@NE,3,18,14,DEN,NE,1,10,57,(3:14) (No Huddle Shotgun) P.Manning pass incomplete deep right to E.Decker.,7,31,2012 -20121007_DEN@NE,3,18,9,DEN,NE,2,10,57,(3:09) (Shotgun) P.Manning pass short left to J.Dreessen to 50 for 7 yards (R.Dowling).,7,31,2012 -20121007_DEN@NE,3,17,41,DEN,NE,3,3,50,(2:41) (No Huddle Shotgun) P.Manning pass deep left to D.Thomas to NE 12 for 38 yards (P.Chung).,7,31,2012 -20121007_DEN@NE,3,17,12,DEN,NE,1,10,12,(2:12) (No Huddle Shotgun) P.Manning pass short middle to W.McGahee to NE 1 for 11 yards (B.Spikes; T.Wilson).,7,31,2012 -20121007_DEN@NE,3,16,47,DEN,NE,1,1,1,(1:47) (No Huddle Shotgun) W.McGahee up the middle to NE 2 for -1 yards (V.Wilfork; J.Cunningham).,7,31,2012 -20121007_DEN@NE,3,16,11,DEN,NE,2,2,2,(1:11) P.Manning pass short right to E.Decker for 2 yards TOUCHDOWN.,7,31,2012 -20121007_DEN@NE,3,16,11,DEN,NE,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,31,2012 -20121007_DEN@NE,3,16,11,DEN,NE,,,2,M.Prater kicks 73 yards from DEN 35 to NE -8. D.McCourty Touchback.,14,31,2012 -20121007_DEN@NE,3,16,8,NE,DEN,1,10,80,(1:08) T.Brady pass short left to B.Bolden to NE 20 for no gain (J.Mays; C.Harris).,31,14,2012 -20121007_DEN@NE,3,15,34,NE,DEN,2,10,80,(:34) (No Huddle Shotgun) T.Brady pass incomplete deep right to R.Gronkowski. PENALTY on NE-R.Gronkowski Offensive Pass Interference 10 yards enforced at NE 20 - No Play.,31,14,2012 -20121007_DEN@NE,3,15,28,NE,DEN,2,20,90,(:28) (Shotgun) T.Brady pass short right to W.Welker to NE 18 for 8 yards (C.Harris).,31,14,2012 -20121007_DEN@NE,4,15,0,NE,DEN,3,12,82,(15:00) (Shotgun) T.Brady pass deep middle to D.Branch to NE 43 for 25 yards (T.Porter).,31,14,2012 -20121007_DEN@NE,4,14,33,NE,DEN,1,10,57,(14:33) (No Huddle) B.Bolden left end ran ob at DEN 46 for 11 yards.,31,14,2012 -20121007_DEN@NE,4,14,23,NE,DEN,1,10,46,(14:23) (No Huddle Shotgun) B.Bolden up the middle to DEN 49 for -3 yards (V.Miller).,31,14,2012 -20121007_DEN@NE,4,13,50,NE,DEN,2,13,49,(13:50) (Shotgun) T.Brady sacked at NE 48 for -3 yards (D.Wolfe).,31,14,2012 -20121007_DEN@NE,4,13,28,NE,DEN,3,16,52,(13:28) (Shotgun) T.Brady sacked at NE 44 for -4 yards (V.Miller).,31,14,2012 -20121007_DEN@NE,4,13,9,NE,DEN,4,20,56,(13:09) Z.Mesko punts 37 yards to DEN 19 Center-D.Aiken downed by NE-D.Aiken. PENALTY on NE-N.Ebner Offensive Holding 10 yards enforced at DEN 19.,31,14,2012 -20121007_DEN@NE,4,13,0,DEN,NE,1,10,71,(13:00) (Shotgun) P.Manning pass short left to J.Dreessen pushed ob at DEN 38 for 9 yards (J.Mayo).,14,31,2012 -20121007_DEN@NE,4,12,48,DEN,NE,2,1,62,(12:48) (No Huddle Shotgun) W.McGahee right guard to DEN 44 for 6 yards (P.Chung; T.Wilson).,14,31,2012 -20121007_DEN@NE,4,12,26,DEN,NE,1,10,56,(12:26) (No Huddle Shotgun) P.Manning pass short middle to W.McGahee to DEN 49 for 5 yards (B.Spikes) [C.Jones].,14,31,2012 -20121007_DEN@NE,4,11,57,DEN,NE,2,5,51,(11:57) (No Huddle Shotgun) P.Manning pass short left to R.Hillman to NE 47 for 4 yards (K.Arrington).,14,31,2012 -20121007_DEN@NE,4,11,32,DEN,NE,3,1,47,(11:32) (No Huddle Shotgun) R.Hillman right end to NE 47 for no gain (D.McCourty).,14,31,2012 -20121007_DEN@NE,4,10,54,DEN,NE,4,1,47,(10:54) (No Huddle Shotgun) P.Manning pass incomplete short right to W.McGahee.,14,31,2012 -20121007_DEN@NE,4,10,50,NE,DEN,1,10,53,(10:50) N.McDonald reported in as eligible. S.Ridley right end pushed ob at 50 for 3 yards (W.Woodyard).,31,14,2012 -20121007_DEN@NE,4,10,22,NE,DEN,2,7,50,(10:22) S.Ridley left guard to DEN 47 for 3 yards (J.Mays; T.Porter).,31,14,2012 -20121007_DEN@NE,4,9,47,NE,DEN,3,4,47,(9:47) (Shotgun) T.Brady pass short left to W.Welker to DEN 42 for 5 yards (M.Adams).,31,14,2012 -20121007_DEN@NE,4,9,6,NE,DEN,1,10,42,(9:06) N.McDonald reported in as eligible. S.Ridley left guard to DEN 37 for 5 yards (R.Moore).,31,14,2012 -20121007_DEN@NE,4,8,28,NE,DEN,2,5,37,(8:28) S.Ridley left tackle to DEN 37 for no gain (T.Porter).,31,14,2012 -20121007_DEN@NE,4,8,22,NE,DEN,3,5,37,(8:22) (Shotgun) T.Brady pass incomplete short right to B.Lloyd (V.Miller).,31,14,2012 -20121007_DEN@NE,4,8,17,NE,DEN,4,5,37,(8:17) (Shotgun) T.Brady sacked at DEN 48 for -11 yards (sack split by E.Dumervil and W.Woodyard). FUMBLES (E.Dumervil) recovered by NE-N.Solder at NE 43. N.Solder to NE 43 for no gain (W.Woodyard).,31,14,2012 -20121007_DEN@NE,4,8,8,DEN,NE,1,10,43,(8:08) (Shotgun) P.Manning pass incomplete deep left to E.Decker.,14,31,2012 -20121007_DEN@NE,4,8,2,DEN,NE,2,10,43,(8:02) (Shotgun) P.Manning pass incomplete deep left to E.Decker.,14,31,2012 -20121007_DEN@NE,4,7,57,DEN,NE,3,10,43,(7:57) (No Huddle Shotgun) P.Manning pass short left to E.Decker ran ob at NE 31 for 12 yards.,14,31,2012 -20121007_DEN@NE,4,7,43,DEN,NE,1,10,31,(7:43) P.Manning pass short right to D.Thomas to NE 27 for 4 yards (K.Arrington).,14,31,2012 -20121007_DEN@NE,4,7,14,DEN,NE,2,6,27,(7:14) (Shotgun) P.Manning pass short left to W.McGahee to NE 5 for 22 yards (A.Dennard).,14,31,2012 -20121007_DEN@NE,4,6,46,DEN,NE,1,5,5,(6:46) (No Huddle Shotgun) P.Manning pass short middle to B.Stokley for 5 yards TOUCHDOWN.,14,31,2012 -20121007_DEN@NE,4,6,46,DEN,NE,,,5,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,31,2012 -20121007_DEN@NE,4,6,46,DEN,NE,,,5,M.Prater kicks 26 yards from DEN 35 to NE 39. R.Gronkowski (didn't try to advance) dead ball declared at NE 39 for no gain.,21,31,2012 -20121007_DEN@NE,4,6,41,NE,DEN,1,10,61,(6:41) S.Ridley right end to NE 43 for 4 yards (T.Porter). NE 22-Ridley new career high rush yards (129).,31,21,2012 -20121007_DEN@NE,4,6,0,NE,DEN,2,6,57,(6:00) S.Ridley right end pushed ob at DEN 37 for 20 yards (M.Adams). DEN-K.Vickerson was injured during the play.,31,21,2012 -20121007_DEN@NE,4,5,27,NE,DEN,1,10,37,(5:27) S.Ridley left tackle to DEN 35 for 2 yards (V.Miller). FUMBLES (V.Miller) RECOVERED by DEN-M.Adams at DEN 32. M.Adams to DEN 32 for no gain (S.Ridley).,31,21,2012 -20121007_DEN@NE,4,5,19,DEN,NE,1,10,68,(5:19) (Shotgun) P.Manning pass short middle to J.Tamme pushed ob at DEN 49 for 17 yards (T.Wilson). DEN 18-Manning 66th career 300-yard game extends NFL record.,21,31,2012 -20121007_DEN@NE,4,5,4,DEN,NE,1,10,51,(5:04) (No Huddle Shotgun) P.Manning pass incomplete short right to D.Thomas.,21,31,2012 -20121007_DEN@NE,4,4,59,DEN,NE,2,10,51,(4:59) (No Huddle Shotgun) P.Manning pass incomplete short right to J.Tamme.,21,31,2012 -20121007_DEN@NE,4,4,54,DEN,NE,3,10,51,(4:54) (No Huddle Shotgun) P.Manning pass short middle to D.Thomas to NE 42 for 9 yards (D.McCourty) [J.Cunningham].,21,31,2012 -20121007_DEN@NE,4,4,24,DEN,NE,4,1,42,(4:24) (No Huddle Shotgun) P.Manning pass deep right to D.Thomas to NE 14 for 28 yards (D.McCourty).,21,31,2012 -20121007_DEN@NE,4,3,53,DEN,NE,1,10,14,(3:53) (No Huddle Shotgun) P.Manning pass incomplete short left to E.Decker.,21,31,2012 -20121007_DEN@NE,4,3,48,DEN,NE,2,10,14,(3:48) (No Huddle Shotgun) W.McGahee up the middle to NE 11 for 3 yards (R.Ninkovich). FUMBLES (R.Ninkovich) RECOVERED by NE-J.Cunningham at NE 11. J.Cunningham to NE 11 for no gain (O.Franklin).,21,31,2012 -20121007_DEN@NE,4,3,42,NE,DEN,1,10,89,(3:42) B.Bolden left guard to NE 12 for 1 yard (M.Unrein).,31,21,2012 -20121007_DEN@NE,4,3,37,NE,DEN,2,9,88,(3:37) B.Bolden right end to NE 18 for 6 yards (M.Adams; T.Porter).,31,21,2012 -20121007_DEN@NE,4,3,27,NE,DEN,3,3,82,(3:27) (Shotgun) T.Brady pass short middle to W.Welker to NE 27 for 9 yards (M.Adams).,31,21,2012 -20121007_DEN@NE,4,2,43,NE,DEN,1,10,73,(2:43) N.McDonald reported in as eligible. B.Bolden left end to NE 38 for 11 yards (M.Adams). NE 35 total 1st downs new franchise record (10/28/07 vs Washington),31,21,2012 -20121007_DEN@NE,4,2,0,NE,DEN,1,10,62,(2:00) N.McDonald reported in as eligible. T.Brady kneels to NE 37 for -1 yards.,31,21,2012 -20121007_DEN@NE,4,1,19,NE,DEN,2,11,63,(1:19) N.McDonald reported in as eligible. T.Brady kneels to NE 36 for -1 yards.,31,21,2012 -20121007_DEN@NE,4,0,39,NE,DEN,3,12,64,(:39) N.McDonald reported in as eligible. T.Brady kneels to NE 35 for -1 yards.,31,21,2012 -20121007_DEN@NE,4,0,39,NE,DEN,,,64,                      ,31,21,2012 -20121007_BUF@SF,1,0,0,BUF,SF,,,64,J.Potter kicks 68 yards from BUF 35 to SF -3. K.Williams to SF 14 for 17 yards (C.White).,0,0,2012 -20121007_BUF@SF,1,59,53,SF,BUF,1,10,86,(14:53) F.Gore left guard to SF 19 for 5 yards (G.Wilson).,0,0,2012 -20121007_BUF@SF,1,59,18,SF,BUF,2,5,81,(14:18) (Shotgun) A.Smith pass short right to M.Crabtree to SF 23 for 4 yards (K.Sheppard). Caught at SF 22. 1-yd YAC,0,0,2012 -20121007_BUF@SF,1,58,41,SF,BUF,3,1,77,(13:41) W.Tukuafu reported in as eligible. A.Smith pass deep right to V.Davis to SF 44 for 21 yards (J.Byrd). PENALTY on SF-M.Iupati Offensive Holding 10 yards enforced at SF 23 - No Play.,0,0,2012 -20121007_BUF@SF,1,58,10,SF,BUF,3,11,87,(13:10) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 22 for 9 yards (A.Williams). Caught at SF22. 0-yds YAC,0,0,2012 -20121007_BUF@SF,1,57,15,BUF,SF,1,10,62,(12:15) F.Jackson right tackle to BUF 42 for 4 yards (J.Smith).,0,0,2012 -20121007_BUF@SF,1,56,33,BUF,SF,2,6,58,(11:33) F.Jackson left end to BUF 41 for -1 yards (A.Brooks).,0,0,2012 -20121007_BUF@SF,1,55,56,BUF,SF,3,7,59,(10:56) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,0,0,2012 -20121007_BUF@SF,1,55,49,BUF,SF,4,7,59,(10:49) S.Powell punts 59 yards to end zone Center-G.Sanborn Touchback.,0,0,2012 -20121007_BUF@SF,1,55,42,SF,BUF,1,10,80,(10:42) F.Gore up the middle to SF 39 for 19 yards (S.Gilmore).,0,0,2012 -20121007_BUF@SF,1,55,2,SF,BUF,1,10,61,(10:02) A.Smith pass deep right to V.Davis pushed ob at BUF 8 for 53 yards (A.Williams). Caught at BUF 28. 20-yds YAC,0,0,2012 -20121007_BUF@SF,1,54,28,SF,BUF,1,8,8,(9:28) (Shotgun) F.Gore up the middle to BUF 1 for 7 yards (K.Williams).,0,0,2012 -20121007_BUF@SF,1,53,52,SF,BUF,2,1,1,(8:52) L.Davis and W.Tukuafu reported in as eligible. F.Gore up the middle to BUF 1 for no gain (N.Barnett).,0,0,2012 -20121007_BUF@SF,1,53,14,SF,BUF,3,1,1,(8:14) F.Gore left tackle to BUF 1 for no gain (N.Barnett).,0,0,2012 -20121007_BUF@SF,1,52,29,SF,BUF,4,1,1,(7:29) D.Akers 19 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121007_BUF@SF,1,52,29,SF,BUF,,,1,D.Akers kicks 68 yards from SF 35 to BUF -3. L.McKelvin to SF 44 for 59 yards (T.Brock).,3,0,2012 -20121007_BUF@SF,1,52,14,BUF,SF,1,10,44,(7:14) (Shotgun) R.Fitzpatrick pass short left to St.Johnson ran ob at SF 37 for 7 yards. Caught at SF 39. 2-yds YAC,0,3,2012 -20121007_BUF@SF,1,51,46,BUF,SF,2,3,37,(6:46) (Shotgun) F.Jackson right guard to SF 33 for 4 yards (J.Smith).,0,3,2012 -20121007_BUF@SF,1,51,1,BUF,SF,1,10,33,(6:01) R.Fitzpatrick pass incomplete deep right to St.Johnson.,0,3,2012 -20121007_BUF@SF,1,50,56,BUF,SF,2,10,33,(5:56) (Shotgun) Direct snap to B.Smith. C.Spiller left end to SF 38 for -5 yards (N.Bowman).,0,3,2012 -20121007_BUF@SF,1,50,14,BUF,SF,3,15,38,(5:14) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to SF 37 for 1 yard (P.Willis). Caught at SF 37. 0-yds YAC,0,3,2012 -20121007_BUF@SF,1,49,37,BUF,SF,4,14,37,(4:37) S.Powell punts 24 yards to SF 13 Center-G.Sanborn out of bounds.,0,3,2012 -20121007_BUF@SF,1,49,29,SF,BUF,1,10,87,(4:29) A.Smith pass deep left to M.Crabtree to SF 32 for 19 yards (K.Sheppard). Caught at SF 31. 1-yd YAC,3,0,2012 -20121007_BUF@SF,1,48,45,SF,BUF,1,10,68,(3:45) (Shotgun) PENALTY on SF-J.Staley False Start 5 yards enforced at SF 32 - No Play.,3,0,2012 -20121007_BUF@SF,1,48,24,SF,BUF,1,15,73,(3:24) K.Williams left end pushed ob at SF 33 for 6 yards (A.Moats).,3,0,2012 -20121007_BUF@SF,1,47,58,SF,BUF,2,9,67,(2:58) A.Smith pass short right to M.Crabtree to BUF 26 for 41 yards (J.Byrd). PENALTY on SF-F.Gore Chop Block 15 yards enforced at SF 33 - No Play.,3,0,2012 -20121007_BUF@SF,1,47,27,SF,BUF,2,24,82,(2:27) A.Smith pass incomplete short left to K.Hunter.,3,0,2012 -20121007_BUF@SF,1,47,23,SF,BUF,3,24,82,(2:23) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 34 for 16 yards (B.Scott A.Williams). Caught at SF 21. 13-yds YAC,3,0,2012 -20121007_BUF@SF,1,46,40,SF,BUF,4,8,66,(1:40) A.Lee punts 54 yards to BUF 12 Center-B.Jennings downed by SF-T.Brock.,3,0,2012 -20121007_BUF@SF,1,46,30,BUF,SF,1,10,88,(1:30) C.Spiller up the middle to BUF 16 for 4 yards (N.Bowman).,0,3,2012 -20121007_BUF@SF,1,45,50,BUF,SF,2,6,84,(:50) R.Fitzpatrick pass short left to D.Jones to BUF 24 for 8 yards (C.Rogers N.Bowman). Caught at BUF 17. 7-yds YAC,0,3,2012 -20121007_BUF@SF,1,45,3,BUF,SF,1,10,76,(:03) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 38 for 14 yards (T.Brown). Caught at BUF 32. 6-yds YAC,0,3,2012 -20121007_BUF@SF,2,45,0,BUF,SF,1,10,62,(15:00) C.Spiller up the middle to BUF 40 for 2 yards (N.Bowman).,0,3,2012 -20121007_BUF@SF,2,44,24,BUF,SF,2,8,60,(14:24) (Shotgun) R.Fitzpatrick pass short left to S.Chandler to BUF 43 for 3 yards (P.Willis). Caught at BUF 43. 0-yds YAC,0,3,2012 -20121007_BUF@SF,2,43,41,BUF,SF,3,5,57,(13:41) (Shotgun) R.Fitzpatrick pass short right to T.Graham to SF 48 for 9 yards (D.Goldson C.Culliver). Caught at BUF 46. 6-yds YAC,0,3,2012 -20121007_BUF@SF,2,43,1,BUF,SF,1,10,48,(13:01) (Shotgun) R.Fitzpatrick pass deep right to S.Chandler to SF 28 for 20 yards (D.Whitner). Caught at SF30. 2-yds YAC,0,3,2012 -20121007_BUF@SF,2,42,18,BUF,SF,1,10,28,(12:18) C.Spiller right tackle to SF 16 for 12 yards (D.Whitner).,0,3,2012 -20121007_BUF@SF,2,41,41,BUF,SF,1,10,16,(11:41) R.Fitzpatrick pass incomplete short right to St.Johnson.,0,3,2012 -20121007_BUF@SF,2,41,36,BUF,SF,2,10,16,(11:36) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to SF 8 for 8 yards (T.Brown C.Rogers). Caught at SF8. 0-yds YAC,0,3,2012 -20121007_BUF@SF,2,40,54,BUF,SF,3,2,8,(10:54) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones.,0,3,2012 -20121007_BUF@SF,2,40,50,BUF,SF,4,2,8,(10:50) PENALTY on BUF-A.Carrington False Start 5 yards enforced at SF 8 - No Play.,0,3,2012 -20121007_BUF@SF,2,40,50,BUF,SF,4,7,13,(10:50) R.Lindell 31 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,3,2012 -20121007_BUF@SF,2,40,50,BUF,SF,,,13,J.Potter kicks 67 yards from BUF 35 to SF -2. K.Williams pushed ob at SF 26 for 28 yards (B.Smith).,3,3,2012 -20121007_BUF@SF,2,40,40,SF,BUF,1,10,74,(10:40) PENALTY on SF-M.Iupati False Start 5 yards enforced at SF 26 - No Play.,3,3,2012 -20121007_BUF@SF,2,40,40,SF,BUF,1,15,79,(10:40) (Shotgun) A.Smith pass short middle to M.Crabtree to BUF 43 for 36 yards (S.Gilmore). Caught at SF 31. 26-yds YAC,3,3,2012 -20121007_BUF@SF,2,40,2,SF,BUF,1,10,43,(10:02) A.Smith pass deep right to K.Williams for 43 yards TOUCHDOWN. Caught at BUF 15. 15-yds YAC,3,3,2012 -20121007_BUF@SF,2,40,2,SF,BUF,,,43,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,3,2012 -20121007_BUF@SF,2,40,2,SF,BUF,,,43,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,3,2012 -20121007_BUF@SF,2,39,54,BUF,SF,1,10,80,(9:54) (Shotgun) C.Spiller right tackle to BUF 23 for 3 yards (P.Willis).,3,10,2012 -20121007_BUF@SF,2,39,13,BUF,SF,2,7,77,(9:13) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 31 for 8 yards (C.Culliver). Caught at BUF 31. 0-yds YAC,3,10,2012 -20121007_BUF@SF,2,38,32,BUF,SF,1,10,69,(8:32) (Shotgun) C.Spiller left guard to BUF 36 for 5 yards (J.Smith).,3,10,2012 -20121007_BUF@SF,2,37,54,BUF,SF,2,5,64,(7:54) C.Spiller left end to BUF 39 for 3 yards (D.Goldson).,3,10,2012 -20121007_BUF@SF,2,37,13,BUF,SF,3,2,61,(7:13) (Shotgun) R.Fitzpatrick pass incomplete deep left to C.Spiller.,3,10,2012 -20121007_BUF@SF,2,37,8,BUF,SF,4,2,61,(7:08) S.Powell punts 58 yards to SF 3 Center-G.Sanborn out of bounds.,3,10,2012 -20121007_BUF@SF,2,36,59,SF,BUF,1,10,97,(6:59) F.Gore up the middle to SF 4 for 1 yard (M.Williams).,10,3,2012 -20121007_BUF@SF,2,36,21,SF,BUF,2,9,96,(6:21) F.Gore left guard to SF 6 for 2 yards (N.Barnett).,10,3,2012 -20121007_BUF@SF,2,35,39,SF,BUF,3,7,94,(5:39) C.Kaepernick in at QB K.Hunter left end to SF 20 for 14 yards (S.Gilmore). PENALTY on SF-D.Walker Tripping 3 yards enforced at SF 6 - No Play.,10,3,2012 -20121007_BUF@SF,2,35,13,SF,BUF,3,10,97,(5:13) A.Smith in at QB K.Hunter up the middle to SF 15 for 12 yards (J.Byrd; A.Williams).,10,3,2012 -20121007_BUF@SF,2,34,32,SF,BUF,1,10,85,(4:32) K.Hunter left tackle to SF 16 for 1 yard (M.Anderson).,10,3,2012 -20121007_BUF@SF,2,33,52,SF,BUF,2,9,84,(3:52) (Shotgun) A.Smith pass short left to M.Manningham to SF 16 for no gain (G.Wilson). Caught at SF 15. 1-yd YAC,10,3,2012 -20121007_BUF@SF,2,33,10,SF,BUF,3,9,84,(3:10) (Shotgun) A.Smith scrambles up the middle to SF 40 for 24 yards.,10,3,2012 -20121007_BUF@SF,2,32,26,SF,BUF,1,10,60,(2:26) PENALTY on BUF-K.Williams Neutral Zone Infraction 5 yards enforced at SF 40 - No Play.,10,3,2012 -20121007_BUF@SF,2,32,5,SF,BUF,1,5,55,(2:05) A.Smith pass incomplete short middle to M.Crabtree (S.Gilmore).,10,3,2012 -20121007_BUF@SF,2,32,0,SF,BUF,2,5,55,(2:00) A.Smith pass short right to V.Davis to BUF 38 for 17 yards (S.Gilmore). Caught at SF49. 13-yds YAC,10,3,2012 -20121007_BUF@SF,2,31,31,SF,BUF,1,10,38,(1:31) (No Huddle) A.Smith pass short right to V.Davis to BUF 37 for 1 yard (N.Bradham). Caught at BUF 37. 0-yds YAC,10,3,2012 -20121007_BUF@SF,2,31,26,SF,BUF,2,9,37,(1:26) (Shotgun) A.Smith pass short middle to V.Davis to BUF 26 for 11 yards (J.Rogers). Caught at BUF 31. 5-yds YAC,10,3,2012 -20121007_BUF@SF,2,30,58,SF,BUF,1,10,26,(:58) (No Huddle) A.Smith pass incomplete short left to V.Davis [M.Williams].,10,3,2012 -20121007_BUF@SF,2,30,58,SF,BUF,2,10,26,(:58) C.Kaepernick left end to BUF 20 for 6 yards (N.Barnett). FUMBLES (N.Barnett) RECOVERED by BUF-M.Dareus at BUF 17. M.Dareus to BUF 17 for no gain (D.Walker). 3-yds of loose ball yardage. The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,3,2012 -20121007_BUF@SF,2,30,46,BUF,SF,1,10,83,(:46) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham [Ald.Smith].,3,10,2012 -20121007_BUF@SF,2,30,40,BUF,SF,2,10,83,(:40) (Shotgun) F.Jackson left guard to BUF 21 for 4 yards (P.Willis).,3,10,2012 -20121007_BUF@SF,2,30,37,BUF,SF,3,6,79,(:37) (Shotgun) R.Fitzpatrick pass short left to S.Chandler to BUF 32 for 11 yards (P.Willis). FUMBLES (P.Willis) RECOVERED by SF-D.Goldson at BUF 33. D.Goldson to BUF 28 for 5 yards (F.Jackson). 1-yd loose ball yardage The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,10,2012 -20121007_BUF@SF,2,30,29,SF,BUF,1,10,28,(:29) (Shotgun) A.Smith pass deep left to M.Crabtree for 28 yards TOUCHDOWN. Caught in endzone. 0-yds YAC,10,3,2012 -20121007_BUF@SF,2,30,29,SF,BUF,,,28,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,10,3,2012 -20121007_BUF@SF,2,30,29,SF,BUF,,,28,D.Akers kicks 73 yards from SF 35 to BUF -8. L.McKelvin Touchback.,17,3,2012 -20121007_BUF@SF,2,30,24,BUF,SF,1,10,80,(:24) R.Fitzpatrick kneels to BUF 19 for -1 yards.,3,17,2012 -20121007_BUF@SF,3,30,0,SF,BUF,,,80,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,17,3,2012 -20121007_BUF@SF,3,30,0,BUF,SF,1,10,80,(15:00) F.Jackson right guard to BUF 27 for 7 yards (J.Smith).,3,17,2012 -20121007_BUF@SF,3,29,23,BUF,SF,2,3,73,(14:23) (Shotgun) F.Jackson up the middle to BUF 31 for 4 yards (C.Rogers).,3,17,2012 -20121007_BUF@SF,3,28,45,BUF,SF,1,10,69,(13:45) R.Fitzpatrick sacked at BUF 20 for -11 yards (A.Brooks).,3,17,2012 -20121007_BUF@SF,3,28,8,BUF,SF,2,21,80,(13:08) (Shotgun) R.Fitzpatrick scrambles right end to BUF 22 for 2 yards (P.Willis).,3,17,2012 -20121007_BUF@SF,3,27,28,BUF,SF,3,19,78,(12:28) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 27 for 5 yards (P.Cox). Caught at BUF 20. 7-yds YAC,3,17,2012 -20121007_BUF@SF,3,27,1,BUF,SF,4,14,73,(12:01) S.Powell punts 39 yards to SF 34 Center-G.Sanborn. T.Ginn to SF 34 for no gain (G.Sanborn). Ball inadvertently touched by T.Brock covered by T.Ginn.,3,17,2012 -20121007_BUF@SF,3,26,50,SF,BUF,1,10,66,(11:50) PENALTY on SF-F.Gore False Start 5 yards enforced at SF 34 - No Play.,17,3,2012 -20121007_BUF@SF,3,26,50,SF,BUF,1,15,71,(11:50) A.Smith pass deep right to V.Davis to BUF 47 for 24 yards (A.Moats). Caught at SF46. 7-yds YAC,17,3,2012 -20121007_BUF@SF,3,26,22,SF,BUF,1,10,47,(11:22) C.Kaepernick pass incomplete deep right to V.Davis (J.Byrd). PENALTY on SF Offensive Holding 10 yards enforced at BUF 47 - No Play.,17,3,2012 -20121007_BUF@SF,3,26,14,SF,BUF,1,20,57,(11:14) (Shotgun) A.Smith pass short middle to M.Crabtree to BUF 47 for 10 yards (J.Byrd A.Williams). Caught at BUF 47. 0-yds YAC,17,3,2012 -20121007_BUF@SF,3,25,35,SF,BUF,2,10,47,(10:35) F.Gore left tackle to BUF 16 for 31 yards (M.Dareus).,17,3,2012 -20121007_BUF@SF,3,25,1,SF,BUF,1,10,16,(10:01) C. Kaepernick at QB. (Shotgun) C.Kaepernick scrambles left end to BUF 1 for 15 yards (S.Gilmore; J.Byrd).,17,3,2012 -20121007_BUF@SF,3,25,1,SF,BUF,1,1,1,(10:01) D.Kilgore L.Davis and W.Tukuafu reported in as eligible. F.Gore up the middle for 1 yard TOUCHDOWN.,17,3,2012 -20121007_BUF@SF,3,25,1,SF,BUF,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,3,2012 -20121007_BUF@SF,3,25,1,SF,BUF,,,1,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,24,3,2012 -20121007_BUF@SF,3,24,6,BUF,SF,1,10,80,(9:06) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to BUF 26 for 6 yards (P.Willis). Caught at BUF 25. 1-yd YAC,3,24,2012 -20121007_BUF@SF,3,23,27,BUF,SF,2,4,74,(8:27) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler [Ald.Smith].,3,24,2012 -20121007_BUF@SF,3,23,22,BUF,SF,3,4,74,(8:22) (Shotgun) R.Fitzpatrick pass short left to T.Graham to BUF 45 for 19 yards (D.Whitner). Caught at BUF 30. 15-yds YAC,3,24,2012 -20121007_BUF@SF,3,22,52,BUF,SF,1,10,55,(7:52) (Shotgun) Direct snap to B.Smith. B.Smith left end to SF 20 for 35 yards (D.Goldson).,3,24,2012 -20121007_BUF@SF,3,22,10,BUF,SF,1,10,20,(7:10) (Shotgun) R.Fitzpatrick pass deep right intended for D.Jones INTERCEPTED by C.Culliver at SF 2. C.Culliver to SF 6 for 4 yards (D.Jones).,3,24,2012 -20121007_BUF@SF,3,22,0,SF,BUF,1,10,94,(7:00) F.Gore up the middle to SF 8 for 2 yards (N.Bradham).,24,3,2012 -20121007_BUF@SF,3,21,22,SF,BUF,2,8,92,(6:22) K.Hunter left end to SF 11 for 3 yards (M.Anderson).,24,3,2012 -20121007_BUF@SF,3,20,43,SF,BUF,3,5,89,(5:43) (Shotgun) K.Hunter left guard to SF 17 for 6 yards (M.Dareus).,24,3,2012 -20121007_BUF@SF,3,19,58,SF,BUF,1,10,83,(4:58) PENALTY on BUF-C.Kelsay Encroachment 5 yards enforced at SF 17 - No Play.,24,3,2012 -20121007_BUF@SF,3,19,40,SF,BUF,1,5,78,(4:40) B.Miller left guard to SF 31 for 9 yards (N.Bradham).,24,3,2012 -20121007_BUF@SF,3,18,57,SF,BUF,1,10,69,(3:57) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 38 for 7 yards (D.Searcy). Caught at SF 34. 4-yds YAC,24,3,2012 -20121007_BUF@SF,3,18,27,SF,BUF,2,3,62,(3:27) F.Gore left guard to BUF 45 for 17 yards (D.Searcy).,24,3,2012 -20121007_BUF@SF,3,17,43,SF,BUF,1,10,45,(2:43) A.Smith pass short right to R.Moss to BUF 34 for 11 yards (G.Wilson). Caught at BUF 34. 0-yds YAC,24,3,2012 -20121007_BUF@SF,3,17,2,SF,BUF,1,10,34,(2:02) A.Smith pass incomplete short left to M.Manningham [K.Sheppard].,24,3,2012 -20121007_BUF@SF,3,16,58,SF,BUF,2,10,34,(1:58) A.Dixon left end to BUF 25 for 9 yards (G.Wilson).,24,3,2012 -20121007_BUF@SF,3,16,14,SF,BUF,3,1,25,(1:14) D.Kilgore L.Davis and W.Tukuafu reported in as eligible. F.Gore up the middle to BUF 21 for 4 yards (S.Gilmore).,24,3,2012 -20121007_BUF@SF,3,15,34,SF,BUF,1,10,21,(:34) (Shotgun) A.Smith pass short right to G.Celek to BUF 17 for 4 yards (N.Bradham). Caught at BUF 19. 2-yds YAC,24,3,2012 -20121007_BUF@SF,4,15,0,SF,BUF,2,6,17,(15:00) C.Kaepernick in at QB. F.Gore up the middle to BUF 10 for 7 yards (K.Williams).,24,3,2012 -20121007_BUF@SF,4,14,16,SF,BUF,1,10,10,(14:16) A.Smith in at QB (Shotgun) A.Smith pass short right to M.Manningham for 10 yards TOUCHDOWN.,24,3,2012 -20121007_BUF@SF,4,14,16,SF,BUF,,,10,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,24,3,2012 -20121007_BUF@SF,4,14,16,SF,BUF,,,10,D.Akers kicks 69 yards from SF 35 to BUF -4. L.McKelvin Touchback.,31,3,2012 -20121007_BUF@SF,4,14,12,BUF,SF,1,10,80,(14:12) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 22 for 2 yards (Ald.Smith). Caught at BUF 24. -2 -yds YAC,3,31,2012 -20121007_BUF@SF,4,13,31,BUF,SF,2,8,78,(13:31) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler (N.Bowman).,3,31,2012 -20121007_BUF@SF,4,13,26,BUF,SF,3,8,78,(13:26) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,3,31,2012 -20121007_BUF@SF,4,13,9,BUF,SF,4,8,78,(13:09) S.Powell punts 56 yards to SF 22 Center-G.Sanborn. T.Ginn pushed ob at SF 33 for 11 yards (D.Searcy).,3,31,2012 -20121007_BUF@SF,4,13,0,SF,BUF,1,10,67,(13:00) (Shotgun) W.Tukuafu reported in as eligible. F.Gore up the middle to SF 43 for 10 yards (G.Wilson).,31,3,2012 -20121007_BUF@SF,4,12,15,SF,BUF,1,10,57,(12:15) K.Hunter left end to BUF 46 for 11 yards (N.Bradham).,31,3,2012 -20121007_BUF@SF,4,11,32,SF,BUF,1,10,46,(11:32) A.Smith pass incomplete short right to R.Moss.,31,3,2012 -20121007_BUF@SF,4,11,26,SF,BUF,2,10,46,(11:26) A.Smith pass incomplete deep right to V.Davis [M.Williams].,31,3,2012 -20121007_BUF@SF,4,11,21,SF,BUF,3,10,46,(11:21) (Shotgun) A.Smith scrambles up the middle to BUF 38 for 8 yards (A.Carrington). BUF-A.Williams was injured during the play.,31,3,2012 -20121007_BUF@SF,4,10,50,SF,BUF,4,2,38,(10:50) D.Kilgore L.Davis and W.Tukuafu reported in as eligible. A.Smith scrambles left end to BUF 21 for 17 yards.,31,3,2012 -20121007_BUF@SF,4,10,0,SF,BUF,1,10,21,(10:00) C.Kaepernick in at QB. PENALTY on BUF-M.Anderson Neutral Zone Infraction 5 yards enforced at BUF 21 - No Play.,31,3,2012 -20121007_BUF@SF,4,10,0,SF,BUF,1,5,16,(10:00) (Shotgun) C.Kaepernick scrambles left end for 16 yards TOUCHDOWN.,31,3,2012 -20121007_BUF@SF,4,10,0,SF,BUF,,,16,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,31,3,2012 -20121007_BUF@SF,4,10,0,SF,BUF,,,16,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,38,3,2012 -20121007_BUF@SF,4,9,52,BUF,SF,1,10,80,(9:52) F.Jackson right tackle to BUF 22 for 2 yards (C.Spillman).,3,38,2012 -20121007_BUF@SF,4,9,14,BUF,SF,2,8,78,(9:14) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 22 for no gain (T.Brock). Caught at BUF 20. 2-yds YAC,3,38,2012 -20121007_BUF@SF,4,8,31,BUF,SF,3,8,78,(8:31) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 27 for 5 yards (D.McBath). Caught at BUF 25. 2-yds YAC,3,38,2012 -20121007_BUF@SF,4,7,52,BUF,SF,4,3,73,(7:52) S.Powell punts 50 yards to SF 23 Center-G.Sanborn. T.Ginn to SF 31 for 8 yards (B.Smith).,3,38,2012 -20121007_BUF@SF,4,7,40,SF,BUF,1,10,69,(7:40) W.Tukuafu reported in as eligible. K.Hunter up the middle to SF 36 for 5 yards (K.Williams).,38,3,2012 -20121007_BUF@SF,4,7,0,SF,BUF,2,5,64,(7:00) C.Kaepernick scrambles right end to SF 38 for 2 yards (B.Scott).,38,3,2012 -20121007_BUF@SF,4,6,30,SF,BUF,3,3,62,(6:30) C.Kaepernick pass short right to K.Williams to SF 45 for 7 yards (T.McGee). Caught at SF43. 2-yds YAC,38,3,2012 -20121007_BUF@SF,4,5,48,SF,BUF,1,10,55,(5:48) (Shotgun) K.Hunter right tackle to BUF 49 for 6 yards (N.Bradham).,38,3,2012 -20121007_BUF@SF,4,5,3,SF,BUF,2,4,49,(5:03) (Shotgun) K.Hunter left tackle to BUF 23 for 26 yards (D.Searcy).,38,3,2012 -20121007_BUF@SF,4,4,14,SF,BUF,1,10,23,(4:14) K.Hunter up the middle to BUF 20 for 3 yards (M.Williams).,38,3,2012 -20121007_BUF@SF,4,3,32,SF,BUF,2,7,20,(3:32) (Shotgun) K.Hunter right guard to BUF 15 for 5 yards (G.Wilson).,38,3,2012 -20121007_BUF@SF,4,2,54,SF,BUF,3,2,15,(2:54) K.Hunter up the middle to BUF 12 for 3 yards (M.Anderson). BUF-M.Anderson was injured during the play.,38,3,2012 -20121007_BUF@SF,4,2,24,SF,BUF,1,10,12,(2:24) A.Dixon right end to BUF 7 for 5 yards (B.Scott).,38,3,2012 -20121007_BUF@SF,4,2,0,SF,BUF,2,5,7,(2:00) A.Dixon up the middle to BUF 3 for 4 yards (C.Kelsay).,38,3,2012 -20121007_BUF@SF,4,1,17,SF,BUF,3,1,3,(1:17) A.Dixon right guard for 3 yards TOUCHDOWN.,38,3,2012 -20121007_BUF@SF,4,1,17,SF,BUF,,,3,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,38,3,2012 -20121007_BUF@SF,4,1,17,SF,BUF,,,3,D.Akers kicks 55 yards from SF 35 to BUF 10. B.Smith pushed ob at BUF 38 for 28 yards (A.Dixon).,45,3,2012 -20121007_BUF@SF,4,1,3,BUF,SF,1,10,62,(1:03) T.Thigpen in at QB. F.Jackson left guard to BUF 42 for 4 yards (R.Jean Francois).,3,45,2012 -20121007_BUF@SF,4,0,26,BUF,SF,2,6,58,(:26) F.Jackson left tackle to BUF 43 for 1 yard (L.Grant D.Dobbs).,3,45,2012 -20121007_BUF@SF,4,0,26,BUF,SF,,,58,                      ,3,45,2012 -20121007_SD@NO,1,0,0,NO,SD,,,58,T.Morstead kicks 68 yards from NO 35 to SD -3. R.Goodman Touchback.,0,0,2012 -20121007_SD@NO,1,60,0,SD,NO,1,10,80,(15:00) P.Rivers pass short right to A.Gates to SD 19 for -1 yards (S.Ellis) [C.White]. Pass -5 YAC 4,0,0,2012 -20121007_SD@NO,1,59,19,SD,NO,2,11,81,(14:19) J.Battle left end to SD 23 for 4 yards (C.Lofton).,0,0,2012 -20121007_SD@NO,1,58,35,SD,NO,3,7,77,(13:35) (Shotgun) P.Rivers pass incomplete short right to E.Royal.,0,0,2012 -20121007_SD@NO,1,58,31,SD,NO,4,7,77,(13:31) M.Scifres punts 47 yards to NO 30 Center-M.Windt fair catch by D.Sproles.,0,0,2012 -20121007_SD@NO,1,58,23,NO,SD,1,10,70,(13:23) (Shotgun) D.Brees pass short left to D.Henderson to NO 36 for 6 yards (A.Cason). Pass 5 YAC 1,0,0,2012 -20121007_SD@NO,1,57,55,NO,SD,2,4,64,(12:55) P.Thomas right guard to NO 38 for 2 yards (E.Weddle; A.Franklin).,0,0,2012 -20121007_SD@NO,1,57,20,NO,SD,3,2,62,(12:20) (Shotgun) D.Brees pass short left to G.Camarillo pushed ob at NO 45 for 7 yards (M.Gilchrist). Pass 5 YAC 2,0,0,2012 -20121007_SD@NO,1,56,54,NO,SD,1,10,55,(11:54) (Shotgun) PENALTY on NO-D.Henderson False Start 5 yards enforced at NO 45 - No Play.,0,0,2012 -20121007_SD@NO,1,56,37,NO,SD,1,15,60,(11:37) (Shotgun) D.Brees pass incomplete short right to M.Colston (Q.Jammer).,0,0,2012 -20121007_SD@NO,1,56,33,NO,SD,2,15,60,(11:33) (Shotgun) D.Brees sacked at NO 31 for -9 yards (E.Weddle). FUMBLES (E.Weddle) recovered by NO-M.Ingram at NO 29. M.Ingram pushed ob at NO 41 for 12 yards (S.Phillips).,0,0,2012 -20121007_SD@NO,1,56,3,NO,SD,3,14,59,(11:03) (Shotgun) D.Brees pass short left to D.Sproles to NO 36 for -5 yards (C.Lynch). Pass -5 YAC 0,0,0,2012 -20121007_SD@NO,1,55,30,NO,SD,4,19,64,(10:30) T.Morstead punts 60 yards to SD 4 Center-J.Drescher. E.Royal to SD 9 for 5 yards (C.Roby).,0,0,2012 -20121007_SD@NO,1,55,22,SD,NO,1,10,91,(10:22) P.Rivers pass deep right to M.Floyd pushed ob at SD 48 for 39 yards (M.Jenkins). Pass 24 YAC 15,0,0,2012 -20121007_SD@NO,1,54,56,SD,NO,1,10,52,(9:56) J.Battle left tackle to SD 49 for 1 yard (S.Shanle).,0,0,2012 -20121007_SD@NO,1,54,15,SD,NO,2,9,51,(9:15) (Shotgun) P.Rivers pass incomplete short right to R.Mathews.,0,0,2012 -20121007_SD@NO,1,54,11,SD,NO,3,9,51,(9:11) (Shotgun) P.Rivers pass deep right to M.Floyd to NO 19 for 32 yards (P.Robinson). Pass 26 YAC 6,0,0,2012 -20121007_SD@NO,1,53,25,SD,NO,1,10,19,(8:25) (Shotgun) P.Rivers pass short left to J.Battle to NO 16 for 3 yards (C.Lofton). Pass -1 YAC 4,0,0,2012 -20121007_SD@NO,1,52,44,SD,NO,2,7,16,(7:44) J.Battle right guard to NO 15 for 1 yard (S.Ellis).,0,0,2012 -20121007_SD@NO,1,52,2,SD,NO,3,6,15,(7:02) (Shotgun) P.Rivers pass short left to R.Meachem for 15 yards TOUCHDOWN. PENALTY on NO-M.Jenkins Unsportsmanlike Conduct 15 yards enforced between downs. Pass 15 YAC 0,0,0,2012 -20121007_SD@NO,1,52,2,SD,NO,,,15,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20121007_SD@NO,1,52,2,SD,NO,,,15,Kickoff from the 50 due to the unsportsmanlike conduct penalty following the touchdown. N.Novak kicks 50 yards from 50 to end zone Touchback.,7,0,2012 -20121007_SD@NO,1,51,56,NO,SD,1,10,80,(6:56) P.Thomas left tackle to NO 21 for 1 yard (A.Franklin).,0,7,2012 -20121007_SD@NO,1,51,14,NO,SD,2,9,79,(6:14) (Shotgun) D.Brees pass short left to M.Colston to NO 25 for 4 yards (E.Weddle). Pass 4 YAC 0,0,7,2012 -20121007_SD@NO,1,50,39,NO,SD,3,5,75,(5:39) (Shotgun) D.Brees pass short right to M.Colston to NO 37 for 12 yards (M.Gilchrist). Pass 10 YAC 2,0,7,2012 -20121007_SD@NO,1,50,4,NO,SD,1,10,63,(5:04) M.Ingram left guard to NO 43 for 6 yards (T.Spikes).,0,7,2012 -20121007_SD@NO,1,49,30,NO,SD,2,4,57,(4:30) (Shotgun) D.Brees pass incomplete short right to D.Henderson.,0,7,2012 -20121007_SD@NO,1,49,24,NO,SD,3,4,57,(4:24) (Shotgun) D.Brees pass short middle to G.Camarillo to SD 44 for 13 yards (C.Lynch). Pass 13 YAC 0,0,7,2012 -20121007_SD@NO,1,48,50,NO,SD,1,10,44,(3:50) D.Brees pass incomplete short right to J.Graham.,0,7,2012 -20121007_SD@NO,1,48,46,NO,SD,2,10,44,(3:46) (Shotgun) D.Brees pass short left to J.Graham to SD 40 for 4 yards (M.Gilchrist). Pass 3 YAC 1,0,7,2012 -20121007_SD@NO,1,48,5,NO,SD,3,6,40,(3:05) (Shotgun) D.Brees pass deep right to D.Henderson for 40 yards TOUCHDOWN. Pass 28 YAC 12 Saints #9 D.Brees passes Johnny Unitas for consecutive regular season games with a touchdown; Brees now has 48 straight games with a passing touchdown.,0,7,2012 -20121007_SD@NO,1,48,5,NO,SD,,,40,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,7,2012 -20121007_SD@NO,1,48,5,NO,SD,,,40,T.Morstead kicks 73 yards from NO 35 to SD -8. R.Goodman to SD 12 for 20 yards (R.Humber). PENALTY on SD-R.McMichael Offensive Holding 6 yards enforced at SD 12.,7,7,2012 -20121007_SD@NO,1,47,53,SD,NO,1,10,94,(2:53) R.Mathews left end to SD 24 for 18 yards (P.Robinson).,7,7,2012 -20121007_SD@NO,1,47,15,SD,NO,1,10,76,(2:15) P.Rivers pass short left to R.Mathews to SD 34 for 10 yards (P.Robinson). Pass -2 YAC 12,7,7,2012 -20121007_SD@NO,1,46,30,SD,NO,1,10,66,(1:30) (Shotgun) R.Mathews left tackle to SD 41 for 7 yards (R.Harper).,7,7,2012 -20121007_SD@NO,1,45,47,SD,NO,2,3,59,(:47) P.Rivers pass incomplete short left to M.Floyd (J.Greer).,7,7,2012 -20121007_SD@NO,1,45,43,SD,NO,3,3,59,(:43) (Shotgun) P.Rivers pass incomplete short right to E.Royal (C.White).,7,7,2012 -20121007_SD@NO,1,45,36,SD,NO,4,3,59,(:36) M.Scifres punts 41 yards to NO 18 Center-M.Windt. D.Sproles to NO 18 for no gain (M.Windt). PENALTY on NO-M.Wilson Offensive Holding 9 yards enforced at NO 18. Sproles returned the ball to the NO 28 but the penalty was enforced from the 18.,7,7,2012 -20121007_SD@NO,1,45,26,NO,SD,1,10,91,(:26) P.Thomas right guard to NO 13 for 4 yards (E.Weddle).,7,7,2012 -20121007_SD@NO,2,45,0,NO,SD,2,6,87,(15:00) D.Brees pass short right to D.Henderson to NO 15 for 2 yards (Q.Jammer). Pass 0 YAC 2,7,7,2012 -20121007_SD@NO,2,44,20,NO,SD,3,4,85,(14:20) (Shotgun) D.Brees pass incomplete short middle to M.Colston [A.Barnes].,7,7,2012 -20121007_SD@NO,2,44,15,NO,SD,4,4,85,(14:15) T.Morstead punts 50 yards to SD 35 Center-J.Drescher out of bounds.,7,7,2012 -20121007_SD@NO,2,44,6,SD,NO,1,10,65,(14:06) R.Mathews right end pushed ob at SD 47 for 12 yards (C.Lofton).,7,7,2012 -20121007_SD@NO,2,43,34,SD,NO,1,10,53,(13:34) (Shotgun) P.Rivers pass short left to E.Royal to NO 42 for 11 yards (C.Lofton). Pass -5 YAC 16,7,7,2012 -20121007_SD@NO,2,42,54,SD,NO,1,10,42,(12:54) R.Mathews left end to NO 30 for 12 yards (S.Shanle).,7,7,2012 -20121007_SD@NO,2,42,54,SD,NO,1,10,30,(12:54) (Shotgun) PENALTY on SD-M.Floyd False Start 5 yards enforced at NO 30 - No Play.,7,7,2012 -20121007_SD@NO,2,41,45,SD,NO,1,15,35,(11:45) (Shotgun) P.Rivers pass short left to J.Battle to NO 31 for 4 yards (C.Lofton). Pass -3 YAC 7,7,7,2012 -20121007_SD@NO,2,40,58,SD,NO,2,11,31,(10:58) P.Rivers pass incomplete deep left to M.Floyd. PENALTY on NO-J.Greer Defensive Pass Interference 25 yards enforced at NO 31 - No Play.,7,7,2012 -20121007_SD@NO,2,40,52,SD,NO,1,6,6,(10:52) (Shotgun) J.Battle left guard to NO 2 for 4 yards (C.Lofton).,7,7,2012 -20121007_SD@NO,2,40,11,SD,NO,2,2,2,(10:11) (Shotgun) P.Rivers pass incomplete short right to R.Meachem.,7,7,2012 -20121007_SD@NO,2,40,6,SD,NO,3,2,2,(10:06) (Shotgun) P.Rivers pass incomplete short right to A.Gates (R.Harper).,7,7,2012 -20121007_SD@NO,2,40,1,SD,NO,4,2,2,(10:01) N.Novak 20 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,7,7,2012 -20121007_SD@NO,2,40,1,SD,NO,,,2,N.Novak kicks 72 yards from SD 35 to NO -7. D.Sproles Touchback.,10,7,2012 -20121007_SD@NO,2,39,58,NO,SD,1,10,80,(9:58) (Shotgun) D.Sproles right guard to NO 19 for -1 yards (M.Gilchrist).,7,10,2012 -20121007_SD@NO,2,39,28,NO,SD,2,11,81,(9:28) (Shotgun) D.Brees pass short left to D.Henderson to NO 27 for 8 yards (A.Cason) [T.Spikes]. Pass 8 YAC 0,7,10,2012 -20121007_SD@NO,2,38,53,NO,SD,3,3,73,(8:53) (Shotgun) D.Brees pass short left to D.Henderson to NO 36 for 9 yards (A.Cason). FUMBLES (A.Cason) ball out of bounds at NO 36. Pass 8 YAC 1. Henderson fumbled out-of-bounds was ruled recovered at the 36.,7,10,2012 -20121007_SD@NO,2,38,38,NO,SD,1,10,64,(8:38) D.Brees pass short left to M.Colston ran ob at SD 24 for 40 yards (A.Cason). Pass 13 YAC 27,7,10,2012 -20121007_SD@NO,2,38,7,NO,SD,1,10,24,(8:07) D.Brees pass incomplete deep left to M.Colston [K.Reyes].,7,10,2012 -20121007_SD@NO,2,38,1,NO,SD,2,10,24,(8:01) (Shotgun) D.Sproles left end to SD 19 for 5 yards (A.Cason).,7,10,2012 -20121007_SD@NO,2,37,25,NO,SD,3,5,19,(7:25) (Shotgun) D.Brees pass deep right to M.Colston for 19 yards TOUCHDOWN [K.Reyes]. Pass 19 YAC 0,7,10,2012 -20121007_SD@NO,2,37,25,NO,SD,,,19,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,10,2012 -20121007_SD@NO,2,37,25,NO,SD,,,19,T.Morstead kicks 68 yards from NO 35 to SD -3. R.Goodman to SD 19 for 22 yards (R.Humber).,14,10,2012 -20121007_SD@NO,2,37,11,SD,NO,1,10,81,(7:11) (Shotgun) P.Rivers pass short right to R.Mathews to SD 26 for 7 yards (C.Lofton; T.Johnson). Pass -4 YAC 11,10,14,2012 -20121007_SD@NO,2,36,28,SD,NO,2,3,74,(6:28) R.Mathews left guard to SD 30 for 4 yards (C.Jordan; M.Jenkins).,10,14,2012 -20121007_SD@NO,2,35,45,SD,NO,1,10,70,(5:45) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,10,14,2012 -20121007_SD@NO,2,35,39,SD,NO,2,10,70,(5:39) R.Mathews right end to SD 30 for no gain (T.Johnson).,10,14,2012 -20121007_SD@NO,2,34,54,SD,NO,3,10,70,(4:54) (Shotgun) P.Rivers pass deep left to E.Royal to 50 for 20 yards (C.White). PENALTY on NO-W.Smith Roughing the Passer 15 yards enforced at 50. Pass 20 YAC 0,10,14,2012 -20121007_SD@NO,2,34,20,SD,NO,1,10,35,(4:20) P.Rivers pass incomplete deep left to A.Gates.,10,14,2012 -20121007_SD@NO,2,34,13,SD,NO,2,10,35,(4:13) (Shotgun) P.Rivers pass short middle to A.Gates to NO 28 for 7 yards (S.Shanle). Pass 5 YAC 2,10,14,2012 -20121007_SD@NO,2,33,31,SD,NO,3,3,28,(3:31) (Shotgun) P.Rivers sacked at NO 36 for -8 yards (W.Smith).,10,14,2012 -20121007_SD@NO,2,32,58,SD,NO,4,11,36,(2:58) N.Novak 55 yard field goal is No Good Wide Left Center-M.Windt Holder-M.Scifres.,10,14,2012 -20121007_SD@NO,2,32,52,NO,SD,1,10,55,(2:52) M.Ingram left guard to NO 49 for 4 yards (C.Liuget; V.Martin).,14,10,2012 -20121007_SD@NO,2,32,13,NO,SD,2,6,51,(2:13) (Shotgun) D.Brees pass incomplete short left to G.Camarillo (C.Liuget).,14,10,2012 -20121007_SD@NO,2,32,9,NO,SD,3,6,51,(2:09) (Shotgun) D.Brees sacked at NO 36 for -13 yards (C.Liuget).,14,10,2012 -20121007_SD@NO,2,32,0,NO,SD,4,19,64,(2:00) T.Morstead punts 61 yards to SD 3 Center-J.Drescher. E.Royal to SD 14 for 11 yards (C.Roby).,14,10,2012 -20121007_SD@NO,2,31,48,SD,NO,1,10,86,(1:48) (Shotgun) R.Brown right guard to SD 35 for 21 yards (M.Jenkins; I.Abdul-Quddus).,10,14,2012 -20121007_SD@NO,2,31,20,SD,NO,1,10,65,(1:20) (Shotgun) P.Rivers pass short right to R.Mathews to SD 48 for 13 yards (R.Harper). Pass -2 YAC 15,10,14,2012 -20121007_SD@NO,2,30,52,SD,NO,1,10,52,(:52) (Shotgun) P.Rivers pass short right to R.Meachem to NO 44 for 8 yards (P.Robinson).,10,14,2012 -20121007_SD@NO,2,30,44,SD,NO,2,2,44,(:44) P.Rivers pass deep middle to R.Meachem for 44 yards TOUCHDOWN. Pass 33 YAC 11,10,14,2012 -20121007_SD@NO,2,30,44,SD,NO,,,44,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,10,14,2012 -20121007_SD@NO,2,30,44,SD,NO,,,44,N.Novak kicks 70 yards from SD 35 to NO -5. D.Sproles to NO 19 for 24 yards (C.Lynch).,17,14,2012 -20121007_SD@NO,2,30,32,NO,SD,1,10,81,(:32) (Shotgun) D.Brees pass incomplete short left to M.Colston.,14,17,2012 -20121007_SD@NO,2,30,26,NO,SD,2,10,81,(:26) (Shotgun) D.Brees pass short right to D.Sproles ran ob at NO 33 for 14 yards (D.Butler). Pass 2 YAC 12,14,17,2012 -20121007_SD@NO,2,30,19,NO,SD,1,10,67,(:19) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,14,17,2012 -20121007_SD@NO,2,30,15,NO,SD,2,10,67,(:15) (Shotgun) D.Brees pass short right to D.Sproles to NO 41 for 8 yards (E.Weddle). Pass -4 YAC 12,14,17,2012 -20121007_SD@NO,2,30,7,NO,SD,3,2,59,(:07) (Shotgun) D.Brees pass short right to D.Sproles ran ob at NO 42 for 1 yard (A.Bigby) [A.Barnes]. Pass 2 YAC -1,14,17,2012 -20121007_SD@NO,2,30,1,NO,SD,4,1,58,(:01) D.Brees kneels to NO 41 for -1 yards.,14,17,2012 -20121007_SD@NO,3,30,0,SD,NO,,,58,N.Novak kicks 73 yards from SD 35 to NO -8. D.Sproles Touchback.,17,14,2012 -20121007_SD@NO,3,30,0,NO,SD,1,10,80,(15:00) M.Ingram left guard to NO 22 for 2 yards (A.Bigby).,14,17,2012 -20121007_SD@NO,3,29,25,NO,SD,2,8,78,(14:25) D.Sproles left end to NO 25 for 3 yards (V.Martin; S.Phillips).,14,17,2012 -20121007_SD@NO,3,28,53,NO,SD,3,5,75,(13:53) (Shotgun) D.Brees pass short left intended for D.Henderson INTERCEPTED by Q.Jammer at NO 34. Q.Jammer to NO 25 for 9 yards (D.Henderson).,14,17,2012 -20121007_SD@NO,3,28,46,SD,NO,1,10,25,(13:46) R.Mathews left guard to NO 23 for 2 yards (C.Jordan).,17,14,2012 -20121007_SD@NO,3,28,7,SD,NO,2,8,23,(13:07) (Shotgun) P.Rivers pass short left to R.Mathews pushed ob at NO 13 for 10 yards (S.Shanle; B.Bunkley). Pass -2 YAC 12,17,14,2012 -20121007_SD@NO,3,27,34,SD,NO,1,10,13,(12:34) R.Mathews left end for 13 yards TOUCHDOWN.,17,14,2012 -20121007_SD@NO,3,27,34,SD,NO,,,13,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,17,14,2012 -20121007_SD@NO,3,27,34,SD,NO,,,13,N.Novak kicks 71 yards from SD 35 to NO -6. D.Sproles to NO 19 for 25 yards (D.Rosario).,24,14,2012 -20121007_SD@NO,3,27,23,NO,SD,1,10,81,(12:23) (Shotgun) D.Brees pass incomplete short right to M.Colston.,14,24,2012 -20121007_SD@NO,3,27,19,NO,SD,2,10,81,(12:19) D.Brees pass short right to M.Colston to NO 31 for 12 yards (Q.Jammer). Pass 11 YAC 1,14,24,2012 -20121007_SD@NO,3,26,48,NO,SD,1,10,69,(11:48) P.Thomas left guard to NO 34 for 3 yards (J.Johnson).,14,24,2012 -20121007_SD@NO,3,26,15,NO,SD,2,7,66,(11:15) D.Brees pass short left to D.Henderson ran ob at NO 42 for 8 yards (A.Cason). Pass 7 YAC 1,14,24,2012 -20121007_SD@NO,3,25,39,NO,SD,1,10,58,(10:39) D.Brees pass incomplete short left to M.Colston.,14,24,2012 -20121007_SD@NO,3,25,33,NO,SD,2,10,58,(10:33) (Shotgun) D.Brees pass incomplete deep right to M.Colston.,14,24,2012 -20121007_SD@NO,3,25,27,NO,SD,3,10,58,(10:27) (Shotgun) PENALTY on NO-B.Grubbs False Start 5 yards enforced at NO 42 - No Play.,14,24,2012 -20121007_SD@NO,3,25,27,NO,SD,3,15,63,(10:27) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 37 - No Play.,14,24,2012 -20121007_SD@NO,3,25,27,NO,SD,3,20,68,(10:27) (Shotgun) D.Brees pass incomplete short left to M.Colston.,14,24,2012 -20121007_SD@NO,3,25,19,NO,SD,4,20,68,(10:19) T.Morstead punts 36 yards to SD 32 Center-J.Drescher out of bounds.,14,24,2012 -20121007_SD@NO,3,25,13,SD,NO,1,10,68,(10:13) R.Mathews left guard to SD 28 for -4 yards (R.Harper). INJURY UPDATE - New Orleans #33 J.Greer hip is OUT.,24,14,2012 -20121007_SD@NO,3,24,25,SD,NO,2,14,72,(9:25) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at SD 28 - No Play.,24,14,2012 -20121007_SD@NO,3,24,0,SD,NO,2,19,77,(9:00) (Shotgun) R.Mathews left guard to SD 35 for 12 yards (R.Harper).,24,14,2012 -20121007_SD@NO,3,23,17,SD,NO,3,7,65,(8:17) (Shotgun) P.Rivers pass short right to A.Gates to SD 48 for 13 yards (R.Harper). Pass 7 YAC 6,24,14,2012 -20121007_SD@NO,3,22,31,SD,NO,1,10,52,(7:31) R.Mathews right guard to 50 for 2 yards (A.Hicks).,24,14,2012 -20121007_SD@NO,3,21,47,SD,NO,2,8,50,(6:47) (Shotgun) P.Rivers pass short right to R.Brown to NO 40 for 10 yards (J.Patrick). Pass 1 YAC 9,24,14,2012 -20121007_SD@NO,3,21,2,SD,NO,1,10,40,(6:02) P.Rivers pass incomplete short right.,24,14,2012 -20121007_SD@NO,3,20,56,SD,NO,2,10,40,(5:56) P.Rivers sacked at SD 48 for -12 yards (C.Lofton).,24,14,2012 -20121007_SD@NO,3,20,19,SD,NO,3,22,52,(5:19) (Shotgun) R.Brown right tackle to NO 46 for 6 yards (J.Galette).,24,14,2012 -20121007_SD@NO,3,19,46,SD,NO,4,16,46,(4:46) M.Scifres punts 33 yards to NO 13 Center-M.Windt fair catch by D.Sproles. SD-M.Windt was injured during the play. His return is Probable.,24,14,2012 -20121007_SD@NO,3,19,39,NO,SD,1,10,87,(4:39) (Shotgun) D.Brees pass short left to D.Henderson to NO 22 for 9 yards (A.Cason). Pass 8 YAC 1,14,24,2012 -20121007_SD@NO,3,19,2,NO,SD,2,1,78,(4:02) D.Brees pass incomplete short right to J.Morgan.,14,24,2012 -20121007_SD@NO,3,18,59,NO,SD,3,1,78,(3:59) M.Ingram right guard to NO 23 for 1 yard (A.Franklin; V.Martin).,14,24,2012 -20121007_SD@NO,3,18,35,NO,SD,1,10,77,(3:35) D.Brees sacked at NO 17 for -6 yards (S.Phillips).,14,24,2012 -20121007_SD@NO,3,18,0,NO,SD,2,16,83,(3:00) (Shotgun) PENALTY on SD-M.Ingram Roughing the Passer 15 yards enforced at NO 17 - No Play.,14,24,2012 -20121007_SD@NO,3,17,50,NO,SD,1,10,68,(2:50) P.Thomas right guard to NO 40 for 8 yards (E.Weddle).,14,24,2012 -20121007_SD@NO,3,17,13,NO,SD,2,2,60,(2:13) (Shotgun) D.Brees pass short right to P.Thomas to NO 44 for 4 yards (Q.Jammer; L.English). Pass -5 YAC 9,14,24,2012 -20121007_SD@NO,3,16,40,NO,SD,1,10,56,(1:40) P.Thomas right guard to NO 48 for 4 yards (T.Spikes).,14,24,2012 -20121007_SD@NO,3,16,7,NO,SD,2,6,52,(1:07) D.Brees pass short left to P.Thomas to SD 16 for 36 yards (E.Weddle). Pass -2 YAC 38,14,24,2012 -20121007_SD@NO,3,15,16,NO,SD,1,10,16,(:16) (Shotgun) D.Brees pass short middle to M.Colston for 16 yards TOUCHDOWN. Pass 15 YAC 1,14,24,2012 -20121007_SD@NO,3,15,16,NO,SD,,,16,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,24,2012 -20121007_SD@NO,3,15,16,NO,SD,,,16,T.Morstead kicks 74 yards from NO 35 to SD -9. R.Goodman to SD 29 for 38 yards (J.Collins).,21,24,2012 -20121007_SD@NO,3,15,6,SD,NO,1,10,71,(:06) R.Mathews left tackle to SD 31 for 2 yards (B.Bunkley).,24,21,2012 -20121007_SD@NO,4,15,0,SD,NO,2,8,69,(15:00) (Shotgun) P.Rivers pass incomplete deep middle to E.Royal (R.Harper).,24,21,2012 -20121007_SD@NO,4,14,56,SD,NO,3,8,69,(14:56) (Shotgun) P.Rivers pass incomplete deep right to A.Gates.,24,21,2012 -20121007_SD@NO,4,14,50,SD,NO,4,8,69,(14:50) M.Scifres punts 61 yards to NO 8 Center-M.Windt. D.Sproles to NO 10 for 2 yards (D.Stuckey).,24,21,2012 -20121007_SD@NO,4,14,39,NO,SD,1,10,90,(14:39) (Shotgun) D.Brees pass short right to D.Sproles to NO 20 for 10 yards (Q.Jammer; D.Butler). Pass -5 YAC 15,21,24,2012 -20121007_SD@NO,4,14,4,NO,SD,1,10,80,(14:04) P.Thomas right end to NO 33 for 13 yards (E.Weddle). SD-S.Phillips was injured during the play. His return is Probable. PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at NO 20 - No Play.,21,24,2012 -20121007_SD@NO,4,13,42,NO,SD,1,20,90,(13:42) (Shotgun) D.Brees pass short middle to G.Camarillo to NO 23 for 13 yards (D.Williams). Pass 13 YAC 0,21,24,2012 -20121007_SD@NO,4,13,7,NO,SD,2,7,77,(13:07) D.Brees pass short left to G.Camarillo to NO 34 for 11 yards (A.Cason; L.English). Pass 3 YAC 8,21,24,2012 -20121007_SD@NO,4,12,38,NO,SD,1,10,66,(12:38) PENALTY on SD Defensive 12 On-field 5 yards enforced at NO 34 - No Play.,21,24,2012 -20121007_SD@NO,4,12,23,NO,SD,1,5,61,(12:23) P.Thomas right guard to NO 43 for 4 yards (T.Spikes).,21,24,2012 -20121007_SD@NO,4,11,35,NO,SD,2,1,57,(11:35) D.Brees pass deep middle to D.Henderson to SD 16 for 41 yards (Q.Jammer). Pass 38 YAC 3,21,24,2012 -20121007_SD@NO,4,10,55,NO,SD,1,10,16,(10:55) M.Ingram right guard to SD 13 for 3 yards (J.Johnson).,21,24,2012 -20121007_SD@NO,4,10,8,NO,SD,2,7,13,(10:08) D.Sproles left end to SD 14 for -1 yards (J.Johnson).,21,24,2012 -20121007_SD@NO,4,9,32,NO,SD,3,8,14,(9:32) (Shotgun) D.Brees pass short right to M.Colston to SD 5 for 9 yards (Q.Jammer). Pass 9 YAC 0,21,24,2012 -20121007_SD@NO,4,8,55,NO,SD,1,5,5,(8:55) D.Brees pass short left to M.Colston for 5 yards TOUCHDOWN. Penalty on SD-A.Cason Defensive Pass Interference declined. Pass 5 YAC 0,21,24,2012 -20121007_SD@NO,4,8,55,NO,SD,,,5,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,21,24,2012 -20121007_SD@NO,4,8,55,NO,SD,,,5,T.Morstead kicks 70 yards from NO 35 to SD -5. R.Goodman to SD 18 for 23 yards (R.Bush).,28,24,2012 -20121007_SD@NO,4,8,46,SD,NO,1,10,82,(8:46) (Shotgun) P.Rivers pass short left to R.Mathews to SD 32 for 14 yards (C.White; M.Jenkins). Pass -6 YAC 20,24,28,2012 -20121007_SD@NO,4,8,2,SD,NO,1,10,68,(8:02) (Shotgun) P.Rivers pass short left to R.Mathews to SD 37 for 5 yards (C.Lofton). Pass -7 YAC 12,24,28,2012 -20121007_SD@NO,4,7,25,SD,NO,2,5,63,(7:25) P.Rivers pass short left to D.Rosario to NO 47 for 16 yards (S.Shanle). Pass 4 YAC 12,24,28,2012 -20121007_SD@NO,4,6,39,SD,NO,1,10,47,(6:39) P.Rivers pass incomplete short right.,24,28,2012 -20121007_SD@NO,4,6,33,SD,NO,2,10,47,(6:33) (Shotgun) P.Rivers sacked at SD 45 for -8 yards (J.Galette).,24,28,2012 -20121007_SD@NO,4,6,0,SD,NO,3,18,55,(6:00) (Shotgun) P.Rivers pass deep middle intended for M.Floyd INTERCEPTED by R.Harper (M.Jenkins) at NO 36. R.Harper to SD 23 for 41 yards (L.Vasquez). The ball was batted into the air by #27 M. Jenkins and caught by #41 R.Harper for the interception.,24,28,2012 -20121007_SD@NO,4,5,45,NO,SD,1,10,23,(5:45) P.Thomas left end to SD 20 for 3 yards (S.Phillips).,28,24,2012 -20121007_SD@NO,4,5,13,NO,SD,2,7,20,(5:13) P.Thomas left guard to SD 19 for 1 yard (K.Reyes).,28,24,2012 -20121007_SD@NO,4,4,26,NO,SD,3,6,19,(4:26) (Shotgun) D.Brees pass short middle to M.Colston to SD 5 for 14 yards (C.Lynch). Pass 12 YAC 2,28,24,2012 -20121007_SD@NO,4,3,45,NO,SD,1,5,5,(3:45) PENALTY on NO-D.Thomas False Start 5 yards enforced at SD 5 - No Play.,28,24,2012 -20121007_SD@NO,4,3,40,NO,SD,1,10,10,(3:40) D.Sproles left guard to SD 7 for 3 yards (D.Williams).,28,24,2012 -20121007_SD@NO,4,3,7,NO,SD,2,7,7,(3:07) D.Brees pass incomplete short right to M.Colston.,28,24,2012 -20121007_SD@NO,4,3,4,NO,SD,3,7,7,(3:04) (Shotgun) D.Brees pass incomplete short left to D.Sproles (C.Liuget).,28,24,2012 -20121007_SD@NO,4,3,0,NO,SD,4,7,7,(3:00) G.Hartley 26 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,28,24,2012 -20121007_SD@NO,4,3,0,NO,SD,,,7,T.Morstead kicks 74 yards from NO 35 to SD -9. R.Goodman to SD 15 for 24 yards (R.Humber).,31,24,2012 -20121007_SD@NO,4,2,51,SD,NO,1,10,85,(2:51) (Shotgun) P.Rivers pass short middle to M.Floyd to SD 39 for 24 yards (P.Robinson). Pass 13 YAC 11,24,31,2012 -20121007_SD@NO,4,2,24,SD,NO,1,10,61,(2:24) (Shotgun) P.Rivers pass short left to R.Brown pushed ob at SD 45 for 6 yards (P.Robinson). Pass -2 YAC 8,24,31,2012 -20121007_SD@NO,4,2,18,SD,NO,2,4,55,(2:18) (Shotgun) P.Rivers pass short left to R.Brown to NO 45 for 10 yards (W.Smith; P.Robinson). Pass -4 YAC 14,24,31,2012 -20121007_SD@NO,4,2,0,SD,NO,1,10,45,(2:00) (Shotgun) P.Rivers sacked at SD 48 for -7 yards (C.Jordan). Penalty on SD-J.Clary Offensive Holding declined.,24,31,2012 -20121007_SD@NO,4,1,53,SD,NO,2,17,52,(1:53) (Shotgun) P.Rivers pass deep left to A.Gates ran ob at NO 24 for 28 yards. PENALTY on SD-A.Gates Offensive Pass Interference 10 yards enforced at SD 48 - No Play.,24,31,2012 -20121007_SD@NO,4,1,45,SD,NO,2,27,62,(1:45) (Shotgun) P.Rivers pass deep left to M.Floyd pushed ob at NO 39 for 23 yards (I.Abdul-Quddus). PENALTY on SD-N.Hardwick Offensive Holding 10 yards enforced at SD 38 - No Play.,24,31,2012 -20121007_SD@NO,4,1,40,SD,NO,2,37,72,(1:40) (Shotgun) P.Rivers pass incomplete deep right to R.Meachem (M.Jenkins). PENALTY on NO-M.Wilson Illegal Use of Hands 5 yards enforced at SD 28 - No Play.,24,31,2012 -20121007_SD@NO,4,1,32,SD,NO,1,10,67,(1:32) (Shotgun) P.Rivers pass short left to R.Brown to SD 44 for 11 yards (R.Harper; J.Patrick). Pass 6 YAC 5,24,31,2012 -20121007_SD@NO,4,1,0,SD,NO,1,10,56,(1:00) (Shotgun) P.Rivers pass short left to M.Floyd pushed ob at NO 49 for 7 yards (J.Patrick). Pass 5 YAC 2,24,31,2012 -20121007_SD@NO,4,0,53,SD,NO,2,3,49,(:53) (Shotgun) P.Rivers pass short middle to M.Floyd to NO 43 for 6 yards (C.White). Pass 4 YAC 2,24,31,2012 -20121007_SD@NO,4,0,34,SD,NO,1,10,43,(:34) (Shotgun) P.Rivers pass short left to R.Brown to NO 33 for 10 yards (C.Lofton). Pass -3 YAC 13,24,31,2012 -20121007_SD@NO,4,0,28,SD,NO,1,10,33,(:28) (Shotgun) P.Rivers pass incomplete deep middle to A.Gates.,24,31,2012 -20121007_SD@NO,4,0,23,SD,NO,2,10,33,(:23) (Shotgun) P.Rivers pass incomplete short left to R.Mathews [M.Wilson].,24,31,2012 -20121007_SD@NO,4,0,19,SD,NO,3,10,33,(:19) (Shotgun) P.Rivers sacked at NO 42 for -9 yards (M.Wilson). FUMBLES (M.Wilson) RECOVERED by NO-M.Wilson at NO 42. M.Wilson to NO 42 for no gain (P.Rivers).,24,31,2012 -20121007_SD@NO,4,0,14,NO,SD,1,10,58,(:14) D.Brees kneels to NO 41 for -1 yards.,31,24,2012 -20121007_SD@NO,4,0,14,NO,SD,,,58,                      ,31,24,2012 -20121008_HOU@NYJ,1,0,0,NYJ,HOU,,,58,N.Folk kicks 64 yards from NYJ 35 to HST 1. T.Holliday to HST 15 for 14 yards (L.Hilliard).,0,0,2012 -20121008_HOU@NYJ,1,59,54,HOU,NYJ,1,10,85,(14:54) M.Schaub pass short left to K.Walter to HST 24 for 9 yards (C.Pace).,0,0,2012 -20121008_HOU@NYJ,1,59,26,HOU,NYJ,2,1,76,(14:26) M.Schaub pass short left to O.Daniels pushed ob at HST 38 for 14 yards (L.Landry).,0,0,2012 -20121008_HOU@NYJ,1,58,46,HOU,NYJ,1,10,62,(13:46) K.Martin right end to NYJ 48 for 14 yards (L.Landry).,0,0,2012 -20121008_HOU@NYJ,1,58,16,HOU,NYJ,1,10,48,(13:16) M.Schaub pass incomplete deep right to A.Johnson.,0,0,2012 -20121008_HOU@NYJ,1,58,13,HOU,NYJ,2,10,48,(13:13) A.Foster left tackle to NYJ 45 for 3 yards (M.Devito).,0,0,2012 -20121008_HOU@NYJ,1,57,29,HOU,NYJ,3,7,45,(12:29) (Shotgun) M.Schaub pass short left to K.Walter to NYJ 35 for 10 yards (E.Lankster).,0,0,2012 -20121008_HOU@NYJ,1,56,45,HOU,NYJ,1,10,35,(11:45) J.Forsett right tackle to NYJ 34 for 1 yard (D.Harris).,0,0,2012 -20121008_HOU@NYJ,1,56,12,HOU,NYJ,2,9,34,(11:12) M.Schaub pass deep middle to O.Daniels for 34 yards TOUCHDOWN.,0,0,2012 -20121008_HOU@NYJ,1,56,12,HOU,NYJ,,,34,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121008_HOU@NYJ,1,56,12,HOU,NYJ,,,34,S.Graham kicks 68 yards from HST 35 to NYJ -3. J.McKnight to NYJ 13 for 16 yards (M.Alexander; T.Nolan).,7,0,2012 -20121008_HOU@NYJ,1,55,59,NYJ,HOU,1,10,87,(10:59) S.Greene left guard to NYJ 13 for no gain (B.Cushing).,0,7,2012 -20121008_HOU@NYJ,1,55,19,NYJ,HOU,2,10,87,(10:19) M.Sanchez pass incomplete short left to J.Kerley [A.Smith].,0,7,2012 -20121008_HOU@NYJ,1,55,14,NYJ,HOU,3,10,87,(10:14) (Shotgun) PENALTY on NYJ-D.Ferguson False Start 5 yards enforced at NYJ 13 - No Play.,0,7,2012 -20121008_HOU@NYJ,1,55,14,NYJ,HOU,3,15,92,(10:14) (Shotgun) M.Sanchez pass short left to J.Kerley pushed ob at NYJ 21 for 13 yards (B.Cushing).,0,7,2012 -20121008_HOU@NYJ,1,55,14,NYJ,HOU,4,2,79,(10:14) R.Malone punts 42 yards to HST 37 Center-T.Purdum out of bounds.,0,7,2012 -20121008_HOU@NYJ,1,54,53,HOU,NYJ,1,10,63,(9:53) M.Schaub pass incomplete deep left to A.Johnson.,7,0,2012 -20121008_HOU@NYJ,1,54,46,HOU,NYJ,2,10,63,(9:46) A.Foster left guard to HST 39 for 2 yards (B.Thomas).,7,0,2012 -20121008_HOU@NYJ,1,53,59,HOU,NYJ,3,8,61,(8:59) (Shotgun) PENALTY on HST-M.Schaub Delay of Game 5 yards enforced at HST 39 - No Play.,7,0,2012 -20121008_HOU@NYJ,1,53,38,HOU,NYJ,3,13,66,(8:38) (Shotgun) M.Schaub pass incomplete short left to A.Foster (D.Harris).,7,0,2012 -20121008_HOU@NYJ,1,53,38,HOU,NYJ,4,13,66,(8:38) D.Jones punts 38 yards to NYJ 28 Center-J.Weeks fair catch by J.Kerley.,7,0,2012 -20121008_HOU@NYJ,1,53,23,NYJ,HOU,1,10,72,(8:23) S.Greene left guard to NYJ 28 for no gain (J.Watt; B.James).,0,7,2012 -20121008_HOU@NYJ,1,52,40,NYJ,HOU,2,10,72,(7:40) (Shotgun) T.Tebow pass incomplete deep left to J.Hill.,0,7,2012 -20121008_HOU@NYJ,1,52,35,NYJ,HOU,3,10,72,(7:35) (Shotgun) M.Sanchez pass incomplete short left to E.Gates.,0,7,2012 -20121008_HOU@NYJ,1,52,35,NYJ,HOU,4,10,72,(7:35) R.Malone punts 34 yards to HST 38 Center-T.Purdum downed by NYJ-J.Mauga.,0,7,2012 -20121008_HOU@NYJ,1,52,21,HOU,NYJ,1,10,62,(7:21) J.Forsett left guard to HST 38 for no gain (M.Devito).,7,0,2012 -20121008_HOU@NYJ,1,51,42,HOU,NYJ,2,10,62,(6:42) D.Posey left end to HST 35 for -3 yards (B.Thomas).,7,0,2012 -20121008_HOU@NYJ,1,51,1,HOU,NYJ,3,13,65,(6:01) (Shotgun) M.Schaub pass deep middle intended for A.Johnson INTERCEPTED by A.Cromartie at NYJ 43. A.Cromartie to NYJ 43 for no gain (A.Johnson).,7,0,2012 -20121008_HOU@NYJ,1,50,54,NYJ,HOU,1,10,57,(5:54) M.Sanchez pass deep left to E.Gates to HST 30 for 27 yards (J.Joseph). Penalty on HST-J.Joseph Defensive Pass Interference declined.,0,7,2012 -20121008_HOU@NYJ,1,50,32,NYJ,HOU,1,10,30,(5:32) B.Powell up the middle to HST 28 for 2 yards (S.Cody; B.James).,0,7,2012 -20121008_HOU@NYJ,1,49,54,NYJ,HOU,2,8,28,(4:54) J.McKnight right tackle to HST 27 for 1 yard (C.Barwin; B.Cushing).,0,7,2012 -20121008_HOU@NYJ,1,49,13,NYJ,HOU,3,7,27,(4:13) (Shotgun) M.Sanchez pass deep middle to J.Cumberland for 27 yards TOUCHDOWN.,0,7,2012 -20121008_HOU@NYJ,1,49,13,NYJ,HOU,,,27,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,7,2012 -20121008_HOU@NYJ,1,49,2,HOU,NYJ,1,10,96,(4:02) A.Foster left tackle to 50 for 46 yards (Y.Bell).,7,7,2012 -20121008_HOU@NYJ,1,48,13,HOU,NYJ,1,10,50,(3:13) A.Foster left end to 50 for no gain (B.Thomas).,7,7,2012 -20121008_HOU@NYJ,1,47,38,HOU,NYJ,2,10,50,(2:38) M.Schaub pass short middle to J.Casey to NYJ 45 for 5 yards (D.Harris).,7,7,2012 -20121008_HOU@NYJ,1,46,55,HOU,NYJ,3,5,45,(1:55) (Shotgun) M.Schaub pass incomplete short middle to K.Walter (E.Smith).,7,7,2012 -20121008_HOU@NYJ,1,46,55,HOU,NYJ,4,5,45,(1:55) D.Jones punts 30 yards to NYJ 15 Center-J.Weeks downed by HST-D.Posey.,7,7,2012 -20121008_HOU@NYJ,1,46,42,NYJ,HOU,1,10,85,(1:42) S.Greene right guard to NYJ 18 for 3 yards (B.Cushing).,7,7,2012 -20121008_HOU@NYJ,1,46,6,NYJ,HOU,2,7,82,(1:06) S.Greene up the middle to NYJ 22 for 4 yards (T.Dobbins; B.Cushing).,7,7,2012 -20121008_HOU@NYJ,1,45,24,NYJ,HOU,3,3,78,(:24) (Shotgun) M.Sanchez pass short left to C.Schilens to NYJ 24 for 2 yards (B.McCain).,7,7,2012 -20121008_HOU@NYJ,2,45,0,NYJ,HOU,4,1,76,(15:00) (Punt formation) T.Tebow left tackle to NYJ 27 for 3 yards (T.Dobbins).,7,7,2012 -20121008_HOU@NYJ,2,44,16,NYJ,HOU,1,10,73,(14:16) M.Sanchez pass incomplete short right to K.Reuland.,7,7,2012 -20121008_HOU@NYJ,2,44,11,NYJ,HOU,2,10,73,(14:11) M.Sanchez pass incomplete short right to B.Powell.,7,7,2012 -20121008_HOU@NYJ,2,44,8,NYJ,HOU,3,10,73,(14:08) M.Sanchez pass incomplete short middle to B.Powell (B.Reed).,7,7,2012 -20121008_HOU@NYJ,2,43,57,NYJ,HOU,4,10,73,(13:57) R.Malone punts 45 yards to HST 28 Center-T.Purdum downed by NYJ-I.Trufant. PENALTY on NYJ-I.Trufant Illegal Touch Kick 5 yards enforced at HST 28.,7,7,2012 -20121008_HOU@NYJ,2,43,56,HOU,NYJ,1,10,67,(13:56) M.Schaub pass deep middle to K.Walter to NYJ 49 for 18 yards (L.Landry).,7,7,2012 -20121008_HOU@NYJ,2,43,16,HOU,NYJ,1,10,49,(13:16) M.Schaub pass short left to J.Casey to NYJ 42 for 7 yards (C.Pace).,7,7,2012 -20121008_HOU@NYJ,2,42,35,HOU,NYJ,2,3,42,(12:35) A.Foster up the middle to NYJ 34 for 8 yards (Y.Bell).,7,7,2012 -20121008_HOU@NYJ,2,41,59,HOU,NYJ,1,10,34,(11:59) A.Foster right tackle to NYJ 13 for 21 yards (Y.Bell).,7,7,2012 -20121008_HOU@NYJ,2,41,18,HOU,NYJ,1,10,13,(11:18) A.Foster left end for 13 yards TOUCHDOWN.,7,7,2012 -20121008_HOU@NYJ,2,41,18,HOU,NYJ,,,13,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,7,2012 -20121008_HOU@NYJ,2,41,18,HOU,NYJ,,,13,S.Graham kicks 51 yards from HST 35 to NYJ 14. J.McKnight to NYJ 14 for no gain (B.Braman). PENALTY on HST-B.Braman Personal Foul 15 yards enforced at NYJ 14.,14,7,2012 -20121008_HOU@NYJ,2,41,6,NYJ,HOU,1,10,71,(11:06) (Shotgun) T.Tebow left tackle to NYJ 32 for 3 yards (G.Quin).,7,14,2012 -20121008_HOU@NYJ,2,40,36,NYJ,HOU,2,7,68,(10:36) (Shotgun) B.Powell right tackle to NYJ 35 for 3 yards (S.Cody). HST-B.Cushing was injured during the play.,7,14,2012 -20121008_HOU@NYJ,2,40,1,NYJ,HOU,3,4,65,(10:01) (Shotgun) M.Sanchez pass short left to J.Kerley to NYJ 38 for 3 yards (K.Jackson).,7,14,2012 -20121008_HOU@NYJ,2,40,1,NYJ,HOU,4,1,62,(10:01) M.Sanchez up the middle to NYJ 39 for 1 yard (A.Smith; T.Dobbins).,7,14,2012 -20121008_HOU@NYJ,2,38,57,NYJ,HOU,1,10,61,(8:57) M.Sanchez pass incomplete deep right to A.Cromartie.,7,14,2012 -20121008_HOU@NYJ,2,38,49,NYJ,HOU,2,10,61,(8:49) M.Sanchez pass incomplete deep left to J.Cumberland (D.Manning).,7,14,2012 -20121008_HOU@NYJ,2,38,43,NYJ,HOU,3,10,61,(8:43) M.Sanchez pass incomplete short left to B.Powell [J.Watt].,7,14,2012 -20121008_HOU@NYJ,2,38,38,NYJ,HOU,4,10,61,(8:38) R.Malone punts 61 yards to end zone Center-T.Purdum Touchback.,7,14,2012 -20121008_HOU@NYJ,2,38,30,HOU,NYJ,1,10,80,(8:30) A.Foster right tackle to HST 24 for 4 yards (M.Devito).,14,7,2012 -20121008_HOU@NYJ,2,37,52,HOU,NYJ,2,6,76,(7:52) M.Schaub pass incomplete deep left.,14,7,2012 -20121008_HOU@NYJ,2,37,46,HOU,NYJ,3,6,76,(7:46) (Shotgun) M.Schaub pass short right to A.Foster to HST 40 for 16 yards (D.Harris) [M.Wilkerson].,14,7,2012 -20121008_HOU@NYJ,2,37,3,HOU,NYJ,1,10,60,(7:03) A.Foster left end pushed ob at HST 41 for 1 yard (A.Cromartie). PENALTY on HST-J.Casey Offensive Holding 10 yards enforced at HST 40 - No Play.,14,7,2012 -20121008_HOU@NYJ,2,36,43,HOU,NYJ,1,20,70,(6:43) M.Schaub pass short left to K.Walter to HST 39 for 9 yards (A.Cromartie).,14,7,2012 -20121008_HOU@NYJ,2,36,3,HOU,NYJ,2,11,61,(6:03) M.Schaub pass short left to O.Daniels to NYJ 49 for 12 yards (E.Smith).,14,7,2012 -20121008_HOU@NYJ,2,35,22,HOU,NYJ,1,10,49,(5:22) M.Schaub pass incomplete short left to A.Foster [G.McIntyre].,14,7,2012 -20121008_HOU@NYJ,2,35,17,HOU,NYJ,2,10,49,(5:17) A.Foster left guard to NYJ 46 for 3 yards (M.Devito; J.Mauga).,14,7,2012 -20121008_HOU@NYJ,2,34,35,HOU,NYJ,3,7,46,(4:35) (Shotgun) M.Schaub pass incomplete short right to K.Walter.,14,7,2012 -20121008_HOU@NYJ,2,34,29,HOU,NYJ,4,7,46,(4:29) D.Jones punts 39 yards to NYJ 7 Center-J.Weeks out of bounds.,14,7,2012 -20121008_HOU@NYJ,2,34,21,NYJ,HOU,1,10,93,(4:21) S.Greene right guard to NYJ 11 for 4 yards (T.Dobbins; A.Smith).,7,14,2012 -20121008_HOU@NYJ,2,33,46,NYJ,HOU,2,6,89,(3:46) M.Sanchez pass short right to C.Schilens to NYJ 16 for 5 yards (B.James).,7,14,2012 -20121008_HOU@NYJ,2,33,3,NYJ,HOU,3,1,84,(3:03) S.Greene up the middle to NYJ 18 for 2 yards (E.Mitchell; B.James).,7,14,2012 -20121008_HOU@NYJ,2,32,20,NYJ,HOU,1,10,82,(2:20) M.Sanchez sacked at NYJ 10 for -8 yards (B.Reed). FUMBLES (B.Reed) recovered by NYJ-L.Hilliard at NYJ 10. L.Hilliard to NYJ 25 for 15 yards (E.Mitchell).,7,14,2012 -20121008_HOU@NYJ,2,32,0,NYJ,HOU,2,3,75,(2:00) M.Sanchez pass incomplete deep right to E.Gates.,7,14,2012 -20121008_HOU@NYJ,2,31,55,NYJ,HOU,3,3,75,(1:55) M.Sanchez pass short middle to C.Schilens to NYJ 37 for 12 yards (G.Quin).,7,14,2012 -20121008_HOU@NYJ,2,31,23,NYJ,HOU,1,10,63,(1:23) (No Huddle Shotgun) M.Sanchez pass deep right to J.Kerley to HST 27 for 36 yards (J.Joseph).,7,14,2012 -20121008_HOU@NYJ,2,30,53,NYJ,HOU,1,10,27,(:53) (No Huddle Shotgun) M.Sanchez pass short right to C.Schilens to HST 17 for 10 yards (J.Joseph).,7,14,2012 -20121008_HOU@NYJ,2,30,49,NYJ,HOU,1,10,17,(:49) (Shotgun) B.Powell up the middle to HST 12 for 5 yards (G.Quin; B.James).,7,14,2012 -20121008_HOU@NYJ,2,30,29,NYJ,HOU,2,5,12,(:29) (No Huddle Shotgun) M.Sanchez pass short left intended for J.Kerley INTERCEPTED by B.McCain (J.Watt) at HST 5. B.McCain to NYJ 9 for 86 yards (J.Kerley).,7,14,2012 -20121008_HOU@NYJ,2,30,14,HOU,NYJ,1,9,9,(:14) M.Schaub pass incomplete short left to O.Daniels.,14,7,2012 -20121008_HOU@NYJ,2,30,9,HOU,NYJ,2,9,9,(:09) M.Schaub pass incomplete short left to A.Johnson.,14,7,2012 -20121008_HOU@NYJ,2,30,9,HOU,NYJ,3,9,9,(:09) S.Graham 27 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,14,7,2012 -20121008_HOU@NYJ,3,30,0,HOU,NYJ,,,9,S.Graham kicks 65 yards from HST 35 to NYJ 0. J.McKnight to NYJ 25 for 25 yards (W.Mercilus).,17,7,2012 -20121008_HOU@NYJ,3,29,53,NYJ,HOU,1,10,75,(14:53) J.McKnight right tackle to NYJ 26 for 1 yard (C.Barwin; J.Watt). NYJ-N.Mangold was injured during the play.,7,17,2012 -20121008_HOU@NYJ,3,29,53,NYJ,HOU,2,9,74,(14:53) PENALTY on NYJ-V.Ducasse False Start 5 yards enforced at NYJ 26 - No Play.,7,17,2012 -20121008_HOU@NYJ,3,29,10,NYJ,HOU,2,14,79,(14:10) J.McKnight right guard to NYJ 32 for 11 yards (A.Smith; B.James).,7,17,2012 -20121008_HOU@NYJ,3,28,25,NYJ,HOU,3,3,72,(13:25) (Shotgun) M.Sanchez FUMBLES (Aborted) at NYJ 28 recovered by NYJ-J.Kerley at NYJ 28. J.Kerley to NYJ 33 for 5 yards (B.Reed).,7,17,2012 -20121008_HOU@NYJ,3,27,47,NYJ,HOU,4,2,67,(12:47) R.Malone punts 58 yards to HST 9 Center-T.Purdum. T.Holliday to HST 12 for 3 yards (T.Tebow; T.Purdum). PENALTY on HST-D.Posey Illegal Block Above the Waist 6 yards enforced at HST 12.,7,17,2012 -20121008_HOU@NYJ,3,27,33,HOU,NYJ,1,10,94,(12:33) A.Foster left end to HST 10 for 4 yards (D.Harris; L.Landry).,17,7,2012 -20121008_HOU@NYJ,3,26,53,HOU,NYJ,2,6,90,(11:53) A.Foster up the middle to HST 14 for 4 yards (L.Landry; D.Harris).,17,7,2012 -20121008_HOU@NYJ,3,26,15,HOU,NYJ,3,2,86,(11:15) A.Foster left tackle to HST 16 for 2 yards (J.Mauga).,17,7,2012 -20121008_HOU@NYJ,3,25,39,HOU,NYJ,1,10,84,(10:39) M.Schaub pass short middle to A.Johnson to HST 31 for 15 yards (Y.Bell).,17,7,2012 -20121008_HOU@NYJ,3,24,58,HOU,NYJ,1,10,69,(9:58) M.Schaub pass incomplete short left to A.Johnson.,17,7,2012 -20121008_HOU@NYJ,3,24,54,HOU,NYJ,2,10,69,(9:54) J.Forsett right tackle to HST 31 for no gain (K.Ellis).,17,7,2012 -20121008_HOU@NYJ,3,24,13,HOU,NYJ,3,10,69,(9:13) (Shotgun) M.Schaub pass short middle to O.Daniels to 50 for 19 yards (Y.Bell).,17,7,2012 -20121008_HOU@NYJ,3,23,32,HOU,NYJ,1,10,50,(8:32) A.Foster left tackle to NYJ 48 for 2 yards (K.Ellis; M.Devito).,17,7,2012 -20121008_HOU@NYJ,3,22,53,HOU,NYJ,2,8,48,(7:53) A.Foster left tackle to NYJ 43 for 5 yards (J.Mauga).,17,7,2012 -20121008_HOU@NYJ,3,22,11,HOU,NYJ,3,3,43,(7:11) M.Schaub pass short middle to J.Casey to NYJ 32 for 11 yards (Y.Bell).,17,7,2012 -20121008_HOU@NYJ,3,21,32,HOU,NYJ,1,10,32,(6:32) J.Forsett left tackle to NYJ 27 for 5 yards (B.Scott; K.Ellis).,17,7,2012 -20121008_HOU@NYJ,3,20,47,HOU,NYJ,2,5,27,(5:47) A.Foster left tackle to NYJ 24 for 3 yards (D.Harris).,17,7,2012 -20121008_HOU@NYJ,3,20,3,HOU,NYJ,3,2,24,(5:03) M.Schaub pass incomplete short middle to J.Casey.,17,7,2012 -20121008_HOU@NYJ,3,20,3,HOU,NYJ,4,2,24,(5:03) S.Graham 42 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,17,7,2012 -20121008_HOU@NYJ,3,20,3,HOU,NYJ,,,24,S.Graham kicks 65 yards from HST 35 to NYJ 0. J.McKnight for 100 yards TOUCHDOWN.,20,7,2012 -20121008_HOU@NYJ,3,20,3,NYJ,HOU,,,24,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,20,2012 -20121008_HOU@NYJ,3,20,3,NYJ,HOU,,,24,N.Folk kicks onside 11 yards from NYJ 35 to NYJ 46. S.Keo (didn't try to advance) to NYJ 46 for no gain.,14,20,2012 -20121008_HOU@NYJ,3,19,33,HOU,NYJ,1,10,46,(4:33) M.Schaub pass deep right to J.Casey to NYJ 16 for 30 yards (K.Ellis).,20,14,2012 -20121008_HOU@NYJ,3,18,48,HOU,NYJ,1,10,16,(3:48) A.Foster right tackle to NYJ 8 for 8 yards (L.Landry).,20,14,2012 -20121008_HOU@NYJ,3,18,10,HOU,NYJ,2,2,8,(3:10) A.Foster right guard to NYJ 7 for 1 yard (K.Ellis).,20,14,2012 -20121008_HOU@NYJ,3,17,29,HOU,NYJ,3,1,7,(2:29) A.Foster up the middle to NYJ 6 for 1 yard (M.Devito; D.Harris).,20,14,2012 -20121008_HOU@NYJ,3,16,46,HOU,NYJ,1,6,6,(1:46) A.Foster up the middle to NYJ 5 for 1 yard (D.Harris).,20,14,2012 -20121008_HOU@NYJ,3,16,2,HOU,NYJ,2,5,5,(1:02) M.Schaub pass incomplete short right to A.Foster.,20,14,2012 -20121008_HOU@NYJ,3,15,56,HOU,NYJ,3,5,5,(:56) (Shotgun) A.Foster right end to NYJ 4 for 1 yard (Y.Bell).,20,14,2012 -20121008_HOU@NYJ,3,15,56,HOU,NYJ,4,4,4,(:56) S.Graham 22 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,20,14,2012 -20121008_HOU@NYJ,3,15,56,HOU,NYJ,,,4,S.Graham kicks 56 yards from HST 35 to NYJ 9. E.Smith to NYJ 28 for 19 yards (J.Nading).,23,14,2012 -20121008_HOU@NYJ,3,15,7,NYJ,HOU,1,10,72,(:07) M.Sanchez pass deep right to J.Cumberland pushed ob at HST 48 for 24 yards (D.Manning).,14,23,2012 -20121008_HOU@NYJ,4,15,0,NYJ,HOU,1,10,48,(15:00) S.Greene right guard to HST 47 for 1 yard (J.Watt).,14,23,2012 -20121008_HOU@NYJ,4,14,23,NYJ,HOU,2,9,47,(14:23) (Shotgun) PENALTY on NYJ-J.Hill False Start 5 yards enforced at HST 47 - No Play.,14,23,2012 -20121008_HOU@NYJ,4,14,3,NYJ,HOU,2,14,52,(14:03) M.Sanchez pass deep right to J.Kerley to HST 16 for 36 yards (G.Quin).,14,23,2012 -20121008_HOU@NYJ,4,13,17,NYJ,HOU,1,10,16,(13:17) (Shotgun) T.Tebow left guard to HST 3 for 13 yards (J.Watt).,14,23,2012 -20121008_HOU@NYJ,4,12,44,NYJ,HOU,1,3,3,(12:44) (Shotgun) T.Tebow left tackle to HST 3 for no gain (B.James).,14,23,2012 -20121008_HOU@NYJ,4,12,7,NYJ,HOU,2,3,3,(12:07) M.Sanchez pass incomplete short right to B.Powell (J.Watt).,14,23,2012 -20121008_HOU@NYJ,4,12,3,NYJ,HOU,3,3,3,(12:03) M.Sanchez pass incomplete short right to C.Schilens.,14,23,2012 -20121008_HOU@NYJ,4,11,58,NYJ,HOU,4,3,3,(11:58) N.Folk 21 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,14,23,2012 -20121008_HOU@NYJ,4,11,58,NYJ,HOU,,,3,N.Folk kicks 68 yards from NYJ 35 to HST -3. T.Holliday to HST 11 for 14 yards (L.Hilliard).,17,23,2012 -20121008_HOU@NYJ,4,11,51,HOU,NYJ,1,10,89,(11:51) M.Schaub pass short left to A.Foster to HST 11 for no gain. PENALTY on HST-C.Myers Ineligible Downfield Pass 5 yards enforced at HST 11 - No Play.,23,17,2012 -20121008_HOU@NYJ,4,11,22,HOU,NYJ,1,15,94,(11:22) A.Foster left guard to HST 10 for 4 yards (K.Ellis).,23,17,2012 -20121008_HOU@NYJ,4,10,40,HOU,NYJ,2,11,90,(10:40) M.Schaub pass incomplete short left.,23,17,2012 -20121008_HOU@NYJ,4,10,40,HOU,NYJ,3,11,90,(10:40) (Shotgun) A.Foster up the middle to HST 10 for no gain (C.Pace).,23,17,2012 -20121008_HOU@NYJ,4,10,8,HOU,NYJ,4,11,90,(10:08) D.Jones punts 48 yards to NYJ 42 Center-J.Weeks fair catch by J.Kerley.,23,17,2012 -20121008_HOU@NYJ,4,9,59,NYJ,HOU,1,10,58,(9:59) S.Greene up the middle to HST 46 for 12 yards (G.Quin).,17,23,2012 -20121008_HOU@NYJ,4,9,13,NYJ,HOU,1,10,46,(9:13) Direct snap to J.McKnight. J.McKnight right guard to NYJ 46 for -8 yards (G.Quin).,17,23,2012 -20121008_HOU@NYJ,4,8,31,NYJ,HOU,2,18,54,(8:31) (Shotgun) M.Sanchez pass short right to S.Greene to HST 35 for 19 yards (D.Manning; S.Cody).,17,23,2012 -20121008_HOU@NYJ,4,7,42,NYJ,HOU,1,10,35,(7:42) (Shotgun) T.Tebow left tackle to HST 35 for no gain (J.Watt).,17,23,2012 -20121008_HOU@NYJ,4,7,10,NYJ,HOU,2,10,35,(7:10) M.Sanchez pass incomplete short middle to S.Greene (T.Dobbins).,17,23,2012 -20121008_HOU@NYJ,4,7,4,NYJ,HOU,3,10,35,(7:04) (Shotgun) M.Sanchez sacked at HST 40 for -5 yards (J.Watt).,17,23,2012 -20121008_HOU@NYJ,4,7,4,NYJ,HOU,4,15,40,(7:04) R.Malone punts 25 yards to HST 15 Center-T.Purdum fair catch by T.Holliday.,17,23,2012 -20121008_HOU@NYJ,4,6,29,HOU,NYJ,1,10,85,(6:29) PENALTY on NYJ Defensive 12 On-field 5 yards enforced at HST 15 - No Play.,23,17,2012 -20121008_HOU@NYJ,4,5,46,HOU,NYJ,1,10,68,(5:46) A.Foster left guard to HST 40 for 8 yards (L.Landry; E.Smith).,23,17,2012 -20121008_HOU@NYJ,4,5,3,HOU,NYJ,2,2,60,(5:03) A.Foster left tackle to HST 41 for 1 yard (M.Devito; D.Harris).,23,17,2012 -20121008_HOU@NYJ,4,4,20,HOU,NYJ,3,1,59,(4:20) A.Foster left guard to HST 41 for no gain (M.Wilkerson; B.Scott).,23,17,2012 -20121008_HOU@NYJ,4,3,35,HOU,NYJ,4,1,59,(3:35) D.Jones punts 43 yards to NYJ 16 Center-J.Weeks fair catch by J.Kerley.,23,17,2012 -20121008_HOU@NYJ,4,3,28,NYJ,HOU,1,10,84,(3:28) (Shotgun) B.Powell up the middle pushed ob at NYJ 24 for 8 yards (D.Manning).,17,23,2012 -20121008_HOU@NYJ,4,3,22,NYJ,HOU,2,2,76,(3:22) (Shotgun) M.Sanchez pass incomplete short right to A.Cromartie (C.Barwin).,17,23,2012 -20121008_HOU@NYJ,4,3,18,NYJ,HOU,3,2,76,(3:18) M.Sanchez pass short right to J.Kerley to NYJ 30 for 6 yards (J.Joseph).,17,23,2012 -20121008_HOU@NYJ,4,2,49,NYJ,HOU,1,10,70,(2:49) (No Huddle Shotgun) M.Sanchez pass short left to J.Hill to NYJ 40 for 10 yards (J.Joseph).,17,23,2012 -20121008_HOU@NYJ,4,2,25,NYJ,HOU,1,10,60,(2:25) (No Huddle Shotgun) M.Sanchez pass incomplete short left to J.Kerley.,17,23,2012 -20121008_HOU@NYJ,4,2,21,NYJ,HOU,2,10,60,(2:21) (Shotgun) M.Sanchez sacked at NYJ 32 for -8 yards (sack split by B.McCain and B.James).,17,23,2012 -20121008_HOU@NYJ,4,2,1,NYJ,HOU,3,18,68,(2:01) (No Huddle Shotgun) M.Sanchez pass short right intended for J.Cumberland INTERCEPTED by K.Jackson at NYJ 46. K.Jackson to NYJ 42 for 4 yards (M.Sanchez).,17,23,2012 -20121008_HOU@NYJ,4,1,51,HOU,NYJ,1,10,42,(1:51) A.Foster left guard to NYJ 43 for -1 yards (M.Wilkerson).,23,17,2012 -20121008_HOU@NYJ,4,1,44,HOU,NYJ,2,11,43,(1:44) A.Foster left end to NYJ 43 for no gain (M.Devito).,23,17,2012 -20121008_HOU@NYJ,4,1,2,HOU,NYJ,3,11,43,(1:02) A.Foster right end to NYJ 47 for -4 yards (B.Scott).,23,17,2012 -20121008_HOU@NYJ,4,0,17,HOU,NYJ,4,15,47,(:17) D.Jones punts 43 yards to NYJ 4 Center-J.Weeks downed by HST. PENALTY on HST-B.McCain Illegal Motion 5 yards enforced at NYJ 4.,23,17,2012 -20121008_HOU@NYJ,4,0,4,NYJ,HOU,1,10,91,(:04) M.Sanchez pass incomplete short middle to J.Kerley (J.Watt).,17,23,2012 -20121008_HOU@NYJ,4,0,4,NYJ,HOU,,,91,                      ,17,23,2012 -20121011_PIT@TEN,1,0,0,PIT,TEN,,,91,S.Suisham kicks 70 yards from PIT 35 to TEN -5. D.Reynaud to TEN 27 for 32 yards (C.Rainey; R.Mundy).,0,0,2012 -20121011_PIT@TEN,1,59,54,TEN,PIT,1,10,73,(14:54) M.Hasselbeck pass deep left to N.Washington to TEN 46 for 19 yards (R.Clark).,0,0,2012 -20121011_PIT@TEN,1,59,25,TEN,PIT,1,10,54,(14:25) M.Hasselbeck pass incomplete deep left to K.Britt.,0,0,2012 -20121011_PIT@TEN,1,59,20,TEN,PIT,2,10,54,(14:20) C.Johnson up the middle to PIT 47 for 7 yards (J.Worilds; W.Allen).,0,0,2012 -20121011_PIT@TEN,1,58,34,TEN,PIT,3,3,47,(13:34) (Shotgun) M.Hasselbeck pass short left to K.Britt pushed ob at PIT 32 for 15 yards (I.Taylor).,0,0,2012 -20121011_PIT@TEN,1,58,3,TEN,PIT,1,10,32,(13:03) (No Huddle) C.Johnson up the middle to PIT 27 for 5 yards (R.Clark).,0,0,2012 -20121011_PIT@TEN,1,57,25,TEN,PIT,2,5,27,(12:25) M.Hasselbeck pass incomplete deep left to D.Williams. PENALTY on PIT-I.Taylor Defensive Pass Interference 25 yards enforced at PIT 27 - No Play.,0,0,2012 -20121011_PIT@TEN,1,57,19,TEN,PIT,1,2,2,(12:19) M.Hasselbeck sacked at PIT 10 for -8 yards (J.Harrison).,0,0,2012 -20121011_PIT@TEN,1,56,43,TEN,PIT,2,10,10,(11:43) (Shotgun) M.Hasselbeck pass short right to J.Cook to PIT 4 for 6 yards (R.Clark; L.Timmons).,0,0,2012 -20121011_PIT@TEN,1,56,2,TEN,PIT,3,4,4,(11:02) (Shotgun) M.Hasselbeck pass incomplete short right to K.Wright.,0,0,2012 -20121011_PIT@TEN,1,55,58,TEN,PIT,4,4,4,(10:58) (Field Goal formation) R.Bironas 22 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121011_PIT@TEN,1,55,58,TEN,PIT,,,4,R.Bironas kicks 69 yards from TEN 35 to PIT -4. C.Rainey to PIT 45 for 49 yards (T.Campbell).,3,0,2012 -20121011_PIT@TEN,1,55,45,PIT,TEN,1,10,55,(10:45) B.Roethlisberger pass incomplete deep right to A.Brown. PIT-M.Pouncey was injured during the play. His return is Questionable.,0,3,2012 -20121011_PIT@TEN,1,55,39,PIT,TEN,2,10,55,(10:39) B.Roethlisberger pass short left to H.Miller to PIT 49 for 4 yards (Z.Brown).,0,3,2012 -20121011_PIT@TEN,1,54,53,PIT,TEN,3,6,51,(9:53) (Shotgun) B.Roethlisberger pass short middle to I.Redman to TEN 18 for 33 yards (J.Babineaux; J.McCourty).,0,3,2012 -20121011_PIT@TEN,1,54,3,PIT,TEN,1,10,18,(9:03) R.Mendenhall up the middle to TEN 15 for 3 yards (J.Casey).,0,3,2012 -20121011_PIT@TEN,1,53,18,PIT,TEN,2,7,15,(8:18) (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace.,0,3,2012 -20121011_PIT@TEN,1,53,11,PIT,TEN,3,7,15,(8:11) (Shotgun) B.Roethlisberger pass short right to I.Redman to TEN 11 for 4 yards (M.Griffin; R.Mouton).,0,3,2012 -20121011_PIT@TEN,1,52,29,PIT,TEN,4,3,11,(7:29) (Field Goal formation) S.Suisham 29 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,3,2012 -20121011_PIT@TEN,1,52,29,PIT,TEN,,,11,S.Suisham kicks 60 yards from PIT 35 to TEN 5. D.Reynaud to TEN 21 for 16 yards (C.Carter).,3,3,2012 -20121011_PIT@TEN,1,52,18,TEN,PIT,1,10,79,(7:18) C.Johnson right tackle to TEN 24 for 3 yards (B.Keisel).,3,3,2012 -20121011_PIT@TEN,1,51,36,TEN,PIT,2,7,76,(6:36) M.Hasselbeck pass incomplete deep middle to C.Stevens (R.Clark).,3,3,2012 -20121011_PIT@TEN,1,51,29,TEN,PIT,3,7,76,(6:29) (Shotgun) M.Hasselbeck pass short right to C.Stevens to TEN 28 for 4 yards (C.Allen).,3,3,2012 -20121011_PIT@TEN,1,50,48,TEN,PIT,4,3,72,(5:48) (Punt formation) B.Kern punts 48 yards to PIT 24 Center-B.Brinkley. A.Brown to PIT 30 for 6 yards (B.Brinkley; T.Thompson). PENALTY on PIT-D.Van Dyke Offensive Holding 10 yards enforced at PIT 28.,3,3,2012 -20121011_PIT@TEN,1,50,37,PIT,TEN,1,10,82,(5:37) B.Roethlisberger pass deep right to M.Wallace for 82 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,3,3,2012 -20121011_PIT@TEN,1,50,37,PIT,TEN,,,82,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,3,2012 -20121011_PIT@TEN,1,50,37,PIT,TEN,,,82,S.Suisham kicks 60 yards from PIT 35 to TEN 5. D.Reynaud to TEN 27 for 22 yards (R.Golden).,10,3,2012 -20121011_PIT@TEN,1,50,18,TEN,PIT,1,10,73,(5:18) M.Hasselbeck scrambles up the middle to TEN 29 for 2 yards (L.Foote).,3,10,2012 -20121011_PIT@TEN,1,49,41,TEN,PIT,2,8,71,(4:41) C.Johnson right guard to TEN 29 for no gain (L.Foote; L.Timmons).,3,10,2012 -20121011_PIT@TEN,1,49,2,TEN,PIT,3,8,71,(4:02) M.Hasselbeck pass deep left to K.Britt to PIT 40 for 31 yards (W.Allen). FUMBLES (W.Allen) and recovers at PIT 34. K.Britt to PIT 34 for no gain (K.Lewis). Penalty on PIT-I.Taylor Defensive Pass Interference declined.,3,10,2012 -20121011_PIT@TEN,1,48,44,TEN,PIT,1,10,34,(3:44) M.Hasselbeck pass short left to D.Williams to PIT 22 for 12 yards (I.Taylor).,3,10,2012 -20121011_PIT@TEN,1,48,4,TEN,PIT,1,10,22,(3:04) M.Hasselbeck pass short left to T.Thompson to PIT 17 for 5 yards (J.Harrison).,3,10,2012 -20121011_PIT@TEN,1,47,29,TEN,PIT,2,5,17,(2:29) PENALTY on TEN-L.Harris False Start 5 yards enforced at PIT 17 - No Play.,3,10,2012 -20121011_PIT@TEN,1,47,5,TEN,PIT,2,10,22,(2:05) (Shotgun) M.Hasselbeck pass short left to C.Johnson to PIT 21 for 1 yard (J.Harrison).,3,10,2012 -20121011_PIT@TEN,1,46,20,TEN,PIT,3,9,21,(1:20) (Shotgun) M.Hasselbeck pass incomplete short right to K.Britt (K.Lewis).,3,10,2012 -20121011_PIT@TEN,1,46,16,TEN,PIT,4,9,21,(1:16) (Field Goal formation) R.Bironas 38 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,3,10,2012 -20121011_PIT@TEN,1,46,16,TEN,PIT,,,21,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,6,10,2012 -20121011_PIT@TEN,1,46,11,PIT,TEN,1,10,80,(1:11) (Shotgun) B.Roethlisberger pass short right to A.Brown pushed ob at PIT 27 for 7 yards (J.Babineaux).,10,6,2012 -20121011_PIT@TEN,1,45,52,PIT,TEN,2,3,73,(:52) R.Mendenhall up the middle to PIT 23 for -4 yards (J.Casey).,10,6,2012 -20121011_PIT@TEN,1,45,9,PIT,TEN,3,7,77,(:09) (Shotgun) B.Roethlisberger pass incomplete short middle to A.Brown (J.McCourty).,10,6,2012 -20121011_PIT@TEN,1,45,3,PIT,TEN,4,7,77,(:03) (Punt formation) D.Butler punt is BLOCKED by T.Shaw Center-G.Warren RECOVERED by TEN-J.McCourty at PIT 1. J.McCourty to PIT 1 for no gain (J.Worilds).,10,6,2012 -20121011_PIT@TEN,2,45,0,TEN,PIT,1,1,1,(15:00) C.Johnson left tackle to PIT 1 for no gain (L.Timmons; J.Harrison).,6,10,2012 -20121011_PIT@TEN,2,44,20,TEN,PIT,2,1,1,(14:20) J.Harper left tackle for 1 yard TOUCHDOWN.,6,10,2012 -20121011_PIT@TEN,2,44,20,TEN,PIT,,,1,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,6,10,2012 -20121011_PIT@TEN,2,44,20,TEN,PIT,,,1,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,13,10,2012 -20121011_PIT@TEN,2,44,14,PIT,TEN,1,10,80,(14:14) R.Mendenhall up the middle to PIT 22 for 2 yards (S.Marks).,10,13,2012 -20121011_PIT@TEN,2,43,34,PIT,TEN,2,8,78,(13:34) B.Roethlisberger pass short right to A.Brown to PIT 29 for 7 yards (M.Griffin).,10,13,2012 -20121011_PIT@TEN,2,43,3,PIT,TEN,3,1,71,(13:03) (Shotgun) B.Roethlisberger pass incomplete short right to I.Redman (S.Marks).,10,13,2012 -20121011_PIT@TEN,2,42,58,PIT,TEN,4,1,71,(12:58) (Punt formation) D.Butler punts 41 yards to TEN 30 Center-G.Warren fair catch by D.Reynaud.,10,13,2012 -20121011_PIT@TEN,2,42,50,TEN,PIT,1,10,70,(12:50) M.Hasselbeck pass short middle to C.Johnson to TEN 35 for 5 yards (L.Timmons).,13,10,2012 -20121011_PIT@TEN,2,42,18,TEN,PIT,2,5,65,(12:18) C.Johnson right tackle to TEN 46 for 11 yards (R.Clark). PENALTY on TEN-D.Stewart Offensive Holding 10 yards enforced at TEN 39. Penalty on TEN-C.Stevens Offensive Holding declined.,13,10,2012 -20121011_PIT@TEN,2,42,5,TEN,PIT,2,11,71,(12:05) M.Hasselbeck pass incomplete deep right to N.Washington (K.Lewis).,13,10,2012 -20121011_PIT@TEN,2,41,59,TEN,PIT,3,11,71,(11:59) PENALTY on TEN-K.Wright False Start 5 yards enforced at TEN 29 - No Play.,13,10,2012 -20121011_PIT@TEN,2,41,59,TEN,PIT,3,16,76,(11:59) (Shotgun) M.Hasselbeck pass incomplete deep left to N.Washington. Penalty on TEN-C.Stevens Illegal Formation declined.,13,10,2012 -20121011_PIT@TEN,2,41,54,TEN,PIT,4,16,76,(11:54) (Punt formation) B.Kern punts 61 yards to PIT 15 Center-B.Brinkley. A.Brown to PIT 18 for 3 yards (B.Brinkley).,13,10,2012 -20121011_PIT@TEN,2,41,40,PIT,TEN,1,10,82,(11:40) R.Mendenhall up the middle to PIT 23 for 5 yards (J.Casey; A.Ayers).,10,13,2012 -20121011_PIT@TEN,2,41,3,PIT,TEN,2,5,77,(11:03) B.Roethlisberger pass short right to A.Brown to PIT 22 for -1 yards (J.McCourty; Z.Brown).,10,13,2012 -20121011_PIT@TEN,2,40,20,PIT,TEN,3,6,78,(10:20) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to PIT 39 for 17 yards (C.McCarthy). PIT-M.Gilbert was injured during the play. His return is Questionable.,10,13,2012 -20121011_PIT@TEN,2,39,39,PIT,TEN,1,10,61,(9:39) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown (D.Morgan).,10,13,2012 -20121011_PIT@TEN,2,39,33,PIT,TEN,2,10,61,(9:33) B.Roethlisberger pass short right to R.Mendenhall pushed ob at 50 for 11 yards (Z.Brown).,10,13,2012 -20121011_PIT@TEN,2,39,3,PIT,TEN,1,10,50,(9:03) (Shotgun) B.Roethlisberger pass short left to E.Sanders to TEN 48 for 2 yards (A.Verner).,10,13,2012 -20121011_PIT@TEN,2,38,21,PIT,TEN,2,8,48,(8:21) R.Mendenhall up the middle to TEN 46 for 2 yards (J.Babineaux).,10,13,2012 -20121011_PIT@TEN,2,37,41,PIT,TEN,3,6,46,(7:41) (Shotgun) B.Roethlisberger sacked at PIT 47 for -7 yards (D.Morgan).,10,13,2012 -20121011_PIT@TEN,2,37,19,PIT,TEN,4,13,53,(7:19) (Punt formation) D.Butler punts 46 yards to TEN 7 Center-G.Warren. D.Reynaud to TEN 16 for 9 yards (B.Batch).,10,13,2012 -20121011_PIT@TEN,2,37,6,TEN,PIT,1,10,84,(7:06) M.Hasselbeck pass incomplete short right to K.Britt.,13,10,2012 -20121011_PIT@TEN,2,37,2,TEN,PIT,2,10,84,(7:02) (Shotgun) M.Hasselbeck pass short right to K.Wright to TEN 15 for -1 yards (K.Lewis).,13,10,2012 -20121011_PIT@TEN,2,36,18,TEN,PIT,3,11,85,(6:18) (Shotgun) M.Hasselbeck sacked at TEN 9 for -6 yards (J.Worilds).,13,10,2012 -20121011_PIT@TEN,2,35,49,TEN,PIT,4,17,91,(5:49) (Punt formation) B.Kern punts 47 yards to PIT 44 Center-B.Brinkley. A.Brown to PIT 47 for 3 yards (C.Sensabaugh; B.Brinkley).,13,10,2012 -20121011_PIT@TEN,2,35,36,PIT,TEN,1,10,53,(5:36) B.Roethlisberger pass incomplete deep right to A.Brown.,10,13,2012 -20121011_PIT@TEN,2,35,31,PIT,TEN,2,10,53,(5:31) I.Redman up the middle to 50 for 3 yards (J.Babineaux).,10,13,2012 -20121011_PIT@TEN,2,34,46,PIT,TEN,3,7,50,(4:46) (Shotgun) B.Roethlisberger pass incomplete deep middle to E.Sanders.,10,13,2012 -20121011_PIT@TEN,2,34,42,PIT,TEN,4,7,50,(4:42) (Punt formation) D.Butler punts 36 yards to TEN 14 Center-G.Warren fair catch by D.Reynaud.,10,13,2012 -20121011_PIT@TEN,2,34,34,TEN,PIT,1,10,86,(4:34) C.Johnson right tackle to TEN 21 for 7 yards (R.Clark; W.Allen).,13,10,2012 -20121011_PIT@TEN,2,33,56,TEN,PIT,2,3,79,(3:56) C.Johnson left guard to TEN 22 for 1 yard (K.Lewis; J.Worilds).,13,10,2012 -20121011_PIT@TEN,2,33,16,TEN,PIT,3,2,78,(3:16) M.Hasselbeck pass short right to K.Britt to TEN 27 for 5 yards (K.Lewis).,13,10,2012 -20121011_PIT@TEN,2,32,44,TEN,PIT,1,10,73,(2:44) C.Johnson up the middle to TEN 34 for 7 yards (K.Lewis).,13,10,2012 -20121011_PIT@TEN,2,32,12,TEN,PIT,2,3,66,(2:12) M.Hasselbeck pass incomplete short right to Q.Johnson.,13,10,2012 -20121011_PIT@TEN,2,32,8,TEN,PIT,3,3,66,(2:08) (Shotgun) M.Hasselbeck pass short left to D.Williams to TEN 36 for 2 yards (C.Allen).,13,10,2012 -20121011_PIT@TEN,2,32,0,TEN,PIT,4,1,64,(2:00) (Punt formation) B.Kern punts 58 yards to PIT 6 Center-B.Brinkley. C.Rainey to PIT 13 for 7 yards (T.Thompson).,13,10,2012 -20121011_PIT@TEN,2,31,49,PIT,TEN,1,10,87,(1:49) (Shotgun) B.Roethlisberger pass deep left to I.Redman pushed ob at TEN 32 for 55 yards (M.Griffin).,10,13,2012 -20121011_PIT@TEN,2,31,38,PIT,TEN,1,10,32,(1:38) (No Huddle Shotgun) B.Roethlisberger pass deep right intended for A.Brown INTERCEPTED by J.McCourty at TEN 12. J.McCourty to TEN 12 for no gain (A.Brown).,10,13,2012 -20121011_PIT@TEN,2,31,31,TEN,PIT,1,10,88,(1:31) (Shotgun) C.Johnson up the middle to TEN 21 for 9 yards (R.Clark).,13,10,2012 -20121011_PIT@TEN,2,31,10,TEN,PIT,2,1,79,(1:10) (No Huddle Shotgun) M.Hasselbeck pass short right to J.Cook to TEN 25 for 4 yards (L.Timmons).,13,10,2012 -20121011_PIT@TEN,2,30,45,TEN,PIT,1,10,75,(:45) (No Huddle Shotgun) M.Hasselbeck pass short left to J.Cook ran ob at TEN 44 for 19 yards (R.Clark).,13,10,2012 -20121011_PIT@TEN,2,30,38,TEN,PIT,1,10,56,(:38) (Shotgun) M.Hasselbeck pass incomplete deep right to K.Britt.,13,10,2012 -20121011_PIT@TEN,2,30,34,TEN,PIT,2,10,56,(:34) (Shotgun) M.Hasselbeck pass incomplete short left to D.Williams.,13,10,2012 -20121011_PIT@TEN,2,30,29,TEN,PIT,3,10,56,(:29) (Shotgun) M.Hasselbeck pass short middle to C.Johnson ran ob at PIT 44 for 12 yards (R.Clark) [C.Allen].,13,10,2012 -20121011_PIT@TEN,2,30,22,TEN,PIT,1,10,44,(:22) (Shotgun) M.Hasselbeck pass incomplete deep middle to N.Washington.,13,10,2012 -20121011_PIT@TEN,2,30,16,TEN,PIT,2,10,44,(:16) (Shotgun) M.Hasselbeck pass incomplete deep middle to N.Washington (C.Allen).,13,10,2012 -20121011_PIT@TEN,2,30,11,TEN,PIT,3,10,44,(:11) (Shotgun) M.Hasselbeck pass short right to K.Wright pushed ob at PIT 29 for 15 yards (W.Allen).,13,10,2012 -20121011_PIT@TEN,2,30,4,TEN,PIT,1,10,29,(:04) (Field Goal formation) R.Bironas 47 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,13,10,2012 -20121011_PIT@TEN,3,30,0,TEN,PIT,,,29,R.Bironas kicks 67 yards from TEN 35 to PIT -2. C.Rainey to PIT 25 for 27 yards (R.Johnson).,16,10,2012 -20121011_PIT@TEN,3,29,51,PIT,TEN,1,10,75,(14:51) B.Roethlisberger pass short right to D.Paulson to PIT 33 for 8 yards (J.McCourty). PENALTY on TEN-A.Ayers Unnecessary Roughness 15 yards enforced at PIT 33.,10,16,2012 -20121011_PIT@TEN,3,29,26,PIT,TEN,1,10,52,(14:26) R.Mendenhall right guard to PIT 46 for -2 yards (A.Ayers).,10,16,2012 -20121011_PIT@TEN,3,28,44,PIT,TEN,2,12,54,(13:44) B.Roethlisberger pass short right to H.Miller to TEN 40 for 14 yards (J.McCourty; C.McCarthy).,10,16,2012 -20121011_PIT@TEN,3,27,57,PIT,TEN,1,10,40,(12:57) I.Redman right guard to TEN 37 for 3 yards (M.Martin; A.Ayers).,10,16,2012 -20121011_PIT@TEN,3,27,14,PIT,TEN,2,7,37,(12:14) B.Roethlisberger pass short middle to I.Redman to TEN 24 for 13 yards (Z.Brown).,10,16,2012 -20121011_PIT@TEN,3,26,24,PIT,TEN,1,10,24,(11:24) B.Batch left guard to TEN 21 for 3 yards (C.McCarthy; A.Ayers).,10,16,2012 -20121011_PIT@TEN,3,25,43,PIT,TEN,2,7,21,(10:43) B.Roethlisberger pass short right to A.Brown to TEN 14 for 7 yards (R.Mouton).,10,16,2012 -20121011_PIT@TEN,3,25,0,PIT,TEN,1,10,14,(10:00) I.Redman up the middle to TEN 10 for 4 yards (C.McCarthy; M.Martin).,10,16,2012 -20121011_PIT@TEN,3,24,18,PIT,TEN,2,6,10,(9:18) B.Roethlisberger pass incomplete short right to W.Johnson.,10,16,2012 -20121011_PIT@TEN,3,24,13,PIT,TEN,3,6,10,(9:13) (Shotgun) B.Roethlisberger pass incomplete short middle to M.Wallace.,10,16,2012 -20121011_PIT@TEN,3,24,8,PIT,TEN,4,6,10,(9:08) (Field Goal formation) S.Suisham 28 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,16,2012 -20121011_PIT@TEN,3,24,8,PIT,TEN,,,10,S.Suisham kicks 73 yards from PIT 35 to TEN -8. D.Reynaud to TEN 21 for 29 yards (B.Johnson).,13,16,2012 -20121011_PIT@TEN,3,23,56,TEN,PIT,1,10,79,(8:56) C.Johnson left tackle to TEN 34 for 13 yards (W.Allen).,16,13,2012 -20121011_PIT@TEN,3,23,17,TEN,PIT,1,10,66,(8:17) C.Johnson right tackle to TEN 36 for 2 yards (L.Foote; J.Harrison).,16,13,2012 -20121011_PIT@TEN,3,22,35,TEN,PIT,2,8,64,(7:35) M.Hasselbeck pass deep middle to N.Washington to PIT 39 for 25 yards (R.Clark).,16,13,2012 -20121011_PIT@TEN,3,21,50,TEN,PIT,1,10,39,(6:50) (Shotgun) M.Hasselbeck pass short left to K.Wright to PIT 36 for 3 yards (C.Heyward; A.Woods).,16,13,2012 -20121011_PIT@TEN,3,21,12,TEN,PIT,2,7,36,(6:12) M.Hasselbeck pass incomplete deep left to K.Britt.,16,13,2012 -20121011_PIT@TEN,3,21,6,TEN,PIT,3,7,36,(6:06) (Shotgun) M.Hasselbeck sacked at PIT 47 for -11 yards (L.Foote). FUMBLES (L.Foote) and recovers at PIT 47. M.Hasselbeck to PIT 47 for no gain (L.Foote).,16,13,2012 -20121011_PIT@TEN,3,20,25,TEN,PIT,4,18,47,(5:25) (Punt formation) B.Kern punts 47 yards to end zone Center-B.Brinkley Touchback.,16,13,2012 -20121011_PIT@TEN,3,20,16,PIT,TEN,1,10,80,(5:16) I.Redman right tackle to PIT 19 for -1 yards (M.Martin).,13,16,2012 -20121011_PIT@TEN,3,19,42,PIT,TEN,2,11,81,(4:42) I.Redman up the middle to PIT 24 for 5 yards (C.McCarthy). PIT-I.Redman was injured during the play. His return is Questionable.,13,16,2012 -20121011_PIT@TEN,3,19,17,PIT,TEN,3,6,76,(4:17) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 35 for 11 yards (J.Babineaux).,13,16,2012 -20121011_PIT@TEN,3,18,36,PIT,TEN,1,10,65,(3:36) B.Roethlisberger pass short right to A.Brown to PIT 41 for 6 yards (J.McCourty). Tennessee challenged the pass completion ruling and the play was REVERSED. B.Roethlisberger pass incomplete short right to A.Brown.,13,16,2012 -20121011_PIT@TEN,3,18,34,PIT,TEN,2,10,65,(3:34) B.Roethlisberger sacked at PIT 28 for -7 yards (M.Martin). FUMBLES (M.Martin) RECOVERED by TEN-M.Martin at PIT 22. M.Martin to PIT 22 for no gain (C.Rainey). The Replay Assistant challenged the fumble ruling and the play was REVERSED. B.Roethlisberger pass incomplete short middle [M.Martin].,13,16,2012 -20121011_PIT@TEN,3,18,31,PIT,TEN,3,10,65,(3:31) (Shotgun) B.Roethlisberger pass short left to H.Miller to TEN 48 for 17 yards (A.Verner).,13,16,2012 -20121011_PIT@TEN,3,17,49,PIT,TEN,1,10,48,(2:49) B.Batch left guard to TEN 45 for 3 yards (A.Ayers).,13,16,2012 -20121011_PIT@TEN,3,17,10,PIT,TEN,2,7,45,(2:10) (Shotgun) B.Batch up the middle to TEN 35 for 10 yards (J.Babineaux).,13,16,2012 -20121011_PIT@TEN,3,16,25,PIT,TEN,1,10,35,(1:25) B.Batch right guard to TEN 33 for 2 yards (M.Martin; S.Marks).,13,16,2012 -20121011_PIT@TEN,3,15,40,PIT,TEN,2,8,33,(:40) B.Batch up the middle to TEN 33 for no gain (M.Griffin; M.Martin).,13,16,2012 -20121011_PIT@TEN,3,15,1,PIT,TEN,3,8,33,(:01) (Shotgun) B.Roethlisberger pass short left to E.Sanders to TEN 23 for 10 yards (A.Verner).,13,16,2012 -20121011_PIT@TEN,4,15,0,PIT,TEN,1,10,23,(15:00) B.Roethlisberger pass short right to C.Rainey pushed ob at TEN 11 for 12 yards (S.Marks).,13,16,2012 -20121011_PIT@TEN,4,14,29,PIT,TEN,1,10,11,(14:29) B.Roethlisberger pass incomplete short left to A.Brown. PENALTY on TEN-R.Mouton Defensive Pass Interference 10 yards enforced at TEN 11 - No Play.,13,16,2012 -20121011_PIT@TEN,4,14,24,PIT,TEN,1,1,1,(14:24) B.Batch up the middle to TEN 1 for no gain (D.Morgan; K.Wimbley).,13,16,2012 -20121011_PIT@TEN,4,13,44,PIT,TEN,2,1,1,(13:44) B.Roethlisberger pass incomplete short left to H.Miller (Z.Brown).,13,16,2012 -20121011_PIT@TEN,4,13,39,PIT,TEN,3,1,1,(13:39) B.Batch right guard for 1 yard TOUCHDOWN.,13,16,2012 -20121011_PIT@TEN,4,13,39,PIT,TEN,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,13,16,2012 -20121011_PIT@TEN,4,13,39,PIT,TEN,,,1,S.Suisham kicks 72 yards from PIT 35 to TEN -7. D.Reynaud to TEN 25 for 32 yards (Cu.Brown).,20,16,2012 -20121011_PIT@TEN,4,13,27,TEN,PIT,1,10,75,(13:27) C.Johnson left tackle to TEN 33 for 8 yards (I.Taylor).,16,20,2012 -20121011_PIT@TEN,4,12,45,TEN,PIT,2,2,67,(12:45) C.Johnson right guard to TEN 34 for 1 yard (R.Clark).,16,20,2012 -20121011_PIT@TEN,4,12,4,TEN,PIT,3,1,66,(12:04) (Shotgun) M.Hasselbeck pass short right to K.Wright to TEN 37 for 3 yards (C.Allen).,16,20,2012 -20121011_PIT@TEN,4,11,27,TEN,PIT,1,10,63,(11:27) M.Hasselbeck pass short left to N.Washington to 50 for 13 yards (I.Taylor).,16,20,2012 -20121011_PIT@TEN,4,10,47,TEN,PIT,1,10,50,(10:47) C.Johnson right end to PIT 48 for 2 yards (J.Worilds).,16,20,2012 -20121011_PIT@TEN,4,10,3,TEN,PIT,2,8,48,(10:03) M.Hasselbeck pass short middle intended for K.Wright INTERCEPTED by L.Timmons at PIT 48. L.Timmons to TEN 48 for 4 yards (C.Johnson).,16,20,2012 -20121011_PIT@TEN,4,9,56,PIT,TEN,1,10,48,(9:56) B.Roethlisberger pass short right to M.Wallace ran ob at TEN 36 for 12 yards.,20,16,2012 -20121011_PIT@TEN,4,9,11,PIT,TEN,1,10,36,(9:11) (Shotgun) B.Batch up the middle to TEN 34 for 2 yards (C.McCarthy; A.Ayers).,20,16,2012 -20121011_PIT@TEN,4,8,33,PIT,TEN,2,8,34,(8:33) B.Roethlisberger pass incomplete short middle to H.Miller [D.Morgan].,20,16,2012 -20121011_PIT@TEN,4,8,27,PIT,TEN,3,8,34,(8:27) (Shotgun) B.Roethlisberger pass incomplete deep middle to E.Sanders.,20,16,2012 -20121011_PIT@TEN,4,8,22,PIT,TEN,4,8,34,(8:22) (Field Goal formation) S.Suisham 52 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,20,16,2012 -20121011_PIT@TEN,4,8,22,PIT,TEN,,,34,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,23,16,2012 -20121011_PIT@TEN,4,8,18,TEN,PIT,1,10,80,(8:18) C.Johnson up the middle to TEN 32 for 12 yards (B.Keisel).,16,23,2012 -20121011_PIT@TEN,4,7,36,TEN,PIT,1,10,68,(7:36) M.Hasselbeck pass incomplete short right to N.Washington (K.Lewis).,16,23,2012 -20121011_PIT@TEN,4,7,31,TEN,PIT,2,10,68,(7:31) (Shotgun) M.Hasselbeck pass short middle to K.Wright to TEN 48 for 16 yards (I.Taylor; W.Allen).,16,23,2012 -20121011_PIT@TEN,4,6,54,TEN,PIT,1,10,52,(6:54) C.Johnson right tackle to 50 for 2 yards (J.Harrison).,16,23,2012 -20121011_PIT@TEN,4,6,12,TEN,PIT,2,8,50,(6:12) J.Harper up the middle to 50 for no gain (L.Timmons; R.Clark).,16,23,2012 -20121011_PIT@TEN,4,5,35,TEN,PIT,3,8,50,(5:35) (Shotgun) M.Hasselbeck pass deep middle to K.Wright to PIT 15 for 35 yards (W.Allen).,16,23,2012 -20121011_PIT@TEN,4,4,51,TEN,PIT,1,10,15,(4:51) M.Hasselbeck pass incomplete short right to N.Washington.,16,23,2012 -20121011_PIT@TEN,4,4,44,TEN,PIT,2,10,15,(4:44) M.Hasselbeck pass incomplete short left to K.Britt (I.Taylor).,16,23,2012 -20121011_PIT@TEN,4,4,40,TEN,PIT,3,10,15,(4:40) (Shotgun) M.Hasselbeck pass incomplete short left to D.Williams (I.Taylor). PENALTY on PIT-I.Taylor Defensive Holding 5 yards enforced at PIT 15 - No Play.,16,23,2012 -20121011_PIT@TEN,4,4,35,TEN,PIT,1,10,10,(4:35) C.Johnson left end pushed ob at PIT 5 for 5 yards (I.Taylor). PIT-R.Clark was injured during the play. His return is Questionable.,16,23,2012 -20121011_PIT@TEN,4,4,30,TEN,PIT,2,5,5,(4:30) M.Hasselbeck pass incomplete short left to K.Britt (I.Taylor).,16,23,2012 -20121011_PIT@TEN,4,4,25,TEN,PIT,3,5,5,(4:25) M.Hasselbeck pass short left to K.Britt for 5 yards TOUCHDOWN.,16,23,2012 -20121011_PIT@TEN,4,4,25,TEN,PIT,,,5,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,16,23,2012 -20121011_PIT@TEN,4,4,25,TEN,PIT,,,5,R.Bironas kicks 65 yards from TEN 35 to PIT 0. C.Rainey to PIT 22 for 22 yards (R.Mouton). PENALTY on PIT-D.Van Dyke Offensive Holding 10 yards enforced at PIT 21.,23,23,2012 -20121011_PIT@TEN,4,4,14,PIT,TEN,1,10,89,(4:14) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 20 for 9 yards (J.Babineaux; C.McCarthy).,23,23,2012 -20121011_PIT@TEN,4,3,35,PIT,TEN,2,1,80,(3:35) (Shotgun) B.Roethlisberger pass deep right to E.Sanders to PIT 42 for 22 yards (J.Babineaux).,23,23,2012 -20121011_PIT@TEN,4,2,52,PIT,TEN,1,10,58,(2:52) (Shotgun) B.Batch left guard to PIT 44 for 2 yards (M.Martin).,23,23,2012 -20121011_PIT@TEN,4,2,16,PIT,TEN,2,8,56,(2:16) B.Roethlisberger pass short right to B.Batch to PIT 47 for 3 yards (J.McCourty).,23,23,2012 -20121011_PIT@TEN,4,2,0,PIT,TEN,3,5,53,(2:00) (Shotgun) B.Roethlisberger scrambles right tackle pushed ob at TEN 39 for 14 yards (C.McCarthy). Penalty on TEN-D.Morgan Defensive Offside declined.,23,23,2012 -20121011_PIT@TEN,4,1,52,PIT,TEN,1,10,39,(1:52) B.Roethlisberger pass short right to H.Miller to TEN 35 for 4 yards (J.Babineaux).,23,23,2012 -20121011_PIT@TEN,4,1,8,PIT,TEN,2,6,35,(1:08) B.Batch up the middle to TEN 36 for -1 yards (D.Morgan).,23,23,2012 -20121011_PIT@TEN,4,1,3,PIT,TEN,3,7,36,(1:03) (Shotgun) B.Roethlisberger pass incomplete short middle to H.Miller.,23,23,2012 -20121011_PIT@TEN,4,0,54,PIT,TEN,4,7,36,(:54) (Field Goal formation) S.Suisham 54 yard field goal is No Good Short Center-G.Warren Holder-D.Butler.,23,23,2012 -20121011_PIT@TEN,4,0,49,TEN,PIT,1,10,55,(:49) (Shotgun) M.Hasselbeck pass short left to C.Johnson to 50 for 5 yards (L.Foote).,23,23,2012 -20121011_PIT@TEN,4,0,43,TEN,PIT,2,5,50,(:43) (Shotgun) M.Hasselbeck pass incomplete short middle to N.Washington.,23,23,2012 -20121011_PIT@TEN,4,0,39,TEN,PIT,3,5,50,(:39) (Shotgun) M.Hasselbeck pass short right to J.Cook pushed ob at PIT 25 for 25 yards (W.Allen).,23,23,2012 -20121011_PIT@TEN,4,0,32,TEN,PIT,1,10,25,(:32) C.Johnson right tackle to PIT 22 for 3 yards (K.Lewis; B.Keisel).,23,23,2012 -20121011_PIT@TEN,4,0,3,TEN,PIT,2,7,22,(:03) (Field Goal formation) R.Bironas 40 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,23,23,2012 -20121011_PIT@TEN,4,0,3,TEN,PIT,,,22,                      ,26,23,2012 -20121014_OAK@ATL,1,0,0,OAK,ATL,,,22,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 -20121014_OAK@ATL,1,60,0,ATL,OAK,1,10,80,(15:00) M.Ryan pass deep right to J.Jones ran ob at ATL 45 for 25 yards (M.Giordano).,0,0,2012 -20121014_OAK@ATL,1,59,36,ATL,OAK,1,10,55,(14:36) M.Turner right guard to OAK 46 for 9 yards (P.Wheeler).,0,0,2012 -20121014_OAK@ATL,1,58,21,ATL,OAK,1,10,43,(13:21) (Shotgun) M.Ryan pass short middle intended for H.Douglas INTERCEPTED by J.Hanson at OAK 38. J.Hanson ran ob at ATL 41 for 21 yards (M.Ryan).,0,0,2012 -20121014_OAK@ATL,1,58,13,OAK,ATL,1,10,41,(13:13) D.McFadden left end to ATL 34 for 7 yards (D.Robinson).,0,0,2012 -20121014_OAK@ATL,1,57,42,OAK,ATL,2,3,34,(12:42) D.McFadden left end to ATL 34 for no gain (W.Moore). PENALTY on OAK-M.Reece Offensive Holding 10 yards enforced at ATL 34 - No Play.,0,0,2012 -20121014_OAK@ATL,1,57,11,OAK,ATL,2,13,44,(12:11) (Shotgun) D.McFadden left guard to ATL 46 for -2 yards (J.Babineaux). FUMBLES (J.Babineaux) RECOVERED by ATL-R.McClain at OAK 45. R.McClain to OAK 32 for 13 yards (C.Palmer).,0,0,2012 -20121014_OAK@ATL,1,57,2,ATL,OAK,1,10,32,(12:02) Jz. Rodgers right guard to OAK 32 for no gain (M.Shaughnessy; M.Burris).,0,0,2012 -20121014_OAK@ATL,1,56,21,ATL,OAK,2,10,32,(11:21) (Shotgun) M.Ryan pass short right to J.Jones to OAK 23 for 9 yards (M.Huff; R.McClain).,0,0,2012 -20121014_OAK@ATL,1,54,57,ATL,OAK,3,1,77,(9:57) C.Palmer pass short right to B.Myers to OAK 43 for 10 yards (W.Moore).,0,0,2012 -20121014_OAK@ATL,1,54,57,ATL,OAK,4,3,25,(9:57) Matt Bryant missed a field goal of 43 yards. ,0,0,2012 -20121014_OAK@ATL,1,54,57,OAK,ATL,1,10,67,(9:57) C.Palmer pass short right to B.Myers to OAK 42 for 9 yards (W.Moore).,0,0,2012 -20121014_OAK@ATL,1,54,28,OAK,ATL,2,1,58,(9:28) D.McFadden left guard to OAK 46 for 4 yards (J.Abraham).,0,0,2012 -20121014_OAK@ATL,1,53,51,OAK,ATL,1,10,54,(8:51) C.Palmer pass incomplete short left to D.Moore.,0,0,2012 -20121014_OAK@ATL,1,53,46,OAK,ATL,2,10,54,(8:46) D.McFadden right guard to OAK 44 for -2 yards (J.Abraham).,0,0,2012 -20121014_OAK@ATL,1,53,51,OAK,ATL,3,12,56,(8:51) C.Palmer pass incomplete short left to D.Moore.,0,0,2012 -20121014_OAK@ATL,1,52,26,OAK,ATL,1,10,42,(7:26) C.Palmer pass short left to R.Streater to ATL 39 for 3 yards (D.Robinson).,0,0,2012 -20121014_OAK@ATL,1,51,43,OAK,ATL,2,7,39,(6:43) C.Palmer sacked at ATL 48 for -9 yards (J.Abraham).,0,0,2012 -20121014_OAK@ATL,1,50,15,ATL,OAK,1,10,80,(5:15) M.Ryan pass deep left to R.White pushed ob at ATL 46 for 26 yards (M.Giordano). PENALTY on OAK-M.Shaughnessy Roughing the Passer 15 yards enforced at ATL 46.,0,0,2012 -20121014_OAK@ATL,1,49,56,ATL,OAK,1,10,39,(4:56) M.Ryan pass deep middle intended for J.Jones INTERCEPTED by M.Huff [M.Shaughnessy] at OAK 2. M.Huff to OAK 2 for no gain. Penalty on ATL-T.Clabo Offensive Holding declined.,0,0,2012 -20121014_OAK@ATL,1,49,48,OAK,ATL,1,10,98,(4:48) C.Palmer pass deep right to D.Moore to ATL 49 for 49 yards (A.Samuel).,0,0,2012 -20121014_OAK@ATL,1,49,4,OAK,ATL,1,10,49,(4:04) D.McFadden left guard to 50 for -1 yards (J.Babineaux).,0,0,2012 -20121014_OAK@ATL,1,48,26,OAK,ATL,2,11,50,(3:26) D.McFadden right end to ATL 43 for 7 yards (K.Biermann).,0,0,2012 -20121014_OAK@ATL,1,47,47,OAK,ATL,3,4,43,(2:47) D.Heyward-Bey left end to ATL 23 for 20 yards (R.McClain).,0,0,2012 -20121014_OAK@ATL,1,47,2,OAK,ATL,1,10,23,(2:02) M.Goodson left end to ATL 22 for 1 yard (R.Edwards).,0,0,2012 -20121014_OAK@ATL,1,46,20,OAK,ATL,2,9,22,(1:20) C.Palmer pass incomplete short right to D.Hagan [V.Walker]. PENALTY on OAK-B.Myers Offensive Pass Interference 10 yards enforced at ATL 22 - No Play.,0,0,2012 -20121014_OAK@ATL,1,45,28,OAK,ATL,2,19,32,(:28) S.Janikowski 52 yard field goal is GOOD Holder-S.Lechler.,0,0,2012 -20121014_OAK@ATL,1,45,28,OAK,ATL,4,20,33,(:28) S.Janikowski 52 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20121014_OAK@ATL,1,45,28,OAK,ATL,,,33,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,3,0,2012 -20121014_OAK@ATL,1,45,24,ATL,OAK,1,10,80,(:24) M.Ryan pass short right to R.White to ATL 29 for 9 yards [T.Kelly].,0,3,2012 -20121014_OAK@ATL,2,45,0,ATL,OAK,2,1,71,(15:00) M.Turner left guard to ATL 38 for 9 yards (P.Wheeler).,0,3,2012 -20121014_OAK@ATL,2,42,58,ATL,OAK,1,10,47,(12:58) (No Huddle Shotgun) M.Ryan pass short middle to H.Douglas to OAK 39 for 8 yards (J.Hanson; A.Carter).,0,3,2012 -20121014_OAK@ATL,2,42,22,ATL,OAK,2,2,39,(12:22) (No Huddle Shotgun) M.Ryan pass short right to R.White to OAK 25 for 14 yards (M.Huff).,0,3,2012 -20121014_OAK@ATL,2,41,53,ATL,OAK,1,10,25,(11:53) (No Huddle Shotgun) M.Ryan pass short left to H.Douglas to OAK 21 for 4 yards (T.Branch).,0,3,2012 -20121014_OAK@ATL,2,41,14,ATL,OAK,2,6,21,(11:14) (No Huddle Shotgun) M.Ryan pass short left to J.Jones to OAK 2 for 19 yards (T.Branch).,0,3,2012 -20121014_OAK@ATL,2,40,28,ATL,OAK,1,2,2,(10:28) (No Huddle) M.Turner left end to OAK 4 for -2 yards (R.Seymour).,0,3,2012 -20121014_OAK@ATL,2,41,14,ATL,OAK,2,4,4,(11:14) (No Huddle Shotgun) M.Ryan pass short left to J.Jones to OAK 2 for 19 yards (T.Branch).,0,3,2012 -20121014_OAK@ATL,2,41,14,ATL,OAK,,,4,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,3,2012 -20121014_OAK@ATL,2,41,14,ATL,OAK,,,4,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,3,2012 -20121014_OAK@ATL,2,38,38,OAK,ATL,1,10,80,(8:38) C.Palmer pass short left to D.Ausberry to OAK 47 for 12 yards (W.Moore; A.Dent).,3,7,2012 -20121014_OAK@ATL,2,37,59,OAK,ATL,1,10,53,(7:59) C.Palmer pass short left to R.Streater to ATL 46 for 7 yards (D.Robinson).,3,7,2012 -20121014_OAK@ATL,2,37,24,OAK,ATL,2,3,46,(7:24) D.McFadden right end ran ob at ATL 25 for 21 yards (W.Moore). PENALTY on OAK-W.Smith Offensive Holding 10 yards enforced at ATL 46 - No Play.,3,7,2012 -20121014_OAK@ATL,2,36,54,OAK,ATL,2,13,56,(6:54) C.Palmer pass short left to M.Goodson to ATL 19 for 37 yards (S.Weatherspoon). OAK-M.Brisiel was injured during the play. His return is Doubtful.,3,7,2012 -20121014_OAK@ATL,2,36,19,OAK,ATL,1,10,19,(6:19) C.Palmer pass short middle to D.Moore to ATL 8 for 11 yards (A.Dent) [K.Biermann].,3,7,2012 -20121014_OAK@ATL,2,36,54,OAK,ATL,1,8,8,(6:54) C.Palmer pass short left to M.Goodson to ATL 19 for 37 yards (S.Weatherspoon). OAK-M.Brisiel was injured during the play. His return is Doubtful.,3,7,2012 -20121014_OAK@ATL,2,35,1,OAK,ATL,2,1,1,(5:01) C.Palmer pass incomplete short right to B.Myers (W.Moore).,3,7,2012 -20121014_OAK@ATL,2,34,56,OAK,ATL,3,1,1,(4:56) D.McFadden left end to ATL 4 for -3 yards (J.Babineaux).,3,7,2012 -20121014_OAK@ATL,2,34,11,OAK,ATL,4,4,4,(4:11) Sebastian Janikowski made a field goal of 22 yards. ,3,7,2012 -20121014_OAK@ATL,2,34,11,ATL,OAK,1,10,80,(4:11) M.Ryan sacked at ATL 12 for -8 yards (M.Shaughnessy).,17,20,2012 -20121014_OAK@ATL,2,33,44,ATL,OAK,2,18,88,(3:44) (No Huddle Shotgun) M.Ryan pass short right to R.White pushed ob at ATL 17 for 5 yards (M.Huff).,17,20,2012 -20121014_OAK@ATL,2,33,1,ATL,OAK,3,13,83,(3:01) (Shotgun) M.Ryan pass incomplete short right to T.Gonzalez [D.Bryant]. PENALTY on OAK-P.Wheeler Defensive Holding 5 yards enforced at ATL 17 - No Play.,17,20,2012 -20121014_OAK@ATL,2,32,56,ATL,OAK,1,10,78,(2:56) (No Huddle Shotgun) M.Ryan pass deep right intended for T.Gonzalez INTERCEPTED by T.Branch [P.Wheeler] at ATL 39. T.Branch to ATL 28 for 11 yards (T.Gonzalez).,17,20,2012 -20121014_OAK@ATL,2,32,44,OAK,ATL,1,10,28,(2:44) D.McFadden right guard to ATL 25 for 3 yards (J.Babineaux).,20,17,2012 -20121014_OAK@ATL,2,32,0,OAK,ATL,2,7,25,(2:00) C.Palmer pass short right to D.Moore for 25 yards TOUCHDOWN.,20,17,2012 -20121014_OAK@ATL,2,32,0,OAK,ATL,,,25,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,20,17,2012 -20121014_OAK@ATL,2,31,45,ATL,OAK,1,10,78,(1:45) M.Ryan pass short right to Jz. Rodgers to ATL 27 for 5 yards (P.Wheeler) [T.Kelly].,7,10,2012 -20121014_OAK@ATL,2,31,20,ATL,OAK,2,5,73,(1:20) (No Huddle Shotgun) M.Ryan pass deep right to R.White to OAK 42 for 31 yards (M.Huff). PENALTY on ATL-T.Clabo Offensive Holding 10 yards enforced at ATL 27 - No Play.,7,10,2012 -20121014_OAK@ATL,2,31,12,ATL,OAK,2,15,83,(1:12) (Shotgun) M.Ryan pass incomplete short right to Jz. Rodgers.,7,10,2012 -20121014_OAK@ATL,2,31,5,ATL,OAK,3,15,83,(1:05) (Shotgun) M.Ryan pass short middle to T.Gonzalez to ATL 30 for 13 yards (M.Burris).,7,10,2012 -20121014_OAK@ATL,2,30,54,ATL,OAK,4,2,70,(:54) M.Bosher punts 55 yards to OAK 15 Center-J.Harris downed by ATL-C.Owens.,7,10,2012 -20121014_OAK@ATL,2,30,39,OAK,ATL,1,10,85,(:39) (Shotgun) D.McFadden right guard to OAK 16 for 1 yard (K.Biermann).,10,7,2012 -20121014_OAK@ATL,3,30,0,OAK,ATL,1,10,80,(15:00) D.McFadden left tackle to OAK 22 for 2 yards (A.Dent).,10,7,2012 -20121014_OAK@ATL,3,29,24,OAK,ATL,2,8,78,(14:24) D.McFadden right end to OAK 24 for 2 yards (K.Biermann; R.McClain).,10,7,2012 -20121014_OAK@ATL,3,28,43,OAK,ATL,3,6,76,(13:43) C.Palmer pass incomplete deep left to D.Moore (T.DeCoud).,10,7,2012 -20121014_OAK@ATL,3,28,37,OAK,ATL,4,6,76,(13:37) S.Lechler punts 55 yards to ATL 21 Center-J.Condo out of bounds.,10,7,2012 -20121014_OAK@ATL,3,27,52,ATL,OAK,2,13,82,(12:52) M.Ryan pass short right to L.Polite to ATL 26 for 8 yards (P.Wheeler).,7,10,2012 -20121014_OAK@ATL,3,27,10,ATL,OAK,3,5,74,(12:10) (Shotgun) M.Ryan pass incomplete short right to R.White.,7,10,2012 -20121014_OAK@ATL,3,27,4,ATL,OAK,4,5,74,(12:04) M.Bosher punts 54 yards to OAK 20 Center-J.Harris. D.Moore to OAK 19 for -1 yards. Handoff to P.Adams to OAK 26 for 7 yards (C.Owens). PENALTY on OAK-C.Francies Offensive Holding 10 yards enforced at OAK 20.,7,10,2012 -20121014_OAK@ATL,3,26,50,OAK,ATL,1,10,90,(11:50) C.Palmer pass short middle to D.McFadden to OAK 17 for 7 yards (M.Peterson).,10,7,2012 -20121014_OAK@ATL,3,26,9,OAK,ATL,1,10,76,(11:09) PENALTY on OAK-J.Veldheer False Start 5 yards enforced at OAK 24 - No Play.,10,7,2012 -20121014_OAK@ATL,3,25,14,OAK,ATL,1,15,81,(10:14) C.Palmer pass deep right to D.Hagan to OAK 40 for 21 yards (A.Samuel).,10,7,2012 -20121014_OAK@ATL,3,24,33,OAK,ATL,1,10,60,(9:33) (Shotgun) C.Palmer pass incomplete short left to D.Moore.,10,7,2012 -20121014_OAK@ATL,3,24,29,OAK,ATL,2,10,60,(9:29) D.McFadden right guard to OAK 43 for 3 yards (A.Dent).,10,7,2012 -20121014_OAK@ATL,3,23,49,OAK,ATL,3,7,57,(8:49) (Shotgun) C.Palmer pass incomplete deep right to D.Heyward-Bey.,10,7,2012 -20121014_OAK@ATL,3,23,43,OAK,ATL,4,7,57,(8:43) S.Lechler punts 57 yards to end zone Center-J.Condo Touchback. PENALTY on OAK-T.Goethel Offensive Holding 10 yards enforced between downs.,10,7,2012 -20121014_OAK@ATL,3,23,35,ATL,OAK,1,10,70,(8:35) M.Ryan pass short right to M.Turner to ATL 36 for 6 yards (R.McClain).,7,10,2012 -20121014_OAK@ATL,3,27,4,ATL,OAK,2,4,64,(12:04) M.Bosher punts 54 yards to OAK 20 Center-J.Harris. D.Moore to OAK 19 for -1 yards. Handoff to P.Adams to OAK 26 for 7 yards (C.Owens). PENALTY on OAK-C.Francies Offensive Holding 10 yards enforced at OAK 20.,7,10,2012 -20121014_OAK@ATL,3,22,11,ATL,OAK,3,3,63,(7:11) (Shotgun) M.Ryan pass deep right to H.Douglas to OAK 43 for 20 yards (M.Giordano).,7,10,2012 -20121014_OAK@ATL,3,21,1,ATL,OAK,2,4,37,(6:01) (No Huddle Shotgun) M.Ryan pass short right to R.White to OAK 23 for 14 yards (M.Shaughnessy).,7,10,2012 -20121014_OAK@ATL,3,20,26,ATL,OAK,1,10,23,(5:26) (No Huddle Shotgun) M.Ryan pass incomplete short right to R.White (M.Huff).,7,10,2012 -20121014_OAK@ATL,3,20,22,ATL,OAK,2,10,23,(5:22) (No Huddle) M.Ryan pass incomplete deep left to J.Jones [L.Houston].,7,10,2012 -20121014_OAK@ATL,3,20,17,ATL,OAK,3,10,23,(5:17) (Shotgun) M.Ryan pass incomplete short left to H.Douglas (J.Hanson) [P.Wheeler].,7,10,2012 -20121014_OAK@ATL,3,20,6,ATL,OAK,4,10,23,(5:06) Matt Bryant made a field goal of 41 yards. ,7,10,2012 -20121014_OAK@ATL,3,20,6,ATL,OAK,,,23,M.Bosher kicks 70 yards from ATL 35 to OAK -5. M.Goodson to OAK 20 for 25 yards (C.Hope).,20,17,2012 -20121014_OAK@ATL,3,19,58,OAK,ATL,1,10,80,(4:58) D.McFadden right guard to OAK 24 for 4 yards (A.Dent). PENALTY on ATL-A.Dent Horse Collar Tackle 15 yards enforced at OAK 24.,17,20,2012 -20121014_OAK@ATL,3,19,33,OAK,ATL,1,10,61,(4:33) C.Palmer sacked at OAK 31 for -8 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-R.Edwards at OAK 28. R.Edwards pushed ob at OAK 2 for 26 yards (D.McFadden). The Replay Assistant challenged the fumble ruling and the play was Upheld.,17,20,2012 -20121014_OAK@ATL,3,18,35,ATL,OAK,1,2,2,(3:35) PENALTY on OAK-L.Houston Neutral Zone Infraction 0 yards enforced at OAK 1 - No Play.,20,17,2012 -20121014_OAK@ATL,3,19,19,ATL,OAK,2,2,2,(4:19) M.Turner left tackle to OAK 1 for 1 yard (P.Wheeler).,20,17,2012 -20121014_OAK@ATL,3,18,35,ATL,OAK,3,1,1,(3:35) PENALTY on OAK-D.Tollefson Neutral Zone Infraction 0 yards enforced at OAK 1 - No Play.,20,17,2012 -20121014_OAK@ATL,3,15,.B,ATL,OAK,3,1,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,17,2012 -20121014_OAK@ATL,3,18,5,ATL,OAK,2,2,2,(3:05) Matt Bryant made a field goal of 20 yards. ,20,17,2012 -20121014_OAK@ATL,3,17,31,OAK,ATL,1,10,80,(2:31) D.McFadden left guard to OAK 24 for 4 yards (W.Moore).,17,20,2012 -20121014_OAK@ATL,3,16,57,OAK,ATL,2,6,76,(1:57) D.McFadden left guard to OAK 27 for 3 yards (S.Weatherspoon; D.Robinson).,17,20,2012 -20121014_OAK@ATL,3,27,4,OAK,ATL,3,3,27,(12:04) M.Bosher punts 54 yards to OAK 20 Center-J.Harris. D.Moore to OAK 19 for -1 yards. Handoff to P.Adams to OAK 26 for 7 yards (C.Owens). PENALTY on OAK-C.Francies Offensive Holding 10 yards enforced at OAK 20.,17,20,2012 -20121014_OAK@ATL,3,15,47,OAK,ATL,1,10,53,(:47) (Shotgun) M.Goodson right tackle to ATL 47 for 6 yards (A.Dent).,17,20,2012 -20121014_OAK@ATL,3,15,11,OAK,ATL,2,4,47,(:11) M.Goodson right end pushed ob at ATL 33 for 14 yards (W.Moore). PENALTY on OAK-W.Smith Offensive Holding 10 yards enforced at ATL 47 - No Play.,17,20,2012 -20121014_OAK@ATL,4,14,58,OAK,ATL,3,14,57,(14:58) M.Goodson up the middle to ATL 48 for 9 yards (S.Weatherspoon). Penalty on OAK-W.Smith Offensive Holding declined.,17,20,2012 -20121014_OAK@ATL,4,14,43,OAK,ATL,4,5,48,(14:43) S.Lechler punts 38 yards to ATL 10 Center-J.Condo fair catch by D.Franks.,17,20,2012 -20121014_OAK@ATL,4,13,50,ATL,OAK,1,10,90,(13:50) (Shotgun) M.Ryan pass deep middle to J.Jones to ATL 29 for 18 yards (M.Giordano).,20,17,2012 -20121014_OAK@ATL,4,13,50,ATL,OAK,3,9,89,(13:50) (Shotgun) M.Ryan pass deep middle to J.Jones to ATL 29 for 18 yards (M.Giordano) [R.Seymour]. Oakland challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Ryan pass incomplete deep middle to J.Jones (M.Huff).,20,17,2012 -20121014_OAK@ATL,4,13,44,ATL,OAK,4,9,89,(13:44) M.Bosher punts 57 yards to OAK 32 Center-J.Harris. P.Adams to OAK 37 for 5 yards. PENALTY on OAK-B.Ross Unnecessary Roughness 15 yards enforced at OAK 32.,20,17,2012 -20121014_OAK@ATL,4,13,32,OAK,ATL,1,10,83,(13:32) D.McFadden left end to OAK 20 for 3 yards (S.Weatherspoon; A.Dent).,17,20,2012 -20121014_OAK@ATL,4,12,56,OAK,ATL,2,7,80,(12:56) D.McFadden left end to OAK 17 for -3 yards (D.Robinson).,17,20,2012 -20121014_OAK@ATL,4,12,9,OAK,ATL,3,10,83,(12:09) (Shotgun) C.Palmer pass short left to D.Moore to OAK 34 for 17 yards (W.Moore).,17,20,2012 -20121014_OAK@ATL,4,11,28,OAK,ATL,1,10,66,(11:28) C.Palmer pass incomplete short left to D.McFadden.,17,20,2012 -20121014_OAK@ATL,4,11,23,OAK,ATL,2,10,66,(11:23) C.Palmer pass short middle to B.Myers to ATL 48 for 18 yards (T.DeCoud).,17,20,2012 -20121014_OAK@ATL,4,10,44,OAK,ATL,1,10,48,(10:44) D.McFadden right tackle to ATL 44 for 4 yards (A.Dent).,17,20,2012 -20121014_OAK@ATL,4,9,56,OAK,ATL,2,6,44,(9:56) C.Palmer pass short left to D.McFadden to ATL 43 for 1 yard (S.Weatherspoon).,17,20,2012 -20121014_OAK@ATL,4,9,21,OAK,ATL,3,5,43,(9:21) (Shotgun) C.Palmer sacked at OAK 49 for -8 yards (J.Abraham).,17,20,2012 -20121014_OAK@ATL,4,8,49,OAK,ATL,4,13,51,(8:49) S.Lechler punts 51 yards to end zone Center-J.Condo Touchback.,17,20,2012 -20121014_OAK@ATL,4,8,40,ATL,OAK,1,10,80,(8:40) M.Turner up the middle to ATL 21 for 1 yard (M.Burris).,20,17,2012 -20121014_OAK@ATL,4,8,6,ATL,OAK,2,9,79,(8:06) (Shotgun) M.Ryan scrambles left guard to ATL 36 for 15 yards.,20,17,2012 -20121014_OAK@ATL,4,7,32,ATL,OAK,1,10,64,(7:32) (No Huddle) M.Turner left guard to ATL 44 for 8 yards (T.Branch).,20,17,2012 -20121014_OAK@ATL,4,7,6,ATL,OAK,2,2,56,(7:06) M.Ryan pass short right to H.Douglas pushed ob at ATL 45 for 1 yard (J.Hanson).,20,17,2012 -20121014_OAK@ATL,4,6,34,ATL,OAK,3,1,55,(6:34) M.Ryan pass incomplete short right to T.Gonzalez (M.Huff).,20,17,2012 -20121014_OAK@ATL,4,6,26,ATL,OAK,4,1,55,(6:26) M.Bosher punts 45 yards to OAK 10 Center-J.Harris fair catch by P.Adams.,20,17,2012 -20121014_OAK@ATL,4,6,19,OAK,ATL,1,10,90,(6:19) C.Palmer pass short left to M.Reece to OAK 11 for 1 yard (S.Weatherspoon).,17,20,2012 -20121014_OAK@ATL,4,5,41,OAK,ATL,2,9,89,(5:41) M.Goodson right tackle pushed ob at ATL 46 for 43 yards (W.Moore).,17,20,2012 -20121014_OAK@ATL,4,5,2,OAK,ATL,1,10,46,(5:02) C.Palmer pass short left to B.Myers to ATL 32 for 14 yards (D.Robinson).,17,20,2012 -20121014_OAK@ATL,4,4,18,OAK,ATL,1,10,32,(4:18) D.McFadden right guard to ATL 30 for 2 yards (P.Jerry).,17,20,2012 -20121014_OAK@ATL,4,3,37,OAK,ATL,2,8,30,(3:37) C.Palmer pass short right to D.Moore to ATL 28 for 2 yards (A.Samuel).,17,20,2012 -20121014_OAK@ATL,4,2,55,OAK,ATL,3,6,28,(2:55) C.Palmer pass short right intended for D.Moore INTERCEPTED by A.Samuel at ATL 21. A.Samuel for 79 yards TOUCHDOWN.,17,20,2012 -20121014_OAK@ATL,4,2,55,ATL,OAK,,,28,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,17,2012 -20121014_OAK@ATL,4,2,55,ATL,OAK,,,28,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,14,10,2012 -20121014_OAK@ATL,4,2,40,OAK,ATL,1,10,80,(2:40) (Shotgun) C.Palmer pass short middle to D.Hagan pushed ob at OAK 37 for 17 yards (T.DeCoud).,10,14,2012 -20121014_OAK@ATL,4,2,32,OAK,ATL,1,10,63,(2:32) C.Palmer pass short right to B.Myers to OAK 47 for 10 yards (S.Weatherspoon).,10,14,2012 -20121014_OAK@ATL,4,2,10,OAK,ATL,1,10,53,(2:10) (No Huddle Shotgun) C.Palmer pass incomplete short right to B.Myers (R.McClain).,10,14,2012 -20121014_OAK@ATL,4,2,2,OAK,ATL,2,10,53,(2:02) (Shotgun) C.Palmer pass deep left to D.Moore ran ob at ATL 36 for 17 yards. PENALTY on OAK-J.Veldheer Offensive Holding 10 yards enforced at OAK 47 - No Play.,10,14,2012 -20121014_OAK@ATL,4,1,57,OAK,ATL,2,20,63,(1:57) (Shotgun) C.Palmer pass short right to D.Hagan to OAK 46 for 9 yards (S.Weatherspoon).,10,14,2012 -20121014_OAK@ATL,4,1,32,OAK,ATL,3,11,54,(1:32) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to ATL 43 for 11 yards (S.Weatherspoon).,10,14,2012 -20121014_OAK@ATL,4,1,8,OAK,ATL,1,10,43,(1:08) (No Huddle Shotgun) C.Palmer pass deep right to D.Hagan pushed ob at ATL 5 for 38 yards (A.Samuel).,10,14,2012 -20121014_OAK@ATL,4,0,58,OAK,ATL,1,5,5,(:58) (Shotgun) D.McFadden left tackle to ATL 2 for 3 yards (D.Robinson). ATL-A.Samuel was injured during the play. His return is Probable.,10,14,2012 -20121014_OAK@ATL,4,0,44,OAK,ATL,2,2,2,(:44) D.McFadden left guard for 2 yards TOUCHDOWN.,10,14,2012 -20121014_OAK@ATL,4,0,44,OAK,ATL,,,2,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,10,14,2012 -20121014_OAK@ATL,4,0,44,OAK,ATL,,,2,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,17,14,2012 -20121014_OAK@ATL,4,0,40,ATL,OAK,1,10,80,(:40) (Shotgun) M.Ryan pass short left to Jz. Rodgers to ATL 27 for 7 yards (P.Lee).,14,17,2012 -20121014_OAK@ATL,4,0,32,ATL,OAK,2,3,73,(:32) M.Ryan pass short left to Jz. Rodgers ran ob at ATL 36 for 9 yards (J.Hanson).,14,17,2012 -20121014_OAK@ATL,4,0,26,ATL,OAK,1,10,64,(:26) (Shotgun) M.Ryan pass short left to H.Douglas ran ob at ATL 40 for 4 yards.,14,17,2012 -20121014_OAK@ATL,4,0,22,ATL,OAK,2,6,60,(:22) (Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez.,14,17,2012 -20121014_OAK@ATL,4,0,18,ATL,OAK,3,6,60,(:18) (Shotgun) M.Ryan pass short left to T.Gonzalez ran ob at 50 for 10 yards (P.Lee).,14,17,2012 -20121014_OAK@ATL,4,0,12,ATL,OAK,1,10,50,(:12) (Shotgun) M.Ryan pass short right to T.Gonzalez to OAK 37 for 13 yards (P.Wheeler).,14,17,2012 -20121014_OAK@ATL,4,0,5,ATL,OAK,1,10,37,(:05) M.Bryant 55 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,14,17,2012 -20121014_OAK@ATL,4,0,5,ATL,OAK,,,37,M.Bosher kicks 22 yards from ATL 35 to OAK 43. D.Ausberry to OAK 31 for -12 yards. Lateral to D.Tollefson to OAK 24 for -7 yards. Lateral to M.Reece to OAK 10 for -14 yards. Lateral to M.Goodson to OAK 2 for -8 yards (DJ.Davis).,17,17,2012 -20121014_OAK@ATL,4,0,5,ATL,OAK,,,37,                      ,17,17,2012 -20121014_DAL@BAL,1,0,0,DAL,BAL,,,37,D.Bailey kicks 74 yards from DAL 35 to BLT -9. J.Jones Touchback.,0,0,2012 -20121014_DAL@BAL,1,60,0,BAL,DAL,1,10,80,(15:00) R.Rice left guard to BLT 21 for 1 yard (K.Coleman S.Lee).,0,0,2012 -20121014_DAL@BAL,1,59,30,BAL,DAL,2,9,79,(14:30) J.Flacco pass short left to T.Smith to BLT 26 for 5 yards (G.Sensabaugh).,0,0,2012 -20121014_DAL@BAL,1,58,53,BAL,DAL,3,4,74,(13:53) (Shotgun) J.Flacco pass short middle to J.Jones to BLT 31 for 5 yards (B.Carr).,0,0,2012 -20121014_DAL@BAL,1,58,11,BAL,DAL,1,10,69,(13:11) (No Huddle) R.Rice left guard to BLT 37 for 6 yards (B.Carter).,0,0,2012 -20121014_DAL@BAL,1,57,39,BAL,DAL,2,4,63,(12:39) (No Huddle) R.Rice right guard to BLT 40 for 3 yards (K.Coleman).,0,0,2012 -20121014_DAL@BAL,1,57,13,BAL,DAL,3,1,60,(12:13) (No Huddle) R.Rice right tackle to BLT 49 for 9 yards (V.Butler).,0,0,2012 -20121014_DAL@BAL,1,56,34,BAL,DAL,1,10,51,(11:34) (No Huddle Shotgun) R.Rice left guard to DAL 49 for 2 yards (S.Lissemore). No. 95 Sean Lissemore (DAL) injured on play.,0,0,2012 -20121014_DAL@BAL,1,56,34,BAL,DAL,2,8,49,(11:34) J.Flacco pass short right to J.Jones to DAL 39 for 10 yards (B.Carr).,0,0,2012 -20121014_DAL@BAL,1,56,34,BAL,DAL,1,10,39,(11:34) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to DAL 31 for 8 yards (B.Carter).,0,0,2012 -20121014_DAL@BAL,1,55,26,BAL,DAL,2,2,31,(10:26) (No Huddle) R.Rice left guard to DAL 28 for 3 yards (S.Lee).,0,0,2012 -20121014_DAL@BAL,1,54,47,BAL,DAL,1,10,28,(9:47) (No Huddle Shotgun) R.Rice up the middle to DAL 25 for 3 yards (J.Ratliff S.Lee).,0,0,2012 -20121014_DAL@BAL,1,54,12,BAL,DAL,2,7,25,(9:12) (No Huddle) J.Flacco pass short middle to B.Pierce to DAL 19 for 6 yards (M.Claiborne).,0,0,2012 -20121014_DAL@BAL,1,53,38,BAL,DAL,3,1,19,(8:38) B.Pierce right end to DAL 20 for -1 yards (A.Albright).,0,0,2012 -20121014_DAL@BAL,1,52,54,BAL,DAL,4,2,20,(7:54) (Field Goal formation) J.Tucker 38 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121014_DAL@BAL,1,52,54,BAL,DAL,,,20,J.Tucker kicks 74 yards from BLT 35 to DAL -9. F.Jones Touchback.,3,0,2012 -20121014_DAL@BAL,1,52,50,DAL,BAL,1,10,80,(7:50) D.Murray right guard to DAL 25 for 5 yards (H.Ngata).,0,3,2012 -20121014_DAL@BAL,1,52,19,DAL,BAL,2,5,75,(7:19) T.Romo pass short right to L.Vickers pushed ob at DAL 36 for 11 yards (A.McClellan).,0,3,2012 -20121014_DAL@BAL,1,51,59,DAL,BAL,1,10,64,(6:59) (No Huddle) D.Murray left guard to DAL 40 for 4 yards (P.McPhee).,0,3,2012 -20121014_DAL@BAL,1,51,17,DAL,BAL,2,6,60,(6:17) (No Huddle) D.Murray left end to DAL 42 for 2 yards (C.Upshaw).,0,3,2012 -20121014_DAL@BAL,1,50,36,DAL,BAL,3,4,58,(5:36) (Shotgun) T.Romo pass short right to D.Bryant to BLT 44 for 14 yards (J.Smith).,0,3,2012 -20121014_DAL@BAL,1,50,1,DAL,BAL,1,10,44,(5:01) T.Romo pass short middle to D.Murray to BLT 40 for 4 yards (R.Lewis A.McClellan).,0,3,2012 -20121014_DAL@BAL,1,49,23,DAL,BAL,2,6,40,(4:23) D.Murray left end to BLT 12 for 28 yards (A.McClellan).,0,3,2012 -20121014_DAL@BAL,1,48,47,DAL,BAL,1,10,12,(3:47) D.Murray right tackle to BLT 7 for 5 yards (D.Ellerbe). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at BLT 12 - No Play.,0,3,2012 -20121014_DAL@BAL,1,48,26,DAL,BAL,1,20,22,(3:26) F.Jones left tackle to BLT 1 for 21 yards (E.Reed). Dallas challenged the runner broke the plane ruling and the play was REVERSED. F.Jones left tackle for 22 yards TOUCHDOWN.,0,3,2012 -20121014_DAL@BAL,1,48,26,DAL,BAL,,,22,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,3,2012 -20121014_DAL@BAL,1,48,26,DAL,BAL,,,22,D.Bailey kicks 73 yards from DAL 35 to BLT -8. J.Jones Touchback.,7,3,2012 -20121014_DAL@BAL,1,48,18,BAL,DAL,1,10,80,(3:18) J.Flacco pass incomplete short left to R.Rice.,3,7,2012 -20121014_DAL@BAL,1,48,13,BAL,DAL,2,10,80,(3:13) J.Flacco pass short right to E.Dickson to BLT 28 for 8 yards (D.Connor).,3,7,2012 -20121014_DAL@BAL,1,47,45,BAL,DAL,3,2,72,(2:45) (No Huddle Shotgun) J.Flacco pass incomplete deep left to D.Pitta (S.Lee).,3,7,2012 -20121014_DAL@BAL,1,47,38,BAL,DAL,4,2,72,(2:38) (Punt formation) S.Koch punts 52 yards to DAL 20 Center-M.Cox fair catch by D.Bryant.,3,7,2012 -20121014_DAL@BAL,1,47,31,DAL,BAL,1,10,80,(2:31) T.Romo pass deep right to D.Bryant ran ob at DAL 38 for 18 yards. No. 21 Ladarius Webb (BAL) injured on play.,7,3,2012 -20121014_DAL@BAL,1,47,11,DAL,BAL,1,10,62,(2:11) D.Murray left tackle to DAL 43 for 5 yards (R.Lewis).,7,3,2012 -20121014_DAL@BAL,1,46,38,DAL,BAL,2,5,57,(1:38) D.Murray right guard to BLT 44 for 13 yards (H.Ngata B.Pollard).,7,3,2012 -20121014_DAL@BAL,1,45,48,DAL,BAL,1,10,44,(:48) D.Murray left guard to BLT 38 for 6 yards (R.Lewis T.Cody).,7,3,2012 -20121014_DAL@BAL,1,45,7,DAL,BAL,2,4,38,(:07) D.Murray left end to BLT 29 for 9 yards (B.Pollard).,7,3,2012 -20121014_DAL@BAL,2,45,0,DAL,BAL,1,10,29,(15:00) F.Jones right guard to BLT 25 for 4 yards (M.Kemoeatu).,7,3,2012 -20121014_DAL@BAL,2,44,28,DAL,BAL,2,6,25,(14:28) F.Jones right guard to BLT 21 for 4 yards (H.Ngata M.Kemoeatu).,7,3,2012 -20121014_DAL@BAL,2,43,48,DAL,BAL,3,2,21,(13:48) D.Murray right tackle to BLT 18 for 3 yards (A.Jones).,7,3,2012 -20121014_DAL@BAL,2,43,5,DAL,BAL,1,10,18,(13:05) D.Murray left guard to BLT 12 for 6 yards (C.Graham B.Pollard).,7,3,2012 -20121014_DAL@BAL,2,42,29,DAL,BAL,2,4,12,(12:29) T.Romo pass incomplete short right to J.Witten.,7,3,2012 -20121014_DAL@BAL,2,42,24,DAL,BAL,3,4,12,(12:24) F.Jones left guard to BLT 6 for 6 yards (H.Ngata P.McPhee). PENALTY on DAL Illegal Shift 5 yards enforced at BLT 12 - No Play.,7,3,2012 -20121014_DAL@BAL,2,41,58,DAL,BAL,3,9,17,(11:58) T.Romo pass short right to D.Bryant to BLT 24 for -7 yards (J.Smith). Penalty on DAL Illegal Shift declined.,7,3,2012 -20121014_DAL@BAL,2,41,33,DAL,BAL,4,16,24,(11:33) (Field Goal formation) D.Bailey 42 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,7,3,2012 -20121014_DAL@BAL,2,41,33,DAL,BAL,,,24,D.Bailey kicks 74 yards from DAL 35 to BLT -9. J.Jones Touchback.,10,3,2012 -20121014_DAL@BAL,2,41,29,BAL,DAL,1,10,80,(11:29) R.Rice left guard to BLT 32 for 12 yards (D.McCray).,3,10,2012 -20121014_DAL@BAL,2,40,56,BAL,DAL,1,10,68,(10:56) (No Huddle) R.Rice left tackle to BLT 35 for 3 yards (K.Coleman D.Connor).,3,10,2012 -20121014_DAL@BAL,2,40,17,BAL,DAL,2,7,65,(10:17) J.Flacco pass incomplete short right to T.Smith (M.Jenkins).,3,10,2012 -20121014_DAL@BAL,2,40,12,BAL,DAL,3,7,65,(10:12) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice pushed ob at DAL 22 for 43 yards (D.McCray).,3,10,2012 -20121014_DAL@BAL,2,39,30,BAL,DAL,1,10,22,(9:30) (No Huddle) PENALTY on BLT-J.Flacco Delay of Game 5 yards enforced at DAL 22 - No Play.,3,10,2012 -20121014_DAL@BAL,2,39,30,BAL,DAL,1,15,27,(9:30) PENALTY on DAL-J.Hatcher Neutral Zone Infraction 5 yards enforced at DAL 27 - No Play.,3,10,2012 -20121014_DAL@BAL,2,38,53,BAL,DAL,1,10,22,(8:53) B.Pierce left guard to DAL 6 for 16 yards (A.Albright).,3,10,2012 -20121014_DAL@BAL,2,38,22,BAL,DAL,1,6,6,(8:22) (No Huddle) R.Rice left tackle to DAL 2 for 4 yards (J.Ratliff).,3,10,2012 -20121014_DAL@BAL,2,37,44,BAL,DAL,2,2,2,(7:44) (No Huddle) J.Flacco pass incomplete short right to E.Dickson.,3,10,2012 -20121014_DAL@BAL,2,37,37,BAL,DAL,3,2,2,(7:37) (No Huddle) J.Flacco pass incomplete short left to R.Rice. PENALTY on DAL-K.Coleman Illegal Use of Hands 1 yard enforced at DAL 2 - No Play.,3,10,2012 -20121014_DAL@BAL,2,37,33,BAL,DAL,1,1,1,(7:33) (No Huddle) R.Rice right guard for 1 yard TOUCHDOWN.,3,10,2012 -20121014_DAL@BAL,2,37,33,BAL,DAL,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,10,2012 -20121014_DAL@BAL,2,37,33,BAL,DAL,,,1,J.Tucker kicks 73 yards from BLT 35 to DAL -8. F.Jones Touchback.,10,10,2012 -20121014_DAL@BAL,2,37,29,DAL,BAL,1,10,80,(7:29) D.Murray right guard to DAL 22 for 2 yards (T.Cody).,10,10,2012 -20121014_DAL@BAL,2,36,48,DAL,BAL,2,8,78,(6:48) T.Romo pass short left to M.Austin pushed ob at DAL 34 for 12 yards (C.Williams).,10,10,2012 -20121014_DAL@BAL,2,36,20,DAL,BAL,1,10,66,(6:20) T.Romo pass deep middle to M.Austin to BLT 47 for 19 yards (J.Smith).,10,10,2012 -20121014_DAL@BAL,2,35,41,DAL,BAL,1,10,47,(5:41) D.Murray left end to BLT 45 for 2 yards (M.Kemoeatu T.Cody).,10,10,2012 -20121014_DAL@BAL,2,34,59,DAL,BAL,2,8,45,(4:59) T.Romo pass short left to D.Bryant to BLT 39 for 6 yards (C.Williams).,10,10,2012 -20121014_DAL@BAL,2,34,18,DAL,BAL,3,2,39,(4:18) T.Romo pass short left to D.Bryant to BLT 35 for 4 yards (C.Williams).,10,10,2012 -20121014_DAL@BAL,2,33,41,DAL,BAL,1,10,35,(3:41) D.Murray left tackle to BLT 30 for 5 yards (B.Pollard R.Lewis).,10,10,2012 -20121014_DAL@BAL,2,32,56,DAL,BAL,2,5,30,(2:56) D.Murray right guard to BLT 24 for 6 yards (J.McClain B.Pollard). PENALTY on DAL-T.Smith Offensive Holding 10 yards enforced at BLT 30 - No Play.,10,10,2012 -20121014_DAL@BAL,2,32,31,DAL,BAL,2,15,40,(2:31) T.Romo pass incomplete short left to K.Ogletree.,10,10,2012 -20121014_DAL@BAL,2,32,27,DAL,BAL,3,15,40,(2:27) (Shotgun) PENALTY on BLT-J.McClain Neutral Zone Infraction 5 yards enforced at BLT 40 - No Play.,10,10,2012 -20121014_DAL@BAL,2,32,27,DAL,BAL,3,10,35,(2:27) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by C.Williams [D.Ellerbe] at BLT 20. C.Williams to BLT 20 for no gain (N.Livings).,10,10,2012 -20121014_DAL@BAL,2,32,15,BAL,DAL,1,10,80,(2:15) (Shotgun) J.Flacco pass incomplete short right to J.Jones [S.Lee].,10,10,2012 -20121014_DAL@BAL,2,32,11,BAL,DAL,2,10,80,(2:11) (Shotgun) R.Rice right guard to BLT 21 for 1 yard (V.Butler).,10,10,2012 -20121014_DAL@BAL,2,32,0,BAL,DAL,3,9,79,(2:00) (Shotgun) PENALTY on BLT-A.Boldin False Start 5 yards enforced at BLT 21 - No Play.,10,10,2012 -20121014_DAL@BAL,2,32,0,BAL,DAL,3,14,84,(2:00) (Shotgun) J.Flacco pass deep left to A.Boldin pushed ob at BLT 36 for 20 yards (B.Carter).,10,10,2012 -20121014_DAL@BAL,2,31,54,BAL,DAL,1,10,64,(1:54) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to BLT 50 for 14 yards (O.Scandrick).,10,10,2012 -20121014_DAL@BAL,2,31,48,BAL,DAL,1,10,50,(1:48) (Shotgun) J.Flacco pass short middle to A.Boldin to DAL 30 for 20 yards (D.McCray).,10,10,2012 -20121014_DAL@BAL,2,31,21,BAL,DAL,1,10,30,(1:21) J.Flacco pass short middle to D.Pitta to DAL 22 for 8 yards (D.McCray).,10,10,2012 -20121014_DAL@BAL,2,31,16,BAL,DAL,2,2,22,(1:16) PENALTY on BLT-M.Yanda False Start 5 yards enforced at DAL 22 - No Play.,10,10,2012 -20121014_DAL@BAL,2,31,5,BAL,DAL,2,7,27,(1:05) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to DAL 19 for 8 yards (S.Lee B.Carter).,10,10,2012 -20121014_DAL@BAL,2,31,5,BAL,DAL,1,10,19,(1:05) (No Huddle Shotgun) J.Flacco pass deep left to T.Smith for 19 yards TOUCHDOWN. Penalty on DAL-M.Claiborne Defensive Pass Interference declined. No. 24 Morris Claiborne (DAL) injured.,10,10,2012 -20121014_DAL@BAL,2,31,5,BAL,DAL,,,19,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,10,2012 -20121014_DAL@BAL,2,31,5,BAL,DAL,,,19,J.Tucker kicks 49 yards from BLT 35 to DAL 16. L.Vickers to DAL 30 for 14 yards (S.Considine).,17,10,2012 -20121014_DAL@BAL,2,30,35,DAL,BAL,1,10,70,(:35) (Shotgun) F.Jones right tackle to DAL 31 for 1 yard (P.McPhee).,10,17,2012 -20121014_DAL@BAL,3,30,0,BAL,DAL,,,70,J.Tucker kicks 74 yards from BLT 35 to DAL -9. F.Jones Touchback.,17,10,2012 -20121014_DAL@BAL,3,30,0,DAL,BAL,1,10,80,(15:00) F.Jones left guard to DAL 31 for 11 yards (M.Kemoeatu).,10,17,2012 -20121014_DAL@BAL,3,29,34,DAL,BAL,1,10,69,(14:34) (No Huddle) F.Jones right guard to DAL 34 for 3 yards (P.McPhee R.Lewis).,10,17,2012 -20121014_DAL@BAL,3,28,54,DAL,BAL,2,7,66,(13:54) T.Romo pass short left to J.Witten to BLT 31 for 35 yards (E.Reed) [C.Upshaw].,10,17,2012 -20121014_DAL@BAL,3,28,28,DAL,BAL,1,10,31,(13:28) PENALTY on DAL-D.Free False Start 5 yards enforced at BLT 31 - No Play.,10,17,2012 -20121014_DAL@BAL,3,28,9,DAL,BAL,1,15,36,(13:09) T.Romo pass short right to D.Bryant to BLT 31 for 5 yards (E.Reed).,10,17,2012 -20121014_DAL@BAL,3,27,29,DAL,BAL,2,10,31,(12:29) F.Jones up the middle to BLT 25 for 6 yards (R.Lewis B.Pollard).,10,17,2012 -20121014_DAL@BAL,3,26,46,DAL,BAL,3,4,25,(11:46) T.Romo pass incomplete short right to M.Austin.,10,17,2012 -20121014_DAL@BAL,3,26,42,DAL,BAL,4,4,25,(11:42) (Field Goal formation) D.Bailey 43 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,10,17,2012 -20121014_DAL@BAL,3,26,42,DAL,BAL,,,25,D.Bailey kicks 73 yards from DAL 35 to BLT -8. J.Jones for 108 yards TOUCHDOWN. Jacoby Jones ties NFL record for longest kickoff return. Jacoby Jones sets Ravens record with 108-KO return.,13,17,2012 -20121014_DAL@BAL,3,26,42,BAL,DAL,,,25,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,13,2012 -20121014_DAL@BAL,3,26,42,BAL,DAL,,,25,J.Tucker kicks 74 yards from BLT 35 to DAL -9. F.Jones Touchback.,24,13,2012 -20121014_DAL@BAL,3,26,24,DAL,BAL,1,10,80,(11:24) D.Murray right end to DAL 23 for 3 yards (P.McPhee B.Pollard).,13,24,2012 -20121014_DAL@BAL,3,25,41,DAL,BAL,2,7,77,(10:41) T.Romo pass deep middle to J.Phillips to DAL 42 for 19 yards (E.Reed).,13,24,2012 -20121014_DAL@BAL,3,25,4,DAL,BAL,1,10,58,(10:04) F.Jones left tackle to DAL 48 for 6 yards (J.Smith R.Lewis).,13,24,2012 -20121014_DAL@BAL,3,24,24,DAL,BAL,2,4,52,(9:24) F.Jones left guard to BLT 47 for 5 yards (J.McClain P.Kruger).,13,24,2012 -20121014_DAL@BAL,3,23,43,DAL,BAL,1,10,47,(8:43) F.Jones right end to BLT 48 for -1 yards (B.Pollard).,13,24,2012 -20121014_DAL@BAL,3,22,59,DAL,BAL,2,11,48,(7:59) T.Romo pass incomplete short right to J.Phillips.,13,24,2012 -20121014_DAL@BAL,3,22,53,DAL,BAL,3,11,48,(7:53) (Shotgun) T.Romo pass short middle to D.Bryant to BLT 35 for 13 yards (C.Williams).,13,24,2012 -20121014_DAL@BAL,3,22,17,DAL,BAL,1,10,35,(7:17) F.Jones right tackle to BLT 31 for 4 yards (C.Upshaw H.Ngata).,13,24,2012 -20121014_DAL@BAL,3,21,46,DAL,BAL,2,6,31,(6:46) F.Jones right guard to BLT 27 for 4 yards (J.Smith R.Lewis).,13,24,2012 -20121014_DAL@BAL,3,21,10,DAL,BAL,3,2,27,(6:10) F.Jones left end to BLT 18 for 9 yards (J.McClain).,13,24,2012 -20121014_DAL@BAL,3,20,48,DAL,BAL,1,10,18,(5:48) P.Tanner left guard to BLT 14 for 4 yards (J.McClain).,13,24,2012 -20121014_DAL@BAL,3,20,11,DAL,BAL,2,6,14,(5:11) P.Tanner right guard to BLT 15 for -1 yards (C.Upshaw).,13,24,2012 -20121014_DAL@BAL,3,19,26,DAL,BAL,3,7,15,(4:26) PENALTY on BLT-J.Smith Encroachment 5 yards enforced at BLT 15 - No Play.,13,24,2012 -20121014_DAL@BAL,3,19,3,DAL,BAL,3,2,10,(4:03) F.Jones right tackle to BLT 7 for 3 yards (J.McClain).,13,24,2012 -20121014_DAL@BAL,3,18,24,DAL,BAL,1,7,7,(3:24) T.Romo pass short left to D.Bryant for 7 yards TOUCHDOWN.,13,24,2012 -20121014_DAL@BAL,3,18,24,DAL,BAL,,,7,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,13,24,2012 -20121014_DAL@BAL,3,18,24,DAL,BAL,,,7,D.Bailey kicks 74 yards from DAL 35 to BLT -9. J.Jones to BLT 16 for 25 yards (D.McCray). PENALTY on BLT-S.Considine Offensive Holding 8 yards enforced at BLT 16.,20,24,2012 -20121014_DAL@BAL,3,18,13,BAL,DAL,1,10,92,(3:13) J.Flacco pass incomplete deep middle to T.Smith [J.Hatcher].,24,20,2012 -20121014_DAL@BAL,3,18,6,BAL,DAL,2,10,92,(3:06) R.Rice right guard to BLT 9 for 1 yard (J.Ratliff J.Hatcher).,24,20,2012 -20121014_DAL@BAL,3,17,35,BAL,DAL,3,9,91,(2:35) J.Flacco pass incomplete short right to R.Rice (V.Butler).,24,20,2012 -20121014_DAL@BAL,3,17,29,BAL,DAL,4,9,91,(2:29) (Punt formation) S.Koch punts 46 yards to DAL 45 Center-M.Cox. D.Harris to DAL 45 for no gain (C.Brown).,24,20,2012 -20121014_DAL@BAL,3,17,20,DAL,BAL,1,10,55,(2:20) F.Jones left guard to DAL 47 for 2 yards (C.Upshaw M.Kemoeatu).,20,24,2012 -20121014_DAL@BAL,3,16,39,DAL,BAL,2,8,53,(1:39) T.Romo pass incomplete deep right to M.Austin [C.Upshaw]. PENALTY on BLT-J.Smith Defensive Pass Interference 13 yards enforced at DAL 47 - No Play.,20,24,2012 -20121014_DAL@BAL,3,16,33,DAL,BAL,1,10,40,(1:33) P.Tanner right guard to BLT 36 for 4 yards (J.Smith R.Lewis).,20,24,2012 -20121014_DAL@BAL,3,15,56,DAL,BAL,2,6,36,(:56) (No Huddle) P.Tanner right guard to BLT 35 for 1 yard (R.Lewis).,20,24,2012 -20121014_DAL@BAL,3,15,13,DAL,BAL,3,5,35,(:13) T.Romo pass incomplete deep right to M.Austin (J.Smith).,20,24,2012 -20121014_DAL@BAL,3,15,13,DAL,BAL,4,5,35,(:13) (No Huddle) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at BLT 35 - No Play.,20,24,2012 -20121014_DAL@BAL,3,15,8,DAL,BAL,4,10,40,(:08) (Punt formation) C.Jones punts 32 yards to BLT 8 Center-L.Ladouceur fair catch by E.Reed.,20,24,2012 -20121014_DAL@BAL,4,15,0,BAL,DAL,1,10,92,(15:00) B.Pierce left guard to BLT 12 for 4 yards (K.Coleman).,24,20,2012 -20121014_DAL@BAL,4,14,24,BAL,DAL,2,6,88,(14:24) (No Huddle) B.Pierce left end pushed ob at BLT 14 for 2 yards (A.Albright).,24,20,2012 -20121014_DAL@BAL,4,14,7,BAL,DAL,3,4,86,(14:07) (No Huddle Shotgun) J.Flacco sacked at BLT 10 for -4 yards (D.Ware).,24,20,2012 -20121014_DAL@BAL,4,13,40,BAL,DAL,4,8,90,(13:40) (Punt formation) S.Koch punts 37 yards to BLT 47 Center-M.Cox. D.Bryant to BLT 37 for 10 yards (A.Allen).,24,20,2012 -20121014_DAL@BAL,4,13,29,DAL,BAL,1,10,37,(13:29) P.Tanner right tackle to BLT 31 for 6 yards (J.McClain).,20,24,2012 -20121014_DAL@BAL,4,12,52,DAL,BAL,2,4,31,(12:52) P.Tanner left tackle to BLT 22 for 9 yards (R.Lewis).,20,24,2012 -20121014_DAL@BAL,4,12,20,DAL,BAL,1,10,22,(12:20) (No Huddle) P.Tanner right tackle to BLT 21 for 1 yard (H.Ngata J.McClain).,20,24,2012 -20121014_DAL@BAL,4,11,40,DAL,BAL,2,9,21,(11:40) L.Dunbar right tackle to BLT 10 for 11 yards (B.Pollard).,20,24,2012 -20121014_DAL@BAL,4,10,56,DAL,BAL,1,10,10,(10:56) L.Dunbar left guard to BLT 9 for 1 yard (M.Kemoeatu). PENALTY on DAL Illegal Shift 5 yards enforced at BLT 10 - No Play.,20,24,2012 -20121014_DAL@BAL,4,10,31,DAL,BAL,1,15,15,(10:31) P.Tanner left tackle to BLT 14 for 1 yard (P.Kruger C.Upshaw).,20,24,2012 -20121014_DAL@BAL,4,9,46,DAL,BAL,2,14,14,(9:46) T.Romo pass short middle to D.Bryant to BLT 9 for 5 yards (J.Smith).,20,24,2012 -20121014_DAL@BAL,4,9,3,DAL,BAL,3,9,9,(9:03) (Shotgun) T.Romo sacked at BLT 16 for -7 yards (H.Ngata).,20,24,2012 -20121014_DAL@BAL,4,8,26,DAL,BAL,4,16,16,(8:26) (Field Goal formation) D.Bailey 34 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,20,24,2012 -20121014_DAL@BAL,4,8,26,DAL,BAL,,,16,D.Bailey kicks 64 yards from DAL 35 to BLT 1. J.Jones to BLT 27 for 26 yards (D.McCray).,23,24,2012 -20121014_DAL@BAL,4,8,16,BAL,DAL,1,10,73,(8:16) R.Rice right guard to BLT 36 for 9 yards (V.Butler).,24,23,2012 -20121014_DAL@BAL,4,7,52,BAL,DAL,2,1,64,(7:52) (No Huddle) J.Flacco right guard to BLT 39 for 3 yards (V.Butler D.McCray).,24,23,2012 -20121014_DAL@BAL,4,7,27,BAL,DAL,1,10,61,(7:27) (No Huddle Shotgun) J.Flacco pass incomplete short right to A.Boldin.,24,23,2012 -20121014_DAL@BAL,4,7,22,BAL,DAL,2,10,61,(7:22) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to BLT 48 for 9 yards (O.Scandrick).,24,23,2012 -20121014_DAL@BAL,4,7,0,BAL,DAL,3,1,52,(7:00) (No Huddle) R.Rice right tackle to DAL 48 for 4 yards (V.Butler B.Carter).,24,23,2012 -20121014_DAL@BAL,4,6,34,BAL,DAL,1,10,48,(6:34) (No Huddle) J.Flacco pass short right to A.Boldin to DAL 35 for 13 yards (B.Carr).,24,23,2012 -20121014_DAL@BAL,4,6,1,BAL,DAL,1,10,35,(6:01) (No Huddle) J.Flacco pass deep right to A.Boldin to DAL 4 for 31 yards (G.Sensabaugh).,24,23,2012 -20121014_DAL@BAL,4,5,30,BAL,DAL,1,4,4,(5:30) PENALTY on BLT-M.Oher False Start 5 yards enforced at DAL 4 - No Play.,24,23,2012 -20121014_DAL@BAL,4,5,8,BAL,DAL,1,9,9,(5:08) J.Flacco pass short right to V.Leach to DAL 2 for 7 yards (S.Lee D.Connor).,24,23,2012 -20121014_DAL@BAL,4,4,49,BAL,DAL,2,2,2,(4:49) (No Huddle) R.Rice left guard to DAL 4 for -2 yards (K.Coleman). PENALTY on DAL Defensive Offside 1 yard enforced at DAL 2 - No Play.,24,23,2012 -20121014_DAL@BAL,4,4,49,BAL,DAL,2,1,1,(4:49) J.Flacco pass incomplete short right to R.Rice. Pressure by No. 94 - DeMarcus Ware.,24,23,2012 -20121014_DAL@BAL,4,4,49,BAL,DAL,3,1,1,(4:49) R.Rice right tackle for 1 yard TOUCHDOWN.,24,23,2012 -20121014_DAL@BAL,4,4,49,BAL,DAL,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,24,23,2012 -20121014_DAL@BAL,4,4,49,BAL,DAL,,,1,J.Tucker kicks 74 yards from BLT 35 to DAL -9. L.Dunbar Touchback.,31,23,2012 -20121014_DAL@BAL,4,4,41,DAL,BAL,1,10,80,(4:41) F.Jones right tackle to DAL 23 for 3 yards (R.Lewis C.Upshaw).,23,31,2012 -20121014_DAL@BAL,4,4,9,DAL,BAL,2,7,77,(4:09) T.Romo pass short middle to J.Witten to DAL 29 for 6 yards (J.McClain R.Lewis).,23,31,2012 -20121014_DAL@BAL,4,3,32,DAL,BAL,3,1,71,(3:32) F.Jones right guard to DAL 31 for 2 yards. PENALTY on DAL-J.Parnell False Start 5 yards enforced at DAL 29 - No Play.,23,31,2012 -20121014_DAL@BAL,4,3,31,DAL,BAL,3,6,76,(3:31) (Shotgun) T.Romo pass short left to J.Witten to DAL 35 for 11 yards (B.Pollard).,23,31,2012 -20121014_DAL@BAL,4,3,25,DAL,BAL,1,10,65,(3:25) T.Romo scrambles up the middle to DAL 47 for 12 yards (C.Williams). PENALTY on DAL-T.Smith Offensive Holding 10 yards enforced at DAL 35 - No Play.,23,31,2012 -20121014_DAL@BAL,4,3,16,DAL,BAL,1,20,75,(3:16) (Shotgun) T.Romo pass short middle to D.Bryant to DAL 33 for 8 yards (B.Ayanbadejo J.Ihedigbo).,23,31,2012 -20121014_DAL@BAL,4,2,32,DAL,BAL,2,12,67,(2:32) T.Romo pass short right to F.Jones pushed ob at DAL 46 for 13 yards (B.Pollard).,23,31,2012 -20121014_DAL@BAL,4,2,24,DAL,BAL,1,10,54,(2:24) T.Romo pass incomplete short left to K.Ogletree (C.Williams).,23,31,2012 -20121014_DAL@BAL,4,2,18,DAL,BAL,2,10,54,(2:18) (Shotgun) T.Romo pass incomplete short right to K.Ogletree.,23,31,2012 -20121014_DAL@BAL,4,2,13,DAL,BAL,3,10,54,(2:13) (Shotgun) T.Romo pass incomplete short right to D.Bryant.,23,31,2012 -20121014_DAL@BAL,4,2,8,DAL,BAL,4,10,54,(2:08) T.Romo pass short left to J.Witten pushed ob at BLT 43 for 11 yards (D.Ellerbe).,23,31,2012 -20121014_DAL@BAL,4,2,1,DAL,BAL,1,10,43,(2:01) P.Tanner left guard to BLT 37 for 6 yards (R.Lewis).,23,31,2012 -20121014_DAL@BAL,4,1,57,DAL,BAL,2,4,37,(1:57) T.Romo pass short right to F.Jones to BLT 37 for no gain (A.McClellan). PENALTY on BLT-J.Smith Defensive Holding 5 yards enforced at BLT 37 - No Play.,23,31,2012 -20121014_DAL@BAL,4,1,49,DAL,BAL,1,10,32,(1:49) F.Jones left guard to BLT 29 for 3 yards (D.Ellerbe).,23,31,2012 -20121014_DAL@BAL,4,1,17,DAL,BAL,2,7,29,(1:17) (No Huddle Shotgun) T.Romo pass incomplete deep right to K.Ogletree (J.Smith). PENALTY on DAL-F.Jones Chop Block 15 yards enforced at BLT 29 - No Play.,23,31,2012 -20121014_DAL@BAL,4,1,11,DAL,BAL,2,22,44,(1:11) (Shotgun) T.Romo pass incomplete short middle to M.Austin.,23,31,2012 -20121014_DAL@BAL,4,1,7,DAL,BAL,3,22,44,(1:07) (Shotgun) PENALTY on DAL-K.Ogletree False Start 5 yards enforced at BLT 44 - No Play.,23,31,2012 -20121014_DAL@BAL,4,1,7,DAL,BAL,3,27,49,(1:07) (Shotgun) T.Romo pass short right to D.Bryant to BLT 32 for 17 yards (B.Pollard).,23,31,2012 -20121014_DAL@BAL,4,0,58,DAL,BAL,4,10,32,(:58) (Shotgun) T.Romo pass deep right to J.Witten to BLT 16 for 16 yards (B.Pollard).,23,31,2012 -20121014_DAL@BAL,4,0,51,DAL,BAL,1,10,16,(:51) (Shotgun) T.Romo pass short right to J.Witten pushed ob at BLT 7 for 9 yards (D.Ellerbe).,23,31,2012 -20121014_DAL@BAL,4,0,46,DAL,BAL,2,1,7,(:46) (Shotgun) T.Romo pass incomplete short right to D.Bryant (C.Brown).,23,31,2012 -20121014_DAL@BAL,4,0,42,DAL,BAL,3,1,7,(:42) (Shotgun) F.Jones up the middle to BLT 4 for 3 yards (J.McClain B.Pollard).,23,31,2012 -20121014_DAL@BAL,4,0,36,DAL,BAL,1,4,4,(:36) T.Romo pass short left to D.Bryant for 4 yards TOUCHDOWN.,23,31,2012 -20121014_DAL@BAL,4,0,36,DAL,BAL,,,4,TWO-POINT CONVERSION ATTEMPT. T.Romo pass to D.Bryant is incomplete. ATTEMPT FAILS.,23,31,2012 -20121014_DAL@BAL,4,0,36,DAL,BAL,,,4,D.Bailey kicks onside 11 yards from DAL 35 to DAL 46. RECOVERED by DAL-A.Holmes.,29,31,2012 -20121014_DAL@BAL,4,0,30,DAL,BAL,1,10,54,(:30) (Shotgun) T.Romo pass incomplete deep right to K.Ogletree. PENALTY on BLT-C.Brown Defensive Pass Interference 20 yards enforced at DAL 46 - No Play.,29,31,2012 -20121014_DAL@BAL,4,0,26,DAL,BAL,1,10,34,(:26) (Shotgun) T.Romo pass short left to D.Bryant to BLT 33 for 1 yard (C.Williams).,29,31,2012 -20121014_DAL@BAL,4,0,6,DAL,BAL,2,9,33,(:06) (Field Goal formation) D.Bailey 51 yard field goal is No Good Wide Left Center-L.Ladouceur Holder-C.Jones.,29,31,2012 -20121014_DAL@BAL,4,0,2,BAL,DAL,1,10,59,(:02) J.Flacco kneels to BLT 40 for -1 yards.,31,29,2012 -20121014_DAL@BAL,4,0,2,BAL,DAL,,,59,                      ,31,29,2012 -20121014_CIN@CLE,1,0,0,CLE,CIN,,,59,P.Dawson kicks 71 yards from CLV 35 to CIN -6. B.Tate to CIN 17 for 23 yards (J.Bademosi).,0,0,2012 -20121014_CIN@CLE,1,59,57,CIN,CLE,1,10,83,(14:57) B.Green-Ellis left tackle to CIN 18 for 1 yard (D.Jackson).,0,0,2012 -20121014_CIN@CLE,1,59,23,CIN,CLE,2,9,82,(14:23) B.Green-Ellis left guard to CIN 24 for 6 yards (J.Sheard).,0,0,2012 -20121014_CIN@CLE,1,58,47,CIN,CLE,3,3,76,(13:47) A.Dalton pass incomplete short right to O.Charles (J.Sheard).,0,0,2012 -20121014_CIN@CLE,1,58,42,CIN,CLE,4,3,76,(13:42) K.Huber punts 62 yards to CLV 14 Center-C.Harris out of bounds.,0,0,2012 -20121014_CIN@CLE,1,58,35,CLE,CIN,1,10,86,(13:35) B.Weeden pass short right to T.Richardson to CLV 19 for 5 yards (V.Burfict).,0,0,2012 -20121014_CIN@CLE,1,58,0,CLE,CIN,2,5,81,(13:00) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 31 for 12 yards (T.Newman; R.Nelson).,0,0,2012 -20121014_CIN@CLE,1,57,23,CLE,CIN,1,10,69,(12:23) T.Richardson left guard to CLV 30 for -1 yards (G.Atkins; R.Geathers).,0,0,2012 -20121014_CIN@CLE,1,56,45,CLE,CIN,2,11,70,(11:45) T.Richardson left guard to CLV 34 for 4 yards (R.Nelson; R.Geathers).,0,0,2012 -20121014_CIN@CLE,1,56,2,CLE,CIN,3,7,66,(11:02) (Shotgun) B.Weeden pass deep right to J.Cooper to CIN 38 for 28 yards (T.Newman).,0,0,2012 -20121014_CIN@CLE,1,55,22,CLE,CIN,1,10,38,(10:22) B.Weeden pass incomplete short left to B.Watson.,0,0,2012 -20121014_CIN@CLE,1,55,18,CLE,CIN,2,10,38,(10:18) T.Richardson left tackle to CIN 37 for 1 yard (D.Still; R.Nelson).,0,0,2012 -20121014_CIN@CLE,1,54,34,CLE,CIN,3,9,37,(9:34) (Shotgun) B.Weeden pass short left to C.Ogbonnaya to CIN 27 for 10 yards (M.Johnson).,0,0,2012 -20121014_CIN@CLE,1,53,50,CLE,CIN,1,10,27,(8:50) B.Weeden pass short right intended for B.Watson INTERCEPTED by M.Johnson (G.Atkins) at CIN 34. M.Johnson to CIN 37 for 3 yards (J.Thomas).,0,0,2012 -20121014_CIN@CLE,1,53,42,CIN,CLE,1,10,63,(8:42) B.Green-Ellis left guard to CIN 40 for 3 yards (K.Maiava).,0,0,2012 -20121014_CIN@CLE,1,53,3,CIN,CLE,2,7,60,(8:03) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 45 for 5 yards (B.Skrine; P.Dawson).,0,0,2012 -20121014_CIN@CLE,1,52,17,CIN,CLE,3,2,55,(7:17) (Shotgun) A.Dalton pass short middle to J.Gresham for 55 yards TOUCHDOWN.,0,0,2012 -20121014_CIN@CLE,1,52,17,CIN,CLE,,,55,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121014_CIN@CLE,1,52,17,CIN,CLE,,,55,M.Nugent kicks 68 yards from CIN 35 to CLV -3. J.Cribbs to CLV 16 for 19 yards (V.Rey).,7,0,2012 -20121014_CIN@CLE,1,52,3,CLE,CIN,1,10,84,(7:03) T.Richardson right tackle to CLV 23 for 7 yards (T.Newman; D.Peko).,0,7,2012 -20121014_CIN@CLE,1,51,24,CLE,CIN,2,3,77,(6:24) T.Richardson right guard to CLV 25 for 2 yards (D.Peko; D.Skuta).,0,7,2012 -20121014_CIN@CLE,1,50,38,CLE,CIN,3,1,75,(5:38) T.Richardson left guard to CLV 32 for 7 yards (V.Burfict).,0,7,2012 -20121014_CIN@CLE,1,50,4,CLE,CIN,1,10,68,(5:04) T.Richardson right guard to CLV 35 for 3 yards (R.Maualuga; B.Leonard).,0,7,2012 -20121014_CIN@CLE,1,49,19,CLE,CIN,2,7,65,(4:19) B.Weeden pass incomplete short right to G.Little.,0,7,2012 -20121014_CIN@CLE,1,49,14,CLE,CIN,3,7,65,(4:14) B.Weeden pass short right to C.Ogbonnaya to CLV 30 for -5 yards (R.Nelson).,0,7,2012 -20121014_CIN@CLE,1,48,42,CLE,CIN,4,12,70,(3:42) R.Hodges punts 38 yards to CIN 32 Center-C.Yount downed by CLV-J.Bademosi.,0,7,2012 -20121014_CIN@CLE,1,48,33,CIN,CLE,1,10,67,(3:33) A.Dalton pass short right to J.Gresham to CIN 37 for 4 yards (K.Maiava).,7,0,2012 -20121014_CIN@CLE,1,47,58,CIN,CLE,2,6,63,(2:58) B.Green-Ellis right guard to CIN 40 for 3 yards (J.Hughes; R.Hodges).,7,0,2012 -20121014_CIN@CLE,1,47,15,CIN,CLE,3,3,60,(2:15) (Shotgun) A.Dalton pass incomplete short left to J.Gresham.,7,0,2012 -20121014_CIN@CLE,1,47,11,CIN,CLE,4,3,60,(2:11) K.Huber punts 37 yards to CLV 23 Center-C.Harris downed by CIN-M.Lawson. PENALTY on CLV-K.Maiava Offensive Holding 10 yards enforced at CLV 23.,7,0,2012 -20121014_CIN@CLE,1,47,2,CLE,CIN,1,10,87,(2:02) M.Hardesty right guard to CLV 16 for 3 yards (G.Atkins; D.Skuta).,0,7,2012 -20121014_CIN@CLE,1,46,28,CLE,CIN,2,7,84,(1:28) B.Weeden pass incomplete short right to O.Marecic.,0,7,2012 -20121014_CIN@CLE,1,46,23,CLE,CIN,3,7,84,(1:23) (Shotgun) B.Weeden pass short right to J.Cooper ran ob at CLV 27 for 11 yards.,0,7,2012 -20121014_CIN@CLE,1,46,2,CLE,CIN,1,10,73,(1:02) M.Hardesty left guard to CLV 28 for 1 yard (G.Atkins).,0,7,2012 -20121014_CIN@CLE,1,45,31,CLE,CIN,2,9,72,(:31) M.Hardesty left guard to CLV 34 for 6 yards (R.Maualuga).,0,7,2012 -20121014_CIN@CLE,2,45,0,CLE,CIN,3,3,66,(15:00) (Shotgun) PENALTY on CLV-J.Thomas False Start 5 yards enforced at CLV 34 - No Play.,0,7,2012 -20121014_CIN@CLE,2,45,0,CLE,CIN,3,8,71,(15:00) (Shotgun) B.Weeden pass deep left to J.Gordon for 71 yards TOUCHDOWN.,0,7,2012 -20121014_CIN@CLE,2,45,0,CLE,CIN,,,71,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,7,2012 -20121014_CIN@CLE,2,45,0,CLE,CIN,,,71,P.Dawson kicks 68 yards from CLV 35 to CIN -3. B.Tate to CIN 18 for 21 yards (J.Bademosi).,7,7,2012 -20121014_CIN@CLE,2,44,47,CIN,CLE,1,10,82,(14:47) B.Green-Ellis right tackle to CIN 24 for 6 yards (U.Young).,7,7,2012 -20121014_CIN@CLE,2,44,6,CIN,CLE,2,4,76,(14:06) A.Dalton pass short right to A.Green to CIN 24 for no gain (C.Robertson; S.Brown). PENALTY on CIN-A.Dalton Illegal Shift 5 yards enforced at CIN 24 - No Play.,7,7,2012 -20121014_CIN@CLE,2,43,40,CIN,CLE,2,9,81,(13:40) A.Dalton pass short middle to B.Green-Ellis to CIN 27 for 8 yards (F.Rucker).,7,7,2012 -20121014_CIN@CLE,2,43,2,CIN,CLE,3,1,73,(13:02) B.Green-Ellis left tackle to CIN 29 for 2 yards (D.Jackson; F.Rucker).,7,7,2012 -20121014_CIN@CLE,2,42,20,CIN,CLE,1,10,71,(12:20) C.Peerman left tackle to CIN 36 for 7 yards (J.Parker; I.Kitchen).,7,7,2012 -20121014_CIN@CLE,2,41,40,CIN,CLE,2,3,64,(11:40) A.Dalton right end ran ob at CIN 36 for no gain. PENALTY on CIN-A.Whitworth Offensive Holding 10 yards enforced at CIN 36 - No Play.,7,7,2012 -20121014_CIN@CLE,2,41,12,CIN,CLE,2,13,74,(11:12) A.Dalton pass short right to A.Green to CIN 32 for 6 yards (J.Haden).,7,7,2012 -20121014_CIN@CLE,2,40,25,CIN,CLE,3,7,68,(10:25) (Shotgun) A.Dalton pass short right to B.Leonard to CIN 35 for 3 yards (J.Haden).,7,7,2012 -20121014_CIN@CLE,2,39,47,CIN,CLE,4,4,65,(9:47) K.Huber punts 65 yards to end zone Center-C.Harris Touchback.,7,7,2012 -20121014_CIN@CLE,2,39,39,CLE,CIN,1,10,80,(9:39) T.Richardson right tackle to CLV 20 for no gain (V.Burfict). PENALTY on CLV-A.Mack Unsportsmanlike Conduct 10 yards enforced at CLV 20.,7,7,2012 -20121014_CIN@CLE,2,39,9,CLE,CIN,2,20,90,(9:09) (Shotgun) B.Weeden pass short right to G.Little to CLV 14 for 4 yards (T.Newman).,7,7,2012 -20121014_CIN@CLE,2,38,33,CLE,CIN,3,16,86,(8:33) (Shotgun) C.Ogbonnaya right guard to CLV 20 for 6 yards (G.Atkins).,7,7,2012 -20121014_CIN@CLE,2,37,56,CLE,CIN,4,10,80,(7:56) R.Hodges punts 57 yards to CIN 23 Center-C.Yount. B.Tate to CIN 29 for 6 yards (B.Skrine; R.Ventrone).,7,7,2012 -20121014_CIN@CLE,2,37,45,CIN,CLE,1,10,71,(7:45) A.Dalton pass deep middle to A.Green to CIN 47 for 18 yards (T.Ward).,7,7,2012 -20121014_CIN@CLE,2,37,15,CIN,CLE,1,10,53,(7:15) B.Green-Ellis right guard to CIN 48 for 1 yard (J.Sheard; D.Jackson).,7,7,2012 -20121014_CIN@CLE,2,36,33,CIN,CLE,2,9,52,(6:33) (Shotgun) B.Green-Ellis left tackle to CIN 48 for no gain (C.Robertson).,7,7,2012 -20121014_CIN@CLE,2,35,48,CIN,CLE,3,9,52,(5:48) (Shotgun) PENALTY on CIN-C.Boling False Start 5 yards enforced at CIN 48 - No Play.,7,7,2012 -20121014_CIN@CLE,2,35,26,CIN,CLE,3,14,57,(5:26) (Shotgun) A.Dalton pass incomplete short right to A.Binns (J.Haden).,7,7,2012 -20121014_CIN@CLE,2,35,19,CIN,CLE,4,14,57,(5:19) K.Huber punts 57 yards to end zone Center-C.Harris Touchback.,7,7,2012 -20121014_CIN@CLE,2,35,12,CLE,CIN,1,10,80,(5:12) PENALTY on CIN Illegal Substitution 5 yards enforced at CLV 20 - No Play.,7,7,2012 -20121014_CIN@CLE,2,35,11,CLE,CIN,1,5,75,(5:11) T.Richardson right guard to CLV 24 for -1 yards (L.Hall; D.Still).,7,7,2012 -20121014_CIN@CLE,2,34,34,CLE,CIN,2,6,76,(4:34) B.Weeden sacked at CLV 15 for -9 yards (W.Gilberry).,7,7,2012 -20121014_CIN@CLE,2,34,0,CLE,CIN,3,15,85,(4:00) (Shotgun) B.Weeden pass short right to B.Watson to CLV 18 for 3 yards (T.Newman).,7,7,2012 -20121014_CIN@CLE,2,33,24,CLE,CIN,4,12,82,(3:24) R.Hodges punts 46 yards to CIN 36 Center-C.Yount. B.Tate to CLV 32 for 32 yards (J.Cribbs). PENALTY on CLV-R.Ventrone Ineligible Downfield Kick 5 yards enforced at CLV 32.,7,7,2012 -20121014_CIN@CLE,2,33,11,CIN,CLE,1,10,27,(3:11) B.Green-Ellis left tackle to CLV 7 for 20 yards (T.Ward).,7,7,2012 -20121014_CIN@CLE,2,32,37,CIN,CLE,1,7,7,(2:37) B.Green-Ellis left tackle to CLV 4 for 3 yards.,7,7,2012 -20121014_CIN@CLE,2,32,0,CIN,CLE,1,10,27,(2:00) B.Green-Ellis left tackle to CLV 7 for 20 yards (T.Ward; T.Benjamin).,7,7,2012 -20121014_CIN@CLE,2,32,0,CIN,CLE,1,7,7,(2:00) B.Green-Ellis left tackle to CLV 4 for 3 yards (J.Johnson).,7,7,2012 -20121014_CIN@CLE,2,32,0,CIN,CLE,2,4,4,(2:00) A.Dalton pass short left to A.Green for 4 yards TOUCHDOWN. Penalty on CLV-U.Young Defensive Holding declined.,7,7,2012 -20121014_CIN@CLE,2,32,0,CIN,CLE,,,4,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,7,2012 -20121014_CIN@CLE,2,32,0,CIN,CLE,,,4,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,14,7,2012 -20121014_CIN@CLE,2,31,54,CLE,CIN,1,10,80,(1:54) (Shotgun) B.Weeden pass incomplete short left to J.Gordon.,7,14,2012 -20121014_CIN@CLE,2,31,49,CLE,CIN,2,10,80,(1:49) T.Richardson right guard to CLV 21 for 1 yard (C.Dunlap).,7,14,2012 -20121014_CIN@CLE,2,31,39,CLE,CIN,3,9,79,(1:39) (Shotgun) T.Richardson left guard to CLV 29 for 8 yards (R.Maualuga; R.Nelson).,7,14,2012 -20121014_CIN@CLE,2,31,28,CLE,CIN,4,1,71,(1:28) R.Hodges punts 47 yards to CIN 24 Center-C.Yount out of bounds.,7,14,2012 -20121014_CIN@CLE,2,31,21,CIN,CLE,1,10,76,(1:21) (Shotgun) A.Dalton pass short right to A.Binns to CIN 30 for 6 yards (S.Brown).,14,7,2012 -20121014_CIN@CLE,2,30,46,CIN,CLE,2,4,70,(:46) (Shotgun) A.Dalton pass short right to C.Peerman ran ob at CIN 46 for 16 yards.,14,7,2012 -20121014_CIN@CLE,2,30,39,CIN,CLE,1,10,54,(:39) (Shotgun) A.Dalton pass incomplete deep right to J.Gresham.,14,7,2012 -20121014_CIN@CLE,2,30,33,CIN,CLE,2,10,54,(:33) (Shotgun) A.Dalton pass short middle to A.Hawkins to CLV 47 for 7 yards (C.Robertson).,14,7,2012 -20121014_CIN@CLE,2,30,24,CIN,CLE,3,3,47,(:24) (Shotgun) A.Dalton pass short right to A.Hawkins ran ob at CLV 41 for 6 yards.,14,7,2012 -20121014_CIN@CLE,2,30,19,CIN,CLE,1,10,41,(:19) (Shotgun) A.Dalton pass deep left to A.Green to CLV 16 for 25 yards (B.Skrine).,14,7,2012 -20121014_CIN@CLE,2,30,1,CIN,CLE,1,10,16,(:01) A.Dalton spiked the ball to stop the clock.,14,7,2012 -20121014_CIN@CLE,3,30,0,CIN,CLE,,,16,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,14,7,2012 -20121014_CIN@CLE,3,30,0,CLE,CIN,1,10,80,(15:00) B.Weeden pass incomplete short right to J.Cribbs.,7,14,2012 -20121014_CIN@CLE,3,29,56,CLE,CIN,2,10,80,(14:56) (Shotgun) B.Weeden pass incomplete short middle to T.Richardson.,7,14,2012 -20121014_CIN@CLE,3,29,51,CLE,CIN,3,10,80,(14:51) (Shotgun) B.Weeden pass incomplete short right to J.Cooper (L.Hall).,7,14,2012 -20121014_CIN@CLE,3,29,46,CLE,CIN,4,10,80,(14:46) R.Hodges punts 35 yards to CIN 45 Center-C.Yount out of bounds.,7,14,2012 -20121014_CIN@CLE,3,29,40,CIN,CLE,1,10,55,(14:40) B.Green-Ellis left guard to CIN 47 for 2 yards (J.Hughes; J.Johnson).,14,7,2012 -20121014_CIN@CLE,3,29,6,CIN,CLE,2,8,53,(14:06) A.Dalton pass incomplete short middle to J.Gresham.,14,7,2012 -20121014_CIN@CLE,3,29,1,CIN,CLE,3,8,53,(14:01) (Shotgun) B.Green-Ellis scrambles right end to CIN 49 for 2 yards (B.Skrine).,14,7,2012 -20121014_CIN@CLE,3,28,17,CIN,CLE,4,6,51,(13:17) K.Huber punts 44 yards to CLV 7 Center-C.Harris. J.Cribbs MUFFS catch ball out of bounds at CLV 11.,14,7,2012 -20121014_CIN@CLE,3,28,9,CLE,CIN,1,10,89,(13:09) T.Richardson right guard to CLV 13 for 2 yards (D.Peko; D.Skuta).,7,14,2012 -20121014_CIN@CLE,3,27,32,CLE,CIN,2,8,87,(12:32) T.Richardson right guard to CLV 12 for -1 yards (R.Geathers; V.Burfict).,7,14,2012 -20121014_CIN@CLE,3,26,49,CLE,CIN,3,9,88,(11:49) B.Weeden pass incomplete short right to O.Marecic.,7,14,2012 -20121014_CIN@CLE,3,26,42,CLE,CIN,4,9,88,(11:42) R.Hodges punts 51 yards to CIN 37 Center-C.Yount. B.Tate MUFFS catch and recovers at CIN 40. B.Tate to CLV 43 for 17 yards. PENALTY on CIN-A.Hawkins Illegal Block Above the Waist 10 yards enforced at CIN 40.,7,14,2012 -20121014_CIN@CLE,3,26,28,CIN,CLE,1,10,70,(11:28) A.Dalton pass short right to O.Charles to CIN 42 for 12 yards (I.Kitchen).,14,7,2012 -20121014_CIN@CLE,3,25,50,CIN,CLE,1,10,58,(10:50) A.Hawkins left tackle to CIN 44 for 2 yards (T.Ward). 16 in motion,14,7,2012 -20121014_CIN@CLE,3,25,18,CIN,CLE,2,8,56,(10:18) (Shotgun) A.Dalton pass incomplete short right to A.Green (J.Haden).,14,7,2012 -20121014_CIN@CLE,3,25,14,CIN,CLE,3,8,56,(10:14) (Shotgun) PENALTY on CIN-A.Dalton Delay of Game 5 yards enforced at CIN 44 - No Play.,14,7,2012 -20121014_CIN@CLE,3,25,14,CIN,CLE,3,13,61,(10:14) (Shotgun) A.Dalton pass short middle to A.Binns to CIN 45 for 6 yards (C.Robertson).,14,7,2012 -20121014_CIN@CLE,3,25,8,CIN,CLE,4,7,55,(10:08) K.Huber punts 45 yards to CLV 10 Center-C.Harris. J.Cribbs to CIN 30 for 60 yards (J.Miles).,14,7,2012 -20121014_CIN@CLE,3,24,53,CLE,CIN,1,10,30,(9:53) T.Richardson left tackle to CIN 25 for 5 yards (D.Peko).,7,14,2012 -20121014_CIN@CLE,3,24,13,CLE,CIN,2,5,25,(9:13) B.Weeden pass incomplete short right to G.Little (V.Burfict).,7,14,2012 -20121014_CIN@CLE,3,24,9,CLE,CIN,3,5,25,(9:09) (Shotgun) B.Weeden scrambles up the middle to CIN 23 for 2 yards (G.Atkins).,7,14,2012 -20121014_CIN@CLE,3,23,29,CLE,CIN,4,3,23,(8:29) (Field Goal formation) P.Dawson 41 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,7,14,2012 -20121014_CIN@CLE,3,23,29,CLE,CIN,,,23,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,10,14,2012 -20121014_CIN@CLE,3,23,22,CIN,CLE,1,10,80,(8:22) A.Dalton scrambles left tackle to CIN 23 for 3 yards (E.Stephens).,14,10,2012 -20121014_CIN@CLE,3,22,45,CIN,CLE,2,7,77,(7:45) A.Dalton pass incomplete short left to A.Binns (S.Brown).,14,10,2012 -20121014_CIN@CLE,3,22,41,CIN,CLE,3,7,77,(7:41) (Shotgun) A.Dalton pass deep right intended for A.Green INTERCEPTED by J.Haden at CIN 39. J.Haden to CIN 25 for 14 yards (A.Hawkins). Penalty on CIN-C.Peerman Offensive Holding declined.,14,10,2012 -20121014_CIN@CLE,3,22,32,CLE,CIN,1,10,25,(7:32) (Shotgun) B.Weeden pass incomplete short right to J.Cameron (D.Peko).,10,14,2012 -20121014_CIN@CLE,3,22,28,CLE,CIN,2,10,25,(7:28) B.Weeden pass short right to M.Hardesty to CIN 16 for 9 yards (V.Burfict).,10,14,2012 -20121014_CIN@CLE,3,21,49,CLE,CIN,3,1,16,(6:49) B.Weeden sacked at CIN 20 for -4 yards (R.Geathers).,10,14,2012 -20121014_CIN@CLE,3,21,28,CLE,CIN,4,5,20,(6:28) (Field Goal formation) P.Dawson 38 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,14,2012 -20121014_CIN@CLE,3,21,28,CLE,CIN,,,20,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,13,14,2012 -20121014_CIN@CLE,3,21,26,CIN,CLE,1,10,80,(6:26) B.Green-Ellis left tackle to CIN 22 for 2 yards (J.Johnson).,14,13,2012 -20121014_CIN@CLE,3,21,5,CIN,CLE,2,8,78,(6:05) B.Green-Ellis left guard to CIN 22 for no gain (D.Jackson).,14,13,2012 -20121014_CIN@CLE,3,20,23,CIN,CLE,3,8,78,(5:23) (Shotgun) A.Dalton pass incomplete short left to A.Binns (S.Brown).,14,13,2012 -20121014_CIN@CLE,3,20,20,CIN,CLE,4,8,78,(5:20) K.Huber punts 44 yards to CLV 34 Center-C.Harris out of bounds.,14,13,2012 -20121014_CIN@CLE,3,20,13,CLE,CIN,1,10,38,(5:13) B.Weeden pass short left to J.Cameron to CIN 38 for no gain (N.Clements).,13,14,2012 -20121014_CIN@CLE,3,20,13,CLE,CIN,1,10,66,(5:13) (Shotgun) B.Weeden pass short left to G.Little to CLV 47 for 13 yards (T.Newman; V.Rey).,13,14,2012 -20121014_CIN@CLE,3,19,44,CLE,CIN,1,10,53,(4:44) B.Weeden pass to J.Cameron to CIN 38 for 15 yards (N.Clements).,13,14,2012 -20121014_CIN@CLE,3,19,22,CLE,CIN,1,10,38,(4:22) B.Weeden pass to G.Little to CIN 37 for 1 yard.,13,14,2012 -20121014_CIN@CLE,3,18,35,CLE,CIN,2,9,37,(3:35) J.Cribbs right end to CIN 29 for 8 yards (A.Jones). hand off from 20 Hardesty on reverse,13,14,2012 -20121014_CIN@CLE,3,18,3,CLE,CIN,3,1,29,(3:03) B.Weeden to CIN 27 for 2 yards (C.Dunlap).,13,14,2012 -20121014_CIN@CLE,3,17,19,CLE,CIN,1,10,27,(2:19) B.Weeden pass short right to J.Gordon to CIN 13 for 14 yards (T.Newman).,13,14,2012 -20121014_CIN@CLE,3,16,16,CLE,CIN,2,4,7,(1:16) M.Hardesty left guard to CIN 1 for 6 yards (R.Nelson).,13,14,2012 -20121014_CIN@CLE,4,15,0,CLE,CIN,2,1,1,(15:00) M.Hardesty right guard for 1 yard TOUCHDOWN.,13,14,2012 -20121014_CIN@CLE,4,15,0,CLE,CIN,,,1,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,13,14,2012 -20121014_CIN@CLE,4,15,0,CLE,CIN,,,1,P.Dawson kicks 25 yards from CLV 35 to CIN 40 out of bounds.,20,14,2012 -20121014_CIN@CLE,4,14,56,CIN,CLE,1,10,60,(14:56) (Shotgun) A.Dalton pass short left to A.Green to CLV 44 for 16 yards (J.Haden).,14,20,2012 -20121014_CIN@CLE,4,14,56,CIN,CLE,1,10,44,(14:56) (No Huddle) B.Green-Ellis right guard to CLV 38 for 6 yards (B.Winn; R.Hodges).,14,20,2012 -20121014_CIN@CLE,4,14,1,CIN,CLE,2,4,38,(14:01) (Shotgun) B.Green-Ellis left guard to CLV 35 for 3 yards (B.Skrine).,14,20,2012 -20121014_CIN@CLE,4,13,34,CIN,CLE,3,1,35,(13:34) (No Huddle) B.Green-Ellis right guard to CLV 31 for 4 yards (D.Jackson).,14,20,2012 -20121014_CIN@CLE,4,13,13,CIN,CLE,1,10,31,(13:13) (No Huddle) A.Dalton pass short right to A.Green to CLV 19 for 12 yards (J.Haden). PENALTY on CIN-A.Green Offensive Pass Interference 10 yards enforced at CLV 31 - No Play.,14,20,2012 -20121014_CIN@CLE,4,12,48,CIN,CLE,1,20,41,(12:48) A.Dalton pass short right to B.Tate to CLV 30 for 11 yards (S.Brown).,14,20,2012 -20121014_CIN@CLE,4,12,12,CIN,CLE,2,9,30,(12:12) (Shotgun) A.Dalton pass short left to C.Peerman to CLV 26 for 4 yards (J.Haden).,14,20,2012 -20121014_CIN@CLE,4,11,20,CIN,CLE,3,5,26,(11:20) (Shotgun) A.Dalton pass incomplete deep left to J.Gresham.,14,20,2012 -20121014_CIN@CLE,4,11,15,CIN,CLE,4,5,26,(11:15) (Field Goal formation) M.Nugent 44 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,20,2012 -20121014_CIN@CLE,4,11,15,CIN,CLE,,,26,M.Nugent kicks 72 yards from CIN 35 to CLV -7. J.Cribbs to CLV 37 for 44 yards (M.Jones).,17,20,2012 -20121014_CIN@CLE,4,11,6,CLE,CIN,1,10,63,(11:06) B.Weeden pass short right to J.Gordon to CIN 49 for 14 yards (T.Newman).,20,17,2012 -20121014_CIN@CLE,4,10,35,CLE,CIN,1,10,49,(10:35) M.Hardesty right tackle to CIN 35 for 14 yards (R.Nelson).,20,17,2012 -20121014_CIN@CLE,4,10,6,CLE,CIN,1,10,35,(10:06) M.Hardesty right guard to CIN 31 for 4 yards (R.Maualuga).,20,17,2012 -20121014_CIN@CLE,4,9,36,CLE,CIN,2,6,31,(9:36) M.Hardesty right guard to CIN 26 for 5 yards (R.Maualuga).,20,17,2012 -20121014_CIN@CLE,4,8,53,CLE,CIN,3,1,26,(8:53) B.Weeden pass short left to J.Cameron to CIN 3 for 23 yards (R.Nelson).,20,17,2012 -20121014_CIN@CLE,4,8,5,CLE,CIN,1,3,3,(8:05) B.Weeden pass short left to B.Watson for 3 yards TOUCHDOWN.,20,17,2012 -20121014_CIN@CLE,4,8,5,CLE,CIN,,,3,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,20,17,2012 -20121014_CIN@CLE,4,8,5,CLE,CIN,,,3,P.Dawson kicks 70 yards from CLV 35 to CIN -5. B.Tate to CIN 12 for 17 yards (C.Robertson).,27,17,2012 -20121014_CIN@CLE,4,7,55,CIN,CLE,1,10,88,(7:55) A.Dalton pass short left intended for A.Green INTERCEPTED by S.Brown at CIN 19. S.Brown for 19 yards TOUCHDOWN.,17,27,2012 -20121014_CIN@CLE,4,7,55,CLE,CIN,,,88,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,27,17,2012 -20121014_CIN@CLE,4,7,55,CLE,CIN,,,88,P.Dawson kicks 63 yards from CLV 35 to CIN 2. C.Peerman to CIN 21 for 19 yards (J.Cribbs).,34,17,2012 -20121014_CIN@CLE,4,7,44,CIN,CLE,1,10,79,(7:44) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 30 for 9 yards (B.Skrine).,17,34,2012 -20121014_CIN@CLE,4,7,44,CIN,CLE,2,1,70,(7:44) (No Huddle Shotgun) A.Dalton pass short middle to A.Green to CIN 39 for 9 yards (J.Haden).,17,34,2012 -20121014_CIN@CLE,4,7,3,CIN,CLE,1,10,61,(7:03) (No Huddle Shotgun) A.Dalton pass short middle to C.Peerman to 50 for 11 yards (C.Robertson; R.Hodges).,17,34,2012 -20121014_CIN@CLE,4,6,28,CIN,CLE,1,10,50,(6:28) (No Huddle Shotgun) A.Dalton sacked at CIN 45 for -5 yards (J.Parker).,17,34,2012 -20121014_CIN@CLE,4,6,4,CIN,CLE,2,15,55,(6:04) (No Huddle Shotgun) A.Dalton pass short right to C.Peerman to CIN 43 for -2 yards (J.Haden; C.Robertson).,17,34,2012 -20121014_CIN@CLE,4,5,29,CIN,CLE,3,17,57,(5:29) (No Huddle Shotgun) A.Dalton pass deep left to A.Green for 57 yards TOUCHDOWN.,17,34,2012 -20121014_CIN@CLE,4,5,29,CIN,CLE,,,57,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,34,2012 -20121014_CIN@CLE,4,5,29,CIN,CLE,,,57,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,24,34,2012 -20121014_CIN@CLE,4,5,21,CLE,CIN,1,10,80,(5:21) M.Hardesty left tackle to CLV 25 for 5 yards (M.Lawson).,34,24,2012 -20121014_CIN@CLE,4,4,36,CLE,CIN,2,5,75,(4:36) M.Hardesty right tackle to CLV 26 for 1 yard (M.Johnson).,34,24,2012 -20121014_CIN@CLE,4,4,29,CLE,CIN,3,4,74,(4:29) B.Weeden pass incomplete short right to B.Watson.,34,24,2012 -20121014_CIN@CLE,4,4,25,CLE,CIN,4,4,74,(4:25) (Punt formation) R.Hodges punts 47 yards to CIN 27 Center-C.Yount. B.Tate to CIN 47 for 20 yards (J.Johnson).,34,24,2012 -20121014_CIN@CLE,4,4,13,CIN,CLE,1,10,53,(4:13) (Shotgun) A.Dalton pass short left to M.Jones to CLV 48 for 5 yards (B.Skrine).,24,34,2012 -20121014_CIN@CLE,4,3,49,CIN,CLE,2,5,48,(3:49) (No Huddle Shotgun) A.Dalton pass short middle to A.Hawkins to CLV 42 for 6 yards (B.Skrine).,24,34,2012 -20121014_CIN@CLE,4,3,10,CIN,CLE,1,10,42,(3:10) (No Huddle Shotgun) A.Dalton pass short right to C.Peerman to CLV 30 for 12 yards (B.Skrine; D.Jackson).,24,34,2012 -20121014_CIN@CLE,4,3,10,CIN,CLE,1,10,30,(3:10) A.Dalton pass incomplete short right to J.Gresham (J.Cameron).,24,34,2012 -20121014_CIN@CLE,4,3,5,CIN,CLE,1,5,25,(3:05) (Shotgun) A.Dalton pass short right to M.Jones to CLV 9 for 16 yards (U.Young).,24,34,2012 -20121014_CIN@CLE,4,2,39,CIN,CLE,1,9,9,(2:39) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,24,34,2012 -20121014_CIN@CLE,4,2,39,CIN,CLE,2,9,9,(2:39) (Shotgun) A.Dalton sacked at CLV 9 for 0 yards (E.Stephens). FUMBLES (E.Stephens) RECOVERED by CLV-B.Winn at CLV 23. B.Winn to CIN 42 for 35 yards (C.Peerman).,24,34,2012 -20121014_CIN@CLE,4,2,27,CLE,CIN,1,10,42,(2:27) M.Hardesty left tackle to CIN 40 for 2 yards (V.Burfict).,34,24,2012 -20121014_CIN@CLE,4,2,22,CLE,CIN,2,8,40,(2:22) M.Hardesty right guard to CIN 36 for 4 yards (D.Skuta).,34,24,2012 -20121014_CIN@CLE,4,2,17,CLE,CIN,3,4,36,(2:17) M.Hardesty left tackle to CIN 38 for -2 yards (D.Peko).,34,24,2012 -20121014_CIN@CLE,4,2,0,CLE,CIN,4,6,38,(2:00) (Punt formation) R.Hodges punts 33 yards to CIN 5 Center-C.Yount out of bounds.,34,24,2012 -20121014_CIN@CLE,4,1,52,CIN,CLE,1,10,95,(1:52) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 16 for 11 yards (J.Haden).,24,34,2012 -20121014_CIN@CLE,4,1,20,CIN,CLE,1,10,84,(1:20) (No Huddle Shotgun) A.Dalton pass short middle to C.Peerman to CIN 22 for 6 yards (C.Robertson).,24,34,2012 -20121014_CIN@CLE,4,0,55,CIN,CLE,2,4,78,(:55) (No Huddle Shotgun) A.Dalton pass short middle to C.Peerman to CIN 37 for 15 yards (B.Skrine).,24,34,2012 -20121014_CIN@CLE,4,0,31,CIN,CLE,1,10,63,(:31) (No Huddle Shotgun) A.Dalton pass short middle to C.Peerman to CLV 49 for 14 yards (B.Skrine).,24,34,2012 -20121014_CIN@CLE,4,0,31,CIN,CLE,1,10,49,(:31) A.Dalton spiked the ball to stop the clock.,24,34,2012 -20121014_CIN@CLE,4,0,15,CIN,CLE,2,10,49,(:15) (Shotgun) A.Dalton pass deep left intended for A.Green INTERCEPTED by U.Young at CLV 0. Touchback.,24,34,2012 -20121014_CIN@CLE,4,0,6,CLE,CIN,1,10,80,(:06) B.Weeden kneels to CLV 20 for no gain.,34,24,2012 -20121014_CIN@CLE,4,0,6,CLE,CIN,,,80,                      ,34,24,2012 -20121014_STL@MIA,1,0,0,MIA,STL,,,80,D.Carpenter kicks 65 yards from MIA 35 to SL 0. C.Givens to SL 20 for 20 yards (J.Amaya).,0,0,2012 -20121014_STL@MIA,1,59,54,STL,MIA,1,10,80,(14:54) S.Jackson right tackle to SL 25 for 5 yards (R.Starks).,0,0,2012 -20121014_STL@MIA,1,59,21,STL,MIA,2,5,75,(14:21) D.Richardson right end pushed ob at MIA 31 for 44 yards (R.Jones).,0,0,2012 -20121014_STL@MIA,1,58,46,STL,MIA,1,10,31,(13:46) S.Jackson left tackle to MIA 26 for 5 yards (N.Carroll).,0,0,2012 -20121014_STL@MIA,1,58,7,STL,MIA,2,5,26,(13:07) (Shotgun) S.Bradford pass incomplete short left to B.Gibson.,0,0,2012 -20121014_STL@MIA,1,57,59,STL,MIA,3,5,26,(12:59) (Shotgun) S.Bradford sacked at MIA 30 for -4 yards (C.Wake).,0,0,2012 -20121014_STL@MIA,1,57,49,STL,MIA,4,9,30,(12:49) (Field Goal formation) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121014_STL@MIA,1,57,49,STL,MIA,,,30,G.Zuerlein kicks 72 yards from SL 35 to MIA -7. M.Thigpen to MIA 18 for 25 yards (E.Sims).,3,0,2012 -20121014_STL@MIA,1,57,19,MIA,STL,1,10,82,(12:19) R.Tannehill pass short left to D.Bess to MIA 25 for 7 yards (J.Jenkins).,0,3,2012 -20121014_STL@MIA,1,56,49,MIA,STL,2,3,75,(11:49) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano (Q.Mikell).,0,3,2012 -20121014_STL@MIA,1,56,37,MIA,STL,3,3,75,(11:37) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 36 for 11 yards (C.Dahl).,0,3,2012 -20121014_STL@MIA,1,56,7,MIA,STL,1,10,64,(11:07) R.Bush up the middle to MIA 45 for 9 yards (Q.Mikell).,0,3,2012 -20121014_STL@MIA,1,55,25,MIA,STL,2,1,55,(10:25) (Shotgun) R.Tannehill sacked at MIA 40 for -5 yards (C.Long).,0,3,2012 -20121014_STL@MIA,1,54,46,MIA,STL,3,6,60,(9:46) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 42 for 2 yards (J.Jenkins).,0,3,2012 -20121014_STL@MIA,1,54,0,MIA,STL,4,4,58,(9:00) (Punt formation) B.Fields punts 53 yards to SL 5 Center-J.Denney. J.Jenkins to SL 12 for 7 yards (J.Denney). FUMBLES (J.Denney) ball out of bounds at SL 8.,0,3,2012 -20121014_STL@MIA,1,53,46,STL,MIA,1,10,92,(8:46) S.Jackson left tackle to SL 5 for -3 yards (J.Odrick).,3,0,2012 -20121014_STL@MIA,1,53,12,STL,MIA,2,13,95,(8:12) S.Bradford pass short right to C.Givens pushed ob at SL 13 for 8 yards (S.Smith).,3,0,2012 -20121014_STL@MIA,1,52,31,STL,MIA,3,5,87,(7:31) (Shotgun) S.Bradford pass short right to A.Pettis to SL 24 for 11 yards (J.Wilson).,3,0,2012 -20121014_STL@MIA,1,51,52,STL,MIA,1,10,76,(6:52) S.Bradford pass deep right to C.Givens to MIA 11 for 65 yards (R.Jones).,3,0,2012 -20121014_STL@MIA,1,51,11,STL,MIA,1,10,11,(6:11) (Shotgun) S.Bradford pass incomplete short right to S.Jackson (K.Burnett).,3,0,2012 -20121014_STL@MIA,1,51,3,STL,MIA,2,10,11,(6:03) (Shotgun) S.Bradford pass short right to D.Richardson to MIA 14 for -3 yards (C.Clemons).,3,0,2012 -20121014_STL@MIA,1,50,23,STL,MIA,3,13,14,(5:23) (Shotgun) S.Bradford pass incomplete short left to A.Pettis [O.Vernon].,3,0,2012 -20121014_STL@MIA,1,50,12,STL,MIA,4,13,14,(5:12) (Field Goal formation) G.Zuerlein 32 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,0,2012 -20121014_STL@MIA,1,50,12,STL,MIA,,,14,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,6,0,2012 -20121014_STL@MIA,1,50,8,MIA,STL,1,10,80,(5:08) R.Bush up the middle to MIA 15 for -5 yards (K.Langford).,0,6,2012 -20121014_STL@MIA,1,49,29,MIA,STL,2,15,85,(4:29) (Shotgun) R.Tannehill pass short right to R.Bush ran ob at MIA 23 for 8 yards (C.Dahl).,0,6,2012 -20121014_STL@MIA,1,48,48,MIA,STL,3,7,77,(3:48) (Shotgun) R.Tannehill pass short left to M.Moore to MIA 28 for 5 yards (Q.Mikell).,0,6,2012 -20121014_STL@MIA,1,48,11,MIA,STL,4,2,72,(3:11) (Punt formation) B.Fields punts 58 yards to SL 14 Center-J.Denney. J.Jenkins to SL 28 for 14 yards (C.Clemons). PENALTY on SL-J.Hull Illegal Block Above the Waist 10 yards enforced at SL 28.,0,6,2012 -20121014_STL@MIA,1,47,51,STL,MIA,1,10,82,(2:51) D.Richardson right end pushed ob at SL 20 for 2 yards (S.Smith).,6,0,2012 -20121014_STL@MIA,1,47,19,STL,MIA,2,8,80,(2:19) D.Richardson left end to SL 31 for 11 yards (C.Clemons).,6,0,2012 -20121014_STL@MIA,1,46,37,STL,MIA,1,10,69,(1:37) S.Bradford pass short right to C.Givens ran ob at SL 43 for 12 yards.,6,0,2012 -20121014_STL@MIA,1,46,16,STL,MIA,1,10,57,(1:16) D.Richardson right tackle to SL 49 for 6 yards (C.Clemons).,6,0,2012 -20121014_STL@MIA,1,45,21,STL,MIA,2,4,51,(:21) S.Bradford pass incomplete deep left to C.Givens (K.Burnett).,6,0,2012 -20121014_STL@MIA,1,45,15,STL,MIA,3,4,51,(:15) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,6,0,2012 -20121014_STL@MIA,1,45,10,STL,MIA,4,4,51,(:10) (Punt formation) J.Hekker punts 36 yards to MIA 15 Center-J.McQuaide fair catch by D.Bess.,6,0,2012 -20121014_STL@MIA,1,45,2,MIA,STL,1,10,85,(:02) L.Miller left end to MIA 14 for -1 yards (J.Cudjo). PENALTY on MIA-R.Incognito Offensive Holding 7 yards enforced at MIA 15 - No Play.,0,6,2012 -20121014_STL@MIA,2,45,0,MIA,STL,1,17,92,(15:00) R.Bush up the middle to MIA 8 for no gain (E.Sims). PENALTY on SL-K.Heard Defensive Offside 5 yards enforced at MIA 8 - No Play.,0,6,2012 -20121014_STL@MIA,2,44,54,MIA,STL,1,12,87,(14:54) R.Tannehill pass short left to R.Bush pushed ob at MIA 17 for 4 yards (C.Dahl).,0,6,2012 -20121014_STL@MIA,2,44,31,MIA,STL,2,8,83,(14:31) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Penalty on MIA-J.Long Illegal Use of Hands declined.,0,6,2012 -20121014_STL@MIA,2,44,23,MIA,STL,3,8,83,(14:23) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 17 for no gain (J.Dunbar). PENALTY on MIA-J.Long Offensive Holding 8 yards enforced at MIA 17 - No Play.,0,6,2012 -20121014_STL@MIA,2,44,6,MIA,STL,3,16,91,(14:06) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 20 for 11 yards (Q.Mikell). PENALTY on MIA-R.Incognito Unnecessary Roughness 10 yards enforced at MIA 20.,0,6,2012 -20121014_STL@MIA,2,43,35,MIA,STL,4,15,90,(13:35) (Punt formation) B.Fields punts 63 yards to SL 27 Center-J.Denney. J.Jenkins MUFFS catch ball out of bounds at SL 27.,0,6,2012 -20121014_STL@MIA,2,43,26,STL,MIA,1,10,73,(13:26) S.Bradford scrambles left tackle to SL 35 for 8 yards (K.Misi).,6,0,2012 -20121014_STL@MIA,2,42,51,STL,MIA,2,2,65,(12:51) S.Jackson right guard to SL 47 for 12 yards (R.Jones C.Clemons).,6,0,2012 -20121014_STL@MIA,2,42,18,STL,MIA,1,10,53,(12:18) S.Jackson up the middle to SL 49 for 2 yards (O.Vernon).,6,0,2012 -20121014_STL@MIA,2,41,43,STL,MIA,2,8,51,(11:43) S.Jackson left tackle to SL 49 for no gain (O.Vernon).,6,0,2012 -20121014_STL@MIA,2,41,0,STL,MIA,3,8,51,(11:00) (Shotgun) S.Bradford left end ran ob at MIA 30 for 21 yards (R.Jones).,6,0,2012 -20121014_STL@MIA,2,40,30,STL,MIA,1,10,30,(10:30) S.Bradford pass incomplete deep left to B.Quick (N.Carroll). PENALTY on SL-Q.Ojinnaka Illegal Use of Hands 10 yards enforced at MIA 30 - No Play.,6,0,2012 -20121014_STL@MIA,2,40,21,STL,MIA,1,20,40,(10:21) (Shotgun) S.Bradford pass short middle to I.Pead to MIA 37 for 3 yards (C.Wake).,6,0,2012 -20121014_STL@MIA,2,39,51,STL,MIA,2,17,37,(9:51) S.Jackson left guard to MIA 26 for 11 yards (K.Dansby).,6,0,2012 -20121014_STL@MIA,2,38,57,STL,MIA,3,6,26,(8:57) (Shotgun) S.Bradford sacked at MIA 34 for -8 yards (O.Vernon).,6,0,2012 -20121014_STL@MIA,2,38,38,STL,MIA,4,14,34,(8:38) (Field Goal formation) G.Zuerlein 52 yard field goal is No Good Wide Left Center-J.McQuaide Holder-J.Hekker.,6,0,2012 -20121014_STL@MIA,2,38,34,MIA,STL,1,10,58,(8:34) R.Tannehill sacked at MIA 35 for -7 yards (J.Dunbar).,0,6,2012 -20121014_STL@MIA,2,38,6,MIA,STL,2,17,65,(8:06) R.Tannehill pass short left to A.Fasano ran ob at MIA 48 for 13 yards [M.Brockers].,0,6,2012 -20121014_STL@MIA,2,37,34,MIA,STL,3,4,52,(7:34) R.Tannehill pass short left to D.Bess pushed ob at SL 46 for 6 yards (C.Finnegan).,0,6,2012 -20121014_STL@MIA,2,37,1,MIA,STL,1,10,46,(7:01) R.Tannehill pass short right to M.Moore to SL 34 for 12 yards (J.Jenkins).,0,6,2012 -20121014_STL@MIA,2,36,31,MIA,STL,1,10,34,(6:31) M.Moore left end to SL 33 for 1 yard (J.Dunbar). PENALTY on SL-K.Heard Defensive Offside 5 yards enforced at SL 34 - No Play.,0,6,2012 -20121014_STL@MIA,2,36,13,MIA,STL,1,5,29,(6:13) R.Bush left tackle to SL 29 for no gain (W.Hayes).,0,6,2012 -20121014_STL@MIA,2,35,38,MIA,STL,2,5,29,(5:38) (Shotgun) R.Tannehill pass deep left to M.Moore for 29 yards TOUCHDOWN.,0,6,2012 -20121014_STL@MIA,2,35,38,MIA,STL,,,29,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields. PENALTY on SL-C.Dahl Illegal Use of Hands 5 yards enforced between downs.,0,6,2012 -20121014_STL@MIA,2,35,38,MIA,STL,,,29,D.Carpenter kicks 52 yards from MIA 40 to SL 8. B.Miller to SL 21 for 13 yards (J.Wilson). FUMBLES (J.Wilson) RECOVERED by MIA-M.Thigpen at SL 25. M.Thigpen to SL 25 for no gain (A.Pettis). MIA-O.Vernon was injured during the play. His return is Questionable.,7,6,2012 -20121014_STL@MIA,2,35,16,MIA,STL,1,10,25,(5:16) R.Tannehill pass incomplete short right to D.Bess.,7,6,2012 -20121014_STL@MIA,2,35,10,MIA,STL,2,10,25,(5:10) R.Bush right tackle to SL 25 for no gain (K.Langford).,7,6,2012 -20121014_STL@MIA,2,34,32,MIA,STL,3,10,25,(4:32) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano.,7,6,2012 -20121014_STL@MIA,2,34,24,MIA,STL,4,10,25,(4:24) (Field Goal formation) D.Carpenter 42 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,7,6,2012 -20121014_STL@MIA,2,34,24,MIA,STL,,,25,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,10,6,2012 -20121014_STL@MIA,2,34,19,STL,MIA,1,10,80,(4:19) S.Bradford pass short right to L.Kendricks pushed ob at SL 30 for 10 yards (K.Dansby).,6,10,2012 -20121014_STL@MIA,2,33,55,STL,MIA,1,10,70,(3:55) S.Jackson right tackle to SL 34 for 4 yards (K.Burnett).,6,10,2012 -20121014_STL@MIA,2,33,16,STL,MIA,2,6,66,(3:16) (Shotgun) S.Bradford pass short right to B.Gibson pushed ob at SL 49 for 15 yards (R.Jones).,6,10,2012 -20121014_STL@MIA,2,32,44,STL,MIA,1,10,51,(2:44) PENALTY on SL-H.Dahl False Start 5 yards enforced at SL 49 - No Play.,6,10,2012 -20121014_STL@MIA,2,32,29,STL,MIA,1,15,56,(2:29) S.Bradford pass deep left to B.Gibson ran ob at MIA 40 for 16 yards.,6,10,2012 -20121014_STL@MIA,2,32,0,STL,MIA,1,10,40,(2:00) S.Jackson up the middle to MIA 36 for 4 yards (C.Clemons).,6,10,2012 -20121014_STL@MIA,2,31,41,STL,MIA,2,6,36,(1:41) S.Bradford pass short left to B.Gibson to MIA 27 for 9 yards (N.Carroll).,6,10,2012 -20121014_STL@MIA,2,30,52,STL,MIA,1,10,27,(:52) S.Jackson right end to MIA 19 for 8 yards (K.Dansby). PENALTY on SL-M.Mulligan Offensive Holding 10 yards enforced at MIA 27 - No Play.,6,10,2012 -20121014_STL@MIA,2,30,40,STL,MIA,1,20,37,(:40) (Shotgun) S.Bradford pass incomplete short middle to A.Pettis.,6,10,2012 -20121014_STL@MIA,2,30,37,STL,MIA,2,20,37,(:37) (Shotgun) S.Bradford pass deep right to L.Kendricks to MIA 14 for 23 yards (K.Dansby).,6,10,2012 -20121014_STL@MIA,2,30,30,STL,MIA,1,10,14,(:30) (Shotgun) S.Bradford pass incomplete short left to C.Givens. PENALTY on SL-Q.Ojinnaka Illegal Use of Hands 10 yards enforced at MIA 14 - No Play.,6,10,2012 -20121014_STL@MIA,2,30,24,STL,MIA,1,20,24,(:24) (Shotgun) D.Richardson left guard to MIA 19 for 5 yards (K.Misi).,6,10,2012 -20121014_STL@MIA,2,30,18,STL,MIA,2,15,19,(:18) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson.,6,10,2012 -20121014_STL@MIA,2,30,13,STL,MIA,3,15,19,(:13) (Shotgun) S.Bradford pass incomplete short left to C.Givens [J.Odrick].,6,10,2012 -20121014_STL@MIA,2,30,8,STL,MIA,4,15,19,(:08) (Field Goal formation) G.Zuerlein 37 yard field goal is No Good Wide Left Center-J.McQuaide Holder-J.Hekker.,6,10,2012 -20121014_STL@MIA,2,30,3,MIA,STL,1,10,73,(:03) R.Tannehill kneels to MIA 26 for -1 yards.,10,6,2012 -20121014_STL@MIA,3,30,0,STL,MIA,,,73,G.Zuerlein kicks 71 yards from SL 35 to MIA -6. M.Thigpen to MIA 38 for 44 yards (G.Zuerlein).,6,10,2012 -20121014_STL@MIA,3,29,53,MIA,STL,1,10,62,(14:53) R.Bush right end to MIA 40 for 2 yards (C.Dahl).,10,6,2012 -20121014_STL@MIA,3,29,36,MIA,STL,2,8,60,(14:36) (Shotgun) R.Tannehill pass short right to R.Bush to MIA 49 for 9 yards (C.Dahl).,10,6,2012 -20121014_STL@MIA,3,28,52,MIA,STL,1,10,51,(13:52) R.Tannehill pass short left to J.Lane to SL 44 for 7 yards (J.Laurinaitis).,10,6,2012 -20121014_STL@MIA,3,28,13,MIA,STL,2,3,44,(13:13) R.Tannehill pass short middle to A.Fasano to SL 36 for 8 yards (C.Finnegan).,10,6,2012 -20121014_STL@MIA,3,27,38,MIA,STL,1,10,36,(12:38) R.Bush left tackle to SL 35 for 1 yard (J.Laurinaitis).,10,6,2012 -20121014_STL@MIA,3,27,6,MIA,STL,2,9,35,(12:06) (Shotgun) R.Tannehill pass short right to J.Lane to SL 30 for 5 yards (C.Finnegan).,10,6,2012 -20121014_STL@MIA,3,26,26,MIA,STL,3,4,30,(11:26) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on SL-B.Fletcher Defensive Pass Interference 11 yards enforced at SL 30 - No Play.,10,6,2012 -20121014_STL@MIA,3,26,17,MIA,STL,1,10,19,(11:17) (Shotgun) R.Tannehill pass incomplete short right to D.Bess (B.Fletcher).,10,6,2012 -20121014_STL@MIA,3,26,12,MIA,STL,2,10,19,(11:12) PENALTY on MIA-J.Jerry False Start 5 yards enforced at SL 19 - No Play.,10,6,2012 -20121014_STL@MIA,3,26,12,MIA,STL,2,15,24,(11:12) (Shotgun) R.Tannehill pass short left to R.Bush to SL 15 for 9 yards (J.Laurinaitis).,10,6,2012 -20121014_STL@MIA,3,25,47,MIA,STL,3,6,15,(10:47) R.Tannehill pass short middle to R.Bush to SL 1 for 14 yards (C.Dahl).,10,6,2012 -20121014_STL@MIA,3,24,46,MIA,STL,1,1,1,(9:46) N.Garner reported in as eligible. R.Tannehill pass short middle to A.Fasano for 1 yard TOUCHDOWN.,10,6,2012 -20121014_STL@MIA,3,24,46,MIA,STL,,,1,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,10,6,2012 -20121014_STL@MIA,3,24,46,MIA,STL,,,1,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,17,6,2012 -20121014_STL@MIA,3,24,40,STL,MIA,1,10,80,(9:40) S.Jackson up the middle to SL 23 for 3 yards (K.Dansby).,6,17,2012 -20121014_STL@MIA,3,24,9,STL,MIA,2,7,77,(9:09) D.Richardson up the middle to SL 22 for -1 yards (P.Soliai).,6,17,2012 -20121014_STL@MIA,3,23,17,STL,MIA,3,8,78,(8:17) (Shotgun) PENALTY on SL Delay of Game 5 yards enforced at SL 22 - No Play.,6,17,2012 -20121014_STL@MIA,3,23,10,STL,MIA,3,13,83,(8:10) S.Bradford pass short middle to S.Jackson to SL 39 for 22 yards (C.Clemons).,6,17,2012 -20121014_STL@MIA,3,22,5,STL,MIA,1,10,61,(7:05) D.Richardson right end to SL 43 for 4 yards (C.Wake).,6,17,2012 -20121014_STL@MIA,3,21,24,STL,MIA,2,6,57,(6:24) S.Bradford pass short left to L.Kendricks to SL 44 for 1 yard (C.Clemons).,6,17,2012 -20121014_STL@MIA,3,20,41,STL,MIA,3,5,56,(5:41) (Shotgun) S.Bradford sacked at SL 36 for -8 yards (C.Wake). FUMBLES (C.Wake) RECOVERED by MIA-J.Odrick at SL 38. J.Odrick to SL 38 for no gain (W.Hunter). The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) S.Bradford pass incomplete short middle.,6,17,2012 -20121014_STL@MIA,3,20,35,STL,MIA,4,5,56,(5:35) (Punt formation) J.Hekker punts 56 yards to end zone Center-J.McQuaide Touchback.,6,17,2012 -20121014_STL@MIA,3,20,25,MIA,STL,1,10,80,(5:25) R.Tannehill pass incomplete short left to C.Clay.,17,6,2012 -20121014_STL@MIA,3,20,22,MIA,STL,2,10,80,(5:22) R.Tannehill pass short left to C.Clay to MIA 28 for 8 yards (J.Dunbar).,17,6,2012 -20121014_STL@MIA,3,20,6,MIA,STL,3,2,72,(5:06) R.Tannehill pass incomplete short left to R.Bush.,17,6,2012 -20121014_STL@MIA,3,19,48,MIA,STL,4,2,72,(4:48) (Punt formation) B.Fields punts 54 yards to SL 18 Center-J.Denney. J.Jenkins to SL 23 for 5 yards (J.Trusnik).,17,6,2012 -20121014_STL@MIA,3,19,36,STL,MIA,1,10,77,(4:36) D.Richardson left end to SL 24 for 1 yard (J.Odrick).,6,17,2012 -20121014_STL@MIA,3,18,58,STL,MIA,2,9,76,(3:58) S.Bradford pass short right to B.Gibson to SL 39 for 15 yards (S.Smith).,6,17,2012 -20121014_STL@MIA,3,18,29,STL,MIA,1,10,61,(3:29) S.Bradford pass short right to M.Mulligan to SL 48 for 9 yards (S.Smith).,6,17,2012 -20121014_STL@MIA,3,17,44,STL,MIA,2,1,52,(2:44) D.Richardson right guard to MIA 50 for 2 yards (K.Dansby).,6,17,2012 -20121014_STL@MIA,3,17,5,STL,MIA,1,10,50,(2:05) D.Richardson left tackle to MIA 49 for 1 yard (C.Clemons; K.Dansby).,6,17,2012 -20121014_STL@MIA,3,16,19,STL,MIA,2,9,49,(1:19) S.Bradford pass short right to C.Givens to MIA 44 for 5 yards (S.Smith). FUMBLES (S.Smith) RECOVERED by MIA-J.Trusnik at MIA 46. J.Trusnik to MIA 46 for no gain (C.Givens). The Replay Assistant challenged the fumble ruling and the play was REVERSED. S.Bradford pass incomplete short right to C.Givens.,6,17,2012 -20121014_STL@MIA,3,16,15,STL,MIA,3,9,49,(1:15) (Shotgun) S.Bradford pass incomplete short right to C.Givens (J.Odrick).,6,17,2012 -20121014_STL@MIA,3,16,12,STL,MIA,4,9,49,(1:12) (Punt formation) J.Hekker punts 43 yards to MIA 6 Center-J.McQuaide downed by SL-R.McLeod.,6,17,2012 -20121014_STL@MIA,3,16,3,MIA,STL,1,10,94,(1:03) R.Bush right end to MIA 11 for 5 yards (J.Dunbar).,17,6,2012 -20121014_STL@MIA,3,15,29,MIA,STL,2,5,89,(:29) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on SL-C.Long Roughing the Passer 15 yards enforced at MIA 11 - No Play.,17,6,2012 -20121014_STL@MIA,3,15,23,MIA,STL,1,10,74,(:23) R.Tannehill sacked at MIA 19 for -7 yards (J.Dunbar).,17,6,2012 -20121014_STL@MIA,3,15,23,MIA,STL,1,10,74,(:23) R.Tannehill right guard to MIA 26 for no gain (J.Dunbar). FUMBLES (J.Dunbar) ball out of bounds at MIA 9.,17,6,2012 -20121014_STL@MIA,4,15,0,MIA,STL,2,27,91,(15:00) R.Tannehill pass incomplete short middle to R.Bush (K.Langford).,17,6,2012 -20121014_STL@MIA,4,14,56,MIA,STL,3,27,91,(14:56) (Shotgun) R.Tannehill scrambles right guard to MIA 19 for 10 yards (J.Laurinaitis).,17,6,2012 -20121014_STL@MIA,4,14,14,MIA,STL,4,17,81,(14:14) (Punt formation) B.Fields punts 44 yards to SL 37 Center-J.Denney. J.Jenkins to SL 38 for 1 yard (A.Spitler).,17,6,2012 -20121014_STL@MIA,4,14,3,STL,MIA,1,10,62,(14:03) S.Bradford pass short left to S.Jackson to SL 44 for 6 yards (K.Burnett).,6,17,2012 -20121014_STL@MIA,4,13,26,STL,MIA,2,4,56,(13:26) S.Jackson right end pushed ob at MIA 49 for 7 yards (N.Carroll).,6,17,2012 -20121014_STL@MIA,4,13,13,STL,MIA,1,10,49,(13:13) S.Jackson right tackle to MIA 47 for 2 yards (K.Burnett; K.Randall).,6,17,2012 -20121014_STL@MIA,4,12,31,STL,MIA,2,8,47,(12:31) S.Bradford pass short right to M.Mulligan to MIA 41 for 6 yards (K.Randall) [K.Misi].,6,17,2012 -20121014_STL@MIA,4,11,44,STL,MIA,3,2,41,(11:44) S.Bradford pass incomplete short right to S.Jackson.,6,17,2012 -20121014_STL@MIA,4,11,38,STL,MIA,4,2,41,(11:38) S.Bradford pass short right to B.Gibson to MIA 33 for 8 yards (N.Carroll).,6,17,2012 -20121014_STL@MIA,4,11,0,STL,MIA,1,10,33,(11:00) (Shotgun) S.Bradford pass short left to D.Richardson to MIA 7 for 26 yards (R.Jones).,6,17,2012 -20121014_STL@MIA,4,10,14,STL,MIA,1,7,7,(10:14) S.Bradford right end to MIA 3 for 4 yards (K.Dansby).,6,17,2012 -20121014_STL@MIA,4,9,31,STL,MIA,2,3,3,(9:31) D.Richardson right tackle to MIA 2 for 1 yard (K.Dansby).,6,17,2012 -20121014_STL@MIA,4,8,35,STL,MIA,3,2,2,(8:35) S.Bradford pass short right to B.Quick to MIA 1 for 1 yard (S.Smith). St. Louis challenged the runner broke the plane ruling and the play was Upheld. (Timeout #1.),6,17,2012 -20121014_STL@MIA,4,8,35,STL,MIA,4,1,1,(8:35) S.Bradford up the middle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,6,17,2012 -20121014_STL@MIA,4,8,35,STL,MIA,,,1,TWO-POINT CONVERSION ATTEMPT. S.Bradford pass to S.Jackson is complete. ATTEMPT SUCCEEDS.,6,17,2012 -20121014_STL@MIA,4,8,35,STL,MIA,,,1,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,14,17,2012 -20121014_STL@MIA,4,8,30,MIA,STL,1,10,80,(8:30) R.Tannehill right end to MIA 25 for 5 yards (C.Finnegan).,17,14,2012 -20121014_STL@MIA,4,8,10,MIA,STL,2,5,75,(8:10) R.Bush left end to MIA 29 for 4 yards (J.Dunbar).,17,14,2012 -20121014_STL@MIA,4,7,10,MIA,STL,3,1,71,(7:10) R.Tannehill up the middle to MIA 31 for 2 yards (R.McIntosh).,17,14,2012 -20121014_STL@MIA,4,6,34,MIA,STL,1,10,69,(6:34) R.Tannehill pass short left to D.Bess to MIA 40 for 9 yards (J.Jenkins).,17,14,2012 -20121014_STL@MIA,4,5,54,MIA,STL,2,1,60,(5:54) R.Bush left end to MIA 40 for no gain (J.Laurinaitis).,17,14,2012 -20121014_STL@MIA,4,5,5,MIA,STL,3,1,60,(5:05) R.Bush right end to MIA 40 for no gain (J.Laurinaitis).,17,14,2012 -20121014_STL@MIA,4,4,15,MIA,STL,4,1,60,(4:15) (Punt formation) C.Clemons up the middle to MIA 43 for 3 yards (T.Johnson).,17,14,2012 -20121014_STL@MIA,4,3,18,MIA,STL,1,10,57,(3:18) R.Bush up the middle to MIA 45 for 2 yards (C.Long).,17,14,2012 -20121014_STL@MIA,4,2,34,MIA,STL,2,8,55,(2:34) R.Tannehill pass short right to D.Bess to SL 48 for 7 yards (C.Finnegan).,17,14,2012 -20121014_STL@MIA,4,2,20,MIA,STL,3,1,48,(2:20) R.Bush up the middle to SL 49 for -1 yards (Q.Mikell).,17,14,2012 -20121014_STL@MIA,4,2,0,MIA,STL,4,2,49,(2:00) (Punt formation) B.Fields punts 43 yards to SL 6 Center-J.Denney fair catch by J.Jenkins. PENALTY on MIA-J.Trusnik Illegal Use of Hands 10 yards enforced at SL 49 - No Play.,17,14,2012 -20121014_STL@MIA,4,1,52,MIA,STL,4,12,59,(1:52) (Punt formation) B.Fields punts 51 yards to SL 8 Center-J.Denney. J.Jenkins to SL 6 for -2 yards (J.Wilson). PENALTY on SL-J.Hull Offensive Holding 3 yards enforced at SL 6.,17,14,2012 -20121014_STL@MIA,4,1,41,STL,MIA,1,10,97,(1:41) S.Bradford pass short left to S.Smith to SL 8 for 5 yards (J.Wilson).,14,17,2012 -20121014_STL@MIA,4,1,20,STL,MIA,2,5,92,(1:20) (No Huddle Shotgun) S.Bradford pass short right to L.Kendricks to SL 14 for 6 yards (K.Dansby).,14,17,2012 -20121014_STL@MIA,4,0,55,STL,MIA,1,10,86,(:55) S.Bradford pass short right to S.Smith to SL 27 for 13 yards (C.Clemons).,14,17,2012 -20121014_STL@MIA,4,0,54,STL,MIA,1,10,73,(:54) (Shotgun) S.Bradford pass incomplete short left to B.Quick.,14,17,2012 -20121014_STL@MIA,4,0,51,STL,MIA,2,10,73,(:51) (Shotgun) S.Bradford pass deep left to B.Gibson to SL 49 for 22 yards (N.Carroll).,14,17,2012 -20121014_STL@MIA,4,0,46,STL,MIA,1,10,51,(:46) (Shotgun) S.Bradford pass short left to B.Gibson to MIA 45 for 6 yards (N.Carroll).,14,17,2012 -20121014_STL@MIA,4,0,42,STL,MIA,2,4,45,(:42) (Shotgun) S.Bradford pass short left to S.Jackson ran ob at MIA 45 for no gain.,14,17,2012 -20121014_STL@MIA,4,0,37,STL,MIA,3,4,45,(:37) (Shotgun) S.Bradford sacked at MIA 48 for -3 yards (O.Vernon).,14,17,2012 -20121014_STL@MIA,4,0,4,STL,MIA,4,7,48,(:04) (Field Goal formation) G.Zuerlein 66 yard field goal is No Good Wide Left Center-J.McQuaide Holder-J.Hekker.,14,17,2012 -20121014_STL@MIA,4,0,4,STL,MIA,,,48,                      ,14,17,2012 -20121014_IND@NYJ,1,0,0,NYJ,IND,,,48,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,0,0,2012 -20121014_IND@NYJ,1,60,0,IND,NYJ,1,10,80,(15:00) A.Luck pass short right to D.Allen to IND 32 for 12 yards (L.Landry).,0,0,2012 -20121014_IND@NYJ,1,59,18,IND,NYJ,1,10,68,(14:18) A.Luck pass short left to N.Palmer to IND 28 for -4 yards (K.Wilson).,0,0,2012 -20121014_IND@NYJ,1,58,36,IND,NYJ,2,14,72,(13:36) D.Avery right end to IND 27 for -1 yards (M.Wilkerson).,0,0,2012 -20121014_IND@NYJ,1,57,48,IND,NYJ,3,15,73,(12:48) (Shotgun) A.Luck pass deep right to D.Avery pushed ob at NYJ 49 for 24 yards (K.Wilson).,0,0,2012 -20121014_IND@NYJ,1,57,15,IND,NYJ,1,10,49,(12:15) V.Ballard left tackle to NYJ 45 for 4 yards (Y.Bell).,0,0,2012 -20121014_IND@NYJ,1,56,36,IND,NYJ,2,6,45,(11:36) V.Ballard left tackle to NYJ 40 for 5 yards (D.Harris).,0,0,2012 -20121014_IND@NYJ,1,55,56,IND,NYJ,3,1,40,(10:56) (Shotgun) A.Luck pass incomplete short right to D.Allen.,0,0,2012 -20121014_IND@NYJ,1,55,56,IND,NYJ,4,1,40,(10:56) P.McAfee punts 37 yards to NYJ 3 Center-M.Overton downed by IND-J.Lefeged.,0,0,2012 -20121014_IND@NYJ,1,55,41,NYJ,IND,1,10,97,(10:41) S.Greene right guard to NYJ 8 for 5 yards (C.Redding).,0,0,2012 -20121014_IND@NYJ,1,55,7,NYJ,IND,2,5,92,(10:07) S.Greene right tackle to NYJ 9 for 1 yard (J.Powers).,0,0,2012 -20121014_IND@NYJ,1,54,27,NYJ,IND,3,4,91,(9:27) M.Sanchez pass incomplete short right to J.Kerley.,0,0,2012 -20121014_IND@NYJ,1,54,27,NYJ,IND,4,4,91,(9:27) R.Malone punts 50 yards to IND 41 Center-T.Purdum out of bounds.,0,0,2012 -20121014_IND@NYJ,1,54,15,IND,NYJ,1,10,59,(9:15) A.Luck pass incomplete deep right to C.Fleener. PENALTY on NYJ-A.Allen Defensive Pass Interference 28 yards enforced at IND 41 - No Play.,0,0,2012 -20121014_IND@NYJ,1,54,8,IND,NYJ,1,10,31,(9:08) V.Ballard left tackle to NYJ 28 for 3 yards (B.Scott; Q.Coples).,0,0,2012 -20121014_IND@NYJ,1,54,8,IND,NYJ,2,7,28,(9:08) A.Luck pass short right to R.Wayne to NYJ 21 for 7 yards (Y.Bell; A.Cromartie).,0,0,2012 -20121014_IND@NYJ,1,52,44,IND,NYJ,1,10,21,(7:44) (Shotgun) A.Luck pass incomplete short middle to D.Avery (M.Wilkerson).,0,0,2012 -20121014_IND@NYJ,1,52,39,IND,NYJ,2,10,21,(7:39) A.Luck pass incomplete short left to V.Ballard (B.Scott). PENALTY on NYJ-M.Wilkerson Roughing the Passer 10 yards enforced at NYJ 21 - No Play.,0,0,2012 -20121014_IND@NYJ,1,52,27,IND,NYJ,1,10,11,(7:27) V.Ballard left end to NYJ 10 for 1 yard (M.Wilkerson).,0,0,2012 -20121014_IND@NYJ,1,51,55,IND,NYJ,2,9,10,(6:55) A.Luck pass short right to T.Hilton to NYJ 2 for 8 yards (L.Landry).,0,0,2012 -20121014_IND@NYJ,1,51,10,IND,NYJ,3,1,2,(6:10) A.Luck pass incomplete short right to C.Fleener.,0,0,2012 -20121014_IND@NYJ,1,51,10,IND,NYJ,4,1,2,(6:10) A.Vinatieri 20 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121014_IND@NYJ,1,51,10,IND,NYJ,,,2,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,3,0,2012 -20121014_IND@NYJ,1,51,0,NYJ,IND,1,10,80,(6:00) M.Sanchez pass short right to J.Kerley pushed ob at NYJ 29 for 9 yards (J.Hughes).,0,3,2012 -20121014_IND@NYJ,1,50,35,NYJ,IND,2,1,71,(5:35) S.Greene right tackle to NYJ 32 for 3 yards (A.Bethea).,0,3,2012 -20121014_IND@NYJ,1,50,3,NYJ,IND,1,10,68,(5:03) (Shotgun) T.Tebow up the middle to NYJ 35 for 3 yards (D.Nevis; M.Fokou).,0,3,2012 -20121014_IND@NYJ,1,49,27,NYJ,IND,2,7,65,(4:27) S.Greene up the middle to IND 44 for 21 yards (A.Bethea).,0,3,2012 -20121014_IND@NYJ,1,48,45,NYJ,IND,1,10,44,(3:45) S.Greene up the middle to IND 40 for 4 yards (J.Hughes; J.Freeman).,0,3,2012 -20121014_IND@NYJ,1,48,7,NYJ,IND,2,6,40,(3:07) J.McKnight left end to IND 33 for 7 yards (J.Freeman).,0,3,2012 -20121014_IND@NYJ,1,47,29,NYJ,IND,1,10,33,(2:29) (Shotgun) M.Sanchez pass incomplete short left to J.Kerley (D.Freeney).,0,3,2012 -20121014_IND@NYJ,1,47,25,NYJ,IND,2,10,33,(2:25) S.Greene left tackle to IND 31 for 2 yards (J.Hughes; J.Freeman).,0,3,2012 -20121014_IND@NYJ,1,46,46,NYJ,IND,3,8,31,(1:46) (Shotgun) M.Sanchez pass short left to S.Hill to IND 22 for 9 yards (C.Vaughn).,0,3,2012 -20121014_IND@NYJ,1,46,11,NYJ,IND,1,10,22,(1:11) S.Greene right tackle to IND 15 for 7 yards (J.Freeman).,0,3,2012 -20121014_IND@NYJ,1,45,31,NYJ,IND,2,3,15,(:31) B.Powell up the middle to IND 11 for 4 yards (R.Mathews; K.Conner).,0,3,2012 -20121014_IND@NYJ,2,45,0,NYJ,IND,1,10,11,(15:00) S.Greene left tackle to IND 5 for 6 yards (T.Zbikowski; J.Freeman).,0,3,2012 -20121014_IND@NYJ,2,44,23,NYJ,IND,2,4,5,(14:23) (Shotgun) M.Sanchez pass incomplete short middle to B.Powell.,0,3,2012 -20121014_IND@NYJ,2,44,19,NYJ,IND,3,4,5,(14:19) (Shotgun) M.Sanchez pass short left to S.Hill for 5 yards TOUCHDOWN.,0,3,2012 -20121014_IND@NYJ,2,44,19,NYJ,IND,,,5,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,3,2012 -20121014_IND@NYJ,2,44,19,NYJ,IND,,,5,N.Folk kicks 72 yards from NYJ 35 to IND -7. C.Vaughn Touchback.,7,3,2012 -20121014_IND@NYJ,2,44,13,IND,NYJ,1,10,80,(14:13) D.Carter up the middle to IND 21 for 1 yard (M.Wilkerson).,3,7,2012 -20121014_IND@NYJ,2,43,34,IND,NYJ,2,9,79,(13:34) M.Moore right guard to IND 26 for 5 yards (M.Wilkerson; C.Pace). NYJ-M.Wilkerson was injured during the play.,3,7,2012 -20121014_IND@NYJ,2,43,2,IND,NYJ,3,4,74,(13:02) (Shotgun) A.Luck pass short left intended for R.Wayne INTERCEPTED by A.Cromartie at IND 33. A.Cromartie for 33 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NYJ-A.Maybin Personal Foul 15 yards enforced at IND 20.,3,7,2012 -20121014_IND@NYJ,2,42,51,NYJ,IND,1,10,35,(12:51) S.Greene right tackle to IND 30 for 5 yards (A.Johnson).,7,3,2012 -20121014_IND@NYJ,2,42,15,NYJ,IND,2,5,30,(12:15) S.Greene left end to IND 31 for -1 yards (J.Hughes; K.Conner).,7,3,2012 -20121014_IND@NYJ,2,41,31,NYJ,IND,3,6,31,(11:31) M.Sanchez pass short left to C.Schilens to IND 19 for 12 yards (C.Vaughn).,7,3,2012 -20121014_IND@NYJ,2,40,51,NYJ,IND,1,10,19,(10:51) S.Greene up the middle to IND 18 for 1 yard (J.Freeman; J.Hughes). PENALTY on IND-J.Hughes Defensive Offside 5 yards enforced at IND 19 - No Play.,7,3,2012 -20121014_IND@NYJ,2,40,29,NYJ,IND,1,5,14,(10:29) M.Sanchez pass short left to J.Kerley to IND 10 for 4 yards (C.Vaughn).,7,3,2012 -20121014_IND@NYJ,2,39,52,NYJ,IND,2,1,10,(9:52) S.Greene left tackle for 10 yards TOUCHDOWN.,7,3,2012 -20121014_IND@NYJ,2,39,52,NYJ,IND,,,10,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,3,2012 -20121014_IND@NYJ,2,39,52,NYJ,IND,,,10,N.Folk kicks 67 yards from NYJ 35 to IND -2. C.Vaughn to IND 15 for 17 yards (C.Schilens).,14,3,2012 -20121014_IND@NYJ,2,39,42,IND,NYJ,1,10,85,(9:42) (Shotgun) A.Luck pass incomplete short right to T.Hilton (K.Wilson).,3,14,2012 -20121014_IND@NYJ,2,39,37,IND,NYJ,2,10,85,(9:37) (Shotgun) A.Luck pass short left to C.Fleener pushed ob at IND 26 for 11 yards (E.Lankster).,3,14,2012 -20121014_IND@NYJ,2,39,23,IND,NYJ,1,10,74,(9:23) A.Luck pass short left to D.Avery to IND 37 for 11 yards (L.Landry; E.Lankster).,3,14,2012 -20121014_IND@NYJ,2,38,54,IND,NYJ,1,10,63,(8:54) (Shotgun) M.Moore up the middle to IND 40 for 3 yards (D.Harris; M.Devito).,3,14,2012 -20121014_IND@NYJ,2,38,18,IND,NYJ,2,7,60,(8:18) (Shotgun) A.Luck pass short right to D.Allen to NYJ 39 for 21 yards (E.Lankster). Penalty on NYJ-E.Lankster Defensive Holding declined.,3,14,2012 -20121014_IND@NYJ,2,37,47,IND,NYJ,1,10,39,(7:47) A.Luck pass short middle to C.Fleener to NYJ 32 for 7 yards (D.Harris).,3,14,2012 -20121014_IND@NYJ,2,37,47,IND,NYJ,2,3,32,(7:47) A.Luck pass incomplete deep right (A.Cromartie).,3,14,2012 -20121014_IND@NYJ,2,37,12,IND,NYJ,3,3,32,(7:12) (Shotgun) A.Luck pass short right intended for R.Wayne INTERCEPTED by A.Cromartie at NYJ 24. A.Cromartie for 76 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NYJ-A.Cromartie Defensive Pass Interference 12 yards enforced at NYJ 32 - No Play.,3,14,2012 -20121014_IND@NYJ,2,37,1,IND,NYJ,1,10,20,(7:01) A.Luck pass incomplete deep left to D.Avery. PENALTY on IND-J.Linkenbach Illegal Use of Hands 10 yards enforced at NYJ 20 - No Play.,3,14,2012 -20121014_IND@NYJ,2,36,56,IND,NYJ,1,20,30,(6:56) (Shotgun) A.Luck sacked at NYJ 32 for -2 yards (A.Allen).,3,14,2012 -20121014_IND@NYJ,2,36,24,IND,NYJ,2,22,32,(6:24) (Shotgun) A.Luck pass incomplete short right to N.Palmer.,3,14,2012 -20121014_IND@NYJ,2,36,19,IND,NYJ,3,22,32,(6:19) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,3,14,2012 -20121014_IND@NYJ,2,36,11,IND,NYJ,4,22,32,(6:11) A.Vinatieri 50 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,3,14,2012 -20121014_IND@NYJ,2,36,11,IND,NYJ,,,32,P.McAfee kicks 69 yards from IND 35 to NYJ -4. J.McKnight to NYJ 30 for 34 yards (M.Moore; D.Butler).,6,14,2012 -20121014_IND@NYJ,2,35,59,NYJ,IND,1,10,70,(5:59) (Shotgun) S.Greene right end to NYJ 49 for 19 yards (A.Bethea).,14,6,2012 -20121014_IND@NYJ,2,35,21,NYJ,IND,1,10,51,(5:21) S.Greene left tackle to IND 45 for 6 yards (T.Zbikowski; J.Hughes).,14,6,2012 -20121014_IND@NYJ,2,34,43,NYJ,IND,2,4,45,(4:43) PENALTY on NYJ-M.Slauson False Start 5 yards enforced at IND 45 - No Play.,14,6,2012 -20121014_IND@NYJ,2,34,22,NYJ,IND,2,9,50,(4:22) M.Sanchez pass short middle to C.Schilens to IND 39 for 11 yards (A.Bethea).,14,6,2012 -20121014_IND@NYJ,2,33,40,NYJ,IND,1,10,39,(3:40) (Shotgun) B.Powell up the middle to IND 41 for -2 yards (J.Freeman).,14,6,2012 -20121014_IND@NYJ,2,33,6,NYJ,IND,2,12,41,(3:06) M.Sanchez pass incomplete short left to C.Schilens [J.Hughes].,14,6,2012 -20121014_IND@NYJ,2,32,58,NYJ,IND,3,12,41,(2:58) (Shotgun) M.Sanchez pass short left to B.Powell to IND 40 for 1 yard (D.Butler).,14,6,2012 -20121014_IND@NYJ,2,32,19,NYJ,IND,4,11,40,(2:19) (Punt formation) T.Tebow pass short right to N.Bellore to IND 17 for 23 yards (T.Hilton).,14,6,2012 -20121014_IND@NYJ,2,32,0,NYJ,IND,1,10,17,(2:00) S.Greene left end to IND 14 for 3 yards (T.Zbikowski).,14,6,2012 -20121014_IND@NYJ,2,31,27,NYJ,IND,2,7,14,(1:27) (Shotgun) M.Sanchez pass short middle to D.Keller to IND 8 for 6 yards (D.Butler; D.Nevis).,14,6,2012 -20121014_IND@NYJ,2,31,9,NYJ,IND,3,1,8,(1:09) (Shotgun) T.Tebow up the middle to IND 5 for 3 yards (J.Freeman).,14,6,2012 -20121014_IND@NYJ,2,30,31,NYJ,IND,1,5,5,(:31) (Shotgun) M.Sanchez pass short middle to J.Hill for 5 yards TOUCHDOWN.,14,6,2012 -20121014_IND@NYJ,2,30,31,NYJ,IND,,,5,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,14,6,2012 -20121014_IND@NYJ,2,30,31,NYJ,IND,,,5,N.Folk kicks 62 yards from NYJ 35 to IND 3. C.Vaughn to IND 22 for 19 yards (N.Bellore).,21,6,2012 -20121014_IND@NYJ,2,30,21,IND,NYJ,1,10,78,(:21) A.Luck kneels to IND 21 for -1 yards.,6,21,2012 -20121014_IND@NYJ,3,30,0,IND,NYJ,,,78,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,6,21,2012 -20121014_IND@NYJ,3,30,0,NYJ,IND,1,10,80,(15:00) S.Greene up the middle to NYJ 24 for 4 yards (A.Johnson).,21,6,2012 -20121014_IND@NYJ,3,29,21,NYJ,IND,2,6,76,(14:21) M.Sanchez pass incomplete short left to J.Cumberland (K.Conner).,21,6,2012 -20121014_IND@NYJ,3,29,16,NYJ,IND,3,6,76,(14:16) (Shotgun) M.Sanchez pass incomplete deep left to C.Schilens [J.Hughes].,21,6,2012 -20121014_IND@NYJ,3,29,12,NYJ,IND,4,6,76,(14:12) R.Malone punts 52 yards to IND 24 Center-T.Purdum fair catch by T.Hilton.,21,6,2012 -20121014_IND@NYJ,3,29,4,IND,NYJ,1,10,76,(14:04) V.Ballard left tackle to IND 25 for 1 yard (C.Pace).,6,21,2012 -20121014_IND@NYJ,3,28,26,IND,NYJ,2,9,75,(13:26) A.Luck pass short left to T.Hilton pushed ob at IND 41 for 16 yards (Y.Bell).,6,21,2012 -20121014_IND@NYJ,3,27,56,IND,NYJ,1,10,59,(12:56) V.Ballard up the middle to IND 45 for 4 yards (M.Wilkerson).,6,21,2012 -20121014_IND@NYJ,3,27,16,IND,NYJ,2,6,55,(12:16) A.Luck pass incomplete deep right to R.Wayne. PENALTY on NYJ-A.Cromartie Illegal Contact 5 yards enforced at IND 45 - No Play.,6,21,2012 -20121014_IND@NYJ,3,27,10,IND,NYJ,1,10,50,(12:10) D.Carter up the middle to NYJ 45 for 5 yards (Y.Bell; L.Landry).,6,21,2012 -20121014_IND@NYJ,3,26,31,IND,NYJ,2,5,45,(11:31) V.Ballard up the middle to NYJ 43 for 2 yards (M.Wilkerson; B.Scott).,6,21,2012 -20121014_IND@NYJ,3,25,52,IND,NYJ,3,3,43,(10:52) (Shotgun) A.Luck pass incomplete short right. PENALTY on IND-A.Luck Intentional Grounding 12 yards enforced at NYJ 43.,6,21,2012 -20121014_IND@NYJ,3,25,52,IND,NYJ,4,15,55,(10:52) P.McAfee punts 55 yards to end zone Center-M.Overton Touchback.,6,21,2012 -20121014_IND@NYJ,3,25,37,NYJ,IND,1,10,80,(10:37) S.Greene up the middle to NYJ 23 for 3 yards (A.Johnson).,21,6,2012 -20121014_IND@NYJ,3,25,3,NYJ,IND,2,7,77,(10:03) S.Greene up the middle to NYJ 28 for 5 yards (J.Freeman; R.Mathews).,21,6,2012 -20121014_IND@NYJ,3,24,24,NYJ,IND,3,2,72,(9:24) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley.,21,6,2012 -20121014_IND@NYJ,3,24,24,NYJ,IND,4,2,72,(9:24) R.Malone punts 49 yards to IND 23 Center-T.Purdum fair catch by T.Hilton.,21,6,2012 -20121014_IND@NYJ,3,24,10,IND,NYJ,1,10,77,(9:10) A.Luck pass incomplete deep left to D.Avery (L.Landry).,6,21,2012 -20121014_IND@NYJ,3,24,2,IND,NYJ,2,10,77,(9:02) A.Luck pass incomplete short right to D.Allen.,6,21,2012 -20121014_IND@NYJ,3,23,58,IND,NYJ,3,10,77,(8:58) (Shotgun) A.Luck pass deep right to D.Avery to IND 39 for 16 yards (Y.Bell).,6,21,2012 -20121014_IND@NYJ,3,23,19,IND,NYJ,1,10,61,(8:19) V.Ballard up the middle to IND 44 for 5 yards (L.Landry; B.Scott).,6,21,2012 -20121014_IND@NYJ,3,22,34,IND,NYJ,2,5,56,(7:34) A.Luck sacked at IND 30 for -14 yards (Q.Coples). PENALTY on NYJ-Q.Coples Face Mask (15 Yards) 15 yards enforced at IND 30.,6,21,2012 -20121014_IND@NYJ,3,22,34,IND,NYJ,1,10,55,(7:34) D.Carter up the middle to IND 48 for 3 yards (M.Devito; L.Landry).,6,21,2012 -20121014_IND@NYJ,3,21,30,IND,NYJ,2,7,52,(6:30) D.Carter up the middle to NYJ 48 for 4 yards (D.Muir).,6,21,2012 -20121014_IND@NYJ,3,21,30,IND,NYJ,3,3,48,(6:30) A.Luck pass incomplete deep left to D.Avery.,6,21,2012 -20121014_IND@NYJ,3,21,30,IND,NYJ,4,3,48,(6:30) P.McAfee punts 39 yards to NYJ 9 Center-M.Overton fair catch by J.Kerley.,6,21,2012 -20121014_IND@NYJ,3,20,30,NYJ,IND,1,10,91,(5:30) B.Powell up the middle to NYJ 17 for 8 yards (J.Freeman; J.Hughes).,21,6,2012 -20121014_IND@NYJ,3,19,52,NYJ,IND,2,2,83,(4:52) B.Powell up the middle to NYJ 21 for 4 yards (J.Freeman).,21,6,2012 -20121014_IND@NYJ,3,19,12,NYJ,IND,1,10,79,(4:12) J.McKnight right tackle to NYJ 24 for 3 yards (A.Johnson).,21,6,2012 -20121014_IND@NYJ,3,18,31,NYJ,IND,2,7,76,(3:31) M.Sanchez pass short middle to S.Hill to NYJ 33 for 9 yards (J.Freeman).,21,6,2012 -20121014_IND@NYJ,3,17,44,NYJ,IND,1,10,67,(2:44) J.McKnight up the middle to IND 6 for 61 yards (T.Zbikowski).,21,6,2012 -20121014_IND@NYJ,3,17,24,NYJ,IND,1,6,6,(2:24) S.Greene up the middle to IND 4 for 2 yards (A.Dixon).,21,6,2012 -20121014_IND@NYJ,3,16,40,NYJ,IND,2,4,4,(1:40) S.Greene right tackle for 4 yards TOUCHDOWN.,21,6,2012 -20121014_IND@NYJ,3,16,40,NYJ,IND,,,4,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,21,6,2012 -20121014_IND@NYJ,3,16,40,NYJ,IND,,,4,N.Folk kicks 61 yards from NYJ 35 to IND 4. L.Brazill to IND 24 for 20 yards (E.Lankster).,28,6,2012 -20121014_IND@NYJ,3,16,32,IND,NYJ,1,10,76,(1:32) (Shotgun) A.Luck pass short left to D.Avery to IND 33 for 9 yards (Y.Bell).,6,28,2012 -20121014_IND@NYJ,3,16,1,IND,NYJ,2,1,67,(1:01) A.Luck pass short right to R.Wayne pushed ob at IND 45 for 12 yards (A.Cromartie).,6,28,2012 -20121014_IND@NYJ,3,15,41,IND,NYJ,1,10,55,(:41) (Shotgun) A.Luck pass short middle to C.Fleener to NYJ 43 for 12 yards (L.Landry).,6,28,2012 -20121014_IND@NYJ,3,15,13,IND,NYJ,1,10,43,(:13) A.Luck pass incomplete short left to C.Fleener (E.Lankster).,6,28,2012 -20121014_IND@NYJ,3,15,9,IND,NYJ,2,10,43,(:09) A.Luck pass short right to L.Brazill pushed ob at NYJ 29 for 14 yards (Y.Bell).,6,28,2012 -20121014_IND@NYJ,4,15,0,IND,NYJ,1,10,29,(15:00) (Shotgun) A.Luck pass incomplete short right to V.Ballard.,6,28,2012 -20121014_IND@NYJ,4,14,54,IND,NYJ,2,10,29,(14:54) (Shotgun) A.Luck pass incomplete deep left to R.Wayne [A.Maybin].,6,28,2012 -20121014_IND@NYJ,4,14,48,IND,NYJ,3,10,29,(14:48) (Shotgun) A.Luck pass incomplete short right to D.Avery.,6,28,2012 -20121014_IND@NYJ,4,14,45,IND,NYJ,4,10,29,(14:45) A.Vinatieri 47 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,6,28,2012 -20121014_IND@NYJ,4,14,45,IND,NYJ,,,29,P.McAfee kicks 65 yards from IND 35 to NYJ 0. A.Cromartie to NYJ 20 for 20 yards (M.Harvey; J.Lefeged).,9,28,2012 -20121014_IND@NYJ,4,14,40,NYJ,IND,1,10,80,(14:40) S.Greene up the middle to NYJ 20 for no gain (K.Conner).,28,9,2012 -20121014_IND@NYJ,4,13,56,NYJ,IND,2,10,80,(13:56) M.Sanchez pass short middle to J.Kerley to NYJ 31 for 11 yards (J.Gordy).,28,9,2012 -20121014_IND@NYJ,4,13,15,NYJ,IND,1,10,69,(13:15) S.Greene up the middle to NYJ 37 for 6 yards (D.Freeney; A.Bethea).,28,9,2012 -20121014_IND@NYJ,4,12,38,NYJ,IND,2,4,63,(12:38) S.Greene up the middle to NYJ 38 for 1 yard (D.Nevis; A.Bethea).,28,9,2012 -20121014_IND@NYJ,4,11,56,NYJ,IND,3,3,62,(11:56) S.Greene up the middle to NYJ 42 for 4 yards (J.Freeman; M.Fokou).,28,9,2012 -20121014_IND@NYJ,4,11,15,NYJ,IND,1,10,58,(11:15) S.Greene up the middle to NYJ 49 for 7 yards (C.Geathers).,28,9,2012 -20121014_IND@NYJ,4,10,35,NYJ,IND,2,3,51,(10:35) S.Greene up the middle to NYJ 49 for no gain (K.Conner; A.Dixon).,28,9,2012 -20121014_IND@NYJ,4,9,53,NYJ,IND,3,3,51,(9:53) M.Sanchez sacked at NYJ 43 for -6 yards (J.Hughes).,28,9,2012 -20121014_IND@NYJ,4,9,28,NYJ,IND,4,9,57,(9:28) R.Malone punts 57 yards to end zone Center-T.Purdum Touchback.,28,9,2012 -20121014_IND@NYJ,4,9,20,IND,NYJ,1,10,80,(9:20) (Shotgun) A.Luck pass incomplete short left to D.Avery.,9,28,2012 -20121014_IND@NYJ,4,9,16,IND,NYJ,2,10,80,(9:16) (Shotgun) M.Moore left tackle to IND 17 for -3 yards (Q.Coples).,9,28,2012 -20121014_IND@NYJ,4,8,35,IND,NYJ,3,13,83,(8:35) (Shotgun) A.Luck pass incomplete deep middle to R.Wayne. PENALTY on NYJ-A.Cromartie Defensive Pass Interference 20 yards enforced at IND 17 - No Play.,9,28,2012 -20121014_IND@NYJ,4,8,27,IND,NYJ,1,10,63,(8:27) A.Luck pass incomplete short left to R.Wayne.,9,28,2012 -20121014_IND@NYJ,4,8,23,IND,NYJ,2,10,63,(8:23) A.Luck pass short middle to C.Fleener to IND 49 for 12 yards (Y.Bell).,9,28,2012 -20121014_IND@NYJ,4,7,58,IND,NYJ,1,10,51,(7:58) A.Luck pass incomplete short left to R.Wayne.,9,28,2012 -20121014_IND@NYJ,4,7,54,IND,NYJ,2,10,51,(7:54) (Shotgun) A.Luck pass incomplete short right. New York Jets challenged the pass completion ruling and the play was REVERSED. (Shotgun) A.Luck pass incomplete short right to D.Avery.,9,28,2012 -20121014_IND@NYJ,4,7,50,IND,NYJ,3,10,51,(7:50) (Shotgun) A.Luck pass short right to R.Wayne to NYJ 38 for 13 yards (A.Cromartie).,9,28,2012 -20121014_IND@NYJ,4,7,24,IND,NYJ,1,10,38,(7:24) A.Luck pass deep middle to R.Wayne to NYJ 12 for 26 yards (L.Landry).,9,28,2012 -20121014_IND@NYJ,4,6,47,IND,NYJ,1,10,12,(6:47) A.Luck pass deep left intended for D.Avery INTERCEPTED by E.Lankster at NYJ -6. Touchback.,9,28,2012 -20121014_IND@NYJ,4,6,39,NYJ,IND,1,10,80,(6:39) S.Greene left end to NYJ 36 for 16 yards (J.Freeman).,28,9,2012 -20121014_IND@NYJ,4,5,57,NYJ,IND,1,10,64,(5:57) S.Greene left end to NYJ 38 for 2 yards (J.Hughes).,28,9,2012 -20121014_IND@NYJ,4,5,20,NYJ,IND,2,8,62,(5:20) S.Greene right tackle to NYJ 41 for 3 yards (A.Johnson).,28,9,2012 -20121014_IND@NYJ,4,4,37,NYJ,IND,3,5,59,(4:37) (Shotgun) T.Tebow right tackle to NYJ 41 for no gain (A.Bethea; M.Fokou).,28,9,2012 -20121014_IND@NYJ,4,4,31,NYJ,IND,4,5,59,(4:31) R.Malone punts 52 yards to IND 7 Center-T.Purdum fair catch by T.Hilton.,28,9,2012 -20121014_IND@NYJ,4,3,49,IND,NYJ,1,10,93,(3:49) A.Luck pass short left to T.Hilton to IND 14 for 7 yards (Y.Bell).,9,28,2012 -20121014_IND@NYJ,4,3,49,IND,NYJ,2,3,86,(3:49) A.Luck sacked at IND 7 for -7 yards (M.Wilkerson). FUMBLES (M.Wilkerson) RECOVERED by NYJ-D.Harris at IND 14. D.Harris to IND 14 for no gain (M.McGlynn).,9,28,2012 -20121014_IND@NYJ,4,3,49,NYJ,IND,1,10,14,(3:49) S.Greene left tackle to IND 10 for 4 yards (J.Freeman; A.Bethea).,28,9,2012 -20121014_IND@NYJ,4,3,9,NYJ,IND,2,6,10,(3:09) S.Greene right end to IND 4 for 6 yards (T.Zbikowski).,28,9,2012 -20121014_IND@NYJ,4,2,23,NYJ,IND,1,4,4,(2:23) S.Greene up the middle to IND 3 for 1 yard (J.Hickman).,28,9,2012 -20121014_IND@NYJ,4,2,0,NYJ,IND,2,3,3,(2:00) (Shotgun) T.Tebow up the middle to IND 2 for 1 yard (K.Conner; J.Hickman).,28,9,2012 -20121014_IND@NYJ,4,1,18,NYJ,IND,3,2,2,(1:18) S.Greene up the middle for 2 yards TOUCHDOWN.,28,9,2012 -20121014_IND@NYJ,4,1,18,NYJ,IND,,,2,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,28,9,2012 -20121014_IND@NYJ,4,1,18,NYJ,IND,,,2,N.Folk kicks 62 yards from NYJ 35 to IND 3. L.Brazill to IND 18 for 15 yards (I.Trufant). FUMBLES (I.Trufant) RECOVERED by NYJ-J.Bush at IND 19. J.Bush ran ob at IND 19 for no gain. Play Challenged by Replay Assistant and REVERSED. N.Folk kicks 62 yards from NYJ 35 to IND 3. L.Brazill to IND 18 for 15 yards (I.Trufant).,35,9,2012 -20121014_IND@NYJ,4,1,3,IND,NYJ,1,10,82,(1:03) A.Luck pass short right to V.Ballard pushed ob at IND 23 for 5 yards (A.Cromartie).,9,35,2012 -20121014_IND@NYJ,4,0,57,IND,NYJ,2,1,73,(:57) A.Luck pass short right to V.Ballard to IND 35 for 8 yards (D.Davis).,9,35,2012 -20121014_IND@NYJ,4,0,49,IND,NYJ,1,10,65,(:49) A.Luck pass incomplete short right to D.Avery [L.Landry].,9,35,2012 -20121014_IND@NYJ,4,0,46,IND,NYJ,2,10,65,(:46) (Shotgun) A.Luck sacked at IND 28 for -7 yards (sack split by Q.Coples and A.Maybin).,9,35,2012 -20121014_IND@NYJ,4,0,12,IND,NYJ,3,17,72,(:12) A.Luck pass deep right to R.Wayne to NYJ 43 for 29 yards (K.Wilson). FUMBLES (K.Wilson) RECOVERED by NYJ-D.Davis at NYJ 35. D.Davis to NYJ 31 for -4 yards (D.Avery).,9,35,2012 -20121014_IND@NYJ,4,0,2,NYJ,IND,1,10,69,(:02) M.Sanchez kneels to NYJ 30 for -1 yards.,35,9,2012 -20121014_IND@NYJ,4,0,2,NYJ,IND,,,69,                      ,35,9,2012 -20121014_DET@PHI,1,0,0,PHI,DET,,,69,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,0,0,2012 -20121014_DET@PHI,1,60,0,DET,PHI,1,10,80,(15:00) M.Stafford pass incomplete short right to C.Johnson.,0,0,2012 -20121014_DET@PHI,1,59,52,DET,PHI,2,10,80,(14:52) (Shotgun) M.Leshoure up the middle to DET 25 for 5 yards (D.Ryans).,0,0,2012 -20121014_DET@PHI,1,59,15,DET,PHI,3,5,75,(14:15) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (N.Asomugha).,0,0,2012 -20121014_DET@PHI,1,59,11,DET,PHI,4,5,75,(14:11) N.Harris punts 38 yards to PHI 37 Center-D.Muhlbach fair catch by M.Gilyard.,0,0,2012 -20121014_DET@PHI,1,59,4,PHI,DET,1,10,63,(14:04) M.Vick pass short left to C.Harbor to PHI 43 for 6 yards (S.Tulloch).,0,0,2012 -20121014_DET@PHI,1,58,34,PHI,DET,2,4,57,(13:34) (No Huddle) D.Jackson right end to PHI 29 for -14 yards (C.Avril).,0,0,2012 -20121014_DET@PHI,1,58,1,PHI,DET,3,18,71,(13:01) (Shotgun) PENALTY on PHI-D.Bell False Start 5 yards enforced at PHI 29 - No Play.,0,0,2012 -20121014_DET@PHI,1,57,54,PHI,DET,3,23,76,(12:54) (Shotgun) M.Vick pass short right to B.Celek to PHI 35 for 11 yards (J.Durant).,0,0,2012 -20121014_DET@PHI,1,57,15,PHI,DET,4,12,65,(12:15) M.McBriar punts 47 yards to DET 18 Center-J.Dorenbos. S.Logan to PHI 34 for 48 yards (C.Matthews).,0,0,2012 -20121014_DET@PHI,1,56,58,DET,PHI,1,10,34,(11:58) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler.,0,0,2012 -20121014_DET@PHI,1,56,53,DET,PHI,2,10,34,(11:53) N.Burleson right end to PHI 28 for 6 yards (M.Kendricks).,0,0,2012 -20121014_DET@PHI,1,56,11,DET,PHI,3,4,28,(11:11) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,0,0,2012 -20121014_DET@PHI,1,56,8,DET,PHI,4,4,28,(11:08) J.Hanson 46 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121014_DET@PHI,1,56,8,DET,PHI,,,28,J.Hanson kicks 60 yards from DET 35 to PHI 5. B.Boykin pushed ob at PHI 35 for 30 yards (R.Lewis).,3,0,2012 -20121014_DET@PHI,1,55,56,PHI,DET,1,10,65,(10:56) M.Vick pass incomplete deep right to D.Jackson [N.Suh].,0,3,2012 -20121014_DET@PHI,1,55,50,PHI,DET,2,10,65,(10:50) L.McCoy right tackle to PHI 33 for -2 yards (K.Vanden Bosch).,0,3,2012 -20121014_DET@PHI,1,55,15,PHI,DET,3,12,67,(10:15) (Shotgun) PENALTY on DET-N.Fairley Encroachment 5 yards enforced at PHI 33 - No Play.,0,3,2012 -20121014_DET@PHI,1,54,57,PHI,DET,3,7,62,(9:57) M.Vick pass incomplete short middle to B.Celek (D.Levy).,0,3,2012 -20121014_DET@PHI,1,54,51,PHI,DET,4,7,62,(9:51) M.McBriar punts 62 yards to end zone Center-J.Dorenbos Touchback.,0,3,2012 -20121014_DET@PHI,1,54,43,DET,PHI,1,10,80,(9:43) (Shotgun) M.Leshoure left end to DET 34 for 14 yards (D.Rodgers-Cromartie; A.Jordan).,3,0,2012 -20121014_DET@PHI,1,54,0,DET,PHI,1,10,66,(9:00) M.Stafford pass short right to B.Pettigrew to DET 44 for 10 yards (M.Kendricks).,3,0,2012 -20121014_DET@PHI,1,53,20,DET,PHI,1,10,56,(8:20) (Shotgun) J.Bell up the middle to PHI 43 for 13 yards (N.Asomugha).,3,0,2012 -20121014_DET@PHI,1,52,40,DET,PHI,1,10,43,(7:40) PENALTY on DET-C.Johnson False Start 5 yards enforced at PHI 43 - No Play.,3,0,2012 -20121014_DET@PHI,1,52,17,DET,PHI,1,15,48,(7:17) (Shotgun) PENALTY on DET-D.Raiola False Start 5 yards enforced at PHI 48 - No Play.,3,0,2012 -20121014_DET@PHI,1,52,6,DET,PHI,1,20,53,(7:06) M.Stafford pass deep middle to C.Johnson to PHI 25 for 28 yards (N.Asomugha).,3,0,2012 -20121014_DET@PHI,1,51,28,DET,PHI,1,10,25,(6:28) M.Leshoure up the middle to PHI 22 for 3 yards (C.Thornton).,3,0,2012 -20121014_DET@PHI,1,50,47,DET,PHI,2,7,22,(5:47) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (N.Asomugha).,3,0,2012 -20121014_DET@PHI,1,50,42,DET,PHI,3,7,22,(5:42) (Shotgun) M.Stafford pass incomplete short left to N.Burleson. PENALTY on PHI-C.Marsh Defensive Holding 5 yards enforced at PHI 22 - No Play.,3,0,2012 -20121014_DET@PHI,1,50,38,DET,PHI,1,10,17,(5:38) M.Leshoure up the middle to PHI 13 for 4 yards (N.Allen; J.Babin).,3,0,2012 -20121014_DET@PHI,1,49,52,DET,PHI,2,6,13,(4:52) (Shotgun) PENALTY on DET-G.Cherilus Unnecessary Roughness 15 yards enforced at PHI 13 - No Play. Penalty on DET-C.Johnson False Start declined.,3,0,2012 -20121014_DET@PHI,1,49,37,DET,PHI,2,21,28,(4:37) (Shotgun) M.Stafford pass short left to M.Leshoure to PHI 15 for 13 yards (B.Boykin).,3,0,2012 -20121014_DET@PHI,1,49,6,DET,PHI,3,8,15,(4:06) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler [T.Cole].,3,0,2012 -20121014_DET@PHI,1,49,1,DET,PHI,4,8,15,(4:01) J.Hanson 34 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,3,0,2012 -20121014_DET@PHI,1,49,1,DET,PHI,,,15,J.Hanson kicks 67 yards from DET 35 to PHI -2. B.Boykin to PHI 29 for 31 yards (J.Bell).,6,0,2012 -20121014_DET@PHI,1,48,52,PHI,DET,1,10,71,(3:52) M.Vick pass incomplete short left to B.Celek. PENALTY on DET-SamL.Hill Roughing the Passer 15 yards enforced at PHI 29.,0,6,2012 -20121014_DET@PHI,1,48,46,PHI,DET,1,10,56,(3:46) (Shotgun) M.Vick scrambles up the middle to DET 44 for 12 yards (S.Tulloch).,0,6,2012 -20121014_DET@PHI,1,48,5,PHI,DET,1,10,50,(3:05) M.Vick FUMBLES (Aborted) at DET 47 and recovers at 50. M.Vick to 50 for no gain (N.Suh).,0,6,2012 -20121014_DET@PHI,1,47,34,PHI,DET,2,16,50,(2:34) L.McCoy up the middle to DET 45 for 5 yards (L.Delmas).,0,6,2012 -20121014_DET@PHI,1,46,58,PHI,DET,3,11,45,(1:58) (Shotgun) PENALTY on DET-W.Young Encroachment 5 yards enforced at DET 45 - No Play.,0,6,2012 -20121014_DET@PHI,1,46,49,PHI,DET,3,6,40,(1:49) (Shotgun) M.Vick pass short left to R.Cooper to DET 32 for 8 yards (D.Bentley) [S.Tulloch].,0,6,2012 -20121014_DET@PHI,1,46,12,PHI,DET,1,10,32,(1:12) M.Vick pass short right to L.McCoy to DET 29 for 3 yards (J.Lacey).,0,6,2012 -20121014_DET@PHI,1,45,35,DET,PHI,2,7,45,(:35) (Shotgun) M.Vick Aborted. D.Reynolds FUMBLES at DET 34 RECOVERED by DET-S.Tulloch at DET 45. S.Tulloch to DET 45 for no gain (D.Bell).,6,0,2012 -20121014_DET@PHI,1,45,25,DET,PHI,1,10,55,(:25) (Shotgun) M.Stafford pass short left to M.Leshoure to PHI 43 for 12 yards (A.Jordan). Penalty on PHI-D.Rodgers-Cromartie Defensive Holding declined.,6,0,2012 -20121014_DET@PHI,2,45,0,DET,PHI,1,10,43,(15:00) PENALTY on PHI-C.Thornton Encroachment 5 yards enforced at PHI 43 - No Play.,6,0,2012 -20121014_DET@PHI,2,45,0,DET,PHI,1,5,38,(15:00) (Shotgun) M.Stafford pass deep right intended for C.Johnson INTERCEPTED by N.Asomugha at PHI -5. Touchback.,6,0,2012 -20121014_DET@PHI,2,44,53,PHI,DET,1,10,80,(14:53) L.McCoy up the middle to PHI 19 for -1 yards (N.Suh).,0,6,2012 -20121014_DET@PHI,2,44,15,PHI,DET,2,11,81,(14:15) (Shotgun) M.Vick pass short left to R.Cooper to PHI 29 for 10 yards (D.Bentley).,0,6,2012 -20121014_DET@PHI,2,43,36,PHI,DET,3,1,71,(13:36) (Shotgun) M.Vick pass short right to L.McCoy to PHI 26 for -3 yards (L.Delmas).,0,6,2012 -20121014_DET@PHI,2,42,55,PHI,DET,4,4,74,(12:55) M.McBriar punts 64 yards to DET 10 Center-J.Dorenbos. S.Logan to DET 20 for 10 yards (A.Jordan).,0,6,2012 -20121014_DET@PHI,2,42,43,DET,PHI,1,10,80,(12:43) M.Stafford pass short left to B.Pettigrew to DET 36 for 16 yards (K.Coleman).,6,0,2012 -20121014_DET@PHI,2,42,27,DET,PHI,1,10,64,(12:27) J.Bell left guard to DET 45 for 9 yards (K.Coleman).,6,0,2012 -20121014_DET@PHI,2,41,51,DET,PHI,2,1,55,(11:51) J.Bell right end to DET 44 for -1 yards (D.Ryans).,6,0,2012 -20121014_DET@PHI,2,41,6,DET,PHI,3,2,56,(11:06) J.Bell left tackle to DET 42 for -2 yards (D.Ryans).,6,0,2012 -20121014_DET@PHI,2,40,29,DET,PHI,4,4,58,(10:29) N.Harris punts 42 yards to PHI 16 Center-D.Muhlbach fair catch by M.Gilyard.,6,0,2012 -20121014_DET@PHI,2,40,21,PHI,DET,1,10,84,(10:21) (Shotgun) M.Vick pass short right to D.Jackson to PHI 23 for 7 yards (L.Delmas).,0,6,2012 -20121014_DET@PHI,2,39,46,PHI,DET,2,3,77,(9:46) (No Huddle Shotgun) M.Vick pass short right to B.Celek to PHI 28 for 5 yards (J.Durant).,0,6,2012 -20121014_DET@PHI,2,39,0,PHI,DET,1,10,72,(9:00) M.Vick pass incomplete short left to J.Maclin. PENALTY on DET-D.Bentley Defensive Pass Interference 6 yards enforced at PHI 28 - No Play.,0,6,2012 -20121014_DET@PHI,2,38,57,PHI,DET,1,10,66,(8:57) L.McCoy right end ran ob at PHI 40 for 6 yards (A.Spievey).,0,6,2012 -20121014_DET@PHI,2,38,43,PHI,DET,2,4,60,(8:43) (No Huddle) L.McCoy right end to PHI 43 for 3 yards (S.Tulloch).,0,6,2012 -20121014_DET@PHI,2,38,28,PHI,DET,3,1,57,(8:28) (Shotgun) PENALTY on DET-N.Fairley Encroachment 5 yards enforced at PHI 43 - No Play.,0,6,2012 -20121014_DET@PHI,2,38,28,PHI,DET,1,10,52,(8:28) M.Vick pass deep right intended for J.Avant INTERCEPTED by L.Delmas [K.Vanden Bosch] at DET 14. L.Delmas to DET 14 for no gain (J.Avant).,0,6,2012 -20121014_DET@PHI,2,38,20,DET,PHI,1,10,86,(8:20) (Shotgun) M.Leshoure right tackle to DET 14 for no gain (B.Graham).,6,0,2012 -20121014_DET@PHI,2,37,43,DET,PHI,2,10,86,(7:43) M.Stafford pass short right to B.Pettigrew to DET 26 for 12 yards (D.Ryans).,6,0,2012 -20121014_DET@PHI,2,37,0,DET,PHI,2,70,74,(7:00) PENALTY on DET-J.Backus False Start 5 yards enforced at DET 26 - No Play.,6,0,2012 -20121014_DET@PHI,2,37,0,DET,PHI,1,15,79,(7:00) M.Leshoure up the middle to DET 23 for 2 yards (D.Tapp).,6,0,2012 -20121014_DET@PHI,2,36,10,DET,PHI,2,13,77,(6:10) (Shotgun) M.Stafford sacked at DET 20 for -3 yards (F.Cox). PENALTY on PHI-F.Cox Illegal Use of Hands 5 yards enforced at DET 23 - No Play. Penalty on PHI-D.Ryans Defensive Holding declined.,6,0,2012 -20121014_DET@PHI,2,35,49,DET,PHI,1,10,72,(5:49) M.Stafford pass incomplete deep right to T.Young.,6,0,2012 -20121014_DET@PHI,2,35,41,DET,PHI,2,10,72,(5:41) (Shotgun) M.Leshoure right tackle to DET 35 for 7 yards (D.Ryans).,6,0,2012 -20121014_DET@PHI,2,34,58,DET,PHI,3,3,65,(4:58) (Shotgun) M.Stafford pass incomplete short left to N.Burleson.,6,0,2012 -20121014_DET@PHI,2,34,54,DET,PHI,4,3,65,(4:54) N.Harris punts 48 yards to PHI 17 Center-D.Muhlbach. M.Gilyard to PHI 21 for 4 yards (K.Williams).,6,0,2012 -20121014_DET@PHI,2,34,44,PHI,DET,1,10,79,(4:44) M.Vick pass incomplete short right to D.Jackson [N.Fairley].,0,6,2012 -20121014_DET@PHI,2,34,40,PHI,DET,2,10,79,(4:40) L.McCoy right end to PHI 21 for no gain (S.Tulloch).,0,6,2012 -20121014_DET@PHI,2,34,5,PHI,DET,3,10,79,(4:05) M.Vick pass deep left to J.Maclin pushed ob at PHI 38 for 17 yards (D.Bentley).,0,6,2012 -20121014_DET@PHI,2,33,39,PHI,DET,1,10,62,(3:39) (Shotgun) M.Vick pass short right to D.Jackson to PHI 47 for 9 yards (A.Spievey).,0,6,2012 -20121014_DET@PHI,2,33,9,PHI,DET,2,1,53,(3:09) B.Brown left end to PHI 49 for 2 yards (J.Durant).,0,6,2012 -20121014_DET@PHI,2,32,35,PHI,DET,1,10,51,(2:35) (Shotgun) M.Vick pass deep middle to J.Avant to DET 34 for 17 yards (L.Delmas) [L.Jackson].,0,6,2012 -20121014_DET@PHI,2,32,3,PHI,DET,1,10,34,(2:03) (No Huddle Shotgun) M.Vick pass short left to J.Maclin ran ob at DET 29 for 5 yards.,0,6,2012 -20121014_DET@PHI,2,31,59,PHI,DET,2,5,29,(1:59) M.Vick pass incomplete deep left to J.Maclin (J.Lacey) [S.Tulloch]. PENALTY on DET-J.Lacey Defensive Pass Interference 26 yards enforced at DET 29 - No Play.,0,6,2012 -20121014_DET@PHI,2,31,54,PHI,DET,1,3,3,(1:54) L.McCoy up the middle to DET 2 for 1 yard (K.Vanden Bosch).,0,6,2012 -20121014_DET@PHI,2,31,21,PHI,DET,2,2,2,(1:21) M.Vick pass short left to L.McCoy for 2 yards TOUCHDOWN.,0,6,2012 -20121014_DET@PHI,2,31,21,PHI,DET,,,2,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,6,2012 -20121014_DET@PHI,2,31,21,PHI,DET,,,2,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,7,6,2012 -20121014_DET@PHI,2,31,16,DET,PHI,1,10,80,(1:16) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,6,7,2012 -20121014_DET@PHI,2,31,12,DET,PHI,2,10,80,(1:12) (Shotgun) M.Stafford pass incomplete short left to T.Young (F.Cox).,6,7,2012 -20121014_DET@PHI,2,31,5,DET,PHI,3,10,80,(1:05) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew [J.Babin].,6,7,2012 -20121014_DET@PHI,2,31,0,DET,PHI,4,10,80,(1:00) N.Harris punts 50 yards to PHI 30 Center-D.Muhlbach. D.Jackson to PHI 27 for -3 yards (K.Osgood).,6,7,2012 -20121014_DET@PHI,2,30,49,PHI,DET,1,10,73,(:49) M.Vick pass short right to L.McCoy to PHI 44 for 17 yards (A.Spievey).,7,6,2012 -20121014_DET@PHI,2,30,38,PHI,DET,1,10,56,(:38) (Shotgun) M.Vick pass short right to L.McCoy to PHI 44 for no gain (J.Durant).,7,6,2012 -20121014_DET@PHI,2,30,31,PHI,DET,2,10,56,(:31) (Shotgun) M.Vick scrambles right end ran ob at DET 47 for 9 yards.,7,6,2012 -20121014_DET@PHI,2,30,24,PHI,DET,3,1,47,(:24) (Shotgun) M.Vick pass short left to J.Avant to DET 43 for 4 yards (J.Lacey).,7,6,2012 -20121014_DET@PHI,2,30,9,PHI,DET,1,10,43,(:09) M.Vick spiked the ball to stop the clock.,7,6,2012 -20121014_DET@PHI,2,30,9,PHI,DET,2,10,43,(:09) (Shotgun) M.Vick pass incomplete deep left to J.Maclin.,7,6,2012 -20121014_DET@PHI,2,30,3,PHI,DET,3,10,43,(:03) (Shotgun) M.Vick pass incomplete deep right to R.Cooper.,7,6,2012 -20121014_DET@PHI,3,30,0,DET,PHI,,,43,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,6,7,2012 -20121014_DET@PHI,3,30,0,PHI,DET,1,10,80,(15:00) (Shotgun) L.McCoy up the middle to PHI 31 for 11 yards (D.Levy).,7,6,2012 -20121014_DET@PHI,3,29,19,PHI,DET,1,10,69,(14:19) M.Vick pass incomplete deep middle to J.Avant [K.Vanden Bosch].,7,6,2012 -20121014_DET@PHI,3,29,15,PHI,DET,2,10,69,(14:15) (Shotgun) PENALTY on DET-K.Vanden Bosch Neutral Zone Infraction 5 yards enforced at PHI 31 - No Play.,7,6,2012 -20121014_DET@PHI,3,29,15,PHI,DET,2,5,64,(14:15) (Shotgun) L.McCoy right tackle to PHI 40 for 4 yards (J.Durant).,7,6,2012 -20121014_DET@PHI,3,28,37,PHI,DET,3,1,60,(13:37) (Shotgun) M.Vick scrambles left end ran ob at 50 for 10 yards.,7,6,2012 -20121014_DET@PHI,3,28,11,PHI,DET,1,10,50,(13:11) (Shotgun) M.Vick pass incomplete short left to B.Celek.,7,6,2012 -20121014_DET@PHI,3,28,4,PHI,DET,2,10,50,(13:04) B.Brown right end pushed ob at DET 49 for 1 yard (S.Tulloch; A.Spievey).,7,6,2012 -20121014_DET@PHI,3,27,35,PHI,DET,3,9,49,(12:35) (Shotgun) M.Vick pass short left to J.Maclin ran ob at DET 34 for 15 yards.,7,6,2012 -20121014_DET@PHI,3,26,59,PHI,DET,1,10,34,(11:59) B.Brown left end to DET 38 for -4 yards (L.Delmas).,7,6,2012 -20121014_DET@PHI,3,26,22,PHI,DET,2,14,38,(11:22) (Shotgun) M.Vick pass short left to D.Jackson to DET 22 for 16 yards (C.Houston) [N.Fairley].,7,6,2012 -20121014_DET@PHI,3,25,47,PHI,DET,1,10,22,(10:47) M.Vick scrambles left end ran ob at DET 18 for 4 yards.,7,6,2012 -20121014_DET@PHI,3,25,16,PHI,DET,2,6,18,(10:16) M.Vick right end ran ob at DET 9 for 9 yards.,7,6,2012 -20121014_DET@PHI,3,24,42,PHI,DET,1,9,9,(9:42) L.McCoy left tackle to DET 14 for -5 yards (N.Fairley).,7,6,2012 -20121014_DET@PHI,3,24,5,PHI,DET,2,14,14,(9:05) M.Vick pass short left to B.Celek to DET 8 for 6 yards (J.Lacey).,7,6,2012 -20121014_DET@PHI,3,23,30,PHI,DET,3,8,8,(8:30) (Shotgun) M.Vick pass incomplete short middle to B.Celek.,7,6,2012 -20121014_DET@PHI,3,23,26,PHI,DET,4,8,8,(8:26) A.Henery 26 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,6,2012 -20121014_DET@PHI,3,23,26,PHI,DET,,,8,A.Henery kicks 55 yards from PHI 35 to DET 10. J.Bell MUFFS catch recovered by DET-S.Logan at DET 5. S.Logan to DET 16 for 11 yards (M.Gilyard).,10,6,2012 -20121014_DET@PHI,3,23,19,DET,PHI,1,10,84,(8:19) M.Leshoure right end to DET 19 for 3 yards (C.Jenkins).,6,10,2012 -20121014_DET@PHI,3,22,40,DET,PHI,2,7,81,(7:40) (Shotgun) M.Stafford pass incomplete short right to M.Leshoure.,6,10,2012 -20121014_DET@PHI,3,22,35,DET,PHI,3,7,81,(7:35) (Shotgun) M.Stafford pass incomplete short right to C.Johnson [J.Babin].,6,10,2012 -20121014_DET@PHI,3,22,27,DET,PHI,4,7,81,(7:27) N.Harris punts 56 yards to PHI 25 Center-D.Muhlbach. M.Gilyard to PHI 36 for 11 yards (E.Coleman).,6,10,2012 -20121014_DET@PHI,3,22,19,PHI,DET,1,10,64,(7:19) M.Vick pass short right to J.Maclin ran ob at DET 48 for 16 yards.,10,6,2012 -20121014_DET@PHI,3,22,10,PHI,DET,1,10,48,(7:10) L.McCoy right end to 50 for -2 yards (J.Durant). PHI-L.McCoy was injured during the play. His return is Probable.,10,6,2012 -20121014_DET@PHI,3,21,40,PHI,DET,2,12,50,(6:40) (Shotgun) M.Vick pass short right to R.Cooper to DET 43 for 7 yards (D.Bentley; J.Durant). PENALTY on DET-L.Jackson Defensive Offside 5 yards enforced at 50 - No Play.,10,6,2012 -20121014_DET@PHI,3,21,27,PHI,DET,2,7,45,(6:27) (Shotgun) M.Vick pass deep right to D.Jackson pushed ob at DET 15 for 30 yards (C.Houston).,10,6,2012 -20121014_DET@PHI,3,21,0,PHI,DET,1,10,15,(6:00) M.Vick pass incomplete short left.,10,6,2012 -20121014_DET@PHI,3,20,54,PHI,DET,2,10,15,(5:54) B.Brown left tackle to DET 10 for 5 yards (S.Tulloch). DET-J.Lacey was injured during the play. His return is Doubtful.,10,6,2012 -20121014_DET@PHI,3,20,23,PHI,DET,3,5,10,(5:23) (Shotgun) M.Vick pass short middle to J.Maclin to DET 3 for 7 yards (A.Spievey).,10,6,2012 -20121014_DET@PHI,3,19,39,PHI,DET,1,3,3,(4:39) M.Vick pass incomplete short left to L.McCoy. Detroit challenged the backward pass ruling and the play was Upheld. (Timeout #1.),10,6,2012 -20121014_DET@PHI,3,19,35,PHI,DET,2,3,3,(4:35) M.Vick pass short left to B.Celek for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on PHI-B.Celek Offensive Pass Interference 10 yards enforced at DET 3 - No Play.,10,6,2012 -20121014_DET@PHI,3,19,32,PHI,DET,2,13,13,(4:32) M.Vick pass short left to C.Harbor to DET 10 for 3 yards (L.Delmas).,10,6,2012 -20121014_DET@PHI,3,18,53,PHI,DET,3,10,10,(3:53) M.Vick sacked at DET 14 for -4 yards (C.Avril).,10,6,2012 -20121014_DET@PHI,3,18,42,PHI,DET,4,14,14,(3:42) A.Henery 32 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,6,2012 -20121014_DET@PHI,3,18,42,PHI,DET,,,14,A.Henery kicks 62 yards from PHI 35 to DET 3. S.Logan to DET 18 for 15 yards (C.Anderson).,13,6,2012 -20121014_DET@PHI,3,18,36,DET,PHI,1,10,82,(3:36) (Shotgun) M.Stafford scrambles right end ran ob at DET 21 for 3 yards.,6,13,2012 -20121014_DET@PHI,3,18,17,DET,PHI,2,7,79,(3:17) M.Leshoure right tackle to DET 27 for 6 yards (A.Jordan; D.Ryans).,6,13,2012 -20121014_DET@PHI,3,17,37,DET,PHI,3,1,73,(2:37) (Shotgun) M.Stafford pass short left to N.Burleson to DET 27 for no gain (D.Ryans).,6,13,2012 -20121014_DET@PHI,3,16,59,DET,PHI,4,1,73,(1:59) N.Harris punts 39 yards to PHI 34 Center-D.Muhlbach fair catch by M.Gilyard.,6,13,2012 -20121014_DET@PHI,3,16,50,PHI,DET,1,10,66,(1:50) M.Vick pass incomplete short right to J.Maclin (N.Fairley).,13,6,2012 -20121014_DET@PHI,3,16,47,PHI,DET,2,10,66,(1:47) M.Vick scrambles left end ran ob at PHI 43 for 9 yards.,13,6,2012 -20121014_DET@PHI,3,16,23,PHI,DET,3,1,57,(1:23) (Shotgun) M.Vick pass short left to B.Celek to DET 46 for 11 yards (L.Delmas).,13,6,2012 -20121014_DET@PHI,3,15,39,PHI,DET,1,10,46,(:39) L.McCoy right end to DET 45 for 1 yard (S.Tulloch).,13,6,2012 -20121014_DET@PHI,4,15,0,PHI,DET,2,9,45,(15:00) (Shotgun) M.Vick pass short left to D.Jackson ran ob at DET 33 for 12 yards.,13,6,2012 -20121014_DET@PHI,4,14,44,PHI,DET,1,10,33,(14:44) L.McCoy right end ran ob at DET 37 for -4 yards.,13,6,2012 -20121014_DET@PHI,4,14,23,PHI,DET,2,14,37,(14:23) M.Vick pass incomplete short left to J.Maclin (J.Green).,13,6,2012 -20121014_DET@PHI,4,14,19,PHI,DET,3,14,37,(14:19) (Shotgun) M.Vick scrambles right end to DET 31 for 6 yards (J.Durant).,13,6,2012 -20121014_DET@PHI,4,13,43,PHI,DET,4,8,31,(13:43) A.Henery 49 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,13,6,2012 -20121014_DET@PHI,4,13,43,PHI,DET,,,31,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,16,6,2012 -20121014_DET@PHI,4,13,39,DET,PHI,1,10,80,(13:39) N.Burleson left end pushed ob at DET 36 for 16 yards (N.Asomugha).,6,16,2012 -20121014_DET@PHI,4,13,8,DET,PHI,1,10,64,(13:08) M.Stafford pass deep right to C.Johnson to PHI 27 for 37 yards (N.Allen; N.Asomugha).,6,16,2012 -20121014_DET@PHI,4,12,38,DET,PHI,1,10,27,(12:38) M.Leshoure up the middle to PHI 24 for 3 yards (J.Babin).,6,16,2012 -20121014_DET@PHI,4,12,2,DET,PHI,2,7,24,(12:02) PENALTY on PHI-J.Babin Defensive Offside 5 yards enforced at PHI 24 - No Play.,6,16,2012 -20121014_DET@PHI,4,11,49,DET,PHI,2,2,19,(11:49) M.Leshoure right guard to PHI 11 for 8 yards (J.Babin; D.Ryans).,6,16,2012 -20121014_DET@PHI,4,11,9,DET,PHI,1,10,11,(11:09) (Shotgun) M.Stafford pass short left to C.Johnson for 11 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on DET-C.Johnson Offensive Pass Interference 10 yards enforced at PHI 11 - No Play.,6,16,2012 -20121014_DET@PHI,4,11,2,DET,PHI,1,20,21,(11:02) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson.,6,16,2012 -20121014_DET@PHI,4,10,56,DET,PHI,2,20,21,(10:56) (Shotgun) M.Stafford pass short left to C.Johnson to PHI 1 for 20 yards (K.Coleman).,6,16,2012 -20121014_DET@PHI,4,10,35,DET,PHI,1,1,1,(10:35) M.Stafford scrambles left end for 1 yard TOUCHDOWN.,6,16,2012 -20121014_DET@PHI,4,10,35,,PHI,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris. PENALTY on PHI-F.Cox Disqualification 20 yards enforced between downs.,6,16,2012 -20121014_DET@PHI,4,10,35,DET,PHI,,,1,J.Hanson kicks 45 yards from PHI 45 to end zone Touchback.,13,16,2012 -20121014_DET@PHI,4,10,29,PHI,DET,1,10,80,(10:29) M.Vick pass deep left intended for D.Jackson INTERCEPTED by C.Houston at DET 34. C.Houston to DET 34 for no gain (D.Jackson).,16,13,2012 -20121014_DET@PHI,4,10,21,DET,PHI,1,10,66,(10:21) J.Bell right tackle to DET 42 for 8 yards (C.Jenkins).,13,16,2012 -20121014_DET@PHI,4,9,44,DET,PHI,2,2,58,(9:44) J.Bell right end to DET 45 for 3 yards (N.Asomugha).,13,16,2012 -20121014_DET@PHI,4,9,3,DET,PHI,1,10,55,(9:03) J.Bell left tackle to PHI 47 for 8 yards (D.Ryans).,13,16,2012 -20121014_DET@PHI,4,8,28,DET,PHI,2,2,47,(8:28) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,13,16,2012 -20121014_DET@PHI,4,8,23,DET,PHI,3,2,47,(8:23) (Shotgun) M.Stafford pass short left to N.Burleson to PHI 45 for 2 yards (B.Boykin).,13,16,2012 -20121014_DET@PHI,4,7,45,DET,PHI,1,10,45,(7:45) M.Leshoure left end to PHI 45 for no gain (K.Coleman; D.Ryans).,13,16,2012 -20121014_DET@PHI,4,7,5,DET,PHI,2,10,45,(7:05) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,13,16,2012 -20121014_DET@PHI,4,7,0,DET,PHI,3,10,45,(7:00) (Shotgun) PENALTY on DET-R.Sims False Start 5 yards enforced at PHI 45 - No Play.,13,16,2012 -20121014_DET@PHI,4,7,0,DET,PHI,3,15,50,(7:00) (Shotgun) M.Stafford pass incomplete short left to N.Burleson (D.Rodgers-Cromartie).,13,16,2012 -20121014_DET@PHI,4,6,55,DET,PHI,4,15,50,(6:55) N.Harris punts 26 yards to PHI 24 Center-D.Muhlbach downed by DET-A.Palmer.,13,16,2012 -20121014_DET@PHI,4,6,47,PHI,DET,1,10,76,(6:47) L.McCoy right tackle to PHI 29 for 5 yards (C.Avril).,16,13,2012 -20121014_DET@PHI,4,6,12,PHI,DET,2,5,71,(6:12) M.Vick pass short left to L.McCoy to PHI 30 for 1 yard (J.Durant).,16,13,2012 -20121014_DET@PHI,4,5,28,PHI,DET,3,4,70,(5:28) (Shotgun) M.Vick pass deep right to J.Maclin for 70 yards TOUCHDOWN.,16,13,2012 -20121014_DET@PHI,4,5,28,PHI,DET,,,70,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,16,13,2012 -20121014_DET@PHI,4,5,28,PHI,DET,,,70,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,23,13,2012 -20121014_DET@PHI,4,5,18,DET,PHI,1,10,80,(5:18) (Shotgun) M.Stafford pass short right to T.Young to DET 23 for 3 yards (B.Boykin).,13,23,2012 -20121014_DET@PHI,4,4,51,DET,PHI,2,7,77,(4:51) (No Huddle Shotgun) M.Stafford pass short middle to N.Burleson to DET 28 for 5 yards (B.Boykin).,13,23,2012 -20121014_DET@PHI,4,4,26,DET,PHI,3,2,72,(4:26) (No Huddle Shotgun) M.Stafford pass short left to J.Bell to DET 31 for 3 yards (D.Ryans).,13,23,2012 -20121014_DET@PHI,4,4,1,DET,PHI,1,10,69,(4:01) (No Huddle Shotgun) M.Stafford pass deep right to T.Scheffler to PHI 12 for 57 yards (B.Hughes). Penalty on PHI-N.Asomugha Defensive Holding declined.,13,23,2012 -20121014_DET@PHI,4,3,45,DET,PHI,1,10,12,(3:45) (Shotgun) PENALTY on DET-J.Backus False Start 5 yards enforced at PHI 12 - No Play.,13,23,2012 -20121014_DET@PHI,4,3,45,DET,PHI,1,15,17,(3:45) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,13,23,2012 -20121014_DET@PHI,4,3,42,DET,PHI,2,15,17,(3:42) (Shotgun) M.Stafford pass incomplete short left to J.Bell.,13,23,2012 -20121014_DET@PHI,4,3,38,DET,PHI,3,15,17,(3:38) (Shotgun) M.Stafford pass deep left to N.Burleson for 17 yards TOUCHDOWN.,13,23,2012 -20121014_DET@PHI,4,3,38,DET,PHI,,,17,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,13,23,2012 -20121014_DET@PHI,4,3,38,DET,PHI,,,17,J.Hanson kicks 65 yards from DET 35 to PHI 0. B.Boykin to PHI 12 for 12 yards (S.Logan).,20,23,2012 -20121014_DET@PHI,4,3,32,PHI,DET,1,10,88,(3:32) M.Vick pass short left to L.McCoy to PHI 18 for 6 yards (K.Vanden Bosch).,23,20,2012 -20121014_DET@PHI,4,3,32,PHI,DET,2,4,82,(3:32) B.Brown right end to PHI 18 for no gain (S.Tulloch).,23,20,2012 -20121014_DET@PHI,4,2,41,PHI,DET,3,4,82,(2:41) (Shotgun) M.Vick pass incomplete short left to J.Maclin (N.Suh).,23,20,2012 -20121014_DET@PHI,4,2,38,PHI,DET,4,4,82,(2:38) M.McBriar punts 53 yards to DET 29 Center-J.Dorenbos. S.Logan to DET 32 for 3 yards (K.Coleman).,23,20,2012 -20121014_DET@PHI,4,2,27,DET,PHI,1,10,68,(2:27) (Shotgun) M.Stafford pass short left to T.Young to DET 35 for 3 yards (D.Rodgers-Cromartie) [C.Jenkins].,20,23,2012 -20121014_DET@PHI,4,2,5,DET,PHI,2,7,65,(2:05) (No Huddle Shotgun) M.Stafford pass short left to T.Scheffler to DET 43 for 8 yards (B.Hughes).,20,23,2012 -20121014_DET@PHI,4,1,59,DET,PHI,1,10,57,(1:59) (Shotgun) M.Stafford pass incomplete deep right to T.Young.,20,23,2012 -20121014_DET@PHI,4,1,55,DET,PHI,2,10,57,(1:55) (Shotgun) M.Stafford pass short left to C.Johnson to PHI 40 for 17 yards (K.Coleman).,20,23,2012 -20121014_DET@PHI,4,1,26,DET,PHI,1,10,40,(1:26) (Shotgun) M.Stafford pass short right to M.Leshoure to PHI 41 for -1 yards (D.Ryans).,20,23,2012 -20121014_DET@PHI,4,1,19,DET,PHI,2,11,41,(1:19) (Shotgun) M.Stafford pass incomplete short left to C.Johnson. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) M.Stafford pass deep left to C.Johnson ran ob at PHI 25 for 16 yards (K.Coleman).,20,23,2012 -20121014_DET@PHI,4,1,11,DET,PHI,1,10,25,(1:11) (Shotgun) M.Leshoure right tackle to PHI 17 for 8 yards (K.Coleman).,20,23,2012 -20121014_DET@PHI,4,0,47,DET,PHI,2,2,17,(:47) (No Huddle Shotgun) M.Leshoure left end to PHI 9 for 8 yards (M.Kendricks).,20,23,2012 -20121014_DET@PHI,4,0,40,DET,PHI,1,9,9,(:40) (Shotgun) M.Stafford scrambles left tackle to PHI 6 for 3 yards (C.Thornton).,20,23,2012 -20121014_DET@PHI,4,0,17,DET,PHI,2,6,6,(:17) M.Stafford pass incomplete short right to T.Young. PENALTY on PHI-C.Anderson Defensive Pass Interference 5 yards enforced at PHI 6 - No Play.,20,23,2012 -20121014_DET@PHI,4,0,13,DET,PHI,1,1,1,(:13) M.Stafford pass incomplete short left to N.Burleson.,20,23,2012 -20121014_DET@PHI,4,0,9,DET,PHI,2,1,1,(:09) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,20,23,2012 -20121014_DET@PHI,4,0,5,DET,PHI,3,1,1,(:05) J.Hanson 19 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,20,23,2012 -20121014_DET@PHI,4,0,5,DET,PHI,,,1,J.Hanson kicks 56 yards from DET 35 to PHI 9. B.Boykin pushed ob at PHI 35 for 26 yards (A.Spievey).,23,23,2012 -20121014_DET@PHI,5,0,0,DET,PHI,,,1,J.Hanson kicks 63 yards from DET 35 to PHI 2. B.Boykin to PHI 25 for 23 yards (A.Spievey).,23,23,2012 -20121014_DET@PHI,5,-1,54,PHI,DET,1,10,75,(14:54) M.Vick sacked at PHI 18 for -7 yards (C.Avril).,23,23,2012 -20121014_DET@PHI,5,-1,26,PHI,DET,2,17,82,(14:26) (Shotgun) M.Vick sacked at PHI 4 for -14 yards (sack split by N.Fairley and K.Vanden Bosch).,23,23,2012 -20121014_DET@PHI,5,-2,41,PHI,DET,3,31,96,(13:41) (Shotgun) M.Vick pass incomplete deep left.,23,23,2012 -20121014_DET@PHI,5,-2,35,PHI,DET,4,31,96,(13:35) M.McBriar punts 57 yards to DET 39 Center-J.Dorenbos. S.Logan to DET 49 for 10 yards (A.Jordan). FUMBLES (A.Jordan) and recovers at 50. S.Logan to 50 for no gain (A.Jordan).,23,23,2012 -20121014_DET@PHI,5,-2,22,DET,PHI,1,10,50,(13:22) M.Stafford pass short right to T.Scheffler to PHI 34 for 16 yards (C.Marsh).,23,23,2012 -20121014_DET@PHI,5,-3,47,DET,PHI,1,10,34,(12:47) (Shotgun) M.Leshoure left end to PHI 34 for no gain (T.Cole). PENALTY on DET-R.Sims Offensive Holding 10 yards enforced at PHI 34 - No Play.,23,23,2012 -20121014_DET@PHI,5,-3,25,DET,PHI,1,20,44,(12:25) (Shotgun) M.Stafford pass short left to C.Johnson pushed ob at PHI 27 for 17 yards (M.Kendricks).,23,23,2012 -20121014_DET@PHI,5,-3,4,DET,PHI,2,3,27,(12:04) M.Leshoure right tackle to PHI 28 for -1 yards (D.Landri).,23,23,2012 -20121014_DET@PHI,5,-4,19,DET,PHI,3,4,28,(11:19) K.Williams right tackle to PHI 27 for 1 yard (D.Ryans).,23,23,2012 -20121014_DET@PHI,5,-4,5,DET,PHI,4,3,27,(11:05) J.Hanson 45 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,23,23,2012 -20121014_DET@PHI,5,-4,5,DET,PHI,,,27,                      ,26,23,2012 -20121014_KC@TB,1,-4,0,TB,KC,,,27,M.Koenen kicks 73 yards from TB 35 to KC -8. S.Draughn Touchback.,0,0,2012 -20121014_KC@TB,1,60,0,KC,TB,1,10,80,(15:00) B.Quinn pass short right to J.Charles to KC 19 for -1 yards (D.Te'o-Nesheim; Q.Black).,0,0,2012 -20121014_KC@TB,1,59,33,KC,TB,2,11,81,(14:33) B.Quinn pass short left to D.McCluster to KC 19 for no gain (R.Barber L.David).,0,0,2012 -20121014_KC@TB,1,58,54,KC,TB,3,11,81,(13:54) B.Quinn pass incomplete short left to D.Bowe.,0,0,2012 -20121014_KC@TB,1,58,47,KC,TB,4,11,81,(13:47) (Punt formation) D.Colquitt punts 21 yards to KC 40 Center-T.Gafford out of bounds. PENALTY on KC-B.Siler Offensive Holding 10 yards enforced at KC 40.,0,0,2012 -20121014_KC@TB,1,58,37,TB,KC,1,10,30,(13:37) D.Martin right tackle to KC 24 for 6 yards (D.Johnson).,0,0,2012 -20121014_KC@TB,1,58,0,TB,KC,2,4,24,(13:00) (Shotgun) J.Freeman pass incomplete deep middle to V.Jackson.,0,0,2012 -20121014_KC@TB,1,57,55,TB,KC,3,4,24,(12:55) (Shotgun) J.Freeman pass short middle to T.Underwood to KC 18 for 6 yards (B.Flowers).,0,0,2012 -20121014_KC@TB,1,57,13,TB,KC,1,10,18,(12:13) (Shotgun) D.Martin right tackle to KC 16 for 2 yards (D.Johnson).,0,0,2012 -20121014_KC@TB,1,56,27,TB,KC,2,8,16,(11:27) (Shotgun) J.Freeman pass short left intended for D.Clark INTERCEPTED by J.Houston at KC 14. J.Houston to TB 41 for 45 yards (D.Martin). PENALTY on KC-T.Hali Illegal Block Above the Waist 10 yards enforced at KC 46.,0,0,2012 -20121014_KC@TB,1,56,16,KC,TB,1,10,64,(11:16) J.Charles left end to KC 40 for 4 yards (M.Barron; L.David).,0,0,2012 -20121014_KC@TB,1,55,41,KC,TB,2,6,60,(10:41) N.Eachus up the middle to KC 45 for 5 yards (Q.Black; M.Foster).,0,0,2012 -20121014_KC@TB,1,55,10,KC,TB,3,1,55,(10:10) S.Draughn up the middle to KC 46 for 1 yard (E.Biggers).,0,0,2012 -20121014_KC@TB,1,54,38,KC,TB,1,10,54,(9:38) B.Quinn pass incomplete deep left to J.Baldwin.,0,0,2012 -20121014_KC@TB,1,54,31,KC,TB,2,10,54,(9:31) (Shotgun) J.Charles up the middle to KC 48 for 2 yards (M.Foster).,0,0,2012 -20121014_KC@TB,1,53,49,KC,TB,3,8,52,(8:49) B.Quinn pass short middle to D.McCluster to TB 40 for 12 yards (R.Barber).,0,0,2012 -20121014_KC@TB,1,53,9,KC,TB,1,10,40,(8:09) B.Quinn pass short right to J.Charles to TB 32 for 8 yards (M.Foster).,0,0,2012 -20121014_KC@TB,1,52,22,KC,TB,2,2,32,(7:22) S.Draughn up the middle to TB 27 for 5 yards (M.Foster).,0,0,2012 -20121014_KC@TB,1,51,47,KC,TB,1,10,27,(6:47) B.Quinn pass short left to J.Baldwin to TB 17 for 10 yards (R.Barber).,0,0,2012 -20121014_KC@TB,1,51,7,KC,TB,1,10,17,(6:07) J.Charles right guard to TB 16 for 1 yard (G.Gibson).,0,0,2012 -20121014_KC@TB,1,50,31,KC,TB,2,9,16,(5:31) B.Quinn pass short right intended for S.Maneri INTERCEPTED by M.Barron at TB 7. M.Barron to TB 19 for 12 yards (S.Draughn).,0,0,2012 -20121014_KC@TB,1,50,22,TB,KC,1,10,81,(5:22) J.Freeman pass short right to D.Martin to TB 32 for 13 yards (J.Belcher).,0,0,2012 -20121014_KC@TB,1,49,40,TB,KC,1,10,68,(4:40) J.Freeman pass incomplete short middle to D.Martin (J.Belcher).,0,0,2012 -20121014_KC@TB,1,49,34,TB,KC,2,10,68,(4:34) L.Blount up the middle to TB 36 for 4 yards (Ty.Jackson; R.Pitoitua).,0,0,2012 -20121014_KC@TB,1,48,50,TB,KC,3,6,64,(3:50) (Shotgun) J.Freeman pass incomplete short left to V.Jackson. Penalty on TB-D.Dotson Illegal Use of Hands declined.,0,0,2012 -20121014_KC@TB,1,48,43,TB,KC,4,6,64,(3:43) (Punt formation) M.Koenen punts 52 yards to KC 12 Center-A.Economos. J.Arenas to KC 13 for 1 yard (A.Benn). PENALTY on KC-E.Jones Offensive Holding 7 yards enforced at KC 13.,0,0,2012 -20121014_KC@TB,1,48,32,KC,TB,1,10,94,(3:32) S.Draughn up the middle to KC 9 for 3 yards (L.David).,0,0,2012 -20121014_KC@TB,1,47,57,KC,TB,2,7,91,(2:57) S.Draughn right tackle to KC 20 for 11 yards (M.Barron). PENALTY on KC-E.Winston Offensive Holding 4 yards enforced at KC 9 - No Play.,0,0,2012 -20121014_KC@TB,1,47,40,KC,TB,2,11,95,(2:40) J.Charles right tackle to KC 5 for no gain (M.Bennett).,0,0,2012 -20121014_KC@TB,1,46,55,KC,TB,3,11,95,(1:55) S.Draughn right tackle to KC 8 for 3 yards (D.Te'o-Nesheim).,0,0,2012 -20121014_KC@TB,1,46,12,KC,TB,4,8,92,(1:12) (Punt formation) PENALTY on KC-J.Brown False Start 4 yards enforced at KC 8 - No Play.,0,0,2012 -20121014_KC@TB,1,45,55,KC,TB,4,12,96,(:55) (Punt formation) PENALTY on TB-Q.Black Neutral Zone Infraction 5 yards enforced at KC 4 - No Play.,0,0,2012 -20121014_KC@TB,1,45,42,KC,TB,4,7,91,(:42) (Punt formation) D.Colquitt punts 62 yards to TB 29 Center-T.Gafford. R.Parrish pushed ob at TB 38 for 9 yards (A.Studebaker).,0,0,2012 -20121014_KC@TB,1,45,30,TB,KC,1,10,62,(:30) J.Freeman pass deep left to M.Williams for 62 yards TOUCHDOWN.,0,0,2012 -20121014_KC@TB,1,45,30,TB,KC,,,62,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121014_KC@TB,1,45,30,TB,KC,,,62,M.Koenen kicks 73 yards from TB 35 to KC -8. S.Draughn Touchback.,7,0,2012 -20121014_KC@TB,1,45,18,KC,TB,1,10,80,(:18) B.Quinn scrambles up the middle to KC 29 for 9 yards (Q.Black).,0,7,2012 -20121014_KC@TB,2,45,0,KC,TB,2,1,71,(15:00) J.Charles left guard to KC 31 for 2 yards (M.Bennett).,0,7,2012 -20121014_KC@TB,2,44,20,KC,TB,1,10,69,(14:20) B.Quinn pass incomplete short right to D.Bowe (E.Wright).,0,7,2012 -20121014_KC@TB,2,44,14,KC,TB,2,10,69,(14:14) B.Quinn pass short middle to N.Eachus to 50 for 19 yards (M.Barron).,0,7,2012 -20121014_KC@TB,2,43,34,KC,TB,1,10,50,(13:34) J.Charles right guard to TB 46 for 4 yards (R.Barber; G.Johnson).,0,7,2012 -20121014_KC@TB,2,42,53,KC,TB,2,6,46,(12:53) B.Quinn pass short right to S.Maneri to TB 42 for 4 yards (M.Barron).,0,7,2012 -20121014_KC@TB,2,42,4,KC,TB,3,2,42,(12:04) B.Quinn pass short right to D.Bowe ran ob at TB 36 for 6 yards.,0,7,2012 -20121014_KC@TB,2,41,27,KC,TB,1,10,36,(11:27) N.Eachus up the middle to TB 29 for 7 yards (M.Barron; C.Irvin).,0,7,2012 -20121014_KC@TB,2,40,46,KC,TB,2,3,29,(10:46) N.Eachus right guard to TB 27 for 2 yards (C.Irvin).,0,7,2012 -20121014_KC@TB,2,40,6,KC,TB,3,1,27,(10:06) N.Eachus up the middle to TB 27 for no gain (R.Miller).,0,7,2012 -20121014_KC@TB,2,39,54,KC,TB,4,1,27,(9:54) S.Draughn right guard to TB 25 for 2 yards (L.David; D.Te'o-Nesheim).,0,7,2012 -20121014_KC@TB,2,39,14,KC,TB,1,10,25,(9:14) (Shotgun) B.Quinn pass short middle to D.McCluster to TB 16 for 9 yards (Q.Black).,0,7,2012 -20121014_KC@TB,2,38,38,KC,TB,2,1,16,(8:38) S.Draughn up the middle to TB 21 for -5 yards (G.Gibson; G.Johnson).,0,7,2012 -20121014_KC@TB,2,37,55,KC,TB,3,6,21,(7:55) B.Quinn pass incomplete short left to J.Baldwin.,0,7,2012 -20121014_KC@TB,2,37,50,KC,TB,4,6,21,(7:50) (Field Goal formation) R.Succop 38 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20121014_KC@TB,2,37,50,KC,TB,,,21,R.Succop kicks 66 yards from KC 35 to TB -1. A.Benn to TB 17 for 18 yards (N.Eachus). PENALTY on TB Illegal Wedge 6 yards enforced at TB 12.,3,7,2012 -20121014_KC@TB,2,37,40,TB,KC,1,10,94,(7:40) (Shotgun) J.Freeman pass short right to M.Williams to TB 11 for 5 yards (D.Johnson).,7,3,2012 -20121014_KC@TB,2,37,1,TB,KC,2,5,89,(7:01) L.Blount left guard to TB 14 for 3 yards (D.Johnson; A.Toribio). PENALTY on TB-J.Zuttah Offensive Holding 6 yards enforced at TB 11 - No Play.,7,3,2012 -20121014_KC@TB,2,36,47,TB,KC,2,11,95,(6:47) J.Freeman pass deep right to M.Williams to TB 41 for 36 yards (B.Flowers).,7,3,2012 -20121014_KC@TB,2,35,59,TB,KC,1,10,59,(5:59) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,7,3,2012 -20121014_KC@TB,2,35,53,TB,KC,2,10,59,(5:53) J.Freeman pass incomplete short right to M.Williams. PENALTY on KC-B.Flowers Defensive Holding 5 yards enforced at TB 41 - No Play.,7,3,2012 -20121014_KC@TB,2,35,46,TB,KC,1,10,54,(5:46) (Shotgun) J.Freeman scrambles left tackle to KC 47 for 7 yards (D.Johnson).,7,3,2012 -20121014_KC@TB,2,34,59,TB,KC,2,3,47,(4:59) J.Freeman pass incomplete deep left to V.Jackson.,7,3,2012 -20121014_KC@TB,2,34,52,TB,KC,3,3,47,(4:52) (Shotgun) D.Ware up the middle to KC 41 for 6 yards (T.Daniels).,7,3,2012 -20121014_KC@TB,2,34,11,TB,KC,1,10,41,(4:11) J.Freeman pass incomplete deep left to V.Jackson.,7,3,2012 -20121014_KC@TB,2,34,4,TB,KC,2,10,41,(4:04) (Shotgun) D.Martin up the middle to KC 37 for 4 yards (D.Johnson).,7,3,2012 -20121014_KC@TB,2,33,19,TB,KC,3,6,37,(3:19) (Shotgun) J.Freeman pass incomplete deep middle to T.Underwood.,7,3,2012 -20121014_KC@TB,2,33,12,TB,KC,4,6,37,(3:12) (Field Goal formation) C.Barth 55 yard field goal is No Good Hit Left Upright Center-A.Economos Holder-M.Koenen.,7,3,2012 -20121014_KC@TB,2,33,7,KC,TB,1,10,55,(3:07) (Shotgun) B.Quinn pass short left to J.Baldwin to TB 46 for 9 yards (Q.Black).,3,7,2012 -20121014_KC@TB,2,32,35,KC,TB,2,1,46,(2:35) (Shotgun) PENALTY on TB-M.Bennett Neutral Zone Infraction 5 yards enforced at TB 46 - No Play.,3,7,2012 -20121014_KC@TB,2,32,15,KC,TB,1,10,41,(2:15) J.Charles left guard to TB 46 for -5 yards (L.David).,3,7,2012 -20121014_KC@TB,2,32,0,KC,TB,2,15,46,(2:00) B.Quinn pass incomplete short middle to D.McCluster.,3,7,2012 -20121014_KC@TB,2,31,55,KC,TB,3,15,46,(1:55) (Shotgun) B.Quinn pass short middle to S.Draughn to TB 39 for 7 yards (R.Barber).,3,7,2012 -20121014_KC@TB,2,31,5,KC,TB,4,8,39,(1:05) (Punt formation) D.Colquitt punts 38 yards to TB 1 Center-T.Gafford downed by KC-J.Baldwin. The Replay Assistant challenged the touchback ruling and the play was Upheld.,3,7,2012 -20121014_KC@TB,2,30,52,TB,KC,1,10,99,(:52) J.Freeman left guard to TB 4 for 3 yards (D.Poe).,7,3,2012 -20121014_KC@TB,2,30,46,TB,KC,2,7,96,(:46) D.Martin left end to TB 14 for 10 yards (E.Berry).,7,3,2012 -20121014_KC@TB,2,30,30,TB,KC,1,10,86,(:30) (Shotgun) D.Martin up the middle to TB 19 for 5 yards (J.Houston; D.Johnson).,7,3,2012 -20121014_KC@TB,3,30,0,KC,TB,,,86,R.Succop kicks 70 yards from KC 35 to TB -5. A.Benn Touchback.,3,7,2012 -20121014_KC@TB,3,30,0,TB,KC,1,10,80,(15:00) D.Martin left end to TB 24 for 4 yards (J.Houston).,7,3,2012 -20121014_KC@TB,3,29,17,TB,KC,2,6,76,(14:17) J.Freeman pass short middle to V.Jackson to TB 39 for 15 yards (S.Routt).,7,3,2012 -20121014_KC@TB,3,28,34,TB,KC,1,10,61,(13:34) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at KC 19 for 42 yards (K.Lewis).,7,3,2012 -20121014_KC@TB,3,27,54,TB,KC,1,10,19,(12:54) (Shotgun) J.Freeman pass deep middle to V.Jackson for 19 yards TOUCHDOWN.,7,3,2012 -20121014_KC@TB,3,27,54,TB,KC,,,19,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,7,3,2012 -20121014_KC@TB,3,27,54,TB,KC,,,19,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,14,3,2012 -20121014_KC@TB,3,27,46,KC,TB,1,10,80,(12:46) J.Charles left end to KC 28 for 8 yards (E.Wright).,3,14,2012 -20121014_KC@TB,3,27,20,KC,TB,2,2,72,(12:20) B.Quinn pass deep middle to T.Moeaki to KC 46 for 18 yards (R.Barber).,3,14,2012 -20121014_KC@TB,3,26,54,KC,TB,1,10,54,(11:54) J.Charles left end to KC 48 for 2 yards (E.Wright; M.Foster).,3,14,2012 -20121014_KC@TB,3,26,16,KC,TB,2,8,52,(11:16) B.Quinn pass incomplete short middle to J.Charles (R.Miller).,3,14,2012 -20121014_KC@TB,3,26,10,KC,TB,3,8,52,(11:10) B.Quinn pass short middle to S.Maneri to TB 33 for 19 yards (M.Barron).,3,14,2012 -20121014_KC@TB,3,25,48,KC,TB,1,10,33,(10:48) J.Charles right end to TB 31 for 2 yards (G.Gibson).,3,14,2012 -20121014_KC@TB,3,25,18,KC,TB,2,8,31,(10:18) (Shotgun) B.Quinn pass short right to D.McCluster pushed ob at TB 28 for 3 yards (E.Biggers).,3,14,2012 -20121014_KC@TB,3,24,51,KC,TB,3,5,28,(9:51) (Shotgun) B.Quinn pass short left intended for D.McCluster INTERCEPTED by R.Barber (E.Biggers) at TB 22. R.Barber for 78 yards TOUCHDOWN. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,3,14,2012 -20121014_KC@TB,3,24,51,TB,KC,,,28,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,14,3,2012 -20121014_KC@TB,3,24,51,TB,KC,,,28,M.Koenen kicks 74 yards from TB 35 to KC -9. S.Draughn Touchback.,21,3,2012 -20121014_KC@TB,3,24,36,KC,TB,1,10,80,(9:36) J.Charles right tackle pushed ob at KC 42 for 22 yards (L.David).,3,21,2012 -20121014_KC@TB,3,24,16,KC,TB,1,10,58,(9:16) S.Draughn left tackle to KC 41 for -1 yards (M.Barron).,3,21,2012 -20121014_KC@TB,3,23,44,KC,TB,2,11,59,(8:44) B.Quinn pass short middle to D.McCluster to 50 for 9 yards (L.David).,3,21,2012 -20121014_KC@TB,3,23,16,KC,TB,3,2,50,(8:16) S.Draughn up the middle to KC 48 for -2 yards (G.Gibson).,3,21,2012 -20121014_KC@TB,3,22,35,KC,TB,4,4,52,(7:35) (Punt formation) D.Colquitt punts 50 yards to TB 2 Center-T.Gafford downed by KC-J.Belcher.,3,21,2012 -20121014_KC@TB,3,22,23,TB,KC,1,10,98,(7:23) PENALTY on TB-J.Freeman False Start 1 yard enforced at TB 2 - No Play.,21,3,2012 -20121014_KC@TB,3,22,23,TB,KC,1,11,99,(7:23) D.Martin up the middle to TB 2 for 1 yard (D.Johnson).,21,3,2012 -20121014_KC@TB,3,21,42,TB,KC,2,10,98,(6:42) J.Freeman pass short left to E.Lorig pushed ob at TB 18 for 16 yards (J.Belcher).,21,3,2012 -20121014_KC@TB,3,21,9,TB,KC,1,10,82,(6:09) D.Martin up the middle to TB 24 for 6 yards (E.Berry).,21,3,2012 -20121014_KC@TB,3,20,22,TB,KC,2,4,76,(5:22) (Shotgun) J.Freeman sacked at TB 16 for -8 yards (T.Hali). FUMBLES (T.Hali) recovered by TB-D.Dotson at TB 14. D.Dotson to TB 14 for no gain (R.Pitoitua).,21,3,2012 -20121014_KC@TB,3,19,33,TB,KC,3,14,86,(4:33) (Shotgun) J.Freeman pass short right to M.Williams to TB 24 for 10 yards (J.Arenas; B.Flowers).,21,3,2012 -20121014_KC@TB,3,18,53,TB,KC,4,4,76,(3:53) (Punt formation) M.Koenen punts 54 yards to KC 22 Center-A.Economos. J.Arenas pushed ob at KC 32 for 10 yards (Q.Black).,21,3,2012 -20121014_KC@TB,3,18,41,KC,TB,1,10,68,(3:41) B.Quinn pass short middle to S.Maneri to KC 40 for 8 yards (M.Foster).,3,21,2012 -20121014_KC@TB,3,18,8,KC,TB,2,2,60,(3:08) J.Charles left tackle to KC 38 for -2 yards (M.Barron).,3,21,2012 -20121014_KC@TB,3,17,38,KC,TB,3,4,62,(2:38) B.Quinn pass short left to D.McCluster to KC 44 for 6 yards (R.Barber).,3,21,2012 -20121014_KC@TB,3,17,3,KC,TB,1,10,56,(2:03) B.Quinn scrambles up the middle to KC 46 for 2 yards (M.Foster).,3,21,2012 -20121014_KC@TB,3,16,28,KC,TB,2,8,54,(1:28) S.Draughn up the middle to KC 49 for 3 yards (M.Barron).,3,21,2012 -20121014_KC@TB,3,15,51,KC,TB,3,5,51,(:51) B.Quinn pass incomplete short right to D.Bowe (E.Wright).,3,21,2012 -20121014_KC@TB,3,15,46,KC,TB,4,5,51,(:46) (Punt formation) D.Colquitt punts 45 yards to TB 6 Center-T.Gafford. R.Parrish to TB 14 for 8 yards (J.Belcher).,3,21,2012 -20121014_KC@TB,3,15,39,TB,KC,1,10,86,(:39) L.Blount left guard to TB 15 for 1 yard (D.Poe).,21,3,2012 -20121014_KC@TB,4,15,0,TB,KC,2,9,85,(15:00) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,21,3,2012 -20121014_KC@TB,4,14,55,TB,KC,3,9,85,(14:55) (Shotgun) J.Freeman pass short middle to D.Ware to TB 18 for 3 yards (D.Johnson).,21,3,2012 -20121014_KC@TB,4,14,55,KC,TB,,,85,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,21,2012 -20121014_KC@TB,4,14,55,KC,TB,,,85,R.Succop kicks 66 yards from KC 35 to TB -1. A.Benn to TB 22 for 23 yards (E.Jones).,10,21,2012 -20121014_KC@TB,4,13,55,TB,KC,1,10,78,(13:55) D.Martin up the middle to TB 21 for -1 yards (E.Berry; D.Johnson).,21,10,2012 -20121014_KC@TB,4,13,12,TB,KC,2,11,79,(13:12) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,21,10,2012 -20121014_KC@TB,4,13,4,TB,KC,3,11,79,(13:04) (Shotgun) J.Freeman pass deep left to T.Underwood to KC 17 for 62 yards (K.Lewis).,21,10,2012 -20121014_KC@TB,4,12,11,TB,KC,1,10,17,(12:11) D.Martin up the middle to KC 16 for 1 yard (Ty.Jackson).,21,10,2012 -20121014_KC@TB,4,11,26,TB,KC,2,9,16,(11:26) J.Freeman pass incomplete short middle to E.Lorig (Ty.Jackson).,21,10,2012 -20121014_KC@TB,4,11,22,TB,KC,3,9,16,(11:22) (Shotgun) J.Freeman pass short left to D.Ware to KC 9 for 7 yards (D.Johnson).,21,10,2012 -20121014_KC@TB,4,10,39,TB,KC,4,2,9,(10:39) (Field Goal formation) C.Barth 27 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,21,10,2012 -20121014_KC@TB,4,10,39,TB,KC,,,9,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,24,10,2012 -20121014_KC@TB,4,10,34,KC,TB,1,10,80,(10:34) B.Quinn pass incomplete short left to J.Baldwin (R.Barber).,10,24,2012 -20121014_KC@TB,4,10,31,KC,TB,2,10,80,(10:31) S.Draughn up the middle to KC 19 for -1 yards (D.Te'o-Nesheim).,10,24,2012 -20121014_KC@TB,4,9,49,KC,TB,3,11,81,(9:49) (Shotgun) B.Quinn pass incomplete short middle to S.Draughn [D.Te'o-Nesheim].,10,24,2012 -20121014_KC@TB,4,9,43,KC,TB,4,11,81,(9:43) (Punt formation) D.Colquitt punts 60 yards to TB 21 Center-T.Gafford. R.Parrish to TB 32 for 11 yards (C.Gray). PENALTY on TB-E.Lorig Illegal Block Above the Waist 10 yards enforced at TB 25.,10,24,2012 -20121014_KC@TB,4,9,29,TB,KC,1,10,85,(9:29) D.Martin left tackle to TB 38 for 23 yards (E.Berry).,24,10,2012 -20121014_KC@TB,4,8,45,TB,KC,1,10,62,(8:45) D.Martin left guard to TB 40 for 2 yards (D.Johnson).,24,10,2012 -20121014_KC@TB,4,8,2,TB,KC,2,8,60,(8:02) J.Freeman pass short left to V.Jackson to KC 45 for 15 yards (S.Routt).,24,10,2012 -20121014_KC@TB,4,7,18,TB,KC,1,10,45,(7:18) D.Martin left tackle pushed ob at KC 32 for 13 yards (S.Routt). PENALTY on KC-J.Belcher Unnecessary Roughness 15 yards enforced at KC 32.,24,10,2012 -20121014_KC@TB,4,6,51,TB,KC,1,10,17,(6:51) (Shotgun) J.Freeman pass short middle to V.Jackson for 17 yards TOUCHDOWN.,24,10,2012 -20121014_KC@TB,4,6,51,TB,KC,,,17,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,24,10,2012 -20121014_KC@TB,4,6,51,TB,KC,,,17,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,31,10,2012 -20121014_KC@TB,4,6,43,KC,TB,1,10,80,(6:43) (Shotgun) B.Quinn pass short right to D.Bowe pushed ob at KC 27 for 7 yards (E.Wright).,10,31,2012 -20121014_KC@TB,4,6,18,KC,TB,2,3,73,(6:18) (Shotgun) B.Quinn pass incomplete deep right to D.Bowe.,10,31,2012 -20121014_KC@TB,4,6,11,KC,TB,3,3,73,(6:11) (Shotgun) B.Quinn pass short right to D.Bowe to KC 35 for 8 yards (E.Wright).,10,31,2012 -20121014_KC@TB,4,5,40,KC,TB,1,10,65,(5:40) B.Quinn pass short middle to S.Maneri to KC 49 for 14 yards (L.David).,10,31,2012 -20121014_KC@TB,4,5,22,KC,TB,1,10,51,(5:22) (Shotgun) N.Eachus right guard to TB 47 for 4 yards (G.McCoy).,10,31,2012 -20121014_KC@TB,4,4,45,KC,TB,2,6,47,(4:45) B.Quinn pass incomplete short middle to N.Eachus.,10,31,2012 -20121014_KC@TB,4,4,45,KC,TB,3,6,47,(4:45) (Shotgun) B.Quinn pass incomplete short right to D.Bowe [Q.Black].,10,31,2012 -20121014_KC@TB,4,4,40,KC,TB,4,6,47,(4:40) (Shotgun) B.Quinn pass incomplete deep middle to T.Moeaki.,10,31,2012 -20121014_KC@TB,4,4,34,TB,KC,1,10,53,(4:34) L.Blount left end to TB 49 for 2 yards (D.Johnson).,31,10,2012 -20121014_KC@TB,4,3,47,TB,KC,2,8,51,(3:47) L.Blount left guard pushed ob at KC 16 for 35 yards (K.Lewis).,31,10,2012 -20121014_KC@TB,4,2,55,TB,KC,1,10,16,(2:55) L.Blount up the middle to KC 12 for 4 yards (T.Hali).,31,10,2012 -20121014_KC@TB,4,2,12,TB,KC,2,6,12,(2:12) L.Blount up the middle to KC 12 for no gain (J.Houston).,31,10,2012 -20121014_KC@TB,4,2,0,TB,KC,3,6,12,(2:00) L.Blount right guard for 12 yards TOUCHDOWN.,31,10,2012 -20121014_KC@TB,4,2,0,TB,KC,,,12,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,31,10,2012 -20121014_KC@TB,4,2,0,TB,KC,,,12,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,38,10,2012 -20121014_KC@TB,4,1,53,KC,TB,1,10,80,(1:53) (Shotgun) S.Draughn right guard to KC 23 for 3 yards (Q.Black).,10,38,2012 -20121014_KC@TB,4,1,28,KC,TB,2,7,77,(1:28) (Shotgun) B.Quinn pass short middle to S.Draughn to KC 23 for no gain (B.McDonald).,10,38,2012 -20121014_KC@TB,4,0,59,KC,TB,3,7,77,(:59) (Shotgun) B.Quinn pass short left to S.Draughn to KC 28 for 5 yards (B.McDonald).,10,38,2012 -20121014_KC@TB,4,0,36,KC,TB,4,2,72,(:36) (Shotgun) B.Quinn pass incomplete deep right to D.Bowe (L.Johnson).,10,38,2012 -20121014_KC@TB,4,0,28,TB,KC,1,10,28,(:28) (Shotgun) J.Freeman kneels to KC 33 for -5 yards.,38,10,2012 -20121014_KC@TB,4,0,28,TB,KC,,,28,                      ,38,10,2012 -20121014_BUF@ARI,1,0,0,ARI,BUF,,,28,J.Feely kicks 63 yards from ARZ 35 to BUF 2. L.McKelvin pushed ob at BUF 24 for 22 yards (J.Fleming).,0,0,2012 -20121014_BUF@ARI,1,59,55,BUF,ARI,1,10,76,(14:55) F.Jackson up the middle to BUF 28 for 4 yards (D.Washington). FUMBLES (D.Washington) RECOVERED by ARZ-W.Gay at BUF 33. W.Gay to BUF 33 for no gain (E.Wood; C.Rinehart).,0,0,2012 -20121014_BUF@ARI,1,59,45,ARI,BUF,1,10,33,(14:45) L.Stephens-Howling up the middle to BUF 31 for 2 yards (N.Bradham; K.Sheppard).,0,0,2012 -20121014_BUF@ARI,1,59,4,ARI,BUF,2,8,31,(14:04) K.Kolb pass incomplete short left to J.King.,0,0,2012 -20121014_BUF@ARI,1,59,2,ARI,BUF,3,8,31,(14:02) (Shotgun) K.Kolb pass incomplete short left to A.Roberts (K.Williams).,0,0,2012 -20121014_BUF@ARI,1,58,55,ARI,BUF,4,8,31,(13:55) J.Feely 49 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20121014_BUF@ARI,1,58,55,ARI,BUF,,,31,J.Feely kicks 71 yards from ARZ 35 to BUF -6. B.Smith to BUF 25 for 31 yards (J.Westerman).,3,0,2012 -20121014_BUF@ARI,1,58,44,BUF,ARI,1,10,75,(13:44) C.Spiller right tackle pushed ob at BUF 34 for 9 yards (W.Gay).,0,3,2012 -20121014_BUF@ARI,1,58,44,BUF,ARI,2,1,66,(13:44) Direct snap to B.Smith. B.Smith right tackle to BUF 37 for 3 yards (D.Washington).,0,3,2012 -20121014_BUF@ARI,1,57,41,BUF,ARI,1,10,63,(12:41) R.Fitzpatrick pass short left to C.Spiller to BUF 43 for 6 yards (D.Washington D.Williams).,0,3,2012 -20121014_BUF@ARI,1,56,59,BUF,ARI,2,4,57,(11:59) (Shotgun) R.Fitzpatrick pass short right to D.Jones to ARZ 48 for 9 yards (J.Fleming).,0,3,2012 -20121014_BUF@ARI,1,56,19,BUF,ARI,1,10,48,(11:19) (Shotgun) C.Spiller left tackle to ARZ 48 for no gain (O.Schofield).,0,3,2012 -20121014_BUF@ARI,1,55,39,BUF,ARI,2,10,48,(10:39) (Shotgun) F.Jackson left tackle to ARZ 44 for 4 yards (D.Washington).,0,3,2012 -20121014_BUF@ARI,1,54,55,BUF,ARI,3,6,44,(9:55) (Shotgun) R.Fitzpatrick pass incomplete deep left to D.Jones.,0,3,2012 -20121014_BUF@ARI,1,54,50,BUF,ARI,4,6,44,(9:50) S.Powell punts 31 yards to ARZ 13 Center-G.Sanborn downed by BUF-G.Sanborn.,0,3,2012 -20121014_BUF@ARI,1,54,39,ARI,BUF,1,10,87,(9:39) L.Stephens-Howling up the middle to ARZ 12 for -1 yards (C.Kelsay).,3,0,2012 -20121014_BUF@ARI,1,54,1,ARI,BUF,2,11,88,(9:01) (Shotgun) K.Kolb pass short right to E.Doucet pushed ob at ARZ 16 for 4 yards (B.Scott). PENALTY on ARZ-A.Roberts Offensive Holding 6 yards enforced at ARZ 12 - No Play.,3,0,2012 -20121014_BUF@ARI,1,53,45,ARI,BUF,2,17,94,(8:45) K.Kolb sacked in End Zone for -6 yards SAFETY (C.Kelsay).,3,0,2012 -20121014_BUF@ARI,1,53,45,ARI,BUF,,,94,D.Zastudil kicks 62 yards from ARZ 20 to BUF 18. L.McKelvin pushed ob at ARZ 49 for 33 yards (D.Zastudil).,3,2,2012 -20121014_BUF@ARI,1,53,29,BUF,ARI,1,10,49,(8:29) F.Jackson left tackle pushed ob at ARZ 43 for 6 yards (J.Fleming).,2,3,2012 -20121014_BUF@ARI,1,53,4,BUF,ARI,2,4,43,(8:04) F.Jackson up the middle to ARZ 40 for 3 yards (D.Washington).,2,3,2012 -20121014_BUF@ARI,1,52,23,BUF,ARI,3,1,40,(7:23) (Shotgun) F.Jackson up the middle to ARZ 34 for 6 yards (W.Gay; P.Lenon).,2,3,2012 -20121014_BUF@ARI,1,51,51,BUF,ARI,1,10,34,(6:51) F.Jackson up the middle to ARZ 33 for 1 yard (O.Schofield).,2,3,2012 -20121014_BUF@ARI,1,51,13,BUF,ARI,2,9,33,(6:13) (Shotgun) R.Fitzpatrick scrambles up the middle to ARZ 29 for 4 yards (D.Washington).,2,3,2012 -20121014_BUF@ARI,1,50,28,BUF,ARI,3,5,29,(5:28) (Shotgun) R.Fitzpatrick pass short right to St.Johnson ran ob at ARZ 23 for 6 yards.,2,3,2012 -20121014_BUF@ARI,1,49,59,BUF,ARI,1,10,23,(4:59) F.Jackson up the middle to ARZ 22 for 1 yard (K.Rhodes).,2,3,2012 -20121014_BUF@ARI,1,49,22,BUF,ARI,2,9,22,(4:22) R.Fitzpatrick pass incomplete short left to St.Johnson.,2,3,2012 -20121014_BUF@ARI,1,49,19,BUF,ARI,3,9,22,(4:19) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to ARZ 10 for 12 yards (P.Peterson).,2,3,2012 -20121014_BUF@ARI,1,48,42,BUF,ARI,1,10,10,(3:42) C.Spiller left tackle for 10 yards TOUCHDOWN.,2,3,2012 -20121014_BUF@ARI,1,48,42,BUF,ARI,,,10,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,2,3,2012 -20121014_BUF@ARI,1,48,42,BUF,ARI,,,10,R.Lindell kicks 65 yards from BUF 35 to end zone Touchback.,9,3,2012 -20121014_BUF@ARI,1,48,35,ARI,BUF,1,10,80,(3:35) W.Powell left tackle to ARZ 21 for 1 yard (C.Kelsay).,3,9,2012 -20121014_BUF@ARI,1,47,56,ARI,BUF,2,9,79,(2:56) L.Stephens-Howling up the middle to ARZ 24 for 3 yards (B.Scott; M.Dareus).,3,9,2012 -20121014_BUF@ARI,1,47,10,ARI,BUF,3,6,76,(2:10) (Shotgun) K.Kolb pass deep right to M.Floyd to ARZ 48 for 24 yards (A.Williams).,3,9,2012 -20121014_BUF@ARI,1,46,31,ARI,BUF,1,10,52,(1:31) L.Stephens-Howling left tackle to ARZ 49 for 1 yard (N.Bradham).,3,9,2012 -20121014_BUF@ARI,1,45,55,ARI,BUF,2,9,51,(:55) L.Stephens-Howling right tackle to ARZ 49 for no gain (J.Rogers). Penalty on ARZ-R.Maui'a Offensive Holding declined.,3,9,2012 -20121014_BUF@ARI,1,45,26,ARI,BUF,3,9,51,(:26) (Shotgun) K.Kolb sacked at ARZ 39 for -10 yards (M.Williams).,3,9,2012 -20121014_BUF@ARI,2,45,0,ARI,BUF,4,19,61,(15:00) D.Zastudil punts 61 yards to end zone Center-M.Leach Touchback.,3,9,2012 -20121014_BUF@ARI,2,44,52,BUF,ARI,1,10,80,(14:52) C.Spiller right tackle to BUF 20 for no gain (C.Campbell).,9,3,2012 -20121014_BUF@ARI,2,44,11,BUF,ARI,2,10,80,(14:11) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson (P.Peterson).,9,3,2012 -20121014_BUF@ARI,2,44,6,BUF,ARI,3,10,80,(14:06) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (W.Gay).,9,3,2012 -20121014_BUF@ARI,2,43,54,BUF,ARI,4,10,80,(13:54) S.Powell punts 62 yards to ARZ 18 Center-G.Sanborn. P.Peterson to ARZ 43 for 25 yards (G.Wilson). PENALTY on ARZ-J.Sanders Offensive Holding 10 yards enforced at ARZ 36.,9,3,2012 -20121014_BUF@ARI,2,43,47,ARI,BUF,1,10,74,(13:47) K.Kolb pass incomplete deep right to A.Roberts.,3,9,2012 -20121014_BUF@ARI,2,43,40,ARI,BUF,2,10,74,(13:40) L.Stephens-Howling right tackle to ARZ 28 for 2 yards (K.Sheppard).,3,9,2012 -20121014_BUF@ARI,2,42,55,ARI,BUF,3,8,72,(12:55) (Shotgun) K.Kolb pass incomplete short right to A.Roberts.,3,9,2012 -20121014_BUF@ARI,2,42,46,ARI,BUF,4,8,72,(12:46) D.Zastudil punts 57 yards to BUF 15 Center-M.Leach. L.McKelvin pushed ob at BUF 25 for 10 yards (J.Bethel).,3,9,2012 -20121014_BUF@ARI,2,42,31,BUF,ARI,1,10,75,(12:31) F.Jackson right tackle to BUF 29 for 4 yards (O.Schofield; D.Washington).,9,3,2012 -20121014_BUF@ARI,2,41,48,BUF,ARI,2,6,71,(11:48) R.Fitzpatrick pass short left to F.Jackson to BUF 23 for -6 yards (A.Wilson).,9,3,2012 -20121014_BUF@ARI,2,41,6,BUF,ARI,3,12,77,(11:06) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 21 for -2 yards (D.Washington).,9,3,2012 -20121014_BUF@ARI,2,40,33,BUF,ARI,4,14,79,(10:33) S.Powell punts 46 yards to ARZ 33 Center-G.Sanborn out of bounds.,9,3,2012 -20121014_BUF@ARI,2,40,25,ARI,BUF,1,10,67,(10:25) W.Powell up the middle to ARZ 32 for -1 yards (J.Byrd).,3,9,2012 -20121014_BUF@ARI,2,39,47,ARI,BUF,2,11,68,(9:47) K.Kolb pass short middle to J.King to ARZ 41 for 9 yards (J.Byrd).,3,9,2012 -20121014_BUF@ARI,2,39,5,ARI,BUF,3,2,59,(9:05) (Shotgun) K.Kolb pass short left to A.Roberts to ARZ 43 for 2 yards (J.Rogers). Buffalo challenged the first down ruling and the play was Upheld. (Timeout #2.),3,9,2012 -20121014_BUF@ARI,2,38,50,ARI,BUF,1,10,57,(8:50) W.Powell left tackle to ARZ 45 for 2 yards (C.Kelsay).,3,9,2012 -20121014_BUF@ARI,2,38,3,ARI,BUF,2,8,55,(8:03) (Shotgun) K.Kolb pass short right to R.Housler ran ob at BUF 49 for 6 yards (B.Scott).,3,9,2012 -20121014_BUF@ARI,2,37,26,ARI,BUF,3,2,49,(7:26) (Shotgun) K.Kolb pass deep middle to L.Fitzgerald to BUF 32 for 17 yards (G.Wilson).,3,9,2012 -20121014_BUF@ARI,2,36,45,ARI,BUF,1,10,32,(6:45) K.Kolb pass short right to J.King to BUF 31 for 1 yard (K.Sheppard N.Barnett).,3,9,2012 -20121014_BUF@ARI,2,36,6,ARI,BUF,2,9,31,(6:06) W.Powell left end pushed ob at BUF 14 for 17 yards (N.Barnett).,3,9,2012 -20121014_BUF@ARI,2,35,34,ARI,BUF,1,10,14,(5:34) W.Powell left tackle to BUF 9 for 5 yards (S.Gilmore).,3,9,2012 -20121014_BUF@ARI,2,34,53,ARI,BUF,2,5,9,(4:53) K.Kolb pass short middle to L.Fitzgerald for 9 yards TOUCHDOWN.,3,9,2012 -20121014_BUF@ARI,2,34,53,ARI,BUF,,,9,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,9,2012 -20121014_BUF@ARI,2,34,53,ARI,BUF,,,9,J.Feely kicks 38 yards from ARZ 35 to BUF 27. L.Smith (didn't try to advance) to BUF 27 for no gain (J.Sanders).,10,9,2012 -20121014_BUF@ARI,2,34,45,BUF,ARI,1,10,73,(4:45) C.Spiller up the middle to BUF 30 for 3 yards (D.Washington).,9,10,2012 -20121014_BUF@ARI,2,34,10,BUF,ARI,2,7,70,(4:10) C.Spiller up the middle to BUF 35 for 5 yards (O.Schofield).,9,10,2012 -20121014_BUF@ARI,2,33,25,BUF,ARI,3,2,65,(3:25) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler (K.Rhodes).,9,10,2012 -20121014_BUF@ARI,2,33,20,BUF,ARI,4,2,65,(3:20) S.Powell punts 49 yards to ARZ 16 Center-G.Sanborn. P.Peterson to ARZ 14 for -2 yards (L.McKelvin).,9,10,2012 -20121014_BUF@ARI,2,33,11,ARI,BUF,1,10,86,(3:11) W.Powell left tackle to ARZ 16 for 2 yards (K.Sheppard).,10,9,2012 -20121014_BUF@ARI,2,32,37,ARI,BUF,2,8,84,(2:37) W.Powell left tackle to ARZ 25 for 9 yards (J.Byrd).,10,9,2012 -20121014_BUF@ARI,2,32,0,ARI,BUF,1,10,75,(2:00) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald.,10,9,2012 -20121014_BUF@ARI,2,31,57,ARI,BUF,2,10,75,(1:57) (Shotgun) K.Kolb pass incomplete deep left to L.Fitzgerald.,10,9,2012 -20121014_BUF@ARI,2,31,52,ARI,BUF,3,10,75,(1:52) (Shotgun) K.Kolb pass short left to W.Powell to ARZ 33 for 8 yards (N.Barnett).,10,9,2012 -20121014_BUF@ARI,2,31,40,ARI,BUF,4,2,67,(1:40) (Punt formation) Direct snap to R.Johnson. R.Johnson right end pushed ob at BUF 43 for 24 yards (A.Williams).,10,9,2012 -20121014_BUF@ARI,2,31,32,ARI,BUF,1,10,43,(1:32) (Shotgun) L.Stephens-Howling up the middle to BUF 42 for 1 yard (M.Dareus).,10,9,2012 -20121014_BUF@ARI,2,31,10,ARI,BUF,2,9,42,(1:10) (Shotgun) K.Kolb pass incomplete short left to L.Fitzgerald (S.Gilmore).,10,9,2012 -20121014_BUF@ARI,2,31,6,ARI,BUF,3,9,42,(1:06) (Shotgun) K.Kolb pass incomplete short left to M.Floyd [M.Williams].,10,9,2012 -20121014_BUF@ARI,2,31,3,ARI,BUF,4,9,42,(1:03) D.Zastudil punts 42 yards to end zone Center-M.Leach Touchback.,10,9,2012 -20121014_BUF@ARI,2,30,54,BUF,ARI,1,10,80,(:54) R.Fitzpatrick pass short left to F.Jackson to BUF 28 for 8 yards (K.Rhodes).,9,10,2012 -20121014_BUF@ARI,2,30,48,BUF,ARI,2,2,72,(:48) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to BUF 32 for 4 yards (W.Gay; S.Acho).,9,10,2012 -20121014_BUF@ARI,2,30,26,BUF,ARI,1,10,68,(:26) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 39 for 7 yards (J.Fleming P.Lenon).,9,10,2012 -20121014_BUF@ARI,2,30,11,BUF,ARI,2,3,61,(:11) R.Fitzpatrick spiked the ball to stop the clock.,9,10,2012 -20121014_BUF@ARI,2,30,10,BUF,ARI,3,3,61,(:10) (Shotgun) R.Fitzpatrick sacked at BUF 33 for -6 yards (O.Schofield).,9,10,2012 -20121014_BUF@ARI,3,30,0,BUF,ARI,,,61,R.Lindell kicks 70 yards from BUF 35 to ARZ -5. W.Powell to ARZ 27 for 32 yards (T.Choice).,9,10,2012 -20121014_BUF@ARI,3,29,54,ARI,BUF,1,10,73,(14:54) (Shotgun) L.Stephens-Howling right tackle to ARZ 30 for 3 yards (G.Wilson).,10,9,2012 -20121014_BUF@ARI,3,29,18,ARI,BUF,2,7,70,(14:18) (Shotgun) K.Kolb sacked at ARZ 26 for -4 yards (M.Williams).,10,9,2012 -20121014_BUF@ARI,3,28,43,ARI,BUF,3,11,74,(13:43) (Shotgun) K.Kolb pass short right to E.Doucet to ARZ 27 for 1 yard (B.Scott).,10,9,2012 -20121014_BUF@ARI,3,28,5,ARI,BUF,4,10,73,(13:05) D.Zastudil punts 53 yards to BUF 20 Center-M.Leach. L.McKelvin to BUF 30 for 10 yards (J.Sanders). PENALTY on BUF-S.Gilmore Illegal Block Above the Waist 10 yards enforced at BUF 20.,10,9,2012 -20121014_BUF@ARI,3,27,52,BUF,ARI,1,10,90,(12:52) R.Fitzpatrick scrambles up the middle to BUF 12 for 2 yards (O.Schofield).,9,10,2012 -20121014_BUF@ARI,3,27,12,BUF,ARI,2,8,88,(12:12) R.Fitzpatrick pass deep left to St.Johnson to BUF 28 for 16 yards (D.Washington).,9,10,2012 -20121014_BUF@ARI,3,26,33,BUF,ARI,1,10,72,(11:33) C.Spiller right end to BUF 35 for 7 yards (A.Wilson).,9,10,2012 -20121014_BUF@ARI,3,26,3,BUF,ARI,2,3,65,(11:03) R.Fitzpatrick pass short left to F.Jackson to BUF 44 for 9 yards (W.Gay).,9,10,2012 -20121014_BUF@ARI,3,25,32,BUF,ARI,1,10,56,(10:32) F.Jackson left tackle to BUF 44 for no gain (K.Rhodes).,9,10,2012 -20121014_BUF@ARI,3,24,48,BUF,ARI,2,10,56,(9:48) R.Fitzpatrick pass incomplete short left to St.Johnson.,9,10,2012 -20121014_BUF@ARI,3,24,46,BUF,ARI,3,10,56,(9:46) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler.,9,10,2012 -20121014_BUF@ARI,3,24,41,BUF,ARI,4,10,56,(9:41) (Punt formation) PENALTY on BUF-K.Sheppard False Start 5 yards enforced at BUF 44 - No Play.,9,10,2012 -20121014_BUF@ARI,3,24,41,BUF,ARI,4,15,61,(9:41) S.Powell punts 55 yards to ARZ 6 Center-G.Sanborn. P.Peterson to ARZ 26 for 20 yards (C.White).,9,10,2012 -20121014_BUF@ARI,3,24,30,ARI,BUF,1,10,74,(9:30) W.Powell left tackle to ARZ 33 for 7 yards (G.Wilson).,10,9,2012 -20121014_BUF@ARI,3,23,58,ARI,BUF,2,3,67,(8:58) W.Powell right tackle to ARZ 39 for 6 yards (M.Dareus; G.Wilson).,10,9,2012 -20121014_BUF@ARI,3,23,24,ARI,BUF,1,10,61,(8:24) W.Powell left end to ARZ 42 for 3 yards (K.Sheppard).,10,9,2012 -20121014_BUF@ARI,3,22,46,ARI,BUF,2,7,58,(7:46) K.Kolb pass short right to R.Housler to ARZ 48 for 6 yards (N.Bradham).,10,9,2012 -20121014_BUF@ARI,3,22,7,ARI,BUF,3,1,52,(7:07) W.Powell left tackle to 50 for 2 yards (S.Gilmore K.Sheppard).,10,9,2012 -20121014_BUF@ARI,3,21,31,ARI,BUF,1,10,50,(6:31) W.Powell left tackle to BUF 44 for 6 yards (K.Sheppard).,10,9,2012 -20121014_BUF@ARI,3,20,53,ARI,BUF,2,4,44,(5:53) K.Kolb sacked ob at BUF 44 for 0 yards (N.Barnett).,10,9,2012 -20121014_BUF@ARI,3,20,23,ARI,BUF,3,4,44,(5:23) (Shotgun) K.Kolb pass short left to L.Fitzgerald to BUF 36 for 8 yards (B.Scott).,10,9,2012 -20121014_BUF@ARI,3,19,47,ARI,BUF,1,10,36,(4:47) L.Stephens-Howling right tackle to BUF 29 for 7 yards (G.Wilson). PENALTY on ARZ-R.Housler Offensive Holding 10 yards enforced at BUF 36 - No Play.,10,9,2012 -20121014_BUF@ARI,3,19,18,ARI,BUF,1,20,46,(4:18) (Shotgun) K.Kolb scrambles left end to BUF 31 for 15 yards (S.Gilmore; N.Barnett).,10,9,2012 -20121014_BUF@ARI,3,18,32,ARI,BUF,2,5,31,(3:32) K.Kolb pass incomplete short right to L.Fitzgerald.,10,9,2012 -20121014_BUF@ARI,3,18,21,ARI,BUF,3,5,31,(3:21) (Shotgun) K.Kolb pass incomplete short right to A.Roberts.,10,9,2012 -20121014_BUF@ARI,3,18,17,ARI,BUF,4,5,31,(3:17) J.Feely 49 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,10,9,2012 -20121014_BUF@ARI,3,18,17,ARI,BUF,,,31,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,13,9,2012 -20121014_BUF@ARI,3,18,12,BUF,ARI,1,10,80,(3:12) R.Fitzpatrick pass short left to St.Johnson pushed ob at BUF 43 for 23 yards (D.Washington).,9,13,2012 -20121014_BUF@ARI,3,17,46,BUF,ARI,1,10,57,(2:46) C.Spiller up the middle to 50 for 7 yards (A.Wilson; D.Washington).,9,13,2012 -20121014_BUF@ARI,3,17,3,BUF,ARI,2,3,50,(2:03) C.Spiller up the middle to ARZ 17 for 33 yards (K.Rhodes).,9,13,2012 -20121014_BUF@ARI,3,16,20,BUF,ARI,1,10,17,(1:20) (Shotgun) B.Smith scrambles right end to ARZ 1 for 16 yards (P.Peterson; D.Washington).,9,13,2012 -20121014_BUF@ARI,3,15,35,BUF,ARI,1,1,1,(:35) F.Jackson up the middle for 1 yard TOUCHDOWN.,9,13,2012 -20121014_BUF@ARI,3,15,35,BUF,ARI,,,1,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,9,13,2012 -20121014_BUF@ARI,3,15,35,BUF,ARI,,,1,R.Lindell kicks 66 yards from BUF 35 to ARZ -1. W.Powell to ARZ 16 for 17 yards (C.White).,16,13,2012 -20121014_BUF@ARI,3,15,21,ARI,BUF,1,10,84,(:21) K.Kolb scrambles right tackle to ARZ 34 for 18 yards (K.Sheppard).,13,16,2012 -20121014_BUF@ARI,4,15,0,ARI,BUF,1,10,66,(15:00) L.Stephens-Howling right tackle to ARZ 45 for 11 yards (K.Sheppard).,13,16,2012 -20121014_BUF@ARI,4,14,25,ARI,BUF,1,10,55,(14:25) L.Stephens-Howling right tackle to ARZ 45 for no gain (C.Kelsay).,13,16,2012 -20121014_BUF@ARI,4,13,49,ARI,BUF,2,10,55,(13:49) K.Kolb scrambles left end ran ob at BUF 43 for 12 yards (S.Gilmore).,13,16,2012 -20121014_BUF@ARI,4,13,14,ARI,BUF,1,10,43,(13:14) K.Kolb pass short right to R.Maui'a to BUF 36 for 7 yards (M.Williams). PENALTY on ARZ-R.Maui'a Delay of Game 5 yards enforced between downs.,13,16,2012 -20121014_BUF@ARI,4,13,14,ARI,BUF,2,8,41,(13:14) PENALTY on ARZ-J.King False Start 5 yards enforced at BUF 41 - No Play.,13,16,2012 -20121014_BUF@ARI,4,12,20,ARI,BUF,2,13,46,(12:20) K.Kolb sacked at BUF 49 for -3 yards (N.Barnett).,13,16,2012 -20121014_BUF@ARI,4,11,46,ARI,BUF,3,16,49,(11:46) (Shotgun) K.Kolb pass incomplete short right to L.Fitzgerald.,13,16,2012 -20121014_BUF@ARI,4,11,39,ARI,BUF,4,16,49,(11:39) D.Zastudil punts 46 yards to BUF 3 Center-M.Leach downed by ARZ-M.Leach.,13,16,2012 -20121014_BUF@ARI,4,11,24,BUF,ARI,1,10,97,(11:24) R.Fitzpatrick pass short right to T.Graham to BUF 9 for 6 yards (J.Fleming).,16,13,2012 -20121014_BUF@ARI,4,10,45,BUF,ARI,2,4,91,(10:45) F.Jackson up the middle to BUF 12 for 3 yards (P.Lenon).,16,13,2012 -20121014_BUF@ARI,4,10,0,BUF,ARI,3,1,88,(10:00) (Shotgun) C.Spiller up the middle to BUF 13 for 1 yard (C.Campbell).,16,13,2012 -20121014_BUF@ARI,4,9,32,BUF,ARI,1,10,87,(9:32) R.Fitzpatrick pass short left to St.Johnson to BUF 31 for 18 yards (P.Peterson).,16,13,2012 -20121014_BUF@ARI,4,8,49,BUF,ARI,1,10,69,(8:49) C.Spiller up the middle to BUF 27 for -4 yards (C.Campbell). PENALTY on BUF-L.Smith Unnecessary Roughness 14 yards enforced between downs.,16,13,2012 -20121014_BUF@ARI,4,8,17,BUF,ARI,2,28,87,(8:17) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 20 for 7 yards (A.Wilson).,16,13,2012 -20121014_BUF@ARI,4,7,41,BUF,ARI,3,21,80,(7:41) (Shotgun) R.Fitzpatrick pass short left to C.Spiller ran ob at BUF 31 for 11 yards (P.Peterson).,16,13,2012 -20121014_BUF@ARI,4,7,21,BUF,ARI,4,10,69,(7:21) S.Powell punts 39 yards to ARZ 30 Center-G.Sanborn out of bounds.,16,13,2012 -20121014_BUF@ARI,4,7,15,ARI,BUF,1,10,70,(7:15) K.Kolb pass short middle to A.Roberts to ARZ 46 for 16 yards (G.Wilson).,13,16,2012 -20121014_BUF@ARI,4,6,40,ARI,BUF,1,10,54,(6:40) W.Powell left end to BUF 43 for 11 yards (G.Wilson).,13,16,2012 -20121014_BUF@ARI,4,6,2,ARI,BUF,1,10,43,(6:02) K.Kolb pass short middle intended for J.King INTERCEPTED by J.Byrd at BUF 34. J.Byrd to BUF 41 for 7 yards (W.Powell).,13,16,2012 -20121014_BUF@ARI,4,5,54,BUF,ARI,1,10,59,(5:54) R.Fitzpatrick pass incomplete short left to St.Johnson.,16,13,2012 -20121014_BUF@ARI,4,5,50,BUF,ARI,2,10,59,(5:50) (Shotgun) R.Fitzpatrick pass short left to F.Jackson pushed ob at ARZ 47 for 12 yards (P.Lenon). ARZ-K.Rhodes was injured during the play. His return is Questionable.,16,13,2012 -20121014_BUF@ARI,4,5,25,BUF,ARI,1,10,47,(5:25) F.Jackson up the middle to ARZ 40 for 7 yards (P.Lenon).,16,13,2012 -20121014_BUF@ARI,4,4,42,BUF,ARI,2,3,40,(4:42) F.Jackson right tackle to ARZ 37 for 3 yards (D.Washington).,16,13,2012 -20121014_BUF@ARI,4,4,0,BUF,ARI,1,10,37,(4:00) F.Jackson up the middle to ARZ 36 for 1 yard (D.Dockett).,16,13,2012 -20121014_BUF@ARI,4,4,0,BUF,ARI,2,9,36,(4:00) Direct snap to B.Smith. B.Smith pass deep middle intended for D.Jones INTERCEPTED by P.Peterson at ARZ 0. P.Peterson to ARZ 15 for 15 yards (E.Pears).,16,13,2012 -20121014_BUF@ARI,4,3,7,ARI,BUF,1,10,85,(3:07) K.Kolb pass short left to L.Fitzgerald to ARZ 29 for 14 yards (S.Gilmore).,13,16,2012 -20121014_BUF@ARI,4,2,40,ARI,BUF,1,10,71,(2:40) (Shotgun) K.Kolb pass incomplete deep right to A.Roberts. PENALTY on ARZ-D.Batiste Offensive Holding 10 yards enforced at ARZ 29 - No Play.,13,16,2012 -20121014_BUF@ARI,4,2,35,ARI,BUF,1,20,81,(2:35) (Shotgun) K.Kolb scrambles right tackle to ARZ 41 for 22 yards (L.McKelvin).,13,16,2012 -20121014_BUF@ARI,4,2,6,ARI,BUF,1,10,59,(2:06) (No Huddle Shotgun) K.Kolb right end to ARZ 40 for -1 yards (A.Carrington; C.Kelsay). ARZ-K.Kolb was injured during the play. His return is Doubtful.,13,16,2012 -20121014_BUF@ARI,4,2,1,ARI,BUF,2,11,60,(2:01) J.Skelton pass incomplete short middle to L.Stephens-Howling.,13,16,2012 -20121014_BUF@ARI,4,1,58,ARI,BUF,3,11,60,(1:58) (Shotgun) J.Skelton pass incomplete short right to E.Doucet [K.Moore].,13,16,2012 -20121014_BUF@ARI,4,1,53,ARI,BUF,4,11,60,(1:53) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to BUF 43 for 17 yards (B.Scott).,13,16,2012 -20121014_BUF@ARI,4,1,27,ARI,BUF,1,10,43,(1:27) (No Huddle Shotgun) J.Skelton pass incomplete short left to L.Fitzgerald.,13,16,2012 -20121014_BUF@ARI,4,1,21,ARI,BUF,2,10,43,(1:21) (No Huddle Shotgun) J.Skelton pass incomplete short left to E.Doucet (L.McKelvin).,13,16,2012 -20121014_BUF@ARI,4,1,18,ARI,BUF,3,10,43,(1:18) (Shotgun) J.Skelton pass incomplete short left to M.Floyd [K.Moore].,13,16,2012 -20121014_BUF@ARI,4,1,14,ARI,BUF,4,10,43,(1:14) J.Feely 61 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,13,16,2012 -20121014_BUF@ARI,4,1,14,ARI,BUF,,,43,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,16,16,2012 -20121014_BUF@ARI,4,1,9,BUF,ARI,1,10,80,(1:09) (Shotgun) R.Fitzpatrick sacked at BUF 14 for -6 yards (O.Schofield).,16,16,2012 -20121014_BUF@ARI,4,1,5,BUF,ARI,2,16,86,(1:05) (Shotgun) F.Jackson up the middle to BUF 16 for 2 yards (C.Campbell).,16,16,2012 -20121014_BUF@ARI,4,1,1,BUF,ARI,3,14,84,(1:01) F.Jackson up the middle to BUF 23 for 7 yards (D.Washington).,16,16,2012 -20121014_BUF@ARI,4,0,57,BUF,ARI,4,7,77,(:57) (Punt formation) S.Powell punts 30 yards to ARZ 47 Center-G.Sanborn out of bounds.,16,16,2012 -20121014_BUF@ARI,4,0,50,ARI,BUF,1,10,53,(:50) (Shotgun) J.Skelton pass incomplete short left to M.Floyd. PENALTY on BUF-S.Gilmore Defensive Holding 5 yards enforced at ARZ 47 - No Play.,16,16,2012 -20121014_BUF@ARI,4,0,46,ARI,BUF,1,10,48,(:46) J.Skelton pass short right to L.Fitzgerald to BUF 20 for 28 yards (J.Byrd).,16,16,2012 -20121014_BUF@ARI,4,0,3,ARI,BUF,1,10,20,(:03) (No Huddle) J.Skelton spiked the ball to stop the clock.,16,16,2012 -20121014_BUF@ARI,4,0,2,ARI,BUF,2,10,20,(:02) J.Feely 38 yard field goal is No Good Hit Left Upright Center-M.Leach Holder-D.Zastudil.,16,16,2012 -20121014_BUF@ARI,5,0,0,ARI,BUF,,,20,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,16,16,2012 -20121014_BUF@ARI,5,0,0,BUF,ARI,1,10,80,(15:00) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones.,16,16,2012 -20121014_BUF@ARI,5,-1,56,BUF,ARI,2,10,80,(14:56) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 27 for 7 yards (J.Fleming).,16,16,2012 -20121014_BUF@ARI,5,-1,13,BUF,ARI,3,3,73,(14:13) (Shotgun) R.Fitzpatrick pass incomplete deep left to D.Jones. PENALTY on ARZ-S.Acho Defensive Pass Interference 21 yards enforced at BUF 27 - No Play.,16,16,2012 -20121014_BUF@ARI,5,-1,8,BUF,ARI,1,10,52,(14:08) (Shotgun) R.Fitzpatrick pass incomplete short middle to C.Spiller (S.Acho).,16,16,2012 -20121014_BUF@ARI,5,-1,2,BUF,ARI,2,10,52,(14:02) C.Spiller up the middle to ARZ 35 for 17 yards (R.Johnson).,16,16,2012 -20121014_BUF@ARI,5,-2,19,BUF,ARI,1,10,35,(13:19) R.Fitzpatrick pass incomplete deep right to T.Graham.,16,16,2012 -20121014_BUF@ARI,5,-2,14,BUF,ARI,2,10,35,(13:14) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Graham (P.Peterson).,16,16,2012 -20121014_BUF@ARI,5,-2,8,BUF,ARI,3,10,35,(13:08) (Shotgun) R.Fitzpatrick pass incomplete short right to F.Jackson (D.Dockett).,16,16,2012 -20121014_BUF@ARI,5,-2,3,BUF,ARI,4,10,35,(13:03) (Punt formation) PENALTY on BUF-A.Moats False Start 5 yards enforced at ARZ 35 - No Play.,16,16,2012 -20121014_BUF@ARI,5,-2,8,BUF,ARI,4,10,35,(13:08) (Punt formation) PENALTY on BUF-A.Moats False Start 5 yards enforced at ARZ 35 - No Play.,16,16,2012 -20121014_BUF@ARI,5,-2,3,BUF,ARI,4,15,40,(13:03) S.Powell punts 40 yards to end zone Center-G.Sanborn Touchback. The Replay Assistant challenged the kick touched ruling and the play was Upheld.,16,16,2012 -20121014_BUF@ARI,5,-3,53,ARI,BUF,1,10,80,(12:53) L.Stephens-Howling left tackle to ARZ 20 for no gain (C.Kelsay).,16,16,2012 -20121014_BUF@ARI,5,-3,13,ARI,BUF,2,10,80,(12:13) J.Skelton pass incomplete short right to L.Stephens-Howling.,16,16,2012 -20121014_BUF@ARI,5,-3,8,ARI,BUF,3,10,80,(12:08) (Shotgun) J.Skelton pass short middle intended for R.Housler INTERCEPTED by J.Byrd at ARZ 35. J.Byrd to ARZ 6 for 29 yards (M.Floyd).,16,16,2012 -20121014_BUF@ARI,5,-4,55,BUF,ARI,1,6,6,(11:55) R.Fitzpatrick scrambles right tackle to ARZ 7 for -1 yards (C.Campbell).,16,16,2012 -20121014_BUF@ARI,5,-4,13,BUF,ARI,2,7,7,(11:13) R.Lindell 25 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,16,16,2012 -20121014_BUF@ARI,5,-4,13,BUF,ARI,,,7,                      ,19,16,2012 -20121014_NE@SEA,1,-4,0,SEA,NE,,,7,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,0,0,2012 -20121014_NE@SEA,1,60,0,NE,SEA,1,10,80,(15:00) (Shotgun) T.Brady pass short left to A.Hernandez pushed ob at NE 28 for 8 yards (K.Wright) [C.Clemons].,0,0,2012 -20121014_NE@SEA,1,59,38,NE,SEA,2,2,72,(14:38) T.Brady pass short left to B.Lloyd ran ob at NE 35 for 7 yards.,0,0,2012 -20121014_NE@SEA,1,59,29,NE,SEA,1,10,65,(14:29) S.Ridley right tackle to NE 37 for 2 yards (B.Mebane).,0,0,2012 -20121014_NE@SEA,1,58,46,NE,SEA,2,8,63,(13:46) S.Ridley left tackle to NE 38 for 1 yard (K.Wright).,0,0,2012 -20121014_NE@SEA,1,58,6,NE,SEA,3,7,62,(13:06) (Shotgun) T.Brady pass incomplete deep middle to D.Branch (R.Sherman).,0,0,2012 -20121014_NE@SEA,1,58,0,NE,SEA,4,7,62,(13:00) Z.Mesko punts 46 yards to SEA 16 Center-D.Aiken fair catch by L.Washington.,0,0,2012 -20121014_NE@SEA,1,57,52,SEA,NE,1,10,84,(12:52) R.Wilson sacked at SEA 16 for 0 yards (V.Wilfork). PENALTY on NE-V.Wilfork Defensive Offside 5 yards enforced at SEA 16 - No Play. Unabated to the QB.,0,0,2012 -20121014_NE@SEA,1,57,34,SEA,NE,1,5,79,(12:34) M.Lynch left guard to SEA 25 for 4 yards (K.Love; C.Jones).,0,0,2012 -20121014_NE@SEA,1,56,59,SEA,NE,2,1,75,(11:59) M.Lynch right tackle to SEA 25 for no gain (R.Ninkovich).,0,0,2012 -20121014_NE@SEA,1,56,20,SEA,NE,3,1,75,(11:20) R.Wilson pass short left to R.Turbin pushed ob at SEA 31 for 6 yards (K.Arrington).,0,0,2012 -20121014_NE@SEA,1,55,53,SEA,NE,1,10,69,(10:53) R.Wilson pass deep right to S.Rice ran ob at NE 40 for 29 yards. Penalty on NE-P.Chung Illegal Contact declined.,0,0,2012 -20121014_NE@SEA,1,55,29,SEA,NE,1,10,40,(10:29) (Shotgun) R.Wilson pass deep right to Z.Miller to NE 18 for 22 yards (B.Spikes).,0,0,2012 -20121014_NE@SEA,1,54,53,SEA,NE,1,10,18,(9:53) M.Lynch left tackle to NE 14 for 4 yards (J.Mayo; C.Jones).,0,0,2012 -20121014_NE@SEA,1,54,17,SEA,NE,2,6,14,(9:17) M.Lynch right tackle to NE 9 for 5 yards (D.McCourty; P.Chung).,0,0,2012 -20121014_NE@SEA,1,53,36,SEA,NE,3,1,9,(8:36) M.Lynch right guard to NE 11 for -2 yards (B.Spikes).,0,0,2012 -20121014_NE@SEA,1,53,36,SEA,NE,4,3,11,(8:36) (Field Goal formation) PENALTY on SEA-C.Gresham False Start 5 yards enforced at NE 11 - No Play.,0,0,2012 -20121014_NE@SEA,1,52,39,SEA,NE,4,8,16,(7:39) S.Hauschka 34 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121014_NE@SEA,1,52,39,SEA,NE,,,16,S.Hauschka kicks 67 yards from SEA 35 to NE -2. D.Woodhead to NE 18 for 20 yards (H.Farwell; C.Maragos).,3,0,2012 -20121014_NE@SEA,1,52,31,NE,SEA,1,10,82,(7:31) (Shotgun) T.Brady pass short left to W.Welker to NE 24 for 6 yards (M.Trufant).,0,3,2012 -20121014_NE@SEA,1,51,57,NE,SEA,2,4,76,(6:57) (No Huddle Shotgun) T.Brady pass incomplete short right to S.Ridley.,0,3,2012 -20121014_NE@SEA,1,51,52,NE,SEA,3,4,76,(6:52) (Shotgun) T.Brady pass short left to A.Hernandez to NE 34 for 10 yards (K.Wright).,0,3,2012 -20121014_NE@SEA,1,51,15,NE,SEA,1,10,66,(6:15) (Shotgun) T.Brady pass incomplete short right to B.Lloyd.,0,3,2012 -20121014_NE@SEA,1,51,11,NE,SEA,2,10,66,(6:11) T.Brady pass deep left to B.Lloyd ran ob at SEA 46 for 20 yards.,0,3,2012 -20121014_NE@SEA,1,50,59,NE,SEA,1,10,46,(5:59) (No Huddle Shotgun) T.Brady pass deep left to W.Welker for 46 yards TOUCHDOWN.,0,3,2012 -20121014_NE@SEA,1,50,59,NE,SEA,,,46,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,3,2012 -20121014_NE@SEA,1,50,59,NE,SEA,,,46,S.Gostkowski kicks 67 yards from NE 35 to SEA -2. L.Washington to SEA 15 for 17 yards (M.Slater).,7,3,2012 -20121014_NE@SEA,1,50,44,SEA,NE,1,10,85,(5:44) M.Lynch right tackle to SEA 22 for 7 yards (P.Chung; J.Mayo).,3,7,2012 -20121014_NE@SEA,1,50,5,SEA,NE,2,3,78,(5:05) R.Wilson pass short left to G.Tate to SEA 16 for -6 yards (A.Dennard).,3,7,2012 -20121014_NE@SEA,1,49,25,SEA,NE,3,9,84,(4:25) (Shotgun) R.Wilson pass deep middle to D.Baldwin to NE 34 for 50 yards (K.Arrington).,3,7,2012 -20121014_NE@SEA,1,48,37,SEA,NE,1,10,34,(3:37) R.Wilson pass short left to S.Rice ran ob at NE 28 for 6 yards.,3,7,2012 -20121014_NE@SEA,1,48,13,SEA,NE,2,4,28,(3:13) R.Wilson pass incomplete deep left to G.Tate.,3,7,2012 -20121014_NE@SEA,1,48,7,SEA,NE,3,4,28,(3:07) (Shotgun) R.Wilson scrambles right tackle to NE 19 for 9 yards (B.Spikes).,3,7,2012 -20121014_NE@SEA,1,47,15,SEA,NE,1,10,19,(2:15) PENALTY on SEA-M.Unger False Start 5 yards enforced at NE 19 - No Play.,3,7,2012 -20121014_NE@SEA,1,46,59,SEA,NE,1,15,24,(1:59) R.Wilson pass deep middle to D.Baldwin for 24 yards TOUCHDOWN.,3,7,2012 -20121014_NE@SEA,1,46,59,SEA,NE,,,24,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,7,2012 -20121014_NE@SEA,1,46,59,SEA,NE,,,24,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,7,2012 -20121014_NE@SEA,1,46,50,NE,SEA,1,10,80,(1:50) (Shotgun) PENALTY on NE-S.Vollmer False Start 5 yards enforced at NE 20 - No Play.,7,10,2012 -20121014_NE@SEA,1,46,50,NE,SEA,1,15,85,(1:50) (Shotgun) B.Bolden right tackle to NE 18 for 3 yards (M.Trufant; B.Wagner).,7,10,2012 -20121014_NE@SEA,1,46,17,NE,SEA,2,12,82,(1:17) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to NE 38 for 20 yards (E.Thomas).,7,10,2012 -20121014_NE@SEA,1,45,36,NE,SEA,1,10,62,(:36) D.Connolly reported in as eligible. T.Brady pass short right to R.Gronkowski pushed ob at NE 49 for 11 yards (R.Sherman).,7,10,2012 -20121014_NE@SEA,1,45,21,NE,SEA,1,10,51,(:21) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski to SEA 46 for 5 yards (B.Wagner; K.Wright).,7,10,2012 -20121014_NE@SEA,2,45,0,NE,SEA,2,5,46,(15:00) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at SEA 38 for 8 yards.,7,10,2012 -20121014_NE@SEA,2,44,49,NE,SEA,1,10,38,(14:49) (No Huddle) B.Bolden right guard to SEA 25 for 13 yards (B.Wagner; E.Thomas).,7,10,2012 -20121014_NE@SEA,2,44,27,NE,SEA,1,10,25,(14:27) (No Huddle) B.Bolden right tackle to SEA 22 for 3 yards (B.Wagner).,7,10,2012 -20121014_NE@SEA,2,43,54,NE,SEA,2,7,22,(13:54) T.Brady pass incomplete deep right to W.Welker (R.Sherman).,7,10,2012 -20121014_NE@SEA,2,43,48,NE,SEA,3,7,22,(13:48) (Shotgun) T.Brady pass short middle to W.Welker to SEA 14 for 8 yards (M.Trufant).,7,10,2012 -20121014_NE@SEA,2,43,16,NE,SEA,1,10,14,(13:16) (Shotgun) T.Brady pass short left to D.Branch pushed ob at SEA 9 for 5 yards (B.Browner).,7,10,2012 -20121014_NE@SEA,2,42,51,NE,SEA,2,5,9,(12:51) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski to SEA 5 for 4 yards (K.Wright).,7,10,2012 -20121014_NE@SEA,2,42,21,NE,SEA,3,1,5,(12:21) B.Bolden left tackle to SEA 3 for 2 yards (B.Mebane; K.Chancellor).,7,10,2012 -20121014_NE@SEA,2,41,42,NE,SEA,1,3,3,(11:42) (No Huddle Shotgun) T.Brady pass incomplete short left to R.Gronkowski (E.Thomas). PENALTY on NE Illegal Shift 5 yards enforced at SEA 3 - No Play.,7,10,2012 -20121014_NE@SEA,2,41,38,NE,SEA,1,8,8,(11:38) (Shotgun) B.Bolden up the middle to SEA 3 for 5 yards (B.Mebane).,7,10,2012 -20121014_NE@SEA,2,41,17,NE,SEA,2,3,3,(11:17) (No Huddle) B.Bolden left tackle to SEA 1 for 2 yards (B.Browner).,7,10,2012 -20121014_NE@SEA,2,40,38,NE,SEA,3,1,1,(10:38) D.Connolly reported in as eligible. T.Brady pass short right to A.Hernandez for 1 yard TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,7,10,2012 -20121014_NE@SEA,2,40,38,NE,SEA,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,10,2012 -20121014_NE@SEA,2,40,38,NE,SEA,,,1,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback. NE-B.Bolden was injured during the play. His return is Questionable.,14,10,2012 -20121014_NE@SEA,2,40,33,SEA,NE,1,10,80,(10:33) R.Turbin left tackle to SEA 25 for 5 yards (J.Mayo; R.Ninkovich).,10,14,2012 -20121014_NE@SEA,2,39,59,SEA,NE,2,5,75,(9:59) R.Turbin left end to SEA 36 for 11 yards (C.Jones; A.Dennard).,10,14,2012 -20121014_NE@SEA,2,39,22,SEA,NE,1,10,64,(9:22) R.Turbin left tackle to SEA 37 for 1 yard (J.Mayo; B.Spikes).,10,14,2012 -20121014_NE@SEA,2,38,50,SEA,NE,2,9,63,(8:50) R.Wilson pass short right to R.Turbin to NE 48 for 15 yards (P.Chung).,10,14,2012 -20121014_NE@SEA,2,38,9,SEA,NE,1,10,48,(8:09) R.Wilson scrambles left tackle to NE 47 for 1 yard (K.Love; C.Jones).,10,14,2012 -20121014_NE@SEA,2,37,26,SEA,NE,2,9,47,(7:26) M.Lynch right end to NE 48 for -1 yards (D.McCourty R.Ninkovich). Penalty on SEA-P.McQuistan Offensive Holding declined.,10,14,2012 -20121014_NE@SEA,2,37,4,SEA,NE,3,10,48,(7:04) (Shotgun) R.Wilson sacked at SEA 49 for -3 yards (C.Jones). FUMBLES (C.Jones) [C.Jones] RECOVERED by NE-R.Ninkovich at SEA 47. R.Ninkovich to SEA 47 for no gain (B.Giacomini). Play Challenged by Replay Assistant and Upheld.,10,14,2012 -20121014_NE@SEA,2,36,57,NE,SEA,1,10,47,(6:57) (Shotgun) T.Brady pass short right to W.Welker to SEA 40 for 7 yards (B.Browner).,14,10,2012 -20121014_NE@SEA,2,36,27,NE,SEA,2,3,40,(6:27) S.Ridley up the middle to SEA 37 for 3 yards (K.Chancellor).,14,10,2012 -20121014_NE@SEA,2,35,43,NE,SEA,1,10,37,(5:43) (Shotgun) T.Brady pass incomplete deep right to A.Hernandez.,14,10,2012 -20121014_NE@SEA,2,35,37,NE,SEA,2,10,37,(5:37) (Shotgun) T.Brady pass short left to S.Ridley to SEA 37 for no gain (C.Clemons).,14,10,2012 -20121014_NE@SEA,2,34,55,NE,SEA,3,10,37,(4:55) (Shotgun) T.Brady pass short middle to W.Welker to SEA 26 for 11 yards (K.Wright).,14,10,2012 -20121014_NE@SEA,2,34,28,NE,SEA,1,10,26,(4:28) (No Huddle) S.Ridley right guard to SEA 24 for 2 yards (K.Wright; B.Mebane).,14,10,2012 -20121014_NE@SEA,2,33,46,NE,SEA,2,8,24,(3:46) (No Huddle Shotgun) T.Brady pass short right to B.Lloyd to SEA 15 for 9 yards (R.Sherman).,14,10,2012 -20121014_NE@SEA,2,33,12,NE,SEA,1,10,15,(3:12) (No Huddle Shotgun) T.Brady pass incomplete short right to A.Hernandez [B.Irvin].,14,10,2012 -20121014_NE@SEA,2,33,7,NE,SEA,2,10,15,(3:07) (Shotgun) T.Brady pass incomplete short middle to D.Fells.,14,10,2012 -20121014_NE@SEA,2,33,3,NE,SEA,3,10,15,(3:03) (Shotgun) T.Brady pass short left to W.Welker to SEA 6 for 9 yards (E.Thomas; K.Chancellor).,14,10,2012 -20121014_NE@SEA,2,32,15,NE,SEA,4,1,6,(2:15) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,14,10,2012 -20121014_NE@SEA,2,32,15,NE,SEA,,,6,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,17,10,2012 -20121014_NE@SEA,2,32,12,SEA,NE,1,10,80,(2:12) (Shotgun) R.Wilson pass short right to L.Washington to SEA 29 for 9 yards (T.Wilson).,10,17,2012 -20121014_NE@SEA,2,32,0,SEA,NE,2,1,71,(2:00) M.Lynch left tackle to SEA 32 for 3 yards (C.Jones).,10,17,2012 -20121014_NE@SEA,2,31,24,SEA,NE,1,10,68,(1:24) (Shotgun) R.Wilson pass incomplete short left to L.Washington [C.Jones].,10,17,2012 -20121014_NE@SEA,2,31,17,SEA,NE,2,10,68,(1:17) M.Lynch right tackle to SEA 38 for 6 yards (R.Ninkovich).,10,17,2012 -20121014_NE@SEA,2,30,53,SEA,NE,3,4,62,(:53) (No Huddle Shotgun) R.Wilson pass incomplete short right to S.Rice (D.McCourty).,10,17,2012 -20121014_NE@SEA,2,30,48,SEA,NE,4,4,76,(:48) (Punt formation) J.Ryan FUMBLES (Aborted) at SEA 24 and recovers at SEA 24. J.Ryan to SEA 24 for no gain (T.Scott; B.Carpenter).,10,17,2012 -20121014_NE@SEA,2,30,40,NE,SEA,1,10,24,(:40) (Shotgun) T.Brady pass short middle to W.Welker to SEA 9 for 15 yards (E.Thomas).,17,10,2012 -20121014_NE@SEA,2,30,19,NE,SEA,1,9,9,(:19) (Shotgun) T.Brady pass short middle to D.Woodhead to SEA 3 for 6 yards (B.Wagner).,17,10,2012 -20121014_NE@SEA,2,30,12,NE,SEA,2,3,3,(:12) (Shotgun) T.Brady pass incomplete short left to R.Gronkowski (E.Thomas).,17,10,2012 -20121014_NE@SEA,2,30,6,NE,SEA,3,3,3,(:06) (Shotgun) T.Brady pass incomplete short middle. Penalty on NE-T.Brady Intentional Grounding declined. Penalty requires a 10 second runoff. End of half.,17,10,2012 -20121014_NE@SEA,3,30,0,NE,SEA,,,3,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,17,10,2012 -20121014_NE@SEA,3,30,0,SEA,NE,1,10,80,(15:00) M.Lynch right guard to SEA 16 for -4 yards (B.Spikes).,10,17,2012 -20121014_NE@SEA,3,29,21,SEA,NE,2,14,84,(14:21) (Shotgun) R.Wilson sacked at SEA 11 for -5 yards (C.Jones).,10,17,2012 -20121014_NE@SEA,3,28,50,SEA,NE,3,19,89,(13:50) (Shotgun) R.Turbin up the middle to SEA 16 for 5 yards (J.Mayo; J.Cunningham).,10,17,2012 -20121014_NE@SEA,3,28,19,SEA,NE,4,14,84,(13:19) J.Ryan punts 66 yards to NE 18 Center-C.Gresham. W.Welker to NE 35 for 17 yards (M.Robinson; H.Farwell).,10,17,2012 -20121014_NE@SEA,3,28,4,NE,SEA,1,10,65,(13:04) (Shotgun) T.Brady pass short right to A.Hernandez to NE 39 for 4 yards (K.Chancellor).,17,10,2012 -20121014_NE@SEA,3,27,27,NE,SEA,2,6,61,(12:27) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,17,10,2012 -20121014_NE@SEA,3,27,23,NE,SEA,3,6,61,(12:23) (Shotgun) D.Woodhead left guard to NE 46 for 7 yards (G.Scruggs; B.Irvin).,17,10,2012 -20121014_NE@SEA,3,26,49,NE,SEA,1,10,54,(11:49) N.McDonald reported in as eligible. T.Brady pass short left to D.Fells to SEA 19 for 35 yards (B.Browner).,17,10,2012 -20121014_NE@SEA,3,26,11,NE,SEA,1,10,19,(11:11) (No Huddle Shotgun) S.Ridley left tackle to SEA 13 for 6 yards (C.Clemons).,17,10,2012 -20121014_NE@SEA,3,25,47,NE,SEA,2,4,13,(10:47) (No Huddle) S.Ridley up the middle to SEA 16 for -3 yards (B.Wagner).,17,10,2012 -20121014_NE@SEA,3,25,4,NE,SEA,3,7,16,(10:04) (Shotgun) T.Brady pass short left to A.Hernandez to SEA 17 for -1 yards (B.Browner).,17,10,2012 -20121014_NE@SEA,3,24,25,NE,SEA,4,8,17,(9:25) S.Gostkowski 35 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,17,10,2012 -20121014_NE@SEA,3,24,25,NE,SEA,,,17,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,20,10,2012 -20121014_NE@SEA,3,24,21,SEA,NE,1,10,80,(9:21) R.Wilson pass short left to M.Lynch pushed ob at SEA 31 for 11 yards (P.Chung).,10,20,2012 -20121014_NE@SEA,3,24,0,SEA,NE,1,10,69,(9:00) R.Wilson pass short left to B.Edwards to SEA 42 for 11 yards (A.Dennard).,10,20,2012 -20121014_NE@SEA,3,23,18,SEA,NE,1,10,58,(8:18) R.Wilson pass incomplete deep left to G.Tate [B.Deaderick].,10,20,2012 -20121014_NE@SEA,3,23,12,SEA,NE,2,10,58,(8:12) (Shotgun) R.Wilson pass incomplete short left to B.Edwards.,10,20,2012 -20121014_NE@SEA,3,23,8,SEA,NE,3,10,58,(8:08) (Shotgun) R.Wilson scrambles right end ran ob at NE 32 for 26 yards. PENALTY on SEA-B.Giacomini Offensive Holding 10 yards enforced at SEA 42 - No Play.,10,20,2012 -20121014_NE@SEA,3,22,32,SEA,NE,3,20,68,(7:32) (Shotgun) R.Wilson pass incomplete deep middle to B.Obomanu (T.Wilson).,10,20,2012 -20121014_NE@SEA,3,22,23,SEA,NE,4,20,68,(7:23) J.Ryan punts 50 yards to NE 18 Center-C.Gresham. W.Welker to NE 26 for 8 yards (B.Maxwell).,10,20,2012 -20121014_NE@SEA,3,22,13,NE,SEA,1,10,74,(7:13) S.Ridley right end to NE 25 for -1 yards (B.Wagner; B.Mebane).,20,10,2012 -20121014_NE@SEA,3,21,36,NE,SEA,2,11,75,(6:36) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker.,20,10,2012 -20121014_NE@SEA,3,21,31,NE,SEA,3,11,75,(6:31) (Shotgun) T.Brady pass short left to W.Welker to NE 37 for 12 yards (K.Chancellor).,20,10,2012 -20121014_NE@SEA,3,20,50,NE,SEA,1,10,63,(5:50) (Shotgun) T.Brady pass short middle to R.Gronkowski to SEA 48 for 15 yards (K.Wright).,20,10,2012 -20121014_NE@SEA,3,20,22,NE,SEA,1,10,48,(5:22) (No Huddle) S.Ridley left tackle to SEA 43 for 5 yards (K.Wright).,20,10,2012 -20121014_NE@SEA,3,19,52,NE,SEA,2,5,43,(4:52) (No Huddle Shotgun) T.Brady pass deep right intended for D.Branch INTERCEPTED by R.Sherman at SEA 20. R.Sherman to SEA 20 for no gain (D.Branch).,20,10,2012 -20121014_NE@SEA,3,19,45,SEA,NE,1,10,80,(4:45) M.Lynch right tackle to SEA 24 for 4 yards (J.Mayo).,10,20,2012 -20121014_NE@SEA,3,19,10,SEA,NE,2,6,76,(4:10) M.Lynch right tackle to SEA 27 for 3 yards (J.Mayo; K.Love).,10,20,2012 -20121014_NE@SEA,3,18,34,SEA,NE,3,3,73,(3:34) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (V.Wilfork).,10,20,2012 -20121014_NE@SEA,3,18,30,SEA,NE,4,3,73,(3:30) J.Ryan punts 66 yards to NE 7 Center-C.Gresham. W.Welker to NE 34 for 27 yards (K.Wright).,10,20,2012 -20121014_NE@SEA,3,18,16,NE,SEA,1,10,66,(3:16) (Shotgun) T.Brady pass short left to D.Woodhead to NE 36 for 2 yards (M.Trufant).,20,10,2012 -20121014_NE@SEA,3,17,51,NE,SEA,2,8,64,(2:51) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd to NE 49 for 13 yards (B.Browner).,20,10,2012 -20121014_NE@SEA,3,17,26,NE,SEA,1,10,51,(2:26) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to SEA 43 for 8 yards (K.Chancellor).,20,10,2012 -20121014_NE@SEA,3,16,53,NE,SEA,2,2,43,(1:53) (No Huddle Shotgun) T.Brady pass incomplete short right to B.Lloyd.,20,10,2012 -20121014_NE@SEA,3,16,48,NE,SEA,3,2,43,(1:48) (Shotgun) T.Brady pass short right to R.Gronkowski to SEA 37 for 6 yards (K.Chancellor).,20,10,2012 -20121014_NE@SEA,3,16,8,NE,SEA,1,10,37,(1:08) N.McDonald reported in as eligible. S.Ridley left guard to SEA 34 for 3 yards (M.Trufant; B.Wagner).,20,10,2012 -20121014_NE@SEA,3,15,33,NE,SEA,2,7,34,(:33) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,20,10,2012 -20121014_NE@SEA,3,15,30,NE,SEA,3,7,34,(:30) (Shotgun) T.Brady pass short middle to D.Woodhead to SEA 30 for 4 yards (M.Trufant; B.Wagner) [C.Clemons]. PENALTY on SEA-J.Jones Unnecessary Roughness 15 yards enforced at SEA 30.,20,10,2012 -20121014_NE@SEA,4,15,0,NE,SEA,1,10,15,(15:00) (Shotgun) D.Woodhead right guard to SEA 10 for 5 yards (E.Thomas; C.Clemons).,20,10,2012 -20121014_NE@SEA,4,14,29,NE,SEA,2,5,10,(14:29) (Shotgun) D.Woodhead right tackle to SEA 6 for 4 yards (B.Mebane; A.Branch).,20,10,2012 -20121014_NE@SEA,4,13,43,NE,SEA,3,1,6,(13:43) (Shotgun) T.Brady pass short middle intended for W.Welker INTERCEPTED by E.Thomas at SEA -3. E.Thomas pushed ob at SEA 20 for 23 yards (T.Brady).,20,10,2012 -20121014_NE@SEA,4,13,29,SEA,NE,1,10,80,(13:29) S.Rice pass incomplete deep right to G.Tate. PENALTY on NE-P.Chung Defensive Pass Interference 40 yards enforced at SEA 20 - No Play.,10,20,2012 -20121014_NE@SEA,4,13,21,SEA,NE,1,10,40,(13:21) M.Lynch right tackle to NE 37 for 3 yards (D.McCourty).,10,20,2012 -20121014_NE@SEA,4,12,43,SEA,NE,2,7,37,(12:43) R.Wilson pass short left to Z.Miller to NE 30 for 7 yards (J.Mayo). FUMBLES (J.Mayo) RECOVERED by NE-J.Mayo at NE 30. J.Mayo to NE 30 for no gain (Z.Miller). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,20,2012 -20121014_NE@SEA,4,12,31,NE,SEA,1,10,70,(12:31) T.Brady pass incomplete short left to B.Lloyd.,20,10,2012 -20121014_NE@SEA,4,12,28,NE,SEA,2,10,70,(12:28) (Shotgun) T.Brady pass deep right to B.Lloyd ran ob at SEA 47 for 23 yards.,20,10,2012 -20121014_NE@SEA,4,12,9,NE,SEA,1,10,47,(12:09) S.Ridley left end to SEA 47 for no gain (A.Branch; L.Hill).,20,10,2012 -20121014_NE@SEA,4,11,32,NE,SEA,2,10,47,(11:32) (No Huddle Shotgun) T.Brady pass short right to D.Woodhead to SEA 25 for 22 yards (B.Wagner).,20,10,2012 -20121014_NE@SEA,4,10,54,NE,SEA,1,10,25,(10:54) (No Huddle) S.Ridley right tackle to SEA 21 for 4 yards (K.Chancellor; B.Wagner).,20,10,2012 -20121014_NE@SEA,4,10,25,NE,SEA,2,6,21,(10:25) (No Huddle) S.Ridley up the middle to SEA 17 for 4 yards (C.Clemons).,20,10,2012 -20121014_NE@SEA,4,10,6,NE,SEA,3,2,17,(10:06) (No Huddle) S.Ridley right end to SEA 17 for no gain (R.Sherman).,20,10,2012 -20121014_NE@SEA,4,9,25,NE,SEA,4,2,17,(9:25) S.Gostkowski 35 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,20,10,2012 -20121014_NE@SEA,4,9,25,NE,SEA,,,17,S.Gostkowski kicks 71 yards from NE 35 to SEA -6. L.Washington to SEA 17 for 23 yards (B.Carpenter; M.Slater).,23,10,2012 -20121014_NE@SEA,4,9,17,SEA,NE,1,10,83,(9:17) R.Wilson pass deep middle to G.Tate to NE 32 for 51 yards (D.McCourty) [B.Spikes]. PENALTY on NE-B.Spikes Unnecessary Roughness 15 yards enforced at NE 32.,10,23,2012 -20121014_NE@SEA,4,8,52,SEA,NE,1,10,17,(8:52) R.Wilson pass incomplete short right to A.McCoy.,10,23,2012 -20121014_NE@SEA,4,8,46,SEA,NE,2,10,17,(8:46) (Shotgun) R.Turbin left guard to NE 12 for 5 yards (J.Cunningham).,10,23,2012 -20121014_NE@SEA,4,8,9,SEA,NE,3,5,12,(8:09) (Shotgun) R.Wilson pass short right to G.Tate to NE 10 for 2 yards (D.McCourty).,10,23,2012 -20121014_NE@SEA,4,7,26,SEA,NE,4,3,10,(7:26) R.Wilson pass short left to B.Edwards for 10 yards TOUCHDOWN. Penalty on NE-A.Dennard Defensive Pass Interference declined. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,23,2012 -20121014_NE@SEA,4,7,26,SEA,NE,,,10,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,10,23,2012 -20121014_NE@SEA,4,7,26,SEA,NE,,,10,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,17,23,2012 -20121014_NE@SEA,4,7,21,NE,SEA,1,10,80,(7:21) T.Brady pass incomplete short right to R.Gronkowski (R.Bryant).,23,17,2012 -20121014_NE@SEA,4,7,17,NE,SEA,2,10,80,(7:17) (Shotgun) T.Brady pass short left to D.Woodhead to NE 32 for 12 yards (B.Wagner).,23,17,2012 -20121014_NE@SEA,4,6,34,NE,SEA,1,10,68,(6:34) N.McDonald reported in as eligible. S.Ridley left tackle to NE 38 for 6 yards (K.Chancellor; L.Hill).,23,17,2012 -20121014_NE@SEA,4,5,35,NE,SEA,2,4,62,(5:35) (Shotgun) D.Woodhead right tackle to NE 47 for 9 yards (K.Chancellor).,23,17,2012 -20121014_NE@SEA,4,4,56,NE,SEA,1,10,53,(4:56) (Shotgun) T.Brady pass incomplete short left to B.Lloyd (B.Browner).,23,17,2012 -20121014_NE@SEA,4,4,52,NE,SEA,2,10,53,(4:52) (Shotgun) T.Brady pass incomplete short middle [C.Clemons]. PENALTY on NE-T.Brady Intentional Grounding 10 yards enforced at NE 47.,23,17,2012 -20121014_NE@SEA,4,4,47,NE,SEA,3,20,63,(4:47) (Shotgun) T.Brady pass short left to W.Welker to NE 46 for 9 yards (K.Chancellor).,23,17,2012 -20121014_NE@SEA,4,4,7,NE,SEA,4,11,54,(4:07) Z.Mesko punts 48 yards to SEA 6 Center-D.Aiken. L.Washington to SEA 10 for 4 yards (M.Slater).,23,17,2012 -20121014_NE@SEA,4,3,56,SEA,NE,1,10,90,(3:56) M.Lynch left tackle to SEA 17 for 7 yards (C.Jones).,17,23,2012 -20121014_NE@SEA,4,3,26,SEA,NE,2,3,83,(3:26) R.Wilson pass incomplete short right to S.Rice.,17,23,2012 -20121014_NE@SEA,4,3,20,SEA,NE,3,3,83,(3:20) (Shotgun) R.Wilson pass incomplete deep left to G.Tate [V.Wilfork].,17,23,2012 -20121014_NE@SEA,4,3,14,SEA,NE,4,3,83,(3:14) J.Ryan punts 58 yards to NE 25 Center-C.Gresham. W.Welker to NE 41 for 16 yards (M.Morgan).,17,23,2012 -20121014_NE@SEA,4,3,2,NE,SEA,1,10,59,(3:02) N.McDonald and D.Connolly reported in as eligible. S.Ridley left end to NE 42 for 1 yard (B.Mebane).,23,17,2012 -20121014_NE@SEA,4,2,57,NE,SEA,2,9,58,(2:57) S.Ridley right tackle to NE 43 for 1 yard (B.Wagner).,23,17,2012 -20121014_NE@SEA,4,2,52,NE,SEA,3,8,57,(2:52) (Shotgun) T.Brady pass incomplete short left to D.Branch.,23,17,2012 -20121014_NE@SEA,4,2,48,NE,SEA,4,8,57,(2:48) Z.Mesko punts 39 yards to SEA 18 Center-D.Aiken. L.Washington pushed ob at SEA 43 for 25 yards (S.Vereen).,23,17,2012 -20121014_NE@SEA,4,2,38,SEA,NE,1,10,57,(2:38) (Shotgun) R.Wilson right end to NE 48 for 9 yards. designed run slid down on his own,17,23,2012 -20121014_NE@SEA,4,2,6,SEA,NE,2,1,48,(2:06) R.Wilson pass incomplete short right to S.Rice.,17,23,2012 -20121014_NE@SEA,4,1,59,SEA,NE,3,1,48,(1:59) (Shotgun) M.Lynch left tackle to NE 46 for 2 yards (V.Wilfork; C.Jones).,17,23,2012 -20121014_NE@SEA,4,1,27,SEA,NE,1,10,46,(1:27) R.Wilson pass deep middle to S.Rice for 46 yards TOUCHDOWN.,17,23,2012 -20121014_NE@SEA,4,1,27,SEA,NE,,,46,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,17,23,2012 -20121014_NE@SEA,4,1,27,SEA,NE,,,46,S.Hauschka kicks 68 yards from SEA 35 to NE -3. D.Woodhead to NE 20 for 23 yards (M.Robinson; C.Maragos).,24,23,2012 -20121014_NE@SEA,4,1,14,NE,SEA,1,10,80,(1:14) (Shotgun) T.Brady pass incomplete deep right to B.Lloyd.,23,24,2012 -20121014_NE@SEA,4,1,8,NE,SEA,2,10,80,(1:08) (Shotgun) T.Brady sacked at NE 13 for -7 yards (J.Jones). Penalty on NE Illegal Motion declined.,23,24,2012 -20121014_NE@SEA,4,1,3,NE,SEA,3,17,87,(1:03) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,23,24,2012 -20121014_NE@SEA,4,0,58,NE,SEA,4,17,87,(:58) (Shotgun) T.Brady pass short right to W.Welker to NE 28 for 15 yards (B.Wagner).,23,24,2012 -20121014_NE@SEA,4,0,51,SEA,NE,1,10,28,(:51) R.Wilson kneels to NE 29 for -1 yards.,24,23,2012 -20121014_NE@SEA,4,0,18,SEA,NE,2,11,29,(:18) R.Wilson kneels to NE 30 for -1 yards.,24,23,2012 -20121014_NE@SEA,4,0,18,SEA,NE,,,29,                      ,24,23,2012 -20121014_NYG@SF,1,0,0,NYG,SF,,,29,L.Tynes kicks 72 yards from NYG 35 to SF -7. K.Williams to SF 15 for 22 yards (M.Coe).,0,0,2012 -20121014_NYG@SF,1,59,56,SF,NYG,1,10,85,(14:56) (Shotgun) A.Smith pass short left to M.Manningham to SF 24 for 9 yards (P.Amukamara). Caught at SF22. 2-yds YAC,0,0,2012 -20121014_NYG@SF,1,59,19,SF,NYG,2,1,76,(14:19) F.Gore up the middle to SF 24 for no gain (A.Tracy L.Joseph).,0,0,2012 -20121014_NYG@SF,1,58,41,SF,NYG,3,1,76,(13:41) K.Hunter left end pushed ob at SF 39 for 15 yards (P.Amukamara).,0,0,2012 -20121014_NYG@SF,1,58,12,SF,NYG,1,10,61,(13:12) A.Smith pass short left to V.Davis to SF 45 for 6 yards (M.Boley). Caught at SF44. 1-yds YAC,0,0,2012 -20121014_NYG@SF,1,57,31,SF,NYG,2,4,55,(12:31) (Shotgun) A.Smith pass incomplete short left to V.Davis (J.Pierre-Paul).,0,0,2012 -20121014_NYG@SF,1,57,27,SF,NYG,3,4,55,(12:27) (Shotgun) A.Smith pass short middle to M.Crabtree to NYG 48 for 7 yards (J.Hosley) [O.Umenyiora]. Caught at 40. 2-yds YAC,0,0,2012 -20121014_NYG@SF,1,56,42,SF,NYG,1,10,48,(11:42) (Shotgun) A.Smith pass short middle to F.Gore to NYG 43 for 5 yards (M.Boley). Caught at NYG44. 1-yd YAC,0,0,2012 -20121014_NYG@SF,1,56,8,SF,NYG,2,5,43,(11:08) (Shotgun) F.Gore left tackle to NYG 30 for 13 yards (A.Rolle).,0,0,2012 -20121014_NYG@SF,1,55,20,SF,NYG,1,10,30,(10:20) (Shotgun) A.Smith scrambles left end to NYG 26 for 4 yards (M.Boley).,0,0,2012 -20121014_NYG@SF,1,54,50,SF,NYG,2,6,26,(9:50) A.Smith pass incomplete short right to M.Crabtree.,0,0,2012 -20121014_NYG@SF,1,54,42,SF,NYG,3,6,26,(9:42) C.Kaepernick in at QB. (Shotgun) F.Gore right tackle to NYG 26 for no gain (J.Pierre-Paul; C.Blackburn).,0,0,2012 -20121014_NYG@SF,1,54,8,SF,NYG,4,6,26,(9:08) D.Akers 43 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121014_NYG@SF,1,54,3,NYG,SF,1,10,66,(9:03) A.Bradshaw right end to NYG 40 for 6 yards (N.Bowman).,0,0,2012 -20121014_NYG@SF,1,53,22,NYG,SF,2,4,60,(8:22) (Shotgun) E.Manning pass short right to H.Nicks to NYG 42 for 2 yards (A.Brooks N.Bowman). Caught at NYG41. 1-yd YAC,0,0,2012 -20121014_NYG@SF,1,52,41,NYG,SF,3,2,58,(7:41) (Shotgun) E.Manning pass incomplete deep right to H.Nicks.,0,0,2012 -20121014_NYG@SF,1,52,37,NYG,SF,4,2,58,(7:37) S.Weatherford punts 51 yards to SF 7 Center-Z.DeOssie. T.Ginn pushed ob at SF 15 for 8 yards (M.Kiwanuka).,0,0,2012 -20121014_NYG@SF,1,52,27,SF,NYG,1,10,85,(7:27) F.Gore right guard to SF 25 for 10 yards (A.Rolle). A.Smith returns at QB.,0,0,2012 -20121014_NYG@SF,1,51,46,SF,NYG,1,10,75,(6:46) (Shotgun) A.Smith pass short right to M.Manningham to SF 32 for 7 yards (C.Webster). Caught at SF30. 2-yds YAC,0,0,2012 -20121014_NYG@SF,1,51,2,SF,NYG,2,3,68,(6:02) (Shotgun) A.Smith pass incomplete short left to M.Manningham.,0,0,2012 -20121014_NYG@SF,1,50,57,SF,NYG,3,3,68,(5:57) (Shotgun) A.Smith pass short right to K.Williams pushed ob at SF 39 for 7 yards (J.Hosley) [J.Pierre-Paul]. Caught at SF36. 3-yds YAC,0,0,2012 -20121014_NYG@SF,1,50,24,SF,NYG,1,10,61,(5:24) (Shotgun) A.Smith pass incomplete short right to G.Celek.,0,0,2012 -20121014_NYG@SF,1,50,20,SF,NYG,2,10,61,(5:20) (Shotgun) F.Gore up the middle to SF 44 for 5 yards (C.Blackburn).,0,0,2012 -20121014_NYG@SF,1,49,41,SF,NYG,3,5,56,(4:41) (Shotgun) A.Smith pass short right to K.Williams pushed ob at NYG 49 for 7 yards (C.Webster). Caught at NYG49. 0-yds YAC,0,0,2012 -20121014_NYG@SF,1,49,13,SF,NYG,1,10,49,(4:13) (Shotgun) A.Smith pass short right to R.Moss to NYG 29 for 20 yards (A.Tracy). Caught at NYG34. 5-yds YAC,0,0,2012 -20121014_NYG@SF,1,48,28,SF,NYG,1,10,29,(3:28) F.Gore up the middle to NYG 30 for -1 yards (L.Joseph C.Blackburn).,0,0,2012 -20121014_NYG@SF,1,47,45,SF,NYG,2,11,30,(2:45) C.Kaepernick at QB (Shotgun) F.Gore up the middle to NYG 24 for 6 yards (L.Joseph).,0,0,2012 -20121014_NYG@SF,1,47,9,SF,NYG,3,5,24,(2:09) A. Smith back in at QB. (Shotgun) A.Smith pass incomplete short left to M.Crabtree.,0,0,2012 -20121014_NYG@SF,1,47,4,SF,NYG,4,5,24,(2:04) D.Akers 42 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121014_NYG@SF,1,47,4,SF,NYG,,,24,D.Akers kicks 67 yards from SF 35 to NYG -2. D.Wilson to NYG 44 for 46 yards (D.Akers T.Gooden). PENALTY on NYG-J.Williams Offensive Holding 10 yards enforced at NYG 25. D.Wilson credited with 27-yd return.,3,0,2012 -20121014_NYG@SF,1,46,51,NYG,SF,1,10,85,(1:51) E.Manning pass short right to A.Bradshaw to NYG 19 for 4 yards (P.Willis). Caught at NYG12. 7-yds YAC,0,3,2012 -20121014_NYG@SF,1,46,9,NYG,SF,2,6,81,(1:09) E.Manning pass incomplete short right to H.Hynoski [A.Brooks].,0,3,2012 -20121014_NYG@SF,1,46,6,NYG,SF,3,6,81,(1:06) (Shotgun) E.Manning pass short left to V.Cruz to NYG 30 for 11 yards (T.Brown). Caught at NYG 29. 1-yd YAC,0,3,2012 -20121014_NYG@SF,1,45,26,NYG,SF,1,10,70,(:26) (Shotgun) A.Bradshaw right end to NYG 32 for 2 yards (N.Bowman).,0,3,2012 -20121014_NYG@SF,2,45,0,NYG,SF,2,8,68,(15:00) A.Bradshaw left tackle to NYG 31 for -1 yards (N.Bowman).,0,3,2012 -20121014_NYG@SF,2,44,19,NYG,SF,3,9,69,(14:19) (Shotgun) E.Manning pass incomplete short right to V.Cruz.,0,3,2012 -20121014_NYG@SF,2,44,14,NYG,SF,4,9,69,(14:14) S.Weatherford punts 49 yards to SF 20 Center-Z.DeOssie. T.Ginn to SF 34 for 14 yards (J.Tryon).,0,3,2012 -20121014_NYG@SF,2,44,2,SF,NYG,1,10,66,(14:02) A.Smith pass deep left intended for D.Walker INTERCEPTED by P.Amukamara at NYG 33. P.Amukamara to NYG 33 for no gain (D.Walker).,3,0,2012 -20121014_NYG@SF,2,43,54,NYG,SF,1,10,67,(13:54) A.Bradshaw up the middle to NYG 34 for 1 yard (Ald.Smith).,0,3,2012 -20121014_NYG@SF,2,43,17,NYG,SF,2,9,66,(13:17) D.Diehl reported in as eligible. A.Bradshaw left end to NYG 37 for 3 yards (J.Smith).,0,3,2012 -20121014_NYG@SF,2,42,35,NYG,SF,3,6,63,(12:35) (Shotgun) E.Manning pass deep right to D.Hixon to SF 24 for 39 yards (C.Culliver). Caught at SF27. 3-yds YAC,0,3,2012 -20121014_NYG@SF,2,41,50,NYG,SF,1,10,24,(11:50) A.Bradshaw up the middle to SF 24 for no gain (N.Bowman).,0,3,2012 -20121014_NYG@SF,2,41,15,NYG,SF,2,10,24,(11:15) A.Bradshaw left guard to SF 22 for 2 yards (D.Goldson).,0,3,2012 -20121014_NYG@SF,2,40,36,NYG,SF,3,8,22,(10:36) (Shotgun) E.Manning pass deep left to D.Hixon to SF 6 for 16 yards (C.Culliver). Caught at SF6. 0-yds YAC,0,3,2012 -20121014_NYG@SF,2,40,8,NYG,SF,1,6,6,(10:08) E.Manning pass short middle to V.Cruz for 6 yards TOUCHDOWN.,0,3,2012 -20121014_NYG@SF,2,40,8,NYG,SF,,,6,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,3,2012 -20121014_NYG@SF,2,40,8,NYG,SF,,,6,L.Tynes kicks 67 yards from NYG 35 to SF -2. K.Williams pushed ob at SF 23 for 25 yards (J.Tryon).,7,3,2012 -20121014_NYG@SF,2,39,58,SF,NYG,1,10,77,(9:58) F.Gore up the middle to SF 26 for 3 yards (M.Boley).,3,7,2012 -20121014_NYG@SF,2,39,18,SF,NYG,2,7,74,(9:18) C.Kaepernick in at QB. (Shotgun) PENALTY on SF-J.Goodwin False Start 5 yards enforced at SF 26 - No Play.,3,7,2012 -20121014_NYG@SF,2,38,52,SF,NYG,2,12,79,(8:52) A.Smith back in at QB. (Shotgun) A.Smith pass short middle to F.Gore to SF 29 for 8 yards (O.Umenyiora) [J.Tuck]. Caught at SF24. 5-yds YAC,3,7,2012 -20121014_NYG@SF,2,38,10,SF,NYG,3,4,71,(8:10) (Shotgun) A.Smith sacked at SF 20 for -9 yards (J.Pierre-Paul).,3,7,2012 -20121014_NYG@SF,2,37,37,SF,NYG,4,13,80,(7:37) A.Lee punts 46 yards to NYG 34 Center-B.Jennings fair catch by R.Randle.,3,7,2012 -20121014_NYG@SF,2,37,30,NYG,SF,1,10,66,(7:30) E.Manning pass deep left to V.Cruz to 50 for 16 yards (T.Brown). Caught at 50. 0-yds YAC,7,3,2012 -20121014_NYG@SF,2,36,53,NYG,SF,1,10,50,(6:53) E.Manning pass short left to H.Nicks to SF 34 for 16 yards (T.Brown). Caught at SF36. 2-yds YAC,7,3,2012 -20121014_NYG@SF,2,36,27,NYG,SF,1,10,34,(6:27) A.Bradshaw up the middle to SF 31 for 3 yards (J.Smith).,7,3,2012 -20121014_NYG@SF,2,35,45,NYG,SF,2,7,31,(5:45) E.Manning pass short middle to M.Bennett to SF 22 for 9 yards (D.Whitner Ald.Smith). Caught at SF22. 0-yds YAC,7,3,2012 -20121014_NYG@SF,2,34,55,NYG,SF,1,10,22,(4:55) D.Diehl reported in as eligible. A.Bradshaw up the middle to SF 17 for 5 yards (I.Sopoaga).,7,3,2012 -20121014_NYG@SF,2,34,16,NYG,SF,2,5,17,(4:16) A.Bradshaw right tackle to SF 14 for 3 yards (P.Willis J.Smith). San Francisco challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1 at 03:39.),7,3,2012 -20121014_NYG@SF,2,33,39,NYG,SF,3,2,14,(3:39) (Shotgun) A.Bradshaw right guard to SF 15 for -1 yards (J.Smith).,7,3,2012 -20121014_NYG@SF,2,33,4,NYG,SF,4,3,15,(3:04) L.Tynes 34 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,3,2012 -20121014_NYG@SF,2,33,4,NYG,SF,,,15,L.Tynes kicks 68 yards from NYG 35 to SF -3. K.Williams to SF 23 for 26 yards (S.Brown).,10,3,2012 -20121014_NYG@SF,2,32,50,SF,NYG,1,10,77,(2:50) F.Gore left tackle to SF 34 for 11 yards (O.Umenyiora). PENALTY on SF-M.Iupati Offensive Holding 10 yards enforced at SF 23 - No Play.,3,10,2012 -20121014_NYG@SF,2,32,21,SF,NYG,1,20,87,(2:21) (Shotgun) A.Smith pass short left to F.Gore pushed ob at SF 16 for 3 yards (S.Brown). Caught at SF14. 2-yds YAC,3,10,2012 -20121014_NYG@SF,2,32,0,SF,NYG,2,17,84,(2:00) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 28 for 12 yards (C.Webster). Caught at SF28. 0-yds YAC,3,10,2012 -20121014_NYG@SF,2,31,55,SF,NYG,3,5,72,(1:55) (Shotgun) A.Smith pass incomplete deep right to M.Manningham.,3,10,2012 -20121014_NYG@SF,2,31,47,SF,NYG,4,5,72,(1:47) (Punt formation) PENALTY on SF-A.Lee Delay of Game 5 yards enforced at SF 28 - No Play.,3,10,2012 -20121014_NYG@SF,2,31,47,SF,NYG,4,10,77,(1:47) A.Lee punts 58 yards to NYG 19 Center-B.Jennings. R.Randle to NYG 21 for 2 yards (N.Bowman).,3,10,2012 -20121014_NYG@SF,2,31,34,NYG,SF,1,10,79,(1:34) (Shotgun) E.Manning pass short right to D.Hixon to NYG 30 for 9 yards (C.Culliver). Caught at NYG 30. 0-yds YAC,10,3,2012 -20121014_NYG@SF,2,31,9,NYG,SF,2,1,70,(1:09) (No Huddle Shotgun) E.Manning pass deep left to H.Nicks to SF 44 for 26 yards (T.Brown). Penalty on SF-T.Brown Defensive Pass Interference declined. Caught at SF44. 0-yds YAC,10,3,2012 -20121014_NYG@SF,2,31,5,NYG,SF,1,10,44,(1:05) (Shotgun) E.Manning pass short right to D.Hixon to SF 30 for 14 yards (C.Culliver). Caught at SF30. 0-yds YAC The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,3,2012 -20121014_NYG@SF,2,30,32,NYG,SF,1,10,30,(:32) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,10,3,2012 -20121014_NYG@SF,2,30,28,NYG,SF,2,10,30,(:28) (Shotgun) E.Manning pass incomplete short left to M.Bennett.,10,3,2012 -20121014_NYG@SF,2,30,24,NYG,SF,3,10,30,(:24) (Shotgun) E.Manning pass short left to V.Cruz to SF 22 for 8 yards (C.Rogers). Caught at SF22. 0-yds YAC,10,3,2012 -20121014_NYG@SF,2,30,15,NYG,SF,4,2,22,(:15) L.Tynes 40 yard field goal is BLOCKED (T.Brown) Center-Z.DeOssie Holder-S.Weatherford.,10,3,2012 -20121014_NYG@SF,2,30,11,SF,NYG,1,10,70,(:11) C.Kaepernick in at QB. (Shotgun) C.Kaepernick pass deep left to M.Manningham to NYG 34 for 36 yards (A.Rolle). Caught at NYG40. 6-yds YAC,3,10,2012 -20121014_NYG@SF,2,30,2,SF,NYG,1,10,34,(:02) D.Akers 52 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,3,10,2012 -20121014_NYG@SF,3,30,0,SF,NYG,,,34,D.Akers kicks 63 yards from SF 35 to NYG 2. D.Wilson pushed ob at SF 32 for 66 yards (P.Cox).,3,10,2012 -20121014_NYG@SF,3,29,51,NYG,SF,1,10,32,(14:51) A.Bradshaw left end to SF 25 for 7 yards (T.Brown D.Whitner).,10,3,2012 -20121014_NYG@SF,3,29,17,NYG,SF,2,3,25,(14:17) E.Manning pass short right to V.Cruz pushed ob at SF 16 for 9 yards (C.Rogers). Caught at SF20. 4-yds YAC,10,3,2012 -20121014_NYG@SF,3,28,46,NYG,SF,1,10,16,(13:46) (Shotgun) E.Manning pass incomplete short left to H.Nicks.,10,3,2012 -20121014_NYG@SF,3,28,41,NYG,SF,2,10,16,(13:41) D.Diehl reported in as eligible. A.Bradshaw left guard to SF 5 for 11 yards (T.Brown).,10,3,2012 -20121014_NYG@SF,3,28,5,NYG,SF,1,5,5,(13:05) A.Bradshaw up the middle to SF 5 for no gain (D.Goldson).,10,3,2012 -20121014_NYG@SF,3,27,26,NYG,SF,2,5,5,(12:26) (Shotgun) A.Bradshaw left guard to SF 1 for 4 yards (N.Bowman).,10,3,2012 -20121014_NYG@SF,3,26,53,NYG,SF,3,1,1,(11:53) D.Diehl reported in as eligible. A.Bradshaw left guard for 1 yard TOUCHDOWN.,10,3,2012 -20121014_NYG@SF,3,26,53,NYG,SF,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,3,2012 -20121014_NYG@SF,3,26,53,NYG,SF,,,1,L.Tynes kicks 60 yards from NYG 35 to SF 5. K.Williams to SF 19 for 14 yards (J.Tryon).,17,3,2012 -20121014_NYG@SF,3,26,42,SF,NYG,1,10,81,(11:42) A.Smith back in at QB K.Hunter left tackle to SF 21 for 2 yards (S.Paysinger).,3,17,2012 -20121014_NYG@SF,3,25,58,SF,NYG,2,8,79,(10:58) C.Kaepernick in at QB. (Shotgun) M.Manningham right end to SF 28 for 7 yards (A.Rolle).,3,17,2012 -20121014_NYG@SF,3,25,17,SF,NYG,3,1,72,(10:17) A.Smith back in at QB. L.Davis reported in as eligible. PENALTY on SF-L.Davis False Start 5 yards enforced at SF 28 - No Play.,3,17,2012 -20121014_NYG@SF,3,25,17,SF,NYG,3,6,77,(10:17) (Shotgun) A.Smith pass short right intended for M.Manningham INTERCEPTED by A.Rolle at SF 32. A.Rolle to SF 12 for 20 yards (A.Davis).,3,17,2012 -20121014_NYG@SF,3,25,7,NYG,SF,1,10,12,(10:07) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,17,3,2012 -20121014_NYG@SF,3,25,3,NYG,SF,2,10,12,(10:03) D.Diehl reported in as eligible. E.Manning pass incomplete short right to V.Cruz (C.Rogers).,17,3,2012 -20121014_NYG@SF,3,24,58,NYG,SF,3,10,12,(9:58) (Shotgun) E.Manning pass incomplete short left to D.Hixon.,17,3,2012 -20121014_NYG@SF,3,24,55,NYG,SF,4,10,12,(9:55) L.Tynes 30 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,3,2012 -20121014_NYG@SF,3,24,55,NYG,SF,,,12,L.Tynes kicks 63 yards from NYG 35 to SF 2. K.Williams to SF 21 for 19 yards (M.Coe).,20,3,2012 -20121014_NYG@SF,3,24,44,SF,NYG,1,10,79,(9:44) (Shotgun) A.Smith pass short right to G.Celek to SF 27 for 6 yards (J.Williams). Caught at SF24. 3-yds YAC,3,20,2012 -20121014_NYG@SF,3,23,58,SF,NYG,2,4,73,(8:58) A.Smith sacked at SF 20 for -7 yards (L.Joseph).,3,20,2012 -20121014_NYG@SF,3,23,32,SF,NYG,3,11,80,(8:32) (Shotgun) PENALTY on SF-A.Smith Delay of Game 5 yards enforced at SF 20 - No Play.,3,20,2012 -20121014_NYG@SF,3,22,56,SF,NYG,3,16,85,(7:56) (Shotgun) A.Smith pass short right intended for M.Crabtree INTERCEPTED by A.Rolle at SF 27. A.Rolle to SF 5 for 22 yards (K.Williams).,3,20,2012 -20121014_NYG@SF,3,22,43,NYG,SF,1,5,5,(7:43) A.Bradshaw left guard to SF 5 for no gain (P.Willis).,20,3,2012 -20121014_NYG@SF,3,22,3,NYG,SF,2,5,5,(7:03) E.Manning pass incomplete short left to D.Hixon.,20,3,2012 -20121014_NYG@SF,3,21,59,NYG,SF,3,5,5,(6:59) (Shotgun) E.Manning scrambles left end to SF 4 for 1 yard (A.Brooks; D.Goldson).,20,3,2012 -20121014_NYG@SF,3,21,13,NYG,SF,4,4,4,(6:13) L.Tynes 22 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,20,3,2012 -20121014_NYG@SF,3,21,13,NYG,SF,,,4,L.Tynes kicks 60 yards from NYG 35 to SF 5. K.Williams to SF 15 for 10 yards (T.Sash).,23,3,2012 -20121014_NYG@SF,3,21,6,SF,NYG,1,10,85,(6:06) (Shotgun) A.Smith scrambles right end to SF 16 for 1 yard (C.Blackburn).,3,23,2012 -20121014_NYG@SF,3,20,21,SF,NYG,2,9,84,(5:21) D.Kilgore reported in as eligible. A.Smith pass deep right to R.Moss to NYG 29 for 55 yards (P.Amukamara). Caught at NYG 34. 5-yds YAC,3,23,2012 -20121014_NYG@SF,3,19,32,SF,NYG,1,10,29,(4:32) C.Kaepernick in at QB. (Shotgun) C.Kaepernick sacked at NYG 40 for -11 yards (J.Pierre-Paul).,3,23,2012 -20121014_NYG@SF,3,18,55,SF,NYG,2,21,40,(3:55) A.Smith back in at QB. (Shotgun) A.Smith pass incomplete short middle to D.Walker.,3,23,2012 -20121014_NYG@SF,3,18,48,SF,NYG,3,21,40,(3:48) (Shotgun) A.Smith pass short left to K.Hunter to NYG 34 for 6 yards (M.Boley).,3,23,2012 -20121014_NYG@SF,3,18,1,SF,NYG,4,15,34,(3:01) (Shotgun) A.Smith pass short right to V.Davis to NYG 27 for 7 yards (J.Hosley). Caught at NYG31. 4-yds YAC,3,23,2012 -20121014_NYG@SF,3,17,54,NYG,SF,1,10,73,(2:54) A.Bradshaw left guard to NYG 42 for 15 yards (D.Goldson D.Whitner).,23,3,2012 -20121014_NYG@SF,3,17,17,NYG,SF,1,10,58,(2:17) A.Bradshaw left tackle to NYG 41 for -1 yards (P.Willis).,23,3,2012 -20121014_NYG@SF,3,16,36,NYG,SF,2,11,59,(1:36) E.Manning pass incomplete short right to V.Cruz (C.Rogers).,23,3,2012 -20121014_NYG@SF,3,16,30,NYG,SF,3,11,59,(1:30) (Shotgun) E.Manning pass incomplete short right to V.Cruz (C.Rogers).,23,3,2012 -20121014_NYG@SF,3,16,25,NYG,SF,4,11,59,(1:25) S.Weatherford punts 59 yards to end zone Center-Z.DeOssie Touchback.,23,3,2012 -20121014_NYG@SF,3,16,15,SF,NYG,1,10,80,(1:15) A.Smith pass short left to M.Crabtree to SF 32 for 12 yards (A.Rolle). Caught at SF32. 5-yds YAC,3,23,2012 -20121014_NYG@SF,3,15,48,SF,NYG,1,10,68,(:48) C.Kaepernick in at QB. (Shotgun) C.Kaepernick pass short left to M.Crabtree pushed ob at SF 39 for 7 yards (P.Amukamara). Caught at SF38. 1-yds YAC,3,23,2012 -20121014_NYG@SF,3,15,36,SF,NYG,2,3,61,(:36) (No Huddle Shotgun) K.Hunter up the middle to SF 46 for 7 yards (M.Boley).,3,23,2012 -20121014_NYG@SF,3,15,24,SF,NYG,1,10,54,(:24) (No Huddle Shotgun) C.Kaepernick pass incomplete short middle to R.Moss.,3,23,2012 -20121014_NYG@SF,3,15,13,SF,NYG,2,10,54,(:13) (No Huddle) C.Kaepernick scrambles up the middle to SF 45 for -1 yards (A.Rolle).,3,23,2012 -20121014_NYG@SF,4,15,0,SF,NYG,3,11,55,(15:00) A.Smith back in at QB. (Shotgun) A.Smith sacked at SF 44 for -1 yards (J.Williams).,3,23,2012 -20121014_NYG@SF,4,14,28,SF,NYG,4,12,56,(14:28) A.Lee punts 39 yards to NYG 17 Center-B.Jennings fair catch by R.Randle.,3,23,2012 -20121014_NYG@SF,4,14,23,NYG,SF,1,10,83,(14:23) A.Bradshaw up the middle to NYG 20 for 3 yards (J.Smith).,23,3,2012 -20121014_NYG@SF,4,13,42,NYG,SF,2,7,80,(13:42) A.Bradshaw up the middle to NYG 43 for 23 yards (D.Whitner).,23,3,2012 -20121014_NYG@SF,4,12,58,NYG,SF,1,10,57,(12:58) E.Manning pass short right to V.Cruz to SF 49 for 8 yards (C.Rogers). Caught at NYG48. 3-yds YAC,23,3,2012 -20121014_NYG@SF,4,12,15,NYG,SF,2,2,49,(12:15) A.Bradshaw up the middle to NYG 49 for -2 yards (D.Whitner J.Smith).,23,3,2012 -20121014_NYG@SF,4,11,30,NYG,SF,3,4,51,(11:30) (Shotgun) E.Manning pass incomplete deep left to V.Cruz.,23,3,2012 -20121014_NYG@SF,4,11,23,NYG,SF,4,4,51,(11:23) S.Weatherford punts 40 yards to SF 11 Center-Z.DeOssie fair catch by T.Ginn.,23,3,2012 -20121014_NYG@SF,4,11,16,SF,NYG,1,10,89,(11:16) (Shotgun) A.Smith pass short right to M.Manningham to SF 19 for 8 yards (C.Blackburn). Caught at SF14. 5-yds YAC,3,23,2012 -20121014_NYG@SF,4,10,48,SF,NYG,2,2,81,(10:48) (Shotgun) A.Smith pass short left to K.Williams to SF 30 for 11 yards (P.Amukamara). Caught at SF26. 4-yds YAC,3,23,2012 -20121014_NYG@SF,4,10,24,SF,NYG,1,10,70,(10:24) (No Huddle Shotgun) A.Smith pass short left to F.Gore to SF 34 for 4 yards (S.Brown). Caught at SF31. 3-yds YAC,3,23,2012 -20121014_NYG@SF,4,9,57,SF,NYG,2,6,72,(9:57) (Shotgun) A.Smith FUMBLES (Aborted) at SF 28 and recovers at SF 28. A.Smith pass incomplete short left to V.Davis.,3,23,2012 -20121014_NYG@SF,4,9,49,SF,NYG,3,6,66,(9:49) (Shotgun) A.Smith sacked at SF 20 for -14 yards (M.Kiwanuka).,3,23,2012 -20121014_NYG@SF,4,9,21,SF,NYG,4,20,80,(9:21) A.Lee punts 56 yards to NYG 24 Center-B.Jennings. R.Randle to NYG 31 for 7 yards (L.Grant N.Bowman). PENALTY on NYG-A.Rolle Illegal Block Above the Waist 10 yards enforced at NYG 24. R.Randle credited with 0-yds on the return.,3,23,2012 -20121014_NYG@SF,4,9,6,NYG,SF,1,10,86,(9:06) A.Bradshaw right guard to NYG 27 for 13 yards (D.Goldson).,23,3,2012 -20121014_NYG@SF,4,8,22,NYG,SF,1,10,73,(8:22) A.Bradshaw left guard to NYG 38 for 11 yards (P.Willis).,23,3,2012 -20121014_NYG@SF,4,7,40,NYG,SF,1,10,62,(7:40) D.Diehl reported in as eligible. D.Wilson left end to NYG 49 for 11 yards (D.Goldson N.Bowman).,23,3,2012 -20121014_NYG@SF,4,7,8,NYG,SF,1,10,51,(7:08) D.Wilson right tackle to SF 47 for 4 yards (N.Bowman).,23,3,2012 -20121014_NYG@SF,4,6,26,NYG,SF,2,6,47,(6:26) D.Wilson right guard to SF 43 for 4 yards (P.Willis).,23,3,2012 -20121014_NYG@SF,4,5,40,NYG,SF,3,2,43,(5:40) D.Diehl reported in as eligible. D.Wilson up the middle to SF 23 for 20 yards (T.Brown).,23,3,2012 -20121014_NYG@SF,4,4,55,NYG,SF,1,10,23,(4:55) A.Bradshaw up the middle to SF 20 for 3 yards (J.Smith).,23,3,2012 -20121014_NYG@SF,4,4,13,NYG,SF,2,7,20,(4:13) A.Bradshaw left guard to SF 15 for 5 yards (J.Smith).,23,3,2012 -20121014_NYG@SF,4,3,27,NYG,SF,3,2,15,(3:27) D.Diehl reported in as eligible. A.Bradshaw left tackle to SF 15 for no gain (R.Jean Francois N.Bowman).,23,3,2012 -20121014_NYG@SF,4,2,44,NYG,SF,4,2,15,(2:44) PENALTY on SF-T.Brown Defensive Offside 5 yards enforced at SF 15 - No Play.,23,3,2012 -20121014_NYG@SF,4,2,38,NYG,SF,1,10,10,(2:38) D.Diehl reported in as eligible. D.Wilson up the middle to SF 13 for -3 yards (D.Goldson).,23,3,2012 -20121014_NYG@SF,4,2,25,NYG,SF,2,13,13,(2:25) D.Wilson left tackle to SF 9 for 4 yards (P.Willis).,23,3,2012 -20121014_NYG@SF,4,2,19,NYG,SF,3,9,9,(2:19) D.Diehl reported in as eligible. D.Wilson up the middle to SF 14 for -5 yards (P.Willis D.Goldson).,23,3,2012 -20121014_NYG@SF,4,2,0,NYG,SF,4,14,14,(2:00) L.Tynes 32 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,23,3,2012 -20121014_NYG@SF,4,2,0,NYG,SF,,,14,L.Tynes kicks 56 yards from NYG 35 to SF 9. K.Williams Touchback.,26,3,2012 -20121014_NYG@SF,4,1,56,SF,NYG,1,10,80,(1:56) C.Kaepernick in at QB. (Shotgun) K.Hunter up the middle to SF 22 for 2 yards (A.Tracy).,3,26,2012 -20121014_NYG@SF,4,1,36,SF,NYG,2,8,78,(1:36) (No Huddle Shotgun) C.Kaepernick pass deep right to V.Davis pushed ob at SF 46 for 24 yards (S.Brown). Caught at SF38. 8-yds YAC,3,26,2012 -20121014_NYG@SF,4,1,29,SF,NYG,1,10,54,(1:29) (Shotgun) C.Kaepernick pass short left to K.Williams to NYG 39 for 15 yards (P.Amukamara). NYG-J.Tuck was injured during the play. Caught at NYG39. 0-yds YAC,3,26,2012 -20121014_NYG@SF,4,1,20,SF,NYG,1,10,39,(1:20) (Shotgun) C.Kaepernick scrambles left end pushed ob at NYG 32 for 7 yards (K.Rivers).,3,26,2012 -20121014_NYG@SF,4,1,14,SF,NYG,2,3,32,(1:14) (Shotgun) C.Kaepernick pass incomplete short left to M.Manningham (P.Amukamara).,3,26,2012 -20121014_NYG@SF,4,1,9,SF,NYG,3,3,32,(1:09) (Shotgun) C.Kaepernick pass incomplete short left to M.Manningham (P.Amukamara).,3,26,2012 -20121014_NYG@SF,4,1,4,SF,NYG,4,3,32,(1:04) (Shotgun) C.Kaepernick sacked at NYG 38 for -6 yards (A.Tracy).,3,26,2012 -20121014_NYG@SF,4,0,57,NYG,SF,1,10,62,(:57) E.Manning kneels to NYG 37 for -1 yards.,26,3,2012 -20121014_NYG@SF,4,0,36,NYG,SF,2,11,63,(:36) E.Manning kneels to NYG 35 for -2 yards.,26,3,2012 -20121014_NYG@SF,4,0,36,NYG,SF,,,63,                      ,26,3,2012 -20121014_MIN@WAS,1,0,0,WAS,MIN,,,63,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 -20121014_MIN@WAS,1,60,0,MIN,WAS,1,10,80,(15:00) C.Ponder scrambles right end pushed ob at MIN 22 for 2 yards (P.Riley).,0,0,2012 -20121014_MIN@WAS,1,59,37,MIN,WAS,2,8,78,(14:37) A.Peterson right guard to MIN 25 for 3 yards (B.Cofield; L.Fletcher).,0,0,2012 -20121014_MIN@WAS,1,59,2,MIN,WAS,3,5,75,(14:02) (Shotgun) C.Ponder pass short left to K.Rudolph pushed ob at MIN 43 for 18 yards (D.Hall).,0,0,2012 -20121014_MIN@WAS,1,58,37,MIN,WAS,1,10,57,(13:37) C.Ponder pass short right to P.Harvin ran ob at WAS 42 for 15 yards.,0,0,2012 -20121014_MIN@WAS,1,58,6,MIN,WAS,1,10,42,(13:06) A.Peterson left guard pushed ob at WAS 10 for 32 yards (Mad.Williams).,0,0,2012 -20121014_MIN@WAS,1,57,41,MIN,WAS,1,10,10,(12:41) A.Peterson right tackle to WAS 5 for 5 yards (D.Hall; R.Jackson).,0,0,2012 -20121014_MIN@WAS,1,57,3,MIN,WAS,2,5,5,(12:03) (Shotgun) C.Ponder pass incomplete short middle to D.Aromashodu.,0,0,2012 -20121014_MIN@WAS,1,56,58,MIN,WAS,3,5,5,(11:58) (Shotgun) C.Ponder pass short right to T.Gerhart pushed ob at WAS 2 for 3 yards (Mad.Williams).,0,0,2012 -20121014_MIN@WAS,1,56,35,MIN,WAS,4,2,2,(11:35) B.Walsh 20 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121014_MIN@WAS,1,56,35,MIN,WAS,,,2,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,3,0,2012 -20121014_MIN@WAS,1,56,31,WAS,MIN,1,10,80,(11:31) A.Morris right end to WAS 16 for -4 yards (A.Winfield).,0,3,2012 -20121014_MIN@WAS,1,55,54,WAS,MIN,2,14,84,(10:54) A.Morris left guard to WAS 13 for -3 yards (J.Allen).,0,3,2012 -20121014_MIN@WAS,1,55,17,WAS,MIN,3,17,87,(10:17) (Shotgun) R.Griffin pass short middle to E.Royster to WAS 20 for 7 yards (C.Greenway C.Cook) [E.Griffen].,0,3,2012 -20121014_MIN@WAS,1,54,43,WAS,MIN,4,10,80,(9:43) S.Rocca punts 33 yards to MIN 47 Center-J.Snow out of bounds.,0,3,2012 -20121014_MIN@WAS,1,54,34,MIN,WAS,1,10,53,(9:34) A.Peterson left end to WAS 44 for 9 yards (P.Riley).,3,0,2012 -20121014_MIN@WAS,1,53,56,MIN,WAS,2,1,44,(8:56) C.Ponder pass short middle to T.Gerhart to WAS 37 for 7 yards (L.Fletcher).,3,0,2012 -20121014_MIN@WAS,1,53,18,MIN,WAS,1,10,37,(8:18) (Shotgun) C.Ponder pass incomplete short left to T.Gerhart.,3,0,2012 -20121014_MIN@WAS,1,53,12,MIN,WAS,2,10,37,(8:12) C.Ponder pass deep middle to P.Harvin to WAS 14 for 23 yards (P.Riley; Mad.Williams).,3,0,2012 -20121014_MIN@WAS,1,52,36,MIN,WAS,1,10,14,(7:36) A.Peterson left end to WAS 16 for -2 yards (R.Jackson R.Doughty).,3,0,2012 -20121014_MIN@WAS,1,52,2,MIN,WAS,2,12,16,(7:02) C.Ponder pass incomplete short left to R.Ellison.,3,0,2012 -20121014_MIN@WAS,1,51,57,MIN,WAS,3,12,16,(6:57) (Shotgun) C.Ponder pass short right to A.Peterson to WAS 9 for 7 yards (L.Fletcher; R.Doughty).,3,0,2012 -20121014_MIN@WAS,1,51,22,MIN,WAS,4,5,9,(6:22) B.Walsh 27 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,0,2012 -20121014_MIN@WAS,1,51,22,MIN,WAS,,,9,B.Walsh kicks 74 yards from MIN 35 to WAS -9. B.Banks Touchback.,6,0,2012 -20121014_MIN@WAS,1,51,18,WAS,MIN,1,10,80,(6:18) R.Griffin scrambles left end pushed ob at WAS 27 for 7 yards (J.Allen).,0,6,2012 -20121014_MIN@WAS,1,50,48,WAS,MIN,2,3,73,(5:48) R.Griffin pass incomplete deep left to L.Hankerson (H.Smith).,0,6,2012 -20121014_MIN@WAS,1,50,41,WAS,MIN,3,3,73,(5:41) (Shotgun) R.Griffin pass short right intended for J.Morgan INTERCEPTED by A.Winfield at WAS 35. A.Winfield ran ob at WAS 35 for no gain.,0,6,2012 -20121014_MIN@WAS,1,50,33,MIN,WAS,1,10,35,(5:33) P.Harvin right end to WAS 42 for -7 yards. FUMBLES and recovers at WAS 42. P.Harvin to WAS 36 for 6 yards (Mad.Williams; R.Doughty).,6,0,2012 -20121014_MIN@WAS,1,49,52,MIN,WAS,2,11,36,(4:52) A.Peterson right end to WAS 35 for 1 yard (D.Hall).,6,0,2012 -20121014_MIN@WAS,1,49,17,MIN,WAS,3,10,35,(4:17) (Shotgun) C.Ponder pass deep left to M.Jenkins to WAS 16 for 19 yards (J.Wilson).,6,0,2012 -20121014_MIN@WAS,1,48,39,MIN,WAS,1,10,16,(3:39) A.Peterson up the middle to WAS 17 for -1 yards (S.Bowen).,6,0,2012 -20121014_MIN@WAS,1,48,1,MIN,WAS,2,11,17,(3:01) C.Ponder pass short middle to J.Carlson to WAS 10 for 7 yards (R.Doughty P.Riley).,6,0,2012 -20121014_MIN@WAS,1,47,21,MIN,WAS,3,4,10,(2:21) (Shotgun) T.Gerhart left guard to WAS 9 for 1 yard (P.Riley).,6,0,2012 -20121014_MIN@WAS,1,46,51,MIN,WAS,4,3,9,(1:51) B.Walsh 27 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,6,0,2012 -20121014_MIN@WAS,1,46,51,MIN,WAS,,,9,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,9,0,2012 -20121014_MIN@WAS,1,46,47,WAS,MIN,1,10,80,(1:47) (Shotgun) A.Morris left guard to WAS 24 for 4 yards (L.Guion).,0,9,2012 -20121014_MIN@WAS,1,46,15,WAS,MIN,2,6,76,(1:15) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 39 for 15 yards (C.Cook).,0,9,2012 -20121014_MIN@WAS,1,45,39,WAS,MIN,1,10,61,(:39) (Shotgun) A.Morris right guard to WAS 42 for 3 yards (J.Allen; L.Guion).,0,9,2012 -20121014_MIN@WAS,1,45,1,WAS,MIN,2,7,58,(:01) (Shotgun) R.Griffin pass short middle to F.Davis to MIN 42 for 16 yards (C.Cook A.Winfield).,0,9,2012 -20121014_MIN@WAS,2,45,0,WAS,MIN,1,10,42,(15:00) (Shotgun) B.Banks right end pushed ob at MIN 43 for -1 yards (A.Winfield).,0,9,2012 -20121014_MIN@WAS,2,44,23,WAS,MIN,2,11,43,(14:23) (Shotgun) A.Morris up the middle to MIN 40 for 3 yards (E.Henderson).,0,9,2012 -20121014_MIN@WAS,2,43,48,WAS,MIN,3,8,40,(13:48) (Shotgun) R.Griffin pass short middle to S.Moss to MIN 35 for 5 yards (K.Williams C.Greenway). Shovel pass,0,9,2012 -20121014_MIN@WAS,2,43,5,WAS,MIN,4,3,35,(13:05) (Shotgun) R.Griffin pass short left to S.Moss pushed ob at MIN 29 for 6 yards (J.Robinson).,0,9,2012 -20121014_MIN@WAS,2,42,38,WAS,MIN,1,10,29,(12:38) (Shotgun) R.Griffin left tackle to MIN 19 for 10 yards (C.Greenway). PENALTY on WAS-N.Paul Offensive Holding 10 yards enforced at MIN 24.,0,9,2012 -20121014_MIN@WAS,2,42,11,WAS,MIN,1,15,34,(12:11) (Shotgun) B.Banks right end pushed ob at MIN 35 for -1 yards (A.Winfield).,0,9,2012 -20121014_MIN@WAS,2,41,45,WAS,MIN,2,16,35,(11:45) R.Griffin pass short left to B.Banks to MIN 32 for 3 yards (C.Cook).,0,9,2012 -20121014_MIN@WAS,2,41,4,WAS,MIN,3,13,32,(11:04) (Shotgun) R.Griffin pass incomplete short middle to A.Morris (B.Robison).,0,9,2012 -20121014_MIN@WAS,2,40,56,WAS,MIN,4,13,32,(10:56) K.Forbath 50 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,0,9,2012 -20121014_MIN@WAS,2,40,56,WAS,MIN,,,32,K.Forbath kicks 63 yards from WAS 35 to MIN 2. P.Harvin to MIN 36 for 34 yards (R.Jackson D.Young).,3,9,2012 -20121014_MIN@WAS,2,40,44,MIN,WAS,1,10,64,(10:44) C.Ponder pass incomplete short left to K.Rudolph.,9,3,2012 -20121014_MIN@WAS,2,40,39,MIN,WAS,2,10,64,(10:39) A.Peterson right end to MIN 37 for 1 yard (L.Fletcher; S.Bowen).,9,3,2012 -20121014_MIN@WAS,2,40,3,MIN,WAS,3,9,63,(10:03) (Shotgun) C.Ponder pass short middle to A.Peterson to MIN 45 for 8 yards (L.Fletcher; J.Wilson) [L.Alexander].,9,3,2012 -20121014_MIN@WAS,2,39,13,MIN,WAS,4,1,55,(9:13) C.Kluwe punts 45 yards to WAS 10 Center-C.Loeffler downed by MIN-E.Griffen.,9,3,2012 -20121014_MIN@WAS,2,39,3,WAS,MIN,1,10,90,(9:03) A.Morris left end to WAS 13 for 3 yards (J.Brinkley).,3,9,2012 -20121014_MIN@WAS,2,38,30,WAS,MIN,2,7,87,(8:30) (Shotgun) R.Griffin pass short middle to F.Davis to WAS 21 for 8 yards (C.Cook). PENALTY on WAS-F.Davis Offensive Pass Interference 6 yards enforced at WAS 13 - No Play.,3,9,2012 -20121014_MIN@WAS,2,38,5,WAS,MIN,2,13,93,(8:05) R.Griffin pass short middle to A.Morris to WAS 16 for 9 yards (E.Griffen C.Greenway) [J.Allen].,3,9,2012 -20121014_MIN@WAS,2,37,22,WAS,MIN,3,4,84,(7:22) (Shotgun) R.Griffin pass short left to S.Moss to WAS 21 for 5 yards (J.Sanford; A.Winfield).,3,9,2012 -20121014_MIN@WAS,2,36,41,WAS,MIN,1,10,79,(6:41) R.Griffin pass short middle to L.Hankerson to WAS 35 for 14 yards (C.Cook J.Brinkley).,3,9,2012 -20121014_MIN@WAS,2,36,6,WAS,MIN,1,10,65,(6:06) (Shotgun) A.Morris up the middle to 50 for 15 yards (J.Sanford A.Winfield).,3,9,2012 -20121014_MIN@WAS,2,35,29,WAS,MIN,1,10,50,(5:29) A.Morris left guard to 50 for no gain (K.Williams).,3,9,2012 -20121014_MIN@WAS,2,34,51,WAS,MIN,2,10,50,(4:51) R.Griffin pass deep middle to S.Moss to MIN 20 for 30 yards (C.Cook; C.Greenway).,3,9,2012 -20121014_MIN@WAS,2,34,8,WAS,MIN,1,10,20,(4:08) (Shotgun) R.Griffin left end to MIN 13 for 7 yards (E.Henderson).,3,9,2012 -20121014_MIN@WAS,2,33,31,WAS,MIN,2,3,13,(3:31) R.Griffin pass incomplete short right to L.Paulsen. PENALTY on MIN-E.Henderson Roughing the Passer 7 yards enforced at MIN 13 - No Play.,3,9,2012 -20121014_MIN@WAS,2,33,23,WAS,MIN,1,7,7,(3:23) A.Morris right end to MIN 1 for 6 yards (A.Winfield; J.Brinkley).,3,9,2012 -20121014_MIN@WAS,2,32,40,WAS,MIN,2,1,1,(2:40) E.Royster left guard to MIN 1 for no gain (J.Brinkley).,3,9,2012 -20121014_MIN@WAS,2,32,31,WAS,MIN,3,1,1,(2:31) A.Morris left tackle for 1 yard TOUCHDOWN.,3,9,2012 -20121014_MIN@WAS,2,32,31,WAS,MIN,,,1,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,3,9,2012 -20121014_MIN@WAS,2,32,31,WAS,MIN,,,1,K.Forbath kicks 67 yards from WAS 35 to MIN -2. P.Harvin Touchback.,10,9,2012 -20121014_MIN@WAS,2,32,26,MIN,WAS,1,10,80,(2:26) (Shotgun) C.Ponder sacked at MIN 8 for -12 yards. FUMBLES RECOVERED by WAS-L.Alexander at MIN 13. L.Alexander to MIN 6 for 7 yards (M.Kalil).,9,10,2012 -20121014_MIN@WAS,2,32,20,WAS,MIN,1,6,6,(2:20) R.Griffin pass short left to D.Young for 6 yards TOUCHDOWN.,10,9,2012 -20121014_MIN@WAS,2,32,20,WAS,MIN,,,6,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,10,9,2012 -20121014_MIN@WAS,2,32,20,WAS,MIN,,,6,K.Forbath kicks 63 yards from WAS 35 to MIN 2. P.Harvin to MIN 23 for 21 yards (K.Robinson).,17,9,2012 -20121014_MIN@WAS,2,32,9,MIN,WAS,1,10,77,(2:09) C.Ponder scrambles left end to MIN 30 for 7 yards (L.Fletcher).,9,17,2012 -20121014_MIN@WAS,2,31,59,MIN,WAS,2,3,70,(1:59) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,9,17,2012 -20121014_MIN@WAS,2,31,56,MIN,WAS,3,3,70,(1:56) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 36 for 6 yards (J.Pugh).,9,17,2012 -20121014_MIN@WAS,2,31,32,MIN,WAS,1,10,64,(1:32) (No Huddle Shotgun) C.Ponder pass short middle to A.Peterson to MIN 35 for -1 yards (S.Bowen B.Cofield). Shovel pass,9,17,2012 -20121014_MIN@WAS,2,31,25,MIN,WAS,2,11,65,(1:25) (No Huddle Shotgun) C.Ponder pass short left to P.Harvin to MIN 44 for 9 yards (L.Alexander).,9,17,2012 -20121014_MIN@WAS,2,30,59,MIN,WAS,3,2,56,(:59) (No Huddle Shotgun) C.Ponder sacked at MIN 35 for -9 yards (sack split by S.Bowen and L.Alexander).,9,17,2012 -20121014_MIN@WAS,2,30,49,MIN,WAS,4,11,65,(:49) C.Kluwe punts 56 yards to WAS 9 Center-C.Loeffler. B.Banks to WAS 17 for 8 yards (R.Blanton H.Smith). PENALTY on WAS-D.Jones Offensive Holding 5 yards enforced at WAS 10.,9,17,2012 -20121014_MIN@WAS,2,30,39,WAS,MIN,1,10,95,(:39) R.Griffin kneels to WAS 4 for -1 yards.,17,9,2012 -20121014_MIN@WAS,3,30,0,MIN,WAS,,,95,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,9,17,2012 -20121014_MIN@WAS,3,30,0,WAS,MIN,1,10,80,(15:00) (Shotgun) A.Morris right guard to WAS 23 for 3 yards (K.Williams B.Robison).,17,9,2012 -20121014_MIN@WAS,3,29,28,WAS,MIN,2,7,77,(14:28) (Shotgun) A.Morris right tackle to WAS 29 for 6 yards (J.Brinkley; A.Winfield).,17,9,2012 -20121014_MIN@WAS,3,28,49,WAS,MIN,3,1,71,(13:49) (Shotgun) A.Morris up the middle to WAS 30 for 1 yard (K.Williams; C.Greenway).,17,9,2012 -20121014_MIN@WAS,3,28,8,WAS,MIN,1,10,70,(13:08) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 47 for 17 yards (J.Sanford).,17,9,2012 -20121014_MIN@WAS,3,27,32,WAS,MIN,1,10,53,(12:32) R.Griffin pass short middle to J.Morgan to MIN 37 for 16 yards (J.Robinson J.Sanford).,17,9,2012 -20121014_MIN@WAS,3,26,55,WAS,MIN,1,10,37,(11:55) PENALTY on WAS-T.Williams False Start 5 yards enforced at MIN 37 - No Play.,17,9,2012 -20121014_MIN@WAS,3,26,31,WAS,MIN,1,15,42,(11:31) (Shotgun) A.Morris right guard to MIN 38 for 4 yards (L.Guion; J.Brinkley).,17,9,2012 -20121014_MIN@WAS,3,25,55,WAS,MIN,2,11,38,(10:55) (Shotgun) R.Griffin pass incomplete deep middle to D.Briscoe.,17,9,2012 -20121014_MIN@WAS,3,25,48,WAS,MIN,3,11,38,(10:48) (Shotgun) R.Griffin scrambles right end ran ob at MIN 23 for 15 yards. PENALTY on MIN-J.Brinkley Defensive Holding 5 yards enforced at MIN 23.,17,9,2012 -20121014_MIN@WAS,3,25,13,WAS,MIN,1,10,18,(10:13) (Shotgun) R.Griffin scrambles left end pushed ob at MIN 15 for 3 yards (H.Smith). PENALTY on MIN-H.Smith Horse Collar Tackle 8 yards enforced at MIN 15.,17,9,2012 -20121014_MIN@WAS,3,24,43,WAS,MIN,1,7,7,(9:43) R.Griffin left tackle for 7 yards TOUCHDOWN.,17,9,2012 -20121014_MIN@WAS,3,24,43,WAS,MIN,,,7,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,17,9,2012 -20121014_MIN@WAS,3,24,43,WAS,MIN,,,7,K.Forbath kicks 71 yards from WAS 35 to MIN -6. P.Harvin to MIN 39 for 45 yards (C.Wilson).,24,9,2012 -20121014_MIN@WAS,3,24,29,MIN,WAS,1,10,61,(9:29) C.Ponder pass short middle to A.Peterson to MIN 45 for 6 yards (P.Riley) [J.Jenkins].,9,24,2012 -20121014_MIN@WAS,3,23,59,MIN,WAS,2,4,55,(8:59) A.Peterson up the middle to MIN 48 for 3 yards (L.Fletcher P.Riley).,9,24,2012 -20121014_MIN@WAS,3,23,21,MIN,WAS,3,1,52,(8:21) A.Peterson left tackle to 50 for 2 yards (L.Fletcher Mad.Williams).,9,24,2012 -20121014_MIN@WAS,3,22,49,MIN,WAS,1,10,50,(7:49) A.Peterson up the middle to WAS 44 for 6 yards (B.Cofield; R.Doughty).,9,24,2012 -20121014_MIN@WAS,3,22,15,MIN,WAS,2,4,44,(7:15) A.Peterson right end to WAS 39 for 5 yards (C.Baker).,9,24,2012 -20121014_MIN@WAS,3,21,38,MIN,WAS,1,10,39,(6:38) C.Ponder pass incomplete short middle to K.Rudolph.,9,24,2012 -20121014_MIN@WAS,3,21,33,MIN,WAS,2,10,39,(6:33) C.Ponder pass short left to D.Aromashodu to WAS 26 for 13 yards (J.Wilson D.Hall).,9,24,2012 -20121014_MIN@WAS,3,20,50,MIN,WAS,1,10,26,(5:50) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin. PENALTY on WAS-R.Kerrigan Defensive Pass Interference 3 yards enforced at WAS 26 - No Play.,9,24,2012 -20121014_MIN@WAS,3,20,47,MIN,WAS,1,10,23,(5:47) P.Harvin right tackle to WAS 21 for 2 yards (L.Fletcher D.Hall).,9,24,2012 -20121014_MIN@WAS,3,20,13,MIN,WAS,2,8,21,(5:13) A.Peterson right tackle to WAS 19 for 2 yards (Mad.Williams; R.Kerrigan).,9,24,2012 -20121014_MIN@WAS,3,19,31,MIN,WAS,3,6,19,(4:31) (Shotgun) C.Ponder pass incomplete deep middle to P.Harvin [L.Alexander].,9,24,2012 -20121014_MIN@WAS,3,19,23,MIN,WAS,4,6,19,(4:23) B.Walsh 37 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,9,24,2012 -20121014_MIN@WAS,3,19,23,MIN,WAS,,,19,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,12,24,2012 -20121014_MIN@WAS,3,19,18,WAS,MIN,1,10,80,(4:18) R.Griffin scrambles right end pushed ob at WAS 24 for 4 yards (C.Greenway).,24,12,2012 -20121014_MIN@WAS,3,18,43,WAS,MIN,2,6,76,(3:43) (Shotgun) R.Griffin left tackle to WAS 28 for 4 yards (A.Winfield).,24,12,2012 -20121014_MIN@WAS,3,18,7,WAS,MIN,3,2,72,(3:07) (Shotgun) R.Griffin right end to WAS 32 for 4 yards (A.Winfield E.Henderson).,24,12,2012 -20121014_MIN@WAS,3,17,27,WAS,MIN,1,10,68,(2:27) (Shotgun) R.Griffin pass short left to F.Davis pushed ob at WAS 47 for 15 yards (J.Sanford).,24,12,2012 -20121014_MIN@WAS,3,16,54,WAS,MIN,1,10,53,(1:54) A.Morris right tackle to MIN 49 for 4 yards (C.Greenway; C.Ballard). PENALTY on WAS-F.Davis Offensive Holding 10 yards enforced at WAS 47 - No Play.,24,12,2012 -20121014_MIN@WAS,3,16,29,WAS,MIN,1,20,63,(1:29) (Shotgun) R.Griffin pass incomplete short middle to F.Davis (C.Cook).,24,12,2012 -20121014_MIN@WAS,3,16,24,WAS,MIN,2,20,63,(1:24) (Shotgun) R.Griffin pass short right to L.Hankerson to WAS 46 for 9 yards (J.Robinson).,24,12,2012 -20121014_MIN@WAS,3,15,48,WAS,MIN,3,11,54,(:48) (Shotgun) R.Griffin scrambles left end pushed ob at MIN 46 for 8 yards (J.Allen).,24,12,2012 -20121014_MIN@WAS,3,15,19,WAS,MIN,4,3,46,(:19) S.Rocca punts 43 yards to MIN 3 Center-J.Snow downed by WAS-N.Paul.,24,12,2012 -20121014_MIN@WAS,3,15,11,MIN,WAS,1,10,96,(:11) A.Peterson right tackle to MIN 6 for 2 yards (P.Riley; R.Jackson).,12,24,2012 -20121014_MIN@WAS,4,15,0,MIN,WAS,2,8,94,(15:00) C.Ponder pass short right to K.Rudolph pushed ob at MIN 19 for 13 yards (Mad.Williams).,12,24,2012 -20121014_MIN@WAS,4,14,27,MIN,WAS,1,10,81,(14:27) C.Ponder sacked at MIN 19 for 0 yards (L.Fletcher).,12,24,2012 -20121014_MIN@WAS,4,13,50,MIN,WAS,2,10,81,(13:50) A.Peterson right guard to MIN 22 for 3 yards (J.Jenkins; P.Riley).,12,24,2012 -20121014_MIN@WAS,4,13,17,MIN,WAS,3,7,78,(13:17) (Shotgun) PENALTY on MIN-J.Sullivan False Start 5 yards enforced at MIN 22 - No Play.,12,24,2012 -20121014_MIN@WAS,4,12,56,MIN,WAS,3,12,83,(12:56) (Shotgun) C.Ponder pass short right intended for M.Jenkins INTERCEPTED by Mad.Williams at MIN 24. Mad.Williams for 24 yards TOUCHDOWN.,12,24,2012 -20121014_MIN@WAS,4,12,56,WAS,MIN,,,83,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,24,12,2012 -20121014_MIN@WAS,4,12,56,WAS,MIN,,,83,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,31,12,2012 -20121014_MIN@WAS,4,12,40,MIN,WAS,1,10,80,(12:40) C.Ponder pass short right to R.Ellison to MIN 36 for 16 yards (R.Doughty).,12,31,2012 -20121014_MIN@WAS,4,11,59,MIN,WAS,1,10,64,(11:59) C.Ponder pass incomplete short left to J.Carlson.,12,31,2012 -20121014_MIN@WAS,4,11,54,MIN,WAS,2,10,64,(11:54) C.Ponder pass deep middle to P.Harvin to WAS 44 for 20 yards (Mad.Williams) [K.Golston].,12,31,2012 -20121014_MIN@WAS,4,11,20,MIN,WAS,1,10,44,(11:20) A.Peterson up the middle to WAS 36 for 8 yards (P.Riley R.Doughty).,12,31,2012 -20121014_MIN@WAS,4,10,44,MIN,WAS,2,2,36,(10:44) C.Ponder pass incomplete short middle to K.Rudolph (L.Fletcher).,12,31,2012 -20121014_MIN@WAS,4,10,39,MIN,WAS,3,2,36,(10:39) (Shotgun) C.Ponder pass short right to P.Harvin to WAS 30 for 6 yards (D.Hall; L.Alexander).,12,31,2012 -20121014_MIN@WAS,4,10,0,MIN,WAS,1,10,30,(10:00) A.Peterson up the middle to WAS 30 for no gain (Mad.Williams).,12,31,2012 -20121014_MIN@WAS,4,9,28,MIN,WAS,2,10,30,(9:28) C.Ponder pass short left to K.Rudolph to WAS 14 for 16 yards (J.Wilson).,12,31,2012 -20121014_MIN@WAS,4,8,48,MIN,WAS,1,10,14,(8:48) (Shotgun) C.Ponder pass short left to P.Harvin to WAS 9 for 5 yards (D.Hall P.Riley).,12,31,2012 -20121014_MIN@WAS,4,8,13,MIN,WAS,2,5,9,(8:13) (Shotgun) C.Ponder pass short right to M.Jenkins for 9 yards TOUCHDOWN.,12,31,2012 -20121014_MIN@WAS,4,8,13,MIN,WAS,,,9,(Pass formation) TWO-POINT CONVERSION ATTEMPT. C.Ponder pass to K.Rudolph is complete. ATTEMPT SUCCEEDS.,12,31,2012 -20121014_MIN@WAS,4,8,13,MIN,WAS,,,9,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,20,31,2012 -20121014_MIN@WAS,4,8,2,WAS,MIN,1,10,80,(8:02) (Shotgun) R.Griffin pass short left to B.Banks to WAS 20 for no gain (J.Sanford). FUMBLES (J.Sanford) ball out of bounds at WAS 20. Ball out of bounds at the 23 yard line and moved back to the 20 by rule.,31,20,2012 -20121014_MIN@WAS,4,7,30,WAS,MIN,2,10,80,(7:30) R.Griffin pass short right to J.Morgan pushed ob at WAS 29 for 9 yards (J.Sanford).,31,20,2012 -20121014_MIN@WAS,4,6,56,WAS,MIN,3,1,71,(6:56) A.Morris right end pushed ob at WAS 26 for -3 yards (L.Guion).,31,20,2012 -20121014_MIN@WAS,4,6,29,WAS,MIN,4,4,74,(6:29) S.Rocca punts 39 yards to MIN 35 Center-J.Snow. M.Sherels to MIN 33 for -2 yards (N.Paul).,31,20,2012 -20121014_MIN@WAS,4,6,18,MIN,WAS,1,10,67,(6:18) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph (P.Riley).,20,31,2012 -20121014_MIN@WAS,4,6,13,MIN,WAS,2,10,67,(6:13) (Shotgun) C.Ponder pass short left to P.Harvin to MIN 42 for 9 yards (D.Jones).,20,31,2012 -20121014_MIN@WAS,4,5,38,MIN,WAS,3,1,58,(5:38) C.Ponder scrambles left end ran ob at MIN 44 for 2 yards.,20,31,2012 -20121014_MIN@WAS,4,5,7,MIN,WAS,1,10,56,(5:07) (Shotgun) C.Ponder scrambles up the middle to MIN 46 for 2 yards (R.Kerrigan B.Cofield).,20,31,2012 -20121014_MIN@WAS,4,4,40,MIN,WAS,2,8,54,(4:40) (No Huddle Shotgun) C.Ponder pass short right to M.Jenkins to WAS 46 for 8 yards (D.Jones).,20,31,2012 -20121014_MIN@WAS,4,4,18,MIN,WAS,1,10,46,(4:18) (No Huddle Shotgun) C.Ponder pass incomplete short left to P.Harvin.,20,31,2012 -20121014_MIN@WAS,4,4,14,MIN,WAS,2,10,46,(4:14) (Shotgun) C.Ponder pass short left to A.Peterson to WAS 28 for 18 yards (Mad.Williams J.Pugh). WAS-J.Pugh was injured during the play.,20,31,2012 -20121014_MIN@WAS,4,3,47,MIN,WAS,1,10,28,(3:47) (Shotgun) C.Ponder pass incomplete deep left to D.Aromashodu (J.Wilson). PENALTY on WAS-J.Wilson Defensive Pass Interference 27 yards enforced at WAS 28 - No Play.,20,31,2012 -20121014_MIN@WAS,4,3,42,MIN,WAS,1,1,1,(3:42) C.Ponder pass short left to K.Rudolph for 1 yard TOUCHDOWN.,20,31,2012 -20121014_MIN@WAS,4,3,42,MIN,WAS,,,1,(Pass formation) TWO-POINT CONVERSION ATTEMPT. C.Ponder pass is incomplete. ATTEMPT FAILS.,20,31,2012 -20121014_MIN@WAS,4,3,42,MIN,WAS,,,1,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,26,31,2012 -20121014_MIN@WAS,4,3,36,WAS,MIN,1,10,80,(3:36) (Shotgun) R.Griffin sacked at WAS 16 for -4 yards (J.Allen).,31,26,2012 -20121014_MIN@WAS,4,3,3,WAS,MIN,2,14,84,(3:03) A.Morris left end to WAS 24 for 8 yards (L.Guion).,31,26,2012 -20121014_MIN@WAS,4,2,56,WAS,MIN,3,6,76,(2:56) (Shotgun) R.Griffin left guard for 76 yards TOUCHDOWN.,31,26,2012 -20121014_MIN@WAS,4,2,56,WAS,MIN,,,76,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,31,26,2012 -20121014_MIN@WAS,4,2,56,WAS,MIN,,,76,K.Forbath kicks 64 yards from WAS 35 to MIN 1. P.Harvin Touchback.,38,26,2012 -20121014_MIN@WAS,4,2,43,MIN,WAS,1,10,80,(2:43) (Shotgun) C.Ponder pass short left to P.Harvin to MIN 42 for 22 yards (J.Wilson). WAS-J.Wilson was injured during the play.,26,38,2012 -20121014_MIN@WAS,4,2,22,MIN,WAS,1,10,58,(2:22) (Shotgun) C.Ponder pass short left to A.Peterson pushed ob at WAS 49 for 9 yards (L.Alexander).,26,38,2012 -20121014_MIN@WAS,4,2,14,MIN,WAS,2,1,49,(2:14) C.Ponder sacked at MIN 42 for -9 yards (L.Alexander).,26,38,2012 -20121014_MIN@WAS,4,2,0,MIN,WAS,3,10,58,(2:00) (Shotgun) C.Ponder pass short middle to P.Harvin pushed ob at WAS 48 for 10 yards (Mad.Williams).,26,38,2012 -20121014_MIN@WAS,4,1,52,MIN,WAS,1,10,48,(1:52) (Shotgun) C.Ponder pass short right to K.Rudolph pushed ob at WAS 45 for 3 yards (D.Jones).,26,38,2012 -20121014_MIN@WAS,4,1,45,MIN,WAS,2,7,45,(1:45) (Shotgun) C.Ponder pass short right to M.Jenkins pushed ob at WAS 35 for 10 yards (D.Jones).,26,38,2012 -20121014_MIN@WAS,4,1,38,MIN,WAS,1,10,35,(1:38) (Shotgun) C.Ponder pass short middle to M.Jenkins to WAS 26 for 9 yards (D.Jones P.Riley).,26,38,2012 -20121014_MIN@WAS,4,1,32,MIN,WAS,2,1,26,(1:32) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,26,38,2012 -20121014_MIN@WAS,4,1,26,MIN,WAS,3,1,26,(1:26) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins.,26,38,2012 -20121014_MIN@WAS,4,1,20,MIN,WAS,4,1,26,(1:20) (Shotgun) C.Ponder pass short right to M.Jenkins to WAS 14 for 12 yards (D.Jones).,26,38,2012 -20121014_MIN@WAS,4,1,3,MIN,WAS,1,10,14,(1:03) (No Huddle Shotgun) C.Ponder pass short right to K.Rudolph to WAS 9 for 5 yards (D.Jones).,26,38,2012 -20121014_MIN@WAS,4,0,59,MIN,WAS,2,5,9,(:59) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (J.Pugh). WAS-J.Pugh was injured during the play.,26,38,2012 -20121014_MIN@WAS,4,0,54,MIN,WAS,3,5,9,(:54) (Shotgun) C.Ponder pass short middle to P.Harvin to WAS 1 for 8 yards (P.Riley L.Fletcher).,26,38,2012 -20121014_MIN@WAS,4,0,37,MIN,WAS,1,1,1,(:37) (No Huddle Shotgun) C.Ponder pass incomplete short middle to A.Peterson (L.Fletcher).,26,38,2012 -20121014_MIN@WAS,4,0,32,MIN,WAS,2,1,1,(:32) (Shotgun) A.Peterson right tackle for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on MIN-K.Rudolph False Start 5 yards enforced at WAS 1 - No Play.,26,38,2012 -20121014_MIN@WAS,4,0,31,MIN,WAS,2,6,6,(:31) (Shotgun) C.Ponder pass short middle to A.Peterson to WAS 3 for 3 yards (Mad.Williams).,26,38,2012 -20121014_MIN@WAS,4,0,28,MIN,WAS,3,3,3,(:28) (Shotgun) C.Ponder pass short middle intended for P.Harvin INTERCEPTED by D.Hall [J.Jenkins] at WAS -1. Touchback.,26,38,2012 -20121014_MIN@WAS,4,0,22,WAS,MIN,1,10,80,(:22) R.Griffin kneels to WAS 19 for -1 yards.,38,26,2012 -20121014_MIN@WAS,4,0,22,WAS,MIN,,,80,                      ,38,26,2012 -20121014_GB@HOU,1,0,0,GB,HOU,,,80,M.Crosby kicks 66 yards from GB 35 to HST -1. K.Martin to HST 19 for 20 yards (R.Francois).,0,0,2012 -20121014_GB@HOU,1,59,54,HOU,GB,1,10,81,(14:54) M.Schaub sacked at HST 17 for -2 yards (C.Wilson).,0,0,2012 -20121014_GB@HOU,1,59,34,HOU,GB,2,12,83,(14:34) M.Schaub pass incomplete short left to A.Foster.,0,0,2012 -20121014_GB@HOU,1,59,27,HOU,GB,3,12,83,(14:27) (Shotgun) B.Tate up the middle to HST 27 for 10 yards (M.Jennings T.Williams).,0,0,2012 -20121014_GB@HOU,1,58,51,HOU,GB,4,2,73,(13:51) D.Jones punts 50 yards to GB 23 Center-J.Weeks. R.Cobb to GB 33 for 10 yards (B.Braman).,0,0,2012 -20121014_GB@HOU,1,58,38,GB,HOU,1,10,67,(13:38) (Shotgun) A.Green right guard to GB 36 for 3 yards (G.Quin J.Watt).,0,0,2012 -20121014_GB@HOU,1,58,15,GB,HOU,2,7,64,(13:15) (Shotgun) A.Green right tackle to GB 38 for 2 yards (B.Reed).,0,0,2012 -20121014_GB@HOU,1,57,44,GB,HOU,3,5,62,(12:44) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at GB 47 for 9 yards (J.Joseph).,0,0,2012 -20121014_GB@HOU,1,57,27,GB,HOU,1,10,53,(12:27) A.Green right tackle to HST 46 for 7 yards (B.James G.Quin).,0,0,2012 -20121014_GB@HOU,1,57,3,GB,HOU,2,3,46,(12:03) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb (B.McCain).,0,0,2012 -20121014_GB@HOU,1,56,57,GB,HOU,3,3,46,(11:57) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones.,0,0,2012 -20121014_GB@HOU,1,56,51,GB,HOU,4,3,46,(11:51) (Punt formation) PENALTY on HST-D.Posey Defensive Offside 5 yards enforced at HST 46 - No Play.,0,0,2012 -20121014_GB@HOU,1,56,42,GB,HOU,1,10,41,(11:42) (Shotgun) A.Rodgers pass deep right to J.Nelson for 41 yards TOUCHDOWN.,0,0,2012 -20121014_GB@HOU,1,56,42,GB,HOU,,,41,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay. Penalty on HST-D.Manning Defensive Offside declined. PENALTY on HST-B.James Unnecessary Roughness 15 yards enforced between downs.,0,0,2012 -20121014_GB@HOU,1,56,42,GB,HOU,,,41,M.Crosby kicks 50 yards from 50 to HST 0. K.Martin to HST 14 for 14 yards (R.Francois).,7,0,2012 -20121014_GB@HOU,1,56,29,HOU,GB,1,10,86,(11:29) M.Schaub pass short left to J.Casey to HST 29 for 15 yards (D.Smith).,0,7,2012 -20121014_GB@HOU,1,56,2,HOU,GB,1,10,71,(11:02) M.Schaub pass incomplete deep left to K.Walter.,0,7,2012 -20121014_GB@HOU,1,55,55,HOU,GB,2,10,71,(10:55) A.Foster right tackle to HST 33 for 4 yards (C.Matthews).,0,7,2012 -20121014_GB@HOU,1,55,16,HOU,GB,3,6,67,(10:16) (Shotgun) M.Schaub sacked at HST 23 for -10 yards (J.Worthy).,0,7,2012 -20121014_GB@HOU,1,54,50,HOU,GB,4,16,77,(9:50) D.Jones punts 50 yards to GB 27 Center-J.Weeks out of bounds. (The punt hang time was 4.6 seconds.),0,7,2012 -20121014_GB@HOU,1,54,41,GB,HOU,1,10,73,(9:41) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 36 for 9 yards (B.McCain J.Joseph).,7,0,2012 -20121014_GB@HOU,1,54,12,GB,HOU,2,1,64,(9:12) (Shotgun) A.Green up the middle to GB 46 for 10 yards (B.James T.Nolan).,7,0,2012 -20121014_GB@HOU,1,53,51,GB,HOU,1,10,54,(8:51) (Shotgun) A.Rodgers pass short right to J.Finley to GB 47 for 1 yard (G.Quin).,7,0,2012 -20121014_GB@HOU,1,53,25,GB,HOU,2,9,53,(8:25) (Shotgun) A.Rodgers sacked at GB 41 for -6 yards (J.Watt).,7,0,2012 -20121014_GB@HOU,1,52,49,GB,HOU,3,15,59,(7:49) (Shotgun) A.Rodgers pass deep right to R.Cobb pushed ob at HST 43 for 16 yards (J.Joseph).,7,0,2012 -20121014_GB@HOU,1,52,30,GB,HOU,1,10,43,(7:30) (Shotgun) A.Green right guard to HST 42 for 1 yard (G.Quin).,7,0,2012 -20121014_GB@HOU,1,52,2,GB,HOU,2,9,42,(7:02) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,7,0,2012 -20121014_GB@HOU,1,51,56,GB,HOU,3,9,42,(6:56) (Shotgun) A.Rodgers pass incomplete deep right to R.Cobb.,7,0,2012 -20121014_GB@HOU,1,51,50,GB,HOU,4,9,42,(6:50) T.Masthay punts 39 yards to HST 3 Center-B.Goode downed by GB-J.Bush. (The punt hang time was 4.0 seconds.),7,0,2012 -20121014_GB@HOU,1,51,39,HOU,GB,1,10,97,(6:39) A.Foster left tackle to HST 5 for 2 yards (C.Matthews).,0,7,2012 -20121014_GB@HOU,1,51,1,HOU,GB,2,8,95,(6:01) M.Schaub pass short right to O.Daniels to HST 9 for 4 yards (T.Williams).,0,7,2012 -20121014_GB@HOU,1,50,16,HOU,GB,3,4,91,(5:16) (Shotgun) PENALTY on HST-D.Brown False Start 4 yards enforced at HST 9 - No Play.,0,7,2012 -20121014_GB@HOU,1,49,58,HOU,GB,3,8,95,(4:58) (Shotgun) M.Schaub pass short right to A.Johnson to HST 17 for 12 yards (M.Jennings).,0,7,2012 -20121014_GB@HOU,1,49,19,HOU,GB,1,10,83,(4:19) A.Foster left tackle to HST 19 for 2 yards (M.Burnett).,0,7,2012 -20121014_GB@HOU,1,48,45,HOU,GB,2,8,81,(3:45) A.Foster left tackle to HST 17 for -2 yards (C.Matthews).,0,7,2012 -20121014_GB@HOU,1,48,3,HOU,GB,3,10,83,(3:03) M.Schaub pass incomplete short middle to O.Daniels [C.Matthews].,0,7,2012 -20121014_GB@HOU,1,47,59,HOU,GB,4,10,83,(2:59) D.Jones punts 55 yards to GB 28 Center-J.Weeks. R.Cobb to GB 44 for 16 yards (M.Alexander T.Nolan). (The punt hang time was 4.4 seconds.),0,7,2012 -20121014_GB@HOU,1,47,46,GB,HOU,1,10,56,(2:46) (Shotgun) A.Rodgers pass short middle to R.Cobb to HST 32 for 24 yards (K.Jackson). HST-T.Jamison was injured during the play. He is Out.,7,0,2012 -20121014_GB@HOU,1,47,11,GB,HOU,1,10,32,(2:11) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at HST 23 for 9 yards (T.Nolan).,7,0,2012 -20121014_GB@HOU,1,46,56,GB,HOU,2,1,23,(1:56) (Shotgun) A.Green left tackle to HST 20 for 3 yards (E.Mitchell).,7,0,2012 -20121014_GB@HOU,1,46,25,GB,HOU,1,10,20,(1:25) A.Rodgers pass incomplete short right to J.Nelson [B.Reed].,7,0,2012 -20121014_GB@HOU,1,46,19,GB,HOU,2,10,20,(1:19) (Shotgun) A.Rodgers pass short middle to T.Crabtree to HST 6 for 14 yards (G.Quin E.Mitchell) [J.Watt].,7,0,2012 -20121014_GB@HOU,1,45,32,GB,HOU,1,6,6,(:32) A.Rodgers pass short right to Ja.Jones for 6 yards TOUCHDOWN.,7,0,2012 -20121014_GB@HOU,1,45,32,GB,HOU,,,6,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,0,2012 -20121014_GB@HOU,1,45,32,GB,HOU,,,6,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,14,0,2012 -20121014_GB@HOU,1,45,24,HOU,GB,1,10,80,(:24) A.Foster left guard to HST 19 for -1 yards (J.Worthy).,0,14,2012 -20121014_GB@HOU,2,45,0,HOU,GB,2,11,81,(15:00) M.Schaub pass short left to A.Johnson to HST 31 for 12 yards (T.Williams M.Burnett).,0,14,2012 -20121014_GB@HOU,2,44,22,HOU,GB,1,10,69,(14:22) A.Foster right tackle to HST 31 for no gain (C.Woodson A.Hawk). PENALTY on GB-C.Matthews Defensive Offside 5 yards enforced at HST 31 - No Play.,0,14,2012 -20121014_GB@HOU,2,43,57,HOU,GB,1,5,64,(13:57) A.Foster right tackle to HST 37 for 1 yard (A.Hawk). GB-N.Perry was injured during the play. He is Out.,0,14,2012 -20121014_GB@HOU,2,43,32,HOU,GB,2,4,63,(13:32) B.Tate up the middle to HST 38 for 1 yard (A.Hawk).,0,14,2012 -20121014_GB@HOU,2,42,59,HOU,GB,3,3,62,(12:59) M.Schaub pass short middle to K.Walter to GB 46 for 16 yards (D.Smith).,0,14,2012 -20121014_GB@HOU,2,42,24,HOU,GB,1,10,46,(12:24) M.Schaub pass short middle to O.Daniels to GB 31 for 15 yards (A.Hawk; M.Burnett) [C.Matthews].,0,14,2012 -20121014_GB@HOU,2,41,43,HOU,GB,1,10,31,(11:43) A.Foster right tackle to GB 30 for 1 yard (C.Wilson).,0,14,2012 -20121014_GB@HOU,2,40,59,HOU,GB,2,9,30,(10:59) M.Schaub pass incomplete deep right to K.Walter. PENALTY on GB-S.Shields Defensive Pass Interference 26 yards enforced between downs.,0,14,2012 -20121014_GB@HOU,2,40,49,HOU,GB,1,4,4,(10:49) A.Foster left guard to GB 1 for 3 yards (D.Smith).,0,14,2012 -20121014_GB@HOU,2,40,19,HOU,GB,2,3,1,(10:19) A.Foster right tackle for 1 yard TOUCHDOWN.,0,14,2012 -20121014_GB@HOU,2,40,19,HOU,GB,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,14,2012 -20121014_GB@HOU,2,40,19,HOU,GB,,,1,S.Graham kicks 62 yards from HST 35 to GB 3. R.Cobb to GB 22 for 19 yards (M.Alexander).,7,14,2012 -20121014_GB@HOU,2,40,7,GB,HOU,1,10,78,(10:07) A.Green right guard to GB 30 for 8 yards (D.Manning B.James).,14,7,2012 -20121014_GB@HOU,2,39,43,GB,HOU,2,2,70,(9:43) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 31 for 1 yard (J.Joseph).,14,7,2012 -20121014_GB@HOU,2,39,22,GB,HOU,3,1,69,(9:22) A.Rodgers up the middle to GB 33 for 2 yards (C.Barwin).,14,7,2012 -20121014_GB@HOU,2,38,41,GB,HOU,1,10,67,(8:41) (Shotgun) A.Green right tackle to GB 33 for no gain (B.Reed).,14,7,2012 -20121014_GB@HOU,2,38,8,GB,HOU,2,10,67,(8:08) (Shotgun) A.Rodgers pass short right to A.Green to GB 41 for 8 yards (J.Joseph).,14,7,2012 -20121014_GB@HOU,2,37,34,GB,HOU,3,2,59,(7:34) (Shotgun) A.Rodgers pass short right to J.Nelson to HST 49 for 10 yards (J.Joseph).,14,7,2012 -20121014_GB@HOU,2,36,58,GB,HOU,1,10,49,(6:58) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones [T.Nolan]. PENALTY on HST-K.Jackson Defensive Pass Interference 28 yards enforced at HST 49 - No Play.,14,7,2012 -20121014_GB@HOU,2,36,51,GB,HOU,1,10,21,(6:51) (Shotgun) A.Rodgers pass deep middle to J.Nelson for 21 yards TOUCHDOWN.,14,7,2012 -20121014_GB@HOU,2,36,51,GB,HOU,,,21,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,7,2012 -20121014_GB@HOU,2,36,51,GB,HOU,,,21,M.Crosby kicks 74 yards from GB 35 to HST -9. K.Martin Touchback.,21,7,2012 -20121014_GB@HOU,2,36,45,HOU,GB,1,10,80,(6:45) M.Schaub pass short right to A.Johnson to HST 30 for 10 yards (T.Williams).,7,21,2012 -20121014_GB@HOU,2,36,10,HOU,GB,1,10,70,(6:10) A.Foster left end pushed ob at HST 35 for 5 yards (S.Shields).,7,21,2012 -20121014_GB@HOU,2,35,40,HOU,GB,2,5,65,(5:40) M.Schaub pass short left to A.Johnson pushed ob at HST 48 for 13 yards (T.Williams).,7,21,2012 -20121014_GB@HOU,2,35,10,HOU,GB,1,10,52,(5:10) M.Schaub pass short middle to G.Graham to GB 41 for 11 yards (C.Woodson).,7,21,2012 -20121014_GB@HOU,2,34,36,HOU,GB,1,10,41,(4:36) A.Foster right end to GB 38 for 3 yards (M.Neal). GB-D.Smith was injured during the play. He is Out.,7,21,2012 -20121014_GB@HOU,2,33,58,HOU,GB,2,7,38,(3:58) PENALTY on HST-B.Jones False Start 5 yards enforced at GB 38 - No Play.,7,21,2012 -20121014_GB@HOU,2,33,37,HOU,GB,2,12,45,(3:37) M.Schaub FUMBLES (Aborted) at GB 45 and recovers at GB 45. M.Schaub to GB 45 for no gain (M.Neal).,7,21,2012 -20121014_GB@HOU,2,33,3,HOU,GB,3,14,45,(3:03) (Shotgun) M.Schaub pass short middle to A.Foster to GB 33 for 12 yards (M.Burnett; A.Hawk).,7,21,2012 -20121014_GB@HOU,2,32,21,HOU,GB,4,2,33,(2:21) S.Graham 51 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,7,21,2012 -20121014_GB@HOU,2,32,21,HOU,GB,,,33,S.Graham kicks 70 yards from HST 35 to GB -5. R.Cobb to GB 16 for 21 yards (B.Braman).,10,21,2012 -20121014_GB@HOU,2,32,9,GB,HOU,1,10,84,(2:09) A.Green right guard to GB 18 for 2 yards (D.Manning).,21,10,2012 -20121014_GB@HOU,2,32,0,GB,HOU,2,8,82,(2:00) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at GB 29 for 11 yards (D.Manning).,21,10,2012 -20121014_GB@HOU,2,31,54,GB,HOU,1,10,71,(1:54) (Shotgun) A.Rodgers scrambles up the middle to GB 44 for 15 yards (T.Nolan).,21,10,2012 -20121014_GB@HOU,2,31,22,GB,HOU,1,10,56,(1:22) (Shotgun) A.Rodgers pass incomplete short right to Ja.Jones.,21,10,2012 -20121014_GB@HOU,2,31,18,GB,HOU,2,10,56,(1:18) (Shotgun) J.Kuhn right guard to GB 49 for 5 yards (G.Quin B.James).,21,10,2012 -20121014_GB@HOU,2,30,51,GB,HOU,3,5,51,(:51) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at HST 45 for 6 yards (G.Quin). PENALTY on GB-J.Finley Offensive Pass Interference 10 yards enforced at GB 49 - No Play.,21,10,2012 -20121014_GB@HOU,2,30,44,GB,HOU,3,15,61,(:44) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 46 for 7 yards (G.Quin).,21,10,2012 -20121014_GB@HOU,2,30,19,GB,HOU,4,8,54,(:19) T.Masthay punts 41 yards to HST 13 Center-B.Goode fair catch by K.Martin. (The punt hang time was 4.3 seconds.),21,10,2012 -20121014_GB@HOU,2,30,12,HOU,GB,1,10,87,(:12) A.Foster left tackle to HST 12 for -1 yards (B.Jones).,10,21,2012 -20121014_GB@HOU,2,30,8,HOU,GB,2,11,88,(:08) A.Foster right tackle to HST 16 for 4 yards (S.Shields).,10,21,2012 -20121014_GB@HOU,3,30,0,HOU,GB,,,88,S.Graham kicks 72 yards from HST 35 to GB -7. R.Cobb Touchback.,10,21,2012 -20121014_GB@HOU,3,30,0,GB,HOU,1,10,80,(15:00) A.Green left tackle to GB 23 for 3 yards (A.Smith D.Manning).,21,10,2012 -20121014_GB@HOU,3,29,17,GB,HOU,2,7,77,(14:17) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 37 for 14 yards (B.McCain). Penalty on HST-B.McCain Defensive Holding declined.,21,10,2012 -20121014_GB@HOU,3,28,45,GB,HOU,1,10,63,(13:45) A.Green left tackle to GB 37 for no gain (J.Watt).,21,10,2012 -20121014_GB@HOU,3,28,12,GB,HOU,2,10,63,(13:12) (Shotgun) A.Rodgers pass deep middle to R.Cobb to HST 42 for 21 yards (T.Nolan).,21,10,2012 -20121014_GB@HOU,3,27,44,GB,HOU,1,10,42,(12:44) (Shotgun) A.Green up the middle to HST 45 for -3 yards (J.Watt).,21,10,2012 -20121014_GB@HOU,3,27,7,GB,HOU,2,13,45,(12:07) (Shotgun) A.Rodgers pass short right to J.Nelson to HST 29 for 16 yards (G.Quin).,21,10,2012 -20121014_GB@HOU,3,26,33,GB,HOU,1,10,29,(11:33) (Shotgun) A.Green up the middle to HST 24 for 5 yards (K.Jackson).,21,10,2012 -20121014_GB@HOU,3,26,7,GB,HOU,2,5,24,(11:07) (Shotgun) A.Rodgers pass short right to J.Nelson to HST 11 for 13 yards (J.Joseph).,21,10,2012 -20121014_GB@HOU,3,25,25,GB,HOU,1,10,11,(10:25) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,21,10,2012 -20121014_GB@HOU,3,25,22,GB,HOU,2,10,11,(10:22) (Shotgun) A.Rodgers scrambles up the middle for 11 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on GB-M.Newhouse Offensive Holding 10 yards enforced at HST 11 - No Play.,21,10,2012 -20121014_GB@HOU,3,25,14,GB,HOU,2,20,21,(10:14) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley (G.Quin).,21,10,2012 -20121014_GB@HOU,3,25,9,GB,HOU,3,20,21,(10:09) (Shotgun) A.Rodgers pass incomplete deep middle to J.Finley (G.Quin) [A.Smith].,21,10,2012 -20121014_GB@HOU,3,25,3,GB,HOU,4,20,21,(10:03) M.Crosby 39 yard field goal is GOOD NULLIFIED by Penalty Center-B.Goode Holder-T.Masthay. PENALTY on HST-C.Barwin Leaping 10 yards enforced at HST 21 - No Play.,21,10,2012 -20121014_GB@HOU,3,24,58,GB,HOU,1,10,11,(9:58) (Shotgun) A.Rodgers sacked at HST 15 for -4 yards (J.Watt).,21,10,2012 -20121014_GB@HOU,3,24,24,GB,HOU,2,14,15,(9:24) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb.,21,10,2012 -20121014_GB@HOU,3,24,20,GB,HOU,3,14,15,(9:20) (Shotgun) A.Rodgers pass short left to R.Cobb to HST 4 for 11 yards (T.Nolan B.James). PENALTY on HST-D.Manning Unnecessary Roughness 2 yards enforced at HST 4.,21,10,2012 -20121014_GB@HOU,3,24,0,GB,HOU,1,2,2,(9:00) A.Green right guard to HST 1 for 1 yard (D.Manning).,21,10,2012 -20121014_GB@HOU,3,23,22,GB,HOU,2,1,1,(8:22) (Shotgun) A.Rodgers pass short right to J.Nelson for 1 yard TOUCHDOWN.,21,10,2012 -20121014_GB@HOU,3,23,22,GB,HOU,,,1,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,21,10,2012 -20121014_GB@HOU,3,23,22,GB,HOU,,,1,M.Crosby kicks 74 yards from GB 35 to HST -9. K.Martin to HST 22 for 31 yards (J.Lattimore). GB-B.Saine was injured during the play. He is Out.,28,10,2012 -20121014_GB@HOU,3,23,8,HOU,GB,1,10,78,(8:08) M.Schaub pass short right to A.Johnson to HST 24 for 2 yards (M.Burnett).,10,28,2012 -20121014_GB@HOU,3,22,38,HOU,GB,2,8,76,(7:38) M.Schaub pass short left to K.Walter pushed ob at HST 36 for 12 yards (S.Shields).,10,28,2012 -20121014_GB@HOU,3,22,14,HOU,GB,1,10,64,(7:14) A.Foster up the middle to HST 38 for 2 yards (R.Pickett A.Hawk).,10,28,2012 -20121014_GB@HOU,3,21,35,HOU,GB,2,8,62,(6:35) M.Schaub sacked at HST 26 for -12 yards (A.Hawk).,10,28,2012 -20121014_GB@HOU,3,20,55,HOU,GB,3,20,74,(5:55) (Shotgun) M.Schaub pass incomplete short middle to A.Foster.,10,28,2012 -20121014_GB@HOU,3,20,49,HOU,GB,4,20,74,(5:49) D.Jones punts 51 yards to GB 23 Center-J.Weeks. R.Cobb to GB 20 for -3 yards (A.Ball). (The punt hang time was 4.7 seconds.),10,28,2012 -20121014_GB@HOU,3,20,37,GB,HOU,1,10,80,(5:37) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones (C.Barwin).,28,10,2012 -20121014_GB@HOU,3,20,33,GB,HOU,2,10,80,(5:33) A.Green up the middle to GB 20 for no gain (A.Smith B.Reed).,28,10,2012 -20121014_GB@HOU,3,19,53,GB,HOU,3,10,80,(4:53) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 29 for 9 yards (D.Manning).,28,10,2012 -20121014_GB@HOU,3,19,19,GB,HOU,4,1,71,(4:19) T.Masthay punts 55 yards to HST 16 Center-B.Goode. K.Martin to HST 35 for 19 yards (M.Jennings). (The punt hang time was 4.3 seconds.),28,10,2012 -20121014_GB@HOU,3,19,5,HOU,GB,1,10,65,(4:05) (Shotgun) M.Schaub pass short left to O.Daniels pushed ob at GB 38 for 27 yards (T.Williams).,10,28,2012 -20121014_GB@HOU,3,18,36,HOU,GB,1,10,38,(3:36) (Shotgun) M.Schaub pass short middle to A.Johnson to GB 29 for 9 yards (T.Williams).,10,28,2012 -20121014_GB@HOU,3,18,9,HOU,GB,2,1,29,(3:09) A.Foster up the middle to GB 25 for 4 yards (B.Jones).,10,28,2012 -20121014_GB@HOU,3,17,34,HOU,GB,1,10,25,(2:34) (Shotgun) M.Schaub pass incomplete short right to O.Daniels.,10,28,2012 -20121014_GB@HOU,3,17,29,HOU,GB,2,10,25,(2:29) (Shotgun) M.Schaub pass short left to K.Martin to GB 13 for 12 yards (S.Shields).,10,28,2012 -20121014_GB@HOU,3,16,50,HOU,GB,1,10,13,(1:50) (Shotgun) M.Schaub pass incomplete short right to A.Johnson.,10,28,2012 -20121014_GB@HOU,3,16,45,HOU,GB,2,10,13,(1:45) M.Schaub pass short middle to K.Martin to GB 1 for 12 yards (M.Burnett).,10,28,2012 -20121014_GB@HOU,3,15,55,HOU,GB,1,1,1,(:55) A.Foster right tackle to GB 1 for no gain (A.Hawk).,10,28,2012 -20121014_GB@HOU,3,15,21,HOU,GB,2,1,1,(:21) A.Foster right end for 1 yard TOUCHDOWN.,10,28,2012 -20121014_GB@HOU,3,15,21,HOU,GB,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,28,2012 -20121014_GB@HOU,3,15,21,HOU,GB,,,1,S.Graham kicks 68 yards from HST 35 to GB -3. R.Cobb pushed ob at GB 43 for 46 yards (B.McCain).,17,28,2012 -20121014_GB@HOU,3,15,9,GB,HOU,1,10,57,(:09) (Shotgun) A.Green right tackle to HST 48 for 9 yards (C.Barwin).,28,17,2012 -20121014_GB@HOU,4,15,0,GB,HOU,2,1,48,(15:00) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones [B.James].,28,17,2012 -20121014_GB@HOU,4,14,54,GB,HOU,3,1,48,(14:54) A.Rodgers pass deep right to T.Crabtree for 48 yards TOUCHDOWN [B.Reed].,28,17,2012 -20121014_GB@HOU,4,14,54,GB,HOU,,,48,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,28,17,2012 -20121014_GB@HOU,4,14,54,GB,HOU,,,48,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,35,17,2012 -20121014_GB@HOU,4,14,46,HOU,GB,1,10,80,(14:46) (Shotgun) M.Schaub pass incomplete deep middle to A.Johnson.,17,35,2012 -20121014_GB@HOU,4,14,41,HOU,GB,2,10,80,(14:41) (Shotgun) M.Schaub pass short left intended for K.Martin INTERCEPTED by S.Shields at HST 27. S.Shields to HST 27 for no gain (K.Martin).,17,35,2012 -20121014_GB@HOU,4,14,34,GB,HOU,1,10,27,(14:34) A.Green up the middle to HST 22 for 5 yards (E.Mitchell).,35,17,2012 -20121014_GB@HOU,4,13,53,GB,HOU,2,5,22,(13:53) A.Green up the middle to HST 17 for 5 yards (B.James B.Reed).,35,17,2012 -20121014_GB@HOU,4,13,4,GB,HOU,1,10,17,(13:04) A.Green left end to HST 18 for -1 yards (C.Barwin).,35,17,2012 -20121014_GB@HOU,4,12,22,GB,HOU,2,11,18,(12:22) (Shotgun) A.Rodgers pass deep right to Ja.Jones for 18 yards TOUCHDOWN.,35,17,2012 -20121014_GB@HOU,4,12,22,GB,HOU,,,18,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,35,17,2012 -20121014_GB@HOU,4,12,22,GB,HOU,,,18,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,42,17,2012 -20121014_GB@HOU,4,12,16,HOU,GB,1,10,80,(12:16) J.Forsett right tackle to HST 23 for 3 yards (A.Hawk M.Jennings). GB-S.Shields was injured during the play. His return is Questionable.,17,42,2012 -20121014_GB@HOU,4,11,50,HOU,GB,2,7,77,(11:50) (Shotgun) M.Schaub pass incomplete short middle to A.Johnson (T.Williams) [C.Matthews].,17,42,2012 -20121014_GB@HOU,4,11,44,HOU,GB,3,7,77,(11:44) (Shotgun) M.Schaub pass short left to A.Johnson to HST 38 for 15 yards (T.Williams).,17,42,2012 -20121014_GB@HOU,4,11,7,HOU,GB,1,10,62,(11:07) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 40 for 2 yards (M.Jennings).,17,42,2012 -20121014_GB@HOU,4,10,32,HOU,GB,2,8,60,(10:32) (Shotgun) M.Schaub pass short left to J.Forsett to GB 42 for 18 yards (M.Daniels).,17,42,2012 -20121014_GB@HOU,4,9,51,HOU,GB,1,10,42,(9:51) (Shotgun) M.Schaub pass short middle to G.Graham to GB 39 for 3 yards (C.Matthews).,17,42,2012 -20121014_GB@HOU,4,9,22,HOU,GB,2,7,39,(9:22) (Shotgun) J.Forsett up the middle to GB 31 for 8 yards (M.Daniels).,17,42,2012 -20121014_GB@HOU,4,8,52,HOU,GB,1,10,31,(8:52) J.Forsett right tackle to GB 23 for 8 yards (J.McMillian).,17,42,2012 -20121014_GB@HOU,4,8,20,HOU,GB,2,2,23,(8:20) (Shotgun) M.Schaub pass incomplete short right to A.Johnson.,17,42,2012 -20121014_GB@HOU,4,8,16,HOU,GB,3,2,23,(8:16) B.Tate left end to GB 20 for 3 yards (J.McMillian A.Hawk).,17,42,2012 -20121014_GB@HOU,4,7,33,HOU,GB,1,10,20,(7:33) (Shotgun) M.Schaub pass incomplete deep left to K.Martin (C.Hayward).,17,42,2012 -20121014_GB@HOU,4,7,27,HOU,GB,2,10,20,(7:27) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,17,42,2012 -20121014_GB@HOU,4,7,22,HOU,GB,3,10,20,(7:22) (Shotgun) M.Schaub pass deep right intended for K.Martin INTERCEPTED by C.Hayward at GB -4. C.Hayward pushed ob at GB 13 for 17 yards (O.Daniels).,17,42,2012 -20121014_GB@HOU,4,7,11,GB,HOU,1,10,87,(7:11) A.Green left end to GB 12 for -1 yards (J.Watt).,42,17,2012 -20121014_GB@HOU,4,6,28,GB,HOU,2,11,88,(6:28) A.Green right tackle to GB 14 for 2 yards (S.Cody).,42,17,2012 -20121014_GB@HOU,4,5,39,GB,HOU,3,9,86,(5:39) (Shotgun) A.Rodgers pass incomplete short left to T.Crabtree (J.Crick).,42,17,2012 -20121014_GB@HOU,4,5,35,GB,HOU,4,9,86,(5:35) T.Masthay punt is BLOCKED by B.Braman Center-B.Goode RECOVERED by HST-D.Posey at GB 0. TOUCHDOWN.,42,17,2012 -20121014_GB@HOU,4,5,35,HOU,GB,,,86,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,42,2012 -20121014_GB@HOU,4,5,35,HOU,GB,,,86,S.Graham kicks onside 19 yards from HST 35 to GB 46. T.Williams (didn't try to advance) to GB 46 for no gain (B.Braman).,24,42,2012 -20121014_GB@HOU,4,5,27,GB,HOU,1,10,54,(5:27) J.Starks up the middle to GB 48 for 2 yards (J.Crick).,42,24,2012 -20121014_GB@HOU,4,5,21,GB,HOU,2,8,52,(5:21) J.Kuhn up the middle to GB 49 for 1 yard (E.Mitchell).,42,24,2012 -20121014_GB@HOU,4,5,15,GB,HOU,3,7,51,(5:15) A.Green up the middle to HST 47 for 4 yards (E.Mitchell).,42,24,2012 -20121014_GB@HOU,4,5,10,GB,HOU,4,3,47,(5:10) T.Masthay punts 36 yards to HST 11 Center-B.Goode fair catch by K.Martin.,42,24,2012 -20121014_GB@HOU,4,5,3,HOU,GB,1,10,89,(5:03) (Shotgun) T.Yates pass incomplete short middle to G.Graham (C.Wilson).,24,42,2012 -20121014_GB@HOU,4,4,58,HOU,GB,2,10,89,(4:58) (Shotgun) T.Yates pass short right to J.Casey pushed ob at HST 23 for 12 yards (M.Jennings).,24,42,2012 -20121014_GB@HOU,4,4,53,HOU,GB,1,10,77,(4:53) (Shotgun) T.Yates pass short middle to G.Graham to HST 34 for 11 yards (M.Jennings D.Moses).,24,42,2012 -20121014_GB@HOU,4,4,32,HOU,GB,1,10,66,(4:32) (Shotgun) T.Yates pass incomplete short left to G.Graham.,24,42,2012 -20121014_GB@HOU,4,4,28,HOU,GB,2,10,66,(4:28) (Shotgun) J.Forsett left guard to HST 38 for 4 yards (J.Worthy).,24,42,2012 -20121014_GB@HOU,4,3,40,HOU,GB,3,6,62,(3:40) (Shotgun) T.Yates pass deep right intended for D.Posey INTERCEPTED by C.Hayward at GB 44. C.Hayward to HST 36 for 20 yards (J.Forsett). (The pass was tipped by #22 Jerron McMillian.),24,42,2012 -20121014_GB@HOU,4,3,40,GB,HOU,1,10,36,(3:40) J.Starks right end to HST 33 for 3 yards (B.Braman).,42,24,2012 -20121014_GB@HOU,4,2,54,GB,HOU,2,7,33,(2:54) J.Starks up the middle to HST 32 for 1 yard (W.Mercilus S.Keo).,42,24,2012 -20121014_GB@HOU,4,2,8,GB,HOU,3,6,32,(2:08) J.Starks up the middle to HST 28 for 4 yards (S.Keo B.Braman). Penalty on GB-M.Newhouse Illegal Formation declined.,42,24,2012 -20121014_GB@HOU,4,2,0,GB,HOU,4,2,28,(2:00) J.Starks left tackle to HST 27 for 1 yard (J.Crick).,42,24,2012 -20121014_GB@HOU,4,1,53,HOU,GB,1,10,73,(1:53) J.Forsett right tackle to HST 31 for 4 yards (M.Jennings).,24,42,2012 -20121014_GB@HOU,4,1,5,HOU,GB,2,6,69,(1:05) J.Forsett left guard to HST 34 for 3 yards (D.Moses).,24,42,2012 -20121014_GB@HOU,4,0,20,HOU,GB,3,3,66,(:20) J.Forsett right tackle to GB 49 for 17 yards (A.Hawk).,24,42,2012 -20121014_GB@HOU,4,0,20,HOU,GB,,,66,                      ,24,42,2012 -20121015_DEN@SD,1,0,0,DEN,SD,,,66,M.Prater kicks 73 yards from DEN 35 to SD -8. R.Goodman pushed ob at SD 30 for 38 yards (T.Carter).,0,0,2012 -20121015_DEN@SD,1,59,52,SD,DEN,1,10,70,(14:52) R.Mathews right guard to SD 31 for 1 yard (K.Brooking K.Vickerson). PENALTY on DEN-V.Miller Illegal Use of Hands 5 yards enforced at SD 31.,0,0,2012 -20121015_DEN@SD,1,59,29,SD,DEN,1,10,64,(14:29) P.Rivers pass incomplete deep middle to R.Meachem.,0,0,2012 -20121015_DEN@SD,1,59,25,SD,DEN,2,10,64,(14:25) R.Mathews left end to SD 35 for -1 yards (C.Bailey).,0,0,2012 -20121015_DEN@SD,1,58,43,SD,DEN,3,11,65,(13:43) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,0,0,2012 -20121015_DEN@SD,1,58,38,SD,DEN,4,11,65,(13:38) M.Scifres punts 51 yards to DEN 14 Center-M.Windt downed by SD-D.Stuckey.,0,0,2012 -20121015_DEN@SD,1,58,26,DEN,SD,1,10,86,(13:26) W.McGahee left tackle to DEN 15 for 1 yard (A.Franklin T.Spikes).,0,0,2012 -20121015_DEN@SD,1,57,54,DEN,SD,2,9,85,(12:54) (Shotgun) P.Manning pass short right to D.Thomas to DEN 23 for 8 yards (E.Weddle Q.Jammer).,0,0,2012 -20121015_DEN@SD,1,57,21,DEN,SD,3,1,77,(12:21) W.McGahee left tackle to DEN 22 for -1 yards (S.Phillips).,0,0,2012 -20121015_DEN@SD,1,56,41,DEN,SD,4,2,78,(11:41) B.Colquitt punts 56 yards to SD 22 Center-A.Brewer. E.Royal to SD 28 for 6 yards (W.Woodyard O.Bolden).,0,0,2012 -20121015_DEN@SD,1,56,28,SD,DEN,1,10,72,(11:28) (Shotgun) P.Rivers pass short right to R.Meachem to SD 37 for 9 yards (C.Harris).,0,0,2012 -20121015_DEN@SD,1,55,55,SD,DEN,2,1,63,(10:55) R.Mathews left end to SD 36 for -1 yards (E.Dumervil).,0,0,2012 -20121015_DEN@SD,1,55,11,SD,DEN,3,2,64,(10:11) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,0,0,2012 -20121015_DEN@SD,1,55,6,SD,DEN,4,2,64,(10:06) M.Scifres punts 47 yards to DEN 17 Center-M.Windt. T.Holliday MUFFS catch RECOVERED by SD-D.Rosario at DEN 17. D.Rosario to DEN 17 for no gain (T.Carter).,0,0,2012 -20121015_DEN@SD,1,54,55,SD,DEN,1,10,17,(9:55) R.Mathews right end to DEN 13 for 4 yards (W.Woodyard N.Irving).,0,0,2012 -20121015_DEN@SD,1,54,13,SD,DEN,2,6,13,(9:13) (Shotgun) P.Rivers pass incomplete short left to A.Gates.,0,0,2012 -20121015_DEN@SD,1,54,7,SD,DEN,3,6,13,(9:07) (Shotgun) P.Rivers pass incomplete short left to R.Brown.,0,0,2012 -20121015_DEN@SD,1,54,3,SD,DEN,4,6,13,(9:03) N.Novak 32 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20121015_DEN@SD,1,54,3,SD,DEN,,,13,N.Novak kicks 50 yards from SD 35 to DEN 15. O.Bolden to DEN 19 for 4 yards (D.Stuckey). FUMBLES (D.Stuckey) RECOVERED by SD-C.Lynch at DEN 19. C.Lynch to DEN 19 for no gain (R.Moore).,3,0,2012 -20121015_DEN@SD,1,53,56,SD,DEN,1,10,19,(8:56) (Shotgun) R.Mathews up the middle to DEN 15 for 4 yards (E.Dumervil).,3,0,2012 -20121015_DEN@SD,1,53,23,SD,DEN,2,6,15,(8:23) P.Rivers pass short left to A.Gates for 15 yards TOUCHDOWN.,3,0,2012 -20121015_DEN@SD,1,53,23,SD,DEN,,,15,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres. PENALTY on SD-J.Clary Face Mask (15 Yards) 15 yards enforced between downs.,3,0,2012 -20121015_DEN@SD,1,53,23,SD,DEN,,,15,N.Novak kicks 71 yards from SD 20 to DEN 9. O.Bolden to DEN 29 for 20 yards (A.Bigby D.Stuckey). PENALTY on DEN-C.Gronkowski Offensive Holding 10 yards enforced at DEN 29.,10,0,2012 -20121015_DEN@SD,1,53,9,DEN,SD,1,10,81,(8:09) W.McGahee left tackle to DEN 24 for 5 yards (A.Bigby A.Cason).,0,10,2012 -20121015_DEN@SD,1,52,43,DEN,SD,2,5,76,(7:43) (Shotgun) P.Manning pass short right to E.Decker pushed ob at DEN 30 for 6 yards (M.Gilchrist).,0,10,2012 -20121015_DEN@SD,1,52,28,DEN,SD,1,10,70,(7:28) (Shotgun) W.McGahee up the middle to DEN 27 for -3 yards (E.Weddle D.Butler).,0,10,2012 -20121015_DEN@SD,1,52,0,DEN,SD,2,13,73,(7:00) (Shotgun) P.Manning pass short left to J.Dreessen pushed ob at DEN 30 for 3 yards (J.Johnson).,0,10,2012 -20121015_DEN@SD,1,51,36,DEN,SD,3,10,70,(6:36) (Shotgun) P.Manning pass incomplete short right to E.Decker.,0,10,2012 -20121015_DEN@SD,1,51,32,DEN,SD,4,10,70,(6:32) B.Colquitt punts 48 yards to SD 22 Center-A.Brewer. E.Royal to SD 23 for 1 yard (M.Willis).,0,10,2012 -20121015_DEN@SD,1,51,22,SD,DEN,1,10,77,(6:22) R.Mathews right tackle to SD 30 for 7 yards (J.Bannan K.Brooking).,10,0,2012 -20121015_DEN@SD,1,50,48,SD,DEN,2,3,70,(5:48) R.Mathews left guard to SD 30 for no gain (J.Bannan K.Vickerson).,10,0,2012 -20121015_DEN@SD,1,50,6,SD,DEN,3,3,70,(5:06) (Shotgun) PENALTY on SD-P.Rivers False Start 5 yards enforced at SD 30 - No Play.,10,0,2012 -20121015_DEN@SD,1,49,40,SD,DEN,3,8,75,(4:40) P.Rivers pass deep middle to M.Floyd to 50 for 25 yards (J.Leonhard).,10,0,2012 -20121015_DEN@SD,1,48,58,SD,DEN,1,10,50,(3:58) P.Rivers pass deep right to A.Gates to DEN 27 for 23 yards (M.Adams).,10,0,2012 -20121015_DEN@SD,1,48,12,SD,DEN,1,10,27,(3:12) R.Mathews left tackle to DEN 27 for no gain (C.Bailey). PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at DEN 27 - No Play.,10,0,2012 -20121015_DEN@SD,1,47,40,SD,DEN,1,20,37,(2:40) (Shotgun) P.Rivers pass short right to R.Mathews to DEN 28 for 9 yards (C.Bailey).,10,0,2012 -20121015_DEN@SD,1,46,57,SD,DEN,2,11,28,(1:57) R.Mathews up the middle to DEN 28 for no gain (D.Trevathan).,10,0,2012 -20121015_DEN@SD,1,46,13,SD,DEN,3,11,28,(1:13) (Shotgun) PENALTY on SD-R.McMichael False Start 5 yards enforced at DEN 28 - No Play.,10,0,2012 -20121015_DEN@SD,1,45,50,SD,DEN,3,16,33,(:50) (Shotgun) P.Rivers pass short right to E.Royal pushed ob at DEN 20 for 13 yards (J.Leonhard). PENALTY on SD-A.Gates Offensive Pass Interference 9 yards enforced at DEN 33 - No Play.,10,0,2012 -20121015_DEN@SD,1,45,21,SD,DEN,3,25,42,(:21) (Shotgun) P.Rivers pass short right to R.Brown to DEN 36 for 6 yards (W.Woodyard).,10,0,2012 -20121015_DEN@SD,2,45,0,SD,DEN,4,19,36,(15:00) M.Scifres punts 33 yards to DEN 3 Center-M.Windt downed by SD-D.Stuckey.,10,0,2012 -20121015_DEN@SD,2,44,50,DEN,SD,1,10,97,(14:50) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 8 for 5 yards (D.Williams).,0,10,2012 -20121015_DEN@SD,2,44,27,DEN,SD,2,5,92,(14:27) (Shotgun) P.Manning pass short left to W.McGahee to DEN 9 for 1 yard (E.Weddle).,0,10,2012 -20121015_DEN@SD,2,43,51,DEN,SD,3,4,91,(13:51) (Shotgun) P.Manning pass short left to W.McGahee to DEN 40 for 31 yards (A.Bigby).,0,10,2012 -20121015_DEN@SD,2,43,19,DEN,SD,1,10,60,(13:19) (Shotgun) P.Manning pass short right to B.Stokley to SD 48 for 12 yards (T.Spikes A.Bigby).,0,10,2012 -20121015_DEN@SD,2,42,57,DEN,SD,1,10,48,(12:57) PENALTY on DEN-D.Koppen Offensive Holding 10 yards enforced at SD 48 - No Play.,0,10,2012 -20121015_DEN@SD,2,42,45,DEN,SD,1,20,58,(12:45) (Shotgun) R.Hillman right tackle to DEN 45 for 3 yards (S.Phillips M.Ingram).,0,10,2012 -20121015_DEN@SD,2,42,16,DEN,SD,2,17,55,(12:16) P.Manning pass incomplete short left to E.Decker.,0,10,2012 -20121015_DEN@SD,2,42,10,DEN,SD,3,17,55,(12:10) (Shotgun) P.Manning pass short left to E.Decker to SD 46 for 9 yards (M.Gilchrist).,0,10,2012 -20121015_DEN@SD,2,41,28,DEN,SD,4,8,46,(11:28) B.Colquitt punts 34 yards to SD 12 Center-A.Brewer. E.Weddle MUFFS catch and recovers at SD 12. E.Weddle to SD 12 for no gain (D.Bruton).,0,10,2012 -20121015_DEN@SD,2,41,19,SD,DEN,1,10,88,(11:19) R.Mathews up the middle to SD 14 for 2 yards (J.Bannan).,10,0,2012 -20121015_DEN@SD,2,40,41,SD,DEN,2,8,86,(10:41) PENALTY on SD-P.Rivers False Start 5 yards enforced at SD 14 - No Play.,10,0,2012 -20121015_DEN@SD,2,40,15,SD,DEN,2,13,91,(10:15) R.Mathews up the middle to SD 12 for 3 yards (D.Wolfe W.Woodyard).,10,0,2012 -20121015_DEN@SD,2,39,30,SD,DEN,3,10,88,(9:30) (Shotgun) PENALTY on DEN-V.Miller Neutral Zone Infraction 5 yards enforced at SD 12 - No Play.,10,0,2012 -20121015_DEN@SD,2,39,28,SD,DEN,3,5,83,(9:28) (Shotgun) P.Rivers pass short left to A.Gates to SD 29 for 12 yards (M.Adams). PENALTY on DEN-M.Adams Unnecessary Roughness 15 yards enforced at SD 29.,10,0,2012 -20121015_DEN@SD,2,38,51,SD,DEN,1,10,56,(8:51) P.Rivers pass deep middle intended for A.Gates INTERCEPTED by J.Leonhard at DEN 10. J.Leonhard to DEN 10 for no gain (A.Gates). PENALTY on DEN-J.Leonhard Delay of Game 5 yards enforced between downs.,10,0,2012 -20121015_DEN@SD,2,38,41,DEN,SD,1,10,95,(8:41) P.Manning pass short left to W.McGahee to DEN 15 for 10 yards (E.Weddle).,0,10,2012 -20121015_DEN@SD,2,38,15,DEN,SD,1,10,85,(8:15) W.McGahee up the middle to DEN 15 for no gain (J.Johnson).,0,10,2012 -20121015_DEN@SD,2,37,39,DEN,SD,2,10,85,(7:39) P.Manning pass deep right to E.Decker to SD 30 for 55 yards (Q.Jammer A.Cason).,0,10,2012 -20121015_DEN@SD,2,36,53,DEN,SD,1,10,30,(6:53) W.McGahee up the middle to SD 26 for 4 yards (A.Franklin C.Liuget).,0,10,2012 -20121015_DEN@SD,2,36,21,DEN,SD,2,6,26,(6:21) (Shotgun) P.Manning pass incomplete deep right to J.Dreessen.,0,10,2012 -20121015_DEN@SD,2,36,15,DEN,SD,3,6,26,(6:15) (Shotgun) P.Manning pass short right intended for M.Willis INTERCEPTED by Q.Jammer at SD 20. Q.Jammer for 80 yards TOUCHDOWN.,0,10,2012 -20121015_DEN@SD,2,36,15,SD,DEN,,,26,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,10,0,2012 -20121015_DEN@SD,2,36,15,SD,DEN,,,26,N.Novak kicks 67 yards from SD 35 to DEN -2. O.Bolden to DEN 22 for 24 yards (D.Rosario).,17,0,2012 -20121015_DEN@SD,2,35,55,DEN,SD,1,10,78,(5:55) W.McGahee left tackle to DEN 21 for -1 yards (T.Spikes).,0,17,2012 -20121015_DEN@SD,2,35,21,DEN,SD,2,11,79,(5:21) (Shotgun) P.Manning pass short right to J.Tamme to DEN 23 for 2 yards (A.Bigby).,0,17,2012 -20121015_DEN@SD,2,34,38,DEN,SD,3,9,77,(4:38) (Shotgun) P.Manning pass incomplete short middle to W.McGahee [S.Phillips].,0,17,2012 -20121015_DEN@SD,2,34,33,DEN,SD,4,9,77,(4:33) B.Colquitt punts 50 yards to SD 27 Center-A.Brewer. E.Royal to SD 34 for 7 yards (W.Woodyard).,0,17,2012 -20121015_DEN@SD,2,34,20,SD,DEN,1,10,66,(4:20) R.Mathews up the middle to SD 39 for 5 yards (E.Dumervil D.Trevathan).,17,0,2012 -20121015_DEN@SD,2,33,42,SD,DEN,2,5,61,(3:42) (Shotgun) P.Rivers pass short left to A.Gates to SD 46 for 7 yards (C.Harris).,17,0,2012 -20121015_DEN@SD,2,33,8,SD,DEN,1,10,54,(3:08) R.Mathews up the middle to 50 for 4 yards (W.Woodyard).,17,0,2012 -20121015_DEN@SD,2,32,25,SD,DEN,2,6,50,(2:25) (Shotgun) P.Rivers pass short right to R.McMichael to DEN 48 for 2 yards (C.Harris).,17,0,2012 -20121015_DEN@SD,2,32,0,SD,DEN,3,4,48,(2:00) (Shotgun) P.Rivers pass incomplete deep middle to A.Gates. PENALTY on DEN-D.Trevathan Defensive Holding 5 yards enforced at DEN 48 - No Play.,17,0,2012 -20121015_DEN@SD,2,31,54,SD,DEN,1,10,43,(1:54) (Shotgun) R.Mathews left end to DEN 33 for 10 yards (W.Woodyard).,17,0,2012 -20121015_DEN@SD,2,31,23,SD,DEN,1,10,33,(1:23) (Shotgun) R.Mathews up the middle to DEN 30 for 3 yards (J.Bannan W.Woodyard).,17,0,2012 -20121015_DEN@SD,2,30,59,SD,DEN,2,7,30,(:59) R.Mathews right tackle to DEN 24 for 6 yards (K.Brooking).,17,0,2012 -20121015_DEN@SD,2,30,47,SD,DEN,3,1,24,(:47) J.Battle right tackle to DEN 23 for 1 yard (K.Vickerson J.Bannan).,17,0,2012 -20121015_DEN@SD,2,30,35,SD,DEN,1,10,23,(:35) (Shotgun) P.Rivers pass short right to R.Brown ran ob at DEN 11 for 12 yards (T.Carter).,17,0,2012 -20121015_DEN@SD,2,30,29,SD,DEN,1,10,11,(:29) P.Rivers pass short middle to A.Gates for 11 yards TOUCHDOWN.,17,0,2012 -20121015_DEN@SD,2,30,29,SD,DEN,,,11,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,17,0,2012 -20121015_DEN@SD,2,30,29,SD,DEN,,,11,N.Novak kicks 70 yards from SD 35 to DEN -5. O.Bolden Touchback.,24,0,2012 -20121015_DEN@SD,2,30,24,DEN,SD,1,10,80,(:24) P.Manning kneels dead ball declared at DEN 19 for -1 yards.,0,24,2012 -20121015_DEN@SD,3,30,0,SD,DEN,,,80,N.Novak kicks 70 yards from SD 35 to DEN -5. O.Bolden to DEN 15 for 20 yards (D.Stuckey).,24,0,2012 -20121015_DEN@SD,3,29,55,DEN,SD,1,10,85,(14:55) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 26 for 11 yards (A.Cason).,0,24,2012 -20121015_DEN@SD,3,29,28,DEN,SD,1,10,74,(14:28) W.McGahee up the middle to DEN 28 for 2 yards (C.Liuget).,0,24,2012 -20121015_DEN@SD,3,28,57,DEN,SD,2,8,72,(13:57) (Shotgun) P.Manning pass deep middle to J.Dreessen to DEN 47 for 19 yards (S.Phillips).,0,24,2012 -20121015_DEN@SD,3,28,20,DEN,SD,1,10,53,(13:20) (Shotgun) P.Manning pass short left to W.McGahee to DEN 47 for no gain (A.Cason D.Butler).,0,24,2012 -20121015_DEN@SD,3,27,49,DEN,SD,2,10,53,(12:49) P.Manning pass short left to E.Decker to SD 39 for 14 yards (A.Cason).,0,24,2012 -20121015_DEN@SD,3,27,9,DEN,SD,1,10,39,(12:09) P.Manning pass short right to J.Dreessen to SD 29 for 10 yards (J.Johnson).,0,24,2012 -20121015_DEN@SD,3,26,31,DEN,SD,1,10,29,(11:31) R.Hillman right tackle to SD 29 for no gain (T.Spikes K.Reyes).,0,24,2012 -20121015_DEN@SD,3,26,2,DEN,SD,2,10,29,(11:02) (Shotgun) P.Manning pass deep right to D.Thomas for 29 yards TOUCHDOWN.,0,24,2012 -20121015_DEN@SD,3,26,2,DEN,SD,,,29,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,24,2012 -20121015_DEN@SD,3,26,2,DEN,SD,,,29,M.Prater kicks 65 yards from DEN 35 to SD 0. R.Goodman to SD 15 for 15 yards (C.Gronkowski J.Mays).,7,24,2012 -20121015_DEN@SD,3,25,49,SD,DEN,1,10,85,(10:49) R.Mathews left tackle to SD 18 for 3 yards (M.Adams).,24,7,2012 -20121015_DEN@SD,3,25,10,SD,DEN,2,7,82,(10:10) (Shotgun) P.Rivers pass short middle to M.Floyd to SD 26 for 8 yards (M.Adams).,24,7,2012 -20121015_DEN@SD,3,24,29,SD,DEN,1,10,74,(9:29) R.Mathews up the middle to SD 39 for 13 yards (K.Brooking).,24,7,2012 -20121015_DEN@SD,3,23,46,SD,DEN,1,10,61,(8:46) J.Battle right end to SD 41 for 2 yards (R.Moore).,24,7,2012 -20121015_DEN@SD,3,23,6,SD,DEN,2,8,59,(8:06) (Shotgun) P.Rivers pass short left to E.Royal to DEN 47 for 12 yards (D.Trevathan).,24,7,2012 -20121015_DEN@SD,3,22,23,SD,DEN,1,10,47,(7:23) R.Mathews left end pushed ob at DEN 46 for 1 yard (W.Woodyard).,24,7,2012 -20121015_DEN@SD,3,21,53,SD,DEN,2,9,46,(6:53) (Shotgun) P.Rivers pass short left to R.Mathews to DEN 45 for 1 yard (K.Vickerson W.Woodyard).,24,7,2012 -20121015_DEN@SD,3,21,5,SD,DEN,3,8,45,(6:05) (Shotgun) P.Rivers pass short left to R.McMichael to DEN 40 for 5 yards (M.Adams). FUMBLES (M.Adams) recovered by SD-R.Brown at DEN 35. R.Brown to DEN 35 for no gain (J.Leonhard).,24,7,2012 -20121015_DEN@SD,3,20,38,SD,DEN,1,10,35,(5:38) R.Mathews up the middle to DEN 33 for 2 yards (J.Bannan M.Unrein).,24,7,2012 -20121015_DEN@SD,3,20,2,SD,DEN,2,8,33,(5:02) P.Rivers pass incomplete deep middle to D.Rosario.,24,7,2012 -20121015_DEN@SD,3,19,56,SD,DEN,3,8,33,(4:56) (Shotgun) P.Rivers sacked at DEN 35 for -2 yards (E.Dumervil). FUMBLES (E.Dumervil) [E.Dumervil] RECOVERED by DEN-T.Carter at DEN 35. T.Carter for 65 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was Upheld.,24,7,2012 -20121015_DEN@SD,3,19,56,DEN,SD,,,33,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,24,2012 -20121015_DEN@SD,3,19,56,DEN,SD,,,33,M.Prater kicks 66 yards from DEN 35 to SD -1. R.Goodman to SD 22 for 23 yards (N.Irving).,14,24,2012 -20121015_DEN@SD,3,19,34,SD,DEN,1,10,78,(4:34) R.Mathews up the middle to SD 23 for 1 yard (K.Brooking V.Miller).,24,14,2012 -20121015_DEN@SD,3,18,54,SD,DEN,2,9,77,(3:54) (Shotgun) P.Rivers pass short right to R.Mathews to SD 27 for 4 yards (J.Bannan). DEN-J.Bannan was injured during the play.,24,14,2012 -20121015_DEN@SD,3,18,26,SD,DEN,3,5,73,(3:26) (Shotgun) P.Rivers sacked at SD 18 for -9 yards (D.Wolfe).,24,14,2012 -20121015_DEN@SD,3,17,50,SD,DEN,4,14,82,(2:50) M.Scifres punts 49 yards to DEN 33 Center-M.Windt. T.Holliday to DEN 45 for 12 yards (D.Rosario).,24,14,2012 -20121015_DEN@SD,3,17,47,DEN,SD,1,10,55,(2:47) (Shotgun) W.McGahee up the middle to SD 46 for 9 yards (A.Bigby D.Butler).,14,24,2012 -20121015_DEN@SD,3,17,23,DEN,SD,2,1,46,(2:23) (Shotgun) W.McGahee left tackle to SD 44 for 2 yards (C.Thomas).,14,24,2012 -20121015_DEN@SD,3,16,53,DEN,SD,1,10,44,(1:53) (Shotgun) P.Manning pass short left to J.Dreessen to SD 35 for 9 yards (A.Cason).,14,24,2012 -20121015_DEN@SD,3,16,24,DEN,SD,2,1,35,(1:24) (Shotgun) W.McGahee left end to SD 35 for no gain (J.Johnson D.Williams).,14,24,2012 -20121015_DEN@SD,3,15,55,DEN,SD,3,1,35,(:55) (Shotgun) PENALTY on DEN-O.Franklin False Start 5 yards enforced at SD 35 - No Play.,14,24,2012 -20121015_DEN@SD,3,15,27,DEN,SD,3,6,40,(:27) (Shotgun) P.Manning pass short left to J.Tamme to SD 32 for 8 yards (A.Bigby). PENALTY on DEN-W.McGahee Offensive Holding 10 yards enforced at SD 40 - No Play.,14,24,2012 -20121015_DEN@SD,4,15,0,DEN,SD,3,16,50,(15:00) (Shotgun) P.Manning pass deep left to J.Tamme pushed ob at SD 25 for 25 yards (C.Lynch).,14,24,2012 -20121015_DEN@SD,4,14,47,DEN,SD,1,10,25,(14:47) (Shotgun) W.McGahee up the middle to SD 16 for 9 yards (A.Bigby C.Liuget). Penalty on SD-S.Phillips Defensive Offside declined.,14,24,2012 -20121015_DEN@SD,4,14,35,DEN,SD,2,1,16,(14:35) (Shotgun) W.McGahee up the middle to SD 14 for 2 yards (M.Ingram).,14,24,2012 -20121015_DEN@SD,4,14,12,DEN,SD,1,10,14,(14:12) (Shotgun) P.Manning pass short left to E.Decker to SD 7 for 7 yards (A.Cason).,14,24,2012 -20121015_DEN@SD,4,13,40,DEN,SD,2,3,7,(13:40) P.Manning pass short right to E.Decker for 7 yards TOUCHDOWN.,14,24,2012 -20121015_DEN@SD,4,13,40,DEN,SD,,,7,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,24,2012 -20121015_DEN@SD,4,13,40,DEN,SD,,,7,M.Prater kicks 61 yards from DEN 35 to SD 4. C.Brinkley to SD 15 for 11 yards (O.Bolden).,21,24,2012 -20121015_DEN@SD,4,13,25,SD,DEN,1,10,85,(13:25) P.Rivers pass short middle to R.Mathews to SD 20 for 5 yards (V.Miller).,24,21,2012 -20121015_DEN@SD,4,12,44,SD,DEN,2,5,80,(12:44) P.Rivers pass short right to R.Meachem to SD 29 for 9 yards (C.Harris). DEN-V.Miller was injured during the play.,24,21,2012 -20121015_DEN@SD,4,12,7,SD,DEN,1,10,71,(12:07) R.Mathews right end to SD 31 for 2 yards (N.Irving).,24,21,2012 -20121015_DEN@SD,4,11,29,SD,DEN,2,8,69,(11:29) P.Rivers pass incomplete short left to R.Mathews.,24,21,2012 -20121015_DEN@SD,4,11,24,SD,DEN,3,8,69,(11:24) (Shotgun) P.Rivers pass deep middle intended for R.Meachem INTERCEPTED by T.Carter at DEN 35. T.Carter ran ob at 50 for 15 yards (R.Meachem).,24,21,2012 -20121015_DEN@SD,4,11,11,DEN,SD,1,10,50,(11:11) (Shotgun) P.Manning pass short left to B.Stokley to SD 44 for 6 yards (E.Weddle).,21,24,2012 -20121015_DEN@SD,4,10,47,DEN,SD,2,4,44,(10:47) (Shotgun) W.McGahee left end to SD 35 for 9 yards (S.Phillips).,21,24,2012 -20121015_DEN@SD,4,10,4,DEN,SD,1,10,35,(10:04) (Shotgun) P.Manning pass short left to B.Stokley pushed ob at SD 26 for 9 yards (M.Gilchrist).,21,24,2012 -20121015_DEN@SD,4,9,32,DEN,SD,2,1,26,(9:32) (Shotgun) PENALTY on SD-C.Liuget Encroachment 5 yards enforced at SD 26 - No Play.,21,24,2012 -20121015_DEN@SD,4,9,9,DEN,SD,1,10,21,(9:09) (Shotgun) P.Manning pass deep right to B.Stokley for 21 yards TOUCHDOWN.,21,24,2012 -20121015_DEN@SD,4,9,9,DEN,SD,,,21,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,21,24,2012 -20121015_DEN@SD,4,9,9,DEN,SD,,,21,M.Prater kicks 72 yards from DEN 35 to SD -7. R.Goodman to SD 32 for 39 yards (O.Bolden).,28,24,2012 -20121015_DEN@SD,4,8,55,SD,DEN,1,10,68,(8:55) (Shotgun) P.Rivers pass short left to A.Gates to SD 45 for 13 yards (D.Trevathan).,24,28,2012 -20121015_DEN@SD,4,8,17,SD,DEN,1,10,55,(8:17) (Shotgun) P.Rivers pass short left to M.Floyd to DEN 49 for 6 yards (R.Moore).,24,28,2012 -20121015_DEN@SD,4,7,52,SD,DEN,2,4,49,(7:52) (Shotgun) R.Mathews up the middle to DEN 44 for 5 yards (R.Moore).,24,28,2012 -20121015_DEN@SD,4,7,27,SD,DEN,1,10,44,(7:27) R.Brown up the middle to DEN 41 for 3 yards (M.Adams).,24,28,2012 -20121015_DEN@SD,4,6,59,SD,DEN,2,7,41,(6:59) (Shotgun) P.Rivers pass incomplete short right to R.Meachem.,24,28,2012 -20121015_DEN@SD,4,6,54,SD,DEN,3,7,41,(6:54) (Shotgun) P.Rivers pass intended for E.Royal INTERCEPTED by C.Harris at DEN 34. C.Harris to DEN 34 for no gain (E.Royal).,24,28,2012 -20121015_DEN@SD,4,6,48,DEN,SD,1,10,66,(6:48) W.McGahee right guard to DEN 42 for 8 yards (T.Spikes E.Weddle).,28,24,2012 -20121015_DEN@SD,4,6,6,DEN,SD,2,2,58,(6:06) (Shotgun) W.McGahee left end to DEN 42 for no gain (C.Thomas). PENALTY on SD-M.Gilchrist Defensive Offside 5 yards enforced at DEN 42 - No Play.,28,24,2012 -20121015_DEN@SD,4,5,35,DEN,SD,1,10,53,(5:35) (Shotgun) W.McGahee right tackle to SD 48 for 5 yards (M.Gilchrist D.Butler).,28,24,2012 -20121015_DEN@SD,4,4,57,DEN,SD,2,5,48,(4:57) (Shotgun) P.Manning pass incomplete short left to E.Decker (E.Weddle).,28,24,2012 -20121015_DEN@SD,4,4,52,DEN,SD,3,5,48,(4:52) (Shotgun) P.Manning pass deep left to E.Decker to SD 20 for 28 yards (A.Cason). PENALTY on DEN-E.Decker Offensive Pass Interference 11 yards enforced at SD 48 - No Play.,28,24,2012 -20121015_DEN@SD,4,4,45,DEN,SD,3,16,59,(4:45) (Shotgun) PENALTY on SD-V.Martin Encroachment 5 yards enforced at DEN 41 - No Play.,28,24,2012 -20121015_DEN@SD,4,4,45,DEN,SD,3,11,54,(4:45) (Shotgun) W.McGahee up the middle to SD 49 for 5 yards (A.Barnes M.Ingram).,28,24,2012 -20121015_DEN@SD,4,4,1,DEN,SD,4,6,49,(4:01) B.Colquitt punts 35 yards to SD 14 Center-A.Brewer fair catch by E.Royal.,28,24,2012 -20121015_DEN@SD,4,3,52,SD,DEN,1,10,86,(3:52) (Shotgun) P.Rivers pass short right to M.Floyd ran ob at SD 24 for 10 yards (C.Bailey).,24,28,2012 -20121015_DEN@SD,4,3,48,SD,DEN,1,10,76,(3:48) (Shotgun) R.Brown up the middle to SD 30 for 6 yards (D.Wolfe).,24,28,2012 -20121015_DEN@SD,4,3,19,SD,DEN,2,4,70,(3:19) (Shotgun) P.Rivers pass incomplete short right to R.Meachem (T.Carter).,24,28,2012 -20121015_DEN@SD,4,3,13,SD,DEN,3,4,70,(3:13) (Shotgun) P.Rivers pass short left to M.Floyd to SD 41 for 11 yards (C.Bailey).,24,28,2012 -20121015_DEN@SD,4,2,41,SD,DEN,1,10,59,(2:41) (Shotgun) R.Brown up the middle to SD 45 for 4 yards (W.Woodyard R.Ayers).,24,28,2012 -20121015_DEN@SD,4,2,15,SD,DEN,2,6,55,(2:15) (Shotgun) P.Rivers pass short left intended for E.Royal INTERCEPTED by C.Harris at SD 46. C.Harris for 46 yards TOUCHDOWN.,24,28,2012 -20121015_DEN@SD,4,2,15,DEN,SD,,,55,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,28,24,2012 -20121015_DEN@SD,4,2,15,DEN,SD,,,55,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,35,24,2012 -20121015_DEN@SD,4,2,5,SD,DEN,1,10,80,(2:05) (Shotgun) P.Rivers pass short middle to E.Royal to SD 30 for 10 yards (M.Adams).,24,35,2012 -20121015_DEN@SD,4,1,59,SD,DEN,1,10,70,(1:59) (Shotgun) P.Rivers pass incomplete short right to A.Gates [W.Woodyard].,24,35,2012 -20121015_DEN@SD,4,1,54,SD,DEN,2,10,70,(1:54) (Shotgun) P.Rivers pass short right to R.Brown to SD 35 for 5 yards (J.Leonhard).,24,35,2012 -20121015_DEN@SD,4,1,28,SD,DEN,3,5,65,(1:28) (Shotgun) P.Rivers pass short right to R.Meachem to SD 47 for 12 yards (T.Carter).,24,35,2012 -20121015_DEN@SD,4,1,20,SD,DEN,1,10,53,(1:20) (Shotgun) P.Rivers sacked at SD 41 for -6 yards (V.Miller).,24,35,2012 -20121015_DEN@SD,4,1,12,SD,DEN,2,16,59,(1:12) (Shotgun) P.Rivers pass incomplete deep right to R.Goodman.,24,35,2012 -20121015_DEN@SD,4,1,6,SD,DEN,3,16,59,(1:06) (Shotgun) P.Rivers pass incomplete short middle to R.Goodman (E.Dumervil).,24,35,2012 -20121015_DEN@SD,4,0,52,SD,DEN,4,16,59,(:52) (Shotgun) P.Rivers sacked at SD 34 for -7 yards (E.Dumervil). FUMBLES (E.Dumervil) RECOVERED by DEN-M.Adams at SD 34. M.Adams to SD 34 for no gain (T.Green).,24,35,2012 -20121015_DEN@SD,4,0,52,DEN,SD,1,10,33,(:52) P.Manning kneels dead ball declared at SD 33 for no gain.,35,24,2012 -20121015_DEN@SD,4,0,20,DEN,SD,2,10,33,(:20) P.Manning kneels dead ball declared at SD 34 for -1 yards.,35,24,2012 -20121015_DEN@SD,4,0,20,DEN,SD,,,33,                      ,35,24,2012 -20121018_SEA@SF,1,0,0,SEA,SF,,,33,S.Hauschka kicks 70 yards from SEA 35 to SF -5. T.Ginn to SF 21 for 26 yards (M.Smith). SEA-M.Smith was injured during the play. He is Out.,0,0,2012 -20121018_SEA@SF,1,59,55,SF,SEA,1,10,79,(14:55) F.Gore left guard to SF 28 for 7 yards (B.Wagner).,0,0,2012 -20121018_SEA@SF,1,59,17,SF,SEA,2,3,72,(14:17) F.Gore up the middle to SF 34 for 6 yards (L.Hill K.Wright).,0,0,2012 -20121018_SEA@SF,1,58,33,SF,SEA,1,10,66,(13:33) K.Williams right end to SF 37 for 3 yards (C.Clemons L.Hill).,0,0,2012 -20121018_SEA@SF,1,57,55,SF,SEA,2,7,63,(12:55) A.Smith pass short left to M.Crabtree to SF 41 for 4 yards (B.Browner). Caught at SF 41. 0-yds YAC,0,0,2012 -20121018_SEA@SF,1,57,22,SF,SEA,3,3,59,(12:22) A.Smith pass short right to R.Moss to SEA 45 for 14 yards (R.Sherman). Caught at SEA 47. 2-yds YAC,0,0,2012 -20121018_SEA@SF,1,56,36,SF,SEA,1,10,45,(11:36) A.Smith pass incomplete deep right to K.Williams.,0,0,2012 -20121018_SEA@SF,1,56,30,SF,SEA,2,10,45,(11:30) F.Gore right guard to SEA 41 for 4 yards (B.Wagner).,0,0,2012 -20121018_SEA@SF,1,55,50,SF,SEA,3,6,41,(10:50) (Shotgun) A.Smith pass incomplete deep left to K.Williams.,0,0,2012 -20121018_SEA@SF,1,55,44,SF,SEA,4,6,41,(10:44) A.Lee punts 37 yards to SEA 4 Center-B.Jennings downed by SF-D.Goldson.,0,0,2012 -20121018_SEA@SF,1,55,34,SEA,SF,1,10,96,(10:34) R.Wilson pass short left to M.Robinson pushed ob at SEA 16 for 12 yards (P.Willis). Caught at SEA 5. 11-yds YAC,0,0,2012 -20121018_SEA@SF,1,55,5,SEA,SF,1,10,84,(10:05) M.Lynch right tackle to SEA 18 for 2 yards (N.Bowman R.McDonald).,0,0,2012 -20121018_SEA@SF,1,54,21,SEA,SF,2,8,82,(9:21) M.Lynch right tackle to SEA 22 for 4 yards (N.Bowman A.Brooks).,0,0,2012 -20121018_SEA@SF,1,53,36,SEA,SF,3,4,78,(8:36) (Shotgun) R.Wilson pass short right to D.Baldwin to SEA 29 for 7 yards (C.Rogers). Caught at SEA 29. 0-yds YAC,0,0,2012 -20121018_SEA@SF,1,52,52,SEA,SF,1,10,71,(7:52) R.Wilson pass short left to M.Lynch to SEA 42 for 13 yards (D.Goldson). Caught at SEA 30. 12-yds YAC,0,0,2012 -20121018_SEA@SF,1,52,11,SEA,SF,1,10,58,(7:11) (Shotgun) R.Wilson sacked at SEA 34 for -8 yards (J.Smith). PENALTY on SF-R.McDonald Defensive Offside 5 yards enforced at SEA 42 - No Play.,0,0,2012 -20121018_SEA@SF,1,51,53,SEA,SF,1,5,53,(6:53) M.Lynch right guard to SEA 46 for -1 yards (J.Smith D.Goldson). PENALTY on SF-D.Goldson Unsportsmanlike Conduct 15 yards enforced at SEA 46.,0,0,2012 -20121018_SEA@SF,1,51,24,SEA,SF,1,10,39,(6:24) M.Lynch right end to SF 34 for 5 yards (C.Rogers).,0,0,2012 -20121018_SEA@SF,1,50,43,SEA,SF,2,5,34,(5:43) (Shotgun) R.Wilson pass incomplete deep right to R.Turbin.,0,0,2012 -20121018_SEA@SF,1,50,38,SEA,SF,3,5,34,(5:38) (Shotgun) R.Wilson pass incomplete short right to B.Obomanu.,0,0,2012 -20121018_SEA@SF,1,50,34,SEA,SF,4,5,34,(5:34) S.Hauschka 52 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121018_SEA@SF,1,50,34,SEA,SF,,,34,S.Hauschka kicks 73 yards from SEA 35 to SF -8. T.Ginn Touchback.,3,0,2012 -20121018_SEA@SF,1,50,29,SF,SEA,1,10,80,(5:29) A.Smith pass incomplete short right to F.Gore.,0,3,2012 -20121018_SEA@SF,1,50,21,SF,SEA,2,10,80,(5:21) (Shotgun) A.Smith pass incomplete short left to K.Williams.,0,3,2012 -20121018_SEA@SF,1,50,17,SF,SEA,3,10,80,(5:17) (Shotgun) A.Smith pass short left to F.Gore to SF 32 for 12 yards (B.Wagner). Caught at SF 17. 15-yds YAC,0,3,2012 -20121018_SEA@SF,1,49,33,SF,SEA,1,10,68,(4:33) F.Gore right guard to 50 for 18 yards (K.Wright).,0,3,2012 -20121018_SEA@SF,1,48,50,SF,SEA,1,10,50,(3:50) K.Hunter up the middle to SEA 44 for 6 yards (R.Sherman).,0,3,2012 -20121018_SEA@SF,1,48,8,SF,SEA,2,4,44,(3:08) K.Hunter right end to SEA 35 for 9 yards (K.Chancellor).,0,3,2012 -20121018_SEA@SF,1,47,26,SF,SEA,1,10,35,(2:26) A.Smith pass short right to M.Crabtree pushed ob at SEA 19 for 16 yards (R.Sherman). Caught at SEA 35. 16-yds YAC,0,3,2012 -20121018_SEA@SF,1,46,50,SF,SEA,1,10,19,(1:50) A.Smith pass incomplete short middle to R.Moss (R.Sherman).,0,3,2012 -20121018_SEA@SF,1,46,46,SF,SEA,2,10,19,(1:46) F.Gore left tackle to SEA 18 for 1 yard (B.Wagner).,0,3,2012 -20121018_SEA@SF,1,46,2,SF,SEA,3,9,18,(1:02) (Shotgun) A.Smith sacked at SEA 20 for -2 yards (J.Jones).,0,3,2012 -20121018_SEA@SF,1,45,31,SF,SEA,4,11,20,(:31) D.Akers 38 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,3,2012 -20121018_SEA@SF,1,45,31,SF,SEA,,,20,D.Akers kicks 73 yards from SF 35 to SEA -8. L.Washington Touchback.,3,3,2012 -20121018_SEA@SF,1,45,26,SEA,SF,1,10,80,(:26) M.Lynch right tackle to SEA 27 for 7 yards (I.Sopoaga C.Rogers).,3,3,2012 -20121018_SEA@SF,2,45,0,SEA,SF,2,3,73,(15:00) (Shotgun) R.Wilson pass incomplete deep right to E.Moore.,3,3,2012 -20121018_SEA@SF,2,44,55,SEA,SF,3,3,73,(14:55) (Shotgun) R.Wilson pass deep right to B.Obomanu to SF 37 for 36 yards (D.Whitner). Caught at SEA 45. 18-yds YAC,3,3,2012 -20121018_SEA@SF,2,44,10,SEA,SF,1,10,37,(14:10) M.Lynch right guard to SF 22 for 15 yards (D.Goldson D.Whitner).,3,3,2012 -20121018_SEA@SF,2,43,26,SEA,SF,1,10,22,(13:26) R.Turbin right end to SF 25 for -3 yards (J.Smith).,3,3,2012 -20121018_SEA@SF,2,42,43,SEA,SF,2,13,25,(12:43) (Shotgun) R.Wilson pass short right to D.Baldwin to SF 17 for 8 yards (C.Culliver). Caught at SF 20. 3-yds YAC,3,3,2012 -20121018_SEA@SF,2,42,17,SEA,SF,3,5,17,(12:17) (Shotgun) R.Wilson pass incomplete deep middle to B.Edwards (D.Goldson P.Willis).,3,3,2012 -20121018_SEA@SF,2,42,12,SEA,SF,4,5,17,(12:12) S.Hauschka 35 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,3,3,2012 -20121018_SEA@SF,2,42,12,SEA,SF,,,17,S.Hauschka kicks 64 yards from SEA 35 to SF 1. T.Ginn to SF 16 for 15 yards (D.Baldwin).,6,3,2012 -20121018_SEA@SF,2,41,58,SF,SEA,1,10,84,(11:58) F.Gore left guard to SF 19 for 3 yards (K.Wright).,3,6,2012 -20121018_SEA@SF,2,41,18,SF,SEA,2,7,81,(11:18) A.Smith pass incomplete short right to M.Crabtree.,3,6,2012 -20121018_SEA@SF,2,41,14,SF,SEA,3,7,81,(11:14) (Shotgun) PENALTY on SF-J.Staley False Start 5 yards enforced at SF 19 - No Play.,3,6,2012 -20121018_SEA@SF,2,41,12,SF,SEA,3,12,86,(11:12) (Shotgun) A.Smith pass short middle to F.Gore to SF 20 for 6 yards (E.Thomas). Caught at SF 16. 4-yds YAC,3,6,2012 -20121018_SEA@SF,2,40,32,SF,SEA,4,6,80,(10:32) A.Lee punts 45 yards to SEA 35 Center-B.Jennings. L.Washington MUFFS catch and recovers at SEA 33. L.Washington to SEA 33 for no gain (B.Miller). Lee is credited with a 47 yd. punt,3,6,2012 -20121018_SEA@SF,2,40,23,SEA,SF,1,10,67,(10:23) R.Wilson scrambles left end to SEA 35 for 2 yards (T.Brown).,6,3,2012 -20121018_SEA@SF,2,39,59,SEA,SF,2,8,65,(9:59) M.Lynch left guard to SEA 38 for 3 yards (P.Willis J.Smith).,6,3,2012 -20121018_SEA@SF,2,39,20,SEA,SF,3,5,62,(9:20) (Shotgun) R.Wilson pass short left to S.Rice to SF 35 for 27 yards (T.Brown). Caught at SEA 48. 17-yds YAC,6,3,2012 -20121018_SEA@SF,2,38,33,SEA,SF,1,10,35,(8:33) R.Wilson pass incomplete deep right to A.McCoy.,6,3,2012 -20121018_SEA@SF,2,38,25,SEA,SF,2,10,35,(8:25) (Shotgun) R.Wilson sacked at SF 35 for 0 yards (N.Bowman).,6,3,2012 -20121018_SEA@SF,2,37,40,SEA,SF,3,10,35,(7:40) (Shotgun) L.Washington up the middle to SF 33 for 2 yards (J.Smith).,6,3,2012 -20121018_SEA@SF,2,37,2,SEA,SF,4,8,33,(7:02) S.Hauschka 51 yard field goal is No Good Wide Left Center-C.Gresham Holder-J.Ryan.,6,3,2012 -20121018_SEA@SF,2,36,56,SF,SEA,1,10,59,(6:56) A.Smith pass short left to F.Gore to SF 47 for 6 yards (B.Browner). Caught at SF 44. 3-yds YAC,3,6,2012 -20121018_SEA@SF,2,36,9,SF,SEA,2,4,53,(6:09) (Shotgun) K.Hunter left end to SF 48 for 1 yard (B.Wagner).,3,6,2012 -20121018_SEA@SF,2,35,27,SF,SEA,3,3,52,(5:27) A.Smith pass short left to M.Crabtree to SF 49 for 1 yard (M.Trufant). Caught at SF 45. 4-yds YAC,3,6,2012 -20121018_SEA@SF,2,35,3,SF,SEA,4,2,51,(5:03) A.Lee punts 37 yards to SEA 14 Center-B.Jennings fair catch by L.Washington. Penalty on SEA Unnecessary Roughness offsetting. Penalty on SF-L.Grant Unnecessary Roughness offsetting.,3,6,2012 -20121018_SEA@SF,2,34,56,SEA,SF,1,10,86,(4:56) M.Lynch up the middle to SEA 28 for 14 yards (T.Brown).,6,3,2012 -20121018_SEA@SF,2,34,21,SEA,SF,1,10,72,(4:21) M.Lynch left end to SEA 34 for 6 yards (J.Smith).,6,3,2012 -20121018_SEA@SF,2,33,40,SEA,SF,2,4,66,(3:40) R.Turbin left end pushed ob at SEA 49 for 15 yards (N.Bowman T.Brown).,6,3,2012 -20121018_SEA@SF,2,33,12,SEA,SF,1,10,51,(3:12) R.Turbin left tackle to SF 47 for 4 yards (P.Willis).,6,3,2012 -20121018_SEA@SF,2,32,31,SEA,SF,2,6,47,(2:31) R.Turbin up the middle to SF 44 for 3 yards (N.Bowman). PENALTY on SEA-R.Okung Offensive Holding 10 yards enforced at SF 47 - No Play.,6,3,2012 -20121018_SEA@SF,2,32,0,SEA,SF,2,16,57,(2:00) R.Wilson pass incomplete deep right to G.Tate.,6,3,2012 -20121018_SEA@SF,2,31,52,SEA,SF,3,16,57,(1:52) (Shotgun) R.Wilson pass incomplete deep right to G.Tate (C.Culliver).,6,3,2012 -20121018_SEA@SF,2,31,44,SEA,SF,4,16,57,(1:44) J.Ryan punts 45 yards to SF 12 Center-C.Gresham. T.Ginn to 50 for 38 yards (H.Farwell).,6,3,2012 -20121018_SEA@SF,2,31,27,SF,SEA,1,10,50,(1:27) (Shotgun) A.Smith pass incomplete short right to R.Moss [G.Scruggs].,3,6,2012 -20121018_SEA@SF,2,31,19,SF,SEA,2,10,50,(1:19) (Shotgun) A.Smith pass incomplete short middle to M.Crabtree.,3,6,2012 -20121018_SEA@SF,2,31,14,SF,SEA,3,10,50,(1:14) (Shotgun) A.Smith sacked at 50 for 0 yards (G.Scruggs).,3,6,2012 -20121018_SEA@SF,2,30,29,SF,SEA,4,10,50,(:29) A.Lee punts 41 yards to SEA 9 Center-B.Jennings fair catch by L.Washington.,3,6,2012 -20121018_SEA@SF,2,30,22,SEA,SF,1,10,91,(:22) R.Wilson kneels to SEA 8 for -1 yards.,6,3,2012 -20121018_SEA@SF,3,30,0,SF,SEA,,,91,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,3,6,2012 -20121018_SEA@SF,3,30,0,SEA,SF,1,10,80,(15:00) M.Lynch right tackle to SEA 29 for 9 yards (Ald.Smith).,6,3,2012 -20121018_SEA@SF,3,29,26,SEA,SF,2,1,71,(14:26) M.Lynch left guard to SEA 36 for 7 yards (P.Willis).,6,3,2012 -20121018_SEA@SF,3,28,46,SEA,SF,1,10,64,(13:46) M.Lynch up the middle to SEA 41 for 5 yards (R.McDonald).,6,3,2012 -20121018_SEA@SF,3,28,11,SEA,SF,2,5,59,(13:11) R.Turbin left tackle to SEA 42 for 1 yard (A.Brooks).,6,3,2012 -20121018_SEA@SF,3,27,33,SEA,SF,3,4,58,(12:33) L.Washington left end to SEA 44 for 2 yards (P.Willis Ald.Smith).,6,3,2012 -20121018_SEA@SF,3,26,59,SEA,SF,4,2,56,(11:59) J.Ryan punts 43 yards to SF 13 Center-C.Gresham fair catch by T.Ginn. PENALTY on SF-D.Dobbs Illegal Formation 5 yards enforced at SEA 44 - No Play.,6,3,2012 -20121018_SEA@SF,3,26,53,SEA,SF,1,10,51,(11:53) R.Wilson pass incomplete deep right to Z.Miller.,6,3,2012 -20121018_SEA@SF,3,26,41,SEA,SF,2,10,51,(11:41) M.Lynch right tackle to SF 43 for 8 yards (P.Willis).,6,3,2012 -20121018_SEA@SF,3,25,59,SEA,SF,3,2,43,(10:59) (Shotgun) R.Wilson pass incomplete short right to G.Tate.,6,3,2012 -20121018_SEA@SF,3,25,55,SEA,SF,4,2,43,(10:55) J.Ryan punts 29 yards to SF 14 Center-C.Gresham fair catch by T.Ginn.,6,3,2012 -20121018_SEA@SF,3,25,49,SF,SEA,1,10,86,(10:49) A.Smith pass short middle to F.Gore to SF 29 for 15 yards (L.Hill). Caught at SF18. 11-yds YAC,3,6,2012 -20121018_SEA@SF,3,25,10,SF,SEA,1,10,71,(10:10) A.Smith pass short left to K.Hunter pushed ob at SF 40 for 11 yards (K.Wright). Caught at SF 31. 9-yds YAC,3,6,2012 -20121018_SEA@SF,3,24,32,SF,SEA,1,10,60,(9:32) F.Gore left guard to SF 46 for 6 yards (B.Mebane).,3,6,2012 -20121018_SEA@SF,3,24,0,SF,SEA,2,4,54,(9:00) PENALTY on SEA-B.Mebane Encroachment 5 yards enforced at SF 46 - No Play.,3,6,2012 -20121018_SEA@SF,3,23,37,SF,SEA,1,10,49,(8:37) A.Smith pass short middle to F.Gore to SEA 37 for 12 yards (C.Clemons). Caught at SEA 46. 9-yds YAC,3,6,2012 -20121018_SEA@SF,3,22,58,SF,SEA,1,10,37,(7:58) F.Gore up the middle to SEA 26 for 11 yards (L.Hill).,3,6,2012 -20121018_SEA@SF,3,22,22,SF,SEA,1,10,26,(7:22) F.Gore up the middle to SEA 23 for 3 yards (R.Bryant).,3,6,2012 -20121018_SEA@SF,3,21,44,SF,SEA,2,7,23,(6:44) K.Hunter left end to SEA 25 for -2 yards (K.Wright).,3,6,2012 -20121018_SEA@SF,3,20,59,SF,SEA,3,9,25,(5:59) (Shotgun) A.Smith pass short middle to M.Crabtree to SEA 15 for 10 yards (K.Wright). Caught at SF 20. 5-yds YAC,3,6,2012 -20121018_SEA@SF,3,20,18,SF,SEA,1,10,15,(5:18) (Shotgun) F.Gore left tackle to SEA 12 for 3 yards (L.Hill).,3,6,2012 -20121018_SEA@SF,3,19,36,SF,SEA,2,7,12,(4:36) A.Smith pass short left to D.Walker for 12 yards TOUCHDOWN. Caught at SEA 8. 8-yds YAC,3,6,2012 -20121018_SEA@SF,3,19,36,SF,SEA,,,12,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,6,2012 -20121018_SEA@SF,3,19,36,SF,SEA,,,12,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,6,2012 -20121018_SEA@SF,3,19,29,SEA,SF,1,10,80,(4:29) R.Wilson scrambles right end to SEA 29 for 9 yards (J.Smith).,6,10,2012 -20121018_SEA@SF,3,18,50,SEA,SF,2,1,71,(3:50) M.Lynch right tackle to SEA 31 for 2 yards (N.Bowman).,6,10,2012 -20121018_SEA@SF,3,18,7,SEA,SF,1,10,69,(3:07) M.Lynch left end to SEA 33 for 2 yards (J.Smith P.Willis).,6,10,2012 -20121018_SEA@SF,3,17,29,SEA,SF,2,8,67,(2:29) R.Wilson pass intended for B.Edwards INTERCEPTED by D.Goldson [N.Bowman] at SF 26. D.Goldson ran ob at SF 27 for 1 yard.,6,10,2012 -20121018_SEA@SF,3,17,22,SF,SEA,1,10,73,(2:22) F.Gore left tackle to SF 30 for 3 yards (K.Chancellor B.Wagner).,10,6,2012 -20121018_SEA@SF,3,16,43,SF,SEA,2,7,70,(1:43) A.Smith scrambles left end pushed ob at SF 38 for 8 yards (E.Thomas).,10,6,2012 -20121018_SEA@SF,3,16,2,SF,SEA,1,10,62,(1:02) F.Gore right guard to SF 39 for 1 yard (L.Hill).,10,6,2012 -20121018_SEA@SF,3,15,16,SF,SEA,2,9,61,(:16) A.Smith pass short right to K.Williams to SEA 43 for 18 yards (K.Chancellor). Caught at 50. 7-yds YAC,10,6,2012 -20121018_SEA@SF,4,15,0,SF,SEA,1,10,43,(15:00) (Shotgun) F.Gore up the middle to SEA 45 for -2 yards (K.Wright).,10,6,2012 -20121018_SEA@SF,4,14,20,SF,SEA,2,12,45,(14:20) F.Gore left tackle to SEA 8 for 37 yards (E.Thomas).,10,6,2012 -20121018_SEA@SF,4,13,39,SF,SEA,1,8,8,(13:39) L.Davis reported in as eligible. K.Hunter right tackle to SEA 6 for 2 yards (L.Hill).,10,6,2012 -20121018_SEA@SF,4,12,56,SF,SEA,2,6,6,(12:56) C.Kaepernick in at QB. (Shotgun) C.Kaepernick scrambles left end to SEA 7 for -1 yards (R.Bryant).,10,6,2012 -20121018_SEA@SF,4,12,10,SF,SEA,3,7,7,(12:10) A.Smith is back in at QB. (Shotgun) A.Smith pass short left intended for R.Moss INTERCEPTED by B.Browner at SEA -1. B.Browner to SEA 3 for 4 yards (V.Davis).,10,6,2012 -20121018_SEA@SF,4,11,58,SEA,SF,1,10,97,(11:58) M.Lynch left tackle to SEA 3 for no gain (Ald.Smith).,6,10,2012 -20121018_SEA@SF,4,11,14,SEA,SF,2,10,97,(11:14) M.Lynch up the middle to SEA 9 for 6 yards (N.Bowman).,6,10,2012 -20121018_SEA@SF,4,10,30,SEA,SF,3,4,91,(10:30) (Shotgun) R.Wilson pass incomplete short right to M.Lynch.,6,10,2012 -20121018_SEA@SF,4,10,25,SEA,SF,4,4,91,(10:25) J.Ryan punts 56 yards to SF 35 Center-C.Gresham. T.Ginn to SEA 49 for 16 yards (C.Maragos).,6,10,2012 -20121018_SEA@SF,4,10,11,SF,SEA,1,10,49,(10:11) F.Gore left guard to SEA 39 for 10 yards (E.Thomas).,10,6,2012 -20121018_SEA@SF,4,9,26,SF,SEA,1,10,39,(9:26) A.Smith pass short left to K.Hunter to SEA 36 for 3 yards (K.Wright). Caught at SEA 36. 0-yds YAC,10,6,2012 -20121018_SEA@SF,4,8,44,SF,SEA,2,7,36,(8:44) F.Gore up the middle to SEA 16 for 20 yards (K.Chancellor).,10,6,2012 -20121018_SEA@SF,4,7,59,SF,SEA,1,10,16,(7:59) K.Hunter left end to SEA 13 for 3 yards (B.Wagner L.Hill).,10,6,2012 -20121018_SEA@SF,4,7,21,SF,SEA,2,7,13,(7:21) K.Hunter right end pushed ob at SEA 5 for 8 yards (B.Wagner). PENALTY on SF-A.Davis Tripping 10 yards enforced at SEA 13 - No Play.,10,6,2012 -20121018_SEA@SF,4,6,50,SF,SEA,2,17,23,(6:50) K.Hunter up the middle to SEA 13 for 10 yards (L.Hill).,10,6,2012 -20121018_SEA@SF,4,6,9,SF,SEA,3,7,13,(6:09) (Shotgun) A.Smith up the middle to SEA 10 for 3 yards (C.McDonald).,10,6,2012 -20121018_SEA@SF,4,5,28,SF,SEA,4,4,10,(5:28) D.Akers 28 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,10,6,2012 -20121018_SEA@SF,4,5,28,SF,SEA,,,10,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,6,2012 -20121018_SEA@SF,4,5,24,SEA,SF,1,10,80,(5:24) M.Lynch right end to SEA 29 for 9 yards (P.Willis J.Smith).,6,13,2012 -20121018_SEA@SF,4,4,47,SEA,SF,2,1,71,(4:47) M.Lynch left tackle to SEA 30 for 1 yard (J.Smith). San Francisco challenged the first down ruling and the play was REVERSED. M.Lynch left tackle to SEA 29 for no gain (J.Smith).,6,13,2012 -20121018_SEA@SF,4,3,51,SEA,SF,3,1,71,(3:51) M.Robinson left guard to SEA 31 for 2 yards (N.Bowman).,6,13,2012 -20121018_SEA@SF,4,3,7,SEA,SF,1,10,69,(3:07) (Shotgun) R.Wilson pass short right to B.Obomanu to SEA 29 for -2 yards (C.Rogers). Caught at SEA 28. 1-yd YAC,6,13,2012 -20121018_SEA@SF,4,2,29,SEA,SF,2,12,71,(2:29) (Shotgun) R.Wilson pass incomplete short right to S.Rice (C.Culliver).,6,13,2012 -20121018_SEA@SF,4,2,23,SEA,SF,3,12,71,(2:23) (Shotgun) R.Wilson pass incomplete short right to S.Rice (P.Willis).,6,13,2012 -20121018_SEA@SF,4,2,18,SEA,SF,4,12,71,(2:18) J.Ryan punts 64 yards to SF 7 Center-C.Gresham. T.Ginn pushed ob at SF 23 for 16 yards (K.Wright).,6,13,2012 -20121018_SEA@SF,4,2,5,SF,SEA,1,10,77,(2:05) K.Hunter left guard to SF 25 for 2 yards (B.Wagner).,13,6,2012 -20121018_SEA@SF,4,2,0,SF,SEA,2,8,75,(2:00) K.Hunter right guard to SF 25 for no gain (C.McDonald).,13,6,2012 -20121018_SEA@SF,4,1,54,SF,SEA,3,8,75,(1:54) (Shotgun) A.Smith left end to SF 28 for 3 yards (K.Wright).,13,6,2012 -20121018_SEA@SF,4,1,48,SF,SEA,4,5,72,(1:48) A.Lee punts 66 yards to SEA 6 Center-B.Jennings. L.Washington to SEA 11 for 5 yards (T.Brock).,13,6,2012 -20121018_SEA@SF,4,1,36,SEA,SF,1,10,89,(1:36) (Shotgun) R.Wilson pass short right to S.Rice pushed ob at SEA 16 for 5 yards (C.Culliver). Caught at SEA 16. 0-yds YAC,6,13,2012 -20121018_SEA@SF,4,1,31,SEA,SF,2,5,84,(1:31) (Shotgun) R.Wilson sacked at SEA 9 for -7 yards (Ald.Smith).,6,13,2012 -20121018_SEA@SF,4,1,6,SEA,SF,3,12,91,(1:06) (No Huddle Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 9 - No Play.,6,13,2012 -20121018_SEA@SF,4,1,2,SEA,SF,3,17,96,(1:02) R.Wilson pass incomplete short right to Z.Miller.,6,13,2012 -20121018_SEA@SF,4,0,56,SEA,SF,4,17,96,(:56) (Shotgun) R.Wilson pass deep middle to B.Obomanu to SEA 20 for 16 yards (D.Whitner). Penalty on SEA-P.McQuistan Chop Block declined. The Replay Assistant challenged the first down ruling and the play was Upheld.,6,13,2012 -20121018_SEA@SF,4,0,43,SF,SEA,1,10,20,(:43) A.Smith kneels to SEA 22 for -2 yards.,13,6,2012 -20121018_SEA@SF,4,0,14,SF,SEA,2,12,22,(:14) A.Smith kneels to SEA 23 for -1 yards.,13,6,2012 -20121018_SEA@SF,4,0,14,SF,SEA,,,22,                      ,13,6,2012 -20121021_TEN@BUF,1,0,0,BUF,TEN,,,22,R.Lindell kicks 61 yards from BUF 35 to TEN 4. D.Reynaud to TEN 23 for 19 yards (B.Smith).,0,0,2012 -20121021_TEN@BUF,1,59,54,TEN,BUF,1,10,77,(14:54) C.Johnson up the middle to TEN 25 for 2 yards (N.Barnett K.Sheppard).,0,0,2012 -20121021_TEN@BUF,1,59,13,TEN,BUF,2,8,75,(14:13) M.Hasselbeck pass short middle to K.Britt to TEN 41 for 16 yards (A.Williams J.Byrd). Caught at TEN 37 crossing from right.,0,0,2012 -20121021_TEN@BUF,1,58,42,TEN,BUF,1,10,59,(13:42) (No Huddle Shotgun) M.Hasselbeck pass short left to K.Britt pushed ob at 50 for 9 yards (G.Wilson). Caught near sideline at TEN 45.,0,0,2012 -20121021_TEN@BUF,1,58,26,TEN,BUF,2,1,50,(13:26) (No Huddle Shotgun) M.Hasselbeck pass short middle to C.Stevens to BUF 33 for 17 yards (J.Byrd). Post-pattern caught at BUF 35.,0,0,2012 -20121021_TEN@BUF,1,57,58,TEN,BUF,1,10,33,(12:58) (No Huddle Shotgun) M.Hasselbeck pass short middle to C.Stevens to BUF 23 for 10 yards (K.Sheppard). Caught at BUF 25. PENALTY on BUF-K.Sheppard Illegal Contact 5 yards enforced at BUF 33 - No Play.,0,0,2012 -20121021_TEN@BUF,1,57,35,TEN,BUF,1,10,28,(12:35) C.Johnson right guard to BUF 26 for 2 yards (G.Wilson; K.Sheppard).,0,0,2012 -20121021_TEN@BUF,1,56,59,TEN,BUF,2,8,26,(11:59) (Shotgun) M.Hasselbeck pass short left to D.Reynaud to BUF 17 for 9 yards (J.Byrd). Screen pass caught at BUF 33.,0,0,2012 -20121021_TEN@BUF,1,56,29,TEN,BUF,1,10,17,(11:29) (No Huddle Shotgun) M.Hasselbeck pass short right to K.Britt to BUF 16 for 1 yard (B.Scott). Dump pass caught in flat at BUF 16.,0,0,2012 -20121021_TEN@BUF,1,55,45,TEN,BUF,2,9,16,(10:45) C.Johnson up the middle for 16 yards TOUCHDOWN. C.Johnson cut to right side near BUF 10 ran to right corner of end zone. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,0,2012 -20121021_TEN@BUF,1,55,45,TEN,BUF,,,16,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121021_TEN@BUF,1,55,45,TEN,BUF,,,16,R.Bironas kicks 62 yards from TEN 35 to BUF 3. L.McKelvin to BUF 32 for 29 yards (T.Thompson C.Sensabaugh). PENALTY on BUF-A.Carrington Unnecessary Roughness 15 yards enforced at BUF 32.,7,0,2012 -20121021_TEN@BUF,1,55,28,BUF,TEN,1,10,83,(10:28) (Shotgun) R.Fitzpatrick pass short left to F.Jackson pushed ob at BUF 26 for 9 yards (A.Verner). Screen pass caught at BUF 13.,0,7,2012 -20121021_TEN@BUF,1,54,58,BUF,TEN,2,1,74,(9:58) F.Jackson right guard to BUF 38 for 12 yards (R.Mouton J.Babineaux).,0,7,2012 -20121021_TEN@BUF,1,54,22,BUF,TEN,1,10,62,(9:22) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler [A.Ayers]. Thrown wide of receiver at BUF 37.,0,7,2012 -20121021_TEN@BUF,1,54,17,BUF,TEN,2,10,62,(9:17) (Shotgun) R.Fitzpatrick pass short right to St.Johnson pushed ob at 50 for 12 yards (J.McCourty) [D.Morgan]. Caught near sideline at 50.,0,7,2012 -20121021_TEN@BUF,1,53,45,BUF,TEN,1,10,50,(8:45) F.Jackson up the middle to TEN 41 for 9 yards (Z.Diles).,0,7,2012 -20121021_TEN@BUF,1,53,5,BUF,TEN,2,1,41,(8:05) PENALTY on TEN-D.Morgan Neutral Zone Infraction 5 yards enforced at TEN 41 - No Play.,0,7,2012 -20121021_TEN@BUF,1,52,47,BUF,TEN,1,10,36,(7:47) (Shotgun) C.Spiller up the middle to TEN 28 for 8 yards (R.Mouton Z.Diles). PENALTY on BUF-E.Pears Unnecessary Roughness 15 yards enforced at TEN 28.,0,7,2012 -20121021_TEN@BUF,1,52,14,BUF,TEN,2,17,43,(7:14) (Shotgun) R.Fitzpatrick scrambles left tackle to TEN 30 for 13 yards (A.Verner).,0,7,2012 -20121021_TEN@BUF,1,51,27,BUF,TEN,3,4,30,(6:27) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to TEN 24 for 6 yards (A.Verner R.Mouton). Caught in flat at TEN 25.,0,7,2012 -20121021_TEN@BUF,1,50,48,BUF,TEN,1,10,24,(5:48) (Shotgun) R.Fitzpatrick pass short right to C.Spiller pushed ob at TEN 26 for -2 yards (R.Mouton). TEN-Z.Diles was injured during the play. Screen pass caught at TEN 30. Z.Diles assisted off.,0,7,2012 -20121021_TEN@BUF,1,50,5,BUF,TEN,2,12,26,(5:05) Wildcat direct snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) B.Smith up the middle to TEN 24 for 2 yards (W.Witherspoon).,0,7,2012 -20121021_TEN@BUF,1,49,30,BUF,TEN,3,10,24,(4:30) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to TEN 4 for 20 yards (M.Griffin R.Mouton). Center screen caught at TEN 24.,0,7,2012 -20121021_TEN@BUF,1,48,47,BUF,TEN,1,4,4,(3:47) F.Jackson up the middle to TEN 3 for 1 yard (R.Mouton J.Casey).,0,7,2012 -20121021_TEN@BUF,1,48,6,BUF,TEN,2,3,3,(3:06) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson for 3 yards TOUCHDOWN. Center screen caught at TEN 4.,0,7,2012 -20121021_TEN@BUF,1,48,6,BUF,TEN,,,3,(Kick formation) PENALTY on BUF-Sp.Johnson False Start 5 yards enforced at TEN 2 - No Play.,0,7,2012 -20121021_TEN@BUF,1,48,6,BUF,TEN,,,3,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,0,7,2012 -20121021_TEN@BUF,1,48,6,BUF,TEN,,,3,R.Lindell kicks 64 yards from BUF 35 to TEN 1. D.Reynaud to TEN 17 for 16 yards (B.Scott).,7,7,2012 -20121021_TEN@BUF,1,47,55,TEN,BUF,1,10,83,(2:55) C.Johnson left guard for 83 yards TOUCHDOWN.,7,7,2012 -20121021_TEN@BUF,1,47,55,TEN,BUF,,,83,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,7,2012 -20121021_TEN@BUF,1,47,55,TEN,BUF,,,83,R.Bironas kicks 54 yards from TEN 35 to BUF 11. B.Smith for 89 yards TOUCHDOWN.,14,7,2012 -20121021_TEN@BUF,1,47,55,BUF,TEN,,,83,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,7,14,2012 -20121021_TEN@BUF,1,47,55,BUF,TEN,,,83,R.Lindell kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,14,14,2012 -20121021_TEN@BUF,1,47,31,TEN,BUF,1,10,80,(2:31) J.Harper left tackle to TEN 28 for 8 yards (G.Wilson).,14,14,2012 -20121021_TEN@BUF,1,46,49,TEN,BUF,2,2,72,(1:49) D.Reynaud left tackle to TEN 24 for -4 yards (K.Williams).,14,14,2012 -20121021_TEN@BUF,1,46,8,TEN,BUF,3,6,76,(1:08) (Shotgun) M.Hasselbeck pass short middle to J.Cook to TEN 32 for 8 yards (B.Scott). Post-pattern caught at TEN 32.,14,14,2012 -20121021_TEN@BUF,1,45,30,TEN,BUF,1,10,68,(:30) M.Hasselbeck pass incomplete short left to K.Britt (S.Gilmore). Receiver and coverage near sideline at TEN 38.,14,14,2012 -20121021_TEN@BUF,1,45,25,TEN,BUF,2,10,68,(:25) C.Johnson right tackle to TEN 33 for 1 yard (J.Byrd; B.Scott).,14,14,2012 -20121021_TEN@BUF,2,45,0,TEN,BUF,3,9,67,(15:00) (Shotgun) M.Hasselbeck pass short middle to D.Williams to BUF 48 for 19 yards (B.Scott). Caught at TEN 48.,14,14,2012 -20121021_TEN@BUF,2,44,14,TEN,BUF,1,10,48,(14:14) (Shotgun) M.Hasselbeck pass short right to K.Wright to BUF 44 for 4 yards (A.Williams). Caught near sideline at BUF 44.,14,14,2012 -20121021_TEN@BUF,2,43,36,TEN,BUF,2,6,44,(13:36) M.Hasselbeck pass incomplete short left to Q.Johnson. Dropped receiver in flat at BUF 44.,14,14,2012 -20121021_TEN@BUF,2,43,31,TEN,BUF,3,6,44,(13:31) (Shotgun) M.Hasselbeck pass short middle to J.Cook to BUF 15 for 29 yards (G.Wilson). Caught at BUF 32 crossing from left.,14,14,2012 -20121021_TEN@BUF,2,42,52,TEN,BUF,1,10,15,(12:52) C.Johnson left guard to BUF 11 for 4 yards (N.Barnett).,14,14,2012 -20121021_TEN@BUF,2,42,14,TEN,BUF,2,6,11,(12:14) C.Johnson up the middle to BUF 9 for 2 yards (C.Kelsay N.Barnett).,14,14,2012 -20121021_TEN@BUF,2,41,35,TEN,BUF,3,4,9,(11:35) M.Hasselbeck pass short right to K.Wright pushed ob at BUF 5 for 4 yards (N.Barnett). Caught in flat at BUF 11.,14,14,2012 -20121021_TEN@BUF,2,40,55,TEN,BUF,1,5,5,(10:55) C.Johnson up the middle to BUF 1 for 4 yards (K.Sheppard Sp.Johnson).,14,14,2012 -20121021_TEN@BUF,2,40,21,TEN,BUF,2,1,1,(10:21) J.Harper left guard for 1 yard TOUCHDOWN.,14,14,2012 -20121021_TEN@BUF,2,40,21,TEN,BUF,,,1,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,14,14,2012 -20121021_TEN@BUF,2,40,21,TEN,BUF,,,1,R.Bironas kicks 73 yards from TEN 35 to BUF -8. L.McKelvin Touchback.,21,14,2012 -20121021_TEN@BUF,2,40,18,BUF,TEN,1,10,80,(10:18) C.Spiller right tackle to BUF 30 for 10 yards (J.Babineaux; J.McCourty).,14,21,2012 -20121021_TEN@BUF,2,39,34,BUF,TEN,1,10,70,(9:34) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 36 for 6 yards (J.McCourty). WR screen caught at BUF 30.,14,21,2012 -20121021_TEN@BUF,2,38,51,BUF,TEN,2,4,64,(8:51) C.Spiller up the middle to BUF 40 for 4 yards (W.Witherspoon; Z.Brown).,14,21,2012 -20121021_TEN@BUF,2,38,10,BUF,TEN,1,10,60,(8:10) (Shotgun) C.Spiller up the middle to TEN 40 for 20 yards (M.Griffin).,14,21,2012 -20121021_TEN@BUF,2,37,27,BUF,TEN,1,10,40,(7:27) R.Fitzpatrick pass short middle to F.Jackson to TEN 33 for 7 yards (A.Ayers; J.McCourty). Center screen caught at TEN 43.,14,21,2012 -20121021_TEN@BUF,2,36,48,BUF,TEN,2,3,33,(6:48) F.Jackson left guard to TEN 21 for 12 yards (J.Babineaux K.Wimbley).,14,21,2012 -20121021_TEN@BUF,2,36,7,BUF,TEN,1,10,21,(6:07) Wildcat snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) C.Spiller right end to TEN 14 for 7 yards (R.Mouton D.Morgan).,14,21,2012 -20121021_TEN@BUF,2,35,26,BUF,TEN,2,3,14,(5:26) C.Spiller right guard to TEN 17 for -3 yards (K.Wimbley D.Morgan).,14,21,2012 -20121021_TEN@BUF,2,34,42,BUF,TEN,3,6,17,(4:42) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to TEN 12 for 5 yards (R.Mouton). Caught at TEN 12 crossed from right.,14,21,2012 -20121021_TEN@BUF,2,33,59,BUF,TEN,4,1,12,(3:59) R.Lindell 31 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,14,21,2012 -20121021_TEN@BUF,2,33,59,BUF,TEN,,,12,R.Lindell kicks 61 yards from BUF 35 to TEN 4. D.Reynaud to TEN 31 for 27 yards (K.Sheppard).,17,21,2012 -20121021_TEN@BUF,2,33,49,TEN,BUF,1,10,69,(3:49) M.Hasselbeck pass incomplete short middle to J.Cook [K.Williams]. Thrown under pressure wide of receiver at TEN 42 crossing from right.,21,17,2012 -20121021_TEN@BUF,2,33,44,TEN,BUF,2,10,69,(3:44) C.Johnson up the middle to BUF 44 for 25 yards (J.Rogers).,21,17,2012 -20121021_TEN@BUF,2,33,3,TEN,BUF,1,10,44,(3:03) J.Harper up the middle to BUF 43 for 1 yard (M.Dareus K.Sheppard).,21,17,2012 -20121021_TEN@BUF,2,32,24,TEN,BUF,2,9,43,(2:24) J.Harper up the middle to BUF 44 for -1 yards (K.Sheppard; K.Williams).,21,17,2012 -20121021_TEN@BUF,2,32,0,TEN,BUF,3,10,44,(2:00) (Shotgun) M.Hasselbeck pass incomplete deep middle to K.Britt. Overthrown receiver at BUF 15.,21,17,2012 -20121021_TEN@BUF,2,31,54,TEN,BUF,4,10,44,(1:54) B.Kern punts 31 yards to BUF 13 Center-B.Brinkley fair catch by L.McKelvin.,21,17,2012 -20121021_TEN@BUF,2,31,47,BUF,TEN,1,10,87,(1:47) (Shotgun) R.Fitzpatrick pass incomplete short right to F.Jackson. Dropped screen pass at BUF 7.,17,21,2012 -20121021_TEN@BUF,2,31,42,BUF,TEN,2,10,87,(1:42) (Shotgun) F.Jackson up the middle to BUF 21 for 8 yards (A.Ayers).,17,21,2012 -20121021_TEN@BUF,2,31,6,BUF,TEN,3,2,79,(1:06) (Shotgun) R.Fitzpatrick pass deep middle to St.Johnson to BUF 40 for 19 yards (M.Griffin). Caught at BUF 38 slanting from left. PENALTY on TEN-M.Griffin Unnecessary Roughness 15 yards enforced at BUF 40.,17,21,2012 -20121021_TEN@BUF,2,30,59,BUF,TEN,1,10,45,(:59) (Shotgun) R.Fitzpatrick pass incomplete short middle to F.Jackson (D.Morgan). Center screen batted at line.,17,21,2012 -20121021_TEN@BUF,2,30,56,BUF,TEN,2,10,45,(:56) (Shotgun) R.Fitzpatrick pass short right to T.Graham to TEN 39 for 6 yards (J.Babineaux). Caught at TEN 42 slanting to middle.,17,21,2012 -20121021_TEN@BUF,2,30,48,BUF,TEN,3,4,39,(:48) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to TEN 31 for 8 yards (T.Shaw). Caught in flat at TEN 34.,17,21,2012 -20121021_TEN@BUF,2,30,41,BUF,TEN,1,10,31,(:41) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson. Thrown wide of receiver at TEN 25.,17,21,2012 -20121021_TEN@BUF,2,30,38,BUF,TEN,2,10,31,(:38) (Shotgun) PENALTY on BUF-C.Hairston False Start 5 yards enforced at TEN 31 - No Play.,17,21,2012 -20121021_TEN@BUF,2,30,38,BUF,TEN,2,15,36,(:38) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to TEN 30 for 6 yards (J.Babineaux). Caught at TEN 31 slanting from right.,17,21,2012 -20121021_TEN@BUF,2,30,19,BUF,TEN,3,9,30,(:19) (No Huddle Shotgun) R.Fitzpatrick pass short left to F.Jackson to TEN 24 for 6 yards (A.Verner). Caught in flat at TEN 34.,17,21,2012 -20121021_TEN@BUF,2,30,2,BUF,TEN,4,3,24,(:02) R.Lindell 42 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,17,21,2012 -20121021_TEN@BUF,3,30,0,TEN,BUF,,,24,R.Bironas kicks 65 yards from TEN 35 to BUF 0. L.McKelvin to BUF 46 for 46 yards (R.Mouton).,21,20,2012 -20121021_TEN@BUF,3,29,51,BUF,TEN,1,10,54,(14:51) PENALTY on BUF-T.Graham False Start 5 yards enforced at BUF 46 - No Play.,20,21,2012 -20121021_TEN@BUF,3,29,51,BUF,TEN,1,15,59,(14:51) (Shotgun) R.Fitzpatrick sacked at BUF 32 for -9 yards (K.Wimbley). FUMBLES (K.Wimbley) RECOVERED by TEN-D.Morgan at BUF 32. D.Morgan to BUF 32 for no gain (C.Hairston).,20,21,2012 -20121021_TEN@BUF,3,29,43,TEN,BUF,1,10,32,(14:43) C.Johnson up the middle to BUF 31 for 1 yard (M.Williams K.Williams).,21,20,2012 -20121021_TEN@BUF,3,29,7,TEN,BUF,2,9,31,(14:07) M.Hasselbeck pass incomplete deep right to N.Washington (A.Williams). Receiver and coverage along sideline at BUF 4.,21,20,2012 -20121021_TEN@BUF,3,29,0,TEN,BUF,3,9,31,(14:00) (Shotgun) M.Hasselbeck pass short left to K.Wright to BUF 20 for 11 yards (G.Wilson). Screen pass caught at BUF 33.,21,20,2012 -20121021_TEN@BUF,3,28,27,TEN,BUF,1,10,20,(13:27) C.Johnson up the middle to BUF 21 for -1 yards (N.Barnett).,21,20,2012 -20121021_TEN@BUF,3,27,44,TEN,BUF,2,11,21,(12:44) (Shotgun) M.Hasselbeck pass short middle to D.Williams to BUF 10 for 11 yards (J.Rogers G.Wilson). Caught at BUF 12 slanting from right.,21,20,2012 -20121021_TEN@BUF,3,27,5,TEN,BUF,1,10,10,(12:05) C.Johnson left tackle pushed ob at BUF 1 for 9 yards (K.Sheppard).,21,20,2012 -20121021_TEN@BUF,3,26,55,TEN,BUF,2,1,1,(11:55) M.Hasselbeck pass incomplete short right to J.Cook. Overthrown receiver in rear corner of end zone. Pressure on QB: A.Carrington.,21,20,2012 -20121021_TEN@BUF,3,26,48,TEN,BUF,3,1,1,(11:48) J.Harper up the middle for 1 yard TOUCHDOWN.,21,20,2012 -20121021_TEN@BUF,3,26,48,TEN,BUF,,,1,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,21,20,2012 -20121021_TEN@BUF,3,26,48,TEN,BUF,,,1,R.Bironas kicks 51 yards from TEN 35 to BUF 14. B.Smith to BUF 34 for 20 yards (P.Bailey). TEN-P.Bailey was injured during the play.,28,20,2012 -20121021_TEN@BUF,3,26,38,BUF,TEN,1,10,66,(11:38) C.Spiller up the middle to BUF 36 for 2 yards (J.Babineaux J.Casey). BUF-C.Rinehart was injured during the play. C.Rinehart taken from field on cart.,20,28,2012 -20121021_TEN@BUF,3,26,5,BUF,TEN,2,8,64,(11:05) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 47 for 11 yards (J.Babineaux). Screen pass caught at BUF 34.,20,28,2012 -20121021_TEN@BUF,3,25,29,BUF,TEN,1,10,53,(10:29) R.Fitzpatrick pass deep right to D.Jones to TEN 33 for 20 yards (M.Griffin). Caught in flat at TEN 35.,20,28,2012 -20121021_TEN@BUF,3,24,51,BUF,TEN,1,10,33,(9:51) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to TEN 30 for 3 yards (A.Ayers). Dump pass caught at TEN 32.,20,28,2012 -20121021_TEN@BUF,3,24,12,BUF,TEN,2,7,30,(9:12) (Shotgun) C.Spiller up the middle to TEN 24 for 6 yards (M.Griffin K.Wimbley).,20,28,2012 -20121021_TEN@BUF,3,23,29,BUF,TEN,3,1,24,(8:29) R.Fitzpatrick pass short right to C.Spiller pushed ob at TEN 15 for 9 yards (T.Shaw). Dump pass caught at TEN 24.,20,28,2012 -20121021_TEN@BUF,3,22,56,BUF,TEN,1,10,15,(7:56) (Shotgun) R.Fitzpatrick pass short middle to D.Jones for 15 yards TOUCHDOWN [D.Morgan]. Caught at goal line slanting from right.,20,28,2012 -20121021_TEN@BUF,3,22,56,BUF,TEN,,,15,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,20,28,2012 -20121021_TEN@BUF,3,22,56,BUF,TEN,,,15,R.Lindell kicks 65 yards from BUF 35 to TEN 0. D.Reynaud to TEN 32 for 32 yards (N.Bradham A.Moats).,27,28,2012 -20121021_TEN@BUF,3,22,40,TEN,BUF,1,10,68,(7:40) C.Johnson right guard to TEN 40 for 8 yards (G.Wilson).,28,27,2012 -20121021_TEN@BUF,3,21,59,TEN,BUF,2,2,60,(6:59) C.Johnson right end to TEN 43 for 3 yards (N.Bradham).,28,27,2012 -20121021_TEN@BUF,3,21,17,TEN,BUF,1,10,57,(6:17) M.Hasselbeck sacked at TEN 39 for -4 yards (C.Kelsay).,28,27,2012 -20121021_TEN@BUF,3,20,36,TEN,BUF,2,14,61,(5:36) M.Hasselbeck pass incomplete deep middle to D.Williams. Underthrown receiver at BUF 23 slanting from right.,28,27,2012 -20121021_TEN@BUF,3,20,29,TEN,BUF,3,14,61,(5:29) (Shotgun) M.Hasselbeck pass short middle to K.Britt to TEN 43 for 4 yards (N.Barnett). Caught at TEN 43 crossing to right.,28,27,2012 -20121021_TEN@BUF,3,19,50,TEN,BUF,4,10,57,(4:50) B.Kern punts 57 yards to end zone Center-B.Brinkley Touchback. Kick into end zone.,28,27,2012 -20121021_TEN@BUF,3,19,41,BUF,TEN,1,10,80,(4:41) R.Fitzpatrick pass incomplete short middle to F.Jackson [S.Marks]. Underthrown under pressure receiver at BUF 20.,27,28,2012 -20121021_TEN@BUF,3,19,35,BUF,TEN,2,10,80,(4:35) F.Jackson right tackle to BUF 25 for 5 yards (J.Babineaux).,27,28,2012 -20121021_TEN@BUF,3,18,54,BUF,TEN,3,5,75,(3:54) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 32 for 7 yards (J.McCourty; J.Babineaux). Dump pass caught at BUF 22.,27,28,2012 -20121021_TEN@BUF,3,18,15,BUF,TEN,1,10,68,(3:15) (Shotgun) R.Fitzpatrick pass short right to S.Chandler pushed ob at BUF 45 for 13 yards (J.Babineaux). Caught at BUF 35 crossing from middle.,27,28,2012 -20121021_TEN@BUF,3,17,40,BUF,TEN,1,10,55,(2:40) F.Jackson up the middle to TEN 48 for 7 yards (J.McCourty A.Afalava).,27,28,2012 -20121021_TEN@BUF,3,17,3,BUF,TEN,2,3,48,(2:03) (Shotgun) F.Jackson up the middle to TEN 35 for 13 yards (M.Griffin).,27,28,2012 -20121021_TEN@BUF,3,16,20,BUF,TEN,1,10,35,(1:20) C.Spiller right tackle pushed ob at TEN 28 for 7 yards (A.Ayers).,27,28,2012 -20121021_TEN@BUF,3,15,57,BUF,TEN,2,3,28,(:57) C.Spiller up the middle to TEN 27 for 1 yard (A.Afalava T.Shaw).,27,28,2012 -20121021_TEN@BUF,3,15,10,BUF,TEN,3,2,27,(:10) (Shotgun) R.Fitzpatrick pass deep middle to St.Johnson for 27 yards TOUCHDOWN. Caught at TEN 9 slanting from right. Key block prior to pass: C.Spiller,27,28,2012 -20121021_TEN@BUF,3,15,10,BUF,TEN,,,27,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,27,28,2012 -20121021_TEN@BUF,3,15,10,BUF,TEN,,,27,R.Lindell kicks 64 yards from BUF 35 to TEN 1. D.Reynaud to TEN 23 for 22 yards (R.Martin).,34,28,2012 -20121021_TEN@BUF,4,15,0,TEN,BUF,1,10,77,(15:00) C.Johnson right guard to TEN 24 for 1 yard (K.Williams M.Williams).,28,34,2012 -20121021_TEN@BUF,4,14,22,TEN,BUF,2,9,76,(14:22) M.Hasselbeck pass short right to C.Johnson to TEN 27 for 3 yards (N.Bradham). Screen pass caught at TEN 20.,28,34,2012 -20121021_TEN@BUF,4,13,36,TEN,BUF,3,6,73,(13:36) (Shotgun) M.Hasselbeck pass short left to D.Williams to TEN 35 for 8 yards (S.Gilmore). Caught near sideline at TEN 34.,28,34,2012 -20121021_TEN@BUF,4,12,56,TEN,BUF,1,10,65,(12:56) C.Johnson right guard to TEN 40 for 5 yards (G.Wilson N.Bradham).,28,34,2012 -20121021_TEN@BUF,4,12,18,TEN,BUF,2,5,60,(12:18) C.Johnson left tackle to TEN 43 for 3 yards (K.Sheppard N.Barnett).,28,34,2012 -20121021_TEN@BUF,4,11,38,TEN,BUF,3,2,57,(11:38) (Shotgun) M.Hasselbeck pass short right to N.Washington pushed ob at TEN 47 for 4 yards (N.Bradham). Caught along sideline at TEN 47.,28,34,2012 -20121021_TEN@BUF,4,11,8,TEN,BUF,1,10,53,(11:08) J.Harper right guard to TEN 46 for -1 yards (A.Carrington N.Barnett).,28,34,2012 -20121021_TEN@BUF,4,10,33,TEN,BUF,2,11,54,(10:33) M.Hasselbeck pass incomplete short right to T.Thompson. Thrown away under pressure: K.Moore. Receiver near sideline at TEN 45.,28,34,2012 -20121021_TEN@BUF,4,10,29,TEN,BUF,3,11,54,(10:29) (Shotgun) PENALTY on TEN-M.Hasselbeck Delay of Game 5 yards enforced at TEN 46 - No Play.,28,34,2012 -20121021_TEN@BUF,4,10,24,TEN,BUF,3,16,59,(10:24) (Shotgun) M.Hasselbeck pass short middle to D.Reynaud to 50 for 9 yards (J.Byrd N.Barnett). Dump pass caught at TEN 47. Pressure on QB: K.Williams.,28,34,2012 -20121021_TEN@BUF,4,9,42,TEN,BUF,4,7,50,(9:42) B.Kern punts 36 yards to BUF 14 Center-B.Brinkley fair catch by L.McKelvin.,28,34,2012 -20121021_TEN@BUF,4,9,33,BUF,TEN,1,10,86,(9:33) (Shotgun) C.Spiller up the middle to BUF 22 for 8 yards (K.Wimbley).,34,28,2012 -20121021_TEN@BUF,4,8,52,BUF,TEN,2,2,78,(8:52) R.Fitzpatrick pass short left to St.Johnson to BUF 29 for 7 yards (Z.Brown). Caught in flat at BUF 28 slanting to middle.,34,28,2012 -20121021_TEN@BUF,4,8,11,BUF,TEN,1,10,71,(8:11) (Shotgun) C.Spiller left tackle to BUF 29 for no gain (K.Wimbley A.Afalava).,34,28,2012 -20121021_TEN@BUF,4,7,28,BUF,TEN,2,10,71,(7:28) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to BUF 45 for 16 yards (M.Griffin T.Shaw). Caught at BUF 40. PENALTY on BUF-E.Pears Offensive Holding 10 yards enforced at BUF 29 - No Play.,34,28,2012 -20121021_TEN@BUF,4,7,1,BUF,TEN,2,20,81,(7:01) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 14 for -5 yards (Z.Brown). Screen pass caught at BUF 13.,34,28,2012 -20121021_TEN@BUF,4,6,17,BUF,TEN,3,25,86,(6:17) (Shotgun) R.Fitzpatrick scrambles left guard to BUF 24 for 10 yards (J.Babineaux).,34,28,2012 -20121021_TEN@BUF,4,5,40,BUF,TEN,4,15,76,(5:40) S.Powell punts 22 yards to BUF 46 Center-G.Sanborn out of bounds.,34,28,2012 -20121021_TEN@BUF,4,5,33,TEN,BUF,1,10,46,(5:33) M.Hasselbeck pass incomplete short middle to K.Britt (A.Williams). Receiver and coverage at BUF 38. PENALTY on BUF-A.Williams Defensive Holding 5 yards enforced at BUF 46 - No Play.,28,34,2012 -20121021_TEN@BUF,4,5,28,TEN,BUF,1,10,41,(5:28) M.Hasselbeck pass short right to N.Washington to BUF 38 for 3 yards (K.Sheppard). Caught in flat at BUF 38.,28,34,2012 -20121021_TEN@BUF,4,4,49,TEN,BUF,2,7,38,(4:49) M.Hasselbeck pass incomplete short right to C.Johnson [K.Moore]. Thrown under pressure receiver along sideline at BUF 30.,28,34,2012 -20121021_TEN@BUF,4,4,41,TEN,BUF,3,7,38,(4:41) (Shotgun) M.Hasselbeck pass short middle to N.Washington to BUF 36 for 2 yards (J.Rogers). Caught at BUF 37 crossing from right.,28,34,2012 -20121021_TEN@BUF,4,3,58,TEN,BUF,4,5,36,(3:58) (Shotgun) M.Hasselbeck pass incomplete short middle to J.Cook (B.Scott). Receiver and coverage at BUF 30.,28,34,2012 -20121021_TEN@BUF,4,3,55,BUF,TEN,1,10,64,(3:55) (Shotgun) F.Jackson right guard to BUF 40 for 4 yards (A.Afalava D.Morgan).,34,28,2012 -20121021_TEN@BUF,4,3,12,BUF,TEN,2,6,60,(3:12) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 39 for -1 yards (T.Shaw). Screen pass caught at BUF 39.,34,28,2012 -20121021_TEN@BUF,4,3,3,BUF,TEN,3,7,61,(3:03) (Shotgun) R.Fitzpatrick pass short right intended for D.Jones INTERCEPTED by J.McCourty (D.Morgan) at TEN 48. J.McCourty to TEN 48 for no gain (D.Jones). D.Jones underthrown along sideline.,34,28,2012 -20121021_TEN@BUF,4,2,57,TEN,BUF,1,10,52,(2:57) (Shotgun) M.Hasselbeck sacked at TEN 40 for -8 yards (sack split by K.Williams and K.Moore).,28,34,2012 -20121021_TEN@BUF,4,2,34,TEN,BUF,2,18,60,(2:34) (No Huddle Shotgun) M.Hasselbeck pass short left to N.Washington to BUF 41 for 19 yards (J.Byrd). FUMBLES (J.Byrd) ball out of bounds at BUF 43. Caught in flat at TEN 48 fumbled after slanting toward sideline.,28,34,2012 -20121021_TEN@BUF,4,2,8,TEN,BUF,3,1,43,(2:08) C.Johnson up the middle pushed ob at BUF 16 for 27 yards (A.Williams).,28,34,2012 -20121021_TEN@BUF,4,2,2,TEN,BUF,1,10,16,(2:02) (Shotgun) J.Harper up the middle to BUF 17 for -1 yards (Sp.Johnson B.Scott).,28,34,2012 -20121021_TEN@BUF,4,1,57,TEN,BUF,2,11,17,(1:57) (Shotgun) M.Hasselbeck pass incomplete short middle to N.Washington (G.Wilson). Overthrown receiver and coverage at BUF 7. QB pressure: K.Williams.,28,34,2012 -20121021_TEN@BUF,4,1,51,TEN,BUF,3,11,17,(1:51) (Shotgun) M.Hasselbeck pass short left to N.Washington to BUF 15 for 2 yards (B.Scott). Caught near sideline at BUF 15.,28,34,2012 -20121021_TEN@BUF,4,1,8,TEN,BUF,4,9,15,(1:08) (Shotgun) M.Hasselbeck pass short middle to N.Washington for 15 yards TOUCHDOWN. Caught 7 yds. into end zone.,28,34,2012 -20121021_TEN@BUF,4,1,8,TEN,BUF,,,15,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,28,34,2012 -20121021_TEN@BUF,4,1,8,TEN,BUF,,,15,R.Bironas kicks 74 yards from TEN 35 to BUF -9. L.McKelvin Touchback.,35,34,2012 -20121021_TEN@BUF,4,1,3,BUF,TEN,1,10,80,(1:03) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to BUF 26 for 6 yards (A.Verner J.Babineaux). Dump pass caught at BUF 26.,34,35,2012 -20121021_TEN@BUF,4,0,43,BUF,TEN,2,4,74,(:43) (No Huddle Shotgun) R.Fitzpatrick pass short middle to S.Chandler to BUF 28 for 2 yards (M.Martin). Caught at BUF 28 crossing from right.,34,35,2012 -20121021_TEN@BUF,4,0,35,BUF,TEN,3,2,72,(:35) (Shotgun) R.Fitzpatrick pass incomplete deep middle to S.Chandler (J.Babineaux). Pass tipped at BUF 44 receiver at BUF 47.,34,35,2012 -20121021_TEN@BUF,4,0,31,BUF,TEN,4,2,72,(:31) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson [J.Babineaux]. Thrown wide of receiver along sideline at BUF 45.,34,35,2012 -20121021_TEN@BUF,4,0,26,TEN,BUF,1,10,28,(:26) M.Hasselbeck kneels to BUF 30 for -2 yards.,35,34,2012 -20121021_TEN@BUF,4,0,26,TEN,BUF,,,28,                      ,35,34,2012 -20121021_DAL@CAR,1,0,0,DAL,CAR,,,28,D.Bailey kicks 60 yards from DAL 35 to CAR 5 out of bounds.,0,0,2012 -20121021_DAL@CAR,1,58,51,CAR,DAL,4,7,57,(13:51) B.Nortman punts 46 yards to DAL 11 Center-J.Jansen. D.Bryant to DAL 21 for 10 yards (H.Nakamura). PENALTY on DAL-D.Bryant Unnecessary Roughness 10 yards enforced at DAL 21.,0,0,2012 -20121021_DAL@CAR,1,58,40,DAL,CAR,1,10,89,(13:40) F.Jones up the middle to DAL 12 for 1 yard (D.Edwards; R.Edwards).,0,0,2012 -20121021_DAL@CAR,1,58,7,DAL,CAR,2,9,88,(13:07) T.Romo pass short middle to F.Jones to DAL 17 for 5 yards (L.Kuechly).,0,0,2012 -20121021_DAL@CAR,1,57,30,DAL,CAR,3,4,83,(12:30) T.Romo pass short right to K.Ogletree to DAL 20 for 3 yards (J.Thomas).,0,0,2012 -20121021_DAL@CAR,1,56,51,DAL,CAR,4,1,80,(11:51) B.Moorman punts 47 yards to CAR 33 Center-L.Ladouceur. C.Munnerlyn to CAR 35 for 2 yards (E.Frampton). PENALTY on DAL-O.Lemon Offensive Holding 10 yards enforced at CAR 35.,0,0,2012 -20121021_DAL@CAR,1,56,42,CAR,DAL,1,10,55,(11:42) (Shotgun) C.Newton pass short left to S.Smith to DAL 39 for 16 yards (B.Carr).,0,0,2012 -20121021_DAL@CAR,1,56,0,CAR,DAL,1,10,39,(11:00) D.Williams left tackle to DAL 38 for 1 yard (A.Spencer).,0,0,2012 -20121021_DAL@CAR,1,55,18,CAR,DAL,2,10,38,(10:18) C.Newton sacked at DAL 45 for -7 yards (sack split by J.Hatcher and D.Ware).,0,0,2012 -20121021_DAL@CAR,1,54,39,CAR,DAL,3,16,45,(9:39) (Shotgun) C.Newton pass incomplete deep middle to L.Murphy (S.Lee).,0,0,2012 -20121021_DAL@CAR,1,54,33,CAR,DAL,4,17,45,(9:33) B.Nortman punts 37 yards to DAL 8 Center-J.Jansen fair catch by D.Harris.,0,0,2012 -20121021_DAL@CAR,1,54,26,DAL,CAR,1,10,92,(9:26) F.Jones right tackle to DAL 8 for no gain (D.Edwards).,0,0,2012 -20121021_DAL@CAR,1,53,53,DAL,CAR,2,10,92,(8:53) T.Romo pass short right to J.Witten to DAL 14 for 6 yards (J.Anderson).,0,0,2012 -20121021_DAL@CAR,1,53,9,DAL,CAR,3,4,86,(8:09) (Shotgun) T.Romo pass short left to J.Witten to DAL 25 for 11 yards (J.Norman).,0,0,2012 -20121021_DAL@CAR,1,52,37,DAL,CAR,1,10,75,(7:37) F.Jones up the middle to DAL 29 for 4 yards (L.Kuechly).,0,0,2012 -20121021_DAL@CAR,1,51,55,DAL,CAR,2,6,71,(6:55) T.Romo pass short right to L.Vickers ran ob at DAL 36 for 7 yards (J.Anderson).,0,0,2012 -20121021_DAL@CAR,1,51,29,DAL,CAR,1,10,64,(6:29) F.Jones left end to DAL 35 for -1 yards (H.Nakamura).,0,0,2012 -20121021_DAL@CAR,1,50,51,DAL,CAR,2,11,65,(5:51) (Shotgun) T.Romo pass short middle to J.Witten to DAL 40 for 5 yards (L.Kuechly).,0,0,2012 -20121021_DAL@CAR,1,50,8,DAL,CAR,3,6,60,(5:08) (Shotgun) T.Romo pass short middle to J.Witten to DAL 47 for 7 yards (C.Godfrey).,0,0,2012 -20121021_DAL@CAR,1,49,26,DAL,CAR,1,10,53,(4:26) T.Romo pass short left to M.Austin to CAR 39 for 14 yards (C.Godfrey).,0,0,2012 -20121021_DAL@CAR,1,48,37,DAL,CAR,1,10,39,(3:37) (Shotgun) F.Jones left guard to CAR 36 for 3 yards (R.Edwards).,0,0,2012 -20121021_DAL@CAR,1,47,58,DAL,CAR,2,7,36,(2:58) P.Tanner left guard to CAR 33 for 3 yards (L.Kuechly).,0,0,2012 -20121021_DAL@CAR,1,47,21,DAL,CAR,3,4,33,(2:21) (Shotgun) T.Romo pass short right to D.Bryant to CAR 24 for 9 yards (D.Edwards; L.Kuechly). Penalty on CAR-D.Edwards Defensive Holding declined.,0,0,2012 -20121021_DAL@CAR,1,46,54,DAL,CAR,1,10,24,(1:54) T.Romo pass incomplete short right to F.Jones.,0,0,2012 -20121021_DAL@CAR,1,46,50,DAL,CAR,2,10,24,(1:50) F.Jones right end to CAR 15 for 9 yards (S.Martin).,0,0,2012 -20121021_DAL@CAR,1,46,18,DAL,CAR,3,1,15,(1:18) F.Jones right guard to CAR 10 for 5 yards (L.Kuechly). PENALTY on CAR-S.Fua Defensive Offside 6 yards enforced at CAR 15 - No Play.,0,0,2012 -20121021_DAL@CAR,1,45,48,DAL,CAR,1,9,9,(:48) T.Romo pass incomplete short left to M.Austin.,0,0,2012 -20121021_DAL@CAR,1,45,44,DAL,CAR,2,9,9,(:44) P.Tanner left tackle to CAR 7 for 2 yards (T.Davis; C.Godfrey).,0,0,2012 -20121021_DAL@CAR,2,45,0,DAL,CAR,3,7,7,(15:00) (Shotgun) T.Romo pass short right to M.Austin to CAR 1 for 6 yards (T.Davis; L.Kuechly).,0,0,2012 -20121021_DAL@CAR,2,44,16,DAL,CAR,4,1,1,(14:16) D.Bailey 19 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121021_DAL@CAR,2,44,16,DAL,CAR,,,1,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,3,0,2012 -20121021_DAL@CAR,2,44,16,CAR,DAL,1,10,80,(14:16) J.Stewart right tackle to CAR 26 for 6 yards (B.Carter; A.Spencer).,0,3,2012 -20121021_DAL@CAR,2,43,32,CAR,DAL,2,4,74,(13:32) (Shotgun) M.Tolbert right guard to CAR 30 for 4 yards (D.Ware; J.Ratliff).,0,3,2012 -20121021_DAL@CAR,2,42,45,CAR,DAL,1,10,70,(12:45) (Shotgun) C.Newton pass short left to G.Olsen to CAR 44 for 14 yards (D.McCray).,0,3,2012 -20121021_DAL@CAR,2,42,5,CAR,DAL,1,10,56,(12:05) (Shotgun) J.Stewart left guard to 50 for 6 yards (S.Lee).,0,3,2012 -20121021_DAL@CAR,2,41,23,CAR,DAL,2,4,50,(11:23) C.Newton pass incomplete deep left to M.Tolbert. PENALTY on CAR-A.Silatolu Offensive Holding 10 yards enforced at 50 - No Play.,0,3,2012 -20121021_DAL@CAR,2,41,14,CAR,DAL,2,14,60,(11:14) C.Newton pass short left to S.Smith to DAL 49 for 11 yards (B.Carr).,0,3,2012 -20121021_DAL@CAR,2,40,34,CAR,DAL,3,3,49,(10:34) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at DAL 49 - No Play.,0,3,2012 -20121021_DAL@CAR,2,40,8,CAR,DAL,3,8,54,(10:08) (Shotgun) C.Newton scrambles right end ran ob at DAL 30 for 24 yards (A.Spencer).,0,3,2012 -20121021_DAL@CAR,2,39,32,CAR,DAL,1,10,30,(9:32) D.Williams left tackle to DAL 27 for 3 yards (D.Ware).,0,3,2012 -20121021_DAL@CAR,2,38,59,CAR,DAL,2,7,27,(8:59) (Shotgun) C.Newton left tackle to DAL 7 for 20 yards (D.McCray).,0,3,2012 -20121021_DAL@CAR,2,38,22,CAR,DAL,1,7,7,(8:22) (No Huddle Shotgun) J.Stewart left tackle to DAL 6 for 1 yard (S.Lee; D.Ware).,0,3,2012 -20121021_DAL@CAR,2,37,38,CAR,DAL,2,6,6,(7:38) (Shotgun) C.Newton pass short middle intended for L.Murphy INTERCEPTED by M.Claiborne [J.Price-Brent] at DAL -3. Touchback. Play Challenged by Replay Assistant and Upheld.,0,3,2012 -20121021_DAL@CAR,2,37,32,DAL,CAR,1,10,80,(7:32) F.Jones up the middle to DAL 29 for 9 yards (C.Johnson; G.Hardy).,3,0,2012 -20121021_DAL@CAR,2,36,55,DAL,CAR,2,1,71,(6:55) F.Jones up the middle to DAL 31 for 2 yards (T.Davis; L.Kuechly).,3,0,2012 -20121021_DAL@CAR,2,36,25,DAL,CAR,1,10,69,(6:25) T.Romo pass short left to K.Ogletree to DAL 41 for 10 yards (J.Norman).,3,0,2012 -20121021_DAL@CAR,2,35,46,DAL,CAR,1,10,59,(5:46) F.Jones left guard to 50 for 9 yards (T.Davis).,3,0,2012 -20121021_DAL@CAR,2,35,10,DAL,CAR,2,1,50,(5:10) P.Tanner left guard to CAR 48 for 2 yards (L.Kuechly).,3,0,2012 -20121021_DAL@CAR,2,34,33,DAL,CAR,1,10,48,(4:33) T.Romo pass incomplete deep middle to M.Austin.,3,0,2012 -20121021_DAL@CAR,2,34,27,DAL,CAR,2,10,48,(4:27) (Shotgun) T.Romo pass short left to M.Austin to CAR 33 for 15 yards (T.Davis). FUMBLES (T.Davis) RECOVERED by CAR-L.Kuechly at CAR 26. L.Kuechly to CAR 37 for 11 yards (D.Bryant). DAL-P.Costa was injured during the play. His return is Doubtful. PENALTY on CAR-C.Godfrey Personal Foul 15 yards enforced at CAR 35.,3,0,2012 -20121021_DAL@CAR,2,34,14,CAR,DAL,1,10,80,(4:14) C.Newton pass short right to J.Stewart to CAR 29 for 9 yards (J.Ratliff; D.McCray).,0,3,2012 -20121021_DAL@CAR,2,33,34,CAR,DAL,2,1,71,(3:34) (Shotgun) C.Newton up the middle to CAR 32 for 3 yards (S.Lee).,0,3,2012 -20121021_DAL@CAR,2,32,54,CAR,DAL,1,10,68,(2:54) C.Newton pass short left to J.Stewart to CAR 35 for 3 yards (B.Carter).,0,3,2012 -20121021_DAL@CAR,2,32,11,CAR,DAL,2,7,65,(2:11) (Shotgun) C.Newton scrambles right guard to 50 for 15 yards (S.Lee).,0,3,2012 -20121021_DAL@CAR,2,32,0,CAR,DAL,1,10,50,(2:00) (Shotgun) C.Newton pass short left to B.LaFell to DAL 18 for 32 yards (G.Sensabaugh).,0,3,2012 -20121021_DAL@CAR,2,31,51,CAR,DAL,1,10,18,(1:51) (Shotgun) C.Newton up the middle to DAL 16 for 2 yards (M.Spears).,0,3,2012 -20121021_DAL@CAR,2,31,14,CAR,DAL,2,8,16,(1:14) (Shotgun) C.Newton pass short right to L.Murphy to DAL 5 for 11 yards (M.Claiborne; D.McCray).,0,3,2012 -20121021_DAL@CAR,2,30,32,CAR,DAL,1,5,5,(:32) (Shotgun) J.Stewart left end to DAL 5 for no gain (O.Scandrick; K.Coleman).,0,3,2012 -20121021_DAL@CAR,2,30,24,CAR,DAL,2,5,5,(:24) (Shotgun) C.Newton pass incomplete short right to J.Stewart.,0,3,2012 -20121021_DAL@CAR,2,30,21,CAR,DAL,3,5,5,(:21) (Shotgun) C.Newton pass short left to B.LaFell for 5 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,3,2012 -20121021_DAL@CAR,2,30,21,CAR,DAL,,,5,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,3,2012 -20121021_DAL@CAR,2,30,21,CAR,DAL,,,5,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,3,2012 -20121021_DAL@CAR,2,30,14,DAL,CAR,1,10,80,(:14) T.Romo kneels to DAL 19 for -1 yards.,3,7,2012 -20121021_DAL@CAR,3,30,0,CAR,DAL,,,80,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback. CAR-A.Applewhite was injured during the play. His return is Probable.,7,3,2012 -20121021_DAL@CAR,3,30,0,DAL,CAR,1,10,80,(15:00) T.Romo pass short middle to F.Jones to DAL 25 for 5 yards (J.Anderson).,3,7,2012 -20121021_DAL@CAR,3,29,30,DAL,CAR,2,5,75,(14:30) F.Jones left end to DAL 28 for 3 yards (L.Kuechly).,3,7,2012 -20121021_DAL@CAR,3,28,50,DAL,CAR,3,2,72,(13:50) (Shotgun) T.Romo pass short right to D.Bryant to DAL 33 for 5 yards (J.Thomas).,3,7,2012 -20121021_DAL@CAR,3,28,19,DAL,CAR,1,10,67,(13:19) F.Jones up the middle to DAL 34 for 1 yard (J.Anderson; S.Fua).,3,7,2012 -20121021_DAL@CAR,3,27,35,DAL,CAR,2,9,66,(12:35) (Shotgun) T.Romo pass incomplete short right to M.Austin.,3,7,2012 -20121021_DAL@CAR,3,27,30,DAL,CAR,3,9,66,(12:30) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 37 for 3 yards (J.Norman).,3,7,2012 -20121021_DAL@CAR,3,26,44,DAL,CAR,4,6,63,(11:44) B.Moorman punts 49 yards to CAR 14 Center-L.Ladouceur. C.Munnerlyn to CAR 15 for 1 yard (E.Frampton).,3,7,2012 -20121021_DAL@CAR,3,26,44,CAR,DAL,1,10,85,(11:44) C.Newton pass short right to B.LaFell to CAR 25 for 10 yards (S.Lee; B.Carter).,7,3,2012 -20121021_DAL@CAR,3,26,6,CAR,DAL,1,10,75,(11:06) (Shotgun) J.Stewart left tackle to CAR 22 for -3 yards (D.Ware).,7,3,2012 -20121021_DAL@CAR,3,25,26,CAR,DAL,2,13,78,(10:26) C.Newton pass incomplete deep right to B.LaFell (M.Claiborne) [J.Ratliff].,7,3,2012 -20121021_DAL@CAR,3,25,19,CAR,DAL,3,13,78,(10:19) (Shotgun) C.Newton pass short left to S.Smith to CAR 34 for 12 yards (B.Carr).,7,3,2012 -20121021_DAL@CAR,3,24,32,CAR,DAL,4,1,66,(9:32) B.Nortman punts 29 yards to DAL 37 Center-J.Jansen out of bounds.,7,3,2012 -20121021_DAL@CAR,3,24,32,DAL,CAR,1,10,63,(9:32) F.Jones right end to DAL 41 for 4 yards (L.Kuechly). PENALTY on DAL-J.Witten Offensive Holding 10 yards enforced at DAL 37 - No Play.,3,7,2012 -20121021_DAL@CAR,3,24,6,DAL,CAR,1,20,73,(9:06) (Shotgun) T.Romo pass incomplete short right to K.Ogletree.,3,7,2012 -20121021_DAL@CAR,3,23,58,DAL,CAR,2,20,73,(8:58) (Shotgun) T.Romo pass short right to K.Ogletree to DAL 38 for 11 yards (J.Thomas).,3,7,2012 -20121021_DAL@CAR,3,23,28,DAL,CAR,3,9,62,(8:28) (Shotgun) T.Romo pass short middle to M.Austin to CAR 26 for 36 yards (C.Munnerlyn).,3,7,2012 -20121021_DAL@CAR,3,22,44,DAL,CAR,1,10,26,(7:44) T.Romo pass deep left to M.Austin for 26 yards TOUCHDOWN. Play Challenged by Replay Assistant and Upheld.,3,7,2012 -20121021_DAL@CAR,3,22,44,DAL,CAR,,,26,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,7,2012 -20121021_DAL@CAR,3,22,44,DAL,CAR,,,26,D.Bailey kicks 70 yards from DAL 35 to CAR -5. K.Pilares to CAR 16 for 21 yards (G.Sensabaugh).,10,7,2012 -20121021_DAL@CAR,3,22,38,CAR,DAL,1,10,84,(7:38) (Shotgun) J.Stewart up the middle to CAR 16 for no gain (J.Price-Brent).,7,10,2012 -20121021_DAL@CAR,3,22,38,CAR,DAL,2,10,84,(7:38) J.Stewart up the middle to CAR 16 for no gain (A.Spencer; D.Ware).,7,10,2012 -20121021_DAL@CAR,3,21,18,CAR,DAL,3,10,84,(6:18) (Shotgun) PENALTY on CAR-J.Gross False Start 5 yards enforced at CAR 16 - No Play.,7,10,2012 -20121021_DAL@CAR,3,21,0,CAR,DAL,3,15,89,(6:00) (Shotgun) C.Newton pass incomplete deep right to L.Murphy.,7,10,2012 -20121021_DAL@CAR,3,20,53,CAR,DAL,4,15,89,(5:53) B.Nortman punts 39 yards to 50 Center-J.Jansen. D.Bryant to CAR 40 for 10 yards (J.Phillips).,7,10,2012 -20121021_DAL@CAR,3,20,40,DAL,CAR,1,10,40,(5:40) T.Romo pass short middle to F.Jones to CAR 37 for 3 yards (T.Davis).,10,7,2012 -20121021_DAL@CAR,3,20,1,DAL,CAR,2,7,37,(5:01) P.Tanner left end to CAR 37 for no gain (D.Edwards).,10,7,2012 -20121021_DAL@CAR,3,19,14,DAL,CAR,3,7,37,(4:14) (Shotgun) T.Romo pass incomplete short right to J.Witten [G.Hardy]. PENALTY on CAR-J.Thomas Defensive Holding 5 yards enforced at CAR 37 - No Play.,10,7,2012 -20121021_DAL@CAR,3,19,7,DAL,CAR,1,10,32,(4:07) P.Tanner up the middle to CAR 30 for 2 yards (L.Kuechly; S.Fua).,10,7,2012 -20121021_DAL@CAR,3,18,31,DAL,CAR,2,8,30,(3:31) (Shotgun) T.Romo pass short right to J.Witten to CAR 26 for 4 yards (L.Kuechly).,10,7,2012 -20121021_DAL@CAR,3,17,46,DAL,CAR,3,4,26,(2:46) (Shotgun) PENALTY on DAL-D.Free False Start 5 yards enforced at CAR 26 - No Play.,10,7,2012 -20121021_DAL@CAR,3,17,22,DAL,CAR,3,9,31,(2:22) (Shotgun) T.Romo pass incomplete short left to J.Witten.,10,7,2012 -20121021_DAL@CAR,3,17,17,DAL,CAR,4,9,31,(2:17) D.Bailey 49 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,7,2012 -20121021_DAL@CAR,3,17,17,DAL,CAR,,,31,D.Bailey kicks 71 yards from DAL 35 to CAR -6. K.Pilares to CAR 21 for 27 yards (V.Butler; G.Sensabaugh).,13,7,2012 -20121021_DAL@CAR,3,17,6,CAR,DAL,1,10,79,(2:06) C.Newton pass short left to B.LaFell to CAR 27 for 6 yards (M.Claiborne).,7,13,2012 -20121021_DAL@CAR,3,16,45,CAR,DAL,2,4,73,(1:45) (Shotgun) M.Tolbert up the middle to CAR 30 for 3 yards (J.Hatcher).,7,13,2012 -20121021_DAL@CAR,3,16,8,CAR,DAL,3,1,70,(1:08) (Shotgun) C.Newton left tackle to CAR 30 for no gain (D.Connor; G.Sensabaugh).,7,13,2012 -20121021_DAL@CAR,3,15,26,CAR,DAL,4,1,70,(:26) B.Nortman punts 55 yards to DAL 15 Center-J.Jansen. D.Bryant to DAL 12 for -3 yards (C.Jones).,7,13,2012 -20121021_DAL@CAR,3,15,12,DAL,CAR,1,10,88,(:12) F.Jones left end to DAL 10 for -2 yards (J.Anderson; J.Norman).,13,7,2012 -20121021_DAL@CAR,4,15,0,DAL,CAR,2,12,90,(15:00) (Shotgun) T.Romo pass short middle to F.Jones to DAL 20 for 10 yards (L.Kuechly).,13,7,2012 -20121021_DAL@CAR,4,14,14,DAL,CAR,3,2,80,(14:14) (Shotgun) T.Romo pass incomplete short middle to J.Witten (J.Anderson).,13,7,2012 -20121021_DAL@CAR,4,14,10,DAL,CAR,4,2,80,(14:10) B.Moorman punts 59 yards to CAR 21 Center-L.Ladouceur. C.Munnerlyn to CAR 25 for 4 yards (E.Frampton).,13,7,2012 -20121021_DAL@CAR,4,13,58,CAR,DAL,1,10,75,(13:58) (Shotgun) C.Newton pass short left to S.Smith to CAR 34 for 9 yards (B.Carr).,7,13,2012 -20121021_DAL@CAR,4,13,36,CAR,DAL,2,1,66,(13:36) (No Huddle Shotgun) J.Stewart up the middle to DAL 46 for 20 yards (G.Sensabaugh).,7,13,2012 -20121021_DAL@CAR,4,13,13,CAR,DAL,1,10,46,(13:13) (No Huddle Shotgun) J.Stewart right guard to DAL 45 for 1 yard (A.Spencer; D.Ware).,7,13,2012 -20121021_DAL@CAR,4,12,46,CAR,DAL,2,9,45,(12:46) (No Huddle Shotgun) C.Newton pass short right to L.Murphy to DAL 19 for 26 yards (B.Carr).,7,13,2012 -20121021_DAL@CAR,4,12,22,CAR,DAL,1,10,19,(12:22) (No Huddle Shotgun) C.Newton pass incomplete short left to S.Smith (D.Connor).,7,13,2012 -20121021_DAL@CAR,4,12,19,CAR,DAL,2,10,19,(12:19) C.Newton pass short left to G.Olsen to DAL 10 for 9 yards. PENALTY on DAL-J.Ratliff Personal Foul 5 yards enforced at DAL 10.,7,13,2012 -20121021_DAL@CAR,4,11,59,CAR,DAL,1,5,5,(11:59) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,7,13,2012 -20121021_DAL@CAR,4,11,53,CAR,DAL,2,5,5,(11:53) (Shotgun) C.Newton pass incomplete short left to L.Murphy.,7,13,2012 -20121021_DAL@CAR,4,11,49,CAR,DAL,3,5,5,(11:49) (Shotgun) C.Newton pass incomplete short left to G.Olsen. PENALTY on DAL-B.Carr Defensive Holding 3 yards enforced at DAL 5 - No Play.,7,13,2012 -20121021_DAL@CAR,4,11,43,CAR,DAL,1,2,2,(11:43) (Shotgun) M.Tolbert left guard for 2 yards TOUCHDOWN.,7,13,2012 -20121021_DAL@CAR,4,11,43,CAR,DAL,,,2,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,13,2012 -20121021_DAL@CAR,4,11,43,CAR,DAL,,,2,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,14,13,2012 -20121021_DAL@CAR,4,11,38,DAL,CAR,1,10,80,(11:38) T.Romo pass short middle to F.Jones to DAL 27 for 7 yards (J.Anderson).,13,14,2012 -20121021_DAL@CAR,4,11,3,DAL,CAR,2,3,73,(11:03) P.Tanner right end to DAL 31 for 4 yards (C.Godfrey).,13,14,2012 -20121021_DAL@CAR,4,10,26,DAL,CAR,1,10,69,(10:26) P.Tanner left guard to DAL 35 for 4 yards (C.Godfrey).,13,14,2012 -20121021_DAL@CAR,4,9,50,DAL,CAR,2,6,65,(9:50) (Shotgun) T.Romo pass incomplete short right to K.Ogletree.,13,14,2012 -20121021_DAL@CAR,4,9,45,DAL,CAR,3,6,65,(9:45) (Shotgun) T.Romo scrambles right end to DAL 37 for 2 yards (J.Thomas).,13,14,2012 -20121021_DAL@CAR,4,9,4,DAL,CAR,4,4,63,(9:04) B.Moorman punts 42 yards to CAR 21 Center-L.Ladouceur. C.Munnerlyn to CAR 18 for -3 yards (L.Dunbar).,13,14,2012 -20121021_DAL@CAR,4,8,54,CAR,DAL,1,10,82,(8:54) (Shotgun) C.Newton pass incomplete short middle to M.Tolbert.,14,13,2012 -20121021_DAL@CAR,4,8,50,CAR,DAL,2,10,82,(8:50) (Shotgun) C.Newton pass short right to G.Olsen to CAR 22 for 4 yards (O.Scandrick; D.Connor).,14,13,2012 -20121021_DAL@CAR,4,8,50,CAR,DAL,3,6,78,(8:50) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 22 - No Play.,14,13,2012 -20121021_DAL@CAR,4,7,47,CAR,DAL,3,11,83,(7:47) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,14,13,2012 -20121021_DAL@CAR,4,7,41,CAR,DAL,4,11,83,(7:41) B.Nortman punts 42 yards to DAL 41 Center-J.Jansen fair catch by D.Bryant. PENALTY on CAR-C.Jones Player Out of Bounds on Punt 5 yards enforced at DAL 41.,14,13,2012 -20121021_DAL@CAR,4,7,32,DAL,CAR,1,10,54,(7:32) F.Jones left guard to CAR 49 for 5 yards (C.Johnson).,13,14,2012 -20121021_DAL@CAR,4,6,55,DAL,CAR,2,5,49,(6:55) T.Romo pass incomplete short right to M.Austin.,13,14,2012 -20121021_DAL@CAR,4,6,47,DAL,CAR,3,5,49,(6:47) (Shotgun) T.Romo pass short middle to P.Tanner to CAR 41 for 8 yards (T.Davis).,13,14,2012 -20121021_DAL@CAR,4,6,4,DAL,CAR,1,10,41,(6:04) T.Romo scrambles up the middle to CAR 31 for 10 yards (J.Anderson).,13,14,2012 -20121021_DAL@CAR,4,5,16,DAL,CAR,1,10,31,(5:16) P.Tanner right end to CAR 27 for 4 yards (J.Anderson; L.Kuechly).,13,14,2012 -20121021_DAL@CAR,4,4,33,DAL,CAR,2,6,27,(4:33) T.Romo pass short left to J.Witten to CAR 16 for 11 yards (T.Davis).,13,14,2012 -20121021_DAL@CAR,4,4,25,DAL,CAR,1,10,16,(4:25) F.Jones right guard to CAR 15 for 1 yard (G.Hardy).,13,14,2012 -20121021_DAL@CAR,4,3,43,DAL,CAR,2,9,15,(3:43) (Shotgun) T.Romo pass incomplete short right to D.Bryant.,13,14,2012 -20121021_DAL@CAR,4,3,39,DAL,CAR,3,9,15,(3:39) P.Tanner up the middle to CAR 10 for 5 yards (D.Edwards; T.Davis).,13,14,2012 -20121021_DAL@CAR,4,3,28,DAL,CAR,4,4,10,(3:28) D.Bailey 28 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,13,14,2012 -20121021_DAL@CAR,4,3,28,DAL,CAR,,,10,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,16,14,2012 -20121021_DAL@CAR,4,3,25,CAR,DAL,1,10,80,(3:25) (Shotgun) C.Newton pass short left to L.Murphy to CAR 31 for 11 yards.,14,16,2012 -20121021_DAL@CAR,4,3,20,CAR,DAL,1,10,69,(3:20) (Shotgun) C.Newton pass short middle to J.Stewart to CAR 30 for -1 yards (B.Carter).,14,16,2012 -20121021_DAL@CAR,4,2,47,CAR,DAL,2,11,70,(2:47) (Shotgun) C.Newton pass incomplete short right to L.Murphy (J.Ratliff).,14,16,2012 -20121021_DAL@CAR,4,2,45,CAR,DAL,3,11,70,(2:45) (Shotgun) C.Newton pass short middle to S.Smith to CAR 40 for 10 yards (O.Scandrick).,14,16,2012 -20121021_DAL@CAR,4,2,11,CAR,DAL,4,1,60,(2:11) (Shotgun) C.Newton pass incomplete short right to L.Murphy.,14,16,2012 -20121021_DAL@CAR,4,2,8,DAL,CAR,1,10,39,(2:08) F.Jones left guard to CAR 39 for no gain (J.Anderson; L.Kuechly).,16,14,2012 -20121021_DAL@CAR,4,2,0,DAL,CAR,2,10,39,(2:00) P.Tanner left end to CAR 39 for no gain (J.Anderson). PENALTY on CAR-J.Anderson Horse Collar Tackle 15 yards enforced at CAR 39.,16,14,2012 -20121021_DAL@CAR,4,1,53,DAL,CAR,1,10,24,(1:53) P.Tanner right tackle to CAR 23 for 1 yard (J.Anderson; L.Kuechly).,16,14,2012 -20121021_DAL@CAR,4,1,49,DAL,CAR,2,9,23,(1:49) P.Tanner right tackle to CAR 18 for 5 yards (H.Nakamura; T.Davis).,16,14,2012 -20121021_DAL@CAR,4,1,43,DAL,CAR,3,4,18,(1:43) P.Tanner right guard to CAR 20 for -2 yards (J.Anderson).,16,14,2012 -20121021_DAL@CAR,4,0,58,DAL,CAR,4,6,20,(:58) D.Bailey 38 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,16,14,2012 -20121021_DAL@CAR,4,0,58,DAL,CAR,,,20,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,19,14,2012 -20121021_DAL@CAR,4,0,53,CAR,DAL,1,10,80,(:53) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,14,19,2012 -20121021_DAL@CAR,4,0,49,CAR,DAL,2,10,80,(:49) (Shotgun) C.Newton pass deep left to S.Smith to CAR 46 for 26 yards (B.Carter).,14,19,2012 -20121021_DAL@CAR,4,0,49,CAR,DAL,1,10,54,(:49) (No Huddle) C.Newton spiked the ball to stop the clock.,14,19,2012 -20121021_DAL@CAR,4,0,31,CAR,DAL,2,10,54,(:31) (Shotgun) C.Newton pass incomplete deep right to B.LaFell.,14,19,2012 -20121021_DAL@CAR,4,0,24,CAR,DAL,3,10,54,(:24) (Shotgun) C.Newton sacked at CAR 36 for -10 yards (A.Spencer).,14,19,2012 -20121021_DAL@CAR,4,0,3,CAR,DAL,4,20,64,(:03) (Shotgun) C.Newton pass short right to G.Olsen to CAR 40 for 4 yards. Lateral to J.Gross to CAR 41 for 1 yard. Lateral to C.Newton to CAR 48 for 7 yards. FUMBLES RECOVERED by DAL-D.Ware at CAR 47. D.Ware to CAR 47 for no gain (B.Bell).,14,19,2012 -20121021_DAL@CAR,4,0,3,CAR,DAL,,,64,                      ,14,19,2012 -20121021_BAL@HOU,1,0,0,BAL,HOU,,,64,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20121021_BAL@HOU,1,60,0,HOU,BAL,1,10,80,(15:00) A.Foster left tackle to HST 23 for 3 yards (J.McClain; H.Ngata).,0,0,2012 -20121021_BAL@HOU,1,59,31,HOU,BAL,2,7,77,(14:31) A.Foster left tackle to HST 27 for 4 yards (T.Cody).,0,0,2012 -20121021_BAL@HOU,1,58,54,HOU,BAL,3,3,73,(13:54) (Shotgun) M.Schaub pass incomplete short middle to A.Foster (D.Ellerbe).,0,0,2012 -20121021_BAL@HOU,1,58,49,HOU,BAL,4,3,73,(13:49) D.Jones punts 51 yards to BLT 22 Center-J.Weeks out of bounds. (The punt hang time was 4.4 seconds.),0,0,2012 -20121021_BAL@HOU,1,58,38,BAL,HOU,1,10,78,(13:38) R.Rice up the middle to BLT 30 for 8 yards (K.Jackson).,0,0,2012 -20121021_BAL@HOU,1,58,17,BAL,HOU,2,2,70,(13:17) R.Rice up the middle to BLT 32 for 2 yards (A.Smith).,0,0,2012 -20121021_BAL@HOU,1,57,40,BAL,HOU,1,10,68,(12:40) (Shotgun) J.Flacco pass short middle to T.Smith to BLT 45 for 13 yards (J.Joseph) [J.Watt].,0,0,2012 -20121021_BAL@HOU,1,57,10,BAL,HOU,1,10,55,(12:10) R.Rice right tackle pushed ob at HST 38 for 17 yards (G.Quin).,0,0,2012 -20121021_BAL@HOU,1,56,46,BAL,HOU,1,10,38,(11:46) (Shotgun) J.Flacco pass short left to E.Dickson to HST 33 for 5 yards (B.James).,0,0,2012 -20121021_BAL@HOU,1,56,13,BAL,HOU,2,5,33,(11:13) (Shotgun) J.Flacco pass incomplete short left to T.Smith [C.Barwin].,0,0,2012 -20121021_BAL@HOU,1,56,7,BAL,HOU,3,5,33,(11:07) (Shotgun) J.Flacco pass incomplete short left to D.Pitta (G.Quin).,0,0,2012 -20121021_BAL@HOU,1,56,1,BAL,HOU,4,5,33,(11:01) J.Tucker 51 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121021_BAL@HOU,1,56,1,BAL,HOU,,,33,J.Tucker kicks 72 yards from BLT 35 to HST -7. K.Martin Touchback.,3,0,2012 -20121021_BAL@HOU,1,55,57,HOU,BAL,1,10,80,(10:57) B.Tate right tackle to HST 21 for 1 yard (D.Ellerbe).,0,3,2012 -20121021_BAL@HOU,1,55,21,HOU,BAL,2,9,79,(10:21) B.Tate up the middle to HST 25 for 4 yards (D.Ellerbe).,0,3,2012 -20121021_BAL@HOU,1,54,41,HOU,BAL,3,5,75,(9:41) (Shotgun) M.Schaub pass incomplete short right to A.Foster.,0,3,2012 -20121021_BAL@HOU,1,54,35,HOU,BAL,4,5,75,(9:35) D.Jones punts 50 yards to BLT 25 Center-J.Weeks fair catch by J.Jones. (The punt hang time was 4.8 seconds.),0,3,2012 -20121021_BAL@HOU,1,54,25,BAL,HOU,1,10,75,(9:25) (Shotgun) J.Flacco pass short right to T.Smith to BLT 32 for 7 yards (J.Joseph).,3,0,2012 -20121021_BAL@HOU,1,54,4,BAL,HOU,2,3,68,(9:04) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,3,0,2012 -20121021_BAL@HOU,1,53,59,BAL,HOU,3,3,68,(8:59) (Shotgun) J.Flacco pass incomplete short left to E.Dickson (T.Dobbins).,3,0,2012 -20121021_BAL@HOU,1,53,54,BAL,HOU,4,3,68,(8:54) S.Koch punts 46 yards to HST 22 Center-M.Cox out of bounds.,3,0,2012 -20121021_BAL@HOU,1,53,46,HOU,BAL,1,10,78,(8:46) M.Schaub pass short right to K.Walter ran ob at HST 30 for 8 yards.,0,3,2012 -20121021_BAL@HOU,1,53,25,HOU,BAL,2,2,70,(8:25) M.Schaub pass short left to A.Johnson to HST 35 for 5 yards (C.Williams).,0,3,2012 -20121021_BAL@HOU,1,52,51,HOU,BAL,1,10,65,(7:51) M.Schaub sacked at HST 27 for -8 yards (T.Suggs).,0,3,2012 -20121021_BAL@HOU,1,52,17,HOU,BAL,2,18,73,(7:17) M.Schaub pass incomplete short middle to O.Daniels.,0,3,2012 -20121021_BAL@HOU,1,52,9,HOU,BAL,3,18,73,(7:09) (Shotgun) A.Foster up the middle to HST 35 for 8 yards (T.Suggs).,0,3,2012 -20121021_BAL@HOU,1,51,28,HOU,BAL,4,10,65,(6:28) D.Jones punts 62 yards to BLT 3 Center-J.Weeks downed by HST-W.Mercilus. (The punt hang time was 4.4 seconds.),0,3,2012 -20121021_BAL@HOU,1,51,14,BAL,HOU,1,10,97,(6:14) V.Leach up the middle to BLT 9 for 6 yards (D.Manning).,3,0,2012 -20121021_BAL@HOU,1,50,38,BAL,HOU,2,4,91,(5:38) J.Flacco sacked at BLT 5 for -4 yards (W.Mercilus). FUMBLES (W.Mercilus) recovered by BLT-M.Birk at BLT 7. M.Birk to BLT 7 for no gain (C.Barwin).,3,0,2012 -20121021_BAL@HOU,1,49,54,BAL,HOU,3,6,93,(4:54) (Shotgun) J.Flacco sacked in End Zone for -7 yards SAFETY (C.Barwin).,3,0,2012 -20121021_BAL@HOU,1,49,54,BAL,HOU,,,93,S.Koch kicks 64 yards from BLT 20 to HST 16. K.Martin to HST 33 for 17 yards (C.Brown).,3,2,2012 -20121021_BAL@HOU,1,49,43,HOU,BAL,1,10,67,(4:43) A.Foster right guard to HST 40 for 7 yards (J.McClain).,2,3,2012 -20121021_BAL@HOU,1,49,10,HOU,BAL,2,3,60,(4:10) A.Foster right end pushed ob at HST 45 for 5 yards (J.Smith). PENALTY on HST-G.Graham Offensive Holding 10 yards enforced at HST 40 - No Play.,2,3,2012 -20121021_BAL@HOU,1,48,47,HOU,BAL,2,13,70,(3:47) M.Schaub pass short middle to A.Johnson to HST 42 for 12 yards (E.Reed).,2,3,2012 -20121021_BAL@HOU,1,48,12,HOU,BAL,3,1,58,(3:12) J.Casey left guard to HST 48 for 6 yards (B.Pollard).,2,3,2012 -20121021_BAL@HOU,1,47,33,HOU,BAL,1,10,52,(2:33) M.Schaub pass incomplete deep right to K.Walter.,2,3,2012 -20121021_BAL@HOU,1,47,26,HOU,BAL,2,10,52,(2:26) M.Schaub pass short left to O.Daniels to HST 49 for 1 yard (B.Pollard). PENALTY on BLT-B.Pollard Face Mask (15 Yards) 15 yards enforced at HST 49.,2,3,2012 -20121021_BAL@HOU,1,46,56,HOU,BAL,1,10,36,(1:56) A.Foster left tackle to BLT 31 for 5 yards (T.Suggs).,2,3,2012 -20121021_BAL@HOU,1,46,16,HOU,BAL,2,5,31,(1:16) M.Schaub pass short right to A.Johnson to BLT 25 for 6 yards (J.Smith) [T.Suggs].,2,3,2012 -20121021_BAL@HOU,1,45,36,HOU,BAL,1,10,25,(:36) M.Schaub pass deep middle to K.Walter for 25 yards TOUCHDOWN.,2,3,2012 -20121021_BAL@HOU,1,45,36,HOU,BAL,,,25,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,2,3,2012 -20121021_BAL@HOU,1,45,36,HOU,BAL,,,25,S.Graham kicks 70 yards from HST 35 to BLT -5. J.Jones pushed ob at BLT 42 for 47 yards (S.Keo).,9,3,2012 -20121021_BAL@HOU,1,45,22,BAL,HOU,1,10,58,(:22) R.Rice up the middle to BLT 45 for 3 yards (J.Watt).,3,9,2012 -20121021_BAL@HOU,2,45,0,BAL,HOU,2,7,55,(15:00) J.Flacco pass short right intended for T.Smith INTERCEPTED by J.Joseph (J.Watt) at HST 48. J.Joseph for 52 yards TOUCHDOWN. (The pass was tipped at the line by #99 J.J. Watt),3,9,2012 -20121021_BAL@HOU,2,45,0,HOU,BAL,,,55,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,9,3,2012 -20121021_BAL@HOU,2,45,0,HOU,BAL,,,55,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,16,3,2012 -20121021_BAL@HOU,2,44,51,BAL,HOU,1,10,80,(14:51) R.Rice left guard to BLT 24 for 4 yards (J.Crick; S.Cody).,3,16,2012 -20121021_BAL@HOU,2,44,19,BAL,HOU,2,6,76,(14:19) R.Rice right guard to BLT 25 for 1 yard (J.Crick). BLT-K.Osemele was injured during the play. He is Out.,3,16,2012 -20121021_BAL@HOU,2,43,53,BAL,HOU,3,5,75,(13:53) (Shotgun) J.Flacco pass incomplete short left to A.Boldin (B.McCain).,3,16,2012 -20121021_BAL@HOU,2,43,48,BAL,HOU,4,5,75,(13:48) S.Koch punts 48 yards to HST 27 Center-M.Cox. K.Martin to HST 27 for no gain (C.Graham). FUMBLES (C.Graham) and recovers at HST 25. K.Martin to HST 25 for no gain (A.Allen). (The punt hang time was 4.68 seconds.),3,16,2012 -20121021_BAL@HOU,2,43,37,HOU,BAL,1,10,75,(13:37) B.Tate right end to HST 28 for 3 yards (E.Reed).,16,3,2012 -20121021_BAL@HOU,2,43,3,HOU,BAL,2,7,72,(13:03) M.Schaub pass short right to A.Johnson to HST 37 for 9 yards (J.Smith).,16,3,2012 -20121021_BAL@HOU,2,42,29,HOU,BAL,1,10,63,(12:29) M.Schaub pass short left to K.Walter to HST 44 for 7 yards (C.Williams).,16,3,2012 -20121021_BAL@HOU,2,41,51,HOU,BAL,2,3,56,(11:51) A.Foster left guard to HST 44 for no gain (B.Pollard). PENALTY on HST-J.Casey Offensive Holding 10 yards enforced at HST 44 - No Play.,16,3,2012 -20121021_BAL@HOU,2,41,28,HOU,BAL,2,13,66,(11:28) M.Schaub pass short left to A.Foster pushed ob at HST 39 for 5 yards (C.Williams).,16,3,2012 -20121021_BAL@HOU,2,40,53,HOU,BAL,3,8,61,(10:53) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 46 for 7 yards (D.Ellerbe) [J.Ihedigbo].,16,3,2012 -20121021_BAL@HOU,2,40,25,HOU,BAL,4,1,54,(10:25) D.Jones punts 38 yards to BLT 16 Center-J.Weeks. E.Reed to BLT 17 for 1 yard (T.Nolan). (The punt hang time was 4.3 seconds.),16,3,2012 -20121021_BAL@HOU,2,40,14,BAL,HOU,1,10,83,(10:14) J.Flacco pass incomplete deep middle to T.Smith [J.Crick].,3,16,2012 -20121021_BAL@HOU,2,40,6,BAL,HOU,2,10,83,(10:06) (Shotgun) J.Flacco pass incomplete short right to T.Smith.,3,16,2012 -20121021_BAL@HOU,2,40,2,BAL,HOU,3,10,83,(10:02) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 24 for 7 yards (C.Barwin).,3,16,2012 -20121021_BAL@HOU,2,39,24,BAL,HOU,4,3,76,(9:24) S.Koch punts 51 yards to HST 25 Center-M.Cox. K.Martin to HST 27 for 2 yards (A.McClellan). PENALTY on BLT-D.Pitta Face Mask (15 Yards) 15 yards enforced at HST 27. (The punt hang time was 4.3 seconds.),3,16,2012 -20121021_BAL@HOU,2,39,12,HOU,BAL,1,10,58,(9:12) M.Schaub pass short middle to A.Johnson to BLT 45 for 13 yards (B.Pollard).,16,3,2012 -20121021_BAL@HOU,2,38,36,HOU,BAL,1,10,45,(8:36) A.Foster left guard to BLT 44 for 1 yard (A.Jones; A.McClellan).,16,3,2012 -20121021_BAL@HOU,2,38,2,HOU,BAL,2,9,44,(8:02) M.Schaub pass deep middle to G.Graham to BLT 24 for 20 yards (B.Pollard).,16,3,2012 -20121021_BAL@HOU,2,37,22,HOU,BAL,1,10,24,(7:22) A.Foster left tackle to BLT 15 for 9 yards (B.Pollard; E.Reed).,16,3,2012 -20121021_BAL@HOU,2,36,43,HOU,BAL,2,1,15,(6:43) A.Foster left tackle to BLT 1 for 14 yards (E.Reed).,16,3,2012 -20121021_BAL@HOU,2,36,3,HOU,BAL,1,1,1,(6:03) M.Schaub pass short middle to O.Daniels for 1 yard TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,16,3,2012 -20121021_BAL@HOU,2,36,3,HOU,BAL,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,16,3,2012 -20121021_BAL@HOU,2,36,3,HOU,BAL,,,1,S.Graham kicks 66 yards from HST 35 to BLT -1. J.Jones to BLT 20 for 21 yards (B.Braman). PENALTY on BLT-C.Thompson Unnecessary Roughness 10 yards enforced at BLT 20.,23,3,2012 -20121021_BAL@HOU,2,35,58,BAL,HOU,2,10,90,(5:58) J.Flacco pass incomplete short left to E.Dickson.,3,23,2012 -20121021_BAL@HOU,2,35,42,BAL,HOU,3,10,90,(5:42) (Shotgun) J.Flacco pass incomplete deep right to A.Boldin.,3,23,2012 -20121021_BAL@HOU,2,35,36,BAL,HOU,4,10,90,(5:36) S.Koch punts 51 yards to HST 39 Center-M.Cox. K.Martin to HST 46 for 7 yards (C.Graham). (The punt hang time was 3.7 seconds.),3,23,2012 -20121021_BAL@HOU,2,35,25,HOU,BAL,1,10,54,(5:25) M.Schaub pass short left to A.Johnson pushed ob at BLT 40 for 14 yards (E.Reed).,23,3,2012 -20121021_BAL@HOU,2,34,56,HOU,BAL,1,10,40,(4:56) B.Tate left tackle to BLT 33 for 7 yards (D.Ellerbe).,23,3,2012 -20121021_BAL@HOU,2,34,20,HOU,BAL,2,3,33,(4:20) B.Tate up the middle to BLT 31 for 2 yards (D.Tyson; T.Cody).,23,3,2012 -20121021_BAL@HOU,2,33,39,HOU,BAL,3,1,31,(3:39) M.Schaub pass short left to O.Daniels pushed ob at BLT 23 for 8 yards (B.Pollard).,23,3,2012 -20121021_BAL@HOU,2,33,8,HOU,BAL,1,10,23,(3:08) M.Schaub pass incomplete short right to J.Casey (T.Suggs).,23,3,2012 -20121021_BAL@HOU,2,33,4,HOU,BAL,2,10,23,(3:04) (Shotgun) A.Foster right guard to BLT 21 for 2 yards (D.Ellerbe).,23,3,2012 -20121021_BAL@HOU,2,32,25,HOU,BAL,3,8,21,(2:25) (Shotgun) M.Schaub pass short middle to O.Daniels to BLT 14 for 7 yards (D.Ellerbe).,23,3,2012 -20121021_BAL@HOU,2,32,0,HOU,BAL,4,1,14,(2:00) S.Graham 33 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,23,3,2012 -20121021_BAL@HOU,2,32,0,HOU,BAL,,,14,S.Graham kicks 66 yards from HST 35 to BLT -1. J.Jones to BLT 44 for 45 yards (W.Mercilus).,26,3,2012 -20121021_BAL@HOU,2,31,47,BAL,HOU,1,10,56,(1:47) (Shotgun) J.Flacco pass short right to D.Pitta to HST 49 for 7 yards (G.Quin).,3,26,2012 -20121021_BAL@HOU,2,31,21,BAL,HOU,2,3,49,(1:21) (Shotgun) J.Flacco pass short right to D.Pitta to HST 44 for 5 yards (G.Quin).,3,26,2012 -20121021_BAL@HOU,2,31,21,BAL,HOU,1,10,44,(1:21) J.Flacco pass short right to J.Jones ran ob at HST 36 for 8 yards (G.Quin).,3,26,2012 -20121021_BAL@HOU,2,31,17,BAL,HOU,2,2,36,(1:17) (Shotgun) J.Flacco pass incomplete short right to E.Dickson (G.Quin).,3,26,2012 -20121021_BAL@HOU,2,31,13,BAL,HOU,3,2,36,(1:13) (Shotgun) J.Flacco pass short middle intended for T.Smith INTERCEPTED by G.Quin (W.Mercilus) at HST 31. G.Quin to HST 31 for no gain (R.Rice).,3,26,2012 -20121021_BAL@HOU,2,31,6,HOU,BAL,1,10,69,(1:06) (Shotgun) M.Schaub pass incomplete short middle to A.Johnson (P.Kruger).,26,3,2012 -20121021_BAL@HOU,2,31,2,HOU,BAL,2,10,69,(1:02) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,26,3,2012 -20121021_BAL@HOU,2,30,59,HOU,BAL,3,10,69,(:59) (Shotgun) M.Schaub pass short right to O.Daniels to HST 48 for 17 yards (J.Smith).,26,3,2012 -20121021_BAL@HOU,2,30,52,HOU,BAL,1,10,52,(:52) (Shotgun) M.Schaub pass deep middle to O.Daniels to BLT 33 for 19 yards (B.Pollard). Penalty on BLT-T.Suggs Defensive Offside declined.,26,3,2012 -20121021_BAL@HOU,2,30,52,HOU,BAL,1,10,33,(:52) (Shotgun) M.Schaub pass short left to O.Daniels to BLT 27 for 6 yards (D.Ellerbe). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,26,3,2012 -20121021_BAL@HOU,2,30,38,HOU,BAL,2,4,27,(:38) (Shotgun) M.Schaub pass incomplete deep left to K.Walter.,26,3,2012 -20121021_BAL@HOU,2,30,33,HOU,BAL,3,4,27,(:33) (Shotgun) M.Schaub pass incomplete short middle to K.Walter [H.Ngata]. PENALTY on BLT-C.Williams Defensive Holding 5 yards enforced at BLT 27 - No Play.,26,3,2012 -20121021_BAL@HOU,2,30,29,HOU,BAL,1,10,22,(:29) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels.,26,3,2012 -20121021_BAL@HOU,2,30,25,HOU,BAL,2,10,22,(:25) (Shotgun) M.Schaub pass incomplete short middle to J.Casey.,26,3,2012 -20121021_BAL@HOU,2,30,21,HOU,BAL,3,10,22,(:21) (Shotgun) M.Schaub pass incomplete deep middle to O.Daniels. PENALTY on BLT-B.Pollard Unnecessary Roughness 11 yards enforced at BLT 22.,26,3,2012 -20121021_BAL@HOU,2,30,16,HOU,BAL,1,10,11,(:16) (Shotgun) M.Schaub pass incomplete short middle to K.Martin.,26,3,2012 -20121021_BAL@HOU,2,30,12,HOU,BAL,2,10,11,(:12) (Shotgun) M.Schaub pass incomplete short middle to A.Foster (J.McClain) [A.Jones].,26,3,2012 -20121021_BAL@HOU,2,30,6,HOU,BAL,3,10,11,(:06) S.Graham 29 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,26,3,2012 -20121021_BAL@HOU,2,30,6,HOU,BAL,,,11,S.Graham kicks 31 yards from HST 35 to BLT 34. L.Williams to BLT 39 for 5 yards (J.Forsett).,29,3,2012 -20121021_BAL@HOU,3,30,0,HOU,BAL,,,11,S.Graham kicks 59 yards from HST 35 to BLT 6. J.Jones to BLT 27 for 21 yards (B.Harris).,29,3,2012 -20121021_BAL@HOU,3,29,54,BAL,HOU,1,10,73,(14:54) R.Rice left guard to BLT 28 for 1 yard (J.Watt).,3,29,2012 -20121021_BAL@HOU,3,29,19,BAL,HOU,2,9,72,(14:19) J.Flacco pass incomplete short left to T.Smith.,3,29,2012 -20121021_BAL@HOU,3,29,14,BAL,HOU,3,9,72,(14:14) (Shotgun) J.Flacco pass short left to R.Rice to BLT 35 for 7 yards (J.Joseph).,3,29,2012 -20121021_BAL@HOU,3,28,36,BAL,HOU,4,2,65,(13:36) S.Koch punts 57 yards to HST 8 Center-M.Cox. K.Martin to HST 10 for 2 yards (C.Graham). (The punt hang time was 4.2 seconds.),3,29,2012 -20121021_BAL@HOU,3,28,20,HOU,BAL,1,10,90,(13:20) A.Foster left guard to HST 17 for 7 yards (C.Upshaw; D.Ellerbe).,29,3,2012 -20121021_BAL@HOU,3,27,50,HOU,BAL,2,3,83,(12:50) M.Schaub sacked at HST 8 for -9 yards (C.Williams).,29,3,2012 -20121021_BAL@HOU,3,27,12,HOU,BAL,3,12,92,(12:12) (Shotgun) M.Schaub pass incomplete short middle to A.Foster.,29,3,2012 -20121021_BAL@HOU,3,27,7,HOU,BAL,4,12,92,(12:07) D.Jones punts 39 yards to HST 47 Center-J.Weeks out of bounds. (The punt hang time was 4.6 seconds.),29,3,2012 -20121021_BAL@HOU,3,26,56,BAL,HOU,1,10,47,(11:56) J.Flacco pass short middle to D.Pitta to HST 42 for 5 yards (D.Manning).,3,29,2012 -20121021_BAL@HOU,3,26,28,BAL,HOU,2,5,42,(11:28) J.Flacco pass incomplete short right to E.Dickson (J.Watt).,3,29,2012 -20121021_BAL@HOU,3,26,25,BAL,HOU,3,5,42,(11:25) (Shotgun) J.Flacco pass incomplete deep right to T.Smith. PENALTY on HST-J.Joseph Defensive Pass Interference 21 yards enforced at HST 42 - No Play.,3,29,2012 -20121021_BAL@HOU,3,26,18,BAL,HOU,1,10,21,(11:18) (Shotgun) R.Rice up the middle to HST 15 for 6 yards (B.Reed).,3,29,2012 -20121021_BAL@HOU,3,25,46,BAL,HOU,2,4,15,(10:46) J.Flacco pass incomplete short middle to D.Pitta [C.Barwin].,3,29,2012 -20121021_BAL@HOU,3,25,42,BAL,HOU,3,4,15,(10:42) (Shotgun) J.Flacco pass short right to T.Doss for 15 yards TOUCHDOWN.,3,29,2012 -20121021_BAL@HOU,3,25,42,BAL,HOU,,,15,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,29,2012 -20121021_BAL@HOU,3,25,42,BAL,HOU,,,15,S.Koch kicks 71 yards from BLT 35 to HST -6. K.Martin Touchback.,10,29,2012 -20121021_BAL@HOU,3,25,36,HOU,BAL,1,10,80,(10:36) M.Schaub pass short left to A.Johnson to HST 33 for 13 yards (C.Williams).,29,10,2012 -20121021_BAL@HOU,3,25,3,HOU,BAL,1,10,67,(10:03) A.Foster left tackle to HST 31 for -2 yards (C.Upshaw).,29,10,2012 -20121021_BAL@HOU,3,24,21,HOU,BAL,2,12,69,(9:21) M.Schaub pass deep right to K.Walter to BLT 35 for 34 yards (J.Smith).,29,10,2012 -20121021_BAL@HOU,3,23,38,HOU,BAL,1,10,35,(8:38) A.Foster right tackle to BLT 33 for 2 yards (C.Upshaw).,29,10,2012 -20121021_BAL@HOU,3,23,5,HOU,BAL,2,8,33,(8:05) M.Schaub pass short left to A.Johnson to BLT 26 for 7 yards (C.Williams).,29,10,2012 -20121021_BAL@HOU,3,22,28,HOU,BAL,3,1,26,(7:28) A.Foster left end to BLT 21 for 5 yards (C.Williams).,29,10,2012 -20121021_BAL@HOU,3,21,50,HOU,BAL,1,10,21,(6:50) A.Foster left guard to BLT 21 for no gain (J.McClain). PENALTY on HST-C.Myers Offensive Holding 10 yards enforced at BLT 21 - No Play.,29,10,2012 -20121021_BAL@HOU,3,21,26,HOU,BAL,1,20,31,(6:26) M.Schaub pass short left to G.Graham pushed ob at BLT 19 for 12 yards (D.Ellerbe).,29,10,2012 -20121021_BAL@HOU,3,20,50,HOU,BAL,2,8,19,(5:50) B.Tate left end to BLT 14 for 5 yards (A.Jones).,29,10,2012 -20121021_BAL@HOU,3,20,7,HOU,BAL,3,3,14,(5:07) (Shotgun) A.Foster right end pushed ob at BLT 6 for 8 yards (C.Williams).,29,10,2012 -20121021_BAL@HOU,3,19,28,HOU,BAL,1,6,6,(4:28) B.Tate left tackle to BLT 5 for 1 yard (D.Ellerbe; A.Jones).,29,10,2012 -20121021_BAL@HOU,3,18,41,HOU,BAL,2,5,5,(3:41) A.Foster up the middle to BLT 1 for 4 yards (D.Ellerbe; A.Jones).,29,10,2012 -20121021_BAL@HOU,3,18,0,HOU,BAL,3,1,1,(3:00) A.Foster left tackle for 1 yard TOUCHDOWN.,29,10,2012 -20121021_BAL@HOU,3,18,0,HOU,BAL,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,29,10,2012 -20121021_BAL@HOU,3,18,0,HOU,BAL,,,1,S.Graham kicks 66 yards from HST 35 to BLT -1. J.Jones to BLT 25 for 26 yards (W.Mercilus; A.Ball).,36,10,2012 -20121021_BAL@HOU,3,17,49,BAL,HOU,1,10,75,(2:49) J.Flacco pass short left to T.Smith to BLT 40 for 15 yards (J.Joseph; G.Quin).,10,36,2012 -20121021_BAL@HOU,3,17,20,BAL,HOU,1,10,60,(2:20) R.Rice left tackle to BLT 40 for no gain (B.Reed).,10,36,2012 -20121021_BAL@HOU,3,16,41,BAL,HOU,2,10,60,(1:41) J.Flacco pass short right to D.Pitta to BLT 49 for 9 yards (B.Reed).,10,36,2012 -20121021_BAL@HOU,3,16,19,BAL,HOU,3,1,51,(1:19) J.Flacco up the middle to HST 49 for 2 yards (B.James).,10,36,2012 -20121021_BAL@HOU,3,15,47,BAL,HOU,1,10,49,(:47) (Shotgun) J.Flacco pass incomplete short left to T.Smith.,10,36,2012 -20121021_BAL@HOU,3,15,43,BAL,HOU,2,10,49,(:43) (Shotgun) J.Flacco pass short right to J.Jones ran ob at HST 40 for 9 yards.,10,36,2012 -20121021_BAL@HOU,3,15,21,BAL,HOU,3,1,40,(:21) J.Flacco left tackle to HST 35 for 5 yards (G.Quin).,10,36,2012 -20121021_BAL@HOU,4,15,0,BAL,HOU,1,10,35,(15:00) (Shotgun) J.Flacco pass incomplete short left to A.Boldin (B.McCain).,10,36,2012 -20121021_BAL@HOU,4,14,53,BAL,HOU,2,10,35,(14:53) (Shotgun) J.Flacco pass short right to A.Boldin to HST 28 for 7 yards (K.Jackson). PENALTY on BLT-E.Dickson Offensive Pass Interference 10 yards enforced at HST 35 - No Play.,10,36,2012 -20121021_BAL@HOU,4,14,2,BAL,HOU,3,3,28,(14:02) (Shotgun) J.Flacco pass incomplete short right to A.Boldin.,10,36,2012 -20121021_BAL@HOU,4,13,58,BAL,HOU,4,3,28,(13:58) (Shotgun) J.Flacco pass incomplete short right to T.Smith [C.Barwin]. PENALTY on HST-J.Joseph Defensive Pass Interference 9 yards enforced at HST 28 - No Play.,10,36,2012 -20121021_BAL@HOU,4,13,53,BAL,HOU,1,10,19,(13:53) (Shotgun) J.Flacco sacked at HST 27 for -8 yards (A.Smith).,10,36,2012 -20121021_BAL@HOU,4,13,16,BAL,HOU,2,18,27,(13:16) (Shotgun) J.Flacco sacked at HST 36 for -9 yards (A.Smith).,10,36,2012 -20121021_BAL@HOU,4,12,36,BAL,HOU,3,27,36,(12:36) (Shotgun) J.Flacco pass incomplete [C.Barwin].,10,36,2012 -20121021_BAL@HOU,4,12,28,BAL,HOU,4,27,36,(12:28) J.Tucker 54 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,10,36,2012 -20121021_BAL@HOU,4,12,28,BAL,HOU,,,36,S.Koch kicks onside 9 yards from BLT 35 to BLT 44. B.Braman (didn't try to advance) to BLT 44 for no gain (B.Ayanbadejo).,13,36,2012 -20121021_BAL@HOU,4,12,22,HOU,BAL,1,10,44,(12:22) B.Tate left tackle to BLT 35 for 9 yards (D.Ellerbe).,36,13,2012 -20121021_BAL@HOU,4,11,37,HOU,BAL,2,1,35,(11:37) B.Tate up the middle to BLT 30 for 5 yards (T.Suggs; D.Tyson).,36,13,2012 -20121021_BAL@HOU,4,10,54,HOU,BAL,1,10,30,(10:54) A.Foster right tackle to BLT 14 for 16 yards (B.Pollard).,36,13,2012 -20121021_BAL@HOU,4,10,11,HOU,BAL,1,10,14,(10:11) A.Foster right tackle to BLT 12 for 2 yards (P.Kruger).,36,13,2012 -20121021_BAL@HOU,4,9,27,HOU,BAL,2,8,12,(9:27) B.Tate up the middle pushed ob at BLT 2 for 10 yards (E.Reed). BLT-E.Reed was injured during the play. His return is Probable.,36,13,2012 -20121021_BAL@HOU,4,8,54,HOU,BAL,1,2,2,(8:54) A.Foster up the middle for 2 yards TOUCHDOWN.,36,13,2012 -20121021_BAL@HOU,4,8,54,HOU,BAL,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,36,13,2012 -20121021_BAL@HOU,4,8,54,HOU,BAL,,,2,S.Graham kicks 72 yards from HST 35 to BLT -7. J.Jones to BLT 29 for 36 yards (A.Ball; B.Braman).,43,13,2012 -20121021_BAL@HOU,4,8,41,BAL,HOU,1,10,71,(8:41) (Shotgun) J.Flacco pass short right to D.Pitta to BLT 36 for 7 yards (B.McCain; E.Mitchell).,13,43,2012 -20121021_BAL@HOU,4,8,8,BAL,HOU,2,3,64,(8:08) (Shotgun) J.Flacco pass short right to A.Boldin to BLT 43 for 7 yards (B.Braman).,13,43,2012 -20121021_BAL@HOU,4,7,38,BAL,HOU,1,10,57,(7:38) (Shotgun) J.Flacco pass short right to T.Smith to BLT 49 for 6 yards (J.Joseph).,13,43,2012 -20121021_BAL@HOU,4,7,13,BAL,HOU,2,4,51,(7:13) (No Huddle) J.Flacco pass short right to R.Rice to BLT 47 for -2 yards (C.Barwin).,13,43,2012 -20121021_BAL@HOU,4,6,30,BAL,HOU,3,6,53,(6:30) (Shotgun) J.Flacco pass short middle to A.Boldin to HST 43 for 10 yards (D.Manning).,13,43,2012 -20121021_BAL@HOU,4,6,8,BAL,HOU,1,10,43,(6:08) (Shotgun) J.Flacco pass short right to R.Rice to HST 40 for 3 yards (T.Dobbins).,13,43,2012 -20121021_BAL@HOU,4,5,40,BAL,HOU,2,7,40,(5:40) (Shotgun) J.Flacco pass short right to R.Rice to HST 43 for -3 yards (T.Dobbins).,13,43,2012 -20121021_BAL@HOU,4,4,56,BAL,HOU,3,10,43,(4:56) (Shotgun) J.Flacco pass incomplete deep right to T.Smith.,13,43,2012 -20121021_BAL@HOU,4,4,49,BAL,HOU,4,10,43,(4:49) (Shotgun) J.Flacco pass incomplete short left to T.Smith.,13,43,2012 -20121021_BAL@HOU,4,4,44,HOU,BAL,1,10,56,(4:44) J.Forsett right tackle to HST 48 for 4 yards (B.Hall; A.Jones).,43,13,2012 -20121021_BAL@HOU,4,4,0,HOU,BAL,2,6,52,(4:00) J.Forsett left tackle to BLT 48 for 4 yards (C.Upshaw; A.Jones).,43,13,2012 -20121021_BAL@HOU,4,3,18,HOU,BAL,3,2,48,(3:18) J.Forsett right end to BLT 37 for 11 yards (J.McClain).,43,13,2012 -20121021_BAL@HOU,4,2,31,HOU,BAL,1,10,37,(2:31) J.Forsett right tackle to BLT 34 for 3 yards (P.Kruger).,43,13,2012 -20121021_BAL@HOU,4,2,0,HOU,BAL,2,7,34,(2:00) J.Forsett left end to BLT 31 for 3 yards (D.Tyson).,43,13,2012 -20121021_BAL@HOU,4,1,15,HOU,BAL,3,4,31,(1:15) J.Forsett right guard to BLT 24 for 7 yards (J.McClain).,43,13,2012 -20121021_BAL@HOU,4,0,32,HOU,BAL,1,10,24,(:32) M.Schaub kneels to BLT 26 for -2 yards.,43,13,2012 -20121021_BAL@HOU,4,0,32,HOU,BAL,,,24,                      ,43,13,2012 -20121021_CLE@IND,1,0,0,CLE,IND,,,24,P.Dawson kicks 74 yards from CLV 35 to IND -9. C.Vaughn Touchback.,0,0,2012 -20121021_CLE@IND,1,60,0,IND,CLE,1,10,80,(15:00) T.Hills reported in as eligible. A.Luck pass deep middle to R.Wayne to 50 for 30 yards (S.Brown) [F.Rucker].,0,0,2012 -20121021_CLE@IND,1,59,23,IND,CLE,1,10,50,(14:23) (Shotgun) V.Ballard up the middle to CLV 44 for 6 yards (T.Ward).,0,0,2012 -20121021_CLE@IND,1,58,45,IND,CLE,2,4,44,(13:45) V.Ballard up the middle to CLV 44 for no gain (J.Johnson). PENALTY on IND-T.Hills Illegal Formation 5 yards enforced at CLV 44 - No Play.,0,0,2012 -20121021_CLE@IND,1,58,0,IND,CLE,2,9,49,(13:00) A.Luck pass short middle to D.Allen to CLV 40 for 9 yards (J.Johnson). PENALTY on IND-T.Hilton Illegal Shift 5 yards enforced at CLV 49 - No Play.,0,0,2012 -20121021_CLE@IND,1,57,36,IND,CLE,2,14,54,(12:36) (Shotgun) A.Luck pass short middle to D.Avery to CLV 43 for 11 yards (B.Skrine).,0,0,2012 -20121021_CLE@IND,1,56,58,IND,CLE,3,3,43,(11:58) (Shotgun) A.Luck pass short right to C.Fleener pushed ob at CLV 36 for 7 yards (C.Robertson).,0,0,2012 -20121021_CLE@IND,1,56,27,IND,CLE,1,10,36,(11:27) (Run formation) V.Ballard left end to CLV 30 for 6 yards (S.Brown).,0,0,2012 -20121021_CLE@IND,1,55,48,IND,CLE,2,4,30,(10:48) V.Ballard up the middle to CLV 28 for 2 yards (C.Robertson).,0,0,2012 -20121021_CLE@IND,1,55,10,IND,CLE,3,2,28,(10:10) (Run formation) V.Ballard up the middle to CLV 23 for 5 yards (D.Jackson).,0,0,2012 -20121021_CLE@IND,1,54,28,IND,CLE,1,10,23,(9:28) (Run formation) T.Hills reported in as eligible. V.Ballard left end to CLV 24 for -1 yards (S.Brown).,0,0,2012 -20121021_CLE@IND,1,53,47,IND,CLE,2,11,24,(8:47) (Shotgun) A.Luck pass short middle to V.Ballard to CLV 5 for 19 yards (U.Young; T.Ward).,0,0,2012 -20121021_CLE@IND,1,53,0,IND,CLE,1,5,5,(8:00) M.Moore up the middle to CLV 3 for 2 yards (A.Rubin; D.Jackson).,0,0,2012 -20121021_CLE@IND,1,52,29,IND,CLE,2,3,3,(7:29) (Shotgun) A.Luck scrambles right guard for 3 yards TOUCHDOWN.,0,0,2012 -20121021_CLE@IND,1,52,29,IND,CLE,,,3,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121021_CLE@IND,1,52,29,IND,CLE,,,3,P.McAfee kicks 68 yards from IND 35 to CLV -3. J.Cribbs to CLV 28 for 31 yards (J.Gordy). PENALTY on CLV-R.Ventrone Offensive Holding 10 yards enforced at CLV 20.,7,0,2012 -20121021_CLE@IND,1,52,17,CLE,IND,1,10,90,(7:17) (Run formation) B.Weeden pass short right to T.Richardson to CLV 19 for 9 yards (A.Johnson).,0,7,2012 -20121021_CLE@IND,1,51,46,CLE,IND,2,1,81,(6:46) (Run formation) T.Richardson up the middle to CLV 24 for 5 yards (A.Bethea).,0,7,2012 -20121021_CLE@IND,1,51,11,CLE,IND,1,10,76,(6:11) (Run formation) T.Richardson left tackle to CLV 25 for 1 yard (K.Conner).,0,7,2012 -20121021_CLE@IND,1,50,30,CLE,IND,2,9,75,(5:30) (Shotgun) B.Weeden pass short left to G.Little to CLV 32 for 7 yards (P.Angerer).,0,7,2012 -20121021_CLE@IND,1,49,45,CLE,IND,3,2,68,(4:45) (Shotgun) B.Weeden pass short right to J.Cooper to CLV 44 for 12 yards (J.Gordy). PENALTY on IND-J.Freeman Roughing the Passer 15 yards enforced at CLV 44.,0,7,2012 -20121021_CLE@IND,1,49,11,CLE,IND,1,10,41,(4:11) B.Weeden pass incomplete deep right to J.Gordon.,0,7,2012 -20121021_CLE@IND,1,49,7,CLE,IND,2,10,41,(4:07) (Run formation) T.Richardson up the middle to IND 42 for -1 yards (C.Geathers; J.Hughes).,0,7,2012 -20121021_CLE@IND,1,48,25,CLE,IND,3,11,42,(3:25) (Shotgun) B.Weeden scrambles up the middle to IND 29 for 13 yards (V.Davis).,0,7,2012 -20121021_CLE@IND,1,47,47,CLE,IND,1,10,29,(2:47) (Shotgun) T.Richardson up the middle to IND 26 for 3 yards (L.Guy).,0,7,2012 -20121021_CLE@IND,1,47,8,CLE,IND,2,7,26,(2:08) (Shotgun) B.Weeden pass short middle to J.Cooper to IND 17 for 9 yards (J.Powers).,0,7,2012 -20121021_CLE@IND,1,46,34,CLE,IND,1,10,17,(1:34) T.Richardson right tackle to IND 15 for 2 yards (P.Angerer; J.Freeman).,0,7,2012 -20121021_CLE@IND,1,45,52,CLE,IND,2,8,15,(:52) (Shotgun) B.Weeden pass incomplete short middle to J.Cooper (J.Powers).,0,7,2012 -20121021_CLE@IND,1,45,46,CLE,IND,3,8,15,(:46) (Shotgun) PENALTY on CLV-M.Schwartz False Start 5 yards enforced at IND 15 - No Play.,0,7,2012 -20121021_CLE@IND,1,45,46,CLE,IND,3,13,20,(:46) (Shotgun) B.Weeden pass short right to J.Gordon pushed ob at IND 2 for 18 yards (C.Vaughn).,0,7,2012 -20121021_CLE@IND,1,45,20,CLE,IND,1,2,2,(:20) (Run formation) O.Cousins reported in as eligible. T.Richardson left tackle to IND 1 for 1 yard (M.Harvey).,0,7,2012 -20121021_CLE@IND,2,45,0,CLE,IND,2,1,1,(15:00) (Run formation) O.Cousins reported in as eligible. T.Richardson left end to IND 4 for -3 yards (K.Conner; A.Bethea).,0,7,2012 -20121021_CLE@IND,2,44,13,CLE,IND,3,4,4,(14:13) B.Weeden pass short right to B.Watson for 4 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CLV-J.Cribbs Offensive Pass Interference 10 yards enforced at IND 4 - No Play.,0,7,2012 -20121021_CLE@IND,2,44,7,CLE,IND,3,14,14,(14:07) (Run formation) B.Weeden pass short middle to G.Little for 14 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,0,7,2012 -20121021_CLE@IND,2,44,7,CLE,IND,,,14,(Kick formation) P.Dawson extra point is Aborted Center-C.Yount Holder-R.Hodges. Mishandled snap.,0,7,2012 -20121021_CLE@IND,2,44,7,CLE,IND,,,14,P.Dawson kicks 65 yards from CLV 35 to IND 0. M.Moore to IND 24 for 24 yards (J.Cribbs).,0,7,2012 -20121021_CLE@IND,2,43,55,IND,CLE,1,10,76,(13:55) D.Carter left tackle to IND 29 for 5 yards (F.Rucker).,7,0,2012 -20121021_CLE@IND,2,43,22,IND,CLE,2,5,71,(13:22) A.Luck pass incomplete deep left to D.Avery (S.Brown). PENALTY on CLV-S.Brown Illegal Contact 5 yards enforced at IND 29 - No Play.,7,0,2012 -20121021_CLE@IND,2,43,16,IND,CLE,1,10,66,(13:16) D.Carter left end pushed ob at IND 39 for 5 yards (S.Brown).,7,0,2012 -20121021_CLE@IND,2,42,51,IND,CLE,2,5,61,(12:51) D.Carter up the middle to IND 45 for 6 yards (B.Skrine).,7,0,2012 -20121021_CLE@IND,2,42,8,IND,CLE,1,10,55,(12:08) A.Luck pass incomplete deep left to R.Wayne [F.Rucker].,7,0,2012 -20121021_CLE@IND,2,42,2,IND,CLE,2,10,55,(12:02) (Run formation) A.Luck pass incomplete short left to D.Carter.,7,0,2012 -20121021_CLE@IND,2,41,57,IND,CLE,3,10,55,(11:57) (Shotgun) A.Luck pass short left to D.Avery to CLV 39 for 16 yards (U.Young).,7,0,2012 -20121021_CLE@IND,2,41,17,IND,CLE,1,10,39,(11:17) (Run formation) D.Carter up the middle to CLV 33 for 6 yards (K.Maiava).,7,0,2012 -20121021_CLE@IND,2,40,39,IND,CLE,2,4,33,(10:39) (Run formation) A.Luck pass incomplete deep left to R.Wayne.,7,0,2012 -20121021_CLE@IND,2,40,33,IND,CLE,3,4,33,(10:33) (Shotgun) A.Luck pass short left to C.Fleener pushed ob at CLV 23 for 10 yards (D.Jackson).,7,0,2012 -20121021_CLE@IND,2,39,58,IND,CLE,1,10,23,(9:58) A.Luck pass incomplete deep left to R.Wayne (T.Ward).,7,0,2012 -20121021_CLE@IND,2,39,53,IND,CLE,2,10,23,(9:53) M.Moore left end to CLV 18 for 5 yards (T.Ward; I.Kitchen).,7,0,2012 -20121021_CLE@IND,2,39,10,IND,CLE,3,5,18,(9:10) (Shotgun) A.Luck pass short middle to R.Wayne to CLV 9 for 9 yards (C.Robertson).,7,0,2012 -20121021_CLE@IND,2,38,28,IND,CLE,1,9,9,(8:28) M.Moore up the middle to CLV 5 for 4 yards (U.Young).,7,0,2012 -20121021_CLE@IND,2,37,47,IND,CLE,2,5,5,(7:47) A.Luck right end for 5 yards TOUCHDOWN.,7,0,2012 -20121021_CLE@IND,2,37,47,IND,CLE,,,5,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,0,2012 -20121021_CLE@IND,2,37,47,IND,CLE,,,5,P.McAfee kicks 73 yards from IND 35 to CLV -8. J.Cribbs to CLV 40 for 48 yards (P.McAfee). PENALTY on CLV-R.Ventrone Offensive Holding 10 yards enforced at CLV 24.,14,6,2012 -20121021_CLE@IND,2,37,34,CLE,IND,1,10,86,(7:34) (Shotgun) B.Weeden pass incomplete short right to J.Gordon (C.Vaughn).,6,14,2012 -20121021_CLE@IND,2,37,31,CLE,IND,2,10,86,(7:31) (Run formation) B.Weeden pass short left to G.Little to CLV 20 for 6 yards (V.Davis).,6,14,2012 -20121021_CLE@IND,2,36,56,CLE,IND,3,4,80,(6:56) B.Weeden pass short right to C.Ogbonnaya to CLV 26 for 6 yards (A.Bethea; J.Powers).,6,14,2012 -20121021_CLE@IND,2,36,15,CLE,IND,1,10,74,(6:15) (Run formation) B.Weeden pass short left to C.Ogbonnaya to CLV 33 for 7 yards (C.Geathers).,6,14,2012 -20121021_CLE@IND,2,35,37,CLE,IND,2,3,67,(5:37) B.Weeden pass short right to T.Richardson to CLV 35 for 2 yards (P.Angerer).,6,14,2012 -20121021_CLE@IND,2,34,53,CLE,IND,3,1,65,(4:53) (Run formation) O.Cousins reported in as eligible. T.Richardson left end to CLV 35 for no gain (A.Johnson; J.Freeman).,6,14,2012 -20121021_CLE@IND,2,34,17,CLE,IND,4,1,65,(4:17) R.Hodges punts 51 yards to IND 14 Center-C.Yount fair catch by T.Hilton.,6,14,2012 -20121021_CLE@IND,2,34,9,IND,CLE,1,10,86,(4:09) (Run formation) V.Ballard left end to IND 15 for 1 yard (J.Sheard).,14,6,2012 -20121021_CLE@IND,2,33,31,IND,CLE,2,9,85,(3:31) (Run formation) PENALTY on IND-C.Fleener False Start 5 yards enforced at IND 15 - No Play.,14,6,2012 -20121021_CLE@IND,2,33,8,IND,CLE,2,14,90,(3:08) (Shotgun) A.Luck pass incomplete short right to T.Hilton.,14,6,2012 -20121021_CLE@IND,2,33,2,IND,CLE,3,14,90,(3:02) (Shotgun) A.Luck pass short middle to R.Wayne to IND 23 for 13 yards (B.Skrine).,14,6,2012 -20121021_CLE@IND,2,32,56,IND,CLE,4,1,77,(2:56) (Run formation) PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at IND 23 - No Play.,14,6,2012 -20121021_CLE@IND,2,32,56,IND,CLE,1,10,72,(2:56) (Shotgun) A.Luck pass short left to T.Hilton to IND 36 for 8 yards (S.Brown).,14,6,2012 -20121021_CLE@IND,2,32,38,IND,CLE,2,2,64,(2:38) (No Huddle Shotgun) A.Luck pass short right to T.Hilton pushed ob at 50 for 14 yards (J.Haden).,14,6,2012 -20121021_CLE@IND,2,32,7,IND,CLE,1,10,50,(2:07) (Shotgun) A.Luck pass incomplete short left to D.Allen.,14,6,2012 -20121021_CLE@IND,2,32,4,IND,CLE,2,10,50,(2:04) (Shotgun) A.Luck pass incomplete deep left to R.Wayne [I.Kitchen].,14,6,2012 -20121021_CLE@IND,2,31,58,IND,CLE,3,10,50,(1:58) (Shotgun) A.Luck pass incomplete deep left to L.Brazill.,14,6,2012 -20121021_CLE@IND,2,31,52,IND,CLE,4,10,50,(1:52) P.McAfee punts 39 yards to CLV 11 Center-M.Overton downed by IND-M.Overton.,14,6,2012 -20121021_CLE@IND,2,31,42,CLE,IND,1,10,89,(1:42) (Run formation) M.Hardesty up the middle to CLV 18 for 7 yards (J.Powers).,6,14,2012 -20121021_CLE@IND,2,31,14,CLE,IND,2,3,82,(1:14) (Shotgun) B.Weeden pass short right to J.Cameron pushed ob at CLV 22 for 4 yards (A.Bethea).,6,14,2012 -20121021_CLE@IND,2,31,8,CLE,IND,1,10,78,(1:08) (Shotgun) B.Weeden pass short left to B.Watson pushed ob at CLV 31 for 9 yards (M.Fokou).,6,14,2012 -20121021_CLE@IND,2,31,1,CLE,IND,2,1,69,(1:01) B.Weeden pass short right to J.Cameron to CLV 31 for no gain.,6,14,2012 -20121021_CLE@IND,2,30,40,CLE,IND,3,1,69,(:40) B.Weeden pass short middle to C.Ogbonnaya to CLV 35 for 4 yards (J.Freeman).,6,14,2012 -20121021_CLE@IND,2,30,40,CLE,IND,1,10,65,(:40) (Shotgun) B.Weeden pass incomplete short right to J.Cooper.,6,14,2012 -20121021_CLE@IND,2,30,35,CLE,IND,2,10,65,(:35) (Shotgun) B.Weeden pass incomplete short right to J.Cooper.,6,14,2012 -20121021_CLE@IND,2,30,30,CLE,IND,3,10,65,(:30) (Shotgun) C.Ogbonnaya up the middle to CLV 41 for 6 yards (J.Freeman).,6,14,2012 -20121021_CLE@IND,2,30,1,CLE,IND,4,4,59,(:01) B.Weeden kneels to CLV 40 for -1 yards. PENALTY on IND Defensive 12 On-field 5 yards enforced at CLV 41 - No Play.,6,14,2012 -20121021_CLE@IND,2,30,0,CLE,IND,1,10,54,(:00) (Shotgun) B.Weeden pass incomplete deep right to J.Gordon (A.Bethea).,6,14,2012 -20121021_CLE@IND,3,30,0,IND,CLE,,,54,P.McAfee kicks 69 yards from IND 35 to CLV -4. J.Cribbs Touchback.,14,6,2012 -20121021_CLE@IND,3,30,0,CLE,IND,1,10,80,(15:00) (Run formation) M.Hardesty right tackle to CLV 19 for -1 yards (J.Hughes).,6,14,2012 -20121021_CLE@IND,3,29,24,CLE,IND,2,11,81,(14:24) B.Weeden pass short middle to G.Little to CLV 27 for 8 yards (K.Conner) [D.Freeney].,6,14,2012 -20121021_CLE@IND,3,28,45,CLE,IND,3,3,73,(13:45) (Shotgun) B.Weeden pass short middle to J.Cooper to CLV 41 for 14 yards (V.Davis).,6,14,2012 -20121021_CLE@IND,3,28,14,CLE,IND,1,10,59,(13:14) (Run formation) M.Hardesty up the middle to CLV 42 for 1 yard (J.Hickman).,6,14,2012 -20121021_CLE@IND,3,27,35,CLE,IND,2,9,58,(12:35) B.Weeden pass short middle to B.Watson to IND 33 for 25 yards (J.Hughes; T.Zbikowski).,6,14,2012 -20121021_CLE@IND,3,27,0,CLE,IND,1,10,33,(12:00) (Run formation) B.Weeden pass deep right to J.Gordon for 33 yards TOUCHDOWN.,6,14,2012 -20121021_CLE@IND,3,27,0,CLE,IND,,,33,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,6,14,2012 -20121021_CLE@IND,3,27,0,CLE,IND,,,33,P.Dawson kicks 73 yards from CLV 35 to IND -8. C.Vaughn Touchback.,13,14,2012 -20121021_CLE@IND,3,26,53,IND,CLE,1,10,80,(11:53) V.Ballard left end to IND 25 for 5 yards (S.Brown).,14,13,2012 -20121021_CLE@IND,3,26,23,IND,CLE,2,5,75,(11:23) V.Ballard left end to IND 31 for 6 yards (C.Robertson).,14,13,2012 -20121021_CLE@IND,3,25,38,IND,CLE,1,10,69,(10:38) A.Luck pass short middle to R.Wayne to IND 39 for 8 yards (B.Skrine).,14,13,2012 -20121021_CLE@IND,3,25,14,IND,CLE,2,2,61,(10:14) V.Ballard up the middle to IND 43 for 4 yards (B.Skrine; C.Robertson).,14,13,2012 -20121021_CLE@IND,3,24,38,IND,CLE,1,10,57,(9:38) A.Luck pass short left to R.Wayne to 50 for 7 yards (S.Brown).,14,13,2012 -20121021_CLE@IND,3,24,3,IND,CLE,2,3,50,(9:03) A.Luck pass short left to D.Avery to CLV 44 for 6 yards (S.Brown).,14,13,2012 -20121021_CLE@IND,3,23,26,IND,CLE,1,10,44,(8:26) (Run formation) D.Carter left end to CLV 39 for 5 yards (D.Jackson).,14,13,2012 -20121021_CLE@IND,3,22,47,IND,CLE,2,5,39,(7:47) (Run formation) D.Carter up the middle to CLV 36 for 3 yards (J.Parker; J.Hughes).,14,13,2012 -20121021_CLE@IND,3,22,7,IND,CLE,3,2,36,(7:07) (Run formation) D.Carter left tackle to CLV 33 for 3 yards (J.Hughes).,14,13,2012 -20121021_CLE@IND,3,21,27,IND,CLE,1,10,33,(6:27) A.Luck pass incomplete deep right to T.Hilton.,14,13,2012 -20121021_CLE@IND,3,21,22,IND,CLE,2,10,33,(6:22) A.Luck pass incomplete short left to R.Wayne.,14,13,2012 -20121021_CLE@IND,3,21,16,IND,CLE,3,10,33,(6:16) (Shotgun) A.Luck pass short middle to D.Allen to CLV 24 for 9 yards (T.Ward) [J.Sheard].,14,13,2012 -20121021_CLE@IND,3,20,31,IND,CLE,4,1,24,(5:31) (Run formation) D.Carter up the middle to CLV 22 for 2 yards (D.Jackson).,14,13,2012 -20121021_CLE@IND,3,19,45,IND,CLE,1,10,22,(4:45) (Run formation) A.Luck sacked at CLV 27 for -5 yards (K.Maiava).,14,13,2012 -20121021_CLE@IND,3,19,45,IND,CLE,2,15,27,(4:45) A.Luck pass incomplete deep right to D.Avery (D.Jackson).,14,13,2012 -20121021_CLE@IND,3,19,2,IND,CLE,3,15,27,(4:02) (Shotgun) PENALTY on IND-W.Justice False Start 5 yards enforced at CLV 27 - No Play.,14,13,2012 -20121021_CLE@IND,3,19,2,IND,CLE,3,20,32,(4:02) (Shotgun) A.Luck pass short right to D.Avery to CLV 19 for 13 yards (B.Skrine).,14,13,2012 -20121021_CLE@IND,3,18,24,IND,CLE,4,7,19,(3:24) A.Vinatieri 38 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,14,13,2012 -20121021_CLE@IND,3,18,24,IND,CLE,,,19,P.McAfee kicks 71 yards from IND 35 to CLV -6. J.Cribbs Touchback.,17,13,2012 -20121021_CLE@IND,3,18,19,CLE,IND,1,10,80,(3:19) B.Weeden pass short right to G.Little to CLV 32 for 12 yards (J.Powers).,13,17,2012 -20121021_CLE@IND,3,17,38,CLE,IND,1,10,68,(2:38) (Run formation) B.Weeden pass short right to G.Little pushed ob at CLV 31 for -1 yards (D.Freeney).,13,17,2012 -20121021_CLE@IND,3,17,12,CLE,IND,2,11,69,(2:12) (Run formation) B.Weeden pass incomplete deep left to J.Gordon [P.Angerer].,13,17,2012 -20121021_CLE@IND,3,17,7,CLE,IND,3,11,69,(2:07) (Shotgun) B.Weeden pass incomplete short middle to C.Ogbonnaya.,13,17,2012 -20121021_CLE@IND,3,17,2,CLE,IND,4,11,69,(2:02) R.Hodges punts 53 yards to IND 16 Center-C.Yount. T.Hilton pushed ob at IND 24 for 8 yards (B.Skrine).,13,17,2012 -20121021_CLE@IND,3,16,54,IND,CLE,1,10,76,(1:54) (Run formation) D.Carter up the middle to IND 27 for 3 yards (D.Jackson). CLV-S.Brown was injured during the play. His return is Probable.,17,13,2012 -20121021_CLE@IND,3,16,25,IND,CLE,2,7,73,(1:25) (Run formation) A.Luck sacked at IND 25 for -2 yards (F.Rucker).,17,13,2012 -20121021_CLE@IND,3,15,45,IND,CLE,3,9,75,(:45) (Shotgun) A.Luck pass incomplete deep right to T.Hilton.,17,13,2012 -20121021_CLE@IND,3,15,40,IND,CLE,4,9,75,(:40) P.McAfee punts 59 yards to CLV 16 Center-M.Overton. J.Cribbs to CLV 33 for 17 yards (M.Overton; J.Lefeged). PENALTY on CLV-T.Carder Illegal Block Above the Waist 10 yards enforced at CLV 26.,17,13,2012 -20121021_CLE@IND,3,15,27,CLE,IND,1,10,84,(:27) (Run formation) PENALTY on CLV-J.Cameron False Start 5 yards enforced at CLV 16 - No Play.,13,17,2012 -20121021_CLE@IND,3,15,27,CLE,IND,1,15,89,(:27) (Run formation) B.Weeden pass incomplete short middle to T.Benjamin (T.Zbikowski).,13,17,2012 -20121021_CLE@IND,3,15,23,CLE,IND,2,15,89,(:23) (Shotgun) B.Weeden pass short left to T.Benjamin to CLV 23 for 12 yards (J.Freeman).,13,17,2012 -20121021_CLE@IND,4,15,0,CLE,IND,3,3,77,(15:00) (Shotgun) B.Weeden pass incomplete short left to J.Gordon (T.Zbikowski).,13,17,2012 -20121021_CLE@IND,4,14,56,CLE,IND,4,3,77,(14:56) R.Hodges punts 40 yards to IND 37 Center-C.Yount downed by CLV-B.Skrine.,13,17,2012 -20121021_CLE@IND,4,14,47,IND,CLE,1,10,63,(14:47) (Run formation) T.Hills reported in as eligible. V.Ballard right end to IND 39 for 2 yards (J.Haden).,17,13,2012 -20121021_CLE@IND,4,14,8,IND,CLE,2,8,61,(14:08) (Run formation) A.Luck scrambles left end ran ob at IND 43 for 4 yards (K.Maiava).,17,13,2012 -20121021_CLE@IND,4,13,34,IND,CLE,3,4,57,(13:34) (Shotgun) A.Luck pass incomplete short left to D.Avery.,17,13,2012 -20121021_CLE@IND,4,13,29,IND,CLE,4,4,57,(13:29) P.McAfee punts 57 yards to end zone Center-M.Overton Touchback.,17,13,2012 -20121021_CLE@IND,4,13,20,CLE,IND,1,10,80,(13:20) (Run formation) M.Hardesty right tackle to CLV 29 for 9 yards (A.Bethea).,13,17,2012 -20121021_CLE@IND,4,12,53,CLE,IND,2,1,71,(12:53) (Run formation) M.Hardesty up the middle to CLV 31 for 2 yards (A.Bethea).,13,17,2012 -20121021_CLE@IND,4,12,13,CLE,IND,1,10,69,(12:13) (Run formation) B.Weeden pass incomplete deep right to J.Gordon.,13,17,2012 -20121021_CLE@IND,4,12,4,CLE,IND,2,10,69,(12:04) (Run formation) M.Hardesty up the middle to CLV 37 for 6 yards (K.Conner).,13,17,2012 -20121021_CLE@IND,4,11,25,CLE,IND,3,4,63,(11:25) (Shotgun) B.Weeden pass short right to B.Watson to CLV 39 for 2 yards (T.Zbikowski) [M.Fokou].,13,17,2012 -20121021_CLE@IND,4,10,45,CLE,IND,4,2,61,(10:45) R.Hodges punts 42 yards to IND 19 Center-C.Yount fair catch by T.Hilton.,13,17,2012 -20121021_CLE@IND,4,10,38,IND,CLE,1,10,81,(10:38) (Run formation) V.Ballard left end to IND 25 for 6 yards (E.Stephens).,17,13,2012 -20121021_CLE@IND,4,10,3,IND,CLE,2,4,75,(10:03) V.Ballard right end to IND 33 for 8 yards (T.Ward).,17,13,2012 -20121021_CLE@IND,4,9,22,IND,CLE,1,10,67,(9:22) V.Ballard right end to IND 34 for 1 yard (T.Ward). PENALTY on CLV-D.Jackson Unnecessary Roughness 15 yards enforced at IND 34.,17,13,2012 -20121021_CLE@IND,4,8,55,IND,CLE,1,10,51,(8:55) V.Ballard left guard to CLV 44 for 7 yards (I.Kitchen).,17,13,2012 -20121021_CLE@IND,4,8,16,IND,CLE,2,3,44,(8:16) V.Ballard up the middle to CLV 44 for no gain (B.Skrine).,17,13,2012 -20121021_CLE@IND,4,7,35,IND,CLE,3,3,44,(7:35) (Run formation) A.Luck sacked at CLV 49 for -5 yards (S.Brown). FUMBLES (S.Brown) RECOVERED by CLV-S.Brown at 50. S.Brown to 50 for no gain (A.Luck). CLV - Brown credited with 6 sack yards.,17,13,2012 -20121021_CLE@IND,4,7,25,CLE,IND,1,10,50,(7:25) (Run formation) B.Weeden pass short right to T.Benjamin to IND 41 for 9 yards (C.Vaughn).,13,17,2012 -20121021_CLE@IND,4,6,51,CLE,IND,2,1,41,(6:51) (Run formation) B.Weeden pass incomplete deep right to T.Benjamin [J.Hughes].,13,17,2012 -20121021_CLE@IND,4,6,45,CLE,IND,3,1,41,(6:45) (Run formation) B.Weeden pass incomplete deep middle to J.Gordon [A.Johnson].,13,17,2012 -20121021_CLE@IND,4,6,38,CLE,IND,4,1,41,(6:38) R.Hodges punts 21 yards to IND 20 Center-C.Yount out of bounds.,13,17,2012 -20121021_CLE@IND,4,6,31,IND,CLE,1,10,80,(6:31) (Run formation) D.Carter up the middle to IND 23 for 3 yards (J.Johnson; F.Rucker).,17,13,2012 -20121021_CLE@IND,4,5,51,IND,CLE,2,7,77,(5:51) (Shotgun) A.Luck pass short left to R.Wayne to IND 29 for 6 yards (C.Robertson).,17,13,2012 -20121021_CLE@IND,4,5,11,IND,CLE,3,1,71,(5:11) (Run formation) D.Carter up the middle to IND 29 for no gain (J.Sheard).,17,13,2012 -20121021_CLE@IND,4,4,28,IND,CLE,4,1,71,(4:28) P.McAfee punts 49 yards to CLV 22 Center-M.Overton. J.Cribbs to CLV 26 for 4 yards (M.Harvey). PENALTY on IND-M.Fokou Offensive Holding 10 yards enforced at IND 29 - No Play.,17,13,2012 -20121021_CLE@IND,4,4,16,IND,CLE,4,11,81,(4:16) P.McAfee punts 52 yards to CLV 29 Center-M.Overton. J.Cribbs to CLV 31 for 2 yards (L.Brazill).,17,13,2012 -20121021_CLE@IND,4,4,8,CLE,IND,1,10,69,(4:08) (Shotgun) B.Weeden pass short left to J.Cooper to CLV 45 for 14 yards (J.Powers).,13,17,2012 -20121021_CLE@IND,4,3,33,CLE,IND,1,10,55,(3:33) (Shotgun) B.Weeden pass short right to T.Benjamin to IND 43 for 12 yards (C.Vaughn).,13,17,2012 -20121021_CLE@IND,4,2,52,CLE,IND,1,10,43,(2:52) (Shotgun) B.Weeden pass incomplete deep left to J.Gordon.,13,17,2012 -20121021_CLE@IND,4,2,46,CLE,IND,2,10,43,(2:46) (Shotgun) M.Hardesty up the middle to IND 39 for 4 yards (R.Mathews; J.Freeman).,13,17,2012 -20121021_CLE@IND,4,2,3,CLE,IND,3,6,39,(2:03) (Shotgun) B.Weeden pass incomplete deep right to G.Little [P.Angerer].,13,17,2012 -20121021_CLE@IND,4,1,57,CLE,IND,4,6,39,(1:57) (Shotgun) B.Weeden pass incomplete short middle to J.Cooper (J.Powers).,13,17,2012 -20121021_CLE@IND,4,1,54,IND,CLE,1,10,61,(1:54) (Run formation) V.Ballard left end to IND 36 for -3 yards (J.Hughes).,17,13,2012 -20121021_CLE@IND,4,1,50,IND,CLE,2,13,64,(1:50) (Run formation) V.Ballard left end pushed ob at CLV 38 for 26 yards (U.Young).,17,13,2012 -20121021_CLE@IND,4,1,42,IND,CLE,1,10,38,(1:42) (Run formation) V.Ballard left tackle to CLV 34 for 4 yards (T.Ward).,17,13,2012 -20121021_CLE@IND,4,1,38,IND,CLE,2,6,34,(1:38) (Run formation) V.Ballard left tackle to CLV 34 for no gain (K.Maiava; S.Brown).,17,13,2012 -20121021_CLE@IND,4,0,53,IND,CLE,3,6,34,(:53) (Run formation) V.Ballard up the middle to CLV 35 for -1 yards (J.Parker; B.Winn).,17,13,2012 -20121021_CLE@IND,4,0,7,IND,CLE,4,7,35,(:07) P.McAfee punts 35 yards to end zone Center-M.Overton Touchback.,17,13,2012 -20121021_CLE@IND,4,0,1,CLE,IND,1,10,80,(:01) (Shotgun) B.Weeden pass short left to J.Cribbs to CLV 28 for 8 yards. Lateral to G.Little to CLV 36 for 8 yards. Lateral to J.Cooper to CLV 40 for 4 yards. Lateral to G.Little to CLV 38 for -2 yards. Lateral to J.Gordon to CLV 46 for 8 yards. Lateral to B.Weeden to CLV 37 for -9 yards. FUMBLES touched at CLV 37 recovered by CLV-J.Cribbs at CLV 40. J.Cribbs pushed ob at CLV 42 for 2 yards (J.Lefeged).,13,17,2012 -20121021_CLE@IND,4,0,1,CLE,IND,,,80,                      ,13,17,2012 -20121021_ARI@MIN,1,59,48,MIN,ARI,1,8,92,(14:48) A.Peterson right tackle to MIN 10 for 2 yards (C.Campbell). PENALTY on MIN-J.Sullivan Offensive Holding 4 yards enforced at MIN 8 - No Play.,0,0,2012 -20121021_ARI@MIN,1,59,48,MIN,ARI,1,10,92,(14:48) A.Peterson right tackle to MIN 10 for 2 yards (C.Campbell). PENALTY on MIN-J.Sullivan Offensive Holding 4 yards enforced at MIN 8 - No Play.,0,0,2012 -20121021_ARI@MIN,1,59,32,MIN,ARI,1,14,96,(14:32) A.Peterson right tackle to MIN 6 for 2 yards (A.Wilson).,0,0,2012 -20121021_ARI@MIN,1,58,56,MIN,ARI,2,12,94,(13:56) C.Ponder pass incomplete short left to A.Peterson.,0,0,2012 -20121021_ARI@MIN,1,58,50,MIN,ARI,3,12,94,(13:50) C.Ponder pass short left to M.Jenkins to MIN 13 for 7 yards (P.Peterson; W.Gay).,0,0,2012 -20121021_ARI@MIN,1,58,12,MIN,ARI,4,5,87,(13:12) C.Kluwe punts 35 yards to MIN 48 Center-C.Loeffler downed by MIN-L.Dean.,0,0,2012 -20121021_ARI@MIN,1,58,3,ARI,MIN,1,10,48,(13:03) J.Skelton pass short right to L.Fitzgerald to MIN 46 for 2 yards (A.Winfield).,0,0,2012 -20121021_ARI@MIN,1,57,30,ARI,MIN,2,8,46,(12:30) L.Stephens-Howling up the middle to MIN 46 for no gain (E.Henderson).,0,0,2012 -20121021_ARI@MIN,1,56,50,ARI,MIN,3,8,46,(11:50) J.Skelton pass incomplete short middle to E.Doucet.,0,0,2012 -20121021_ARI@MIN,1,56,43,ARI,MIN,4,8,46,(11:43) D.Zastudil punts 34 yards to MIN 12 Center-M.Leach fair catch by M.Sherels.,0,0,2012 -20121021_ARI@MIN,1,56,35,MIN,ARI,1,10,88,(11:35) A.Peterson left tackle to MIN 39 for 27 yards (A.Wilson; J.Sanders).,0,0,2012 -20121021_ARI@MIN,1,55,54,MIN,ARI,1,10,61,(10:54) A.Peterson right guard to MIN 45 for 6 yards (P.Lenon; S.Acho).,0,0,2012 -20121021_ARI@MIN,1,55,12,MIN,ARI,2,4,55,(10:12) (Shotgun) P.Harvin up the middle to 50 for 5 yards (D.Washington).,0,0,2012 -20121021_ARI@MIN,1,54,31,MIN,ARI,1,10,50,(9:31) (Shotgun) C.Ponder pass short right to J.Simpson to ARZ 42 for 8 yards (J.Fleming).,0,0,2012 -20121021_ARI@MIN,1,53,53,MIN,ARI,2,2,42,(8:53) C.Ponder pass incomplete deep right to J.Simpson. PENALTY on ARZ-W.Gay Defensive Pass Interference 29 yards enforced at ARZ 42 - No Play.,0,0,2012 -20121021_ARI@MIN,1,53,46,MIN,ARI,1,10,13,(8:46) A.Peterson left end for 13 yards TOUCHDOWN.,0,0,2012 -20121021_ARI@MIN,1,53,46,MIN,ARI,,,13,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121021_ARI@MIN,1,53,46,MIN,ARI,,,13,B.Walsh kicks 66 yards from MIN 35 to ARZ -1. W.Powell to ARZ 13 for 14 yards (R.Ellison). FUMBLES (R.Ellison) recovered by ARZ-E.Doucet at ARZ 12. E.Doucet to ARZ 12 for no gain (L.Dean).,7,0,2012 -20121021_ARI@MIN,1,53,32,ARI,MIN,1,10,88,(8:32) L.Stephens-Howling left end to ARZ 28 for 16 yards (J.Sanford).,0,7,2012 -20121021_ARI@MIN,1,52,51,ARI,MIN,1,10,72,(7:51) (Shotgun) J.Skelton pass short middle to R.Housler to ARZ 37 for 9 yards (A.Winfield).,0,7,2012 -20121021_ARI@MIN,1,52,16,ARI,MIN,2,1,63,(7:16) J.Skelton pass short right to M.Floyd to ARZ 44 for 7 yards (H.Smith).,0,7,2012 -20121021_ARI@MIN,1,51,37,ARI,MIN,1,10,56,(6:37) L.Stephens-Howling left guard to ARZ 47 for 3 yards (L.Guion).,0,7,2012 -20121021_ARI@MIN,1,51,3,ARI,MIN,2,7,53,(6:03) L.Stephens-Howling up the middle to ARZ 47 for no gain (A.Winfield).,0,7,2012 -20121021_ARI@MIN,1,50,25,ARI,MIN,3,7,53,(5:25) (Shotgun) J.Skelton pass short left to A.Roberts pushed ob at MIN 39 for 14 yards (H.Smith).,0,7,2012 -20121021_ARI@MIN,1,49,45,ARI,MIN,1,10,39,(4:45) J.Skelton pass incomplete deep right to L.Fitzgerald.,0,7,2012 -20121021_ARI@MIN,1,49,39,ARI,MIN,2,10,39,(4:39) L.Stephens-Howling up the middle to MIN 33 for 6 yards (J.Brinkley; E.Henderson).,0,7,2012 -20121021_ARI@MIN,1,48,58,ARI,MIN,3,4,33,(3:58) (Shotgun) J.Skelton pass short right to L.Fitzgerald to MIN 29 for 4 yards (C.Cook).,0,7,2012 -20121021_ARI@MIN,1,48,16,ARI,MIN,1,10,29,(3:16) L.Stephens-Howling up the middle to MIN 25 for 4 yards (J.Brinkley).,0,7,2012 -20121021_ARI@MIN,1,47,38,ARI,MIN,2,6,25,(2:38) L.Stephens-Howling left tackle to MIN 21 for 4 yards (J.Allen; B.Robison).,0,7,2012 -20121021_ARI@MIN,1,46,57,ARI,MIN,3,2,21,(1:57) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to MIN 14 for 7 yards (A.Winfield).,0,7,2012 -20121021_ARI@MIN,1,46,19,ARI,MIN,1,10,14,(1:19) L.Stephens-Howling right end to MIN 14 for no gain (B.Robison).,0,7,2012 -20121021_ARI@MIN,1,45,31,ARI,MIN,2,10,14,(:31) (Shotgun) J.Skelton sacked at MIN 19 for -5 yards (B.Robison). FUMBLES (B.Robison) RECOVERED by MIN-K.Williams at MIN 16. K.Williams to MIN 16 for no gain (Team).,0,7,2012 -20121021_ARI@MIN,1,45,20,MIN,ARI,1,10,84,(:20) A.Peterson left end to MIN 13 for -3 yards (C.Campbell; S.Acho).,7,0,2012 -20121021_ARI@MIN,2,45,0,MIN,ARI,2,13,87,(15:00) C.Ponder pass short right intended for K.Rudolph INTERCEPTED by P.Lenon at MIN 16. P.Lenon to MIN 16 for no gain (A.Peterson).,7,0,2012 -20121021_ARI@MIN,2,44,51,ARI,MIN,1,10,16,(14:51) (Shotgun) J.Skelton pass short right to E.Doucet to MIN 8 for 8 yards (H.Smith).,0,7,2012 -20121021_ARI@MIN,2,44,11,ARI,MIN,2,2,8,(14:11) L.Stephens-Howling left guard to MIN 3 for 5 yards (C.Greenway).,0,7,2012 -20121021_ARI@MIN,2,43,32,ARI,MIN,1,3,3,(13:32) L.Stephens-Howling up the middle to MIN 3 for no gain (C.Greenway; L.Guion).,0,7,2012 -20121021_ARI@MIN,2,42,47,ARI,MIN,2,3,3,(12:47) L.Stephens-Howling up the middle for 3 yards TOUCHDOWN.,0,7,2012 -20121021_ARI@MIN,2,42,47,ARI,MIN,,,3,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,7,2012 -20121021_ARI@MIN,2,42,47,ARI,MIN,,,3,J.Feely kicks 65 yards from ARZ 35 to MIN 0. P.Harvin to MIN 28 for 28 yards (M.Adams).,7,7,2012 -20121021_ARI@MIN,2,42,36,MIN,ARI,1,10,72,(12:36) A.Peterson left tackle to MIN 36 for 8 yards (J.Sanders).,7,7,2012 -20121021_ARI@MIN,2,41,56,MIN,ARI,2,2,64,(11:56) C.Ponder pass short right to P.Harvin to 50 for 14 yards (S.Acho).,7,7,2012 -20121021_ARI@MIN,2,41,16,MIN,ARI,1,10,50,(11:16) A.Peterson left tackle to ARZ 33 for 17 yards (J.Sanders).,7,7,2012 -20121021_ARI@MIN,2,40,38,MIN,ARI,1,10,33,(10:38) A.Peterson up the middle to ARZ 21 for 12 yards (P.Lenon; J.Sanders).,7,7,2012 -20121021_ARI@MIN,2,39,49,MIN,ARI,1,10,21,(9:49) C.Ponder sacked at ARZ 29 for -8 yards (D.Washington).,7,7,2012 -20121021_ARI@MIN,2,39,22,MIN,ARI,2,18,29,(9:22) C.Ponder pass short right to P.Harvin to ARZ 15 for 14 yards (P.Peterson).,7,7,2012 -20121021_ARI@MIN,2,38,28,MIN,ARI,3,4,15,(8:28) (Shotgun) C.Ponder pass incomplete short left to T.Gerhart. PENALTY on ARZ-D.Dockett Defensive Holding 5 yards enforced at ARZ 15 - No Play.,7,7,2012 -20121021_ARI@MIN,2,38,25,MIN,ARI,1,10,10,(8:25) PENALTY on MIN-S.Burton False Start 5 yards enforced at ARZ 10 - No Play.,7,7,2012 -20121021_ARI@MIN,2,38,25,MIN,ARI,1,15,15,(8:25) A.Peterson up the middle to ARZ 12 for 3 yards (D.Washington).,7,7,2012 -20121021_ARI@MIN,2,37,47,MIN,ARI,2,12,12,(7:47) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin. PENALTY on ARZ-P.Peterson Defensive Pass Interference 3 yards enforced at ARZ 12 - No Play.,7,7,2012 -20121021_ARI@MIN,2,37,43,MIN,ARI,1,9,9,(7:43) A.Peterson up the middle to ARZ 8 for 1 yard (P.Lenon; S.Acho).,7,7,2012 -20121021_ARI@MIN,2,37,9,MIN,ARI,2,8,8,(7:09) P.Harvin up the middle to ARZ 3 for 5 yards (A.Wilson; J.Sanders).,7,7,2012 -20121021_ARI@MIN,2,36,31,MIN,ARI,3,3,3,(6:31) (Shotgun) C.Ponder pass short right to P.Harvin for 3 yards TOUCHDOWN.,7,7,2012 -20121021_ARI@MIN,2,36,31,MIN,ARI,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,7,2012 -20121021_ARI@MIN,2,36,31,MIN,ARI,,,3,B.Walsh kicks 72 yards from MIN 35 to ARZ -7. W.Powell Touchback.,14,7,2012 -20121021_ARI@MIN,2,36,26,ARI,MIN,1,10,80,(6:26) PENALTY on ARZ-D.Colledge False Start 5 yards enforced at ARZ 20 - No Play.,7,14,2012 -20121021_ARI@MIN,2,36,26,ARI,MIN,1,15,85,(6:26) W.Powell right guard to ARZ 18 for 3 yards (B.Robison).,7,14,2012 -20121021_ARI@MIN,2,35,47,ARI,MIN,2,12,82,(5:47) J.Skelton pass deep middle to R.Housler to ARZ 40 for 22 yards (H.Smith).,7,14,2012 -20121021_ARI@MIN,2,35,14,ARI,MIN,1,10,60,(5:14) W.Powell left end to ARZ 47 for 7 yards (H.Smith; F.Evans).,7,14,2012 -20121021_ARI@MIN,2,34,31,ARI,MIN,2,3,53,(4:31) L.Stephens-Howling left guard to ARZ 48 for 1 yard (C.Greenway).,7,14,2012 -20121021_ARI@MIN,2,34,3,ARI,MIN,3,2,52,(4:03) (Shotgun) J.Skelton pass incomplete short middle to L.Fitzgerald.,7,14,2012 -20121021_ARI@MIN,2,33,59,ARI,MIN,4,2,52,(3:59) D.Zastudil punts 46 yards to MIN 6 Center-M.Leach. M.Sherels to MIN 6 for no gain (M.Leach). PENALTY on MIN-A.Jefferson Offensive Holding 3 yards enforced at MIN 6.,7,14,2012 -20121021_ARI@MIN,2,33,49,MIN,ARI,1,10,97,(3:49) A.Peterson left guard to MIN 9 for 6 yards (D.Washington).,14,7,2012 -20121021_ARI@MIN,2,33,15,MIN,ARI,2,4,91,(3:15) C.Ponder pass short right to A.Peterson pushed ob at MIN 11 for 2 yards (Q.Groves).,14,7,2012 -20121021_ARI@MIN,2,32,34,MIN,ARI,3,2,89,(2:34) T.Gerhart up the middle to MIN 12 for 1 yard (V.Holliday).,14,7,2012 -20121021_ARI@MIN,2,32,0,MIN,ARI,4,1,88,(2:00) C.Kluwe punts 38 yards to 50 Center-C.Loeffler fair catch by P.Peterson. PENALTY on MIN-T.McKenzie Ineligible Downfield Kick 5 yards enforced at 50.,14,7,2012 -20121021_ARI@MIN,2,31,51,ARI,MIN,1,10,45,(1:51) J.Skelton pass short right to E.Doucet to MIN 40 for 5 yards.,7,14,2012 -20121021_ARI@MIN,2,31,46,ARI,MIN,2,5,40,(1:46) (Shotgun) J.Skelton sacked at MIN 47 for -7 yards (B.Robison).,7,14,2012 -20121021_ARI@MIN,2,31,1,ARI,MIN,3,12,47,(1:01) (Shotgun) J.Skelton pass incomplete short left to L.Stephens-Howling.,7,14,2012 -20121021_ARI@MIN,2,30,58,ARI,MIN,4,12,47,(:58) D.Zastudil punts 34 yards to MIN 13 Center-M.Leach fair catch by M.Sherels.,7,14,2012 -20121021_ARI@MIN,2,30,50,MIN,ARI,1,10,87,(:50) (Shotgun) C.Ponder scrambles up the middle to MIN 15 for 2 yards (D.Dockett).,14,7,2012 -20121021_ARI@MIN,2,30,19,MIN,ARI,2,8,85,(:19) (Shotgun) C.Ponder pass short left to P.Harvin to MIN 21 for 6 yards (D.Washington).,14,7,2012 -20121021_ARI@MIN,2,30,14,MIN,ARI,3,2,79,(:14) (Shotgun) C.Ponder pass short left intended for A.Peterson INTERCEPTED by S.Acho at MIN 29. S.Acho to MIN 29 for no gain (Team). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,7,2012 -20121021_ARI@MIN,2,30,5,ARI,MIN,1,10,29,(:05) J.Feely 47 yard field goal is No Good Wide Right Center-M.Leach Holder-D.Zastudil.,7,14,2012 -20121021_ARI@MIN,3,30,0,MIN,ARI,,,29,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,14,7,2012 -20121021_ARI@MIN,3,30,0,ARI,MIN,1,10,80,(15:00) L.Stephens-Howling right end to ARZ 24 for 4 yards (J.Brinkley).,7,14,2012 -20121021_ARI@MIN,3,29,23,ARI,MIN,2,6,76,(14:23) (Shotgun) J.Skelton pass incomplete short left to R.Housler.,7,14,2012 -20121021_ARI@MIN,3,29,17,ARI,MIN,3,6,76,(14:17) (Shotgun) J.Skelton pass short middle intended for E.Doucet INTERCEPTED by H.Smith at ARZ 31. H.Smith for 31 yards TOUCHDOWN.,7,14,2012 -20121021_ARI@MIN,3,29,17,MIN,ARI,,,76,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,7,2012 -20121021_ARI@MIN,3,29,17,MIN,ARI,,,76,B.Walsh kicks 73 yards from MIN 35 to ARZ -8. W.Powell Touchback.,21,7,2012 -20121021_ARI@MIN,3,29,3,ARI,MIN,1,10,80,(14:03) L.Stephens-Howling left end to ARZ 47 for 27 yards (J.Brinkley).,7,21,2012 -20121021_ARI@MIN,3,28,22,ARI,MIN,1,10,53,(13:22) PENALTY on ARZ-B.Massie False Start 5 yards enforced at ARZ 47 - No Play.,7,21,2012 -20121021_ARI@MIN,3,28,7,ARI,MIN,1,15,58,(13:07) E.Doucet right end pushed ob at ARZ 48 for 6 yards (J.Brinkley).,7,21,2012 -20121021_ARI@MIN,3,27,32,ARI,MIN,2,9,52,(12:32) (Shotgun) J.Skelton pass short middle to R.Housler to MIN 45 for 7 yards (L.Guion).,7,21,2012 -20121021_ARI@MIN,3,26,44,ARI,MIN,3,2,45,(11:44) (Shotgun) J.Skelton pass short right to R.Housler to MIN 38 for 7 yards (J.Robinson). Penalty on MIN-J.Allen Defensive Offside declined.,7,21,2012 -20121021_ARI@MIN,3,26,16,ARI,MIN,1,10,38,(11:16) J.Skelton pass incomplete deep right to A.Roberts [C.Ballard].,7,21,2012 -20121021_ARI@MIN,3,26,10,ARI,MIN,2,10,38,(11:10) (Shotgun) L.Stephens-Howling up the middle to MIN 31 for 7 yards (J.Sanford).,7,21,2012 -20121021_ARI@MIN,3,25,26,ARI,MIN,3,3,31,(10:26) (Shotgun) J.Skelton pass deep middle intended for L.Fitzgerald INTERCEPTED by C.Cook at MIN 1. C.Cook to ARZ 38 for 61 yards (J.Skelton). PENALTY on MIN-B.Robison Defensive Offside 5 yards enforced at MIN 31 - No Play.,7,21,2012 -20121021_ARI@MIN,3,25,6,ARI,MIN,1,10,26,(10:06) W.Powell left guard to MIN 23 for 3 yards (C.Greenway).,7,21,2012 -20121021_ARI@MIN,3,24,22,ARI,MIN,2,7,23,(9:22) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to MIN 23 for no gain (F.Evans; A.Winfield).,7,21,2012 -20121021_ARI@MIN,3,23,38,ARI,MIN,3,7,23,(8:38) (Shotgun) J.Skelton pass short right to W.Powell to MIN 18 for 5 yards (J.Brinkley).,7,21,2012 -20121021_ARI@MIN,3,22,47,ARI,MIN,4,2,18,(7:47) J.Skelton sacked at MIN 18 for 0 yards (A.Winfield).,7,21,2012 -20121021_ARI@MIN,3,22,41,MIN,ARI,1,10,81,(7:41) Change of yard line due to change of possession. C.Ponder pass short right to K.Rudolph to MIN 38 for 19 yards (R.Johnson). PENALTY on MIN Illegal Formation 5 yards enforced at MIN 19 - No Play.,21,7,2012 -20121021_ARI@MIN,3,22,19,MIN,ARI,1,15,86,(7:19) A.Peterson up the middle to MIN 18 for 4 yards (P.Lenon; D.Washington).,21,7,2012 -20121021_ARI@MIN,3,21,41,MIN,ARI,2,11,82,(6:41) A.Peterson left guard to MIN 40 for 22 yards (A.Wilson).,21,7,2012 -20121021_ARI@MIN,3,20,57,MIN,ARI,1,10,60,(5:57) C.Ponder pass incomplete short right to Unidentified.,21,7,2012 -20121021_ARI@MIN,3,20,50,MIN,ARI,2,10,60,(5:50) C.Ponder pass incomplete short left to P.Harvin [S.Acho].,21,7,2012 -20121021_ARI@MIN,3,20,40,MIN,ARI,3,10,60,(5:40) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,21,7,2012 -20121021_ARI@MIN,3,20,35,MIN,ARI,4,10,60,(5:35) C.Kluwe punts 46 yards to ARZ 14 Center-C.Loeffler. P.Peterson to ARZ 19 for 5 yards (A.Sendejo).,21,7,2012 -20121021_ARI@MIN,3,20,24,ARI,MIN,1,10,81,(5:24) J.Skelton pass incomplete deep middle to R.Housler.,7,21,2012 -20121021_ARI@MIN,3,20,19,ARI,MIN,2,10,81,(5:19) (Shotgun) E.Doucet up the middle to ARZ 22 for 3 yards (A.Winfield).,7,21,2012 -20121021_ARI@MIN,3,19,38,ARI,MIN,3,7,78,(4:38) (Shotgun) J.Skelton sacked at ARZ 18 for -4 yards (J.Allen).,7,21,2012 -20121021_ARI@MIN,3,19,8,ARI,MIN,4,11,82,(4:08) D.Zastudil punts 52 yards to MIN 30 Center-M.Leach downed by ARZ-E.Doucet.,7,21,2012 -20121021_ARI@MIN,3,18,56,MIN,ARI,1,10,70,(3:56) (Shotgun) C.Ponder pass short left to A.Peterson to MIN 34 for 4 yards (Q.Groves).,21,7,2012 -20121021_ARI@MIN,3,18,24,MIN,ARI,2,6,66,(3:24) A.Peterson left guard to MIN 38 for 4 yards (D.Washington).,21,7,2012 -20121021_ARI@MIN,3,17,46,MIN,ARI,3,2,62,(2:46) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (A.Wilson).,21,7,2012 -20121021_ARI@MIN,3,17,41,MIN,ARI,4,2,62,(2:41) C.Kluwe punts 36 yards to ARZ 26 Center-C.Loeffler out of bounds.,21,7,2012 -20121021_ARI@MIN,3,17,34,ARI,MIN,1,10,74,(2:34) L.Stephens-Howling up the middle to ARZ 22 for -4 yards (C.Greenway).,7,21,2012 -20121021_ARI@MIN,3,16,53,ARI,MIN,2,14,78,(1:53) (Shotgun) J.Skelton pass short left to A.Roberts to ARZ 38 for 16 yards (J.Sanford).,7,21,2012 -20121021_ARI@MIN,3,16,8,ARI,MIN,1,10,62,(1:08) L.Stephens-Howling up the middle to ARZ 42 for 4 yards (K.Williams).,7,21,2012 -20121021_ARI@MIN,3,15,27,ARI,MIN,2,6,58,(:27) L.Stephens-Howling left tackle pushed ob at MIN 47 for 11 yards (J.Sanford).,7,21,2012 -20121021_ARI@MIN,3,15,1,ARI,MIN,1,10,47,(:01) L.Stephens-Howling right end to MIN 40 for 7 yards (Team).,7,21,2012 -20121021_ARI@MIN,4,15,0,ARI,MIN,2,3,40,(15:00) W.Powell up the middle to MIN 40 for no gain (A.Winfield).,7,21,2012 -20121021_ARI@MIN,4,14,16,ARI,MIN,3,3,40,(14:16) (Shotgun) J.Skelton pass incomplete short middle to E.Doucet (A.Jefferson).,7,21,2012 -20121021_ARI@MIN,4,14,12,ARI,MIN,4,3,40,(14:12) D.Zastudil punts 31 yards to MIN 9 Center-M.Leach fair catch by M.Sherels.,7,21,2012 -20121021_ARI@MIN,4,14,5,MIN,ARI,1,10,91,(14:05) C.Ponder sacked at MIN 9 for 0 yards (D.Washington).,21,7,2012 -20121021_ARI@MIN,4,13,31,MIN,ARI,2,10,91,(13:31) A.Peterson up the middle to MIN 13 for 4 yards (A.Wilson).,21,7,2012 -20121021_ARI@MIN,4,12,55,MIN,ARI,3,6,87,(12:55) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,21,7,2012 -20121021_ARI@MIN,4,12,51,MIN,ARI,4,6,87,(12:51) C.Kluwe punts 44 yards to ARZ 43 Center-C.Loeffler. P.Peterson to ARZ 41 for -2 yards (T.McKenzie). PENALTY on ARZ-R.Johnson Illegal Blindside Block 15 yards enforced at ARZ 41.,21,7,2012 -20121021_ARI@MIN,4,12,38,ARI,MIN,1,10,74,(12:38) (Shotgun) J.Skelton pass short left to L.Stephens-Howling pushed ob at ARZ 45 for 19 yards (B.Robison).,7,21,2012 -20121021_ARI@MIN,4,12,7,ARI,MIN,1,10,55,(12:07) L.Stephens-Howling left guard to MIN 49 for 6 yards (B.Robison).,7,21,2012 -20121021_ARI@MIN,4,11,29,ARI,MIN,2,4,49,(11:29) J.Skelton sacked at 50 for -1 yards (J.Allen).,7,21,2012 -20121021_ARI@MIN,4,10,52,ARI,MIN,3,5,50,(10:52) (Shotgun) J.Skelton pass incomplete short left to L.Fitzgerald.,7,21,2012 -20121021_ARI@MIN,4,10,47,ARI,MIN,4,5,50,(10:47) D.Zastudil punts 37 yards to MIN 13 Center-M.Leach fair catch by M.Sherels.,7,21,2012 -20121021_ARI@MIN,4,10,39,MIN,ARI,1,10,87,(10:39) C.Ponder pass incomplete short right to K.Rudolph.,21,7,2012 -20121021_ARI@MIN,4,10,35,MIN,ARI,2,10,87,(10:35) A.Peterson right tackle to MIN 18 for 5 yards (D.Washington).,21,7,2012 -20121021_ARI@MIN,4,9,55,MIN,ARI,3,5,82,(9:55) (Shotgun) C.Ponder sacked at MIN 11 for -7 yards (N.Eason).,21,7,2012 -20121021_ARI@MIN,4,9,30,MIN,ARI,4,12,89,(9:30) C.Kluwe punts 51 yards to ARZ 38 Center-C.Loeffler. P.Peterson to ARZ 36 for -2 yards (M.Sherels). Penalty on ARZ-J.Bethel Defensive Offside declined.,21,7,2012 -20121021_ARI@MIN,4,9,19,ARI,MIN,1,10,64,(9:19) J.Skelton pass short middle to A.Roberts to 50 for 14 yards (J.Sanford).,7,21,2012 -20121021_ARI@MIN,4,8,47,ARI,MIN,1,10,50,(8:47) J.Skelton pass short middle to L.Stephens-Howling to MIN 37 for 13 yards (L.Guion; C.Greenway).,7,21,2012 -20121021_ARI@MIN,4,8,10,ARI,MIN,1,10,37,(8:10) (Shotgun) L.Stephens-Howling up the middle to MIN 35 for 2 yards (L.Guion). PENALTY on ARZ-R.Ohrnberger Offensive Holding 10 yards enforced at MIN 37 - No Play.,7,21,2012 -20121021_ARI@MIN,4,7,42,ARI,MIN,1,20,47,(7:42) (Shotgun) J.Skelton pass short right to E.Doucet to MIN 41 for 6 yards (A.Winfield).,7,21,2012 -20121021_ARI@MIN,4,7,1,ARI,MIN,2,14,41,(7:01) (Shotgun) J.Skelton pass short middle to R.Housler to MIN 32 for 9 yards (J.Robinson).,7,21,2012 -20121021_ARI@MIN,4,6,27,ARI,MIN,3,5,32,(6:27) (Shotgun) J.Skelton pass incomplete deep middle to A.Roberts.,7,21,2012 -20121021_ARI@MIN,4,6,27,ARI,MIN,4,5,32,(6:27) (Shotgun) PENALTY on ARZ-J.Skelton Delay of Game 5 yards enforced at MIN 32 - No Play.,7,21,2012 -20121021_ARI@MIN,4,6,21,ARI,MIN,4,10,37,(6:21) (Shotgun) J.Skelton sacked at MIN 46 for -9 yards (K.Williams).,7,21,2012 -20121021_ARI@MIN,4,6,16,MIN,ARI,1,10,54,(6:16) A.Peterson up the middle to MIN 49 for 3 yards (A.Wilson). ARZ-P.Lenon was injured during the play. His return is Probable.,21,7,2012 -20121021_ARI@MIN,4,5,31,MIN,ARI,2,7,51,(5:31) A.Peterson up the middle to ARZ 45 for 6 yards (W.Gay).,21,7,2012 -20121021_ARI@MIN,4,4,46,MIN,ARI,3,1,45,(4:46) A.Peterson right guard to ARZ 45 for no gain (S.Bradley; W.Gay).,21,7,2012 -20121021_ARI@MIN,4,4,4,MIN,ARI,4,1,45,(4:04) C.Kluwe punts 30 yards to ARZ 15 Center-C.Loeffler. P.Peterson pushed ob at ARZ 21 for 6 yards (R.Ellison).,21,7,2012 -20121021_ARI@MIN,4,3,56,ARI,MIN,1,10,79,(3:56) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to ARZ 37 for 16 yards (C.Cook).,7,21,2012 -20121021_ARI@MIN,4,3,32,ARI,MIN,1,10,63,(3:32) (Shotgun) J.Skelton pass deep middle to A.Roberts to MIN 42 for 21 yards (A.Winfield).,7,21,2012 -20121021_ARI@MIN,4,3,6,ARI,MIN,1,10,42,(3:06) (Shotgun) J.Skelton sacked at ARZ 49 for -9 yards (B.Robison).,7,21,2012 -20121021_ARI@MIN,4,2,47,ARI,MIN,2,19,51,(2:47) (Shotgun) J.Skelton pass short left to L.Stephens-Howling to MIN 38 for 13 yards (A.Winfield).,7,21,2012 -20121021_ARI@MIN,4,2,8,ARI,MIN,3,6,38,(2:08) (Shotgun) J.Skelton pass short right to A.Roberts to MIN 22 for 16 yards (J.Robinson).,7,21,2012 -20121021_ARI@MIN,4,2,0,ARI,MIN,1,10,22,(2:00) (Shotgun) J.Skelton pass short middle to A.Roberts to MIN 6 for 16 yards (C.Greenway) [B.Robison].,7,21,2012 -20121021_ARI@MIN,4,1,52,ARI,MIN,1,6,6,(1:52) (Shotgun) J.Skelton pass short left to A.Roberts for 6 yards TOUCHDOWN.,7,21,2012 -20121021_ARI@MIN,4,1,52,ARI,MIN,,,6,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,21,2012 -20121021_ARI@MIN,4,1,52,ARI,MIN,,,6,(Onside Kick formation) J.Feely kicks onside 8 yards from ARZ 35 to ARZ 43. M.Asiata (didn't try to advance) to ARZ 43 for no gain (Team). PENALTY on ARZ-R.Johnson Offside on Free Kick 5 yards enforced at ARZ 43.,14,21,2012 -20121021_ARI@MIN,4,1,47,MIN,ARI,1,5,38,(1:47) A.Peterson up the middle to ARZ 35 for 3 yards (Team).,21,14,2012 -20121021_ARI@MIN,4,1,48,MIN,ARI,2,2,35,(1:48) A.Peterson up the middle to ARZ 33 for 2 yards (C.Campbell).,21,14,2012 -20121021_ARI@MIN,4,1,48,MIN,ARI,1,10,33,(1:48) A.Peterson up the middle to ARZ 33 for no gain (D.Williams).,21,14,2012 -20121021_ARI@MIN,4,1,48,ARI,MIN,,,33,(Onside Kick formation) J.Feely kicks onside 8 yards from ARZ 35 to ARZ 43. M.Asiata (didn't try to advance) to ARZ 43 for no gain (Team). PENALTY on ARZ-R.Johnson Offside on Free Kick 5 yards enforced at ARZ 43.,14,21,2012 -20121021_ARI@MIN,4,1,47,MIN,ARI,1,10,38,(1:47) A.Peterson up the middle to ARZ 35 for 3 yards (Team).,21,14,2012 -20121021_ARI@MIN,4,1,43,MIN,ARI,2,7,35,(1:43) A.Peterson up the middle to ARZ 33 for 2 yards (C.Campbell).,21,14,2012 -20121021_ARI@MIN,4,1,0,MIN,ARI,3,5,33,(1:00) A.Peterson up the middle to ARZ 33 for no gain (D.Williams).,21,14,2012 -20121021_ARI@MIN,4,0,14,MIN,ARI,4,5,33,(:14) A.Peterson up the middle to ARZ 25 for 8 yards (J.Sanders).,21,14,2012 -20121021_ARI@MIN,4,0,14,MIN,ARI,,,33,                      ,21,14,2012 -20121021_WAS@NYG,1,0,0,WAS,NYG,,,33,K.Forbath kicks 64 yards from WAS 35 to NYG 1. D.Wilson to NYG 20 for 19 yards (K.Robinson). PENALTY on WAS-C.Wilson Offside on Free Kick 5 yards enforced at WAS 35 - No Play.,0,0,2012 -20121021_WAS@NYG,1,0,0,WAS,NYG,,,33,K.Forbath kicks 72 yards from WAS 30 to NYG -2. D.Wilson pushed ob at NYG 30 for 32 yards (K.Robinson). WAS-D.Gomes was injured during the play.,0,0,2012 -20121021_WAS@NYG,1,59,48,NYG,WAS,1,10,70,(14:48) E.Manning pass short right to H.Nicks ran ob at NYG 44 for 14 yards.,0,0,2012 -20121021_WAS@NYG,1,59,26,NYG,WAS,1,10,56,(14:26) E.Manning pass short left to A.Bradshaw to WAS 45 for 11 yards (P.Riley) [B.Cofield].,0,0,2012 -20121021_WAS@NYG,1,58,37,NYG,WAS,1,10,45,(13:37) A.Bradshaw right end to WAS 44 for 1 yard (P.Riley S.Bowen).,0,0,2012 -20121021_WAS@NYG,1,57,58,NYG,WAS,2,9,44,(12:58) E.Manning pass short left to A.Bradshaw to WAS 47 for -3 yards (L.Fletcher).,0,0,2012 -20121021_WAS@NYG,1,57,13,NYG,WAS,3,12,47,(12:13) (Shotgun) E.Manning pass incomplete short middle to D.Hixon. PENALTY on WAS-R.Kerrigan Defensive Offside 5 yards enforced at WAS 47 - No Play.,0,0,2012 -20121021_WAS@NYG,1,57,7,NYG,WAS,3,7,42,(12:07) (Shotgun) E.Manning pass short middle to H.Nicks to WAS 36 for 6 yards (D.Hall).,0,0,2012 -20121021_WAS@NYG,1,56,45,NYG,WAS,4,1,36,(11:45) (Run formation) PENALTY on NYG-S.Locklear False Start 5 yards enforced at WAS 36 - No Play.,0,0,2012 -20121021_WAS@NYG,1,56,35,NYG,WAS,4,6,41,(11:35) S.Weatherford punts 36 yards to WAS 5 Center-Z.DeOssie downed by NYG-J.Tryon.,0,0,2012 -20121021_WAS@NYG,1,56,24,WAS,NYG,1,10,95,(11:24) (Shotgun) A.Morris right end to WAS 10 for 5 yards (J.Tuck L.Joseph).,0,0,2012 -20121021_WAS@NYG,1,55,43,WAS,NYG,2,5,90,(10:43) (Shotgun) A.Morris up the middle to WAS 14 for 4 yards (C.Canty).,0,0,2012 -20121021_WAS@NYG,1,55,4,WAS,NYG,3,1,86,(10:04) A.Morris right guard to WAS 16 for 2 yards (C.Canty C.Blackburn).,0,0,2012 -20121021_WAS@NYG,1,54,28,WAS,NYG,1,10,84,(9:28) (Shotgun) R.Griffin pass short middle to L.Paulsen to WAS 35 for 19 yards (C.Webster).,0,0,2012 -20121021_WAS@NYG,1,53,54,WAS,NYG,1,10,65,(8:54) A.Morris left end to WAS 42 for 7 yards (K.Rivers).,0,0,2012 -20121021_WAS@NYG,1,53,15,WAS,NYG,2,3,58,(8:15) A.Morris left end to WAS 42 for no gain (J.Pierre-Paul P.Amukamara).,0,0,2012 -20121021_WAS@NYG,1,52,37,WAS,NYG,3,3,58,(7:37) (Shotgun) R.Griffin pass short right to L.Hankerson pushed ob at WAS 46 for 4 yards (C.Webster).,0,0,2012 -20121021_WAS@NYG,1,52,8,WAS,NYG,1,10,54,(7:08) (Shotgun) PENALTY on WAS-L.Hankerson False Start 5 yards enforced at WAS 46 - No Play.,0,0,2012 -20121021_WAS@NYG,1,51,44,WAS,NYG,1,15,59,(6:44) (Shotgun) R.Griffin scrambles up the middle ran ob at WAS 47 for 6 yards (A.Rolle).,0,0,2012 -20121021_WAS@NYG,1,51,16,WAS,NYG,2,9,53,(6:16) A.Morris left end to NYG 48 for 5 yards (M.Kuhn C.Blackburn).,0,0,2012 -20121021_WAS@NYG,1,50,32,WAS,NYG,3,4,48,(5:32) (Shotgun) R.Griffin pass short middle to F.Davis to NYG 35 for 13 yards (P.Amukamara).,0,0,2012 -20121021_WAS@NYG,1,49,55,WAS,NYG,1,10,35,(4:55) (Shotgun) R.Griffin pass short middle to J.Morgan for 35 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on WAS-F.Davis Illegal Shift 5 yards enforced at NYG 35 - No Play.,0,0,2012 -20121021_WAS@NYG,1,49,44,WAS,NYG,1,15,40,(4:44) (Shotgun) A.Morris right tackle to NYG 35 for 5 yards (M.Kuhn C.Blackburn). PENALTY on NYG-M.Boley Unnecessary Roughness 15 yards enforced at NYG 35.,0,0,2012 -20121021_WAS@NYG,1,49,14,WAS,NYG,1,10,20,(4:14) (Shotgun) A.Morris up the middle to NYG 11 for 9 yards (M.Kiwanuka M.Boley).,0,0,2012 -20121021_WAS@NYG,1,48,37,WAS,NYG,2,1,11,(3:37) A.Morris right end pushed ob at NYG 3 for 8 yards (M.Boley).,0,0,2012 -20121021_WAS@NYG,1,48,16,WAS,NYG,1,3,3,(3:16) A.Morris right guard to NYG 2 for 1 yard (C.Blackburn M.Kiwanuka).,0,0,2012 -20121021_WAS@NYG,1,47,31,WAS,NYG,2,2,2,(2:31) (Shotgun) R.Griffin pass incomplete short middle to N.Paul (P.Amukamara). WAS-F.Davis was injured during the play.,0,0,2012 -20121021_WAS@NYG,1,47,26,WAS,NYG,3,2,2,(2:26) R.Griffin pass incomplete short left.,0,0,2012 -20121021_WAS@NYG,1,47,17,WAS,NYG,4,2,2,(2:17) K.Forbath 20 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,0,0,2012 -20121021_WAS@NYG,1,47,17,WAS,NYG,,,2,K.Forbath kicks 70 yards from WAS 35 to NYG -5. D.Wilson Touchback.,3,0,2012 -20121021_WAS@NYG,1,47,13,NYG,WAS,1,10,80,(2:13) A.Brown right guard to NYG 24 for 4 yards (R.Doughty J.Jenkins). PENALTY on WAS-D.Hall Unnecessary Roughness 15 yards enforced at NYG 24.,0,3,2012 -20121021_WAS@NYG,1,46,46,NYG,WAS,1,10,61,(1:46) A.Bradshaw left end to NYG 40 for 1 yard (C.Baker K.Golston).,0,3,2012 -20121021_WAS@NYG,1,46,8,NYG,WAS,2,9,60,(1:08) (Shotgun) E.Manning pass short right to V.Cruz to NYG 48 for 8 yards (L.Fletcher R.Doughty).,0,3,2012 -20121021_WAS@NYG,1,45,27,NYG,WAS,3,1,52,(:27) E.Manning pass deep right to M.Bennett to WAS 21 for 31 yards (Mad.Williams).,0,3,2012 -20121021_WAS@NYG,2,45,0,NYG,WAS,1,10,21,(15:00) E.Manning pass incomplete short right to M.Bennett.,0,3,2012 -20121021_WAS@NYG,2,44,56,NYG,WAS,2,10,21,(14:56) E.Manning pass incomplete short middle to D.Hixon (P.Riley).,0,3,2012 -20121021_WAS@NYG,2,44,52,NYG,WAS,3,10,21,(14:52) (Shotgun) E.Manning pass short right to A.Bradshaw to WAS 11 for 10 yards (L.Fletcher).,0,3,2012 -20121021_WAS@NYG,2,44,7,NYG,WAS,1,10,11,(14:07) E.Manning pass incomplete short right to H.Nicks (D.Hall).,0,3,2012 -20121021_WAS@NYG,2,44,1,NYG,WAS,2,10,11,(14:01) A.Bradshaw right end to WAS 8 for 3 yards (Mad.Williams B.Cofield).,0,3,2012 -20121021_WAS@NYG,2,43,21,NYG,WAS,3,7,8,(13:21) (Shotgun) E.Manning pass short middle to H.Nicks to WAS 1 for 7 yards (Mad.Williams P.Riley).,0,3,2012 -20121021_WAS@NYG,2,42,53,NYG,WAS,1,1,1,(12:53) E.Manning pass incomplete short middle to B.Pascoe.,0,3,2012 -20121021_WAS@NYG,2,42,46,NYG,WAS,2,1,1,(12:46) A.Brown left guard for 1 yard TOUCHDOWN. WAS-R.Doughty was injured during the play.,0,3,2012 -20121021_WAS@NYG,2,42,46,NYG,WAS,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,3,2012 -20121021_WAS@NYG,2,42,46,NYG,WAS,,,1,L.Tynes kicks 71 yards from NYG 35 to WAS -6. B.Banks Touchback.,7,3,2012 -20121021_WAS@NYG,2,42,41,WAS,NYG,1,10,80,(12:41) (Shotgun) D.Young up the middle to WAS 20 for no gain (J.Tuck).,3,7,2012 -20121021_WAS@NYG,2,42,0,WAS,NYG,2,10,80,(12:00) (Shotgun) R.Griffin pass deep left to L.Hankerson ran ob at WAS 43 for 23 yards. NYG-L.Joseph was injured during the play.,3,7,2012 -20121021_WAS@NYG,2,41,39,WAS,NYG,1,10,57,(11:39) (Shotgun) A.Morris right end to NYG 42 for 15 yards (S.Brown J.Pierre-Paul).,3,7,2012 -20121021_WAS@NYG,2,40,59,WAS,NYG,1,10,42,(10:59) (Shotgun) D.Young left guard to NYG 37 for 5 yards (S.Brown O.Umenyiora).,3,7,2012 -20121021_WAS@NYG,2,40,18,WAS,NYG,2,5,37,(10:18) (Shotgun) R.Griffin right end to NYG 29 for 8 yards (C.Blackburn).,3,7,2012 -20121021_WAS@NYG,2,39,41,WAS,NYG,1,10,29,(9:41) (Shotgun) A.Morris left tackle to NYG 26 for 3 yards (M.Austin).,3,7,2012 -20121021_WAS@NYG,2,39,0,WAS,NYG,2,7,26,(9:00) (Shotgun) R.Griffin pass incomplete short right to L.Hankerson.,3,7,2012 -20121021_WAS@NYG,2,38,52,WAS,NYG,3,7,26,(8:52) (Shotgun) R.Griffin pass short left to S.Moss for 26 yards TOUCHDOWN.,3,7,2012 -20121021_WAS@NYG,2,38,52,WAS,NYG,,,26,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,3,7,2012 -20121021_WAS@NYG,2,38,52,WAS,NYG,,,26,K.Forbath kicks 63 yards from WAS 35 to NYG 2. D.Wilson to NYG 28 for 26 yards (J.Pugh L.Alexander).,10,7,2012 -20121021_WAS@NYG,2,38,35,NYG,WAS,1,10,72,(8:35) E.Manning pass short right to V.Cruz pushed ob at NYG 39 for 11 yards (J.Wilson).,7,10,2012 -20121021_WAS@NYG,2,38,10,NYG,WAS,1,10,61,(8:10) E.Manning pass short middle to M.Bennett to 50 for 11 yards (P.Riley L.Fletcher).,7,10,2012 -20121021_WAS@NYG,2,37,30,NYG,WAS,1,10,50,(7:30) E.Manning pass deep right to H.Nicks to WAS 29 for 21 yards (R.Doughty).,7,10,2012 -20121021_WAS@NYG,2,36,51,NYG,WAS,1,10,29,(6:51) E.Manning pass incomplete short left to H.Nicks (R.Jackson).,7,10,2012 -20121021_WAS@NYG,2,36,47,NYG,WAS,2,10,29,(6:47) (Shotgun) A.Brown left end to WAS 23 for 6 yards (B.Cofield).,7,10,2012 -20121021_WAS@NYG,2,36,10,NYG,WAS,3,4,23,(6:10) E.Manning scrambles right tackle to WAS 18 for 5 yards (Mad.Williams).,7,10,2012 -20121021_WAS@NYG,2,35,25,NYG,WAS,1,10,18,(5:25) A.Bradshaw right guard to WAS 11 for 7 yards (R.Doughty J.Wilson).,7,10,2012 -20121021_WAS@NYG,2,34,44,NYG,WAS,2,3,11,(4:44) A.Bradshaw right guard to WAS 9 for 2 yards (B.Cofield J.Jenkins).,7,10,2012 -20121021_WAS@NYG,2,34,4,NYG,WAS,3,1,9,(4:04) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,7,10,2012 -20121021_WAS@NYG,2,33,57,NYG,WAS,4,1,9,(3:57) L.Tynes 27 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,10,2012 -20121021_WAS@NYG,2,33,57,NYG,WAS,,,9,L.Tynes kicks 74 yards from NYG 35 to WAS -9. B.Banks Touchback.,10,10,2012 -20121021_WAS@NYG,2,33,53,WAS,NYG,1,10,80,(3:53) (Shotgun) R.Griffin right end pushed ob at WAS 48 for 28 yards (S.Brown).,10,10,2012 -20121021_WAS@NYG,2,33,30,WAS,NYG,1,10,52,(3:30) (Shotgun) A.Morris right guard to NYG 22 for 30 yards (S.Brown).,10,10,2012 -20121021_WAS@NYG,2,32,53,WAS,NYG,1,10,22,(2:53) (Shotgun) D.Young left guard to NYG 19 for 3 yards (C.Canty M.Boley).,10,10,2012 -20121021_WAS@NYG,2,32,16,WAS,NYG,2,7,19,(2:16) (Shotgun) D.Young left guard to NYG 17 for 2 yards (C.Canty M.Boley).,10,10,2012 -20121021_WAS@NYG,2,32,0,WAS,NYG,3,5,17,(2:00) (Shotgun) R.Griffin sacked at NYG 25 for -8 yards (J.Tuck).,10,10,2012 -20121021_WAS@NYG,2,31,54,WAS,NYG,4,13,25,(1:54) K.Forbath 43 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,10,10,2012 -20121021_WAS@NYG,2,31,54,WAS,NYG,,,25,K.Forbath kicks 71 yards from WAS 35 to NYG -6. D.Wilson Touchback.,13,10,2012 -20121021_WAS@NYG,2,31,49,NYG,WAS,1,10,80,(1:49) (Shotgun) E.Manning pass short middle to M.Bennett to NYG 28 for 8 yards (P.Riley) [B.Cofield].,10,13,2012 -20121021_WAS@NYG,2,31,29,NYG,WAS,2,2,72,(1:29) (Shotgun) E.Manning pass incomplete short right to M.Bennett (P.Riley).,10,13,2012 -20121021_WAS@NYG,2,31,24,NYG,WAS,3,2,72,(1:24) (Shotgun) E.Manning pass short middle to M.Bennett to NYG 40 for 12 yards (P.Riley).,10,13,2012 -20121021_WAS@NYG,2,31,17,NYG,WAS,1,10,60,(1:17) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,10,13,2012 -20121021_WAS@NYG,2,31,13,NYG,WAS,2,10,60,(1:13) (Shotgun) E.Manning pass short right to D.Hixon to NYG 47 for 7 yards (D.Hall).,10,13,2012 -20121021_WAS@NYG,2,30,54,NYG,WAS,3,3,53,(:54) (Shotgun) E.Manning pass short middle to H.Nicks to WAS 48 for 5 yards (C.Griffin).,10,13,2012 -20121021_WAS@NYG,2,30,35,NYG,WAS,1,10,48,(:35) (Shotgun) E.Manning pass incomplete short middle to H.Nicks (C.Griffin).,10,13,2012 -20121021_WAS@NYG,2,30,31,NYG,WAS,2,10,48,(:31) (Shotgun) E.Manning pass short left to V.Cruz to WAS 35 for 13 yards (C.Griffin) [L.Alexander].,10,13,2012 -20121021_WAS@NYG,2,30,14,NYG,WAS,1,10,35,(:14) (Shotgun) E.Manning pass short middle to V.Cruz to WAS 21 for 14 yards (J.Wilson Mad.Williams).,10,13,2012 -20121021_WAS@NYG,2,30,7,NYG,WAS,1,10,21,(:07) L.Tynes 39 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,13,2012 -20121021_WAS@NYG,2,30,7,NYG,WAS,,,21,L.Tynes kicks 56 yards from NYG 35 to WAS 9. N.Paul to WAS 26 for 17 yards (A.Brown).,13,13,2012 -20121021_WAS@NYG,3,30,0,NYG,WAS,,,21,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,13,13,2012 -20121021_WAS@NYG,3,30,0,WAS,NYG,1,10,80,(15:00) (Shotgun) R.Griffin scrambles left end ran ob at WAS 31 for 11 yards (M.Boley).,13,13,2012 -20121021_WAS@NYG,3,29,28,WAS,NYG,1,10,69,(14:28) (Shotgun) R.Griffin pass incomplete deep middle to L.Hankerson.,13,13,2012 -20121021_WAS@NYG,3,29,20,WAS,NYG,2,10,69,(14:20) (Shotgun) A.Morris left end to WAS 34 for 3 yards (M.Boley L.Joseph).,13,13,2012 -20121021_WAS@NYG,3,28,44,WAS,NYG,3,7,66,(13:44) (Shotgun) R.Griffin pass short right to L.Hankerson to WAS 40 for 6 yards (J.Hosley M.Boley).,13,13,2012 -20121021_WAS@NYG,3,28,5,WAS,NYG,4,1,60,(13:05) S.Rocca punts 33 yards to NYG 27 Center-J.Snow fair catch by R.Randle.,13,13,2012 -20121021_WAS@NYG,3,27,53,NYG,WAS,1,10,73,(12:53) E.Manning pass incomplete deep left to V.Cruz.,13,13,2012 -20121021_WAS@NYG,3,27,47,NYG,WAS,2,10,73,(12:47) (Shotgun) E.Manning pass short left to H.Nicks pushed ob at NYG 42 for 15 yards (D.Hall) [B.Cofield]. PENALTY on NYG-W.Beatty Offensive Holding 10 yards enforced at NYG 27 - No Play.,13,13,2012 -20121021_WAS@NYG,3,27,24,NYG,WAS,2,20,83,(12:24) (Shotgun) E.Manning pass short left to A.Bradshaw to NYG 21 for 4 yards (L.Fletcher S.Bowen).,13,13,2012 -20121021_WAS@NYG,3,26,34,NYG,WAS,3,16,79,(11:34) (Shotgun) E.Manning pass incomplete deep left to H.Nicks (C.Griffin). PENALTY on WAS-S.Bowen Defensive Offside 5 yards enforced at NYG 21 - No Play.,13,13,2012 -20121021_WAS@NYG,3,26,26,NYG,WAS,3,11,74,(11:26) (Shotgun) E.Manning pass short middle to D.Hixon to NYG 32 for 6 yards (J.Wilson L.Fletcher).,13,13,2012 -20121021_WAS@NYG,3,25,55,NYG,WAS,4,5,68,(10:55) S.Weatherford punts 44 yards to WAS 24 Center-Z.DeOssie. B.Banks to WAS 36 for 12 yards (M.Kiwanuka S.Paysinger).,13,13,2012 -20121021_WAS@NYG,3,25,40,WAS,NYG,1,10,64,(10:40) (Shotgun) R.Griffin pass short right to L.Paulsen to NYG 41 for 23 yards (P.Amukamara).,13,13,2012 -20121021_WAS@NYG,3,25,6,WAS,NYG,1,10,41,(10:06) (Shotgun) A.Morris right end to NYG 39 for 2 yards (K.Rivers C.Blackburn).,13,13,2012 -20121021_WAS@NYG,3,24,31,WAS,NYG,2,8,39,(9:31) (Shotgun) R.Griffin right end pushed ob at NYG 33 for 6 yards (K.Rivers).,13,13,2012 -20121021_WAS@NYG,3,24,2,WAS,NYG,3,2,33,(9:02) R.Griffin pass short right to A.Morris pushed ob at NYG 28 for 5 yards (C.Webster) [K.Rivers].,13,13,2012 -20121021_WAS@NYG,3,23,35,WAS,NYG,1,10,28,(8:35) (Shotgun) A.Morris left end to NYG 13 for 15 yards (C.Blackburn M.Kiwanuka). PENALTY on WAS-T.Polumbus Personal Foul 15 yards enforced at NYG 26. Officially a rush for two yards.,13,13,2012 -20121021_WAS@NYG,3,23,4,WAS,NYG,1,23,41,(8:04) A.Morris up the middle to NYG 40 for 1 yard (L.Joseph). FUMBLES (L.Joseph) RECOVERED by NYG-M.Boley at NYG 39. M.Boley to NYG 39 for no gain (W.Montgomery).,13,13,2012 -20121021_WAS@NYG,3,23,0,NYG,WAS,1,10,61,(8:00) A.Bradshaw up the middle to NYG 40 for 1 yard (R.Kerrigan C.Baker).,13,13,2012 -20121021_WAS@NYG,3,22,22,NYG,WAS,2,9,60,(7:22) (Shotgun) A.Bradshaw left tackle to WAS 45 for 15 yards (Mad.Williams C.Griffin).,13,13,2012 -20121021_WAS@NYG,3,21,33,NYG,WAS,1,10,45,(6:33) E.Manning pass short left to M.Bennett to WAS 28 for 17 yards (J.Wilson R.Doughty).,13,13,2012 -20121021_WAS@NYG,3,20,55,NYG,WAS,1,10,28,(5:55) (Shotgun) A.Brown right guard to WAS 26 for 2 yards (J.Pugh P.Riley).,13,13,2012 -20121021_WAS@NYG,3,20,15,NYG,WAS,2,8,26,(5:15) E.Manning pass deep left intended for V.Cruz INTERCEPTED by J.Wilson (B.Cofield) at WAS 9. J.Wilson to WAS 16 for 7 yards (A.Bradshaw).,13,13,2012 -20121021_WAS@NYG,3,19,59,WAS,NYG,1,10,84,(4:59) R.Griffin pass short middle to L.Hankerson to WAS 31 for 15 yards (P.Amukamara).,13,13,2012 -20121021_WAS@NYG,3,19,28,WAS,NYG,1,10,69,(4:28) A.Morris left end to WAS 33 for 2 yards (K.Rivers J.Tuck).,13,13,2012 -20121021_WAS@NYG,3,18,47,WAS,NYG,2,8,67,(3:47) (Shotgun) R.Griffin pass short middle to D.Young to WAS 39 for 6 yards (P.Amukamara). Shovel pass.,13,13,2012 -20121021_WAS@NYG,3,18,1,WAS,NYG,3,2,61,(3:01) (Shotgun) A.Robinson left end to NYG 47 for 14 yards (J.Hosley).,13,13,2012 -20121021_WAS@NYG,3,17,22,WAS,NYG,1,10,47,(2:22) (Shotgun) R.Griffin right end to 50 for -3 yards. FUMBLES and recovers at 50. R.Griffin pushed ob at NYG 42 for 8 yards (A.Rolle). Officially a rush for five yards.,13,13,2012 -20121021_WAS@NYG,3,16,55,WAS,NYG,2,5,42,(1:55) (Shotgun) R.Griffin pass deep middle intended for L.Paulsen INTERCEPTED by S.Brown at NYG 24. S.Brown to WAS 35 for 41 yards (A.Morris).,13,13,2012 -20121021_WAS@NYG,3,16,42,NYG,WAS,1,10,35,(1:42) A.Bradshaw right tackle to WAS 34 for 1 yard (R.Doughty).,13,13,2012 -20121021_WAS@NYG,3,16,4,NYG,WAS,2,9,34,(1:04) (Shotgun) E.Manning pass short right to D.Hixon to WAS 15 for 19 yards (D.Hall).,13,13,2012 -20121021_WAS@NYG,3,15,30,NYG,WAS,1,10,15,(:30) A.Bradshaw left end to WAS 9 for 6 yards (R.Doughty).,13,13,2012 -20121021_WAS@NYG,4,15,0,NYG,WAS,2,4,9,(15:00) A.Bradshaw up the middle to WAS 7 for 2 yards (L.Alexander B.Cofield).,13,13,2012 -20121021_WAS@NYG,4,14,24,NYG,WAS,3,2,7,(14:24) (Shotgun) E.Manning pass short left to V.Cruz to WAS 4 for 3 yards (C.Griffin).,13,13,2012 -20121021_WAS@NYG,4,13,41,NYG,WAS,1,4,4,(13:41) E.Manning pass short left to H.Hynoski to WAS 1 for 3 yards (Mad.Williams).,13,13,2012 -20121021_WAS@NYG,4,13,1,NYG,WAS,2,1,1,(13:01) A.Bradshaw right guard for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,13,13,2012 -20121021_WAS@NYG,4,13,1,NYG,WAS,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,13,13,2012 -20121021_WAS@NYG,4,13,1,NYG,WAS,,,1,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,20,13,2012 -20121021_WAS@NYG,4,12,55,WAS,NYG,1,10,80,(12:55) A.Morris right end pushed ob at WAS 28 for 8 yards (M.Austin J.Tuck).,13,20,2012 -20121021_WAS@NYG,4,12,31,WAS,NYG,2,2,72,(12:31) D.Young left tackle to WAS 44 for 16 yards (A.Rolle).,13,20,2012 -20121021_WAS@NYG,4,11,57,WAS,NYG,1,10,56,(11:57) R.Griffin sacked at WAS 32 for -12 yards (J.Pierre-Paul).,13,20,2012 -20121021_WAS@NYG,4,11,18,WAS,NYG,2,22,68,(11:18) (Shotgun) R.Griffin pass short middle to A.Morris to WAS 37 for 5 yards (S.Brown).,13,20,2012 -20121021_WAS@NYG,4,10,35,WAS,NYG,3,17,63,(10:35) (Shotgun) R.Griffin pass short left to L.Paulsen ran ob at NYG 48 for 15 yards.,13,20,2012 -20121021_WAS@NYG,4,10,12,WAS,NYG,4,2,48,(10:12) (Shotgun) R.Griffin pass short left to L.Hankerson to NYG 39 for 9 yards (K.Rivers).,13,20,2012 -20121021_WAS@NYG,4,9,37,WAS,NYG,1,10,39,(9:37) (Shotgun) A.Morris left tackle to NYG 37 for 2 yards (M.Boley).,13,20,2012 -20121021_WAS@NYG,4,8,57,WAS,NYG,2,8,37,(8:57) (Shotgun) R.Griffin sacked at NYG 43 for -6 yards (O.Umenyiora).,13,20,2012 -20121021_WAS@NYG,4,8,27,WAS,NYG,3,14,43,(8:27) (Shotgun) R.Griffin pass short left to L.Hankerson to NYG 30 for 13 yards (P.Amukamara).,13,20,2012 -20121021_WAS@NYG,4,7,46,WAS,NYG,4,1,30,(7:46) R.Griffin scrambles right end pushed ob at NYG 27 for 3 yards (S.Brown).,13,20,2012 -20121021_WAS@NYG,4,7,18,WAS,NYG,1,10,27,(7:18) (Shotgun) R.Griffin up the middle to NYG 30 for -3 yards (J.Pierre-Paul). FUMBLES (J.Pierre-Paul) RECOVERED by NYG-L.Joseph at NYG 29. L.Joseph to NYG 29 for no gain (R.Griffin). Officially a rush for minus two yards. The Replay Assistant challenged the fumble ruling and the play was Upheld.,13,20,2012 -20121021_WAS@NYG,4,7,10,NYG,WAS,1,10,71,(7:10) E.Manning pass short left intended for H.Nicks INTERCEPTED by R.Jackson at NYG 32. R.Jackson to NYG 32 for no gain (H.Nicks).,20,13,2012 -20121021_WAS@NYG,4,7,1,WAS,NYG,1,10,32,(7:01) A.Morris left end to NYG 29 for 3 yards (J.Tuck).,13,20,2012 -20121021_WAS@NYG,4,6,24,WAS,NYG,2,7,29,(6:24) (Shotgun) A.Morris left tackle to NYG 26 for 3 yards (C.Blackburn).,13,20,2012 -20121021_WAS@NYG,4,5,47,WAS,NYG,3,4,26,(5:47) (Shotgun) N.Paul right end pushed ob at NYG 27 for -1 yards (K.Rivers).,13,20,2012 -20121021_WAS@NYG,4,5,28,WAS,NYG,4,5,27,(5:28) K.Forbath 45 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,13,20,2012 -20121021_WAS@NYG,4,5,28,WAS,NYG,,,27,K.Forbath kicks 67 yards from WAS 35 to NYG -2. D.Wilson to NYG 17 for 19 yards (J.Pugh M.Addison).,16,20,2012 -20121021_WAS@NYG,4,5,14,NYG,WAS,1,10,83,(5:14) E.Manning sacked at NYG 9 for -8 yards (sack split by R.Jackson and B.Cofield).,20,16,2012 -20121021_WAS@NYG,4,4,52,NYG,WAS,2,18,91,(4:52) (Shotgun) A.Bradshaw left guard to NYG 12 for 3 yards (K.Robinson L.Alexander).,20,16,2012 -20121021_WAS@NYG,4,4,11,NYG,WAS,3,15,88,(4:11) (Shotgun) E.Manning pass short left to A.Brown to NYG 29 for 17 yards (C.Griffin L.Alexander).,20,16,2012 -20121021_WAS@NYG,4,3,30,NYG,WAS,1,10,71,(3:30) A.Brown right tackle to NYG 33 for 4 yards (J.Jenkins P.Riley).,20,16,2012 -20121021_WAS@NYG,4,3,21,NYG,WAS,2,6,67,(3:21) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 38 for 5 yards (L.Alexander).,20,16,2012 -20121021_WAS@NYG,4,3,15,NYG,WAS,3,1,62,(3:15) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,20,16,2012 -20121021_WAS@NYG,4,3,10,NYG,WAS,4,1,62,(3:10) S.Weatherford punts 40 yards to WAS 22 Center-Z.DeOssie. J.Wilson to WAS 23 for 1 yard (C.Blackburn).,20,16,2012 -20121021_WAS@NYG,4,2,59,WAS,NYG,1,10,77,(2:59) (Shotgun) R.Griffin pass incomplete short left to L.Paulsen (M.Kuhn).,16,20,2012 -20121021_WAS@NYG,4,2,55,WAS,NYG,2,10,77,(2:55) (Shotgun) R.Griffin pass short right to E.Royster to WAS 23 for no gain (M.Boley) [J.Tuck].,16,20,2012 -20121021_WAS@NYG,4,2,17,WAS,NYG,3,10,77,(2:17) (Shotgun) R.Griffin pass incomplete deep middle to A.Robinson.,16,20,2012 -20121021_WAS@NYG,4,2,7,WAS,NYG,4,10,77,(2:07) (Shotgun) R.Griffin pass deep middle to L.Paulsen to WAS 42 for 19 yards (J.Hosley).,16,20,2012 -20121021_WAS@NYG,4,1,54,WAS,NYG,1,10,58,(1:54) (Shotgun) R.Griffin scrambles right end pushed ob at NYG 34 for 24 yards (J.Hosley).,16,20,2012 -20121021_WAS@NYG,4,1,46,WAS,NYG,1,10,34,(1:46) (Shotgun) R.Griffin pass short right to J.Morgan pushed ob at NYG 30 for 4 yards (C.Webster).,16,20,2012 -20121021_WAS@NYG,4,1,38,WAS,NYG,2,6,30,(1:38) (Shotgun) R.Griffin pass deep left to S.Moss for 30 yards TOUCHDOWN.,16,20,2012 -20121021_WAS@NYG,4,1,38,WAS,NYG,,,30,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,16,20,2012 -20121021_WAS@NYG,4,1,38,WAS,NYG,,,30,K.Forbath kicks 71 yards from WAS 35 to NYG -6. D.Wilson to NYG 23 for 29 yards (K.Robinson M.Addison).,23,20,2012 -20121021_WAS@NYG,4,1,27,NYG,WAS,1,10,77,(1:27) (Shotgun) E.Manning pass incomplete short left to A.Bradshaw.,20,23,2012 -20121021_WAS@NYG,4,1,23,NYG,WAS,2,10,77,(1:23) (Shotgun) E.Manning pass deep middle to V.Cruz for 77 yards TOUCHDOWN [S.Bowen].,20,23,2012 -20121021_WAS@NYG,4,1,23,NYG,WAS,,,77,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,20,23,2012 -20121021_WAS@NYG,4,1,23,NYG,WAS,,,77,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,27,23,2012 -20121021_WAS@NYG,4,1,13,WAS,NYG,1,10,80,(1:13) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 26 for 6 yards (C.Blackburn). FUMBLES (C.Blackburn) and recovers at WAS 27. J.Morgan to WAS 32 for 5 yards (J.Hosley M.Boley). Officially a twelve yard reception.,23,27,2012 -20121021_WAS@NYG,4,0,51,WAS,NYG,1,10,68,(:51) (Shotgun) R.Griffin pass incomplete short middle to S.Moss.,23,27,2012 -20121021_WAS@NYG,4,0,46,WAS,NYG,2,10,68,(:46) (Shotgun) R.Griffin pass short middle to S.Moss to WAS 43 for 11 yards (C.Blackburn). FUMBLES (C.Blackburn) RECOVERED by NYG-J.Hosley at WAS 43. J.Hosley to WAS 43 for no gain (J.Morgan).,23,27,2012 -20121021_WAS@NYG,4,0,29,NYG,WAS,1,10,43,(:29) E.Manning kneels to WAS 44 for -1 yards.,27,23,2012 -20121021_WAS@NYG,4,0,29,NYG,WAS,,,43,                      ,27,23,2012 -20121021_GB@STL,1,0,0,GB,STL,,,43,M.Crosby kicks 73 yards from GB 35 to SL -8. C.Givens Touchback.,0,0,2012 -20121021_GB@STL,1,60,0,STL,GB,1,10,80,(15:00) S.Jackson right tackle to SL 25 for 5 yards (E.Walden).,0,0,2012 -20121021_GB@STL,1,59,27,STL,GB,2,5,75,(14:27) C.Givens right end to SL 39 for 14 yards (M.Jennings).,0,0,2012 -20121021_GB@STL,1,58,46,STL,GB,1,10,61,(13:46) S.Jackson right tackle to SL 45 for 6 yards (A.Hawk).,0,0,2012 -20121021_GB@STL,1,58,11,STL,GB,2,4,55,(13:11) S.Jackson right tackle to SL 46 for 1 yard (R.Pickett).,0,0,2012 -20121021_GB@STL,1,57,29,STL,GB,3,3,54,(12:29) (Shotgun) S.Bradford pass incomplete deep left to L.Kendricks.,0,0,2012 -20121021_GB@STL,1,57,24,STL,GB,4,3,54,(12:24) J.Hekker punts 44 yards to GB 10 Center-J.McQuaide fair catch by R.Cobb.,0,0,2012 -20121021_GB@STL,1,57,15,GB,STL,1,10,90,(12:15) (Shotgun) A.Green right tackle to GB 9 for -1 yards (K.Langford).,0,0,2012 -20121021_GB@STL,1,56,51,GB,STL,2,11,91,(11:51) (No Huddle Shotgun) A.Rodgers sacked at GB 5 for -4 yards (R.Quinn). Penalty on GB-M.Newhouse Offensive Holding declined.,0,0,2012 -20121021_GB@STL,1,56,29,GB,STL,3,15,95,(11:29) (Shotgun) A.Rodgers pass short left to J.Nelson to GB 13 for 8 yards (C.Finnegan).,0,0,2012 -20121021_GB@STL,1,55,49,GB,STL,4,7,87,(10:49) T.Masthay punts 42 yards to SL 45 Center-B.Goode fair catch by A.Pettis.,0,0,2012 -20121021_GB@STL,1,55,41,STL,GB,1,10,55,(10:41) S.Bradford pass incomplete short left to L.Kendricks.,0,0,2012 -20121021_GB@STL,1,55,37,STL,GB,2,10,55,(10:37) (Shotgun) S.Bradford sacked at SL 45 for 0 yards (E.Walden).,0,0,2012 -20121021_GB@STL,1,54,57,STL,GB,3,10,55,(9:57) (Shotgun) S.Bradford pass short middle to B.Gibson to GB 40 for 15 yards (M.Burnett).,0,0,2012 -20121021_GB@STL,1,54,12,STL,GB,1,10,40,(9:12) D.Richardson up the middle to GB 37 for 3 yards (B.Jones).,0,0,2012 -20121021_GB@STL,1,53,33,STL,GB,2,7,37,(8:33) S.Bradford pass incomplete deep left to A.Pettis.,0,0,2012 -20121021_GB@STL,1,53,23,STL,GB,3,7,37,(8:23) (Shotgun) S.Bradford pass short left to D.Richardson to GB 32 for 5 yards (C.Woodson; M.Neal).,0,0,2012 -20121021_GB@STL,1,52,42,STL,GB,4,2,32,(7:42) G.Zuerlein 50 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121021_GB@STL,1,52,42,STL,GB,,,32,G.Zuerlein kicks 74 yards from SL 35 to GB -9. R.Cobb Touchback.,3,0,2012 -20121021_GB@STL,1,52,38,GB,STL,1,10,80,(7:38) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 35 for 15 yards (J.Jenkins).,0,3,2012 -20121021_GB@STL,1,52,17,GB,STL,1,10,65,(7:17) (No Huddle Shotgun) A.Rodgers pass short left to A.Green to GB 44 for 9 yards (B.Fletcher) [R.Quinn].,0,3,2012 -20121021_GB@STL,1,51,50,GB,STL,2,1,56,(6:50) (No Huddle Shotgun) A.Green left guard to GB 42 for -2 yards (M.Brockers).,0,3,2012 -20121021_GB@STL,1,51,22,GB,STL,3,3,58,(6:22) (No Huddle Shotgun) A.Rodgers pass deep right to J.Nelson pushed ob at SL 6 for 52 yards (J.Jenkins). Penalty on SL-C.Long Defensive Offside declined.,0,3,2012 -20121021_GB@STL,1,50,57,GB,STL,1,6,6,(5:57) (Shotgun) A.Rodgers sacked at SL 17 for -11 yards (K.Langford). PENALTY on SL-C.Dahl Illegal Contact 3 yards enforced at SL 6 - No Play.,0,3,2012 -20121021_GB@STL,1,50,28,GB,STL,1,3,3,(5:28) (Shotgun) A.Rodgers pass short left to J.Nelson for 3 yards TOUCHDOWN.,0,3,2012 -20121021_GB@STL,1,50,28,GB,STL,,,3,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,3,2012 -20121021_GB@STL,1,50,28,GB,STL,,,3,M.Crosby kicks onside 16 yards from GB 35 to SL 49. RECOVERED by GB-J.Lattimore. SL-T.Johnson was injured during the play.,7,3,2012 -20121021_GB@STL,1,50,18,GB,STL,1,10,49,(5:18) A.Green left tackle to SL 47 for 2 yards (M.Brockers).,7,3,2012 -20121021_GB@STL,1,49,41,GB,STL,2,8,47,(4:41) (Shotgun) R.Cobb left end pushed ob at SL 28 for 19 yards (B.Fletcher).,7,3,2012 -20121021_GB@STL,1,49,3,GB,STL,1,10,28,(4:03) (Shotgun) A.Rodgers sacked at SL 30 for -2 yards (W.Hayes).,7,3,2012 -20121021_GB@STL,1,48,37,GB,STL,2,12,30,(3:37) (No Huddle Shotgun) A.Green left end to SL 25 for 5 yards (J.Laurinaitis). Lateral backwards pass by A. Rogers.,7,3,2012 -20121021_GB@STL,1,47,56,GB,STL,3,7,25,(2:56) (Shotgun) A.Rodgers sacked at SL 29 for -4 yards (M.Brockers).,7,3,2012 -20121021_GB@STL,1,47,23,GB,STL,4,11,29,(2:23) M.Crosby 47 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,7,3,2012 -20121021_GB@STL,1,47,23,GB,STL,,,29,M.Crosby kicks 68 yards from GB 35 to SL -3. C.Givens to SL 20 for 23 yards (J.Bush).,10,3,2012 -20121021_GB@STL,1,47,11,STL,GB,1,10,80,(2:11) D.Richardson right tackle to SL 22 for 2 yards (E.Walden).,3,10,2012 -20121021_GB@STL,1,46,37,STL,GB,2,8,78,(1:37) D.Richardson up the middle to SL 28 for 6 yards (C.Woodson).,3,10,2012 -20121021_GB@STL,1,45,51,STL,GB,3,2,72,(:51) D.Richardson left guard to SL 32 for 4 yards (C.Matthews).,3,10,2012 -20121021_GB@STL,1,45,9,STL,GB,1,10,68,(:09) S.Bradford pass deep right to C.Givens to GB 49 for 19 yards (C.Woodson). Flea Flicker.,3,10,2012 -20121021_GB@STL,2,45,0,STL,GB,1,10,49,(15:00) D.Richardson right end to GB 38 for 11 yards (B.Jones).,3,10,2012 -20121021_GB@STL,2,44,21,STL,GB,1,10,38,(14:21) D.Richardson left end to GB 37 for 1 yard (C.Woodson; E.Walden).,3,10,2012 -20121021_GB@STL,2,43,40,STL,GB,2,9,37,(13:40) S.Bradford pass short left to B.Gibson pushed ob at GB 22 for 15 yards (C.Hayward) [E.Walden].,3,10,2012 -20121021_GB@STL,2,43,8,STL,GB,1,10,22,(13:08) S.Bradford pass short right to C.Givens to GB 24 for -2 yards (E.Walden).,3,10,2012 -20121021_GB@STL,2,42,23,STL,GB,2,12,24,(12:23) (Shotgun) I.Pead right end to GB 23 for 1 yard (M.Burnett).,3,10,2012 -20121021_GB@STL,2,41,39,STL,GB,3,11,23,(11:39) (Shotgun) PENALTY on SL-J.Barksdale False Start 5 yards enforced at GB 23 - No Play.,3,10,2012 -20121021_GB@STL,2,41,15,STL,GB,3,16,28,(11:15) (Shotgun) S.Bradford pass short right to A.Pettis to GB 14 for 14 yards (T.Williams).,3,10,2012 -20121021_GB@STL,2,40,32,STL,GB,4,2,14,(10:32) S.Bradford pass incomplete short left to B.Gibson (D.House).,3,10,2012 -20121021_GB@STL,2,40,21,GB,STL,1,10,85,(10:21) A.Green left tackle to GB 17 for 2 yards (C.Long; J.Laurinaitis). SL-E.Sims was injured during the play.,10,3,2012 -20121021_GB@STL,2,39,54,GB,STL,2,8,83,(9:54) A.Rodgers pass short right to Ja.Jones to GB 27 for 10 yards (J.Jenkins).,10,3,2012 -20121021_GB@STL,2,39,25,GB,STL,1,10,73,(9:25) (No Huddle Shotgun) A.Green right guard to GB 30 for 3 yards (J.Laurinaitis).,10,3,2012 -20121021_GB@STL,2,38,47,GB,STL,2,7,70,(8:47) (Shotgun) A.Rodgers pass short right to A.Green to GB 34 for 4 yards (J.Jenkins).,10,3,2012 -20121021_GB@STL,2,38,10,GB,STL,3,3,66,(8:10) (No Huddle Shotgun) A.Rodgers pass short left to J.Nelson to GB 42 for 8 yards (B.Fletcher).,10,3,2012 -20121021_GB@STL,2,37,36,GB,STL,1,10,58,(7:36) (No Huddle) A.Green left tackle to GB 45 for 3 yards (K.Heard).,10,3,2012 -20121021_GB@STL,2,36,54,GB,STL,2,7,55,(6:54) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SL 49 for 6 yards (C.Finnegan).,10,3,2012 -20121021_GB@STL,2,36,15,GB,STL,3,1,49,(6:15) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones.,10,3,2012 -20121021_GB@STL,2,36,10,GB,STL,4,1,49,(6:10) T.Masthay punts 39 yards to SL 10 Center-B.Goode fair catch by A.Pettis.,10,3,2012 -20121021_GB@STL,2,36,2,STL,GB,1,10,90,(6:02) S.Jackson left tackle to SL 14 for 4 yards (C.Hayward).,3,10,2012 -20121021_GB@STL,2,35,24,STL,GB,2,6,86,(5:24) S.Jackson left end pushed ob at SL 33 for 19 yards (M.Jennings).,3,10,2012 -20121021_GB@STL,2,34,45,STL,GB,1,10,67,(4:45) PENALTY on SL-S.Bradford Delay of Game 5 yards enforced at SL 33 - No Play.,3,10,2012 -20121021_GB@STL,2,34,27,STL,GB,1,15,72,(4:27) S.Bradford pass short middle to B.Gibson to SL 39 for 11 yards (T.Williams; A.Hawk).,3,10,2012 -20121021_GB@STL,2,33,45,STL,GB,2,4,61,(3:45) S.Bradford pass incomplete deep left to C.Givens [J.Worthy].,3,10,2012 -20121021_GB@STL,2,33,36,STL,GB,3,4,61,(3:36) (Shotgun) S.Bradford pass short right to S.Smith ran ob at SL 45 for 6 yards (T.Williams).,3,10,2012 -20121021_GB@STL,2,33,9,STL,GB,1,10,55,(3:09) S.Jackson left tackle to GB 44 for 11 yards (M.Burnett).,3,10,2012 -20121021_GB@STL,2,32,33,STL,GB,1,10,44,(2:33) S.Jackson right end to GB 41 for 3 yards (E.Walden).,3,10,2012 -20121021_GB@STL,2,32,0,STL,GB,2,7,41,(2:00) S.Bradford pass short right to B.Gibson ran ob at GB 27 for 14 yards (T.Williams).,3,10,2012 -20121021_GB@STL,2,31,54,STL,GB,1,10,27,(1:54) (Shotgun) S.Bradford pass short right to L.Kendricks to GB 27 for no gain (A.Hawk).,3,10,2012 -20121021_GB@STL,2,31,21,STL,GB,2,10,27,(1:21) S.Jackson left tackle to GB 25 for 2 yards (E.Walden).,3,10,2012 -20121021_GB@STL,2,30,51,STL,GB,3,8,35,(:51) (Shotgun) S.Bradford Aborted. R.Turner FUMBLES at GB 30 recovered by SL-S.Bradford at GB 35. S.Bradford sacked at GB 25 for 0 yards (D.Moses).,3,10,2012 -20121021_GB@STL,2,30,41,STL,GB,4,8,25,(:41) G.Zuerlein 43 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,10,2012 -20121021_GB@STL,2,30,41,STL,GB,,,25,G.Zuerlein kicks 73 yards from SL 35 to GB -8. R.Cobb to GB 15 for 23 yards (D.Stewart).,6,10,2012 -20121021_GB@STL,2,30,36,GB,STL,1,10,85,(:36) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 28 for 13 yards (J.Laurinaitis).,10,6,2012 -20121021_GB@STL,2,30,30,GB,STL,1,10,72,(:30) PENALTY on GB-B.Bulaga False Start 5 yards enforced at GB 28 - No Play.,10,6,2012 -20121021_GB@STL,2,30,30,GB,STL,1,15,77,(:30) A.Rodgers pass short middle to R.Cobb to GB 37 for 14 yards (Q.Mikell).,10,6,2012 -20121021_GB@STL,2,30,23,GB,STL,2,1,63,(:23) (Shotgun) A.Rodgers pass short right to J.Finley ran ob at SL 45 for 18 yards (J.Laurinaitis).,10,6,2012 -20121021_GB@STL,2,30,17,GB,STL,1,10,45,(:17) (Shotgun) A.Rodgers pass short right to Ja.Jones to SL 40 for 5 yards (J.Jenkins).,10,6,2012 -20121021_GB@STL,2,30,3,GB,STL,2,5,40,(:03) A.Rodgers spiked the ball to stop the clock.,10,6,2012 -20121021_GB@STL,2,30,3,GB,STL,3,5,40,(:03) M.Crosby 58 yard field goal is No Good Wide Right Center-B.Goode Holder-T.Masthay.,10,6,2012 -20121021_GB@STL,3,30,0,STL,GB,,,40,G.Zuerlein kicks 73 yards from SL 35 to GB -8. R.Cobb Touchback.,6,10,2012 -20121021_GB@STL,3,30,0,GB,STL,1,10,80,(15:00) A.Green left tackle to GB 21 for 1 yard (J.Laurinaitis).,10,6,2012 -20121021_GB@STL,3,29,24,GB,STL,2,9,79,(14:24) (Shotgun) A.Rodgers up the middle to GB 22 for 1 yard (C.Finnegan).,10,6,2012 -20121021_GB@STL,3,28,44,GB,STL,3,8,78,(13:44) (Shotgun) A.Rodgers pass short left to J.Nelson to GB 40 for 18 yards (B.Fletcher; C.Dahl).,10,6,2012 -20121021_GB@STL,3,28,9,GB,STL,1,10,60,(13:09) A.Rodgers pass short left to Ja.Jones to SL 47 for 13 yards (Q.Mikell).,10,6,2012 -20121021_GB@STL,3,27,36,GB,STL,1,10,47,(12:36) J.Kuhn up the middle to SL 38 for 9 yards (Q.Mikell).,10,6,2012 -20121021_GB@STL,3,27,3,GB,STL,2,1,38,(12:03) A.Green right guard to SL 38 for no gain (Q.Mikell).,10,6,2012 -20121021_GB@STL,3,26,17,GB,STL,3,1,38,(11:17) (Shotgun) A.Rodgers pass deep right to Ja.Jones to SL 21 for 17 yards (J.Jenkins).,10,6,2012 -20121021_GB@STL,3,25,45,GB,STL,1,10,21,(10:45) (Shotgun) A.Green up the middle to SL 19 for 2 yards (J.Cudjo).,10,6,2012 -20121021_GB@STL,3,25,13,GB,STL,2,8,19,(10:13) (Shotgun) A.Rodgers pass short right to Ja.Jones to SL 17 for 2 yards (Q.Mikell).,10,6,2012 -20121021_GB@STL,3,24,29,GB,STL,3,6,17,(9:29) (Shotgun) A.Rodgers pass short left to J.Nelson to SL 8 for 9 yards (C.Finnegan) [R.Quinn].,10,6,2012 -20121021_GB@STL,3,23,53,GB,STL,1,8,8,(8:53) (Shotgun) A.Rodgers pass short right to A.Green to SL 5 for 3 yards (J.Dunbar).,10,6,2012 -20121021_GB@STL,3,23,10,GB,STL,2,5,5,(8:10) A.Rodgers pass short middle to R.Cobb for 5 yards TOUCHDOWN.,10,6,2012 -20121021_GB@STL,3,23,10,GB,STL,,,5,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,10,6,2012 -20121021_GB@STL,3,23,10,GB,STL,,,5,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,17,6,2012 -20121021_GB@STL,3,23,4,STL,GB,1,10,80,(8:04) S.Bradford pass incomplete short left to B.Miller.,6,17,2012 -20121021_GB@STL,3,22,56,STL,GB,2,10,80,(7:56) S.Bradford sacked at SL 11 for -9 yards (C.Matthews).,6,17,2012 -20121021_GB@STL,3,22,20,STL,GB,3,19,89,(7:20) (Shotgun) S.Bradford pass incomplete short right to S.Jackson (D.Moses). PENALTY on GB-D.Moses Unnecessary Roughness 15 yards enforced at SL 11 - No Play.,6,17,2012 -20121021_GB@STL,3,22,13,STL,GB,1,10,74,(7:13) S.Jackson left guard to SL 28 for 2 yards (A.Hawk).,6,17,2012 -20121021_GB@STL,3,21,39,STL,GB,2,8,72,(6:39) S.Jackson right end to SL 23 for -5 yards (R.Pickett).,6,17,2012 -20121021_GB@STL,3,20,55,STL,GB,3,13,77,(5:55) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 28 for 5 yards (C.Hayward).,6,17,2012 -20121021_GB@STL,3,20,8,STL,GB,4,8,72,(5:08) J.Hekker punts 55 yards to GB 17 Center-J.McQuaide. R.Cobb to GB 32 for 15 yards (R.McIntosh; C.Dahl).,6,17,2012 -20121021_GB@STL,3,19,51,GB,STL,1,10,68,(4:51) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 32 for no gain (J.Laurinaitis).,17,6,2012 -20121021_GB@STL,3,19,15,GB,STL,2,10,68,(4:15) (Shotgun) A.Green right guard to GB 47 for 15 yards (C.Finnegan; J.Jenkins).,17,6,2012 -20121021_GB@STL,3,18,34,GB,STL,1,10,53,(3:34) J.Kuhn right guard to SL 49 for 4 yards (J.Laurinaitis).,17,6,2012 -20121021_GB@STL,3,17,53,GB,STL,2,6,49,(2:53) A.Green up the middle to SL 46 for 3 yards (J.Laurinaitis).,17,6,2012 -20121021_GB@STL,3,17,13,GB,STL,3,3,46,(2:13) (Shotgun) A.Rodgers pass short left to D.Driver to SL 44 for 2 yards (B.Fletcher; C.Dahl).,17,6,2012 -20121021_GB@STL,3,16,33,GB,STL,4,1,44,(1:33) T.Masthay punts 35 yards to SL 9 Center-B.Goode fair catch by A.Pettis.,17,6,2012 -20121021_GB@STL,3,16,25,STL,GB,1,10,91,(1:25) S.Bradford pass deep left intended for C.Givens INTERCEPTED by C.Hayward at SL 42. C.Hayward to SL 42 for no gain (C.Givens).,6,17,2012 -20121021_GB@STL,3,16,17,GB,STL,1,10,42,(1:17) (Shotgun) A.Rodgers pass incomplete short left to A.Green (R.Quinn).,17,6,2012 -20121021_GB@STL,3,16,12,GB,STL,2,10,42,(1:12) (Shotgun) A.Rodgers pass to A.Green to SL 29 for 13 yards. PENALTY on GB-B.Bulaga Offensive Holding 10 yards enforced at SL 42 - No Play.,17,6,2012 -20121021_GB@STL,3,15,50,GB,STL,2,20,52,(:50) (Shotgun) A.Rodgers pass short right to A.Green to SL 39 for 13 yards (J.Laurinaitis).,17,6,2012 -20121021_GB@STL,3,15,4,GB,STL,3,7,39,(:04) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at SL 39 - No Play.,17,6,2012 -20121021_GB@STL,4,15,0,GB,STL,3,2,34,(15:00) (Shotgun) A.Rodgers pass short right to Ja.Jones to SL 28 for 6 yards (J.Jenkins).,17,6,2012 -20121021_GB@STL,4,14,26,GB,STL,1,10,28,(14:26) (Shotgun) A.Rodgers pass short left to R.Cobb to SL 22 for 6 yards (B.Fletcher).,17,6,2012 -20121021_GB@STL,4,13,54,GB,STL,2,4,22,(13:54) A.Rodgers pass incomplete deep left to Ja.Jones (C.Dahl).,17,6,2012 -20121021_GB@STL,4,13,46,GB,STL,3,4,22,(13:46) (Shotgun) A.Rodgers pass short right to J.Nelson to SL 13 for 9 yards (C.Finnegan). PENALTY on SL-C.Finnegan Unnecessary Roughness 7 yards enforced at SL 13.,17,6,2012 -20121021_GB@STL,4,13,28,GB,STL,1,6,6,(13:28) A.Green up the middle to SL 5 for 1 yard (Q.Mikell; C.Dahl).,17,6,2012 -20121021_GB@STL,4,12,43,GB,STL,2,5,5,(12:43) A.Green right tackle to SL 5 for no gain (J.Laurinaitis).,17,6,2012 -20121021_GB@STL,4,12,1,GB,STL,3,5,5,(12:01) (Shotgun) A.Rodgers pass incomplete short right to Ja.Jones (T.Johnson).,17,6,2012 -20121021_GB@STL,4,11,55,GB,STL,4,5,5,(11:55) M.Crosby 23 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,17,6,2012 -20121021_GB@STL,4,11,55,GB,STL,,,5,M.Crosby kicks 72 yards from GB 35 to SL -7. C.Givens Touchback.,20,6,2012 -20121021_GB@STL,4,11,50,STL,GB,1,10,80,(11:50) S.Bradford pass short left to C.Givens pushed ob at GB 24 for 56 yards (E.Walden).,6,20,2012 -20121021_GB@STL,4,11,27,STL,GB,1,10,24,(11:27) (No Huddle) D.Richardson up the middle to GB 18 for 6 yards (E.Walden).,6,20,2012 -20121021_GB@STL,4,10,57,STL,GB,2,4,18,(10:57) (No Huddle) D.Richardson right guard to GB 15 for 3 yards (C.Wilson).,6,20,2012 -20121021_GB@STL,4,10,11,STL,GB,3,1,15,(10:11) S.Jackson left guard to GB 12 for 3 yards (R.Pickett).,6,20,2012 -20121021_GB@STL,4,9,30,STL,GB,1,10,12,(9:30) (Shotgun) S.Bradford pass short middle to S.Smith to GB 6 for 6 yards (A.Hawk).,6,20,2012 -20121021_GB@STL,4,8,55,STL,GB,2,4,6,(8:55) S.Jackson right guard for 6 yards TOUCHDOWN.,6,20,2012 -20121021_GB@STL,4,8,55,STL,GB,,,6,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,20,2012 -20121021_GB@STL,4,8,55,STL,GB,,,6,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,13,20,2012 -20121021_GB@STL,4,8,50,GB,STL,1,10,80,(8:50) A.Green left tackle to GB 20 for no gain (J.Laurinaitis).,20,13,2012 -20121021_GB@STL,4,8,13,GB,STL,2,10,80,(8:13) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 31 for 11 yards (J.Cole).,20,13,2012 -20121021_GB@STL,4,7,30,GB,STL,1,10,69,(7:30) J.Kuhn up the middle to GB 34 for 3 yards (J.Laurinaitis).,20,13,2012 -20121021_GB@STL,4,6,52,GB,STL,2,7,66,(6:52) A.Rodgers pass incomplete deep right to J.Nelson.,20,13,2012 -20121021_GB@STL,4,6,45,GB,STL,3,7,66,(6:45) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 42 for 8 yards (J.Cole).,20,13,2012 -20121021_GB@STL,4,6,9,GB,STL,1,10,58,(6:09) A.Green left end to GB 44 for 2 yards (J.Cudjo).,20,13,2012 -20121021_GB@STL,4,5,27,GB,STL,2,8,56,(5:27) A.Rodgers pass short right to J.Kuhn to SL 40 for 16 yards (R.McIntosh).,20,13,2012 -20121021_GB@STL,4,4,38,GB,STL,1,10,40,(4:38) A.Green left end to SL 35 for 5 yards (R.McIntosh).,20,13,2012 -20121021_GB@STL,4,3,55,GB,STL,2,5,35,(3:55) (Shotgun) A.Green right tackle to SL 39 for -4 yards (J.Dunbar).,20,13,2012 -20121021_GB@STL,4,3,19,GB,STL,3,9,39,(3:19) (Shotgun) A.Rodgers pass deep right to R.Cobb for 39 yards TOUCHDOWN. Penalty on SL-K.Langford Defensive Offside declined.,20,13,2012 -20121021_GB@STL,4,3,19,GB,STL,,,39,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,20,13,2012 -20121021_GB@STL,4,3,19,GB,STL,,,39,M.Crosby kicks 73 yards from GB 35 to SL -8. C.Givens pushed ob at SL 19 for 27 yards (T.Manning).,27,13,2012 -20121021_GB@STL,4,2,59,STL,GB,1,10,81,(2:59) (Shotgun) S.Bradford pass incomplete short left to S.Smith [B.Jones].,13,27,2012 -20121021_GB@STL,4,2,56,STL,GB,2,10,81,(2:56) (Shotgun) S.Bradford pass incomplete short left to B.Gibson.,13,27,2012 -20121021_GB@STL,4,2,52,STL,GB,3,10,81,(2:52) (Shotgun) S.Bradford pass short right to B.Gibson to SL 24 for 5 yards (C.Woodson).,13,27,2012 -20121021_GB@STL,4,2,13,STL,GB,4,5,76,(2:13) (Shotgun) S.Bradford pass short middle to S.Smith to SL 28 for 4 yards (M.Burnett).,13,27,2012 -20121021_GB@STL,4,2,7,GB,STL,1,10,28,(2:07) A.Green left tackle to SL 30 for -2 yards (M.Brockers).,27,13,2012 -20121021_GB@STL,4,2,4,GB,STL,2,12,30,(2:04) A.Green left tackle to SL 30 for no gain (J.Laurinaitis).,27,13,2012 -20121021_GB@STL,4,1,59,GB,STL,3,12,30,(1:59) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones.,27,13,2012 -20121021_GB@STL,4,1,54,GB,STL,4,12,30,(1:54) M.Crosby 48 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,27,13,2012 -20121021_GB@STL,4,1,54,GB,STL,,,30,M.Crosby kicks 74 yards from GB 35 to SL -9. I.Pead to SL 23 for 32 yards (M.Jennings).,30,13,2012 -20121021_GB@STL,4,1,41,STL,GB,1,10,77,(1:41) (Shotgun) S.Bradford pass short right to D.Richardson to SL 43 for 20 yards (M.Burnett).,13,30,2012 -20121021_GB@STL,4,1,16,STL,GB,1,10,57,(1:16) (No Huddle Shotgun) S.Bradford pass incomplete short left to B.Quick.,13,30,2012 -20121021_GB@STL,4,1,11,STL,GB,2,10,57,(1:11) (Shotgun) S.Bradford pass short left to D.Richardson to GB 39 for 18 yards (M.Jennings; J.McMillian).,13,30,2012 -20121021_GB@STL,4,1,1,STL,GB,1,10,39,(1:01) S.Bradford pass deep middle to B.Quick to GB 17 for 22 yards (T.Williams).,13,30,2012 -20121021_GB@STL,4,1,1,STL,GB,1,10,17,(1:01) S.Bradford spiked the ball to stop the clock.,13,30,2012 -20121021_GB@STL,4,0,38,STL,GB,2,10,17,(:38) (Shotgun) PENALTY on SL-Sh.Smith False Start 5 yards enforced at GB 17 - No Play.,13,30,2012 -20121021_GB@STL,4,0,38,STL,GB,2,15,22,(:38) (Shotgun) S.Bradford pass short left to B.Quick to GB 13 for 9 yards (D.House). Penalty on GB-J.Worthy Defensive Offside declined.,13,30,2012 -20121021_GB@STL,4,0,34,STL,GB,3,6,13,(:34) (Shotgun) S.Bradford pass incomplete short left to B.Quick.,13,30,2012 -20121021_GB@STL,4,0,29,STL,GB,4,6,13,(:29) (Shotgun) S.Bradford pass short middle to S.Smith to GB 3 for 10 yards (D.House).,13,30,2012 -20121021_GB@STL,4,0,22,STL,GB,1,3,3,(:22) (Shotgun) S.Bradford pass incomplete short right to S.Smith.,13,30,2012 -20121021_GB@STL,4,0,19,STL,GB,2,3,3,(:19) (Shotgun) S.Bradford pass short left to A.Pettis for 3 yards TOUCHDOWN.,13,30,2012 -20121021_GB@STL,4,0,19,STL,GB,,,3,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,13,30,2012 -20121021_GB@STL,4,0,19,STL,GB,,,3,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,20,30,2012 -20121021_GB@STL,4,0,15,GB,STL,1,10,80,(:15) A.Rodgers kneels to GB 19 for -1 yards.,30,20,2012 -20121021_GB@STL,4,0,15,GB,STL,,,80,                      ,30,20,2012 -20121021_NO@TB,1,0,0,TB,NO,,,80,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20121021_NO@TB,1,60,0,NO,TB,1,10,80,(15:00) (Shotgun) D.Brees pass short right to D.Sproles to NO 27 for 7 yards (B.McDonald).,0,0,2012 -20121021_NO@TB,1,59,27,NO,TB,2,3,73,(14:27) P.Thomas up the middle to NO 31 for 4 yards (Q.Black; G.McCoy).,0,0,2012 -20121021_NO@TB,1,58,51,NO,TB,1,10,69,(13:51) (Shotgun) P.Thomas right guard to NO 37 for 6 yards (E.Biggers).,0,0,2012 -20121021_NO@TB,1,58,17,NO,TB,2,4,63,(13:17) D.Brees scrambles right end ran ob at NO 38 for 1 yard.,0,0,2012 -20121021_NO@TB,1,57,41,NO,TB,3,3,62,(12:41) (Shotgun) D.Brees pass short middle intended for M.Colston INTERCEPTED by R.Barber (G.McCoy) at NO 43. R.Barber ran ob at NO 13 for 30 yards.,0,0,2012 -20121021_NO@TB,1,57,27,TB,NO,1,10,13,(12:27) (Shotgun) J.Freeman pass short middle to T.Underwood for 13 yards TOUCHDOWN.,0,0,2012 -20121021_NO@TB,1,57,27,TB,NO,,,13,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121021_NO@TB,1,57,27,TB,NO,,,13,M.Koenen kicks 74 yards from TB 35 to NO -9. D.Sproles Touchback.,7,0,2012 -20121021_NO@TB,1,57,22,NO,TB,1,10,80,(12:22) D.Brees pass short left to D.Henderson to NO 25 for 5 yards (E.Biggers).,0,7,2012 -20121021_NO@TB,1,56,46,NO,TB,2,5,75,(11:46) M.Ingram up the middle to NO 28 for 3 yards (G.McCoy; L.David).,0,7,2012 -20121021_NO@TB,1,56,13,NO,TB,3,2,72,(11:13) D.Brees pass incomplete short right to M.Colston (E.Wright).,0,7,2012 -20121021_NO@TB,1,56,5,NO,TB,4,2,72,(11:05) (Punt formation) T.Morstead punts 57 yards to TB 15 Center-J.Drescher. R.Parrish pushed ob at TB 24 for 9 yards (T.Cadet).,0,7,2012 -20121021_NO@TB,1,55,53,TB,NO,1,10,76,(10:53) D.Martin left tackle to TB 25 for 1 yard (C.Lofton).,7,0,2012 -20121021_NO@TB,1,55,8,TB,NO,2,9,75,(10:08) J.Freeman pass short left to M.Williams to TB 33 for 8 yards (P.Robinson).,7,0,2012 -20121021_NO@TB,1,54,22,TB,NO,3,1,67,(9:22) J.Freeman pass short left to E.Lorig to TB 39 for 6 yards (C.Lofton).,7,0,2012 -20121021_NO@TB,1,53,41,TB,NO,1,10,61,(8:41) J.Freeman pass incomplete deep middle to M.Williams [J.Vilma]. New Orleans challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),7,0,2012 -20121021_NO@TB,1,53,32,TB,NO,2,10,61,(8:32) J.Freeman scrambles left end to NO 48 for 13 yards. 5 handed the ball to 22 22 pitched the ball back to 5,7,0,2012 -20121021_NO@TB,1,52,45,TB,NO,1,10,48,(7:45) D.Martin right guard to NO 40 for 8 yards (S.Shanle; M.Jenkins).,7,0,2012 -20121021_NO@TB,1,52,0,TB,NO,2,2,40,(7:00) J.Freeman pass incomplete deep right to V.Jackson.,7,0,2012 -20121021_NO@TB,1,51,54,TB,NO,3,2,40,(6:54) D.Ware left guard to NO 36 for 4 yards (R.Harper).,7,0,2012 -20121021_NO@TB,1,51,11,TB,NO,1,10,36,(6:11) (Shotgun) J.Freeman pass incomplete short left to V.Jackson (J.Vilma).,7,0,2012 -20121021_NO@TB,1,51,5,TB,NO,2,10,36,(6:05) D.Martin left guard for 36 yards TOUCHDOWN.,7,0,2012 -20121021_NO@TB,1,51,5,TB,NO,,,36,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,7,0,2012 -20121021_NO@TB,1,51,5,TB,NO,,,36,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,14,0,2012 -20121021_NO@TB,1,50,55,NO,TB,1,10,80,(5:55) P.Thomas left guard to NO 25 for 5 yards (E.Biggers). Penalty on NO-M.Colston Offensive Holding declined. PENALTY on NO-B.Grubbs Offensive Holding 10 yards enforced at NO 20 - No Play.,0,14,2012 -20121021_NO@TB,1,50,39,NO,TB,1,20,90,(5:39) P.Thomas right guard to NO 11 for 1 yard (M.Foster D.Te'o-Nesheim).,0,14,2012 -20121021_NO@TB,1,50,7,NO,TB,2,19,89,(5:07) D.Brees pass short left to M.Colston pushed ob at NO 26 for 15 yards (E.Wright).,0,14,2012 -20121021_NO@TB,1,49,41,NO,TB,3,4,74,(4:41) (Shotgun) D.Brees pass short left to M.Colston to NO 32 for 6 yards (M.Barron). Penalty on TB-B.McDonald Defensive Holding declined.,0,14,2012 -20121021_NO@TB,1,49,25,NO,TB,1,10,68,(4:25) D.Brees pass deep right to D.Henderson to TB 28 for 40 yards (E.Wright).,0,14,2012 -20121021_NO@TB,1,48,43,NO,TB,1,10,28,(3:43) (Shotgun) D.Sproles up the middle to TB 20 for 8 yards (R.Barber; B.McDonald).,0,14,2012 -20121021_NO@TB,1,48,9,NO,TB,2,2,20,(3:09) M.Ingram left guard to TB 19 for 1 yard (E.Biggers).,0,14,2012 -20121021_NO@TB,1,47,31,NO,TB,3,1,19,(2:31) D.Brees pass short right to L.Moore to TB 17 for 2 yards (E.Wright).,0,14,2012 -20121021_NO@TB,1,46,55,NO,TB,1,10,17,(1:55) (Shotgun) D.Brees pass short right to M.Colston for 17 yards TOUCHDOWN.,0,14,2012 -20121021_NO@TB,1,46,55,NO,TB,,,17,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,14,2012 -20121021_NO@TB,1,46,55,NO,TB,,,17,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,7,14,2012 -20121021_NO@TB,1,46,46,TB,NO,1,10,80,(1:46) D.Martin up the middle to TB 23 for 3 yards (A.Hicks).,14,7,2012 -20121021_NO@TB,1,46,9,TB,NO,2,7,77,(1:09) (Shotgun) J.Freeman pass deep left to V.Jackson to TB 39 for 16 yards (C.White).,14,7,2012 -20121021_NO@TB,1,45,34,TB,NO,1,10,61,(:34) A.Benn right end to TB 41 for 2 yards (J.Casillas). NO-J.Casillas was injured during the play. His return is Questionable.,14,7,2012 -20121021_NO@TB,2,45,0,TB,NO,2,8,59,(15:00) D.Martin left tackle to 50 for 9 yards (P.Robinson).,14,7,2012 -20121021_NO@TB,2,44,15,TB,NO,1,10,50,(14:15) J.Freeman pass short left to L.Stocker to NO 17 for 33 yards (P.Robinson).,14,7,2012 -20121021_NO@TB,2,43,26,TB,NO,1,10,17,(13:26) J.Freeman pass short left to V.Jackson for 17 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,14,7,2012 -20121021_NO@TB,2,43,26,TB,NO,,,17,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,14,7,2012 -20121021_NO@TB,2,43,26,TB,NO,,,17,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,21,7,2012 -20121021_NO@TB,2,43,18,NO,TB,1,10,80,(13:18) M.Ingram right guard to NO 20 for no gain (L.David G.Johnson).,7,21,2012 -20121021_NO@TB,2,42,43,NO,TB,2,10,80,(12:43) (Shotgun) D.Brees pass incomplete short right to P.Thomas.,7,21,2012 -20121021_NO@TB,2,42,38,NO,TB,3,10,80,(12:38) (Shotgun) D.Brees pass short middle to L.Moore to NO 33 for 13 yards (L.David).,7,21,2012 -20121021_NO@TB,2,42,5,NO,TB,1,10,67,(12:05) P.Thomas left guard to NO 34 for 1 yard (G.McCoy).,7,21,2012 -20121021_NO@TB,2,41,28,NO,TB,2,9,66,(11:28) (Shotgun) D.Brees pass short right to D.Henderson pushed ob at TB 36 for 30 yards (R.Barber).,7,21,2012 -20121021_NO@TB,2,40,57,NO,TB,1,10,36,(10:57) (Shotgun) D.Sproles up the middle to TB 27 for 9 yards (M.Barron).,7,21,2012 -20121021_NO@TB,2,40,23,NO,TB,2,1,27,(10:23) D.Brees pass short left to M.Colston pushed ob at TB 10 for 17 yards (M.Barron).,7,21,2012 -20121021_NO@TB,2,40,11,NO,TB,1,10,10,(10:11) M.Ingram up the middle to TB 9 for 1 yard (M.Foster).,7,21,2012 -20121021_NO@TB,2,39,34,NO,TB,2,9,9,(9:34) (Shotgun) D.Brees pass short right to D.Sproles for 9 yards TOUCHDOWN.,7,21,2012 -20121021_NO@TB,2,39,34,NO,TB,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,21,2012 -20121021_NO@TB,2,39,34,NO,TB,,,9,T.Morstead kicks 73 yards from NO 35 to TB -8. A.Benn to TB 8 for 16 yards (R.Humber; W.Herring).,14,21,2012 -20121021_NO@TB,2,39,20,TB,NO,1,10,92,(9:20) J.Freeman pass short middle to M.Williams to TB 25 for 17 yards (P.Robinson; M.Jenkins).,21,14,2012 -20121021_NO@TB,2,38,32,TB,NO,1,10,75,(8:32) J.Freeman pass incomplete short middle to L.Blount [C.Jordan].,21,14,2012 -20121021_NO@TB,2,38,27,TB,NO,2,10,75,(8:27) L.Blount left guard to TB 25 for no gain (C.Lofton).,21,14,2012 -20121021_NO@TB,2,37,42,TB,NO,3,10,75,(7:42) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (C.Jordan).,21,14,2012 -20121021_NO@TB,2,37,37,TB,NO,4,10,75,(7:37) (Punt formation) PENALTY on NO-M.Wilson Defensive Offside 5 yards enforced at TB 25 - No Play.,21,14,2012 -20121021_NO@TB,2,37,37,TB,NO,4,5,70,(7:37) (Punt formation) M.Koenen punts 54 yards to NO 16 Center-A.Economos. D.Sproles to NO 37 for 21 yards (C.Grimm). PENALTY on NO-J.Galette Offensive Holding 10 yards enforced at NO 31.,21,14,2012 -20121021_NO@TB,2,37,20,NO,TB,1,10,79,(7:20) D.Brees pass short left to L.Moore to NO 34 for 13 yards (E.Wright).,14,21,2012 -20121021_NO@TB,2,36,46,NO,TB,1,10,66,(6:46) P.Thomas left end to NO 40 for 6 yards (E.Wright; D.Te'o-Nesheim).,14,21,2012 -20121021_NO@TB,2,36,12,NO,TB,2,4,60,(6:12) P.Thomas up the middle to NO 36 for -4 yards (L.David).,14,21,2012 -20121021_NO@TB,2,35,31,NO,TB,3,8,64,(5:31) (Shotgun) D.Brees pass deep middle to L.Moore to TB 48 for 16 yards (R.Barber).,14,21,2012 -20121021_NO@TB,2,34,47,NO,TB,1,10,48,(4:47) D.Brees pass deep right to J.Morgan for 48 yards TOUCHDOWN.,14,21,2012 -20121021_NO@TB,2,34,47,NO,TB,,,48,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,21,2012 -20121021_NO@TB,2,34,47,NO,TB,,,48,T.Morstead kicks 70 yards from NO 35 to TB -5. A.Benn Touchback.,21,21,2012 -20121021_NO@TB,2,34,35,TB,NO,1,10,80,(4:35) D.Martin left end pushed ob at TB 28 for 8 yards (R.Harper).,21,21,2012 -20121021_NO@TB,2,34,1,TB,NO,2,2,72,(4:01) (Shotgun) J.Freeman pass short left to M.Williams to TB 34 for 6 yards (P.Robinson).,21,21,2012 -20121021_NO@TB,2,33,23,TB,NO,1,10,66,(3:23) D.Martin left guard to TB 35 for 1 yard (W.Smith).,21,21,2012 -20121021_NO@TB,2,32,40,TB,NO,2,9,65,(2:40) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,21,21,2012 -20121021_NO@TB,2,32,35,TB,NO,3,9,65,(2:35) (Shotgun) J.Freeman pass short left to D.Ware to TB 41 for 6 yards (R.Harper).,21,21,2012 -20121021_NO@TB,2,32,0,TB,NO,4,3,59,(2:00) (Punt formation) M.Koenen punts 31 yards to NO 28 Center-A.Economos fair catch by D.Sproles.,21,21,2012 -20121021_NO@TB,2,31,53,NO,TB,1,10,72,(1:53) (Shotgun) D.Sproles up the middle to NO 25 for -3 yards (M.Bennett).,21,21,2012 -20121021_NO@TB,2,31,34,NO,TB,2,13,75,(1:34) (Shotgun) D.Brees pass short left to D.Sproles ran ob at NO 33 for 8 yards.,21,21,2012 -20121021_NO@TB,2,31,26,NO,TB,3,5,67,(1:26) (Shotgun) D.Brees pass short middle to L.Moore to NO 46 for 13 yards (E.Biggers).,21,21,2012 -20121021_NO@TB,2,31,8,NO,TB,1,10,54,(1:08) (Shotgun) D.Brees pass short middle to D.Thomas to TB 47 for 7 yards (R.Barber).,21,21,2012 -20121021_NO@TB,2,30,45,NO,TB,2,3,47,(:45) (No Huddle) D.Brees pass incomplete short left to J.Morgan.,21,21,2012 -20121021_NO@TB,2,30,38,NO,TB,3,3,47,(:38) D.Brees pass short left to L.Moore to TB 38 for 9 yards (B.McDonald).,21,21,2012 -20121021_NO@TB,2,30,38,NO,TB,1,10,38,(:38) D.Brees spiked the ball to stop the clock.,21,21,2012 -20121021_NO@TB,2,30,26,NO,TB,2,10,38,(:26) (Shotgun) D.Brees pass deep left to L.Moore ran ob at TB 20 for 18 yards.,21,21,2012 -20121021_NO@TB,2,30,21,NO,TB,1,10,20,(:21) (Shotgun) D.Brees pass deep middle to D.Thomas for 20 yards TOUCHDOWN.,21,21,2012 -20121021_NO@TB,2,30,21,NO,TB,,,20,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,21,21,2012 -20121021_NO@TB,2,30,15,TB,NO,1,10,60,(:15) (Shotgun) J.Freeman sacked at TB 35 for -5 yards (J.Galette).,21,28,2012 -20121021_NO@TB,3,30,0,NO,TB,,,60,T.Morstead kicks 72 yards from NO 35 to TB -7. A.Benn Touchback.,28,21,2012 -20121021_NO@TB,3,30,0,TB,NO,1,10,80,(15:00) D.Martin left end to TB 21 for 1 yard (S.Ellis).,21,28,2012 -20121021_NO@TB,3,29,21,TB,NO,2,9,79,(14:21) J.Freeman pass short right to V.Jackson to TB 35 for 14 yards (J.Casillas).,21,28,2012 -20121021_NO@TB,3,28,35,TB,NO,1,10,65,(13:35) D.Martin right guard to TB 46 for 11 yards (S.Shanle).,21,28,2012 -20121021_NO@TB,3,27,58,TB,NO,1,10,54,(12:58) D.Martin up the middle to TB 44 for -2 yards (C.Lofton).,21,28,2012 -20121021_NO@TB,3,27,19,TB,NO,2,12,56,(12:19) J.Freeman pass incomplete short right to M.Williams. PENALTY on TB-J.Meredith Illegal Use of Hands 10 yards enforced at TB 44 - No Play.,21,28,2012 -20121021_NO@TB,3,27,13,TB,NO,2,22,66,(12:13) D.Martin left tackle to TB 45 for 11 yards (M.Jenkins).,21,28,2012 -20121021_NO@TB,3,26,26,TB,NO,3,11,55,(11:26) (Shotgun) J.Freeman pass deep right to V.Jackson to NO 27 for 28 yards (J.Greer).,21,28,2012 -20121021_NO@TB,3,25,40,TB,NO,1,10,27,(10:40) D.Martin right tackle to NO 31 for -4 yards (M.Jenkins).,21,28,2012 -20121021_NO@TB,3,24,50,TB,NO,2,14,31,(9:50) L.Blount left guard to NO 33 for -2 yards (J.Galette).,21,28,2012 -20121021_NO@TB,3,24,4,TB,NO,3,16,33,(9:04) (Shotgun) J.Freeman pass short middle to D.Clark to NO 24 for 9 yards (C.Lofton).,21,28,2012 -20121021_NO@TB,3,23,21,TB,NO,4,7,24,(8:21) (Field Goal formation) C.Barth 42 yard field goal is No Good Wide Left Center-A.Economos Holder-M.Koenen.,21,28,2012 -20121021_NO@TB,3,23,15,NO,TB,1,10,68,(8:15) (Shotgun) P.Thomas left guard to NO 36 for 4 yards (L.David; M.Foster).,28,21,2012 -20121021_NO@TB,3,22,42,NO,TB,2,6,64,(7:42) D.Brees pass incomplete deep left to J.Morgan (M.Barron).,28,21,2012 -20121021_NO@TB,3,22,32,NO,TB,3,6,64,(7:32) (Shotgun) D.Brees pass incomplete short middle to M.Colston (E.Wright).,28,21,2012 -20121021_NO@TB,3,22,28,NO,TB,4,6,64,(7:28) (Punt formation) T.Morstead punts 33 yards to TB 31 Center-J.Drescher out of bounds. PENALTY on TB-E.Biggers Running Into the Kicker 5 yards enforced at NO 36 - No Play.,28,21,2012 -20121021_NO@TB,3,22,19,NO,TB,4,1,59,(7:19) (Punt formation) T.Morstead punts 55 yards to TB 4 Center-J.Drescher out of bounds.,28,21,2012 -20121021_NO@TB,3,22,9,TB,NO,1,10,96,(7:09) D.Martin left guard to TB 4 for no gain (T.Johnson).,21,28,2012 -20121021_NO@TB,3,21,39,TB,NO,2,10,96,(6:39) J.Freeman pass deep left to V.Jackson to NO 1 for 95 yards (M.Jenkins).,21,28,2012 -20121021_NO@TB,3,20,41,TB,NO,1,1,1,(5:41) L.Blount left guard to NO 2 for -1 yards (S.Ellis).,21,28,2012 -20121021_NO@TB,3,19,59,TB,NO,2,2,2,(4:59) L.Blount right guard to NO 1 for 1 yard (R.Harper).,21,28,2012 -20121021_NO@TB,3,19,16,TB,NO,3,1,1,(4:16) L.Blount left tackle to NO 1 for no gain (M.Jenkins).,21,28,2012 -20121021_NO@TB,3,18,34,TB,NO,4,1,1,(3:34) J.Freeman scrambles right end to NO 5 for -4 yards (W.Herring).,21,28,2012 -20121021_NO@TB,3,18,24,NO,TB,1,10,95,(3:24) P.Thomas up the middle to NO 8 for 3 yards (D.Te'o-Nesheim).,28,21,2012 -20121021_NO@TB,3,17,56,NO,TB,2,7,92,(2:56) D.Brees pass short left to J.Collins to NO 9 for 1 yard (L.David).,28,21,2012 -20121021_NO@TB,3,17,10,NO,TB,3,6,91,(2:10) (Shotgun) D.Brees pass deep right to L.Moore pushed ob at NO 44 for 35 yards (M.Barron).,28,21,2012 -20121021_NO@TB,3,16,44,NO,TB,1,10,56,(1:44) M.Ingram up the middle to TB 46 for 10 yards (M.Barron; R.Barber). Penalty on TB-G.Gibson Defensive Offside declined.,28,21,2012 -20121021_NO@TB,3,16,25,NO,TB,1,10,46,(1:25) (Shotgun) D.Sproles left end pushed ob at TB 34 for 12 yards (M.Barron).,28,21,2012 -20121021_NO@TB,3,15,57,NO,TB,1,10,34,(:57) D.Brees pass short left to M.Colston pushed ob at TB 30 for 4 yards (E.Wright).,28,21,2012 -20121021_NO@TB,3,15,25,NO,TB,2,6,30,(:25) (Shotgun) P.Thomas left guard to TB 33 for -3 yards (L.David R.Miller).,28,21,2012 -20121021_NO@TB,4,15,0,NO,TB,3,9,33,(15:00) (Shotgun) D.Brees pass incomplete short right to D.Thomas (L.David).,28,21,2012 -20121021_NO@TB,4,14,54,NO,TB,4,9,33,(14:54) (Field Goal formation) PENALTY on TB Unsportsmanlike Conduct 15 yards enforced at TB 33 - No Play.,28,21,2012 -20121021_NO@TB,4,14,54,NO,TB,1,10,18,(14:54) PENALTY on NO-D.Thomas False Start 5 yards enforced at TB 18 - No Play.,28,21,2012 -20121021_NO@TB,4,14,54,NO,TB,1,15,23,(14:54) (Shotgun) D.Brees pass short left to D.Sproles to TB 15 for 8 yards (L.David).,28,21,2012 -20121021_NO@TB,4,14,18,NO,TB,2,7,15,(14:18) (Shotgun) D.Brees pass incomplete short left to D.Thomas.,28,21,2012 -20121021_NO@TB,4,14,13,NO,TB,3,7,15,(14:13) (Shotgun) D.Brees pass short right to M.Colston to TB 5 for 10 yards (E.Wright).,28,21,2012 -20121021_NO@TB,4,13,31,NO,TB,1,5,5,(13:31) P.Thomas right guard for 5 yards TOUCHDOWN.,28,21,2012 -20121021_NO@TB,4,13,31,NO,TB,,,5,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,28,21,2012 -20121021_NO@TB,4,13,31,NO,TB,,,5,T.Morstead kicks 73 yards from NO 35 to TB -8. A.Benn Touchback.,35,21,2012 -20121021_NO@TB,4,13,23,TB,NO,1,10,80,(13:23) (Shotgun) J.Freeman pass incomplete short left to M.Williams (W.Smith).,21,35,2012 -20121021_NO@TB,4,13,19,TB,NO,2,10,80,(13:19) (Shotgun) D.Martin left guard to TB 23 for 3 yards (J.Galette).,21,35,2012 -20121021_NO@TB,4,12,43,TB,NO,3,7,77,(12:43) (Shotgun) J.Freeman pass short middle to M.Williams to TB 28 for 5 yards (J.Greer).,21,35,2012 -20121021_NO@TB,4,12,2,TB,NO,4,2,72,(12:02) (Punt formation) M.Koenen punts 60 yards to NO 12 Center-A.Economos downed by TB-A.Benn. New Orleans challenged the runner was in bounds ruling and the play was REVERSED. (Punt formation) M.Koenen punts 41 yards to NO 31 Center-A.Economos out of bounds.,21,35,2012 -20121021_NO@TB,4,11,48,NO,TB,1,10,69,(11:48) P.Thomas up the middle to NO 30 for -1 yards (M.Foster).,35,21,2012 -20121021_NO@TB,4,11,15,NO,TB,2,11,70,(11:15) M.Ingram right guard to NO 33 for 3 yards (R.Miller).,35,21,2012 -20121021_NO@TB,4,10,40,NO,TB,3,8,67,(10:40) (Shotgun) D.Brees pass incomplete short middle to L.Moore (E.Biggers).,35,21,2012 -20121021_NO@TB,4,10,33,NO,TB,4,8,67,(10:33) (Punt formation) T.Morstead punts 48 yards to TB 19 Center-J.Drescher fair catch by R.Parrish. Penalty on TB Illegal Formation declined.,35,21,2012 -20121021_NO@TB,4,10,28,TB,NO,1,10,81,(10:28) (Shotgun) J.Freeman pass short right to D.Martin to TB 33 for 14 yards (I.Abdul-Quddus).,21,35,2012 -20121021_NO@TB,4,9,40,TB,NO,1,10,67,(9:40) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (J.Greer).,21,35,2012 -20121021_NO@TB,4,9,34,TB,NO,2,10,67,(9:34) (Shotgun) J.Freeman pass short right to D.Martin to NO 49 for 18 yards (M.Jenkins; I.Abdul-Quddus). PENALTY on NO-M.Jenkins Face Mask (15 Yards) 15 yards enforced at NO 49.,21,35,2012 -20121021_NO@TB,4,9,1,TB,NO,1,10,34,(9:01) (Shotgun) J.Freeman pass deep middle to T.Underwood to NO 12 for 22 yards (I.Abdul-Quddus).,21,35,2012 -20121021_NO@TB,4,8,14,TB,NO,1,10,12,(8:14) (Shotgun) J.Freeman pass short middle to D.Martin to NO 5 for 7 yards (C.Lofton). PENALTY on TB-D.Dotson Illegal Use of Hands 10 yards enforced at NO 12 - No Play.,21,35,2012 -20121021_NO@TB,4,7,53,TB,NO,1,20,22,(7:53) (Shotgun) D.Martin up the middle to NO 22 for no gain (J.Galette).,21,35,2012 -20121021_NO@TB,4,7,6,TB,NO,2,20,22,(7:06) (Shotgun) J.Freeman pass incomplete short middle to T.Underwood (P.Robinson).,21,35,2012 -20121021_NO@TB,4,7,6,TB,NO,3,20,22,(7:06) (Shotgun) PENALTY on TB-J.Freeman Delay of Game 5 yards enforced at NO 22 - No Play.,21,35,2012 -20121021_NO@TB,4,7,0,TB,NO,3,25,27,(7:00) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (C.White). PENALTY on NO-R.Harper Illegal Contact 5 yards enforced at NO 27 - No Play.,21,35,2012 -20121021_NO@TB,4,6,52,TB,NO,1,10,22,(6:52) (Shotgun) J.Freeman pass incomplete deep right to M.Williams.,21,35,2012 -20121021_NO@TB,4,6,45,TB,NO,2,10,22,(6:45) (Shotgun) J.Freeman pass incomplete deep middle to D.Clark. PENALTY on NO-R.Harper Illegal Contact 5 yards enforced at NO 22 - No Play.,21,35,2012 -20121021_NO@TB,4,6,39,TB,NO,1,10,17,(6:39) (Shotgun) J.Freeman pass incomplete short right to V.Jackson.,21,35,2012 -20121021_NO@TB,4,6,31,TB,NO,2,10,17,(6:31) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson.,21,35,2012 -20121021_NO@TB,4,6,26,TB,NO,3,10,17,(6:26) (Shotgun) PENALTY on TB-V.Jackson False Start 5 yards enforced at NO 17 - No Play.,21,35,2012 -20121021_NO@TB,4,6,26,TB,NO,3,15,22,(6:26) (Shotgun) J.Freeman pass short right to D.Martin to NO 17 for 5 yards (T.Johnson).,21,35,2012 -20121021_NO@TB,4,5,42,TB,NO,4,10,17,(5:42) (Shotgun) J.Freeman pass short right to D.Clark to NO 2 for 15 yards (J.Greer).,21,35,2012 -20121021_NO@TB,4,5,3,TB,NO,1,2,2,(5:03) D.Martin left guard to NO 3 for -1 yards (W.Smith P.Robinson).,21,35,2012 -20121021_NO@TB,4,4,22,TB,NO,2,3,3,(4:22) J.Freeman pass incomplete short left to M.Williams.,21,35,2012 -20121021_NO@TB,4,4,16,TB,NO,3,3,3,(4:16) (Shotgun) J.Freeman pass short middle to D.Clark for 3 yards TOUCHDOWN. Penalty on NO-C.Lofton Defensive Holding declined.,21,35,2012 -20121021_NO@TB,4,4,16,TB,NO,,,3,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,21,35,2012 -20121021_NO@TB,4,4,16,TB,NO,,,3,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,28,35,2012 -20121021_NO@TB,4,4,10,NO,TB,1,10,80,(4:10) P.Thomas left guard to NO 25 for 5 yards (M.Foster).,35,28,2012 -20121021_NO@TB,4,3,41,NO,TB,2,5,75,(3:41) D.Brees pass short right to M.Colston to NO 29 for 4 yards (B.McDonald).,35,28,2012 -20121021_NO@TB,4,2,58,NO,TB,3,1,71,(2:58) M.Ingram up the middle to NO 32 for 3 yards (E.Wright).,35,28,2012 -20121021_NO@TB,4,2,51,NO,TB,1,10,68,(2:51) P.Thomas up the middle to NO 37 for 5 yards (M.Barron).,35,28,2012 -20121021_NO@TB,4,2,45,NO,TB,2,5,63,(2:45) D.Brees pass short right to L.Moore to NO 39 for 2 yards (E.Biggers).,35,28,2012 -20121021_NO@TB,4,2,39,NO,TB,3,3,61,(2:39) D.Sproles right end to NO 40 for 1 yard (R.Barber).,35,28,2012 -20121021_NO@TB,4,2,0,NO,TB,4,2,60,(2:00) (Punt formation) T.Morstead punts 45 yards to TB 15 Center-J.Drescher. R.Parrish to TB 21 for 6 yards (R.Bush).,35,28,2012 -20121021_NO@TB,4,1,50,TB,NO,1,10,79,(1:50) (Shotgun) J.Freeman pass deep middle to V.Jackson to NO 41 for 38 yards (M.Jenkins).,28,35,2012 -20121021_NO@TB,4,1,25,TB,NO,1,10,41,(1:25) (Shotgun) J.Freeman pass short left to D.Clark pushed ob at NO 26 for 15 yards (P.Robinson).,28,35,2012 -20121021_NO@TB,4,1,18,TB,NO,1,10,26,(1:18) (Shotgun) J.Freeman pass incomplete deep right to T.Underwood.,28,35,2012 -20121021_NO@TB,4,1,12,TB,NO,2,10,26,(1:12) (Shotgun) J.Freeman pass incomplete short left to D.Clark.,28,35,2012 -20121021_NO@TB,4,1,7,TB,NO,3,10,26,(1:07) (Shotgun) J.Freeman pass short left to D.Clark to NO 17 for 9 yards (R.Harper).,28,35,2012 -20121021_NO@TB,4,0,31,TB,NO,4,1,17,(:31) (Shotgun) J.Freeman pass short left to V.Jackson to NO 9 for 8 yards (M.Jenkins).,28,35,2012 -20121021_NO@TB,4,0,17,TB,NO,1,9,9,(:17) J.Freeman spiked the ball to stop the clock.,28,35,2012 -20121021_NO@TB,4,0,17,TB,NO,2,9,9,(:17) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,28,35,2012 -20121021_NO@TB,4,0,11,TB,NO,3,9,9,(:11) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson.,28,35,2012 -20121021_NO@TB,4,0,5,TB,NO,4,9,9,(:05) (Shotgun) PENALTY on TB-M.Williams Illegal Touch Pass 5 yards enforced at NO 9 - No Play.,28,35,2012 -20121021_NO@TB,4,0,5,TB,NO,,,9,                      ,28,35,2012 -20121021_NYJ@NE,1,0,0,NYJ,NE,,,9,N.Folk kicks 72 yards from NYJ 35 to NE -7. D.McCourty Touchback.,0,0,2012 -20121021_NYJ@NE,1,60,0,NE,NYJ,1,10,80,(15:00) T.Brady pass short left to S.Vereen pushed ob at NE 30 for 10 yards (D.Davis).,0,0,2012 -20121021_NYJ@NE,1,59,47,NE,NYJ,1,10,70,(14:47) (No Huddle) S.Vereen left end pushed ob at NE 44 for 14 yards (L.Landry).,0,0,2012 -20121021_NYJ@NE,1,59,35,NE,NYJ,1,10,56,(14:35) (No Huddle) S.Vereen left end to NE 45 for 1 yard (D.Davis).,0,0,2012 -20121021_NYJ@NE,1,58,58,NE,NYJ,2,9,55,(13:58) (No Huddle) T.Brady pass incomplete deep middle to B.Lloyd.,0,0,2012 -20121021_NYJ@NE,1,58,52,NE,NYJ,3,9,55,(13:52) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,0,0,2012 -20121021_NYJ@NE,1,58,47,NE,NYJ,4,9,55,(13:47) Z.Mesko punts 44 yards to NYJ 11 Center-D.Aiken. J.Kerley to NYJ 24 for 13 yards (M.Hoomanawanui).,0,0,2012 -20121021_NYJ@NE,1,58,35,NYJ,NE,1,10,76,(13:35) S.Greene left tackle to NYJ 28 for 4 yards (R.Ninkovich; B.Spikes).,0,0,2012 -20121021_NYJ@NE,1,58,0,NYJ,NE,2,6,72,(13:00) M.Sanchez pass deep middle to J.Kerley to NE 48 for 24 yards (J.Mayo).,0,0,2012 -20121021_NYJ@NE,1,57,17,NYJ,NE,1,10,48,(12:17) M.Sanchez pass incomplete deep left to S.Hill.,0,0,2012 -20121021_NYJ@NE,1,57,12,NYJ,NE,2,10,48,(12:12) NYJ 15-Tebow at QB. (Shotgun) T.Tebow up the middle to NE 45 for 3 yards (B.Spikes).,0,0,2012 -20121021_NYJ@NE,1,56,29,NYJ,NE,3,7,45,(11:29) NYJ 6-Sanchez at QB. (Shotgun) M.Sanchez pass deep right to J.Kerley pushed ob at NE 19 for 26 yards (K.Arrington).,0,0,2012 -20121021_NYJ@NE,1,56,7,NYJ,NE,1,10,19,(11:07) J.Kerley left tackle to NE 17 for 2 yards (C.Jones). reverse,0,0,2012 -20121021_NYJ@NE,1,55,29,NYJ,NE,2,8,17,(10:29) M.Sanchez pass incomplete short left to C.Schilens.,0,0,2012 -20121021_NYJ@NE,1,55,25,NYJ,NE,3,8,17,(10:25) (Shotgun) M.Sanchez pass incomplete deep middle to D.Keller. PENALTY on NE-R.Dowling Defensive Holding 5 yards enforced at NE 17 - No Play.,0,0,2012 -20121021_NYJ@NE,1,55,19,NYJ,NE,1,10,12,(10:19) J.Smith reported in as eligible. L.Hilliard up the middle to NE 8 for 4 yards (B.Spikes).,0,0,2012 -20121021_NYJ@NE,1,54,45,NYJ,NE,2,6,8,(9:45) S.Greene up the middle to NE 4 for 4 yards (D.McCourty). NE-K.Love was injured during the play.,0,0,2012 -20121021_NYJ@NE,1,54,32,NYJ,NE,3,2,4,(9:32) NYJ 15-Tebow at QB. (Shotgun) T.Tebow right guard to NE 1 for 3 yards (J.Mayo).,0,0,2012 -20121021_NYJ@NE,1,53,55,NYJ,NE,1,1,1,(8:55) NYJ 6-Sanchez at QB. J.Smith reported in as eligible. S.Greene up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20121021_NYJ@NE,1,53,55,NYJ,NE,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 -20121021_NYJ@NE,1,53,55,NYJ,NE,,,1,N.Folk kicks 69 yards from NYJ 35 to NE -4. D.McCourty for 104 yards TOUCHDOWN. 2nd longest KO return in franchise history (Hobbs 108),7,0,2012 -20121021_NYJ@NE,1,53,55,NE,NYJ,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,7,2012 -20121021_NYJ@NE,1,53,55,NE,NYJ,,,1,S.Gostkowski kicks 64 yards from NE 35 to NYJ 1. J.McKnight to NYJ 40 for 39 yards (T.Wilson). PENALTY on NYJ-N.Bellore Offensive Holding 10 yards enforced at NYJ 20.,7,7,2012 -20121021_NYJ@NE,1,53,33,NYJ,NE,1,10,90,(8:33) J.Smith reported in as eligible. S.Greene left tackle to NYJ 13 for 3 yards (R.Ninkovich).,7,7,2012 -20121021_NYJ@NE,1,52,52,NYJ,NE,2,7,87,(7:52) (Shotgun) M.Sanchez sacked at NYJ 9 for -4 yards (K.Love).,7,7,2012 -20121021_NYJ@NE,1,52,14,NYJ,NE,3,11,91,(7:14) (Shotgun) M.Sanchez pass short left to J.Cumberland pushed ob at NYJ 13 for 4 yards (J.Mayo).,7,7,2012 -20121021_NYJ@NE,1,51,40,NYJ,NE,4,7,87,(6:40) R.Malone punts 59 yards to NE 28 Center-T.Purdum. W.Welker to NE 42 for 14 yards (G.McIntyre).,7,7,2012 -20121021_NYJ@NE,1,51,30,NE,NYJ,1,10,58,(6:30) (Shotgun) T.Brady pass short right to A.Hernandez to NE 49 for 7 yards (Y.Bell).,7,7,2012 -20121021_NYJ@NE,1,50,52,NE,NYJ,2,3,51,(5:52) (No Huddle Shotgun) T.Brady pass incomplete short middle to R.Gronkowski.,7,7,2012 -20121021_NYJ@NE,1,50,49,NE,NYJ,3,3,51,(5:49) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to NYJ 32 for 19 yards (D.Harris).,7,7,2012 -20121021_NYJ@NE,1,50,20,NE,NYJ,1,10,32,(5:20) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez ran ob at NYJ 21 for 11 yards.,7,7,2012 -20121021_NYJ@NE,1,49,57,NE,NYJ,1,10,21,(4:57) (No Huddle Shotgun) T.Brady pass incomplete short right to B.Lloyd [C.Pace].,7,7,2012 -20121021_NYJ@NE,1,49,52,NE,NYJ,2,10,21,(4:52) S.Ridley left guard to NYJ 17 for 4 yards (C.Pace).,7,7,2012 -20121021_NYJ@NE,1,49,17,NE,NYJ,3,6,17,(4:17) T.Brady pass deep left to R.Gronkowski for 17 yards TOUCHDOWN. NE 12-Brady 39th straight regular season game with a TD pass 3rd longest all-time.,7,7,2012 -20121021_NYJ@NE,1,49,17,NE,NYJ,,,17,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,7,2012 -20121021_NYJ@NE,1,49,3,NYJ,NE,1,10,59,(4:03) PENALTY on NYJ-B.Moore False Start 5 yards enforced at NYJ 41 - No Play.,7,14,2012 -20121021_NYJ@NE,1,49,3,NYJ,NE,1,15,64,(4:03) S.Greene left guard to NYJ 37 for 1 yard (V.Wilfork).,7,14,2012 -20121021_NYJ@NE,1,48,26,NYJ,NE,2,14,63,(3:26) M.Sanchez pass short right to S.Greene to NYJ 48 for 11 yards (J.Mayo). FUMBLES (J.Mayo) and recovers at NYJ 48. S.Greene to NYJ 49 for 1 yard.,7,14,2012 -20121021_NYJ@NE,1,47,58,NYJ,NE,3,2,51,(2:58) M.Sanchez pass incomplete short middle to C.Schilens (R.Dowling).,7,14,2012 -20121021_NYJ@NE,1,47,55,NYJ,NE,4,2,51,(2:55) R.Malone punts 51 yards to end zone Center-T.Purdum Touchback.,7,14,2012 -20121021_NYJ@NE,1,47,48,NE,NYJ,1,10,80,(2:48) (Shotgun) T.Brady pass short middle to J.Edelman to NE 22 for 2 yards (M.Devito).,14,7,2012 -20121021_NYJ@NE,1,47,23,NE,NYJ,2,8,78,(2:23) (No Huddle) D.Woodhead right end to NE 24 for 2 yards (I.Trufant). PENALTY on NYJ-Unidentified Encroachment 5 yards enforced at NE 22 - No Play.,14,7,2012 -20121021_NYJ@NE,1,47,7,NE,NYJ,2,3,73,(2:07) S.Vereen left tackle to NE 29 for 2 yards (C.Pace).,14,7,2012 -20121021_NYJ@NE,1,46,40,NE,NYJ,3,1,71,(1:40) S.Ridley right guard to NE 33 for 4 yards (Y.Bell).,14,7,2012 -20121021_NYJ@NE,1,46,12,NE,NYJ,1,10,67,(1:12) T.Brady pass incomplete deep right to B.Lloyd.,14,7,2012 -20121021_NYJ@NE,1,46,4,NE,NYJ,2,10,67,(1:04) S.Vereen up the middle to NE 37 for 4 yards (Q.Coples).,14,7,2012 -20121021_NYJ@NE,1,45,41,NE,NYJ,3,6,63,(:41) (Shotgun) T.Brady pass short middle to R.Gronkowski to NYJ 50 for 13 yards (I.Trufant).,14,7,2012 -20121021_NYJ@NE,2,45,0,NE,NYJ,1,10,50,(15:00) S.Ridley left guard to NYJ 50 for no gain (L.Landry).,14,7,2012 -20121021_NYJ@NE,2,44,31,NE,NYJ,2,10,50,(14:31) T.Brady pass short middle to R.Gronkowski to NYJ 43 for 7 yards (D.Harris). PENALTY on NE-D.Thomas Offensive Holding 10 yards enforced at NYJ 50 - No Play.,14,7,2012 -20121021_NYJ@NE,2,44,8,NE,NYJ,2,20,60,(14:08) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,14,7,2012 -20121021_NYJ@NE,2,44,2,NE,NYJ,3,20,60,(14:02) (Shotgun) T.Brady pass short right to W.Welker to NYJ 44 for 16 yards (M.Wilkerson). NE 83-Welker 101st consecutive game with a reception.,14,7,2012 -20121021_NYJ@NE,2,43,21,NE,NYJ,4,4,44,(13:21) Z.Mesko punts 32 yards to NYJ 12 Center-D.Aiken fair catch by J.Kerley.,14,7,2012 -20121021_NYJ@NE,2,43,14,NYJ,NE,1,10,88,(13:14) M.Sanchez FUMBLES (Aborted) at NYJ 6 ball out of bounds in End Zone SAFETY. Penalty on NYJ-M.Sanchez Illegal Kick declined. Sanchez kicked the ball through the end zone and out of bounds,7,14,2012 -20121021_NYJ@NE,2,43,14,NYJ,NE,,,88,R.Malone kicks 67 yards from NYJ 20 to NE 13. W.Welker to NE 30 for 17 yards (L.Hilliard).,7,16,2012 -20121021_NYJ@NE,2,43,5,NE,NYJ,1,10,70,(13:05) S.Ridley right guard to NE 40 for 10 yards (Q.Coples).,16,7,2012 -20121021_NYJ@NE,2,42,43,NE,NYJ,1,10,60,(12:43) (No Huddle) S.Ridley left guard to NE 45 for 5 yards (C.Pace).,16,7,2012 -20121021_NYJ@NE,2,42,23,NE,NYJ,2,5,55,(12:23) S.Ridley left guard to NE 45 for no gain (L.Landry).,16,7,2012 -20121021_NYJ@NE,2,41,44,NE,NYJ,3,5,55,(11:44) (Shotgun) T.Brady sacked at NE 36 for -9 yards (D.Harris).,16,7,2012 -20121021_NYJ@NE,2,41,20,NE,NYJ,4,14,64,(11:20) Z.Mesko punts 54 yards to NYJ 10 Center-D.Aiken. J.Kerley to NYJ 16 for 6 yards.,16,7,2012 -20121021_NYJ@NE,2,41,8,NYJ,NE,1,10,84,(11:08) M.Sanchez pass short left to J.Kerley to NYJ 21 for 5 yards (K.Arrington).,7,16,2012 -20121021_NYJ@NE,2,40,39,NYJ,NE,2,5,79,(10:39) S.Greene right tackle to NYJ 29 for 8 yards (J.Mayo).,7,16,2012 -20121021_NYJ@NE,2,40,0,NYJ,NE,1,10,71,(10:00) J.Smith reported in as eligible. M.Sanchez pass deep right to J.Kerley ran ob at NE 49 for 22 yards.,7,16,2012 -20121021_NYJ@NE,2,39,13,NYJ,NE,1,10,49,(9:13) (Shotgun) M.Sanchez pass incomplete short left to S.Greene.,7,16,2012 -20121021_NYJ@NE,2,39,9,NYJ,NE,2,10,49,(9:09) (Shotgun) M.Sanchez pass incomplete short left to J.Kerley.,7,16,2012 -20121021_NYJ@NE,2,39,4,NYJ,NE,3,10,49,(9:04) (Shotgun) M.Sanchez pass short right to D.Keller to NE 38 for 11 yards (J.Cunningham).,7,16,2012 -20121021_NYJ@NE,2,38,23,NYJ,NE,1,10,38,(8:23) S.Greene left guard to NE 36 for 2 yards (J.Mayo).,7,16,2012 -20121021_NYJ@NE,2,37,46,NYJ,NE,2,8,36,(7:46) M.Sanchez pass deep right intended for S.Hill INTERCEPTED by A.Dennard at NE 2. A.Dennard to NE 2 for no gain (S.Hill).,7,16,2012 -20121021_NYJ@NE,2,37,37,NE,NYJ,1,10,98,(7:37) S.Ridley right guard to NE 5 for 3 yards (I.Trufant).,16,7,2012 -20121021_NYJ@NE,2,37,17,NE,NYJ,2,7,95,(7:17) (No Huddle) S.Ridley left tackle to NE 8 for 3 yards (M.Devito).,16,7,2012 -20121021_NYJ@NE,2,36,41,NE,NYJ,3,4,92,(6:41) (Shotgun) T.Brady pass deep left to A.Hernandez pushed ob at NE 25 for 17 yards (K.Wilson).,16,7,2012 -20121021_NYJ@NE,2,36,19,NE,NYJ,1,10,75,(6:19) D.Woodhead left guard to NE 27 for 2 yards (M.Wilkerson).,16,7,2012 -20121021_NYJ@NE,2,35,50,NE,NYJ,2,8,73,(5:50) S.Ridley right end to NE 32 for 5 yards (I.Trufant).,16,7,2012 -20121021_NYJ@NE,2,35,14,NE,NYJ,3,3,68,(5:14) (Shotgun) T.Brady pass incomplete short left to R.Gronkowski.,16,7,2012 -20121021_NYJ@NE,2,35,11,NE,NYJ,4,3,68,(5:11) Z.Mesko punts 55 yards to NYJ 13 Center-D.Aiken. J.Kerley to NYJ 32 for 19 yards (N.Ebner; D.Aiken). PENALTY on NYJ-N.Bellore Face Mask (15 Yards) 15 yards enforced at NE 32 - No Play.,16,7,2012 -20121021_NYJ@NE,2,35,0,NE,NYJ,1,10,53,(5:00) T.Brady pass incomplete short right.,16,7,2012 -20121021_NYJ@NE,2,34,51,NE,NYJ,2,10,53,(4:51) (Shotgun) D.Woodhead up the middle to NYJ 45 for 8 yards (L.Landry).,16,7,2012 -20121021_NYJ@NE,2,34,34,NE,NYJ,3,2,45,(4:34) (No Huddle) D.Woodhead left tackle to NYJ 45 for no gain (D.Harris).,16,7,2012 -20121021_NYJ@NE,2,33,50,NE,NYJ,4,2,45,(3:50) Z.Mesko punts 40 yards to NYJ 5 Center-D.Aiken fair catch by J.Kerley.,16,7,2012 -20121021_NYJ@NE,2,33,43,NYJ,NE,1,10,95,(3:43) J.Smith reported in as eligible. S.Greene right guard to NYJ 13 for 8 yards (D.Hightower).,7,16,2012 -20121021_NYJ@NE,2,33,10,NYJ,NE,2,2,87,(3:10) M.Sanchez pass short middle to D.Keller to NYJ 28 for 15 yards (B.Spikes).,7,16,2012 -20121021_NYJ@NE,2,32,29,NYJ,NE,1,10,72,(2:29) M.Sanchez pass short middle to S.Greene to NYJ 35 for 7 yards (D.Hightower).,7,16,2012 -20121021_NYJ@NE,2,32,0,NYJ,NE,2,3,65,(2:00) J.Smith reported in as eligible. L.Hilliard up the middle to NYJ 44 for 9 yards (D.McCourty).,7,16,2012 -20121021_NYJ@NE,2,31,31,NYJ,NE,1,10,56,(1:31) M.Sanchez pass short middle to S.Greene to 50 for 6 yards (J.Mayo).,7,16,2012 -20121021_NYJ@NE,2,31,10,NYJ,NE,2,4,50,(1:10) (No Huddle Shotgun) M.Sanchez pass short middle to S.Greene to NE 46 for 4 yards (J.Mayo). The Replay Assistant challenged the first down ruling and the play was REVERSED. (No Huddle Shotgun) M.Sanchez pass short middle to S.Greene to NE 47 for 3 yards (J.Mayo).,7,16,2012 -20121021_NYJ@NE,2,30,53,NYJ,NE,3,1,47,(:53) J.Smith reported in as eligible. S.Greene up the middle to NE 44 for 3 yards (J.Mayo; V.Wilfork). NE-J.Mayo was injured during the play.,7,16,2012 -20121021_NYJ@NE,2,30,37,NYJ,NE,1,10,44,(:37) (Shotgun) M.Sanchez pass incomplete short middle to J.Kerley.,7,16,2012 -20121021_NYJ@NE,2,30,32,NYJ,NE,2,10,44,(:32) (Shotgun) M.Sanchez pass short right to S.Greene to NE 39 for 5 yards (B.Spikes). PENALTY on NE-D.Hightower Defensive Holding 5 yards enforced at NE 44 - No Play.,7,16,2012 -20121021_NYJ@NE,2,30,21,NYJ,NE,1,10,39,(:21) (Shotgun) M.Sanchez pass incomplete deep right to J.Kerley.,7,16,2012 -20121021_NYJ@NE,2,30,19,NYJ,NE,2,10,39,(:19) (Shotgun) M.Sanchez pass short right to J.Grimes to NE 36 for 3 yards (D.Hightower).,7,16,2012 -20121021_NYJ@NE,2,30,12,NYJ,NE,3,7,36,(:12) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley (K.Arrington).,7,16,2012 -20121021_NYJ@NE,2,30,7,NYJ,NE,4,7,36,(:07) N.Folk 54 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,7,16,2012 -20121021_NYJ@NE,2,30,7,NYJ,NE,,,36,N.Folk kicks 35 yards from NYJ 35 to NE 30. J.Edelman to NE 36 for 6 yards (J.Bush).,10,16,2012 -20121021_NYJ@NE,3,30,0,NE,NYJ,,,36,S.Gostkowski kicks 70 yards from NE 35 to NYJ -5. J.McKnight to NYJ 32 for 37 yards (K.Arrington).,16,10,2012 -20121021_NYJ@NE,3,29,53,NYJ,NE,1,10,68,(14:53) M.Sanchez pass short left to S.Hill to NYJ 44 for 12 yards (K.Arrington).,10,16,2012 -20121021_NYJ@NE,3,29,17,NYJ,NE,1,10,56,(14:17) J.Smith reported in as eligible. S.Greene up the middle to NYJ 45 for 1 yard (V.Wilfork).,10,16,2012 -20121021_NYJ@NE,3,28,41,NYJ,NE,2,9,55,(13:41) M.Sanchez pass short middle to D.Keller to NE 45 for 10 yards (D.Hightower).,10,16,2012 -20121021_NYJ@NE,3,28,7,NYJ,NE,1,10,45,(13:07) J.Smith reported in as eligible. S.Greene up the middle to NE 42 for 3 yards (V.Wilfork).,10,16,2012 -20121021_NYJ@NE,3,27,35,NYJ,NE,2,7,42,(12:35) S.Greene up the middle to NE 36 for 6 yards (B.Spikes). NYJ-A.Howard was injured during the play.,10,16,2012 -20121021_NYJ@NE,3,27,10,NYJ,NE,3,1,36,(12:10) S.Greene up the middle to NE 34 for 2 yards (K.Love).,10,16,2012 -20121021_NYJ@NE,3,26,34,NYJ,NE,1,10,34,(11:34) J.Smith reported in as eligible. M.Sanchez pass deep middle to D.Keller to NE 11 for 23 yards (D.McCourty).,10,16,2012 -20121021_NYJ@NE,3,25,55,NYJ,NE,1,10,11,(10:55) S.Greene up the middle to NE 5 for 6 yards (D.Hightower).,10,16,2012 -20121021_NYJ@NE,3,25,18,NYJ,NE,2,4,5,(10:18) S.Greene up the middle to NE 3 for 2 yards (C.Jones).,10,16,2012 -20121021_NYJ@NE,3,24,38,NYJ,NE,3,2,3,(9:38) (Shotgun) M.Sanchez pass incomplete short middle to C.Schilens.,10,16,2012 -20121021_NYJ@NE,3,24,36,NYJ,NE,4,2,3,(9:36) N.Folk 21 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,10,16,2012 -20121021_NYJ@NE,3,24,36,NYJ,NE,,,3,N.Folk kicks 70 yards from NYJ 35 to NE -5. D.McCourty to NE 17 for 22 yards (C.Schilens).,13,16,2012 -20121021_NYJ@NE,3,24,26,NE,NYJ,1,10,83,(9:26) (Shotgun) T.Brady pass incomplete short left to B.Lloyd. PENALTY on NYJ-K.Wilson Defensive Holding 5 yards enforced at NE 17 - No Play.,16,13,2012 -20121021_NYJ@NE,3,24,22,NE,NYJ,1,10,78,(9:22) (No Huddle) S.Ridley right end to NE 28 for 6 yards (M.Wilkerson).,16,13,2012 -20121021_NYJ@NE,3,23,56,NE,NYJ,2,4,72,(8:56) S.Ridley up the middle to NE 28 for no gain (D.Davis).,16,13,2012 -20121021_NYJ@NE,3,23,18,NE,NYJ,3,4,72,(8:18) (Shotgun) T.Brady pass short right to W.Welker to NE 34 for 6 yards (I.Trufant).,16,13,2012 -20121021_NYJ@NE,3,22,48,NE,NYJ,1,10,66,(7:48) (No Huddle) T.Brady pass incomplete deep left to B.Lloyd.,16,13,2012 -20121021_NYJ@NE,3,22,41,NE,NYJ,2,10,66,(7:41) (No Huddle Shotgun) S.Ridley left guard to NE 42 for 8 yards (D.Davis).,16,13,2012 -20121021_NYJ@NE,3,22,5,NE,NYJ,3,2,58,(7:05) (Shotgun) T.Brady pass short left to J.Edelman to NE 47 for 5 yards (L.Landry).,16,13,2012 -20121021_NYJ@NE,3,21,32,NE,NYJ,1,10,53,(6:32) PENALTY on NE-A.Hernandez False Start 5 yards enforced at NE 47 - No Play.,16,13,2012 -20121021_NYJ@NE,3,21,8,NE,NYJ,1,15,58,(6:08) (Shotgun) T.Brady pass short left to B.Lloyd to NE 48 for 6 yards (Y.Bell).,16,13,2012 -20121021_NYJ@NE,3,20,44,NE,NYJ,2,9,52,(5:44) (No Huddle) S.Ridley right guard to 50 for 2 yards (D.Harris).,16,13,2012 -20121021_NYJ@NE,3,20,9,NE,NYJ,3,7,50,(5:09) (Shotgun) T.Brady pass short left to W.Welker to NYJ 29 for 21 yards (Y.Bell).,16,13,2012 -20121021_NYJ@NE,3,19,36,NE,NYJ,1,10,29,(4:36) S.Ridley right tackle to NYJ 17 for 12 yards (L.Landry).,16,13,2012 -20121021_NYJ@NE,3,19,14,NE,NYJ,1,10,17,(4:14) (No Huddle) S.Ridley right end to NYJ 17 for no gain (Q.Coples).,16,13,2012 -20121021_NYJ@NE,3,18,36,NE,NYJ,2,10,17,(3:36) (Shotgun) T.Brady pass short right to A.Hernandez to NYJ 1 for 16 yards (A.Cromartie). FUMBLES (A.Cromartie) RECOVERED by NYJ-A.Cromartie at NYJ -1. Touchback. New England challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) T.Brady pass short right to A.Hernandez to NYJ 1 for 16 yards (A.Cromartie).,16,13,2012 -20121021_NYJ@NE,3,18,16,NE,NYJ,1,1,1,(3:16) S.Ridley left tackle to NYJ 2 for -1 yards (B.Scott).,16,13,2012 -20121021_NYJ@NE,3,17,47,NE,NYJ,2,2,2,(2:47) T.Brady pass incomplete short right to A.Hernandez.,16,13,2012 -20121021_NYJ@NE,3,17,47,NE,NYJ,3,2,2,(2:47) T.Brady pass short left to R.Gronkowski for 2 yards TOUCHDOWN.,16,13,2012 -20121021_NYJ@NE,3,17,47,NE,NYJ,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,16,13,2012 -20121021_NYJ@NE,3,17,47,NE,NYJ,,,2,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,23,13,2012 -20121021_NYJ@NE,3,17,38,NYJ,NE,1,10,80,(2:38) Direct snap to T.Tebow. T.Tebow left guard to NYJ 24 for 4 yards (R.Ninkovich).,13,23,2012 -20121021_NYJ@NE,3,17,5,NYJ,NE,2,6,76,(2:05) M.Sanchez pass incomplete short left to S.Greene.,13,23,2012 -20121021_NYJ@NE,3,17,1,NYJ,NE,3,6,76,(2:01) (Shotgun) M.Sanchez scrambles up the middle to NYJ 40 for 16 yards. PENALTY on NYJ-B.Moore Offensive Holding 10 yards enforced at NYJ 24 - No Play.,13,23,2012 -20121021_NYJ@NE,3,16,29,NYJ,NE,3,16,86,(1:29) (Shotgun) M.Sanchez pass short left to K.Reuland pushed ob at NYJ 25 for 11 yards (S.Moore).,13,23,2012 -20121021_NYJ@NE,3,16,5,NYJ,NE,4,5,75,(1:05) R.Malone punts 60 yards to NE 15 Center-T.Purdum. W.Welker to NE 22 for 7 yards (D.Davis).,13,23,2012 -20121021_NYJ@NE,3,15,58,NE,NYJ,1,10,78,(:58) S.Vereen right tackle to NE 38 for 16 yards (L.Landry).,23,13,2012 -20121021_NYJ@NE,3,15,32,NE,NYJ,1,10,62,(:32) (Shotgun) S.Vereen up the middle to NE 46 for 8 yards (D.Harris).,23,13,2012 -20121021_NYJ@NE,4,15,0,NE,NYJ,2,2,54,(15:00) S.Vereen up the middle to NE 49 for 3 yards (M.Wilkerson).,23,13,2012 -20121021_NYJ@NE,4,14,23,NE,NYJ,1,10,51,(14:23) S.Vereen right guard to NYJ 50 for 1 yard (D.Harris).,23,13,2012 -20121021_NYJ@NE,4,13,55,NE,NYJ,2,9,50,(13:55) T.Brady pass short right to W.Welker to NE 48 for -2 yards (I.Trufant).,23,13,2012 -20121021_NYJ@NE,4,13,23,NE,NYJ,3,11,52,(13:23) (Shotgun) T.Brady pass short left to D.Woodhead to NE 46 for -2 yards (I.Trufant).,23,13,2012 -20121021_NYJ@NE,4,12,49,NE,NYJ,4,13,54,(12:49) Z.Mesko punts 46 yards to NYJ 8 Center-D.Aiken fair catch by J.Kerley.,23,13,2012 -20121021_NYJ@NE,4,12,42,NYJ,NE,1,10,92,(12:42) PENALTY on NYJ-K.Reuland False Start 4 yards enforced at NYJ 8 - No Play.,13,23,2012 -20121021_NYJ@NE,4,12,42,NYJ,NE,1,14,96,(12:42) M.Sanchez pass deep right to S.Hill to NYJ 25 for 21 yards (A.Dennard).,13,23,2012 -20121021_NYJ@NE,4,12,6,NYJ,NE,1,10,75,(12:06) S.Greene right guard to NYJ 25 for no gain (V.Wilfork; B.Spikes).,13,23,2012 -20121021_NYJ@NE,4,11,32,NYJ,NE,2,10,75,(11:32) M.Sanchez pass short right to S.Hill to NYJ 32 for 7 yards (A.Dennard).,13,23,2012 -20121021_NYJ@NE,4,10,56,NYJ,NE,3,3,68,(10:56) (Shotgun) M.Sanchez pass deep left to J.Kerley pushed ob at NE 49 for 19 yards (D.McCourty). Penalty on NE-R.Dowling Defensive Holding declined.,13,23,2012 -20121021_NYJ@NE,4,10,29,NYJ,NE,1,10,49,(10:29) M.Sanchez pass incomplete short right to S.Greene [R.Ninkovich].,13,23,2012 -20121021_NYJ@NE,4,10,23,NYJ,NE,2,10,49,(10:23) M.Sanchez pass short middle to S.Greene to NE 46 for 3 yards (B.Spikes). NYJ-S.Greene was injured during the play.,13,23,2012 -20121021_NYJ@NE,4,9,51,NYJ,NE,3,7,46,(9:51) (Shotgun) M.Sanchez pass short middle to L.Hilliard to NE 38 for 8 yards (K.Arrington). Penalty on NE-A.Dennard Illegal Contact declined.,13,23,2012 -20121021_NYJ@NE,4,9,34,NYJ,NE,1,10,38,(9:34) L.Hilliard left guard to NE 37 for 1 yard (C.Jones).,13,23,2012 -20121021_NYJ@NE,4,9,0,NYJ,NE,2,9,37,(9:00) M.Sanchez pass short right to S.Hill to NE 22 for 15 yards (D.Hightower).,13,23,2012 -20121021_NYJ@NE,4,8,18,NYJ,NE,1,10,22,(8:18) M.Sanchez sacked at NE 24 for -2 yards (R.Ninkovich).,13,23,2012 -20121021_NYJ@NE,4,7,42,NYJ,NE,2,12,24,(7:42) M.Sanchez pass short middle to D.Keller to NE 18 for 6 yards (B.Spikes).,13,23,2012 -20121021_NYJ@NE,4,7,1,NYJ,NE,3,6,18,(7:01) (Shotgun) M.Sanchez pass short right to J.Kerley to NE 11 for 7 yards (D.McCourty).,13,23,2012 -20121021_NYJ@NE,4,6,22,NYJ,NE,1,10,11,(6:22) J.Smith reported in as eligible. J.McKnight left guard to NE 7 for 4 yards (J.Mayo).,13,23,2012 -20121021_NYJ@NE,4,5,49,NYJ,NE,2,6,7,(5:49) M.Sanchez pass short middle to D.Keller for 7 yards TOUCHDOWN.,13,23,2012 -20121021_NYJ@NE,4,5,49,NYJ,NE,,,7,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,13,23,2012 -20121021_NYJ@NE,4,5,49,NYJ,NE,,,7,N.Folk kicks 66 yards from NYJ 35 to NE -1. D.McCourty to NE 21 for 22 yards (J.Bush).,20,23,2012 -20121021_NYJ@NE,4,5,39,NE,NYJ,1,10,79,(5:39) T.Brady pass short left to B.Lloyd to NE 31 for 10 yards (K.Wilson). PENALTY on NE-B.Lloyd Offensive Pass Interference 10 yards enforced at NE 21 - No Play.,23,20,2012 -20121021_NYJ@NE,4,5,17,NE,NYJ,1,20,89,(5:17) T.Brady pass incomplete deep right to R.Gronkowski (A.Cromartie).,23,20,2012 -20121021_NYJ@NE,4,5,10,NE,NYJ,2,20,89,(5:10) (Shotgun) S.Ridley right guard to NE 15 for 4 yards (C.Pace).,23,20,2012 -20121021_NYJ@NE,4,4,37,NE,NYJ,3,16,85,(4:37) (Shotgun) T.Brady pass incomplete deep left to W.Welker.,23,20,2012 -20121021_NYJ@NE,4,4,31,NE,NYJ,4,16,85,(4:31) Z.Mesko punts 53 yards to NYJ 32 Center-D.Aiken. J.Kerley ran ob at NYJ 35 for 3 yards.,23,20,2012 -20121021_NYJ@NE,4,4,19,NYJ,NE,1,10,65,(4:19) J.Smith reported in as eligible. M.Sanchez pass deep right to D.Keller ran ob at NE 44 for 21 yards.,20,23,2012 -20121021_NYJ@NE,4,4,13,NYJ,NE,1,10,44,(4:13) J.McKnight left tackle to NE 31 for 13 yards (K.Arrington).,20,23,2012 -20121021_NYJ@NE,4,3,33,NYJ,NE,1,10,31,(3:33) J.McKnight up the middle to NE 26 for 5 yards (B.Spikes).,20,23,2012 -20121021_NYJ@NE,4,2,56,NYJ,NE,2,5,26,(2:56) J.Smith reported in as eligible. J.Grimes up the middle to NE 25 for 1 yard (T.Wilson).,20,23,2012 -20121021_NYJ@NE,4,2,15,NYJ,NE,3,4,25,(2:15) (Shotgun) M.Sanchez pass incomplete short right to S.Hill.,20,23,2012 -20121021_NYJ@NE,4,2,11,NYJ,NE,4,4,25,(2:11) N.Folk 43 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,20,23,2012 -20121021_NYJ@NE,4,2,11,NYJ,NE,,,25,N.Folk kicks 65 yards from NYJ 35 to NE 0. D.McCourty to NE 15 for 15 yards (L.Hilliard). FUMBLES (L.Hilliard) RECOVERED by NYJ-A.Allen at NE 18.,23,23,2012 -20121021_NYJ@NE,4,2,1,NYJ,NE,1,10,18,(2:01) Direct snap to T.Tebow. T.Tebow up the middle to NE 16 for 2 yards (B.Spikes; C.Jones).,23,23,2012 -20121021_NYJ@NE,4,1,56,NYJ,NE,2,8,16,(1:56) J.Smith reported in as eligible. J.McKnight right guard to NE 15 for 1 yard (V.Wilfork).,23,23,2012 -20121021_NYJ@NE,4,1,51,NYJ,NE,3,7,15,(1:51) M.Sanchez sacked at NE 25 for -10 yards (D.Hightower).,23,23,2012 -20121021_NYJ@NE,4,1,42,NYJ,NE,4,17,25,(1:42) N.Folk 43 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,23,23,2012 -20121021_NYJ@NE,4,1,42,NYJ,NE,,,25,N.Folk kicks 63 yards from NYJ 35 to NE 2. D.McCourty to NE 21 for 19 yards (J.Bush).,26,23,2012 -20121021_NYJ@NE,4,1,32,NE,NYJ,1,10,79,(1:32) (Shotgun) T.Brady pass short middle to R.Gronkowski to NE 36 for 15 yards (Y.Bell).,23,26,2012 -20121021_NYJ@NE,4,1,9,NE,NYJ,1,10,64,(1:09) (No Huddle Shotgun) T.Brady pass short right to R.Gronkowski to NE 48 for 12 yards (A.Allen; D.Harris).,23,26,2012 -20121021_NYJ@NE,4,0,45,NE,NYJ,1,10,52,(:45) (No Huddle Shotgun) T.Brady pass short middle to D.Woodhead to NYJ 32 for 20 yards (L.Landry).,23,26,2012 -20121021_NYJ@NE,4,0,22,NE,NYJ,1,10,32,(:22) (No Huddle Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,23,26,2012 -20121021_NYJ@NE,4,0,16,NE,NYJ,2,10,32,(:16) (Shotgun) T.Brady pass short middle to D.Woodhead to NYJ 25 for 7 yards (D.Harris).,23,26,2012 -20121021_NYJ@NE,4,0,5,NE,NYJ,3,3,25,(:05) S.Gostkowski 43 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,23,26,2012 -20121021_NYJ@NE,5,0,0,NYJ,NE,,,25,N.Folk kicks 66 yards from NYJ 35 to NE -1. D.McCourty to NE 16 for 17 yards (M.Dowtin).,26,26,2012 -20121021_NYJ@NE,5,-1,56,NE,NYJ,1,10,84,(14:56) (Shotgun) D.Woodhead left end to NE 18 for 2 yards (M.Wilkerson).,26,26,2012 -20121021_NYJ@NE,5,-1,31,NE,NYJ,2,8,82,(14:31) (No Huddle Shotgun) T.Brady pass short left to D.Branch pushed ob at NE 27 for 9 yards (K.Wilson).,26,26,2012 -20121021_NYJ@NE,5,-1,16,NE,NYJ,1,10,73,(14:16) (No Huddle Shotgun) D.Woodhead up the middle to NE 28 for 1 yard (D.Davis; M.Devito).,26,26,2012 -20121021_NYJ@NE,5,-2,44,NE,NYJ,2,9,72,(13:44) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to NE 41 for 13 yards (D.Davis).,26,26,2012 -20121021_NYJ@NE,5,-2,19,NE,NYJ,1,10,59,(13:19) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to NE 44 for 3 yards (L.Landry).,26,26,2012 -20121021_NYJ@NE,5,-3,50,NE,NYJ,2,7,56,(12:50) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker.,26,26,2012 -20121021_NYJ@NE,5,-3,45,NE,NYJ,3,7,56,(12:45) (No Huddle Shotgun) T.Brady pass incomplete short right to A.Hernandez. PENALTY on NYJ-K.Wilson Defensive Pass Interference 6 yards enforced at NE 44 - No Play.,26,26,2012 -20121021_NYJ@NE,5,-3,42,NE,NYJ,1,10,50,(12:42) (No Huddle Shotgun) D.Woodhead right guard to NYJ 46 for 4 yards (L.Landry).,26,26,2012 -20121021_NYJ@NE,5,-3,12,NE,NYJ,2,6,46,(12:12) (No Huddle Shotgun) T.Brady pass short right to W.Welker pushed ob at NYJ 34 for 12 yards (L.Landry).,26,26,2012 -20121021_NYJ@NE,5,-4,54,NE,NYJ,1,10,34,(11:54) (No Huddle Shotgun) T.Brady pass incomplete deep left to D.Branch.,26,26,2012 -20121021_NYJ@NE,5,-4,47,NE,NYJ,2,10,34,(11:47) (No Huddle Shotgun) T.Brady pass short right to D.Woodhead to NYJ 30 for 4 yards (L.Landry). NE 12-Brady 5605 career pass attempts passing Dan Fouts for 11th most all-time.,26,26,2012 -20121021_NYJ@NE,5,-4,11,NE,NYJ,3,6,30,(11:11) (No Huddle Shotgun) T.Brady pass incomplete short right to A.Hernandez. Patriots now have 381 total yards today making this the 16th consecutive game with 350+ total yards tying NFL record (1999-2000 Rams).,26,26,2012 -20121021_NYJ@NE,5,-4,7,NE,NYJ,4,6,30,(11:07) S.Gostkowski 48 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,26,26,2012 -20121021_NYJ@NE,5,-4,7,NE,NYJ,,,30,S.Gostkowski kicks 69 yards from NE 35 to NYJ -4. J.McKnight pushed ob at NYJ 15 for 19 yards (J.Edelman).,29,26,2012 -20121021_NYJ@NE,5,-5,59,NYJ,NE,1,10,85,(10:59) J.Smith reported in as eligible. M.Sanchez pass short left to S.Greene to NYJ 18 for 3 yards (T.Wilson).,26,29,2012 -20121021_NYJ@NE,5,-5,16,NYJ,NE,2,7,82,(10:16) J.McKnight up the middle to NYJ 20 for 2 yards (J.Mayo).,26,29,2012 -20121021_NYJ@NE,5,-6,33,NYJ,NE,3,5,80,(9:33) (Shotgun) M.Sanchez pass incomplete deep right to J.Hill. PENALTY on NE-A.Dennard Defensive Holding 5 yards enforced at NYJ 20 - No Play.,26,29,2012 -20121021_NYJ@NE,5,-6,27,NYJ,NE,1,10,75,(9:27) J.Smith reported in as eligible. J.McKnight left guard to NYJ 23 for -2 yards (R.Ninkovich).,26,29,2012 -20121021_NYJ@NE,5,-7,47,NYJ,NE,2,12,77,(8:47) (Shotgun) M.Sanchez pass deep right to J.Kerley pushed ob at NYJ 40 for 17 yards (K.Arrington).,26,29,2012 -20121021_NYJ@NE,5,-7,14,NYJ,NE,1,10,60,(8:14) J.McKnight up the middle to NYJ 40 for no gain (V.Wilfork).,26,29,2012 -20121021_NYJ@NE,5,-8,35,NYJ,NE,2,10,60,(7:35) M.Sanchez sacked at NYJ 28 for -12 yards (sack split by R.Ninkovich and J.Cunningham). FUMBLES (R.Ninkovich) RECOVERED by NE-R.Ninkovich at NYJ 25. Play Challenged by Replay Assistant and Upheld.,26,29,2012 -20121021_NYJ@NE,5,-8,35,NYJ,NE,,,60,                      ,26,29,2012 -20121021_JAC@OAK,1,-8,0,OAK,JAC,,,60,S.Janikowski kicks 71 yards from OAK 35 to JAX -6. M.Spurlock to JAX 16 for 22 yards (K.Clayton).,0,0,2012 -20121021_JAC@OAK,1,59,56,JAC,OAK,1,10,84,(14:56) M.Jones-Drew left guard to JAX 19 for 3 yards (T.Kelly).,0,0,2012 -20121021_JAC@OAK,1,59,16,JAC,OAK,2,7,81,(14:16) M.Jones-Drew left end to JAX 22 for 3 yards (P.Wheeler L.Houston). PENALTY on JAX-C.Shorts Offensive Holding 10 yards enforced at JAX 22.,0,0,2012 -20121021_JAC@OAK,1,58,50,JAC,OAK,2,14,88,(13:50) (Shotgun) R.Jennings up the middle to JAX 14 for 2 yards (R.Seymour). JAX-U.Nwaneri was injured during the play. His return is Questionable.,0,0,2012 -20121021_JAC@OAK,1,58,19,JAC,OAK,3,12,86,(13:19) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 16 for 2 yards (P.Lee).,0,0,2012 -20121021_JAC@OAK,1,57,44,JAC,OAK,4,10,84,(12:44) B.Anger punts 55 yards to OAK 29 Center-J.Cain. P.Adams to OAK 34 for 5 yards (A.Blake).,0,0,2012 -20121021_JAC@OAK,1,57,33,OAK,JAC,1,10,66,(12:33) (Shotgun) D.McFadden right guard to OAK 36 for 2 yards (A.Lane).,0,0,2012 -20121021_JAC@OAK,1,57,4,OAK,JAC,2,8,64,(12:04) D.McFadden left end to OAK 33 for -3 yards (D.Cox).,0,0,2012 -20121021_JAC@OAK,1,56,20,OAK,JAC,3,11,67,(11:20) (Shotgun) C.Palmer pass incomplete short middle to D.Moore [P.Posluszny].,0,0,2012 -20121021_JAC@OAK,1,56,16,OAK,JAC,4,11,67,(11:16) (Punt formation) PENALTY on OAK-J.Condo False Start 5 yards enforced at OAK 33 - No Play.,0,0,2012 -20121021_JAC@OAK,1,56,16,OAK,JAC,4,16,72,(11:16) S.Lechler punts 49 yards to JAX 23 Center-J.Condo. M.Spurlock to JAX 27 for 4 yards (D.Ausberry).,0,0,2012 -20121021_JAC@OAK,1,56,3,JAC,OAK,1,10,73,(11:03) (Shotgun) Direct snap to J.Blackmon. R.Jennings left end to JAX 25 for -2 yards (P.Lee M.Shaughnessy).,0,0,2012 -20121021_JAC@OAK,1,55,22,JAC,OAK,2,12,75,(10:22) R.Jennings left guard to JAX 25 for no gain (L.Houston).,0,0,2012 -20121021_JAC@OAK,1,54,45,JAC,OAK,3,12,75,(9:45) (Shotgun) B.Gabbert pass short middle to R.Jennings to JAX 34 for 9 yards (M.Burris J.Hanson).,0,0,2012 -20121021_JAC@OAK,1,54,7,JAC,OAK,4,3,66,(9:07) B.Anger punts 40 yards to OAK 26 Center-J.Cain. D.Moore MUFFS catch touched at OAK 26 and recovers at OAK 28. D.Moore to OAK 28 for no gain (M.Owens).,0,0,2012 -20121021_JAC@OAK,1,53,57,OAK,JAC,1,10,72,(8:57) C.Palmer pass incomplete deep right to D.Moore.,0,0,2012 -20121021_JAC@OAK,1,53,52,OAK,JAC,2,10,72,(8:52) D.McFadden left tackle to OAK 32 for 4 yards (J.Mincey P.Posluszny).,0,0,2012 -20121021_JAC@OAK,1,53,8,OAK,JAC,3,6,68,(8:08) C.Palmer pass deep right to D.Heyward-Bey to JAX 9 for 59 yards (C.Prosinski).,0,0,2012 -20121021_JAC@OAK,1,52,38,OAK,JAC,1,9,9,(7:38) D.McFadden left tackle to JAX 8 for 1 yard (G.Selvie; T.Knighton).,0,0,2012 -20121021_JAC@OAK,1,51,59,OAK,JAC,2,8,8,(6:59) (Shotgun) C.Palmer pass incomplete short right to B.Myers [P.Posluszny].,0,0,2012 -20121021_JAC@OAK,1,51,55,OAK,JAC,3,8,8,(6:55) (Shotgun) C.Palmer pass short middle to D.Heyward-Bey to JAX 3 for 5 yards (P.Posluszny) [R.Allen].,0,0,2012 -20121021_JAC@OAK,1,51,16,OAK,JAC,4,3,3,(6:16) S.Janikowski 21 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20121021_JAC@OAK,1,51,16,OAK,JAC,,,3,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,3,0,2012 -20121021_JAC@OAK,1,51,13,JAC,OAK,1,10,80,(6:13) B.Gabbert pass incomplete short right to J.Blackmon.,0,3,2012 -20121021_JAC@OAK,1,51,8,JAC,OAK,2,10,80,(6:08) R.Jennings up the middle to JAX 24 for 4 yards (T.Kelly).,0,3,2012 -20121021_JAC@OAK,1,50,30,JAC,OAK,3,6,76,(5:30) (Shotgun) B.Gabbert pass short middle to R.Jennings to JAX 37 for 13 yards (T.Branch) [M.Mitchell].,0,3,2012 -20121021_JAC@OAK,1,49,46,JAC,OAK,1,10,63,(4:46) B.Gabbert pass deep right to C.Shorts to OAK 44 for 19 yards (P.Adams).,0,3,2012 -20121021_JAC@OAK,1,49,10,JAC,OAK,1,10,44,(4:10) (Shotgun) R.Jennings left guard to OAK 42 for 2 yards (M.Burris).,0,3,2012 -20121021_JAC@OAK,1,48,32,JAC,OAK,2,8,42,(3:32) B.Gabbert pass deep left to C.Shorts for 42 yards TOUCHDOWN.,0,3,2012 -20121021_JAC@OAK,1,48,32,JAC,OAK,,,42,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,3,2012 -20121021_JAC@OAK,1,48,32,JAC,OAK,,,42,J.Scobee kicks 66 yards from JAX 35 to OAK -1. M.Goodson to OAK 44 for 45 yards (J.Scobee).,7,3,2012 -20121021_JAC@OAK,1,48,15,OAK,JAC,1,10,56,(3:15) C.Palmer pass short middle to M.Reece to OAK 47 for 3 yards (P.Posluszny).,3,7,2012 -20121021_JAC@OAK,1,47,34,OAK,JAC,2,7,53,(2:34) (Shotgun) D.McFadden left end to OAK 47 for no gain (D.Cox).,3,7,2012 -20121021_JAC@OAK,1,46,50,OAK,JAC,3,7,53,(1:50) (Shotgun) C.Palmer pass short middle to D.McFadden to JAX 49 for 4 yards (D.Cox).,3,7,2012 -20121021_JAC@OAK,1,46,17,OAK,JAC,4,3,49,(1:17) S.Lechler punts 38 yards to JAX 11 Center-J.Condo fair catch by A.Ross.,3,7,2012 -20121021_JAC@OAK,1,46,12,JAC,OAK,1,10,89,(1:12) B.Gabbert FUMBLES (Aborted) at JAX 11 and recovers at JAX 11. PENALTY on OAK-C.Bilukidi Defensive Offside 5 yards enforced at JAX 11 - No Play.,7,3,2012 -20121021_JAC@OAK,1,45,52,JAC,OAK,1,5,84,(:52) PENALTY on OAK-M.Shaughnessy Encroachment 5 yards enforced at JAX 16 - No Play.,7,3,2012 -20121021_JAC@OAK,1,45,34,JAC,OAK,1,10,79,(:34) B.Gabbert pass short left to R.Jennings to JAX 26 for 5 yards (P.Lee).,7,3,2012 -20121021_JAC@OAK,1,45,10,JAC,OAK,2,5,74,(:10) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 35 for 9 yards (M.Burris).,7,3,2012 -20121021_JAC@OAK,2,45,0,JAC,OAK,1,10,65,(15:00) R.Jennings right end to JAX 38 for 3 yards (M.Huff; M.Burris).,7,3,2012 -20121021_JAC@OAK,2,44,19,JAC,OAK,2,7,62,(14:19) B.Gabbert sacked at JAX 38 for 0 yards (T.Kelly). PENALTY on OAK-T.Kelly Neutral Zone Infraction 5 yards enforced at JAX 38 - No Play.,7,3,2012 -20121021_JAC@OAK,2,43,58,JAC,OAK,2,2,57,(13:58) R.Jennings left guard to JAX 47 for 4 yards (R.McClain).,7,3,2012 -20121021_JAC@OAK,2,43,18,JAC,OAK,1,10,53,(13:18) R.Jennings right tackle to JAX 48 for 1 yard (M.Burris; A.Carter).,7,3,2012 -20121021_JAC@OAK,2,42,39,JAC,OAK,2,9,52,(12:39) B.Gabbert pass incomplete deep middle to C.Shorts (M.Huff).,7,3,2012 -20121021_JAC@OAK,2,42,33,JAC,OAK,3,9,52,(12:33) (Shotgun) B.Gabbert pass incomplete deep middle to C.Shorts.,7,3,2012 -20121021_JAC@OAK,2,42,28,JAC,OAK,4,9,52,(12:28) B.Anger punts 36 yards to OAK 16 Center-J.Cain. P.Adams MUFFS catch touched at JAX 16 RECOVERED by JAX-R.Allen at OAK 16. R.Allen to OAK 16 for no gain (P.Lee).,7,3,2012 -20121021_JAC@OAK,2,42,20,JAC,OAK,1,10,16,(12:20) (Shotgun) B.Gabbert pass short middle to M.Thomas to OAK 5 for 11 yards (J.Hanson; M.Huff).,7,3,2012 -20121021_JAC@OAK,2,41,42,JAC,OAK,1,5,5,(11:42) B.Gabbert pass incomplete short right to R.Jennings.,7,3,2012 -20121021_JAC@OAK,2,41,38,JAC,OAK,2,5,5,(11:38) R.Jennings up the middle for 5 yards TOUCHDOWN.,7,3,2012 -20121021_JAC@OAK,2,41,38,JAC,OAK,,,5,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,7,3,2012 -20121021_JAC@OAK,2,41,38,JAC,OAK,,,5,J.Scobee kicks 70 yards from JAX 35 to OAK -5. M.Goodson to OAK 20 for 25 yards (J.Parmele).,14,3,2012 -20121021_JAC@OAK,2,41,29,OAK,JAC,1,10,80,(11:29) D.McFadden left tackle to OAK 21 for 1 yard (T.Knighton).,3,14,2012 -20121021_JAC@OAK,2,40,50,OAK,JAC,2,9,79,(10:50) C.Palmer pass short right to B.Myers to OAK 24 for 3 yards (K.Bosworth).,3,14,2012 -20121021_JAC@OAK,2,40,8,OAK,JAC,3,6,76,(10:08) (Shotgun) C.Palmer pass incomplete short right to D.Hagan [P.Posluszny].,3,14,2012 -20121021_JAC@OAK,2,39,59,OAK,JAC,4,6,76,(9:59) S.Lechler punts 45 yards to JAX 31 Center-J.Condo. M.Spurlock to JAX 33 for 2 yards (M.Mitchell).,3,14,2012 -20121021_JAC@OAK,2,39,53,JAC,OAK,1,10,67,(9:53) R.Jennings left tackle to JAX 40 for 7 yards (R.McClain).,14,3,2012 -20121021_JAC@OAK,2,39,10,JAC,OAK,2,3,60,(9:10) R.Jennings right guard to JAX 42 for 2 yards (R.McClain T.Branch).,14,3,2012 -20121021_JAC@OAK,2,38,33,JAC,OAK,3,1,58,(8:33) R.Jennings left guard to JAX 41 for -1 yards (D.Bryant).,14,3,2012 -20121021_JAC@OAK,2,37,53,JAC,OAK,4,2,59,(7:53) B.Anger punts 36 yards to OAK 23 Center-J.Cain downed by JAX-Z.Potter.,14,3,2012 -20121021_JAC@OAK,2,37,40,OAK,JAC,1,10,77,(7:40) C.Palmer pass short left to D.Heyward-Bey to OAK 32 for 9 yards (A.Ross).,3,14,2012 -20121021_JAC@OAK,2,37,2,OAK,JAC,2,1,68,(7:02) C.Palmer pass short middle intended for D.Moore INTERCEPTED by D.Cox (P.Posluszny) at OAK 38. D.Cox to OAK 36 for 2 yards (S.Wisniewski; J.Veldheer).,3,14,2012 -20121021_JAC@OAK,2,36,52,JAC,OAK,1,10,36,(6:52) C.Henne in at QB. C.Henne pass incomplete short right to Z.Potter [L.Houston].,14,3,2012 -20121021_JAC@OAK,2,36,44,JAC,OAK,2,10,36,(6:44) (Shotgun) R.Jennings right tackle to OAK 32 for 4 yards (R.Seymour).,14,3,2012 -20121021_JAC@OAK,2,36,6,JAC,OAK,3,6,32,(6:06) (Shotgun) C.Henne pass incomplete short middle to C.Shorts.,14,3,2012 -20121021_JAC@OAK,2,36,2,JAC,OAK,4,6,32,(6:02) J.Scobee 50 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,14,3,2012 -20121021_JAC@OAK,2,36,2,JAC,OAK,,,32,J.Scobee kicks onside 10 yards from JAX 35 to JAX 45. RECOVERED by JAX-A.Blake.,17,3,2012 -20121021_JAC@OAK,2,35,56,JAC,OAK,1,10,55,(5:56) R.Jennings right end to JAX 44 for -1 yards (M.Huff).,17,3,2012 -20121021_JAC@OAK,2,35,11,JAC,OAK,2,11,56,(5:11) C.Henne pass short left to C.Shorts to OAK 46 for 10 yards (P.Adams).,17,3,2012 -20121021_JAC@OAK,2,34,39,JAC,OAK,3,1,46,(4:39) C.Henne pass incomplete short left to J.Parmele.,17,3,2012 -20121021_JAC@OAK,2,34,35,JAC,OAK,4,1,46,(4:35) C.Henne pass incomplete short right to K.Elliott.,17,3,2012 -20121021_JAC@OAK,2,34,29,OAK,JAC,1,10,54,(4:29) C.Palmer pass short left to M.Reece to JAX 45 for 9 yards (J.Stanford).,3,17,2012 -20121021_JAC@OAK,2,33,55,OAK,JAC,2,1,45,(3:55) D.McFadden left tackle to JAX 44 for 1 yard (DA.Smith).,3,17,2012 -20121021_JAC@OAK,2,33,16,OAK,JAC,1,10,44,(3:16) C.Palmer scrambles right end to JAX 35 for 9 yards (R.Allen).,3,17,2012 -20121021_JAC@OAK,2,32,51,OAK,JAC,2,1,35,(2:51) D.McFadden left tackle to JAX 31 for 4 yards (T.Alualu).,3,17,2012 -20121021_JAC@OAK,2,32,15,OAK,JAC,1,10,31,(2:15) C.Palmer pass incomplete deep left to D.Heyward-Bey.,3,17,2012 -20121021_JAC@OAK,2,32,8,OAK,JAC,2,10,31,(2:08) C.Palmer pass short middle to B.Myers to JAX 22 for 9 yards (R.Allen).,3,17,2012 -20121021_JAC@OAK,2,32,0,OAK,JAC,3,1,22,(2:00) O.Schmitt up the middle to JAX 20 for 2 yards (J.Mincey).,3,17,2012 -20121021_JAC@OAK,2,31,26,OAK,JAC,1,10,20,(1:26) C.Palmer sacked at JAX 25 for -5 yards (J.Mincey). FUMBLES (J.Mincey) RECOVERED by JAX-C.Mosley at JAX 29. C.Mosley to JAX 29 for no gain (J.Veldheer). The Replay Assistant challenged the fumble ruling and the play was REVERSED. C.Palmer pass incomplete short right to D.Moore [J.Mincey].,3,17,2012 -20121021_JAC@OAK,2,31,24,OAK,JAC,2,10,20,(1:24) C.Palmer pass short middle to B.Myers to JAX 15 for 5 yards (P.Posluszny A.Lane).,3,17,2012 -20121021_JAC@OAK,2,30,43,OAK,JAC,3,5,15,(:43) (Shotgun) C.Palmer pass incomplete short left to B.Myers.,3,17,2012 -20121021_JAC@OAK,2,30,38,OAK,JAC,4,5,15,(:38) S.Janikowski 33 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,17,2012 -20121021_JAC@OAK,2,30,38,OAK,JAC,,,15,S.Janikowski kicks 73 yards from OAK 35 to JAX -8. M.Spurlock Touchback.,6,17,2012 -20121021_JAC@OAK,2,30,34,JAC,OAK,1,10,80,(:34) C.Henne kneels to JAX 19 for -1 yards.,17,6,2012 -20121021_JAC@OAK,3,30,0,JAC,OAK,,,80,J.Scobee kicks 67 yards from JAX 35 to OAK -2. M.Goodson Touchback.,17,6,2012 -20121021_JAC@OAK,3,30,0,OAK,JAC,1,10,80,(15:00) D.McFadden right tackle to OAK 21 for 1 yard (A.Lane).,6,17,2012 -20121021_JAC@OAK,3,29,27,OAK,JAC,2,9,79,(14:27) C.Palmer FUMBLES (Aborted) at OAK 21 and recovers at OAK 21. C.Palmer to OAK 21 for no gain (A.Lane).,6,17,2012 -20121021_JAC@OAK,3,28,53,OAK,JAC,3,9,79,(13:53) (Shotgun) C.Palmer pass incomplete short right to D.McFadden.,6,17,2012 -20121021_JAC@OAK,3,28,45,OAK,JAC,4,9,79,(13:45) S.Lechler punts 46 yards to JAX 33 Center-J.Condo. M.Spurlock to OAK 39 for 28 yards (D.Ausberry).,6,17,2012 -20121021_JAC@OAK,3,28,31,JAC,OAK,1,10,39,(13:31) R.Jennings up the middle to OAK 31 for 8 yards (P.Lee; T.Branch).,17,6,2012 -20121021_JAC@OAK,3,27,50,JAC,OAK,2,2,31,(12:50) R.Jennings right guard to OAK 27 for 4 yards (T.Kelly).,17,6,2012 -20121021_JAC@OAK,3,27,15,JAC,OAK,1,10,27,(12:15) R.Jennings right end to OAK 24 for 3 yards (P.Wheeler; L.Houston).,17,6,2012 -20121021_JAC@OAK,3,26,34,JAC,OAK,2,7,24,(11:34) C.Henne pass incomplete short right to J.Blackmon.,17,6,2012 -20121021_JAC@OAK,3,26,30,JAC,OAK,3,7,24,(11:30) (Shotgun) C.Henne scrambles left end to OAK 22 for 2 yards (T.Kelly; D.Bryant).,17,6,2012 -20121021_JAC@OAK,3,25,48,JAC,OAK,4,5,22,(10:48) J.Scobee 40 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,17,6,2012 -20121021_JAC@OAK,3,25,48,JAC,OAK,,,22,J.Scobee kicks 67 yards from JAX 35 to OAK -2. M.Goodson to OAK 15 for 17 yards (W.Middleton; K.Bosworth).,20,6,2012 -20121021_JAC@OAK,3,25,35,OAK,JAC,1,10,85,(10:35) C.Palmer pass short left to M.Goodson to OAK 21 for 6 yards (J.Stanford).,6,20,2012 -20121021_JAC@OAK,3,24,54,OAK,JAC,2,4,79,(9:54) (No Huddle) D.McFadden left tackle to OAK 29 for 8 yards (D.Landry; DA.Smith).,6,20,2012 -20121021_JAC@OAK,3,24,11,OAK,JAC,1,10,71,(9:11) (No Huddle) C.Palmer pass short middle to D.Heyward-Bey to OAK 41 for 12 yards (D.Landry).,6,20,2012 -20121021_JAC@OAK,3,23,43,OAK,JAC,1,10,59,(8:43) (No Huddle) D.McFadden up the middle to OAK 44 for 3 yards (A.Lane).,6,20,2012 -20121021_JAC@OAK,3,23,3,OAK,JAC,2,7,56,(8:03) C.Palmer pass incomplete deep right to D.Moore (R.Mathis). PENALTY on JAX-R.Mathis Defensive Pass Interference 33 yards enforced at OAK 44 - No Play.,6,20,2012 -20121021_JAC@OAK,3,22,57,OAK,JAC,1,10,23,(7:57) C.Palmer pass short right to D.McFadden to JAX 14 for 9 yards (C.Mosley).,6,20,2012 -20121021_JAC@OAK,3,22,30,OAK,JAC,2,1,14,(7:30) (No Huddle) D.McFadden right tackle to JAX 11 for 3 yards (P.Posluszny).,6,20,2012 -20121021_JAC@OAK,3,21,51,OAK,JAC,1,10,11,(6:51) (Shotgun) D.McFadden up the middle to JAX 8 for 3 yards (C.Mosley D.Landry).,6,20,2012 -20121021_JAC@OAK,3,21,12,OAK,JAC,2,7,8,(6:12) C.Palmer pass incomplete short left to J.Criner.,6,20,2012 -20121021_JAC@OAK,3,21,7,OAK,JAC,3,7,8,(6:07) C.Palmer pass short middle to D.Moore for 8 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,6,20,2012 -20121021_JAC@OAK,3,21,7,OAK,JAC,,,8,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,6,20,2012 -20121021_JAC@OAK,3,21,7,OAK,JAC,,,8,S.Janikowski kicks 66 yards from OAK 35 to JAX -1. M.Spurlock to JAX 17 for 18 yards (B.Ross).,13,20,2012 -20121021_JAC@OAK,3,20,55,JAC,OAK,1,10,83,(5:55) C.Henne sacked at JAX 7 for -10 yards (M.Burris).,20,13,2012 -20121021_JAC@OAK,3,20,18,JAC,OAK,2,20,93,(5:18) (Shotgun) C.Henne pass short right to R.Jennings to JAX 3 for -4 yards (L.Houston).,20,13,2012 -20121021_JAC@OAK,3,19,31,JAC,OAK,3,24,97,(4:31) (Shotgun) C.Henne pass short middle to R.Jennings to JAX 5 for 2 yards (M.Huff).,20,13,2012 -20121021_JAC@OAK,3,18,44,JAC,OAK,4,22,95,(3:44) B.Anger punts 45 yards to 50 Center-J.Cain. P.Adams to 50 for no gain (K.Bosworth). PENALTY on OAK-M.Mitchell Offensive Holding 10 yards enforced at 50.,20,13,2012 -20121021_JAC@OAK,3,18,32,OAK,JAC,1,10,60,(3:32) C.Palmer pass short middle to B.Myers to OAK 47 for 7 yards (A.Ross).,13,20,2012 -20121021_JAC@OAK,3,17,53,OAK,JAC,2,3,53,(2:53) (No Huddle) C.Palmer pass short middle to D.McFadden to JAX 49 for 4 yards (P.Posluszny).,13,20,2012 -20121021_JAC@OAK,3,17,15,OAK,JAC,1,10,49,(2:15) (No Huddle) C.Palmer pass incomplete short left to D.McFadden.,13,20,2012 -20121021_JAC@OAK,3,17,9,OAK,JAC,2,10,49,(2:09) (No Huddle) D.McFadden left tackle to JAX 48 for 1 yard (P.Posluszny).,13,20,2012 -20121021_JAC@OAK,3,16,31,OAK,JAC,3,9,48,(1:31) (Shotgun) C.Palmer scrambles left end to JAX 45 for 3 yards (R.Allen).,13,20,2012 -20121021_JAC@OAK,3,16,13,OAK,JAC,4,6,45,(1:13) S.Lechler punts 45 yards to end zone Center-J.Condo Touchback.,13,20,2012 -20121021_JAC@OAK,3,16,7,JAC,OAK,1,10,80,(1:07) R.Jennings left end to JAX 18 for -2 yards (R.Seymour; R.McClain).,20,13,2012 -20121021_JAC@OAK,3,15,23,JAC,OAK,2,12,82,(:23) C.Henne pass incomplete short right to J.Blackmon.,20,13,2012 -20121021_JAC@OAK,3,15,20,JAC,OAK,3,12,82,(:20) (Shotgun) C.Henne pass short left to R.Jennings to JAX 25 for 7 yards (M.Giordano).,20,13,2012 -20121021_JAC@OAK,4,15,0,JAC,OAK,4,5,75,(15:00) B.Anger punts 44 yards to OAK 31 Center-J.Cain. P.Adams to OAK 32 for 1 yard (A.Blake).,20,13,2012 -20121021_JAC@OAK,4,14,51,OAK,JAC,1,10,68,(14:51) C.Palmer sacked at OAK 24 for -8 yards (T.Knighton). FUMBLES (T.Knighton) RECOVERED by JAX-C.Mosley at OAK 24. C.Mosley to OAK 24 for no gain (D.McFadden).,13,20,2012 -20121021_JAC@OAK,4,14,43,JAC,OAK,1,10,24,(14:43) (Shotgun) R.Jennings up the middle to OAK 24 for no gain (P.Wheeler).,20,13,2012 -20121021_JAC@OAK,4,14,3,JAC,OAK,2,10,24,(14:03) (Shotgun) C.Henne scrambles up the middle to OAK 21 for 3 yards (J.Hanson; P.Wheeler).,20,13,2012 -20121021_JAC@OAK,4,13,18,JAC,OAK,3,7,21,(13:18) (Shotgun) C.Henne sacked at OAK 27 for -6 yards (L.Houston).,20,13,2012 -20121021_JAC@OAK,4,12,46,JAC,OAK,4,13,27,(12:46) J.Scobee 45 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,20,13,2012 -20121021_JAC@OAK,4,12,46,JAC,OAK,,,27,J.Scobee kicks 61 yards from JAX 35 to OAK 4. M.Goodson to OAK 16 for 12 yards (K.Bosworth). PENALTY on OAK-C.Francies Offensive Holding 8 yards enforced at OAK 16.,23,13,2012 -20121021_JAC@OAK,4,12,31,OAK,JAC,1,10,92,(12:31) C.Palmer pass incomplete deep left to D.Heyward-Bey (P.Posluszny).,13,23,2012 -20121021_JAC@OAK,4,12,26,OAK,JAC,2,10,92,(12:26) C.Palmer pass incomplete short left to D.Heyward-Bey.,13,23,2012 -20121021_JAC@OAK,4,12,23,OAK,JAC,3,10,92,(12:23) (Shotgun) C.Palmer pass short left to B.Myers to OAK 12 for 4 yards (D.Cox). PENALTY on JAX-A.Branch Roughing the Passer 15 yards enforced at OAK 12.,13,23,2012 -20121021_JAC@OAK,4,11,57,OAK,JAC,1,10,73,(11:57) (No Huddle) C.Palmer pass deep middle to M.Reece to JAX 38 for 35 yards (J.Stanford).,13,23,2012 -20121021_JAC@OAK,4,11,28,OAK,JAC,1,10,38,(11:28) (No Huddle) C.Palmer pass short middle to B.Myers to JAX 39 for -1 yards (P.Posluszny).,13,23,2012 -20121021_JAC@OAK,4,10,56,OAK,JAC,2,11,39,(10:56) (No Huddle Shotgun) D.McFadden up the middle to JAX 37 for 2 yards (C.Mosley).,13,23,2012 -20121021_JAC@OAK,4,10,26,OAK,JAC,3,9,37,(10:26) (No Huddle) C.Palmer pass short middle to B.Myers to JAX 20 for 17 yards (D.Landry).,13,23,2012 -20121021_JAC@OAK,4,9,52,OAK,JAC,1,10,20,(9:52) (No Huddle) C.Palmer pass short middle to M.Reece to JAX 9 for 11 yards (M.Harris).,13,23,2012 -20121021_JAC@OAK,4,9,4,OAK,JAC,1,9,9,(9:04) (No Huddle) PENALTY on OAK-C.Palmer Delay of Game 5 yards enforced at JAX 9 - No Play.,13,23,2012 -20121021_JAC@OAK,4,8,43,OAK,JAC,1,14,14,(8:43) C.Palmer pass short left to D.Heyward-Bey to JAX 9 for 5 yards (R.Allen). PENALTY on OAK-O.Schmitt Offensive Pass Interference 10 yards enforced at JAX 14 - No Play.,13,23,2012 -20121021_JAC@OAK,4,8,19,OAK,JAC,1,24,24,(8:19) (Shotgun) C.Palmer pass short right to D.McFadden to JAX 13 for 11 yards (C.Prosinski).,13,23,2012 -20121021_JAC@OAK,4,7,48,OAK,JAC,2,13,13,(7:48) D.McFadden right guard to JAX 13 for no gain (J.Mincey).,13,23,2012 -20121021_JAC@OAK,4,7,0,OAK,JAC,3,13,13,(7:00) (Shotgun) C.Palmer pass incomplete short left to R.Streater.,13,23,2012 -20121021_JAC@OAK,4,6,56,OAK,JAC,4,13,13,(6:56) S.Janikowski 31 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,13,23,2012 -20121021_JAC@OAK,4,6,56,OAK,JAC,,,13,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,16,23,2012 -20121021_JAC@OAK,4,6,52,JAC,OAK,1,10,80,(6:52) C.Henne pass incomplete short left to M.Thomas (J.Hanson).,23,16,2012 -20121021_JAC@OAK,4,6,48,JAC,OAK,2,10,80,(6:48) C.Henne pass incomplete short left to C.Shorts.,23,16,2012 -20121021_JAC@OAK,4,6,45,JAC,OAK,3,10,80,(6:45) (Shotgun) C.Henne pass incomplete short left to R.Jennings [M.Mitchell].,23,16,2012 -20121021_JAC@OAK,4,6,40,JAC,OAK,4,10,80,(6:40) B.Anger punts 38 yards to OAK 42 impetus ends at OAK 42 Center-J.Cain downed by JAX-K.Elliott.,23,16,2012 -20121021_JAC@OAK,4,6,31,OAK,JAC,1,10,58,(6:31) C.Palmer sacked at OAK 34 for -8 yards (J.Mincey).,16,23,2012 -20121021_JAC@OAK,4,6,9,OAK,JAC,2,18,66,(6:09) (No Huddle) C.Palmer pass short left to D.Moore to JAX 49 for 17 yards (D.Landry).,16,23,2012 -20121021_JAC@OAK,4,5,44,OAK,JAC,3,1,49,(5:44) (No Huddle) C.Palmer up the middle to JAX 47 for 2 yards (T.Knighton).,16,23,2012 -20121021_JAC@OAK,4,5,12,OAK,JAC,1,10,47,(5:12) C.Palmer pass incomplete deep middle to M.Reece (M.Harris).,16,23,2012 -20121021_JAC@OAK,4,5,7,OAK,JAC,2,10,47,(5:07) (Shotgun) D.McFadden left tackle to JAX 43 for 4 yards (R.Allen).,16,23,2012 -20121021_JAC@OAK,4,4,39,OAK,JAC,3,6,43,(4:39) (No Huddle Shotgun) C.Palmer pass short left to R.Streater to JAX 25 for 18 yards (D.Cox).,16,23,2012 -20121021_JAC@OAK,4,4,10,OAK,JAC,1,10,25,(4:10) (No Huddle) C.Palmer pass incomplete deep middle to M.Reece (M.Harris).,16,23,2012 -20121021_JAC@OAK,4,4,5,OAK,JAC,2,10,25,(4:05) (No Huddle) C.Palmer pass incomplete short middle to B.Myers.,16,23,2012 -20121021_JAC@OAK,4,4,0,OAK,JAC,3,10,25,(4:00) (Shotgun) C.Palmer pass incomplete deep right to R.Streater (A.Ross).,16,23,2012 -20121021_JAC@OAK,4,3,53,OAK,JAC,4,10,25,(3:53) (Shotgun) C.Palmer pass incomplete deep right to D.Heyward-Bey. PENALTY on JAX-A.Ross Defensive Pass Interference 24 yards enforced at JAX 25 - No Play.,16,23,2012 -20121021_JAC@OAK,4,3,48,OAK,JAC,1,1,1,(3:48) (No Huddle) D.McFadden right end to JAX 1 for no gain (C.Mosley). PENALTY on JAX Defensive 12 On-field 0 yards enforced at JAX 1 - No Play.,16,23,2012 -20121021_JAC@OAK,4,3,38,OAK,JAC,1,1,1,(3:38) C.Palmer up the middle for 1 yard TOUCHDOWN.,16,23,2012 -20121021_JAC@OAK,4,3,38,OAK,JAC,,,1,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,16,23,2012 -20121021_JAC@OAK,4,3,38,OAK,JAC,,,1,S.Janikowski kicks 66 yards from OAK 35 to JAX -1. M.Spurlock Touchback.,23,23,2012 -20121021_JAC@OAK,4,3,34,JAC,OAK,1,10,80,(3:34) (Shotgun) C.Henne pass short right to R.Jennings to JAX 46 for 26 yards (T.Branch).,23,23,2012 -20121021_JAC@OAK,4,2,56,JAC,OAK,1,10,54,(2:56) (Shotgun) C.Henne pass deep right to C.Shorts ran ob at OAK 37 for 17 yards. PENALTY on JAX-C.Shorts Offensive Pass Interference 10 yards enforced at JAX 46 - No Play.,23,23,2012 -20121021_JAC@OAK,4,2,51,JAC,OAK,1,20,64,(2:51) R.Jennings up the middle to JAX 37 for 1 yard (L.Houston).,23,23,2012 -20121021_JAC@OAK,4,2,9,JAC,OAK,2,19,63,(2:09) (Shotgun) C.Henne pass short left to M.Thomas to JAX 43 for 6 yards (T.Branch).,23,23,2012 -20121021_JAC@OAK,4,2,0,JAC,OAK,3,13,57,(2:00) (Shotgun) C.Henne pass short left to M.Lewis to OAK 48 for 9 yards (M.Burris; T.Branch).,23,23,2012 -20121021_JAC@OAK,4,1,51,JAC,OAK,4,4,48,(1:51) B.Anger punts 48 yards to end zone Center-J.Cain Touchback.,23,23,2012 -20121021_JAC@OAK,4,1,43,OAK,JAC,1,10,80,(1:43) (Shotgun) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at OAK 20 - No Play.,23,23,2012 -20121021_JAC@OAK,4,1,43,OAK,JAC,1,15,85,(1:43) (Shotgun) C.Palmer pass short right to D.Moore to OAK 21 for 6 yards (C.Prosinski).,23,23,2012 -20121021_JAC@OAK,4,1,25,OAK,JAC,2,9,79,(1:25) (No Huddle Shotgun) C.Palmer pass short middle to D.Moore to OAK 26 for 5 yards (D.Cox).,23,23,2012 -20121021_JAC@OAK,4,1,17,OAK,JAC,3,4,74,(1:17) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,23,23,2012 -20121021_JAC@OAK,4,1,14,OAK,JAC,4,4,74,(1:14) S.Lechler punts 41 yards to JAX 33 Center-J.Condo. M.Spurlock pushed ob at JAX 43 for 10 yards (K.Clayton).,23,23,2012 -20121021_JAC@OAK,4,1,6,JAC,OAK,1,10,57,(1:06) (Shotgun) C.Henne pass to J.Blackmon to 50 for 7 yards (T.Branch).,23,23,2012 -20121021_JAC@OAK,4,0,43,JAC,OAK,2,3,50,(:43) (No Huddle Shotgun) C.Henne pass incomplete short right to C.Shorts (M.Huff).,23,23,2012 -20121021_JAC@OAK,4,0,41,JAC,OAK,3,3,50,(:41) (Shotgun) C.Henne pass incomplete short right to C.Shorts.,23,23,2012 -20121021_JAC@OAK,4,0,36,JAC,OAK,4,3,50,(:36) B.Anger punts 37 yards to OAK 13 Center-J.Cain fair catch by P.Adams.,23,23,2012 -20121021_JAC@OAK,4,0,29,OAK,JAC,1,10,87,(:29) (Shotgun) D.McFadden up the middle to OAK 18 for 5 yards (A.Branch).,23,23,2012 -20121021_JAC@OAK,4,0,25,OAK,JAC,2,5,82,(:25) D.McFadden up the middle to OAK 31 for 13 yards (D.Landry).,23,23,2012 -20121021_JAC@OAK,4,0,18,OAK,JAC,1,10,69,(:18) C.Palmer spiked the ball to stop the clock.,23,23,2012 -20121021_JAC@OAK,4,0,11,OAK,JAC,2,10,69,(:11) (Shotgun) C.Palmer pass deep left to R.Streater to JAX 46 for 23 yards.,23,23,2012 -20121021_JAC@OAK,4,0,6,JAC,OAK,1,10,46,(:06) S.Janikowski 64 yard field goal is No Good Center-J.Condo Holder-S.Lechler. A.Ross at JAX -6 to JAX 30 for 36 yards. Lateral to D.Landry to JAX 32 for 2 yards (C.Carlisle; M.Brisiel).,23,23,2012 -20121021_JAC@OAK,5,0,0,OAK,JAC,,,46,S.Janikowski kicks 60 yards from OAK 35 to JAX 5. M.Thomas to JAX 19 for 14 yards (M.Mitchell).,23,23,2012 -20121021_JAC@OAK,5,-1,53,JAC,OAK,1,10,81,(14:53) R.Jennings up the middle to JAX 19 for no gain (R.McClain L.Houston).,23,23,2012 -20121021_JAC@OAK,5,-1,13,JAC,OAK,2,10,81,(14:13) C.Henne sacked at JAX 9 for -10 yards (R.Seymour).,23,23,2012 -20121021_JAC@OAK,5,-2,37,JAC,OAK,3,20,91,(13:37) (Shotgun) C.Henne pass short middle to C.Shorts to JAX 17 for 8 yards (L.Houston). FUMBLES (L.Houston) RECOVERED by OAK-J.Hanson at JAX 21. J.Hanson to JAX 21 for no gain (M.Lewis).,23,23,2012 -20121021_JAC@OAK,5,-2,31,OAK,JAC,1,10,21,(13:31) C.Palmer kneels to JAX 22 for -1 yards.,23,23,2012 -20121021_JAC@OAK,5,-3,58,OAK,JAC,2,11,22,(12:58) S.Janikowski 40 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,23,23,2012 -20121021_JAC@OAK,5,-3,58,OAK,JAC,,,22,                      ,26,23,2012 -20121021_PIT@CIN,1,-3,0,CIN,PIT,,,22,M.Nugent kicks 66 yards from CIN 35 to PIT -1. C.Rainey to PIT 40 for 41 yards (A.Hawkins).,0,0,2012 -20121021_PIT@CIN,1,59,53,PIT,CIN,1,10,60,(14:53) B.Roethlisberger pass short right to M.Wallace to PIT 49 for 9 yards (R.Maualuga; N.Clements).,0,0,2012 -20121021_PIT@CIN,1,59,12,PIT,CIN,2,1,51,(14:12) B.Roethlisberger pass short right to A.Brown to CIN 49 for 2 yards (V.Burfict).,0,0,2012 -20121021_PIT@CIN,1,58,33,PIT,CIN,1,10,49,(13:33) (Shotgun) M.Wallace right end to PIT 45 for -6 yards (V.Burfict).,0,0,2012 -20121021_PIT@CIN,1,57,54,PIT,CIN,2,16,55,(12:54) J.Dwyer left tackle to CIN 48 for 7 yards (R.Maualuga).,0,0,2012 -20121021_PIT@CIN,1,57,9,PIT,CIN,3,9,48,(12:09) (Shotgun) B.Roethlisberger pass deep left to A.Brown to CIN 25 for 23 yards (A.Jones).,0,0,2012 -20121021_PIT@CIN,1,56,25,PIT,CIN,1,10,25,(11:25) J.Dwyer right guard to CIN 24 for 1 yard (D.Peko; M.Johnson).,0,0,2012 -20121021_PIT@CIN,1,55,44,PIT,CIN,2,9,24,(10:44) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,0,0,2012 -20121021_PIT@CIN,1,55,37,PIT,CIN,3,9,24,(10:37) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,0,0,2012 -20121021_PIT@CIN,1,55,30,PIT,CIN,4,9,24,(10:30) S.Suisham 42 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121021_PIT@CIN,1,55,30,PIT,CIN,,,24,S.Suisham kicks 70 yards from PIT 35 to CIN -5. B.Tate to CIN 20 for 25 yards (Cu.Brown; B.Johnson). CIN-M.Jones was injured during the play.,3,0,2012 -20121021_PIT@CIN,1,55,20,CIN,PIT,1,10,80,(10:20) B.Green-Ellis right tackle to CIN 32 for 12 yards (R.Clark).,0,3,2012 -20121021_PIT@CIN,1,54,40,CIN,PIT,1,10,68,(9:40) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,0,3,2012 -20121021_PIT@CIN,1,54,35,CIN,PIT,2,10,68,(9:35) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 36 for 4 yards (L.Timmons).,0,3,2012 -20121021_PIT@CIN,1,53,50,CIN,PIT,3,6,64,(8:50) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 49 for 13 yards (Cu.Brown).,0,3,2012 -20121021_PIT@CIN,1,53,23,CIN,PIT,1,10,51,(8:23) B.Green-Ellis right tackle to PIT 49 for 2 yards (A.Woods; L.Timmons).,0,3,2012 -20121021_PIT@CIN,1,52,45,CIN,PIT,2,8,49,(7:45) (Shotgun) A.Dalton pass short right to M.Sanu to PIT 44 for 5 yards (L.Foote).,0,3,2012 -20121021_PIT@CIN,1,52,6,CIN,PIT,3,3,44,(7:06) B.Green-Ellis right tackle to PIT 30 for 14 yards (R.Clark).,0,3,2012 -20121021_PIT@CIN,1,51,26,CIN,PIT,1,10,30,(6:26) B.Green-Ellis right tackle to PIT 30 for no gain (L.Timmons).,0,3,2012 -20121021_PIT@CIN,1,50,54,CIN,PIT,2,10,30,(5:54) (Shotgun) A.Dalton pass short right to A.Hawkins to PIT 26 for 4 yards (R.Clark).,0,3,2012 -20121021_PIT@CIN,1,50,14,CIN,PIT,3,6,26,(5:14) (Shotgun) A.Dalton pass short left to M.Sanu to PIT 21 for 5 yards (C.Allen; W.Allen).,0,3,2012 -20121021_PIT@CIN,1,49,4,CIN,PIT,4,1,21,(4:04) B.Green-Ellis right guard to PIT 20 for 1 yard (L.Timmons; E.Hood).,0,3,2012 -20121021_PIT@CIN,1,48,29,CIN,PIT,1,10,20,(3:29) B.Green-Ellis up the middle to PIT 16 for 4 yards (C.Heyward).,0,3,2012 -20121021_PIT@CIN,1,48,14,CIN,PIT,2,6,16,(3:14) B.Green-Ellis right tackle to PIT 11 for 5 yards (L.Timmons).,0,3,2012 -20121021_PIT@CIN,1,47,50,CIN,PIT,3,1,11,(2:50) B.Green-Ellis right tackle to PIT 5 for 6 yards (L.Timmons; I.Taylor).,0,3,2012 -20121021_PIT@CIN,1,47,23,CIN,PIT,1,5,5,(2:23) C.Peerman right guard for 5 yards TOUCHDOWN.,0,3,2012 -20121021_PIT@CIN,1,47,23,CIN,PIT,,,5,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,3,2012 -20121021_PIT@CIN,1,47,23,CIN,PIT,,,5,M.Nugent kicks 71 yards from CIN 35 to PIT -6. C.Rainey to PIT 32 for 38 yards (J.Miles). PENALTY on PIT-S.Sylvester Offensive Holding 10 yards enforced at PIT 19. {Rainey credited with 25 yard return due to the penalty},7,3,2012 -20121021_PIT@CIN,1,47,11,PIT,CIN,1,10,91,(2:11) (Shotgun) B.Roethlisberger pass incomplete deep middle to M.Wallace.,3,7,2012 -20121021_PIT@CIN,1,47,4,PIT,CIN,2,10,91,(2:04) B.Roethlisberger pass short middle to D.Paulson to PIT 16 for 7 yards (R.Maualuga; M.Lawson).,3,7,2012 -20121021_PIT@CIN,1,46,13,PIT,CIN,3,3,84,(1:13) B.Roethlisberger pass deep right to J.Cotchery to PIT 36 for 20 yards (R.Nelson).,3,7,2012 -20121021_PIT@CIN,1,45,35,PIT,CIN,1,10,64,(:35) B.Roethlisberger pass short right to H.Miller to PIT 44 for 8 yards (V.Burfict).,3,7,2012 -20121021_PIT@CIN,2,45,0,PIT,CIN,2,2,56,(15:00) B.Roethlisberger pass short middle to H.Miller to PIT 45 for 1 yard (V.Burfict; D.Peko).,3,7,2012 -20121021_PIT@CIN,2,44,19,PIT,CIN,3,1,55,(14:19) J.Dwyer right end to PIT 48 for 3 yards (C.Crocker).,3,7,2012 -20121021_PIT@CIN,2,43,38,PIT,CIN,1,10,52,(13:38) J.Dwyer left end to PIT 48 for no gain (L.Hall). PENALTY on PIT-H.Miller Offensive Holding 10 yards enforced at PIT 48 - No Play.,3,7,2012 -20121021_PIT@CIN,2,43,10,PIT,CIN,1,20,62,(13:10) C.Rainey left guard to PIT 42 for 4 yards (R.Maualuga).,3,7,2012 -20121021_PIT@CIN,2,42,29,PIT,CIN,2,16,58,(12:29) B.Roethlisberger pass short middle to A.Brown pushed ob at CIN 37 for 21 yards (N.Clements).,3,7,2012 -20121021_PIT@CIN,2,41,42,PIT,CIN,1,10,37,(11:42) (Shotgun) B.Roethlisberger pass short middle to C.Rainey to CIN 29 for 8 yards (V.Burfict).,3,7,2012 -20121021_PIT@CIN,2,41,11,PIT,CIN,2,2,29,(11:11) A.Brown pass incomplete deep left to B.Batch. {Lateral from Roethlisberger to Brown},3,7,2012 -20121021_PIT@CIN,2,41,4,PIT,CIN,3,2,29,(11:04) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to CIN 21 for 8 yards (A.Jones).,3,7,2012 -20121021_PIT@CIN,2,40,25,PIT,CIN,1,10,21,(10:25) B.Roethlisberger pass deep middle intended for H.Miller INTERCEPTED by C.Crocker at CIN -8. Touchback.,3,7,2012 -20121021_PIT@CIN,2,40,17,CIN,PIT,1,10,80,(10:17) B.Green-Ellis right tackle to CIN 20 for no gain (B.Keisel; L.Timmons).,7,3,2012 -20121021_PIT@CIN,2,39,44,CIN,PIT,2,10,80,(9:44) (Shotgun) A.Dalton pass short middle to B.Tate to CIN 23 for 3 yards (L.Woodley L.Foote).,7,3,2012 -20121021_PIT@CIN,2,39,1,CIN,PIT,3,7,77,(9:01) (Shotgun) A.Dalton pass incomplete short left to J.Gresham.,7,3,2012 -20121021_PIT@CIN,2,38,56,CIN,PIT,4,7,77,(8:56) K.Huber punts 54 yards to PIT 23 Center-C.Harris. A.Brown to CIN 44 for 33 yards. PENALTY on PIT-D.Van Dyke Offensive Holding 10 yards enforced at PIT 23. {Brown credited 0 punt return yards due to the penalty},7,3,2012 -20121021_PIT@CIN,2,38,42,PIT,CIN,1,10,87,(8:42) B.Roethlisberger sacked at PIT 10 for -3 yards (sack split by D.Still and R.Geathers). FUMBLES (D.Still) RECOVERED by CIN-W.Gilberry at PIT 8. W.Gilberry to PIT 8 for no gain (D.Legursky). The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,7,2012 -20121021_PIT@CIN,2,38,34,CIN,PIT,1,8,8,(8:34) A.Dalton pass short right to A.Green for 8 yards TOUCHDOWN.,7,3,2012 -20121021_PIT@CIN,2,38,34,CIN,PIT,,,8,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,3,2012 -20121021_PIT@CIN,2,38,34,CIN,PIT,,,8,M.Nugent kicks 64 yards from CIN 35 to PIT 1. C.Rainey to PIT 21 for 20 yards (V.Rey). PENALTY on PIT-B.Batch Offensive Holding 10 yards enforced at PIT 21.,14,3,2012 -20121021_PIT@CIN,2,38,23,PIT,CIN,1,10,89,(8:23) J.Dwyer right end to PIT 22 for 11 yards (D.Skuta; R.Nelson).,3,14,2012 -20121021_PIT@CIN,2,37,41,PIT,CIN,1,10,78,(7:41) J.Dwyer left guard to PIT 26 for 4 yards (R.Maualuga).,3,14,2012 -20121021_PIT@CIN,2,37,2,PIT,CIN,2,6,74,(7:02) J.Dwyer right tackle to PIT 30 for 4 yards (M.Johnson).,3,14,2012 -20121021_PIT@CIN,2,36,25,PIT,CIN,3,2,70,(6:25) J.Dwyer left tackle to CIN 49 for 21 yards (R.Nelson).,3,14,2012 -20121021_PIT@CIN,2,35,45,PIT,CIN,1,10,49,(5:45) B.Batch right tackle to CIN 47 for 2 yards (G.Atkins; M.Johnson).,3,14,2012 -20121021_PIT@CIN,2,35,2,PIT,CIN,2,8,47,(5:02) A.Brown left end pushed ob at CIN 34 for 13 yards (T.Newman). {End around},3,14,2012 -20121021_PIT@CIN,2,34,33,PIT,CIN,1,10,34,(4:33) B.Batch right tackle to CIN 32 for 2 yards (D.Peko; R.Geathers).,3,14,2012 -20121021_PIT@CIN,2,33,53,PIT,CIN,2,8,32,(3:53) B.Roethlisberger pass short right to A.Brown to CIN 29 for 3 yards (T.Newman).,3,14,2012 -20121021_PIT@CIN,2,33,20,PIT,CIN,3,5,29,(3:20) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace (L.Hall).,3,14,2012 -20121021_PIT@CIN,2,33,11,PIT,CIN,4,5,29,(3:11) S.Suisham 47 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,3,14,2012 -20121021_PIT@CIN,2,33,11,PIT,CIN,,,29,S.Suisham kicks 73 yards from PIT 35 to CIN -8. B.Tate Touchback.,6,14,2012 -20121021_PIT@CIN,2,33,7,CIN,PIT,1,10,80,(3:07) (Shotgun) A.Dalton pass short middle to R.Whalen to CIN 28 for 8 yards (L.Timmons; L.Foote).,14,6,2012 -20121021_PIT@CIN,2,32,38,CIN,PIT,2,2,72,(2:38) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 29 for 1 yard (L.Woodley; L.Foote).,14,6,2012 -20121021_PIT@CIN,2,32,9,CIN,PIT,3,1,71,(2:09) B.Green-Ellis up the middle to CIN 31 for 2 yards (R.Clark; E.Hood).,14,6,2012 -20121021_PIT@CIN,2,32,0,CIN,PIT,1,10,69,(2:00) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins (E.Hood). {tipped at the line of scrimmage},14,6,2012 -20121021_PIT@CIN,2,31,56,CIN,PIT,2,10,69,(1:56) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 45 for 14 yards (W.Allen; I.Taylor) [L.Woodley].,14,6,2012 -20121021_PIT@CIN,2,31,30,CIN,PIT,1,10,55,(1:30) (Shotgun) A.Dalton pass short middle intended for R.Whalen INTERCEPTED by L.Woodley at CIN 40. L.Woodley to CIN 29 for 11 yards (A.Smith).,14,6,2012 -20121021_PIT@CIN,2,31,23,PIT,CIN,1,10,29,(1:23) (Shotgun) B.Roethlisberger pass short right to A.Brown ran ob at CIN 18 for 11 yards.,6,14,2012 -20121021_PIT@CIN,2,31,18,PIT,CIN,1,10,18,(1:18) B.Roethlisberger pass short right to E.Sanders pushed ob at CIN 9 for 9 yards (L.Hall) [C.Dunlap].,6,14,2012 -20121021_PIT@CIN,2,31,10,PIT,CIN,2,1,9,(1:10) (Shotgun) B.Roethlisberger pass incomplete short left to H.Miller (R.Nelson).,6,14,2012 -20121021_PIT@CIN,2,31,3,PIT,CIN,3,1,9,(1:03) J.Dwyer right guard to CIN 8 for 1 yard (M.Johnson).,6,14,2012 -20121021_PIT@CIN,2,30,36,PIT,CIN,1,8,8,(:36) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to CIN 9 for -1 yards (V.Burfict).,6,14,2012 -20121021_PIT@CIN,2,30,29,PIT,CIN,2,9,9,(:29) (Shotgun) B.Roethlisberger pass short middle to H.Miller for 9 yards TOUCHDOWN.,6,14,2012 -20121021_PIT@CIN,2,30,29,PIT,CIN,,,9,TWO-POINT CONVERSION ATTEMPT. B.Roethlisberger pass to H.Miller is complete. ATTEMPT SUCCEEDS.,6,14,2012 -20121021_PIT@CIN,2,30,29,PIT,CIN,,,9,S.Suisham kicks 58 yards from PIT 35 to CIN 7. C.Pressley to CIN 14 for 7 yards (C.Allen; D.Van Dyke).,14,14,2012 -20121021_PIT@CIN,2,30,22,CIN,PIT,1,10,86,(:22) A.Dalton kneels to CIN 13 for -1 yards.,14,14,2012 -20121021_PIT@CIN,3,30,0,PIT,CIN,,,86,S.Suisham kicks 72 yards from PIT 35 to CIN -7. B.Tate to CIN 38 for 45 yards (C.Brown).,14,14,2012 -20121021_PIT@CIN,3,29,54,CIN,PIT,1,10,62,(14:54) A.Dalton pass short right to R.Whalen to CIN 47 for 9 yards (K.Lewis).,14,14,2012 -20121021_PIT@CIN,3,29,16,CIN,PIT,2,1,53,(14:16) B.Green-Ellis right tackle to PIT 48 for 5 yards. PENALTY on CIN-T.Robinson Offensive Holding 10 yards enforced at CIN 47 - No Play.,14,14,2012 -20121021_PIT@CIN,3,28,53,CIN,PIT,2,11,63,(13:53) (Shotgun) M.Sanu left guard to CIN 44 for 7 yards (R.Clark; E.Hood).,14,14,2012 -20121021_PIT@CIN,3,28,13,CIN,PIT,3,4,56,(13:13) (Shotgun) A.Dalton pass short middle to M.Sanu to PIT 39 for 17 yards (C.Brown).,14,14,2012 -20121021_PIT@CIN,3,27,34,CIN,PIT,1,10,39,(12:34) B.Green-Ellis right guard to PIT 33 for 6 yards (R.Clark).,14,14,2012 -20121021_PIT@CIN,3,26,59,CIN,PIT,2,4,33,(11:59) B.Green-Ellis right tackle to PIT 30 for 3 yards (K.Lewis).,14,14,2012 -20121021_PIT@CIN,3,26,21,CIN,PIT,3,1,30,(11:21) A.Dalton pass incomplete deep middle to A.Green (K.Lewis).,14,14,2012 -20121021_PIT@CIN,3,26,14,CIN,PIT,4,1,30,(11:14) M.Nugent 48 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,14,2012 -20121021_PIT@CIN,3,26,14,CIN,PIT,,,30,M.Nugent kicks 62 yards from CIN 35 to PIT 3. C.Rainey ran ob at PIT 39 for 36 yards (D.Skuta).,17,14,2012 -20121021_PIT@CIN,3,26,3,PIT,CIN,1,10,61,(11:03) B.Roethlisberger pass deep middle to A.Brown to CIN 41 for 20 yards (A.Jones).,14,17,2012 -20121021_PIT@CIN,3,25,22,PIT,CIN,1,10,41,(10:22) M.Wallace right end to CIN 28 for 13 yards (V.Burfict). {End around},14,17,2012 -20121021_PIT@CIN,3,24,35,PIT,CIN,1,10,28,(9:35) B.Roethlisberger sacked at CIN 36 for -8 yards (G.Atkins).,14,17,2012 -20121021_PIT@CIN,3,24,1,PIT,CIN,2,18,36,(9:01) (Shotgun) B.Roethlisberger pass short right to M.Wallace pushed ob at CIN 24 for 12 yards (N.Clements).,14,17,2012 -20121021_PIT@CIN,3,23,27,PIT,CIN,3,6,24,(8:27) (Shotgun) B.Roethlisberger pass incomplete deep right to M.Wallace.,14,17,2012 -20121021_PIT@CIN,3,23,22,PIT,CIN,4,6,24,(8:22) S.Suisham 42 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,14,17,2012 -20121021_PIT@CIN,3,23,22,PIT,CIN,,,24,S.Suisham kicks 65 yards from PIT 35 to CIN 0. B.Tate pushed ob at CIN 39 for 39 yards (D.Van Dyke).,17,17,2012 -20121021_PIT@CIN,3,23,10,CIN,PIT,1,10,61,(8:10) B.Green-Ellis right tackle to CIN 39 for no gain (K.Lewis).,17,17,2012 -20121021_PIT@CIN,3,22,37,CIN,PIT,2,10,61,(7:37) (Shotgun) A.Dalton pass incomplete short middle to B.Green-Ellis.,17,17,2012 -20121021_PIT@CIN,3,22,33,CIN,PIT,3,10,61,(7:33) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins (E.Hood). Penalty on CIN-C.Peerman Offensive Holding declined. {Tipped at the line of scrimmage},17,17,2012 -20121021_PIT@CIN,3,22,16,CIN,PIT,4,10,61,(7:16) K.Huber punts 53 yards to PIT 8 Center-C.Harris. A.Brown to PIT 17 for 9 yards (C.Peerman).,17,17,2012 -20121021_PIT@CIN,3,22,5,PIT,CIN,1,10,83,(7:05) J.Dwyer right end to PIT 15 for -2 yards (C.Dunlap; R.Maualuga).,17,17,2012 -20121021_PIT@CIN,3,21,25,PIT,CIN,2,12,85,(6:25) B.Roethlisberger pass short right to M.Wallace pushed ob at PIT 19 for 4 yards (C.Dunlap).,17,17,2012 -20121021_PIT@CIN,3,20,49,PIT,CIN,3,8,81,(5:49) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 26 for 7 yards (R.Geathers; N.Clements).,17,17,2012 -20121021_PIT@CIN,3,20,15,PIT,CIN,4,1,74,(5:15) D.Butler punts 55 yards to CIN 19 Center-G.Warren. A.Jones to CIN 24 for 5 yards (D.Paulson).,17,17,2012 -20121021_PIT@CIN,3,20,1,CIN,PIT,1,10,86,(5:01) B.Green-Ellis right guard to CIN 20 for 6 yards (L.Timmons; L.Foote).,17,17,2012 -20121021_PIT@CIN,3,19,24,CIN,PIT,2,4,80,(4:24) A.Dalton pass incomplete deep left to J.Gresham.,17,17,2012 -20121021_PIT@CIN,3,19,19,CIN,PIT,3,4,80,(4:19) (Shotgun) A.Dalton pass incomplete short right to R.Whalen [L.Woodley].,17,17,2012 -20121021_PIT@CIN,3,19,11,CIN,PIT,4,4,80,(4:11) K.Huber punts 38 yards to PIT 42 Center-C.Harris. A.Brown pushed ob at CIN 38 for 20 yards (V.Rey). PENALTY on PIT-I.Taylor Offensive Holding 10 yards enforced at PIT 43. {Brown credited with 1 return yard due to the penalty},17,17,2012 -20121021_PIT@CIN,3,18,58,PIT,CIN,1,10,67,(3:58) C.Rainey right guard to PIT 33 for no gain (V.Burfict).,17,17,2012 -20121021_PIT@CIN,3,18,20,PIT,CIN,2,10,67,(3:20) B.Roethlisberger pass short right to H.Miller to PIT 35 for 2 yards (V.Burfict R.Maualuga).,17,17,2012 -20121021_PIT@CIN,3,17,35,PIT,CIN,3,8,65,(2:35) (Shotgun) B.Roethlisberger pass short middle to A.Brown to CIN 49 for 16 yards (V.Burfict; T.Newman).,17,17,2012 -20121021_PIT@CIN,3,16,50,PIT,CIN,1,10,49,(1:50) C.Rainey up the middle to CIN 47 for 2 yards (M.Johnson; D.Still).,17,17,2012 -20121021_PIT@CIN,3,16,8,PIT,CIN,2,8,47,(1:08) B.Roethlisberger pass short left to M.Wallace to CIN 45 for 2 yards (L.Hall). Cincinnati challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),17,17,2012 -20121021_PIT@CIN,3,15,24,PIT,CIN,3,6,45,(:24) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to CIN 19 for 26 yards (R.Nelson; A.Jones).,17,17,2012 -20121021_PIT@CIN,4,15,0,PIT,CIN,1,10,14,(15:00) B.Roethlisberger pass short middle to H.Miller to CIN 12 for 2 yards (M.Johnson).,17,17,2012 -20121021_PIT@CIN,4,14,22,PIT,CIN,2,7,11,(14:22) C.Rainey right guard for 11 yards TOUCHDOWN.,17,17,2012 -20121021_PIT@CIN,4,14,22,PIT,CIN,,,11,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,17,2012 -20121021_PIT@CIN,4,14,22,PIT,CIN,,,11,S.Suisham kicks 59 yards from PIT 35 to CIN 6. C.Peerman to CIN 24 for 18 yards (B.Batch).,24,17,2012 -20121021_PIT@CIN,4,14,11,CIN,PIT,1,10,76,(14:11) B.Green-Ellis right tackle to CIN 28 for 4 yards (L.Foote).,17,24,2012 -20121021_PIT@CIN,4,13,35,CIN,PIT,2,6,72,(13:35) (Shotgun) A.Dalton pass short right to R.Whalen pushed ob at CIN 35 for 7 yards (R.Clark).,17,24,2012 -20121021_PIT@CIN,4,13,17,CIN,PIT,1,10,65,(13:17) (Shotgun) B.Green-Ellis left tackle to CIN 39 for 4 yards (L.Foote; E.Hood).,17,24,2012 -20121021_PIT@CIN,4,12,43,CIN,PIT,2,6,61,(12:43) (Shotgun) A.Dalton pass incomplete short middle to R.Whalen (K.Lewis).,17,24,2012 -20121021_PIT@CIN,4,12,38,CIN,PIT,3,6,61,(12:38) (Shotgun) A.Dalton pass incomplete short left.,17,24,2012 -20121021_PIT@CIN,4,12,32,CIN,PIT,4,6,61,(12:32) K.Huber punts 61 yards to end zone Center-C.Harris Touchback.,17,24,2012 -20121021_PIT@CIN,4,12,24,PIT,CIN,1,10,80,(12:24) W.Johnson up the middle to PIT 25 for 5 yards (V.Burfict).,24,17,2012 -20121021_PIT@CIN,4,11,47,PIT,CIN,2,5,75,(11:47) J.Dwyer right guard to PIT 26 for 1 yard (V.Burfict).,24,17,2012 -20121021_PIT@CIN,4,11,7,PIT,CIN,3,4,74,(11:07) (Shotgun) J.Dwyer right guard to PIT 41 for 15 yards (R.Nelson; N.Clements).,24,17,2012 -20121021_PIT@CIN,4,10,23,PIT,CIN,1,10,59,(10:23) J.Dwyer right guard to PIT 45 for 4 yards (D.Peko).,24,17,2012 -20121021_PIT@CIN,4,9,39,PIT,CIN,2,6,55,(9:39) B.Roethlisberger pass short middle to W.Johnson to PIT 47 for 2 yards (M.Lawson) [R.Maualuga].,24,17,2012 -20121021_PIT@CIN,4,8,55,PIT,CIN,3,4,53,(8:55) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown.,24,17,2012 -20121021_PIT@CIN,4,8,48,PIT,CIN,4,4,53,(8:48) D.Butler punts 39 yards to CIN 14 Center-G.Warren fair catch by B.Tate.,24,17,2012 -20121021_PIT@CIN,4,8,41,CIN,PIT,1,10,86,(8:41) A.Dalton pass incomplete short left to A.Green.,17,24,2012 -20121021_PIT@CIN,4,8,33,CIN,PIT,2,10,86,(8:33) (Shotgun) A.Dalton pass short middle to R.Whalen to CIN 21 for 7 yards (L.Timmons).,17,24,2012 -20121021_PIT@CIN,4,7,52,CIN,PIT,3,3,79,(7:52) (Shotgun) A.Dalton pass incomplete short left to A.Green (I.Taylor).,17,24,2012 -20121021_PIT@CIN,4,7,47,CIN,PIT,4,3,79,(7:47) K.Huber punts 48 yards to PIT 31 Center-C.Harris out of bounds.,17,24,2012 -20121021_PIT@CIN,4,7,38,PIT,CIN,1,10,69,(7:38) J.Dwyer up the middle to PIT 34 for 3 yards (M.Johnson).,24,17,2012 -20121021_PIT@CIN,4,6,55,PIT,CIN,2,7,66,(6:55) B.Roethlisberger pass short middle to H.Miller to CIN 36 for 30 yards (V.Burfict).,24,17,2012 -20121021_PIT@CIN,4,6,10,PIT,CIN,1,10,36,(6:10) B.Roethlisberger pass incomplete short right to M.Wallace.,24,17,2012 -20121021_PIT@CIN,4,6,4,PIT,CIN,2,10,36,(6:04) B.Roethlisberger sacked at CIN 37 for -1 yards (M.Johnson). PIT-E.Sanders was injured during the play.,24,17,2012 -20121021_PIT@CIN,4,5,42,PIT,CIN,3,11,37,(5:42) (Shotgun) B.Roethlisberger pass incomplete short middle to M.Wallace.,24,17,2012 -20121021_PIT@CIN,4,5,38,PIT,CIN,4,11,37,(5:38) (Shotgun) B.Roethlisberger punts 26 yards to CIN 11 Center-D.Legursky downed by PIT-E.Sanders.,24,17,2012 -20121021_PIT@CIN,4,5,29,CIN,PIT,1,10,89,(5:29) B.Green-Ellis right tackle to CIN 13 for 2 yards (L.Timmons; L.Woodley).,17,24,2012 -20121021_PIT@CIN,4,4,55,CIN,PIT,2,8,87,(4:55) B.Green-Ellis right tackle to CIN 11 for -2 yards (C.Hampton).,17,24,2012 -20121021_PIT@CIN,4,4,15,CIN,PIT,3,10,89,(4:15) (Shotgun) A.Dalton pass incomplete deep left to A.Green.,17,24,2012 -20121021_PIT@CIN,4,4,8,CIN,PIT,4,10,89,(4:08) K.Huber punts 57 yards to PIT 32 Center-C.Harris downed by CIN-A.Hawkins.,17,24,2012 -20121021_PIT@CIN,4,3,57,PIT,CIN,1,10,68,(3:57) A.Brown left end to PIT 32 for no gain (V.Burfict). {End around},24,17,2012 -20121021_PIT@CIN,4,3,14,PIT,CIN,2,10,68,(3:14) B.Roethlisberger pass short right to M.Wallace to PIT 43 for 11 yards (R.Maualuga). Cincinnati challenged the pass completion ruling and the play was Upheld. (Timeout #2.),24,17,2012 -20121021_PIT@CIN,4,2,40,PIT,CIN,1,10,57,(2:40) J.Dwyer left guard to CIN 43 for 14 yards (T.Newman; C.Crocker).,24,17,2012 -20121021_PIT@CIN,4,2,29,PIT,CIN,1,10,43,(2:29) J.Dwyer left tackle to CIN 43 for no gain (V.Burfict).,24,17,2012 -20121021_PIT@CIN,4,2,0,PIT,CIN,2,10,43,(2:00) J.Dwyer right guard to CIN 40 for 3 yards (R.Nelson).,24,17,2012 -20121021_PIT@CIN,4,1,20,PIT,CIN,3,7,40,(1:20) J.Dwyer right guard to CIN 8 for 32 yards (L.Hall).,24,17,2012 -20121021_PIT@CIN,4,0,35,PIT,CIN,1,8,8,(:35) B.Roethlisberger kneels to CIN 9 for -1 yards.,24,17,2012 -20121021_PIT@CIN,4,0,35,PIT,CIN,,,8,                      ,24,17,2012 -20121022_DET@CHI,1,0,0,CHI,DET,,,8,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121022_DET@CHI,1,60,0,DET,CHI,1,10,80,(15:00) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (C.Tillman).,0,0,2012 -20121022_DET@CHI,1,59,57,DET,CHI,2,10,80,(14:57) M.Leshoure left guard to DET 24 for 4 yards (B.Urlacher).,0,0,2012 -20121022_DET@CHI,1,59,14,DET,CHI,3,6,76,(14:14) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson.,0,0,2012 -20121022_DET@CHI,1,59,8,DET,CHI,4,6,76,(14:08) (Punt formation) N.Harris punts 35 yards to CHI 41 Center-D.Muhlbach fair catch by D.Hester.,0,0,2012 -20121022_DET@CHI,1,59,2,CHI,DET,1,10,59,(14:02) M.Forte right guard to CHI 43 for 2 yards (A.Spievey).,0,0,2012 -20121022_DET@CHI,1,58,38,CHI,DET,2,8,57,(13:38) (No Huddle) M.Forte right guard to CHI 43 for no gain (C.Avril).,0,0,2012 -20121022_DET@CHI,1,58,2,CHI,DET,3,8,57,(13:02) (Shotgun) J.Cutler scrambles left end pushed ob at DET 46 for 11 yards (J.Durant).,0,0,2012 -20121022_DET@CHI,1,57,38,CHI,DET,1,10,46,(12:38) J.Cutler sacked at DET 46 for 0 yards (K.Vanden Bosch).,0,0,2012 -20121022_DET@CHI,1,57,5,CHI,DET,2,10,46,(12:05) M.Forte left tackle to DET 7 for 39 yards (A.Spievey).,0,0,2012 -20121022_DET@CHI,1,56,18,CHI,DET,1,7,7,(11:18) J.Cutler pass short right to B.Marshall for 7 yards TOUCHDOWN.,0,0,2012 -20121022_DET@CHI,1,56,18,CHI,DET,,,7,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121022_DET@CHI,1,56,18,CHI,DET,,,7,R.Gould kicks 69 yards from CHI 35 to DET -4. S.Logan to DET 21 for 25 yards (B.Costanzo).,7,0,2012 -20121022_DET@CHI,1,56,6,DET,CHI,1,10,79,(11:06) R.Reiff reported in as eligible. M.Leshoure left guard to DET 36 for 15 yards (C.Conte).,0,7,2012 -20121022_DET@CHI,1,55,32,DET,CHI,1,10,64,(10:32) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 37 for 1 yard (C.Tillman).,0,7,2012 -20121022_DET@CHI,1,54,43,DET,CHI,2,9,63,(9:43) (Shotgun) M.Stafford pass incomplete short left to N.Burleson (B.Urlacher).,0,7,2012 -20121022_DET@CHI,1,54,40,DET,CHI,3,9,63,(9:40) (Shotgun) M.Stafford pass short left to J.Bell to DET 39 for 2 yards (T.Jennings; L.Briggs) [J.Peppers].,0,7,2012 -20121022_DET@CHI,1,54,1,DET,CHI,4,7,61,(9:01) (Punt formation) N.Harris punts 35 yards to CHI 26 Center-D.Muhlbach out of bounds.,0,7,2012 -20121022_DET@CHI,1,53,56,CHI,DET,1,10,74,(8:56) J.Cutler pass incomplete short right to D.Hester.,7,0,2012 -20121022_DET@CHI,1,53,52,CHI,DET,2,10,74,(8:52) (Shotgun) J.Cutler pass short left to E.Bennett to CHI 26 for no gain (C.Houston).,7,0,2012 -20121022_DET@CHI,1,53,10,CHI,DET,3,10,74,(8:10) (Shotgun) J.Cutler pass short middle to E.Bennett to CHI 41 for 15 yards (A.Spievey).,7,0,2012 -20121022_DET@CHI,1,52,35,CHI,DET,1,10,59,(7:35) M.Forte right guard to CHI 44 for 3 yards (J.Durant).,7,0,2012 -20121022_DET@CHI,1,51,50,CHI,DET,2,7,56,(6:50) J.Cutler pass incomplete deep middle to B.Marshall.,7,0,2012 -20121022_DET@CHI,1,51,43,CHI,DET,3,7,56,(6:43) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 46 for 2 yards (S.Tulloch).,7,0,2012 -20121022_DET@CHI,1,51,7,CHI,DET,4,5,54,(6:07) (Punt formation) A.Podlesh punts 34 yards to DET 20 Center-P.Mannelly fair catch by S.Logan.,7,0,2012 -20121022_DET@CHI,1,50,59,DET,CHI,1,10,80,(5:59) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 23 for 3 yards (C.Wootton).,0,7,2012 -20121022_DET@CHI,1,50,23,DET,CHI,2,7,77,(5:23) M.Leshoure right end to DET 23 for no gain (L.Briggs; M.Wright).,0,7,2012 -20121022_DET@CHI,1,49,36,DET,CHI,3,7,77,(4:36) (Shotgun) M.Stafford sacked at DET 19 for -4 yards (J.Peppers).,0,7,2012 -20121022_DET@CHI,1,49,12,DET,CHI,4,11,81,(4:12) (Punt formation) N.Harris punts 36 yards to CHI 45 Center-D.Muhlbach. D.Hester to 50 for 5 yards (A.Palmer).,0,7,2012 -20121022_DET@CHI,1,49,2,CHI,DET,1,10,50,(4:02) M.Bush right tackle to DET 47 for 3 yards (S.Tulloch). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at 50 - No Play.,7,0,2012 -20121022_DET@CHI,1,48,36,CHI,DET,1,20,60,(3:36) (Shotgun) J.Cutler scrambles right end to DET 36 for 24 yards (J.Green). PENALTY on DET-C.Williams Unnecessary Roughness 15 yards enforced at DET 36.,7,0,2012 -20121022_DET@CHI,1,48,1,CHI,DET,1,10,21,(3:01) J.Cutler pass short left to K.Davis to DET 18 for 3 yards (D.Levy).,7,0,2012 -20121022_DET@CHI,1,47,19,CHI,DET,2,7,18,(2:19) J.Cutler pass incomplete short left to M.Spaeth (D.Levy) [N.Suh].,7,0,2012 -20121022_DET@CHI,1,47,15,CHI,DET,3,7,18,(2:15) (Shotgun) J.Cutler pass short left to M.Bush to DET 21 for -3 yards (D.Levy).,7,0,2012 -20121022_DET@CHI,1,46,29,CHI,DET,4,10,21,(1:29) (Field Goal formation) R.Gould 39 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,0,2012 -20121022_DET@CHI,1,46,29,CHI,DET,,,21,R.Gould kicks 70 yards from CHI 35 to DET -5. S.Logan to DET 14 for 19 yards (A.Walters).,10,0,2012 -20121022_DET@CHI,1,46,18,DET,CHI,1,10,86,(1:18) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at DET 23 for 9 yards (C.Tillman).,0,10,2012 -20121022_DET@CHI,1,45,51,DET,CHI,2,1,77,(:51) R.Reiff reported in as eligible. M.Stafford pass incomplete deep right to C.Johnson.,0,10,2012 -20121022_DET@CHI,1,45,45,DET,CHI,3,1,77,(:45) M.Stafford pass incomplete short right to J.Bell.,0,10,2012 -20121022_DET@CHI,1,45,38,DET,CHI,4,1,77,(:38) (Punt formation) N.Harris punts 58 yards to CHI 19 Center-D.Muhlbach downed by DET-E.Coleman.,0,10,2012 -20121022_DET@CHI,1,45,27,CHI,DET,1,10,81,(:27) M.Forte right end pushed ob at CHI 18 for -1 yards (C.Houston).,10,0,2012 -20121022_DET@CHI,2,45,0,CHI,DET,2,11,82,(15:00) J.Cutler pass incomplete short right to K.Davis.,10,0,2012 -20121022_DET@CHI,2,44,56,CHI,DET,3,11,82,(14:56) (Shotgun) J.Cutler pass incomplete short middle to M.Forte [K.Vanden Bosch].,10,0,2012 -20121022_DET@CHI,2,44,42,DET,CHI,1,10,49,(14:42) M.Leshoure left tackle to CHI 49 for no gain (H.Melton).,0,10,2012 -20121022_DET@CHI,2,44,6,DET,CHI,2,10,49,(14:06) (Shotgun) M.Stafford sacked at 50 for -1 yards (sack split by S.Paea and S.McClellin).,0,10,2012 -20121022_DET@CHI,2,43,32,DET,CHI,3,11,50,(13:32) (Shotgun) M.Stafford pass incomplete deep right to T.Young.,0,10,2012 -20121022_DET@CHI,2,43,27,DET,CHI,4,11,50,(13:27) (Punt formation) N.Harris punts 47 yards to CHI 3 Center-D.Muhlbach downed by DET-E.Coleman. PENALTY on CHI-C.Tillman Offensive Holding 1 yard enforced at CHI 3.,0,10,2012 -20121022_DET@CHI,2,43,16,CHI,DET,1,10,98,(13:16) PENALTY on CHI-L.Louis False Start 1 yard enforced at CHI 2 - No Play.,10,0,2012 -20121022_DET@CHI,2,43,16,CHI,DET,1,11,99,(13:16) M.Forte right guard to CHI 1 for no gain (S.Tulloch).,10,0,2012 -20121022_DET@CHI,2,42,32,CHI,DET,2,11,99,(12:32) (Shotgun) J.Cutler pass incomplete short middle to E.Bennett (S.Tulloch).,10,0,2012 -20121022_DET@CHI,2,42,27,CHI,DET,3,11,99,(12:27) J.Cutler pass short right to B.Marshall to CHI 19 for 18 yards (A.Spievey).,10,0,2012 -20121022_DET@CHI,2,41,47,CHI,DET,1,10,81,(11:47) M.Forte left end to CHI 21 for 2 yards (C.Houston).,10,0,2012 -20121022_DET@CHI,2,41,12,CHI,DET,2,8,79,(11:12) J.Cutler pass short right to B.Marshall to CHI 32 for 11 yards (A.Smith). PENALTY on DET-A.Smith Horse Collar Tackle 15 yards enforced at CHI 32.,10,0,2012 -20121022_DET@CHI,2,40,40,CHI,DET,1,10,53,(10:40) J.Cutler pass incomplete short right to D.Hester.,10,0,2012 -20121022_DET@CHI,2,40,35,CHI,DET,2,10,53,(10:35) (Shotgun) M.Forte left tackle to DET 45 for 8 yards (S.Tulloch).,10,0,2012 -20121022_DET@CHI,2,39,53,CHI,DET,3,2,45,(9:53) (Shotgun) J.Cutler pass deep left to B.Marshall to DET 25 for 20 yards (A.Smith).,10,0,2012 -20121022_DET@CHI,2,38,35,CHI,DET,1,10,25,(8:35) M.Forte left end to DET 20 for 5 yards (J.Green).,10,0,2012 -20121022_DET@CHI,2,37,50,CHI,DET,2,5,20,(7:50) M.Forte right end to DET 20 for no gain (J.Durant).,10,0,2012 -20121022_DET@CHI,2,37,4,CHI,DET,3,5,20,(7:04) (Shotgun) J.Cutler sacked at DET 29 for -9 yards (sack split by J.Durant and S.Tulloch).,10,0,2012 -20121022_DET@CHI,2,36,44,CHI,DET,4,14,29,(6:44) (Field Goal formation) R.Gould 47 yard field goal is BLOCKED (L.Jackson) Center-P.Mannelly Holder-A.Podlesh.,10,0,2012 -20121022_DET@CHI,2,36,33,DET,CHI,1,10,63,(6:33) (Shotgun) M.Stafford pass short left to T.Young to DET 46 for 9 yards (T.Jennings).,0,10,2012 -20121022_DET@CHI,2,36,8,DET,CHI,2,1,54,(6:08) (No Huddle) M.Leshoure right tackle to DET 45 for -1 yards (S.McClellin).,0,10,2012 -20121022_DET@CHI,2,35,26,DET,CHI,3,2,55,(5:26) (Shotgun) M.Stafford pass incomplete short middle to N.Burleson (L.Briggs).,0,10,2012 -20121022_DET@CHI,2,35,22,DET,CHI,4,2,55,(5:22) (Punt formation) PENALTY on DET-T.Whitehead False Start 5 yards enforced at DET 45 - No Play.,0,10,2012 -20121022_DET@CHI,2,35,21,DET,CHI,4,7,60,(5:21) (Punt formation) N.Harris punts 36 yards to CHI 24 Center-D.Muhlbach. E.Bennett to CHI 26 for 2 yards (J.Wendling).,0,10,2012 -20121022_DET@CHI,2,35,12,CHI,DET,1,10,74,(5:12) J.Cutler sacked at CHI 18 for -8 yards (N.Suh). CHI-J.Cutler was injured during the play. His return is Questionable.,10,0,2012 -20121022_DET@CHI,2,34,52,CHI,DET,2,18,82,(4:52) CHI J.Campbell in at QB. J.Campbell scrambles right guard to CHI 23 for 5 yards (D.Levy).,10,0,2012 -20121022_DET@CHI,2,34,8,CHI,DET,3,13,77,(4:08) J.Cutler back in at QB. (Shotgun) J.Cutler pass incomplete short right to D.Hester.,10,0,2012 -20121022_DET@CHI,2,34,5,CHI,DET,4,13,77,(4:05) (Punt formation) A.Podlesh punts 53 yards to DET 24 Center-P.Mannelly. S.Logan pushed ob at DET 29 for 5 yards (Z.Bowman).,10,0,2012 -20121022_DET@CHI,2,33,54,DET,CHI,1,10,71,(3:54) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 31 for 2 yards (C.Tillman). FUMBLES (C.Tillman) ball out of bounds at DET 30.,0,10,2012 -20121022_DET@CHI,2,33,35,DET,CHI,2,9,70,(3:35) (No Huddle Shotgun) M.Stafford scrambles right end pushed ob at DET 42 for 12 yards (L.Briggs).,0,10,2012 -20121022_DET@CHI,2,33,15,DET,CHI,1,10,58,(3:15) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to DET 47 for 5 yards (C.Tillman). FUMBLES (C.Tillman) ball out of bounds at DET 47. CHI-C.Tillman was injured during the play. His return is Questionable.,0,10,2012 -20121022_DET@CHI,2,32,55,DET,CHI,2,5,53,(2:55) (No Huddle Shotgun) M.Leshoure right guard to CHI 39 for 14 yards (C.Conte).,0,10,2012 -20121022_DET@CHI,2,32,28,DET,CHI,1,10,39,(2:28) (No Huddle) M.Stafford right tackle to CHI 34 for 5 yards (Team).,0,10,2012 -20121022_DET@CHI,2,32,4,DET,CHI,2,5,34,(2:04) (No Huddle Shotgun) M.Stafford pass short middle to T.Scheffler to CHI 28 for 6 yards (B.Urlacher).,0,10,2012 -20121022_DET@CHI,2,32,0,DET,CHI,1,10,28,(2:00) (Shotgun) M.Stafford pass short middle to M.Leshoure to CHI 18 for 10 yards (B.Urlacher).,0,10,2012 -20121022_DET@CHI,2,31,32,DET,CHI,1,10,18,(1:32) (No Huddle Shotgun) M.Leshoure left guard to CHI 17 for 1 yard (L.Briggs). FUMBLES (L.Briggs) RECOVERED by CHI-J.Peppers at CHI 17. J.Peppers to CHI 17 for no gain (M.Leshoure). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,10,2012 -20121022_DET@CHI,2,31,22,CHI,DET,1,10,83,(1:22) J.Campbell back in at QB. (Shotgun) J.Campbell pass short right to M.Forte to CHI 17 for no gain (S.Tulloch).,10,0,2012 -20121022_DET@CHI,2,30,55,CHI,DET,2,10,83,(:55) (No Huddle Shotgun) M.Forte right guard to CHI 19 for 2 yards (C.Avril).,10,0,2012 -20121022_DET@CHI,2,30,50,CHI,DET,3,8,81,(:50) M.Forte right tackle to CHI 28 for 9 yards (A.Smith; A.Spievey).,10,0,2012 -20121022_DET@CHI,2,30,3,CHI,DET,1,10,72,(:03) M.Forte left tackle to CHI 28 for no gain (J.Durant; N.Fairley).,10,0,2012 -20121022_DET@CHI,3,30,0,DET,CHI,,,72,J.Hanson kicks 68 yards from DET 35 to CHI -3. E.Weems to CHI 24 for 27 yards (K.Osgood).,0,10,2012 -20121022_DET@CHI,3,29,56,CHI,DET,1,10,76,(14:56) #6 J. Cutler back in at QB M.Forte right tackle to CHI 26 for 2 yards (A.Spievey).,10,0,2012 -20121022_DET@CHI,3,29,22,CHI,DET,2,8,74,(14:22) J.Cutler pass incomplete short left to K.Adams.,10,0,2012 -20121022_DET@CHI,3,29,17,CHI,DET,3,8,74,(14:17) (Shotgun) J.Cutler pass short right to M.Forte to CHI 28 for 2 yards (A.Spievey; J.Green).,10,0,2012 -20121022_DET@CHI,3,28,43,CHI,DET,4,6,72,(13:43) (Punt formation) A.Podlesh punts 43 yards to DET 29 Center-P.Mannelly. S.Logan MUFFS catch RECOVERED by CHI-Z.Bowman at DET 27. Z.Bowman to DET 27 for no gain (S.Logan).,10,0,2012 -20121022_DET@CHI,3,28,32,CHI,DET,1,10,27,(13:32) M.Bush right guard to DET 15 for 12 yards (A.Spievey).,10,0,2012 -20121022_DET@CHI,3,27,55,CHI,DET,1,10,15,(12:55) M.Bush left guard to DET 12 for 3 yards (D.Levy).,10,0,2012 -20121022_DET@CHI,3,27,15,CHI,DET,2,7,12,(12:15) (Shotgun) J.Cutler pass short right to B.Marshall to DET 3 for 9 yards (C.Houston).,10,0,2012 -20121022_DET@CHI,3,26,34,CHI,DET,1,3,3,(11:34) J.Cutler pass incomplete short right to B.Marshall.,10,0,2012 -20121022_DET@CHI,3,26,31,CHI,DET,2,3,3,(11:31) J.Cutler pass incomplete short right to B.Marshall (J.Durant).,10,0,2012 -20121022_DET@CHI,3,26,28,CHI,DET,3,3,3,(11:28) J.Cutler pass incomplete short left to E.Bennett (A.Smith).,10,0,2012 -20121022_DET@CHI,3,26,24,CHI,DET,4,3,3,(11:24) (Field Goal formation) R.Gould 21 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,0,2012 -20121022_DET@CHI,3,26,24,CHI,DET,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,13,0,2012 -20121022_DET@CHI,3,26,20,DET,CHI,1,10,80,(11:20) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 34 for 14 yards (C.Conte).,0,13,2012 -20121022_DET@CHI,3,25,43,DET,CHI,1,10,66,(10:43) M.Stafford pass deep left to N.Burleson to 50 for 16 yards (T.Jennings). DET-N.Burleson was injured during the play. His return is Questionable.,0,13,2012 -20121022_DET@CHI,3,25,8,DET,CHI,1,10,50,(10:08) R.Reiff reported in as eligible. M.Leshoure left tackle to CHI 42 for 8 yards (L.Briggs).,0,13,2012 -20121022_DET@CHI,3,24,29,DET,CHI,2,2,42,(9:29) (Shotgun) M.Leshoure right guard to CHI 41 for 1 yard (C.Wootton; L.Briggs).,0,13,2012 -20121022_DET@CHI,3,23,48,DET,CHI,3,1,41,(8:48) R.Reiff reported in as eligible. M.Stafford pass short left to T.Young to CHI 37 for 4 yards (T.Jennings).,0,13,2012 -20121022_DET@CHI,3,23,14,DET,CHI,1,10,37,(8:14) J.Bell right guard to CHI 32 for 5 yards (I.Idonije).,0,13,2012 -20121022_DET@CHI,3,22,35,DET,CHI,2,5,32,(7:35) (Shotgun) M.Stafford pass short right to R.Broyles to CHI 16 for 16 yards (K.Hayden).,0,13,2012 -20121022_DET@CHI,3,21,58,DET,CHI,1,10,16,(6:58) (Shotgun) J.Bell right end to CHI 8 for 8 yards (M.Wright; S.Paea).,0,13,2012 -20121022_DET@CHI,3,21,19,DET,CHI,2,2,8,(6:19) M.Stafford pass incomplete short right to T.Young.,0,13,2012 -20121022_DET@CHI,3,21,16,DET,CHI,3,2,8,(6:16) (Shotgun) M.Stafford pass short right to C.Johnson to CHI 2 for 6 yards (C.Tillman).,0,13,2012 -20121022_DET@CHI,3,20,34,DET,CHI,1,2,2,(5:34) M.Stafford pass incomplete short right to C.Johnson. PENALTY on CHI-C.Tillman Defensive Pass Interference 1 yard enforced at CHI 2 - No Play.,0,13,2012 -20121022_DET@CHI,3,20,30,DET,CHI,1,1,1,(5:30) R.Reiff reported in as eligible. M.Stafford pass incomplete short right to C.Johnson (C.Tillman).,0,13,2012 -20121022_DET@CHI,3,20,26,DET,CHI,2,1,1,(5:26) J.Bell right guard to CHI 1 for no gain (H.Melton). FUMBLES (H.Melton) RECOVERED by CHI-B.Urlacher at CHI 1. B.Urlacher to CHI 5 for 4 yards (G.Cherilus). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,13,2012 -20121022_DET@CHI,3,20,17,CHI,DET,1,10,95,(5:17) PENALTY on CHI-R.Garza False Start 2 yards enforced at CHI 5 - No Play.,13,0,2012 -20121022_DET@CHI,3,20,17,CHI,DET,1,12,97,(5:17) M.Forte right guard to CHI 8 for 5 yards (D.Levy).,13,0,2012 -20121022_DET@CHI,3,19,43,CHI,DET,2,7,92,(4:43) M.Forte right tackle to CHI 19 for 11 yards (E.Coleman).,13,0,2012 -20121022_DET@CHI,3,18,57,CHI,DET,1,10,81,(3:57) M.Forte right tackle to CHI 18 for -1 yards (C.Avril; E.Coleman).,13,0,2012 -20121022_DET@CHI,3,18,18,CHI,DET,2,11,82,(3:18) (Shotgun) J.Cutler pass short right to E.Bennett to CHI 30 for 12 yards (E.Coleman).,13,0,2012 -20121022_DET@CHI,3,17,34,CHI,DET,1,10,70,(2:34) M.Forte right end pushed ob at CHI 31 for 1 yard (W.Young).,13,0,2012 -20121022_DET@CHI,3,17,1,CHI,DET,2,9,69,(2:01) J.Cutler pass incomplete short right to M.Forte.,13,0,2012 -20121022_DET@CHI,3,16,58,CHI,DET,3,9,69,(1:58) (Shotgun) J.Cutler pass incomplete short right to E.Bennett (A.Smith) [W.Young].,13,0,2012 -20121022_DET@CHI,3,16,53,CHI,DET,4,9,69,(1:53) (Punt formation) A.Podlesh punts 43 yards to DET 26 Center-P.Mannelly. S.Logan to DET 28 for 2 yards (N.Roach).,13,0,2012 -20121022_DET@CHI,3,16,40,DET,CHI,1,10,72,(1:40) (Shotgun) M.Leshoure left tackle to DET 32 for 4 yards (H.Melton).,0,13,2012 -20121022_DET@CHI,3,16,10,DET,CHI,2,6,68,(1:10) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 45 for 13 yards (B.Urlacher).,0,13,2012 -20121022_DET@CHI,3,15,35,DET,CHI,1,10,55,(:35) (Shotgun) M.Stafford pass short middle to M.Leshoure to CHI 48 for 7 yards (B.Urlacher; L.Briggs).,0,13,2012 -20121022_DET@CHI,3,15,10,DET,CHI,2,3,48,(:10) (No Huddle Shotgun) M.Stafford pass incomplete short right to C.Johnson.,0,13,2012 -20121022_DET@CHI,3,15,6,DET,CHI,3,3,48,(:06) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,0,13,2012 -20121022_DET@CHI,3,15,3,DET,CHI,4,3,48,(:03) (Punt formation) N.Harris punts 39 yards to CHI 9 Center-D.Muhlbach fair catch by E.Weems. PENALTY on CHI-J.Thomas Offensive Holding 4 yards enforced at CHI 9.,0,13,2012 -20121022_DET@CHI,4,15,0,CHI,DET,1,10,95,(15:00) J.Cutler pass short right to D.Hester to CHI 28 for 23 yards (J.Durant).,13,0,2012 -20121022_DET@CHI,4,14,23,CHI,DET,1,10,72,(14:23) M.Bush left tackle to CHI 35 for 7 yards (L.Delmas). PENALTY on CHI-C.Rachal Unnecessary Roughness 15 yards enforced at CHI 35.,13,0,2012 -20121022_DET@CHI,4,13,56,CHI,DET,2,18,80,(13:56) J.Cutler pass incomplete short middle to B.Marshall. PENALTY on DET-C.Houston Defensive Pass Interference 7 yards enforced at CHI 20 - No Play.,13,0,2012 -20121022_DET@CHI,4,13,53,CHI,DET,1,10,73,(13:53) M.Bush left tackle to CHI 38 for 11 yards (E.Coleman).,13,0,2012 -20121022_DET@CHI,4,13,13,CHI,DET,1,10,62,(13:13) M.Bush left guard to CHI 36 for -2 yards (L.Jackson; N.Fairley).,13,0,2012 -20121022_DET@CHI,4,12,34,CHI,DET,2,12,64,(12:34) J.Cutler pass short left to D.Hester to CHI 44 for 8 yards (J.Durant).,13,0,2012 -20121022_DET@CHI,4,11,54,CHI,DET,3,4,56,(11:54) (Shotgun) J.Cutler pass short left to B.Marshall to DET 40 for 16 yards (C.Houston; L.Delmas).,13,0,2012 -20121022_DET@CHI,4,11,10,CHI,DET,1,10,40,(11:10) (Shotgun) PENALTY on CHI-R.Garza False Start 5 yards enforced at DET 40 - No Play.,13,0,2012 -20121022_DET@CHI,4,10,46,CHI,DET,1,15,45,(10:46) (Shotgun) J.Cutler sacked at CHI 49 for -6 yards (K.Vanden Bosch).,13,0,2012 -20121022_DET@CHI,4,10,16,CHI,DET,2,21,51,(10:16) (Shotgun) M.Forte left end to DET 48 for 3 yards (C.Houston).,13,0,2012 -20121022_DET@CHI,4,9,36,CHI,DET,3,18,48,(9:36) (Shotgun) J.Cutler pass short middle to D.Hester to DET 41 for 7 yards (A.Smith).,13,0,2012 -20121022_DET@CHI,4,8,57,CHI,DET,4,11,41,(8:57) (Punt formation) A.Podlesh punts 28 yards to DET 13 Center-P.Mannelly downed by CHI-P.Mannelly.,13,0,2012 -20121022_DET@CHI,4,8,47,DET,CHI,1,10,87,(8:47) (Shotgun) M.Stafford pass incomplete short right to M.Leshoure.,0,13,2012 -20121022_DET@CHI,4,8,42,DET,CHI,2,10,87,(8:42) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson.,0,13,2012 -20121022_DET@CHI,4,8,36,DET,CHI,3,10,87,(8:36) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 12 for -1 yards (B.Urlacher).,0,13,2012 -20121022_DET@CHI,4,8,6,DET,CHI,4,11,88,(8:06) (Punt formation) N.Harris punts 35 yards to DET 47 Center-D.Muhlbach fair catch by D.Hester.,0,13,2012 -20121022_DET@CHI,4,7,59,CHI,DET,1,10,47,(7:59) M.Bush left tackle to DET 42 for 5 yards (S.Tulloch).,13,0,2012 -20121022_DET@CHI,4,7,13,CHI,DET,2,5,42,(7:13) J.Cutler pass incomplete deep right to B.Marshall.,13,0,2012 -20121022_DET@CHI,4,7,7,CHI,DET,3,5,42,(7:07) (Shotgun) J.Scott reported in as eligible. J.Cutler sacked at DET 44 for -2 yards (J.Green).,13,0,2012 -20121022_DET@CHI,4,6,34,CHI,DET,4,7,44,(6:34) (Punt formation) A.Podlesh punts 32 yards to DET 12 Center-P.Mannelly. S.Logan to DET 12 for no gain (E.Weems).,13,0,2012 -20121022_DET@CHI,4,6,24,DET,CHI,1,10,88,(6:24) (Shotgun) M.Stafford pass short right to T.Young to DET 17 for 5 yards (T.Jennings).,0,13,2012 -20121022_DET@CHI,4,5,58,DET,CHI,2,5,83,(5:58) (No Huddle Shotgun) M.Stafford pass short right to M.Leshoure pushed ob at DET 18 for 1 yard (T.Jennings).,0,13,2012 -20121022_DET@CHI,4,5,34,DET,CHI,3,4,82,(5:34) (No Huddle Shotgun) M.Stafford pass short left to C.Johnson to DET 30 for 12 yards (C.Tillman).,0,13,2012 -20121022_DET@CHI,4,5,1,DET,CHI,1,10,70,(5:01) (No Huddle Shotgun) M.Stafford pass deep right to T.Young pushed ob at DET 49 for 19 yards (T.Jennings).,0,13,2012 -20121022_DET@CHI,4,4,53,DET,CHI,1,10,51,(4:53) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to CHI 40 for 11 yards (A.Okoye).,0,13,2012 -20121022_DET@CHI,4,4,25,DET,CHI,1,10,40,(4:25) (No Huddle Shotgun) M.Stafford pass deep left intended for C.Johnson INTERCEPTED by C.Conte at CHI 20. C.Conte to CHI 20 for no gain (C.Johnson).,0,13,2012 -20121022_DET@CHI,4,4,21,DET,CHI,2,10,40,(4:21) (Shotgun) PENALTY on DET-T.Scheffler False Start 5 yards enforced at CHI 40 - No Play.,0,13,2012 -20121022_DET@CHI,4,4,21,DET,CHI,2,15,45,(4:21) (Shotgun) M.Stafford pass short left to C.Johnson to CHI 29 for 16 yards (C.Tillman).,0,13,2012 -20121022_DET@CHI,4,3,55,DET,CHI,1,10,29,(3:55) (No Huddle Shotgun) M.Stafford pass deep right to R.Broyles to CHI 6 for 23 yards (C.Conte).,0,13,2012 -20121022_DET@CHI,4,3,25,DET,CHI,1,6,6,(3:25) (No Huddle Shotgun) M.Stafford pass short right to J.Bell to CHI 3 for 3 yards (L.Briggs; T.Jennings).,0,13,2012 -20121022_DET@CHI,4,2,56,DET,CHI,2,3,3,(2:56) (No Huddle Shotgun) M.Stafford pass incomplete short middle to T.Scheffler (M.Wright).,0,13,2012 -20121022_DET@CHI,4,2,50,DET,CHI,3,3,3,(2:50) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,0,13,2012 -20121022_DET@CHI,4,2,46,DET,CHI,4,3,3,(2:46) (Shotgun) M.Stafford pass short right intended for R.Broyles INTERCEPTED by D.Moore [H.Melton] at CHI 3. D.Moore pushed ob at CHI 5 for 2 yards (R.Broyles).,0,13,2012 -20121022_DET@CHI,4,2,39,CHI,DET,1,10,95,(2:39) M.Forte left guard to CHI 5 for no gain (N.Fairley).,13,0,2012 -20121022_DET@CHI,4,2,35,CHI,DET,2,10,95,(2:35) M.Forte left guard to CHI 11 for 6 yards (L.Delmas).,13,0,2012 -20121022_DET@CHI,4,2,29,CHI,DET,3,4,89,(2:29) M.Forte left tackle to CHI 11 for no gain (K.Vanden Bosch).,13,0,2012 -20121022_DET@CHI,4,2,23,CHI,DET,4,4,89,(2:23) (Punt formation) A.Podlesh punts 47 yards to DET 42 Center-P.Mannelly. S.Logan to DET 42 for no gain (Z.Bowman).,13,0,2012 -20121022_DET@CHI,4,2,13,DET,CHI,1,10,58,(2:13) (Shotgun) M.Stafford pass short left to M.Leshoure pushed ob at DET 44 for 2 yards (T.Jennings).,0,13,2012 -20121022_DET@CHI,4,2,5,DET,CHI,2,8,56,(2:05) (Shotgun) M.Stafford pass short right to B.Pettigrew to CHI 47 for 9 yards (B.Urlacher).,0,13,2012 -20121022_DET@CHI,4,2,0,DET,CHI,1,10,47,(2:00) (Shotgun) M.Stafford left guard to CHI 41 for 6 yards (Team).,0,13,2012 -20121022_DET@CHI,4,1,30,DET,CHI,2,4,41,(1:30) (No Huddle Shotgun) M.Stafford sacked at DET 44 for -15 yards (I.Idonije).,0,13,2012 -20121022_DET@CHI,4,0,56,DET,CHI,3,19,56,(:56) (No Huddle Shotgun) M.Stafford pass deep right to T.Young pushed ob at CHI 35 for 21 yards (C.Conte).,0,13,2012 -20121022_DET@CHI,4,0,48,DET,CHI,1,10,35,(:48) (Shotgun) M.Stafford pass deep right to T.Young pushed ob at CHI 12 for 23 yards (C.Conte).,0,13,2012 -20121022_DET@CHI,4,0,41,DET,CHI,1,10,12,(:41) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (B.Urlacher).,0,13,2012 -20121022_DET@CHI,4,0,36,DET,CHI,2,10,12,(:36) (Shotgun) M.Stafford pass short right to R.Broyles for 12 yards TOUCHDOWN.,0,13,2012 -20121022_DET@CHI,4,0,36,DET,CHI,,,12,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,13,2012 -20121022_DET@CHI,4,0,36,DET,CHI,,,12,(Onside Kick formation) J.Hanson kicks 19 yards from DET 35 to CHI 46. E.Bennett (didn't try to advance) to CHI 46 for no gain (A.Palmer).,7,13,2012 -20121022_DET@CHI,4,0,29,CHI,DET,1,10,54,(:29) J.Cutler kneels to CHI 45 for -1 yards.,13,7,2012 -20121022_DET@CHI,4,0,29,CHI,DET,,,54,                      ,13,7,2012 -20121025_TB@MIN,1,0,0,TB,MIN,,,54,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20121025_TB@MIN,1,60,0,MIN,TB,1,10,80,(15:00) C.Ponder pass incomplete short right to P.Harvin.,0,0,2012 -20121025_TB@MIN,1,59,55,MIN,TB,2,10,80,(14:55) A.Peterson up the middle to MIN 28 for 8 yards (E.Wright).,0,0,2012 -20121025_TB@MIN,1,59,13,MIN,TB,3,2,72,(14:13) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,0,0,2012 -20121025_TB@MIN,1,59,11,MIN,TB,4,2,72,(14:11) C.Kluwe punts 35 yards to TB 37 Center-C.Loeffler downed by MIN-T.McKenzie. PENALTY on TB-L.Johnson Offensive Holding 17 yards enforced at TB 37.,0,0,2012 -20121025_TB@MIN,1,58,59,TB,MIN,1,10,80,(13:59) D.Martin up the middle to TB 22 for 2 yards (B.Robison).,0,0,2012 -20121025_TB@MIN,1,58,20,TB,MIN,2,8,78,(13:20) J.Freeman pass short right to M.Williams to TB 24 for 2 yards (J.Allen).,0,0,2012 -20121025_TB@MIN,1,57,38,TB,MIN,3,6,76,(12:38) (Shotgun) J.Freeman pass incomplete deep right to M.Williams.,0,0,2012 -20121025_TB@MIN,1,57,34,TB,MIN,4,6,76,(12:34) M.Koenen punts 43 yards to MIN 33 Center-A.Economos out of bounds.,0,0,2012 -20121025_TB@MIN,1,57,26,MIN,TB,1,10,67,(12:26) A.Peterson left tackle to MIN 38 for 5 yards (M.Foster; L.David).,0,0,2012 -20121025_TB@MIN,1,56,53,MIN,TB,2,5,62,(11:53) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson.,0,0,2012 -20121025_TB@MIN,1,56,48,MIN,TB,3,5,62,(11:48) (Shotgun) C.Ponder pass incomplete deep left.,0,0,2012 -20121025_TB@MIN,1,56,42,MIN,TB,4,5,62,(11:42) C.Kluwe punts 20 yards to TB 42 Center-C.Loeffler out of bounds.,0,0,2012 -20121025_TB@MIN,1,56,36,TB,MIN,1,10,58,(11:36) (Shotgun) J.Freeman pass incomplete short middle to D.Martin.,0,0,2012 -20121025_TB@MIN,1,56,31,TB,MIN,2,10,58,(11:31) D.Martin up the middle to MIN 17 for 41 yards (C.Cook).,0,0,2012 -20121025_TB@MIN,1,55,41,TB,MIN,1,10,17,(10:41) (Shotgun) J.Freeman pass short middle to T.Underwood to MIN 10 for 7 yards (J.Sanford).,0,0,2012 -20121025_TB@MIN,1,54,58,TB,MIN,2,3,10,(9:58) J.Freeman pass incomplete short right to V.Jackson (B.Robison).,0,0,2012 -20121025_TB@MIN,1,54,55,TB,MIN,3,3,10,(9:55) (Shotgun) J.Freeman pass incomplete short left to M.Williams.,0,0,2012 -20121025_TB@MIN,1,54,51,TB,MIN,4,3,10,(9:51) C.Barth 28 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121025_TB@MIN,1,54,51,TB,MIN,,,10,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,3,0,2012 -20121025_TB@MIN,1,54,48,MIN,TB,1,10,80,(9:48) A.Peterson up the middle to MIN 24 for 4 yards (M.Foster).,0,3,2012 -20121025_TB@MIN,1,54,10,MIN,TB,2,6,76,(9:10) P.Harvin up the middle to MIN 23 for -1 yards (R.Miller).,0,3,2012 -20121025_TB@MIN,1,53,41,MIN,TB,3,7,77,(8:41) (Shotgun) PENALTY on MIN-P.Loadholt False Start 5 yards enforced at MIN 23 - No Play.,0,3,2012 -20121025_TB@MIN,1,53,24,MIN,TB,3,12,82,(8:24) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (L.Johnson).,0,3,2012 -20121025_TB@MIN,1,53,18,MIN,TB,4,12,82,(8:18) (Punt formation) PENALTY on MIN-M.Mitchell False Start 5 yards enforced at MIN 18 - No Play.,0,3,2012 -20121025_TB@MIN,1,53,18,MIN,TB,4,17,87,(8:18) C.Kluwe punts 39 yards to TB 48 Center-C.Loeffler. R.Parrish MUFFS catch touched at TB 48 and recovers at MIN 48. R.Parrish to MIN 48 for no gain (Team).,0,3,2012 -20121025_TB@MIN,1,53,7,TB,MIN,1,10,48,(8:07) J.Freeman pass incomplete short middle to D.Martin.,3,0,2012 -20121025_TB@MIN,1,53,1,TB,MIN,2,10,48,(8:01) (Shotgun) D.Martin up the middle to MIN 48 for no gain (C.Greenway F.Evans).,3,0,2012 -20121025_TB@MIN,1,52,20,TB,MIN,3,10,48,(7:20) (Shotgun) J.Freeman pass deep middle to V.Jackson to MIN 22 for 26 yards (J.Sanford; C.Greenway).,3,0,2012 -20121025_TB@MIN,1,51,35,TB,MIN,1,10,22,(6:35) L.Blount right end to MIN 20 for 2 yards (B.Robison).,3,0,2012 -20121025_TB@MIN,1,50,53,TB,MIN,2,8,20,(5:53) (Shotgun) J.Freeman pass short left to D.Martin to MIN 11 for 9 yards (C.Cook; A.Winfield) [K.Williams].,3,0,2012 -20121025_TB@MIN,1,50,8,TB,MIN,1,10,11,(5:08) D.Martin up the middle to MIN 11 for no gain (J.Sanford).,3,0,2012 -20121025_TB@MIN,1,49,23,TB,MIN,2,10,11,(4:23) (Shotgun) J.Freeman pass short right to D.Clark to MIN 1 for 10 yards (J.Sanford) [J.Allen].,3,0,2012 -20121025_TB@MIN,1,48,38,TB,MIN,1,1,1,(3:38) J.Freeman pass short left to E.Lorig for 1 yard TOUCHDOWN.,3,0,2012 -20121025_TB@MIN,1,48,38,TB,MIN,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,3,0,2012 -20121025_TB@MIN,1,48,38,TB,MIN,,,1,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,10,0,2012 -20121025_TB@MIN,1,48,34,MIN,TB,1,10,80,(3:34) A.Peterson left guard to MIN 31 for 11 yards (R.Barber).,0,10,2012 -20121025_TB@MIN,1,48,1,MIN,TB,1,10,69,(3:01) A.Peterson up the middle to MIN 42 for 11 yards (M.Barron; R.Barber).,0,10,2012 -20121025_TB@MIN,1,47,24,MIN,TB,1,10,58,(2:24) C.Ponder scrambles up the middle to MIN 43 for 1 yard (E.Biggers).,0,10,2012 -20121025_TB@MIN,1,46,52,MIN,TB,2,9,57,(1:52) C.Ponder pass short left to J.Simpson to MIN 47 for 4 yards (R.Barber). FUMBLES (R.Barber) RECOVERED by TB-M.Foster at TB 42. M.Foster to TB 46 for 4 yards (P.Loadholt).,0,10,2012 -20121025_TB@MIN,1,46,40,TB,MIN,1,10,54,(1:40) D.Martin left end to MIN 42 for 12 yards (C.Greenway).,10,0,2012 -20121025_TB@MIN,1,45,56,TB,MIN,1,10,42,(:56) D.Martin right tackle to MIN 34 for 8 yards (J.Sanford; A.Winfield).,10,0,2012 -20121025_TB@MIN,1,45,12,TB,MIN,2,2,34,(:12) (Shotgun) J.Freeman pass incomplete short right to M.Williams (B.Robison).,10,0,2012 -20121025_TB@MIN,1,45,8,TB,MIN,3,2,34,(:08) (Shotgun) D.Martin up the middle to MIN 32 for 2 yards (J.Sanford; C.Greenway).,10,0,2012 -20121025_TB@MIN,2,45,0,TB,MIN,1,10,32,(15:00) D.Martin left guard to MIN 28 for 4 yards (E.Henderson; H.Smith).,10,0,2012 -20121025_TB@MIN,2,44,19,TB,MIN,2,6,28,(14:19) (Shotgun) J.Freeman pass short right to T.Underwood to MIN 20 for 8 yards (A.Winfield).,10,0,2012 -20121025_TB@MIN,2,43,37,TB,MIN,1,10,20,(13:37) PENALTY on TB-D.Martin False Start 5 yards enforced at MIN 20 - No Play.,10,0,2012 -20121025_TB@MIN,2,43,18,TB,MIN,1,15,25,(13:18) J.Freeman pass incomplete short right to A.Benn (A.Winfield).,10,0,2012 -20121025_TB@MIN,2,43,10,TB,MIN,2,15,25,(13:10) (Shotgun) J.Freeman pass incomplete short left to M.Williams.,10,0,2012 -20121025_TB@MIN,2,43,6,TB,MIN,3,15,25,(13:06) (Shotgun) J.Freeman scrambles up the middle to MIN 22 for 3 yards.,10,0,2012 -20121025_TB@MIN,2,42,24,TB,MIN,4,12,22,(12:24) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,0,2012 -20121025_TB@MIN,2,42,24,TB,MIN,,,22,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,0,2012 -20121025_TB@MIN,2,42,20,MIN,TB,1,10,80,(12:20) (Shotgun) C.Ponder pass short left to P.Harvin to TB 48 for 32 yards (R.Barber).,0,13,2012 -20121025_TB@MIN,2,41,42,MIN,TB,1,10,48,(11:42) A.Peterson left guard to TB 37 for 11 yards (R.Barber).,0,13,2012 -20121025_TB@MIN,2,41,5,MIN,TB,1,10,37,(11:05) C.Ponder pass incomplete short right to J.Simpson. PENALTY on TB-R.Miller Roughing the Passer 15 yards enforced at TB 37 - No Play.,0,13,2012 -20121025_TB@MIN,2,41,2,MIN,TB,1,10,22,(11:02) C.Ponder pass short right to R.Ellison to TB 17 for 5 yards (E.Wright).,0,13,2012 -20121025_TB@MIN,2,40,25,MIN,TB,2,5,17,(10:25) A.Peterson left tackle to TB 18 for -1 yards (M.Bennett; D.Te'o-Nesheim).,0,13,2012 -20121025_TB@MIN,2,39,45,MIN,TB,3,6,18,(9:45) (Shotgun) C.Ponder pass deep right to P.Harvin for 18 yards TOUCHDOWN.,0,13,2012 -20121025_TB@MIN,2,39,45,MIN,TB,,,18,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,13,2012 -20121025_TB@MIN,2,39,45,MIN,TB,,,18,B.Walsh kicks 67 yards from MIN 35 to TB -2. A.Benn Touchback.,7,13,2012 -20121025_TB@MIN,2,39,39,TB,MIN,1,10,80,(9:39) J.Freeman pass incomplete short middle to E.Lorig (B.Robison).,13,7,2012 -20121025_TB@MIN,2,39,36,TB,MIN,2,10,80,(9:36) D.Martin left tackle to TB 22 for 2 yards (J.Brinkley; J.Allen).,13,7,2012 -20121025_TB@MIN,2,38,54,TB,MIN,3,8,78,(8:54) (Shotgun) J.Freeman pass incomplete short left to D.Ware.,13,7,2012 -20121025_TB@MIN,2,38,50,TB,MIN,4,8,78,(8:50) M.Koenen punts 53 yards to MIN 25 Center-A.Economos. M.Sherels to MIN 25 for no gain (A.Economos). PENALTY on MIN-C.Cook Unnecessary Roughness 12 yards enforced at MIN 25.,13,7,2012 -20121025_TB@MIN,2,38,37,MIN,TB,1,10,87,(8:37) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 17 for 4 yards (M.Foster; E.Biggers).,7,13,2012 -20121025_TB@MIN,2,37,57,MIN,TB,2,6,83,(7:57) C.Ponder pass incomplete deep left to J.Simpson.,7,13,2012 -20121025_TB@MIN,2,37,51,MIN,TB,3,6,83,(7:51) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 30 for 13 yards (E.Wright).,7,13,2012 -20121025_TB@MIN,2,37,18,MIN,TB,1,10,70,(7:18) A.Peterson up the middle to MIN 36 for 6 yards (R.Barber). FUMBLES (R.Barber) RECOVERED by TB-Q.Black at MIN 37. Q.Black to MIN 37 for no gain (J.Sullivan).,7,13,2012 -20121025_TB@MIN,2,37,8,TB,MIN,1,10,37,(7:08) J.Freeman pass incomplete short right to D.Martin.,13,7,2012 -20121025_TB@MIN,2,37,4,TB,MIN,2,10,37,(7:04) D.Martin left tackle pushed ob at MIN 21 for 16 yards (J.Sanford).,13,7,2012 -20121025_TB@MIN,2,36,35,TB,MIN,1,10,21,(6:35) J.Freeman pass short middle to D.Clark to MIN 8 for 13 yards (H.Smith).,13,7,2012 -20121025_TB@MIN,2,36,2,TB,MIN,1,8,8,(6:02) D.Martin left tackle to MIN 2 for 6 yards (H.Smith; C.Greenway).,13,7,2012 -20121025_TB@MIN,2,35,22,TB,MIN,2,2,2,(5:22) D.Martin right guard to MIN 3 for -1 yards (F.Evans; C.Greenway).,13,7,2012 -20121025_TB@MIN,2,34,35,TB,MIN,3,3,3,(4:35) (Shotgun) J.Freeman pass short right to M.Williams for 3 yards TOUCHDOWN.,13,7,2012 -20121025_TB@MIN,2,34,35,TB,MIN,,,3,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,13,7,2012 -20121025_TB@MIN,2,34,35,TB,MIN,,,3,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,20,7,2012 -20121025_TB@MIN,2,34,30,MIN,TB,1,10,80,(4:30) A.Peterson right guard to MIN 20 for no gain (G.McCoy).,7,20,2012 -20121025_TB@MIN,2,33,54,MIN,TB,2,10,80,(3:54) (Shotgun) C.Ponder pass incomplete deep right to J.Simpson.,7,20,2012 -20121025_TB@MIN,2,33,49,MIN,TB,3,10,80,(3:49) (Shotgun) C.Ponder pass short middle to K.Rudolph to MIN 32 for 12 yards (M.Bennett).,7,20,2012 -20121025_TB@MIN,2,33,14,MIN,TB,1,10,68,(3:14) A.Peterson up the middle to MIN 37 for 5 yards (Q.Black).,7,20,2012 -20121025_TB@MIN,2,32,42,MIN,TB,2,5,63,(2:42) C.Ponder sacked at MIN 30 for -7 yards (D.Te'o-Nesheim).,7,20,2012 -20121025_TB@MIN,2,32,15,MIN,TB,3,12,70,(2:15) (Shotgun) C.Ponder pass deep left to J.Simpson pushed ob at TB 37 for 33 yards (E.Biggers).,7,20,2012 -20121025_TB@MIN,2,32,0,MIN,TB,1,10,37,(2:00) (Shotgun) C.Ponder pass incomplete short right to P.Harvin.,7,20,2012 -20121025_TB@MIN,2,31,57,MIN,TB,2,10,37,(1:57) (Shotgun) C.Ponder pass short left to A.Peterson to TB 33 for 4 yards (M.Foster).,7,20,2012 -20121025_TB@MIN,2,31,51,MIN,TB,3,6,33,(1:51) (Shotgun) C.Ponder pass incomplete deep right to P.Harvin (L.Johnson).,7,20,2012 -20121025_TB@MIN,2,31,45,MIN,TB,4,6,33,(1:45) B.Walsh 51 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,20,2012 -20121025_TB@MIN,2,31,45,MIN,TB,,,33,B.Walsh kicks 69 yards from MIN 35 to TB -4. A.Benn Touchback.,10,20,2012 -20121025_TB@MIN,2,31,40,TB,MIN,1,10,80,(1:40) (Shotgun) D.Martin left guard to TB 31 for 11 yards (H.Smith; C.Greenway).,20,10,2012 -20121025_TB@MIN,2,31,14,TB,MIN,1,10,69,(1:14) (Shotgun) J.Freeman pass short middle to D.Martin to TB 37 for 6 yards (C.Greenway).,20,10,2012 -20121025_TB@MIN,2,30,52,TB,MIN,2,4,63,(:52) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,20,10,2012 -20121025_TB@MIN,2,30,47,TB,MIN,3,4,63,(:47) (Shotgun) D.Martin left end to TB 40 for 3 yards (H.Smith).,20,10,2012 -20121025_TB@MIN,2,30,38,TB,MIN,4,1,60,(:38) M.Koenen punts 51 yards to MIN 9 Center-A.Economos. M.Sherels to MIN 25 for 16 yards (C.Grimm).,20,10,2012 -20121025_TB@MIN,2,30,25,MIN,TB,1,10,75,(:25) C.Ponder pass incomplete short right to J.Simpson (E.Wright).,10,20,2012 -20121025_TB@MIN,2,30,18,MIN,TB,2,10,75,(:18) T.Gerhart up the middle to MIN 31 for 6 yards (R.Barber).,10,20,2012 -20121025_TB@MIN,3,30,0,MIN,TB,,,75,B.Walsh kicks 71 yards from MIN 35 to TB -6. A.Benn Touchback.,10,20,2012 -20121025_TB@MIN,3,30,0,TB,MIN,1,10,80,(15:00) J.Freeman pass incomplete short right to M.Williams.,20,10,2012 -20121025_TB@MIN,3,29,57,TB,MIN,2,10,80,(14:57) J.Freeman pass short right to D.Clark pushed ob at TB 37 for 17 yards (C.Greenway).,20,10,2012 -20121025_TB@MIN,3,29,33,TB,MIN,1,10,63,(14:33) D.Martin left end to TB 36 for -1 yards (J.Sanford; C.Cook). MIN-C.Cook was injured during the play. His return is Doubtful.,20,10,2012 -20121025_TB@MIN,3,28,51,TB,MIN,2,11,64,(13:51) (Shotgun) J.Freeman pass short left to D.Martin for 64 yards TOUCHDOWN.,20,10,2012 -20121025_TB@MIN,3,28,51,TB,MIN,,,64,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,20,10,2012 -20121025_TB@MIN,3,28,51,TB,MIN,,,64,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,27,10,2012 -20121025_TB@MIN,3,28,39,MIN,TB,1,10,80,(13:39) A.Peterson up the middle to MIN 20 for no gain (E.Biggers; D.Te'o-Nesheim).,10,27,2012 -20121025_TB@MIN,3,28,7,MIN,TB,2,10,80,(13:07) A.Peterson right end to MIN 18 for -2 yards (R.Barber).,10,27,2012 -20121025_TB@MIN,3,27,26,MIN,TB,3,12,82,(12:26) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,10,27,2012 -20121025_TB@MIN,3,27,20,MIN,TB,4,12,82,(12:20) C.Kluwe punts 40 yards to TB 42 Center-C.Loeffler fair catch by R.Parrish.,10,27,2012 -20121025_TB@MIN,3,27,12,TB,MIN,1,10,58,(12:12) D.Martin left guard to TB 48 for 6 yards (J.Brinkley).,27,10,2012 -20121025_TB@MIN,3,26,29,TB,MIN,2,4,52,(11:29) D.Martin left tackle to MIN 43 for 9 yards (H.Smith).,27,10,2012 -20121025_TB@MIN,3,25,48,TB,MIN,1,10,43,(10:48) D.Martin up the middle to MIN 39 for 4 yards (E.Henderson).,27,10,2012 -20121025_TB@MIN,3,25,9,TB,MIN,2,6,39,(10:09) J.Freeman pass short right to M.Williams to MIN 27 for 12 yards (J.Brinkley).,27,10,2012 -20121025_TB@MIN,3,24,25,TB,MIN,1,10,27,(9:25) L.Blount left guard to MIN 26 for 1 yard (H.Smith; J.Brinkley).,27,10,2012 -20121025_TB@MIN,3,23,45,TB,MIN,2,9,26,(8:45) J.Freeman pass short left to M.Williams to MIN 20 for 6 yards (J.Robinson).,27,10,2012 -20121025_TB@MIN,3,23,0,TB,MIN,3,3,20,(8:00) (Shotgun) J.Freeman pass incomplete short left to V.Jackson (A.Jefferson).,27,10,2012 -20121025_TB@MIN,3,22,54,TB,MIN,4,3,20,(7:54) C.Barth 38 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,27,10,2012 -20121025_TB@MIN,3,22,54,TB,MIN,,,20,M.Koenen kicks 72 yards from TB 35 to MIN -7. P.Harvin to MIN 36 for 43 yards (M.Koenen).,30,10,2012 -20121025_TB@MIN,3,22,43,MIN,TB,1,10,64,(7:43) C.Ponder pass incomplete deep left to J.Simpson.,10,30,2012 -20121025_TB@MIN,3,22,38,MIN,TB,2,10,64,(7:38) A.Peterson right tackle for 64 yards TOUCHDOWN.,10,30,2012 -20121025_TB@MIN,3,22,38,MIN,TB,,,64,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,30,2012 -20121025_TB@MIN,3,22,38,MIN,TB,,,64,B.Walsh kicks 70 yards from MIN 35 to TB -5. A.Benn Touchback.,17,30,2012 -20121025_TB@MIN,3,22,28,TB,MIN,1,10,80,(7:28) J.Freeman pass incomplete short middle to V.Jackson.,30,17,2012 -20121025_TB@MIN,3,22,24,TB,MIN,2,10,80,(7:24) D.Martin left tackle to TB 20 for no gain (J.Robinson; J.Allen).,30,17,2012 -20121025_TB@MIN,3,21,43,TB,MIN,3,10,80,(6:43) (Shotgun) J.Freeman pass short left to D.Ware to TB 27 for 7 yards (H.Smith; C.Greenway).,30,17,2012 -20121025_TB@MIN,3,21,2,TB,MIN,4,3,73,(6:02) M.Koenen punts 57 yards to MIN 16 Center-A.Economos. M.Sherels ran ob at MIN 31 for 15 yards.,30,17,2012 -20121025_TB@MIN,3,20,50,MIN,TB,1,10,69,(5:50) C.Ponder sacked at MIN 21 for -10 yards (M.Foster).,17,30,2012 -20121025_TB@MIN,3,20,20,MIN,TB,2,20,79,(5:20) A.Peterson up the middle to MIN 24 for 3 yards (M.Barron).,17,30,2012 -20121025_TB@MIN,3,19,43,MIN,TB,3,17,76,(4:43) (Shotgun) C.Ponder pass short left to M.Jenkins to MIN 33 for 9 yards (E.Wright).,17,30,2012 -20121025_TB@MIN,3,19,6,MIN,TB,4,8,67,(4:06) C.Kluwe punts 38 yards to TB 29 Center-C.Loeffler. R.Parrish to TB 30 for 1 yard (Team).,17,30,2012 -20121025_TB@MIN,3,18,59,TB,MIN,1,10,70,(3:59) D.Martin left end to TB 30 for no gain (C.Ballard).,30,17,2012 -20121025_TB@MIN,3,18,23,TB,MIN,2,10,70,(3:23) J.Freeman pass incomplete deep left to V.Jackson. Penalty on MIN-J.Allen Face Mask (15 Yards) offsetting. Penalty on TB-D.Penn Unnecessary Roughness offsetting.,30,17,2012 -20121025_TB@MIN,3,18,15,TB,MIN,3,10,70,(3:15) (Shotgun) J.Freeman sacked at TB 25 for -5 yards (J.Allen).,30,17,2012 -20121025_TB@MIN,3,17,52,TB,MIN,4,15,75,(2:52) M.Koenen punts 47 yards to MIN 28 Center-A.Economos out of bounds.,30,17,2012 -20121025_TB@MIN,3,17,44,MIN,TB,1,10,72,(2:44) A.Peterson right end to MIN 26 for -2 yards (M.Bennett).,17,30,2012 -20121025_TB@MIN,3,17,12,MIN,TB,2,12,74,(2:12) (Shotgun) C.Ponder scrambles ran ob at MIN 32 for 6 yards.,17,30,2012 -20121025_TB@MIN,3,16,45,MIN,TB,3,6,80,(1:45) (Shotgun) C.Ponder Aborted. J.Sullivan FUMBLES at MIN 27 recovered by MIN-C.Ponder at MIN 20. C.Ponder to MIN 20 for no gain (Team).,17,30,2012 -20121025_TB@MIN,3,16,40,MIN,TB,4,18,80,(1:40) C.Kluwe punts 55 yards to TB 25 Center-C.Loeffler. R.Parrish to TB 25 for no gain. PENALTY on TB-L.Johnson Face Mask (15 Yards) 12 yards enforced at TB 25.,17,30,2012 -20121025_TB@MIN,3,16,12,TB,MIN,1,10,87,(1:12) D.Martin left tackle to TB 14 for 1 yard (A.Winfield). PENALTY on MIN Illegal Use of Hands 5 yards enforced at TB 14.,30,17,2012 -20121025_TB@MIN,3,15,43,TB,MIN,1,10,81,(:43) D.Martin left guard to TB 17 for -2 yards (Team).,30,17,2012 -20121025_TB@MIN,4,15,0,TB,MIN,2,12,83,(15:00) (Shotgun) D.Martin up the middle to TB 23 for 6 yards (C.Greenway).,30,17,2012 -20121025_TB@MIN,4,14,19,TB,MIN,3,6,77,(14:19) (Shotgun) J.Freeman pass short left to V.Jackson pushed ob at TB 37 for 14 yards (M.Sherels).,30,17,2012 -20121025_TB@MIN,4,13,45,TB,MIN,1,10,63,(13:45) L.Blount up the middle to TB 37 for no gain (E.Henderson; C.Greenway).,30,17,2012 -20121025_TB@MIN,4,13,3,TB,MIN,2,10,63,(13:03) L.Blount right guard to TB 37 for no gain (L.Guion).,30,17,2012 -20121025_TB@MIN,4,12,20,TB,MIN,3,10,63,(12:20) (Shotgun) J.Freeman pass short left to T.Underwood to TB 49 for 12 yards (A.Jefferson).,30,17,2012 -20121025_TB@MIN,4,11,53,TB,MIN,1,10,51,(11:53) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,30,17,2012 -20121025_TB@MIN,4,11,48,TB,MIN,2,10,51,(11:48) D.Martin up the middle to TB 49 for no gain (H.Smith). MIN-E.Henderson was injured during the play. His return is Probable. Penalty on TB-J.Zuttah Offensive Holding declined.,30,17,2012 -20121025_TB@MIN,4,11,5,TB,MIN,3,10,51,(11:05) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at MIN 17 for 34 yards (J.Sanford).,30,17,2012 -20121025_TB@MIN,4,10,31,TB,MIN,1,10,17,(10:31) D.Martin left guard to MIN 18 for -1 yards (H.Smith; C.Ballard).,30,17,2012 -20121025_TB@MIN,4,9,52,TB,MIN,2,11,18,(9:52) (Shotgun) D.Martin left guard to MIN 16 for 2 yards (C.Ballard; C.Greenway).,30,17,2012 -20121025_TB@MIN,4,9,9,TB,MIN,3,9,16,(9:09) J.Freeman pass short middle to M.Williams to MIN 5 for 11 yards (E.Henderson).,30,17,2012 -20121025_TB@MIN,4,8,32,TB,MIN,1,5,5,(8:32) D.Martin left tackle to MIN 3 for 2 yards (H.Smith).,30,17,2012 -20121025_TB@MIN,4,7,49,TB,MIN,2,3,3,(7:49) D.Martin left tackle to MIN 1 for 2 yards (J.Brinkley; A.Winfield).,30,17,2012 -20121025_TB@MIN,4,7,9,TB,MIN,3,1,1,(7:09) D.Martin left tackle for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,30,17,2012 -20121025_TB@MIN,4,7,9,TB,MIN,,,1,TWO-POINT CONVERSION ATTEMPT. J.Freeman pass to M.Williams is incomplete. ATTEMPT FAILS.,30,17,2012 -20121025_TB@MIN,4,7,9,TB,MIN,,,1,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,36,17,2012 -20121025_TB@MIN,4,7,3,MIN,TB,1,10,80,(7:03) (Shotgun) C.Ponder pass short left to P.Harvin to MIN 29 for 9 yards (A.Black).,17,36,2012 -20121025_TB@MIN,4,6,40,MIN,TB,2,1,71,(6:40) (Shotgun) C.Ponder pass short right to P.Harvin to MIN 40 for 11 yards (L.Johnson).,17,36,2012 -20121025_TB@MIN,4,6,13,MIN,TB,1,10,60,(6:13) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,17,36,2012 -20121025_TB@MIN,4,6,10,MIN,TB,2,10,60,(6:10) (Shotgun) C.Ponder pass deep left to M.Jenkins pushed ob at TB 32 for 28 yards (E.Biggers).,17,36,2012 -20121025_TB@MIN,4,5,43,MIN,TB,1,10,32,(5:43) (Shotgun) C.Ponder pass short left to T.Gerhart to TB 22 for 10 yards (R.Barber).,17,36,2012 -20121025_TB@MIN,4,5,13,MIN,TB,1,10,22,(5:13) (Shotgun) C.Ponder pass short right to P.Harvin to TB 19 for 3 yards (L.David).,17,36,2012 -20121025_TB@MIN,4,4,46,MIN,TB,2,7,19,(4:46) (Shotgun) C.Ponder scrambles left end ran ob at TB 14 for 5 yards.,17,36,2012 -20121025_TB@MIN,4,4,38,MIN,TB,3,2,14,(4:38) (Shotgun) C.Ponder pass incomplete short left to M.Jenkins.,17,36,2012 -20121025_TB@MIN,4,4,34,MIN,TB,4,2,14,(4:34) (Shotgun) PENALTY on MIN-M.Kalil False Start 5 yards enforced at TB 14 - No Play.,17,36,2012 -20121025_TB@MIN,4,4,34,MIN,TB,4,7,19,(4:34) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins [D.Te'o-Nesheim].,17,36,2012 -20121025_TB@MIN,4,4,29,TB,MIN,1,10,81,(4:29) A.Benn left end to TB 28 for 9 yards (H.Smith).,36,17,2012 -20121025_TB@MIN,4,4,22,TB,MIN,2,1,72,(4:22) L.Blount right end to TB 36 for 8 yards (H.Smith).,36,17,2012 -20121025_TB@MIN,4,3,37,TB,MIN,1,10,64,(3:37) L.Blount right guard to TB 38 for 2 yards (J.Brinkley).,36,17,2012 -20121025_TB@MIN,4,2,54,TB,MIN,2,8,62,(2:54) L.Blount up the middle to TB 38 for no gain (Team).,36,17,2012 -20121025_TB@MIN,4,2,49,TB,MIN,3,8,62,(2:49) L.Blount up the middle to TB 41 for 3 yards (J.Sanford).,36,17,2012 -20121025_TB@MIN,4,2,44,TB,MIN,4,5,59,(2:44) M.Koenen punts 30 yards to MIN 29 Center-A.Economos downed by TB-J.Cutrera.,36,17,2012 -20121025_TB@MIN,4,2,35,MIN,TB,1,10,71,(2:35) (Shotgun) C.Ponder pass short right to M.Jenkins to TB 49 for 22 yards (A.Black).,17,36,2012 -20121025_TB@MIN,4,2,15,MIN,TB,1,10,49,(2:15) C.Ponder pass short right to M.Jenkins to TB 30 for 19 yards (R.Barber).,17,36,2012 -20121025_TB@MIN,4,2,0,MIN,TB,1,10,30,(2:00) (Shotgun) C.Ponder sacked at TB 35 for -5 yards (M.Bennett).,17,36,2012 -20121025_TB@MIN,4,1,41,MIN,TB,2,15,35,(1:41) (Shotgun) C.Ponder pass short right to K.Rudolph to TB 30 for 5 yards (L.Johnson).,17,36,2012 -20121025_TB@MIN,4,1,21,MIN,TB,3,10,30,(1:21) (Shotgun) C.Ponder pass short middle to T.Gerhart to TB 20 for 10 yards (Q.Black).,17,36,2012 -20121025_TB@MIN,4,1,4,MIN,TB,1,10,20,(1:04) (Shotgun) C.Ponder pass short right intended for M.Jenkins INTERCEPTED by L.Johnson at TB 8. L.Johnson to TB 8 for no gain (K.Rudolph).,17,36,2012 -20121025_TB@MIN,4,0,57,TB,MIN,1,10,92,(:57) J.Freeman kneels to TB 6 for -2 yards.,36,17,2012 -20121025_TB@MIN,4,0,20,TB,MIN,2,12,94,(:20) J.Freeman kneels to TB 4 for -2 yards.,36,17,2012 -20121025_TB@MIN,4,0,20,TB,MIN,,,94,                      ,36,17,2012 -20121028_CAR@CHI,1,0,0,CHI,CAR,,,94,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121028_CAR@CHI,1,60,0,CAR,CHI,1,10,80,(15:00) J.Stewart left guard to CAR 22 for 2 yards (L.Briggs).,0,0,2012 -20121028_CAR@CHI,1,59,26,CAR,CHI,2,8,78,(14:26) C.Newton pass incomplete short left to S.Smith (B.Urlacher).,0,0,2012 -20121028_CAR@CHI,1,59,22,CAR,CHI,3,8,78,(14:22) (Shotgun) C.Newton pass deep middle to B.LaFell to CAR 40 for 18 yards (C.Conte).,0,0,2012 -20121028_CAR@CHI,1,58,44,CAR,CHI,1,10,60,(13:44) C.Newton pass incomplete deep right to G.Olsen.,0,0,2012 -20121028_CAR@CHI,1,58,36,CAR,CHI,2,10,60,(13:36) J.Stewart left end to CAR 39 for -1 yards (C.Tillman).,0,0,2012 -20121028_CAR@CHI,1,57,53,CAR,CHI,3,11,61,(12:53) (Shotgun) C.Newton pass short left to S.Smith to CAR 49 for 10 yards (T.Jennings).,0,0,2012 -20121028_CAR@CHI,1,57,5,CAR,CHI,4,1,51,(12:05) (Punt formation) B.Nortman punts 36 yards to CHI 15 Center-J.Jansen. D.Hester to CHI 26 for 11 yards (G.Barnidge).,0,0,2012 -20121028_CAR@CHI,1,56,55,CHI,CAR,1,10,74,(11:55) J.Cutler sacked at CHI 19 for -7 yards (G.Hardy). PENALTY on CAR-C.Johnson Illegal Use of Hands 7 yards enforced at CHI 19.,0,0,2012 -20121028_CAR@CHI,1,56,36,CHI,CAR,1,10,74,(11:36) M.Forte right end to CHI 32 for 6 yards (L.Kuechly).,0,0,2012 -20121028_CAR@CHI,1,55,53,CHI,CAR,2,4,68,(10:53) J.Cutler pass short right to B.Marshall to CHI 41 for 9 yards (C.Munnerlyn).,0,0,2012 -20121028_CAR@CHI,1,55,19,CHI,CAR,1,10,59,(10:19) M.Forte right end to 50 for 9 yards (H.Nakamura).,0,0,2012 -20121028_CAR@CHI,1,54,49,CHI,CAR,2,1,50,(9:49) J.Cutler pass deep middle intended for B.Marshall INTERCEPTED by J.Norman at CAR 3. J.Norman to CAR 5 for 2 yards (B.Marshall).,0,0,2012 -20121028_CAR@CHI,1,54,38,CAR,CHI,1,10,95,(9:38) J.Stewart left tackle to CAR 5 for no gain (H.Melton).,0,0,2012 -20121028_CAR@CHI,1,54,0,CAR,CHI,2,10,95,(9:00) (Shotgun) J.Stewart right guard to CAR 7 for 2 yards (B.Urlacher).,0,0,2012 -20121028_CAR@CHI,1,53,19,CAR,CHI,3,8,93,(8:19) (Shotgun) C.Newton pass short right to J.Stewart pushed ob at CAR 16 for 9 yards (T.Jennings).,0,0,2012 -20121028_CAR@CHI,1,52,47,CAR,CHI,1,10,84,(7:47) (Shotgun) M.Tolbert left guard to CAR 20 for 4 yards (B.Urlacher).,0,0,2012 -20121028_CAR@CHI,1,52,7,CAR,CHI,2,6,80,(7:07) (Shotgun) C.Newton pass incomplete short left to S.Smith. Penalty on CAR-G.Hangartner Ineligible Downfield Pass declined.,0,0,2012 -20121028_CAR@CHI,1,52,3,CAR,CHI,3,6,80,(7:03) (Shotgun) C.Newton sacked at CAR 14 for -6 yards (J.Peppers).,0,0,2012 -20121028_CAR@CHI,1,51,37,CAR,CHI,4,12,86,(6:37) (Punt formation) B.Nortman punts 35 yards to CAR 49 Center-J.Jansen. D.Hester to CAR 49 for no gain (D.Hogue).,0,0,2012 -20121028_CAR@CHI,1,51,24,CHI,CAR,1,10,49,(6:24) M.Forte left end to CAR 33 for 16 yards (H.Nakamura).,0,0,2012 -20121028_CAR@CHI,1,50,44,CHI,CAR,1,10,33,(5:44) J.Cutler pass short left to B.Marshall to CAR 15 for 18 yards (J.Norman).,0,0,2012 -20121028_CAR@CHI,1,50,3,CHI,CAR,1,10,15,(5:03) J.Cutler pass short right to M.Forte pushed ob at CAR 13 for 2 yards (T.Davis).,0,0,2012 -20121028_CAR@CHI,1,49,37,CHI,CAR,2,8,13,(4:37) M.Forte right guard for 13 yards TOUCHDOWN.,0,0,2012 -20121028_CAR@CHI,1,49,37,CHI,CAR,,,13,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121028_CAR@CHI,1,49,37,CHI,CAR,,,13,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,7,0,2012 -20121028_CAR@CHI,1,49,32,CAR,CHI,1,10,80,(4:32) (Shotgun) C.Newton pass deep middle to B.LaFell to CHI 18 for 62 yards (T.Jennings).,0,7,2012 -20121028_CAR@CHI,1,48,48,CAR,CHI,1,10,18,(3:48) J.Stewart left guard to CHI 17 for 1 yard (B.Urlacher). PENALTY on CAR-J.Byers Offensive Holding 10 yards enforced at CHI 18 - No Play.,0,7,2012 -20121028_CAR@CHI,1,48,17,CAR,CHI,1,20,28,(3:17) (Shotgun) C.Newton pass short right to J.Stewart pushed ob at CHI 23 for 5 yards (C.Conte).,0,7,2012 -20121028_CAR@CHI,1,47,48,CAR,CHI,2,15,23,(2:48) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,7,2012 -20121028_CAR@CHI,1,47,44,CAR,CHI,3,15,23,(2:44) (Shotgun) C.Newton pass short middle to G.Olsen to CHI 16 for 7 yards (B.Urlacher).,0,7,2012 -20121028_CAR@CHI,1,47,6,CAR,CHI,4,8,16,(2:06) (Field Goal formation) J.Medlock 34 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,0,7,2012 -20121028_CAR@CHI,1,47,6,CAR,CHI,,,16,J.Medlock kicks 30 yards from CAR 35 to CHI 35. K.Adams to CHI 43 for 8 yards (J.Phillips).,3,7,2012 -20121028_CAR@CHI,1,46,58,CHI,CAR,1,10,57,(1:58) M.Forte left tackle to CHI 43 for no gain (G.Hardy).,7,3,2012 -20121028_CAR@CHI,1,46,18,CHI,CAR,2,10,57,(1:18) (Shotgun) J.Cutler sacked at CHI 32 for -11 yards (G.Hardy).,7,3,2012 -20121028_CAR@CHI,1,45,43,CHI,CAR,3,21,68,(:43) (Shotgun) J.Cutler sacked at CHI 24 for -8 yards (C.Johnson). FUMBLES (C.Johnson) RECOVERED by CAR-F.Alexander at CHI 16. F.Alexander to CHI 16 for no gain (L.Louis).,7,3,2012 -20121028_CAR@CHI,1,45,33,CAR,CHI,1,10,16,(:33) Direct snap to D.Williams. D.Williams left guard to CHI 9 for 7 yards (N.Roach).,3,7,2012 -20121028_CAR@CHI,2,45,0,CAR,CHI,2,3,9,(15:00) C.Newton pass incomplete short right to L.Murphy (C.Tillman).,3,7,2012 -20121028_CAR@CHI,2,44,57,CAR,CHI,3,3,9,(14:57) (Shotgun) C.Newton right guard to CHI 1 for 8 yards (M.Wright). FUMBLES (M.Wright) recovered by CAR-L.Murphy at CHI -5. TOUCHDOWN.,3,7,2012 -20121028_CAR@CHI,2,44,57,CAR,CHI,,,9,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,3,7,2012 -20121028_CAR@CHI,2,44,57,CAR,CHI,,,9,J.Medlock kicks 42 yards from CAR 35 to CHI 23. C.Wootton (didn't try to advance) to CHI 23 for no gain (J.Senn).,10,7,2012 -20121028_CAR@CHI,2,44,43,CHI,CAR,1,10,77,(14:43) M.Bush left guard to CHI 27 for 4 yards (C.Godfrey; T.Davis).,7,10,2012 -20121028_CAR@CHI,2,44,7,CHI,CAR,2,6,73,(14:07) M.Bush left tackle to CHI 26 for -1 yards (D.Edwards).,7,10,2012 -20121028_CAR@CHI,2,43,28,CHI,CAR,3,7,74,(13:28) (Shotgun) J.Cutler sacked at CHI 22 for -4 yards (D.Edwards).,7,10,2012 -20121028_CAR@CHI,2,43,7,CHI,CAR,4,11,78,(13:07) (Punt formation) A.Podlesh punts 49 yards to CAR 29 Center-P.Mannelly downed by CHI-E.Weems.,7,10,2012 -20121028_CAR@CHI,2,42,55,CAR,CHI,1,10,71,(12:55) J.Stewart left end to CAR 27 for -2 yards (S.Paea).,10,7,2012 -20121028_CAR@CHI,2,42,14,CAR,CHI,2,12,73,(12:14) (Shotgun) C.Newton pass short left to J.Stewart to CAR 36 for 9 yards (C.Conte; N.Collins).,10,7,2012 -20121028_CAR@CHI,2,41,29,CAR,CHI,3,3,64,(11:29) (Shotgun) C.Newton pass short left to S.Smith to CAR 44 for 8 yards (T.Jennings).,10,7,2012 -20121028_CAR@CHI,2,40,48,CAR,CHI,1,10,56,(10:48) (Shotgun) C.Newton pass incomplete deep middle to L.Murphy.,10,7,2012 -20121028_CAR@CHI,2,40,43,CAR,CHI,2,10,56,(10:43) J.Stewart left end pushed ob at CAR 45 for 1 yard (C.Wootton).,10,7,2012 -20121028_CAR@CHI,2,40,8,CAR,CHI,3,9,55,(10:08) (Shotgun) C.Newton pass incomplete deep left to S.Smith [H.Melton]. PENALTY on CHI-T.Jennings Illegal Contact 5 yards enforced at CAR 45 - No Play.,10,7,2012 -20121028_CAR@CHI,2,40,2,CAR,CHI,1,10,50,(10:02) (Shotgun) C.Newton pass incomplete short middle to S.Smith.,10,7,2012 -20121028_CAR@CHI,2,39,57,CAR,CHI,2,10,50,(9:57) (Shotgun) J.Stewart left tackle to CHI 41 for 9 yards (D.Moore; L.Briggs).,10,7,2012 -20121028_CAR@CHI,2,39,16,CAR,CHI,3,1,41,(9:16) (Shotgun) J.Stewart right tackle to CHI 41 for no gain (L.Briggs). Measurement.,10,7,2012 -20121028_CAR@CHI,2,38,49,CAR,CHI,4,1,41,(8:49) C.Newton right guard to CHI 39 for 2 yards (C.Conte).,10,7,2012 -20121028_CAR@CHI,2,38,9,CAR,CHI,1,10,39,(8:09) J.Stewart right guard to CHI 38 for 1 yard (I.Idonije).,10,7,2012 -20121028_CAR@CHI,2,37,28,CAR,CHI,2,9,38,(7:28) (Shotgun) C.Newton pass short right to J.Stewart to CHI 23 for 15 yards (C.Tillman; L.Briggs).,10,7,2012 -20121028_CAR@CHI,2,36,39,CAR,CHI,1,10,23,(6:39) (Shotgun) C.Newton pass incomplete short left to S.Smith (T.Jennings).,10,7,2012 -20121028_CAR@CHI,2,36,34,CAR,CHI,2,10,23,(6:34) (Shotgun) C.Newton pass short right to G.Olsen to CHI 13 for 10 yards (N.Roach).,10,7,2012 -20121028_CAR@CHI,2,35,54,CAR,CHI,1,10,13,(5:54) Direct snap to D.Williams. D.Williams right tackle to CHI 10 for 3 yards (S.Paea).,10,7,2012 -20121028_CAR@CHI,2,35,27,CAR,CHI,2,7,10,(5:27) D.Williams left guard to CHI 13 for -3 yards (S.McClellin).,10,7,2012 -20121028_CAR@CHI,2,34,46,CAR,CHI,3,10,13,(4:46) (Shotgun) C.Newton pass incomplete short right to L.Murphy.,10,7,2012 -20121028_CAR@CHI,2,34,41,CAR,CHI,4,10,13,(4:41) (Field Goal formation) J.Medlock 31 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,10,7,2012 -20121028_CAR@CHI,2,34,41,CAR,CHI,,,13,J.Medlock kicks 48 yards from CAR 35 to CHI 17. E.Weems to CHI 20 for 3 yards (J.Senn; H.Nakamura).,13,7,2012 -20121028_CAR@CHI,2,34,31,CHI,CAR,1,10,80,(4:31) M.Forte right end to CHI 29 for 9 yards (L.Kuechly).,7,13,2012 -20121028_CAR@CHI,2,33,57,CHI,CAR,2,1,71,(3:57) M.Forte right guard to CHI 34 for 5 yards (T.Davis).,7,13,2012 -20121028_CAR@CHI,2,33,19,CHI,CAR,1,10,66,(3:19) J.Cutler pass incomplete deep right to B.Marshall.,7,13,2012 -20121028_CAR@CHI,2,33,15,CHI,CAR,2,10,66,(3:15) J.Cutler pass incomplete short right to B.Marshall.,7,13,2012 -20121028_CAR@CHI,2,33,9,CHI,CAR,3,10,66,(3:09) (Shotgun) J.Cutler pass incomplete short middle to M.Forte. PENALTY on CAR-T.Davis Defensive Pass Interference 4 yards enforced at CHI 34 - No Play.,7,13,2012 -20121028_CAR@CHI,2,33,5,CHI,CAR,1,10,62,(3:05) M.Forte left end pushed ob at CHI 41 for 3 yards (J.Anderson).,7,13,2012 -20121028_CAR@CHI,2,32,39,CHI,CAR,2,7,59,(2:39) J.Cutler pass incomplete short middle to M.Spaeth (C.Munnerlyn).,7,13,2012 -20121028_CAR@CHI,2,32,34,CHI,CAR,3,7,59,(2:34) (Shotgun) J.Cutler pass incomplete short left to B.Marshall.,7,13,2012 -20121028_CAR@CHI,2,32,30,CHI,CAR,4,7,59,(2:30) (Punt formation) A.Podlesh punts 44 yards to CAR 15 Center-P.Mannelly fair catch by C.Munnerlyn.,7,13,2012 -20121028_CAR@CHI,2,32,21,CAR,CHI,1,10,85,(2:21) C.Newton pass incomplete short left to J.Stewart.,13,7,2012 -20121028_CAR@CHI,2,32,17,CAR,CHI,2,10,85,(2:17) (Shotgun) J.Stewart right guard to CAR 17 for 2 yards (B.Urlacher).,13,7,2012 -20121028_CAR@CHI,2,32,0,CAR,CHI,3,8,83,(2:00) (Shotgun) C.Newton pass incomplete short right to B.LaFell. PENALTY on CHI-I.Idonije Defensive Offside 5 yards enforced at CAR 17 - No Play.,13,7,2012 -20121028_CAR@CHI,2,31,54,CAR,CHI,3,3,78,(1:54) (Shotgun) C.Newton pass short middle to S.Smith to CAR 36 for 14 yards.,13,7,2012 -20121028_CAR@CHI,2,31,34,CAR,CHI,1,10,64,(1:34) (No Huddle Shotgun) C.Newton sacked at CAR 25 for -11 yards (J.Peppers H.Melton). FUMBLES (J.Peppers) recovered by CAR-A.Silatolu at CAR 25. A.Silatolu to CAR 25 for no gain (H.Melton; J.Peppers). Penalty on CAR-J.Gross Personal Foul declined.,13,7,2012 -20121028_CAR@CHI,2,31,29,CAR,CHI,2,21,75,(1:29) (Shotgun) J.Stewart right guard to CAR 38 for 13 yards (M.Wright).,13,7,2012 -20121028_CAR@CHI,2,31,20,CAR,CHI,3,8,62,(1:20) (Shotgun) C.Newton pass deep left to S.Smith to CHI 44 for 18 yards (T.Jennings).,13,7,2012 -20121028_CAR@CHI,2,30,58,CAR,CHI,1,10,44,(:58) (No Huddle Shotgun) C.Newton scrambles right guard to CHI 40 for 4 yards (L.Briggs).,13,7,2012 -20121028_CAR@CHI,2,30,47,CAR,CHI,2,6,40,(:47) (Shotgun) C.Newton pass short right intended for G.Olsen INTERCEPTED by T.Jennings [J.Peppers] at CHI 43. T.Jennings to CHI 45 for 2 yards (G.Olsen).,13,7,2012 -20121028_CAR@CHI,2,30,38,CHI,CAR,1,10,55,(:38) (Shotgun) J.Cutler pass short middle to B.Marshall to CAR 44 for 11 yards (S.Martin).,7,13,2012 -20121028_CAR@CHI,2,30,19,CHI,CAR,1,10,44,(:19) (No Huddle Shotgun) J.Cutler sacked at CHI 49 for -7 yards (G.Hardy).,7,13,2012 -20121028_CAR@CHI,2,30,14,CHI,CAR,2,17,51,(:14) (Shotgun) J.Cutler sacked at CHI 41 for -8 yards (C.Johnson). FUMBLES (C.Johnson) RECOVERED by CAR-C.Johnson at CHI 39. C.Johnson to CHI 39 for no gain (G.Carimi).,7,13,2012 -20121028_CAR@CHI,2,30,8,CAR,CHI,1,10,39,(:08) (Shotgun) C.Newton pass short left to G.Olsen ran ob at CHI 33 for 6 yards.,13,7,2012 -20121028_CAR@CHI,2,30,3,CAR,CHI,2,4,33,(:03) (Shotgun) C.Newton pass incomplete deep middle to B.LaFell.,13,7,2012 -20121028_CAR@CHI,3,30,0,CAR,CHI,,,33,J.Medlock kicks 27 yards from CAR 35 to CHI 38. C.Steltz to CHI 43 for 5 yards (K.Pilares).,13,7,2012 -20121028_CAR@CHI,3,29,57,CHI,CAR,1,10,57,(14:57) M.Forte left guard to CHI 44 for 1 yard (L.Kuechly).,7,13,2012 -20121028_CAR@CHI,3,29,28,CHI,CAR,2,9,56,(14:28) M.Forte right tackle to CHI 46 for 2 yards (L.Kuechly; J.Anderson).,7,13,2012 -20121028_CAR@CHI,3,28,49,CHI,CAR,3,7,54,(13:49) (Shotgun) J.Cutler pass short left to D.Hester to CAR 49 for 5 yards (J.Norman). Penalty on CHI-C.Rachal Offensive Holding declined.,7,13,2012 -20121028_CAR@CHI,3,28,32,CHI,CAR,4,2,49,(13:32) (Punt formation) A.Podlesh punts 43 yards to CAR 6 Center-P.Mannelly downed by CHI-E.Weems.,7,13,2012 -20121028_CAR@CHI,3,28,19,CAR,CHI,1,10,94,(13:19) C.Newton pass deep left to S.Smith pushed ob at CAR 24 for 18 yards (C.Conte).,13,7,2012 -20121028_CAR@CHI,3,27,58,CAR,CHI,1,10,76,(12:58) J.Stewart right tackle to CAR 23 for -1 yards (M.Wright).,13,7,2012 -20121028_CAR@CHI,3,27,16,CAR,CHI,2,11,77,(12:16) (Shotgun) C.Newton pass short left to B.Hartsock to CAR 48 for 25 yards (C.Tillman; C.Conte).,13,7,2012 -20121028_CAR@CHI,3,26,26,CAR,CHI,1,10,52,(11:26) D.Williams right tackle to CAR 47 for -1 yards (B.Urlacher).,13,7,2012 -20121028_CAR@CHI,3,25,41,CAR,CHI,2,11,53,(10:41) D.Williams left guard to CAR 48 for 1 yard (C.Wootton).,13,7,2012 -20121028_CAR@CHI,3,24,58,CAR,CHI,3,10,52,(9:58) (Shotgun) C.Newton pass short middle to M.Tolbert to CHI 37 for 15 yards (D.Moore; C.Tillman).,13,7,2012 -20121028_CAR@CHI,3,24,16,CAR,CHI,1,10,37,(9:16) D.Williams left end to CHI 20 for 17 yards (T.Jennings).,13,7,2012 -20121028_CAR@CHI,3,23,30,CAR,CHI,1,10,20,(8:30) D.Williams right guard to CHI 19 for 1 yard (H.Melton).,13,7,2012 -20121028_CAR@CHI,3,22,47,CAR,CHI,2,9,19,(7:47) (Shotgun) C.Newton pass incomplete short middle to B.LaFell (D.Moore). PENALTY on CHI-C.Conte Personal Foul 10 yards enforced at CHI 19 - No Play.,13,7,2012 -20121028_CAR@CHI,3,22,43,CAR,CHI,1,9,9,(7:43) J.Stewart right guard to CHI 4 for 5 yards (B.Urlacher).,13,7,2012 -20121028_CAR@CHI,3,21,58,CAR,CHI,2,4,4,(6:58) (Shotgun) C.Newton pass incomplete short right to S.Smith.,13,7,2012 -20121028_CAR@CHI,3,21,54,CAR,CHI,3,4,4,(6:54) (Shotgun) C.Newton pass incomplete short right to S.Smith.,13,7,2012 -20121028_CAR@CHI,3,21,51,CAR,CHI,4,4,4,(6:51) (Field Goal formation) J.Medlock 22 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,13,7,2012 -20121028_CAR@CHI,3,21,51,CAR,CHI,,,4,J.Medlock kicks 31 yards from CAR 35 to CHI 34. A.Allen to CHI 41 for 7 yards (C.Jones).,16,7,2012 -20121028_CAR@CHI,3,21,42,CHI,CAR,1,10,59,(6:42) J.Cutler pass incomplete short right to M.Spaeth.,7,16,2012 -20121028_CAR@CHI,3,21,38,CHI,CAR,2,10,59,(6:38) (Shotgun) J.Cutler scrambles left end to CHI 45 for 4 yards (T.Davis).,7,16,2012 -20121028_CAR@CHI,3,20,49,CHI,CAR,3,6,55,(5:49) (Shotgun) J.Cutler pass incomplete short left to D.Hester.,7,16,2012 -20121028_CAR@CHI,3,20,43,CHI,CAR,4,6,55,(5:43) (Punt formation) A.Podlesh punts 43 yards to CAR 12 Center-P.Mannelly downed by CHI-B.Costanzo.,7,16,2012 -20121028_CAR@CHI,3,20,32,CAR,CHI,1,10,88,(5:32) J.Stewart right guard to CAR 18 for 6 yards (M.Wright).,16,7,2012 -20121028_CAR@CHI,3,19,46,CAR,CHI,2,4,82,(4:46) C.Newton pass short right to S.Smith to CAR 21 for 3 yards (T.Jennings).,16,7,2012 -20121028_CAR@CHI,3,19,0,CAR,CHI,3,1,79,(4:00) (Shotgun) C.Newton left end to CAR 28 for 7 yards (L.Briggs).,16,7,2012 -20121028_CAR@CHI,3,18,16,CAR,CHI,1,10,72,(3:16) C.Newton pass deep left to S.Smith to CHI 25 for 47 yards (T.Jennings).,16,7,2012 -20121028_CAR@CHI,3,17,29,CAR,CHI,1,10,25,(2:29) D.Williams right guard to CHI 25 for no gain (N.Collins; B.Urlacher).,16,7,2012 -20121028_CAR@CHI,3,16,43,CAR,CHI,2,10,25,(1:43) C.Newton pass incomplete short left to L.Murphy (C.Wootton).,16,7,2012 -20121028_CAR@CHI,3,16,39,CAR,CHI,3,10,25,(1:39) (Shotgun) C.Newton pass incomplete short middle to J.Stewart.,16,7,2012 -20121028_CAR@CHI,3,16,35,CAR,CHI,4,10,25,(1:35) (Field Goal formation) J.Medlock 43 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,16,7,2012 -20121028_CAR@CHI,3,16,35,CAR,CHI,,,25,J.Medlock kicks 49 yards from CAR 35 to CHI 16. E.Bennett to CHI 34 for 18 yards (C.Jones).,19,7,2012 -20121028_CAR@CHI,3,16,25,CHI,CAR,1,10,66,(1:25) M.Forte right end to CHI 32 for -2 yards (L.Kuechly).,7,19,2012 -20121028_CAR@CHI,3,15,44,CHI,CAR,2,12,68,(:44) (Shotgun) J.Cutler pass short middle to E.Bennett to CAR 44 for 24 yards (L.Kuechly; J.Thomas).,7,19,2012 -20121028_CAR@CHI,3,15,5,CHI,CAR,1,10,44,(:05) J.Cutler pass short right to E.Bennett pushed ob at CAR 33 for 11 yards (C.Munnerlyn).,7,19,2012 -20121028_CAR@CHI,4,15,0,CHI,CAR,1,10,33,(15:00) J.Cutler pass short middle to B.Marshall to CAR 20 for 13 yards (L.Kuechly; J.Norman).,7,19,2012 -20121028_CAR@CHI,4,14,21,CHI,CAR,1,10,20,(14:21) M.Forte right guard to CAR 19 for 1 yard (N.Chandler).,7,19,2012 -20121028_CAR@CHI,4,13,44,CHI,CAR,2,9,19,(13:44) J.Cutler pass short right to M.Forte to CAR 22 for -3 yards (T.Davis).,7,19,2012 -20121028_CAR@CHI,4,13,7,CHI,CAR,3,12,22,(13:07) (Shotgun) PENALTY on CHI-R.Garza False Start 5 yards enforced at CAR 22 - No Play.,7,19,2012 -20121028_CAR@CHI,4,12,48,CHI,CAR,3,17,27,(12:48) (Shotgun) J.Cutler pass short middle to M.Forte to CAR 15 for 12 yards (L.Kuechly).,7,19,2012 -20121028_CAR@CHI,4,12,14,CHI,CAR,4,5,15,(12:14) (Field Goal formation) R.Gould 33 yard field goal is No Good Wide Right Center-P.Mannelly Holder-A.Podlesh.,7,19,2012 -20121028_CAR@CHI,4,12,9,CAR,CHI,1,10,77,(12:09) C.Newton pass short right to B.LaFell to CAR 31 for 8 yards (C.Tillman).,19,7,2012 -20121028_CAR@CHI,4,11,36,CAR,CHI,2,2,69,(11:36) J.Stewart left tackle to CAR 32 for 1 yard (H.Melton).,19,7,2012 -20121028_CAR@CHI,4,10,54,CAR,CHI,3,1,68,(10:54) M.Tolbert right guard to CAR 32 for no gain (I.Idonije; M.Wright). Measurement.,19,7,2012 -20121028_CAR@CHI,4,10,24,CAR,CHI,4,1,68,(10:24) (Punt formation) B.Nortman punts 6 yards to CAR 38 Center-J.Jansen out of bounds.,19,7,2012 -20121028_CAR@CHI,4,10,18,CHI,CAR,1,10,38,(10:18) J.Cutler pass incomplete short middle to B.Marshall.,7,19,2012 -20121028_CAR@CHI,4,10,12,CHI,CAR,2,10,38,(10:12) (Shotgun) M.Forte left tackle to CAR 36 for 2 yards (F.Alexander).,7,19,2012 -20121028_CAR@CHI,4,9,34,CHI,CAR,3,8,36,(9:34) (Shotgun) J.Cutler pass short middle to B.Marshall to CAR 25 for 11 yards (T.Davis).,7,19,2012 -20121028_CAR@CHI,4,8,49,CHI,CAR,1,10,25,(8:49) M.Forte left guard to CAR 23 for 2 yards (G.Hardy).,7,19,2012 -20121028_CAR@CHI,4,8,6,CHI,CAR,2,8,23,(8:06) (Shotgun) J.Cutler pass short right to M.Forte to CAR 14 for 9 yards (J.Anderson).,7,19,2012 -20121028_CAR@CHI,4,7,28,CHI,CAR,1,10,14,(7:28) M.Bush right guard to CAR 12 for 2 yards (C.Godfrey).,7,19,2012 -20121028_CAR@CHI,4,6,58,CHI,CAR,2,8,12,(6:58) (Shotgun) J.Cutler pass short middle to K.Davis for 12 yards TOUCHDOWN.,7,19,2012 -20121028_CAR@CHI,4,6,58,CHI,CAR,,,12,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,19,2012 -20121028_CAR@CHI,4,6,58,CHI,CAR,,,12,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,14,19,2012 -20121028_CAR@CHI,4,6,52,CAR,CHI,1,10,80,(6:52) (Shotgun) C.Newton pass short left intended for S.Smith INTERCEPTED by T.Jennings at CAR 25. T.Jennings for 25 yards TOUCHDOWN.,19,14,2012 -20121028_CAR@CHI,4,6,52,CHI,CAR,,,80,TWO-POINT CONVERSION ATTEMPT. J.Cutler pass to B.Marshall is incomplete. ATTEMPT FAILS. Pass intercepted by J.Norman.,14,19,2012 -20121028_CAR@CHI,4,6,52,CHI,CAR,,,80,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,20,19,2012 -20121028_CAR@CHI,4,6,44,CAR,CHI,1,10,80,(6:44) D.Williams left end to CAR 21 for 1 yard (N.Collins).,19,20,2012 -20121028_CAR@CHI,4,6,8,CAR,CHI,2,9,79,(6:08) (Shotgun) C.Newton pass incomplete short middle to S.Smith [I.Idonije]. PENALTY on CHI-I.Idonije Roughing the Passer 15 yards enforced at CAR 21 - No Play.,19,20,2012 -20121028_CAR@CHI,4,6,3,CAR,CHI,1,10,64,(6:03) C.Newton pass short right to G.Barnidge pushed ob at CAR 43 for 7 yards (L.Briggs).,19,20,2012 -20121028_CAR@CHI,4,5,32,CAR,CHI,2,3,57,(5:32) J.Stewart left tackle to CAR 45 for 2 yards (C.Tillman).,19,20,2012 -20121028_CAR@CHI,4,4,47,CAR,CHI,3,1,55,(4:47) C.Newton right end pushed ob at CHI 39 for 16 yards (C.Tillman).,19,20,2012 -20121028_CAR@CHI,4,4,40,CAR,CHI,1,10,39,(4:40) D.Williams left guard to CHI 31 for 8 yards (I.Idonije; C.Conte).,19,20,2012 -20121028_CAR@CHI,4,4,18,CAR,CHI,2,2,31,(4:18) (No Huddle) D.Williams left tackle to CHI 32 for -1 yards (I.Idonije).,19,20,2012 -20121028_CAR@CHI,4,3,35,CAR,CHI,3,3,32,(3:35) (Shotgun) M.Tolbert right guard to CHI 29 for 3 yards (H.Melton).,19,20,2012 -20121028_CAR@CHI,4,2,50,CAR,CHI,1,10,29,(2:50) (Shotgun) J.Stewart left guard to CHI 27 for 2 yards (C.Conte).,19,20,2012 -20121028_CAR@CHI,4,2,43,CAR,CHI,2,8,27,(2:43) C.Newton pass incomplete deep left to S.Smith.,19,20,2012 -20121028_CAR@CHI,4,2,38,CAR,CHI,3,8,27,(2:38) (Shotgun) C.Newton pass incomplete short right.,19,20,2012 -20121028_CAR@CHI,4,2,32,CAR,CHI,4,8,27,(2:32) (Field Goal formation) J.Medlock 45 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,19,20,2012 -20121028_CAR@CHI,4,2,32,CAR,CHI,,,27,J.Medlock kicks 46 yards from CAR 35 to CHI 19. A.Allen to CHI 22 for 3 yards (D.Hogue).,22,20,2012 -20121028_CAR@CHI,4,2,20,CHI,CAR,1,10,78,(2:20) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 26 for 4 yards (L.Kuechly).,20,22,2012 -20121028_CAR@CHI,4,2,2,CHI,CAR,2,6,74,(2:02) (No Huddle Shotgun) J.Cutler pass short left to B.Marshall to CHI 34 for 8 yards (J.Norman).,20,22,2012 -20121028_CAR@CHI,4,1,58,CHI,CAR,1,10,66,(1:58) (Shotgun) J.Cutler pass short left to E.Bennett to CHI 46 for 12 yards (C.Munnerlyn).,20,22,2012 -20121028_CAR@CHI,4,1,33,CHI,CAR,1,10,54,(1:33) (No Huddle Shotgun) J.Cutler pass short left to B.Marshall to CAR 47 for 7 yards (L.Kuechly).,20,22,2012 -20121028_CAR@CHI,4,1,9,CHI,CAR,2,3,47,(1:09) (No Huddle Shotgun) J.Cutler pass incomplete short left to E.Bennett.,20,22,2012 -20121028_CAR@CHI,4,1,4,CHI,CAR,3,3,47,(1:04) (Shotgun) J.Cutler pass short middle to B.Marshall to CAR 36 for 11 yards (C.Munnerlyn).,20,22,2012 -20121028_CAR@CHI,4,0,44,CHI,CAR,1,10,36,(:44) (No Huddle Shotgun) J.Cutler pass short left to B.Marshall to CAR 26 for 10 yards (J.Norman).,20,22,2012 -20121028_CAR@CHI,4,0,18,CHI,CAR,1,10,26,(:18) (No Huddle Shotgun) M.Forte right guard to CAR 23 for 3 yards (C.Johnson).,20,22,2012 -20121028_CAR@CHI,4,0,4,CHI,CAR,2,7,23,(:04) (Field Goal formation) R.Gould 41 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,20,22,2012 -20121028_CAR@CHI,4,0,4,CHI,CAR,,,23,                      ,23,22,2012 -20121028_SD@CLE,1,0,0,CLE,SD,,,23,P.Dawson kicks 67 yards from CLV 35 to SD -2. R.Goodman to SD 19 for 21 yards (L.Fort). SD-R.Goodman was injured during the play. He is Out.,0,0,2012 -20121028_SD@CLE,1,59,56,SD,CLE,1,10,81,(14:56) R.Mathews right guard to SD 22 for 3 yards (J.Johnson).,0,0,2012 -20121028_SD@CLE,1,59,15,SD,CLE,2,7,78,(14:15) R.Mathews right tackle to SD 28 for 6 yards (J.Haden).,0,0,2012 -20121028_SD@CLE,1,58,31,SD,CLE,3,1,72,(13:31) R.Brown right tackle to SD 33 for 5 yards (J.Haden).,0,0,2012 -20121028_SD@CLE,1,57,53,SD,CLE,1,10,67,(12:53) R.Mathews left tackle to SD 36 for 3 yards (J.Johnson).,0,0,2012 -20121028_SD@CLE,1,57,14,SD,CLE,2,7,64,(12:14) P.Rivers pass short right to M.Floyd to 50 for 14 yards (J.Haden).,0,0,2012 -20121028_SD@CLE,1,56,42,SD,CLE,1,10,50,(11:42) R.Mathews right tackle to CLV 39 for 11 yards (U.Young).,0,0,2012 -20121028_SD@CLE,1,56,2,SD,CLE,1,10,39,(11:02) R.Mathews left guard to CLV 37 for 2 yards (J.Johnson; J.Sheard).,0,0,2012 -20121028_SD@CLE,1,55,23,SD,CLE,2,8,37,(10:23) R.Mathews right tackle to CLV 32 for 5 yards (E.Stephens).,0,0,2012 -20121028_SD@CLE,1,54,39,SD,CLE,3,3,32,(9:39) (Shotgun) R.Brown left guard to CLV 30 for 2 yards (J.Johnson).,0,0,2012 -20121028_SD@CLE,1,53,58,SD,CLE,4,1,30,(8:58) J.Battle right guard to CLV 30 for no gain (T.Ward).,0,0,2012 -20121028_SD@CLE,1,53,52,CLE,SD,1,10,70,(8:52) T.Richardson right guard to CLV 33 for 3 yards (T.Spikes; A.Cason).,0,0,2012 -20121028_SD@CLE,1,53,23,CLE,SD,2,7,67,(8:23) B.Weeden pass short right to A.Smith to CLV 34 for 1 yard (J.Johnson).,0,0,2012 -20121028_SD@CLE,1,52,45,CLE,SD,3,6,66,(7:45) (Shotgun) B.Weeden scrambles up the middle to CLV 38 for 4 yards (D.Butler; C.Liuget). PENALTY on SD-Q.Jammer Defensive Holding 5 yards enforced at CLV 38.,0,0,2012 -20121028_SD@CLE,1,52,25,CLE,SD,1,10,57,(7:25) T.Richardson left tackle to SD 49 for 8 yards (S.Phillips; A.Bigby).,0,0,2012 -20121028_SD@CLE,1,51,51,CLE,SD,2,2,49,(6:51) T.Richardson right guard to SD 48 for 1 yard (D.Butler; S.Phillips).,0,0,2012 -20121028_SD@CLE,1,51,10,CLE,SD,3,1,48,(6:10) (Shotgun) T.Richardson left tackle to SD 37 for 11 yards (A.Bigby).,0,0,2012 -20121028_SD@CLE,1,50,43,CLE,SD,1,10,37,(5:43) B.Weeden pass incomplete deep left to B.Watson.,0,0,2012 -20121028_SD@CLE,1,50,37,CLE,SD,2,10,37,(5:37) B.Weeden pass incomplete short left to J.Cameron (C.Liuget).,0,0,2012 -20121028_SD@CLE,1,50,33,CLE,SD,3,10,37,(5:33) B.Weeden pass short right to C.Ogbonnaya to SD 28 for 9 yards (Q.Jammer).,0,0,2012 -20121028_SD@CLE,1,50,15,CLE,SD,4,1,28,(5:15) B.Weeden up the middle to SD 26 for 2 yards (V.Martin; C.Liuget). QB Sneak,0,0,2012 -20121028_SD@CLE,1,49,33,CLE,SD,1,10,26,(4:33) B.Weeden pass incomplete deep left to J.Gordon.,0,0,2012 -20121028_SD@CLE,1,49,26,CLE,SD,2,10,26,(4:26) T.Richardson right guard for 26 yards TOUCHDOWN.,0,0,2012 -20121028_SD@CLE,1,49,26,CLE,SD,,,26,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20121028_SD@CLE,1,49,26,CLE,SD,,,26,P.Dawson kicks 58 yards from CLV 35 to SD 7. C.Carr to SD 18 for 11 yards (J.Bademosi; T.Wade).,7,0,2012 -20121028_SD@CLE,1,49,11,SD,CLE,1,10,82,(4:11) P.Rivers pass short right to R.Meachem ran ob at SD 24 for 6 yards. Cleveland challenged the pass completion ruling and the play was REVERSED. P.Rivers pass incomplete short right to R.Meachem.,0,7,2012 -20121028_SD@CLE,1,49,6,SD,CLE,2,10,82,(4:06) (Shotgun) P.Rivers pass short right to R.Mathews to SD 24 for 6 yards (I.Kitchen; U.Young).,0,7,2012 -20121028_SD@CLE,1,48,25,SD,CLE,3,4,76,(3:25) (Shotgun) P.Rivers pass short left to R.Brown to SD 25 for 1 yard (J.Parker; J.Hughes).,0,7,2012 -20121028_SD@CLE,1,47,49,SD,CLE,4,3,75,(2:49) (Punt formation) M.Scifres punts 47 yards to CLV 28 Center-M.Windt. J.Cribbs to CLV 35 for 7 yards (C.Lynch).,0,7,2012 -20121028_SD@CLE,1,47,37,CLE,SD,1,10,65,(2:37) (Shotgun) B.Weeden pass short left to J.Cribbs to CLV 42 for 7 yards (E.Weddle).,7,0,2012 -20121028_SD@CLE,1,47,2,CLE,SD,2,3,58,(2:02) T.Richardson right guard to CLV 43 for 1 yard (T.Spikes; K.Reyes).,7,0,2012 -20121028_SD@CLE,1,47,2,CLE,SD,3,2,57,(2:02) (No Huddle) T.Richardson right guard to CLV 44 for 1 yard (S.Phillips).,7,0,2012 -20121028_SD@CLE,1,47,2,CLE,SD,4,1,56,(2:02) R.Hodges punts 31 yards to SD 25 Center-C.Yount. E.Weddle to SD 36 for 11 yards (K.Maiava).,7,0,2012 -20121028_SD@CLE,1,45,50,SD,CLE,1,10,64,(:50) R.Mathews right tackle to SD 40 for 4 yards (J.Johnson). FUMBLES (J.Johnson) RECOVERED by CLV-B.Winn at SD 46. B.Winn ran ob at SD 46 for no gain. Play Challenged by Replay Assistant and Upheld.,0,7,2012 -20121028_SD@CLE,1,45,41,CLE,SD,1,10,46,(:41) T.Richardson right tackle to SD 40 for 6 yards (D.Butler).,7,0,2012 -20121028_SD@CLE,1,45,6,CLE,SD,2,4,60,(:06) J.Cribbs FUMBLES (Aborted) at 50 recovered by CLV-T.Benjamin at CLV 40. T.Benjamin to CLV 40 for no gain (S.Phillips). Fumbled Handoff from #16 Cribbs,7,0,2012 -20121028_SD@CLE,2,45,0,CLE,SD,3,24,60,(15:00) T.Richardson right guard to CLV 40 for no gain (A.Barnes).,7,0,2012 -20121028_SD@CLE,2,44,24,CLE,SD,4,25,61,(14:24) R.Hodges punts 34 yards to SD 27 Center-C.Yount fair catch by E.Weddle.,7,0,2012 -20121028_SD@CLE,2,44,16,SD,CLE,1,10,73,(14:16) P.Rivers sacked at SD 21 for -6 yards (B.Winn).,0,7,2012 -20121028_SD@CLE,2,43,44,SD,CLE,2,16,79,(13:44) R.Mathews left guard to SD 21 for no gain (K.Maiava; D.Jackson).,0,7,2012 -20121028_SD@CLE,2,43,3,SD,CLE,3,16,79,(13:03) (Shotgun) P.Rivers pass incomplete deep right to D.Alexander (U.Young).,0,7,2012 -20121028_SD@CLE,2,42,56,SD,CLE,4,16,79,(12:56) (Punt formation) M.Scifres punts 34 yards to CLV 45 Center-M.Windt downed by SD-C.Lynch.,0,7,2012 -20121028_SD@CLE,2,42,45,CLE,SD,1,10,55,(12:45) B.Weeden pass short left to J.Gordon to 50 for 5 yards (D.Butler; S.Phillips).,7,0,2012 -20121028_SD@CLE,2,42,45,CLE,SD,2,5,50,(12:45) PENALTY on SD-V.Martin Encroachment 5 yards enforced at 50 - No Play.,7,0,2012 -20121028_SD@CLE,2,42,0,CLE,SD,1,10,45,(12:00) M.Hardesty right guard to SD 44 for 1 yard (T.Spikes).,7,0,2012 -20121028_SD@CLE,2,41,28,CLE,SD,2,9,44,(11:28) M.Hardesty left guard to SD 42 for 2 yards (A.Bigby).,7,0,2012 -20121028_SD@CLE,2,40,49,CLE,SD,3,7,42,(10:49) (Shotgun) B.Weeden pass incomplete short right to C.Ogbonnaya.,7,0,2012 -20121028_SD@CLE,2,40,44,CLE,SD,4,7,42,(10:44) (Punt formation) R.Hodges punts 30 yards to SD 12 Center-C.Yount out of bounds.,7,0,2012 -20121028_SD@CLE,2,40,38,SD,CLE,1,10,88,(10:38) R.Mathews left guard to SD 19 for 7 yards (J.Hughes; J.Haden).,0,7,2012 -20121028_SD@CLE,2,40,1,SD,CLE,2,3,81,(10:01) R.Mathews left guard to SD 25 for 6 yards (K.Maiava).,0,7,2012 -20121028_SD@CLE,2,39,26,SD,CLE,1,10,75,(9:26) R.Mathews right guard to SD 26 for 1 yard (J.Johnson; D.Jackson).,0,7,2012 -20121028_SD@CLE,2,38,45,SD,CLE,2,9,74,(8:45) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,0,7,2012 -20121028_SD@CLE,2,38,40,SD,CLE,3,9,74,(8:40) (Shotgun) P.Rivers pass short left to R.Brown to SD 37 for 11 yards (D.Jackson).,0,7,2012 -20121028_SD@CLE,2,37,59,SD,CLE,1,10,63,(7:59) P.Rivers pass incomplete deep left to M.Floyd (U.Young).,0,7,2012 -20121028_SD@CLE,2,37,50,SD,CLE,2,10,63,(7:50) P.Rivers pass short right to R.Mathews to SD 40 for 3 yards (K.Maiava; J.Haden).,0,7,2012 -20121028_SD@CLE,2,37,4,SD,CLE,3,7,60,(7:04) (Shotgun) P.Rivers pass incomplete short middle to D.Rosario [T.Ward].,0,7,2012 -20121028_SD@CLE,2,36,59,SD,CLE,4,7,60,(6:59) (Punt formation) M.Scifres punts 40 yards to CLV 20 Center-M.Windt. J.Cribbs to CLV 35 for 15 yards (M.Ingram). PENALTY on CLV Offensive Holding 10 yards enforced at CLV 20.,0,7,2012 -20121028_SD@CLE,2,36,51,CLE,SD,1,10,90,(6:51) T.Richardson left guard to CLV 10 for no gain (D.Butler).,7,0,2012 -20121028_SD@CLE,2,36,17,CLE,SD,2,10,90,(6:17) B.Weeden pass short right to J.Cameron to CLV 22 for 12 yards (T.Spikes).,7,0,2012 -20121028_SD@CLE,2,35,37,CLE,SD,1,10,78,(5:37) B.Weeden pass incomplete short right to G.Little.,7,0,2012 -20121028_SD@CLE,2,35,29,CLE,SD,2,10,78,(5:29) B.Weeden pass short right to J.Gordon to CLV 37 for 15 yards (A.Cason).,7,0,2012 -20121028_SD@CLE,2,34,58,CLE,SD,1,10,63,(4:58) T.Richardson right guard to CLV 37 for no gain (E.Weddle).,7,0,2012 -20121028_SD@CLE,2,34,22,CLE,SD,2,10,63,(4:22) T.Richardson right guard to CLV 49 for 12 yards (A.Bigby).,7,0,2012 -20121028_SD@CLE,2,33,42,CLE,SD,1,10,51,(3:42) T.Richardson right guard to SD 40 for 11 yards (D.Butler; M.Ingram).,7,0,2012 -20121028_SD@CLE,2,33,6,CLE,SD,1,10,40,(3:06) (Shotgun) T.Richardson right tackle ran ob at SD 36 for 4 yards.,7,0,2012 -20121028_SD@CLE,2,32,29,CLE,SD,2,6,36,(2:29) PENALTY on CLV-J.Greco False Start 5 yards enforced at SD 36 - No Play.,7,0,2012 -20121028_SD@CLE,2,32,8,CLE,SD,2,11,41,(2:08) T.Richardson right guard to SD 38 for 3 yards (C.Liuget).,7,0,2012 -20121028_SD@CLE,2,32,0,CLE,SD,3,8,38,(2:00) B.Weeden pass incomplete short left to J.Cameron [S.Phillips].,7,0,2012 -20121028_SD@CLE,2,31,54,CLE,SD,4,8,38,(1:54) (Punt formation) R.Hodges punts 38 yards to end zone Center-C.Yount Touchback.,7,0,2012 -20121028_SD@CLE,2,31,48,SD,CLE,1,10,80,(1:48) (Shotgun) P.Rivers pass short middle to R.Brown to SD 45 for 25 yards (U.Young; D.Jackson).,0,7,2012 -20121028_SD@CLE,2,31,25,SD,CLE,1,10,55,(1:25) (No Huddle Shotgun) P.Rivers pass short left to D.Rosario ran ob at CLV 49 for 6 yards (K.Maiava).,0,7,2012 -20121028_SD@CLE,2,31,19,SD,CLE,2,4,49,(1:19) (Shotgun) P.Rivers pass short left to R.Brown ran ob at CLV 44 for 5 yards.,0,7,2012 -20121028_SD@CLE,2,31,13,SD,CLE,1,10,44,(1:13) (Shotgun) P.Rivers pass short right to D.Rosario to CLV 39 for 5 yards (D.Jackson).,0,7,2012 -20121028_SD@CLE,2,31,6,SD,CLE,2,5,39,(1:06) (Shotgun) R.Brown left tackle to CLV 32 for 7 yards (J.Hughes).,0,7,2012 -20121028_SD@CLE,2,30,43,SD,CLE,1,10,32,(:43) (No Huddle Shotgun) P.Rivers pass short left to M.Floyd to CLV 22 for 10 yards (S.Brown).,0,7,2012 -20121028_SD@CLE,2,30,38,SD,CLE,1,10,22,(:38) (Shotgun) P.Rivers pass short middle to A.Gates to CLV 17 for 5 yards (B.Skrine).,0,7,2012 -20121028_SD@CLE,2,30,17,SD,CLE,2,5,17,(:17) P.Rivers spiked the ball to stop the clock.,0,7,2012 -20121028_SD@CLE,2,30,14,SD,CLE,3,5,17,(:14) (Shotgun) P.Rivers pass short right to J.Clary to CLV 25 for -8 yards (J.Parker). Pass Deflected by #97 Sheard and caught by #66 Clary,0,7,2012 -20121028_SD@CLE,2,30,3,SD,CLE,4,13,25,(:03) (Field Goal formation) M.Scifres 43 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,7,2012 -20121028_SD@CLE,3,30,0,SD,CLE,,,25,N.Novak kicks 60 yards from SD 35 to CLV 5. J.Cribbs to CLV 35 for 30 yards (A.Cason). PENALTY on CLV-J.Cameron Offensive Holding 10 yards enforced at CLV 27.,3,7,2012 -20121028_SD@CLE,3,29,55,CLE,SD,1,10,83,(14:55) T.Richardson left guard to CLV 21 for 4 yards (A.Bigby; T.Spikes).,7,3,2012 -20121028_SD@CLE,3,29,18,CLE,SD,2,6,79,(14:18) T.Richardson right guard to CLV 25 for 4 yards (A.Bigby; C.Liuget).,7,3,2012 -20121028_SD@CLE,3,28,39,CLE,SD,3,2,75,(13:39) B.Weeden pass short right to G.Little to CLV 31 for 6 yards (A.Cason) [T.Spikes].,7,3,2012 -20121028_SD@CLE,3,27,58,CLE,SD,1,10,69,(12:58) B.Weeden pass incomplete short left to B.Watson (C.Liuget).,7,3,2012 -20121028_SD@CLE,3,27,53,CLE,SD,2,10,69,(12:53) (Shotgun) B.Weeden pass incomplete short left to B.Watson (E.Weddle).,7,3,2012 -20121028_SD@CLE,3,27,48,CLE,SD,3,10,69,(12:48) (Shotgun) B.Weeden pass incomplete short right to G.Little.,7,3,2012 -20121028_SD@CLE,3,27,43,CLE,SD,4,10,69,(12:43) (Pass formation) R.Hodges punts 50 yards to SD 19 Center-C.Yount. E.Weddle to SD 24 for 5 yards (B.Skrine).,7,3,2012 -20121028_SD@CLE,3,27,31,SD,CLE,1,10,76,(12:31) R.Mathews left tackle to SD 28 for 4 yards (K.Maiava; D.Jackson).,3,7,2012 -20121028_SD@CLE,3,26,46,SD,CLE,2,6,72,(11:46) (Shotgun) R.Mathews right guard to SD 31 for 3 yards (J.Sheard; D.Jackson).,3,7,2012 -20121028_SD@CLE,3,26,2,SD,CLE,3,3,69,(11:02) (Shotgun) P.Rivers pass incomplete short right to A.Gates.,3,7,2012 -20121028_SD@CLE,3,25,56,SD,CLE,4,3,69,(10:56) (Punt formation) M.Scifres punts 60 yards to CLV 9 Center-M.Windt downed by SD-D.Stuckey.,3,7,2012 -20121028_SD@CLE,3,25,45,CLE,SD,1,10,91,(10:45) T.Richardson left guard to CLV 11 for 2 yards (E.Weddle; T.Spikes).,7,3,2012 -20121028_SD@CLE,3,25,3,CLE,SD,2,8,89,(10:03) B.Weeden pass incomplete short right to G.Little.,7,3,2012 -20121028_SD@CLE,3,24,56,CLE,SD,3,8,89,(9:56) B.Weeden pass incomplete short middle to C.Ogbonnaya.,7,3,2012 -20121028_SD@CLE,3,24,51,CLE,SD,4,8,89,(9:51) (Punt formation) R.Hodges punts 51 yards to SD 38 Center-C.Yount. E.Weddle to SD 48 for 10 yards (J.Cribbs; R.Ventrone).,7,3,2012 -20121028_SD@CLE,3,24,40,SD,CLE,1,10,52,(9:40) R.Mathews right guard to SD 49 for 1 yard (J.Johnson; J.Haden).,3,7,2012 -20121028_SD@CLE,3,24,3,SD,CLE,2,9,51,(9:03) P.Rivers pass incomplete short middle to R.Mathews.,3,7,2012 -20121028_SD@CLE,3,23,57,SD,CLE,3,9,51,(8:57) (Shotgun) P.Rivers pass incomplete deep middle to R.Meachem.,3,7,2012 -20121028_SD@CLE,3,23,52,SD,CLE,4,9,51,(8:52) (Punt formation) M.Scifres punts 43 yards to CLV 8 Center-M.Windt out of bounds.,3,7,2012 -20121028_SD@CLE,3,23,44,CLE,SD,1,10,92,(8:44) B.Weeden pass incomplete short left to J.Gordon.,7,3,2012 -20121028_SD@CLE,3,23,41,CLE,SD,2,10,92,(8:41) T.Richardson right tackle to CLV 17 for 9 yards (D.Butler).,7,3,2012 -20121028_SD@CLE,3,22,59,CLE,SD,3,1,83,(7:59) T.Richardson left guard to CLV 15 for -2 yards (D.Butler; C.Thomas).,7,3,2012 -20121028_SD@CLE,3,22,20,CLE,SD,4,3,85,(7:20) (Punt formation) R.Hodges punts 48 yards to SD 37 Center-C.Yount. E.Weddle to CLV 43 for 20 yards (C.Yount).,7,3,2012 -20121028_SD@CLE,3,22,9,SD,CLE,1,10,43,(7:09) R.Mathews right guard to CLV 35 for 8 yards (U.Young).,3,7,2012 -20121028_SD@CLE,3,21,37,SD,CLE,2,2,35,(6:37) L.McClain right tackle to CLV 32 for 3 yards (D.Jackson).,3,7,2012 -20121028_SD@CLE,3,21,2,SD,CLE,1,10,32,(6:02) R.Mathews right guard to CLV 29 for 3 yards (I.Kitchen).,3,7,2012 -20121028_SD@CLE,3,20,26,SD,CLE,2,7,29,(5:26) R.Mathews left tackle to CLV 26 for 3 yards (K.Maiava).,3,7,2012 -20121028_SD@CLE,3,19,47,SD,CLE,3,4,26,(4:47) R.Mathews right tackle to CLV 18 for 8 yards (U.Young).,3,7,2012 -20121028_SD@CLE,3,19,4,SD,CLE,1,10,18,(4:04) R.Meachem right tackle to CLV 24 for -6 yards (J.Johnson). End Around to #12 Meachem,3,7,2012 -20121028_SD@CLE,3,18,27,SD,CLE,2,16,24,(3:27) (Shotgun) P.Rivers pass incomplete deep middle to A.Gates.,3,7,2012 -20121028_SD@CLE,3,18,21,SD,CLE,3,16,24,(3:21) (Shotgun) P.Rivers pass short middle to R.Brown to CLV 13 for 11 yards (C.Robertson; D.Jackson).,3,7,2012 -20121028_SD@CLE,3,17,36,SD,CLE,4,5,13,(2:36) (Field Goal formation) N.Novak 31 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,3,7,2012 -20121028_SD@CLE,3,17,36,SD,CLE,,,13,N.Novak kicks 60 yards from SD 35 to CLV 5. J.Cribbs to CLV 30 for 25 yards (A.Bigby; J.Battle).,6,7,2012 -20121028_SD@CLE,3,17,28,CLE,SD,1,10,70,(2:28) T.Richardson right tackle to CLV 28 for -2 yards (D.Butler).,7,6,2012 -20121028_SD@CLE,3,16,54,CLE,SD,2,12,72,(1:54) B.Weeden pass incomplete short right to J.Cameron (S.Phillips).,7,6,2012 -20121028_SD@CLE,3,16,49,CLE,SD,3,12,72,(1:49) (Shotgun) B.Weeden pass deep right to G.Little to 50 for 22 yards (Q.Jammer).,7,6,2012 -20121028_SD@CLE,3,16,22,CLE,SD,1,10,50,(1:22) T.Richardson left tackle to SD 45 for 5 yards (J.Johnson). PENALTY on CLV-G.Little Offensive Holding 10 yards enforced at 50 - No Play.,7,6,2012 -20121028_SD@CLE,3,15,59,CLE,SD,1,20,60,(:59) B.Weeden pass short right to J.Gordon to SD 34 for 26 yards (J.Johnson).,7,6,2012 -20121028_SD@CLE,3,15,30,CLE,SD,1,10,34,(:30) B.Weeden pass incomplete short right to A.Smith [D.Butler].,7,6,2012 -20121028_SD@CLE,3,15,25,CLE,SD,2,10,34,(:25) B.Weeden pass incomplete short middle to J.Cooper.,7,6,2012 -20121028_SD@CLE,3,15,21,CLE,SD,3,10,34,(:21) (Shotgun) B.Weeden sacked at SD 43 for -9 yards (C.Liuget).,7,6,2012 -20121028_SD@CLE,4,15,0,CLE,SD,4,19,43,(15:00) (Punt formation) R.Hodges punts 40 yards to SD 3 Center-C.Yount downed by CLV-J.Bademosi.,7,6,2012 -20121028_SD@CLE,4,14,52,SD,CLE,1,10,97,(14:52) L.McClain right tackle to SD 5 for 2 yards (K.Maiava; D.Jackson).,6,7,2012 -20121028_SD@CLE,4,14,17,SD,CLE,2,8,95,(14:17) R.Mathews left tackle to SD 12 for 7 yards (D.Jackson).,6,7,2012 -20121028_SD@CLE,4,13,43,SD,CLE,3,1,88,(13:43) R.Mathews right guard to SD 13 for 1 yard (J.Hughes).,6,7,2012 -20121028_SD@CLE,4,13,12,SD,CLE,1,10,87,(13:12) R.Mathews left tackle to SD 18 for 5 yards (J.Johnson; U.Young).,6,7,2012 -20121028_SD@CLE,4,12,40,SD,CLE,2,5,82,(12:40) R.Mathews right guard to SD 21 for 3 yards (D.Jackson).,6,7,2012 -20121028_SD@CLE,4,11,58,SD,CLE,3,2,79,(11:58) (Shotgun) P.Rivers pass short middle to M.Floyd to SD 29 for 8 yards (K.Maiava).,6,7,2012 -20121028_SD@CLE,4,11,20,SD,CLE,1,10,71,(11:20) J.Battle left tackle to SD 35 for 6 yards (J.Haden).,6,7,2012 -20121028_SD@CLE,4,10,46,SD,CLE,2,4,65,(10:46) J.Battle right guard to SD 35 for no gain (D.Jackson; J.Johnson).,6,7,2012 -20121028_SD@CLE,4,10,1,SD,CLE,3,4,65,(10:01) (Shotgun) P.Rivers pass short left to M.Floyd to SD 46 for 11 yards (U.Young).,6,7,2012 -20121028_SD@CLE,4,9,42,SD,CLE,1,10,54,(9:42) R.Mathews right tackle to CLV 48 for 6 yards (T.Ward).,6,7,2012 -20121028_SD@CLE,4,9,0,SD,CLE,2,4,48,(9:00) R.Mathews left tackle to SD 47 for -5 yards (J.Parker).,6,7,2012 -20121028_SD@CLE,4,8,17,SD,CLE,3,9,53,(8:17) (Shotgun) PENALTY on SD-J.Gaither False Start 5 yards enforced at SD 47 - No Play.,6,7,2012 -20121028_SD@CLE,4,7,53,SD,CLE,3,14,58,(7:53) (Shotgun) P.Rivers pass incomplete deep right to R.Meachem.,6,7,2012 -20121028_SD@CLE,4,7,49,SD,CLE,4,14,58,(7:49) (Punt formation) M.Scifres punts 55 yards to CLV 3 Center-M.Windt downed by SD-C.Lynch.,6,7,2012 -20121028_SD@CLE,4,7,37,CLE,SD,1,10,97,(7:37) C.Ogbonnaya up the middle to CLV 7 for 4 yards (D.Butler).,7,6,2012 -20121028_SD@CLE,4,6,51,CLE,SD,2,6,93,(6:51) B.Weeden pass incomplete short right to A.Smith (M.Ingram A.Bigby).,7,6,2012 -20121028_SD@CLE,4,6,48,CLE,SD,3,6,93,(6:48) B.Weeden pass short right to T.Richardson to CLV 19 for 12 yards (E.Weddle).,7,6,2012 -20121028_SD@CLE,4,6,9,CLE,SD,1,10,81,(6:09) B.Weeden pass short left to B.Watson to CLV 33 for 14 yards (E.Weddle).,7,6,2012 -20121028_SD@CLE,4,5,43,CLE,SD,1,10,67,(5:43) T.Richardson left tackle to CLV 37 for 4 yards (M.Ingram; T.Spikes).,7,6,2012 -20121028_SD@CLE,4,5,13,CLE,SD,2,6,63,(5:13) T.Richardson right guard to 50 for 13 yards (D.Butler; M.Gilchrist).,7,6,2012 -20121028_SD@CLE,4,4,27,CLE,SD,1,10,50,(4:27) T.Richardson right guard to SD 46 for 4 yards (T.Spikes; A.Bigby).,7,6,2012 -20121028_SD@CLE,4,3,44,CLE,SD,2,6,46,(3:44) M.Hardesty up the middle to SD 46 for no gain (E.Weddle). FUMBLES (E.Weddle) and recovers at SD 46. M.Hardesty to SD 46 for no gain (A.Bigby).,7,6,2012 -20121028_SD@CLE,4,2,54,CLE,SD,3,6,46,(2:54) B.Weeden sacked at SD 49 for -3 yards (sack split by M.Ingram and S.Phillips).,7,6,2012 -20121028_SD@CLE,4,2,46,CLE,SD,4,9,49,(2:46) (Punt formation) R.Hodges punts 34 yards to SD 15 Center-C.Yount. E.Weddle MUFFS catch touched at SD 15 and recovers at SD 12. E.Weddle to SD 12 for no gain (B.Skrine).,7,6,2012 -20121028_SD@CLE,4,2,36,SD,CLE,1,10,88,(2:36) (Shotgun) P.Rivers pass short left to A.Gates to SD 21 for 9 yards (B.Skrine).,6,7,2012 -20121028_SD@CLE,4,2,11,SD,CLE,2,1,79,(2:11) (No Huddle Shotgun) R.Brown left guard to SD 24 for 3 yards (D.Jackson).,6,7,2012 -20121028_SD@CLE,4,2,0,SD,CLE,1,10,76,(2:00) P.Rivers pass incomplete short middle to R.Brown.,6,7,2012 -20121028_SD@CLE,4,1,57,SD,CLE,2,10,76,(1:57) (Shotgun) P.Rivers pass short left to R.Brown to SD 45 for 21 yards (S.Brown).,6,7,2012 -20121028_SD@CLE,4,1,49,SD,CLE,1,10,55,(1:49) (Shotgun) P.Rivers pass short right to R.Brown ran ob at CLV 44 for 11 yards (J.Haden).,6,7,2012 -20121028_SD@CLE,4,1,41,SD,CLE,1,10,44,(1:41) (Shotgun) P.Rivers pass incomplete short middle to D.Rosario.,6,7,2012 -20121028_SD@CLE,4,1,38,SD,CLE,2,10,44,(1:38) (Shotgun) P.Rivers pass incomplete short right to R.Mathews.,6,7,2012 -20121028_SD@CLE,4,1,30,SD,CLE,3,10,44,(1:30) (Shotgun) P.Rivers pass incomplete deep right to D.Rosario [J.Parker].,6,7,2012 -20121028_SD@CLE,4,1,24,SD,CLE,4,10,44,(1:24) (Shotgun) P.Rivers pass incomplete short left to M.Floyd (B.Skrine).,6,7,2012 -20121028_SD@CLE,4,1,20,CLE,SD,1,10,56,(1:20) B.Weeden kneels to CLV 43 for -1 yards.,7,6,2012 -20121028_SD@CLE,4,0,39,CLE,SD,2,11,57,(:39) B.Weeden kneels to CLV 42 for -1 yards.,7,6,2012 -20121028_SD@CLE,4,0,39,CLE,SD,,,57,                      ,7,6,2012 -20121028_SEA@DET,1,0,0,SEA,DET,,,57,S.Hauschka kicks 71 yards from SEA 35 to DET -6. S.Logan Touchback.,0,0,2012 -20121028_SEA@DET,1,60,0,DET,SEA,1,10,80,(15:00) R.Reiff reported in as eligible. M.Stafford pass incomplete deep right to C.Johnson.,0,0,2012 -20121028_SEA@DET,1,59,54,DET,SEA,2,10,80,(14:54) M.Leshoure right tackle to DET 23 for 3 yards (L.Hill).,0,0,2012 -20121028_SEA@DET,1,59,13,DET,SEA,3,7,77,(14:13) (Shotgun) M.Stafford pass short right to T.Young to DET 32 for 9 yards (R.Sherman) [B.Irvin]. Penalty on SEA-B.Browner Illegal Use of Hands declined.,0,0,2012 -20121028_SEA@DET,1,58,54,DET,SEA,1,10,68,(13:54) M.Stafford pass incomplete short middle to M.Leshoure.,0,0,2012 -20121028_SEA@DET,1,58,49,DET,SEA,2,10,68,(13:49) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 35 for 3 yards (K.Wright).,0,0,2012 -20121028_SEA@DET,1,58,7,DET,SEA,3,7,65,(13:07) (Shotgun) M.Stafford pass short middle to T.Young to DET 38 for 3 yards (R.Sherman).,0,0,2012 -20121028_SEA@DET,1,57,39,DET,SEA,4,4,62,(12:39) N.Harris punts 42 yards to SEA 20 Center-D.Muhlbach. L.Washington to SEA 23 for 3 yards (K.Osgood).,0,0,2012 -20121028_SEA@DET,1,57,28,SEA,DET,1,10,77,(12:28) R.Wilson pass short right to G.Tate to SEA 41 for 18 yards (A.Palmer C.Houston). Penalty on DET-K.Vanden Bosch Defensive Offside declined.,0,0,2012 -20121028_SEA@DET,1,57,3,SEA,DET,1,10,59,(12:03) (Shotgun) R.Wilson pass incomplete short right to M.Lynch.,0,0,2012 -20121028_SEA@DET,1,56,59,SEA,DET,2,10,59,(11:59) R.Wilson pass incomplete short right to Z.Miller. PENALTY on DET-L.Delmas Defensive Holding 5 yards enforced at SEA 41 - No Play. Penalty on DET-C.Williams Defensive Offside declined.,0,0,2012 -20121028_SEA@DET,1,56,53,SEA,DET,1,10,54,(11:53) M.Lynch left end to SEA 44 for -2 yards (C.Williams).,0,0,2012 -20121028_SEA@DET,1,56,19,SEA,DET,2,12,56,(11:19) R.Wilson pass short right to S.Rice to SEA 41 for -3 yards (C.Houston).,0,0,2012 -20121028_SEA@DET,1,55,41,SEA,DET,3,15,59,(10:41) (Shotgun) R.Wilson pass short left to G.Tate to DET 49 for 10 yards (J.Durant).,0,0,2012 -20121028_SEA@DET,1,55,3,SEA,DET,4,5,49,(10:03) J.Ryan punts 37 yards to DET 12 Center-C.Gresham fair catch by S.Logan. PENALTY on DET-W.Young Illegal Formation 5 yards enforced at DET 49 - No Play.,0,0,2012 -20121028_SEA@DET,1,54,54,SEA,DET,1,10,44,(9:54) PENALTY on DET-N.Fairley Encroachment 5 yards enforced at DET 44 - No Play.,0,0,2012 -20121028_SEA@DET,1,54,54,SEA,DET,1,5,39,(9:54) M.Lynch left tackle to DET 38 for 1 yard (W.Young).,0,0,2012 -20121028_SEA@DET,1,54,23,SEA,DET,2,4,38,(9:23) R.Wilson pass short right to S.Rice to DET 33 for 5 yards (C.Houston).,0,0,2012 -20121028_SEA@DET,1,53,50,SEA,DET,1,10,33,(8:50) (Shotgun) R.Wilson pass short left to Z.Miller to DET 27 for 6 yards (S.Tulloch).,0,0,2012 -20121028_SEA@DET,1,53,11,SEA,DET,2,4,27,(8:11) R.Wilson pass short middle to A.McCoy to DET 13 for 14 yards (L.Delmas).,0,0,2012 -20121028_SEA@DET,1,52,36,SEA,DET,1,10,13,(7:36) M.Lynch right tackle to DET 7 for 6 yards (K.Vanden Bosch R.Silva).,0,0,2012 -20121028_SEA@DET,1,52,0,SEA,DET,2,4,7,(7:00) M.Lynch right end to DET 10 for -3 yards (K.Vanden Bosch).,0,0,2012 -20121028_SEA@DET,1,51,19,SEA,DET,3,7,10,(6:19) (Shotgun) R.Wilson pass short left to G.Tate to DET 5 for 5 yards (A.Smith C.Houston).,0,0,2012 -20121028_SEA@DET,1,50,33,SEA,DET,4,2,5,(5:33) S.Hauschka 23 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121028_SEA@DET,1,50,33,SEA,DET,,,5,S.Hauschka kicks 68 yards from SEA 35 to DET -3. S.Logan to DET 18 for 21 yards (K.Chancellor).,3,0,2012 -20121028_SEA@DET,1,50,25,DET,SEA,1,10,82,(5:25) R.Reiff reported in as eligible. M.Leshoure right tackle to DET 21 for 3 yards (K.Chancellor).,0,3,2012 -20121028_SEA@DET,1,49,52,DET,SEA,2,7,79,(4:52) (Shotgun) M.Leshoure right end to DET 26 for 5 yards (B.Irvin).,0,3,2012 -20121028_SEA@DET,1,49,14,DET,SEA,3,2,74,(4:14) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 30 for 4 yards (K.Chancellor M.Trufant).,0,3,2012 -20121028_SEA@DET,1,48,30,DET,SEA,1,10,70,(3:30) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 36 for 6 yards (M.Trufant K.Wright).,0,3,2012 -20121028_SEA@DET,1,47,51,DET,SEA,2,4,64,(2:51) M.Leshoure up the middle to SEA 48 for 16 yards (K.Chancellor).,0,3,2012 -20121028_SEA@DET,1,47,15,DET,SEA,1,10,48,(2:15) (Shotgun) M.Stafford pass short right to R.Broyles to SEA 29 for 19 yards (B.Wagner R.Sherman).,0,3,2012 -20121028_SEA@DET,1,46,28,DET,SEA,1,10,29,(1:28) (Shotgun) M.Stafford pass deep right to T.Scheffler to SEA 9 for 20 yards (E.Thomas) [G.Scruggs].,0,3,2012 -20121028_SEA@DET,1,45,49,DET,SEA,1,9,9,(:49) (No Huddle) M.Leshoure left tackle to SEA 6 for 3 yards (K.Wright).,0,3,2012 -20121028_SEA@DET,1,45,7,DET,SEA,2,6,6,(:07) (Shotgun) M.Stafford pass short left to R.Broyles for 6 yards TOUCHDOWN.,0,3,2012 -20121028_SEA@DET,1,45,7,DET,SEA,,,6,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,3,2012 -20121028_SEA@DET,2,45,0,DET,SEA,,,6,J.Hanson kicks 70 yards from DET 35 to SEA -5. L.Washington to SEA 23 for 28 yards (J.Wendling).,7,3,2012 -20121028_SEA@DET,2,44,55,SEA,DET,1,10,77,(14:55) M.Lynch right end for 77 yards TOUCHDOWN.,3,7,2012 -20121028_SEA@DET,2,44,55,SEA,DET,,,77,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,7,2012 -20121028_SEA@DET,2,44,55,SEA,DET,,,77,S.Hauschka kicks 72 yards from SEA 35 to DET -7. S.Logan Touchback.,10,7,2012 -20121028_SEA@DET,2,44,43,DET,SEA,1,10,80,(14:43) M.Stafford sacked at DET 8 for -12 yards (B.Mebane).,7,10,2012 -20121028_SEA@DET,2,44,2,DET,SEA,2,22,92,(14:02) M.Leshoure up the middle to DET 11 for 3 yards (B.Mebane B.Wagner).,7,10,2012 -20121028_SEA@DET,2,43,28,DET,SEA,3,19,89,(13:28) (Shotgun) PENALTY on DET-R.Sims False Start 5 yards enforced at DET 11 - No Play.,7,10,2012 -20121028_SEA@DET,2,43,6,DET,SEA,3,24,94,(13:06) (Shotgun) M.Stafford pass short left to B.Pettigrew to DET 18 for 12 yards (M.Trufant).,7,10,2012 -20121028_SEA@DET,2,42,34,DET,SEA,4,12,82,(12:34) N.Harris punts 46 yards to SEA 36 Center-D.Muhlbach. L.Washington to SEA 44 for 8 yards (A.Palmer T.Whitehead).,7,10,2012 -20121028_SEA@DET,2,42,23,SEA,DET,1,10,56,(12:23) R.Wilson pass incomplete deep right to G.Tate (J.Green). PENALTY on DET-J.Green Defensive Pass Interference 41 yards enforced at SEA 44 - No Play.,10,7,2012 -20121028_SEA@DET,2,42,16,SEA,DET,1,10,15,(12:16) R.Turbin left end pushed ob at DET 9 for 6 yards (T.Lewis).,10,7,2012 -20121028_SEA@DET,2,41,49,SEA,DET,2,4,9,(11:49) (Shotgun) R.Wilson pass incomplete short left to E.Moore (J.Green).,10,7,2012 -20121028_SEA@DET,2,41,43,SEA,DET,3,4,9,(11:43) (Shotgun) R.Wilson pass short left to S.Rice for 9 yards TOUCHDOWN.,10,7,2012 -20121028_SEA@DET,2,41,43,SEA,DET,,,9,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,10,7,2012 -20121028_SEA@DET,2,41,43,SEA,DET,,,9,S.Hauschka kicks 72 yards from SEA 35 to DET -7. S.Logan Touchback.,17,7,2012 -20121028_SEA@DET,2,41,39,DET,SEA,1,10,80,(11:39) M.Stafford pass short right to T.Scheffler to DET 34 for 14 yards (R.Sherman).,7,17,2012 -20121028_SEA@DET,2,40,57,DET,SEA,1,10,66,(10:57) (Shotgun) M.Leshoure right tackle to DET 37 for 3 yards (C.McDonald K.Wright).,7,17,2012 -20121028_SEA@DET,2,40,19,DET,SEA,2,7,63,(10:19) (Shotgun) M.Stafford pass short left to B.Pettigrew to SEA 45 for 18 yards (K.Chancellor).,7,17,2012 -20121028_SEA@DET,2,39,39,DET,SEA,1,10,45,(9:39) M.Leshoure left tackle to SEA 46 for -1 yards (B.Wagner B.Mebane).,7,17,2012 -20121028_SEA@DET,2,39,0,DET,SEA,2,11,46,(9:00) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,7,17,2012 -20121028_SEA@DET,2,38,56,DET,SEA,3,11,46,(8:56) (Shotgun) M.Stafford pass deep right to T.Young for 46 yards TOUCHDOWN.,7,17,2012 -20121028_SEA@DET,2,38,56,DET,SEA,,,46,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,7,17,2012 -20121028_SEA@DET,2,38,56,DET,SEA,,,46,J.Hanson kicks 69 yards from DET 35 to SEA -4. L.Washington to SEA 17 for 21 yards (T.Whitehead C.Houston).,14,17,2012 -20121028_SEA@DET,2,38,42,SEA,DET,1,10,83,(8:42) (Shotgun) R.Wilson pass short right to G.Tate pushed ob at SEA 24 for 7 yards (C.Houston).,17,14,2012 -20121028_SEA@DET,2,38,3,SEA,DET,2,3,76,(8:03) M.Lynch left tackle to SEA 23 for -1 yards (A.Palmer).,17,14,2012 -20121028_SEA@DET,2,37,26,SEA,DET,3,4,77,(7:26) (Shotgun) R.Wilson pass incomplete short left to M.Lynch.,17,14,2012 -20121028_SEA@DET,2,37,22,SEA,DET,4,4,77,(7:22) J.Ryan punts 64 yards to DET 13 Center-C.Gresham. S.Logan to DET 19 for 6 yards (M.Morgan).,17,14,2012 -20121028_SEA@DET,2,37,9,DET,SEA,1,10,81,(7:09) (Shotgun) M.Stafford pass incomplete short right to M.Leshoure.,14,17,2012 -20121028_SEA@DET,2,37,4,DET,SEA,2,10,81,(7:04) M.Stafford pass incomplete short right to B.Pettigrew [A.Branch].,14,17,2012 -20121028_SEA@DET,2,36,54,DET,SEA,3,10,81,(6:54) (Shotgun) M.Stafford pass short left to K.Smith to DET 26 for 7 yards (G.Scruggs E.Thomas).,14,17,2012 -20121028_SEA@DET,2,36,23,DET,SEA,4,3,74,(6:23) N.Harris punts 47 yards to SEA 27 Center-D.Muhlbach. L.Washington to SEA 45 for 18 yards (W.Heller).,14,17,2012 -20121028_SEA@DET,2,36,10,SEA,DET,1,10,55,(6:10) M.Lynch left end to SEA 47 for 2 yards (J.Durant).,17,14,2012 -20121028_SEA@DET,2,35,34,SEA,DET,2,8,53,(5:34) R.Wilson pass short right to G.Tate to 50 for 3 yards (J.Durant) [N.Suh].,17,14,2012 -20121028_SEA@DET,2,34,49,SEA,DET,3,5,50,(4:49) (Shotgun) R.Wilson pass short middle to C.Martin to DET 46 for 4 yards (R.Silva) [L.Delmas].,17,14,2012 -20121028_SEA@DET,2,34,6,SEA,DET,4,1,46,(4:06) J.Ryan punts 42 yards to DET 4 Center-C.Gresham downed by SEA-J.Lane.,17,14,2012 -20121028_SEA@DET,2,33,57,DET,SEA,1,10,96,(3:57) R.Reiff reported in as eligible. M.Stafford scrambles up the middle to DET 5 for 1 yard (B.Mebane).,14,17,2012 -20121028_SEA@DET,2,33,17,DET,SEA,2,9,95,(3:17) M.Stafford pass short right to T.Young pushed ob at DET 16 for 11 yards (K.Wright E.Thomas).,14,17,2012 -20121028_SEA@DET,2,32,57,DET,SEA,1,10,84,(2:57) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 18 for 2 yards (K.Wright).,14,17,2012 -20121028_SEA@DET,2,32,18,DET,SEA,2,8,82,(2:18) (Shotgun) M.Stafford pass short middle to T.Scheffler to DET 25 for 7 yards (K.Chancellor).,14,17,2012 -20121028_SEA@DET,2,32,0,DET,SEA,3,1,75,(2:00) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 35 for 10 yards (K.Wright).,14,17,2012 -20121028_SEA@DET,2,31,32,DET,SEA,1,10,65,(1:32) (No Huddle Shotgun) M.Leshoure up the middle to DET 39 for 4 yards (K.Chancellor).,14,17,2012 -20121028_SEA@DET,2,31,8,DET,SEA,2,6,61,(1:08) (No Huddle Shotgun) M.Stafford pass incomplete deep left to R.Broyles.,14,17,2012 -20121028_SEA@DET,2,31,0,DET,SEA,3,6,61,(1:00) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler [C.Clemons].,14,17,2012 -20121028_SEA@DET,2,30,56,DET,SEA,4,6,61,(:56) N.Harris punts 41 yards to SEA 20 Center-D.Muhlbach fair catch by L.Washington.,14,17,2012 -20121028_SEA@DET,2,30,47,SEA,DET,1,10,80,(:47) (Shotgun) R.Turbin up the middle to SEA 31 for 11 yards (C.Avril).,17,14,2012 -20121028_SEA@DET,2,30,31,SEA,DET,1,10,69,(:31) (No Huddle) R.Wilson pass short middle to R.Turbin to SEA 43 for 12 yards (A.Smith S.Tulloch) [N.Suh].,17,14,2012 -20121028_SEA@DET,2,30,22,SEA,DET,1,10,57,(:22) R.Wilson pass short right to L.Washington pushed ob at 50 for 7 yards (A.Smith).,17,14,2012 -20121028_SEA@DET,2,30,16,SEA,DET,2,3,50,(:16) (Shotgun) R.Wilson pass short middle to L.Washington to DET 41 for 9 yards (J.Durant).,17,14,2012 -20121028_SEA@DET,2,30,12,SEA,DET,1,10,41,(:12) (Shotgun) R.Turbin up the middle to DET 43 for -2 yards (N.Suh).,17,14,2012 -20121028_SEA@DET,2,30,6,SEA,DET,2,12,43,(:06) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,17,14,2012 -20121028_SEA@DET,2,30,2,SEA,DET,3,12,43,(:02) S.Hauschka 61 yard field goal is No Good Short Center-C.Gresham Holder-J.Ryan.,17,14,2012 -20121028_SEA@DET,3,30,0,DET,SEA,,,43,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,14,17,2012 -20121028_SEA@DET,3,30,0,SEA,DET,1,10,80,(15:00) R.Wilson pass short middle to A.McCoy ran ob at SEA 33 for 13 yards (C.Houston).,17,14,2012 -20121028_SEA@DET,3,29,28,SEA,DET,1,10,67,(14:28) M.Lynch left tackle to SEA 36 for 3 yards (L.Delmas).,17,14,2012 -20121028_SEA@DET,3,28,56,SEA,DET,2,7,64,(13:56) (Shotgun) M.Lynch up the middle to SEA 43 for 7 yards (S.Tulloch).,17,14,2012 -20121028_SEA@DET,3,28,15,SEA,DET,1,10,57,(13:15) (Shotgun) R.Wilson pass short left to M.Lynch to SEA 44 for 1 yard (L.Delmas).,17,14,2012 -20121028_SEA@DET,3,27,32,SEA,DET,2,9,56,(12:32) R.Wilson pass incomplete deep middle to S.Rice.,17,14,2012 -20121028_SEA@DET,3,27,25,SEA,DET,3,9,56,(12:25) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,17,14,2012 -20121028_SEA@DET,3,27,19,SEA,DET,4,9,56,(12:19) J.Ryan punts 39 yards to DET 17 Center-C.Gresham fair catch by S.Logan.,17,14,2012 -20121028_SEA@DET,3,27,11,DET,SEA,1,10,83,(12:11) R.Reiff reported in as eligible. M.Stafford sacked at DET 8 for -9 yards (L.Hill).,14,17,2012 -20121028_SEA@DET,3,26,38,DET,SEA,2,19,92,(11:38) (Shotgun) M.Stafford pass short right to T.Young pushed ob at DET 16 for 8 yards (R.Sherman).,14,17,2012 -20121028_SEA@DET,3,26,4,DET,SEA,3,11,84,(11:04) (Shotgun) M.Stafford pass short middle to R.Broyles to DET 28 for 12 yards (K.Wright R.Sherman).,14,17,2012 -20121028_SEA@DET,3,25,23,DET,SEA,1,10,72,(10:23) J.Bell left tackle to DET 33 for 5 yards (C.McDonald).,14,17,2012 -20121028_SEA@DET,3,24,41,DET,SEA,2,5,67,(9:41) R.Reiff reported in as eligible. M.Stafford scrambles left end ran ob at DET 43 for 10 yards (B.Wagner).,14,17,2012 -20121028_SEA@DET,3,24,2,DET,SEA,1,10,57,(9:02) (Shotgun) J.Bell up the middle to DET 45 for 2 yards (B.Mebane).,14,17,2012 -20121028_SEA@DET,3,23,20,DET,SEA,2,8,55,(8:20) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (B.Browner).,14,17,2012 -20121028_SEA@DET,3,23,11,DET,SEA,3,8,55,(8:11) (Shotgun) M.Stafford pass short right to B.Pettigrew to SEA 47 for 8 yards (B.Wagner; K.Chancellor).,14,17,2012 -20121028_SEA@DET,3,22,24,DET,SEA,1,10,47,(7:24) J.Bell right end to SEA 45 for 2 yards (B.Wagner).,14,17,2012 -20121028_SEA@DET,3,21,42,DET,SEA,2,8,45,(6:42) (Shotgun) M.Stafford pass incomplete short right to R.Broyles (E.Thomas).,14,17,2012 -20121028_SEA@DET,3,21,38,DET,SEA,3,8,45,(6:38) (Shotgun) M.Stafford pass short right to T.Young to SEA 36 for 9 yards (R.Sherman). Penalty on SEA-B.Browner Defensive Holding declined. Seattle challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),14,17,2012 -20121028_SEA@DET,3,21,7,DET,SEA,1,10,36,(6:07) (Shotgun) M.Leshoure right end to SEA 29 for 7 yards (B.Wagner; A.Branch).,14,17,2012 -20121028_SEA@DET,3,20,25,DET,SEA,2,3,29,(5:25) M.Stafford pass deep left intended for T.Scheffler INTERCEPTED by E.Thomas at SEA 3. E.Thomas to SEA 3 for no gain (T.Scheffler).,14,17,2012 -20121028_SEA@DET,3,20,18,SEA,DET,1,10,97,(5:18) R.Turbin left tackle to SEA 2 for -1 yards (N.Suh).,17,14,2012 -20121028_SEA@DET,3,19,37,SEA,DET,2,11,98,(4:37) R.Wilson pass short right to M.Robinson pushed ob at SEA 8 for 6 yards (J.Durant).,17,14,2012 -20121028_SEA@DET,3,19,3,SEA,DET,3,5,92,(4:03) (Shotgun) R.Wilson pass short right to R.Turbin pushed ob at SEA 24 for 16 yards (R.Silva).,17,14,2012 -20121028_SEA@DET,3,18,34,SEA,DET,1,10,76,(3:34) S.Rice right end to SEA 27 for 3 yards (L.Jackson; E.Coleman).,17,14,2012 -20121028_SEA@DET,3,17,58,SEA,DET,2,7,73,(2:58) (Shotgun) R.Wilson scrambles to SEA 36 for 9 yards (S.Tulloch).,17,14,2012 -20121028_SEA@DET,3,17,14,SEA,DET,1,10,64,(2:14) R.Wilson pass deep right intended for S.Rice INTERCEPTED by R.Silva at DET 18. R.Silva to DET 44 for 26 yards (M.Lynch).,17,14,2012 -20121028_SEA@DET,3,16,57,DET,SEA,1,10,56,(1:57) (Shotgun) M.Stafford pass short middle to C.Johnson to SEA 31 for 25 yards (B.Browner).,14,17,2012 -20121028_SEA@DET,3,16,18,DET,SEA,1,10,31,(1:18) (Shotgun) J.Bell up the middle to SEA 26 for 5 yards (A.Branch).,14,17,2012 -20121028_SEA@DET,3,15,36,DET,SEA,2,5,26,(:36) M.Stafford pass short left to J.Bell to SEA 17 for 9 yards (B.Wagner).,14,17,2012 -20121028_SEA@DET,4,15,0,DET,SEA,1,10,17,(15:00) (Shotgun) J.Bell right tackle to SEA 14 for 3 yards (K.Wright).,14,17,2012 -20121028_SEA@DET,4,14,17,DET,SEA,2,7,14,(14:17) (Shotgun) J.Bell right tackle to SEA 11 for 3 yards (B.Mebane).,14,17,2012 -20121028_SEA@DET,4,13,35,DET,SEA,3,4,11,(13:35) (Shotgun) M.Stafford pass short middle to B.Pettigrew to SEA 2 for 9 yards (K.Wright; K.Chancellor).,14,17,2012 -20121028_SEA@DET,4,12,46,DET,SEA,1,2,2,(12:46) (Shotgun) K.Smith up the middle to SEA 1 for 1 yard (K.Chancellor).,14,17,2012 -20121028_SEA@DET,4,12,15,DET,SEA,2,1,1,(12:15) (No Huddle) M.Stafford up the middle to SEA 1 for no gain (R.Bryant).,14,17,2012 -20121028_SEA@DET,4,11,42,DET,SEA,3,1,1,(11:42) R.Reiff reported in as eligible. M.Stafford right end for 1 yard TOUCHDOWN.,14,17,2012 -20121028_SEA@DET,4,11,42,DET,SEA,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris. PENALTY on SEA-B.Browner Defensive Offside 5 yards enforced between downs.,14,17,2012 -20121028_SEA@DET,4,11,42,DET,SEA,,,1,J.Hanson kicks 66 yards from DET 40 to SEA -6. L.Washington to SEA 13 for 19 yards (A.Palmer).,21,17,2012 -20121028_SEA@DET,4,11,29,SEA,DET,1,10,87,(11:29) R.Wilson pass short right to G.Tate pushed ob at SEA 22 for 9 yards (C.Houston).,17,21,2012 -20121028_SEA@DET,4,11,0,SEA,DET,2,1,78,(11:00) M.Lynch left tackle to SEA 18 for -4 yards (C.Williams).,17,21,2012 -20121028_SEA@DET,4,10,14,SEA,DET,3,5,82,(10:14) (Shotgun) PENALTY on SEA Delay of Game 5 yards enforced at SEA 18 - No Play.,17,21,2012 -20121028_SEA@DET,4,9,54,SEA,DET,3,10,87,(9:54) (Shotgun) R.Wilson pass short middle to S.Rice to SEA 31 for 18 yards (S.Tulloch E.Coleman).,17,21,2012 -20121028_SEA@DET,4,9,20,SEA,DET,1,10,69,(9:20) (Shotgun) M.Lynch up the middle to SEA 40 for 9 yards (J.Durant).,17,21,2012 -20121028_SEA@DET,4,8,44,SEA,DET,2,1,60,(8:44) M.Robinson up the middle to SEA 42 for 2 yards (L.Jackson; A.Palmer).,17,21,2012 -20121028_SEA@DET,4,8,10,SEA,DET,1,10,58,(8:10) (Shotgun) R.Wilson pass deep right to S.Rice pushed ob at DET 40 for 18 yards (C.Houston).,17,21,2012 -20121028_SEA@DET,4,7,35,SEA,DET,1,10,40,(7:35) R.Wilson pass incomplete short right to Z.Miller (S.Tulloch).,17,21,2012 -20121028_SEA@DET,4,7,29,SEA,DET,2,10,40,(7:29) R.Wilson pass short middle to S.Rice to DET 32 for 8 yards (J.Durant).,17,21,2012 -20121028_SEA@DET,4,6,46,SEA,DET,3,2,32,(6:46) R.Wilson pass incomplete short right to R.Turbin.,17,21,2012 -20121028_SEA@DET,4,6,41,SEA,DET,4,2,32,(6:41) (Shotgun) R.Wilson pass short right to G.Tate to DET 26 for 6 yards (A.Smith).,17,21,2012 -20121028_SEA@DET,4,6,5,SEA,DET,1,10,26,(6:05) M.Lynch left end pushed ob at DET 16 for 10 yards (R.Silva).,17,21,2012 -20121028_SEA@DET,4,5,34,SEA,DET,1,10,16,(5:34) (Shotgun) R.Wilson pass deep left to Z.Miller for 16 yards TOUCHDOWN.,17,21,2012 -20121028_SEA@DET,4,5,34,SEA,DET,,,16,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,17,21,2012 -20121028_SEA@DET,4,5,34,SEA,DET,,,16,S.Hauschka kicks 71 yards from SEA 35 to DET -6. S.Logan Touchback.,24,21,2012 -20121028_SEA@DET,4,5,27,DET,SEA,1,10,80,(5:27) M.Stafford pass short left to C.Johnson to DET 35 for 15 yards (B.Browner).,21,24,2012 -20121028_SEA@DET,4,4,46,DET,SEA,1,10,65,(4:46) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (K.Wright).,21,24,2012 -20121028_SEA@DET,4,4,41,DET,SEA,2,10,65,(4:41) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 40 for 5 yards (M.Trufant).,21,24,2012 -20121028_SEA@DET,4,4,4,DET,SEA,3,5,60,(4:04) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 46 for 6 yards (M.Trufant).,21,24,2012 -20121028_SEA@DET,4,3,26,DET,SEA,1,10,54,(3:26) (Shotgun) M.Stafford pass short left to T.Young to SEA 48 for 6 yards (B.Wagner).,21,24,2012 -20121028_SEA@DET,4,2,43,DET,SEA,2,4,48,(2:43) (Shotgun) M.Stafford pass short left to T.Young to SEA 41 for 7 yards (M.Trufant).,21,24,2012 -20121028_SEA@DET,4,2,4,DET,SEA,1,10,41,(2:04) (Shotgun) M.Stafford pass short left to J.Bell to SEA 36 for 5 yards (B.Browner).,21,24,2012 -20121028_SEA@DET,4,1,57,DET,SEA,2,5,36,(1:57) (Shotgun) M.Stafford pass short right to B.Pettigrew to SEA 25 for 11 yards (B.Wagner; K.Chancellor).,21,24,2012 -20121028_SEA@DET,4,1,27,DET,SEA,1,10,25,(1:27) (Shotgun) J.Bell up the middle to SEA 20 for 5 yards (R.Sherman).,21,24,2012 -20121028_SEA@DET,4,0,59,DET,SEA,2,5,20,(:59) (No Huddle Shotgun) M.Stafford pass short middle to J.Bell to SEA 12 for 8 yards (M.Trufant; B.Wagner).,21,24,2012 -20121028_SEA@DET,4,0,51,DET,SEA,1,10,12,(:51) (Shotgun) M.Stafford pass incomplete short right to T.Scheffler.,21,24,2012 -20121028_SEA@DET,4,0,47,DET,SEA,2,10,12,(:47) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,21,24,2012 -20121028_SEA@DET,4,0,42,DET,SEA,3,10,12,(:42) (Shotgun) M.Stafford pass short middle to J.Bell to SEA 1 for 11 yards (B.Wagner; K.Wright).,21,24,2012 -20121028_SEA@DET,4,0,35,DET,SEA,1,1,1,(:35) (Shotgun) M.Stafford pass incomplete short right to T.Scheffler. Ball thrown away.,21,24,2012 -20121028_SEA@DET,4,0,29,DET,SEA,2,1,1,(:29) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew [C.Clemons].,21,24,2012 -20121028_SEA@DET,4,0,20,DET,SEA,3,1,1,(:20) M.Stafford pass short left to T.Young for 1 yard TOUCHDOWN.,21,24,2012 -20121028_SEA@DET,4,0,20,DET,SEA,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,21,24,2012 -20121028_SEA@DET,4,0,20,DET,SEA,,,1,J.Hanson kicks 42 yards from DET 35 to SEA 23. L.Washington MUFFS catch recovered by SEA-B.Obomanu at SEA 18. B.Obomanu to SEA 18 for no gain (K.Osgood).,28,24,2012 -20121028_SEA@DET,4,0,15,SEA,DET,1,10,82,(:15) (Shotgun) R.Wilson pass incomplete deep left to C.Martin.,24,28,2012 -20121028_SEA@DET,4,0,8,SEA,DET,2,10,82,(:08) (Shotgun) R.Wilson pass short left to C.Martin to SEA 31 for 13 yards. Lateral to G.Tate to SEA 47 for 16 yards. FUMBLES RECOVERED by DET-R.Silva at SEA 37. R.Silva to SEA 37 for no gain (R.Wilson).,24,28,2012 -20121028_SEA@DET,4,0,8,SEA,DET,,,82,                      ,24,28,2012 -20121028_JAC@GB,1,0,0,GB,JAC,,,82,M.Crosby kicks 64 yards from GB 35 to JAX 1. M.Spurlock to JAX 19 for 18 yards (S.Richardson).,0,0,2012 -20121028_JAC@GB,1,59,54,JAC,GB,1,10,81,(14:54) B.Gabbert pass short right to J.Blackmon pushed ob at JAX 34 for 15 yards (D.House C.Hayward).,0,0,2012 -20121028_JAC@GB,1,59,31,JAC,GB,1,10,66,(14:31) R.Jennings left tackle to JAX 38 for 4 yards (C.Hayward).,0,0,2012 -20121028_JAC@GB,1,58,55,JAC,GB,2,6,62,(13:55) B.Gabbert pass short right to C.Shorts pushed ob at JAX 40 for 2 yards (M.Burnett).,0,0,2012 -20121028_JAC@GB,1,58,15,JAC,GB,3,4,60,(13:15) (Shotgun) B.Gabbert sacked at JAX 32 for -8 yards (B.Jones).,0,0,2012 -20121028_JAC@GB,1,57,48,JAC,GB,4,12,68,(12:48) B.Anger punts 46 yards to GB 22 Center-J.Cain fair catch by R.Cobb.,0,0,2012 -20121028_JAC@GB,1,57,40,GB,JAC,1,10,78,(12:40) A.Green left tackle to GB 24 for 2 yards (C.Mosley; J.Mincey).,0,0,2012 -20121028_JAC@GB,1,57,15,GB,JAC,2,8,76,(12:15) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Finley.,0,0,2012 -20121028_JAC@GB,1,57,11,GB,JAC,3,8,76,(12:11) (No Huddle Shotgun) A.Rodgers pass incomplete short left to A.Green.,0,0,2012 -20121028_JAC@GB,1,57,6,GB,JAC,4,8,76,(12:06) T.Masthay punts 42 yards to JAX 34 Center-B.Goode out of bounds.,0,0,2012 -20121028_JAC@GB,1,56,59,JAC,GB,1,10,66,(11:59) R.Jennings right end to JAX 37 for 3 yards (C.Wilson).,0,0,2012 -20121028_JAC@GB,1,56,21,JAC,GB,2,7,63,(11:21) R.Jennings left guard to JAX 40 for 3 yards (B.Raji).,0,0,2012 -20121028_JAC@GB,1,55,39,JAC,GB,3,4,60,(10:39) (Shotgun) B.Gabbert pass deep right to J.Blackmon to GB 24 for 36 yards (M.Burnett).,0,0,2012 -20121028_JAC@GB,1,54,57,JAC,GB,1,10,24,(9:57) (Shotgun) B.Gabbert pass incomplete short left to K.Elliott.,0,0,2012 -20121028_JAC@GB,1,54,54,JAC,GB,2,10,24,(9:54) R.Jennings left guard to GB 22 for 2 yards (M.Burnett).,0,0,2012 -20121028_JAC@GB,1,54,15,JAC,GB,3,8,22,(9:15) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon [C.Matthews]. PENALTY on JAX-E.Monroe Offensive Holding 10 yards enforced at GB 22 - No Play.,0,0,2012 -20121028_JAC@GB,1,54,10,JAC,GB,3,18,32,(9:10) (Shotgun) B.Gabbert pass short right to M.Thomas to GB 20 for 12 yards (T.Williams).,0,0,2012 -20121028_JAC@GB,1,53,27,JAC,GB,4,6,20,(8:27) J.Scobee 38 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20121028_JAC@GB,1,53,27,JAC,GB,,,20,J.Scobee kicks 63 yards from JAX 35 to GB 2. R.Cobb pushed ob at GB 31 for 29 yards (M.Harris). JAX-C.Harris was injured during the play.,3,0,2012 -20121028_JAC@GB,1,53,17,GB,JAC,1,10,69,(8:17) A.Rodgers pass short left to Ja.Jones pushed ob at GB 43 for 12 yards (W.Middleton).,0,3,2012 -20121028_JAC@GB,1,52,41,GB,JAC,1,10,57,(7:41) A.Green up the middle to GB 48 for 5 yards (A.Ross; A.Lane).,0,3,2012 -20121028_JAC@GB,1,52,11,GB,JAC,2,5,52,(7:11) A.Green left tackle to JAX 49 for 3 yards (R.Allen).,0,3,2012 -20121028_JAC@GB,1,51,33,GB,JAC,3,2,49,(6:33) A.Rodgers up the middle to JAX 45 for 4 yards (A.Ross).,0,3,2012 -20121028_JAC@GB,1,50,54,GB,JAC,1,10,45,(5:54) E.Dietrich-Smith reported in as eligible. A.Green up the middle to JAX 44 for 1 yard (J.Stanford; C.Mosley).,0,3,2012 -20121028_JAC@GB,1,50,15,GB,JAC,2,9,44,(5:15) (Shotgun) A.Rodgers pass short left to A.Green to JAX 32 for 12 yards (D.Landry; W.Middleton).,0,3,2012 -20121028_JAC@GB,1,49,31,GB,JAC,1,10,32,(4:31) A.Green right end to JAX 25 for 7 yards (R.Allen).,0,3,2012 -20121028_JAC@GB,1,48,49,GB,JAC,2,3,25,(3:49) (Shotgun) A.Rodgers pass short middle to J.Finley to JAX 5 for 20 yards (M.Harris C.Prosinski).,0,3,2012 -20121028_JAC@GB,1,48,2,GB,JAC,1,5,5,(3:02) (Shotgun) A.Rodgers pass short left to R.Cobb for 5 yards TOUCHDOWN.,0,3,2012 -20121028_JAC@GB,1,48,2,GB,JAC,,,5,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,3,2012 -20121028_JAC@GB,1,48,2,GB,JAC,,,5,M.Crosby kicks 71 yards from GB 35 to JAX -6. M.Spurlock to JAX 11 for 17 yards (J.Bush).,7,3,2012 -20121028_JAC@GB,1,47,51,JAC,GB,1,10,89,(2:51) R.Jennings left end pushed ob at JAX 32 for 21 yards (M.Jennings).,3,7,2012 -20121028_JAC@GB,1,47,21,JAC,GB,1,10,68,(2:21) B.Gabbert pass short left to R.Jennings to JAX 32 for no gain (C.Matthews; R.Pickett).,3,7,2012 -20121028_JAC@GB,1,46,40,JAC,GB,2,10,68,(1:40) R.Jennings left guard to JAX 36 for 4 yards (B.Jones A.Hawk).,3,7,2012 -20121028_JAC@GB,1,46,2,JAC,GB,3,6,64,(1:02) (Shotgun) B.Gabbert pass short right to J.Blackmon to JAX 46 for 10 yards (T.Williams).,3,7,2012 -20121028_JAC@GB,1,45,30,JAC,GB,1,10,54,(:30) B.Gabbert pass incomplete deep middle to M.Lewis.,3,7,2012 -20121028_JAC@GB,1,45,23,JAC,GB,2,10,54,(:23) R.Jennings left end to JAX 44 for -2 yards (C.Matthews).,3,7,2012 -20121028_JAC@GB,2,45,0,JAC,GB,3,12,56,(15:00) (Shotgun) B.Gabbert pass short middle to C.Shorts to GB 41 for 15 yards (D.House; M.Jennings).,3,7,2012 -20121028_JAC@GB,2,44,19,JAC,GB,1,10,41,(14:19) R.Jennings up the middle to GB 39 for 2 yards (A.Hawk M.Jennings).,3,7,2012 -20121028_JAC@GB,2,43,43,JAC,GB,2,8,39,(13:43) B.Gabbert pass deep left to C.Shorts to GB 22 for 17 yards (C.Hayward).,3,7,2012 -20121028_JAC@GB,2,43,3,JAC,GB,1,10,22,(13:03) R.Jennings left tackle to GB 22 for no gain (B.Jones). FUMBLES (B.Jones) RECOVERED by GB-M.Burnett at GB 20. M.Burnett to GB 20 for no gain (R.Jennings).,3,7,2012 -20121028_JAC@GB,2,42,58,GB,JAC,1,10,80,(12:58) A.Rodgers pass incomplete short right to T.Crabtree.,7,3,2012 -20121028_JAC@GB,2,42,53,GB,JAC,2,10,80,(12:53) (No Huddle Shotgun) A.Rodgers pass short left to J.Boykin pushed ob at GB 29 for 9 yards (W.Middleton).,7,3,2012 -20121028_JAC@GB,2,42,26,GB,JAC,3,1,71,(12:26) (No Huddle) A.Rodgers up the middle to GB 30 for 1 yard (T.Alualu).,7,3,2012 -20121028_JAC@GB,2,41,43,GB,JAC,1,10,70,(11:43) (No Huddle) A.Green left guard to GB 29 for -1 yards (G.Selvie).,7,3,2012 -20121028_JAC@GB,2,41,14,GB,JAC,2,11,71,(11:14) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb pushed ob at GB 35 for 6 yards (M.Harris).,7,3,2012 -20121028_JAC@GB,2,40,54,GB,JAC,3,5,65,(10:54) (No Huddle Shotgun) A.Rodgers pass incomplete short right to A.Green (R.Allen).,7,3,2012 -20121028_JAC@GB,2,40,44,GB,JAC,4,5,65,(10:44) T.Masthay punts 65 yards to end zone Center-B.Goode Touchback.,7,3,2012 -20121028_JAC@GB,2,40,35,JAC,GB,1,10,80,(10:35) B.Gabbert pass deep middle to C.Shorts to GB 37 for 43 yards (M.Burnett). Green Bay challenged the pass completion ruling and the play was REVERSED. B.Gabbert pass incomplete deep middle to C.Shorts.,3,7,2012 -20121028_JAC@GB,2,40,29,JAC,GB,2,10,80,(10:29) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 36 for 16 yards (M.Burnett).,3,7,2012 -20121028_JAC@GB,2,39,46,JAC,GB,1,10,64,(9:46) G.Whimper reported in as eligible. R.Jennings left tackle to JAX 37 for 1 yard (J.McMillian).,3,7,2012 -20121028_JAC@GB,2,39,7,JAC,GB,2,9,63,(9:07) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas (T.Williams).,3,7,2012 -20121028_JAC@GB,2,39,2,JAC,GB,3,9,63,(9:02) (Shotgun) B.Gabbert pass incomplete deep middle to M.Lewis.,3,7,2012 -20121028_JAC@GB,2,38,58,JAC,GB,4,9,63,(8:58) B.Anger punt is BLOCKED by D.House Center-J.Cain RECOVERED by GB-D.Moses at JAX -5. TOUCHDOWN.,3,7,2012 -20121028_JAC@GB,2,38,58,GB,JAC,,,63,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,3,2012 -20121028_JAC@GB,2,38,58,GB,JAC,,,63,M.Crosby kicks 62 yards from GB 35 to JAX 3. K.Toston to JAX 27 for 24 yards (R.Francois).,14,3,2012 -20121028_JAC@GB,2,38,40,JAC,GB,1,10,73,(8:40) J.Parmele right tackle to JAX 28 for 1 yard (R.Pickett B.Raji).,3,14,2012 -20121028_JAC@GB,2,38,4,JAC,GB,2,9,72,(8:04) (Shotgun) B.Gabbert pass incomplete short left to J.Blackmon (D.House). PENALTY on GB-D.House Personal Foul 15 yards enforced at JAX 28 - No Play.,3,14,2012 -20121028_JAC@GB,2,37,59,JAC,GB,1,10,57,(7:59) J.Parmele right guard to JAX 45 for 2 yards (A.Hawk).,3,14,2012 -20121028_JAC@GB,2,37,21,JAC,GB,2,8,55,(7:21) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts. PENALTY on GB-M.Neal Defensive Holding 5 yards enforced at JAX 45 - No Play.,3,14,2012 -20121028_JAC@GB,2,37,18,JAC,GB,1,10,50,(7:18) R.Jennings left end to GB 48 for 2 yards (R.Pickett).,3,14,2012 -20121028_JAC@GB,2,36,37,JAC,GB,2,8,48,(6:37) B.Gabbert pass incomplete deep middle to C.Shorts.,3,14,2012 -20121028_JAC@GB,2,36,33,JAC,GB,3,8,48,(6:33) (Shotgun) B.Gabbert pass incomplete short right to M.Lewis.,3,14,2012 -20121028_JAC@GB,2,36,28,JAC,GB,4,8,48,(6:28) B.Anger punts 28 yards to GB 20 Center-J.Cain fair catch by R.Cobb. Yard marker changed due to change of possession.,3,14,2012 -20121028_JAC@GB,2,36,21,GB,JAC,1,10,79,(6:21) A.Rodgers pass short right to A.Green to GB 32 for 11 yards (R.Allen).,14,3,2012 -20121028_JAC@GB,2,35,55,GB,JAC,1,10,68,(5:55) (Shotgun) A.Rodgers pass short left to D.Driver ran ob at GB 39 for 7 yards (W.Middleton). PENALTY on JAX-D.Landry Defensive Holding 5 yards enforced at GB 32 - No Play.,14,3,2012 -20121028_JAC@GB,2,35,29,GB,JAC,1,10,63,(5:29) A.Green left tackle to GB 40 for 3 yards (C.Prosinski).,14,3,2012 -20121028_JAC@GB,2,34,56,GB,JAC,2,7,60,(4:56) A.Green left end to GB 42 for 2 yards (D.Landry).,14,3,2012 -20121028_JAC@GB,2,34,14,GB,JAC,3,5,58,(4:14) (Shotgun) A.Rodgers pass incomplete deep right to J.Boykin. PENALTY on JAX-M.Harris Defensive Holding 5 yards enforced at GB 42 - No Play.,14,3,2012 -20121028_JAC@GB,2,34,8,GB,JAC,1,10,53,(4:08) (Shotgun) A.Rodgers pass incomplete deep middle to J.Finley (C.Prosinski).,14,3,2012 -20121028_JAC@GB,2,33,59,GB,JAC,2,10,53,(3:59) A.Green left guard to GB 47 for no gain (A.Lane).,14,3,2012 -20121028_JAC@GB,2,33,18,GB,JAC,3,10,53,(3:18) (Shotgun) A.Rodgers sacked at GB 40 for -7 yards (J.Mincey).,14,3,2012 -20121028_JAC@GB,2,32,56,GB,JAC,4,17,60,(2:56) (Punt formation) PENALTY on GB-J.Bush False Start 5 yards enforced at GB 40 - No Play.,14,3,2012 -20121028_JAC@GB,2,32,43,GB,JAC,4,22,65,(2:43) T.Masthay punts 36 yards to JAX 29 Center-B.Goode. M.Spurlock MUFFS catch ball out of bounds at JAX 31.,14,3,2012 -20121028_JAC@GB,2,32,35,JAC,GB,1,10,69,(2:35) B.Gabbert pass short left to R.Jennings to GB 45 for 24 yards (B.Jones M.Jennings) [E.Walden].,3,14,2012 -20121028_JAC@GB,2,32,18,JAC,GB,1,10,45,(2:18) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts [C.Matthews].,3,14,2012 -20121028_JAC@GB,2,32,14,JAC,GB,2,10,45,(2:14) (No Huddle Shotgun) B.Gabbert pass deep middle to C.Shorts to GB 10 for 35 yards (M.Burnett).,3,14,2012 -20121028_JAC@GB,2,32,0,JAC,GB,1,10,10,(2:00) (Shotgun) B.Gabbert pass incomplete short middle to M.Spurlock.,3,14,2012 -20121028_JAC@GB,2,31,57,JAC,GB,2,10,10,(1:57) R.Jennings left tackle to GB 7 for 3 yards (A.Hawk; M.Burnett).,3,14,2012 -20121028_JAC@GB,2,31,14,JAC,GB,3,7,7,(1:14) (Shotgun) B.Gabbert pass incomplete short left to R.Jennings [C.Matthews]. PENALTY on GB-E.Walden Defensive Offside 3 yards enforced at GB 7 - No Play.,3,14,2012 -20121028_JAC@GB,2,31,10,JAC,GB,3,4,4,(1:10) (Shotgun) B.Gabbert pass incomplete short middle to M.Lewis.,3,14,2012 -20121028_JAC@GB,2,31,7,JAC,GB,4,4,4,(1:07) J.Scobee 22 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,3,14,2012 -20121028_JAC@GB,2,31,7,JAC,GB,,,4,J.Scobee kicks 73 yards from JAX 35 to GB -8. R.Cobb Touchback.,6,14,2012 -20121028_JAC@GB,2,31,3,GB,JAC,1,10,80,(1:03) (No Huddle Shotgun) A.Rodgers sacked at GB 13 for -7 yards (A.Branch). FUMBLES (A.Branch) RECOVERED by JAX-A.Branch at GB 13. A.Branch to GB 13 for no gain (M.Newhouse).,14,6,2012 -20121028_JAC@GB,2,30,52,JAC,GB,1,10,13,(:52) (Shotgun) B.Gabbert pass short right to M.Lewis pushed ob at GB 8 for 5 yards (B.Jones).,6,14,2012 -20121028_JAC@GB,2,30,48,JAC,GB,2,5,8,(:48) (Shotgun) B.Gabbert pass incomplete short left to M.Thomas.,6,14,2012 -20121028_JAC@GB,2,30,43,JAC,GB,3,5,8,(:43) (Shotgun) B.Gabbert pass short middle to M.Spurlock to GB 1 for 7 yards (B.Jones).,6,14,2012 -20121028_JAC@GB,2,30,30,JAC,GB,1,1,1,(:30) G.Whimper reported in as eligible. B.Gabbert up the middle to GB 1 for no gain (A.Hawk).,6,14,2012 -20121028_JAC@GB,2,30,21,JAC,GB,2,1,1,(:21) B.Gabbert pass short middle to G.Whimper for 1 yard TOUCHDOWN.,6,14,2012 -20121028_JAC@GB,2,30,21,JAC,GB,,,1,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to J.Blackmon is incomplete. ATTEMPT FAILS.,6,14,2012 -20121028_JAC@GB,2,30,21,JAC,GB,,,1,J.Scobee kicks 74 yards from JAX 35 to GB -9. R.Cobb Touchback.,12,14,2012 -20121028_JAC@GB,2,30,17,GB,JAC,1,10,80,(:17) A.Green left tackle to GB 23 for 3 yards (T.Knighton; R.Allen).,14,12,2012 -20121028_JAC@GB,3,30,0,JAC,GB,,,80,J.Scobee kicks 63 yards from JAX 35 to GB 2. R.Cobb to GB 30 for 28 yards (K.Bosworth). GB-J.Worthy was injured during the play.,12,14,2012 -20121028_JAC@GB,3,29,53,GB,JAC,1,10,70,(14:53) (Shotgun) A.Green left guard to GB 32 for 2 yards (J.Mincey A.Lane).,14,12,2012 -20121028_JAC@GB,3,29,28,GB,JAC,2,8,68,(14:28) (No Huddle Shotgun) A.Rodgers pass short right to D.Driver pushed ob at GB 38 for 6 yards (M.Harris).,14,12,2012 -20121028_JAC@GB,3,28,54,GB,JAC,3,2,62,(13:54) (Shotgun) A.Rodgers up the middle to GB 43 for 5 yards (R.Allen). FUMBLES (R.Allen) RECOVERED by JAX-J.Mincey at GB 45. J.Mincey to GB 38 for 7 yards (B.Bulaga). PENALTY on JAX-J.Chick Illegal Use of Hands 0 yards enforced at GB 38 - No Play.,14,12,2012 -20121028_JAC@GB,3,28,43,GB,JAC,1,10,62,(13:43) A.Green right guard to GB 42 for 4 yards (K.Bosworth).,14,12,2012 -20121028_JAC@GB,3,28,2,GB,JAC,2,6,58,(13:02) (Shotgun) A.Rodgers pass incomplete deep left to R.Cobb [G.Selvie].,14,12,2012 -20121028_JAC@GB,3,27,56,GB,JAC,3,6,58,(12:56) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones.,14,12,2012 -20121028_JAC@GB,3,27,51,GB,JAC,4,6,58,(12:51) T.Masthay punts 33 yards to JAX 25 Center-B.Goode fair catch by M.Spurlock.,14,12,2012 -20121028_JAC@GB,3,27,43,JAC,GB,1,10,75,(12:43) B.Gabbert pass incomplete deep right to C.Shorts.,12,14,2012 -20121028_JAC@GB,3,27,38,JAC,GB,2,10,75,(12:38) B.Gabbert sacked at JAX 10 for -15 yards (M.Burnett). FUMBLES (M.Burnett) and recovers at JAX 9. B.Gabbert to JAX 9 for no gain (M.Burnett).,12,14,2012 -20121028_JAC@GB,3,27,1,JAC,GB,3,26,91,(12:01) (Shotgun) B.Gabbert pass short middle to C.Shorts to JAX 15 for 6 yards (C.Hayward; B.Jones).,12,14,2012 -20121028_JAC@GB,3,26,22,JAC,GB,4,20,85,(11:22) B.Anger punts 45 yards to GB 40 Center-J.Cain. R.Cobb to GB 40 for no gain (A.Blake).,12,14,2012 -20121028_JAC@GB,3,26,15,GB,JAC,1,10,60,(11:15) A.Green right tackle to GB 42 for 2 yards (C.Mosley).,14,12,2012 -20121028_JAC@GB,3,25,38,GB,JAC,2,8,58,(10:38) (Shotgun) A.Rodgers pass short left to A.Green to GB 45 for 3 yards (T.Knighton).,14,12,2012 -20121028_JAC@GB,3,24,57,GB,JAC,3,5,55,(9:57) (Shotgun) A.Rodgers pass short right to R.Cobb pushed ob at JAX 41 for 14 yards (C.Harris).,14,12,2012 -20121028_JAC@GB,3,24,26,GB,JAC,1,10,41,(9:26) (Shotgun) A.Rodgers pass incomplete short right to D.Williams.,14,12,2012 -20121028_JAC@GB,3,24,21,GB,JAC,2,10,41,(9:21) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley [G.Selvie].,14,12,2012 -20121028_JAC@GB,3,24,17,GB,JAC,3,10,41,(9:17) (Shotgun) A.Rodgers pass short middle to Ja.Jones to JAX 37 for 4 yards (R.Allen P.Posluszny).,14,12,2012 -20121028_JAC@GB,3,23,37,GB,JAC,4,6,37,(8:37) (Shotgun) T.Masthay pass incomplete deep right to D.Williams.,14,12,2012 -20121028_JAC@GB,3,23,31,JAC,GB,1,10,63,(8:31) R.Jennings up the middle to JAX 38 for 1 yard (R.Pickett B.Jones).,12,14,2012 -20121028_JAC@GB,3,22,49,JAC,GB,2,9,62,(7:49) R.Jennings right tackle to JAX 40 for 2 yards (B.Jones R.Pickett).,12,14,2012 -20121028_JAC@GB,3,22,9,JAC,GB,3,7,60,(7:09) (Shotgun) B.Gabbert pass short left to M.Thomas to JAX 43 for 3 yards (C.Hayward).,12,14,2012 -20121028_JAC@GB,3,21,40,JAC,GB,4,4,57,(6:40) B.Anger punts 57 yards to end zone Center-J.Cain Touchback.,12,14,2012 -20121028_JAC@GB,3,21,31,GB,JAC,1,10,80,(6:31) A.Green left guard to GB 22 for 2 yards (A.Lane T.Knighton).,14,12,2012 -20121028_JAC@GB,3,21,1,GB,JAC,2,8,78,(6:01) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at GB 33 for 11 yards (W.Middleton). PENALTY on JAX-W.Middleton Unnecessary Roughness 15 yards enforced at GB 33.,14,12,2012 -20121028_JAC@GB,3,20,33,GB,JAC,1,10,52,(5:33) A.Rodgers pass short right to J.Starks pushed ob at JAX 43 for 9 yards (D.Landry).,14,12,2012 -20121028_JAC@GB,3,20,9,GB,JAC,2,1,43,(5:09) A.Rodgers pass incomplete short middle to J.Starks.,14,12,2012 -20121028_JAC@GB,3,20,4,GB,JAC,3,1,43,(5:04) E.Dietrich-Smith reported in as eligible. A.Green right tackle to JAX 37 for 6 yards (D.Landry).,14,12,2012 -20121028_JAC@GB,3,19,30,GB,JAC,1,10,37,(4:30) (Shotgun) A.Rodgers pass short right to Ja.Jones to JAX 31 for 6 yards (M.Harris D.Landry).,14,12,2012 -20121028_JAC@GB,3,18,52,GB,JAC,2,4,31,(3:52) E.Dietrich-Smith reported in as eligible. J.Starks up the middle to JAX 23 for 8 yards (C.Prosinski P.Posluszny).,14,12,2012 -20121028_JAC@GB,3,18,15,GB,JAC,1,10,23,(3:15) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at JAX 14 for 9 yards (M.Harris).,14,12,2012 -20121028_JAC@GB,3,17,42,GB,JAC,2,1,14,(2:42) (Shotgun) A.Rodgers pass short right to R.Cobb to JAX 14 for no gain (A.Ross).,14,12,2012 -20121028_JAC@GB,3,17,1,GB,JAC,3,1,14,(2:01) E.Dietrich-Smith reported in as eligible. A.Green right tackle to JAX 14 for no gain (R.Allen).,14,12,2012 -20121028_JAC@GB,3,16,25,GB,JAC,4,1,14,(1:25) M.Crosby 32 yard field goal is No Good Hit Right Upright Center-B.Goode Holder-T.Masthay.,14,12,2012 -20121028_JAC@GB,3,16,21,JAC,GB,1,10,78,(1:21) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon.,12,14,2012 -20121028_JAC@GB,3,16,17,JAC,GB,2,10,78,(1:17) (No Huddle) R.Jennings up the middle to JAX 25 for 3 yards (B.Jones; E.Walden).,12,14,2012 -20121028_JAC@GB,3,15,36,JAC,GB,3,7,75,(:36) (Shotgun) B.Gabbert pass incomplete short left.,12,14,2012 -20121028_JAC@GB,3,15,29,JAC,GB,4,7,75,(:29) B.Anger punts 27 yards to GB 48 Center-J.Cain downed by JAX-J.Parmele.,12,14,2012 -20121028_JAC@GB,3,15,18,GB,JAC,1,10,52,(:18) A.Rodgers pass short left to J.Finley to JAX 48 for 4 yards (W.Middleton).,14,12,2012 -20121028_JAC@GB,4,15,0,GB,JAC,2,6,48,(15:00) (Shotgun) A.Rodgers pass short middle to Ja.Jones to JAX 43 for 5 yards (D.Landry).,14,12,2012 -20121028_JAC@GB,4,14,22,GB,JAC,3,1,43,(14:22) A.Green up the middle to JAX 42 for 1 yard (J.Mincey).,14,12,2012 -20121028_JAC@GB,4,13,44,GB,JAC,1,10,42,(13:44) (Shotgun) A.Rodgers pass deep middle to Ja.Jones to JAX 11 for 31 yards (C.Prosinski).,14,12,2012 -20121028_JAC@GB,4,13,16,GB,JAC,1,10,11,(13:16) (No Huddle) A.Rodgers pass short left to R.Cobb to JAX 8 for 3 yards (W.Middleton). PENALTY on JAX-W.Middleton Tripping 4 yards enforced at JAX 8.,14,12,2012 -20121028_JAC@GB,4,12,43,GB,JAC,1,4,4,(12:43) A.Rodgers pass incomplete short left to Ja.Jones.,14,12,2012 -20121028_JAC@GB,4,12,39,GB,JAC,2,4,4,(12:39) A.Rodgers pass short left to D.Driver for 4 yards TOUCHDOWN.,14,12,2012 -20121028_JAC@GB,4,12,39,GB,JAC,,,4,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,12,2012 -20121028_JAC@GB,4,12,39,GB,JAC,,,4,M.Crosby kicks 70 yards from GB 35 to JAX -5. K.Toston to JAX 20 for 25 yards (R.Francois).,21,12,2012 -20121028_JAC@GB,4,12,31,JAC,GB,1,10,80,(12:31) (Shotgun) B.Gabbert pass short right to R.Jennings ran ob at JAX 21 for 1 yard (E.Walden).,12,21,2012 -20121028_JAC@GB,4,11,59,JAC,GB,2,9,79,(11:59) (Shotgun) B.Gabbert pass short left to M.Thomas to JAX 24 for 3 yards (C.Hayward).,12,21,2012 -20121028_JAC@GB,4,11,19,JAC,GB,3,6,76,(11:19) (Shotgun) B.Gabbert pass short middle to J.Parmele to JAX 40 for 16 yards (D.House; M.Jennings).,12,21,2012 -20121028_JAC@GB,4,10,40,JAC,GB,1,10,60,(10:40) (Shotgun) B.Gabbert pass short right to M.Thomas to JAX 41 for 1 yard (M.Burnett).,12,21,2012 -20121028_JAC@GB,4,10,5,JAC,GB,2,9,59,(10:05) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 49 for 8 yards (T.Williams).,12,21,2012 -20121028_JAC@GB,4,9,28,JAC,GB,3,1,51,(9:28) B.Gabbert pass deep right to J.Blackmon ran ob at GB 26 for 25 yards (J.McMillian). PENALTY on GB-R.Pickett Defensive Offside 5 yards enforced at JAX 49 - No Play. Green Bay challenged the pass completion ruling and the play was REVERSED. B.Gabbert pass incomplete deep right to J.Blackmon. PENALTY on GB-R.Pickett Defensive Offside 5 yards enforced at JAX 49 - No Play.,12,21,2012 -20121028_JAC@GB,4,9,23,JAC,GB,1,10,46,(9:23) R.Jennings right end to GB 41 for 5 yards (C.Hayward M.Burnett).,12,21,2012 -20121028_JAC@GB,4,8,46,JAC,GB,2,5,41,(8:46) (Shotgun) B.Gabbert pass deep left to C.Shorts ran ob at GB 17 for 24 yards (M.Burnett).,12,21,2012 -20121028_JAC@GB,4,8,17,JAC,GB,1,10,17,(8:17) R.Jennings right guard to GB 12 for 5 yards (C.Matthews).,12,21,2012 -20121028_JAC@GB,4,7,38,JAC,GB,2,5,12,(7:38) (Shotgun) B.Gabbert pass incomplete short right to M.Lewis.,12,21,2012 -20121028_JAC@GB,4,7,34,JAC,GB,3,5,12,(7:34) (Shotgun) B.Gabbert pass short left to R.Jennings to GB 14 for -2 yards (J.McMillian).,12,21,2012 -20121028_JAC@GB,4,6,55,JAC,GB,4,7,14,(6:55) J.Scobee 32 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,12,21,2012 -20121028_JAC@GB,4,6,55,JAC,GB,,,14,J.Scobee kicks 64 yards from JAX 35 to GB 1 out of bounds.,15,21,2012 -20121028_JAC@GB,4,6,50,GB,JAC,1,10,60,(6:50) A.Green left guard to GB 43 for 3 yards (A.Lane).,21,15,2012 -20121028_JAC@GB,4,6,11,GB,JAC,2,7,57,(6:11) (Shotgun) A.Rodgers pass incomplete short right to R.Cobb.,21,15,2012 -20121028_JAC@GB,4,6,5,GB,JAC,3,7,57,(6:05) (Shotgun) A.Rodgers pass incomplete short left to J.Finley.,21,15,2012 -20121028_JAC@GB,4,6,0,GB,JAC,4,7,57,(6:00) T.Masthay punts 49 yards to JAX 8 Center-B.Goode fair catch by M.Spurlock.,21,15,2012 -20121028_JAC@GB,4,5,52,JAC,GB,1,10,92,(5:52) (Shotgun) B.Gabbert pass short left to R.Jennings to JAX 23 for 15 yards (M.Jennings; A.Hawk).,15,21,2012 -20121028_JAC@GB,4,5,12,JAC,GB,1,10,77,(5:12) (Shotgun) B.Gabbert pass short left to C.Shorts to JAX 32 for 9 yards (C.Matthews).,15,21,2012 -20121028_JAC@GB,4,4,33,JAC,GB,2,1,68,(4:33) (Shotgun) B.Gabbert pass short left to R.Jennings to 50 for 18 yards (M.Jennings D.House).,15,21,2012 -20121028_JAC@GB,4,3,53,JAC,GB,1,10,50,(3:53) (Shotgun) B.Gabbert pass incomplete deep right to J.Blackmon.,15,21,2012 -20121028_JAC@GB,4,3,47,JAC,GB,2,10,50,(3:47) (Shotgun) B.Gabbert pass incomplete short middle to J.Blackmon.,15,21,2012 -20121028_JAC@GB,4,3,44,JAC,GB,3,10,50,(3:44) (Shotgun) B.Gabbert pass short right to J.Blackmon to GB 44 for 6 yards (C.Hayward).,15,21,2012 -20121028_JAC@GB,4,2,59,JAC,GB,4,4,44,(2:59) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon.,15,21,2012 -20121028_JAC@GB,4,2,55,GB,JAC,1,10,56,(2:55) A.Green right end to GB 47 for 3 yards (R.Allen).,21,15,2012 -20121028_JAC@GB,4,2,49,GB,JAC,2,7,53,(2:49) A.Green right tackle to GB 47 for no gain (G.Selvie).,21,15,2012 -20121028_JAC@GB,4,2,44,GB,JAC,3,7,53,(2:44) (Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones. PENALTY on JAX-W.Middleton Defensive Pass Interference 38 yards enforced at GB 47 - No Play.,21,15,2012 -20121028_JAC@GB,4,2,38,GB,JAC,1,10,15,(2:38) A.Green left tackle to JAX 11 for 4 yards (J.Mincey).,21,15,2012 -20121028_JAC@GB,4,2,0,GB,JAC,2,6,11,(2:00) A.Green left end to JAX 9 for 2 yards (P.Posluszny; D.Landry).,21,15,2012 -20121028_JAC@GB,4,1,17,GB,JAC,3,4,9,(1:17) A.Rodgers pass short right to A.Green to JAX 7 for 2 yards (J.Stanford).,21,15,2012 -20121028_JAC@GB,4,0,31,GB,JAC,4,2,7,(:31) M.Crosby 25 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,21,15,2012 -20121028_JAC@GB,4,0,31,GB,JAC,,,7,M.Crosby kicks 70 yards from GB 35 to JAX -5. K.Toston Touchback.,24,15,2012 -20121028_JAC@GB,4,0,27,JAC,GB,1,10,80,(:27) (Shotgun) B.Gabbert pass incomplete short right to M.Thomas.,15,24,2012 -20121028_JAC@GB,4,0,22,JAC,GB,2,10,80,(:22) (Shotgun) B.Gabbert pass incomplete deep middle to K.Elliott.,15,24,2012 -20121028_JAC@GB,4,0,17,JAC,GB,3,10,80,(:17) (Shotgun) B.Gabbert pass incomplete short right to R.Jennings.,15,24,2012 -20121028_JAC@GB,4,0,12,JAC,GB,4,10,80,(:12) (Shotgun) B.Gabbert pass incomplete short middle to R.Jennings.,15,24,2012 -20121028_JAC@GB,4,0,7,GB,JAC,1,10,20,(:07) A.Rodgers kneels to JAX 21 for -1 yards.,24,15,2012 -20121028_JAC@GB,4,0,7,GB,JAC,,,20,                      ,24,15,2012 -20121028_MIA@NYJ,1,0,0,NYJ,MIA,,,20,N.Folk kicks 64 yards from NYJ 35 to MIA 1. M.Thigpen to MIA 22 for 21 yards (N.Bellore).,0,0,2012 -20121028_MIA@NYJ,1,59,56,MIA,NYJ,1,10,78,(14:56) R.Bush left guard to MIA 22 for no gain (M.Wilkerson).,0,0,2012 -20121028_MIA@NYJ,1,59,30,MIA,NYJ,2,10,78,(14:30) (Shotgun) R.Tannehill pass short right to R.Bush to MIA 28 for 6 yards (D.Davis).,0,0,2012 -20121028_MIA@NYJ,1,59,30,MIA,NYJ,3,4,72,(14:30) (No Huddle Shotgun) PENALTY on NYJ-M.Wilkerson Defensive Offside 5 yards enforced at MIA 28 - No Play.,0,0,2012 -20121028_MIA@NYJ,1,58,32,MIA,NYJ,1,10,67,(13:32) R.Tannehill pass incomplete short right to D.Thomas.,0,0,2012 -20121028_MIA@NYJ,1,58,28,MIA,NYJ,2,10,67,(13:28) R.Bush up the middle pushed ob at NYJ 48 for 19 yards (I.Trufant). PENALTY on NYJ-A.Cromartie Unnecessary Roughness 15 yards enforced at NYJ 48.,0,0,2012 -20121028_MIA@NYJ,1,57,58,MIA,NYJ,1,10,33,(12:58) R.Tannehill pass short right to B.Hartline to NYJ 21 for 12 yards (Y.Bell; J.Grimes).,0,0,2012 -20121028_MIA@NYJ,1,57,12,MIA,NYJ,1,10,21,(12:12) R.Bush left end pushed ob at NYJ 16 for 5 yards (L.Landry).,0,0,2012 -20121028_MIA@NYJ,1,56,52,MIA,NYJ,2,5,16,(11:52) R.Bush right tackle to NYJ 15 for 1 yard (C.Pace).,0,0,2012 -20121028_MIA@NYJ,1,56,11,MIA,NYJ,3,4,15,(11:11) (No Huddle Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,0,0,2012 -20121028_MIA@NYJ,1,56,5,MIA,NYJ,4,4,15,(11:05) D.Carpenter 33 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20121028_MIA@NYJ,1,56,5,MIA,NYJ,,,15,D.Carpenter kicks onside 16 yards from MIA 35 to NYJ 49. RECOVERED by MIA-J.Trusnik.,3,0,2012 -20121028_MIA@NYJ,1,55,57,MIA,NYJ,1,10,49,(10:57) R.Tannehill pass incomplete short right to C.Clay.,3,0,2012 -20121028_MIA@NYJ,1,55,54,MIA,NYJ,2,10,49,(10:54) D.Thomas left tackle to NYJ 44 for 5 yards (D.Harris; M.Devito).,3,0,2012 -20121028_MIA@NYJ,1,55,9,MIA,NYJ,3,5,44,(10:09) (Shotgun) R.Tannehill sacked at MIA 47 for -9 yards (C.Pace).,3,0,2012 -20121028_MIA@NYJ,1,54,34,MIA,NYJ,4,14,53,(9:34) B.Fields punts 53 yards to end zone Center-J.Denney Touchback.,3,0,2012 -20121028_MIA@NYJ,1,54,25,NYJ,MIA,1,10,80,(9:25) S.Greene right tackle to NYJ 19 for -1 yards (R.Starks; C.Clemons).,0,3,2012 -20121028_MIA@NYJ,1,53,46,NYJ,MIA,2,11,81,(8:46) (Shotgun) M.Sanchez pass short left to C.Schilens to NYJ 24 for 5 yards (N.Carroll).,0,3,2012 -20121028_MIA@NYJ,1,53,6,NYJ,MIA,3,6,76,(8:06) J.Smith reported in as eligible. M.Sanchez pass incomplete short right to J.Kerley.,0,3,2012 -20121028_MIA@NYJ,1,53,2,NYJ,MIA,4,6,76,(8:02) R.Malone punts 59 yards to MIA 17 Center-T.Purdum. M.Thigpen to MIA 31 for 14 yards (E.Lankster; G.McIntyre).,0,3,2012 -20121028_MIA@NYJ,1,52,49,MIA,NYJ,1,10,69,(7:49) #8Matt Moore in at QB. (Shotgun) R.Bush up the middle to MIA 35 for 4 yards (D.Harris).,3,0,2012 -20121028_MIA@NYJ,1,52,20,MIA,NYJ,2,6,65,(7:20) R.Bush right tackle to MIA 35 for no gain (M.Wilkerson; D.Harris).,3,0,2012 -20121028_MIA@NYJ,1,51,42,MIA,NYJ,3,6,65,(6:42) (No Huddle Shotgun) Matt.Moore pass incomplete deep left to D.Bess.,3,0,2012 -20121028_MIA@NYJ,1,51,36,MIA,NYJ,4,6,65,(6:36) B.Fields punts 55 yards to NYJ 10 Center-J.Denney out of bounds.,3,0,2012 -20121028_MIA@NYJ,1,51,28,NYJ,MIA,1,10,90,(6:28) M.Sanchez pass incomplete short left to S.Hill (S.Smith).,0,3,2012 -20121028_MIA@NYJ,1,51,26,NYJ,MIA,2,10,90,(6:26) S.Greene up the middle to NYJ 12 for 2 yards (R.Starks).,0,3,2012 -20121028_MIA@NYJ,1,50,40,NYJ,MIA,3,8,88,(5:40) (Shotgun) M.Sanchez pass short middle to D.Keller to NYJ 25 for 13 yards (K.Dansby).,0,3,2012 -20121028_MIA@NYJ,1,50,1,NYJ,MIA,1,10,75,(5:01) S.Greene right tackle to NYJ 28 for 3 yards (K.Burnett).,0,3,2012 -20121028_MIA@NYJ,1,49,20,NYJ,MIA,2,7,72,(4:20) M.Sanchez pass incomplete short right to J.Kerley [T.McDaniel].,0,3,2012 -20121028_MIA@NYJ,1,49,16,NYJ,MIA,3,7,72,(4:16) (Shotgun) M.Sanchez sacked at NYJ 20 for -8 yards (J.Wilson).,0,3,2012 -20121028_MIA@NYJ,1,49,3,NYJ,MIA,4,15,80,(4:03) R.Malone punt is BLOCKED by J.Wilson Center-T.Purdum RECOVERED by MIA-O.Vernon at NYJ 0. TOUCHDOWN.,0,3,2012 -20121028_MIA@NYJ,1,49,3,MIA,NYJ,,,80,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,0,2012 -20121028_MIA@NYJ,1,49,3,MIA,NYJ,,,80,D.Carpenter kicks 65 yards from MIA 35 to NYJ 0. J.McKnight to NYJ 24 for 24 yards (A.Spitler; J.Freeny). NYJ-J.McKnight was injured during the play.,10,0,2012 -20121028_MIA@NYJ,1,48,52,NYJ,MIA,1,10,76,(3:52) J.Smith reported in as eligible. S.Greene left guard to NYJ 27 for 3 yards (J.Odrick; K.Misi).,0,10,2012 -20121028_MIA@NYJ,1,48,13,NYJ,MIA,2,7,73,(3:13) M.Sanchez pass short middle to D.Keller to NYJ 31 for 4 yards (K.Burnett).,0,10,2012 -20121028_MIA@NYJ,1,47,31,NYJ,MIA,3,3,69,(2:31) (Shotgun) M.Sanchez pass short left to J.Kerley to NYJ 37 for 6 yards (R.Jones).,0,10,2012 -20121028_MIA@NYJ,1,46,52,NYJ,MIA,1,10,63,(1:52) M.Sanchez sacked at NYJ 37 for 0 yards (N.Carroll). FUMBLES (N.Carroll) RECOVERED by MIA-P.Soliai at NYJ 32.,0,10,2012 -20121028_MIA@NYJ,1,46,44,MIA,NYJ,1,10,32,(1:44) D.Thomas up the middle to NYJ 30 for 2 yards (M.Wilkerson).,10,0,2012 -20121028_MIA@NYJ,1,45,43,MIA,NYJ,2,8,30,(:43) (Shotgun) Matt.Moore pass short left to D.Bess to NYJ 19 for 11 yards (D.Harris).,10,0,2012 -20121028_MIA@NYJ,1,45,43,MIA,NYJ,1,10,19,(:43) Matt.Moore pass short middle to B.Hartline to NYJ 2 for 17 yards (Y.Bell).,10,0,2012 -20121028_MIA@NYJ,2,45,0,MIA,NYJ,1,2,2,(15:00) N.Garner reported in as eligible. D.Thomas right tackle to NYJ 3 for -1 yards (D.Davis; J.Bush).,10,0,2012 -20121028_MIA@NYJ,2,44,16,MIA,NYJ,2,3,3,(14:16) Matt.Moore pass incomplete short right to A.Fasano.,10,0,2012 -20121028_MIA@NYJ,2,44,13,MIA,NYJ,3,3,3,(14:13) (Shotgun) D.Thomas left guard for 3 yards TOUCHDOWN.,10,0,2012 -20121028_MIA@NYJ,2,44,13,MIA,NYJ,,,3,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,10,0,2012 -20121028_MIA@NYJ,2,44,13,MIA,NYJ,,,3,D.Carpenter kicks 50 yards from MIA 35 to NYJ 15. K.Reuland to NYJ 29 for 14 yards (R.Jones).,17,0,2012 -20121028_MIA@NYJ,2,44,3,NYJ,MIA,1,10,71,(14:03) S.Greene left tackle to NYJ 32 for 3 yards (A.Spitler). MIA-T.McDaniel was injured during the play.,0,17,2012 -20121028_MIA@NYJ,2,43,27,NYJ,MIA,2,7,68,(13:27) (Shotgun) S.Greene left end pushed ob at NYJ 38 for 6 yards (N.Carroll).,0,17,2012 -20121028_MIA@NYJ,2,42,52,NYJ,MIA,3,1,62,(12:52) M.Sanchez pass incomplete short middle to J.Kerley.,0,17,2012 -20121028_MIA@NYJ,2,42,48,NYJ,MIA,4,1,62,(12:48) R.Malone punts 39 yards to MIA 23 Center-T.Purdum fair catch by D.Bess.,0,17,2012 -20121028_MIA@NYJ,2,42,42,MIA,NYJ,1,10,77,(12:42) Matt.Moore pass short left to D.Bess to MIA 29 for 6 yards (L.Landry).,17,0,2012 -20121028_MIA@NYJ,2,42,10,MIA,NYJ,2,4,71,(12:10) (Shotgun) Matt.Moore pass short right to B.Hartline to MIA 37 for 8 yards (Y.Bell).,17,0,2012 -20121028_MIA@NYJ,2,41,43,MIA,NYJ,1,10,63,(11:43) (No Huddle) R.Bush left guard to MIA 41 for 4 yards (M.Wilkerson; D.Davis).,17,0,2012 -20121028_MIA@NYJ,2,41,9,MIA,NYJ,2,6,59,(11:09) (No Huddle) Matt.Moore pass short right to B.Hartline to MIA 45 for 4 yards (A.Cromartie).,17,0,2012 -20121028_MIA@NYJ,2,40,46,MIA,NYJ,3,2,55,(10:46) (No Huddle) Matt.Moore pass incomplete middle to D.Bess (M.Wilkerson).,17,0,2012 -20121028_MIA@NYJ,2,40,46,MIA,NYJ,4,2,55,(10:46) B.Fields punts 55 yards to end zone Center-J.Denney Touchback.,17,0,2012 -20121028_MIA@NYJ,2,40,37,NYJ,MIA,1,10,80,(10:37) (Shotgun) T.Tebow up the middle to NYJ 22 for 2 yards (P.Soliai; R.Jones).,0,17,2012 -20121028_MIA@NYJ,2,39,52,NYJ,MIA,2,8,78,(9:52) M.Sanchez pass incomplete short middle to S.Greene.,0,17,2012 -20121028_MIA@NYJ,2,39,48,NYJ,MIA,3,8,78,(9:48) (Shotgun) J.Smith reported in as eligible. M.Sanchez pass incomplete short left to D.Keller.,0,17,2012 -20121028_MIA@NYJ,2,39,43,NYJ,MIA,4,8,78,(9:43) R.Malone punts 41 yards to MIA 37 Center-T.Purdum. M.Thigpen to MIA 37 for no gain (I.Trufant). PENALTY on NYJ-S.Hill Offensive Offside 5 yards enforced at NYJ 22 - No Play.,0,17,2012 -20121028_MIA@NYJ,2,39,34,NYJ,MIA,4,13,83,(9:34) R.Malone punts 48 yards to MIA 35 Center-T.Purdum downed by NYJ-E.Lankster.,0,17,2012 -20121028_MIA@NYJ,2,39,25,MIA,NYJ,1,10,65,(9:25) Matt.Moore sacked at MIA 34 for -1 yards (B.Thomas).,17,0,2012 -20121028_MIA@NYJ,2,38,53,MIA,NYJ,2,11,66,(8:53) D.Thomas up the middle to MIA 42 for 8 yards (C.Pace).,17,0,2012 -20121028_MIA@NYJ,2,38,20,MIA,NYJ,3,3,58,(8:20) (Shotgun) Matt.Moore pass deep left to M.Moore to NYJ 21 for 37 yards.,17,0,2012 -20121028_MIA@NYJ,2,37,51,MIA,NYJ,1,10,21,(7:51) Matt.Moore pass incomplete short right to D.Bess [I.Trufant].,17,0,2012 -20121028_MIA@NYJ,2,37,10,MIA,NYJ,2,10,21,(7:10) (Shotgun) D.Thomas left end to NYJ 21 for no gain (M.Devito).,17,0,2012 -20121028_MIA@NYJ,2,37,10,MIA,NYJ,3,10,21,(7:10) Matt.Moore pass incomplete deep right to D.Bess (I.Trufant).,17,0,2012 -20121028_MIA@NYJ,2,37,10,MIA,NYJ,4,10,21,(7:10) D.Carpenter 39 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,17,0,2012 -20121028_MIA@NYJ,2,37,10,MIA,NYJ,,,21,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,20,0,2012 -20121028_MIA@NYJ,2,36,59,NYJ,MIA,1,10,80,(6:59) J.Smith reported in as eligible. S.Greene right tackle to NYJ 20 for no gain (P.Soliai).,0,20,2012 -20121028_MIA@NYJ,2,36,22,NYJ,MIA,2,10,80,(6:22) M.Sanchez sacked at NYJ 13 for -7 yards (C.Wake).,0,20,2012 -20121028_MIA@NYJ,2,36,22,NYJ,MIA,3,17,87,(6:22) (Shotgun) PENALTY on NYJ-M.Sanchez Delay of Game 5 yards enforced at NYJ 13 - No Play.,0,20,2012 -20121028_MIA@NYJ,2,35,29,NYJ,MIA,3,22,92,(5:29) (Shotgun) M.Sanchez pass short left to J.Kerley to NYJ 19 for 11 yards (K.Misi).,0,20,2012 -20121028_MIA@NYJ,2,35,0,NYJ,MIA,4,11,81,(5:00) R.Malone punts 54 yards to MIA 27 Center-T.Purdum. M.Thigpen to MIA 39 for 12 yards (D.Davis; I.Trufant).,0,20,2012 -20121028_MIA@NYJ,2,34,48,MIA,NYJ,1,10,61,(4:48) (Shotgun) R.Bush up the middle to MIA 45 for 6 yards (B.Thomas; L.Landry).,20,0,2012 -20121028_MIA@NYJ,2,34,14,MIA,NYJ,2,4,55,(4:14) R.Bush left end to MIA 48 for 3 yards (D.Harris).,20,0,2012 -20121028_MIA@NYJ,2,33,33,MIA,NYJ,3,1,52,(3:33) Matt.Moore pass short right to D.Bess to MIA 46 for -2 yards (A.Cromartie).,20,0,2012 -20121028_MIA@NYJ,2,32,50,MIA,NYJ,4,3,54,(2:50) B.Fields punts 41 yards to NYJ 13 Center-J.Denney fair catch by J.Kerley.,20,0,2012 -20121028_MIA@NYJ,2,32,43,NYJ,MIA,1,10,87,(2:43) M.Sanchez pass short left to S.Hill pushed ob at NYJ 32 for 19 yards (R.Jones).,0,20,2012 -20121028_MIA@NYJ,2,32,14,NYJ,MIA,1,10,68,(2:14) (Shotgun) M.Sanchez pass short middle to C.Schilens to NYJ 46 for 14 yards (N.Carroll).,0,20,2012 -20121028_MIA@NYJ,2,31,59,NYJ,MIA,1,10,54,(1:59) (Shotgun) M.Sanchez pass incomplete short right to E.Gates (R.Starks).,0,20,2012 -20121028_MIA@NYJ,2,31,57,NYJ,MIA,2,10,54,(1:57) (No Huddle Shotgun) M.Sanchez pass short right to E.Gates to MIA 43 for 11 yards (K.Dansby; N.Carroll).,0,20,2012 -20121028_MIA@NYJ,2,31,31,NYJ,MIA,1,10,43,(1:31) (No Huddle Shotgun) M.Sanchez pass short middle to S.Greene to MIA 22 for 21 yards (J.Wilson; J.Lane).,0,20,2012 -20121028_MIA@NYJ,2,31,3,NYJ,MIA,1,10,22,(1:03) M.Sanchez pass short right to E.Gates to MIA 17 for 5 yards (N.Carroll).,0,20,2012 -20121028_MIA@NYJ,2,30,56,NYJ,MIA,2,5,17,(:56) (Shotgun) M.Sanchez pass incomplete short right to S.Hill.,0,20,2012 -20121028_MIA@NYJ,2,30,52,NYJ,MIA,3,5,17,(:52) M.Sanchez pass incomplete deep left to S.Hill.,0,20,2012 -20121028_MIA@NYJ,2,30,47,NYJ,MIA,4,5,17,(:47) N.Folk 35 yard field goal is BLOCKED (O.Vernon) Center-T.Purdum Holder-R.Malone.,0,20,2012 -20121028_MIA@NYJ,2,30,43,MIA,NYJ,1,10,75,(:43) Matt.Moore kneels to MIA 24 for -1 yards.,20,0,2012 -20121028_MIA@NYJ,2,30,19,MIA,NYJ,2,11,76,(:19) Matt.Moore kneels to MIA 23 for -1 yards.,20,0,2012 -20121028_MIA@NYJ,3,30,0,MIA,NYJ,,,76,D.Carpenter kicks 66 yards from MIA 35 to NYJ -1. E.Gates to NYJ 46 for 47 yards (M.Thigpen; J.Trusnik).,20,0,2012 -20121028_MIA@NYJ,3,29,53,NYJ,MIA,1,10,54,(14:53) S.Greene left end to MIA 49 for 5 yards (K.Misi; C.Clemons).,0,20,2012 -20121028_MIA@NYJ,3,29,18,NYJ,MIA,2,5,49,(14:18) S.Greene left end pushed ob at MIA 45 for 4 yards (K.Burnett).,0,20,2012 -20121028_MIA@NYJ,3,28,52,NYJ,MIA,3,1,45,(13:52) L.Hilliard up the middle to MIA 43 for 2 yards (K.Burnett).,0,20,2012 -20121028_MIA@NYJ,3,28,12,NYJ,MIA,1,10,43,(13:12) M.Sanchez pass deep middle to D.Keller to MIA 20 for 23 yards (C.Clemons).,0,20,2012 -20121028_MIA@NYJ,3,27,45,NYJ,MIA,1,10,20,(12:45) S.Greene up the middle to MIA 20 for no gain.,0,20,2012 -20121028_MIA@NYJ,3,27,7,NYJ,MIA,2,10,20,(12:07) M.Sanchez pass incomplete short left to S.Greene.,0,20,2012 -20121028_MIA@NYJ,3,26,59,NYJ,MIA,3,10,20,(11:59) (Shotgun) M.Sanchez pass incomplete deep right to S.Hill.,0,20,2012 -20121028_MIA@NYJ,3,26,59,NYJ,MIA,4,10,20,(11:59) N.Folk 38 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,20,2012 -20121028_MIA@NYJ,3,26,59,NYJ,MIA,,,20,N.Folk kicks 62 yards from NYJ 35 to MIA 3. M.Thigpen to NYJ 40 for 57 yards (M.Dowtin).,3,20,2012 -20121028_MIA@NYJ,3,26,43,MIA,NYJ,1,10,40,(11:43) R.Bush up the middle to NYJ 42 for -2 yards (B.Thomas).,20,3,2012 -20121028_MIA@NYJ,3,26,5,MIA,NYJ,2,12,42,(11:05) R.Bush left tackle to NYJ 40 for 2 yards (D.Davis).,20,3,2012 -20121028_MIA@NYJ,3,25,26,MIA,NYJ,3,10,40,(10:26) (Shotgun) Matt.Moore pass deep left to J.Gaffney pushed ob at NYJ 10 for 30 yards (L.Landry).,20,3,2012 -20121028_MIA@NYJ,3,25,8,MIA,NYJ,1,10,10,(10:08) D.Thomas up the middle to NYJ 7 for 3 yards (D.Muir; Q.Coples).,20,3,2012 -20121028_MIA@NYJ,3,24,38,MIA,NYJ,2,7,7,(9:38) (No Huddle) Matt.Moore pass short right to D.Thomas to NYJ 4 for 3 yards (Y.Bell).,20,3,2012 -20121028_MIA@NYJ,3,23,50,MIA,NYJ,3,4,4,(8:50) Matt.Moore pass short left to A.Fasano for 4 yards TOUCHDOWN.,20,3,2012 -20121028_MIA@NYJ,3,23,50,MIA,NYJ,,,4,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,20,3,2012 -20121028_MIA@NYJ,3,23,50,MIA,NYJ,,,4,D.Carpenter kicks 69 yards from MIA 35 to NYJ -4. E.Gates to NYJ 12 for 16 yards (R.Stanford; J.Amaya).,27,3,2012 -20121028_MIA@NYJ,3,23,42,NYJ,MIA,1,10,88,(8:42) J.Smith reported in as eligible. S.Greene right tackle to NYJ 48 for 36 yards (C.Clemons).,3,27,2012 -20121028_MIA@NYJ,3,23,1,NYJ,MIA,1,10,52,(8:01) J.Grimes right guard to MIA 47 for 5 yards (K.Dansby).,3,27,2012 -20121028_MIA@NYJ,3,22,26,NYJ,MIA,2,5,47,(7:26) M.Sanchez pass incomplete short middle to K.Reuland (K.Burnett).,3,27,2012 -20121028_MIA@NYJ,3,22,20,NYJ,MIA,3,5,47,(7:20) (Shotgun) M.Sanchez pass incomplete short right (K.Dansby).,3,27,2012 -20121028_MIA@NYJ,3,22,20,NYJ,MIA,4,5,47,(7:20) R.Malone punts 33 yards to MIA 14 Center-T.Purdum fair catch by D.Bess.,3,27,2012 -20121028_MIA@NYJ,3,22,9,MIA,NYJ,1,10,86,(7:09) R.Bush left tackle ran ob at MIA 29 for 15 yards.,27,3,2012 -20121028_MIA@NYJ,3,21,41,MIA,NYJ,1,10,71,(6:41) (No Huddle) R.Bush up the middle to MIA 30 for 1 yard (Y.Bell).,27,3,2012 -20121028_MIA@NYJ,3,21,7,MIA,NYJ,2,9,70,(6:07) Matt.Moore pass incomplete deep left to B.Hartline.,27,3,2012 -20121028_MIA@NYJ,3,21,2,MIA,NYJ,3,9,70,(6:02) (Shotgun) Matt.Moore pass incomplete deep left to J.Gaffney. PENALTY on NYJ-M.Dowtin Roughing the Passer 15 yards enforced at MIA 30 - No Play.,27,3,2012 -20121028_MIA@NYJ,3,20,57,MIA,NYJ,1,10,55,(5:57) D.Thomas left end to NYJ 35 for 20 yards. PENALTY on MIA-R.Incognito Offensive Holding 15 yards enforced at MIA 45 - No Play. Penalty on MIA-J.Martin Clipping declined.,27,3,2012 -20121028_MIA@NYJ,3,20,45,MIA,NYJ,1,25,70,(5:45) R.Bush right guard to MIA 31 for 1 yard (D.Harris). FUMBLES (D.Harris) RECOVERED by NYJ-Y.Bell at MIA 32. Y.Bell to MIA 32 for no gain (A.Fasano).,27,3,2012 -20121028_MIA@NYJ,3,20,37,NYJ,MIA,1,10,32,(5:37) S.Greene left guard to MIA 30 for 2 yards (J.Odrick; P.Soliai).,3,27,2012 -20121028_MIA@NYJ,3,20,7,NYJ,MIA,2,8,30,(5:07) M.Sanchez pass incomplete short left to E.Gates.,3,27,2012 -20121028_MIA@NYJ,3,20,6,NYJ,MIA,3,8,30,(5:06) (Shotgun) M.Sanchez pass short middle to E.Gates to MIA 14 for 16 yards (C.Clemons).,3,27,2012 -20121028_MIA@NYJ,3,19,31,NYJ,MIA,1,10,14,(4:31) J.Smith reported in as eligible. S.Greene left tackle to MIA 15 for -1 yards (P.Soliai).,3,27,2012 -20121028_MIA@NYJ,3,18,55,NYJ,MIA,2,11,15,(3:55) (Shotgun) M.Sanchez pass short middle intended for D.Keller INTERCEPTED by C.Clemons at MIA 1. C.Clemons pushed ob at MIA 30 for 29 yards (D.Ferguson).,3,27,2012 -20121028_MIA@NYJ,3,18,45,MIA,NYJ,1,10,70,(3:45) Matt.Moore pass incomplete short left to D.Bess.,27,3,2012 -20121028_MIA@NYJ,3,18,43,MIA,NYJ,2,10,70,(3:43) D.Thomas up the middle to MIA 36 for 6 yards (D.Harris; Q.Coples).,27,3,2012 -20121028_MIA@NYJ,3,18,43,MIA,NYJ,3,4,64,(3:43) (Shotgun) PENALTY on MIA-Matt.Moore False Start 6 yards enforced at MIA 36 - No Play.,27,3,2012 -20121028_MIA@NYJ,3,17,37,MIA,NYJ,3,10,70,(2:37) (Shotgun) Matt.Moore pass incomplete deep left to J.Gaffney.,27,3,2012 -20121028_MIA@NYJ,3,17,31,MIA,NYJ,4,10,70,(2:31) B.Fields punts 58 yards to NYJ 12 Center-J.Denney fair catch by J.Kerley.,27,3,2012 -20121028_MIA@NYJ,3,17,24,NYJ,MIA,1,10,88,(2:24) M.Sanchez pass incomplete deep right to D.Keller (R.Jones).,3,27,2012 -20121028_MIA@NYJ,3,17,18,NYJ,MIA,2,10,88,(2:18) M.Sanchez pass short middle to D.Keller to NYJ 16 for 4 yards (K.Burnett; K.Dansby).,3,27,2012 -20121028_MIA@NYJ,3,16,39,NYJ,MIA,3,6,84,(1:39) M.Sanchez pass short right to J.Kerley to NYJ 21 for 5 yards (S.Smith; O.Vernon).,3,27,2012 -20121028_MIA@NYJ,3,16,15,NYJ,MIA,4,1,79,(1:15) J.Smith reported in as eligible. L.Hilliard up the middle to NYJ 26 for 5 yards (K.Randall; T.McDaniel).,3,27,2012 -20121028_MIA@NYJ,3,15,40,NYJ,MIA,1,10,74,(:40) (Shotgun) M.Sanchez pass short left to C.Schilens to NYJ 31 for 5 yards (N.Carroll).,3,27,2012 -20121028_MIA@NYJ,3,15,14,NYJ,MIA,2,5,69,(:14) (Shotgun) M.Sanchez pass incomplete short left to C.Schilens.,3,27,2012 -20121028_MIA@NYJ,3,15,12,NYJ,MIA,3,5,69,(:12) (Shotgun) M.Sanchez pass incomplete deep middle to J.Kerley [C.Wake].,3,27,2012 -20121028_MIA@NYJ,3,15,12,NYJ,MIA,4,5,69,(:12) R.Malone punts 41 yards to MIA 28 Center-T.Purdum fair catch by D.Bess.,3,27,2012 -20121028_MIA@NYJ,4,15,0,MIA,NYJ,1,10,72,(15:00) D.Thomas up the middle to MIA 35 for 7 yards (I.Trufant).,27,3,2012 -20121028_MIA@NYJ,4,14,25,MIA,NYJ,2,3,65,(14:25) (No Huddle Shotgun) D.Thomas left guard to MIA 37 for 2 yards (M.Wilkerson; D.Muir).,27,3,2012 -20121028_MIA@NYJ,4,13,48,MIA,NYJ,3,1,63,(13:48) N.Garner reported in as eligible. D.Thomas up the middle to MIA 36 for -1 yards (D.Davis).,27,3,2012 -20121028_MIA@NYJ,4,13,48,MIA,NYJ,4,2,64,(13:48) B.Fields punts 58 yards to NYJ 6 Center-J.Denney out of bounds.,27,3,2012 -20121028_MIA@NYJ,4,12,59,NYJ,MIA,1,10,94,(12:59) (Shotgun) S.Greene right guard to NYJ 13 for 7 yards (C.Clemons).,3,27,2012 -20121028_MIA@NYJ,4,12,21,NYJ,MIA,2,3,87,(12:21) (Shotgun) M.Sanchez pass short right to S.Hill to NYJ 23 for 10 yards (D.Shelby).,3,27,2012 -20121028_MIA@NYJ,4,11,49,NYJ,MIA,1,10,77,(11:49) (No Huddle Shotgun) M.Sanchez pass short left to D.Keller to NYJ 27 for 4 yards (K.Dansby).,3,27,2012 -20121028_MIA@NYJ,4,11,19,NYJ,MIA,2,6,73,(11:19) (No Huddle Shotgun) M.Sanchez pass short right to D.Keller to NYJ 43 for 16 yards (K.Dansby; R.Jones).,3,27,2012 -20121028_MIA@NYJ,4,10,43,NYJ,MIA,1,10,57,(10:43) (No Huddle Shotgun) M.Sanchez pass short middle to S.Greene to MIA 49 for 8 yards (A.Spitler).,3,27,2012 -20121028_MIA@NYJ,4,10,15,NYJ,MIA,2,2,49,(10:15) (No Huddle Shotgun) M.Sanchez pass short left to E.Gates to MIA 45 for 4 yards (N.Carroll).,3,27,2012 -20121028_MIA@NYJ,4,9,51,NYJ,MIA,1,10,45,(9:51) (No Huddle Shotgun) S.Greene up the middle to MIA 37 for 8 yards (C.Clemons).,3,27,2012 -20121028_MIA@NYJ,4,9,28,NYJ,MIA,2,2,37,(9:28) (No Huddle Shotgun) M.Sanchez sacked at MIA 42 for -5 yards (K.Burnett).,3,27,2012 -20121028_MIA@NYJ,4,8,48,NYJ,MIA,3,7,42,(8:48) (Shotgun) M.Sanchez pass incomplete short right to E.Gates.,3,27,2012 -20121028_MIA@NYJ,4,8,43,NYJ,MIA,4,7,42,(8:43) (Shotgun) M.Sanchez pass short right to E.Gates to MIA 25 for 17 yards (S.Smith).,3,27,2012 -20121028_MIA@NYJ,4,8,14,NYJ,MIA,1,10,25,(8:14) (No Huddle Shotgun) M.Sanchez pass incomplete short left to D.Keller.,3,27,2012 -20121028_MIA@NYJ,4,8,9,NYJ,MIA,2,10,25,(8:09) M.Sanchez pass deep middle to E.Gates to MIA 5 for 20 yards (C.Clemons).,3,27,2012 -20121028_MIA@NYJ,4,7,23,NYJ,MIA,1,5,5,(7:23) (Shotgun) M.Sanchez pass short right to C.Schilens for 5 yards TOUCHDOWN.,3,27,2012 -20121028_MIA@NYJ,4,7,23,NYJ,MIA,,,5,TWO-POINT CONVERSION ATTEMPT. M.Sanchez pass to D.Keller is incomplete. ATTEMPT FAILS.,3,27,2012 -20121028_MIA@NYJ,4,7,23,NYJ,MIA,,,5,N.Folk kicks onside 10 yards from NYJ 35 to NYJ 45. B.Hartline (didn't try to advance) to NYJ 45 for no gain (L.Hilliard).,9,27,2012 -20121028_MIA@NYJ,4,7,19,MIA,NYJ,1,10,45,(7:19) D.Thomas up the middle to NYJ 41 for 4 yards (I.Trufant; L.Landry).,27,9,2012 -20121028_MIA@NYJ,4,6,36,MIA,NYJ,2,6,41,(6:36) Matt.Moore pass short left to D.Bess to NYJ 28 for 13 yards (I.Trufant).,27,9,2012 -20121028_MIA@NYJ,4,5,53,MIA,NYJ,1,10,28,(5:53) D.Thomas right guard to NYJ 26 for 2 yards (L.Landry).,27,9,2012 -20121028_MIA@NYJ,4,5,47,MIA,NYJ,2,8,26,(5:47) D.Thomas left tackle to NYJ 25 for 1 yard (C.Pace; D.Harris).,27,9,2012 -20121028_MIA@NYJ,4,5,40,MIA,NYJ,3,7,25,(5:40) D.Thomas left end to NYJ 24 for 1 yard (B.Thomas).,27,9,2012 -20121028_MIA@NYJ,4,4,32,MIA,NYJ,4,6,24,(4:32) D.Carpenter 42 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,27,9,2012 -20121028_MIA@NYJ,4,4,32,MIA,NYJ,,,24,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,30,9,2012 -20121028_MIA@NYJ,4,4,30,NYJ,MIA,1,10,80,(4:30) M.Sanchez pass incomplete deep right to S.Hill.,9,30,2012 -20121028_MIA@NYJ,4,4,25,NYJ,MIA,2,10,80,(4:25) (Shotgun) M.Sanchez pass short middle to D.Keller to NYJ 27 for 7 yards (K.Burnett). PENALTY on MIA-K.Burnett Defensive Holding 5 yards enforced at NYJ 20 - No Play.,9,30,2012 -20121028_MIA@NYJ,4,4,18,NYJ,MIA,1,10,75,(4:18) (Shotgun) M.Sanchez pass incomplete to S.Greene (K.Misi) [O.Vernon].,9,30,2012 -20121028_MIA@NYJ,4,4,13,NYJ,MIA,2,10,75,(4:13) (Shotgun) M.Sanchez pass short middle to J.Kerley to NYJ 34 for 9 yards (R.Jones; K.Misi).,9,30,2012 -20121028_MIA@NYJ,4,3,35,NYJ,MIA,3,1,66,(3:35) (No Huddle Shotgun) M.Sanchez pass short right to E.Gates to NYJ 43 for 9 yards (S.Smith).,9,30,2012 -20121028_MIA@NYJ,4,3,6,NYJ,MIA,1,10,57,(3:06) (No Huddle Shotgun) M.Sanchez pass incomplete short right to J.Kerley.,9,30,2012 -20121028_MIA@NYJ,4,3,6,NYJ,MIA,2,10,57,(3:06) (Shotgun) M.Sanchez pass short right to J.Kerley to MIA 45 for 12 yards (C.Clemons).,9,30,2012 -20121028_MIA@NYJ,4,2,43,NYJ,MIA,1,10,45,(2:43) (No Huddle Shotgun) L.Hilliard right tackle to MIA 37 for 8 yards (K.Dansby).,9,30,2012 -20121028_MIA@NYJ,4,2,20,NYJ,MIA,2,2,37,(2:20) (No Huddle Shotgun) M.Sanchez pass incomplete short middle to J.Kerley. PENALTY on MIA-J.Wilson Defensive Holding 5 yards enforced at MIA 37 - No Play.,9,30,2012 -20121028_MIA@NYJ,4,2,16,NYJ,MIA,1,10,32,(2:16) (Shotgun) M.Sanchez scrambles left end to MIA 26 for 6 yards.,9,30,2012 -20121028_MIA@NYJ,4,2,6,NYJ,MIA,2,4,26,(2:06) (Shotgun) M.Sanchez pass short right to J.Grimes pushed ob at MIA 22 for 4 yards (R.Jones).,9,30,2012 -20121028_MIA@NYJ,4,2,0,NYJ,MIA,1,10,22,(2:00) (Shotgun) M.Sanchez pass short left to D.Keller to MIA 19 for 3 yards (K.Dansby) [J.Wilson].,9,30,2012 -20121028_MIA@NYJ,4,1,32,NYJ,MIA,2,7,19,(1:32) (No Huddle Shotgun) M.Sanchez pass incomplete short left to E.Gates (N.Carroll).,9,30,2012 -20121028_MIA@NYJ,4,1,29,NYJ,MIA,3,7,19,(1:29) (Shotgun) M.Sanchez pass incomplete short right to L.Hilliard (R.Starks).,9,30,2012 -20121028_MIA@NYJ,4,1,23,NYJ,MIA,4,7,19,(1:23) (Shotgun) M.Sanchez pass incomplete short middle to J.Kerley (J.Wilson).,9,30,2012 -20121028_MIA@NYJ,4,1,5,MIA,NYJ,1,10,80,(1:05) Yardline difference due to change in possession. Matt.Moore kneels to MIA 19 for -1 yards.,30,9,2012 -20121028_MIA@NYJ,4,0,36,MIA,NYJ,2,11,81,(:36) Matt.Moore up the middle to MIA 18 for -1 yards.,30,9,2012 -20121028_MIA@NYJ,4,0,36,MIA,NYJ,,,81,                      ,30,9,2012 -20121028_ATL@PHI,1,0,0,PHI,ATL,,,81,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,0,0,2012 -20121028_ATL@PHI,1,60,0,ATL,PHI,1,10,80,(15:00) M.Turner right tackle to ATL 22 for 2 yards (C.Matthews).,0,0,2012 -20121028_ATL@PHI,1,59,28,ATL,PHI,2,8,78,(14:28) M.Ryan pass incomplete short middle to M.Turner (F.Cox).,0,0,2012 -20121028_ATL@PHI,1,59,23,ATL,PHI,3,8,78,(14:23) (Shotgun) M.Ryan pass short left to DJ.Davis pushed ob at ATL 37 for 15 yards (N.Allen).,0,0,2012 -20121028_ATL@PHI,1,58,40,ATL,PHI,1,15,68,(13:40) M.Turner up the middle to ATL 30 for -2 yards (D.Landri).,0,0,2012 -20121028_ATL@PHI,1,58,23,ATL,PHI,2,17,70,(13:23) M.Turner up the middle to ATL 37 for 7 yards (N.Allen).,0,0,2012 -20121028_ATL@PHI,1,58,0,ATL,PHI,3,10,63,(13:00) M.Ryan pass incomplete short right. PENALTY on PHI-J.Babin Defensive Holding 5 yards enforced at ATL 37 - No Play.,0,0,2012 -20121028_ATL@PHI,1,57,26,ATL,PHI,1,10,58,(12:26) Jz. Rodgers left guard to ATL 47 for 5 yards (N.Asomugha).,0,0,2012 -20121028_ATL@PHI,1,56,53,ATL,PHI,2,5,53,(11:53) Jz. Rodgers up the middle to 50 for 3 yards (T.Cole).,0,0,2012 -20121028_ATL@PHI,1,56,9,ATL,PHI,3,2,50,(11:09) (Shotgun) M.Ryan pass short right to R.White to PHI 40 for 10 yards (B.Hughes).,0,0,2012 -20121028_ATL@PHI,1,55,31,ATL,PHI,1,10,40,(10:31) (Shotgun) M.Ryan pass short right to M.Turner to PHI 34 for 6 yards (C.Thornton).,0,0,2012 -20121028_ATL@PHI,1,55,0,ATL,PHI,2,4,34,(10:00) M.Turner right end to PHI 31 for 3 yards (B.Graham).,0,0,2012 -20121028_ATL@PHI,1,54,27,ATL,PHI,3,1,31,(9:27) M.Turner right end to PHI 30 for 1 yard (B.Graham).,0,0,2012 -20121028_ATL@PHI,1,53,45,ATL,PHI,1,10,30,(8:45) Jz. Rodgers right end to PHI 29 for 1 yard (B.Graham).,0,0,2012 -20121028_ATL@PHI,1,53,11,ATL,PHI,2,9,29,(8:11) M.Ryan pass short right to T.Gonzalez ran ob at PHI 18 for 11 yards (N.Allen).,0,0,2012 -20121028_ATL@PHI,1,52,44,ATL,PHI,1,10,18,(7:44) Jz. Rodgers up the middle to PHI 20 for -2 yards (C.Jenkins).,0,0,2012 -20121028_ATL@PHI,1,52,2,ATL,PHI,2,12,20,(7:02) M.Ryan pass short left to J.Snelling to PHI 15 for 5 yards (F.Cox).,0,0,2012 -20121028_ATL@PHI,1,51,21,ATL,PHI,3,7,15,(6:21) (Shotgun) M.Ryan pass short right to DJ.Davis for 15 yards TOUCHDOWN.,0,0,2012 -20121028_ATL@PHI,1,51,21,ATL,PHI,,,15,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121028_ATL@PHI,1,51,21,ATL,PHI,,,15,M.Bosher kicks 67 yards from ATL 35 to PHI -2. B.Boykin to PHI 17 for 19 yards (R.McClain).,7,0,2012 -20121028_ATL@PHI,1,51,9,PHI,ATL,1,10,83,(6:09) M.Vick pass incomplete short left to B.Celek.,0,7,2012 -20121028_ATL@PHI,1,51,5,PHI,ATL,2,10,83,(6:05) L.McCoy left end to PHI 16 for -1 yards (T.DeCoud).,0,7,2012 -20121028_ATL@PHI,1,50,25,PHI,ATL,3,11,84,(5:25) (Shotgun) M.Vick sacked at PHI 14 for -2 yards (T.DeCoud).,0,7,2012 -20121028_ATL@PHI,1,50,1,PHI,ATL,4,13,86,(5:01) M.McBriar punts 48 yards to ATL 38 Center-J.Dorenbos. D.Franks to ATL 49 for 11 yards (K.Coleman).,0,7,2012 -20121028_ATL@PHI,1,49,50,ATL,PHI,1,10,51,(4:50) (Shotgun) M.Ryan pass short right to Jz. Rodgers to PHI 46 for 5 yards (D.Tapp).,7,0,2012 -20121028_ATL@PHI,1,49,18,ATL,PHI,2,5,46,(4:18) M.Turner right tackle to PHI 45 for 1 yard (D.Ryans).,7,0,2012 -20121028_ATL@PHI,1,48,35,ATL,PHI,3,4,45,(3:35) (Shotgun) M.Ryan pass short right to J.Jones to PHI 38 for 7 yards (D.Rodgers-Cromartie).,7,0,2012 -20121028_ATL@PHI,1,48,8,ATL,PHI,1,10,38,(3:08) (No Huddle) M.Turner up the middle to PHI 32 for 6 yards (N.Allen).,7,0,2012 -20121028_ATL@PHI,1,47,38,ATL,PHI,2,4,32,(2:38) M.Ryan pass incomplete deep right to J.Jones. PHI-C.Jenkins was injured during the play. His return is Probable. PENALTY on PHI-D.Rodgers-Cromartie Defensive Pass Interference 22 yards enforced at PHI 32 - No Play. Penalty on PHI-D.Rodgers-Cromartie Defensive Holding declined.,7,0,2012 -20121028_ATL@PHI,1,47,33,ATL,PHI,1,10,10,(2:33) M.Turner up the middle to PHI 10 for no gain (B.Graham).,7,0,2012 -20121028_ATL@PHI,1,46,57,ATL,PHI,2,10,10,(1:57) (Shotgun) M.Ryan pass short right to Jz. Rodgers to PHI 7 for 3 yards (D.Ryans).,7,0,2012 -20121028_ATL@PHI,1,46,19,ATL,PHI,3,7,7,(1:19) (Shotgun) M.Ryan pass incomplete short middle to R.White. PENALTY on PHI-M.Kendricks Defensive Pass Interference 1 yard enforced at PHI 7 - No Play.,7,0,2012 -20121028_ATL@PHI,1,46,10,ATL,PHI,1,6,6,(1:10) M.Turner up the middle to PHI 3 for 3 yards (B.Boykin).,7,0,2012 -20121028_ATL@PHI,1,45,36,ATL,PHI,2,3,3,(:36) M.Ryan pass short right to J.Snelling for 3 yards TOUCHDOWN.,7,0,2012 -20121028_ATL@PHI,1,45,36,ATL,PHI,,,3,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 -20121028_ATL@PHI,1,45,36,ATL,PHI,,,3,M.Bosher kicks 59 yards from ATL 35 to PHI 6. B.Boykin to PHI 34 for 28 yards (T.Gallarda; M.Bosher).,14,0,2012 -20121028_ATL@PHI,1,45,24,PHI,ATL,1,10,66,(:24) (Shotgun) M.Vick pass short middle to J.Avant to PHI 42 for 8 yards (C.Owens).,0,14,2012 -20121028_ATL@PHI,2,45,0,PHI,ATL,2,2,58,(15:00) (Shotgun) M.Vick pass incomplete deep left to D.Jackson (R.McClain).,0,14,2012 -20121028_ATL@PHI,2,44,54,PHI,ATL,3,2,58,(14:54) M.Vick pass short left to D.Jackson to PHI 45 for 3 yards (T.DeCoud).,0,14,2012 -20121028_ATL@PHI,2,44,19,PHI,ATL,1,10,55,(14:19) L.McCoy left guard to PHI 46 for 1 yard (K.Biermann).,0,14,2012 -20121028_ATL@PHI,2,43,32,PHI,ATL,2,9,54,(13:32) M.Vick pass short right to J.Maclin ran ob at ATL 49 for 5 yards.,0,14,2012 -20121028_ATL@PHI,2,43,14,PHI,ATL,3,4,49,(13:14) (Shotgun) M.Vick scrambles right end to ATL 42 for 7 yards (S.Nicholas).,0,14,2012 -20121028_ATL@PHI,2,42,30,PHI,ATL,1,10,42,(12:30) (Shotgun) M.Vick pass short left to B.Celek to ATL 40 for 2 yards (K.Biermann; S.Nicholas).,0,14,2012 -20121028_ATL@PHI,2,41,57,PHI,ATL,2,8,40,(11:57) M.Vick pass short left to J.Maclin to ATL 28 for 12 yards (K.Biermann).,0,14,2012 -20121028_ATL@PHI,2,41,23,PHI,ATL,1,10,28,(11:23) L.McCoy right end to ATL 26 for 2 yards (J.Abraham).,0,14,2012 -20121028_ATL@PHI,2,40,48,PHI,ATL,2,8,26,(10:48) (Shotgun) PENALTY on ATL-J.Abraham Neutral Zone Infraction 5 yards enforced at ATL 26 - No Play.,0,14,2012 -20121028_ATL@PHI,2,40,37,PHI,ATL,2,3,21,(10:37) (Shotgun) L.McCoy left end to ATL 14 for 7 yards (T.DeCoud).,0,14,2012 -20121028_ATL@PHI,2,40,1,PHI,ATL,1,10,14,(10:01) L.McCoy right end to ATL 7 for 7 yards (T.DeCoud).,0,14,2012 -20121028_ATL@PHI,2,39,15,PHI,ATL,2,3,7,(9:15) B.Brown right end to ATL 2 for 5 yards (W.Moore). FUMBLES (W.Moore) and recovers at ATL 2. B.Brown to ATL 2 for no gain (R.McClain).,0,14,2012 -20121028_ATL@PHI,2,38,23,PHI,ATL,1,2,2,(8:23) L.McCoy right end for 2 yards TOUCHDOWN.,0,14,2012 -20121028_ATL@PHI,2,38,23,PHI,ATL,,,2,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,14,2012 -20121028_ATL@PHI,2,38,23,PHI,ATL,,,2,A.Henery kicks 62 yards from PHI 35 to ATL 3. Jz. Rodgers to ATL 27 for 24 yards (D.Sims).,7,14,2012 -20121028_ATL@PHI,2,38,13,ATL,PHI,1,10,73,(8:13) M.Ryan pass short right to R.White to ATL 41 for 14 yards (D.Ryans).,14,7,2012 -20121028_ATL@PHI,2,37,51,ATL,PHI,1,10,59,(7:51) M.Ryan pass short left to Jz. Rodgers to ATL 41 for no gain (A.Jordan). PENALTY on ATL Illegal Formation 5 yards enforced at ATL 41 - No Play.,14,7,2012 -20121028_ATL@PHI,2,37,24,ATL,PHI,1,15,64,(7:24) M.Turner up the middle to ATL 37 for 1 yard (K.Coleman).,14,7,2012 -20121028_ATL@PHI,2,36,41,ATL,PHI,2,14,63,(6:41) (Shotgun) M.Ryan pass short left to J.Jones for 63 yards TOUCHDOWN.,14,7,2012 -20121028_ATL@PHI,2,36,41,ATL,PHI,,,63,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,14,7,2012 -20121028_ATL@PHI,2,36,41,ATL,PHI,,,63,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,21,7,2012 -20121028_ATL@PHI,2,36,33,PHI,ATL,1,10,80,(6:33) (Shotgun) M.Vick pass short left to D.Jackson ran ob at PHI 32 for 12 yards.,7,21,2012 -20121028_ATL@PHI,2,35,55,PHI,ATL,1,10,68,(5:55) (Shotgun) L.McCoy up the middle to PHI 33 for 1 yard (S.Nicholas).,7,21,2012 -20121028_ATL@PHI,2,35,20,PHI,ATL,2,9,67,(5:20) (Shotgun) M.Vick pass short right to J.Avant to PHI 39 for 6 yards (R.McClain).,7,21,2012 -20121028_ATL@PHI,2,34,46,PHI,ATL,3,3,61,(4:46) (Shotgun) M.Vick right tackle to PHI 43 for 4 yards (S.Weatherspoon).,7,21,2012 -20121028_ATL@PHI,2,34,11,PHI,ATL,1,10,57,(4:11) (Shotgun) M.Vick pass short right to J.Maclin to ATL 49 for 8 yards (T.DeCoud).,7,21,2012 -20121028_ATL@PHI,2,33,36,PHI,ATL,2,2,49,(3:36) L.McCoy left guard to ATL 49 for no gain (S.Weatherspoon).,7,21,2012 -20121028_ATL@PHI,2,32,59,PHI,ATL,3,2,49,(2:59) (Shotgun) M.Vick pass incomplete short middle to J.Avant (C.Owens).,7,21,2012 -20121028_ATL@PHI,2,32,56,PHI,ATL,4,2,49,(2:56) M.McBriar punts 40 yards to ATL 9 Center-J.Dorenbos fair catch by D.Franks.,7,21,2012 -20121028_ATL@PHI,2,32,48,ATL,PHI,1,10,91,(2:48) M.Turner left guard to ATL 13 for 4 yards (K.Coleman).,21,7,2012 -20121028_ATL@PHI,2,32,12,ATL,PHI,2,6,87,(2:12) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 20 for 7 yards (N.Allen).,21,7,2012 -20121028_ATL@PHI,2,32,0,ATL,PHI,1,10,80,(2:00) (Shotgun) M.Ryan scrambles right end to ATL 30 for 10 yards (K.Coleman).,21,7,2012 -20121028_ATL@PHI,2,31,40,ATL,PHI,1,10,70,(1:40) (No Huddle) Jz. Rodgers up the middle to ATL 40 for 10 yards (J.Babin).,21,7,2012 -20121028_ATL@PHI,2,31,27,ATL,PHI,1,10,60,(1:27) (No Huddle) Jz. Rodgers up the middle to ATL 41 for 1 yard (F.Cox).,21,7,2012 -20121028_ATL@PHI,2,31,3,ATL,PHI,2,9,59,(1:03) (Shotgun) M.Ryan pass short right to T.Gonzalez to PHI 48 for 11 yards (M.Kendricks). Penalty on PHI-M.Kendricks Defensive Holding declined.,21,7,2012 -20121028_ATL@PHI,2,30,57,ATL,PHI,1,10,48,(:57) (Shotgun) M.Ryan pass incomplete short right to R.White (D.Rodgers-Cromartie).,21,7,2012 -20121028_ATL@PHI,2,30,53,ATL,PHI,2,10,48,(:53) (Shotgun) M.Ryan pass short left to J.Jones pushed ob at PHI 42 for 6 yards (B.Boykin).,21,7,2012 -20121028_ATL@PHI,2,30,47,ATL,PHI,3,4,42,(:47) (Shotgun) M.Ryan pass short right to R.White to PHI 28 for 14 yards (N.Asomugha).,21,7,2012 -20121028_ATL@PHI,2,30,40,ATL,PHI,1,10,28,(:40) M.Ryan pass short right to Jz. Rodgers to PHI 26 for 2 yards (N.Allen).,21,7,2012 -20121028_ATL@PHI,2,30,18,ATL,PHI,2,8,26,(:18) (No Huddle Shotgun) M.Ryan pass incomplete short right to T.Gonzalez (M.Kendricks).,21,7,2012 -20121028_ATL@PHI,2,30,13,ATL,PHI,3,8,26,(:13) (Shotgun) M.Ryan scrambles right end to PHI 25 for 1 yard (C.Jenkins).,21,7,2012 -20121028_ATL@PHI,2,30,6,ATL,PHI,4,7,25,(:06) M.Bryant 43 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,21,7,2012 -20121028_ATL@PHI,2,30,6,ATL,PHI,,,25,M.Bosher kicks 35 yards from ATL 35 to PHI 30. C.Polk (didn't try to advance) to PHI 30 for no gain.,24,7,2012 -20121028_ATL@PHI,2,30,0,PHI,ATL,1,10,70,(:00) (Shotgun) L.McCoy right tackle to PHI 35 for 5 yards (V.Walker).,7,24,2012 -20121028_ATL@PHI,3,30,0,ATL,PHI,,,70,M.Bosher kicks 68 yards from ATL 35 to PHI -3. B.Boykin to PHI 17 for 20 yards (K.Cone).,24,7,2012 -20121028_ATL@PHI,3,29,55,PHI,ATL,1,10,83,(14:55) (Shotgun) M.Vick pass incomplete short right to J.Maclin (A.Samuel).,7,24,2012 -20121028_ATL@PHI,3,29,50,PHI,ATL,2,10,83,(14:50) M.Vick pass short right to D.Jackson to PHI 29 for 12 yards (D.Robinson).,7,24,2012 -20121028_ATL@PHI,3,29,16,PHI,ATL,1,10,71,(14:16) (No Huddle Shotgun) M.Vick right end to PHI 33 for 4 yards (K.Biermann).,7,24,2012 -20121028_ATL@PHI,3,28,38,PHI,ATL,2,6,67,(13:38) (Shotgun) M.Vick pass short middle to B.Celek to PHI 49 for 16 yards (S.Nicholas).,7,24,2012 -20121028_ATL@PHI,3,27,51,PHI,ATL,1,10,51,(12:51) (No Huddle Shotgun) M.Vick pass short right to D.Jackson ran ob at ATL 19 for 32 yards (R.McClain).,7,24,2012 -20121028_ATL@PHI,3,27,24,PHI,ATL,1,10,19,(12:24) M.Vick scrambles up the middle to ATL 15 for 4 yards (T.McClure).,7,24,2012 -20121028_ATL@PHI,3,26,32,PHI,ATL,2,6,15,(11:32) (Shotgun) M.Vick pass incomplete short middle to B.Celek (W.Moore).,7,24,2012 -20121028_ATL@PHI,3,26,28,PHI,ATL,3,6,15,(11:28) (Shotgun) M.Vick pass incomplete short left to D.Jackson [S.Weatherspoon].,7,24,2012 -20121028_ATL@PHI,3,26,23,PHI,ATL,4,6,15,(11:23) A.Henery 33 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,24,2012 -20121028_ATL@PHI,3,26,23,PHI,ATL,,,15,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,10,24,2012 -20121028_ATL@PHI,3,26,20,ATL,PHI,1,10,80,(11:20) M.Turner up the middle to ATL 23 for 3 yards (N.Allen; D.Ryans).,24,10,2012 -20121028_ATL@PHI,3,25,45,ATL,PHI,2,7,77,(10:45) J.Jones right end pushed ob at ATL 32 for 9 yards (D.Rodgers-Cromartie).,24,10,2012 -20121028_ATL@PHI,3,25,19,ATL,PHI,1,10,68,(10:19) M.Ryan pass incomplete short right to L.Polite.,24,10,2012 -20121028_ATL@PHI,3,25,14,ATL,PHI,2,10,68,(10:14) (Shotgun) M.Ryan pass short left to J.Jones to PHI 31 for 37 yards (N.Allen).,24,10,2012 -20121028_ATL@PHI,3,24,51,ATL,PHI,1,10,31,(9:51) M.Turner left end to PHI 20 for 11 yards (A.Jordan).,24,10,2012 -20121028_ATL@PHI,3,24,8,ATL,PHI,1,10,20,(9:08) M.Ryan pass incomplete short right to L.Polite.,24,10,2012 -20121028_ATL@PHI,3,24,3,ATL,PHI,2,10,20,(9:03) (Shotgun) M.Ryan scrambles left end ran ob at PHI 13 for 7 yards.,24,10,2012 -20121028_ATL@PHI,3,23,30,ATL,PHI,3,3,13,(8:30) (Shotgun) M.Ryan pass short middle to J.Snelling to PHI 5 for 8 yards (M.Kendricks).,24,10,2012 -20121028_ATL@PHI,3,23,4,ATL,PHI,1,5,5,(8:04) M.Turner up the middle to PHI 6 for -1 yards (F.Cox).,24,10,2012 -20121028_ATL@PHI,3,22,30,ATL,PHI,2,6,6,(7:30) (Shotgun) M.Ryan pass incomplete short right to J.Jones. PENALTY on ATL-J.Jones Illegal Touch Pass 5 yards enforced at PHI 6 - No Play.,24,10,2012 -20121028_ATL@PHI,3,22,23,ATL,PHI,2,11,11,(7:23) M.Ryan sacked at PHI 16 for -5 yards (C.Thornton).,24,10,2012 -20121028_ATL@PHI,3,21,47,ATL,PHI,3,16,16,(6:47) (Shotgun) M.Ryan pass short right to Jz. Rodgers to PHI 11 for 5 yards (K.Coleman).,24,10,2012 -20121028_ATL@PHI,3,21,15,ATL,PHI,4,11,11,(6:15) M.Bryant 29 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,24,10,2012 -20121028_ATL@PHI,3,21,15,ATL,PHI,,,11,M.Bosher kicks 62 yards from ATL 35 to PHI 3. B.Boykin to PHI 25 for 22 yards (J.Snelling).,27,10,2012 -20121028_ATL@PHI,3,21,5,PHI,ATL,1,10,75,(6:05) M.Vick pass incomplete short right to J.Maclin (S.Nicholas).,10,27,2012 -20121028_ATL@PHI,3,21,1,PHI,ATL,2,10,75,(6:01) (Shotgun) M.Vick pass short right to D.Jackson to PHI 25 for no gain (W.Moore).,10,27,2012 -20121028_ATL@PHI,3,20,24,PHI,ATL,3,10,75,(5:24) (Shotgun) M.Vick scrambles left end ran ob at PHI 34 for 9 yards (R.McClain). Philadelphia challenged the first down ruling and the play was Upheld. (Timeout #1.),10,27,2012 -20121028_ATL@PHI,3,20,10,PHI,ATL,4,1,66,(5:10) M.McBriar punts 56 yards to ATL 10 Center-J.Dorenbos fair catch by D.Franks.,10,27,2012 -20121028_ATL@PHI,3,20,2,ATL,PHI,1,10,90,(5:02) M.Turner up the middle to ATL 8 for -2 yards (D.Ryans).,27,10,2012 -20121028_ATL@PHI,3,19,28,ATL,PHI,2,12,92,(4:28) M.Ryan pass incomplete short right to T.Gonzalez. PENALTY on PHI-M.Kendricks Defensive Pass Interference 14 yards enforced at ATL 8 - No Play.,27,10,2012 -20121028_ATL@PHI,3,19,23,ATL,PHI,1,10,78,(4:23) M.Turner right guard to ATL 28 for 6 yards (N.Allen).,27,10,2012 -20121028_ATL@PHI,3,18,55,ATL,PHI,2,4,72,(3:55) Jz. Rodgers up the middle to ATL 29 for 1 yard (C.Thornton).,27,10,2012 -20121028_ATL@PHI,3,18,1,ATL,PHI,1,10,29,(3:01) J.Snelling up the middle to PHI 28 for 1 yard (D.Ryans).,27,10,2012 -20121028_ATL@PHI,3,17,16,ATL,PHI,2,9,28,(2:16) M.Ryan pass short left to J.Jones to PHI 18 for 10 yards (K.Coleman).,27,10,2012 -20121028_ATL@PHI,3,16,30,ATL,PHI,1,10,18,(1:30) M.Turner up the middle to PHI 17 for 1 yard (C.Thornton; T.Cole).,27,10,2012 -20121028_ATL@PHI,3,15,53,ATL,PHI,2,9,17,(:53) M.Ryan pass incomplete short left to L.Polite.,27,10,2012 -20121028_ATL@PHI,3,15,46,ATL,PHI,3,9,17,(:46) (Shotgun) M.Ryan pass short left to Jz. Rodgers to PHI 12 for 5 yards (D.Ryans).,27,10,2012 -20121028_ATL@PHI,4,15,0,ATL,PHI,4,4,12,(15:00) M.Bryant 30 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,27,10,2012 -20121028_ATL@PHI,4,15,0,ATL,PHI,,,12,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,30,10,2012 -20121028_ATL@PHI,4,14,57,PHI,ATL,1,10,80,(14:57) (Shotgun) M.Vick sacked at PHI 16 for -4 yards (J.Abraham).,10,30,2012 -20121028_ATL@PHI,4,14,25,PHI,ATL,2,14,84,(14:25) (Shotgun) M.Vick pass short left to L.McCoy to PHI 27 for 11 yards (S.Weatherspoon).,10,30,2012 -20121028_ATL@PHI,4,13,39,PHI,ATL,3,3,73,(13:39) (Shotgun) M.Vick scrambles right end to PHI 40 for 13 yards (S.Weatherspoon). Penalty on ATL-J.Abraham Defensive Offside declined.,10,30,2012 -20121028_ATL@PHI,4,13,20,PHI,ATL,1,10,60,(13:20) (Shotgun) L.McCoy left end to 50 for 10 yards (S.Weatherspoon; T.DeCoud).,10,30,2012 -20121028_ATL@PHI,4,12,52,PHI,ATL,1,10,50,(12:52) (Shotgun) L.McCoy right end to ATL 46 for 4 yards (S.Weatherspoon).,10,30,2012 -20121028_ATL@PHI,4,12,27,PHI,ATL,2,6,46,(12:27) (Shotgun) M.Vick pass short left to J.Maclin to ATL 49 for -3 yards (D.Robinson).,10,30,2012 -20121028_ATL@PHI,4,11,48,PHI,ATL,3,9,49,(11:48) (Shotgun) M.Vick pass incomplete short right to R.Cooper (J.Abraham).,10,30,2012 -20121028_ATL@PHI,4,11,45,PHI,ATL,4,9,49,(11:45) (Shotgun) M.Vick pass short right to B.Celek to ATL 35 for 14 yards (K.Biermann; T.DeCoud).,10,30,2012 -20121028_ATL@PHI,4,11,13,PHI,ATL,1,10,35,(11:13) (Shotgun) L.McCoy up the middle to ATL 25 for 10 yards (S.Nicholas).,10,30,2012 -20121028_ATL@PHI,4,10,42,PHI,ATL,1,10,25,(10:42) M.Vick pass short right to J.Avant to ATL 16 for 9 yards (R.McClain).,10,30,2012 -20121028_ATL@PHI,4,10,6,PHI,ATL,2,1,16,(10:06) L.McCoy left end to ATL 17 for -1 yards (J.Babineaux).,10,30,2012 -20121028_ATL@PHI,4,9,29,PHI,ATL,3,2,17,(9:29) (Shotgun) L.McCoy right end to ATL 14 for 3 yards (W.Moore; T.DeCoud).,10,30,2012 -20121028_ATL@PHI,4,8,53,PHI,ATL,1,10,14,(8:53) (Shotgun) M.Vick pass short middle to J.Maclin to ATL 4 for 10 yards (R.McClain).,10,30,2012 -20121028_ATL@PHI,4,8,20,PHI,ATL,1,4,4,(8:20) L.McCoy right tackle to ATL 7 for -3 yards (A.Dent).,10,30,2012 -20121028_ATL@PHI,4,7,39,PHI,ATL,2,7,7,(7:39) (Shotgun) M.Vick pass incomplete short right to J.Avant.,10,30,2012 -20121028_ATL@PHI,4,7,23,PHI,ATL,3,7,7,(7:23) (Shotgun) M.Vick pass short left to L.McCoy for 7 yards TOUCHDOWN.,10,30,2012 -20121028_ATL@PHI,4,7,23,PHI,ATL,,,7,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,30,2012 -20121028_ATL@PHI,4,7,23,PHI,ATL,,,7,A.Henery kicks 57 yards from PHI 35 to ATL 8. Jz. Rodgers to ATL 14 for 6 yards (C.Anderson).,17,30,2012 -20121028_ATL@PHI,4,7,15,ATL,PHI,1,10,86,(7:15) M.Turner right end to ATL 21 for 7 yards (D.Rodgers-Cromartie; D.Ryans).,30,17,2012 -20121028_ATL@PHI,4,6,28,ATL,PHI,2,3,79,(6:28) M.Turner left tackle to ATL 20 for -1 yards (K.Coleman). FUMBLES (K.Coleman) recovered by ATL-J.Blalock at ATL 20. J.Blalock to ATL 20 for no gain (K.Coleman).,30,17,2012 -20121028_ATL@PHI,4,5,40,ATL,PHI,3,4,80,(5:40) (Shotgun) M.Ryan pass incomplete short right to T.Gonzalez.,30,17,2012 -20121028_ATL@PHI,4,5,35,ATL,PHI,4,4,80,(5:35) M.Bosher punts 52 yards to PHI 28 Center-J.Harris. B.Boykin to PHI 35 for 7 yards (S.Nicholas).,30,17,2012 -20121028_ATL@PHI,4,5,24,PHI,ATL,1,10,65,(5:24) (Shotgun) M.Vick pass incomplete short middle to J.Maclin. PENALTY on ATL-S.Nicholas Unnecessary Roughness 15 yards enforced at PHI 35.,17,30,2012 -20121028_ATL@PHI,4,5,20,PHI,ATL,1,10,50,(5:20) (Shotgun) M.Vick pass incomplete short right to J.Maclin (A.Samuel).,17,30,2012 -20121028_ATL@PHI,4,5,13,PHI,ATL,2,10,50,(5:13) (Shotgun) L.McCoy right end pushed ob at PHI 48 for -2 yards (C.Owens).,17,30,2012 -20121028_ATL@PHI,4,4,54,PHI,ATL,3,12,52,(4:54) (Shotgun) M.Vick pass incomplete short middle to J.Avant [R.McClain].,17,30,2012 -20121028_ATL@PHI,4,4,50,PHI,ATL,4,12,52,(4:50) (Shotgun) M.Vick pass incomplete short middle to D.Jackson.,17,30,2012 -20121028_ATL@PHI,4,4,45,ATL,PHI,1,10,48,(4:45) M.Turner up the middle to PHI 44 for 4 yards (C.Matthews).,30,17,2012 -20121028_ATL@PHI,4,4,40,ATL,PHI,2,6,44,(4:40) M.Turner left end to PHI 45 for -1 yards (D.Ryans).,30,17,2012 -20121028_ATL@PHI,4,4,36,ATL,PHI,3,7,45,(4:36) M.Ryan sacked at ATL 44 for -11 yards (C.Jenkins).,30,17,2012 -20121028_ATL@PHI,4,4,36,ATL,PHI,4,18,56,(4:36) (Punt formation) PENALTY on ATL Delay of Game 5 yards enforced at ATL 44 - No Play.,30,17,2012 -20121028_ATL@PHI,4,3,54,ATL,PHI,4,23,61,(3:54) M.Bosher punt is BLOCKED by C.Matthews Center-J.Harris declared dead at PHI 42.,30,17,2012 -20121028_ATL@PHI,4,3,42,PHI,ATL,1,10,58,(3:42) (Shotgun) M.Vick sacked at PHI 35 for -7 yards (K.Biermann).,17,30,2012 -20121028_ATL@PHI,4,3,23,PHI,ATL,2,17,65,(3:23) (Shotgun) M.Vick pass short left to J.Avant pushed ob at PHI 43 for 8 yards (J.Abraham).,17,30,2012 -20121028_ATL@PHI,4,3,16,PHI,ATL,3,9,57,(3:16) (Shotgun) M.Vick pass incomplete deep middle to J.Maclin. PENALTY on PHI-T.Herremans Offensive Holding 10 yards enforced at PHI 43 - No Play.,17,30,2012 -20121028_ATL@PHI,4,3,12,PHI,ATL,3,19,67,(3:12) (Shotgun) M.Vick scrambles left end to PHI 34 for 1 yard (K.Biermann).,17,30,2012 -20121028_ATL@PHI,4,2,31,PHI,ATL,4,18,66,(2:31) (Shotgun) M.Vick pass incomplete short right to S.Havili.,17,30,2012 -20121028_ATL@PHI,4,2,24,ATL,PHI,1,10,34,(2:24) M.Turner right tackle to PHI 32 for 2 yards (A.Jordan).,30,17,2012 -20121028_ATL@PHI,4,2,0,ATL,PHI,2,8,32,(2:00) M.Turner up the middle to PHI 29 for 3 yards (N.Asomugha).,30,17,2012 -20121028_ATL@PHI,4,1,11,ATL,PHI,3,5,29,(1:11) Jz. Rodgers up the middle to PHI 30 for -1 yards (F.Cox).,30,17,2012 -20121028_ATL@PHI,4,0,26,ATL,PHI,4,6,30,(:26) (Shotgun) M.Ryan pass short middle to J.Snelling to PHI 25 for 5 yards (F.Cox). PENALTY on PHI-T.Cole Defensive Offside 5 yards enforced at PHI 30 - No Play.,30,17,2012 -20121028_ATL@PHI,4,0,20,ATL,PHI,4,1,25,(:20) M.Turner up the middle to PHI 25 for no gain (F.Cox). Penalty on PHI-T.Cole Personal Foul offsetting. Penalty on ATL-T.Gonzalez Personal Foul offsetting.,30,17,2012 -20121028_ATL@PHI,4,0,14,PHI,ATL,1,10,75,(:14) (Shotgun) M.Vick pass short left to L.McCoy ran ob at PHI 29 for 4 yards.,17,30,2012 -20121028_ATL@PHI,4,0,0,PHI,ATL,2,6,71,(:00) (Shotgun) M.Vick pass short right to J.Maclin to PHI 30 for 1 yard. Pass back to J.Avant to PHI 44 for 14 yards. FUMBLES ball out of bounds at PHI 44.,17,30,2012 -20121028_ATL@PHI,4,0,0,PHI,ATL,,,71,                      ,17,30,2012 -20121028_WAS@PIT,1,0,0,WAS,PIT,,,71,K.Forbath kicks 62 yards from WAS 35 to PIT 3. C.Rainey to PIT 24 for 21 yards (R.Doughty N.Paul).,0,0,2012 -20121028_WAS@PIT,1,59,55,PIT,WAS,1,10,76,(14:55) J.Dwyer up the middle to PIT 29 for 5 yards (L.Fletcher; B.Cofield).,0,0,2012 -20121028_WAS@PIT,1,59,18,PIT,WAS,2,5,71,(14:18) (Shotgun) B.Roethlisberger pass short right to H.Miller to WAS 46 for 25 yards (L.Fletcher).,0,0,2012 -20121028_WAS@PIT,1,58,36,PIT,WAS,1,10,46,(13:36) J.Dwyer right guard to WAS 42 for 4 yards (L.Fletcher).,0,0,2012 -20121028_WAS@PIT,1,57,57,PIT,WAS,2,6,42,(12:57) (Shotgun) B.Roethlisberger pass short left to M.Wallace to WAS 34 for 8 yards (P.Riley; J.Wilson).,0,0,2012 -20121028_WAS@PIT,1,57,19,PIT,WAS,1,10,34,(12:19) B.Roethlisberger pass short right to M.Wallace to WAS 31 for 3 yards (R.Kerrigan).,0,0,2012 -20121028_WAS@PIT,1,56,40,PIT,WAS,2,7,31,(11:40) B.Roethlisberger pass incomplete deep right to H.Miller. Coverage by #59 Fletcher.,0,0,2012 -20121028_WAS@PIT,1,56,31,PIT,WAS,3,7,31,(11:31) (Shotgun) B.Roethlisberger pass short left to E.Sanders to WAS 16 for 15 yards (J.Wilson).,0,0,2012 -20121028_WAS@PIT,1,55,46,PIT,WAS,1,10,16,(10:46) (Shotgun) B.Roethlisberger pass short right to M.Wallace to WAS 5 for 11 yards (C.Griffin; P.Riley).,0,0,2012 -20121028_WAS@PIT,1,55,5,PIT,WAS,1,5,5,(10:05) J.Dwyer left tackle to WAS 3 for 2 yards (D.Hall).,0,0,2012 -20121028_WAS@PIT,1,54,23,PIT,WAS,2,3,3,(9:23) B.Roethlisberger pass short left to H.Miller to WAS 1 for 2 yards (S.Bowen D.Hall).,0,0,2012 -20121028_WAS@PIT,1,53,41,PIT,WAS,3,1,1,(8:41) J.Dwyer left guard to WAS 1 for no gain (R.Jackson R.Doughty).,0,0,2012 -20121028_WAS@PIT,1,53,2,PIT,WAS,4,1,1,(8:02) B.Roethlisberger pass short right to L.Pope for 1 yard TOUCHDOWN.,0,0,2012 -20121028_WAS@PIT,1,53,2,PIT,WAS,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121028_WAS@PIT,1,53,2,PIT,WAS,,,1,S.Suisham kicks 68 yards from PIT 35 to WAS -3. B.Banks to WAS 19 for 22 yards (W.Allen).,7,0,2012 -20121028_WAS@PIT,1,52,49,WAS,PIT,1,10,81,(7:49) J.Morgan left end to WAS 28 for 9 yards (J.Harrison R.Clark).,0,7,2012 -20121028_WAS@PIT,1,52,14,WAS,PIT,2,1,72,(7:14) A.Morris left end to WAS 28 for no gain (J.Harrison K.Lewis).,0,7,2012 -20121028_WAS@PIT,1,51,33,WAS,PIT,3,1,72,(6:33) A.Morris left tackle to WAS 25 for -3 yards (L.Foote B.Keisel).,0,7,2012 -20121028_WAS@PIT,1,51,1,WAS,PIT,4,4,75,(6:01) (Punt formation) S.Rocca punts 52 yards to PIT 23 Center-J.Snow. A.Brown to PIT 28 for 5 yards (D.Gomes).,0,7,2012 -20121028_WAS@PIT,1,50,48,PIT,WAS,1,10,72,(5:48) J.Dwyer right guard to WAS 38 for 34 yards (Mad.Williams).,7,0,2012 -20121028_WAS@PIT,1,50,3,PIT,WAS,1,10,38,(5:03) E.Sanders sacked at WAS 45 for -7 yards (R.Kerrigan).,7,0,2012 -20121028_WAS@PIT,1,49,18,PIT,WAS,2,17,45,(4:18) B.Roethlisberger pass short right to A.Brown to WAS 43 for 2 yards (D.Hall C.Griffin).,7,0,2012 -20121028_WAS@PIT,1,48,34,PIT,WAS,3,15,43,(3:34) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to WAS 30 for 13 yards (Mad.Williams).,7,0,2012 -20121028_WAS@PIT,1,47,54,PIT,WAS,4,2,30,(2:54) (Field Goal formation) S.Suisham 48 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,7,0,2012 -20121028_WAS@PIT,1,47,54,PIT,WAS,,,30,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,10,0,2012 -20121028_WAS@PIT,1,47,49,WAS,PIT,1,10,80,(2:49) (Shotgun) R.Griffin pass short right to J.Morgan to WAS 32 for 12 yards (L.Foote).,0,10,2012 -20121028_WAS@PIT,1,47,14,WAS,PIT,1,10,68,(2:14) R.Griffin pass deep left to L.Paulsen to PIT 37 for 31 yards (W.Allen).,0,10,2012 -20121028_WAS@PIT,1,46,33,WAS,PIT,1,10,37,(1:33) (Shotgun) D.Young up the middle to PIT 27 for 10 yards (R.Clark).,0,10,2012 -20121028_WAS@PIT,1,46,1,WAS,PIT,1,10,27,(1:01) A.Morris left tackle to PIT 22 for 5 yards (J.Harrison).,0,10,2012 -20121028_WAS@PIT,1,45,24,WAS,PIT,2,5,22,(:24) R.Griffin pass incomplete deep right to L.Hankerson.,0,10,2012 -20121028_WAS@PIT,1,45,16,WAS,PIT,3,5,22,(:16) (Shotgun) R.Griffin pass short left to S.Moss pushed ob at PIT 14 for 8 yards (I.Taylor).,0,10,2012 -20121028_WAS@PIT,2,45,0,WAS,PIT,1,10,14,(15:00) (Shotgun) R.Griffin pass incomplete short middle to D.Briscoe (K.Lewis).,0,10,2012 -20121028_WAS@PIT,2,44,55,WAS,PIT,2,10,14,(14:55) (Shotgun) A.Morris right tackle to PIT 8 for 6 yards (R.Clark J.Harrison).,0,10,2012 -20121028_WAS@PIT,2,44,12,WAS,PIT,3,4,8,(14:12) (Shotgun) R.Griffin pass short left to J.Morgan to PIT 3 for 5 yards (C.Allen).,0,10,2012 -20121028_WAS@PIT,2,43,27,WAS,PIT,1,3,3,(13:27) (Shotgun) PENALTY on WAS-L.Paulsen False Start 5 yards enforced at PIT 3 - No Play.,0,10,2012 -20121028_WAS@PIT,2,43,3,WAS,PIT,1,8,8,(13:03) A.Morris right tackle to PIT 5 for 3 yards (B.Keisel; R.Clark).,0,10,2012 -20121028_WAS@PIT,2,42,22,WAS,PIT,2,5,5,(12:22) (Shotgun) R.Griffin pass incomplete short left to S.Moss [L.Timmons]. Coverage by #24 Taylor.,0,10,2012 -20121028_WAS@PIT,2,42,19,WAS,PIT,3,5,5,(12:19) (Shotgun) R.Griffin right tackle to PIT 2 for 3 yards (E.Hood; K.Lewis).,0,10,2012 -20121028_WAS@PIT,2,41,38,WAS,PIT,4,2,2,(11:38) (Shotgun) R.Griffin pass short middle to S.Moss for 2 yards TOUCHDOWN.,0,10,2012 -20121028_WAS@PIT,2,41,38,WAS,PIT,,,2,K.Forbath extra point is Blocked (E.Hood) Center-J.Snow Holder-S.Rocca.,0,10,2012 -20121028_WAS@PIT,2,41,38,WAS,PIT,,,2,K.Forbath kicks 61 yards from WAS 35 to PIT 4. C.Rainey to PIT 26 for 22 yards (R.Doughty).,6,10,2012 -20121028_WAS@PIT,2,41,25,PIT,WAS,1,10,74,(11:25) (Shotgun) B.Roethlisberger pass short right to E.Sanders to PIT 40 for 14 yards (C.Griffin).,10,6,2012 -20121028_WAS@PIT,2,40,39,PIT,WAS,1,10,60,(10:39) (No Huddle Shotgun) PENALTY on WAS-C.Griffin Encroachment 5 yards enforced at PIT 40 - No Play.,10,6,2012 -20121028_WAS@PIT,2,40,12,PIT,WAS,1,5,55,(10:12) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace. Coverage by #23 Hall.,10,6,2012 -20121028_WAS@PIT,2,40,8,PIT,WAS,2,5,55,(10:08) (Shotgun) C.Rainey up the middle to PIT 48 for 3 yards (R.Kerrigan).,10,6,2012 -20121028_WAS@PIT,2,39,19,PIT,WAS,3,2,52,(9:19) (No Huddle Shotgun) C.Rainey up the middle to WAS 49 for 3 yards (L.Fletcher).,10,6,2012 -20121028_WAS@PIT,2,38,39,PIT,WAS,1,10,49,(8:39) (No Huddle Shotgun) B.Roethlisberger pass short right to A.Brown to WAS 35 for 14 yards (L.Fletcher).,10,6,2012 -20121028_WAS@PIT,2,38,1,PIT,WAS,1,10,35,(8:01) (No Huddle Shotgun) B.Roethlisberger pass deep middle to A.Brown to WAS 17 for 18 yards (C.Griffin; Mad.Williams).,10,6,2012 -20121028_WAS@PIT,2,37,20,PIT,WAS,1,10,17,(7:20) (No Huddle Shotgun) B.Roethlisberger pass short left to M.Wallace to WAS 7 for 10 yards (J.Wilson).,10,6,2012 -20121028_WAS@PIT,2,36,34,PIT,WAS,1,7,7,(6:34) (No Huddle Shotgun) B.Roethlisberger pass incomplete short middle to C.Rainey. Coverage by #56 Riley.,10,6,2012 -20121028_WAS@PIT,2,36,29,PIT,WAS,2,7,7,(6:29) B.Roethlisberger pass incomplete short left to M.Wallace.,10,6,2012 -20121028_WAS@PIT,2,36,24,PIT,WAS,3,7,7,(6:24) (Shotgun) B.Roethlisberger pass short middle to H.Miller for 7 yards TOUCHDOWN.,10,6,2012 -20121028_WAS@PIT,2,36,24,PIT,WAS,,,7,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,10,6,2012 -20121028_WAS@PIT,2,36,24,PIT,WAS,,,7,S.Suisham kicks 68 yards from PIT 35 to WAS -3. B.Banks to WAS 25 for 28 yards (R.Mundy; C.Brown).,17,6,2012 -20121028_WAS@PIT,2,36,7,WAS,PIT,1,10,75,(6:07) R.Griffin pass incomplete deep left to L.Paulsen.,6,17,2012 -20121028_WAS@PIT,2,35,58,WAS,PIT,2,10,75,(5:58) A.Morris left tackle to WAS 37 for 12 yards (E.Hood W.Allen).,6,17,2012 -20121028_WAS@PIT,2,35,16,WAS,PIT,1,10,63,(5:16) R.Griffin pass incomplete short middle to C.Cooley (W.Allen).,6,17,2012 -20121028_WAS@PIT,2,35,9,WAS,PIT,2,10,63,(5:09) A.Morris right tackle to WAS 43 for 6 yards (R.Clark C.Heyward).,6,17,2012 -20121028_WAS@PIT,2,34,27,WAS,PIT,3,4,57,(4:27) (Shotgun) J.Morgan pass incomplete deep left to R.Griffin (I.Taylor). Penalty on WAS-R.Griffin Offensive Pass Interference declined.,6,17,2012 -20121028_WAS@PIT,2,34,17,WAS,PIT,4,4,57,(4:17) (Punt formation) S.Rocca punts 12 yards to PIT 45 Center-J.Snow out of bounds.,6,17,2012 -20121028_WAS@PIT,2,34,9,PIT,WAS,1,10,55,(4:09) (Shotgun) B.Roethlisberger pass short left to E.Sanders pushed ob at WAS 28 for 27 yards (D.Hall).,17,6,2012 -20121028_WAS@PIT,2,33,31,PIT,WAS,1,10,28,(3:31) (No Huddle Shotgun) J.Dwyer left guard to WAS 15 for 13 yards (P.Riley).,17,6,2012 -20121028_WAS@PIT,2,32,52,PIT,WAS,1,10,15,(2:52) (No Huddle Shotgun) J.Dwyer up the middle to WAS 12 for 3 yards (R.Kerrigan).,17,6,2012 -20121028_WAS@PIT,2,32,13,PIT,WAS,2,7,12,(2:13) (No Huddle Shotgun) B.Roethlisberger pass incomplete short right to H.Miller. Coverage by #32 Pugh.,17,6,2012 -20121028_WAS@PIT,2,32,8,PIT,WAS,3,7,12,(2:08) B.Roethlisberger pass short left to M.Wallace to WAS 9 for 3 yards (J.Wilson).,17,6,2012 -20121028_WAS@PIT,2,32,0,PIT,WAS,4,4,9,(2:00) (Field Goal formation) S.Suisham 27 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,17,6,2012 -20121028_WAS@PIT,2,32,0,PIT,WAS,,,9,S.Suisham kicks 72 yards from PIT 35 to WAS -7. B.Banks to WAS 23 for 30 yards (C.Brown).,20,6,2012 -20121028_WAS@PIT,2,31,50,WAS,PIT,1,10,77,(1:50) (Shotgun) R.Griffin pass incomplete short left to E.Royster.,6,20,2012 -20121028_WAS@PIT,2,31,45,WAS,PIT,2,10,77,(1:45) (Shotgun) R.Griffin pass incomplete short right to J.Morgan (K.Lewis).,6,20,2012 -20121028_WAS@PIT,2,31,41,WAS,PIT,3,10,77,(1:41) (Shotgun) R.Griffin pass incomplete short right to S.Moss (W.Allen).,6,20,2012 -20121028_WAS@PIT,2,31,23,PIT,WAS,1,10,41,(1:23) C.Rainey up the middle to WAS 40 for 1 yard (Mad.Williams).,20,6,2012 -20121028_WAS@PIT,2,30,52,PIT,WAS,2,9,40,(:52) B.Roethlisberger pass incomplete short middle to E.Sanders. Coverage by #32 Pugh Pressure by #91 Kerrigan.,20,6,2012 -20121028_WAS@PIT,2,30,46,PIT,WAS,3,9,40,(:46) (Shotgun) B.Roethlisberger pass incomplete short middle to A.Brown. Pressure by #56 Riley.,20,6,2012 -20121028_WAS@PIT,2,30,41,PIT,WAS,4,9,40,(:41) (Punt formation) D.Butler punts 39 yards to WAS 1 Center-G.Warren downed by PIT-C.Brown.,20,6,2012 -20121028_WAS@PIT,2,30,31,WAS,PIT,1,10,99,(:31) R.Griffin up the middle to WAS 2 for 1 yard (C.Hampton; J.Harrison).,6,20,2012 -20121028_WAS@PIT,2,30,26,WAS,PIT,2,9,98,(:26) R.Griffin up the middle to WAS 2 for no gain (L.Timmons). PENALTY on PIT-C.Hampton Defensive Offside 5 yards enforced at WAS 2 - No Play.,6,20,2012 -20121028_WAS@PIT,2,30,23,WAS,PIT,2,4,93,(:23) R.Griffin kneels to WAS 6 for -1 yards.,6,20,2012 -20121028_WAS@PIT,3,30,0,PIT,WAS,,,93,S.Suisham kicks 61 yards from PIT 35 to WAS 4. B.Banks to WAS 21 for 17 yards (C.Allen).,20,6,2012 -20121028_WAS@PIT,3,29,52,WAS,PIT,1,10,79,(14:52) R.Griffin pass deep left to N.Paul pushed ob at PIT 42 for 37 yards (R.Clark).,6,20,2012 -20121028_WAS@PIT,3,29,26,WAS,PIT,1,10,42,(14:26) (Shotgun) R.Griffin right end to PIT 35 for 7 yards (L.Woodley).,6,20,2012 -20121028_WAS@PIT,3,28,56,WAS,PIT,2,3,35,(13:56) (Shotgun) A.Morris right guard to PIT 30 for 5 yards (C.Heyward L.Foote).,6,20,2012 -20121028_WAS@PIT,3,28,23,WAS,PIT,1,10,30,(13:23) A.Morris left tackle to PIT 32 for -2 yards (L.Timmons R.Clark). PIT-R.Clark was injured during the play. His return is Questionable.,6,20,2012 -20121028_WAS@PIT,3,27,51,WAS,PIT,2,12,32,(12:51) (Shotgun) R.Griffin pass incomplete short left to J.Morgan. Pressure by #26 Allen.,6,20,2012 -20121028_WAS@PIT,3,27,35,WAS,PIT,3,12,32,(12:35) (Shotgun) R.Griffin pass short right to J.Morgan to PIT 30 for 2 yards (L.Timmons R.Mundy).,6,20,2012 -20121028_WAS@PIT,3,26,57,WAS,PIT,4,10,30,(11:57) (Field Goal formation) K.Forbath 48 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,6,20,2012 -20121028_WAS@PIT,3,26,57,WAS,PIT,,,30,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,9,20,2012 -20121028_WAS@PIT,3,26,52,PIT,WAS,1,10,80,(11:52) J.Dwyer left tackle pushed ob at PIT 32 for 12 yards (D.Hall).,20,9,2012 -20121028_WAS@PIT,3,26,16,PIT,WAS,1,10,68,(11:16) B.Roethlisberger pass short middle to W.Johnson to PIT 39 for 7 yards (R.Jackson).,20,9,2012 -20121028_WAS@PIT,3,25,34,PIT,WAS,2,3,61,(10:34) J.Dwyer left tackle to PIT 49 for 10 yards (C.Griffin; J.Wilson).,20,9,2012 -20121028_WAS@PIT,3,24,51,PIT,WAS,1,10,51,(9:51) B.Batch up the middle to WAS 48 for 3 yards (B.Cofield).,20,9,2012 -20121028_WAS@PIT,3,24,8,PIT,WAS,2,7,48,(9:08) (Shotgun) B.Roethlisberger pass short left to B.Batch pushed ob at WAS 40 for 8 yards (P.Riley).,20,9,2012 -20121028_WAS@PIT,3,23,35,PIT,WAS,1,10,40,(8:35) B.Roethlisberger pass short right to H.Miller to WAS 28 for 12 yards (D.Hall).,20,9,2012 -20121028_WAS@PIT,3,22,53,PIT,WAS,1,10,28,(7:53) J.Dwyer right tackle to WAS 25 for 3 yards (P.Riley).,20,9,2012 -20121028_WAS@PIT,3,22,12,PIT,WAS,2,7,25,(7:12) B.Roethlisberger pass short left to A.Brown to WAS 21 for 4 yards (R.Doughty).,20,9,2012 -20121028_WAS@PIT,3,21,29,PIT,WAS,3,3,21,(6:29) (Shotgun) Direct snap to C.Rainey. C.Rainey right tackle to WAS 2 for 19 yards (P.Riley).,20,9,2012 -20121028_WAS@PIT,3,20,58,PIT,WAS,1,2,2,(5:58) J.Dwyer right guard to WAS 1 for 1 yard (P.Riley; J.Pugh).,20,9,2012 -20121028_WAS@PIT,3,20,17,PIT,WAS,2,1,1,(5:17) B.Roethlisberger pass short right to W.Johnson for 1 yard TOUCHDOWN.,20,9,2012 -20121028_WAS@PIT,3,20,17,PIT,WAS,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,20,9,2012 -20121028_WAS@PIT,3,20,17,PIT,WAS,,,1,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,27,9,2012 -20121028_WAS@PIT,3,20,13,WAS,PIT,1,10,80,(5:13) A.Morris left end to WAS 31 for 11 yards (R.Mundy).,9,27,2012 -20121028_WAS@PIT,3,20,13,WAS,PIT,1,10,69,(5:13) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at WAS 31 - No Play.,9,27,2012 -20121028_WAS@PIT,3,19,11,WAS,PIT,1,15,74,(4:11) R.Griffin pass incomplete short left to S.Moss.,9,27,2012 -20121028_WAS@PIT,3,19,5,WAS,PIT,2,15,74,(4:05) (Shotgun) R.Griffin pass short right to J.Morgan pushed ob at WAS 32 for 6 yards (L.Foote) [L.Timmons].,9,27,2012 -20121028_WAS@PIT,3,18,32,WAS,PIT,3,9,68,(3:32) (Shotgun) R.Griffin pass incomplete short left to L.Paulsen.,9,27,2012 -20121028_WAS@PIT,3,18,27,WAS,PIT,4,9,68,(3:27) (Punt formation) S.Rocca punts 46 yards to PIT 22 Center-J.Snow. A.Brown for 78 yards TOUCHDOWN NULLIFIED by Penalty. Penalty on PIT-A.Brown Unsportsmanlike Conduct declined. PENALTY on PIT-C.Brown Illegal Block Above the Waist 10 yards enforced at PIT 24.,9,27,2012 -20121028_WAS@PIT,3,18,8,PIT,WAS,1,10,86,(3:08) J.Dwyer right guard to PIT 16 for 2 yards (P.Riley). Penalty on PIT-R.Foster Unnecessary Roughness offsetting. Penalty on WAS-J.Wilson Unsportsmanlike Conduct offsetting.,27,9,2012 -20121028_WAS@PIT,3,17,2,PIT,WAS,2,8,84,(2:02) B.Roethlisberger pass incomplete short right to A.Brown (R.Kerrigan).,27,9,2012 -20121028_WAS@PIT,3,16,58,PIT,WAS,3,8,84,(1:58) (Shotgun) B.Roethlisberger pass short right to C.Rainey to PIT 11 for -5 yards (L.Fletcher).,27,9,2012 -20121028_WAS@PIT,3,16,26,PIT,WAS,4,13,89,(1:26) (Punt formation) D.Butler punts 58 yards to WAS 31 Center-G.Warren. B.Banks pushed ob at PIT 42 for 27 yards (W.Allen).,27,9,2012 -20121028_WAS@PIT,3,16,8,WAS,PIT,1,10,49,(1:08) R.Griffin FUMBLES (Aborted) at PIT 49 and recovers at PIT 49.,9,27,2012 -20121028_WAS@PIT,3,15,34,WAS,PIT,2,17,49,(:34) (Shotgun) R.Griffin pass short left to D.Briscoe to PIT 35 for 14 yards (W.Allen; R.Mundy).,9,27,2012 -20121028_WAS@PIT,4,15,0,WAS,PIT,3,3,35,(15:00) (Shotgun) A.Morris up the middle to PIT 29 for 6 yards (L.Foote).,9,27,2012 -20121028_WAS@PIT,4,14,22,WAS,PIT,1,10,29,(14:22) R.Griffin pass deep right intended for A.Robinson INTERCEPTED by K.Lewis at PIT -7. Touchback. The Replay Assistant challenged the touchback ruling and the play was REVERSED. R.Griffin pass incomplete deep right to A.Robinson (K.Lewis).,9,27,2012 -20121028_WAS@PIT,4,14,11,WAS,PIT,2,10,29,(14:11) (Shotgun) A.Morris left guard to PIT 18 for 11 yards (W.Allen).,9,27,2012 -20121028_WAS@PIT,4,13,34,WAS,PIT,1,10,18,(13:34) (Shotgun) A.Morris up the middle to PIT 19 for -1 yards (L.Woodley).,9,27,2012 -20121028_WAS@PIT,4,12,53,WAS,PIT,2,11,19,(12:53) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan. Pressure by #50 Foote.,9,27,2012 -20121028_WAS@PIT,4,12,49,WAS,PIT,3,11,19,(12:49) (Shotgun) R.Griffin sacked at PIT 27 for -8 yards (L.Foote).,9,27,2012 -20121028_WAS@PIT,4,12,11,WAS,PIT,4,19,27,(12:11) (Field Goal formation) K.Forbath 45 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,9,27,2012 -20121028_WAS@PIT,4,12,11,WAS,PIT,,,27,K.Forbath kicks 55 yards from WAS 35 to PIT 10. W.Johnson to PIT 18 for 8 yards (M.Addison).,12,27,2012 -20121028_WAS@PIT,4,12,2,PIT,WAS,1,10,82,(12:02) B.Roethlisberger pass short left to M.Wallace to PIT 32 for 14 yards (J.Wilson).,27,12,2012 -20121028_WAS@PIT,4,11,27,PIT,WAS,1,10,68,(11:27) (No Huddle) J.Dwyer right guard to PIT 33 for 1 yard (K.Robinson; Mad.Williams).,27,12,2012 -20121028_WAS@PIT,4,10,45,PIT,WAS,2,9,67,(10:45) (No Huddle Shotgun) B.Roethlisberger scrambles right tackle to PIT 36 for 3 yards (K.Robinson).,27,12,2012 -20121028_WAS@PIT,4,9,57,PIT,WAS,3,6,64,(9:57) (Shotgun) B.Roethlisberger pass incomplete short left to E.Sanders.,27,12,2012 -20121028_WAS@PIT,4,9,52,PIT,WAS,4,6,64,(9:52) (Punt formation) D.Butler punts 55 yards to WAS 9 Center-G.Warren. B.Banks ran ob at WAS 16 for 7 yards.,27,12,2012 -20121028_WAS@PIT,4,9,41,WAS,PIT,1,10,84,(9:41) (Shotgun) R.Griffin pass deep middle to L.Hankerson to WAS 32 for 16 yards (W.Allen).,12,27,2012 -20121028_WAS@PIT,4,9,7,WAS,PIT,1,10,68,(9:07) R.Griffin pass incomplete deep middle to J.Morgan. PENALTY on PIT-K.Lewis Illegal Use of Hands 5 yards enforced at WAS 32 - No Play.,12,27,2012 -20121028_WAS@PIT,4,8,57,WAS,PIT,1,10,63,(8:57) (Shotgun) R.Griffin pass incomplete short right to D.Young [L.Timmons]. Pressure by #56 Woodley #94 Timmons.,12,27,2012 -20121028_WAS@PIT,4,8,51,WAS,PIT,2,10,63,(8:51) (Shotgun) R.Griffin pass short middle to S.Moss to WAS 43 for 6 yards (R.Mundy).,12,27,2012 -20121028_WAS@PIT,4,8,16,WAS,PIT,3,4,57,(8:16) (Shotgun) R.Griffin pass incomplete short middle to S.Moss (W.Allen).,12,27,2012 -20121028_WAS@PIT,4,8,10,WAS,PIT,4,4,57,(8:10) (Shotgun) R.Griffin pass short left to S.Moss to WAS 48 for 5 yards (I.Taylor).,12,27,2012 -20121028_WAS@PIT,4,7,30,WAS,PIT,1,10,52,(7:30) R.Griffin pass short middle to L.Paulsen to PIT 46 for 6 yards (C.Heyward). Fleaflicker.,12,27,2012 -20121028_WAS@PIT,4,6,47,WAS,PIT,2,4,46,(6:47) PENALTY on WAS-L.Paulsen False Start 5 yards enforced at PIT 46 - No Play.,12,27,2012 -20121028_WAS@PIT,4,6,29,WAS,PIT,2,9,51,(6:29) (Shotgun) R.Griffin pass short right to L.Paulsen to PIT 38 for 13 yards (J.Worilds).,12,27,2012 -20121028_WAS@PIT,4,5,49,WAS,PIT,1,10,38,(5:49) R.Griffin pass deep right to J.Morgan to PIT 17 for 21 yards (R.Mundy).,12,27,2012 -20121028_WAS@PIT,4,5,9,WAS,PIT,1,10,17,(5:09) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson [J.Worilds].,12,27,2012 -20121028_WAS@PIT,4,5,5,WAS,PIT,2,10,17,(5:05) (Shotgun) R.Griffin pass short left to L.Paulsen to PIT 24 for -7 yards (B.Keisel).,12,27,2012 -20121028_WAS@PIT,4,4,22,WAS,PIT,3,17,24,(4:22) (Shotgun) R.Griffin pass incomplete deep middle to L.Hankerson. Coverage by #31 Brown.,12,27,2012 -20121028_WAS@PIT,4,4,17,WAS,PIT,4,17,24,(4:17) (Shotgun) R.Griffin pass incomplete short left to S.Moss (C.Allen).,12,27,2012 -20121028_WAS@PIT,4,4,11,PIT,WAS,1,10,76,(4:11) J.Dwyer right tackle to PIT 27 for 3 yards (B.Cofield Mad.Williams).,27,12,2012 -20121028_WAS@PIT,4,4,6,PIT,WAS,2,7,73,(4:06) B.Roethlisberger pass short right to J.Dwyer to PIT 35 for 8 yards (B.Cofield; R.Doughty).,27,12,2012 -20121028_WAS@PIT,4,3,48,PIT,WAS,1,10,65,(3:48) J.Dwyer left guard to PIT 35 for no gain (S.Bowen). PENALTY on WAS-D.Hall Unsportsmanlike Conduct 15 yards enforced at PIT 35. PENALTY on WAS-D.Hall Unsportsmanlike Conduct 15 yards enforced between downs. #23 Hall ejected from the game.,27,12,2012 -20121028_WAS@PIT,4,3,43,PIT,WAS,1,10,35,(3:43) J.Dwyer up the middle to WAS 34 for 1 yard (R.Doughty; C.Griffin).,27,12,2012 -20121028_WAS@PIT,4,2,59,PIT,WAS,2,9,34,(2:59) J.Dwyer left end to WAS 21 for 13 yards (R.Doughty).,27,12,2012 -20121028_WAS@PIT,4,2,14,PIT,WAS,1,10,21,(2:14) B.Batch left guard to WAS 21 for no gain (C.Baker).,27,12,2012 -20121028_WAS@PIT,4,2,0,PIT,WAS,2,10,21,(2:00) B.Batch left tackle to WAS 22 for -1 yards (Mad.Williams; C.Griffin).,27,12,2012 -20121028_WAS@PIT,4,1,15,PIT,WAS,3,11,22,(1:15) B.Roethlisberger scrambles right end to WAS 19 for 3 yards (Mad.Williams).,27,12,2012 -20121028_WAS@PIT,4,0,29,PIT,WAS,4,8,19,(:29) B.Batch up the middle to WAS 20 for -1 yards (Mad.Williams).,27,12,2012 -20121028_WAS@PIT,4,0,26,WAS,PIT,1,10,79,(:26) R.Griffin kneels to WAS 19 for -2 yards.,12,27,2012 -20121028_WAS@PIT,4,0,26,WAS,PIT,,,79,                      ,12,27,2012 -20121028_NE@STL,1,0,0,NE,STL,,,79,S.Gostkowski kicks 74 yards from NE 35 to SL -9. C.Givens Touchback.,0,0,2012 -20121028_NE@STL,1,60,0,STL,NE,1,10,80,(15:00) PENALTY on NE-V.Wilfork Encroachment 5 yards enforced at SL 20 - No Play.,0,0,2012 -20121028_NE@STL,1,60,0,STL,NE,1,5,75,(15:00) S.Bradford pass short left to S.Jackson pushed ob at SL 39 for 14 yards (B.Spikes).,0,0,2012 -20121028_NE@STL,1,59,23,STL,NE,1,10,61,(14:23) (Shotgun) S.Bradford pass short middle to A.Pettis to SL 44 for 5 yards (B.Spikes).,0,0,2012 -20121028_NE@STL,1,58,52,STL,NE,2,5,56,(13:52) S.Jackson left guard to SL 47 for 3 yards (J.Mayo).,0,0,2012 -20121028_NE@STL,1,58,17,STL,NE,3,2,53,(13:17) (Shotgun) S.Jackson left guard to 50 for 3 yards (B.Spikes).,0,0,2012 -20121028_NE@STL,1,57,35,STL,NE,1,10,50,(12:35) S.Bradford pass deep middle to C.Givens for 50 yards TOUCHDOWN.,0,0,2012 -20121028_NE@STL,1,57,35,STL,NE,,,50,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121028_NE@STL,1,57,35,STL,NE,,,50,G.Zuerlein kicks 62 yards from SL 35 to NE 3. D.McCourty to NE 22 for 19 yards (J.Hull).,7,0,2012 -20121028_NE@STL,1,57,19,NE,STL,1,10,78,(12:19) S.Ridley left tackle to NE 22 for no gain (J.Dunbar).,0,7,2012 -20121028_NE@STL,1,56,49,NE,STL,2,10,78,(11:49) (Shotgun) T.Brady pass short left to J.Edelman to NE 30 for 8 yards (Q.Mikell).,0,7,2012 -20121028_NE@STL,1,56,6,NE,STL,3,2,70,(11:06) (Shotgun) T.Brady pass incomplete short right to B.Lloyd (B.Fletcher). PENALTY on SL-B.Fletcher Defensive Pass Interference 10 yards enforced at NE 30 - No Play.,0,7,2012 -20121028_NE@STL,1,56,1,NE,STL,1,10,60,(11:01) S.Ridley up the middle to NE 42 for 2 yards (J.Laurinaitis R.Quinn).,0,7,2012 -20121028_NE@STL,1,55,17,NE,STL,2,8,58,(10:17) (Shotgun) T.Brady pass short middle to W.Welker to NE 48 for 6 yards (J.Hull).,0,7,2012 -20121028_NE@STL,1,54,39,NE,STL,3,2,52,(9:39) (Shotgun) T.Brady pass short right to D.Woodhead pushed ob at SL 28 for 24 yards (C.Dahl).,0,7,2012 -20121028_NE@STL,1,54,15,NE,STL,1,10,28,(9:15) (Shotgun) S.Ridley right guard to SL 19 for 9 yards (C.Finnegan).,0,7,2012 -20121028_NE@STL,1,53,39,NE,STL,2,1,19,(8:39) NE - 61 reports eligible S.Ridley left tackle to SL 19 for no gain (R.Quinn).,0,7,2012 -20121028_NE@STL,1,52,56,NE,STL,3,1,19,(7:56) (Shotgun) T.Brady pass deep right to B.Lloyd for 19 yards TOUCHDOWN. Tom Brady extends his streak to 40 straight games with at least one touchdown pass the third longest streak all time behind Drew Brees (49-current) and Johnny Unitas (47).,0,7,2012 -20121028_NE@STL,1,52,56,NE,STL,,,19,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,7,2012 -20121028_NE@STL,1,52,56,NE,STL,,,19,S.Gostkowski kicks 69 yards from NE 35 to SL -4. I.Pead to SL 12 for 16 yards (M.Cole).,7,7,2012 -20121028_NE@STL,1,52,46,STL,NE,1,10,88,(7:46) S.Bradford pass short middle to M.Mulligan to SL 30 for 18 yards (J.Mayo).,7,7,2012 -20121028_NE@STL,1,52,4,STL,NE,1,10,70,(7:04) S.Jackson right tackle pushed ob at SL 37 for 7 yards (A.Dennard).,7,7,2012 -20121028_NE@STL,1,51,31,STL,NE,2,3,63,(6:31) D.Richardson right end to SL 42 for 5 yards (B.Spikes).,7,7,2012 -20121028_NE@STL,1,50,55,STL,NE,1,10,58,(5:55) S.Bradford pass short right to A.Pettis to NE 41 for 17 yards (T.Wilson). PENALTY on SL Illegal Touch Pass 5 yards enforced at SL 42 - No Play.,7,7,2012 -20121028_NE@STL,1,50,22,STL,NE,1,15,63,(5:22) (Shotgun) S.Bradford pass short left to A.Pettis to SL 46 for 9 yards (T.Wilson).,7,7,2012 -20121028_NE@STL,1,49,43,STL,NE,2,6,54,(4:43) S.Jackson right guard to SL 47 for 1 yard (K.Love).,7,7,2012 -20121028_NE@STL,1,48,59,STL,NE,3,5,53,(3:59) (Shotgun) S.Bradford pass incomplete short left (C.Jones). PENALTY on SL-S.Bradford Intentional Grounding 12 yards enforced at SL 47.,7,7,2012 -20121028_NE@STL,1,48,54,STL,NE,4,17,65,(3:54) J.Hekker punts 50 yards to NE 15 Center-J.McQuaide. J.Edelman to NE 17 for 2 yards (R.McLeod).,7,7,2012 -20121028_NE@STL,1,48,43,NE,STL,1,10,83,(3:43) (Shotgun) T.Brady pass short middle to W.Welker to NE 20 for 3 yards (C.Finnegan).,7,7,2012 -20121028_NE@STL,1,48,11,NE,STL,2,7,80,(3:11) S.Ridley left end pushed ob at NE 40 for 20 yards (C.Dahl).,7,7,2012 -20121028_NE@STL,1,47,51,NE,STL,1,10,60,(2:51) T.Brady pass short middle to R.Gronkowski to SL 35 for 25 yards (C.Dahl).,7,7,2012 -20121028_NE@STL,1,47,6,NE,STL,1,10,35,(2:06) (Shotgun) T.Brady pass short left to W.Welker to SL 26 for 9 yards (J.Jenkins).,7,7,2012 -20121028_NE@STL,1,46,21,NE,STL,2,1,26,(1:21) (Shotgun) T.Brady pass deep left to R.Gronkowski to SL 1 for 25 yards (C.Dahl).,7,7,2012 -20121028_NE@STL,1,45,34,NE,STL,1,1,1,(:34) 77 - reports eligible S.Ridley left tackle to SL 2 for -1 yards (J.Hull).,7,7,2012 -20121028_NE@STL,2,45,0,NE,STL,2,2,2,(15:00) T.Brady pass incomplete short right to R.Gronkowski (C.Finnegan).,7,7,2012 -20121028_NE@STL,2,44,55,NE,STL,3,2,2,(14:55) (Shotgun) D.Woodhead left guard to SL 1 for 1 yard (J.Dunbar).,7,7,2012 -20121028_NE@STL,2,44,16,NE,STL,4,1,1,(14:16) S.Vereen right tackle for 1 yard TOUCHDOWN.,7,7,2012 -20121028_NE@STL,2,44,16,NE,STL,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,7,2012 -20121028_NE@STL,2,44,16,NE,STL,,,1,S.Gostkowski kicks 70 yards from NE 35 to SL -5. I.Pead Touchback.,14,7,2012 -20121028_NE@STL,2,44,12,STL,NE,1,10,80,(14:12) S.Bradford pass short middle to D.Richardson to SL 27 for 7 yards (B.Spikes).,7,14,2012 -20121028_NE@STL,2,43,33,STL,NE,2,3,73,(13:33) D.Richardson left guard to SL 28 for 1 yard (B.Deaderick).,7,14,2012 -20121028_NE@STL,2,42,45,STL,NE,3,2,72,(12:45) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 34 for 6 yards (S.Moore).,7,14,2012 -20121028_NE@STL,2,42,2,STL,NE,1,10,66,(12:02) PENALTY on SL-L.Kendricks False Start 5 yards enforced at SL 34 - No Play.,7,14,2012 -20121028_NE@STL,2,41,41,STL,NE,1,15,71,(11:41) D.Richardson left end to SL 33 for 4 yards (B.Deaderick).,7,14,2012 -20121028_NE@STL,2,40,59,STL,NE,2,11,67,(10:59) S.Bradford pass short right to D.Richardson pushed ob at SL 29 for -4 yards (V.Wilfork).,7,14,2012 -20121028_NE@STL,2,40,13,STL,NE,3,15,71,(10:13) (Shotgun) S.Bradford pass short left to S.Smith to SL 31 for 2 yards (M.Cole). FUMBLES (M.Cole) RECOVERED by NE-R.Ninkovich at SL 30. R.Ninkovich to SL 25 for 5 yards (S.Smith). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) S.Bradford pass incomplete short left to S.Smith (M.Cole).,7,14,2012 -20121028_NE@STL,2,40,8,STL,NE,4,15,71,(10:08) J.Hekker punts 49 yards to NE 22 Center-J.McQuaide downed by SL-C.Dahl.,7,14,2012 -20121028_NE@STL,2,39,55,NE,STL,1,10,78,(9:55) (Shotgun) T.Brady pass incomplete short right to R.Gronkowski (C.Finnegan).,14,7,2012 -20121028_NE@STL,2,39,50,NE,STL,2,10,78,(9:50) S.Vereen right guard to NE 36 for 14 yards (J.Cudjo).,14,7,2012 -20121028_NE@STL,2,39,19,NE,STL,1,10,64,(9:19) T.Brady pass short left to R.Gronkowski to SL 47 for 17 yards (C.Finnegan).,14,7,2012 -20121028_NE@STL,2,38,43,NE,STL,1,10,47,(8:43) S.Vereen up the middle to SL 41 for 6 yards (K.Langford).,14,7,2012 -20121028_NE@STL,2,38,5,NE,STL,2,4,41,(8:05) (Shotgun) T.Brady pass incomplete deep middle to W.Welker.,14,7,2012 -20121028_NE@STL,2,38,0,NE,STL,3,4,41,(8:00) (Shotgun) T.Brady pass short middle to R.Gronkowski to SL 9 for 32 yards (C.Dahl; B.Fletcher).,14,7,2012 -20121028_NE@STL,2,37,16,NE,STL,1,9,9,(7:16) (Shotgun) T.Brady pass incomplete short right to R.Gronkowski.,14,7,2012 -20121028_NE@STL,2,37,11,NE,STL,2,9,9,(7:11) (Shotgun) D.Woodhead left guard to SL 7 for 2 yards (J.Dunbar).,14,7,2012 -20121028_NE@STL,2,36,31,NE,STL,3,7,7,(6:31) (Shotgun) T.Brady pass short middle to R.Gronkowski for 7 yards TOUCHDOWN.,14,7,2012 -20121028_NE@STL,2,36,31,NE,STL,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,7,2012 -20121028_NE@STL,2,36,31,,STL,,,7,S.Gostkowski kicks 64 yards from NE 30 to SL 6. I.Pead to SL 29 for 23 yards (N.Ebner).,21,7,2012 -20121028_NE@STL,2,36,15,STL,NE,1,10,71,(6:15) S.Jackson right guard to SL 29 for no gain (K.Love).,7,21,2012 -20121028_NE@STL,2,35,37,STL,NE,2,10,71,(5:37) S.Bradford pass short right to C.Givens to SL 38 for 9 yards (A.Dennard).,7,21,2012 -20121028_NE@STL,2,34,57,STL,NE,3,1,62,(4:57) (Shotgun) S.Bradford pass short left to B.Gibson to SL 46 for 8 yards (S.Moore).,7,21,2012 -20121028_NE@STL,2,34,22,STL,NE,1,10,54,(4:22) S.Bradford pass short right to S.Jackson pushed ob at NE 46 for 8 yards (B.Spikes).,7,21,2012 -20121028_NE@STL,2,33,48,STL,NE,2,2,46,(3:48) S.Jackson right tackle to NE 41 for 5 yards (A.Dennard).,7,21,2012 -20121028_NE@STL,2,33,4,STL,NE,1,10,41,(3:04) S.Bradford pass short left to S.Jackson to NE 35 for 6 yards (D.Hightower). PENALTY on SL-Sh.Smith Offensive Holding 10 yards enforced at NE 41 - No Play.,7,21,2012 -20121028_NE@STL,2,32,37,STL,NE,1,20,51,(2:37) S.Bradford pass short left to D.Richardson pushed ob at SL 47 for -2 yards (J.Mayo) [D.Hightower]. SL-S.Bradford was injured during the play. His return is Probable.,7,21,2012 -20121028_NE@STL,2,32,30,STL,NE,2,22,53,(2:30) S.Bradford pass short left to L.Kendricks to NE 46 for 7 yards (C.Jones).,7,21,2012 -20121028_NE@STL,2,32,19,STL,NE,3,15,46,(2:19) (Shotgun) S.Bradford pass short left to L.Kendricks to NE 35 for 11 yards (D.McCourty).,7,21,2012 -20121028_NE@STL,2,32,0,STL,NE,4,4,35,(2:00) (Field Goal formation) J.Hekker left end to NE 44 for -9 yards (M.Cole).,7,21,2012 -20121028_NE@STL,2,31,52,NE,STL,1,10,56,(1:52) T.Brady pass short left to D.Woodhead to SL 41 for 15 yards (C.Finnegan).,21,7,2012 -20121028_NE@STL,2,31,34,NE,STL,1,10,41,(1:34) (Shotgun) T.Brady pass incomplete short left to D.Woodhead.,21,7,2012 -20121028_NE@STL,2,31,30,NE,STL,2,10,41,(1:30) (Shotgun) T.Brady pass short left to D.Woodhead to SL 35 for 6 yards (J.Dunbar).,21,7,2012 -20121028_NE@STL,2,30,53,NE,STL,3,4,35,(:53) (Shotgun) T.Brady pass incomplete short right to D.Branch (B.Fletcher). PENALTY on SL-B.Fletcher Defensive Pass Interference 15 yards enforced at SL 35 - No Play.,21,7,2012 -20121028_NE@STL,2,30,48,NE,STL,1,10,20,(:48) (Shotgun) T.Brady pass incomplete deep right to B.Lloyd (B.Fletcher).,21,7,2012 -20121028_NE@STL,2,30,44,NE,STL,2,10,20,(:44) (Shotgun) T.Brady pass short middle to W.Welker to SL 11 for 9 yards (J.Dunbar).,21,7,2012 -20121028_NE@STL,2,30,38,NE,STL,3,1,11,(:38) T.Brady right guard to SL 8 for 3 yards (J.Laurinaitis).,21,7,2012 -20121028_NE@STL,2,30,24,NE,STL,1,8,8,(:24) T.Brady pass incomplete short left to B.Lloyd.,21,7,2012 -20121028_NE@STL,2,30,21,NE,STL,2,8,8,(:21) (Shotgun) T.Brady pass incomplete short middle to R.Gronkowski (T.Johnson).,21,7,2012 -20121028_NE@STL,2,30,17,NE,STL,3,8,8,(:17) (Shotgun) T.Brady pass incomplete short right to D.Branch (B.Fletcher). PENALTY on SL-B.Fletcher Defensive Pass Interference 7 yards enforced at SL 8 - No Play.,21,7,2012 -20121028_NE@STL,2,30,14,NE,STL,1,1,1,(:14) S.Ridley right tackle for 1 yard TOUCHDOWN.,21,7,2012 -20121028_NE@STL,2,30,14,NE,STL,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,7,2012 -20121028_NE@STL,2,30,14,NE,STL,,,1,S.Gostkowski kicks 42 yards from NE 35 to SL 23. C.Dahl to SL 29 for 6 yards (M.Slater).,28,7,2012 -20121028_NE@STL,2,30,4,STL,NE,1,10,71,(:04) S.Bradford kneels dead ball declared at SL 28 for -1 yards.,7,28,2012 -20121028_NE@STL,3,30,0,STL,NE,,,71,G.Zuerlein kicks 70 yards from SL 35 to NE -5. D.McCourty Touchback.,7,28,2012 -20121028_NE@STL,3,30,0,NE,STL,1,10,80,(15:00) T.Brady pass short left to M.Hoomanawanui pushed ob at NE 38 for 18 yards (J.Jenkins).,28,7,2012 -20121028_NE@STL,3,29,38,NE,STL,1,10,62,(14:38) S.Ridley right tackle pushed ob at SL 32 for 30 yards (C.Dahl).,28,7,2012 -20121028_NE@STL,3,29,13,NE,STL,1,10,32,(14:13) S.Ridley left guard to SL 30 for 2 yards (J.Laurinaitis).,28,7,2012 -20121028_NE@STL,3,28,28,NE,STL,2,8,30,(13:28) (Shotgun) T.Brady pass short right to R.Gronkowski to SL 20 for 10 yards (J.Laurinaitis).,28,7,2012 -20121028_NE@STL,3,27,52,NE,STL,1,10,20,(12:52) (Shotgun) T.Brady pass short left to W.Welker pushed ob at SL 9 for 11 yards (J.Jenkins).,28,7,2012 -20121028_NE@STL,3,27,27,NE,STL,1,9,9,(12:27) T.Brady pass short left to B.Lloyd for 9 yards TOUCHDOWN.,28,7,2012 -20121028_NE@STL,3,27,27,NE,STL,,,9,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,28,7,2012 -20121028_NE@STL,3,27,27,NE,STL,,,9,S.Gostkowski kicks 72 yards from NE 35 to SL -7. C.Givens Touchback.,35,7,2012 -20121028_NE@STL,3,27,24,STL,NE,1,10,80,(12:24) S.Jackson left tackle to SL 24 for 4 yards (J.Cunningham).,7,35,2012 -20121028_NE@STL,3,26,48,STL,NE,2,6,76,(11:48) S.Bradford left end to SL 25 for 1 yard. S.Bradford pass short left to B.Miller to SL 33 for 8 yards (J.Mayo). PENALTY on SL-S.Bradford Illegal Forward Pass 5 yards enforced at SL 25.,7,35,2012 -20121028_NE@STL,3,26,1,STL,NE,3,10,80,(11:01) S.Bradford pass short right to L.Kendricks to SL 28 for 8 yards (N.Ebner).,7,35,2012 -20121028_NE@STL,3,25,21,STL,NE,4,2,72,(10:21) J.Hekker punts 48 yards to NE 24 Center-J.McQuaide. J.Edelman to NE 23 for -1 yards (J.Cole). PENALTY on SL Offensive Holding 10 yards enforced at SL 28 - No Play.,7,35,2012 -20121028_NE@STL,3,25,7,STL,NE,4,12,82,(10:07) J.Hekker punts 48 yards to NE 34 Center-J.McQuaide. J.Edelman to NE 34 for no gain (B.Fletcher).,7,35,2012 -20121028_NE@STL,3,24,57,NE,STL,1,10,66,(9:57) (Shotgun) S.Ridley right guard to NE 37 for 3 yards (J.Dunbar).,35,7,2012 -20121028_NE@STL,3,24,23,NE,STL,2,7,63,(9:23) S.Ridley left guard to SL 47 for 16 yards (B.Fletcher C.Dahl). SL-C.Dahl was injured during the play. His return is Probable.,35,7,2012 -20121028_NE@STL,3,23,59,NE,STL,1,10,47,(8:59) T.Brady pass incomplete short right to W.Welker.,35,7,2012 -20121028_NE@STL,3,23,52,NE,STL,2,10,47,(8:52) S.Ridley right end to SL 6 for 41 yards (J.Jenkins).,35,7,2012 -20121028_NE@STL,3,23,19,NE,STL,1,6,6,(8:19) S.Ridley left guard to SL 10 for -4 yards (J.Dunbar).,35,7,2012 -20121028_NE@STL,3,22,43,NE,STL,2,10,10,(7:43) (Shotgun) T.Brady pass short left to D.Woodhead to SL 8 for 2 yards (Q.Mikell).,35,7,2012 -20121028_NE@STL,3,22,3,NE,STL,3,8,8,(7:03) (Shotgun) T.Brady pass incomplete short left to D.Woodhead.,35,7,2012 -20121028_NE@STL,3,21,58,NE,STL,4,8,8,(6:58) S.Gostkowski 26 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,35,7,2012 -20121028_NE@STL,3,21,58,NE,STL,,,8,S.Gostkowski kicks 65 yards from NE 35 to SL 0. C.Givens to SL 22 for 22 yards (N.Ebner).,38,7,2012 -20121028_NE@STL,3,21,50,STL,NE,1,10,78,(6:50) S.Bradford pass incomplete short middle to C.Givens (S.Moore).,7,38,2012 -20121028_NE@STL,3,21,47,STL,NE,2,10,78,(6:47) (Shotgun) S.Bradford pass incomplete short right to M.Mulligan (B.Spikes).,7,38,2012 -20121028_NE@STL,3,21,43,STL,NE,3,10,78,(6:43) (Shotgun) S.Bradford pass short middle to M.McNeill to SL 31 for 9 yards (D.McCourty).,7,38,2012 -20121028_NE@STL,3,20,59,STL,NE,4,1,69,(5:59) (Shotgun) S.Bradford pass short right to A.Pettis pushed ob at SL 32 for 1 yard (T.Wilson).,7,38,2012 -20121028_NE@STL,3,20,49,STL,NE,1,10,68,(5:49) (Shotgun) S.Bradford right tackle to SL 32 for no gain. PENALTY on SL-Sh.Smith False Start 5 yards enforced at SL 32 - No Play.,7,38,2012 -20121028_NE@STL,3,20,29,STL,NE,1,15,73,(5:29) S.Bradford pass incomplete short right to L.Kendricks (B.Spikes). PENALTY on NE Defensive Holding 5 yards enforced at SL 27 - No Play.,7,38,2012 -20121028_NE@STL,3,20,23,STL,NE,1,10,68,(5:23) S.Jackson right guard to SL 35 for 3 yards (J.Mayo).,7,38,2012 -20121028_NE@STL,3,19,42,STL,NE,2,7,65,(4:42) (Shotgun) S.Bradford pass short right to M.McNeill to SL 38 for 3 yards (J.Cunningham).,7,38,2012 -20121028_NE@STL,3,18,59,STL,NE,3,4,62,(3:59) (Shotgun) S.Bradford sacked at SL 21 for -17 yards (C.Jones).,7,38,2012 -20121028_NE@STL,3,18,35,STL,NE,4,21,79,(3:35) J.Hekker punts 48 yards to NE 31 Center-J.McQuaide. J.Edelman to NE 45 for 14 yards (J.Dunbar).,7,38,2012 -20121028_NE@STL,3,18,23,NE,STL,1,10,55,(3:23) T.Brady pass incomplete deep middle to W.Welker (J.Jenkins).,38,7,2012 -20121028_NE@STL,3,18,18,NE,STL,2,10,55,(3:18) S.Vereen left end to NE 38 for -7 yards (W.Hayes).,38,7,2012 -20121028_NE@STL,3,17,40,NE,STL,3,17,62,(2:40) (Shotgun) T.Brady pass incomplete short left to R.Gronkowski. Penalty on NE-N.Solder Offensive Holding declined.,38,7,2012 -20121028_NE@STL,3,17,36,NE,STL,4,17,62,(2:36) Z.Mesko punts 62 yards to end zone Center-D.Aiken Touchback.,38,7,2012 -20121028_NE@STL,3,17,28,STL,NE,1,10,80,(2:28) S.Bradford pass short right to B.Gibson to SL 36 for 16 yards (A.Dennard). SL-B.Richardson was injured during the play. His return is Probable.,7,38,2012 -20121028_NE@STL,3,17,2,STL,NE,1,10,64,(2:02) S.Bradford pass short left to D.Richardson to SL 32 for -4 yards (J.Mayo). FUMBLES (J.Mayo) ball out of bounds at SL 32.,7,38,2012 -20121028_NE@STL,3,16,31,STL,NE,2,14,68,(1:31) (Shotgun) PENALTY on NE-C.Jones Encroachment 5 yards enforced at SL 32 - No Play.,7,38,2012 -20121028_NE@STL,3,16,16,STL,NE,2,9,63,(1:16) (Shotgun) S.Bradford pass deep left to B.Gibson to NE 41 for 22 yards (S.Moore).,7,38,2012 -20121028_NE@STL,3,15,32,STL,NE,1,10,41,(:32) (Shotgun) S.Bradford pass incomplete short left to A.Pettis (M.Cole).,7,38,2012 -20121028_NE@STL,3,15,27,STL,NE,2,10,41,(:27) (Shotgun) S.Bradford pass short left to C.Givens to NE 37 for 4 yards (S.Moore).,7,38,2012 -20121028_NE@STL,4,15,0,STL,NE,3,6,37,(15:00) (Shotgun) S.Bradford pass incomplete short right to A.Pettis (B.Spikes R.Ninkovich). NE-M.Cole was injured during the play. His return is Probable.,7,38,2012 -20121028_NE@STL,4,14,56,STL,NE,4,6,37,(14:56) (Shotgun) S.Bradford sacked at NE 45 for -8 yards (R.Ninkovich).,7,38,2012 -20121028_NE@STL,4,14,51,NE,STL,1,10,55,(14:51) NE-61 Reports eligible S.Ridley left tackle to NE 42 for -3 yards (C.Long).,38,7,2012 -20121028_NE@STL,4,14,5,NE,STL,2,13,58,(14:05) (Shotgun) T.Brady pass short right to W.Welker pushed ob at SL 48 for 10 yards (C.Finnegan).,38,7,2012 -20121028_NE@STL,4,13,34,NE,STL,3,3,48,(13:34) (Shotgun) T.Brady pass short left to W.Welker to SL 43 for 5 yards (Q.Mikell). PENALTY on NE-S.Vollmer Illegal Formation 5 yards enforced at SL 48 - No Play.,38,7,2012 -20121028_NE@STL,4,13,16,NE,STL,3,8,53,(13:16) (Shotgun) T.Brady pass short middle to D.Woodhead to SL 44 for 9 yards (J.Dunbar).,38,7,2012 -20121028_NE@STL,4,12,37,NE,STL,1,10,44,(12:37) T.Brady pass short middle to R.Gronkowski to SL 28 for 16 yards (Q.Mikell).,38,7,2012 -20121028_NE@STL,4,12,1,NE,STL,1,10,28,(12:01) S.Ridley left guard to SL 17 for 11 yards (C.Dahl). PENALTY on SL-W.Hayes Unnecessary Roughness 8 yards enforced at SL 17.,38,7,2012 -20121028_NE@STL,4,11,42,NE,STL,1,9,9,(11:42) PENALTY on NE-D.Fells False Start 5 yards enforced at SL 9 - No Play.,38,7,2012 -20121028_NE@STL,4,11,23,NE,STL,1,14,14,(11:23) (Shotgun) T.Brady pass short right to R.Gronkowski for 14 yards TOUCHDOWN.,38,7,2012 -20121028_NE@STL,4,11,23,NE,STL,,,14,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,38,7,2012 -20121028_NE@STL,4,11,23,NE,STL,,,14,S.Gostkowski kicks 64 yards from NE 35 to SL 1. C.Givens to SL 27 for 26 yards (N.Ebner).,45,7,2012 -20121028_NE@STL,4,11,12,STL,NE,1,10,73,(11:12) D.Richardson left tackle to SL 31 for 4 yards (B.Spikes). SL-J.Barksdale was injured during the play. His return is Questionable.,7,45,2012 -20121028_NE@STL,4,10,51,STL,NE,2,6,69,(10:51) D.Richardson left tackle to SL 44 for 13 yards (T.Wilson).,7,45,2012 -20121028_NE@STL,4,10,17,STL,NE,1,10,56,(10:17) PENALTY on NE-J.Bequette Encroachment 5 yards enforced at SL 44 - No Play.,7,45,2012 -20121028_NE@STL,4,10,2,STL,NE,1,5,51,(10:02) S.Bradford pass incomplete short middle to B.Quick.,7,45,2012 -20121028_NE@STL,4,9,58,STL,NE,2,5,51,(9:58) D.Richardson right tackle to NE 31 for 20 yards (S.Moore).,7,45,2012 -20121028_NE@STL,4,9,11,STL,NE,1,10,31,(9:11) D.Richardson right end to NE 25 for 6 yards (B.Spikes).,7,45,2012 -20121028_NE@STL,4,8,31,STL,NE,2,4,25,(8:31) S.Bradford pass deep left intended for B.Quick INTERCEPTED by A.Dennard at NE 4. A.Dennard to NE 12 for 8 yards (M.McNeill).,7,45,2012 -20121028_NE@STL,4,8,21,NE,STL,1,10,88,(8:21) Ryan Mallett in at QB NE-61 reports eligible S.Vereen right guard to NE 13 for 1 yard (J.Dunbar).,45,7,2012 -20121028_NE@STL,4,7,48,NE,STL,2,9,87,(7:48) S.Vereen right guard to NE 15 for 2 yards (J.Laurinaitis).,45,7,2012 -20121028_NE@STL,4,7,9,NE,STL,3,7,85,(7:09) (Shotgun) R.Mallett pass short left to J.Edelman to NE 25 for 10 yards (J.Laurinaitis). PENALTY on NE-D.Fells Offensive Pass Interference 7 yards enforced at NE 15 - No Play.,45,7,2012 -20121028_NE@STL,4,6,52,NE,STL,3,14,92,(6:52) (Shotgun) R.Mallett pass short left to S.Vereen to NE 25 for 17 yards (J.Hull).,45,7,2012 -20121028_NE@STL,4,6,12,NE,STL,1,10,75,(6:12) NE-61 reports eligible S.Vereen left guard to NE 30 for 5 yards (J.Jenkins).,45,7,2012 -20121028_NE@STL,4,5,31,NE,STL,2,5,70,(5:31) R.Mallett pass incomplete short middle to J.Edelman.,45,7,2012 -20121028_NE@STL,4,5,26,NE,STL,3,5,70,(5:26) (Shotgun) R.Mallett pass incomplete short left to D.Branch (J.Jenkins).,45,7,2012 -20121028_NE@STL,4,5,24,NE,STL,4,5,70,(5:24) Z.Mesko punts 51 yards to SL 19 Center-D.Aiken. A.Pettis to SL 31 for 12 yards (M.Williams). SL-M.Daniels was injured during the play. His return is Doubtful. PENALTY on SL-C.Dahl Offensive Holding 10 yards enforced at SL 19.,45,7,2012 -20121028_NE@STL,4,5,13,STL,NE,1,10,91,(5:13) Clemens at QB I.Pead left end to SL 28 for 19 yards (A.Dennard).,7,45,2012 -20121028_NE@STL,4,4,25,STL,NE,1,10,72,(4:25) I.Pead left guard to SL 33 for 5 yards (J.Mayo).,7,45,2012 -20121028_NE@STL,4,3,45,STL,NE,2,5,67,(3:45) K.Clemens scrambles right end to SL 38 for 5 yards (D.Hightower).,7,45,2012 -20121028_NE@STL,4,2,59,STL,NE,1,10,62,(2:59) K.Clemens FUMBLES (Aborted) at SL 38 and recovers at SL 38. K.Clemens to SL 38 for no gain (J.Mayo). NE-R.Brace was injured during the play. His return is Questionable.,7,45,2012 -20121028_NE@STL,4,2,22,STL,NE,2,10,62,(2:22) K.Clemens pass deep left to B.Quick to NE 23 for 39 yards (S.Moore).,7,45,2012 -20121028_NE@STL,4,2,0,STL,NE,1,10,23,(2:00) I.Pead up the middle to NE 15 for 8 yards (J.Tarpinian).,7,45,2012 -20121028_NE@STL,4,1,38,STL,NE,2,2,15,(1:38) (Shotgun) K.Clemens pass short left intended for B.Quick INTERCEPTED by T.Wilson at NE 1. T.Wilson to NE 46 for 45 yards.,7,45,2012 -20121028_NE@STL,4,1,25,NE,STL,1,10,54,(1:25) R.Mallett kneels dead ball declared at NE 45 for -1 yards.,45,7,2012 -20121028_NE@STL,4,0,44,NE,STL,2,11,55,(:44) R.Mallett kneels dead ball declared at NE 44 for -1 yards.,45,7,2012 -20121028_NE@STL,4,0,6,NE,STL,3,13,56,(:06) R.Mallett kneels dead ball declared at NE 43 for -1 yards.,45,7,2012 -20121028_NE@STL,4,0,6,NE,STL,,,56,                      ,45,7,2012 -20121028_IND@TEN,1,0,0,IND,TEN,,,56,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,0,0,2012 -20121028_IND@TEN,1,60,0,TEN,IND,1,10,80,(15:00) C.Johnson right guard to TEN 22 for 2 yards (D.Nevis).,0,0,2012 -20121028_IND@TEN,1,59,21,TEN,IND,2,8,78,(14:21) C.Johnson left guard to TEN 25 for 3 yards (T.Zbikowski).,0,0,2012 -20121028_IND@TEN,1,58,42,TEN,IND,3,5,75,(13:42) (Shotgun) M.Hasselbeck pass short left to J.Cook pushed ob at TEN 41 for 16 yards (T.Zbikowski).,0,0,2012 -20121028_IND@TEN,1,58,10,TEN,IND,1,10,59,(13:10) M.Hasselbeck pass short left to K.Britt to TEN 49 for 8 yards (V.Davis).,0,0,2012 -20121028_IND@TEN,1,57,36,TEN,IND,2,2,51,(12:36) C.Johnson left end to IND 46 for 5 yards (K.Conner). IND-V.Davis was injured during the play. His return is Questionable.,0,0,2012 -20121028_IND@TEN,1,57,9,TEN,IND,1,10,46,(12:09) C.Johnson left end pushed ob at IND 46 for no gain (J.Freeman).,0,0,2012 -20121028_IND@TEN,1,56,44,TEN,IND,2,10,46,(11:44) M.Hasselbeck pass short right to K.Britt to IND 29 for 17 yards (A.Bethea; J.Freeman).,0,0,2012 -20121028_IND@TEN,1,56,9,TEN,IND,1,10,29,(11:09) M.Hasselbeck pass short left to C.Stevens to IND 26 for 3 yards (T.Zbikowski).,0,0,2012 -20121028_IND@TEN,1,55,33,TEN,IND,2,7,26,(10:33) C.Johnson up the middle pushed ob at IND 17 for 9 yards (A.Bethea).,0,0,2012 -20121028_IND@TEN,1,54,56,TEN,IND,1,10,17,(9:56) J.Harper right tackle pushed ob at IND 18 for -1 yards (K.Conner).,0,0,2012 -20121028_IND@TEN,1,54,11,TEN,IND,2,11,18,(9:11) PENALTY on TEN-M.Otto False Start 5 yards enforced at IND 18 - No Play.,0,0,2012 -20121028_IND@TEN,1,53,47,TEN,IND,2,16,23,(8:47) M.Hasselbeck sacked at IND 31 for -8 yards (D.Nevis). TEN-D.Stewart was injured during the play. His return is Questionable.,0,0,2012 -20121028_IND@TEN,1,53,26,TEN,IND,3,24,31,(8:26) (Shotgun) M.Hasselbeck pass short middle to N.Washington to IND 21 for 10 yards (J.Hickman; A.Bethea).,0,0,2012 -20121028_IND@TEN,1,52,40,TEN,IND,4,14,21,(7:40) (Field Goal formation) R.Bironas 39 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121028_IND@TEN,1,52,40,TEN,IND,,,21,R.Bironas kicks 55 yards from TEN 35 to IND 10. C.Vaughn MUFFS catch and recovers at IND 15. C.Vaughn to IND 15 for no gain (T.Wilson).,3,0,2012 -20121028_IND@TEN,1,52,32,IND,TEN,1,10,85,(7:32) A.Luck pass short right to D.Allen to IND 35 for 20 yards (C.McCarthy).,0,3,2012 -20121028_IND@TEN,1,51,54,IND,TEN,1,10,65,(6:54) A.Luck pass short left to D.Allen to TEN 49 for 16 yards (M.Griffin). FUMBLES (M.Griffin) ball out of bounds at TEN 48.,0,3,2012 -20121028_IND@TEN,1,51,4,IND,TEN,1,10,48,(6:04) V.Ballard left tackle to TEN 45 for 3 yards (A.Ayers).,0,3,2012 -20121028_IND@TEN,1,50,23,IND,TEN,2,7,45,(5:23) A.Luck scrambles right end pushed ob at TEN 37 for 8 yards (A.Ayers).,0,3,2012 -20121028_IND@TEN,1,49,53,IND,TEN,1,10,37,(4:53) V.Ballard right tackle to TEN 30 for 7 yards (A.Ayers; J.Babineaux).,0,3,2012 -20121028_IND@TEN,1,49,28,IND,TEN,2,3,30,(4:28) A.Luck pass short left to T.Hilton pushed ob at TEN 24 for 6 yards (A.Verner).,0,3,2012 -20121028_IND@TEN,1,49,2,IND,TEN,1,10,24,(4:02) A.Luck scrambles right tackle to TEN 15 for 9 yards (J.McCourty).,0,3,2012 -20121028_IND@TEN,1,48,19,IND,TEN,2,1,15,(3:19) V.Ballard left guard to TEN 7 for 8 yards (J.Babineaux; M.Griffin).,0,3,2012 -20121028_IND@TEN,1,47,38,IND,TEN,1,7,7,(2:38) V.Ballard left tackle to TEN 4 for 3 yards (A.Ayers; J.Babineaux).,0,3,2012 -20121028_IND@TEN,1,46,56,IND,TEN,2,4,4,(1:56) A.Luck pass incomplete short right to R.Wayne (J.McCourty).,0,3,2012 -20121028_IND@TEN,1,46,52,IND,TEN,3,4,4,(1:52) (Shotgun) A.Luck scrambles up the middle to TEN 2 for 2 yards (K.Wimbley).,0,3,2012 -20121028_IND@TEN,1,46,10,IND,TEN,4,2,2,(1:10) (Field Goal formation) A.Vinatieri 20 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 -20121028_IND@TEN,1,46,10,IND,TEN,,,2,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,3,3,2012 -20121028_IND@TEN,1,46,6,TEN,IND,1,10,80,(1:06) M.Hasselbeck pass incomplete short right to C.Stevens.,3,3,2012 -20121028_IND@TEN,1,46,3,TEN,IND,2,10,80,(1:03) C.Johnson right tackle to TEN 25 for 5 yards (K.Conner; J.Powers).,3,3,2012 -20121028_IND@TEN,1,45,18,TEN,IND,3,5,75,(:18) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 34 for 9 yards (J.Powers; J.Gordy).,3,3,2012 -20121028_IND@TEN,2,45,0,TEN,IND,1,10,66,(15:00) M.Hasselbeck pass deep left to K.Britt to IND 23 for 43 yards. PENALTY on TEN-K.Britt Offensive Pass Interference 10 yards enforced at TEN 34 - No Play.,3,3,2012 -20121028_IND@TEN,2,44,52,TEN,IND,1,20,76,(14:52) C.Johnson up the middle to TEN 30 for 6 yards (J.Freeman).,3,3,2012 -20121028_IND@TEN,2,44,7,TEN,IND,2,14,70,(14:07) PENALTY on TEN-K.Matthews False Start 5 yards enforced at TEN 30 - No Play.,3,3,2012 -20121028_IND@TEN,2,43,44,TEN,IND,2,19,75,(13:44) M.Hasselbeck pass incomplete short right to K.Britt.,3,3,2012 -20121028_IND@TEN,2,43,37,TEN,IND,3,19,75,(13:37) (Shotgun) M.Hasselbeck pass short right to C.Johnson to TEN 32 for 7 yards (J.Freeman).,3,3,2012 -20121028_IND@TEN,2,42,58,TEN,IND,4,12,68,(12:58) (Punt formation) B.Kern punts 61 yards to IND 7 Center-B.Brinkley. T.Hilton to IND 20 for 13 yards (C.Sensabaugh).,3,3,2012 -20121028_IND@TEN,2,42,46,IND,TEN,1,10,80,(12:46) A.Luck pass incomplete short right to R.Wayne (D.Morgan).,3,3,2012 -20121028_IND@TEN,2,42,42,IND,TEN,2,10,80,(12:42) A.Luck pass short right to R.Wayne to IND 33 for 13 yards (R.Mouton) [Z.Brown].,3,3,2012 -20121028_IND@TEN,2,42,9,IND,TEN,1,10,67,(12:09) V.Ballard up the middle to IND 44 for 11 yards (M.Griffin). FUMBLES (M.Griffin) RECOVERED by TEN-K.Wimbley at IND 45. PENALTY on TEN-M.Martin Defensive Offside 5 yards enforced at IND 33 - No Play.,3,3,2012 -20121028_IND@TEN,2,41,44,IND,TEN,1,5,62,(11:44) (Shotgun) A.Luck pass short left to T.Hilton to IND 36 for -2 yards (A.Verner).,3,3,2012 -20121028_IND@TEN,2,41,9,IND,TEN,2,7,64,(11:09) D.Brown right tackle to IND 35 for -1 yards (C.McCarthy).,3,3,2012 -20121028_IND@TEN,2,40,27,IND,TEN,3,8,65,(10:27) (Shotgun) A.Luck pass short left to D.Avery pushed ob at IND 45 for 10 yards (R.Mouton).,3,3,2012 -20121028_IND@TEN,2,39,55,IND,TEN,1,10,55,(9:55) A.Luck pass short left to R.Wayne pushed ob at IND 45 for no gain (A.Verner).,3,3,2012 -20121028_IND@TEN,2,39,28,IND,TEN,2,10,55,(9:28) (No Huddle) A.Luck pass incomplete short right to T.Hilton (J.McCourty).,3,3,2012 -20121028_IND@TEN,2,39,23,IND,TEN,3,10,55,(9:23) (Shotgun) A.Luck pass short right to C.Fleener to TEN 40 for 15 yards (R.Mouton).,3,3,2012 -20121028_IND@TEN,2,38,54,IND,TEN,1,10,40,(8:54) (No Huddle) D.Brown right guard to TEN 33 for 7 yards (M.Griffin).,3,3,2012 -20121028_IND@TEN,2,38,21,IND,TEN,2,3,33,(8:21) D.Brown right guard to TEN 36 for -3 yards (Z.Brown). PENALTY on IND-D.Avery Personal Foul 15 yards enforced at TEN 33 - No Play.,3,3,2012 -20121028_IND@TEN,2,37,52,IND,TEN,2,18,48,(7:52) A.Luck pass incomplete short left to D.Allen (A.Ayers).,3,3,2012 -20121028_IND@TEN,2,37,48,IND,TEN,3,18,48,(7:48) A.Luck pass incomplete short right to D.Avery.,3,3,2012 -20121028_IND@TEN,2,37,41,IND,TEN,4,18,48,(7:41) (Punt formation) P.McAfee punts 39 yards to TEN 9 Center-M.Overton. D.Reynaud to TEN 28 for 19 yards (D.Allen).,3,3,2012 -20121028_IND@TEN,2,37,28,TEN,IND,1,10,72,(7:28) M.Hasselbeck pass incomplete deep left to K.Wright. PENALTY on TEN-K.Wright Offensive Pass Interference 10 yards enforced at TEN 28 - No Play.,3,3,2012 -20121028_IND@TEN,2,37,22,TEN,IND,1,20,82,(7:22) C.Johnson left guard to TEN 21 for 3 yards (A.Bethea; J.Freeman).,3,3,2012 -20121028_IND@TEN,2,36,46,TEN,IND,2,17,79,(6:46) M.Hasselbeck pass short right to C.Stevens to TEN 33 for 12 yards (A.Bethea).,3,3,2012 -20121028_IND@TEN,2,36,6,TEN,IND,3,5,67,(6:06) (Shotgun) PENALTY on IND Encroachment 5 yards enforced at TEN 33 - No Play.,3,3,2012 -20121028_IND@TEN,2,35,42,TEN,IND,1,10,62,(5:42) M.Hasselbeck pass short left to Q.Johnson pushed ob at TEN 39 for 1 yard (T.Zbikowski).,3,3,2012 -20121028_IND@TEN,2,35,6,TEN,IND,2,9,61,(5:06) C.Johnson left tackle to TEN 43 for 4 yards (A.Bethea).,3,3,2012 -20121028_IND@TEN,2,34,23,TEN,IND,3,5,57,(4:23) (Shotgun) M.Hasselbeck pass short right to K.Wright to 50 for 7 yards (J.Powers). Penalty on IND-C.Vaughn Defensive Holding declined.,3,3,2012 -20121028_IND@TEN,2,33,52,TEN,IND,1,10,50,(3:52) M.Hasselbeck scrambles right end ran ob at IND 40 for 10 yards (J.Freeman). PENALTY on IND-J.Powers Illegal Contact 5 yards enforced at IND 40.,3,3,2012 -20121028_IND@TEN,2,33,23,TEN,IND,1,10,35,(3:23) C.Johnson right tackle to IND 31 for 4 yards (J.Powers; A.Johnson). TEN-C.Johnson was injured during the play. His return is Questionable.,3,3,2012 -20121028_IND@TEN,2,32,53,TEN,IND,2,6,31,(2:53) D.Reynaud left end to IND 27 for 4 yards (P.Angerer).,3,3,2012 -20121028_IND@TEN,2,32,14,TEN,IND,3,2,27,(2:14) M.Hasselbeck pass short right to N.Washington pushed ob at IND 22 for 5 yards (C.Vaughn).,3,3,2012 -20121028_IND@TEN,2,32,0,TEN,IND,1,10,22,(2:00) M.Hasselbeck pass deep right to K.Britt for 22 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on TEN-K.Britt Offensive Pass Interference 10 yards enforced at IND 22 - No Play.,3,3,2012 -20121028_IND@TEN,2,31,55,TEN,IND,1,20,32,(1:55) M.Hasselbeck pass incomplete deep left to N.Washington.,3,3,2012 -20121028_IND@TEN,2,31,49,TEN,IND,2,20,32,(1:49) M.Hasselbeck pass short left to K.Britt to IND 23 for 9 yards (J.Freeman).,3,3,2012 -20121028_IND@TEN,2,31,7,TEN,IND,3,11,23,(1:07) (Shotgun) M.Hasselbeck pass deep left to K.Wright for 23 yards TOUCHDOWN.,3,3,2012 -20121028_IND@TEN,2,31,7,TEN,IND,,,23,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,3,2012 -20121028_IND@TEN,2,31,7,TEN,IND,,,23,R.Bironas kicks 65 yards from TEN 35 to IND 0. M.Moore to IND 19 for 19 yards (S.Solomon).,10,3,2012 -20121028_IND@TEN,2,30,56,IND,TEN,1,10,81,(:56) (Shotgun) D.Brown up the middle ran ob at IND 22 for 3 yards (J.McCourty).,3,10,2012 -20121028_IND@TEN,2,30,49,IND,TEN,2,7,78,(:49) (No Huddle Shotgun) A.Luck pass deep left to R.Wayne to IND 44 for 22 yards (M.Griffin).,3,10,2012 -20121028_IND@TEN,2,30,40,IND,TEN,1,10,56,(:40) (Shotgun) A.Luck sacked at IND 40 for -4 yards (sack split by D.Morgan and K.Wimbley). FUMBLES (D.Morgan) recovered by IND-A.Castonzo at IND 40. A.Castonzo to IND 40 for no gain (A.Verner).,3,10,2012 -20121028_IND@TEN,2,30,30,IND,TEN,2,14,60,(:30) (Shotgun) A.Luck pass deep middle to D.Avery to TEN 43 for 17 yards (J.Babineaux). PENALTY on TEN-M.Martin Roughing the Passer 15 yards enforced at TEN 43.,3,10,2012 -20121028_IND@TEN,2,30,23,IND,TEN,1,10,28,(:23) (No Huddle Shotgun) A.Luck pass incomplete short middle to M.Moore.,3,10,2012 -20121028_IND@TEN,2,30,18,IND,TEN,2,10,28,(:18) (No Huddle) A.Luck pass short middle to C.Fleener to TEN 19 for 9 yards (J.Babineaux).,3,10,2012 -20121028_IND@TEN,2,30,10,IND,TEN,3,1,19,(:10) (Shotgun) A.Luck pass incomplete deep right to D.Avery.,3,10,2012 -20121028_IND@TEN,2,30,4,IND,TEN,4,1,19,(:04) (Field Goal formation) A.Vinatieri 37 yard field goal is BLOCKED (M.Griffin) Center-M.Overton Holder-P.McAfee RECOVERED by TEN-J.Babineaux at TEN 27. J.Babineaux to IND 31 for 42 yards (W.Saunders).,3,10,2012 -20121028_IND@TEN,3,30,0,TEN,IND,,,19,R.Bironas kicks 49 yards from TEN 35 to IND 16. C.Vaughn to IND 25 for 9 yards (J.Babineaux).,10,3,2012 -20121028_IND@TEN,3,29,51,IND,TEN,1,10,75,(14:51) A.Luck pass short right to T.Hilton ran ob at IND 34 for 9 yards.,3,10,2012 -20121028_IND@TEN,3,29,30,IND,TEN,2,1,66,(14:30) V.Ballard up the middle to IND 36 for 2 yards (J.Casey).,3,10,2012 -20121028_IND@TEN,3,28,57,IND,TEN,1,10,64,(13:57) A.Luck pass incomplete short middle to R.Wayne [S.Marks].,3,10,2012 -20121028_IND@TEN,3,28,51,IND,TEN,2,10,64,(13:51) A.Luck pass short left to T.Hilton to IND 44 for 8 yards (S.Marks).,3,10,2012 -20121028_IND@TEN,3,28,7,IND,TEN,3,2,56,(13:07) (Shotgun) A.Luck pass short left to R.Wayne to IND 48 for 4 yards (R.Mouton).,3,10,2012 -20121028_IND@TEN,3,27,33,IND,TEN,1,10,52,(12:33) (No Huddle) A.Luck pass deep right to R.Wayne to TEN 30 for 22 yards (M.Griffin).,3,10,2012 -20121028_IND@TEN,3,27,4,IND,TEN,1,10,30,(12:04) (No Huddle) V.Ballard left tackle to TEN 32 for -2 yards (A.Verner).,3,10,2012 -20121028_IND@TEN,3,26,25,IND,TEN,2,12,32,(11:25) A.Luck sacked at TEN 39 for -7 yards (A.Ayers).,3,10,2012 -20121028_IND@TEN,3,25,46,IND,TEN,3,19,39,(10:46) (Shotgun) A.Luck pass short left to M.Moore to TEN 26 for 13 yards (A.Verner).,3,10,2012 -20121028_IND@TEN,3,25,26,IND,TEN,4,6,26,(10:26) (Field Goal formation) A.Vinatieri 44 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,3,10,2012 -20121028_IND@TEN,3,25,26,IND,TEN,,,26,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,6,10,2012 -20121028_IND@TEN,3,25,20,TEN,IND,1,10,80,(10:20) M.Hasselbeck pass short right to J.Cook to TEN 20 for no gain (A.Bethea).,10,6,2012 -20121028_IND@TEN,3,24,45,TEN,IND,2,10,80,(9:45) C.Johnson right guard to TEN 22 for 2 yards (C.Redding; J.Freeman).,10,6,2012 -20121028_IND@TEN,3,24,1,TEN,IND,3,8,78,(9:01) (Shotgun) M.Hasselbeck pass incomplete deep left to K.Wright (C.Vaughn).,10,6,2012 -20121028_IND@TEN,3,23,55,TEN,IND,4,8,78,(8:55) (Punt formation) B.Kern punts 34 yards to IND 44 Center-B.Brinkley downed by TEN-J.Babineaux.,10,6,2012 -20121028_IND@TEN,3,23,46,IND,TEN,1,10,56,(8:46) D.Brown up the middle to IND 49 for 5 yards (Z.Brown).,6,10,2012 -20121028_IND@TEN,3,23,11,IND,TEN,2,5,51,(8:11) D.Brown left tackle to TEN 32 for 19 yards (M.Griffin; A.Verner).,6,10,2012 -20121028_IND@TEN,3,22,29,IND,TEN,1,10,32,(7:29) (No Huddle) A.Luck pass deep right intended for R.Wayne INTERCEPTED by M.Griffin at TEN -3. Touchback (R.Wayne).,6,10,2012 -20121028_IND@TEN,3,22,21,TEN,IND,1,10,80,(7:21) C.Johnson up the middle to TEN 23 for 3 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,3,21,49,TEN,IND,2,7,77,(6:49) M.Hasselbeck pass short right to N.Washington to TEN 39 for 16 yards (J.Powers).,10,6,2012 -20121028_IND@TEN,3,21,4,TEN,IND,1,10,61,(6:04) M.Hasselbeck pass deep right to N.Washington pushed ob at IND 32 for 29 yards (A.Bethea).,10,6,2012 -20121028_IND@TEN,3,20,38,TEN,IND,1,10,32,(5:38) M.Hasselbeck pass short right to D.Williams to IND 32 for no gain (J.Powers).,10,6,2012 -20121028_IND@TEN,3,19,56,TEN,IND,2,10,32,(4:56) C.Johnson up the middle to IND 31 for 1 yard (K.Conner).,10,6,2012 -20121028_IND@TEN,3,19,13,TEN,IND,3,9,31,(4:13) M.Hasselbeck pass short left to K.Wright to IND 27 for 4 yards (C.Vaughn).,10,6,2012 -20121028_IND@TEN,3,18,28,TEN,IND,4,5,27,(3:28) (Field Goal formation) R.Bironas 45 yard field goal is No Good Wide Right Center-B.Brinkley Holder-B.Kern.,10,6,2012 -20121028_IND@TEN,3,18,22,IND,TEN,1,10,65,(3:22) (Shotgun) V.Ballard up the middle to TEN 48 for 17 yards (J.Babineaux).,6,10,2012 -20121028_IND@TEN,3,17,56,IND,TEN,1,10,48,(2:56) (No Huddle) V.Ballard right guard to TEN 35 for 13 yards (J.Babineaux). PENALTY on IND-S.Satele Unsportsmanlike Conduct 15 yards enforced between downs.,6,10,2012 -20121028_IND@TEN,3,17,25,IND,TEN,1,10,50,(2:25) V.Ballard right end to IND 49 for -1 yards (R.Mouton).,6,10,2012 -20121028_IND@TEN,3,16,45,IND,TEN,2,11,51,(1:45) A.Luck pass incomplete short right to C.Fleener [S.Marks].,6,10,2012 -20121028_IND@TEN,3,16,40,IND,TEN,3,11,51,(1:40) A.Luck scrambles right end to TEN 48 for 3 yards (K.Wimbley). Penalty on IND-W.Justice Offensive Holding declined.,6,10,2012 -20121028_IND@TEN,3,16,13,IND,TEN,4,8,48,(1:13) (Punt formation) P.McAfee punts 48 yards to end zone Center-M.Overton Touchback.,6,10,2012 -20121028_IND@TEN,3,16,5,TEN,IND,1,10,80,(1:05) C.Johnson right end to TEN 25 for 5 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,3,15,33,TEN,IND,2,5,75,(:33) C.Johnson left tackle to TEN 30 for 5 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,4,15,0,TEN,IND,1,10,70,(15:00) M.Hasselbeck pass deep right to J.Cook to IND 41 for 29 yards (J.Powers).,10,6,2012 -20121028_IND@TEN,4,14,21,TEN,IND,1,10,41,(14:21) C.Johnson left tackle to IND 30 for 11 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,4,13,41,TEN,IND,1,10,30,(13:41) M.Hasselbeck pass short right to L.Hawkins to IND 23 for 7 yards (J.Powers).,10,6,2012 -20121028_IND@TEN,4,13,9,TEN,IND,2,3,23,(13:09) C.Johnson left guard to IND 9 for 14 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,4,12,30,TEN,IND,1,9,9,(12:30) C.Johnson right tackle to IND 7 for 2 yards (J.Freeman).,10,6,2012 -20121028_IND@TEN,4,11,54,TEN,IND,2,7,11,(11:54) M.Hasselbeck FUMBLES (Aborted) at IND 7 and recovers at IND 11. M.Hasselbeck to IND 11 for no gain (M.Tevaseu).,10,6,2012 -20121028_IND@TEN,4,11,18,TEN,IND,3,11,11,(11:18) (Shotgun) M.Hasselbeck sacked at IND 12 for -1 yards (J.Hughes).,10,6,2012 -20121028_IND@TEN,4,10,30,TEN,IND,4,12,12,(10:30) (Field Goal formation) R.Bironas 30 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,10,6,2012 -20121028_IND@TEN,4,10,30,TEN,IND,,,12,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,13,6,2012 -20121028_IND@TEN,4,10,26,IND,TEN,1,10,80,(10:26) A.Luck pass short left to R.Wayne to IND 30 for 10 yards (C.Sensabaugh).,6,13,2012 -20121028_IND@TEN,4,9,54,IND,TEN,1,10,70,(9:54) D.Brown left end to IND 30 for no gain (A.Verner; J.Babineaux).,6,13,2012 -20121028_IND@TEN,4,9,24,IND,TEN,2,10,70,(9:24) (Shotgun) A.Luck pass short middle to D.Allen to IND 43 for 13 yards (Z.Brown) [K.Wimbley].,6,13,2012 -20121028_IND@TEN,4,8,56,IND,TEN,1,10,57,(8:56) (No Huddle) D.Brown up the middle to IND 47 for 4 yards (C.McCarthy).,6,13,2012 -20121028_IND@TEN,4,8,24,IND,TEN,2,6,53,(8:24) (No Huddle Shotgun) A.Luck pass short left to D.Avery to TEN 48 for 5 yards (M.Griffin).,6,13,2012 -20121028_IND@TEN,4,8,4,IND,TEN,3,1,48,(8:04) (No Huddle) A.Luck up the middle to TEN 41 for 7 yards (C.McCarthy).,6,13,2012 -20121028_IND@TEN,4,7,19,IND,TEN,1,10,41,(7:19) PENALTY on IND-A.Luck Delay of Game 5 yards enforced at TEN 41 - No Play.,6,13,2012 -20121028_IND@TEN,4,6,57,IND,TEN,1,15,46,(6:57) A.Luck pass short right to T.Hilton ran ob at TEN 32 for 14 yards [D.Morgan].,6,13,2012 -20121028_IND@TEN,4,6,30,IND,TEN,2,1,32,(6:30) D.Brown up the middle to TEN 28 for 4 yards (S.Marks).,6,13,2012 -20121028_IND@TEN,4,5,44,IND,TEN,1,10,28,(5:44) A.Luck pass short right to W.Saunders to TEN 17 for 11 yards (C.McCarthy) [A.Ayers].,6,13,2012 -20121028_IND@TEN,4,5,3,IND,TEN,1,10,17,(5:03) A.Luck pass incomplete short middle to D.Brown.,6,13,2012 -20121028_IND@TEN,4,4,59,IND,TEN,2,10,17,(4:59) A.Luck pass incomplete short middle to D.Avery.,6,13,2012 -20121028_IND@TEN,4,4,54,IND,TEN,3,10,17,(4:54) (Shotgun) A.Luck pass short left to L.Brazill to TEN 8 for 9 yards (A.Verner).,6,13,2012 -20121028_IND@TEN,4,4,11,IND,TEN,4,1,8,(4:11) D.Carter up the middle to TEN 1 for 7 yards (M.Griffin).,6,13,2012 -20121028_IND@TEN,4,3,28,IND,TEN,1,1,1,(3:28) D.Carter up the middle for 1 yard TOUCHDOWN.,6,13,2012 -20121028_IND@TEN,4,3,28,IND,TEN,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,6,13,2012 -20121028_IND@TEN,4,3,28,IND,TEN,,,1,P.McAfee kicks 52 yards from IND 35 to TEN 13. D.Reynaud to TEN 20 for 7 yards (J.Hickman).,13,13,2012 -20121028_IND@TEN,4,3,19,TEN,IND,1,10,80,(3:19) M.Hasselbeck pass incomplete short left to C.Johnson.,13,13,2012 -20121028_IND@TEN,4,3,14,TEN,IND,2,10,80,(3:14) C.Johnson left end pushed ob at TEN 31 for 11 yards (C.Vaughn).,13,13,2012 -20121028_IND@TEN,4,3,8,TEN,IND,1,10,69,(3:08) C.Johnson right tackle to TEN 34 for 3 yards (J.Powers).,13,13,2012 -20121028_IND@TEN,4,2,33,TEN,IND,2,7,66,(2:33) M.Hasselbeck pass short right to K.Wright to TEN 47 for 13 yards (J.Powers).,13,13,2012 -20121028_IND@TEN,4,2,0,TEN,IND,1,10,53,(2:00) M.Hasselbeck pass short middle to C.Johnson to IND 42 for 11 yards (C.Redding; C.Vaughn).,13,13,2012 -20121028_IND@TEN,4,1,21,TEN,IND,1,10,42,(1:21) C.Johnson left tackle to IND 41 for 1 yard (C.Redding).,13,13,2012 -20121028_IND@TEN,4,1,15,TEN,IND,2,9,41,(1:15) (Shotgun) M.Hasselbeck pass incomplete deep middle to J.Cook.,13,13,2012 -20121028_IND@TEN,4,1,10,TEN,IND,3,9,41,(1:10) M.Hasselbeck pass incomplete short left to K.Britt (P.Angerer).,13,13,2012 -20121028_IND@TEN,4,1,7,TEN,IND,4,9,41,(1:07) (Punt formation) B.Kern punts 35 yards to IND 6 Center-B.Brinkley downed by TEN.,13,13,2012 -20121028_IND@TEN,4,0,56,IND,TEN,1,10,94,(:56) V.Ballard up the middle to IND 9 for 3 yards (C.McCarthy).,13,13,2012 -20121028_IND@TEN,4,0,52,IND,TEN,2,7,91,(:52) V.Ballard up the middle to IND 11 for 2 yards (A.Ayers; D.Morgan).,13,13,2012 -20121028_IND@TEN,4,0,47,IND,TEN,3,5,89,(:47) (Shotgun) A.Luck pass short right to D.Avery to IND 21 for 10 yards (Z.Brown).,13,13,2012 -20121028_IND@TEN,4,0,26,IND,TEN,1,10,79,(:26) (No Huddle Shotgun) A.Luck pass short middle to D.Allen to IND 28 for 7 yards (C.McCarthy; A.Ayers). IND-R.Wayne was injured during the play. His return is Probable.,13,13,2012 -20121028_IND@TEN,4,0,18,IND,TEN,2,3,72,(:18) A.Luck kneels to IND 27 for -1 yards.,13,13,2012 -20121028_IND@TEN,5,0,0,TEN,IND,,,72,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,13,13,2012 -20121028_IND@TEN,5,0,0,IND,TEN,1,10,80,(15:00) D.Brown up the middle to IND 24 for 4 yards (C.McCarthy). PENALTY on TEN-A.Ayers Illegal Use of Hands 5 yards enforced at IND 24.,13,13,2012 -20121028_IND@TEN,5,-1,42,IND,TEN,1,10,71,(14:42) D.Brown up the middle to IND 48 for 19 yards (J.Babineaux).,13,13,2012 -20121028_IND@TEN,5,-1,13,IND,TEN,1,10,52,(14:13) D.Brown left tackle to TEN 43 for 9 yards (J.Babineaux). TEN-M.Griffin was injured during the play. His return is Questionable.,13,13,2012 -20121028_IND@TEN,5,-2,38,IND,TEN,2,1,43,(13:38) D.Brown up the middle to TEN 38 for 5 yards (C.McCarthy).,13,13,2012 -20121028_IND@TEN,5,-2,0,IND,TEN,1,10,38,(13:00) D.Brown up the middle to TEN 33 for 5 yards (Z.Brown).,13,13,2012 -20121028_IND@TEN,5,-3,28,IND,TEN,2,5,33,(12:28) D.Brown up the middle to TEN 36 for -3 yards (C.McCarthy).,13,13,2012 -20121028_IND@TEN,5,-4,46,IND,TEN,3,8,36,(11:46) (Shotgun) A.Luck pass deep middle to R.Wayne to TEN 16 for 20 yards (R.Mouton).,13,13,2012 -20121028_IND@TEN,5,-4,6,IND,TEN,1,10,16,(11:06) V.Ballard left guard to TEN 16 for no gain (J.Babineaux; C.McCarthy).,13,13,2012 -20121028_IND@TEN,5,-5,24,IND,TEN,2,10,16,(10:24) A.Luck pass short left to V.Ballard for 16 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,13,13,2012 -20121028_IND@TEN,5,-5,24,IND,TEN,,,16,                      ,13,13,2012 -20121028_OAK@KC,1,-5,0,KC,OAK,,,16,R.Succop kicks 72 yards from KC 35 to OAK -7. M.Goodson Touchback.,0,0,2012 -20121028_OAK@KC,1,60,0,OAK,KC,1,10,80,(15:00) C.Palmer pass deep left intended for D.Heyward-Bey INTERCEPTED by S.Routt [R.Pitoitua] at KC 39. S.Routt to OAK 44 for 17 yards (C.Carlisle).,0,0,2012 -20121028_OAK@KC,1,59,44,KC,OAK,1,10,44,(14:44) (Shotgun) B.Quinn pass short middle to J.Charles ran ob at OAK 39 for 5 yards (J.Hanson).,0,0,2012 -20121028_OAK@KC,1,59,22,KC,OAK,2,5,39,(14:22) J.Charles left tackle to OAK 39 for no gain (M.Shaughnessy).,0,0,2012 -20121028_OAK@KC,1,58,47,KC,OAK,3,5,39,(13:47) (Shotgun) B.Quinn pass incomplete deep left to D.Bowe [T.Kelly].,0,0,2012 -20121028_OAK@KC,1,58,42,KC,OAK,4,5,39,(13:42) D.Colquitt punts 33 yards to OAK 6 Center-T.Gafford fair catch by P.Adams.,0,0,2012 -20121028_OAK@KC,1,58,34,OAK,KC,1,10,94,(13:34) D.McFadden left end to OAK 5 for -1 yards (J.Belcher).,0,0,2012 -20121028_OAK@KC,1,57,55,OAK,KC,2,11,95,(12:55) C.Palmer pass short left to D.McFadden to OAK 16 for 11 yards (T.Hali).,0,0,2012 -20121028_OAK@KC,1,57,28,OAK,KC,1,10,84,(12:28) D.McFadden up the middle to OAK 18 for 2 yards (D.Poe).,0,0,2012 -20121028_OAK@KC,1,56,51,OAK,KC,2,8,82,(11:51) (Shotgun) C.Palmer pass short left to D.Moore pushed ob at KC 24 for 58 yards (B.Flowers).,0,0,2012 -20121028_OAK@KC,1,56,17,OAK,KC,1,10,24,(11:17) D.McFadden up the middle to KC 22 for 2 yards (D.Poe).,0,0,2012 -20121028_OAK@KC,1,55,38,OAK,KC,2,8,22,(10:38) C.Palmer pass incomplete short left to R.Streater (R.Pitoitua).,0,0,2012 -20121028_OAK@KC,1,55,34,OAK,KC,3,8,22,(10:34) (Shotgun) C.Palmer pass short right to D.McFadden to KC 18 for 4 yards (D.Johnson).,0,0,2012 -20121028_OAK@KC,1,54,55,OAK,KC,4,4,18,(9:55) S.Janikowski 36 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20121028_OAK@KC,1,54,55,OAK,KC,,,18,S.Janikowski kicks 74 yards from OAK 35 to KC -9. S.Draughn Touchback.,3,0,2012 -20121028_OAK@KC,1,54,51,KC,OAK,1,10,80,(9:51) J.Charles right tackle to KC 22 for 2 yards (R.Seymour).,0,3,2012 -20121028_OAK@KC,1,54,14,KC,OAK,2,8,78,(9:14) D.McCluster left end to KC 24 for 2 yards (T.Branch).,0,3,2012 -20121028_OAK@KC,1,53,30,KC,OAK,3,6,76,(8:30) (Shotgun) B.Quinn scrambles up the middle to KC 36 for 12 yards (T.Branch).,0,3,2012 -20121028_OAK@KC,1,52,52,KC,OAK,1,10,64,(7:52) (Shotgun) S.Draughn left tackle to KC 37 for 1 yard (P.Wheeler).,0,3,2012 -20121028_OAK@KC,1,52,7,KC,OAK,2,9,63,(7:07) (Shotgun) B.Quinn scrambles up the middle to KC 43 for 6 yards (P.Wheeler).,0,3,2012 -20121028_OAK@KC,1,51,25,KC,OAK,3,3,57,(6:25) B.Quinn pass short left to J.Charles to KC 39 for -4 yards (M.Burris) [L.Houston].,0,3,2012 -20121028_OAK@KC,1,50,47,KC,OAK,4,7,61,(5:47) D.Colquitt punts 49 yards to OAK 12 Center-T.Gafford. P.Adams to OAK 17 for 5 yards (C.Greenwood).,0,3,2012 -20121028_OAK@KC,1,50,35,OAK,KC,1,10,83,(5:35) D.McFadden left end to OAK 21 for 4 yards (R.Pitoitua; J.Houston).,3,0,2012 -20121028_OAK@KC,1,49,55,OAK,KC,2,6,79,(4:55) D.McFadden up the middle to OAK 25 for 4 yards (R.Pitoitua).,3,0,2012 -20121028_OAK@KC,1,49,14,OAK,KC,3,2,75,(4:14) (Shotgun) D.McFadden right end to OAK 21 for -4 yards (D.Johnson).,3,0,2012 -20121028_OAK@KC,1,48,41,OAK,KC,4,6,79,(3:41) S.Lechler punts 43 yards to KC 36 Center-J.Condo. J.Arenas to KC 49 for 13 yards (D.Tollefson).,3,0,2012 -20121028_OAK@KC,1,48,28,KC,OAK,1,10,51,(3:28) B.Quinn sacked at KC 42 for -7 yards (R.McClain). FUMBLES (R.McClain) recovered by KC-T.Moeaki at KC 42. T.Moeaki to KC 42 for no gain (R.McClain).,0,3,2012 -20121028_OAK@KC,1,47,40,KC,OAK,2,17,58,(2:40) (Shotgun) B.Quinn pass deep middle intended for T.Moeaki INTERCEPTED by M.Giordano [M.Shaughnessy] at OAK 34. M.Giordano to KC 45 for 21 yards (D.Bowe). KC-B.Quinn was injured during the play.,0,3,2012 -20121028_OAK@KC,1,47,27,OAK,KC,1,10,45,(2:27) C.Palmer pass incomplete deep right to J.Criner.,3,0,2012 -20121028_OAK@KC,1,47,21,OAK,KC,2,10,45,(2:21) (No Huddle) D.McFadden left tackle to KC 42 for 3 yards (A.Toribio).,3,0,2012 -20121028_OAK@KC,1,46,39,OAK,KC,3,7,42,(1:39) (No Huddle) C.Palmer pass incomplete short left to D.Heyward-Bey. PENALTY on KC-S.Routt Illegal Contact 5 yards enforced at KC 42 - No Play.,3,0,2012 -20121028_OAK@KC,1,46,33,OAK,KC,1,10,37,(1:33) D.McFadden up the middle to KC 33 for 4 yards (J.Houston).,3,0,2012 -20121028_OAK@KC,1,45,51,OAK,KC,2,6,33,(:51) (No Huddle) C.Palmer pass short left to D.Moore to KC 17 for 16 yards (S.Routt).,3,0,2012 -20121028_OAK@KC,1,45,21,OAK,KC,1,10,17,(:21) (No Huddle) D.McFadden up the middle to KC 17 for no gain (R.Pitoitua).,3,0,2012 -20121028_OAK@KC,2,45,0,OAK,KC,2,10,17,(15:00) C.Palmer pass incomplete deep right to D.Moore.,3,0,2012 -20121028_OAK@KC,2,44,52,OAK,KC,3,10,17,(14:52) (Shotgun) C.Palmer pass incomplete short middle to D.Hagan (B.Flowers).,3,0,2012 -20121028_OAK@KC,2,44,48,OAK,KC,4,10,17,(14:48) S.Janikowski 35 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,0,2012 -20121028_OAK@KC,2,44,48,OAK,KC,,,17,S.Janikowski kicks 72 yards from OAK 35 to KC -7. S.Draughn Touchback.,6,0,2012 -20121028_OAK@KC,2,44,44,KC,OAK,1,10,80,(14:44) P.Hillis up the middle to KC 21 for 1 yard (D.Bryant).,0,6,2012 -20121028_OAK@KC,2,44,4,KC,OAK,2,9,79,(14:04) M.Cassel pass short left to D.Bowe to KC 28 for 7 yards (P.Lee) [L.Houston].,0,6,2012 -20121028_OAK@KC,2,43,26,KC,OAK,3,2,72,(13:26) (Shotgun) Direct snap to D.McCluster. D.McCluster right end to KC 41 for 13 yards (J.Hanson).,0,6,2012 -20121028_OAK@KC,2,42,44,KC,OAK,1,10,59,(12:44) M.Cassel pass deep middle to D.Bowe to OAK 13 for 46 yards (P.Wheeler).,0,6,2012 -20121028_OAK@KC,2,41,53,KC,OAK,1,10,13,(11:53) J.Charles right tackle to OAK 13 for no gain (M.Burris).,0,6,2012 -20121028_OAK@KC,2,41,13,KC,OAK,2,10,13,(11:13) (Shotgun) M.Cassel scrambles up the middle to OAK 12 for 1 yard (M.Burris).,0,6,2012 -20121028_OAK@KC,2,40,30,KC,OAK,3,9,12,(10:30) (Shotgun) M.Cassel pass incomplete short middle to T.Moeaki (T.Branch).,0,6,2012 -20121028_OAK@KC,2,40,25,KC,OAK,4,9,12,(10:25) R.Succop 30 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,6,2012 -20121028_OAK@KC,2,40,25,KC,OAK,,,12,R.Succop kicks 68 yards from KC 35 to OAK -3. M.Goodson to OAK 20 for 23 yards (N.Eachus).,3,6,2012 -20121028_OAK@KC,2,40,14,OAK,KC,1,10,80,(10:14) C.Palmer pass short left to D.McFadden to OAK 28 for 8 yards (D.Johnson).,6,3,2012 -20121028_OAK@KC,2,39,41,OAK,KC,2,2,72,(9:41) (No Huddle) D.McFadden up the middle to OAK 27 for -1 yards (D.Johnson).,6,3,2012 -20121028_OAK@KC,2,39,3,OAK,KC,3,3,73,(9:03) (No Huddle) C.Palmer pass incomplete deep left to D.Moore (S.Routt).,6,3,2012 -20121028_OAK@KC,2,38,57,OAK,KC,4,3,73,(8:57) S.Lechler punts 54 yards to KC 19 Center-J.Condo. J.Arenas pushed ob at KC 46 for 27 yards (O.Schmitt).,6,3,2012 -20121028_OAK@KC,2,38,46,KC,OAK,1,10,54,(8:46) M.Cassel sacked at KC 43 for -3 yards (R.Seymour).,3,6,2012 -20121028_OAK@KC,2,38,9,KC,OAK,2,13,57,(8:09) M.Cassel pass short left to J.Baldwin to 50 for 7 yards (P.Adams).,3,6,2012 -20121028_OAK@KC,2,37,25,KC,OAK,3,6,50,(7:25) (Shotgun) M.Cassel pass deep middle to T.Moeaki to OAK 30 for 20 yards (M.Giordano).,3,6,2012 -20121028_OAK@KC,2,36,46,KC,OAK,1,10,30,(6:46) (Shotgun) M.Cassel scrambles right end pushed ob at OAK 19 for 11 yards (T.Branch).,3,6,2012 -20121028_OAK@KC,2,36,13,KC,OAK,1,10,19,(6:13) J.Charles up the middle to OAK 15 for 4 yards (R.McClain).,3,6,2012 -20121028_OAK@KC,2,35,37,KC,OAK,2,6,15,(5:37) P.Hillis left end to OAK 12 for 3 yards (M.Mitchell).,3,6,2012 -20121028_OAK@KC,2,34,48,KC,OAK,3,3,12,(4:48) (Shotgun) M.Cassel sacked at OAK 24 for -12 yards (P.Wheeler).,3,6,2012 -20121028_OAK@KC,2,34,17,KC,OAK,4,15,24,(4:17) R.Succop 42 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,6,2012 -20121028_OAK@KC,2,34,17,KC,OAK,,,24,R.Succop kicks 62 yards from KC 35 to OAK 3. M.Goodson ran ob at OAK 26 for 23 yards (J.Brown).,6,6,2012 -20121028_OAK@KC,2,34,6,OAK,KC,1,10,74,(4:06) C.Palmer pass short left to D.McFadden pushed ob at 50 for 24 yards (K.Lewis). PENALTY on OAK-J.Veldheer Illegal Block Above the Waist 10 yards enforced at OAK 26.,6,6,2012 -20121028_OAK@KC,2,33,42,OAK,KC,1,20,84,(3:42) (Shotgun) M.Goodson up the middle to OAK 15 for -1 yards (D.Johnson).,6,6,2012 -20121028_OAK@KC,2,33,6,OAK,KC,2,21,85,(3:06) (No Huddle) C.Palmer pass short right to B.Myers to OAK 44 for 29 yards (J.Arenas) [J.Houston].,6,6,2012 -20121028_OAK@KC,2,32,21,OAK,KC,1,10,56,(2:21) (No Huddle) D.McFadden right end to OAK 46 for 2 yards (D.Johnson).,6,6,2012 -20121028_OAK@KC,2,32,0,OAK,KC,2,8,54,(2:00) C.Palmer pass short right to B.Myers pushed ob at 50 for 4 yards (D.Johnson).,6,6,2012 -20121028_OAK@KC,2,31,55,OAK,KC,3,4,50,(1:55) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey (D.Johnson).,6,6,2012 -20121028_OAK@KC,2,31,50,OAK,KC,4,4,50,(1:50) S.Lechler punts 36 yards to KC 14 Center-J.Condo. J.Arenas MUFFS catch RECOVERED by OAK-J.Condo at KC 14. J.Condo to KC 11 for 3 yards (J.Brown).,6,6,2012 -20121028_OAK@KC,2,31,39,OAK,KC,1,10,11,(1:39) D.McFadden up the middle to KC 9 for 2 yards (T.Hali).,6,6,2012 -20121028_OAK@KC,2,30,58,OAK,KC,2,8,9,(:58) C.Palmer pass incomplete short left to J.Criner.,6,6,2012 -20121028_OAK@KC,2,30,53,OAK,KC,3,8,9,(:53) (Shotgun) C.Palmer pass short middle to D.Moore for 9 yards TOUCHDOWN.,6,6,2012 -20121028_OAK@KC,2,30,53,OAK,KC,,,9,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,6,6,2012 -20121028_OAK@KC,2,30,53,OAK,KC,,,9,S.Janikowski kicks 70 yards from OAK 35 to KC -5. S.Draughn Touchback.,13,6,2012 -20121028_OAK@KC,2,30,49,KC,OAK,1,10,80,(:49) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 33 for 13 yards (M.Burris).,6,13,2012 -20121028_OAK@KC,2,30,31,KC,OAK,1,10,67,(:31) (No Huddle Shotgun) M.Cassel pass short left to J.Charles to KC 38 for 5 yards (P.Lee).,6,13,2012 -20121028_OAK@KC,2,30,23,KC,OAK,2,5,62,(:23) (Shotgun) M.Cassel pass short middle to T.Moeaki to 50 for 12 yards (P.Wheeler).,6,13,2012 -20121028_OAK@KC,2,30,12,KC,OAK,1,10,50,(:12) (Shotgun) M.Cassel pass incomplete short right to D.McCluster [D.Bryant].,6,13,2012 -20121028_OAK@KC,2,30,6,KC,OAK,2,10,50,(:06) (Shotgun) M.Cassel pass incomplete short left to T.Moeaki [T.Branch].,6,13,2012 -20121028_OAK@KC,2,30,0,KC,OAK,3,10,50,(:00) M.Cassel kneels to KC 49 for -1 yards.,6,13,2012 -20121028_OAK@KC,3,30,0,OAK,KC,,,50,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,13,6,2012 -20121028_OAK@KC,3,30,0,OAK,KC,1,10,82,(15:00) M.Cassel FUMBLES (Aborted) at KC 19 RECOVERED by OAK-T.Kelly at KC 18. T.Kelly to KC 18 for no gain (J.Asamoah).,13,6,2012 -20121028_OAK@KC,3,29,52,OAK,KC,1,10,18,(14:52) (Shotgun) C.Palmer pass short right to D.Moore to KC 11 for 7 yards (B.Flowers).,13,6,2012 -20121028_OAK@KC,3,29,9,OAK,KC,2,3,11,(14:09) C.Palmer pass incomplete short right to D.Moore.,13,6,2012 -20121028_OAK@KC,3,29,6,OAK,KC,3,3,11,(14:06) C.Palmer pass incomplete short left to R.Streater.,13,6,2012 -20121028_OAK@KC,3,29,2,OAK,KC,4,3,11,(14:02) S.Janikowski 29 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,13,6,2012 -20121028_OAK@KC,3,29,2,OAK,KC,,,11,S.Janikowski kicks 73 yards from OAK 35 to KC -8. S.Draughn to KC 22 for 30 yards (R.Gordon).,16,6,2012 -20121028_OAK@KC,3,28,53,KC,OAK,1,10,78,(13:53) J.Charles left end to KC 20 for -2 yards (M.Shaughnessy).,6,16,2012 -20121028_OAK@KC,3,28,25,KC,OAK,2,12,80,(13:25) M.Cassel pass short right to J.O'Connell to KC 27 for 7 yards (M.Huff).,6,16,2012 -20121028_OAK@KC,3,27,42,KC,OAK,3,5,73,(12:42) (Shotgun) M.Cassel pass short right to T.Moeaki pushed ob at KC 37 for 10 yards (L.Houston).,6,16,2012 -20121028_OAK@KC,3,27,7,KC,OAK,1,10,63,(12:07) M.Cassel pass incomplete short middle to T.Moeaki (L.Houston).,6,16,2012 -20121028_OAK@KC,3,27,2,KC,OAK,2,10,63,(12:02) P.Hillis up the middle to OAK 46 for 17 yards (M.Giordano).,6,16,2012 -20121028_OAK@KC,3,26,20,KC,OAK,1,10,46,(11:20) M.Cassel pass short right to J.O'Connell to OAK 35 for 11 yards (M.Burris).,6,16,2012 -20121028_OAK@KC,3,25,41,KC,OAK,1,10,35,(10:41) J.Charles right tackle to OAK 27 for 8 yards (P.Lee). PENALTY on KC-J.Allen Offensive Holding 10 yards enforced at OAK 35 - No Play.,6,16,2012 -20121028_OAK@KC,3,25,16,KC,OAK,1,20,45,(10:16) M.Cassel pass incomplete deep left to S.Breaston.,6,16,2012 -20121028_OAK@KC,3,25,9,KC,OAK,2,20,45,(10:09) (Shotgun) M.Cassel pass short middle to P.Hillis to OAK 40 for 5 yards (P.Wheeler).,6,16,2012 -20121028_OAK@KC,3,24,27,KC,OAK,3,15,40,(9:27) (Shotgun) M.Cassel scrambles up the middle to OAK 34 for 6 yards (M.Mitchell).,6,16,2012 -20121028_OAK@KC,3,23,45,KC,OAK,4,9,34,(8:45) R.Succop 52 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,6,16,2012 -20121028_OAK@KC,3,23,45,KC,OAK,,,34,R.Succop kicks 71 yards from KC 35 to OAK -6. M.Goodson Touchback.,9,16,2012 -20121028_OAK@KC,3,23,40,OAK,KC,1,10,80,(8:40) (Shotgun) D.McFadden up the middle to OAK 39 for 19 yards (K.Lewis).,16,9,2012 -20121028_OAK@KC,3,23,16,OAK,KC,1,10,61,(8:16) (No Huddle) C.Palmer pass short left to B.Myers to KC 45 for 16 yards (K.Lewis; S.Routt).,16,9,2012 -20121028_OAK@KC,3,22,31,OAK,KC,1,10,45,(7:31) (No Huddle Shotgun) D.McFadden up the middle to KC 43 for 2 yards (J.Belcher).,16,9,2012 -20121028_OAK@KC,3,21,54,OAK,KC,2,8,43,(6:54) (No Huddle) C.Palmer pass short left to R.Streater to KC 34 for 9 yards (S.Routt) [T.Hali].,16,9,2012 -20121028_OAK@KC,3,21,20,OAK,KC,1,10,34,(6:20) (No Huddle) D.McFadden up the middle to KC 32 for 2 yards (D.Johnson).,16,9,2012 -20121028_OAK@KC,3,20,49,OAK,KC,2,8,32,(5:49) (No Huddle) C.Palmer pass short left to D.Heyward-Bey for 32 yards TOUCHDOWN.,16,9,2012 -20121028_OAK@KC,3,20,49,OAK,KC,,,32,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,16,9,2012 -20121028_OAK@KC,3,20,49,OAK,KC,,,32,S.Janikowski kicks 67 yards from OAK 35 to KC -2. S.Draughn to KC 33 for 35 yards (P.Lee). PENALTY on KC-A.Bailey Offensive Holding 10 yards enforced at KC 20.,23,9,2012 -20121028_OAK@KC,3,20,34,KC,OAK,1,10,90,(5:34) P.Hillis up the middle to KC 12 for 2 yards (M.Burris).,9,23,2012 -20121028_OAK@KC,3,19,56,KC,OAK,2,8,88,(4:56) M.Cassel scrambles up the middle to KC 15 for 3 yards (M.Burris).,9,23,2012 -20121028_OAK@KC,3,19,11,KC,OAK,3,5,85,(4:11) (Shotgun) M.Cassel pass incomplete short right to D.Bowe.,9,23,2012 -20121028_OAK@KC,3,19,7,KC,OAK,4,5,85,(4:07) D.Colquitt punts 57 yards to OAK 28 Center-T.Gafford. P.Adams pushed ob at KC 45 for 27 yards (B.Siler).,9,23,2012 -20121028_OAK@KC,3,18,52,OAK,KC,1,10,45,(3:52) C.Palmer pass incomplete short right to D.McFadden (B.Flowers).,23,9,2012 -20121028_OAK@KC,3,18,46,OAK,KC,2,10,45,(3:46) (No Huddle) D.McFadden right end to KC 45 for no gain (B.Flowers).,23,9,2012 -20121028_OAK@KC,3,18,0,OAK,KC,3,10,45,(3:00) (Shotgun) C.Palmer pass incomplete short right to R.Streater.,23,9,2012 -20121028_OAK@KC,3,17,54,OAK,KC,4,10,45,(2:54) S.Lechler punts 45 yards to end zone Center-J.Condo Touchback.,23,9,2012 -20121028_OAK@KC,3,17,46,KC,OAK,1,10,80,(2:46) J.Charles right end to KC 24 for 4 yards (M.Burris). PENALTY on KC-T.Moeaki Offensive Holding 10 yards enforced at KC 20 - No Play.,9,23,2012 -20121028_OAK@KC,3,17,21,KC,OAK,1,20,90,(2:21) (Shotgun) M.Cassel pass short left to D.McCluster to KC 15 for 5 yards (P.Wheeler).,9,23,2012 -20121028_OAK@KC,3,16,42,KC,OAK,2,15,85,(1:42) M.Cassel pass short right to J.O'Connell to KC 15 for no gain (P.Wheeler).,9,23,2012 -20121028_OAK@KC,3,15,56,KC,OAK,3,15,85,(:56) (Shotgun) M.Cassel pass short left to S.Draughn to KC 22 for 7 yards (P.Wheeler).,9,23,2012 -20121028_OAK@KC,3,15,17,KC,OAK,4,8,78,(:17) D.Colquitt punts 45 yards to OAK 33 Center-T.Gafford fair catch by P.Adams.,9,23,2012 -20121028_OAK@KC,3,15,9,OAK,KC,1,10,67,(:09) D.McFadden left end to OAK 34 for 1 yard (D.Poe).,23,9,2012 -20121028_OAK@KC,4,15,0,OAK,KC,2,9,66,(15:00) (Shotgun) D.McFadden left tackle to OAK 40 for 6 yards (D.Johnson).,23,9,2012 -20121028_OAK@KC,4,14,19,OAK,KC,3,3,60,(14:19) (Shotgun) C.Palmer pass incomplete short right to D.McFadden.,23,9,2012 -20121028_OAK@KC,4,14,12,OAK,KC,4,3,60,(14:12) S.Lechler punts 41 yards to KC 19 Center-J.Condo. J.Arenas to KC 24 for 5 yards (V.So'oto).,23,9,2012 -20121028_OAK@KC,4,14,1,KC,OAK,1,10,76,(14:01) (Shotgun) M.Cassel pass incomplete short right to S.Draughn [P.Wheeler].,9,23,2012 -20121028_OAK@KC,4,13,58,KC,OAK,2,10,76,(13:58) S.Draughn up the middle to KC 30 for 6 yards (R.McClain).,9,23,2012 -20121028_OAK@KC,4,13,17,KC,OAK,3,4,70,(13:17) (Shotgun) M.Cassel pass incomplete short right to D.McCluster [T.Kelly].,9,23,2012 -20121028_OAK@KC,4,13,12,KC,OAK,4,4,70,(13:12) D.Colquitt punts 52 yards to OAK 18 Center-T.Gafford. P.Adams to OAK 24 for 6 yards (J.O'Connell).,9,23,2012 -20121028_OAK@KC,4,13,1,OAK,KC,1,10,76,(13:01) C.Palmer pass short left to D.Moore to OAK 30 for 6 yards (S.Routt).,23,9,2012 -20121028_OAK@KC,4,12,22,OAK,KC,2,4,70,(12:22) D.McFadden right end to OAK 35 for 5 yards (J.Arenas).,23,9,2012 -20121028_OAK@KC,4,11,38,OAK,KC,1,10,65,(11:38) D.McFadden left end to KC 37 for 28 yards (K.Lewis).,23,9,2012 -20121028_OAK@KC,4,11,4,OAK,KC,1,10,37,(11:04) M.Goodson up the middle to KC 33 for 4 yards (J.Belcher).,23,9,2012 -20121028_OAK@KC,4,10,21,OAK,KC,2,6,33,(10:21) (Shotgun) M.Goodson right end pushed ob at KC 12 for 21 yards (T.Daniels).,23,9,2012 -20121028_OAK@KC,4,9,55,OAK,KC,1,10,12,(9:55) (Shotgun) M.Goodson up the middle to KC 14 for -2 yards (E.Berry).,23,9,2012 -20121028_OAK@KC,4,9,12,OAK,KC,2,12,14,(9:12) D.McFadden up the middle to KC 19 for -5 yards (E.Berry; A.Bailey).,23,9,2012 -20121028_OAK@KC,4,8,27,OAK,KC,3,17,19,(8:27) C.Palmer pass incomplete short right to R.Streater.,23,9,2012 -20121028_OAK@KC,4,8,23,OAK,KC,4,17,19,(8:23) S.Janikowski 37 yard field goal is No Good Wide Right Center-J.Condo Holder-S.Lechler. PENALTY on KC-J.Brown Defensive Offside 5 yards enforced at KC 19 - No Play.,23,9,2012 -20121028_OAK@KC,4,8,18,OAK,KC,4,12,14,(8:18) S.Janikowski 32 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,23,9,2012 -20121028_OAK@KC,4,8,18,OAK,KC,,,14,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,26,9,2012 -20121028_OAK@KC,4,8,12,KC,OAK,1,10,80,(8:12) M.Cassel pass short left to D.McCluster to KC 34 for 14 yards (P.Lee).,9,26,2012 -20121028_OAK@KC,4,7,46,KC,OAK,1,10,66,(7:46) (No Huddle Shotgun) M.Cassel pass short right to D.McCluster ran ob at KC 45 for 11 yards (J.Hanson).,9,26,2012 -20121028_OAK@KC,4,7,25,KC,OAK,1,10,55,(7:25) (No Huddle Shotgun) M.Cassel pass incomplete short left to D.Bowe (P.Lee).,9,26,2012 -20121028_OAK@KC,4,7,19,KC,OAK,2,10,55,(7:19) (Shotgun) M.Cassel scrambles up the middle to OAK 40 for 15 yards (P.Lee).,9,26,2012 -20121028_OAK@KC,4,6,40,KC,OAK,1,10,40,(6:40) (No Huddle Shotgun) M.Cassel pass short right to D.McCluster to OAK 39 for 1 yard (T.Branch) [L.Houston].,9,26,2012 -20121028_OAK@KC,4,5,54,KC,OAK,2,9,39,(5:54) (No Huddle Shotgun) M.Cassel pass short middle to T.Moeaki to OAK 24 for 15 yards (P.Wheeler).,9,26,2012 -20121028_OAK@KC,4,5,9,KC,OAK,1,10,24,(5:09) (No Huddle Shotgun) M.Cassel pass deep left intended for J.Baldwin INTERCEPTED by P.Lee at OAK 2. P.Lee to OAK 6 for 4 yards (T.Moeaki). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,9,26,2012 -20121028_OAK@KC,4,4,58,OAK,KC,1,10,94,(4:58) D.McFadden up the middle to OAK 8 for 2 yards (Ty.Jackson).,26,9,2012 -20121028_OAK@KC,4,4,15,OAK,KC,2,8,92,(4:15) D.McFadden up the middle to OAK 11 for 3 yards (D.Poe).,26,9,2012 -20121028_OAK@KC,4,3,28,OAK,KC,3,5,89,(3:28) D.McFadden right end to OAK 9 for -2 yards (J.Houston).,26,9,2012 -20121028_OAK@KC,4,3,18,OAK,KC,4,7,91,(3:18) S.Lechler punts 37 yards to OAK 46 Center-J.Condo. J.Arenas to OAK 32 for 14 yards (J.Condo).,26,9,2012 -20121028_OAK@KC,4,3,9,KC,OAK,1,10,32,(3:09) (Shotgun) M.Cassel pass short left to D.Bowe to OAK 20 for 12 yards (P.Wheeler).,9,26,2012 -20121028_OAK@KC,4,2,37,KC,OAK,1,10,20,(2:37) (No Huddle Shotgun) M.Cassel pass incomplete short left to J.Charles [R.Seymour]. PENALTY on OAK-R.Seymour Roughing the Passer 10 yards enforced at OAK 20 - No Play.,9,26,2012 -20121028_OAK@KC,4,2,32,KC,OAK,1,10,10,(2:32) (Shotgun) M.Cassel pass short right to D.McCluster for 10 yards TOUCHDOWN.,9,26,2012 -20121028_OAK@KC,4,2,32,KC,OAK,,,10,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,9,26,2012 -20121028_OAK@KC,4,2,32,KC,OAK,,,10,R.Succop kicks onside 10 yards from KC 35 to KC 45. R.Streater (didn't try to advance) to KC 45 for no gain (C.Greenwood).,16,26,2012 -20121028_OAK@KC,4,2,26,OAK,KC,1,10,45,(2:26) D.McFadden left tackle to KC 43 for 2 yards (Ty.Jackson).,26,16,2012 -20121028_OAK@KC,4,2,21,OAK,KC,2,8,43,(2:21) D.McFadden left end to KC 22 for 21 yards (K.Lewis).,26,16,2012 -20121028_OAK@KC,4,2,10,OAK,KC,1,10,22,(2:10) D.McFadden right tackle to KC 20 for 2 yards (E.Berry).,26,16,2012 -20121028_OAK@KC,4,2,0,OAK,KC,2,8,20,(2:00) D.McFadden up the middle to KC 16 for 4 yards (Ty.Jackson).,26,16,2012 -20121028_OAK@KC,4,1,14,OAK,KC,3,4,16,(1:14) D.McFadden up the middle to KC 9 for 7 yards (D.Johnson).,26,16,2012 -20121028_OAK@KC,4,0,26,OAK,KC,1,9,9,(:26) C.Palmer kneels to KC 10 for -1 yards.,26,16,2012 -20121028_OAK@KC,4,0,26,OAK,KC,,,9,                      ,26,16,2012 -20121028_NYG@DAL,1,0,0,DAL,NYG,,,9,D.Bailey kicks 74 yards from DAL 35 to NYG -9. D.Wilson Touchback. Ball was kicked out of the end zone.,0,0,2012 -20121028_NYG@DAL,1,60,0,NYG,DAL,1,10,80,(15:00) A.Bradshaw right tackle to NYG 22 for 2 yards (D.Ware K.Coleman).,0,0,2012 -20121028_NYG@DAL,1,59,23,NYG,DAL,2,8,78,(14:23) E.Manning pass short right to M.Bennett to NYG 21 for -1 yards (J.Ratliff). Pass off play action.,0,0,2012 -20121028_NYG@DAL,1,58,38,NYG,DAL,3,9,79,(13:38) (Shotgun) E.Manning pass deep middle to R.Randle to DAL 23 for 56 yards (B.Carr). Pass complete off play action; deep seam route.,0,0,2012 -20121028_NYG@DAL,1,57,52,NYG,DAL,1,10,23,(12:52) A.Bradshaw right tackle to DAL 23 for no gain (K.Coleman).,0,0,2012 -20121028_NYG@DAL,1,57,13,NYG,DAL,2,10,23,(12:13) (Shotgun) E.Manning pass incomplete short middle to A.Brown [E.Sims]. Penalty on NYG-S.Locklear Illegal Touch Pass declined.,0,0,2012 -20121028_NYG@DAL,1,57,3,NYG,DAL,3,10,23,(12:03) (Shotgun) E.Manning pass incomplete short right to H.Nicks (M.Claiborne).,0,0,2012 -20121028_NYG@DAL,1,56,58,NYG,DAL,4,10,23,(11:58) (Field Goal formation) L.Tynes 41 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20121028_NYG@DAL,1,56,58,NYG,DAL,,,23,L.Tynes kicks 65 yards from NYG 35 to DAL 0. L.Dunbar to DAL 11 for 11 yards (S.Brown).,3,0,2012 -20121028_NYG@DAL,1,56,46,DAL,NYG,1,10,89,(11:46) T.Romo pass short left to D.Bryant pushed ob at DAL 16 for 5 yards (C.Webster). Pass complete on a quick curl.,0,3,2012 -20121028_NYG@DAL,1,56,21,DAL,NYG,2,5,84,(11:21) F.Jones up the middle to DAL 18 for 2 yards (J.Pierre-Paul L.Joseph).,0,3,2012 -20121028_NYG@DAL,1,55,40,DAL,NYG,3,3,82,(10:40) (Shotgun) T.Romo pass short middle to M.Austin to DAL 22 for 4 yards (C.Blackburn).,0,3,2012 -20121028_NYG@DAL,1,55,4,DAL,NYG,1,10,78,(10:04) T.Romo pass incomplete short right to F.Jones.,0,3,2012 -20121028_NYG@DAL,1,54,54,DAL,NYG,2,10,78,(9:54) T.Romo pass incomplete deep right to M.Austin.,0,3,2012 -20121028_NYG@DAL,1,54,50,DAL,NYG,3,10,78,(9:50) (Shotgun) T.Romo pass short middle to M.Austin to DAL 45 for 23 yards (J.Hosley). Penalty on NYG-J.Hosley Illegal Contact declined.,0,3,2012 -20121028_NYG@DAL,1,54,23,DAL,NYG,1,10,55,(9:23) T.Romo pass deep middle intended for D.Bryant INTERCEPTED by S.Brown at NYG 36. S.Brown to DAL 27 for 37 yards (P.Tanner).,0,3,2012 -20121028_NYG@DAL,1,54,11,NYG,DAL,1,10,27,(9:11) E.Manning pass short left to M.Bennett to DAL 21 for 6 yards (D.Connor).,3,0,2012 -20121028_NYG@DAL,1,53,33,NYG,DAL,2,4,21,(8:33) D.Wilson right tackle to DAL 19 for 2 yards (K.Coleman; J.Hatcher).,3,0,2012 -20121028_NYG@DAL,1,52,54,NYG,DAL,3,2,19,(7:54) (Shotgun) A.Bradshaw right end to DAL 19 for no gain (J.Ratliff). Direct snap to Bradshaw.,3,0,2012 -20121028_NYG@DAL,1,52,17,NYG,DAL,4,2,19,(7:17) (Field Goal formation) L.Tynes 37 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,0,2012 -20121028_NYG@DAL,1,52,17,NYG,DAL,,,19,L.Tynes kicks 66 yards from NYG 35 to DAL -1. L.Dunbar to DAL 14 for 15 yards (K.Rivers).,6,0,2012 -20121028_NYG@DAL,1,52,7,DAL,NYG,1,10,86,(7:07) F.Jones up the middle to DAL 19 for 5 yards (M.Kuhn).,0,6,2012 -20121028_NYG@DAL,1,51,37,DAL,NYG,2,5,81,(6:37) F.Jones left end pushed ob at DAL 24 for 5 yards (O.Umenyiora).,0,6,2012 -20121028_NYG@DAL,1,50,57,DAL,NYG,1,10,76,(5:57) T.Romo pass intended for M.Austin INTERCEPTED by C.Webster at NYG 31. C.Webster pushed ob at DAL 31 for 38 yards (R.Cook).,0,6,2012 -20121028_NYG@DAL,1,50,42,NYG,DAL,1,10,31,(5:42) E.Manning pass short right to M.Bennett to DAL 19 for 12 yards (B.Carter).,6,0,2012 -20121028_NYG@DAL,1,50,5,NYG,DAL,1,10,19,(5:05) A.Bradshaw left end to DAL 7 for 12 yards (D.McCray; D.Connor). DAL-D.Ware was injured during the play. His return is Questionable.,6,0,2012 -20121028_NYG@DAL,1,49,26,NYG,DAL,1,7,7,(4:26) (Shotgun) A.Bradshaw left tackle to DAL 1 for 6 yards (J.Hatcher).,6,0,2012 -20121028_NYG@DAL,1,48,46,NYG,DAL,2,1,1,(3:46) A.Brown left end for 1 yard TOUCHDOWN.,6,0,2012 -20121028_NYG@DAL,1,48,46,NYG,DAL,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,6,0,2012 -20121028_NYG@DAL,1,48,46,NYG,DAL,,,1,L.Tynes kicks 67 yards from NYG 35 to DAL -2. L.Dunbar pushed ob at DAL 42 for 44 yards (S.Brown).,13,0,2012 -20121028_NYG@DAL,1,48,31,DAL,NYG,1,10,58,(3:31) F.Jones left end to DAL 41 for -1 yards (M.Boley; J.Pierre-Paul).,0,13,2012 -20121028_NYG@DAL,1,48,1,DAL,NYG,2,11,59,(3:01) (Shotgun) T.Romo pass short right to J.Phillips to DAL 46 for 5 yards (C.Webster).,0,13,2012 -20121028_NYG@DAL,1,47,33,DAL,NYG,3,6,67,(2:33) (Shotgun) T.Romo Aborted. R.Cook FUMBLES at DAL 46 recovered by DAL-T.Romo at DAL 33. T.Romo pass incomplete short middle to D.Bryant.,0,13,2012 -20121028_NYG@DAL,1,47,20,DAL,NYG,4,6,54,(2:20) (Punt formation) B.Moorman punts 39 yards to NYG 15 Center-L.Ladouceur fair catch by R.Randle.,0,13,2012 -20121028_NYG@DAL,1,47,17,NYG,DAL,1,10,85,(2:17) D.Wilson right end to NYG 14 for -1 yards (B.Carter).,13,0,2012 -20121028_NYG@DAL,1,46,40,NYG,DAL,2,11,86,(1:40) E.Manning pass short left to V.Cruz pushed ob at NYG 20 for 6 yards (B.Carr).,13,0,2012 -20121028_NYG@DAL,1,46,12,NYG,DAL,3,5,80,(1:12) (Shotgun) E.Manning pass incomplete short left to H.Nicks. Pass thrown incomplete on seam route; Claiborne closest defender.,13,0,2012 -20121028_NYG@DAL,1,46,8,NYG,DAL,4,5,80,(1:08) (Punt formation) S.Weatherford punts 53 yards to DAL 27 Center-Z.DeOssie. D.Bryant MUFFS catch and recovers at DAL 21. D.Bryant to DAL 20 for -1 yards (Z.DeOssie). FUMBLES (Z.DeOssie) RECOVERED by NYG-M.Coe at DAL 15.,13,0,2012 -20121028_NYG@DAL,1,45,51,NYG,DAL,1,10,15,(:51) A.Bradshaw right tackle to DAL 12 for 3 yards (E.Sims).,13,0,2012 -20121028_NYG@DAL,1,45,9,NYG,DAL,2,7,12,(:09) (Shotgun) A.Bradshaw right tackle to DAL 13 for -1 yards (E.Frampton).,13,0,2012 -20121028_NYG@DAL,2,45,0,NYG,DAL,3,8,13,(15:00) (Shotgun) E.Manning sacked at DAL 20 for -7 yards (D.Ware). PENALTY on DAL-D.Ware Defensive Offside 5 yards enforced at DAL 13 - No Play.,13,0,2012 -20121028_NYG@DAL,2,44,33,NYG,DAL,3,3,8,(14:33) (Shotgun) E.Manning pass incomplete short middle to M.Bennett. Pass incomplete on a slant at the goal line.,13,0,2012 -20121028_NYG@DAL,2,44,26,NYG,DAL,4,3,8,(14:26) (Field Goal formation) L.Tynes 26 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,13,0,2012 -20121028_NYG@DAL,2,44,26,NYG,DAL,,,8,L.Tynes kicks 74 yards from NYG 35 to DAL -9. L.Dunbar Touchback.,16,0,2012 -20121028_NYG@DAL,2,44,22,DAL,NYG,1,10,80,(14:22) T.Romo pass short middle to J.Witten to DAL 31 for 11 yards (K.Rivers). Pass complete on a curl.,0,16,2012 -20121028_NYG@DAL,2,43,47,DAL,NYG,1,10,69,(13:47) F.Jones left guard to DAL 34 for 3 yards (C.Blackburn).,0,16,2012 -20121028_NYG@DAL,2,43,15,DAL,NYG,2,7,66,(13:15) T.Romo pass short left intended for F.Jones INTERCEPTED by J.Pierre-Paul [C.Canty] at DAL 28. J.Pierre-Paul for 28 yards TOUCHDOWN.,0,16,2012 -20121028_NYG@DAL,2,43,15,NYG,DAL,,,66,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,16,0,2012 -20121028_NYG@DAL,2,43,15,NYG,DAL,,,66,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback. Ball was kicked out of the end zone.,23,0,2012 -20121028_NYG@DAL,2,43,5,DAL,NYG,1,10,80,(13:05) F.Jones up the middle to DAL 24 for 4 yards (M.Boley).,0,23,2012 -20121028_NYG@DAL,2,42,35,DAL,NYG,2,6,76,(12:35) F.Jones right end to DAL 23 for -1 yards (M.Boley).,0,23,2012 -20121028_NYG@DAL,2,41,55,DAL,NYG,3,7,77,(11:55) (Shotgun) T.Romo pass incomplete deep left to M.Austin. Pass incomplete on a fly pattern; Hosley closest defender.,0,23,2012 -20121028_NYG@DAL,2,41,49,DAL,NYG,4,7,77,(11:49) (Punt formation) B.Moorman punts 37 yards to NYG 40 Center-L.Ladouceur downed by DAL-J.Phillips.,0,23,2012 -20121028_NYG@DAL,2,41,37,NYG,DAL,1,10,60,(11:37) A.Bradshaw up the middle to NYG 45 for 5 yards (K.Coleman). FUMBLES (K.Coleman) RECOVERED by DAL-M.Claiborne at DAL 48. M.Claiborne to DAL 48 for no gain (W.Beatty). DAL-D.Connor was injured during the play. His return is Questionable.,23,0,2012 -20121028_NYG@DAL,2,41,29,DAL,NYG,1,10,52,(11:29) T.Romo pass short left to J.Witten to NYG 45 for 7 yards (A.Rolle).,0,23,2012 -20121028_NYG@DAL,2,40,57,DAL,NYG,2,3,45,(10:57) T.Romo pass incomplete short left to M.Austin. Pass incomplete on a curl sideline at the New York 35.,0,23,2012 -20121028_NYG@DAL,2,40,50,DAL,NYG,3,3,45,(10:50) (Shotgun) T.Romo pass incomplete short left to K.Ogletree. Pass thrown incomplete at the New York 33.,0,23,2012 -20121028_NYG@DAL,2,40,45,DAL,NYG,4,3,45,(10:45) (Punt formation) B.Moorman punts 39 yards to NYG 6 Center-L.Ladouceur fair catch by R.Randle.,0,23,2012 -20121028_NYG@DAL,2,40,38,NYG,DAL,1,10,94,(10:38) E.Manning pass short right to H.Nicks ran ob at NYG 11 for 5 yards (M.Jenkins).,23,0,2012 -20121028_NYG@DAL,2,40,7,NYG,DAL,2,5,89,(10:07) A.Brown right guard to NYG 25 for 14 yards (B.Carter).,23,0,2012 -20121028_NYG@DAL,2,39,27,NYG,DAL,1,10,75,(9:27) E.Manning pass incomplete deep right to H.Nicks. Pass incomplete after roll right being forced out of the pocket; McCray closest defender.,23,0,2012 -20121028_NYG@DAL,2,39,17,NYG,DAL,2,10,75,(9:17) A.Brown left guard to NYG 31 for 6 yards (T.Crawford).,23,0,2012 -20121028_NYG@DAL,2,38,41,NYG,DAL,3,4,69,(8:41) (Shotgun) E.Manning pass incomplete short left to V.Cruz (O.Scandrick). Pass incomplete sideline after roll left.,23,0,2012 -20121028_NYG@DAL,2,38,34,NYG,DAL,4,4,69,(8:34) (Punt formation) S.Weatherford punts 41 yards to DAL 28 Center-Z.DeOssie out of bounds.,23,0,2012 -20121028_NYG@DAL,2,38,29,DAL,NYG,1,10,72,(8:29) T.Romo pass short left to J.Witten to DAL 37 for 9 yards (K.Rivers). Pass complete on a curl.,0,23,2012 -20121028_NYG@DAL,2,37,50,DAL,NYG,2,1,63,(7:50) T.Romo pass short right to M.Austin to DAL 47 for 10 yards (P.Amukamara). Pass complete on a slant.,0,23,2012 -20121028_NYG@DAL,2,37,17,DAL,NYG,1,10,53,(7:17) T.Romo pass short right to M.Austin to NYG 48 for 5 yards (P.Amukamara) [C.Canty]. Pass complete on a curl.,0,23,2012 -20121028_NYG@DAL,2,36,38,DAL,NYG,2,5,48,"(6:38) (Shotgun) T.Romo pass deep right to M.Austin pushed ob at NYG 24 for 24 yards (P.Amukamara). Pass complete on a ""fly"" pattern.",0,23,2012 -20121028_NYG@DAL,2,36,18,DAL,NYG,1,10,24,(6:18) (Shotgun) T.Romo pass incomplete deep right to M.Austin. Pass thrown right corner back of end zone; Amukamara closest defender.,0,23,2012 -20121028_NYG@DAL,2,36,11,DAL,NYG,2,10,24,(6:11) T.Romo pass short right to J.Witten to NYG 4 for 20 yards (S.Brown). Pass complete on crossing pattern.,0,23,2012 -20121028_NYG@DAL,2,35,32,DAL,NYG,1,4,4,(5:32) T.Romo pass incomplete short right to M.Austin.,0,23,2012 -20121028_NYG@DAL,2,35,27,DAL,NYG,2,4,4,(5:27) F.Jones up the middle for 4 yards TOUCHDOWN.,0,23,2012 -20121028_NYG@DAL,2,35,27,DAL,NYG,,,4,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,23,2012 -20121028_NYG@DAL,2,35,27,DAL,NYG,,,4,D.Bailey kicks 61 yards from DAL 35 to NYG 4. D.Wilson to NYG 24 for 20 yards (E.Frampton). Return inside the yard line makers.,7,23,2012 -20121028_NYG@DAL,2,35,17,NYG,DAL,1,10,76,"(5:17) E.Manning pass incomplete deep right to V.Cruz. Pass incomplete on a ""GO"" route; Carr closest defender at the Dallas 38.",23,7,2012 -20121028_NYG@DAL,2,35,11,NYG,DAL,2,10,76,(5:11) A.Bradshaw left guard to NYG 26 for 2 yards (B.Carter).,23,7,2012 -20121028_NYG@DAL,2,34,27,NYG,DAL,3,8,74,"(4:27) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 43 for 17 yards (D.McCray). Pass complete on a ""curl"" route.",23,7,2012 -20121028_NYG@DAL,2,33,41,NYG,DAL,1,10,57,(3:41) E.Manning pass incomplete short right to V.Cruz. Pass incomplete at the Dallas 45; Sensabaugh closest defender.,23,7,2012 -20121028_NYG@DAL,2,33,34,NYG,DAL,2,10,57,(3:34) E.Manning pass short right to H.Nicks to NYG 48 for 5 yards (M.Claiborne; O.Lemon).,23,7,2012 -20121028_NYG@DAL,2,32,52,NYG,DAL,3,5,52,(2:52) (Shotgun) E.Manning pass incomplete short middle to V.Cruz [J.Ratliff]. Pass incomplete on a slant; Scandrick closest defender.,23,7,2012 -20121028_NYG@DAL,2,32,45,NYG,DAL,4,5,52,(2:45) (Punt formation) S.Weatherford punts 40 yards to DAL 12 Center-Z.DeOssie fair catch by D.Harris.,23,7,2012 -20121028_NYG@DAL,2,32,37,DAL,NYG,1,10,88,(2:37) (Shotgun) T.Romo pass short right to J.Witten to DAL 21 for 9 yards (M.Boley).,7,23,2012 -20121028_NYG@DAL,2,32,11,DAL,NYG,2,1,79,"(2:11) T.Romo pass deep left to D.Bryant to NYG 24 for 55 yards (S.Brown). Pass complete on a ""FLY"" pattern.",7,23,2012 -20121028_NYG@DAL,2,32,0,DAL,NYG,1,10,24,"(2:00) (Shotgun) T.Romo pass incomplete deep left to J.Witten. Pass incomplete on a ""CROSSING PATTERN""; Rolle closest defender at the New York 5.",7,23,2012 -20121028_NYG@DAL,2,31,55,DAL,NYG,2,10,24,(1:55) (Shotgun) T.Romo sacked at NYG 33 for -9 yards (J.Pierre-Paul).,7,23,2012 -20121028_NYG@DAL,2,31,9,DAL,NYG,3,19,33,(1:09) (Shotgun) T.Romo pass incomplete deep left to D.Bryant [C.Blackburn]. Pass incomplete at the New York 5 on an out pattern; Webster closest defender.,7,23,2012 -20121028_NYG@DAL,2,31,3,DAL,NYG,4,19,33,(1:03) (Field Goal formation) D.Bailey 51 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,7,23,2012 -20121028_NYG@DAL,2,31,3,DAL,NYG,,,33,D.Bailey kicks 69 yards from DAL 35 to NYG -4. D.Wilson to NYG 20 for 24 yards (P.Tanner; E.Sims). Return middle of the field inside the yard line markers.,10,23,2012 -20121028_NYG@DAL,2,30,53,NYG,DAL,1,10,80,(:53) (Shotgun) E.Manning sacked at NYG 18 for -2 yards (D.Ware).,23,10,2012 -20121028_NYG@DAL,2,30,41,NYG,DAL,2,12,82,(:41) (Shotgun) A.Bradshaw up the middle to NYG 17 for -1 yards (B.Carter). PENALTY on DAL-D.Ware Defensive Offside 5 yards enforced at NYG 18 - No Play.,23,10,2012 -20121028_NYG@DAL,2,30,41,NYG,DAL,2,7,77,(:41) (Shotgun) E.Manning pass incomplete deep left to V.Cruz [J.Hatcher]. Pass incomplete sideline at the New York 46; Scandrick closest defender.,23,10,2012 -20121028_NYG@DAL,2,30,35,NYG,DAL,3,7,77,(:35) (Shotgun) A.Bradshaw left end to NYG 24 for 1 yard (D.Ware).,23,10,2012 -20121028_NYG@DAL,2,30,28,NYG,DAL,4,6,76,(:28) (Punt formation) S.Weatherford punts 52 yards to DAL 24 Center-Z.DeOssie downed by NYG-T.Sash.,23,10,2012 -20121028_NYG@DAL,2,30,13,DAL,NYG,1,10,76,(:13) T.Romo kneels to DAL 23 for -1 yards.,10,23,2012 -20121028_NYG@DAL,3,30,0,NYG,DAL,,,76,L.Tynes kicks 72 yards from NYG 35 to DAL -7. L.Dunbar to DAL 14 for 21 yards (M.Herzlich). Return middle of the field.,23,10,2012 -20121028_NYG@DAL,3,29,55,DAL,NYG,1,10,86,(14:55) T.Romo pass incomplete deep right to M.Austin. PENALTY on NYG-P.Amukamara Defensive Pass Interference 20 yards enforced at DAL 14 - No Play.,10,23,2012 -20121028_NYG@DAL,3,29,49,DAL,NYG,1,10,66,(14:49) (Shotgun) T.Romo pass short right to J.Witten to DAL 42 for 8 yards (S.Brown). Pass complete on a crossing pattern.,10,23,2012 -20121028_NYG@DAL,3,29,6,DAL,NYG,2,2,58,"(14:06) T.Romo pass deep left to D.Bryant to NYG 28 for 30 yards (C.Webster). Pass complete on a ""GO"" ROUTE.",10,23,2012 -20121028_NYG@DAL,3,28,26,DAL,NYG,1,10,28,"(13:26) T.Romo pass short left to J.Witten to NYG 20 for 8 yards (K.Rivers). Pass complete on a ""BUTTON HOOK.""",10,23,2012 -20121028_NYG@DAL,3,27,47,DAL,NYG,2,2,20,(12:47) F.Jones up the middle to NYG 16 for 4 yards (C.Canty).,10,23,2012 -20121028_NYG@DAL,3,27,7,DAL,NYG,1,10,16,(12:07) (Shotgun) T.Romo pass incomplete deep middle to J.Witten. Pass incomplete on a skinny post; Bolley closest.,10,23,2012 -20121028_NYG@DAL,3,27,1,DAL,NYG,2,10,16,(12:01) (Shotgun) T.Romo sacked at NYG 16 for 0 yards (L.Joseph).,10,23,2012 -20121028_NYG@DAL,3,26,20,DAL,NYG,3,10,16,"(11:20) (Shotgun) T.Romo pass short middle to M.Austin to NYG 1 for 15 yards (P.Amukamara). Pass complete on a ""SKINNY POST.""",10,23,2012 -20121028_NYG@DAL,3,25,38,DAL,NYG,1,1,1,(10:38) P.Tanner up the middle to NYG 1 for no gain (C.Blackburn).,10,23,2012 -20121028_NYG@DAL,3,25,0,DAL,NYG,2,1,1,(10:00) P.Tanner right tackle to NYG 1 for no gain (C.Blackburn).,10,23,2012 -20121028_NYG@DAL,3,24,28,DAL,NYG,3,1,1,(9:28) T.Romo pass incomplete short left to J.Hanna. Pass incomplete off play action in back of the end zone.,10,23,2012 -20121028_NYG@DAL,3,24,21,DAL,NYG,4,1,1,(9:21) T.Romo right end for 1 yard TOUCHDOWN.,10,23,2012 -20121028_NYG@DAL,3,24,21,DAL,NYG,,,1,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman. Injury update: X-rays on Pascoe of NY are negative; he is doubtful to return to the game. Dan Connor of Dallas is out with a neck strain.,10,23,2012 -20121028_NYG@DAL,3,24,21,DAL,NYG,,,1,D.Bailey kicks 65 yards from DAL 35 to NYG 0. D.Wilson to NYG 21 for 21 yards (L.Dunbar). Return middle of the field.,17,23,2012 -20121028_NYG@DAL,3,24,11,NYG,DAL,1,10,79,(9:11) A.Bradshaw up the middle to NYG 22 for 1 yard (A.Spencer; J.Hatcher).,23,17,2012 -20121028_NYG@DAL,3,23,32,NYG,DAL,2,9,78,"(8:32) (Shotgun) E.Manning pass incomplete short left to A.Brown. Pass incomplete on a quick ""Bubble Screen.""",23,17,2012 -20121028_NYG@DAL,3,23,26,NYG,DAL,3,9,78,(8:26) (Shotgun) E.Manning pass incomplete short left to R.Barden (B.Carr). Pass incomplete sideline at the New York 30.,23,17,2012 -20121028_NYG@DAL,3,23,21,NYG,DAL,4,9,78,(8:21) (Punt formation) S.Weatherford punts 51 yards to DAL 27 Center-Z.DeOssie. D.Harris to DAL 41 for 14 yards (S.Paysinger). Return outside the yard line markers.,23,17,2012 -20121028_NYG@DAL,3,23,7,DAL,NYG,1,10,59,(8:07) (Shotgun) T.Romo pass short middle to J.Phillips to DAL 49 for 8 yards (K.Rivers).,17,23,2012 -20121028_NYG@DAL,3,22,26,DAL,NYG,2,2,51,"(7:26) T.Romo pass deep middle to M.Austin to NYG 26 for 25 yards (S.Brown). Pass complete on a ""SLANT.""",17,23,2012 -20121028_NYG@DAL,3,21,51,DAL,NYG,1,10,26,"(6:51) (Shotgun) T.Romo pass short left to J.Witten to NYG 20 for 6 yards (P.Amukamara). Pass complete on a ""CURL"" route.",17,23,2012 -20121028_NYG@DAL,3,21,19,DAL,NYG,2,4,20,(6:19) F.Jones right end to NYG 20 for no gain (C.Blackburn; J.Hosley). NYG-C.Blackburn was injured during the play. His return is Questionable.,17,23,2012 -20121028_NYG@DAL,3,20,38,DAL,NYG,3,4,20,(5:38) (Shotgun) T.Romo pass short left to J.Witten to NYG 15 for 5 yards (M.Boley).,17,23,2012 -20121028_NYG@DAL,3,19,58,DAL,NYG,1,10,15,"(4:58) (Shotgun) T.Romo pass short middle to J.Witten to NYG 1 for 14 yards (K.Rivers). Pass complete on a ""CURL"" route.",17,23,2012 -20121028_NYG@DAL,3,19,21,DAL,NYG,1,1,1,(4:21) F.Jones right guard to NYG 1 for no gain (M.Herzlich).,17,23,2012 -20121028_NYG@DAL,3,18,50,DAL,NYG,2,1,1,"(3:50) T.Romo pass short right to J.Phillips for 1 yard TOUCHDOWN. Touchdown pass comes off ""PLAY ACTION"" and a roll right.",17,23,2012 -20121028_NYG@DAL,3,18,50,DAL,NYG,,,1,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,23,2012 -20121028_NYG@DAL,3,18,50,DAL,NYG,,,1,D.Bailey kicks 63 yards from DAL 35 to NYG 2. D.Wilson to NYG 23 for 21 yards (E.Frampton; P.Tanner).,24,23,2012 -20121028_NYG@DAL,3,18,36,NYG,DAL,1,10,77,(3:36) A.Bradshaw left guard to NYG 28 for 5 yards (J.Price-Brent).,23,24,2012 -20121028_NYG@DAL,3,17,56,NYG,DAL,2,5,72,(2:56) E.Manning pass incomplete short middle to M.Bennett. Pass incomplete at the New York 35; Carter closest defender. Injury update: Chase Blackburn is out with a hamstring injury.,23,24,2012 -20121028_NYG@DAL,3,17,50,NYG,DAL,3,5,72,"(2:50) (Shotgun) E.Manning pass short middle to D.Hixon pushed ob at NYG 46 for 18 yards (G.Sensabaugh). Pass complete on a ""DRAG"" route.",23,24,2012 -20121028_NYG@DAL,3,17,20,NYG,DAL,1,10,54,(2:20) A.Bradshaw left guard to DAL 49 for 5 yards (D.McCray).,23,24,2012 -20121028_NYG@DAL,3,16,43,NYG,DAL,2,5,49,(1:43) A.Bradshaw left guard to DAL 46 for 3 yards (M.Spears; J.Ratliff).,23,24,2012 -20121028_NYG@DAL,3,15,59,NYG,DAL,3,2,46,(:59) (Shotgun) E.Manning pass short middle intended for V.Cruz INTERCEPTED by D.McCray (G.Sensabaugh) at DAL 35. D.McCray to DAL 35 for no gain (V.Cruz). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,23,24,2012 -20121028_NYG@DAL,3,15,54,DAL,NYG,1,10,65,(:54) (Shotgun) T.Romo sacked at DAL 23 for -12 yards (C.Canty).,24,23,2012 -20121028_NYG@DAL,3,15,19,DAL,NYG,2,22,77,(:19) (Shotgun) T.Romo pass incomplete short right to F.Jones [M.Boley]. Heavy pressure by Justin Tuck,24,23,2012 -20121028_NYG@DAL,3,15,13,DAL,NYG,3,22,77,(:13) (Shotgun) T.Romo pass short middle to P.Tanner to DAL 36 for 13 yards (J.Pierre-Paul).,24,23,2012 -20121028_NYG@DAL,4,15,0,DAL,NYG,4,9,64,(15:00) (Punt formation) B.Moorman punts 50 yards to NYG 14 Center-L.Ladouceur. R.Randle to NYG 15 for 1 yard (L.Dunbar; O.Lemon).,24,23,2012 -20121028_NYG@DAL,4,14,46,NYG,DAL,1,10,85,"(14:46) E.Manning pass deep left to H.Nicks to NYG 44 for 29 yards (M.Claiborne). Pass complete on a ""SLANT"" pattern.",23,24,2012 -20121028_NYG@DAL,4,14,12,NYG,DAL,1,10,56,(14:12) E.Manning pass short right to R.Randle to DAL 44 for 12 yards (B.Carr).,23,24,2012 -20121028_NYG@DAL,4,13,43,NYG,DAL,1,10,44,(13:43) A.Bradshaw left tackle to DAL 40 for 4 yards (A.Spencer).,23,24,2012 -20121028_NYG@DAL,4,12,59,NYG,DAL,2,6,40,(12:59) E.Manning pass short right to H.Nicks pushed ob at DAL 33 for 7 yards (M.Claiborne).,23,24,2012 -20121028_NYG@DAL,4,12,59,NYG,DAL,1,10,33,(12:59) A.Bradshaw left tackle to DAL 33 for no gain (A.Spencer; B.Carter). PENALTY on NYG-W.Beatty Offensive Holding 10 yards enforced at DAL 33 - No Play.,23,24,2012 -20121028_NYG@DAL,4,12,28,NYG,DAL,1,20,43,(12:28) (Shotgun) E.Manning scrambles up the middle to DAL 40 for 3 yards (J.Ratliff).,23,24,2012 -20121028_NYG@DAL,4,11,47,NYG,DAL,2,17,40,(11:47) (Shotgun) E.Manning pass short right to M.Bennett to DAL 28 for 12 yards (B.Carr).,23,24,2012 -20121028_NYG@DAL,4,11,3,NYG,DAL,3,5,28,"(11:03) (Shotgun) E.Manning pass short middle to D.Hixon to DAL 25 for 3 yards (M.Claiborne). Pass complete on a ""CROSSING PATTERN.""",23,24,2012 -20121028_NYG@DAL,4,10,22,NYG,DAL,4,2,25,(10:22) (Field Goal formation) L.Tynes 43 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,23,24,2012 -20121028_NYG@DAL,4,10,22,NYG,DAL,,,25,L.Tynes kicks 70 yards from NYG 35 to DAL -5. L.Dunbar to DAL 22 for 27 yards (M.Herzlich). Return middle of the field.,26,24,2012 -20121028_NYG@DAL,4,10,13,DAL,NYG,1,10,78,(10:13) PENALTY on NYG-J.Tuck Defensive Offside 5 yards enforced at DAL 22 - No Play.,24,26,2012 -20121028_NYG@DAL,4,10,13,DAL,NYG,1,5,73,(10:13) F.Jones left end to DAL 28 for 1 yard (K.Rivers).,24,26,2012 -20121028_NYG@DAL,4,9,40,DAL,NYG,2,4,72,(9:40) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete sideline at the Dallas 35; Webster closest defender.,24,26,2012 -20121028_NYG@DAL,4,9,34,DAL,NYG,3,4,72,(9:34) (Shotgun) T.Romo pass short left to D.Bryant to DAL 32 for 4 yards (C.Webster).,24,26,2012 -20121028_NYG@DAL,4,8,56,DAL,NYG,1,10,68,"(8:56) (Shotgun) T.Romo pass short middle to J.Witten to DAL 38 for 6 yards (A.Rolle). Pass complete on a ""SLANT"" pattern.",24,26,2012 -20121028_NYG@DAL,4,8,16,DAL,NYG,2,4,62,(8:16) (Shotgun) T.Romo sacked at DAL 37 for -1 yards (L.Joseph).,24,26,2012 -20121028_NYG@DAL,4,7,36,DAL,NYG,3,5,63,"(7:36) (Shotgun) T.Romo pass short middle to M.Austin to NYG 48 for 15 yards (J.Hosley). Pass complete on a ""SKINNY POST.""",24,26,2012 -20121028_NYG@DAL,4,6,50,DAL,NYG,1,10,48,(6:50) F.Jones right tackle to NYG 49 for -1 yards. FUMBLES RECOVERED by NYG-S.Brown at DAL 45. S.Brown to DAL 45 for no gain (F.Jones).,24,26,2012 -20121028_NYG@DAL,4,6,40,NYG,DAL,1,10,45,(6:40) A.Bradshaw left guard to DAL 36 for 9 yards (O.Lemon; M.Claiborne).,26,24,2012 -20121028_NYG@DAL,4,6,4,NYG,DAL,2,1,36,(6:04) A.Bradshaw left tackle to DAL 26 for 10 yards (O.Lemon).,26,24,2012 -20121028_NYG@DAL,4,5,30,NYG,DAL,1,10,26,(5:30) A.Bradshaw left tackle to DAL 26 for no gain (J.Hatcher; A.Spencer).,26,24,2012 -20121028_NYG@DAL,4,4,55,NYG,DAL,2,10,26,(4:55) A.Bradshaw right tackle to DAL 24 for 2 yards (J.Ratliff; A.Spencer).,26,24,2012 -20121028_NYG@DAL,4,4,14,NYG,DAL,3,8,24,(4:14) (Shotgun) E.Manning pass short right to D.Hixon to DAL 19 for 5 yards (B.Carr).,26,24,2012 -20121028_NYG@DAL,4,3,37,NYG,DAL,4,3,19,(3:37) (Field Goal formation) L.Tynes 37 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,26,24,2012 -20121028_NYG@DAL,4,3,37,NYG,DAL,,,19,L.Tynes kicks 67 yards from NYG 35 to DAL -2. L.Dunbar to DAL 22 for 24 yards (J.Tryon). PENALTY on DAL-E.Frampton Offensive Holding 0 yards enforced at DAL 22. Penalty on NYG-M.Herzlich Illegal Use of Hands superseded.,29,24,2012 -20121028_NYG@DAL,4,3,22,DAL,NYG,1,10,78,(3:22) (Shotgun) T.Romo pass short right to K.Ogletree to DAL 28 for 6 yards (S.Brown; K.Rivers). PENALTY on NYG-J.Hosley Illegal Contact 5 yards enforced at DAL 22 - No Play.,24,29,2012 -20121028_NYG@DAL,4,3,14,DAL,NYG,1,10,73,(3:14) (Shotgun) T.Romo pass short middle to J.Witten to DAL 37 for 10 yards (S.Brown).,24,29,2012 -20121028_NYG@DAL,4,2,36,DAL,NYG,1,10,63,(2:36) (Shotgun) T.Romo pass short right to J.Witten pushed ob at DAL 46 for 9 yards (S.Brown). Pass complete on a Crossing pattern.,24,29,2012 -20121028_NYG@DAL,4,2,31,DAL,NYG,2,1,54,(2:31) (Shotgun) T.Romo pass short middle to J.Witten to NYG 45 for 9 yards (M.Coe).,24,29,2012 -20121028_NYG@DAL,4,2,5,DAL,NYG,1,10,45,"(2:05) (No Huddle Shotgun) T.Romo pass incomplete deep left to D.Bryant. NYG-A.Rolle was injured during the play. His return is Questionable. Pass incomplete on ""FLY PATTERN""; incomplete at the New York 15.",24,29,2012 -20121028_NYG@DAL,4,1,59,DAL,NYG,2,10,45,(1:59) (Shotgun) T.Romo sacked at DAL 46 for -9 yards (J.Tuck). PENALTY on NYG-J.Hosley Defensive Holding 5 yards enforced at NYG 45 - No Play.,24,29,2012 -20121028_NYG@DAL,4,1,53,DAL,NYG,1,10,40,(1:53) (Shotgun) T.Romo pass short middle to M.Austin to NYG 28 for 12 yards (T.Sash).,24,29,2012 -20121028_NYG@DAL,4,1,27,DAL,NYG,1,10,28,(1:27) (Shotgun) T.Romo pass short right to J.Witten ran ob at NYG 19 for 9 yards (T.Sash).,24,29,2012 -20121028_NYG@DAL,4,1,23,DAL,NYG,2,1,19,(1:23) (Shotgun) T.Romo pass incomplete short right to J.Witten. Pass incomplete sideline at the New York 15; Boley closest defender.,24,29,2012 -20121028_NYG@DAL,4,1,19,DAL,NYG,3,1,19,(1:19) T.Romo pass incomplete deep right to K.Ogletree. Pass incomplete right corner of end zone.,24,29,2012 -20121028_NYG@DAL,4,1,14,DAL,NYG,4,1,19,(1:14) (Shotgun) T.Romo pass short right INTERCEPTED by S.Brown at NYG 17. S.Brown ran ob at NYG 17 for no gain. Penalty on DAL-D.Free Offensive Holding declined.,24,29,2012 -20121028_NYG@DAL,4,1,3,NYG,DAL,1,10,83,(1:03) A.Bradshaw left end to NYG 19 for 2 yards (A.Spencer).,29,24,2012 -20121028_NYG@DAL,4,0,59,NYG,DAL,2,8,81,(:59) A.Bradshaw up the middle to NYG 24 for 5 yards (K.Coleman).,29,24,2012 -20121028_NYG@DAL,4,0,54,NYG,DAL,3,3,76,(:54) A.Bradshaw up the middle to NYG 26 for 2 yards (E.Sims).,29,24,2012 -20121028_NYG@DAL,4,0,51,NYG,DAL,4,1,74,(:51) (Punt formation) S.Weatherford punts 44 yards to DAL 30 Center-Z.DeOssie out of bounds.,29,24,2012 -20121028_NYG@DAL,4,0,44,DAL,NYG,1,10,70,(:44) (Shotgun) T.Romo pass incomplete short right to K.Ogletree. Pass incomplete at the Dallas 45; Hosley closest defender.,24,29,2012 -20121028_NYG@DAL,4,0,39,DAL,NYG,2,10,70,(:39) (Shotgun) T.Romo pass short middle to J.Witten to DAL 43 for 13 yards (T.Sash). The catch by Witten is his 16th of the game which sets a new single-game team record for most receptions in a single game.,24,29,2012 -20121028_NYG@DAL,4,0,39,DAL,NYG,1,10,57,(:39) T.Romo spiked the ball to stop the clock.,24,29,2012 -20121028_NYG@DAL,4,0,25,DAL,NYG,2,10,57,(:25) (Shotgun) T.Romo pass deep left to D.Bryant pushed ob at NYG 41 for 16 yards (C.Webster).,24,29,2012 -20121028_NYG@DAL,4,0,19,DAL,NYG,1,10,41,(:19) (Shotgun) T.Romo pass short left to J.Witten ran ob at NYG 37 for 4 yards (M.Boley).,24,29,2012 -20121028_NYG@DAL,4,0,16,DAL,NYG,2,6,37,"(:16) (Shotgun) T.Romo pass deep left to D.Bryant for 37 yards TOUCHDOWN. Pass complete on ""FLY"" PATTERN; Ball caught back of the end zone. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) T.Romo pass incomplete deep left to D.Bryant. Ball caught back of end zone; hand touched out of bounds on the play; pass ruled incomplete.",24,29,2012 -20121028_NYG@DAL,4,0,10,DAL,NYG,3,6,37,(:10) (Shotgun) T.Romo pass short left to J.Witten pushed ob at NYG 27 for 10 yards (S.Paysinger).,24,29,2012 -20121028_NYG@DAL,4,0,6,DAL,NYG,1,10,27,(:06) (Shotgun) T.Romo pass incomplete deep middle to M.Austin. Pass incomplete on a post pattern.,24,29,2012 -20121028_NYG@DAL,4,0,1,DAL,NYG,2,10,27,(:01) (Shotgun) T.Romo pass incomplete deep middle to J.Witten.,24,29,2012 -20121028_NYG@DAL,4,0,1,DAL,NYG,,,27,                      ,24,29,2012 -20121028_NO@DEN,1,0,0,DEN,NO,,,27,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20121028_NO@DEN,1,60,0,NO,DEN,1,10,80,(15:00) (Shotgun) D.Brees pass incomplete short left to M.Colston (C.Bailey).,0,0,2012 -20121028_NO@DEN,1,59,57,NO,DEN,2,10,80,(14:57) P.Thomas right guard to NO 27 for 7 yards (W.Woodyard; K.Brooking).,0,0,2012 -20121028_NO@DEN,1,59,21,NO,DEN,3,3,73,(14:21) (Shotgun) D.Brees pass incomplete short right to J.Graham (D.Trevathan).,0,0,2012 -20121028_NO@DEN,1,59,15,NO,DEN,4,3,73,(14:15) T.Morstead punts 41 yards to DEN 32 Center-J.Drescher fair catch by T.Holliday.,0,0,2012 -20121028_NO@DEN,1,59,8,DEN,NO,1,10,68,(14:08) W.McGahee up the middle to DEN 38 for 6 yards (J.Vilma).,0,0,2012 -20121028_NO@DEN,1,58,41,DEN,NO,2,4,62,(13:41) (Shotgun) P.Manning pass incomplete short middle to J.Dreessen (R.Harper).,0,0,2012 -20121028_NO@DEN,1,58,32,DEN,NO,3,4,62,(13:32) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (C.Lofton).,0,0,2012 -20121028_NO@DEN,1,58,29,DEN,NO,4,4,62,(13:29) B.Colquitt punts 42 yards to NO 20 Center-A.Brewer fair catch by D.Sproles.,0,0,2012 -20121028_NO@DEN,1,58,19,NO,DEN,1,10,80,(13:19) D.Brees pass short right to J.Graham to NO 33 for 13 yards (C.Bailey).,0,0,2012 -20121028_NO@DEN,1,57,45,NO,DEN,1,10,67,(12:45) (Shotgun) D.Brees pass short left to P.Thomas to NO 38 for 5 yards (E.Dumervil; W.Woodyard).,0,0,2012 -20121028_NO@DEN,1,57,6,NO,DEN,2,5,62,(12:06) (Shotgun) P.Thomas left tackle to NO 44 for 6 yards (C.Harris).,0,0,2012 -20121028_NO@DEN,1,56,24,NO,DEN,1,10,56,(11:24) (Shotgun) D.Brees sacked at NO 36 for -8 yards (D.Wolfe). FUMBLES (D.Wolfe) recovered by NO-J.Evans at NO 36. J.Evans to NO 36 for no gain (E.Dumervil). PENALTY on DEN-E.Dumervil Defensive Offside 5 yards enforced at NO 44 - No Play.,0,0,2012 -20121028_NO@DEN,1,55,41,NO,DEN,1,5,51,(10:41) M.Ingram right end pushed ob at NO 49 for no gain (W.Woodyard).,0,0,2012 -20121028_NO@DEN,1,55,19,NO,DEN,2,5,51,(10:19) D.Sproles right end to NO 46 for -3 yards (V.Miller).,0,0,2012 -20121028_NO@DEN,1,54,35,NO,DEN,3,8,54,(9:35) (Shotgun) D.Brees pass incomplete deep middle to D.Henderson (T.Carter R.Moore).,0,0,2012 -20121028_NO@DEN,1,54,28,NO,DEN,4,8,54,(9:28) T.Morstead punts 52 yards to DEN 2 Center-J.Drescher downed by NO-C.Roby.,0,0,2012 -20121028_NO@DEN,1,54,18,DEN,NO,1,10,98,(9:18) W.McGahee up the middle to DEN 6 for 4 yards (J.Galette).,0,0,2012 -20121028_NO@DEN,1,53,42,DEN,NO,2,6,94,(8:42) W.McGahee left tackle to DEN 18 for 12 yards (M.Jenkins).,0,0,2012 -20121028_NO@DEN,1,53,13,DEN,NO,1,10,82,(8:13) W.McGahee up the middle to DEN 25 for 7 yards (R.Harper).,0,0,2012 -20121028_NO@DEN,1,52,49,DEN,NO,2,3,75,(7:49) W.McGahee right guard to DEN 28 for 3 yards (W.Smith; S.Ellis).,0,0,2012 -20121028_NO@DEN,1,52,9,DEN,NO,1,10,72,(7:09) P.Manning pass deep left to D.Thomas to NO 31 for 41 yards (P.Robinson).,0,0,2012 -20121028_NO@DEN,1,51,35,DEN,NO,1,10,31,(6:35) R.Hillman left tackle to NO 27 for 4 yards (S.Ellis; J.Vilma).,0,0,2012 -20121028_NO@DEN,1,51,5,DEN,NO,2,6,27,(6:05) (Shotgun) P.Manning pass incomplete deep right to E.Decker (J.Greer).,0,0,2012 -20121028_NO@DEN,1,51,0,DEN,NO,3,6,27,(6:00) (Shotgun) P.Manning pass short left to J.Tamme ran ob at NO 21 for 6 yards.,0,0,2012 -20121028_NO@DEN,1,50,35,DEN,NO,1,10,21,(5:35) W.McGahee up the middle to NO 15 for 6 yards (R.Harper).,0,0,2012 -20121028_NO@DEN,1,50,4,DEN,NO,2,4,15,(5:04) (Shotgun) P.Manning pass short middle to W.McGahee for 15 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (Shotgun) P.Manning pass short middle to W.McGahee to NO 1 for 14 yards (M.Jenkins).,0,0,2012 -20121028_NO@DEN,1,49,43,DEN,NO,1,1,1,(4:43) W.McGahee right tackle for 1 yard TOUCHDOWN.,0,0,2012 -20121028_NO@DEN,1,49,43,DEN,NO,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121028_NO@DEN,1,49,43,DEN,NO,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,0,2012 -20121028_NO@DEN,1,49,39,NO,DEN,1,10,80,(4:39) D.Brees pass incomplete deep left to D.Henderson (C.Bailey).,0,7,2012 -20121028_NO@DEN,1,49,32,NO,DEN,2,10,80,(4:32) P.Thomas right tackle to NO 23 for 3 yards (K.Vickerson).,0,7,2012 -20121028_NO@DEN,1,48,49,NO,DEN,3,7,77,(3:49) (Shotgun) D.Brees sacked at NO 11 for -12 yards (W.Woodyard). FUMBLES (W.Woodyard) and recovers at NO 11. D.Brees to NO 11 for no gain (J.Leonhard).,0,7,2012 -20121028_NO@DEN,1,48,13,NO,DEN,4,19,89,(3:13) T.Morstead punts 43 yards to DEN 46 Center-J.Drescher. T.Holliday to NO 48 for 6 yards (C.Roby).,0,7,2012 -20121028_NO@DEN,1,48,2,DEN,NO,1,10,48,(3:02) R.Hillman left end to NO 46 for 2 yards (C.White).,7,0,2012 -20121028_NO@DEN,1,47,32,DEN,NO,2,8,46,(2:32) (Shotgun) P.Manning pass short right to V.Green to NO 42 for 4 yards (C.White).,7,0,2012 -20121028_NO@DEN,1,46,54,DEN,NO,3,4,42,(1:54) (Shotgun) W.McGahee up the middle to NO 45 for -3 yards (A.Hicks). FUMBLES (A.Hicks) RECOVERED by NO-C.Lofton at NO 45. C.Lofton to NO 45 for no gain (C.Kuper).,7,0,2012 -20121028_NO@DEN,1,46,46,NO,DEN,1,10,55,(1:46) (Shotgun) D.Brees scrambles up the middle to NO 48 for 3 yards (W.Woodyard).,0,7,2012 -20121028_NO@DEN,1,46,6,NO,DEN,2,7,52,(1:06) D.Brees pass short left to M.Colston to DEN 36 for 16 yards (M.Adams).,0,7,2012 -20121028_NO@DEN,1,45,22,NO,DEN,1,10,36,(:22) D.Brees pass short left to L.Moore to DEN 29 for 7 yards (C.Harris).,0,7,2012 -20121028_NO@DEN,2,45,0,NO,DEN,2,3,29,(15:00) (Shotgun) D.Brees pass short middle to D.Sproles for 29 yards TOUCHDOWN.,0,7,2012 -20121028_NO@DEN,2,45,0,NO,DEN,,,29,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,7,2012 -20121028_NO@DEN,2,45,0,NO,DEN,,,29,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,7,7,2012 -20121028_NO@DEN,2,44,53,DEN,NO,1,10,80,(14:53) (Shotgun) P.Manning pass short left to B.Stokley pushed ob at DEN 37 for 17 yards (M.Jenkins).,7,7,2012 -20121028_NO@DEN,2,44,33,DEN,NO,1,10,63,(14:33) W.McGahee up the middle to DEN 40 for 3 yards (T.Johnson).,7,7,2012 -20121028_NO@DEN,2,44,2,DEN,NO,2,7,60,(14:02) (Shotgun) P.Manning pass short right to E.Decker to DEN 45 for 5 yards (M.Jenkins).,7,7,2012 -20121028_NO@DEN,2,43,23,DEN,NO,3,2,55,(13:23) (Shotgun) R.Hillman right end to DEN 45 for no gain (C.Lofton).,7,7,2012 -20121028_NO@DEN,2,42,39,DEN,NO,4,2,55,(12:39) B.Colquitt punts 55 yards to end zone Center-A.Brewer Touchback.,7,7,2012 -20121028_NO@DEN,2,42,29,NO,DEN,1,10,80,(12:29) M.Ingram right tackle to NO 23 for 3 yards (D.Wolfe).,7,7,2012 -20121028_NO@DEN,2,41,52,NO,DEN,2,7,77,(11:52) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at NO 30 for 7 yards (C.Bailey).,7,7,2012 -20121028_NO@DEN,2,41,25,NO,DEN,1,10,70,(11:25) D.Sproles left guard to NO 27 for -3 yards (C.Harris; W.Woodyard).,7,7,2012 -20121028_NO@DEN,2,40,47,NO,DEN,2,13,73,(10:47) (Shotgun) D.Brees pass short middle to J.Graham to NO 45 for 18 yards (M.Adams; W.Woodyard).,7,7,2012 -20121028_NO@DEN,2,40,6,NO,DEN,1,10,55,(10:06) P.Thomas left end to DEN 47 for 8 yards (C.Bailey).,7,7,2012 -20121028_NO@DEN,2,39,25,NO,DEN,2,2,47,(9:25) D.Brees pass short right to C.Roby to DEN 44 for 3 yards (C.Harris). Denver challenged the pass completion ruling and the play was REVERSED. D.Brees pass incomplete short right to C.Roby (N.Irving).,7,7,2012 -20121028_NO@DEN,2,39,21,NO,DEN,3,2,47,(9:21) (Shotgun) D.Brees pass incomplete short right to L.Moore (C.Harris).,7,7,2012 -20121028_NO@DEN,2,39,17,NO,DEN,4,2,47,(9:17) (Shotgun) D.Brees pass intended for J.Graham INTERCEPTED by W.Woodyard at DEN 36. W.Woodyard to DEN 44 for 8 yards (J.Evans).,7,7,2012 -20121028_NO@DEN,2,39,0,DEN,NO,1,10,56,(9:00) P.Manning pass deep left to D.Thomas to NO 22 for 34 yards (R.Harper).,7,7,2012 -20121028_NO@DEN,2,38,25,DEN,NO,1,10,22,(8:25) W.McGahee right guard to NO 19 for 3 yards (J.Greer). PENALTY on DEN-J.Dreessen Offensive Holding 10 yards enforced at NO 19.,7,7,2012 -20121028_NO@DEN,2,37,55,DEN,NO,1,17,29,(7:55) P.Manning pass incomplete short right to W.McGahee. PENALTY on NO-T.McBride Defensive Holding 5 yards enforced at NO 29 - No Play.,7,7,2012 -20121028_NO@DEN,2,37,52,DEN,NO,1,10,24,(7:52) R.Hillman up the middle to NO 17 for 7 yards (J.Vilma).,7,7,2012 -20121028_NO@DEN,2,37,27,DEN,NO,2,3,17,(7:27) R.Hillman right end to NO 13 for 4 yards (J.Greer).,7,7,2012 -20121028_NO@DEN,2,36,49,DEN,NO,1,10,13,(6:49) (Shotgun) P.Manning pass short right to E.Decker for 13 yards TOUCHDOWN.,7,7,2012 -20121028_NO@DEN,2,36,49,DEN,NO,,,13,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,7,2012 -20121028_NO@DEN,2,36,49,DEN,NO,,,13,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,7,2012 -20121028_NO@DEN,2,36,43,NO,DEN,1,10,80,(6:43) (Shotgun) D.Brees pass incomplete short right to M.Colston.,7,14,2012 -20121028_NO@DEN,2,36,39,NO,DEN,2,10,80,(6:39) D.Brees pass short middle to M.Colston to NO 35 for 15 yards (C.Bailey).,7,14,2012 -20121028_NO@DEN,2,36,3,NO,DEN,1,10,65,(6:03) (Shotgun) D.Sproles right guard to NO 40 for 5 yards (W.Woodyard).,7,14,2012 -20121028_NO@DEN,2,35,23,NO,DEN,2,5,60,(5:23) D.Brees pass short right to J.Graham to NO 34 for -6 yards (W.Woodyard).,7,14,2012 -20121028_NO@DEN,2,34,35,NO,DEN,3,11,66,(4:35) (Shotgun) D.Brees pass incomplete deep left to L.Moore.,7,14,2012 -20121028_NO@DEN,2,34,31,NO,DEN,4,11,66,(4:31) T.Morstead punts 53 yards to DEN 13 Center-J.Drescher out of bounds.,7,14,2012 -20121028_NO@DEN,2,34,24,DEN,NO,1,10,87,(4:24) P.Manning pass short left to W.McGahee pushed ob at DEN 32 for 19 yards (C.Lofton).,14,7,2012 -20121028_NO@DEN,2,34,5,DEN,NO,1,10,68,(4:05) R.Hillman left end to DEN 36 for 4 yards (P.Robinson).,14,7,2012 -20121028_NO@DEN,2,33,32,DEN,NO,2,6,64,(3:32) P.Manning pass incomplete short left to E.Decker.,14,7,2012 -20121028_NO@DEN,2,33,26,DEN,NO,3,6,64,(3:26) (Shotgun) P.Manning pass deep left to E.Decker pushed ob at NO 41 for 23 yards (I.Abdul-Quddus) [T.Johnson].,14,7,2012 -20121028_NO@DEN,2,33,6,DEN,NO,1,10,41,(3:06) W.McGahee up the middle to NO 36 for 5 yards (R.Harper).,14,7,2012 -20121028_NO@DEN,2,32,37,DEN,NO,2,5,36,(2:37) W.McGahee left tackle to NO 30 for 6 yards (T.McBride).,14,7,2012 -20121028_NO@DEN,2,32,0,DEN,NO,1,10,30,(2:00) W.McGahee right guard to NO 20 for 10 yards (C.Lofton; J.Galette).,14,7,2012 -20121028_NO@DEN,2,31,24,DEN,NO,1,10,20,(1:24) R.Hillman right tackle to NO 17 for 3 yards (J.Galette).,14,7,2012 -20121028_NO@DEN,2,30,50,DEN,NO,2,7,17,(:50) (Shotgun) P.Manning pass incomplete deep left to D.Thomas.,14,7,2012 -20121028_NO@DEN,2,30,45,DEN,NO,3,7,17,(:45) (Shotgun) P.Manning pass short left to B.Stokley to NO 15 for 2 yards (C.White).,14,7,2012 -20121028_NO@DEN,2,30,3,DEN,NO,4,5,15,(:03) M.Prater 33 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,14,7,2012 -20121028_NO@DEN,3,30,0,NO,DEN,,,15,T.Morstead kicks 70 yards from NO 35 to DEN -5. O.Bolden to DEN 7 for 12 yards (R.Bush).,7,17,2012 -20121028_NO@DEN,3,29,54,DEN,NO,1,10,93,(14:54) W.McGahee up the middle to DEN 12 for 5 yards (T.McBride).,17,7,2012 -20121028_NO@DEN,3,29,32,DEN,NO,2,5,88,(14:32) (Shotgun) P.Manning pass short right to J.Tamme to DEN 16 for 4 yards (C.Lofton).,17,7,2012 -20121028_NO@DEN,3,28,53,DEN,NO,3,1,84,(13:53) W.McGahee up the middle to DEN 19 for 3 yards (J.Vilma).,17,7,2012 -20121028_NO@DEN,3,28,22,DEN,NO,1,10,81,(13:22) P.Manning pass deep left to D.Thomas to DEN 45 for 26 yards (M.Jenkins). Penalty on NO-P.Robinson Defensive Holding declined.,17,7,2012 -20121028_NO@DEN,3,28,1,DEN,NO,1,10,55,(13:01) R.Hillman left end to NO 24 for 31 yards (P.Robinson). FUMBLES (P.Robinson) ball out of bounds at NO 24.,17,7,2012 -20121028_NO@DEN,3,27,31,DEN,NO,1,10,24,(12:31) P.Manning scrambles right end to NO 20 for 4 yards (T.Johnson).,17,7,2012 -20121028_NO@DEN,3,27,6,DEN,NO,2,6,20,(12:06) W.McGahee up the middle to NO 16 for 4 yards (R.Harper).,17,7,2012 -20121028_NO@DEN,3,26,26,DEN,NO,3,2,16,(11:26) P.Manning pass short left to D.Thomas to NO 5 for 11 yards (C.White; R.Harper). NO-R.Harper was injured during the play.,17,7,2012 -20121028_NO@DEN,3,25,55,DEN,NO,1,5,5,(10:55) W.McGahee up the middle to NO 4 for 1 yard (M.Jenkins).,17,7,2012 -20121028_NO@DEN,3,25,18,DEN,NO,2,4,4,(10:18) W.McGahee up the middle to NO 1 for 3 yards (T.Johnson).,17,7,2012 -20121028_NO@DEN,3,24,36,DEN,NO,3,1,1,(9:36) P.Manning pass short left to D.Thomas for 1 yard TOUCHDOWN.,17,7,2012 -20121028_NO@DEN,3,24,36,DEN,NO,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,7,2012 -20121028_NO@DEN,3,24,36,DEN,NO,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,24,7,2012 -20121028_NO@DEN,3,24,30,NO,DEN,1,10,80,(9:30) P.Thomas up the middle to NO 25 for 5 yards (K.Brooking).,7,24,2012 -20121028_NO@DEN,3,23,59,NO,DEN,2,5,75,(8:59) (Shotgun) D.Brees pass short right to D.Sproles to NO 31 for 6 yards (W.Woodyard).,7,24,2012 -20121028_NO@DEN,3,23,34,NO,DEN,1,10,69,(8:34) P.Thomas left tackle to NO 31 for no gain (C.Bailey).,7,24,2012 -20121028_NO@DEN,3,22,58,NO,DEN,2,10,69,(7:58) (Shotgun) D.Brees pass short left to L.Moore to NO 37 for 6 yards (T.Carter).,7,24,2012 -20121028_NO@DEN,3,22,20,NO,DEN,3,4,63,(7:20) (Shotgun) D.Brees pass short middle to M.Colston to NO 46 for 9 yards (C.Bailey).,7,24,2012 -20121028_NO@DEN,3,21,49,NO,DEN,1,10,54,(6:49) M.Ingram up the middle to 50 for 4 yards (J.Bannan).,7,24,2012 -20121028_NO@DEN,3,21,15,NO,DEN,2,6,50,(6:15) (Shotgun) D.Brees pass incomplete short left to M.Colston.,7,24,2012 -20121028_NO@DEN,3,21,6,NO,DEN,3,6,50,(6:06) (Shotgun) D.Brees pass incomplete deep middle to D.Henderson.,7,24,2012 -20121028_NO@DEN,3,21,6,NO,DEN,4,6,50,(6:06) T.Morstead punts 42 yards to DEN 8 Center-J.Drescher fair catch by J.Leonhard.,7,24,2012 -20121028_NO@DEN,3,20,54,DEN,NO,1,10,92,(5:54) R.Hillman right tackle to DEN 13 for 5 yards (C.Jordan).,24,7,2012 -20121028_NO@DEN,3,20,23,DEN,NO,2,5,87,(5:23) (No Huddle) P.Manning pass short left to V.Green to DEN 25 for 12 yards (P.Robinson).,24,7,2012 -20121028_NO@DEN,3,20,5,DEN,NO,1,10,75,(5:05) P.Manning pass incomplete deep left to D.Thomas (P.Robinson).,24,7,2012 -20121028_NO@DEN,3,19,59,DEN,NO,2,10,75,(4:59) R.Hillman right end to DEN 22 for -3 yards (C.Lofton).,24,7,2012 -20121028_NO@DEN,3,19,19,DEN,NO,3,13,78,(4:19) (Shotgun) L.Ball left tackle to DEN 32 for 10 yards (C.Lofton).,24,7,2012 -20121028_NO@DEN,3,18,34,DEN,NO,4,3,68,(3:34) B.Colquitt punts 51 yards to NO 17 Center-A.Brewer. D.Sproles to NO 16 for -1 yards (A.Brewer).,24,7,2012 -20121028_NO@DEN,3,18,22,NO,DEN,1,10,84,(3:22) D.Brees pass short right to P.Thomas to NO 17 for 1 yard (K.Brooking).,7,24,2012 -20121028_NO@DEN,3,17,44,NO,DEN,2,9,83,(2:44) (Shotgun) D.Sproles right end to NO 17 for no gain (D.Trevathan). Penalty on NO-J.Evans Offensive Holding declined.,7,24,2012 -20121028_NO@DEN,3,17,16,NO,DEN,3,9,83,(2:16) (Shotgun) D.Brees pass incomplete deep right to M.Colston.,7,24,2012 -20121028_NO@DEN,3,17,9,NO,DEN,4,9,83,(2:09) T.Morstead punts 56 yards to DEN 27 Center-J.Drescher. T.Holliday to DEN 49 for 22 yards (I.Abdul-Quddus).,7,24,2012 -20121028_NO@DEN,3,16,51,DEN,NO,1,10,51,(1:51) (Shotgun) P.Manning pass short right to J.Tamme to NO 28 for 23 yards (R.Harper).,24,7,2012 -20121028_NO@DEN,3,16,20,DEN,NO,1,10,28,(1:20) (Shotgun) P.Manning pass short right to D.Thomas to NO 5 for 23 yards (J.Greer; C.Lofton).,24,7,2012 -20121028_NO@DEN,3,15,30,DEN,NO,1,5,5,(:30) W.McGahee up the middle to NO 2 for 3 yards (C.Jordan).,24,7,2012 -20121028_NO@DEN,4,15,0,DEN,NO,2,2,2,(15:00) (Shotgun) P.Manning pass short left to E.Decker for 2 yards TOUCHDOWN.,24,7,2012 -20121028_NO@DEN,4,15,0,DEN,NO,,,2,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,7,2012 -20121028_NO@DEN,4,15,0,DEN,NO,,,2,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,7,2012 -20121028_NO@DEN,4,14,54,NO,DEN,1,10,80,(14:54) (Shotgun) D.Brees pass incomplete short left to J.Graham (C.Harris).,7,31,2012 -20121028_NO@DEN,4,14,54,NO,DEN,2,10,80,(14:54) (Shotgun) D.Brees pass short left to M.Colston to NO 29 for 9 yards (D.Trevathan).,7,31,2012 -20121028_NO@DEN,4,14,13,NO,DEN,3,1,71,(14:13) D.Brees pass incomplete short right to L.Moore (T.Carter).,7,31,2012 -20121028_NO@DEN,4,14,7,NO,DEN,4,1,71,(14:07) T.Morstead punts 63 yards to DEN 8 Center-J.Drescher. T.Holliday to DEN 8 for no gain (J.Vilma). PENALTY on DEN-D.Bruton Offensive Holding 4 yards enforced at DEN 8.,7,31,2012 -20121028_NO@DEN,4,13,52,DEN,NO,1,10,96,(13:52) W.McGahee up the middle to DEN 7 for 3 yards (C.Lofton).,31,7,2012 -20121028_NO@DEN,4,13,14,DEN,NO,2,7,93,(13:14) P.Manning pass short left to V.Green to DEN 35 for 28 yards (R.Harper).,31,7,2012 -20121028_NO@DEN,4,12,40,DEN,NO,1,10,65,(12:40) W.McGahee right tackle to NO 48 for 17 yards (M.Jenkins). PENALTY on NO-T.Johnson Illegal Use of Hands 5 yards enforced at NO 48.,31,7,2012 -20121028_NO@DEN,4,12,0,DEN,NO,1,10,43,(12:00) (Shotgun) P.Manning pass short left to D.Thomas to NO 42 for 1 yard (R.Harper).,31,7,2012 -20121028_NO@DEN,4,11,16,DEN,NO,2,9,42,(11:16) W.McGahee left tackle to NO 39 for 3 yards (T.Johnson). PENALTY on DEN-R.Clady Offensive Holding 10 yards enforced at NO 42 - No Play.,31,7,2012 -20121028_NO@DEN,4,10,46,DEN,NO,2,19,52,(10:46) P.Manning pass incomplete short left to M.Willis.,31,7,2012 -20121028_NO@DEN,4,10,40,DEN,NO,3,19,52,(10:40) L.Ball left guard to NO 48 for 4 yards (W.Smith).,31,7,2012 -20121028_NO@DEN,4,9,54,DEN,NO,4,15,48,(9:54) B.Colquitt punts 46 yards to NO 2 Center-A.Brewer downed by DEN-N.Irving.,31,7,2012 -20121028_NO@DEN,4,9,42,NO,DEN,1,10,98,(9:42) (Shotgun) D.Brees pass short right to D.Sproles to NO 9 for 7 yards (M.Adams).,7,31,2012 -20121028_NO@DEN,4,9,17,NO,DEN,2,3,91,(9:17) (Shotgun) D.Brees pass incomplete short left to J.Graham.,7,31,2012 -20121028_NO@DEN,4,9,13,NO,DEN,3,3,91,(9:13) (Shotgun) D.Brees pass incomplete short left to D.Henderson (K.Vickerson).,7,31,2012 -20121028_NO@DEN,4,9,10,NO,DEN,4,3,91,(9:10) T.Morstead punts 63 yards to DEN 28 Center-J.Drescher. T.Holliday to DEN 43 for 15 yards (M.Wilson).,7,31,2012 -20121028_NO@DEN,4,8,56,DEN,NO,1,10,57,(8:56) (Shotgun) W.McGahee up the middle to DEN 48 for 5 yards (W.Smith).,31,7,2012 -20121028_NO@DEN,4,8,15,DEN,NO,2,5,52,(8:15) W.McGahee up the middle to NO 37 for 15 yards (M.Jenkins; C.Jordan).,31,7,2012 -20121028_NO@DEN,4,7,31,DEN,NO,1,10,37,(7:31) R.Hillman right end pushed ob at NO 13 for 24 yards (M.Jenkins).,31,7,2012 -20121028_NO@DEN,4,6,59,DEN,NO,1,10,13,(6:59) R.Hillman left tackle to NO 11 for 2 yards (A.Hicks).,31,7,2012 -20121028_NO@DEN,4,6,16,DEN,NO,2,8,11,(6:16) P.Manning pass incomplete short left to J.Dreessen (R.Harper).,31,7,2012 -20121028_NO@DEN,4,6,12,DEN,NO,3,8,11,(6:12) (Shotgun) P.Manning pass short right to R.Hillman to NO 15 for -4 yards (A.Hicks).,31,7,2012 -20121028_NO@DEN,4,5,31,DEN,NO,4,12,15,(5:31) M.Prater 33 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,31,7,2012 -20121028_NO@DEN,4,5,31,DEN,NO,,,15,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,34,7,2012 -20121028_NO@DEN,4,5,27,NO,DEN,1,10,80,(5:27) (Shotgun) D.Brees pass incomplete short right to M.Colston.,7,34,2012 -20121028_NO@DEN,4,5,22,NO,DEN,2,10,80,(5:22) (Shotgun) D.Brees pass short left to J.Graham to NO 40 for 20 yards (D.Trevathan).,7,34,2012 -20121028_NO@DEN,4,4,58,NO,DEN,1,10,60,(4:58) (Shotgun) D.Brees pass incomplete short left to D.Sproles (W.Woodyard).,7,34,2012 -20121028_NO@DEN,4,4,52,NO,DEN,2,10,60,(4:52) (Shotgun) D.Brees pass short left to D.Sproles to NO 41 for 1 yard (W.Woodyard).,7,34,2012 -20121028_NO@DEN,4,4,18,NO,DEN,3,9,59,(4:18) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,34,2012 -20121028_NO@DEN,4,4,13,NO,DEN,4,9,59,(4:13) (Shotgun) D.Brees pass short right to M.Colston ran ob at DEN 45 for 14 yards.,7,34,2012 -20121028_NO@DEN,4,4,6,NO,DEN,1,10,45,(4:06) (Shotgun) D.Brees pass incomplete deep middle to J.Graham (R.Moore) [V.Miller].,7,34,2012 -20121028_NO@DEN,4,4,1,NO,DEN,2,10,45,(4:01) (Shotgun) D.Brees pass short right to D.Sproles to 50 for -5 yards (D.Wolfe).,7,34,2012 -20121028_NO@DEN,4,3,17,NO,DEN,3,15,50,(3:17) (Shotgun) PENALTY on NO-J.Bushrod False Start 5 yards enforced at 50 - No Play.,7,34,2012 -20121028_NO@DEN,4,3,16,NO,DEN,3,20,55,(3:16) (Shotgun) D.Brees pass short right to L.Moore ran ob at DEN 43 for 12 yards.,7,34,2012 -20121028_NO@DEN,4,3,11,NO,DEN,4,8,43,(3:11) (Shotgun) D.Brees pass short right to D.Sproles pushed ob at DEN 32 for 11 yards (W.Woodyard).,7,34,2012 -20121028_NO@DEN,4,3,3,NO,DEN,1,10,32,(3:03) (Shotgun) P.Thomas up the middle to DEN 24 for 8 yards (J.Leonhard).,7,34,2012 -20121028_NO@DEN,4,2,33,NO,DEN,2,2,24,(2:33) (Shotgun) P.Thomas up the middle to DEN 18 for 6 yards (W.Woodyard).,7,34,2012 -20121028_NO@DEN,4,2,9,NO,DEN,1,10,18,(2:09) (Shotgun) D.Brees pass deep middle to J.Graham for 18 yards TOUCHDOWN.,7,34,2012 -20121028_NO@DEN,4,2,9,NO,DEN,,,18,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,34,2012 -20121028_NO@DEN,4,2,9,NO,DEN,,,18,G.Hartley kicks onside 13 yards from NO 35 to NO 48. E.Decker (didn't try to advance) to NO 48 for no gain (R.Humber).,14,34,2012 -20121028_NO@DEN,4,2,2,DEN,NO,1,10,48,(2:02) R.Hillman up the middle to NO 48 for no gain (W.Smith).,34,14,2012 -20121028_NO@DEN,4,1,55,DEN,NO,2,10,48,(1:55) R.Hillman right guard to NO 45 for 3 yards (C.Lofton).,34,14,2012 -20121028_NO@DEN,4,1,9,DEN,NO,3,7,45,(1:09) B.Osweiler kneels to NO 46 for -1 yards.,34,14,2012 -20121028_NO@DEN,4,0,25,DEN,NO,4,8,46,(:25) (Punt formation) PENALTY on DEN Delay of Game 5 yards enforced at NO 46 - No Play.,34,14,2012 -20121028_NO@DEN,4,0,25,DEN,NO,4,13,51,(:25) B.Colquitt punts 38 yards to NO 13 Center-A.Brewer fair catch by D.Sproles.,34,14,2012 -20121028_NO@DEN,4,0,16,NO,DEN,1,10,87,(:16) D.Brees kneels to NO 12 for -1 yards.,14,34,2012 -20121028_NO@DEN,4,0,16,NO,DEN,,,87,                      ,14,34,2012 -20121029_SF@ARI,1,0,0,ARI,SF,,,87,J.Feely kicks 71 yards from ARZ 35 to SF -6. T.Ginn to SF 25 for 31 yards (J.Sanders).,0,0,2012 -20121029_SF@ARI,1,59,55,SF,ARI,1,10,75,(14:55) F.Gore up the middle to SF 31 for 6 yards (P.Lenon).,0,0,2012 -20121029_SF@ARI,1,59,17,SF,ARI,2,4,69,(14:17) A.Smith pass incomplete short right to M.Manningham. PENALTY on ARZ-W.Gay Defensive Pass Interference 7 yards enforced at SF 31 - No Play.,0,0,2012 -20121029_SF@ARI,1,59,11,SF,ARI,1,10,62,(14:11) F.Gore left tackle to 50 for 12 yards (W.Gay).,0,0,2012 -20121029_SF@ARI,1,58,27,SF,ARI,1,10,50,(13:27) F.Gore up the middle to ARZ 45 for 5 yards (A.Wilson).,0,0,2012 -20121029_SF@ARI,1,57,47,SF,ARI,2,5,45,(12:47) A.Smith pass short right to K.Hunter to ARZ 39 for 6 yards (P.Peterson). PENALTY on SF-A.Boone Face Mask (15 Yards) 15 yards enforced at ARZ 39.,0,0,2012 -20121029_SF@ARI,1,57,11,SF,ARI,2,14,54,(12:11) (Shotgun) A.Smith pass short left to M.Manningham to SF 43 for -3 yards (P.Peterson).,0,0,2012 -20121029_SF@ARI,1,56,26,SF,ARI,3,17,57,(11:26) (Shotgun) PENALTY on SF-A.Smith Delay of Game 5 yards enforced at SF 43 - No Play.,0,0,2012 -20121029_SF@ARI,1,56,7,SF,ARI,3,22,62,(11:07) (Shotgun) F.Gore up the middle to SF 38 for no gain (C.Campbell).,0,0,2012 -20121029_SF@ARI,1,56,7,SF,ARI,4,22,62,(11:07) A.Lee punts 55 yards to ARZ 7 Center-B.Jennings. P.Peterson ran ob at ARZ 12 for 5 yards (T.Gooden). PENALTY on SF-C.Spillman Unsportsmanlike Conduct 15 yards enforced at ARZ 12.,0,0,2012 -20121029_SF@ARI,1,55,19,ARI,SF,1,10,73,(10:19) J.Skelton pass short right to L.Stephens-Howling pushed ob at SF 49 for 24 yards (D.Whitner).,0,0,2012 -20121029_SF@ARI,1,54,31,ARI,SF,1,10,49,(9:31) (Shotgun) L.Stephens-Howling right tackle to SF 49 for no gain (P.Willis).,0,0,2012 -20121029_SF@ARI,1,53,56,ARI,SF,2,10,49,(8:56) L.Stephens-Howling up the middle to SF 49 for no gain (Ald.Smith).,0,0,2012 -20121029_SF@ARI,1,53,10,ARI,SF,3,10,49,(8:10) (Shotgun) J.Skelton pass incomplete short middle to A.Roberts.,0,0,2012 -20121029_SF@ARI,1,53,8,ARI,SF,4,10,49,(8:08) D.Zastudil punts 41 yards to SF 8 Center-M.Leach. T.Ginn to SF 13 for 5 yards (J.Bethel). PENALTY on ARZ-Q.Groves Offensive Holding 10 yards enforced at SF 13.,0,0,2012 -20121029_SF@ARI,1,52,57,SF,ARI,1,10,77,(7:57) F.Gore up the middle to SF 28 for 5 yards (P.Lenon).,0,0,2012 -20121029_SF@ARI,1,52,21,SF,ARI,2,5,72,(7:21) A.Smith pass short left to M.Manningham pushed ob at SF 38 for 10 yards (W.Gay).,0,0,2012 -20121029_SF@ARI,1,51,56,SF,ARI,1,10,62,(6:56) A.Smith pass short right to F.Gore pushed ob at SF 49 for 11 yards (A.Wilson).,0,0,2012 -20121029_SF@ARI,1,51,27,SF,ARI,1,10,51,(6:27) K.Hunter right tackle to ARZ 42 for 9 yards (D.Washington).,0,0,2012 -20121029_SF@ARI,1,50,46,SF,ARI,2,1,42,(5:46) F.Gore up the middle to ARZ 25 for 17 yards (K.Rhodes; P.Lenon).,0,0,2012 -20121029_SF@ARI,1,50,8,SF,ARI,1,10,25,(5:08) K.Hunter up the middle to ARZ 27 for -2 yards (D.Washington). PENALTY on SF-G.Celek Offensive Holding 10 yards enforced at ARZ 25 - No Play.,0,0,2012 -20121029_SF@ARI,1,49,41,SF,ARI,1,20,35,(4:41) K.Hunter up the middle to ARZ 30 for 5 yards (C.Campbell).,0,0,2012 -20121029_SF@ARI,1,48,59,SF,ARI,2,15,30,(3:59) A.Smith pass deep left to D.Walker to ARZ 7 for 23 yards (K.Rhodes).,0,0,2012 -20121029_SF@ARI,1,48,17,SF,ARI,1,7,7,(3:17) F.Gore up the middle to ARZ 10 for -3 yards (S.Acho).,0,0,2012 -20121029_SF@ARI,1,47,36,SF,ARI,2,10,10,(2:36) (Shotgun) K.Hunter up the middle to ARZ 3 for 7 yards (P.Lenon).,0,0,2012 -20121029_SF@ARI,1,46,58,SF,ARI,3,3,3,(1:58) A.Smith pass to M.Crabtree for 3 yards TOUCHDOWN.,0,0,2012 -20121029_SF@ARI,1,46,58,SF,ARI,,,3,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121029_SF@ARI,1,46,58,SF,ARI,,,3,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,7,0,2012 -20121029_SF@ARI,1,46,53,ARI,SF,1,10,80,(1:53) J.Skelton pass incomplete short right to R.Housler.,0,7,2012 -20121029_SF@ARI,1,46,48,ARI,SF,2,10,80,(1:48) (Shotgun) J.Skelton pass short right to P.Peterson to ARZ 18 for -2 yards (A.Brooks).,0,7,2012 -20121029_SF@ARI,1,46,13,ARI,SF,3,12,82,(1:13) (Shotgun) PENALTY on ARZ-B.Massie False Start 5 yards enforced at ARZ 18 - No Play.,0,7,2012 -20121029_SF@ARI,1,45,54,ARI,SF,3,17,87,(:54) (Shotgun) J.Skelton pass incomplete short left to L.Fitzgerald.,0,7,2012 -20121029_SF@ARI,1,45,48,ARI,SF,4,17,87,(:48) D.Zastudil punts 52 yards to SF 35 Center-M.Leach. T.Ginn to SF 44 for 9 yards (R.Walker).,0,7,2012 -20121029_SF@ARI,1,45,42,SF,ARI,1,10,56,(:42) F.Gore up the middle to SF 47 for 3 yards (D.Dockett).,7,0,2012 -20121029_SF@ARI,2,45,0,SF,ARI,2,7,53,(15:00) F.Gore left end to SF 46 for -1 yards (C.Campbell).,7,0,2012 -20121029_SF@ARI,2,44,19,SF,ARI,3,8,54,(14:19) (Shotgun) A.Smith pass short right to K.Williams to 50 for 4 yards (Q.Groves).,7,0,2012 -20121029_SF@ARI,2,43,33,SF,ARI,4,4,50,(13:33) A.Lee punts 40 yards to ARZ 10 Center-B.Jennings fair catch by P.Peterson.,7,0,2012 -20121029_SF@ARI,2,43,25,ARI,SF,1,10,90,(13:25) L.Stephens-Howling up the middle to ARZ 5 for -5 yards (R.McDonald).,0,7,2012 -20121029_SF@ARI,2,42,47,ARI,SF,2,15,95,(12:47) L.Stephens-Howling right tackle to ARZ 10 for 5 yards (P.Willis).,0,7,2012 -20121029_SF@ARI,2,42,6,ARI,SF,3,10,90,(12:06) (Shotgun) J.Skelton pass short right to E.Doucet to ARZ 26 for 16 yards (C.Culliver).,0,7,2012 -20121029_SF@ARI,2,41,24,ARI,SF,1,10,74,(11:24) J.Skelton pass incomplete short left to A.Roberts (C.Culliver) [J.Smith].,0,7,2012 -20121029_SF@ARI,2,41,18,ARI,SF,2,10,74,(11:18) L.Stephens-Howling left tackle to ARZ 24 for -2 yards (I.Sopoaga).,0,7,2012 -20121029_SF@ARI,2,40,33,ARI,SF,3,12,76,(10:33) (Shotgun) J.Skelton pass short right to R.Housler to ARZ 27 for 3 yards (C.Rogers).,0,7,2012 -20121029_SF@ARI,2,39,52,ARI,SF,4,9,73,(9:52) D.Zastudil punts 53 yards to SF 20 Center-M.Leach. T.Ginn ran ob at ARZ 45 for 35 yards (D.Zastudil).,0,7,2012 -20121029_SF@ARI,2,39,34,SF,ARI,1,10,45,(9:34) A.Smith pass incomplete short middle to D.Walker.,7,0,2012 -20121029_SF@ARI,2,39,29,SF,ARI,2,10,45,(9:29) K.Hunter left tackle ran ob at ARZ 37 for 8 yards (D.Washington).,7,0,2012 -20121029_SF@ARI,2,39,2,SF,ARI,3,2,37,(9:02) F.Gore up the middle to ARZ 34 for 3 yards (P.Lenon).,7,0,2012 -20121029_SF@ARI,2,39,2,SF,ARI,1,10,34,(9:02) PENALTY on SF-M.Iupati False Start 5 yards enforced at ARZ 34 - No Play.,7,0,2012 -20121029_SF@ARI,2,38,5,SF,ARI,1,15,39,(8:05) F.Gore up the middle to ARZ 39 for no gain (D.Williams).,7,0,2012 -20121029_SF@ARI,2,37,25,SF,ARI,2,15,39,(7:25) A.Smith sacked at ARZ 47 for -8 yards (D.Washington).,7,0,2012 -20121029_SF@ARI,2,36,52,SF,ARI,3,23,47,(6:52) (Shotgun) A.Smith pass short middle to M.Crabtree to ARZ 25 for 22 yards (K.Rhodes).,7,0,2012 -20121029_SF@ARI,2,36,52,SF,ARI,4,1,25,(6:52) D.Akers 43 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,7,0,2012 -20121029_SF@ARI,2,36,52,SF,ARI,,,25,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,0,2012 -20121029_SF@ARI,2,35,58,ARI,SF,1,10,80,(5:58) J.Skelton pass short right to A.Roberts to ARZ 26 for 6 yards (C.Rogers).,0,10,2012 -20121029_SF@ARI,2,35,22,ARI,SF,2,4,74,(5:22) L.Stephens-Howling right tackle to ARZ 23 for -3 yards (R.McDonald).,0,10,2012 -20121029_SF@ARI,2,34,42,ARI,SF,3,7,77,(4:42) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald (C.Culliver).,0,10,2012 -20121029_SF@ARI,2,34,37,ARI,SF,4,7,77,(4:37) D.Zastudil punts 54 yards to SF 23 Center-M.Leach. T.Ginn pushed ob at SF 32 for 9 yards (J.Bethel).,0,10,2012 -20121029_SF@ARI,2,34,27,SF,ARI,1,10,68,(4:27) F.Gore left tackle to SF 36 for 4 yards (P.Lenon).,10,0,2012 -20121029_SF@ARI,2,33,47,SF,ARI,2,6,64,(3:47) A.Smith pass short left to M.Manningham pushed ob at SF 42 for 6 yards (W.Gay).,10,0,2012 -20121029_SF@ARI,2,33,17,SF,ARI,1,10,58,(3:17) A.Smith pass short right to D.Walker to ARZ 43 for 15 yards.,10,0,2012 -20121029_SF@ARI,2,32,46,SF,ARI,1,10,43,(2:46) A.Smith pass short right to M.Crabtree to ARZ 35 for 8 yards (W.Gay).,10,0,2012 -20121029_SF@ARI,2,32,17,SF,ARI,2,2,35,(2:17) A.Smith pass deep middle to V.Davis to ARZ 10 for 25 yards (K.Rhodes).,10,0,2012 -20121029_SF@ARI,2,32,0,SF,ARI,1,10,10,(2:00) A.Smith sacked at ARZ 16 for -6 yards (C.Campbell).,10,0,2012 -20121029_SF@ARI,2,31,54,SF,ARI,2,16,16,(1:54) A.Smith pass short left to M.Manningham to ARZ 9 for 7 yards (P.Peterson).,10,0,2012 -20121029_SF@ARI,2,31,47,SF,ARI,3,9,9,(1:47) A.Smith pass short right to M.Crabtree for 9 yards TOUCHDOWN.,10,0,2012 -20121029_SF@ARI,2,31,47,SF,ARI,,,9,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,10,0,2012 -20121029_SF@ARI,2,31,47,SF,ARI,,,9,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,17,0,2012 -20121029_SF@ARI,2,31,41,ARI,SF,1,10,80,(1:41) (Shotgun) J.Skelton pass incomplete short right to M.Floyd.,0,17,2012 -20121029_SF@ARI,2,31,36,ARI,SF,2,10,80,(1:36) (Shotgun) J.Skelton pass short left to L.Fitzgerald to ARZ 33 for 13 yards (C.Rogers).,0,17,2012 -20121029_SF@ARI,2,31,17,ARI,SF,1,10,67,(1:17) (No Huddle Shotgun) J.Skelton pass short right to A.Roberts to ARZ 45 for 12 yards (D.Whitner).,0,17,2012 -20121029_SF@ARI,2,31,11,ARI,SF,1,10,55,(1:11) (Shotgun) J.Skelton sacked at ARZ 36 for -9 yards (N.Bowman).,0,17,2012 -20121029_SF@ARI,2,30,48,ARI,SF,2,19,64,(:48) (No Huddle Shotgun) J.Skelton pass incomplete short right to M.Floyd (P.Cox).,0,17,2012 -20121029_SF@ARI,2,30,42,ARI,SF,3,19,64,(:42) (No Huddle Shotgun) L.Stephens-Howling up the middle to ARZ 47 for 11 yards (R.McDonald).,0,17,2012 -20121029_SF@ARI,2,30,4,ARI,SF,4,8,53,(:04) (Shotgun) J.Skelton pass deep right intended for L.Fitzgerald INTERCEPTED by C.Culliver at SF 8. C.Culliver to SF 8 for no gain (L.Fitzgerald).,0,17,2012 -20121029_SF@ARI,3,30,0,SF,ARI,,,53,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,17,0,2012 -20121029_SF@ARI,3,30,0,ARI,SF,1,10,80,(15:00) (Shotgun) J.Skelton pass short right to R.Housler to ARZ 25 for 5 yards (D.Whitner).,0,17,2012 -20121029_SF@ARI,3,29,27,ARI,SF,2,5,75,(14:27) (Shotgun) J.Skelton pass short right to A.Roberts to ARZ 33 for 8 yards (C.Rogers).,0,17,2012 -20121029_SF@ARI,3,28,46,ARI,SF,1,10,67,(13:46) L.Stephens-Howling right tackle to ARZ 33 for no gain (Ald.Smith).,0,17,2012 -20121029_SF@ARI,3,28,8,ARI,SF,2,10,67,(13:08) J.Skelton pass short left to J.King pushed ob at SF 40 for 27 yards (P.Willis).,0,17,2012 -20121029_SF@ARI,3,27,40,ARI,SF,1,10,40,(12:40) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to SF 41 for -1 yards (P.Willis).,0,17,2012 -20121029_SF@ARI,3,26,57,ARI,SF,2,11,41,(11:57) J.Skelton pass incomplete deep left to A.Roberts.,0,17,2012 -20121029_SF@ARI,3,26,52,ARI,SF,3,11,41,(11:52) (Shotgun) J.Skelton pass short left to A.Roberts to SF 37 for 4 yards (D.Whitner).,0,17,2012 -20121029_SF@ARI,3,26,11,ARI,SF,4,7,37,(11:11) D.Zastudil punts 37 yards to end zone Center-M.Leach Touchback.,0,17,2012 -20121029_SF@ARI,3,25,59,SF,ARI,1,10,80,(10:59) F.Gore left tackle to SF 21 for 1 yard (C.Campbell).,17,0,2012 -20121029_SF@ARI,3,25,22,SF,ARI,2,9,79,(10:22) A.Smith pass short left to T.Ginn ran ob at SF 21 for no gain (S.Acho).,17,0,2012 -20121029_SF@ARI,3,24,47,SF,ARI,3,9,79,(9:47) (Shotgun) A.Smith pass short right to M.Crabtree to ARZ 49 for 30 yards (J.Fleming).,17,0,2012 -20121029_SF@ARI,3,24,6,SF,ARI,1,10,49,(9:06) F.Gore up the middle to ARZ 46 for 3 yards (D.Dockett).,17,0,2012 -20121029_SF@ARI,3,23,19,SF,ARI,2,7,46,(8:19) F.Gore up the middle to ARZ 47 for -1 yards (D.Dockett).,17,0,2012 -20121029_SF@ARI,3,22,39,SF,ARI,3,8,47,(7:39) (Shotgun) A.Smith pass short left to R.Moss for 47 yards TOUCHDOWN.,17,0,2012 -20121029_SF@ARI,3,22,39,SF,ARI,,,47,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,0,2012 -20121029_SF@ARI,3,22,39,SF,ARI,,,47,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,24,0,2012 -20121029_SF@ARI,3,22,27,ARI,SF,1,10,80,(7:27) (Shotgun) J.Skelton pass short right to A.Roberts to ARZ 25 for 5 yards (C.Rogers).,0,24,2012 -20121029_SF@ARI,3,21,56,ARI,SF,2,5,75,(6:56) (No Huddle) J.Skelton pass short right to R.Housler to ARZ 33 for 8 yards (Ald.Smith) [P.Willis].,0,24,2012 -20121029_SF@ARI,3,21,29,ARI,SF,1,10,67,(6:29) J.Skelton pass incomplete short left to M.Floyd (T.Brown).,0,24,2012 -20121029_SF@ARI,3,21,22,ARI,SF,2,10,67,(6:22) J.Skelton pass deep left to A.Roberts to SF 47 for 20 yards (D.Whitner).,0,24,2012 -20121029_SF@ARI,3,21,9,ARI,SF,1,10,47,(6:09) J.Skelton pass short left to E.Doucet to SF 30 for 17 yards. PENALTY on ARZ-L.Fitzgerald Offensive Pass Interference 10 yards enforced at SF 47 - No Play.,0,24,2012 -20121029_SF@ARI,3,20,41,ARI,SF,1,20,57,(5:41) (Shotgun) J.Skelton pass short right to M.Floyd to SF 49 for 8 yards (Ald.Smith).,0,24,2012 -20121029_SF@ARI,3,20,15,ARI,SF,2,11,48,(5:15) J.Skelton pass incomplete deep middle to M.Floyd (T.Brown).,0,24,2012 -20121029_SF@ARI,3,20,11,ARI,SF,3,12,49,(5:11) (Shotgun) J.Skelton pass short left to A.Roberts to SF 39 for 10 yards (P.Cox).,0,24,2012 -20121029_SF@ARI,3,19,26,ARI,SF,4,2,39,(4:26) (Shotgun) J.Skelton pass short middle to J.King to SF 29 for 10 yards (P.Cox).,0,24,2012 -20121029_SF@ARI,3,18,47,ARI,SF,1,10,29,(3:47) (No Huddle Shotgun) J.Skelton pass short right to J.King to SF 23 for 6 yards (D.Whitner).,0,24,2012 -20121029_SF@ARI,3,18,17,ARI,SF,2,4,23,(3:17) (No Huddle Shotgun) J.Skelton pass short right to E.Doucet pushed ob at SF 18 for 5 yards (C.Rogers).,0,24,2012 -20121029_SF@ARI,3,17,31,ARI,SF,1,10,18,(2:31) (Shotgun) J.Skelton scrambles up the middle to SF 17 for 1 yard (C.Haggans).,0,24,2012 -20121029_SF@ARI,3,16,47,ARI,SF,2,9,17,(1:47) (Shotgun) J.Skelton pass incomplete deep right to L.Fitzgerald (C.Culliver).,0,24,2012 -20121029_SF@ARI,3,16,42,ARI,SF,3,9,17,(1:42) (Shotgun) J.Skelton pass short right to A.Sherman to SF 10 for 7 yards (P.Willis).,0,24,2012 -20121029_SF@ARI,3,16,0,ARI,SF,4,2,10,(1:00) J.Feely 28 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,24,2012 -20121029_SF@ARI,3,16,0,ARI,SF,,,10,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,3,24,2012 -20121029_SF@ARI,3,15,57,SF,ARI,1,10,80,(:57) F.Gore left tackle to SF 21 for 1 yard (P.Lenon).,24,3,2012 -20121029_SF@ARI,3,15,15,SF,ARI,2,9,79,(:15) A.Smith sacked at SF 11 for -10 yards (D.Dockett).,24,3,2012 -20121029_SF@ARI,4,15,0,SF,ARI,3,19,89,(15:00) M.Crabtree right end to SF 19 for 8 yards (P.Lenon).,24,3,2012 -20121029_SF@ARI,4,15,0,SF,ARI,4,11,81,(15:00) A.Lee punts 45 yards to ARZ 36 Center-B.Jennings. P.Peterson to ARZ 37 for 1 yard (C.Spillman).,24,3,2012 -20121029_SF@ARI,4,14,18,ARI,SF,1,10,63,(14:18) (Shotgun) J.Skelton pass incomplete short middle to E.Doucet (D.Goldson).,3,24,2012 -20121029_SF@ARI,4,14,13,ARI,SF,2,10,63,(14:13) (Shotgun) J.Skelton sacked at ARZ 32 for -5 yards (A.Brooks).,3,24,2012 -20121029_SF@ARI,4,13,40,ARI,SF,3,15,68,(13:40) (Shotgun) J.Skelton sacked at ARZ 22 for -10 yards (Ald.Smith).,3,24,2012 -20121029_SF@ARI,4,13,1,ARI,SF,4,25,78,(13:01) D.Zastudil punts 42 yards to SF 36 Center-M.Leach fair catch by T.Ginn.,3,24,2012 -20121029_SF@ARI,4,12,54,SF,ARI,1,10,64,(12:54) K.Hunter up the middle to SF 41 for 5 yards (D.Washington).,24,3,2012 -20121029_SF@ARI,4,12,14,SF,ARI,2,5,59,(12:14) K.Hunter right tackle to SF 44 for 3 yards (C.Campbell).,24,3,2012 -20121029_SF@ARI,4,11,32,SF,ARI,3,2,56,(11:32) (Shotgun) A.Smith sacked at SF 40 for -4 yards (D.Washington).,24,3,2012 -20121029_SF@ARI,4,11,5,SF,ARI,4,6,60,(11:05) A.Lee punts 54 yards to ARZ 6 Center-B.Jennings. P.Peterson to ARZ 12 for 6 yards (T.Gooden). PENALTY on ARZ-J.Bethel Illegal Block Above the Waist 4 yards enforced at ARZ 9.,24,3,2012 -20121029_SF@ARI,4,10,51,ARI,SF,1,10,95,(10:51) J.Skelton pass short right to A.Roberts to ARZ 11 for 6 yards (D.Whitner). PENALTY on SF-Ald.Smith Defensive Offside 5 yards enforced at ARZ 5 - No Play.,3,24,2012 -20121029_SF@ARI,4,10,27,ARI,SF,1,5,90,(10:27) PENALTY on SF-A.Brooks Defensive Offside 5 yards enforced at ARZ 10 - No Play.,3,24,2012 -20121029_SF@ARI,4,10,9,ARI,SF,1,10,85,(10:09) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to ARZ 17 for 2 yards (D.Goldson).,3,24,2012 -20121029_SF@ARI,4,9,33,ARI,SF,2,8,83,(9:33) (No Huddle Shotgun) J.Skelton pass short middle to R.Housler to ARZ 33 for 16 yards (D.Goldson).,3,24,2012 -20121029_SF@ARI,4,8,59,ARI,SF,1,10,67,(8:59) (No Huddle Shotgun) J.Skelton sacked at ARZ 25 for -8 yards (Ald.Smith).,3,24,2012 -20121029_SF@ARI,4,8,21,ARI,SF,2,18,75,(8:21) (Shotgun) PENALTY on ARZ-D.Batiste False Start 5 yards enforced at ARZ 25 - No Play.,3,24,2012 -20121029_SF@ARI,4,8,0,ARI,SF,2,23,80,(8:00) (Shotgun) J.Skelton pass incomplete short left to A.Roberts (T.Brown).,3,24,2012 -20121029_SF@ARI,4,7,54,ARI,SF,3,23,80,(7:54) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to ARZ 29 for 9 yards (D.Goldson).,3,24,2012 -20121029_SF@ARI,4,7,37,ARI,SF,4,14,71,(7:37) D.Zastudil punts 52 yards to SF 19 Center-M.Leach. T.Ginn pushed ob at SF 28 for 9 yards (S.Acho). PENALTY on SF-L.Grant Offensive Holding 10 yards enforced at SF 20. Penalty on SF-A.Dixon Illegal Block Above the Waist declined.,3,24,2012 -20121029_SF@ARI,4,7,27,SF,ARI,1,10,90,(7:27) A.Smith pass short right to V.Davis pushed ob at SF 19 for 9 yards (W.Gay).,24,3,2012 -20121029_SF@ARI,4,6,52,SF,ARI,2,1,81,(6:52) K.Hunter left end to SF 19 for no gain (Q.Groves).,24,3,2012 -20121029_SF@ARI,4,6,12,SF,ARI,3,1,81,(6:12) B.Miller up the middle to SF 20 for 1 yard (O.Schofield).,24,3,2012 -20121029_SF@ARI,4,5,26,SF,ARI,1,10,80,(5:26) K.Hunter up the middle to SF 22 for 2 yards (D.Washington).,24,3,2012 -20121029_SF@ARI,4,4,41,SF,ARI,2,8,78,(4:41) K.Hunter up the middle to SF 22 for no gain (Q.Groves).,24,3,2012 -20121029_SF@ARI,4,3,54,SF,ARI,3,8,78,(3:54) PENALTY on SF-A.Smith Delay of Game 5 yards enforced at SF 22 - No Play.,24,3,2012 -20121029_SF@ARI,4,3,53,SF,ARI,3,13,83,(3:53) K.Hunter up the middle to SF 21 for 4 yards (O.Schofield; P.Lenon).,24,3,2012 -20121029_SF@ARI,4,3,47,SF,ARI,4,9,79,(3:47) A.Lee punts 50 yards to ARZ 29 Center-B.Jennings. P.Peterson to ARZ 35 for 6 yards (D.Goldson).,24,3,2012 -20121029_SF@ARI,4,3,38,ARI,SF,1,10,65,(3:38) J.Skelton pass short right to M.Floyd to ARZ 44 for 9 yards (C.Culliver).,3,24,2012 -20121029_SF@ARI,4,3,15,ARI,SF,2,1,56,(3:15) (No Huddle) J.Skelton pass incomplete short left to L.Fitzgerald (T.Brown).,3,24,2012 -20121029_SF@ARI,4,3,11,ARI,SF,3,1,56,(3:11) (No Huddle Shotgun) J.Skelton pass short right to M.Floyd to ARZ 48 for 4 yards (C.Culliver).,3,24,2012 -20121029_SF@ARI,4,2,47,ARI,SF,1,10,52,(2:47) (No Huddle Shotgun) J.Skelton pass short right to M.Floyd to SF 44 for 8 yards (D.Whitner).,3,24,2012 -20121029_SF@ARI,4,2,23,ARI,SF,2,2,44,(2:23) (No Huddle Shotgun) J.Skelton pass incomplete short left to A.Roberts. PENALTY on ARZ-D.Colledge Offensive Holding 10 yards enforced at SF 44 - No Play.,3,24,2012 -20121029_SF@ARI,4,2,16,ARI,SF,2,12,54,(2:16) (Shotgun) J.Skelton pass short left to L.Fitzgerald to SF 39 for 15 yards (D.Goldson).,3,24,2012 -20121029_SF@ARI,4,2,0,ARI,SF,1,10,39,(2:00) PENALTY on SF-A.Brooks Defensive Offside 5 yards enforced at SF 39 - No Play.,3,24,2012 -20121029_SF@ARI,4,2,0,ARI,SF,1,5,34,(2:00) J.Skelton pass short left to M.Floyd pushed ob at SF 27 for 7 yards (T.Brown).,3,24,2012 -20121029_SF@ARI,4,1,55,ARI,SF,1,10,27,(1:55) (No Huddle Shotgun) J.Skelton pass incomplete deep right to M.Floyd (C.Culliver).,3,24,2012 -20121029_SF@ARI,4,1,49,ARI,SF,2,10,27,(1:49) (Shotgun) J.Skelton pass short left to A.Sherman to SF 23 for 4 yards (P.Willis).,3,24,2012 -20121029_SF@ARI,4,1,24,ARI,SF,3,6,23,(1:24) (Shotgun) J.Skelton pass incomplete short left to L.Fitzgerald.,3,24,2012 -20121029_SF@ARI,4,1,20,ARI,SF,4,6,23,(1:20) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to SF 7 for 16 yards (P.Cox).,3,24,2012 -20121029_SF@ARI,4,1,13,ARI,SF,1,7,7,(1:13) (Shotgun) J.Skelton pass incomplete short left to E.Doucet.,3,24,2012 -20121029_SF@ARI,4,1,9,ARI,SF,2,7,7,(1:09) (Shotgun) J.Skelton pass incomplete short middle to M.Floyd (T.Brown).,3,24,2012 -20121029_SF@ARI,4,1,5,ARI,SF,3,7,7,(1:05) (Shotgun) J.Skelton pass incomplete short middle to L.Stephens-Howling (P.Willis).,3,24,2012 -20121029_SF@ARI,4,0,59,ARI,SF,4,7,7,(:59) (Shotgun) J.Skelton pass short right to L.Fitzgerald to SF 1 for 6 yards (D.Goldson; P.Willis).,3,24,2012 -20121029_SF@ARI,4,0,49,SF,ARI,1,10,99,(:49) A.Smith up the middle to SF 7 for 6 yards (P.Lenon).,24,3,2012 -20121029_SF@ARI,4,0,49,SF,ARI,,,99,                      ,24,3,2012 -20121101_KC@SD,1,0,0,KC,SD,,,99,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,0,0,2012 -20121101_KC@SD,1,60,0,SD,KC,1,10,80,(15:00) R.Mathews up the middle to SD 28 for 8 yards (E.Berry T.Hali).,0,0,2012 -20121101_KC@SD,1,59,27,SD,KC,2,2,72,(14:27) R.Mathews left end to SD 29 for 1 yard (G.Dorsey D.Poe).,0,0,2012 -20121101_KC@SD,1,58,46,SD,KC,3,1,71,(13:46) PENALTY on SD-J.Gaither False Start 4 yards enforced at SD 29 - No Play.,0,0,2012 -20121101_KC@SD,1,58,20,SD,KC,3,5,75,(13:20) (Shotgun) P.Rivers pass deep left to S.Ajirotutu to KC 47 for 28 yards (E.Berry).,0,0,2012 -20121101_KC@SD,1,57,35,SD,KC,1,10,47,(12:35) P.Rivers pass deep left to A.Gates to KC 26 for 21 yards (K.Lewis).,0,0,2012 -20121101_KC@SD,1,56,51,SD,KC,1,10,26,(11:51) (Shotgun) P.Rivers pass short right to M.Floyd to KC 19 for 7 yards (J.Belcher).,0,0,2012 -20121101_KC@SD,1,56,14,SD,KC,2,3,19,(11:14) R.Mathews right end to KC 14 for 5 yards (J.Houston D.Poe).,0,0,2012 -20121101_KC@SD,1,55,31,SD,KC,1,10,14,(10:31) (Shotgun) P.Rivers pass short left to A.Gates for 14 yards TOUCHDOWN.,0,0,2012 -20121101_KC@SD,1,55,31,SD,KC,,,14,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20121101_KC@SD,1,55,31,SD,KC,,,14,N.Novak kicks 67 yards from SD 35 to KC -2. S.Draughn MUFFS catch and recovers at KC 8. S.Draughn to KC 13 for 5 yards (J.Battle).,7,0,2012 -20121101_KC@SD,1,55,19,KC,SD,1,10,87,(10:19) J.Charles right end to KC 21 for 8 yards (T.Spikes A.Bigby).,0,7,2012 -20121101_KC@SD,1,54,42,KC,SD,2,2,79,(9:42) M.Cassel scrambles left end to KC 25 for 4 yards (A.Cason).,0,7,2012 -20121101_KC@SD,1,54,3,KC,SD,1,10,75,(9:03) J.Charles right tackle to KC 27 for 2 yards (A.Franklin T.Spikes).,0,7,2012 -20121101_KC@SD,1,53,23,KC,SD,2,8,73,(8:23) M.Cassel pass incomplete short left to J.Charles (C.Liuget).,0,7,2012 -20121101_KC@SD,1,53,19,KC,SD,3,8,73,(8:19) (Shotgun) M.Cassel pass short right to D.Bowe to KC 41 for 14 yards (S.Phillips A.Bigby).,0,7,2012 -20121101_KC@SD,1,52,42,KC,SD,1,10,59,(7:42) Direct snap to D.McCluster. D.McCluster right end ran ob at KC 39 for -2 yards (Q.Jammer).,0,7,2012 -20121101_KC@SD,1,52,11,KC,SD,2,12,61,(7:11) (Shotgun) M.Cassel pass incomplete short right to T.Copper.,0,7,2012 -20121101_KC@SD,1,52,7,KC,SD,3,12,61,(7:07) (Shotgun) M.Cassel pass short right to D.McCluster to SD 49 for 12 yards (M.Gilchrist).,0,7,2012 -20121101_KC@SD,1,51,26,KC,SD,1,10,49,(6:26) J.Charles left end to SD 49 for no gain (M.Ingram).,0,7,2012 -20121101_KC@SD,1,50,42,KC,SD,2,10,49,(5:42) (Shotgun) M.Cassel pass incomplete short left to J.Baldwin.,0,7,2012 -20121101_KC@SD,1,50,37,KC,SD,3,10,49,(5:37) (Shotgun) M.Cassel pass short left to D.Bowe ran ob at SD 38 for 11 yards (E.Weddle).,0,7,2012 -20121101_KC@SD,1,50,8,KC,SD,1,10,38,(5:08) P.Hillis up the middle to SD 36 for 2 yards (D.Butler T.Spikes).,0,7,2012 -20121101_KC@SD,1,49,33,KC,SD,2,8,36,(4:33) M.Cassel pass short middle to D.Bowe to SD 29 for 7 yards (D.Butler).,0,7,2012 -20121101_KC@SD,1,48,54,KC,SD,3,1,29,(3:54) P.Hillis right guard to SD 28 for 1 yard (A.Bigby T.Spikes).,0,7,2012 -20121101_KC@SD,1,48,15,KC,SD,1,10,28,(3:15) J.Charles left end to SD 33 for -5 yards (E.Weddle).,0,7,2012 -20121101_KC@SD,1,47,32,KC,SD,2,15,33,(2:32) M.Cassel pass incomplete short right to D.McCluster.,0,7,2012 -20121101_KC@SD,1,47,27,KC,SD,3,15,33,(2:27) (Shotgun) M.Cassel pass short right to D.Bowe to SD 23 for 10 yards (D.Williams M.Ingram). FUMBLES (D.Williams) RECOVERED by SD-Q.Jammer at SD 22. Q.Jammer to SD 22 for no gain (E.Winston).,0,7,2012 -20121101_KC@SD,1,47,18,SD,KC,1,10,78,(2:18) R.Mathews left tackle to SD 26 for 4 yards (D.Johnson).,7,0,2012 -20121101_KC@SD,1,46,37,SD,KC,2,6,74,(1:37) R.Mathews left end to SD 30 for 4 yards (J.Belcher T.Hali).,7,0,2012 -20121101_KC@SD,1,45,52,SD,KC,3,2,70,(:52) (Shotgun) PENALTY on KC-J.Houston Neutral Zone Infraction 5 yards enforced at SD 30 - No Play.,7,0,2012 -20121101_KC@SD,1,45,35,SD,KC,1,10,65,(:35) PENALTY on SD-J.Gaither False Start 5 yards enforced at SD 35 - No Play.,7,0,2012 -20121101_KC@SD,1,45,10,SD,KC,1,15,70,(:10) P.Rivers pass short left to D.Alexander pushed ob at SD 41 for 11 yards (J.Arenas).,7,0,2012 -20121101_KC@SD,2,45,0,SD,KC,2,4,59,(15:00) R.Mathews right end to SD 44 for 3 yards (B.Flowers J.Houston).,7,0,2012 -20121101_KC@SD,2,44,16,SD,KC,3,1,56,(14:16) J.Battle right tackle to SD 47 for 3 yards (D.Johnson).,7,0,2012 -20121101_KC@SD,2,43,37,SD,KC,1,10,53,(13:37) P.Rivers pass short right to R.Mathews to KC 47 for 6 yards (J.Houston).,7,0,2012 -20121101_KC@SD,2,42,51,SD,KC,2,4,47,(12:51) (Shotgun) R.Mathews left end to KC 45 for 2 yards (J.Arenas).,7,0,2012 -20121101_KC@SD,2,42,7,SD,KC,3,2,45,(12:07) (Shotgun) P.Rivers pass short left to D.Alexander to KC 15 for 30 yards (A.Elam D.Johnson).,7,0,2012 -20121101_KC@SD,2,41,18,SD,KC,1,10,15,(11:18) R.Mathews left end to KC 17 for -2 yards (J.Arenas).,7,0,2012 -20121101_KC@SD,2,40,40,SD,KC,2,12,17,(10:40) (Shotgun) P.Rivers pass short left to R.Brown to KC 14 for 3 yards (T.Hali).,7,0,2012 -20121101_KC@SD,2,39,56,SD,KC,3,9,14,(9:56) (Shotgun) P.Rivers pass short left to R.Brown to KC 7 for 7 yards (E.Berry T.Daniels).,7,0,2012 -20121101_KC@SD,2,39,13,SD,KC,4,2,7,(9:13) N.Novak 25 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,7,0,2012 -20121101_KC@SD,2,39,13,SD,KC,,,7,N.Novak kicks 73 yards from SD 35 to KC -8. S.Draughn to KC 20 for 28 yards (A.Bigby).,10,0,2012 -20121101_KC@SD,2,39,5,KC,SD,1,10,80,(9:05) J.Charles right tackle to KC 20 for no gain (A.Franklin A.Bigby).,0,10,2012 -20121101_KC@SD,2,38,21,KC,SD,2,10,80,(8:21) M.Cassel scrambles up the middle to KC 28 for 8 yards (D.Butler).,0,10,2012 -20121101_KC@SD,2,37,38,KC,SD,3,2,72,(7:38) (Shotgun) M.Cassel pass short left to D.Bowe to KC 37 for 9 yards (A.Cason).,0,10,2012 -20121101_KC@SD,2,37,4,KC,SD,1,10,63,(7:04) J.Charles right tackle to KC 41 for 4 yards (C.Liuget V.Martin).,0,10,2012 -20121101_KC@SD,2,36,22,KC,SD,2,6,59,(6:22) P.Hillis right end to KC 42 for 1 yard (E.Weddle V.Martin).,0,10,2012 -20121101_KC@SD,2,35,43,KC,SD,3,5,58,(5:43) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe. PENALTY on SD-A.Barnes Neutral Zone Infraction 5 yards enforced at KC 42 - No Play.,0,10,2012 -20121101_KC@SD,2,35,37,KC,SD,1,10,53,(5:37) (Shotgun) Direct snap to D.McCluster. D.McCluster right end to SD 40 for 13 yards (A.Bigby).,0,10,2012 -20121101_KC@SD,2,34,55,KC,SD,1,10,40,(4:55) (Shotgun) M.Cassel pass short middle to J.Charles to SD 37 for 3 yards (J.Johnson C.Liuget).,0,10,2012 -20121101_KC@SD,2,34,17,KC,SD,2,7,37,(4:17) Direct snap to D.McCluster. D.McCluster up the middle to SD 31 for 6 yards (C.Liuget).,0,10,2012 -20121101_KC@SD,2,33,40,KC,SD,3,1,31,(3:40) P.Hillis up the middle to SD 31 for no gain (D.Butler A.Garay).,0,10,2012 -20121101_KC@SD,2,32,56,KC,SD,4,1,31,(2:56) R.Succop 49 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,10,2012 -20121101_KC@SD,2,32,56,KC,SD,,,31,R.Succop kicks 67 yards from KC 35 to SD -2. C.Brinkley to SD 22 for 24 yards (T.Copper). PENALTY on KC-J.Arenas Unnecessary Roughness 15 yards enforced at SD 22. Penalty on KC-E.Jones Unnecessary Roughness declined.,3,10,2012 -20121101_KC@SD,2,32,45,SD,KC,1,10,63,(2:45) (Shotgun) P.Rivers pass deep middle to M.Floyd to KC 47 for 16 yards (J.Arenas).,10,3,2012 -20121101_KC@SD,2,32,15,SD,KC,1,10,47,(2:15) (Shotgun) P.Rivers pass short left to M.Floyd to KC 35 for 12 yards (J.Arenas).,10,3,2012 -20121101_KC@SD,2,32,0,SD,KC,1,10,35,(2:00) (Shotgun) P.Rivers pass short right to R.Brown to KC 26 for 9 yards (J.Arenas).,10,3,2012 -20121101_KC@SD,2,31,36,SD,KC,2,1,26,(1:36) (Shotgun) R.Brown up the middle to KC 20 for 6 yards (D.Johnson J.Houston).,10,3,2012 -20121101_KC@SD,2,31,6,SD,KC,1,10,20,(1:06) (Shotgun) P.Rivers pass short middle to A.Gates to KC 12 for 8 yards (D.Johnson E.Berry).,10,3,2012 -20121101_KC@SD,2,30,45,SD,KC,2,2,12,(:45) (Shotgun) R.Brown up the middle to KC 8 for 4 yards (J.Houston J.Arenas).,10,3,2012 -20121101_KC@SD,2,30,40,SD,KC,1,8,8,(:40) (Shotgun) P.Rivers pass incomplete short middle.,10,3,2012 -20121101_KC@SD,2,30,35,SD,KC,2,8,8,(:35) (Shotgun) P.Rivers pass short left to R.Brown to KC 1 for 7 yards (J.Houston E.Berry). KC-G.Dorsey was injured during the play.,10,3,2012 -20121101_KC@SD,2,30,21,SD,KC,3,1,1,(:21) P.Rivers pass short right intended for D.Rosario INTERCEPTED by E.Berry at KC 0. Touchback.,10,3,2012 -20121101_KC@SD,2,30,14,KC,SD,1,10,80,(:14) M.Cassel kneels dead ball declared at KC 19 for -1 yards.,3,10,2012 -20121101_KC@SD,3,30,0,SD,KC,,,80,N.Novak kicks 68 yards from SD 35 to KC -3. S.Draughn to KC 26 for 29 yards (D.Stuckey A.Bigby).,10,3,2012 -20121101_KC@SD,3,29,53,KC,SD,1,10,74,(14:53) J.Charles right tackle to KC 25 for -1 yards (D.Butler).,3,10,2012 -20121101_KC@SD,3,29,10,KC,SD,2,11,75,(14:10) (Shotgun) M.Cassel pass short left to D.Bowe to KC 35 for 10 yards (A.Cason).,3,10,2012 -20121101_KC@SD,3,28,34,KC,SD,3,1,65,(13:34) Direct snap to D.McCluster. D.McCluster up the middle to KC 35 for no gain (D.Butler).,3,10,2012 -20121101_KC@SD,3,27,41,KC,SD,4,1,65,(12:41) D.Colquitt punts 43 yards to SD 22 Center-T.Gafford. E.Weddle to SD 24 for 2 yards (J.Brown). FUMBLES (J.Brown) RECOVERED by KC-C.Greenwood at SD 24. C.Greenwood to SD 24 for no gain (J.Battle).,3,10,2012 -20121101_KC@SD,3,27,29,KC,SD,1,10,24,(12:29) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,3,10,2012 -20121101_KC@SD,3,27,23,KC,SD,2,10,24,(12:23) (Shotgun) J.Charles up the middle to SD 21 for 3 yards (C.Liuget).,3,10,2012 -20121101_KC@SD,3,26,41,KC,SD,3,7,21,(11:41) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,3,10,2012 -20121101_KC@SD,3,26,35,KC,SD,4,7,21,(11:35) R.Succop 39 yard field goal is No Good Wide Left Center-T.Gafford Holder-D.Colquitt.,3,10,2012 -20121101_KC@SD,3,26,31,SD,KC,1,10,71,(11:31) R.Mathews right end to SD 31 for 2 yards (J.Houston).,10,3,2012 -20121101_KC@SD,3,25,51,SD,KC,2,8,69,(10:51) (Shotgun) P.Rivers pass short left to R.Brown to SD 40 for 9 yards (J.Arenas).,10,3,2012 -20121101_KC@SD,3,25,5,SD,KC,1,10,60,(10:05) (Shotgun) P.Rivers pass short middle to D.Alexander to KC 40 for 20 yards (T.Daniels).,10,3,2012 -20121101_KC@SD,3,24,20,SD,KC,1,10,40,(9:20) P.Rivers sacked at KC 44 for -4 yards (T.Hali).,10,3,2012 -20121101_KC@SD,3,23,42,SD,KC,2,14,44,(8:42) (Shotgun) P.Rivers pass incomplete short left. PENALTY on SD-J.Gaither Offensive Holding 10 yards enforced at KC 44 - No Play.,10,3,2012 -20121101_KC@SD,3,23,34,SD,KC,2,24,54,(8:34) (Shotgun) P.Rivers pass short right to R.Mathews to SD 45 for -1 yards (E.Berry).,10,3,2012 -20121101_KC@SD,3,22,54,SD,KC,3,25,55,(7:54) (Shotgun) R.Brown up the middle to KC 45 for 10 yards (E.Berry).,10,3,2012 -20121101_KC@SD,3,22,20,SD,KC,4,15,45,(7:20) M.Scifres punts 38 yards to KC 7 Center-M.Windt downed by SD-D.Stuckey.,10,3,2012 -20121101_KC@SD,3,22,9,KC,SD,1,10,93,(7:09) M.Cassel pass short right to D.Bowe to KC 20 for 13 yards (A.Bigby).,3,10,2012 -20121101_KC@SD,3,21,31,KC,SD,1,10,80,(6:31) J.Charles up the middle to KC 30 for 10 yards (E.Weddle).,3,10,2012 -20121101_KC@SD,3,20,48,KC,SD,1,10,70,(5:48) J.Charles right end to KC 32 for 2 yards (C.Thomas K.Reyes).,3,10,2012 -20121101_KC@SD,3,20,1,KC,SD,2,8,68,(5:01) J.Charles left end to KC 47 for 15 yards (E.Weddle).,3,10,2012 -20121101_KC@SD,3,19,24,KC,SD,1,10,53,(4:24) M.Cassel scrambles up the middle to SD 39 for 14 yards (T.Spikes).,3,10,2012 -20121101_KC@SD,3,18,38,KC,SD,1,10,39,(3:38) P.Hillis right end to SD 28 for 11 yards (E.Weddle).,3,10,2012 -20121101_KC@SD,3,17,59,KC,SD,1,10,28,(2:59) P.Hillis left guard to SD 31 for -3 yards (M.Ingram).,3,10,2012 -20121101_KC@SD,3,17,16,KC,SD,2,13,31,(2:16) (Shotgun) PENALTY on KC-E.Winston False Start 5 yards enforced at SD 31 - No Play.,3,10,2012 -20121101_KC@SD,3,16,50,KC,SD,2,18,36,(1:50) (Shotgun) M.Cassel pass incomplete deep right to D.McCluster (D.Butler).,3,10,2012 -20121101_KC@SD,3,16,44,KC,SD,3,18,36,(1:44) (Shotgun) M.Cassel pass short right to J.Baldwin to SD 23 for 13 yards (S.Wright Q.Jammer).,3,10,2012 -20121101_KC@SD,3,15,58,KC,SD,4,5,23,(:58) R.Succop 41 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 -20121101_KC@SD,3,15,58,KC,SD,,,23,R.Succop kicks 71 yards from KC 35 to SD -6. C.Brinkley Touchback.,6,10,2012 -20121101_KC@SD,3,15,53,SD,KC,1,10,80,(:53) R.Mathews up the middle to KC 49 for 31 yards (J.Arenas).,10,6,2012 -20121101_KC@SD,3,15,8,SD,KC,1,10,49,(:08) J.Battle left end to KC 38 for 11 yards (J.Belcher).,10,6,2012 -20121101_KC@SD,4,15,0,SD,KC,1,10,38,(15:00) R.Mathews right guard to KC 33 for 5 yards (R.Pitoitua).,10,6,2012 -20121101_KC@SD,4,14,23,SD,KC,2,5,33,(14:23) R.Mathews left end to KC 31 for 2 yards (T.Hali R.Pitoitua).,10,6,2012 -20121101_KC@SD,4,13,41,SD,KC,3,3,31,(13:41) (Shotgun) R.Brown up the middle to KC 24 for 7 yards (T.Hali A.Bailey).,10,6,2012 -20121101_KC@SD,4,13,4,SD,KC,1,10,24,(13:04) R.Mathews left tackle to KC 22 for 2 yards (T.Hali R.Pitoitua).,10,6,2012 -20121101_KC@SD,4,12,20,SD,KC,2,8,22,(12:20) R.Brown left guard to KC 13 for 9 yards (E.Berry).,10,6,2012 -20121101_KC@SD,4,11,37,SD,KC,1,10,13,(11:37) (Shotgun) P.Rivers pass short left to M.Floyd for 13 yards TOUCHDOWN.,10,6,2012 -20121101_KC@SD,4,11,37,SD,KC,,,13,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,10,6,2012 -20121101_KC@SD,4,11,37,SD,KC,,,13,N.Novak kicks 70 yards from SD 35 to KC -5. S.Draughn to KC 16 for 21 yards (D.Stuckey A.Gachkar). PENALTY on KC-D.Stephenson Face Mask (15 Yards) 8 yards enforced at KC 16.,17,6,2012 -20121101_KC@SD,4,11,25,KC,SD,1,10,92,(11:25) PENALTY on KC-E.Winston False Start 4 yards enforced at KC 8 - No Play.,6,17,2012 -20121101_KC@SD,4,11,25,KC,SD,1,14,96,(11:25) J.Charles left end to KC 5 for 1 yard (D.Butler).,6,17,2012 -20121101_KC@SD,4,10,46,KC,SD,2,13,95,(10:46) M.Cassel sacked at KC 0 for -5 yards (J.Johnson). FUMBLES (J.Johnson) RECOVERED by SD-S.Phillips at KC 0. TOUCHDOWN.,6,17,2012 -20121101_KC@SD,4,10,46,SD,KC,,,95,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,17,6,2012 -20121101_KC@SD,4,10,46,SD,KC,,,95,N.Novak kicks 69 yards from SD 35 to KC -4. S.Draughn Touchback.,24,6,2012 -20121101_KC@SD,4,10,39,KC,SD,1,10,80,(10:39) (Shotgun) M.Cassel pass short left to J.Charles ran ob at KC 42 for 22 yards (E.Weddle). KC-B.Albert was injured during the play.,6,24,2012 -20121101_KC@SD,4,10,14,KC,SD,1,10,58,(10:14) (Shotgun) M.Cassel pass short right to D.Bowe to KC 47 for 5 yards (Q.Jammer).,6,24,2012 -20121101_KC@SD,4,9,43,KC,SD,2,5,53,(9:43) (Shotgun) M.Cassel pass incomplete deep right to D.McCluster (C.Lynch).,6,24,2012 -20121101_KC@SD,4,9,37,KC,SD,3,5,53,(9:37) (Shotgun) M.Cassel pass short left to D.McCluster pushed ob at SD 48 for 5 yards (M.Gilchrist).,6,24,2012 -20121101_KC@SD,4,9,14,KC,SD,1,10,48,(9:14) (Shotgun) M.Cassel pass short right to J.Charles to SD 46 for 2 yards (D.Butler C.Lynch). KC-J.Charles was injured during the play.,6,24,2012 -20121101_KC@SD,4,8,46,KC,SD,2,8,46,(8:46) (Shotgun) M.Cassel pass short right intended for D.McCluster INTERCEPTED by D.Williams at SD 41. D.Williams for 59 yards TOUCHDOWN.,6,24,2012 -20121101_KC@SD,4,8,46,SD,KC,,,46,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,24,6,2012 -20121101_KC@SD,4,8,46,SD,KC,,,46,N.Novak kicks 74 yards from SD 35 to KC -9. S.Draughn Touchback.,31,6,2012 -20121101_KC@SD,4,8,33,KC,SD,1,10,80,(8:33) (Shotgun) P.Hillis up the middle to KC 22 for 2 yards (A.Barnes A.Garay).,6,31,2012 -20121101_KC@SD,4,8,5,KC,SD,2,8,78,(8:05) (Shotgun) M.Cassel pass short left to S.Breaston to KC 32 for 10 yards (M.Gilchrist).,6,31,2012 -20121101_KC@SD,4,7,39,KC,SD,1,10,68,(7:39) (Shotgun) M.Cassel pass incomplete deep left.,6,31,2012 -20121101_KC@SD,4,7,32,KC,SD,2,10,68,(7:32) (Shotgun) M.Cassel pass incomplete short right to D.Bowe. PENALTY on SD-Q.Jammer Defensive Pass Interference 15 yards enforced at KC 32 - No Play.,6,31,2012 -20121101_KC@SD,4,7,25,KC,SD,1,10,53,(7:25) (Shotgun) M.Cassel pass short right to S.Draughn to KC 48 for 1 yard (Q.Jammer).,6,31,2012 -20121101_KC@SD,4,6,53,KC,SD,2,9,52,(6:53) (Shotgun) M.Cassel pass short left to P.Hillis to SD 45 for 7 yards (M.Gilchrist).,6,31,2012 -20121101_KC@SD,4,6,19,KC,SD,3,2,45,(6:19) (Shotgun) M.Cassel pass short left to S.Breaston to SD 38 for 7 yards (A.Cason).,6,31,2012 -20121101_KC@SD,4,5,50,KC,SD,1,10,38,(5:50) (Shotgun) M.Cassel scrambles up the middle to SD 33 for 5 yards (M.Gilchrist).,6,31,2012 -20121101_KC@SD,4,5,11,KC,SD,2,5,33,(5:11) (Shotgun) M.Cassel scrambles up the middle to SD 26 for 7 yards (D.Butler).,6,31,2012 -20121101_KC@SD,4,4,36,KC,SD,1,10,26,(4:36) (Shotgun) M.Cassel pass deep left to S.Draughn ran ob at SD 6 for 20 yards (D.Williams).,6,31,2012 -20121101_KC@SD,4,4,30,KC,SD,1,6,6,(4:30) (Shotgun) S.Draughn up the middle for 6 yards TOUCHDOWN.,6,31,2012 -20121101_KC@SD,4,4,30,KC,SD,,,6,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,6,31,2012 -20121101_KC@SD,4,4,30,KC,SD,,,6,R.Succop kicks onside 5 yards from KC 35 to KC 40. C.Lynch (didn't try to advance) to KC 40 for no gain (A.Studebaker).,13,31,2012 -20121101_KC@SD,4,4,25,SD,KC,1,10,40,(4:25) PENALTY on SD-M.Harris False Start 5 yards enforced at KC 40 - No Play.,31,13,2012 -20121101_KC@SD,4,4,25,SD,KC,1,15,45,(4:25) J.Battle right end to KC 42 for 3 yards (J.Houston).,31,13,2012 -20121101_KC@SD,4,3,41,SD,KC,2,12,42,(3:41) J.Battle up the middle to KC 39 for 3 yards (R.Pitoitua T.Hali).,31,13,2012 -20121101_KC@SD,4,2,54,SD,KC,3,9,39,(2:54) (Shotgun) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at KC 39 - No Play.,31,13,2012 -20121101_KC@SD,4,2,53,SD,KC,3,14,44,(2:53) (Shotgun) R.Brown up the middle to KC 42 for 2 yards (T.Jackson J.Houston).,31,13,2012 -20121101_KC@SD,4,2,53,SD,KC,4,12,42,(2:53) (Punt formation) PENALTY on SD Delay of Game 5 yards enforced at KC 42 - No Play.,31,13,2012 -20121101_KC@SD,4,2,6,SD,KC,4,17,47,(2:06) M.Scifres punts 29 yards to KC 18 Center-M.Windt. D.McCluster MUFFS catch RECOVERED by SD-D.Stuckey at KC 16. D.Stuckey to KC 16 for no gain (D.McCluster). SD-A.Barnes was injured during the play.,31,13,2012 -20121101_KC@SD,4,1,57,SD,KC,1,10,16,(1:57) L.McClain up the middle to KC 16 for no gain (T.Hali).,31,13,2012 -20121101_KC@SD,4,1,12,SD,KC,2,10,16,(1:12) P.Rivers kneels dead ball declared at KC 17 for -1 yards.,31,13,2012 -20121101_KC@SD,4,0,30,SD,KC,3,11,17,(:30) P.Rivers kneels dead ball declared at KC 18 for -1 yards.,31,13,2012 -20121101_KC@SD,4,0,30,SD,KC,,,17,                      ,31,13,2012 -20121104_DEN@CIN,1,0,0,DEN,CIN,,,17,M.Prater kicks 64 yards from DEN 35 to CIN 1. B.Tate to CIN 36 for 35 yards (M.Prater; C.Gronkowski).,0,0,2012 -20121104_DEN@CIN,1,59,53,CIN,DEN,1,10,64,(14:53) B.Green-Ellis right tackle to CIN 41 for 5 yards (K.Brooking).,0,0,2012 -20121104_DEN@CIN,1,59,19,CIN,DEN,2,5,59,(14:19) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 40 for -1 yards (W.Woodyard).,0,0,2012 -20121104_DEN@CIN,1,58,35,CIN,DEN,3,6,60,(13:35) (Shotgun) A.Dalton pass incomplete short left to B.Tate (T.Carter).,0,0,2012 -20121104_DEN@CIN,1,58,30,CIN,DEN,4,6,60,(13:30) K.Huber punts 60 yards to end zone Center-C.Harris Touchback.,0,0,2012 -20121104_DEN@CIN,1,58,21,DEN,CIN,1,10,80,(13:21) (Shotgun) P.Manning pass short right to W.McGahee pushed ob at DEN 24 for 4 yards (V.Burfict; T.Newman).,0,0,2012 -20121104_DEN@CIN,1,57,56,DEN,CIN,2,6,76,(12:56) W.McGahee left guard to DEN 26 for 2 yards (D.Peko).,0,0,2012 -20121104_DEN@CIN,1,57,21,DEN,CIN,3,4,74,(12:21) (Shotgun) P.Manning pass short left to D.Thomas to DEN 31 for 5 yards (L.Hall).,0,0,2012 -20121104_DEN@CIN,1,56,46,DEN,CIN,1,10,69,(11:46) (Shotgun) W.McGahee left tackle to DEN 32 for 1 yard (G.Atkins; V.Burfict).,0,0,2012 -20121104_DEN@CIN,1,56,17,DEN,CIN,2,9,68,(11:17) (Shotgun) P.Manning pass short middle to E.Decker to DEN 38 for 6 yards (T.Newman).,0,0,2012 -20121104_DEN@CIN,1,55,45,DEN,CIN,3,3,62,(10:45) (Shotgun) P.Manning pass short left to L.Ball pushed ob at DEN 45 for 7 yards (V.Burfict).,0,0,2012 -20121104_DEN@CIN,1,55,29,DEN,CIN,1,10,55,(10:29) R.Hillman right guard to DEN 49 for 4 yards (R.Maualuga; D.Still).,0,0,2012 -20121104_DEN@CIN,1,54,57,DEN,CIN,2,6,51,(9:57) P.Manning pass short middle to E.Decker to CIN 30 for 21 yards (C.Crocker; T.Newman).,0,0,2012 -20121104_DEN@CIN,1,54,25,DEN,CIN,1,10,30,(9:25) (Shotgun) P.Manning pass incomplete short right to M.Willis.,0,0,2012 -20121104_DEN@CIN,1,54,20,DEN,CIN,2,10,30,(9:20) W.McGahee right guard to CIN 26 for 4 yards (D.Still; G.Atkins).,0,0,2012 -20121104_DEN@CIN,1,53,39,DEN,CIN,3,6,26,(8:39) (Shotgun) W.McGahee right tackle to CIN 25 for 1 yard (R.Geathers).,0,0,2012 -20121104_DEN@CIN,1,53,0,DEN,CIN,4,5,25,(8:00) M.Prater 43 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121104_DEN@CIN,1,53,0,DEN,CIN,,,25,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,3,0,2012 -20121104_DEN@CIN,1,52,55,CIN,DEN,1,10,80,(7:55) B.Green-Ellis left tackle to CIN 20 for no gain (M.Unrein).,0,3,2012 -20121104_DEN@CIN,1,52,20,CIN,DEN,2,10,80,(7:20) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 35 for 15 yards (D.Trevathan; C.Bailey).,0,3,2012 -20121104_DEN@CIN,1,51,59,CIN,DEN,1,10,65,(6:59) (Shotgun) B.Green-Ellis left end to CIN 39 for 4 yards (E.Dumervil).,0,3,2012 -20121104_DEN@CIN,1,51,19,CIN,DEN,2,6,61,(6:19) (Shotgun) A.Dalton pass incomplete deep right to A.Green (C.Bailey) [C.Harris]. PENALTY on DEN-V.Miller Defensive Holding 5 yards enforced at CIN 39 - No Play.,0,3,2012 -20121104_DEN@CIN,1,51,12,CIN,DEN,1,10,56,(6:12) B.Green-Ellis right tackle to CIN 44 for no gain (W.Woodyard; E.Dumervil).,0,3,2012 -20121104_DEN@CIN,1,50,31,CIN,DEN,2,10,56,(5:31) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 47 for 3 yards (M.Adams).,0,3,2012 -20121104_DEN@CIN,1,49,53,CIN,DEN,3,7,53,(4:53) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins (C.Harris).,0,3,2012 -20121104_DEN@CIN,1,49,48,CIN,DEN,4,7,53,(4:48) K.Huber punts 40 yards to DEN 13 Center-C.Harris fair catch by J.Leonhard. PENALTY on CIN-B.Leonard Offensive Holding 10 yards enforced at DEN 13.,0,3,2012 -20121104_DEN@CIN,1,49,39,DEN,CIN,1,10,77,(4:39) (Shotgun) P.Manning pass short middle to J.Tamme to DEN 28 for 5 yards (E.Lamur).,3,0,2012 -20121104_DEN@CIN,1,49,15,DEN,CIN,2,5,72,(4:15) (Shotgun) P.Manning pass incomplete short right to D.Thomas (T.Newman).,3,0,2012 -20121104_DEN@CIN,1,49,8,DEN,CIN,3,5,72,(4:08) (Shotgun) P.Manning pass short left to W.McGahee to DEN 38 for 10 yards (L.Hall). PENALTY on DEN-E.Decker Offensive Pass Interference 10 yards enforced at DEN 28 - No Play.,3,0,2012 -20121104_DEN@CIN,1,48,51,DEN,CIN,3,15,82,(3:51) (Shotgun) P.Manning pass incomplete deep middle to B.Stokley (N.Clements).,3,0,2012 -20121104_DEN@CIN,1,48,42,DEN,CIN,4,15,82,(3:42) B.Colquitt punts 48 yards to CIN 34 Center-A.Brewer. A.Jones to CIN 33 for -1 yards (O.Bolden).,3,0,2012 -20121104_DEN@CIN,1,48,35,CIN,DEN,1,10,67,(3:35) A.Dalton pass deep right to A.Green pushed ob at DEN 30 for 37 yards (M.Adams).,0,3,2012 -20121104_DEN@CIN,1,48,5,CIN,DEN,1,10,30,(3:05) B.Green-Ellis right end to DEN 28 for 2 yards (R.Ayers; D.Trevathan).,0,3,2012 -20121104_DEN@CIN,1,47,30,CIN,DEN,2,8,28,(2:30) B.Green-Ellis right guard to DEN 23 for 5 yards (W.Woodyard).,0,3,2012 -20121104_DEN@CIN,1,46,56,CIN,DEN,3,3,23,(1:56) A.Dalton pass short right to A.Green to DEN 18 for 5 yards (M.Adams).,0,3,2012 -20121104_DEN@CIN,1,46,28,CIN,DEN,1,10,18,(1:28) (Shotgun) B.Leonard left guard to DEN 12 for 6 yards (W.Woodyard).,0,3,2012 -20121104_DEN@CIN,1,46,8,CIN,DEN,2,4,12,(1:08) B.Leonard right guard to DEN 8 for 4 yards (V.Miller; M.Adams).,0,3,2012 -20121104_DEN@CIN,1,45,28,CIN,DEN,1,8,8,(:28) A.Hawkins left end to DEN 10 for -2 yards (C.Harris). {End around},0,3,2012 -20121104_DEN@CIN,2,45,0,CIN,DEN,2,10,10,(15:00) (Shotgun) A.Dalton pass incomplete short left to B.Green-Ellis (J.Bannan). {Knocked down at the line of scrimmage},0,3,2012 -20121104_DEN@CIN,2,44,57,CIN,DEN,3,10,10,(14:57) (Shotgun) A.Dalton sacked at DEN 10 for 0 yards (D.Trevathan).,0,3,2012 -20121104_DEN@CIN,2,44,16,CIN,DEN,4,10,10,(14:16) M.Nugent 28 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,3,2012 -20121104_DEN@CIN,2,44,16,CIN,DEN,,,10,M.Nugent kicks 70 yards from CIN 35 to DEN -5. T.Holliday Touchback.,3,3,2012 -20121104_DEN@CIN,2,44,12,DEN,CIN,1,10,80,(14:12) W.McGahee right tackle to DEN 23 for 3 yards (G.Atkins).,3,3,2012 -20121104_DEN@CIN,2,43,41,DEN,CIN,2,7,77,(13:41) (Shotgun) P.Manning pass short left to D.Thomas to DEN 28 for 5 yards (L.Hall).,3,3,2012 -20121104_DEN@CIN,2,43,3,DEN,CIN,3,2,72,(13:03) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 31 for 3 yards (R.Maualuga).,3,3,2012 -20121104_DEN@CIN,2,42,35,DEN,CIN,1,10,69,(12:35) W.McGahee right tackle to DEN 34 for 3 yards (R.Maualuga).,3,3,2012 -20121104_DEN@CIN,2,42,7,DEN,CIN,2,7,66,(12:07) (Shotgun) P.Manning pass deep left to D.Thomas to CIN 21 for 45 yards (C.Crocker). DEN-D.Thomas was injured during the play.,3,3,2012 -20121104_DEN@CIN,2,41,32,DEN,CIN,1,10,21,(11:32) W.McGahee right guard to CIN 20 for 1 yard (C.Dunlap).,3,3,2012 -20121104_DEN@CIN,2,41,3,DEN,CIN,2,9,20,(11:03) (Shotgun) P.Manning pass short right to J.Dreessen to CIN 13 for 7 yards (T.Newman).,3,3,2012 -20121104_DEN@CIN,2,40,23,DEN,CIN,3,2,13,(10:23) (Shotgun) P.Manning pass short left to E.Decker for 13 yards TOUCHDOWN.,3,3,2012 -20121104_DEN@CIN,2,40,23,DEN,CIN,,,13,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,3,3,2012 -20121104_DEN@CIN,2,40,23,DEN,CIN,,,13,M.Prater kicks 64 yards from DEN 35 to CIN 1. B.Tate to CIN 44 for 43 yards (T.Carter).,10,3,2012 -20121104_DEN@CIN,2,40,8,CIN,DEN,1,10,56,(10:08) A.Dalton pass incomplete short right to J.Gresham.,3,10,2012 -20121104_DEN@CIN,2,40,3,CIN,DEN,2,10,56,(10:03) A.Green left end pushed ob at 50 for 6 yards (C.Harris). {End around} PENALTY on CIN-A.Binns Offensive Holding 10 yards enforced at 50.,3,10,2012 -20121104_DEN@CIN,2,39,41,CIN,DEN,2,14,60,(9:41) (Shotgun) A.Dalton sacked at CIN 32 for -8 yards (V.Miller).,3,10,2012 -20121104_DEN@CIN,2,39,5,CIN,DEN,3,22,68,(9:05) A.Dalton pass short left to M.Sanu to CIN 27 for -5 yards (R.Moore).,3,10,2012 -20121104_DEN@CIN,2,38,34,CIN,DEN,4,27,73,(8:34) K.Huber punts 48 yards to DEN 25 Center-C.Harris. T.Holliday to DEN 27 for 2 yards (J.Miles).,3,10,2012 -20121104_DEN@CIN,2,38,23,DEN,CIN,1,10,73,(8:23) W.McGahee right end pushed ob at DEN 29 for 2 yards (R.Nelson).,10,3,2012 -20121104_DEN@CIN,2,38,0,DEN,CIN,2,8,71,(8:00) P.Manning pass short middle to E.Decker ran ob at DEN 48 for 19 yards (C.Crocker).,10,3,2012 -20121104_DEN@CIN,2,37,35,DEN,CIN,1,10,52,(7:35) W.McGahee left tackle to DEN 48 for no gain (D.Still).,10,3,2012 -20121104_DEN@CIN,2,36,56,DEN,CIN,2,10,52,(6:56) P.Manning pass incomplete deep middle to E.Decker (E.Lamur).,10,3,2012 -20121104_DEN@CIN,2,36,50,DEN,CIN,3,10,52,(6:50) (Shotgun) P.Manning pass short left to E.Decker to DEN 49 for 1 yard (L.Hall).,10,3,2012 -20121104_DEN@CIN,2,36,12,DEN,CIN,4,9,51,(6:12) B.Colquitt punts 43 yards to CIN 8 Center-A.Brewer. B.Tate to CIN 16 for 8 yards (A.Brewer). PENALTY on CIN-D.Skuta Offensive Holding 4 yards enforced at CIN 8. {Tate's punt return yardage nullified due to penalty},10,3,2012 -20121104_DEN@CIN,2,36,2,CIN,DEN,1,10,96,(6:02) (Shotgun) A.Dalton pass short right to J.Gresham pushed ob at CIN 14 for 10 yards (V.Miller).,3,10,2012 -20121104_DEN@CIN,2,35,49,CIN,DEN,1,10,86,(5:49) B.Green-Ellis left guard to CIN 19 for 5 yards (J.Bannan).,3,10,2012 -20121104_DEN@CIN,2,35,13,CIN,DEN,2,5,81,(5:13) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 27 for 8 yards (W.Woodyard; K.Brooking).,3,10,2012 -20121104_DEN@CIN,2,34,40,CIN,DEN,1,10,73,(4:40) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 31 for 4 yards (R.Moore).,3,10,2012 -20121104_DEN@CIN,2,34,9,CIN,DEN,2,6,69,(4:09) (Shotgun) A.Dalton pass incomplete deep left to B.Tate.,3,10,2012 -20121104_DEN@CIN,2,34,3,CIN,DEN,3,6,69,(4:03) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,3,10,2012 -20121104_DEN@CIN,2,33,57,CIN,DEN,4,6,69,(3:57) K.Huber punts 58 yards to DEN 11 Center-C.Harris. T.Holliday pushed ob at DEN 21 for 10 yards (D.Skuta). PENALTY on DEN-T.Carter Unsportsmanlike Conduct 5 yards enforced at DEN 11. {Holliday's punt return yardage nullified due to penalty},3,10,2012 -20121104_DEN@CIN,2,33,47,DEN,CIN,1,10,94,(3:47) (Shotgun) P.Manning pass short middle to J.Dreessen to DEN 24 for 18 yards (R.Nelson).,10,3,2012 -20121104_DEN@CIN,2,33,12,DEN,CIN,1,10,76,(3:12) W.McGahee right tackle to DEN 27 for 3 yards (R.Nelson; R.Maualuga).,10,3,2012 -20121104_DEN@CIN,2,32,44,DEN,CIN,2,7,73,(2:44) (Shotgun) P.Manning pass short left to J.Tamme to DEN 28 for 1 yard (C.Crocker).,10,3,2012 -20121104_DEN@CIN,2,32,0,DEN,CIN,3,6,72,(2:00) (Shotgun) P.Manning pass incomplete deep middle to J.Tamme (R.Nelson).,10,3,2012 -20121104_DEN@CIN,2,31,54,DEN,CIN,4,6,72,(1:54) B.Colquitt punts 49 yards to CIN 23 Center-A.Brewer. A.Jones to CIN 23 for no gain (D.Bruton).,10,3,2012 -20121104_DEN@CIN,2,31,45,CIN,DEN,1,10,77,(1:45) (Shotgun) A.Dalton sacked at CIN 20 for -3 yards (V.Miller).,3,10,2012 -20121104_DEN@CIN,2,31,18,CIN,DEN,2,13,80,(1:18) (Shotgun) A.Dalton pass incomplete short right to B.Tate.,3,10,2012 -20121104_DEN@CIN,2,31,13,CIN,DEN,3,13,80,(1:13) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 38 for 18 yards (J.Leonhard; C.Harris).,3,10,2012 -20121104_DEN@CIN,2,30,58,CIN,DEN,1,10,62,(:58) (Shotgun) A.Dalton pass short right to A.Green pushed ob at CIN 47 for 9 yards (C.Bailey).,3,10,2012 -20121104_DEN@CIN,2,30,53,CIN,DEN,2,1,53,(:53) (Shotgun) A.Dalton pass incomplete deep left to A.Hawkins.,3,10,2012 -20121104_DEN@CIN,2,30,47,CIN,DEN,3,1,53,(:47) (Shotgun) A.Dalton pass short middle to B.Leonard to 50 for 3 yards (D.Wolfe). {shovel pass},3,10,2012 -20121104_DEN@CIN,2,30,31,CIN,DEN,1,10,50,(:31) (Shotgun) A.Dalton scrambles up the middle to DEN 45 for 5 yards (E.Dumervil).,3,10,2012 -20121104_DEN@CIN,2,30,22,CIN,DEN,2,5,45,(:22) (Shotgun) A.Dalton pass deep right to B.Tate to DEN 28 for 17 yards (T.Carter) [V.Miller].,3,10,2012 -20121104_DEN@CIN,2,30,4,CIN,DEN,1,10,28,(:04) A.Dalton spiked the ball to stop the clock.,3,10,2012 -20121104_DEN@CIN,2,30,3,CIN,DEN,2,10,28,(:03) M.Nugent 46 yard field goal is No Good Wide Right Center-C.Harris Holder-K.Huber.,3,10,2012 -20121104_DEN@CIN,3,30,0,CIN,DEN,,,28,M.Nugent kicks 70 yards from CIN 35 to DEN -5. T.Holliday for 105 yards TOUCHDOWN.,3,10,2012 -20121104_DEN@CIN,3,30,0,DEN,CIN,,,28,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,10,3,2012 -20121104_DEN@CIN,3,30,0,DEN,CIN,,,28,M.Prater kicks 73 yards from DEN 35 to CIN -8. B.Tate Touchback.,17,3,2012 -20121104_DEN@CIN,3,29,49,CIN,DEN,1,10,80,(14:49) A.Dalton pass short right to O.Charles to CIN 24 for 4 yards (C.Bailey).,3,17,2012 -20121104_DEN@CIN,3,29,11,CIN,DEN,2,6,76,(14:11) A.Dalton scrambles right tackle to CIN 35 for 11 yards (K.Vickerson).,3,17,2012 -20121104_DEN@CIN,3,28,41,CIN,DEN,1,10,65,(13:41) B.Green-Ellis left guard to CIN 37 for 2 yards (C.Harris; W.Woodyard).,3,17,2012 -20121104_DEN@CIN,3,28,3,CIN,DEN,2,8,63,(13:03) (Shotgun) A.Dalton pass short left to J.Gresham to DEN 11 for 52 yards (C.Bailey).,3,17,2012 -20121104_DEN@CIN,3,27,18,CIN,DEN,1,10,11,(12:18) B.Green-Ellis up the middle to DEN 10 for 1 yard (K.Brooking; J.Bannan).,3,17,2012 -20121104_DEN@CIN,3,26,39,CIN,DEN,2,9,10,(11:39) A.Dalton pass short right to A.Green for 10 yards TOUCHDOWN.,3,17,2012 -20121104_DEN@CIN,3,26,39,CIN,DEN,,,10,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,17,2012 -20121104_DEN@CIN,3,26,39,CIN,DEN,,,10,M.Nugent kicks 62 yards from CIN 35 to DEN 3. T.Holliday to DEN 17 for 14 yards (E.Lamur).,10,17,2012 -20121104_DEN@CIN,3,26,16,DEN,CIN,1,10,83,(11:16) (Shotgun) P.Manning pass short left to J.Tamme to DEN 29 for 12 yards (C.Crocker).,17,10,2012 -20121104_DEN@CIN,3,25,45,DEN,CIN,1,10,71,(10:45) W.McGahee left end to DEN 25 for -4 yards (G.Atkins).,17,10,2012 -20121104_DEN@CIN,3,25,12,DEN,CIN,2,14,75,(10:12) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 37 for 12 yards (R.Nelson; L.Hall).,17,10,2012 -20121104_DEN@CIN,3,24,28,DEN,CIN,3,2,63,(9:28) (Shotgun) P.Manning pass short right to B.Stokley pushed ob at DEN 45 for 8 yards (N.Clements).,17,10,2012 -20121104_DEN@CIN,3,24,9,DEN,CIN,1,10,55,(9:09) (Shotgun) P.Manning pass short middle to E.Decker to 50 for 5 yards (N.Clements).,17,10,2012 -20121104_DEN@CIN,3,23,26,DEN,CIN,2,5,50,(8:26) (Shotgun) P.Manning pass incomplete short right to D.Thomas (T.Newman).,17,10,2012 -20121104_DEN@CIN,3,23,22,DEN,CIN,3,5,50,(8:22) (Shotgun) P.Manning pass short left to R.Hillman to CIN 45 for 5 yards (R.Maualuga; C.Crocker).,17,10,2012 -20121104_DEN@CIN,3,22,55,DEN,CIN,1,10,45,(7:55) W.McGahee right guard to CIN 42 for 3 yards (D.Peko; C.Dunlap).,17,10,2012 -20121104_DEN@CIN,3,22,16,DEN,CIN,2,7,42,(7:16) W.McGahee right end to CIN 32 for 10 yards (N.Clements).,17,10,2012 -20121104_DEN@CIN,3,21,47,DEN,CIN,1,10,32,(6:47) (Shotgun) P.Manning pass deep middle to B.Stokley to CIN 12 for 20 yards (R.Nelson).,17,10,2012 -20121104_DEN@CIN,3,21,13,DEN,CIN,1,10,12,(6:13) W.McGahee up the middle to CIN 9 for 3 yards (D.Peko).,17,10,2012 -20121104_DEN@CIN,3,20,37,DEN,CIN,2,7,9,(5:37) P.Manning pass short middle intended for E.Decker INTERCEPTED by T.Newman at CIN -1. Touchback.,17,10,2012 -20121104_DEN@CIN,3,20,30,CIN,DEN,1,10,80,(5:30) (Shotgun) B.Green-Ellis up the middle to CIN 25 for 5 yards (W.Woodyard; D.Wolfe).,10,17,2012 -20121104_DEN@CIN,3,19,55,CIN,DEN,2,5,75,(4:55) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 23 for -2 yards (E.Dumervil; W.Woodyard).,10,17,2012 -20121104_DEN@CIN,3,19,10,CIN,DEN,3,7,77,(4:10) (Shotgun) A.Dalton pass deep right to M.Sanu to DEN 43 for 34 yards (R.Moore).,10,17,2012 -20121104_DEN@CIN,3,18,37,CIN,DEN,1,10,43,(3:37) B.Green-Ellis up the middle to DEN 39 for 4 yards (W.Woodyard; V.Miller).,10,17,2012 -20121104_DEN@CIN,3,18,12,CIN,DEN,2,6,39,(3:12) A.Dalton pass short right to A.Green to DEN 28 for 11 yards (C.Bailey).,10,17,2012 -20121104_DEN@CIN,3,17,42,CIN,DEN,1,10,28,(2:42) B.Green-Ellis up the middle to DEN 24 for 4 yards (D.Trevathan; W.Woodyard).,10,17,2012 -20121104_DEN@CIN,3,17,0,CIN,DEN,2,6,24,(2:00) (Shotgun) A.Dalton pass incomplete short left to B.Tate (T.Carter).,10,17,2012 -20121104_DEN@CIN,3,16,54,CIN,DEN,3,6,24,(1:54) (Shotgun) A.Dalton sacked at DEN 31 for -7 yards (V.Miller).,10,17,2012 -20121104_DEN@CIN,3,16,22,CIN,DEN,4,13,31,(1:22) M.Nugent 49 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,17,2012 -20121104_DEN@CIN,3,16,22,CIN,DEN,,,31,M.Nugent kicks 64 yards from CIN 35 to DEN 1. L.Ball (didn't try to advance) to DEN 1 for no gain (D.Kirkpatrick).,13,17,2012 -20121104_DEN@CIN,3,16,16,DEN,CIN,1,10,99,(1:16) W.McGahee left guard to DEN 3 for 2 yards (C.Dunlap). DEN-C.Kuper was injured during the play. He is Out.,17,13,2012 -20121104_DEN@CIN,3,15,49,DEN,CIN,2,8,97,(:49) W.McGahee left tackle to DEN 3 for no gain (V.Burfict; W.Gilberry).,17,13,2012 -20121104_DEN@CIN,3,15,8,DEN,CIN,3,8,97,(:08) (Shotgun) P.Manning pass deep right intended for E.Decker INTERCEPTED by T.Newman at DEN 27. T.Newman to DEN 27 for no gain (E.Decker).,17,13,2012 -20121104_DEN@CIN,3,15,1,CIN,DEN,1,10,27,(:01) B.Green-Ellis left tackle to DEN 21 for 6 yards (D.Wolfe; K.Brooking).,13,17,2012 -20121104_DEN@CIN,4,15,0,CIN,DEN,2,4,21,(15:00) (Shotgun) A.Dalton pass short middle to A.Green to DEN 2 for 19 yards (C.Harris).,13,17,2012 -20121104_DEN@CIN,4,14,24,CIN,DEN,1,2,2,(14:24) A.Dalton pass incomplete short left to M.Sanu.,13,17,2012 -20121104_DEN@CIN,4,14,19,CIN,DEN,2,2,2,(14:19) B.Green-Ellis up the middle for 2 yards TOUCHDOWN.,13,17,2012 -20121104_DEN@CIN,4,14,19,CIN,DEN,,,2,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,13,17,2012 -20121104_DEN@CIN,4,14,19,,CIN,,,2,M.Nugent kicks 77 yards from CIN 30 to DEN -7. L.Ball Touchback.,17,20,2012 -20121104_DEN@CIN,4,14,10,DEN,CIN,1,10,80,(14:10) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 26 for 6 yards (E.Lamur; R.Maualuga).,17,20,2012 -20121104_DEN@CIN,4,13,33,DEN,CIN,2,4,74,(13:33) W.McGahee right tackle to DEN 27 for 1 yard (V.Burfict; R.Geathers).,17,20,2012 -20121104_DEN@CIN,4,13,5,DEN,CIN,3,3,73,(13:05) (Shotgun) P.Manning pass short middle to E.Decker to CIN 43 for 30 yards (C.Dunlap).,17,20,2012 -20121104_DEN@CIN,4,12,28,DEN,CIN,1,10,43,(12:28) (Shotgun) P.Manning pass short middle to D.Thomas to CIN 30 for 13 yards (T.Mays).,17,20,2012 -20121104_DEN@CIN,4,11,59,DEN,CIN,1,10,30,(11:59) (Shotgun) P.Manning pass incomplete deep left to D.Thomas (A.Jones). PENALTY on CIN-A.Jones Defensive Pass Interference 29 yards enforced at CIN 30 - No Play.,17,20,2012 -20121104_DEN@CIN,4,11,51,DEN,CIN,1,1,1,(11:51) (Shotgun) P.Manning pass short right to J.Dreessen for 1 yard TOUCHDOWN.,17,20,2012 -20121104_DEN@CIN,4,11,51,DEN,CIN,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,20,2012 -20121104_DEN@CIN,4,11,51,DEN,CIN,,,1,M.Prater kicks 66 yards from DEN 35 to CIN -1. B.Tate to CIN 27 for 28 yards (L.Ball).,24,20,2012 -20121104_DEN@CIN,4,11,42,CIN,DEN,1,10,73,(11:42) B.Green-Ellis left guard to CIN 32 for 5 yards (W.Woodyard; D.Trevathan).,20,24,2012 -20121104_DEN@CIN,4,11,3,CIN,DEN,2,5,68,(11:03) B.Green-Ellis left tackle to CIN 36 for 4 yards (J.Bannan).,20,24,2012 -20121104_DEN@CIN,4,10,35,CIN,DEN,3,1,64,(10:35) B.Green-Ellis up the middle to CIN 38 for 2 yards (D.Trevathan; D.Wolfe).,20,24,2012 -20121104_DEN@CIN,4,10,0,CIN,DEN,1,10,62,(10:00) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 46 for 8 yards (W.Woodyard). PENALTY on CIN-A.Whitworth Offensive Holding 10 yards enforced at CIN 38 - No Play.,20,24,2012 -20121104_DEN@CIN,4,9,32,CIN,DEN,1,20,72,(9:32) (Shotgun) A.Dalton pass incomplete deep right to A.Green. PENALTY on DEN-C.Bailey Defensive Holding 5 yards enforced at CIN 28 - No Play.,20,24,2012 -20121104_DEN@CIN,4,9,26,CIN,DEN,1,10,67,(9:26) A.Dalton pass incomplete short right to B.Tate.,20,24,2012 -20121104_DEN@CIN,4,9,20,CIN,DEN,2,10,67,(9:20) (Shotgun) A.Dalton pass incomplete deep left to A.Green.,20,24,2012 -20121104_DEN@CIN,4,9,15,CIN,DEN,3,10,67,(9:15) (Shotgun) PENALTY on CIN-A.Whitworth False Start 5 yards enforced at CIN 33 - No Play.,20,24,2012 -20121104_DEN@CIN,4,9,15,CIN,DEN,3,15,72,(9:15) (Shotgun) A.Dalton pass deep middle to A.Green to CIN 47 for 19 yards (C.Bailey). PENALTY on CIN-J.Faine Offensive Holding 10 yards enforced at CIN 28 - No Play.,20,24,2012 -20121104_DEN@CIN,4,8,46,CIN,DEN,3,25,82,(8:46) (Shotgun) A.Dalton pass deep right intended for A.Green INTERCEPTED by C.Bailey at CIN 46. C.Bailey to CIN 46 for no gain (A.Green).,20,24,2012 -20121104_DEN@CIN,4,8,38,DEN,CIN,1,10,46,(8:38) W.McGahee right guard to CIN 37 for 9 yards (R.Maualuga).,24,20,2012 -20121104_DEN@CIN,4,8,12,DEN,CIN,2,1,37,(8:12) W.McGahee right guard to CIN 37 for no gain (D.Peko; D.Still).,24,20,2012 -20121104_DEN@CIN,4,7,32,DEN,CIN,3,1,37,(7:32) PENALTY on DEN-R.Clady False Start 4 yards enforced at CIN 37 - No Play.,24,20,2012 -20121104_DEN@CIN,4,7,11,DEN,CIN,3,5,41,(7:11) (Shotgun) P.Manning pass short right to B.Stokley to CIN 26 for 15 yards (L.Hall).,24,20,2012 -20121104_DEN@CIN,4,6,33,DEN,CIN,1,10,26,(6:33) W.McGahee right tackle to CIN 23 for 3 yards (R.Geathers; V.Burfict).,24,20,2012 -20121104_DEN@CIN,4,5,49,DEN,CIN,2,7,23,(5:49) W.McGahee right guard to CIN 17 for 6 yards (G.Atkins).,24,20,2012 -20121104_DEN@CIN,4,5,2,DEN,CIN,3,1,17,(5:02) W.McGahee right tackle to CIN 5 for 12 yards (C.Crocker).,24,20,2012 -20121104_DEN@CIN,4,4,20,DEN,CIN,1,5,5,(4:20) W.McGahee left guard to CIN 4 for 1 yard (D.Still).,24,20,2012 -20121104_DEN@CIN,4,3,41,DEN,CIN,2,4,4,(3:41) (Shotgun) P.Manning pass short right to E.Decker for 4 yards TOUCHDOWN. Penalty on CIN-T.Newman Defensive Pass Interference declined.,24,20,2012 -20121104_DEN@CIN,4,3,41,DEN,CIN,,,4,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,20,2012 -20121104_DEN@CIN,4,3,41,DEN,CIN,,,4,M.Prater kicks 43 yards from DEN 35 to CIN 22. C.Pressley to CIN 30 for 8 yards (D.Ihenacho; S.Johnson).,31,20,2012 -20121104_DEN@CIN,4,3,32,CIN,DEN,1,10,70,(3:32) (Shotgun) A.Dalton pass deep left to A.Hawkins pushed ob at CIN 37 for 7 yards (J.Leonhard).,20,31,2012 -20121104_DEN@CIN,4,3,26,CIN,DEN,2,3,63,(3:26) (Shotgun) A.Dalton pass short right to J.Gresham to DEN 49 for 14 yards (C.Bailey).,20,31,2012 -20121104_DEN@CIN,4,3,4,CIN,DEN,1,10,49,(3:04) (Shotgun) A.Dalton pass incomplete short middle to B.Leonard.,20,31,2012 -20121104_DEN@CIN,4,2,59,CIN,DEN,2,10,49,(2:59) (Shotgun) A.Dalton pass short left to J.Gresham to DEN 39 for 10 yards (M.Adams). Denver challenged the first down ruling and the play was REVERSED. (Shotgun) A.Dalton pass short left to J.Gresham to DEN 40 for 9 yards (M.Adams).,20,31,2012 -20121104_DEN@CIN,4,2,31,CIN,DEN,3,1,40,(2:31) B.Leonard up the middle to DEN 40 for no gain (D.Wolfe).,20,31,2012 -20121104_DEN@CIN,4,2,8,CIN,DEN,4,1,40,(2:08) B.Leonard right guard to DEN 35 for 5 yards (W.Woodyard; J.Leonhard).,20,31,2012 -20121104_DEN@CIN,4,2,0,CIN,DEN,1,10,35,(2:00) (Shotgun) A.Dalton pass short right to B.Leonard to DEN 27 for 8 yards (W.Woodyard).,20,31,2012 -20121104_DEN@CIN,4,1,36,CIN,DEN,2,2,27,(1:36) (Shotgun) A.Dalton pass short middle to A.Green to DEN 19 for 8 yards (C.Harris).,20,31,2012 -20121104_DEN@CIN,4,1,17,CIN,DEN,1,10,19,(1:17) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins (D.Wolfe). {knocked down at the line of scrimmage},20,31,2012 -20121104_DEN@CIN,4,1,12,CIN,DEN,2,10,19,(1:12) (Shotgun) A.Dalton pass short left to B.Leonard to DEN 17 for 2 yards (W.Woodyard; D.Wolfe).,20,31,2012 -20121104_DEN@CIN,4,1,3,CIN,DEN,3,8,17,(1:03) (Shotgun) A.Dalton sacked at DEN 23 for -6 yards (E.Dumervil).,20,31,2012 -20121104_DEN@CIN,4,0,56,CIN,DEN,4,14,23,(:56) M.Nugent 41 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,20,31,2012 -20121104_DEN@CIN,4,0,56,CIN,DEN,,,23,M.Nugent kicks onside 15 yards from CIN 35 to 50. D.Bruton (didn't try to advance) to 50 for no gain (D.Skuta).,23,31,2012 -20121104_DEN@CIN,4,0,51,DEN,CIN,1,10,50,(:51) P.Manning kneels to DEN 49 for -1 yards.,31,23,2012 -20121104_DEN@CIN,4,0,29,DEN,CIN,2,11,51,(:29) P.Manning kneels to DEN 48 for -1 yards.,31,23,2012 -20121104_DEN@CIN,4,0,29,DEN,CIN,,,51,                      ,31,23,2012 -20121104_BAL@CLE,1,0,0,BAL,CLE,,,51,J.Tucker kicks 71 yards from BLT 35 to CLV -6. J.Cribbs to CLV 19 for 25 yards (C.Brown; A.Allen).,0,0,2012 -20121104_BAL@CLE,1,59,56,CLE,BAL,1,10,81,(14:56) B.Weeden pass incomplete deep left to G.Little.,0,0,2012 -20121104_BAL@CLE,1,59,51,CLE,BAL,2,10,81,(14:51) T.Richardson right tackle to CLV 28 for 9 yards (J.Smith; J.McClain).,0,0,2012 -20121104_BAL@CLE,1,59,11,CLE,BAL,3,1,72,(14:11) B.Weeden pass incomplete short right to A.Smith.,0,0,2012 -20121104_BAL@CLE,1,59,5,CLE,BAL,4,1,72,(14:05) (Punt formation) R.Hodges punts 42 yards to BLT 30 Center-C.Yount fair catch by J.Jones.,0,0,2012 -20121104_BAL@CLE,1,58,57,BAL,CLE,1,10,70,(13:57) R.Rice left tackle to BLT 37 for 7 yards (K.Maiava).,0,0,2012 -20121104_BAL@CLE,1,58,22,BAL,CLE,2,3,63,(13:22) J.Flacco pass short right to A.Boldin to BLT 43 for 6 yards (J.Johnson; K.Maiava).,0,0,2012 -20121104_BAL@CLE,1,57,51,BAL,CLE,1,10,57,(12:51) R.Rice left guard to BLT 43 for no gain (J.Johnson).,0,0,2012 -20121104_BAL@CLE,1,57,20,BAL,CLE,2,10,57,(12:20) R.Rice left tackle to BLT 45 for 2 yards (F.Rucker).,0,0,2012 -20121104_BAL@CLE,1,56,36,BAL,CLE,3,8,55,(11:36) (Shotgun) J.Flacco pass short left to A.Boldin to CLV 47 for 8 yards (D.Jackson; C.Robertson).,0,0,2012 -20121104_BAL@CLE,1,56,1,BAL,CLE,1,10,47,(11:01) R.Rice right tackle to CLV 36 for 11 yards (J.Johnson).,0,0,2012 -20121104_BAL@CLE,1,55,22,BAL,CLE,1,10,36,(10:22) R.Rice left guard to CLV 32 for 4 yards (I.Kitchen; T.Ward).,0,0,2012 -20121104_BAL@CLE,1,54,43,BAL,CLE,2,6,32,(9:43) J.Flacco pass short right to E.Dickson to CLV 24 for 8 yards (J.Johnson).,0,0,2012 -20121104_BAL@CLE,1,54,4,BAL,CLE,1,10,24,(9:04) J.Flacco pass deep middle to A.Boldin to CLV 8 for 16 yards (J.Haden).,0,0,2012 -20121104_BAL@CLE,1,53,37,BAL,CLE,1,8,8,(8:37) (No Huddle) R.Rice left guard for 8 yards TOUCHDOWN.,0,0,2012 -20121104_BAL@CLE,1,53,37,BAL,CLE,,,8,(Kick formation) J.Tucker extra point is GOOD Center-M.Cox Holder-V.Leach.,0,0,2012 -20121104_BAL@CLE,1,53,37,BAL,CLE,,,8,J.Tucker kicks 70 yards from BLT 35 to CLV -5. J.Cribbs to CLV 23 for 28 yards (S.Considine).,7,0,2012 -20121104_BAL@CLE,1,53,28,CLE,BAL,1,10,77,(8:28) B.Weeden pass short right to T.Richardson to CLV 32 for 9 yards (J.McClain) [A.Jones].,0,7,2012 -20121104_BAL@CLE,1,52,54,CLE,BAL,2,1,68,(7:54) T.Richardson right guard to CLV 33 for 1 yard. FUMBLES recovered by CLV-M.Schwartz at CLV 32. M.Schwartz to CLV 32 for no gain (T.Suggs).,0,7,2012 -20121104_BAL@CLE,1,52,8,CLE,BAL,3,1,68,(7:08) B.Weeden pass incomplete deep right to C.Ogbonnaya. Penalty on CLV-J.Gordon Offensive Pass Interference declined.,0,7,2012 -20121104_BAL@CLE,1,52,1,CLE,BAL,4,1,68,(7:01) (Punt formation) R.Hodges punts 41 yards to BLT 27 Center-C.Yount. J.Jones ran ob at BLT 34 for 7 yards (R.Ventrone).,0,7,2012 -20121104_BAL@CLE,1,51,53,BAL,CLE,1,10,66,(6:53) B.Pierce left guard to BLT 43 for 9 yards (D.Jackson). PENALTY on BLT-T.Smith Illegal Formation 5 yards enforced at BLT 34 - No Play.,7,0,2012 -20121104_BAL@CLE,1,51,31,BAL,CLE,1,15,71,(6:31) B.Pierce left tackle to BLT 38 for 9 yards (S.Brown).,7,0,2012 -20121104_BAL@CLE,1,50,57,BAL,CLE,2,6,62,(5:57) B.Pierce right tackle to BLT 39 for 1 yard (T.Ward).,7,0,2012 -20121104_BAL@CLE,1,50,14,BAL,CLE,3,5,61,(5:14) (Shotgun) J.Flacco pass short middle to A.Boldin to BLT 45 for 6 yards (J.Haden).,7,0,2012 -20121104_BAL@CLE,1,49,42,BAL,CLE,1,10,55,(4:42) R.Rice right tackle to CLV 46 for 9 yards (B.Skrine). pitch out,7,0,2012 -20121104_BAL@CLE,1,49,5,BAL,CLE,2,1,46,(4:05) V.Leach right guard to CLV 43 for 3 yards (J.Parker; D.Jackson).,7,0,2012 -20121104_BAL@CLE,1,48,26,BAL,CLE,1,10,43,(3:26) J.Flacco pass deep right to T.Smith to CLV 17 for 26 yards (J.Haden).,7,0,2012 -20121104_BAL@CLE,1,48,0,BAL,CLE,1,10,17,(3:00) (No Huddle) R.Rice right tackle to CLV 14 for 3 yards (D.Jackson).,7,0,2012 -20121104_BAL@CLE,1,47,18,BAL,CLE,2,7,14,(2:18) R.Rice left tackle pushed ob at CLV 9 for 5 yards (J.Johnson).,7,0,2012 -20121104_BAL@CLE,1,46,47,BAL,CLE,3,2,9,(1:47) B.Pierce left guard to CLV 6 for 3 yards (J.Sheard; T.Ward). PENALTY on BLT-B.Pierce Personal Foul 15 yards enforced between downs.,7,0,2012 -20121104_BAL@CLE,1,46,21,BAL,CLE,1,10,21,(1:21) R.Rice left guard to CLV 18 for 3 yards (T.Ward).,7,0,2012 -20121104_BAL@CLE,1,45,45,BAL,CLE,2,7,18,(:45) R.Rice left tackle to CLV 12 for 6 yards (J.Sheard; U.Young).,7,0,2012 -20121104_BAL@CLE,1,45,8,BAL,CLE,3,1,12,(:08) B.Pierce left tackle for 12 yards TOUCHDOWN.,7,0,2012 -20121104_BAL@CLE,1,45,8,BAL,CLE,,,12,(Kick formation) J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,0,2012 -20121104_BAL@CLE,1,45,8,BAL,CLE,,,12,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,14,0,2012 -20121104_BAL@CLE,1,45,1,CLE,BAL,1,10,80,(:01) T.Richardson right guard to CLV 24 for 4 yards (A.McClellan; C.Upshaw).,0,14,2012 -20121104_BAL@CLE,2,45,0,CLE,BAL,2,6,76,(15:00) T.Richardson right guard to CLV 43 for 19 yards (E.Reed).,0,14,2012 -20121104_BAL@CLE,2,44,34,CLE,BAL,1,10,57,(14:34) B.Weeden pass short left to B.Watson to BLT 46 for 11 yards (C.Williams).,0,14,2012 -20121104_BAL@CLE,2,44,3,CLE,BAL,1,10,46,(14:03) B.Weeden pass incomplete deep right to T.Benjamin. Penalty on CLV-J.Cameron Illegal Formation declined.,0,14,2012 -20121104_BAL@CLE,2,43,54,CLE,BAL,2,10,46,(13:54) T.Richardson right tackle to BLT 40 for 6 yards (T.Cody).,0,14,2012 -20121104_BAL@CLE,2,43,13,CLE,BAL,3,4,40,(13:13) (Shotgun) B.Weeden pass short right to G.Little to BLT 34 for 6 yards (D.Ellerbe).,0,14,2012 -20121104_BAL@CLE,2,42,34,CLE,BAL,1,10,34,(12:34) B.Weeden pass short right to J.Gordon to BLT 31 for 3 yards (A.McClellan; J.McClain). PENALTY on BLT-J.McClain Illegal Contact 5 yards enforced at BLT 34 - No Play.,0,14,2012 -20121104_BAL@CLE,2,42,3,CLE,BAL,1,10,29,(12:03) T.Richardson left guard to BLT 23 for 6 yards (B.Pollard; J.McClain).,0,14,2012 -20121104_BAL@CLE,2,41,29,CLE,BAL,2,4,23,(11:29) T.Richardson left tackle to BLT 17 for 6 yards (D.Ellerbe; J.Smith).,0,14,2012 -20121104_BAL@CLE,2,40,51,CLE,BAL,1,10,17,(10:51) T.Richardson right tackle to BLT 16 for 1 yard (E.Reed). pitch out,0,14,2012 -20121104_BAL@CLE,2,40,12,CLE,BAL,2,9,16,(10:12) B.Weeden pass incomplete short left to T.Richardson.,0,14,2012 -20121104_BAL@CLE,2,40,4,CLE,BAL,3,9,16,(10:04) B.Weeden pass short right to A.Smith to BLT 14 for 2 yards (P.Kruger; C.Graham).,0,14,2012 -20121104_BAL@CLE,2,39,22,CLE,BAL,4,7,14,(9:22) (Field Goal formation) P.Dawson 32 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,14,2012 -20121104_BAL@CLE,2,39,22,CLE,BAL,,,14,P.Dawson kicks 65 yards from CLV 35 to BLT 0. J.Jones to BLT 22 for 22 yards (L.Fort; B.Skrine).,3,14,2012 -20121104_BAL@CLE,2,39,14,BAL,CLE,1,10,78,(9:14) R.Rice left guard to BLT 26 for 4 yards (K.Maiava; I.Kitchen).,14,3,2012 -20121104_BAL@CLE,2,38,38,BAL,CLE,2,6,74,(8:38) J.Flacco pass deep left to D.Pitta to CLV 47 for 27 yards (U.Young).,14,3,2012 -20121104_BAL@CLE,2,37,57,BAL,CLE,1,10,47,(7:57) J.Flacco pass short left to T.Smith to BLT 49 for -4 yards (J.Johnson; F.Rucker).,14,3,2012 -20121104_BAL@CLE,2,37,15,BAL,CLE,2,14,51,(7:15) R.Rice right tackle to CLV 47 for 4 yards (D.Jackson; J.Haden).,14,3,2012 -20121104_BAL@CLE,2,36,35,BAL,CLE,3,10,47,(6:35) (Shotgun) J.Flacco pass short right to R.Rice to CLV 45 for 2 yards (J.Sheard).,14,3,2012 -20121104_BAL@CLE,2,35,58,BAL,CLE,4,8,45,(5:58) (Punt formation) S.Koch punts 32 yards to CLV 13 Center-M.Cox fair catch by J.Cribbs.,14,3,2012 -20121104_BAL@CLE,2,35,52,CLE,BAL,1,10,87,(5:52) T.Richardson left guard to CLV 28 for 15 yards (C.Williams).,3,14,2012 -20121104_BAL@CLE,2,35,18,CLE,BAL,1,10,72,(5:18) T.Richardson right guard to CLV 30 for 2 yards (A.Jones; D.Ellerbe).,3,14,2012 -20121104_BAL@CLE,2,34,47,CLE,BAL,2,8,70,(4:47) B.Weeden pass incomplete deep middle to J.Gordon.,3,14,2012 -20121104_BAL@CLE,2,34,40,CLE,BAL,3,8,70,(4:40) (Shotgun) B.Weeden pass deep left to J.Gordon to BLT 44 for 26 yards (C.Williams).,3,14,2012 -20121104_BAL@CLE,2,34,0,CLE,BAL,1,10,44,(4:00) T.Richardson right tackle to BLT 40 for 4 yards (D.Tyson; B.Pollard).,3,14,2012 -20121104_BAL@CLE,2,33,23,CLE,BAL,2,6,40,(3:23) B.Weeden pass deep left to G.Little to BLT 17 for 23 yards (J.Smith).,3,14,2012 -20121104_BAL@CLE,2,32,44,CLE,BAL,1,10,17,(2:44) T.Richardson left tackle to BLT 16 for 1 yard (P.Kruger; D.Tyson).,3,14,2012 -20121104_BAL@CLE,2,32,7,CLE,BAL,2,9,16,(2:07) T.Richardson right guard to BLT 15 for 1 yard (B.Pollard; D.Ellerbe).,3,14,2012 -20121104_BAL@CLE,2,32,0,CLE,BAL,3,8,15,(2:00) B.Weeden pass short right to A.Smith to BLT 11 for 4 yards (C.Graham; J.Smith).,3,14,2012 -20121104_BAL@CLE,2,31,47,CLE,BAL,4,4,11,(1:47) P.Dawson 28 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,3,14,2012 -20121104_BAL@CLE,2,31,47,CLE,BAL,,,11,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,6,14,2012 -20121104_BAL@CLE,2,31,47,BAL,CLE,1,10,80,(1:47) (Shotgun) J.Flacco pass short left to T.Smith to BLT 25 for 5 yards (B.Skrine).,14,6,2012 -20121104_BAL@CLE,2,31,23,BAL,CLE,2,5,75,(1:23) (No Huddle Shotgun) J.Flacco pass incomplete short right to J.Jones.,14,6,2012 -20121104_BAL@CLE,2,31,16,BAL,CLE,3,5,75,(1:16) (Shotgun) J.Flacco pass incomplete short right to J.Jones.,14,6,2012 -20121104_BAL@CLE,2,31,13,BAL,CLE,4,5,75,(1:13) (Punt formation) S.Koch punts 45 yards to CLV 30 Center-M.Cox. J.Cribbs to CLV 39 for 9 yards (J.Bynes; S.Considine).,14,6,2012 -20121104_BAL@CLE,2,31,3,CLE,BAL,1,10,61,(1:03) T.Richardson left guard to CLV 41 for 2 yards (B.Pollard; T.Suggs).,6,14,2012 -20121104_BAL@CLE,2,30,37,CLE,BAL,2,8,59,(:37) (No Huddle Shotgun) B.Weeden pass short left to T.Richardson to CLV 48 for 7 yards (C.Williams).,6,14,2012 -20121104_BAL@CLE,2,30,29,CLE,BAL,3,1,52,(:29) (Shotgun) B.Weeden pass short left to B.Watson ran ob at BLT 41 for 11 yards (C.Graham).,6,14,2012 -20121104_BAL@CLE,2,30,24,CLE,BAL,1,10,41,(:24) (Shotgun) B.Weeden pass short right to G.Little ran ob at BLT 30 for 11 yards (J.Smith).,6,14,2012 -20121104_BAL@CLE,2,30,17,CLE,BAL,1,10,30,(:17) (Shotgun) B.Weeden pass incomplete short middle to T.Richardson (J.McClain).,6,14,2012 -20121104_BAL@CLE,2,30,11,CLE,BAL,2,10,30,(:11) (Shotgun) B.Weeden pass deep left to T.Benjamin to BLT 11 for 19 yards (C.Williams).,6,14,2012 -20121104_BAL@CLE,2,30,5,CLE,BAL,1,10,11,(:05) (Field Goal formation) P.Dawson 29 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,6,14,2012 -20121104_BAL@CLE,2,30,5,CLE,BAL,,,11,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,9,14,2012 -20121104_BAL@CLE,2,30,3,BAL,CLE,1,10,80,(:03) J.Flacco kneels to BLT 19 for -1 yards.,14,9,2012 -20121104_BAL@CLE,3,30,0,CLE,BAL,,,80,P.Dawson kicks 59 yards from CLV 35 to BLT 6. J.Jones to BLT 27 for 21 yards (B.Skrine). PENALTY on BLT-S.Considine Offensive Holding 10 yards enforced at BLT 20.,9,14,2012 -20121104_BAL@CLE,3,29,56,BAL,CLE,1,10,90,(14:56) R.Rice left tackle to BLT 10 for no gain (F.Rucker).,14,9,2012 -20121104_BAL@CLE,3,29,18,BAL,CLE,2,10,90,(14:18) J.Flacco pass incomplete short left to D.Pitta (K.Maiava).,14,9,2012 -20121104_BAL@CLE,3,29,13,BAL,CLE,3,10,90,(14:13) (Shotgun) J.Flacco pass incomplete deep left to T.Smith.,14,9,2012 -20121104_BAL@CLE,3,29,8,BAL,CLE,4,10,90,(14:08) (Punt formation) S.Koch punts 48 yards to CLV 42 Center-M.Cox. J.Cribbs to CLV 49 for 7 yards (B.Ayanbadejo).,14,9,2012 -20121104_BAL@CLE,3,28,59,CLE,BAL,1,10,51,(13:59) T.Richardson left guard to BLT 44 for 7 yards (A.Jones).,9,14,2012 -20121104_BAL@CLE,3,28,21,CLE,BAL,2,3,44,(13:21) B.Weeden pass incomplete deep left to J.Cameron (E.Reed) [A.Jones].,9,14,2012 -20121104_BAL@CLE,3,28,15,CLE,BAL,3,3,44,(13:15) B.Weeden pass short left intended for J.Cameron INTERCEPTED by C.Williams [D.Ellerbe] at BLT 35. C.Williams to CLV 39 for 26 yards (A.Mack). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,9,14,2012 -20121104_BAL@CLE,3,27,57,BAL,CLE,1,10,39,(12:57) R.Rice left tackle to CLV 35 for 4 yards (I.Kitchen). PENALTY on BLT-M.Oher Offensive Holding 10 yards enforced at CLV 39 - No Play.,14,9,2012 -20121104_BAL@CLE,3,27,31,BAL,CLE,1,20,49,(12:31) B.Pierce left guard to CLV 48 for 1 yard (F.Rucker; J.Hughes).,14,9,2012 -20121104_BAL@CLE,3,26,48,BAL,CLE,2,19,48,(11:48) (Shotgun) J.Flacco pass short left to D.Pitta to CLV 42 for 6 yards (D.Jackson).,14,9,2012 -20121104_BAL@CLE,3,26,9,BAL,CLE,3,13,42,(11:09) (Shotgun) J.Flacco pass incomplete short right to T.Smith (J.Haden).,14,9,2012 -20121104_BAL@CLE,3,26,3,BAL,CLE,4,13,42,(11:03) (Punt formation) S.Koch punts 42 yards to end zone Center-M.Cox Touchback.,14,9,2012 -20121104_BAL@CLE,3,25,56,CLE,BAL,1,10,80,(10:56) T.Richardson left tackle to CLV 20 for no gain (C.Upshaw).,9,14,2012 -20121104_BAL@CLE,3,25,12,CLE,BAL,2,10,80,(10:12) B.Weeden pass incomplete short left.,9,14,2012 -20121104_BAL@CLE,3,25,5,CLE,BAL,3,10,80,(10:05) (Shotgun) B.Weeden sacked at CLV 18 for -2 yards (D.Ellerbe).,9,14,2012 -20121104_BAL@CLE,3,24,40,CLE,BAL,4,12,82,(9:40) (Punt formation) R.Hodges punts 43 yards to BLT 39 Center-C.Yount. J.Jones to BLT 39 for no gain (K.Maiava). PENALTY on BLT-L.Williams Offensive Holding 10 yards enforced at BLT 39.,9,14,2012 -20121104_BAL@CLE,3,24,31,BAL,CLE,1,10,71,(9:31) J.Flacco pass incomplete deep left to T.Smith.,14,9,2012 -20121104_BAL@CLE,3,24,17,BAL,CLE,2,10,71,(9:17) R.Rice left end to BLT 29 for no gain (F.Rucker).,14,9,2012 -20121104_BAL@CLE,3,23,56,BAL,CLE,3,10,71,(8:56) (Shotgun) J.Flacco sacked at BLT 21 for -8 yards (sack split by J.Sheard and J.Parker).,14,9,2012 -20121104_BAL@CLE,3,23,21,BAL,CLE,4,18,79,(8:21) (Punt formation) S.Koch punts 48 yards to CLV 31 Center-M.Cox. J.Cribbs to CLV 44 for 13 yards (B.Ayanbadejo).,14,9,2012 -20121104_BAL@CLE,3,23,9,CLE,BAL,1,10,56,(8:09) T.Richardson right guard to 50 for 6 yards (J.McClain; T.Suggs).,9,14,2012 -20121104_BAL@CLE,3,22,32,CLE,BAL,2,4,50,(7:32) T.Richardson left tackle to BLT 48 for 2 yards (J.McClain).,9,14,2012 -20121104_BAL@CLE,3,21,53,CLE,BAL,3,2,48,(6:53) B.Weeden pass short right to T.Richardson to BLT 45 for 3 yards (B.Pollard; J.McClain).,9,14,2012 -20121104_BAL@CLE,3,21,10,CLE,BAL,1,10,45,(6:10) (Shotgun) B.Weeden pass incomplete short right to T.Richardson. PENALTY on BLT-D.Ellerbe Unnecessary Roughness 15 yards enforced at BLT 45 - No Play.,9,14,2012 -20121104_BAL@CLE,3,20,59,CLE,BAL,1,10,30,(5:59) T.Richardson left tackle to BLT 27 for 3 yards (E.Reed).,9,14,2012 -20121104_BAL@CLE,3,20,25,CLE,BAL,2,7,27,(5:25) (Shotgun) T.Richardson left tackle to BLT 24 for 3 yards (T.Suggs).,9,14,2012 -20121104_BAL@CLE,3,19,43,CLE,BAL,3,4,24,(4:43) (Shotgun) B.Weeden scrambles right end ran ob at BLT 18 for 6 yards (E.Reed).,9,14,2012 -20121104_BAL@CLE,3,19,8,CLE,BAL,1,10,18,(4:08) T.Richardson right guard to BLT 17 for 1 yard (B.Pollard; D.Ellerbe).,9,14,2012 -20121104_BAL@CLE,3,18,30,CLE,BAL,2,9,17,(3:30) B.Weeden pass short right to A.Smith to BLT 15 for 2 yards (J.Smith).,9,14,2012 -20121104_BAL@CLE,3,17,47,CLE,BAL,3,7,15,(2:47) (Shotgun) B.Weeden pass incomplete short middle to M.Massaquoi (E.Reed).,9,14,2012 -20121104_BAL@CLE,3,17,42,CLE,BAL,4,7,15,(2:42) (Field Goal formation) P.Dawson 33 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,9,14,2012 -20121104_BAL@CLE,3,17,42,CLE,BAL,,,15,P.Dawson kicks 66 yards from CLV 35 to BLT -1. J.Jones to BLT 22 for 23 yards (R.Ventrone).,12,14,2012 -20121104_BAL@CLE,3,17,35,BAL,CLE,1,10,78,(2:35) R.Rice left guard to BLT 23 for 1 yard (I.Kitchen; T.Ward).,14,12,2012 -20121104_BAL@CLE,3,17,0,BAL,CLE,2,9,77,(2:00) R.Rice left tackle to BLT 23 for no gain (P.Taylor).,14,12,2012 -20121104_BAL@CLE,3,16,20,BAL,CLE,3,9,77,(1:20) (Shotgun) J.Flacco pass incomplete deep right to T.Smith (U.Young).,14,12,2012 -20121104_BAL@CLE,3,16,15,BAL,CLE,4,9,77,(1:15) (Punt formation) S.Koch punts 44 yards to CLV 33 Center-M.Cox. J.Cribbs to CLV 46 for 13 yards (L.Williams).,14,12,2012 -20121104_BAL@CLE,3,16,3,CLE,BAL,1,10,54,(1:03) (Shotgun) PENALTY on CLV-S.Lauvao False Start 5 yards enforced at CLV 46 - No Play.,12,14,2012 -20121104_BAL@CLE,3,16,2,CLE,BAL,1,15,59,(1:02) PENALTY on CLV-J.Greco False Start 5 yards enforced at CLV 41 - No Play.,12,14,2012 -20121104_BAL@CLE,3,16,3,CLE,BAL,1,20,64,(1:03) B.Weeden pass short left to T.Richardson to CLV 37 for 1 yard (P.Kruger).,12,14,2012 -20121104_BAL@CLE,3,15,26,CLE,BAL,2,19,63,(:26) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 45 for 8 yards (C.Graham).,12,14,2012 -20121104_BAL@CLE,4,15,0,CLE,BAL,3,11,55,(15:00) (Shotgun) B.Weeden pass incomplete short right to C.Ogbonnaya.,12,14,2012 -20121104_BAL@CLE,4,14,56,CLE,BAL,4,11,55,(14:56) (Punt formation) R.Hodges punts 44 yards to BLT 11 Center-C.Yount fair catch by J.Jones.,12,14,2012 -20121104_BAL@CLE,4,14,49,BAL,CLE,1,10,89,(14:49) R.Rice right guard to BLT 11 for no gain (J.Sheard).,14,12,2012 -20121104_BAL@CLE,4,14,11,BAL,CLE,2,10,89,(14:11) J.Flacco pass incomplete short middle to E.Dickson (K.Maiava).,14,12,2012 -20121104_BAL@CLE,4,14,7,BAL,CLE,3,10,89,(14:07) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 15 for 4 yards (D.Jackson).,14,12,2012 -20121104_BAL@CLE,4,13,32,BAL,CLE,4,6,85,(13:32) (Punt formation) S.Koch punts 54 yards to CLV 31 Center-M.Cox. J.Cribbs to CLV 43 for 12 yards (A.McClellan).,14,12,2012 -20121104_BAL@CLE,4,13,20,CLE,BAL,1,10,57,(13:20) (Shotgun) B.Weeden pass short left to T.Richardson to CLV 46 for 3 yards (E.Reed; A.Jones).,12,14,2012 -20121104_BAL@CLE,4,12,50,CLE,BAL,2,7,54,(12:50) T.Richardson right guard to CLV 47 for 1 yard (D.Ellerbe).,12,14,2012 -20121104_BAL@CLE,4,12,8,CLE,BAL,3,6,53,(12:08) B.Weeden pass incomplete short right to J.Cameron. PENALTY on BLT-J.Smith Defensive Pass Interference 7 yards enforced at CLV 47 - No Play.,12,14,2012 -20121104_BAL@CLE,4,12,1,CLE,BAL,1,10,46,(12:01) T.Richardson left guard to BLT 44 for 2 yards (A.Jones; D.Ellerbe).,12,14,2012 -20121104_BAL@CLE,4,11,22,CLE,BAL,2,8,44,(11:22) B.Weeden pass short right to J.Gordon to BLT 32 for 12 yards (C.Williams).,12,14,2012 -20121104_BAL@CLE,4,10,53,CLE,BAL,1,10,32,(10:53) B.Weeden pass short right to G.Little to BLT 22 for 10 yards (J.Smith).,12,14,2012 -20121104_BAL@CLE,4,10,16,CLE,BAL,1,10,22,(10:16) T.Richardson right guard to BLT 18 for 4 yards (D.Ellerbe).,12,14,2012 -20121104_BAL@CLE,4,9,37,CLE,BAL,2,6,18,(9:37) B.Weeden pass incomplete short left to T.Richardson.,12,14,2012 -20121104_BAL@CLE,4,9,33,CLE,BAL,3,6,18,(9:33) (Shotgun) B.Weeden pass short middle to J.Gordon for 18 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CLV Illegal Formation 5 yards enforced at BLT 18 - No Play.,12,14,2012 -20121104_BAL@CLE,4,9,29,CLE,BAL,3,11,23,(9:29) (Shotgun) T.Richardson right guard to BLT 23 for no gain (C.Upshaw).,12,14,2012 -20121104_BAL@CLE,4,8,50,CLE,BAL,4,11,23,(8:50) (Field Goal formation) P.Dawson 41 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,12,14,2012 -20121104_BAL@CLE,4,8,50,CLE,BAL,,,23,P.Dawson kicks 67 yards from CLV 35 to BLT -2. J.Jones to BLT 19 for 21 yards (J.Bademosi; T.Carder).,15,14,2012 -20121104_BAL@CLE,4,8,44,BAL,CLE,1,10,81,(8:44) J.Flacco pass incomplete short left to T.Smith.,14,15,2012 -20121104_BAL@CLE,4,8,39,BAL,CLE,2,10,81,(8:39) J.Flacco pass deep middle to A.Boldin to BLT 40 for 21 yards (U.Young).,14,15,2012 -20121104_BAL@CLE,4,8,14,BAL,CLE,1,10,60,(8:14) (No Huddle) B.Pierce right guard to BLT 42 for 2 yards (F.Rucker).,14,15,2012 -20121104_BAL@CLE,4,7,42,BAL,CLE,2,8,58,(7:42) J.Flacco pass incomplete deep right to A.Boldin. PENALTY on CLV-T.Ward Roughing the Passer 16 yards enforced at BLT 42 - No Play.,14,15,2012 -20121104_BAL@CLE,4,7,35,BAL,CLE,1,10,42,(7:35) J.Flacco pass short left to E.Dickson to CLV 39 for 3 yards (K.Maiava).,14,15,2012 -20121104_BAL@CLE,4,6,52,BAL,CLE,2,7,39,(6:52) R.Rice left tackle to CLV 29 for 10 yards (U.Young; C.Robertson).,14,15,2012 -20121104_BAL@CLE,4,6,52,BAL,CLE,1,10,29,(6:52) (No Huddle) R.Rice right end to CLV 19 for 10 yards (T.Ward). Penalty on CLV Defensive 12 On-field declined.,14,15,2012 -20121104_BAL@CLE,4,5,58,BAL,CLE,1,10,19,(5:58) B.Pierce left tackle to CLV 21 for -2 yards (S.Brown).,14,15,2012 -20121104_BAL@CLE,4,5,13,BAL,CLE,2,12,21,(5:13) R.Rice left tackle to CLV 19 for 2 yards (T.Ward; D.Jackson).,14,15,2012 -20121104_BAL@CLE,4,4,33,BAL,CLE,3,10,19,(4:33) (Shotgun) J.Flacco pass short right to T.Smith for 19 yards TOUCHDOWN.,14,15,2012 -20121104_BAL@CLE,4,4,33,BAL,CLE,,,19,(Pass formation) TWO-POINT CONVERSION ATTEMPT. J.Flacco pass to A.Boldin is complete. ATTEMPT SUCCEEDS.,14,15,2012 -20121104_BAL@CLE,4,4,33,BAL,CLE,,,19,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,22,15,2012 -20121104_BAL@CLE,4,4,26,CLE,BAL,1,10,80,(4:26) (Shotgun) B.Weeden pass short right to M.Massaquoi to CLV 26 for 6 yards (C.Graham).,15,22,2012 -20121104_BAL@CLE,4,4,3,CLE,BAL,2,4,74,(4:03) (No Huddle Shotgun) B.Weeden pass incomplete short right to M.Massaquoi.,15,22,2012 -20121104_BAL@CLE,4,3,57,CLE,BAL,3,4,74,(3:57) (Shotgun) B.Weeden pass short right to G.Little to CLV 28 for 2 yards (C.Graham).,15,22,2012 -20121104_BAL@CLE,4,3,53,CLE,BAL,4,2,72,(3:53) (Shotgun) B.Weeden pass incomplete deep left to G.Little.,15,22,2012 -20121104_BAL@CLE,4,3,50,BAL,CLE,1,10,28,(3:50) PENALTY on BLT-M.Yanda False Start 5 yards enforced at CLV 28 - No Play.,22,15,2012 -20121104_BAL@CLE,4,3,50,BAL,CLE,1,15,33,(3:50) R.Rice right tackle to CLV 30 for 3 yards (J.Sheard; D.Jackson).,22,15,2012 -20121104_BAL@CLE,4,3,7,BAL,CLE,2,12,30,(3:07) R.Rice left tackle to CLV 28 for 2 yards (J.Sheard).,22,15,2012 -20121104_BAL@CLE,4,3,2,BAL,CLE,3,10,28,(3:02) (Shotgun) T.Taylor right tackle to CLV 24 for 4 yards (B.Skrine). 2 Taylor in at qb,22,15,2012 -20121104_BAL@CLE,4,2,53,BAL,CLE,4,6,24,(2:53) (Field Goal formation) J.Tucker 43 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,22,15,2012 -20121104_BAL@CLE,4,2,53,BAL,CLE,,,24,J.Tucker kicks 72 yards from BLT 35 to CLV -7. J.Cribbs to CLV 14 for 21 yards (A.Allen).,25,15,2012 -20121104_BAL@CLE,4,2,45,CLE,BAL,1,10,86,(2:45) (Shotgun) B.Weeden scrambles right tackle to CLV 19 for 5 yards (B.Pollard).,15,25,2012 -20121104_BAL@CLE,4,2,20,CLE,BAL,2,5,81,(2:20) (No Huddle Shotgun) B.Weeden pass incomplete short left to B.Watson.,15,25,2012 -20121104_BAL@CLE,4,2,19,CLE,BAL,3,5,81,(2:19) (Shotgun) B.Weeden pass deep left intended for T.Benjamin INTERCEPTED by E.Reed [T.Suggs] at BLT 44. E.Reed to BLT 45 for 1 yard (T.Benjamin).,15,25,2012 -20121104_BAL@CLE,4,2,9,BAL,CLE,1,10,55,(2:09) V.Leach right guard to 50 for 5 yards (D.Jackson; J.Sheard).,25,15,2012 -20121104_BAL@CLE,4,2,0,BAL,CLE,2,5,50,(2:00) R.Rice left guard to CLV 47 for 3 yards (J.Hughes).,25,15,2012 -20121104_BAL@CLE,4,1,16,BAL,CLE,3,2,47,(1:16) R.Rice left guard to CLV 46 for 1 yard (K.Maiava).,25,15,2012 -20121104_BAL@CLE,4,0,36,BAL,CLE,4,1,46,(:36) J.Flacco right guard to CLV 44 for 2 yards (B.Winn).,25,15,2012 -20121104_BAL@CLE,4,0,36,BAL,CLE,,,46,                      ,25,15,2012 -20121104_ARI@GB,1,0,0,GB,ARI,,,46,M.Crosby kicks 58 yards from GB 35 to ARZ 7. W.Powell to ARZ 16 for 9 yards (S.Richardson).,0,0,2012 -20121104_ARI@GB,1,59,54,ARI,GB,1,10,84,(14:54) J.Skelton pass short right to R.Housler to ARZ 19 for 3 yards (M.Burnett B.Jones).,0,0,2012 -20121104_ARI@GB,1,59,13,ARI,GB,2,7,81,(14:13) J.Skelton pass incomplete deep right to L.Fitzgerald [E.Walden].,0,0,2012 -20121104_ARI@GB,1,59,8,ARI,GB,3,7,81,(14:08) (Shotgun) J.Skelton sacked at ARZ 9 for -10 yards (M.Neal).,0,0,2012 -20121104_ARI@GB,1,58,38,ARI,GB,4,17,91,(13:38) D.Zastudil punts 39 yards to ARZ 48 Center-M.Leach. R.Cobb pushed ob at ARZ 20 for 28 yards (D.Zastudil). ARZ-R.Johnson was injured during the play.,0,0,2012 -20121104_ARI@GB,1,58,26,GB,ARI,1,10,20,(13:26) (Shotgun) A.Rodgers sacked at ARZ 30 for -10 yards (sack split by C.Campbell and D.Dockett).,0,0,2012 -20121104_ARI@GB,1,57,59,GB,ARI,2,20,30,(12:59) (Shotgun) J.Starks right end to ARZ 26 for 4 yards (D.Washington C.Campbell).,0,0,2012 -20121104_ARI@GB,1,57,22,GB,ARI,3,16,26,(12:22) (Shotgun) A.Rodgers pass incomplete deep left to R.Cobb.,0,0,2012 -20121104_ARI@GB,1,57,15,GB,ARI,4,16,26,(12:15) M.Crosby 44 yard field goal is No Good Wide Left Center-B.Goode Holder-T.Masthay.,0,0,2012 -20121104_ARI@GB,1,57,11,ARI,GB,1,10,66,(12:11) L.Stephens-Howling right end to ARZ 35 for 1 yard (A.Hawk).,0,0,2012 -20121104_ARI@GB,1,56,33,ARI,GB,2,9,65,(11:33) (Shotgun) J.Skelton pass short left to L.Stephens-Howling pushed ob at ARZ 49 for 14 yards (D.House).,0,0,2012 -20121104_ARI@GB,1,56,16,ARI,GB,1,10,51,(11:16) L.Stephens-Howling right end to GB 46 for 5 yards (C.Hayward).,0,0,2012 -20121104_ARI@GB,1,55,38,ARI,GB,2,5,46,(10:38) (Shotgun) J.Skelton pass incomplete short middle to R.Housler.,0,0,2012 -20121104_ARI@GB,1,55,33,ARI,GB,3,5,46,(10:33) (Shotgun) J.Skelton pass incomplete short left to L.Fitzgerald.,0,0,2012 -20121104_ARI@GB,1,55,27,ARI,GB,4,5,46,(10:27) D.Zastudil punts 30 yards to GB 16 Center-M.Leach fair catch by R.Cobb.,0,0,2012 -20121104_ARI@GB,1,55,20,GB,ARI,1,10,84,(10:20) (Shotgun) A.Green left guard to GB 19 for 3 yards (O.Schofield).,0,0,2012 -20121104_ARI@GB,1,54,54,GB,ARI,2,7,81,(9:54) (No Huddle Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 28 for 9 yards (J.Fleming).,0,0,2012 -20121104_ARI@GB,1,54,23,GB,ARI,1,10,72,(9:23) (No Huddle Shotgun) A.Rodgers right guard to ARZ 47 for 25 yards (P.Peterson).,0,0,2012 -20121104_ARI@GB,1,53,41,GB,ARI,1,10,47,(8:41) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to ARZ 41 for 6 yards (K.Rhodes).,0,0,2012 -20121104_ARI@GB,1,53,7,GB,ARI,2,4,41,(8:07) (No Huddle Shotgun) A.Green left end pushed ob at ARZ 20 for 21 yards (K.Rhodes).,0,0,2012 -20121104_ARI@GB,1,52,45,GB,ARI,1,10,20,(7:45) (No Huddle Shotgun) A.Rodgers left end to ARZ 18 for 2 yards (D.Washington).,0,0,2012 -20121104_ARI@GB,1,52,10,GB,ARI,2,8,18,(7:10) (No Huddle Shotgun) A.Rodgers pass incomplete short left to A.Green [V.Holliday].,0,0,2012 -20121104_ARI@GB,1,52,6,GB,ARI,3,8,18,(7:06) (Shotgun) A.Rodgers up the middle to ARZ 9 for 9 yards (K.Rhodes).,0,0,2012 -20121104_ARI@GB,1,51,26,GB,ARI,1,9,9,(6:26) (No Huddle Shotgun) A.Rodgers left end to ARZ 8 for 1 yard (S.Acho).,0,0,2012 -20121104_ARI@GB,1,50,39,GB,ARI,2,8,8,(5:39) (Shotgun) A.Rodgers pass short left to J.Nelson to ARZ 3 for 5 yards (J.Fleming). Arizona challenged the pass completion ruling and the play was REVERSED. (Shotgun) A.Rodgers pass incomplete short left to J.Nelson.,0,0,2012 -20121104_ARI@GB,1,50,39,GB,ARI,3,8,8,(5:39) (Shotgun) PENALTY on GB-J.Finley False Start 5 yards enforced at ARZ 8 - No Play.,0,0,2012 -20121104_ARI@GB,1,50,36,GB,ARI,3,13,13,(5:36) (Shotgun) A.Rodgers pass short middle to R.Cobb for 13 yards TOUCHDOWN.,0,0,2012 -20121104_ARI@GB,1,50,36,GB,ARI,,,13,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay. PENALTY on ARZ-P.Peterson Defensive Offside 5 yards enforced between downs.,0,0,2012 -20121104_ARI@GB,1,50,36,GB,ARI,,,13,M.Crosby kicks 67 yards from GB 40 to ARZ -7. W.Powell Touchback.,7,0,2012 -20121104_ARI@GB,1,50,31,ARI,GB,1,10,80,(5:31) L.Stephens-Howling right end to ARZ 24 for 4 yards (B.Jones).,0,7,2012 -20121104_ARI@GB,1,49,52,ARI,GB,2,6,76,(4:52) (Shotgun) L.Stephens-Howling left tackle to ARZ 29 for 5 yards (B.Jones).,0,7,2012 -20121104_ARI@GB,1,49,13,ARI,GB,3,1,71,(4:13) L.Stephens-Howling right tackle to ARZ 30 for 1 yard (J.McMillian B.Jones).,0,7,2012 -20121104_ARI@GB,1,48,31,ARI,GB,1,10,70,(3:31) J.Skelton pass incomplete short middle to L.Stephens-Howling.,0,7,2012 -20121104_ARI@GB,1,48,26,ARI,GB,2,10,70,(3:26) L.Stephens-Howling up the middle to ARZ 33 for 3 yards (B.Jones; C.Wilson).,0,7,2012 -20121104_ARI@GB,1,47,41,ARI,GB,3,7,67,(2:41) (Shotgun) PENALTY on ARZ-R.Ohrnberger False Start 5 yards enforced at ARZ 33 - No Play.,0,7,2012 -20121104_ARI@GB,1,47,41,ARI,GB,3,12,72,(2:41) (Shotgun) J.Skelton pass short right to L.Fitzgerald to ARZ 40 for 12 yards (M.Burnett).,0,7,2012 -20121104_ARI@GB,1,46,59,ARI,GB,1,10,60,(1:59) L.Stephens-Howling left end to ARZ 42 for 2 yards (A.Hawk R.Pickett).,0,7,2012 -20121104_ARI@GB,1,46,19,ARI,GB,2,8,58,(1:19) (Shotgun) J.Skelton pass incomplete short right to E.Doucet.,0,7,2012 -20121104_ARI@GB,1,46,15,ARI,GB,3,8,58,(1:15) (Shotgun) J.Skelton pass incomplete deep left to L.Fitzgerald.,0,7,2012 -20121104_ARI@GB,1,46,10,ARI,GB,4,8,58,(1:10) D.Zastudil punts 41 yards to GB 17 Center-M.Leach out of bounds.,0,7,2012 -20121104_ARI@GB,1,46,2,GB,ARI,1,10,83,(1:02) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones.,7,0,2012 -20121104_ARI@GB,1,45,59,GB,ARI,2,10,83,(:59) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at GB 34 for 17 yards (J.Fleming).,7,0,2012 -20121104_ARI@GB,1,45,33,GB,ARI,1,10,66,(:33) (No Huddle Shotgun) A.Green up the middle to GB 40 for 6 yards (A.Wilson; D.Washington).,7,0,2012 -20121104_ARI@GB,2,45,0,GB,ARI,2,4,60,(15:00) (Shotgun) A.Rodgers pass short right intended for R.Cobb INTERCEPTED by W.Gay at GB 49. W.Gay pushed ob at GB 43 for 6 yards (D.Driver). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,7,0,2012 -20121104_ARI@GB,2,44,53,ARI,GB,1,10,43,(14:53) J.Skelton pass deep middle to A.Roberts to GB 3 for 40 yards (C.Hayward).,0,7,2012 -20121104_ARI@GB,2,44,13,ARI,GB,1,3,3,(14:13) L.Stephens-Howling left tackle to GB 1 for 2 yards (C.Hayward; M.Jennings).,0,7,2012 -20121104_ARI@GB,2,43,32,ARI,GB,2,1,1,(13:32) N.Potter reported in as eligible. L.Stephens-Howling right end for 1 yard TOUCHDOWN.,0,7,2012 -20121104_ARI@GB,2,43,32,ARI,GB,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,7,2012 -20121104_ARI@GB,2,43,32,ARI,GB,,,1,J.Feely kicks 67 yards from ARZ 35 to GB -2. R.Cobb Touchback.,7,7,2012 -20121104_ARI@GB,2,43,26,GB,ARI,1,10,80,(13:26) (Shotgun) R.Cobb right end to GB 31 for 11 yards (C.Campbell).,7,7,2012 -20121104_ARI@GB,2,42,45,GB,ARI,1,10,69,(12:45) J.Starks left end to GB 34 for 3 yards (P.Lenon; D.Dockett).,7,7,2012 -20121104_ARI@GB,2,42,9,GB,ARI,2,7,66,(12:09) R.Cobb right end to GB 46 for 12 yards (C.Campbell).,7,7,2012 -20121104_ARI@GB,2,41,25,GB,ARI,1,10,54,(11:25) J.Starks right end pushed ob at ARZ 45 for 9 yards (D.Washington).,7,7,2012 -20121104_ARI@GB,2,40,53,GB,ARI,2,1,45,(10:53) J.Starks right end to ARZ 42 for 3 yards (C.Campbell).,7,7,2012 -20121104_ARI@GB,2,40,18,GB,ARI,1,10,42,(10:18) J.Starks right end to ARZ 38 for 4 yards (D.Carter P.Peterson).,7,7,2012 -20121104_ARI@GB,2,39,37,GB,ARI,2,6,38,(9:37) A.Rodgers pass incomplete short left to R.Cobb.,7,7,2012 -20121104_ARI@GB,2,39,32,GB,ARI,3,6,38,(9:32) (Shotgun) A.Rodgers pass incomplete deep middle to R.Cobb. PENALTY on ARZ-S.Acho Defensive Offside 5 yards enforced at ARZ 38 - No Play.,7,7,2012 -20121104_ARI@GB,2,39,27,GB,ARI,3,1,33,(9:27) A.Green up the middle to ARZ 31 for 2 yards (K.Rhodes).,7,7,2012 -20121104_ARI@GB,2,38,45,GB,ARI,1,10,31,(8:45) (Shotgun) A.Rodgers pass incomplete short right to T.Crabtree.,7,7,2012 -20121104_ARI@GB,2,38,42,GB,ARI,2,10,31,(8:42) A.Rodgers pass incomplete short left to D.Driver.,7,7,2012 -20121104_ARI@GB,2,38,37,GB,ARI,3,10,31,(8:37) (Shotgun) A.Rodgers pass short middle to D.Driver to ARZ 21 for 10 yards (S.Acho).,7,7,2012 -20121104_ARI@GB,2,37,50,GB,ARI,1,10,21,(7:50) (No Huddle Shotgun) A.Rodgers pass deep right to R.Cobb for 21 yards TOUCHDOWN.,7,7,2012 -20121104_ARI@GB,2,37,50,GB,ARI,,,21,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,7,2012 -20121104_ARI@GB,2,37,50,GB,ARI,,,21,M.Crosby kicks 64 yards from GB 35 to ARZ 1. W.Powell to ARZ 22 for 21 yards (J.McMillian).,14,7,2012 -20121104_ARI@GB,2,37,37,ARI,GB,1,10,78,(7:37) W.Powell up the middle to ARZ 25 for 3 yards (R.Pickett; E.Walden).,7,14,2012 -20121104_ARI@GB,2,36,56,ARI,GB,2,7,75,(6:56) J.Skelton pass incomplete deep middle to A.Roberts.,7,14,2012 -20121104_ARI@GB,2,36,51,ARI,GB,3,7,75,(6:51) (Shotgun) J.Skelton pass incomplete short left to E.Doucet [C.Matthews].,7,14,2012 -20121104_ARI@GB,2,36,51,ARI,GB,4,7,75,(6:51) (Shotgun) PENALTY on ARZ-D.Zastudil Delay of Game 5 yards enforced at ARZ 25 - No Play.,7,14,2012 -20121104_ARI@GB,2,36,45,ARI,GB,4,12,80,(6:45) D.Zastudil punts 63 yards to GB 17 Center-M.Leach. R.Cobb to GB 25 for 8 yards (J.Bethel).,7,14,2012 -20121104_ARI@GB,2,36,33,GB,ARI,1,10,75,(6:33) J.Starks left guard to GB 30 for 5 yards (P.Lenon). FUMBLES (P.Lenon) touched at GB 34 recovered by GB-A.Rodgers at GB 32. A.Rodgers to GB 32 for no gain (O.Schofield).,14,7,2012 -20121104_ARI@GB,2,35,43,GB,ARI,2,3,68,(5:43) A.Rodgers pass short left to A.Green to GB 38 for 6 yards (C.Campbell).,14,7,2012 -20121104_ARI@GB,2,35,4,GB,ARI,1,10,62,(5:04) A.Green right end to GB 40 for 2 yards (D.Williams).,14,7,2012 -20121104_ARI@GB,2,34,19,GB,ARI,2,8,60,(4:19) A.Green right guard to GB 45 for 5 yards (O.Schofield D.Washington).,14,7,2012 -20121104_ARI@GB,2,33,39,GB,ARI,3,3,55,(3:39) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at ARZ 48 for 7 yards (J.Fleming).,14,7,2012 -20121104_ARI@GB,2,33,12,GB,ARI,1,10,48,(3:12) A.Rodgers pass short left to A.Green to ARZ 29 for 19 yards (A.Wilson).,14,7,2012 -20121104_ARI@GB,2,32,27,GB,ARI,1,10,29,(2:27) A.Rodgers pass short right to J.Boykin to ARZ 28 for 1 yard (P.Peterson).,14,7,2012 -20121104_ARI@GB,2,32,0,GB,ARI,2,9,28,(2:00) (Shotgun) A.Rodgers pass deep left to Ja.Jones for 28 yards TOUCHDOWN.,14,7,2012 -20121104_ARI@GB,2,32,0,GB,ARI,,,28,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,7,2012 -20121104_ARI@GB,2,32,0,GB,ARI,,,28,M.Crosby kicks 71 yards from GB 35 to ARZ -6. W.Powell Touchback.,21,7,2012 -20121104_ARI@GB,2,31,54,ARI,GB,1,10,80,(1:54) (Shotgun) J.Skelton pass short right to L.Fitzgerald to ARZ 29 for 9 yards (J.McMillian C.Hayward).,7,21,2012 -20121104_ARI@GB,2,31,36,ARI,GB,2,1,71,(1:36) (No Huddle Shotgun) J.Skelton pass short left to L.Fitzgerald to ARZ 35 for 6 yards (C.Hayward).,7,21,2012 -20121104_ARI@GB,2,31,14,ARI,GB,1,10,65,(1:14) (No Huddle Shotgun) L.Stephens-Howling up the middle pushed ob at ARZ 41 for 6 yards (M.Burnett).,7,21,2012 -20121104_ARI@GB,2,31,7,ARI,GB,2,4,59,(1:07) (Shotgun) J.Skelton pass short right to M.Floyd to 50 for 9 yards (D.House M.Burnett).,7,21,2012 -20121104_ARI@GB,2,30,44,ARI,GB,1,10,50,(:44) (No Huddle Shotgun) J.Skelton sacked at ARZ 40 for -10 yards (M.Daniels).,7,21,2012 -20121104_ARI@GB,2,30,37,ARI,GB,2,20,60,(:37) (Shotgun) J.Skelton pass incomplete deep right to E.Doucet (M.Jennings).,7,21,2012 -20121104_ARI@GB,2,30,33,ARI,GB,3,20,60,(:33) (Shotgun) J.Skelton pass incomplete short middle to E.Doucet.,7,21,2012 -20121104_ARI@GB,2,30,29,ARI,GB,4,20,60,(:29) D.Zastudil punts 45 yards to GB 15 Center-M.Leach fair catch by R.Cobb.,7,21,2012 -20121104_ARI@GB,2,30,23,GB,ARI,1,10,85,(:23) A.Rodgers kneels to GB 14 for -1 yards.,21,7,2012 -20121104_ARI@GB,3,30,0,ARI,GB,,,85,J.Feely kicks 61 yards from ARZ 35 to GB 4. R.Cobb pushed ob at GB 48 for 44 yards (M.Adams).,7,21,2012 -20121104_ARI@GB,3,29,51,GB,ARI,1,10,52,(14:51) (Shotgun) A.Green right guard to ARZ 48 for 4 yards (O.Schofield).,21,7,2012 -20121104_ARI@GB,3,29,22,GB,ARI,2,6,48,(14:22) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to J.Finley. ARZ-O.Schofield was injured during the play.,21,7,2012 -20121104_ARI@GB,3,29,14,GB,ARI,3,6,48,(14:14) (Shotgun) PENALTY on ARZ-Q.Groves Neutral Zone Infraction 5 yards enforced at ARZ 48 - No Play.,21,7,2012 -20121104_ARI@GB,3,29,14,GB,ARI,3,1,43,(14:14) (Shotgun) A.Rodgers pass incomplete short right to Ja.Jones (P.Peterson).,21,7,2012 -20121104_ARI@GB,3,29,11,GB,ARI,4,1,43,(14:11) T.Masthay punts 43 yards to end zone Center-B.Goode Touchback.,21,7,2012 -20121104_ARI@GB,3,29,3,ARI,GB,1,10,80,(14:03) J.Skelton pass short right intended for R.Housler INTERCEPTED by E.Walden (C.Hayward) at ARZ 19. E.Walden to ARZ 17 for 2 yards (R.Housler).,7,21,2012 -20121104_ARI@GB,3,28,57,GB,ARI,1,10,17,(13:57) (Shotgun) A.Green left end to ARZ 15 for 2 yards (C.Campbell; D.Dockett).,21,7,2012 -20121104_ARI@GB,3,28,25,GB,ARI,2,8,15,(13:25) (Shotgun) A.Rodgers pass incomplete short right to A.Green.,21,7,2012 -20121104_ARI@GB,3,28,20,GB,ARI,3,8,15,(13:20) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones.,21,7,2012 -20121104_ARI@GB,3,28,16,GB,ARI,4,8,15,(13:16) M.Crosby 33 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,21,7,2012 -20121104_ARI@GB,3,28,16,GB,ARI,,,15,M.Crosby kicks 69 yards from GB 35 to ARZ -4. W.Powell to ARZ 27 for 31 yards (M.Jennings T.Manning).,24,7,2012 -20121104_ARI@GB,3,28,5,ARI,GB,1,10,73,(13:05) L.Stephens-Howling right tackle to ARZ 30 for 3 yards (C.Wilson).,7,24,2012 -20121104_ARI@GB,3,27,31,ARI,GB,2,7,70,(12:31) J.Skelton pass incomplete deep left to L.Fitzgerald.,7,24,2012 -20121104_ARI@GB,3,27,25,ARI,GB,3,7,70,(12:25) (Shotgun) J.Skelton pass incomplete short right to R.Housler.,7,24,2012 -20121104_ARI@GB,3,27,20,ARI,GB,4,7,70,(12:20) D.Zastudil punts 20 yards to 50 Center-M.Leach out of bounds.,7,24,2012 -20121104_ARI@GB,3,27,14,GB,ARI,1,10,50,(12:14) A.Green right guard to ARZ 48 for 2 yards (D.Washington Q.Groves).,24,7,2012 -20121104_ARI@GB,3,26,43,GB,ARI,2,8,48,(11:43) (No Huddle Shotgun) A.Rodgers pass incomplete short right to R.Cobb.,24,7,2012 -20121104_ARI@GB,3,26,36,GB,ARI,3,8,48,(11:36) (No Huddle Shotgun) A.Rodgers pass incomplete [Q.Groves].,24,7,2012 -20121104_ARI@GB,3,26,26,GB,ARI,4,8,48,(11:26) T.Masthay punts 35 yards to ARZ 13 Center-B.Goode. P.Peterson MUFFS catch and recovers at ARZ 13. P.Peterson to ARZ 13 for no gain (D.House).,24,7,2012 -20121104_ARI@GB,3,26,16,ARI,GB,1,10,87,(11:16) (Shotgun) J.Skelton pass short middle to M.Floyd to ARZ 30 for 17 yards (M.Burnett).,7,24,2012 -20121104_ARI@GB,3,25,41,ARI,GB,1,10,70,(10:41) (Shotgun) J.Skelton pass incomplete deep left [E.Walden].,7,24,2012 -20121104_ARI@GB,3,25,33,ARI,GB,2,10,70,(10:33) (Shotgun) J.Skelton pass incomplete short left to R.Housler (J.McMillian).,7,24,2012 -20121104_ARI@GB,3,25,29,ARI,GB,3,10,70,(10:29) (Shotgun) J.Skelton pass short right to R.Housler to ARZ 41 for 11 yards (C.Hayward) [E.Walden].,7,24,2012 -20121104_ARI@GB,3,24,54,ARI,GB,1,10,59,(9:54) J.Skelton pass deep middle to A.Roberts to GB 36 for 23 yards (M.Burnett).,7,24,2012 -20121104_ARI@GB,3,24,13,ARI,GB,1,10,36,(9:13) J.Skelton pass incomplete short middle to J.King (D.Moses).,7,24,2012 -20121104_ARI@GB,3,24,9,ARI,GB,2,10,36,(9:09) (Shotgun) L.Stephens-Howling up the middle to GB 31 for 5 yards (C.Wilson). Green Bay challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),7,24,2012 -20121104_ARI@GB,3,23,30,ARI,GB,3,5,31,(8:30) (Shotgun) J.Skelton pass short middle to L.Fitzgerald for 31 yards TOUCHDOWN.,7,24,2012 -20121104_ARI@GB,3,23,30,ARI,GB,,,31,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,24,2012 -20121104_ARI@GB,3,23,30,ARI,GB,,,31,J.Feely kicks 66 yards from ARZ 35 to GB -1. R.Cobb to GB 21 for 22 yards (A.Smith).,14,24,2012 -20121104_ARI@GB,3,23,14,GB,ARI,1,10,79,(8:14) A.Rodgers pass short right to J.Boykin to GB 27 for 6 yards (P.Peterson).,24,14,2012 -20121104_ARI@GB,3,22,36,GB,ARI,2,4,73,(7:36) J.Starks right end to GB 30 for 3 yards (C.Campbell).,24,14,2012 -20121104_ARI@GB,3,21,57,GB,ARI,3,1,70,(6:57) A.Green up the middle to GB 30 for no gain (D.Williams).,24,14,2012 -20121104_ARI@GB,3,21,9,GB,ARI,4,1,70,(6:09) T.Masthay punts 46 yards to ARZ 24 Center-B.Goode fair catch by P.Peterson.,24,14,2012 -20121104_ARI@GB,3,21,1,ARI,GB,1,10,76,(6:01) L.Stephens-Howling right end pushed ob at ARZ 35 for 11 yards (A.Hawk).,14,24,2012 -20121104_ARI@GB,3,20,27,ARI,GB,1,10,65,(5:27) (Shotgun) J.Skelton pass incomplete short left to L.Stephens-Howling.,14,24,2012 -20121104_ARI@GB,3,20,23,ARI,GB,2,10,65,(5:23) J.Skelton pass short left to R.Housler to ARZ 45 for 10 yards (B.Jones D.Moses).,14,24,2012 -20121104_ARI@GB,3,19,45,ARI,GB,1,10,55,(4:45) L.Stephens-Howling left tackle to 50 for 5 yards (B.Jones).,14,24,2012 -20121104_ARI@GB,3,19,11,ARI,GB,2,5,50,(4:11) J.Skelton pass short left to R.Housler ran ob at GB 28 for 22 yards (B.Jones).,14,24,2012 -20121104_ARI@GB,3,18,49,ARI,GB,1,10,28,(3:49) J.Skelton pass short right to A.Sherman to GB 25 for 3 yards (J.McMillian).,14,24,2012 -20121104_ARI@GB,3,18,7,ARI,GB,2,7,25,(3:07) J.Skelton pass short left to A.Roberts to GB 11 for 14 yards (M.Burnett J.McMillian).,14,24,2012 -20121104_ARI@GB,3,17,24,ARI,GB,1,10,11,(2:24) (Shotgun) J.Skelton pass incomplete short middle to M.Floyd.,14,24,2012 -20121104_ARI@GB,3,17,20,ARI,GB,2,10,11,(2:20) (Shotgun) J.Skelton pass short right to L.Fitzgerald to GB 2 for 9 yards (T.Williams).,14,24,2012 -20121104_ARI@GB,3,16,36,ARI,GB,3,1,2,(1:36) L.Stephens-Howling right guard to GB 2 for no gain (M.Daniels A.Hawk).,14,24,2012 -20121104_ARI@GB,3,15,53,ARI,GB,4,1,2,(:53) J.Feely 20 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,14,24,2012 -20121104_ARI@GB,3,15,53,ARI,GB,,,2,J.Feely kicks 67 yards from ARZ 35 to GB -2. R.Cobb to GB 22 for 24 yards (J.Bethel).,17,24,2012 -20121104_ARI@GB,3,15,46,GB,ARI,1,10,78,(:46) A.Green left guard to GB 28 for 6 yards (P.Lenon A.Wilson).,24,17,2012 -20121104_ARI@GB,3,15,7,GB,ARI,2,4,72,(:07) (Shotgun) A.Rodgers pass deep middle to T.Crabtree for 72 yards TOUCHDOWN.,24,17,2012 -20121104_ARI@GB,3,15,7,GB,ARI,,,72,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,24,17,2012 -20121104_ARI@GB,4,15,0,GB,ARI,,,72,M.Crosby kicks 74 yards from GB 35 to ARZ -9. W.Powell Touchback.,31,17,2012 -20121104_ARI@GB,4,15,0,ARI,GB,1,10,80,(15:00) L.Stephens-Howling left end to ARZ 19 for -1 yards (B.Jones D.Moses).,17,31,2012 -20121104_ARI@GB,4,14,21,ARI,GB,2,11,81,(14:21) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald.,17,31,2012 -20121104_ARI@GB,4,14,15,ARI,GB,3,11,81,(14:15) (Shotgun) J.Skelton pass short middle to R.Housler to ARZ 28 for 9 yards (M.Jennings).,17,31,2012 -20121104_ARI@GB,4,13,40,ARI,GB,4,2,72,(13:40) D.Zastudil punts 41 yards to GB 31 Center-M.Leach downed by ARZ-J.Bethel.,17,31,2012 -20121104_ARI@GB,4,13,29,GB,ARI,1,10,69,(13:29) J.Starks left end to GB 36 for 5 yards (D.Dockett).,31,17,2012 -20121104_ARI@GB,4,12,46,GB,ARI,2,5,64,(12:46) J.Starks left end to GB 40 for 4 yards (P.Lenon D.Washington).,31,17,2012 -20121104_ARI@GB,4,12,5,GB,ARI,3,1,60,(12:05) J.Starks right end to GB 40 for no gain (D.Williams).,31,17,2012 -20121104_ARI@GB,4,11,18,GB,ARI,4,1,60,(11:18) T.Masthay punts 46 yards to ARZ 14 Center-B.Goode. P.Peterson to ARZ 25 for 11 yards (S.Richardson).,31,17,2012 -20121104_ARI@GB,4,11,6,ARI,GB,1,10,75,(11:06) (Shotgun) J.Skelton pass incomplete deep right to M.Floyd (D.House) [D.Moses].,17,31,2012 -20121104_ARI@GB,4,11,1,ARI,GB,2,10,75,(11:01) (Shotgun) J.Skelton pass short right to M.Floyd to ARZ 33 for 8 yards (D.House).,17,31,2012 -20121104_ARI@GB,4,10,22,ARI,GB,3,2,67,(10:22) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to ARZ 27 for -6 yards (E.Walden).,17,31,2012 -20121104_ARI@GB,4,9,50,ARI,GB,4,8,73,(9:50) D.Zastudil punts 65 yards to GB 8 Center-M.Leach. R.Cobb to GB 18 for 10 yards (S.Bradley).,17,31,2012 -20121104_ARI@GB,4,9,34,GB,ARI,1,10,82,(9:34) J.Starks right end pushed ob at GB 32 for 14 yards (D.Williams).,31,17,2012 -20121104_ARI@GB,4,8,49,GB,ARI,1,10,68,(8:49) J.Starks right tackle to GB 35 for 3 yards (P.Lenon A.Wilson).,31,17,2012 -20121104_ARI@GB,4,8,4,GB,ARI,2,7,65,(8:04) J.Starks left end to GB 34 for -1 yards (P.Lenon).,31,17,2012 -20121104_ARI@GB,4,7,22,GB,ARI,3,8,66,(7:22) (Shotgun) PENALTY on ARZ-Q.Groves Neutral Zone Infraction 5 yards enforced at GB 34 - No Play.,31,17,2012 -20121104_ARI@GB,4,6,59,GB,ARI,3,3,61,(6:59) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 42 for 3 yards (K.Rhodes).,31,17,2012 -20121104_ARI@GB,4,6,29,GB,ARI,1,10,58,(6:29) A.Rodgers pass incomplete deep right to R.Cobb (M.Adams).,31,17,2012 -20121104_ARI@GB,4,6,23,GB,ARI,2,10,58,(6:23) J.Starks right end to GB 43 for 1 yard (C.Campbell).,31,17,2012 -20121104_ARI@GB,4,5,38,GB,ARI,3,9,57,(5:38) (Shotgun) R.Cobb left end to GB 49 for 6 yards (Q.Groves D.Dockett).,31,17,2012 -20121104_ARI@GB,4,4,45,GB,ARI,4,3,51,(4:45) T.Masthay punts 41 yards to ARZ 10 Center-B.Goode. P.Peterson to ARZ 18 for 8 yards (B.Goode).,31,17,2012 -20121104_ARI@GB,4,4,34,ARI,GB,1,10,82,(4:34) (Shotgun) J.Skelton pass short middle to L.Fitzgerald to ARZ 25 for 7 yards (M.Jennings; T.Williams). PENALTY on ARZ-R.Ohrnberger Personal Foul 12 yards enforced at ARZ 25.,17,31,2012 -20121104_ARI@GB,4,4,24,ARI,GB,2,15,87,(4:24) (Shotgun) J.Skelton pass short middle to M.Floyd to ARZ 22 for 9 yards (D.House).,17,31,2012 -20121104_ARI@GB,4,3,58,ARI,GB,3,6,78,(3:58) (Shotgun) J.Skelton pass incomplete short left to A.Roberts.,17,31,2012 -20121104_ARI@GB,4,3,53,ARI,GB,4,6,78,(3:53) (Shotgun) J.Skelton pass deep right to M.Floyd to GB 41 for 37 yards (D.House).,17,31,2012 -20121104_ARI@GB,4,3,19,ARI,GB,1,10,41,(3:19) (Shotgun) J.Skelton pass short left to A.Roberts to GB 27 for 14 yards (C.Hayward). FUMBLES (C.Hayward) ball out of bounds at GB 32.,17,31,2012 -20121104_ARI@GB,4,3,8,ARI,GB,2,1,32,(3:08) (No Huddle Shotgun) J.Skelton pass incomplete short middle to L.Fitzgerald.,17,31,2012 -20121104_ARI@GB,4,3,3,ARI,GB,3,1,32,(3:03) (No Huddle Shotgun) L.Stephens-Howling up the middle to GB 34 for -2 yards (M.Neal).,17,31,2012 -20121104_ARI@GB,4,2,24,ARI,GB,4,3,34,(2:24) (Shotgun) J.Skelton pass incomplete short middle to A.Roberts (C.Hayward). Yard marker changed due to change of possession.,17,31,2012 -20121104_ARI@GB,4,2,20,GB,ARI,1,10,65,(2:20) J.Starks right end to GB 34 for -1 yards (Q.Groves). PENALTY on ARZ-Q.Groves Horse Collar Tackle 15 yards enforced at GB 34.,31,17,2012 -20121104_ARI@GB,4,2,14,GB,ARI,1,10,51,(2:14) J.Starks left tackle to ARZ 48 for 3 yards (A.Wilson).,31,17,2012 -20121104_ARI@GB,4,2,9,GB,ARI,2,7,48,(2:09) J.Starks left end to ARZ 46 for 2 yards (D.Dockett).,31,17,2012 -20121104_ARI@GB,4,2,4,GB,ARI,3,5,46,(2:04) (Shotgun) A.Rodgers pass incomplete deep right to R.Cobb.,31,17,2012 -20121104_ARI@GB,4,2,0,GB,ARI,4,5,46,(2:00) T.Masthay punts 36 yards to ARZ 10 Center-B.Goode. P.Peterson MUFFS catch RECOVERED by GB-J.Bush at ARZ 2. The Replay Assistant challenged the kick touched ruling and the play was Upheld.,31,17,2012 -20121104_ARI@GB,4,1,50,GB,ARI,1,2,2,(1:50) A.Rodgers kneels to ARZ 3 for -1 yards.,31,17,2012 -20121104_ARI@GB,4,1,10,GB,ARI,2,3,3,(1:10) A.Rodgers kneels to ARZ 4 for -1 yards.,31,17,2012 -20121104_ARI@GB,4,0,36,GB,ARI,3,4,4,(:36) A.Rodgers kneels to ARZ 5 for -1 yards.,31,17,2012 -20121104_ARI@GB,4,0,36,GB,ARI,,,4,                      ,31,17,2012 -20121104_BUF@HOU,1,0,0,BUF,HOU,,,4,R.Lindell kicks 39 yards from BUF 35 to HST 26. S.Keo (didn't try to advance) to HST 26 for no gain (R.Brooks).,0,0,2012 -20121104_BUF@HOU,1,59,57,HOU,BUF,1,10,74,(14:57) A.Foster left tackle pushed ob at HST 36 for 10 yards (S.Gilmore).,0,0,2012 -20121104_BUF@HOU,1,59,29,HOU,BUF,1,10,64,(14:29) A.Foster left tackle to HST 37 for 1 yard (K.Sheppard).,0,0,2012 -20121104_BUF@HOU,1,58,54,HOU,BUF,2,9,63,(13:54) A.Foster up the middle to HST 42 for 5 yards (M.Williams).,0,0,2012 -20121104_BUF@HOU,1,58,14,HOU,BUF,3,4,58,(13:14) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels.,0,0,2012 -20121104_BUF@HOU,1,58,9,HOU,BUF,4,4,58,(13:09) D.Jones punts 49 yards to BUF 9 Center-J.Weeks fair catch by L.McKelvin. PENALTY on HST Illegal Formation 5 yards enforced at HST 42 - No Play.,0,0,2012 -20121104_BUF@HOU,1,57,59,HOU,BUF,4,9,63,(12:59) PENALTY on HST-B.Ruud False Start 5 yards enforced at HST 37 - No Play.,0,0,2012 -20121104_BUF@HOU,1,57,59,HOU,BUF,4,14,68,(12:59) D.Jones punts 50 yards to BUF 18 Center-J.Weeks. L.McKelvin to BUF 27 for 9 yards (J.Weeks; S.Keo). (The punt hang time was 5.1 seconds.),0,0,2012 -20121104_BUF@HOU,1,57,46,BUF,HOU,1,10,73,(12:46) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones (S.Cody).,0,0,2012 -20121104_BUF@HOU,1,57,41,BUF,HOU,2,10,73,(12:41) (Shotgun) F.Jackson right tackle to BUF 28 for 1 yard (S.Cody; C.Barwin).,0,0,2012 -20121104_BUF@HOU,1,56,57,BUF,HOU,3,9,72,(11:57) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 42 for 14 yards (B.McCain).,0,0,2012 -20121104_BUF@HOU,1,56,14,BUF,HOU,1,10,58,(11:14) F.Jackson right end to BUF 41 for -1 yards (J.Watt).,0,0,2012 -20121104_BUF@HOU,1,55,29,BUF,HOU,2,11,59,(10:29) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson.,0,0,2012 -20121104_BUF@HOU,1,55,24,BUF,HOU,3,11,59,(10:24) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to BUF 44 for 3 yards (C.Barwin).,0,0,2012 -20121104_BUF@HOU,1,54,47,BUF,HOU,4,8,56,(9:47) S.Powell punts 52 yards to HST 4 Center-G.Sanborn downed by BUF-R.Martin. (The punt hang time was 3.4 seconds.),0,0,2012 -20121104_BUF@HOU,1,54,36,HOU,BUF,1,10,96,(9:36) A.Foster left end to HST 4 for no gain (J.Byrd).,0,0,2012 -20121104_BUF@HOU,1,53,55,HOU,BUF,2,10,96,(8:55) M.Schaub pass incomplete deep left to O.Daniels.,0,0,2012 -20121104_BUF@HOU,1,53,49,HOU,BUF,3,10,96,(8:49) (Shotgun) A.Foster up the middle to HST 15 for 11 yards (G.Wilson).,0,0,2012 -20121104_BUF@HOU,1,53,12,HOU,BUF,1,10,85,(8:12) M.Schaub pass deep middle to K.Walter to HST 36 for 21 yards (K.Sheppard). PENALTY on HST-J.Forsett Offensive Holding 7 yards enforced at HST 15 - No Play.,0,0,2012 -20121104_BUF@HOU,1,52,36,HOU,BUF,1,17,92,(7:36) (Shotgun) M.Schaub pass short right to A.Johnson to HST 11 for 3 yards (N.Barnett). PENALTY on BUF-S.Merriman Defensive Offside 5 yards enforced at HST 8 - No Play.,0,0,2012 -20121104_BUF@HOU,1,52,8,HOU,BUF,1,12,87,(7:08) M.Schaub pass incomplete short right to A.Foster.,0,0,2012 -20121104_BUF@HOU,1,52,3,HOU,BUF,2,12,87,(7:03) (Shotgun) M.Schaub pass short right to A.Johnson pushed ob at HST 26 for 13 yards (A.Williams).,0,0,2012 -20121104_BUF@HOU,1,51,39,HOU,BUF,1,10,74,(6:39) M.Schaub pass short right to O.Daniels pushed ob at HST 34 for 8 yards (N.Bradham).,0,0,2012 -20121104_BUF@HOU,1,51,0,HOU,BUF,2,2,66,(6:00) J.Forsett left tackle to HST 34 for no gain (K.Sheppard; A.Carrington).,0,0,2012 -20121104_BUF@HOU,1,50,17,HOU,BUF,3,2,66,(5:17) (Shotgun) M.Schaub sacked at HST 26 for -8 yards (K.Moore).,0,0,2012 -20121104_BUF@HOU,1,49,52,HOU,BUF,4,10,74,(4:52) D.Jones punts 57 yards to BUF 17 Center-J.Weeks. L.McKelvin to BUF 26 for 9 yards (S.Keo). (The punt hang time was 4.6 seconds.),0,0,2012 -20121104_BUF@HOU,1,49,40,BUF,HOU,1,10,74,(4:40) C.Spiller up the middle to BUF 29 for 3 yards (T.Dobbins; J.Crick).,0,0,2012 -20121104_BUF@HOU,1,48,56,BUF,HOU,2,7,71,(3:56) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 35 for 6 yards (J.Joseph).,0,0,2012 -20121104_BUF@HOU,1,48,25,BUF,HOU,3,1,65,(3:25) C.Spiller up the middle to BUF 35 for no gain (E.Mitchell).,0,0,2012 -20121104_BUF@HOU,1,47,47,BUF,HOU,4,1,65,(2:47) S.Powell punts 50 yards to HST 15 Center-G.Sanborn. K.Martin to HST 23 for 8 yards (B.Smith).,0,0,2012 -20121104_BUF@HOU,1,47,36,HOU,BUF,1,10,77,(2:36) M.Schaub pass deep right to K.Walter to HST 41 for 18 yards (D.Searcy).,0,0,2012 -20121104_BUF@HOU,1,46,53,HOU,BUF,1,10,59,(1:53) M.Schaub pass short left to A.Johnson to HST 47 for 6 yards (N.Barnett).,0,0,2012 -20121104_BUF@HOU,1,46,17,HOU,BUF,2,4,53,(1:17) A.Foster left end pushed ob at BUF 39 for 14 yards (J.Byrd).,0,0,2012 -20121104_BUF@HOU,1,45,44,HOU,BUF,1,10,39,(:44) M.Schaub pass deep right to O.Daniels for 39 yards TOUCHDOWN.,0,0,2012 -20121104_BUF@HOU,1,45,44,HOU,BUF,,,39,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121104_BUF@HOU,1,45,44,HOU,BUF,,,39,S.Graham kicks 61 yards from HST 35 to BUF 4. L.McKelvin pushed ob at BUF 26 for 22 yards (A.Ball).,7,0,2012 -20121104_BUF@HOU,1,45,30,BUF,HOU,1,10,74,(:30) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 35 for 9 yards (G.Quin).,0,7,2012 -20121104_BUF@HOU,2,45,0,BUF,HOU,2,1,65,(15:00) (Shotgun) C.Spiller up the middle to BUF 40 for 5 yards (W.Mercilus; G.Quin).,0,7,2012 -20121104_BUF@HOU,2,44,18,BUF,HOU,1,10,60,(14:18) (Shotgun) PENALTY on HST-A.Smith Encroachment 5 yards enforced at BUF 40 - No Play.,0,7,2012 -20121104_BUF@HOU,2,44,18,BUF,HOU,1,5,55,(14:18) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to HST 47 for 8 yards (B.James).,0,7,2012 -20121104_BUF@HOU,2,43,41,BUF,HOU,1,10,47,(13:41) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller pushed ob at HST 19 for 28 yards (T.Dobbins).,0,7,2012 -20121104_BUF@HOU,2,42,57,BUF,HOU,1,10,19,(12:57) R.Fitzpatrick pass short left to F.Jackson to HST 20 for -1 yards (T.Dobbins).,0,7,2012 -20121104_BUF@HOU,2,42,9,BUF,HOU,2,11,20,(12:09) (Shotgun) R.Fitzpatrick sacked at HST 21 for -1 yards (C.Barwin).,0,7,2012 -20121104_BUF@HOU,2,41,23,BUF,HOU,3,12,21,(11:23) (Shotgun) R.Fitzpatrick scrambles up the middle to HST 18 for 3 yards (B.Reed).,0,7,2012 -20121104_BUF@HOU,2,40,35,BUF,HOU,4,9,18,(10:35) R.Lindell 37 yard field goal is No Good Wide Right Center-G.Sanborn Holder-S.Powell.,0,7,2012 -20121104_BUF@HOU,2,40,31,HOU,BUF,1,10,73,(10:31) M.Schaub pass short right to A.Johnson to HST 40 for 13 yards (A.Williams).,7,0,2012 -20121104_BUF@HOU,2,39,50,HOU,BUF,1,10,60,(9:50) A.Foster right tackle to BUF 39 for 21 yards (N.Bradham; A.Williams).,7,0,2012 -20121104_BUF@HOU,2,39,7,HOU,BUF,1,10,39,(9:07) PENALTY on HST-A.Caldwell False Start 5 yards enforced at BUF 39 - No Play.,7,0,2012 -20121104_BUF@HOU,2,38,50,HOU,BUF,1,15,44,(8:50) M.Schaub pass short middle to J.Casey to BUF 20 for 24 yards (C.Kelsay) [K.Sheppard].,7,0,2012 -20121104_BUF@HOU,2,38,7,HOU,BUF,1,10,20,(8:07) K.Martin left end to BUF 19 for 1 yard (J.Byrd).,7,0,2012 -20121104_BUF@HOU,2,37,21,HOU,BUF,2,9,19,(7:21) M.Schaub sacked at BUF 23 for -4 yards (M.Williams). Penalty on HST-D.Brown Offensive Holding declined.,7,0,2012 -20121104_BUF@HOU,2,37,1,HOU,BUF,3,13,23,(7:01) (Shotgun) PENALTY on HST-D.Newton False Start 5 yards enforced at BUF 23 - No Play.,7,0,2012 -20121104_BUF@HOU,2,36,37,HOU,BUF,3,18,28,(6:37) (Shotgun) M.Schaub pass incomplete short middle to K.Walter (J.Rogers).,7,0,2012 -20121104_BUF@HOU,2,36,22,BUF,HOU,1,10,64,(6:22) F.Jackson up the middle to BUF 49 for 13 yards (G.Quin).,0,7,2012 -20121104_BUF@HOU,2,35,36,BUF,HOU,1,10,51,(5:36) (Shotgun) R.Fitzpatrick pass short middle to D.Dickerson to HST 38 for 13 yards (T.Dobbins). HST-B.James was injured during the play. His return is Probable.,0,7,2012 -20121104_BUF@HOU,2,35,8,BUF,HOU,1,10,38,(5:08) R.Fitzpatrick pass short right to D.Jones to HST 24 for 14 yards (J.Joseph).,0,7,2012 -20121104_BUF@HOU,2,34,26,BUF,HOU,1,10,24,(4:26) F.Jackson right guard to HST 20 for 4 yards (G.Quin; J.Watt).,0,7,2012 -20121104_BUF@HOU,2,33,45,BUF,HOU,2,6,20,(3:45) (Shotgun) B.Smith right guard to HST 20 for no gain (J.Watt). (#16 Smith received the direct snap.),0,7,2012 -20121104_BUF@HOU,2,33,0,BUF,HOU,3,6,20,(3:00) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to HST 12 for 8 yards (G.Quin).,0,7,2012 -20121104_BUF@HOU,2,32,21,BUF,HOU,1,10,12,(2:21) (Shotgun) F.Jackson up the middle to HST 10 for 2 yards (J.Watt).,0,7,2012 -20121104_BUF@HOU,2,32,0,BUF,HOU,2,8,10,(2:00) (Shotgun) PENALTY on BUF-A.Levitre False Start 5 yards enforced at HST 10 - No Play.,0,7,2012 -20121104_BUF@HOU,2,32,0,BUF,HOU,2,13,15,(2:00) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to HST 11 for 4 yards (Q.Demps).,0,7,2012 -20121104_BUF@HOU,2,31,54,BUF,HOU,3,9,11,(1:54) R.Fitzpatrick pass short middle to D.Jones to HST 4 for 7 yards (B.McCain).,0,7,2012 -20121104_BUF@HOU,2,31,45,BUF,HOU,4,2,4,(1:45) R.Lindell 22 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,7,2012 -20121104_BUF@HOU,2,31,45,BUF,HOU,,,4,R.Lindell kicks 67 yards from BUF 35 to HST -2. K.Martin to HST 26 for 28 yards (N.Bradham).,3,7,2012 -20121104_BUF@HOU,2,31,36,HOU,BUF,1,10,74,(1:36) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels.,7,3,2012 -20121104_BUF@HOU,2,31,30,HOU,BUF,2,10,74,(1:30) (Shotgun) M.Schaub pass short middle to O.Daniels to HST 29 for 3 yards (N.Barnett).,7,3,2012 -20121104_BUF@HOU,2,31,10,HOU,BUF,3,7,71,(1:10) (Shotgun) M.Schaub pass incomplete short left to O.Daniels (B.Scott).,7,3,2012 -20121104_BUF@HOU,2,31,5,HOU,BUF,4,7,71,(1:05) D.Jones punts 58 yards to BUF 13 Center-J.Weeks. L.McKelvin pushed ob at BUF 33 for 20 yards (B.McCain). (The punt hang time was 4.5 seconds.),7,3,2012 -20121104_BUF@HOU,2,30,52,BUF,HOU,1,10,67,(:52) (Shotgun) R.Fitzpatrick pass incomplete short right to T.Graham.,3,7,2012 -20121104_BUF@HOU,2,30,48,BUF,HOU,2,10,67,(:48) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 45 for 12 yards (Q.Demps).,3,7,2012 -20121104_BUF@HOU,2,30,28,BUF,HOU,1,10,55,(:28) (Shotgun) R.Fitzpatrick pass short right to D.Jones pushed ob at HST 36 for 19 yards (D.Manning).,3,7,2012 -20121104_BUF@HOU,2,30,22,BUF,HOU,1,10,36,(:22) (Shotgun) C.Spiller right end pushed ob at HST 14 for 22 yards (J.Joseph).,3,7,2012 -20121104_BUF@HOU,2,30,16,BUF,HOU,1,10,14,(:16) (Shotgun) R.Fitzpatrick sacked at HST 20 for -6 yards (J.Watt).,3,7,2012 -20121104_BUF@HOU,2,30,9,BUF,HOU,2,16,20,(:09) R.Lindell 38 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,3,7,2012 -20121104_BUF@HOU,2,30,2,HOU,BUF,1,10,77,(:02) M.Schaub kneels to HST 22 for -1 yards.,7,6,2012 -20121104_BUF@HOU,3,30,0,HOU,BUF,,,77,S.Graham kicks 39 yards from HST 35 to BUF 26. A.Carrington (didn't try to advance) to BUF 26 for no gain (Q.Demps).,7,6,2012 -20121104_BUF@HOU,3,29,58,BUF,HOU,1,10,74,(14:58) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler (B.James).,6,7,2012 -20121104_BUF@HOU,3,29,52,BUF,HOU,2,10,74,(14:52) (Shotgun) R.Fitzpatrick pass incomplete deep right to F.Jackson [J.Watt].,6,7,2012 -20121104_BUF@HOU,3,29,47,BUF,HOU,3,10,74,(14:47) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson.,6,7,2012 -20121104_BUF@HOU,3,29,41,BUF,HOU,4,10,74,(14:41) S.Powell punts 43 yards to HST 31 Center-G.Sanborn. K.Martin pushed ob at BUF 43 for 26 yards (B.Smith). (The punt hang time was 4.3 seconds.),6,7,2012 -20121104_BUF@HOU,3,29,27,HOU,BUF,1,10,43,(14:27) A.Foster right guard to BUF 42 for 1 yard (K.Williams).,7,6,2012 -20121104_BUF@HOU,3,28,59,HOU,BUF,2,9,42,(13:59) A.Foster left end to BUF 38 for 4 yards (D.Searcy).,7,6,2012 -20121104_BUF@HOU,3,28,19,HOU,BUF,3,5,38,(13:19) M.Schaub pass deep right to A.Johnson to BUF 4 for 34 yards (A.Williams). BUF-A.Williams was injured during the play. His return is Doubtful.,7,6,2012 -20121104_BUF@HOU,3,27,48,HOU,BUF,1,4,4,(12:48) A.Foster up the middle to BUF 3 for 1 yard (M.Williams; K.Sheppard).,7,6,2012 -20121104_BUF@HOU,3,27,16,HOU,BUF,2,3,3,(12:16) A.Foster left tackle for 3 yards TOUCHDOWN.,7,6,2012 -20121104_BUF@HOU,3,27,16,HOU,BUF,,,3,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,6,2012 -20121104_BUF@HOU,3,27,16,HOU,BUF,,,3,S.Graham kicks 57 yards from HST 35 to BUF 8. L.McKelvin to BUF 23 for 15 yards (Q.Demps).,14,6,2012 -20121104_BUF@HOU,3,27,4,BUF,HOU,1,10,77,(12:04) (Shotgun) C.Spiller up the middle to BUF 26 for 3 yards (B.Reed).,6,14,2012 -20121104_BUF@HOU,3,26,19,BUF,HOU,2,7,74,(11:19) R.Fitzpatrick pass short left to D.Jones to BUF 41 for 15 yards (J.Joseph).,6,14,2012 -20121104_BUF@HOU,3,25,36,BUF,HOU,1,10,59,(10:36) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to BUF 44 for 3 yards (T.Dobbins).,6,14,2012 -20121104_BUF@HOU,3,24,50,BUF,HOU,2,7,56,(9:50) (Shotgun) R.Fitzpatrick pass deep left to S.Chandler to HST 29 for 27 yards (D.Manning).,6,14,2012 -20121104_BUF@HOU,3,24,3,BUF,HOU,1,10,29,(9:03) (Shotgun) F.Jackson left guard to HST 27 for 2 yards (S.Cody). HST-S.Cody was injured during the play.,6,14,2012 -20121104_BUF@HOU,3,23,23,BUF,HOU,2,8,27,(8:23) (Shotgun) C.Spiller right end pushed ob at HST 21 for 6 yards (B.James).,6,14,2012 -20121104_BUF@HOU,3,22,50,BUF,HOU,3,2,21,(7:50) R.Fitzpatrick pass incomplete short left to St.Johnson (J.Joseph).,6,14,2012 -20121104_BUF@HOU,3,22,45,BUF,HOU,4,2,21,(7:45) R.Lindell 39 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,6,14,2012 -20121104_BUF@HOU,3,22,45,BUF,HOU,,,21,R.Lindell kicks 66 yards from BUF 35 to HST -1. K.Martin to HST 24 for 25 yards (B.Scott).,9,14,2012 -20121104_BUF@HOU,3,22,34,HOU,BUF,1,10,76,(7:34) A.Foster up the middle to HST 25 for 1 yard (G.Wilson).,14,9,2012 -20121104_BUF@HOU,3,22,3,HOU,BUF,2,9,75,(7:03) M.Schaub pass short right to A.Johnson to HST 36 for 11 yards (S.Gilmore).,14,9,2012 -20121104_BUF@HOU,3,21,24,HOU,BUF,1,10,64,(6:24) A.Foster left tackle to HST 36 for no gain (K.Sheppard). PENALTY on HST-C.Myers Offensive Holding 10 yards enforced at HST 36 - No Play.,14,9,2012 -20121104_BUF@HOU,3,21,5,HOU,BUF,1,20,74,(6:05) M.Schaub pass incomplete deep left to A.Johnson (S.Gilmore).,14,9,2012 -20121104_BUF@HOU,3,20,59,HOU,BUF,2,20,74,(5:59) A.Foster right tackle to HST 28 for 2 yards (M.Dareus; K.Williams).,14,9,2012 -20121104_BUF@HOU,3,20,16,HOU,BUF,3,18,72,(5:16) (Shotgun) M.Schaub pass short right to J.Casey to HST 41 for 13 yards (J.Byrd).,14,9,2012 -20121104_BUF@HOU,3,19,41,HOU,BUF,4,5,59,(4:41) D.Jones punts 39 yards to BUF 20 Center-J.Weeks out of bounds. (The punt hang time was 4.2 seconds.),14,9,2012 -20121104_BUF@HOU,3,19,32,BUF,HOU,1,10,80,(4:32) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 19 for -1 yards (D.Manning).,9,14,2012 -20121104_BUF@HOU,3,18,48,BUF,HOU,2,11,81,(3:48) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 23 for 4 yards (Q.Demps).,9,14,2012 -20121104_BUF@HOU,3,18,11,BUF,HOU,3,7,77,(3:11) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones (B.McCain).,9,14,2012 -20121104_BUF@HOU,3,18,4,BUF,HOU,4,7,77,(3:04) S.Powell punts 45 yards to HST 32 Center-G.Sanborn fair catch by K.Martin. (The punt hang time was 4.3 seconds.),9,14,2012 -20121104_BUF@HOU,3,17,55,HOU,BUF,1,10,68,(2:55) M.Schaub pass short left to K.Walter to HST 42 for 10 yards (L.McKelvin).,14,9,2012 -20121104_BUF@HOU,3,17,15,HOU,BUF,1,10,58,(2:15) A.Foster left tackle to HST 38 for -4 yards (K.Williams).,14,9,2012 -20121104_BUF@HOU,3,16,34,HOU,BUF,2,14,62,(1:34) M.Schaub pass short middle to O.Daniels to 50 for 12 yards (G.Wilson; K.Sheppard).,14,9,2012 -20121104_BUF@HOU,3,15,53,HOU,BUF,3,2,50,(:53) M.Schaub pass short right to A.Johnson to BUF 36 for 14 yards (M.Williams).,14,9,2012 -20121104_BUF@HOU,3,15,13,HOU,BUF,1,10,36,(:13) A.Foster right tackle to BUF 28 for 8 yards (N.Bradham).,14,9,2012 -20121104_BUF@HOU,4,15,0,HOU,BUF,2,2,28,(15:00) A.Foster right guard to BUF 25 for 3 yards (M.Dareus; C.Kelsay).,14,9,2012 -20121104_BUF@HOU,4,14,20,HOU,BUF,1,10,25,(14:20) A.Foster right tackle to BUF 27 for -2 yards (N.Barnett).,14,9,2012 -20121104_BUF@HOU,4,13,39,HOU,BUF,2,12,27,(13:39) M.Schaub pass short left to A.Johnson to BUF 9 for 18 yards (G.Wilson).,14,9,2012 -20121104_BUF@HOU,4,12,56,HOU,BUF,1,9,9,(12:56) A.Foster left tackle to BUF 11 for -2 yards (N.Bradham).,14,9,2012 -20121104_BUF@HOU,4,12,18,HOU,BUF,2,11,11,(12:18) M.Schaub pass short right to G.Graham to BUF 5 for 6 yards (N.Bradham).,14,9,2012 -20121104_BUF@HOU,4,11,32,HOU,BUF,3,5,5,(11:32) (Shotgun) M.Schaub pass short right to G.Graham for 5 yards TOUCHDOWN.,14,9,2012 -20121104_BUF@HOU,4,11,32,HOU,BUF,,,5,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,9,2012 -20121104_BUF@HOU,4,11,32,HOU,BUF,,,5,S.Graham kicks 49 yards from HST 35 to BUF 16. B.Smith to BUF 31 for 15 yards (J.Nading).,21,9,2012 -20121104_BUF@HOU,4,11,16,BUF,HOU,1,10,69,(11:16) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 33 for 2 yards (B.James).,9,21,2012 -20121104_BUF@HOU,4,10,37,BUF,HOU,2,8,67,(10:37) (Shotgun) R.Fitzpatrick pass incomplete short right to F.Jackson (J.Crick).,9,21,2012 -20121104_BUF@HOU,4,10,32,BUF,HOU,3,8,67,(10:32) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler [J.Watt].,9,21,2012 -20121104_BUF@HOU,4,10,27,BUF,HOU,4,8,67,(10:27) S.Powell punts 57 yards to HST 10 Center-G.Sanborn out of bounds. (The punt hang time was 4.8 seconds.),9,21,2012 -20121104_BUF@HOU,4,10,19,HOU,BUF,1,10,90,(10:19) A.Foster up the middle to HST 13 for 3 yards (M.Dareus).,21,9,2012 -20121104_BUF@HOU,4,9,43,HOU,BUF,2,7,87,(9:43) M.Schaub pass short middle to A.Johnson to HST 22 for 9 yards (L.McKelvin).,21,9,2012 -20121104_BUF@HOU,4,9,0,HOU,BUF,1,10,78,(9:00) A.Foster left guard to HST 27 for 5 yards (K.Sheppard; K.Williams).,21,9,2012 -20121104_BUF@HOU,4,8,17,HOU,BUF,2,5,73,(8:17) A.Foster left end pushed ob at HST 33 for 6 yards (S.Gilmore).,21,9,2012 -20121104_BUF@HOU,4,7,44,HOU,BUF,1,10,67,(7:44) A.Foster right tackle to HST 35 for 2 yards (Sp.Johnson).,21,9,2012 -20121104_BUF@HOU,4,7,2,HOU,BUF,2,8,65,(7:02) M.Schaub pass short left to J.Casey to HST 47 for 12 yards (K.Sheppard).,21,9,2012 -20121104_BUF@HOU,4,6,15,HOU,BUF,1,10,53,(6:15) A.Foster left end pushed ob at BUF 34 for 19 yards (L.McKelvin).,21,9,2012 -20121104_BUF@HOU,4,5,37,HOU,BUF,1,10,34,(5:37) J.Forsett left tackle to BUF 34 for no gain (M.Williams).,21,9,2012 -20121104_BUF@HOU,4,4,51,HOU,BUF,2,10,34,(4:51) J.Forsett left end to BUF 29 for 5 yards (D.Searcy).,21,9,2012 -20121104_BUF@HOU,4,4,42,HOU,BUF,3,5,29,(4:42) (Shotgun) A.Foster right guard to BUF 30 for -1 yards (B.Scott; N.Barnett).,21,9,2012 -20121104_BUF@HOU,4,4,38,HOU,BUF,4,6,30,(4:38) M.Schaub pass incomplete deep left to A.Johnson.,21,9,2012 -20121104_BUF@HOU,4,4,31,BUF,HOU,1,10,70,(4:31) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson (Q.Demps).,9,21,2012 -20121104_BUF@HOU,4,4,24,BUF,HOU,2,10,70,(4:24) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to BUF 35 for 5 yards (G.Quin D.Manning) [C.Barwin].,9,21,2012 -20121104_BUF@HOU,4,3,45,BUF,HOU,3,5,65,(3:45) (Shotgun) R.Fitzpatrick pass incomplete short left to R.Martin [J.Watt].,9,21,2012 -20121104_BUF@HOU,4,3,41,BUF,HOU,4,5,65,(3:41) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler pushed ob at HST 49 for 16 yards (K.Jackson) [C.Barwin].,9,21,2012 -20121104_BUF@HOU,4,3,34,BUF,HOU,1,10,49,(3:34) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Jones.,9,21,2012 -20121104_BUF@HOU,4,3,29,BUF,HOU,2,10,49,(3:29) (Shotgun) R.Fitzpatrick scrambles left end pushed ob at HST 38 for 11 yards (K.Jackson).,9,21,2012 -20121104_BUF@HOU,4,3,21,BUF,HOU,1,10,38,(3:21) (Shotgun) R.Fitzpatrick scrambles left end to HST 34 for 4 yards (W.Mercilus). FUMBLES (W.Mercilus) RECOVERED by HST-Q.Demps at HST 32. Q.Demps to HST 32 for no gain (S.Chandler).,9,21,2012 -20121104_BUF@HOU,4,3,12,HOU,BUF,1,10,68,(3:12) J.Forsett left guard to HST 31 for -1 yards (G.Wilson; M.Williams).,21,9,2012 -20121104_BUF@HOU,4,2,30,HOU,BUF,2,11,69,(2:30) J.Forsett right guard to HST 37 for 6 yards (N.Bradham; J.Byrd).,21,9,2012 -20121104_BUF@HOU,4,2,0,HOU,BUF,3,5,63,(2:00) J.Forsett left tackle to HST 34 for -3 yards (M.Williams).,21,9,2012 -20121104_BUF@HOU,4,1,15,HOU,BUF,4,8,66,(1:15) D.Jones punts 43 yards to BUF 23 Center-J.Weeks. L.McKelvin to BUF 22 for -1 yards (A.Ball). (The punt hang time was 4.0 seconds.),21,9,2012 -20121104_BUF@HOU,4,1,6,BUF,HOU,1,10,78,(1:06) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 28 for 6 yards (B.McCain) [C.Barwin].,9,21,2012 -20121104_BUF@HOU,4,0,58,BUF,HOU,2,4,72,(:58) (Shotgun) R.Fitzpatrick pass short middle to T.Graham to BUF 33 for 5 yards (C.Barwin) [J.Watt].,9,21,2012 -20121104_BUF@HOU,4,0,33,BUF,HOU,1,10,67,(:33) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller pushed ob at BUF 46 for 13 yards (Q.Demps).,9,21,2012 -20121104_BUF@HOU,4,0,25,BUF,HOU,1,10,54,(:25) (Shotgun) PENALTY on BUF-C.Glenn False Start 5 yards enforced at BUF 46 - No Play.,9,21,2012 -20121104_BUF@HOU,4,0,25,BUF,HOU,1,15,59,(:25) (Shotgun) R.Fitzpatrick sacked at BUF 39 for -2 yards (W.Mercilus).,9,21,2012 -20121104_BUF@HOU,4,0,25,BUF,HOU,,,59,                      ,9,21,2012 -20121104_MIA@IND,1,0,0,MIA,IND,,,59,D.Carpenter kicks 69 yards from MIA 35 to IND -4. T.Zbikowski to IND 30 for 34 yards (J.Freeny).,0,0,2012 -20121104_MIA@IND,1,59,54,IND,MIA,1,10,70,(14:54) (Run formation) A.Luck pass short middle to D.Avery to IND 46 for 16 yards (N.Carroll).,0,0,2012 -20121104_MIA@IND,1,59,24,IND,MIA,1,10,54,(14:24) (No Huddle) V.Ballard up the middle to IND 47 for 1 yard (P.Soliai).,0,0,2012 -20121104_MIA@IND,1,58,50,IND,MIA,2,9,53,(13:50) (Run formation) V.Ballard left guard to IND 44 for -3 yards (K.Dansby; J.Odrick).,0,0,2012 -20121104_MIA@IND,1,58,6,IND,MIA,3,12,56,(13:06) (Shotgun) A.Luck pass short left to D.Allen to MIA 34 for 22 yards (K.Dansby).,0,0,2012 -20121104_MIA@IND,1,57,29,IND,MIA,1,10,34,(12:29) (Run formation) D.Brown right guard to MIA 30 for 4 yards (R.Jones). PENALTY on IND-J.Reitz Offensive Holding 10 yards enforced at MIA 34 - No Play.,0,0,2012 -20121104_MIA@IND,1,57,0,IND,MIA,1,20,44,(12:00) (Shotgun) A.Luck pass short left to D.Brown to MIA 37 for 7 yards (K.Misi).,0,0,2012 -20121104_MIA@IND,1,56,18,IND,MIA,2,13,37,(11:18) A.Luck pass short middle to T.Hilton to MIA 25 for 12 yards (R.Jones).,0,0,2012 -20121104_MIA@IND,1,55,39,IND,MIA,3,1,25,(10:39) (Run formation) D.Carter up the middle to MIA 25 for no gain (K.Burnett; K.Dansby).,0,0,2012 -20121104_MIA@IND,1,54,51,IND,MIA,4,1,25,(9:51) (Field Goal formation) PENALTY on IND-A.Vinatieri Delay of Game 5 yards enforced at MIA 25 - No Play.,0,0,2012 -20121104_MIA@IND,1,54,40,IND,MIA,4,6,30,(9:40) A.Vinatieri 48 yard field goal is No Good Wide Right Center-M.Overton Holder-P.McAfee. Penalty on IND-J.Linkenbach Offensive Holding declined.,0,0,2012 -20121104_MIA@IND,1,54,34,MIA,IND,1,10,61,(9:34) (Run formation) R.Bush right guard to MIA 40 for 1 yard (F.Moala; K.Conner).,0,0,2012 -20121104_MIA@IND,1,54,4,MIA,IND,2,9,60,(9:04) (Run formation) R.Tannehill pass short left to D.Bess to IND 46 for 14 yards (C.Vaughn).,0,0,2012 -20121104_MIA@IND,1,53,35,MIA,IND,1,10,46,(8:35) (Run formation) R.Bush right end ran ob at IND 43 for 3 yards (R.Mathis).,0,0,2012 -20121104_MIA@IND,1,53,6,MIA,IND,2,7,43,(8:06) (Run formation) R.Tannehill pass incomplete short right to M.Moore.,0,0,2012 -20121104_MIA@IND,1,53,2,MIA,IND,3,7,43,(8:02) (Shotgun) R.Tannehill pass short left to B.Hartline to IND 30 for 13 yards (C.Vaughn; T.Zbikowski).,0,0,2012 -20121104_MIA@IND,1,52,24,MIA,IND,1,10,30,(7:24) (Run formation) R.Bush right tackle to IND 30 for no gain (J.Hickman; D.Nevis).,0,0,2012 -20121104_MIA@IND,1,51,47,MIA,IND,2,10,30,(6:47) (Run formation) R.Bush up the middle to IND 28 for 2 yards (A.Bethea). PENALTY on IND-D.Freeney Defensive Offside 5 yards enforced at IND 30 - No Play.,0,0,2012 -20121104_MIA@IND,1,51,23,MIA,IND,2,5,25,(6:23) (Run formation) D.Thomas left end to IND 19 for 6 yards (C.Vaughn; A.Bethea).,0,0,2012 -20121104_MIA@IND,1,50,42,MIA,IND,1,10,19,(5:42) (Shotgun) R.Tannehill sacked at IND 28 for -9 yards (R.Mathis).,0,0,2012 -20121104_MIA@IND,1,50,5,MIA,IND,2,19,28,(5:05) (Shotgun) R.Tannehill pass incomplete deep right to A.Fasano.,0,0,2012 -20121104_MIA@IND,1,49,59,MIA,IND,3,19,28,(4:59) (Shotgun) R.Tannehill pass short middle to D.Bess to IND 19 for 9 yards (A.Bethea).,0,0,2012 -20121104_MIA@IND,1,49,21,MIA,IND,4,10,19,(4:21) D.Carpenter 37 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20121104_MIA@IND,1,49,21,MIA,IND,,,19,D.Carpenter kicks 73 yards from MIA 35 to IND -8. T.Hilton Touchback.,3,0,2012 -20121104_MIA@IND,1,49,15,IND,MIA,1,10,80,(4:15) A.Luck pass short right to R.Wayne pushed ob at IND 28 for 8 yards (J.Wilson; S.Smith).,0,3,2012 -20121104_MIA@IND,1,48,50,IND,MIA,2,2,72,(3:50) (Shotgun) A.Luck pass incomplete short left to D.Avery (J.Wilson).,0,3,2012 -20121104_MIA@IND,1,48,47,IND,MIA,3,2,72,(3:47) (Shotgun) A.Luck pass short left to R.Wayne ran ob at IND 37 for 9 yards.,0,3,2012 -20121104_MIA@IND,1,48,10,IND,MIA,1,10,63,(3:10) (Run formation) B.Sowell reported in as eligible. V.Ballard left end to IND 34 for -3 yards (R.Jones). FUMBLES (R.Jones) and recovers at IND 33. V.Ballard to IND 33 for no gain (N.Carroll).,0,3,2012 -20121104_MIA@IND,1,47,27,IND,MIA,2,14,67,(2:27) (Shotgun) A.Luck pass incomplete short left to D.Avery (N.Carroll).,0,3,2012 -20121104_MIA@IND,1,47,22,IND,MIA,3,14,67,(2:22) (Shotgun) A.Luck pass deep right to T.Hilton to MIA 42 for 25 yards (C.Clemons) [J.Odrick].,0,3,2012 -20121104_MIA@IND,1,46,38,IND,MIA,1,10,42,(1:38) (Run formation) B.Sowell reported in as eligible. A.Luck pass incomplete deep right to D.Allen (K.Misi). PENALTY on MIA-K.Misi Defensive Pass Interference 32 yards enforced at MIA 42 - No Play.,0,3,2012 -20121104_MIA@IND,1,46,31,IND,MIA,1,10,10,(1:31) (Shotgun) T.Hilton right end to MIA 9 for 1 yard (C.Wake).,0,3,2012 -20121104_MIA@IND,1,45,58,IND,MIA,2,9,9,(:58) (Pass formation) A.Luck pass incomplete short left to T.Hilton.,0,3,2012 -20121104_MIA@IND,1,45,53,IND,MIA,3,9,9,(:53) (Shotgun) A.Luck pass short middle to R.Wayne for 9 yards TOUCHDOWN.,0,3,2012 -20121104_MIA@IND,1,45,53,IND,MIA,,,9,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 -20121104_MIA@IND,1,45,53,IND,MIA,,,9,P.McAfee kicks 74 yards from IND 35 to MIA -9. M.Thigpen Touchback.,7,3,2012 -20121104_MIA@IND,1,45,47,MIA,IND,1,10,80,(:47) (Run formation) R.Tannehill pass deep right to B.Hartline ran ob at IND 45 for 35 yards.,3,7,2012 -20121104_MIA@IND,1,45,24,MIA,IND,1,10,45,(:24) (Run formation) R.Tannehill pass short right to B.Hartline to IND 35 for 10 yards (J.Powers).,3,7,2012 -20121104_MIA@IND,2,45,0,MIA,IND,1,10,35,(15:00) (Run formation) R.Bush up the middle to IND 33 for 2 yards (A.Johnson).,3,7,2012 -20121104_MIA@IND,2,44,23,MIA,IND,2,8,33,(14:23) PENALTY on MIA-J.Long False Start 5 yards enforced at IND 33 - No Play.,3,7,2012 -20121104_MIA@IND,2,44,2,MIA,IND,2,13,38,(14:02) (Shotgun) R.Tannehill pass incomplete deep left to J.Gaffney. PENALTY on IND-C.Vaughn Illegal Contact 5 yards enforced at IND 38 - No Play.,3,7,2012 -20121104_MIA@IND,2,43,56,MIA,IND,1,10,33,(13:56) (Run formation) L.Miller right end to IND 26 for 7 yards (P.Angerer).,3,7,2012 -20121104_MIA@IND,2,43,34,MIA,IND,2,3,26,(13:34) R.Tannehill pass incomplete short left to D.Bess (J.Hickman). PENALTY on MIA-D.Bess Illegal Shift 5 yards enforced at IND 26 - No Play.,3,7,2012 -20121104_MIA@IND,2,43,32,MIA,IND,2,8,31,(13:32) (Shotgun) R.Tannehill pass deep right to C.Clay for 31 yards TOUCHDOWN.,3,7,2012 -20121104_MIA@IND,2,43,32,MIA,IND,,,31,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,7,2012 -20121104_MIA@IND,2,43,32,MIA,IND,,,31,D.Carpenter kicks 74 yards from MIA 35 to IND -9. T.Zbikowski Touchback.,10,7,2012 -20121104_MIA@IND,2,43,25,IND,MIA,1,10,80,(13:25) (Run formation) A.Luck pass deep middle to D.Avery to MIA 32 for 48 yards (S.Smith). Penalty on MIA-J.Odrick Defensive Offside declined.,7,10,2012 -20121104_MIA@IND,2,43,10,IND,MIA,1,10,32,(13:10) (Run formation) D.Carter up the middle to MIA 29 for 3 yards (D.Shelby).,7,10,2012 -20121104_MIA@IND,2,42,27,IND,MIA,2,7,29,(12:27) D.Carter left end to MIA 25 for 4 yards (K.Dansby).,7,10,2012 -20121104_MIA@IND,2,41,46,IND,MIA,3,3,25,(11:46) (Shotgun) A.Luck pass short right to V.Ballard pushed ob at MIA 11 for 14 yards (N.Carroll). MIA-K.Burnett was injured during the play.,7,10,2012 -20121104_MIA@IND,2,41,24,IND,MIA,1,10,11,(11:24) (Run formation) A.Luck pass short left to D.Carter to MIA 8 for 3 yards (P.Soliai). PENALTY on IND-S.Satele Ineligible Downfield Pass 5 yards enforced at MIA 11 - No Play.,7,10,2012 -20121104_MIA@IND,2,40,51,IND,MIA,1,15,16,(10:51) (Shotgun) A.Luck pass short left to T.Hilton to MIA 14 for 2 yards (J.Odrick).,7,10,2012 -20121104_MIA@IND,2,40,10,IND,MIA,2,13,14,(10:10) (Shotgun) A.Luck pass incomplete short right to T.Hilton (N.Carroll).,7,10,2012 -20121104_MIA@IND,2,40,4,IND,MIA,3,13,14,(10:04) (Shotgun) A.Luck pass short left to V.Ballard pushed ob at MIA 5 for 9 yards (N.Carroll).,7,10,2012 -20121104_MIA@IND,2,39,42,IND,MIA,4,4,5,(9:42) A.Vinatieri 23 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,7,10,2012 -20121104_MIA@IND,2,39,42,IND,MIA,,,5,P.McAfee kicks 71 yards from IND 35 to MIA -6. M.Thigpen to MIA 20 for 26 yards (D.Butler).,10,10,2012 -20121104_MIA@IND,2,39,30,MIA,IND,1,10,80,(9:30) (Run formation) R.Tannehill sacked at MIA 13 for -7 yards. FUMBLES [D.Freeney] recovered by MIA-J.Long at MIA 14. J.Long to MIA 22 for 8 yards (A.Johnson). IND - Freeney credited with 0 sack yards.,10,10,2012 -20121104_MIA@IND,2,38,53,MIA,IND,2,8,78,(8:53) R.Tannehill pass incomplete short right to B.Hartline.,10,10,2012 -20121104_MIA@IND,2,38,48,MIA,IND,3,8,78,(8:48) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 41 for 19 yards (A.Bethea).,10,10,2012 -20121104_MIA@IND,2,38,14,MIA,IND,1,10,59,(8:14) (Shotgun) R.Tannehill pass short right to D.Thomas to IND 48 for 11 yards (R.Mathews).,10,10,2012 -20121104_MIA@IND,2,37,41,MIA,IND,1,10,48,(7:41) (Run formation) D.Thomas left end to IND 28 for 20 yards (C.Vaughn).,10,10,2012 -20121104_MIA@IND,2,37,0,MIA,IND,1,10,28,(7:00) (Run formation) R.Tannehill pass short right to B.Hartline to IND 21 for 7 yards (J.Powers).,10,10,2012 -20121104_MIA@IND,2,36,29,MIA,IND,2,3,21,(6:29) (Run formation) D.Thomas up the middle to IND 19 for 2 yards (K.Conner; A.Bethea).,10,10,2012 -20121104_MIA@IND,2,35,46,MIA,IND,3,1,19,(5:46) (Run formation) D.Thomas up the middle to IND 18 for 1 yard (C.Redding; M.Harvey).,10,10,2012 -20121104_MIA@IND,2,35,16,MIA,IND,1,10,18,(5:16) (Run formation) R.Bush left end for 18 yards TOUCHDOWN. PENALTY on IND-C.Vaughn Unnecessary Roughness 15 yards enforced between downs.,10,10,2012 -20121104_MIA@IND,2,35,16,MIA,IND,,,18,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,10,10,2012 -20121104_MIA@IND,2,35,16,MIA,IND,,,18,D.Carpenter kicks 59 yards from MIA 50 to IND -9. T.Zbikowski Touchback.,17,10,2012 -20121104_MIA@IND,2,35,7,IND,MIA,1,10,80,(5:07) (Run formation) A.Luck pass deep middle to R.Wayne to IND 41 for 21 yards (N.Carroll).,10,17,2012 -20121104_MIA@IND,2,34,32,IND,MIA,1,10,59,(4:32) (No Huddle) V.Ballard left end to IND 48 for 7 yards (S.Smith).,10,17,2012 -20121104_MIA@IND,2,33,57,IND,MIA,2,3,52,(3:57) (Run formation) A.Luck pass short right to D.Avery pushed ob at MIA 44 for 8 yards (N.Carroll).,10,17,2012 -20121104_MIA@IND,2,33,42,IND,MIA,1,10,44,(3:42) (Run formation) V.Ballard up the middle to MIA 34 for 10 yards (R.Jones). IND-S.Satele was injured during the play. Penalty on MIA-D.Shelby Defensive 12 On-field declined.,10,17,2012 -20121104_MIA@IND,2,33,20,IND,MIA,1,10,34,(3:20) (Run formation) V.Ballard up the middle to MIA 36 for -2 yards (P.Soliai).,10,17,2012 -20121104_MIA@IND,2,32,38,IND,MIA,2,12,36,(2:38) (Shotgun) A.Luck pass incomplete short left to V.Ballard [R.Jones].,10,17,2012 -20121104_MIA@IND,2,32,34,IND,MIA,3,12,36,(2:34) (Shotgun) A.Luck pass incomplete deep right to L.Brazill [C.Wake].,10,17,2012 -20121104_MIA@IND,2,32,29,IND,MIA,4,12,36,(2:29) A.Vinatieri 54 yard field goal is BLOCKED (O.Vernon) Center-M.Overton Holder-P.McAfee.,10,17,2012 -20121104_MIA@IND,2,32,24,MIA,IND,1,10,56,(2:24) R.Bush up the middle to MIA 46 for 2 yards (M.Fokou).,17,10,2012 -20121104_MIA@IND,2,32,0,MIA,IND,2,8,54,(2:00) (Shotgun) PENALTY on MIA-M.Pouncey False Start 7 yards enforced at MIA 46 - No Play.,17,10,2012 -20121104_MIA@IND,2,32,0,MIA,IND,2,15,61,(2:00) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 48 for 9 yards (A.Bethea).,17,10,2012 -20121104_MIA@IND,2,31,34,MIA,IND,3,6,52,(1:34) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline [D.Freeney].,17,10,2012 -20121104_MIA@IND,2,31,25,MIA,IND,4,6,52,(1:25) B.Fields punts 44 yards to IND 8 Center-J.Denney. T.Hilton to IND 13 for 5 yards (J.Trusnik).,17,10,2012 -20121104_MIA@IND,2,31,14,IND,MIA,1,10,87,(1:14) (Shotgun) A.Luck pass short right to D.Allen pushed ob at IND 25 for 12 yards (C.Wake).,10,17,2012 -20121104_MIA@IND,2,31,8,IND,MIA,1,10,75,(1:08) (Shotgun) A.Luck pass incomplete deep middle to T.Hilton.,10,17,2012 -20121104_MIA@IND,2,31,2,IND,MIA,2,10,75,(1:02) (Shotgun) A.Luck pass short left to R.Wayne to IND 38 for 13 yards (J.Wilson).,10,17,2012 -20121104_MIA@IND,2,30,52,IND,MIA,1,10,62,(:52) (Shotgun) A.Luck pass short right to R.Wayne ran ob at 50 for 12 yards.,10,17,2012 -20121104_MIA@IND,2,30,46,IND,MIA,1,10,50,(:46) (Shotgun) A.Luck scrambles right end ran ob at MIA 45 for 5 yards (K.Dansby).,10,17,2012 -20121104_MIA@IND,2,30,40,IND,MIA,2,5,45,(:40) (Shotgun) A.Luck pass short left to L.Brazill pushed ob at MIA 39 for 6 yards (N.Carroll) [O.Vernon]. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,17,2012 -20121104_MIA@IND,2,30,34,IND,MIA,1,10,39,(:34) (Shotgun) A.Luck pass incomplete deep right to T.Hilton.,10,17,2012 -20121104_MIA@IND,2,30,29,IND,MIA,2,10,39,(:29) (Shotgun) A.Luck pass incomplete deep left to V.Ballard. PENALTY on IND-W.Justice Offensive Holding 10 yards enforced at MIA 39 - No Play.,10,17,2012 -20121104_MIA@IND,2,30,24,IND,MIA,2,20,49,(:24) (Shotgun) A.Luck pass incomplete short left to V.Ballard.,10,17,2012 -20121104_MIA@IND,2,30,18,IND,MIA,3,20,49,(:18) (Shotgun) A.Luck pass deep right to T.Hilton to MIA 29 for 20 yards (R.Stanford). IND-T.Hilton was injured during the play.,10,17,2012 -20121104_MIA@IND,2,30,12,IND,MIA,1,10,29,(:12) A.Vinatieri 47 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,10,17,2012 -20121104_MIA@IND,2,30,12,IND,MIA,,,29,P.McAfee kicks 74 yards from IND 35 to MIA -9. D.Presley Touchback.,13,17,2012 -20121104_MIA@IND,2,30,7,MIA,IND,1,10,80,(:07) R.Tannehill kneels to MIA 19 for -1 yards.,17,13,2012 -20121104_MIA@IND,3,30,0,IND,MIA,,,80,P.McAfee kicks 73 yards from IND 35 to MIA -8. M.Thigpen Touchback.,13,17,2012 -20121104_MIA@IND,3,30,0,MIA,IND,1,10,80,(15:00) (Run formation) R.Tannehill pass short right to B.Hartline to MIA 28 for 8 yards (J.Powers; A.Bethea).,17,13,2012 -20121104_MIA@IND,3,29,30,MIA,IND,2,2,72,(14:30) (Run formation) R.Bush up the middle to MIA 31 for 3 yards (J.Freeman; F.Moala).,17,13,2012 -20121104_MIA@IND,3,28,54,MIA,IND,1,10,69,(13:54) (Run formation) R.Bush up the middle to MIA 35 for 4 yards (K.Conner).,17,13,2012 -20121104_MIA@IND,3,28,22,MIA,IND,2,6,65,(13:22) (Run formation) R.Tannehill pass incomplete short right to B.Hartline [J.Hickman].,17,13,2012 -20121104_MIA@IND,3,28,15,MIA,IND,3,6,65,(13:15) (Shotgun) R.Tannehill pass incomplete short middle to D.Bess.,17,13,2012 -20121104_MIA@IND,3,28,10,MIA,IND,4,6,65,(13:10) B.Fields punts 59 yards to IND 6 Center-J.Denney. T.Hilton to IND 20 for 14 yards (J.Trusnik).,17,13,2012 -20121104_MIA@IND,3,27,58,IND,MIA,1,10,80,(12:58) (Run formation) A.Luck pass incomplete short right to R.Wayne.,13,17,2012 -20121104_MIA@IND,3,27,54,IND,MIA,2,10,80,(12:54) D.Carter left end to IND 29 for 9 yards (O.Vernon).,13,17,2012 -20121104_MIA@IND,3,27,13,IND,MIA,3,1,71,(12:13) (Shotgun) A.Luck pass short left to D.Avery to IND 43 for 14 yards (N.Carroll).,13,17,2012 -20121104_MIA@IND,3,26,29,IND,MIA,1,10,57,(11:29) (Run formation) A.Luck pass incomplete deep left to V.Ballard.,13,17,2012 -20121104_MIA@IND,3,26,22,IND,MIA,2,10,57,(11:22) (Shotgun) A.Luck pass incomplete deep right to L.Brazill.,13,17,2012 -20121104_MIA@IND,3,26,17,IND,MIA,3,10,57,(11:17) (Shotgun) A.Luck pass short left to D.Avery pushed ob at MIA 35 for 22 yards (C.Clemons).,13,17,2012 -20121104_MIA@IND,3,25,51,IND,MIA,1,10,35,(10:51) D.Carter left end pushed ob at MIA 34 for 1 yard (N.Carroll).,13,17,2012 -20121104_MIA@IND,3,25,16,IND,MIA,2,9,34,(10:16) (Shotgun) A.Luck sacked at MIA 38 for -4 yards (C.Wake). FUMBLES (C.Wake) touched at MIA 48 recovered by IND-D.Allen at 50. D.Allen to 50 for no gain (J.Odrick). MIA - Wake credited with 14 sack yards.,13,17,2012 -20121104_MIA@IND,3,24,19,IND,MIA,3,25,50,(9:19) (Shotgun) A.Luck pass incomplete deep left to D.Avery (N.Carroll). IND-D.Avery was injured during the play. His return is Questionable. MIA-N.Carroll was injured during the play.,13,17,2012 -20121104_MIA@IND,3,24,13,IND,MIA,4,25,50,(9:13) P.McAfee punts 40 yards to MIA 10 Center-M.Overton fair catch by M.Thigpen.,13,17,2012 -20121104_MIA@IND,3,24,6,MIA,IND,1,10,90,(9:06) (Shotgun) R.Bush up the middle to MIA 9 for -1 yards (J.Freeman).,17,13,2012 -20121104_MIA@IND,3,23,33,MIA,IND,2,11,91,(8:33) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 21 for 12 yards (P.Angerer; J.Hughes).,17,13,2012 -20121104_MIA@IND,3,23,2,MIA,IND,1,10,79,(8:02) (Run formation) R.Bush left end pushed ob at MIA 24 for 3 yards (J.Hickman). PENALTY on MIA-A.Fasano Offensive Holding 10 yards enforced at MIA 21 - No Play.,17,13,2012 -20121104_MIA@IND,3,22,35,MIA,IND,1,20,89,(7:35) (Run formation) R.Tannehill pass incomplete short left to A.Fasano [F.Moala].,17,13,2012 -20121104_MIA@IND,3,22,29,MIA,IND,2,20,89,(7:29) (Shotgun) R.Tannehill pass short right to R.Bush pushed ob at MIA 17 for 6 yards (M.Fokou).,17,13,2012 -20121104_MIA@IND,3,22,0,MIA,IND,3,14,83,(7:00) (Shotgun) R.Tannehill pass short left to D.Bess pushed ob at MIA 23 for 6 yards (D.Butler; D.Nevis).,17,13,2012 -20121104_MIA@IND,3,21,30,MIA,IND,4,8,77,(6:30) B.Fields punts 60 yards to IND 17 Center-J.Denney. T.Hilton to IND 18 for 1 yard (M.Moore).,17,13,2012 -20121104_MIA@IND,3,21,16,IND,MIA,1,10,82,(6:16) (Run formation) V.Ballard left end to IND 22 for 4 yards (C.Clemons). MIA-P.Soliai was injured during the play.,13,17,2012 -20121104_MIA@IND,3,20,50,IND,MIA,2,6,78,(5:50) (Run formation) A.Luck pass incomplete deep left to W.Saunders.,13,17,2012 -20121104_MIA@IND,3,20,44,IND,MIA,3,6,78,(5:44) (Shotgun) A.Luck pass short left to V.Ballard pushed ob at IND 37 for 15 yards (K.Burnett).,13,17,2012 -20121104_MIA@IND,3,20,13,IND,MIA,1,10,63,(5:13) (Run formation) V.Ballard right tackle to IND 41 for 4 yards (K.Burnett).,13,17,2012 -20121104_MIA@IND,3,19,33,IND,MIA,2,6,59,(4:33) (Shotgun) A.Luck pass incomplete short left to D.Allen (K.Dansby).,13,17,2012 -20121104_MIA@IND,3,19,28,IND,MIA,3,6,59,(4:28) (Shotgun) A.Luck pass short left to V.Ballard to MIA 46 for 13 yards (S.Smith). PENALTY on IND-D.Allen Offensive Pass Interference 10 yards enforced at IND 41 - No Play.,13,17,2012 -20121104_MIA@IND,3,18,59,IND,MIA,3,16,69,(3:59) (Shotgun) A.Luck pass deep left to L.Brazill to 50 for 19 yards (J.Wilson).,13,17,2012 -20121104_MIA@IND,3,18,21,IND,MIA,1,10,50,(3:21) (Run formation) D.Carter up the middle to MIA 41 for 9 yards (C.Clemons; K.Burnett).,13,17,2012 -20121104_MIA@IND,3,17,38,IND,MIA,2,1,41,(2:38) (Run formation) D.Carter up the middle to MIA 36 for 5 yards (K.Randall).,13,17,2012 -20121104_MIA@IND,3,16,58,IND,MIA,1,10,36,(1:58) (Run formation) A.Luck pass deep right to T.Hilton for 36 yards TOUCHDOWN.,13,17,2012 -20121104_MIA@IND,3,16,58,IND,MIA,,,36,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,13,17,2012 -20121104_MIA@IND,3,16,58,IND,MIA,,,36,P.McAfee kicks 72 yards from IND 35 to MIA -7. M.Thigpen to MIA 20 for 27 yards (S.Brown). PENALTY on IND-J.Lefeged Low Block 15 yards enforced at MIA 20.,20,17,2012 -20121104_MIA@IND,3,16,43,MIA,IND,1,10,65,(1:43) (Run formation) D.Thomas left end to MIA 38 for 3 yards (K.Conner). MIA-M.Pouncey was injured during the play.,17,20,2012 -20121104_MIA@IND,3,16,1,MIA,IND,2,7,62,(1:01) (Run formation) R.Tannehill pass short right to B.Hartline ran ob at IND 47 for 15 yards.,17,20,2012 -20121104_MIA@IND,3,15,43,MIA,IND,1,10,47,(:43) (Run formation) D.Thomas up the middle to IND 42 for 5 yards (C.Redding; F.Moala).,17,20,2012 -20121104_MIA@IND,4,15,0,MIA,IND,2,5,42,(15:00) (Run formation) R.Tannehill pass incomplete short left to A.Fasano (K.Conner).,17,20,2012 -20121104_MIA@IND,4,14,57,MIA,IND,3,5,42,(14:57) (Shotgun) R.Tannehill pass short left to D.Bess to IND 29 for 13 yards (C.Vaughn).,17,20,2012 -20121104_MIA@IND,4,14,17,MIA,IND,1,10,29,(14:17) (Shotgun) R.Tannehill pass short middle to D.Bess to IND 13 for 16 yards (D.Butler).,17,20,2012 -20121104_MIA@IND,4,13,30,MIA,IND,1,10,13,(13:30) (Run formation) R.Tannehill pass incomplete short right to J.Lane.,17,20,2012 -20121104_MIA@IND,4,13,25,MIA,IND,2,10,13,(13:25) R.Tannehill pass incomplete short left to J.Gaffney.,17,20,2012 -20121104_MIA@IND,4,13,22,MIA,IND,3,10,13,(13:22) (Shotgun) R.Tannehill pass incomplete short left to D.Thomas.,17,20,2012 -20121104_MIA@IND,4,13,17,MIA,IND,4,10,13,(13:17) D.Carpenter 31 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,17,20,2012 -20121104_MIA@IND,4,13,17,MIA,IND,,,13,D.Carpenter kicks 71 yards from MIA 35 to IND -6. T.Zbikowski to IND 28 for 34 yards (J.Trusnik; O.Vernon). PENALTY on IND-M.Tevaseu Illegal Wedge 6 yards enforced at IND 12.,20,20,2012 -20121104_MIA@IND,4,13,0,IND,MIA,1,10,94,(13:00) (Run formation) A.Luck pass short right to D.Allen to IND 5 for -1 yards (N.Carroll).,20,20,2012 -20121104_MIA@IND,4,12,20,IND,MIA,2,11,95,(12:20) (Shotgun) D.Carter up the middle to IND 5 for no gain (K.Burnett).,20,20,2012 -20121104_MIA@IND,4,11,42,IND,MIA,3,11,95,(11:42) (Shotgun) A.Luck pass short right to D.Allen to IND 25 for 20 yards (C.Clemons; K.Dansby).,20,20,2012 -20121104_MIA@IND,4,10,59,IND,MIA,1,10,75,(10:59) (Run formation) V.Ballard left end to IND 28 for 3 yards (K.Dansby).,20,20,2012 -20121104_MIA@IND,4,10,20,IND,MIA,2,7,72,(10:20) (Shotgun) A.Luck pass short middle to D.Allen to IND 48 for 20 yards (C.Clemons).,20,20,2012 -20121104_MIA@IND,4,9,40,IND,MIA,1,10,52,(9:40) (Shotgun) A.Luck pass incomplete deep right to L.Brazill.,20,20,2012 -20121104_MIA@IND,4,9,34,IND,MIA,2,10,52,(9:34) A.Luck pass short right to T.Hilton pushed ob at MIA 45 for 7 yards (S.Smith).,20,20,2012 -20121104_MIA@IND,4,8,58,IND,MIA,3,3,45,(8:58) (Shotgun) A.Luck pass short left to R.Wayne to MIA 39 for 6 yards (S.Smith) [C.Wake].,20,20,2012 -20121104_MIA@IND,4,8,12,IND,MIA,1,10,39,(8:12) (Run formation) J.Linkenbach reported in as eligible. V.Ballard up the middle to MIA 29 for 10 yards (R.Jones).,20,20,2012 -20121104_MIA@IND,4,7,32,IND,MIA,1,10,29,(7:32) (Run formation) J.Linkenbach reported in as eligible. V.Ballard up the middle to MIA 27 for 2 yards (K.Dansby).,20,20,2012 -20121104_MIA@IND,4,6,52,IND,MIA,2,8,27,(6:52) (Shotgun) A.Luck pass short middle to D.Allen to MIA 25 for 2 yards (K.Burnett) [D.Shelby].,20,20,2012 -20121104_MIA@IND,4,6,6,IND,MIA,3,6,25,(6:06) (Shotgun) A.Luck pass incomplete short left to T.Hilton (R.Jones).,20,20,2012 -20121104_MIA@IND,4,6,3,IND,MIA,4,6,25,(6:03) A.Vinatieri 43 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,20,20,2012 -20121104_MIA@IND,4,6,3,IND,MIA,,,25,P.McAfee kicks 70 yards from IND 35 to MIA -5. M.Thigpen to MIA 21 for 26 yards (D.Butler).,23,20,2012 -20121104_MIA@IND,4,5,52,MIA,IND,1,10,79,(5:52) (Shotgun) R.Bush left end pushed ob at MIA 30 for 9 yards (T.Zbikowski).,20,23,2012 -20121104_MIA@IND,4,5,40,MIA,IND,2,1,70,(5:40) (No Huddle) R.Tannehill up the middle to MIA 30 for no gain (M.Fokou). PENALTY on IND Defensive 12 On-field 5 yards enforced at MIA 30 - No Play.,20,23,2012 -20121104_MIA@IND,4,5,0,MIA,IND,1,10,65,(5:00) (Shotgun) R.Tannehill pass short left to J.Gaffney to MIA 44 for 9 yards (C.Vaughn).,20,23,2012 -20121104_MIA@IND,4,4,14,MIA,IND,2,1,56,(4:14) PENALTY on MIA-R.Incognito False Start 5 yards enforced at MIA 44 - No Play.,20,23,2012 -20121104_MIA@IND,4,4,10,MIA,IND,2,6,61,(4:10) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (D.Butler).,20,23,2012 -20121104_MIA@IND,4,4,5,MIA,IND,3,6,61,(4:05) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,20,23,2012 -20121104_MIA@IND,4,4,0,MIA,IND,4,6,61,(4:00) B.Fields punts 50 yards to IND 11 Center-J.Denney. T.Hilton ran ob at IND 20 for 9 yards.,20,23,2012 -20121104_MIA@IND,4,3,51,IND,MIA,1,10,80,(3:51) (Run formation) J.Linkenbach reported in as eligible. V.Ballard left end to IND 23 for 3 yards (C.Wake).,23,20,2012 -20121104_MIA@IND,4,3,45,IND,MIA,2,7,77,(3:45) (Run formation) J.Linkenbach reported in as eligible. V.Ballard left end to IND 26 for 3 yards (K.Dansby).,23,20,2012 -20121104_MIA@IND,4,2,59,IND,MIA,3,4,74,(2:59) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (S.Smith). MIA-R.Starks was injured during the play.,23,20,2012 -20121104_MIA@IND,4,2,52,IND,MIA,4,4,74,(2:52) P.McAfee punts 59 yards to MIA 15 Center-M.Overton. M.Thigpen pushed ob at MIA 46 for 31 yards (P.McAfee). PENALTY on MIA-M.Moore Offensive Holding 10 yards enforced at MIA 27.,23,20,2012 -20121104_MIA@IND,4,2,39,MIA,IND,1,10,83,(2:39) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 25 for 8 yards (M.Fokou).,20,23,2012 -20121104_MIA@IND,4,2,19,MIA,IND,2,2,75,(2:19) (No Huddle Shotgun) R.Tannehill pass short right to B.Hartline ran ob at MIA 32 for 7 yards.,20,23,2012 -20121104_MIA@IND,4,2,14,MIA,IND,1,10,68,(2:14) (Shotgun) R.Tannehill pass short left to J.Gaffney to 50 for 18 yards (T.Zbikowski).,20,23,2012 -20121104_MIA@IND,4,2,0,MIA,IND,1,10,50,(2:00) (Shotgun) R.Tannehill pass incomplete short left to R.Bush.,20,23,2012 -20121104_MIA@IND,4,1,56,MIA,IND,2,10,50,(1:56) (Shotgun) R.Tannehill pass incomplete short right to D.Thomas.,20,23,2012 -20121104_MIA@IND,4,1,52,MIA,IND,3,10,50,(1:52) (Shotgun) PENALTY on MIA-M.Pouncey False Start 5 yards enforced at 50 - No Play.,20,23,2012 -20121104_MIA@IND,4,1,52,MIA,IND,3,15,55,(1:52) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,20,23,2012 -20121104_MIA@IND,4,1,48,MIA,IND,4,15,55,(1:48) (Shotgun) R.Tannehill pass short left to D.Thomas to IND 41 for 14 yards (M.Fokou) [C.Redding]. Penalty on MIA-J.Long Offensive Holding declined.,20,23,2012 -20121104_MIA@IND,4,1,37,IND,MIA,1,10,59,(1:37) (Run formation) V.Ballard left end to IND 42 for 1 yard (J.Odrick).,23,20,2012 -20121104_MIA@IND,4,1,31,IND,MIA,2,9,58,(1:31) (Run formation) J.Linkenbach reported in as eligible. V.Ballard up the middle to IND 44 for 2 yards (P.Soliai).,23,20,2012 -20121104_MIA@IND,4,0,46,IND,MIA,3,7,56,(:46) (Run formation) J.Linkenbach reported in as eligible. V.Ballard left tackle to MIA 37 for 19 yards (J.Trusnik).,23,20,2012 -20121104_MIA@IND,4,0,46,IND,MIA,,,56,                      ,23,20,2012 -20121104_DET@JAC,1,0,0,JAC,DET,,,56,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,0,0,2012 -20121104_DET@JAC,1,60,0,DET,JAC,1,10,80,(15:00) M.Stafford pass short right to R.Broyles to DET 28 for 8 yards (D.Cox).,0,0,2012 -20121104_DET@JAC,1,59,31,DET,JAC,2,2,72,(14:31) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,0,0,2012 -20121104_DET@JAC,1,59,27,DET,JAC,3,2,72,(14:27) (Shotgun) M.Stafford pass short left to R.Broyles to DET 41 for 13 yards (A.Ross).,0,0,2012 -20121104_DET@JAC,1,58,47,DET,JAC,1,10,59,(13:47) M.Leshoure up the middle to DET 42 for 1 yard (A.Lane).,0,0,2012 -20121104_DET@JAC,1,58,10,DET,JAC,2,9,58,(13:10) (Shotgun) M.Stafford pass incomplete short left to M.Leshoure.,0,0,2012 -20121104_DET@JAC,1,58,7,DET,JAC,3,9,58,(13:07) (Shotgun) M.Stafford pass incomplete deep left to T.Young.,0,0,2012 -20121104_DET@JAC,1,58,0,DET,JAC,4,9,58,(13:00) N.Harris punts 50 yards to JAX 8 Center-D.Muhlbach. A.Ross to JAX 13 for 5 yards (A.Palmer).,0,0,2012 -20121104_DET@JAC,1,57,51,JAC,DET,1,10,87,(12:51) R.Jennings up the middle to JAX 15 for 2 yards (J.Durant).,0,0,2012 -20121104_DET@JAC,1,57,13,JAC,DET,2,8,85,(12:13) B.Gabbert pass short right to R.Jennings to JAX 19 for 4 yards (S.Tulloch).,0,0,2012 -20121104_DET@JAC,1,56,45,JAC,DET,3,4,81,(11:45) (Shotgun) B.Gabbert pass incomplete short left to J.Blackmon.,0,0,2012 -20121104_DET@JAC,1,56,40,JAC,DET,4,4,81,(11:40) B.Anger punts 73 yards to DET 8 Center-J.Cain downed by JAX-K.Elliott.,0,0,2012 -20121104_DET@JAC,1,56,27,DET,JAC,1,10,92,(11:27) M.Leshoure up the middle to DET 12 for 4 yards (R.Allen).,0,0,2012 -20121104_DET@JAC,1,55,48,DET,JAC,2,6,88,(10:48) (Shotgun) M.Stafford sacked at DET 12 for 0 yards (G.Selvie).,0,0,2012 -20121104_DET@JAC,1,55,4,DET,JAC,3,6,88,(10:04) (Shotgun) PENALTY on JAX-P.Posluszny Personal Foul 15 yards enforced at DET 12 - No Play.,0,0,2012 -20121104_DET@JAC,1,54,43,DET,JAC,1,10,73,(9:43) (Shotgun) M.Stafford pass short left to C.Johnson to DET 34 for 7 yards (D.Cox).,0,0,2012 -20121104_DET@JAC,1,54,6,DET,JAC,2,3,66,(9:06) M.Leshoure up the middle to DET 38 for 4 yards (R.Allen).,0,0,2012 -20121104_DET@JAC,1,53,21,DET,JAC,1,10,62,(8:21) M.Leshoure left end to DET 38 for no gain (P.Posluszny). PENALTY on DET-G.Cherilus Tripping 10 yards enforced at DET 38 - No Play.,0,0,2012 -20121104_DET@JAC,1,53,0,DET,JAC,1,20,72,(8:00) M.Stafford pass short right to R.Broyles to DET 36 for 8 yards (A.Ross).,0,0,2012 -20121104_DET@JAC,1,52,22,DET,JAC,2,12,64,(7:22) M.Leshoure up the middle to DET 37 for 1 yard (T.Knighton).,0,0,2012 -20121104_DET@JAC,1,51,38,DET,JAC,3,11,63,(6:38) (Shotgun) M.Stafford pass deep right to T.Scheffler ran ob at JAX 35 for 28 yards.,0,0,2012 -20121104_DET@JAC,1,51,28,DET,JAC,1,10,35,(6:28) K.Smith up the middle to JAX 32 for 3 yards (R.Allen).,0,0,2012 -20121104_DET@JAC,1,50,47,DET,JAC,2,7,32,(5:47) (Shotgun) M.Stafford pass short left to T.Young to JAX 29 for 3 yards (M.Harris).,0,0,2012 -20121104_DET@JAC,1,50,4,DET,JAC,3,4,29,(5:04) (Shotgun) M.Stafford pass incomplete short left to J.Bell.,0,0,2012 -20121104_DET@JAC,1,49,58,DET,JAC,4,4,29,(4:58) J.Hanson 47 yard field goal is No Good Hit Right Upright Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121104_DET@JAC,1,49,53,JAC,DET,1,10,63,(4:53) R.Jennings up the middle to JAX 40 for 3 yards (A.Palmer).,0,0,2012 -20121104_DET@JAC,1,49,16,JAC,DET,2,7,60,(4:16) B.Gabbert pass short left to J.Blackmon pushed ob at JAX 43 for 3 yards (J.Green).,0,0,2012 -20121104_DET@JAC,1,48,46,JAC,DET,3,4,57,(3:46) (Shotgun) B.Gabbert scrambles up the middle to JAX 44 for 1 yard (K.Vanden Bosch).,0,0,2012 -20121104_DET@JAC,1,48,13,JAC,DET,4,3,56,(3:13) B.Anger punts 47 yards to DET 9 Center-J.Cain out of bounds.,0,0,2012 -20121104_DET@JAC,1,48,6,DET,JAC,1,10,91,(3:06) M.Leshoure right end to DET 12 for 3 yards (P.Posluszny; C.Mosley).,0,0,2012 -20121104_DET@JAC,1,47,27,DET,JAC,2,7,88,(2:27) (Shotgun) M.Stafford pass incomplete short middle to T.Young [A.Lane].,0,0,2012 -20121104_DET@JAC,1,47,20,DET,JAC,3,7,88,(2:20) (Shotgun) M.Stafford pass short left to C.Johnson to DET 22 for 10 yards (D.Cox).,0,0,2012 -20121104_DET@JAC,1,46,39,DET,JAC,1,10,78,(1:39) M.Stafford pass incomplete short right to W.Heller.,0,0,2012 -20121104_DET@JAC,1,46,33,DET,JAC,2,10,78,(1:33) (Shotgun) M.Leshoure right end to DET 36 for 14 yards (C.Prosinski).,0,0,2012 -20121104_DET@JAC,1,45,50,DET,JAC,1,10,64,(:50) M.Stafford pass incomplete short left to M.Leshoure.,0,0,2012 -20121104_DET@JAC,1,45,43,DET,JAC,2,10,64,(:43) (Shotgun) M.Stafford pass deep middle to C.Johnson to JAX 38 for 26 yards (C.Prosinski).,0,0,2012 -20121104_DET@JAC,1,45,1,DET,JAC,1,10,38,(:01) M.Leshoure left end to JAX 37 for 1 yard (R.Allen).,0,0,2012 -20121104_DET@JAC,2,45,0,DET,JAC,2,9,37,(15:00) M.Stafford pass deep left to C.Johnson to JAX 19 for 18 yards (D.Cox).,0,0,2012 -20121104_DET@JAC,2,44,23,DET,JAC,1,10,19,(14:23) M.Leshoure up the middle to JAX 14 for 5 yards (P.Posluszny).,0,0,2012 -20121104_DET@JAC,2,43,44,DET,JAC,2,5,14,(13:44) M.Leshoure up the middle to JAX 12 for 2 yards (J.Mincey).,0,0,2012 -20121104_DET@JAC,2,43,0,DET,JAC,3,3,12,(13:00) (Shotgun) M.Stafford pass short middle to R.Broyles to JAX 7 for 5 yards (M.Harris).,0,0,2012 -20121104_DET@JAC,2,42,21,DET,JAC,1,7,7,(12:21) M.Leshoure up the middle for 7 yards TOUCHDOWN.,0,0,2012 -20121104_DET@JAC,2,42,21,DET,JAC,,,7,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121104_DET@JAC,2,42,21,DET,JAC,,,7,J.Hanson kicks 70 yards from DET 35 to JAX -5. J.Parmele pushed ob at JAX 18 for 23 yards (D.Carey).,7,0,2012 -20121104_DET@JAC,2,42,11,JAC,DET,1,10,82,(12:11) B.Gabbert sacked at JAX 13 for -5 yards (L.Jackson).,0,7,2012 -20121104_DET@JAC,2,41,39,JAC,DET,2,15,87,(11:39) (Shotgun) B.Gabbert pass incomplete short left to M.Lewis.,0,7,2012 -20121104_DET@JAC,2,41,30,JAC,DET,3,15,87,(11:30) (Shotgun) B.Gabbert pass incomplete short left to J.Blackmon.,0,7,2012 -20121104_DET@JAC,2,41,24,JAC,DET,4,15,87,(11:24) B.Anger punts 40 yards to DET 47 Center-J.Cain fair catch by S.Logan.,0,7,2012 -20121104_DET@JAC,2,41,19,DET,JAC,1,10,53,(11:19) (Shotgun) M.Leshoure up the middle to DET 48 for 1 yard (T.Alualu).,7,0,2012 -20121104_DET@JAC,2,40,35,DET,JAC,2,9,52,(10:35) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler.,7,0,2012 -20121104_DET@JAC,2,40,30,DET,JAC,3,9,52,(10:30) (Shotgun) M.Stafford pass short right to B.Pettigrew to JAX 41 for 11 yards (D.Landry).,7,0,2012 -20121104_DET@JAC,2,39,52,DET,JAC,1,10,41,(9:52) K.Smith up the middle to JAX 41 for no gain (T.Alualu).,7,0,2012 -20121104_DET@JAC,2,39,13,DET,JAC,2,10,41,(9:13) (Shotgun) J.Bell up the middle to JAX 39 for 2 yards (R.Allen).,7,0,2012 -20121104_DET@JAC,2,38,36,DET,JAC,3,8,39,(8:36) (Shotgun) M.Stafford pass deep left to C.Johnson to JAX 1 for 38 yards (C.Prosinski). Penalty on JAX-P.Posluszny Defensive Offside declined.,7,0,2012 -20121104_DET@JAC,2,38,2,DET,JAC,1,1,1,(8:02) M.Leshoure up the middle for 1 yard TOUCHDOWN.,7,0,2012 -20121104_DET@JAC,2,38,2,DET,JAC,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,7,0,2012 -20121104_DET@JAC,2,38,2,DET,JAC,,,1,J.Hanson kicks 69 yards from DET 35 to JAX -4. J.Parmele to JAX 21 for 25 yards (D.Carey).,14,0,2012 -20121104_DET@JAC,2,37,52,JAC,DET,1,10,79,(7:52) B.Gabbert pass short left to R.Jennings to JAX 24 for 3 yards (A.Palmer).,0,14,2012 -20121104_DET@JAC,2,37,13,JAC,DET,2,7,76,(7:13) R.Jennings left end to JAX 32 for 8 yards (J.Lacey).,0,14,2012 -20121104_DET@JAC,2,36,41,JAC,DET,1,10,68,(6:41) R.Jennings up the middle to JAX 37 for 5 yards (A.Palmer).,0,14,2012 -20121104_DET@JAC,2,36,5,JAC,DET,2,5,63,(6:05) R.Jennings up the middle to JAX 39 for 2 yards (N.Fairley).,0,14,2012 -20121104_DET@JAC,2,35,25,JAC,DET,3,3,61,(5:25) (Shotgun) B.Gabbert pass short left to R.Jennings to JAX 39 for no gain (J.Green).,0,14,2012 -20121104_DET@JAC,2,34,47,JAC,DET,4,3,61,(4:47) B.Anger punts 42 yards to DET 19 Center-J.Cain fair catch by S.Logan.,0,14,2012 -20121104_DET@JAC,2,34,40,DET,JAC,1,10,81,(4:40) M.Stafford pass incomplete short right to B.Pettigrew [A.Lane].,14,0,2012 -20121104_DET@JAC,2,34,33,DET,JAC,2,10,81,(4:33) J.Bell up the middle to DET 25 for 6 yards (P.Posluszny).,14,0,2012 -20121104_DET@JAC,2,33,48,DET,JAC,3,4,75,(3:48) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson. Penalty on JAX-J.Mincey Roughing the Passer declined. PENALTY on JAX-D.Cox Defensive Pass Interference 20 yards enforced at DET 25 - No Play.,14,0,2012 -20121104_DET@JAC,2,33,43,DET,JAC,1,10,55,(3:43) J.Bell left end pushed ob at DET 45 for no gain (A.Ross).,14,0,2012 -20121104_DET@JAC,2,33,11,DET,JAC,2,10,55,(3:11) M.Stafford pass short right to C.Johnson to JAX 43 for 12 yards (D.Cox).,14,0,2012 -20121104_DET@JAC,2,32,30,DET,JAC,1,10,43,(2:30) J.Bell up the middle to JAX 41 for 2 yards (R.Allen).,14,0,2012 -20121104_DET@JAC,2,32,0,DET,JAC,2,8,41,(2:00) J.Bell right end to JAX 40 for 1 yard (A.Ross; A.Lane).,14,0,2012 -20121104_DET@JAC,2,31,21,DET,JAC,3,7,40,(1:21) (Shotgun) M.Stafford pass short middle to J.Bell to JAX 28 for 12 yards (M.Harris).,14,0,2012 -20121104_DET@JAC,2,31,12,DET,JAC,1,10,28,(1:12) (Shotgun) M.Stafford pass short left to T.Young to JAX 11 for 17 yards (C.Prosinski).,14,0,2012 -20121104_DET@JAC,2,30,40,DET,JAC,1,10,11,(:40) J.Bell left end to JAX 8 for 3 yards (J.Mincey).,14,0,2012 -20121104_DET@JAC,2,30,35,DET,JAC,2,7,8,(:35) M.Leshoure up the middle for 8 yards TOUCHDOWN.,14,0,2012 -20121104_DET@JAC,2,30,35,DET,JAC,,,8,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,14,0,2012 -20121104_DET@JAC,2,30,35,DET,JAC,,,8,J.Hanson kicks 68 yards from DET 35 to JAX -3. J.Parmele Touchback.,21,0,2012 -20121104_DET@JAC,2,30,28,JAC,DET,1,10,80,(:28) B.Gabbert pass deep middle intended for C.Shorts INTERCEPTED by E.Coleman at JAX 45. E.Coleman to JAX 45 for no gain (C.Shorts). PENALTY on DET-W.Young Illegal Use of Hands 5 yards enforced at JAX 20 - No Play.,0,21,2012 -20121104_DET@JAC,2,30,23,JAC,DET,1,10,75,(:23) (Shotgun) B.Gabbert pass incomplete deep right to C.Shorts (E.Coleman).,0,21,2012 -20121104_DET@JAC,2,30,17,JAC,DET,2,10,75,(:17) (Shotgun) B.Gabbert pass deep middle to C.Shorts to 50 for 25 yards (J.Durant). Penalty on DET-W.Young Defensive Offside declined.,0,21,2012 -20121104_DET@JAC,2,30,9,JAC,DET,1,10,50,(:09) (Shotgun) B.Gabbert pass short right to M.Spurlock ran ob at DET 44 for 6 yards.,0,21,2012 -20121104_DET@JAC,2,30,5,JAC,DET,2,4,44,(:05) (Shotgun) B.Gabbert pass incomplete deep right to L.Robinson (C.Houston).,0,21,2012 -20121104_DET@JAC,3,30,0,JAC,DET,1,10,75,(15:00) B.Gabbert pass short middle to M.Lewis to JAX 30 for 5 yards (S.Tulloch).,0,21,2012 -20121104_DET@JAC,3,29,26,JAC,DET,2,5,70,(14:26) R.Jennings up the middle to JAX 33 for 3 yards (S.Tulloch).,0,21,2012 -20121104_DET@JAC,3,28,52,JAC,DET,3,2,67,(13:52) R.Jennings right end to JAX 37 for 4 yards (C.Avril).,0,21,2012 -20121104_DET@JAC,3,28,14,JAC,DET,1,10,63,(13:14) (Shotgun) B.Gabbert pass short middle to J.Blackmon to JAX 49 for 12 yards (E.Coleman).,0,21,2012 -20121104_DET@JAC,3,27,40,JAC,DET,1,10,51,(12:40) R.Jennings up the middle to JAX 49 for no gain (K.Vanden Bosch).,0,21,2012 -20121104_DET@JAC,3,27,0,JAC,DET,2,10,51,(12:00) B.Gabbert pass intended for J.Blackmon INTERCEPTED by E.Coleman at DET 16. E.Coleman to DET 16 for no gain (J.Blackmon).,0,21,2012 -20121104_DET@JAC,3,26,50,DET,JAC,1,10,84,(11:50) M.Leshoure up the middle to DET 19 for 3 yards (C.Mosley).,21,0,2012 -20121104_DET@JAC,3,26,50,DET,JAC,2,7,81,(11:50) M.Stafford pass short right to J.Bell to DET 29 for 10 yards (D.Landry).,21,0,2012 -20121104_DET@JAC,3,26,50,DET,JAC,1,10,71,(11:50) J.Bell up the middle to DET 41 for 12 yards. PENALTY on DET-R.Reiff Offensive Holding 10 yards enforced at DET 29 - No Play.,21,0,2012 -20121104_DET@JAC,3,25,8,DET,JAC,1,20,81,(10:08) J.Bell up the middle to DET 28 for 9 yards (P.Posluszny).,21,0,2012 -20121104_DET@JAC,3,24,27,DET,JAC,2,11,72,(9:27) M.Stafford pass short right to T.Scheffler to DET 28 for no gain (A.Ross).,21,0,2012 -20121104_DET@JAC,3,23,44,DET,JAC,3,11,72,(8:44) (Shotgun) M.Stafford pass short right to K.Smith to DET 37 for 9 yards (A.Ross).,21,0,2012 -20121104_DET@JAC,3,23,23,DET,JAC,4,2,63,(8:23) N.Harris punts 49 yards to JAX 14 Center-D.Muhlbach. M.Spurlock pushed ob at JAX 21 for 7 yards (T.Lewis).,21,0,2012 -20121104_DET@JAC,3,23,10,JAC,DET,1,10,79,(8:10) (Shotgun) PENALTY on JAX-E.Monroe False Start 5 yards enforced at JAX 21 - No Play.,0,21,2012 -20121104_DET@JAC,3,23,10,JAC,DET,1,15,84,(8:10) (Shotgun) B.Gabbert pass short right to L.Robinson to JAX 26 for 10 yards (C.Houston).,0,21,2012 -20121104_DET@JAC,3,22,35,JAC,DET,2,5,74,(7:35) (Shotgun) B.Gabbert pass short left to M.Lewis to JAX 36 for 10 yards (S.Tulloch).,0,21,2012 -20121104_DET@JAC,3,22,2,JAC,DET,1,10,64,(7:02) R.Jennings up the middle to JAX 41 for 5 yards (SamL.Hill).,0,21,2012 -20121104_DET@JAC,3,21,31,JAC,DET,2,5,59,(6:31) R.Jennings up the middle to JAX 45 for 4 yards (S.Tulloch).,0,21,2012 -20121104_DET@JAC,3,20,55,JAC,DET,3,1,55,(5:55) B.Gabbert up the middle to JAX 46 for 1 yard (SamL.Hill).,0,21,2012 -20121104_DET@JAC,3,20,13,JAC,DET,1,10,54,(5:13) R.Jennings up the middle to DET 46 for 8 yards (J.Durant).,0,21,2012 -20121104_DET@JAC,3,19,44,JAC,DET,2,2,46,(4:44) R.Jennings up the middle to DET 45 for 1 yard (E.Coleman).,0,21,2012 -20121104_DET@JAC,3,19,2,JAC,DET,3,1,45,(4:02) B.Gabbert up the middle to DET 43 for 2 yards (N.Fairley).,0,21,2012 -20121104_DET@JAC,3,18,26,JAC,DET,1,10,43,(3:26) B.Gabbert pass short middle to M.Lewis to DET 37 for 6 yards (K.Vanden Bosch).,0,21,2012 -20121104_DET@JAC,3,17,48,JAC,DET,2,4,37,(2:48) B.Gabbert pass short left to C.Shorts to DET 26 for 11 yards (J.Green).,0,21,2012 -20121104_DET@JAC,3,17,11,JAC,DET,1,10,26,(2:11) B.Gabbert pass incomplete short right to J.Blackmon [C.Williams].,0,21,2012 -20121104_DET@JAC,3,17,6,JAC,DET,2,10,26,(2:06) (Shotgun) B.Gabbert pass short left intended for R.Jennings INTERCEPTED by J.Green at DET 18. J.Green to DET 36 for 18 yards (B.Meester).,0,21,2012 -20121104_DET@JAC,3,16,57,DET,JAC,1,10,64,(1:57) M.Stafford pass short left to R.Broyles to DET 47 for 11 yards (M.Harris).,21,0,2012 -20121104_DET@JAC,3,16,21,DET,JAC,1,10,53,(1:21) M.Leshoure right end to JAX 44 for 9 yards (P.Posluszny).,21,0,2012 -20121104_DET@JAC,3,15,40,DET,JAC,2,1,44,(:40) J.Bell up the middle to JAX 30 for 14 yards (D.Landry).,21,0,2012 -20121104_DET@JAC,4,15,0,DET,JAC,1,10,30,(15:00) M.Stafford pass incomplete deep right to C.Johnson.,21,0,2012 -20121104_DET@JAC,4,14,54,DET,JAC,2,10,30,(14:54) M.Leshoure left end to JAX 24 for 6 yards (P.Posluszny).,21,0,2012 -20121104_DET@JAC,4,14,7,DET,JAC,3,4,24,(14:07) (Shotgun) M.Stafford pass incomplete deep left to T.Young.,21,0,2012 -20121104_DET@JAC,4,14,1,DET,JAC,4,4,24,(14:01) J.Hanson 42 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,21,0,2012 -20121104_DET@JAC,4,14,1,DET,JAC,,,24,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,24,0,2012 -20121104_DET@JAC,4,13,56,JAC,DET,1,10,80,(13:56) (Shotgun) B.Gabbert pass short right to J.Parmele to JAX 28 for 8 yards (J.Durant).,0,24,2012 -20121104_DET@JAC,4,13,23,JAC,DET,2,2,72,(13:23) J.Parmele left end to JAX 33 for 5 yards (J.Durant).,0,24,2012 -20121104_DET@JAC,4,12,54,JAC,DET,1,10,67,(12:54) J.Parmele up the middle to JAX 35 for 2 yards (L.Jackson).,0,24,2012 -20121104_DET@JAC,4,12,27,JAC,DET,2,8,65,(12:27) (Shotgun) B.Gabbert pass short right to L.Robinson to JAX 42 for 7 yards (J.Durant).,0,24,2012 -20121104_DET@JAC,4,11,47,JAC,DET,3,1,58,(11:47) B.Gabbert pass short right to M.Lewis pushed ob at DET 38 for 20 yards (R.Silva).,0,24,2012 -20121104_DET@JAC,4,11,13,JAC,DET,1,10,38,(11:13) B.Gabbert pass short right to L.Robinson to DET 31 for 7 yards (C.Houston).,0,24,2012 -20121104_DET@JAC,4,10,46,JAC,DET,2,3,31,(10:46) J.Parmele up the middle to DET 30 for 1 yard (N.Fairley).,0,24,2012 -20121104_DET@JAC,4,10,6,JAC,DET,3,2,30,(10:06) (Shotgun) J.Parmele up the middle to DET 26 for 4 yards (K.Vanden Bosch).,0,24,2012 -20121104_DET@JAC,4,9,36,JAC,DET,1,10,26,(9:36) (No Huddle) J.Parmele up the middle to DET 23 for 3 yards (J.Durant). PENALTY on DET-N.Fairley Personal Foul 12 yards enforced at DET 23.,0,24,2012 -20121104_DET@JAC,4,9,9,JAC,DET,1,10,11,(9:09) (Shotgun) B.Gabbert pass short right to L.Robinson pushed ob at DET 5 for 6 yards (C.Houston).,0,24,2012 -20121104_DET@JAC,4,8,40,JAC,DET,2,4,5,(8:40) (Shotgun) B.Gabbert pass short middle to M.Spurlock for 5 yards TOUCHDOWN.,0,24,2012 -20121104_DET@JAC,4,8,40,JAC,DET,,,5,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to R.Jennings is complete. ATTEMPT SUCCEEDS.,0,24,2012 -20121104_DET@JAC,4,8,40,JAC,DET,,,5,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,8,24,2012 -20121104_DET@JAC,4,8,36,DET,JAC,1,10,80,(8:36) M.Stafford pass short right to C.Johnson to DET 38 for 18 yards (P.Posluszny).,24,8,2012 -20121104_DET@JAC,4,7,56,DET,JAC,1,10,62,(7:56) J.Bell up the middle to DET 43 for 5 yards (P.Posluszny).,24,8,2012 -20121104_DET@JAC,4,7,9,DET,JAC,2,5,57,(7:09) J.Bell right guard to DET 46 for 3 yards (DA.Smith).,24,8,2012 -20121104_DET@JAC,4,6,25,DET,JAC,3,2,54,(6:25) (Shotgun) M.Stafford pass short right to R.Broyles to JAX 47 for 7 yards (A.Ross).,24,8,2012 -20121104_DET@JAC,4,5,45,DET,JAC,1,10,47,(5:45) (Shotgun) K.Smith up the middle to JAX 42 for 5 yards (A.Lane).,24,8,2012 -20121104_DET@JAC,4,5,3,DET,JAC,2,5,42,(5:03) M.Stafford pass short right to J.Bell to JAX 28 for 14 yards (D.Landry).,24,8,2012 -20121104_DET@JAC,4,4,15,DET,JAC,1,10,28,(4:15) J.Bell up the middle to JAX 17 for 11 yards (T.Alualu).,24,8,2012 -20121104_DET@JAC,4,3,31,DET,JAC,1,10,17,(3:31) J.Bell up the middle to JAX 10 for 7 yards (D.Landry).,24,8,2012 -20121104_DET@JAC,4,2,48,DET,JAC,2,3,10,(2:48) J.Bell up the middle for 10 yards TOUCHDOWN.,24,8,2012 -20121104_DET@JAC,4,2,48,DET,JAC,,,10,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,24,8,2012 -20121104_DET@JAC,4,2,48,DET,JAC,,,10,J.Hanson kicks 37 yards from DET 35 to JAX 28. G.Selvie (didn't try to advance) to JAX 28 for no gain.,31,8,2012 -20121104_DET@JAC,4,2,41,JAC,DET,1,10,72,(2:41) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 35 for 7 yards (J.Lacey).,8,31,2012 -20121104_DET@JAC,4,2,22,JAC,DET,2,3,65,(2:22) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 39 for 4 yards.,8,31,2012 -20121104_DET@JAC,4,2,17,JAC,DET,1,10,61,(2:17) (Shotgun) B.Gabbert pass short right to M.Spurlock ran ob at DET 48 for 13 yards.,8,31,2012 -20121104_DET@JAC,4,2,11,JAC,DET,1,10,48,(2:11) (Shotgun) B.Gabbert pass short right to M.Spurlock to DET 42 for 6 yards (C.Houston).,8,31,2012 -20121104_DET@JAC,4,2,3,JAC,DET,2,4,42,(2:03) (Shotgun) B.Gabbert pass deep middle to C.Shorts to DET 22 for 20 yards (E.Coleman).,8,31,2012 -20121104_DET@JAC,4,1,57,JAC,DET,1,10,22,(1:57) (Shotgun) B.Gabbert pass short left to L.Robinson to DET 15 for 7 yards (J.Green).,8,31,2012 -20121104_DET@JAC,4,1,34,JAC,DET,2,3,15,(1:34) (Shotgun) B.Gabbert pass incomplete short left to L.Robinson.,8,31,2012 -20121104_DET@JAC,4,1,29,JAC,DET,3,3,15,(1:29) (Shotgun) B.Gabbert pass short left to L.Robinson to DET 11 for 4 yards (J.Green).,8,31,2012 -20121104_DET@JAC,4,1,11,JAC,DET,1,10,11,(1:11) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson.,8,31,2012 -20121104_DET@JAC,4,1,6,JAC,DET,2,10,11,(1:06) (Shotgun) B.Gabbert pass incomplete short middle to M.Lewis.,8,31,2012 -20121104_DET@JAC,4,1,1,JAC,DET,3,10,11,(1:01) (Shotgun) B.Gabbert pass short right to M.Spurlock pushed ob at DET 6 for 5 yards (J.Lacey).,8,31,2012 -20121104_DET@JAC,4,0,54,JAC,DET,4,5,6,(:54) (Shotgun) B.Gabbert pass short middle to J.Blackmon for 6 yards TOUCHDOWN.,8,31,2012 -20121104_DET@JAC,4,0,54,JAC,DET,,,6,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to J.Parmele is incomplete. ATTEMPT FAILS.,8,31,2012 -20121104_DET@JAC,4,0,54,JAC,DET,,,6,J.Scobee kicks onside 16 yards from JAX 35 to DET 49. M.Thomas (didn't try to advance) to DET 49 for no gain.,14,31,2012 -20121104_DET@JAC,4,0,50,DET,JAC,1,10,51,(:50) M.Stafford kneels to DET 48 for -1 yards.,31,14,2012 -20121104_DET@JAC,4,0,29,DET,JAC,2,11,52,(:29) M.Stafford kneels to DET 47 for -1 yards.,31,14,2012 -20121104_DET@JAC,4,0,29,DET,JAC,,,52,                      ,31,14,2012 -20121104_CHI@TEN,1,0,0,CHI,TEN,,,52,R.Gould kicks 70 yards from CHI 35 to TEN -5. D.Reynaud to TEN 20 for 25 yards (E.Weems).,0,0,2012 -20121104_CHI@TEN,1,59,54,TEN,CHI,1,10,80,(14:54) M.Hasselbeck pass deep middle to K.Britt to TEN 43 for 23 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-B.Urlacher at TEN 46. B.Urlacher to TEN 46 for no gain (K.Britt).,0,0,2012 -20121104_CHI@TEN,1,59,44,CHI,TEN,1,10,46,(14:44) M.Forte right tackle to TEN 44 for 2 yards (C.Sensabaugh). PENALTY on CHI-K.Davis Offensive Holding 10 yards enforced at TEN 46 - No Play.,0,0,2012 -20121104_CHI@TEN,1,59,19,CHI,TEN,1,20,56,(14:19) (Shotgun) M.Forte right guard to CHI 47 for 3 yards (Z.Brown).,0,0,2012 -20121104_CHI@TEN,1,58,35,CHI,TEN,2,17,53,(13:35) (Shotgun) M.Forte left tackle to TEN 45 for 8 yards (C.McCarthy; J.Babineaux).,0,0,2012 -20121104_CHI@TEN,1,57,53,CHI,TEN,3,9,45,(12:53) (Shotgun) J.Cutler pass short right to E.Bennett to TEN 43 for 2 yards (J.McCourty).,0,0,2012 -20121104_CHI@TEN,1,57,17,CHI,TEN,4,7,43,(12:17) (Punt formation) A.Podlesh punts 43 yards to end zone Center-P.Mannelly Touchback.,0,0,2012 -20121104_CHI@TEN,1,57,9,TEN,CHI,1,10,80,(12:09) M.Hasselbeck pass short right to K.Britt to TEN 29 for 9 yards (C.Tillman).,0,0,2012 -20121104_CHI@TEN,1,56,34,TEN,CHI,2,1,71,(11:34) C.Johnson up the middle to TEN 29 for no gain (B.Urlacher).,0,0,2012 -20121104_CHI@TEN,1,56,0,TEN,CHI,3,1,71,(11:00) C.Johnson up the middle to TEN 29 for no gain (N.Roach).,0,0,2012 -20121104_CHI@TEN,1,55,17,TEN,CHI,4,1,71,(10:17) (Punt formation) B.Kern punts 53 yards to CHI 18 Center-B.Brinkley. D.Hester to CHI 27 for 9 yards (J.Babineaux).,0,0,2012 -20121104_CHI@TEN,1,55,6,CHI,TEN,1,10,73,(10:06) M.Forte left end pushed ob at CHI 44 for 17 yards (C.McCarthy).,0,0,2012 -20121104_CHI@TEN,1,54,39,CHI,TEN,1,10,56,(9:39) J.Cutler sacked ob at CHI 44 for 0 yards (A.Ayers).,0,0,2012 -20121104_CHI@TEN,1,54,8,CHI,TEN,2,10,56,(9:08) (Shotgun) J.Cutler pass incomplete short right to E.Bennett.,0,0,2012 -20121104_CHI@TEN,1,54,4,CHI,TEN,3,10,56,(9:04) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall.,0,0,2012 -20121104_CHI@TEN,1,53,58,CHI,TEN,4,10,56,(8:58) (Punt formation) A.Podlesh punts 37 yards to TEN 19 Center-P.Mannelly downed by CHI-A.Walters.,0,0,2012 -20121104_CHI@TEN,1,53,48,TEN,CHI,1,10,81,(8:48) (Shotgun) M.Hasselbeck pass short middle to N.Washington to TEN 24 for 5 yards (L.Briggs).,0,0,2012 -20121104_CHI@TEN,1,53,10,TEN,CHI,2,5,76,(8:10) (Shotgun) C.Johnson left guard to TEN 31 for 7 yards (C.Conte). PENALTY on TEN Illegal Formation 5 yards enforced at TEN 24 - No Play.,0,0,2012 -20121104_CHI@TEN,1,52,39,TEN,CHI,2,10,81,(7:39) (Shotgun) M.Hasselbeck pass incomplete short right to C.Stevens (C.Conte). Penalty on TEN Illegal Formation declined.,0,0,2012 -20121104_CHI@TEN,1,52,33,TEN,CHI,3,10,81,(7:33) (Shotgun) M.Hasselbeck pass short middle to C.Johnson to TEN 20 for 1 yard (D.Moore).,0,0,2012 -20121104_CHI@TEN,1,51,52,TEN,CHI,4,9,80,(6:52) (Punt formation) B.Kern punt is BLOCKED by S.McManis Center-B.Brinkley RECOVERED by CHI-C.Wootton at TEN 5. C.Wootton for 5 yards TOUCHDOWN.,0,0,2012 -20121104_CHI@TEN,1,51,52,CHI,TEN,,,80,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121104_CHI@TEN,1,51,52,CHI,TEN,,,80,R.Gould kicks 68 yards from CHI 35 to TEN -3. D.Reynaud to TEN 22 for 25 yards (S.McManis; B.Costanzo). TEN-X.Adibi was injured during the play. His return is Questionable.,7,0,2012 -20121104_CHI@TEN,1,51,38,TEN,CHI,1,10,78,(6:38) C.Johnson right tackle to TEN 29 for 7 yards (H.Melton; N.Collins).,0,7,2012 -20121104_CHI@TEN,1,51,0,TEN,CHI,2,3,71,(6:00) C.Johnson right guard to TEN 30 for 1 yard (H.Melton; B.Urlacher).,0,7,2012 -20121104_CHI@TEN,1,50,22,TEN,CHI,3,2,70,(5:22) (Shotgun) M.Hasselbeck pass incomplete short left to K.Wright.,0,7,2012 -20121104_CHI@TEN,1,50,18,TEN,CHI,4,2,70,(5:18) (Punt formation) B.Kern punts 52 yards to CHI 18 Center-B.Brinkley. D.Hester pushed ob at CHI 29 for 11 yards (J.Harper). PENALTY on CHI-C.Tillman Offensive Holding 9 yards enforced at CHI 18.,0,7,2012 -20121104_CHI@TEN,1,50,7,CHI,TEN,1,10,91,(5:07) J.Cutler pass incomplete short right to E.Bennett.,7,0,2012 -20121104_CHI@TEN,1,50,3,CHI,TEN,2,10,91,(5:03) PENALTY on CHI-D.Hester False Start 4 yards enforced at CHI 9 - No Play.,7,0,2012 -20121104_CHI@TEN,1,50,3,CHI,TEN,2,14,95,(5:03) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 20 for 15 yards (K.Wimbley). PENALTY on CHI-J.Webb Illegal Use of Hands 5 yards enforced in End Zone SAFETY - No Play.,7,0,2012 -20121104_CHI@TEN,1,50,3,CHI,TEN,,,95,A.Podlesh kicks 54 yards from CHI 20 to TEN 26. D.Reynaud to TEN 48 for 22 yards (A.Podlesh). PENALTY on TEN-J.Harper Illegal Block Above the Waist 10 yards enforced at TEN 36.,7,2,2012 -20121104_CHI@TEN,1,49,44,TEN,CHI,1,10,74,(4:44) M.Hasselbeck pass incomplete short right to K.Britt (C.Tillman).,2,7,2012 -20121104_CHI@TEN,1,49,39,TEN,CHI,2,10,74,(4:39) M.Hasselbeck sacked at TEN 14 for -12 yards (sack split by S.Paea and I.Idonije).,2,7,2012 -20121104_CHI@TEN,1,49,6,TEN,CHI,3,22,86,(4:06) (Shotgun) M.Hasselbeck pass incomplete short left to K.Wright.,2,7,2012 -20121104_CHI@TEN,1,49,2,TEN,CHI,4,22,86,(4:02) (Punt formation) PENALTY on TEN-A.Afalava False Start 5 yards enforced at TEN 14 - No Play.,2,7,2012 -20121104_CHI@TEN,1,49,2,TEN,CHI,4,27,91,(4:02) (Punt formation) B.Kern punts 43 yards to CHI 48 Center-B.Brinkley. D.Hester to TEN 8 for 44 yards (J.Harper).,2,7,2012 -20121104_CHI@TEN,1,48,48,CHI,TEN,1,8,8,(3:48) M.Forte up the middle for 8 yards TOUCHDOWN.,7,2,2012 -20121104_CHI@TEN,1,48,48,CHI,TEN,,,8,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,2,2012 -20121104_CHI@TEN,1,48,48,CHI,TEN,,,8,R.Gould kicks 73 yards from CHI 35 to TEN -8. D.Reynaud to TEN 24 for 32 yards (A.Allen; C.Steltz).,14,2,2012 -20121104_CHI@TEN,1,48,34,TEN,CHI,1,10,76,(3:34) (Shotgun) M.Hasselbeck pass deep left to K.Wright to TEN 42 for 18 yards (T.Jennings).,2,14,2012 -20121104_CHI@TEN,1,48,11,TEN,CHI,1,10,58,(3:11) (No Huddle Shotgun) M.Hasselbeck pass short middle intended for D.Williams INTERCEPTED by B.Urlacher at TEN 46. B.Urlacher for 46 yards TOUCHDOWN.,2,14,2012 -20121104_CHI@TEN,1,48,11,CHI,TEN,,,58,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,14,2,2012 -20121104_CHI@TEN,1,48,11,CHI,TEN,,,58,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,21,2,2012 -20121104_CHI@TEN,1,47,59,TEN,CHI,1,10,80,(2:59) (Shotgun) M.Hasselbeck pass short left to C.Johnson to TEN 25 for 5 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-C.Conte at TEN 16. C.Conte ran ob at TEN 16 for no gain.,2,21,2012 -20121104_CHI@TEN,1,47,49,CHI,TEN,1,10,16,(2:49) M.Bush left tackle to TEN 16 for no gain (Z.Brown; A.Ayers).,21,2,2012 -20121104_CHI@TEN,1,47,11,CHI,TEN,2,10,16,(2:11) (Shotgun) J.Cutler pass short left to B.Marshall to TEN 13 for 3 yards (Z.Brown). TEN-A.Verner was injured during the play. His return is Questionable.,21,2,2012 -20121104_CHI@TEN,1,46,40,CHI,TEN,3,7,13,(1:40) (Shotgun) J.Cutler pass short left to B.Marshall for 13 yards TOUCHDOWN.,21,2,2012 -20121104_CHI@TEN,1,46,40,CHI,TEN,,,13,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,21,2,2012 -20121104_CHI@TEN,1,46,40,CHI,TEN,,,13,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,28,2,2012 -20121104_CHI@TEN,1,46,33,TEN,CHI,1,10,80,(1:33) (Shotgun) M.Hasselbeck pass incomplete short right to K.Wright (N.Collins).,2,28,2012 -20121104_CHI@TEN,1,46,29,TEN,CHI,2,10,80,(1:29) (Shotgun) C.Johnson right guard to TEN 22 for 2 yards (K.Hayden; N.Collins).,2,28,2012 -20121104_CHI@TEN,1,45,56,TEN,CHI,3,8,78,(:56) (Shotgun) M.Hasselbeck pass incomplete short right to J.Cook (C.Conte).,2,28,2012 -20121104_CHI@TEN,1,45,50,TEN,CHI,4,8,78,(:50) (Punt formation) B.Kern punts 35 yards to CHI 43 Center-B.Brinkley. D.Hester to 50 for 7 yards (T.Thompson).,2,28,2012 -20121104_CHI@TEN,1,45,41,CHI,TEN,1,10,50,(:41) M.Bush left guard to TEN 48 for 2 yards (C.McCarthy).,28,2,2012 -20121104_CHI@TEN,2,45,0,CHI,TEN,2,8,48,(15:00) (Shotgun) J.Cutler pass short right to B.Marshall to TEN 45 for 3 yards (R.Mouton).,28,2,2012 -20121104_CHI@TEN,2,44,16,CHI,TEN,3,5,45,(14:16) (Shotgun) J.Cutler pass short right to E.Bennett to TEN 39 for 6 yards (J.McCourty) [D.Morgan].,28,2,2012 -20121104_CHI@TEN,2,43,55,CHI,TEN,1,10,39,(13:55) M.Bush left guard to TEN 40 for -1 yards (A.Ayers).,28,2,2012 -20121104_CHI@TEN,2,43,17,CHI,TEN,2,11,40,(13:17) (Shotgun) J.Cutler scrambles right end pushed ob at TEN 28 for 12 yards (D.Morgan).,28,2,2012 -20121104_CHI@TEN,2,42,43,CHI,TEN,1,10,28,(12:43) J.Cutler pass incomplete short right to E.Weems (D.Morgan).,28,2,2012 -20121104_CHI@TEN,2,42,40,CHI,TEN,2,10,28,(12:40) J.Cutler pass short left to B.Marshall to TEN 23 for 5 yards (J.Babineaux).,28,2,2012 -20121104_CHI@TEN,2,41,54,CHI,TEN,3,5,23,(11:54) (Shotgun) J.Cutler pass incomplete short middle to E.Bennett (R.Mouton).,28,2,2012 -20121104_CHI@TEN,2,41,49,CHI,TEN,4,5,23,(11:49) (Field Goal formation) R.Gould 40 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,28,2,2012 -20121104_CHI@TEN,2,41,49,CHI,TEN,,,23,R.Gould kicks 66 yards from CHI 35 to TEN -1. D.Reynaud to TEN 22 for 23 yards (S.McManis; A.Walters). PENALTY on TEN-T.Wilson Unnecessary Roughness 11 yards enforced at TEN 22.,31,2,2012 -20121104_CHI@TEN,2,41,37,TEN,CHI,1,10,89,(11:37) C.Johnson right guard to TEN 16 for 5 yards (S.Paea).,2,31,2012 -20121104_CHI@TEN,2,41,6,TEN,CHI,2,5,84,(11:06) C.Johnson right tackle to TEN 19 for 3 yards (B.Urlacher; N.Roach).,2,31,2012 -20121104_CHI@TEN,2,40,30,TEN,CHI,3,2,81,(10:30) M.Hasselbeck pass short right to C.Stevens to TEN 31 for 12 yards (C.Tillman). FUMBLES (C.Tillman) ball out of bounds at TEN 34.,2,31,2012 -20121104_CHI@TEN,2,39,59,TEN,CHI,1,10,66,(9:59) C.Johnson left guard to TEN 36 for 2 yards (N.Roach; I.Idonije). CHI-I.Idonije was injured during the play. His return is Questionable.,2,31,2012 -20121104_CHI@TEN,2,39,29,TEN,CHI,2,8,64,(9:29) M.Hasselbeck pass short middle to K.Wright to TEN 48 for 12 yards (C.Tillman).,2,31,2012 -20121104_CHI@TEN,2,38,52,TEN,CHI,1,10,52,(8:52) M.Hasselbeck pass incomplete deep left to C.Johnson.,2,31,2012 -20121104_CHI@TEN,2,38,45,TEN,CHI,2,10,52,(8:45) C.Johnson up the middle to 50 for 2 yards (N.Collins).,2,31,2012 -20121104_CHI@TEN,2,38,4,TEN,CHI,3,8,50,(8:04) (Shotgun) M.Hasselbeck scrambles left end to CHI 34 for 16 yards (T.Jennings).,2,31,2012 -20121104_CHI@TEN,2,37,20,TEN,CHI,1,10,34,(7:20) (Shotgun) M.Hasselbeck pass short left to K.Britt to CHI 28 for 6 yards (C.Tillman).,2,31,2012 -20121104_CHI@TEN,2,36,46,TEN,CHI,2,4,28,(6:46) C.Johnson right tackle to CHI 20 for 8 yards (B.Urlacher). FUMBLES (B.Urlacher) RECOVERED by CHI-K.Hayden at CHI 18. K.Hayden to CHI 18 for no gain (N.Washington).,2,31,2012 -20121104_CHI@TEN,2,36,35,CHI,TEN,1,10,82,(6:35) D.Hester left end pushed ob at CHI 19 for 1 yard (C.McCarthy). PENALTY on CHI-J.Webb Offensive Holding 9 yards enforced at CHI 18 - No Play.,31,2,2012 -20121104_CHI@TEN,2,36,10,CHI,TEN,1,19,91,(6:10) M.Forte left guard to CHI 9 for no gain (Z.Brown).,31,2,2012 -20121104_CHI@TEN,2,35,34,CHI,TEN,2,19,91,(5:34) J.Cutler pass short middle to D.Hester to CHI 14 for 5 yards (S.Marks).,31,2,2012 -20121104_CHI@TEN,2,34,57,CHI,TEN,3,14,86,(4:57) (Shotgun) M.Forte up the middle to CHI 30 for 16 yards (R.Johnson; C.Sensabaugh).,31,2,2012 -20121104_CHI@TEN,2,34,20,CHI,TEN,1,10,70,(4:20) M.Forte right tackle to CHI 26 for -4 yards (A.Ayers; D.Morgan).,31,2,2012 -20121104_CHI@TEN,2,33,39,CHI,TEN,2,14,74,(3:39) (Shotgun) J.Cutler pass short right to M.Forte to TEN 27 for 47 yards (A.Verner).,31,2,2012 -20121104_CHI@TEN,2,32,47,CHI,TEN,1,10,27,(2:47) (Shotgun) M.Bush right guard to TEN 18 for 9 yards (C.Sensabaugh).,31,2,2012 -20121104_CHI@TEN,2,32,0,CHI,TEN,2,1,18,(2:00) M.Bush right guard to TEN 14 for 4 yards (J.Babineaux).,31,2,2012 -20121104_CHI@TEN,2,31,16,CHI,TEN,1,10,14,(1:16) J.Cutler sacked at TEN 20 for -6 yards (J.Casey). FUMBLES (J.Casey) [J.Casey] RECOVERED by TEN-Z.Brown at TEN 36. Z.Brown to TEN 42 for 6 yards. FUMBLES recovered by TEN-K.Wimbley at TEN 48. K.Wimbley to TEN 50 for 2 yards (M.Forte).,31,2,2012 -20121104_CHI@TEN,2,31,5,TEN,CHI,1,10,50,(1:05) (Shotgun) M.Hasselbeck pass short left to K.Britt pushed ob at CHI 40 for 10 yards (C.Tillman).,2,31,2012 -20121104_CHI@TEN,2,30,56,TEN,CHI,1,10,40,(:56) (Shotgun) M.Hasselbeck scrambles up the middle to CHI 38 for 2 yards (B.Urlacher).,2,31,2012 -20121104_CHI@TEN,2,30,45,TEN,CHI,2,8,38,(:45) (Shotgun) M.Hasselbeck pass short right to J.Cook to CHI 31 for 7 yards (D.Moore).,2,31,2012 -20121104_CHI@TEN,2,30,25,TEN,CHI,3,1,31,(:25) C.Johnson left guard to CHI 21 for 10 yards (L.Briggs; M.Wright).,2,31,2012 -20121104_CHI@TEN,2,30,20,TEN,CHI,1,10,21,(:20) (Shotgun) M.Hasselbeck pass incomplete deep middle to J.Cook.,2,31,2012 -20121104_CHI@TEN,2,30,14,TEN,CHI,2,10,21,(:14) (Shotgun) M.Hasselbeck pass incomplete deep right to K.Wright (T.Jennings).,2,31,2012 -20121104_CHI@TEN,2,30,8,TEN,CHI,3,10,21,(:08) (Shotgun) M.Hasselbeck pass incomplete deep left to K.Britt (C.Conte).,2,31,2012 -20121104_CHI@TEN,2,30,2,TEN,CHI,4,10,21,(:02) (Field Goal formation) R.Bironas 39 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,2,31,2012 -20121104_CHI@TEN,3,30,0,TEN,CHI,,,21,R.Bironas kicks 69 yards from TEN 35 to CHI -4. D.Hester pushed ob at CHI 22 for 26 yards (R.Johnson).,5,31,2012 -20121104_CHI@TEN,3,29,54,CHI,TEN,1,10,78,(14:54) M.Forte right guard to CHI 26 for 4 yards (D.Morgan).,31,5,2012 -20121104_CHI@TEN,3,29,13,CHI,TEN,2,6,74,(14:13) J.Cutler sacked at CHI 17 for -9 yards (K.Wimbley).,31,5,2012 -20121104_CHI@TEN,3,28,38,CHI,TEN,3,15,83,(13:38) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 24 for 7 yards (C.Sensabaugh; A.Verner).,31,5,2012 -20121104_CHI@TEN,3,28,2,CHI,TEN,4,8,76,(13:02) (Punt formation) A.Podlesh punts 35 yards to TEN 41 Center-P.Mannelly out of bounds.,31,5,2012 -20121104_CHI@TEN,3,27,53,TEN,CHI,1,10,59,(12:53) M.Hasselbeck pass deep right to K.Britt to CHI 40 for 19 yards (B.Urlacher).,5,31,2012 -20121104_CHI@TEN,3,27,22,TEN,CHI,1,10,40,(12:22) M.Hasselbeck pass incomplete short right to K.Wright.,5,31,2012 -20121104_CHI@TEN,3,27,17,TEN,CHI,2,10,40,(12:17) C.Johnson left tackle to CHI 30 for 10 yards (N.Roach).,5,31,2012 -20121104_CHI@TEN,3,26,32,TEN,CHI,1,10,30,(11:32) M.Hasselbeck pass deep left to N.Washington for 30 yards TOUCHDOWN.,5,31,2012 -20121104_CHI@TEN,3,26,32,TEN,CHI,,,30,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,5,31,2012 -20121104_CHI@TEN,3,26,32,TEN,CHI,,,30,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,12,31,2012 -20121104_CHI@TEN,3,26,25,CHI,TEN,1,10,80,(11:25) M.Forte right guard to TEN 34 for 46 yards (M.Griffin). PENALTY on TEN-M.Griffin Horse Collar Tackle 15 yards enforced at TEN 34.,31,12,2012 -20121104_CHI@TEN,3,25,57,CHI,TEN,1,10,19,(10:57) M.Bush left guard to TEN 18 for 1 yard (S.Marks; J.Casey).,31,12,2012 -20121104_CHI@TEN,3,25,15,CHI,TEN,2,9,18,(10:15) (Shotgun) J.Cutler pass short middle to E.Bennett to TEN 9 for 9 yards (C.Sensabaugh).,31,12,2012 -20121104_CHI@TEN,3,24,37,CHI,TEN,1,9,9,(9:37) M.Bush up the middle to TEN 6 for 3 yards (S.Marks; Z.Brown).,31,12,2012 -20121104_CHI@TEN,3,23,56,CHI,TEN,2,6,6,(8:56) M.Bush up the middle to TEN 5 for 1 yard (J.Casey; C.McCarthy).,31,12,2012 -20121104_CHI@TEN,3,23,21,CHI,TEN,3,5,5,(8:21) J.Cutler pass short middle to M.Forte to TEN 7 for -2 yards (S.Marks).,31,12,2012 -20121104_CHI@TEN,3,22,41,CHI,TEN,4,7,7,(7:41) (Field Goal formation) R.Gould 25 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,31,12,2012 -20121104_CHI@TEN,3,22,41,CHI,TEN,,,7,R.Gould kicks 68 yards from CHI 35 to TEN -3. D.Reynaud to TEN 18 for 21 yards (A.Walters; B.Costanzo).,34,12,2012 -20121104_CHI@TEN,3,22,32,TEN,CHI,1,10,82,(7:32) C.Johnson left guard to TEN 20 for 2 yards (L.Briggs).,12,34,2012 -20121104_CHI@TEN,3,21,55,TEN,CHI,2,8,80,(6:55) (Shotgun) M.Hasselbeck pass short right to C.Stevens to TEN 34 for 14 yards (T.Jennings).,12,34,2012 -20121104_CHI@TEN,3,21,24,TEN,CHI,1,10,66,(6:24) M.Hasselbeck pass short left end to T.Thompson to TEN 41 for 7 yards (M.Wright).,12,34,2012 -20121104_CHI@TEN,3,20,53,TEN,CHI,2,3,59,(5:53) C.Johnson up the middle to TEN 43 for 2 yards (B.Urlacher).,12,34,2012 -20121104_CHI@TEN,3,20,12,TEN,CHI,3,1,57,(5:12) (Shotgun) M.Hasselbeck pass incomplete short right to J.Cook.,12,34,2012 -20121104_CHI@TEN,3,20,8,TEN,CHI,4,1,57,(5:08) (Punt formation) B.Kern punts 57 yards to end zone Center-B.Brinkley Touchback.,12,34,2012 -20121104_CHI@TEN,3,19,59,CHI,TEN,1,10,80,(4:59) J.Cutler pass short left to B.Marshall to CHI 38 for 18 yards (Z.Brown).,34,12,2012 -20121104_CHI@TEN,3,19,29,CHI,TEN,1,10,62,(4:29) J.Cutler pass short right to D.Hester to TEN 48 for 14 yards (A.Ayers).,34,12,2012 -20121104_CHI@TEN,3,18,46,CHI,TEN,1,10,48,(3:46) M.Forte right guard to TEN 48 for no gain (A.Ayers).,34,12,2012 -20121104_CHI@TEN,3,18,5,CHI,TEN,2,10,48,(3:05) J.Cutler pass incomplete short right to B.Marshall. PENALTY on TEN-J.McCourty Defensive Pass Interference 10 yards enforced at TEN 48 - No Play.,34,12,2012 -20121104_CHI@TEN,3,18,1,CHI,TEN,1,10,38,(3:01) J.Cutler pass deep right to B.Marshall to TEN 9 for 29 yards (J.McCourty) [A.Ayers].,34,12,2012 -20121104_CHI@TEN,3,17,16,CHI,TEN,1,9,9,(2:16) M.Forte right end to TEN 8 for 1 yard (Z.Brown; J.McCourty).,34,12,2012 -20121104_CHI@TEN,3,16,36,CHI,TEN,2,8,8,(1:36) (Shotgun) J.Cutler pass short middle to L.Louis to TEN 4 for 4 yards (S.Marks).,34,12,2012 -20121104_CHI@TEN,3,15,48,CHI,TEN,3,4,4,(:48) (Shotgun) J.Cutler pass incomplete short left to E.Bennett [D.Morgan].,34,12,2012 -20121104_CHI@TEN,3,15,43,CHI,TEN,4,4,4,(:43) (Field Goal formation) R.Gould 22 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,34,12,2012 -20121104_CHI@TEN,3,15,43,CHI,TEN,,,4,R.Gould kicks 62 yards from CHI 35 to TEN 3. D.Reynaud to TEN 12 for 9 yards (A.Allen).,37,12,2012 -20121104_CHI@TEN,3,15,32,TEN,CHI,1,10,88,(:32) (Shotgun) M.Hasselbeck pass incomplete short left to C.Johnson (T.Jennings).,12,37,2012 -20121104_CHI@TEN,3,15,27,TEN,CHI,2,10,88,(:27) (Shotgun) M.Hasselbeck pass short left to C.Johnson to TEN 20 for 8 yards (L.Briggs; S.McClellin).,12,37,2012 -20121104_CHI@TEN,4,15,0,TEN,CHI,3,2,80,(15:00) (Shotgun) PENALTY on TEN-K.Britt False Start 5 yards enforced at TEN 20 - No Play.,12,37,2012 -20121104_CHI@TEN,4,15,0,TEN,CHI,3,7,85,(15:00) (Shotgun) M.Hasselbeck pass short left to D.Williams to TEN 15 for no gain (C.Tillman).,12,37,2012 -20121104_CHI@TEN,4,14,21,TEN,CHI,4,7,85,(14:21) (Punt formation) B.Kern punts 59 yards to CHI 26 Center-B.Brinkley. D.Hester to CHI 35 for 9 yards (Q.Johnson).,12,37,2012 -20121104_CHI@TEN,4,14,10,CHI,TEN,1,10,65,(14:10) M.Forte right tackle to CHI 39 for 4 yards (D.Morgan; A.Verner).,37,12,2012 -20121104_CHI@TEN,4,13,25,CHI,TEN,2,6,61,(13:25) J.Cutler pass short left to E.Bennett to CHI 44 for 5 yards (A.Ayers).,37,12,2012 -20121104_CHI@TEN,4,12,41,CHI,TEN,3,1,56,(12:41) J.Cutler pass deep right to M.Bush to TEN 39 for 17 yards (C.McCarthy). Penalty on TEN-D.Morgan Defensive Holding declined.,37,12,2012 -20121104_CHI@TEN,4,12,8,CHI,TEN,1,10,39,(12:08) M.Bush right tackle to TEN 39 for no gain (A.Ayers).,37,12,2012 -20121104_CHI@TEN,4,11,27,CHI,TEN,2,10,39,(11:27) J.Cutler pass deep right to B.Marshall for 39 yards TOUCHDOWN.,37,12,2012 -20121104_CHI@TEN,4,11,27,CHI,TEN,,,39,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,37,12,2012 -20121104_CHI@TEN,4,11,27,CHI,TEN,,,39,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,44,12,2012 -20121104_CHI@TEN,4,11,21,TEN,CHI,1,10,80,(11:21) M.Hasselbeck pass short middle to J.Cook to TEN 25 for 5 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-K.Hayden at TEN 19. K.Hayden to TEN 4 for 15 yards (M.Hasselbeck). PENALTY on TEN-M.Hasselbeck Horse Collar Tackle 2 yards enforced at TEN 4.,12,44,2012 -20121104_CHI@TEN,4,11,8,CHI,TEN,1,2,2,(11:08) M.Bush left tackle to TEN 5 for -3 yards (Z.Brown).,44,12,2012 -20121104_CHI@TEN,4,10,28,CHI,TEN,2,5,5,(10:28) J.Cutler pass incomplete short right to E.Rodriguez.,44,12,2012 -20121104_CHI@TEN,4,10,24,CHI,TEN,3,5,5,(10:24) (Shotgun) J.Cutler pass short middle to B.Marshall for 5 yards TOUCHDOWN.,44,12,2012 -20121104_CHI@TEN,4,10,24,CHI,TEN,,,5,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,44,12,2012 -20121104_CHI@TEN,4,10,24,CHI,TEN,,,5,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,51,12,2012 -20121104_CHI@TEN,4,10,20,TEN,CHI,1,10,80,(10:20) C.Johnson right tackle for 80 yards TOUCHDOWN.,12,51,2012 -20121104_CHI@TEN,4,10,20,TEN,CHI,,,80,TWO-POINT CONVERSION ATTEMPT. M.Hasselbeck pass to K.Britt is complete. ATTEMPT SUCCEEDS.,12,51,2012 -20121104_CHI@TEN,4,10,20,TEN,CHI,,,80,R.Bironas kicks onside 12 yards from TEN 35 to TEN 47. S.McManis (didn't try to advance) to TEN 47 for no gain (R.Johnson). PENALTY on TEN Offside on Free Kick 5 yards enforced at TEN 47.,20,51,2012 -20121104_CHI@TEN,4,10,8,CHI,TEN,1,10,42,(10:08) A.Allen right end to TEN 32 for 10 yards (J.Casey).,51,20,2012 -20121104_CHI@TEN,4,9,22,CHI,TEN,1,10,32,(9:22) A.Allen right end to TEN 29 for 3 yards (J.McCourty). TEN-A.Afalava was injured during the play. His return is Questionable.,51,20,2012 -20121104_CHI@TEN,4,8,37,CHI,TEN,2,7,29,(8:37) A.Allen up the middle to TEN 23 for 6 yards (T.Shaw).,51,20,2012 -20121104_CHI@TEN,4,7,52,CHI,TEN,3,1,23,(7:52) A.Allen right guard to TEN 18 for 5 yards (Z.Brown).,51,20,2012 -20121104_CHI@TEN,4,7,7,CHI,TEN,1,10,18,(7:07) A.Allen left end to TEN 15 for 3 yards (J.Babineaux; T.Shaw).,51,20,2012 -20121104_CHI@TEN,4,6,23,CHI,TEN,2,7,15,(6:23) A.Allen up the middle to TEN 7 for 8 yards (T.Shaw).,51,20,2012 -20121104_CHI@TEN,4,5,38,CHI,TEN,1,7,7,(5:38) A.Allen up the middle to TEN 7 for no gain (J.McCourty).,51,20,2012 -20121104_CHI@TEN,4,4,53,CHI,TEN,2,7,7,(4:53) A.Allen up the middle to TEN 5 for 2 yards (M.Martin).,51,20,2012 -20121104_CHI@TEN,4,4,7,CHI,TEN,3,5,5,(4:07) A.Allen left end to TEN 12 for -7 yards (Z.Brown).,51,20,2012 -20121104_CHI@TEN,4,3,56,CHI,TEN,4,12,12,(3:56) A.Allen up the middle to TEN 10 for 2 yards (T.Shaw; J.Casey).,51,20,2012 -20121104_CHI@TEN,4,3,50,TEN,CHI,1,10,89,(3:50) M.Hasselbeck pass deep right to D.Williams to TEN 30 for 19 yards (C.Steltz).,20,51,2012 -20121104_CHI@TEN,4,3,15,TEN,CHI,1,10,70,(3:15) C.Johnson left end to TEN 37 for 7 yards (K.Hayden).,20,51,2012 -20121104_CHI@TEN,4,2,42,TEN,CHI,2,3,63,(2:42) M.Hasselbeck pass short right to C.Johnson to TEN 36 for -1 yards (Z.Bowman).,20,51,2012 -20121104_CHI@TEN,4,2,1,TEN,CHI,3,4,64,(2:01) (Shotgun) M.Hasselbeck pass incomplete short right to K.Britt (Z.Bowman).,20,51,2012 -20121104_CHI@TEN,4,1,57,TEN,CHI,4,4,64,(1:57) (Shotgun) M.Hasselbeck sacked at TEN 28 for -8 yards (C.Wootton).,20,51,2012 -20121104_CHI@TEN,4,1,49,CHI,TEN,1,10,28,(1:49) J.Campbell kneels to TEN 29 for -1 yards.,51,20,2012 -20121104_CHI@TEN,4,1,7,CHI,TEN,2,11,29,(1:07) J.Campbell kneels to TEN 30 for -1 yards.,51,20,2012 -20121104_CHI@TEN,4,0,27,CHI,TEN,3,12,30,(:27) J.Campbell kneels to TEN 31 for -1 yards.,51,20,2012 -20121104_CHI@TEN,4,0,27,CHI,TEN,,,30,                      ,51,20,2012 -20121104_CAR@WAS,1,0,0,WAS,CAR,,,30,K.Forbath kicks 70 yards from WAS 35 to CAR -5. K.Pilares Touchback.,0,0,2012 -20121104_CAR@WAS,1,60,0,CAR,WAS,1,10,80,(15:00) C.Newton pass short right to G.Barnidge to CAR 33 for 13 yards (L.Fletcher).,0,0,2012 -20121104_CAR@WAS,1,59,14,CAR,WAS,1,10,67,(14:14) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (D.Hall).,0,0,2012 -20121104_CAR@WAS,1,59,10,CAR,WAS,2,10,67,(14:10) (Shotgun) J.Stewart left end to CAR 44 for 11 yards (Mad.Williams R.Doughty).,0,0,2012 -20121104_CAR@WAS,1,58,27,CAR,WAS,1,10,56,(13:27) D.Williams right guard to CAR 48 for 4 yards (R.Doughty D.Hall).,0,0,2012 -20121104_CAR@WAS,1,57,47,CAR,WAS,2,6,52,(12:47) (Shotgun) C.Newton pass short right to G.Olsen to WAS 39 for 13 yards (L.Fletcher).,0,0,2012 -20121104_CAR@WAS,1,57,6,CAR,WAS,1,10,39,(12:06) C.Newton pass incomplete short left to S.Smith.,0,0,2012 -20121104_CAR@WAS,1,57,0,CAR,WAS,2,10,39,(12:00) (Shotgun) J.Stewart up the middle to WAS 38 for 1 yard (S.Bowen; R.Kerrigan).,0,0,2012 -20121104_CAR@WAS,1,56,18,CAR,WAS,3,9,38,(11:18) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,0,0,2012 -20121104_CAR@WAS,1,56,13,CAR,WAS,4,9,38,(11:13) B.Nortman punts 35 yards to WAS 3 Center-J.Jansen downed by CAR-K.Pilares.,0,0,2012 -20121104_CAR@WAS,1,56,5,WAS,CAR,1,10,97,(11:05) R.Griffin pass incomplete deep middle to A.Robinson.,0,0,2012 -20121104_CAR@WAS,1,56,1,WAS,CAR,2,10,97,(11:01) R.Griffin pass incomplete short right to C.Cooley.,0,0,2012 -20121104_CAR@WAS,1,55,56,WAS,CAR,3,10,97,(10:56) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 8 for 5 yards (T.Davis) [G.Hardy]. PENALTY on CAR-G.Hardy Roughing the Passer 15 yards enforced at WAS 8.,0,0,2012 -20121104_CAR@WAS,1,55,26,WAS,CAR,1,10,77,(10:26) (Shotgun) A.Morris up the middle to WAS 25 for 2 yards (G.Hardy D.Edwards).,0,0,2012 -20121104_CAR@WAS,1,54,50,WAS,CAR,2,8,75,(9:50) (Shotgun) A.Morris left guard to WAS 27 for 2 yards (L.Kuechly).,0,0,2012 -20121104_CAR@WAS,1,54,7,WAS,CAR,3,6,73,(9:07) (Shotgun) R.Griffin pass deep middle to J.Morgan to WAS 43 for 16 yards (H.Nakamura).,0,0,2012 -20121104_CAR@WAS,1,53,25,WAS,CAR,1,10,57,(8:25) (Shotgun) A.Morris right end pushed ob at CAR 41 for 16 yards (C.Munnerlyn; H.Nakamura).,0,0,2012 -20121104_CAR@WAS,1,52,44,WAS,CAR,1,10,41,(7:44) (Shotgun) R.Griffin pass short left to L.Paulsen to CAR 29 for 12 yards (H.Nakamura).,0,0,2012 -20121104_CAR@WAS,1,51,58,WAS,CAR,1,10,29,(6:58) (Shotgun) R.Griffin right tackle to CAR 21 for 8 yards (J.Norman; S.Fua).,0,0,2012 -20121104_CAR@WAS,1,51,13,WAS,CAR,2,2,21,(6:13) (Shotgun) R.Griffin pass short right to D.Young to CAR 20 for 1 yard (C.Godfrey). PENALTY on WAS-T.Williams Offensive Holding 10 yards enforced at CAR 21 - No Play.,0,0,2012 -20121104_CAR@WAS,1,50,45,WAS,CAR,2,12,31,(5:45) (Shotgun) E.Royster left guard to CAR 31 for no gain (S.Fua; D.Edwards).,0,0,2012 -20121104_CAR@WAS,1,50,6,WAS,CAR,3,12,31,(5:06) (Shotgun) R.Griffin pass short right to S.Moss to CAR 29 for 2 yards (G.Hardy; D.Edwards).,0,0,2012 -20121104_CAR@WAS,1,49,26,WAS,CAR,4,10,29,(4:26) K.Forbath 47 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,0,0,2012 -20121104_CAR@WAS,1,49,26,WAS,CAR,,,29,K.Forbath kicks 61 yards from WAS 35 to CAR 4. K.Pilares to CAR 31 for 27 yards (D.Gomes).,3,0,2012 -20121104_CAR@WAS,1,49,14,CAR,WAS,1,10,69,(4:14) J.Stewart left tackle to CAR 32 for 1 yard (C.Baker D.Hall).,0,3,2012 -20121104_CAR@WAS,1,48,34,CAR,WAS,2,9,68,(3:34) (Shotgun) C.Newton pass short middle to S.Smith to CAR 40 for 8 yards (J.Wilson Mad.Williams).,0,3,2012 -20121104_CAR@WAS,1,47,49,CAR,WAS,3,1,60,(2:49) (Shotgun) C.Newton left end to CAR 43 for 3 yards (R.Doughty P.Riley).,0,3,2012 -20121104_CAR@WAS,1,47,5,CAR,WAS,1,10,57,(2:05) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,0,3,2012 -20121104_CAR@WAS,1,46,59,CAR,WAS,2,10,57,(1:59) (Shotgun) J.Stewart right end to WAS 40 for 17 yards (R.Doughty Mad.Williams).,0,3,2012 -20121104_CAR@WAS,1,46,18,CAR,WAS,1,10,40,(1:18) (Shotgun) C.Newton right end to WAS 30 for 10 yards (R.Doughty).,0,3,2012 -20121104_CAR@WAS,1,45,33,CAR,WAS,1,10,30,(:33) (Shotgun) D.Williams right end for 30 yards TOUCHDOWN.,0,3,2012 -20121104_CAR@WAS,1,45,33,CAR,WAS,,,30,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,3,2012 -20121104_CAR@WAS,1,45,33,CAR,WAS,,,30,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,3,2012 -20121104_CAR@WAS,1,45,24,WAS,CAR,1,10,80,(:24) (Shotgun) A.Morris left end to WAS 24 for 4 yards (L.Kuechly C.Johnson).,3,7,2012 -20121104_CAR@WAS,2,45,0,WAS,CAR,2,6,76,(15:00) (Shotgun) A.Morris left end to WAS 33 for 9 yards (C.Jones; H.Nakamura).,3,7,2012 -20121104_CAR@WAS,2,44,20,WAS,CAR,1,10,67,(14:20) (Shotgun) A.Morris right end to WAS 45 for 12 yards (C.Godfrey; J.Norman).,3,7,2012 -20121104_CAR@WAS,2,43,35,WAS,CAR,1,10,55,(13:35) (Shotgun) PENALTY on WAS-N.Paul False Start 5 yards enforced at WAS 45 - No Play.,3,7,2012 -20121104_CAR@WAS,2,43,8,WAS,CAR,1,15,60,(13:08) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan (H.Nakamura). PENALTY on CAR-H.Nakamura Personal Foul 15 yards enforced at WAS 40 - No Play. Illegal contact on defenseless receiver,3,7,2012 -20121104_CAR@WAS,2,43,3,WAS,CAR,1,10,45,(13:03) (Shotgun) A.Morris left end to CAR 41 for 4 yards (J.Norman; D.Edwards).,3,7,2012 -20121104_CAR@WAS,2,42,25,WAS,CAR,2,6,41,(12:25) E.Royster left end to CAR 40 for 1 yard (J.Anderson; R.Edwards).,3,7,2012 -20121104_CAR@WAS,2,41,44,WAS,CAR,3,5,40,(11:44) (Shotgun) PENALTY on WAS-L.Paulsen False Start 5 yards enforced at CAR 40 - No Play.,3,7,2012 -20121104_CAR@WAS,2,41,20,WAS,CAR,3,10,45,(11:20) (Shotgun) R.Griffin scrambles left end to CAR 38 for 7 yards (G.Hardy J.Norman). CAR-T.Davis was injured during the play.,3,7,2012 -20121104_CAR@WAS,2,40,54,WAS,CAR,4,3,38,(10:54) (Shotgun) R.Griffin pass short right to J.Morgan to CAR 32 for 6 yards (C.Munnerlyn).,3,7,2012 -20121104_CAR@WAS,2,40,13,WAS,CAR,1,10,32,(10:13) (Shotgun) R.Griffin pass short middle to J.Morgan to CAR 19 for 13 yards (J.Norman).,3,7,2012 -20121104_CAR@WAS,2,39,34,WAS,CAR,1,10,19,(9:34) R.Griffin pass incomplete short right to J.Morgan (J.Anderson) [H.Nakamura].,3,7,2012 -20121104_CAR@WAS,2,39,14,WAS,CAR,2,10,19,(9:14) A.Morris left end pushed ob at CAR 17 for 2 yards (T.Davis; L.Kuechly).,3,7,2012 -20121104_CAR@WAS,2,38,43,WAS,CAR,3,8,17,(8:43) (Shotgun) R.Griffin pass short left to E.Royster to CAR 10 for 7 yards (C.Godfrey; C.Munnerlyn).,3,7,2012 -20121104_CAR@WAS,2,37,59,WAS,CAR,4,1,10,(7:59) D.Young left guard to CAR 7 for 3 yards (T.Davis; L.Kuechly).,3,7,2012 -20121104_CAR@WAS,2,37,20,WAS,CAR,1,7,7,(7:20) A.Morris left tackle to CAR 2 for 5 yards (H.Nakamura; J.Anderson).,3,7,2012 -20121104_CAR@WAS,2,36,46,WAS,CAR,2,2,2,(6:46) A.Morris left end to CAR 4 for -2 yards (T.Davis; F.Alexander).,3,7,2012 -20121104_CAR@WAS,2,36,4,WAS,CAR,3,4,4,(6:04) (Shotgun) R.Griffin pass short right to B.Banks to CAR 2 for 2 yards (C.Godfrey C.Munnerlyn).,3,7,2012 -20121104_CAR@WAS,2,35,21,WAS,CAR,4,2,2,(5:21) (Shotgun) R.Griffin right end pushed ob at CAR 2 for no gain (C.Johnson).,3,7,2012 -20121104_CAR@WAS,2,35,13,CAR,WAS,1,10,98,(5:13) M.Tolbert right guard to CAR 3 for 1 yard (B.Cofield; L.Fletcher).,7,3,2012 -20121104_CAR@WAS,2,34,33,CAR,WAS,2,9,97,(4:33) C.Newton pass short right to M.Tolbert pushed ob at CAR 10 for 7 yards (R.Doughty).,7,3,2012 -20121104_CAR@WAS,2,33,55,CAR,WAS,1,10,63,(3:55) (Shotgun) C.Newton left guard to CAR 21 for -16 yards (L.Alexander).,7,3,2012 -20121104_CAR@WAS,2,33,11,CAR,WAS,1,10,79,(3:11) (Shotgun) C.Newton scrambles right end pushed ob at CAR 25 for 4 yards (R.Doughty).,7,3,2012 -20121104_CAR@WAS,2,32,36,CAR,WAS,2,6,75,(2:36) (Shotgun) C.Newton right end to CAR 25 for no gain (P.Riley).,7,3,2012 -20121104_CAR@WAS,2,32,0,CAR,WAS,3,6,75,(2:00) (Shotgun) C.Newton pass short right to G.Olsen pushed ob at CAR 42 for 17 yards (P.Riley).,7,3,2012 -20121104_CAR@WAS,2,31,53,CAR,WAS,1,10,58,(1:53) (Shotgun) C.Newton pass short middle to J.Stewart pushed ob at CAR 48 for 6 yards (J.Pugh) [S.Bowen].,7,3,2012 -20121104_CAR@WAS,2,31,43,CAR,WAS,2,4,52,(1:43) (Shotgun) C.Newton pass incomplete short middle to S.Smith. PENALTY on WAS-L.Fletcher Roughing the Passer 15 yards enforced at CAR 48 - No Play.,7,3,2012 -20121104_CAR@WAS,2,31,40,CAR,WAS,1,10,37,(1:40) (Shotgun) C.Newton scrambles right guard to WAS 34 for 3 yards (D.Hall; L.Fletcher).,7,3,2012 -20121104_CAR@WAS,2,31,18,CAR,WAS,2,7,34,(1:18) (No Huddle Shotgun) C.Newton pass short right to G.Olsen ran ob at WAS 26 for 8 yards.,7,3,2012 -20121104_CAR@WAS,2,31,14,CAR,WAS,1,10,26,(1:14) (Shotgun) C.Newton pass incomplete short middle to S.Smith (J.Wilson). PENALTY on WAS-J.Wilson Defensive Pass Interference 7 yards enforced at WAS 26 - No Play.,7,3,2012 -20121104_CAR@WAS,2,31,10,CAR,WAS,1,10,19,(1:10) (Shotgun) C.Newton pass incomplete short left to K.Pilares.,7,3,2012 -20121104_CAR@WAS,2,31,8,CAR,WAS,2,10,19,(1:08) (Shotgun) C.Newton pass incomplete deep right to S.Smith.,7,3,2012 -20121104_CAR@WAS,2,31,3,CAR,WAS,3,10,19,(1:03) (Shotgun) C.Newton pass deep left to S.Smith for 19 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,7,3,2012 -20121104_CAR@WAS,2,31,3,CAR,WAS,,,19,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,3,2012 -20121104_CAR@WAS,2,31,3,CAR,WAS,,,19,J.Medlock kicks 64 yards from CAR 35 to WAS 1. B.Banks to WAS 18 for 17 yards (C.Jones; J.Thomas). PENALTY on WAS-R.Doughty Illegal Block Above the Waist 5 yards enforced at WAS 10.,14,3,2012 -20121104_CAR@WAS,2,30,49,WAS,CAR,1,10,95,(:49) (Shotgun) R.Griffin pass short left to L.Paulsen to WAS 15 for 10 yards (T.Davis; J.Norman).,3,14,2012 -20121104_CAR@WAS,2,30,22,WAS,CAR,1,10,85,(:22) (No Huddle Shotgun) R.Griffin pass incomplete short middle to L.Paulsen.,3,14,2012 -20121104_CAR@WAS,2,30,18,WAS,CAR,2,10,85,(:18) (Shotgun) E.Royster right guard to WAS 18 for 3 yards (D.Edwards; S.Fua).,3,14,2012 -20121104_CAR@WAS,3,30,0,CAR,WAS,,,85,J.Medlock kicks 68 yards from CAR 35 to WAS -3. B.Banks to WAS 22 for 25 yards (K.Pilares; D.Hogue).,14,3,2012 -20121104_CAR@WAS,3,29,55,WAS,CAR,1,10,78,(14:55) (Shotgun) R.Griffin pass short right to J.Morgan pushed ob at WAS 23 for 1 yard (J.Thomas; L.Kuechly).,3,14,2012 -20121104_CAR@WAS,3,29,27,WAS,CAR,2,9,77,(14:27) (Shotgun) A.Morris right end pushed ob at WAS 41 for 18 yards (L.Kuechly C.Godfrey).,3,14,2012 -20121104_CAR@WAS,3,28,51,WAS,CAR,1,10,59,(13:51) (Shotgun) A.Morris up the middle to WAS 41 for no gain (L.Kuechly G.Hardy).,3,14,2012 -20121104_CAR@WAS,3,28,17,WAS,CAR,2,10,59,(13:17) (Shotgun) R.Griffin pass short left to L.Paulsen to CAR 45 for 14 yards (J.Norman). Carolina challenged the pass completion ruling and the play was REVERSED. (Shotgun) R.Griffin pass incomplete short left to L.Paulsen.,3,14,2012 -20121104_CAR@WAS,3,28,12,WAS,CAR,3,10,59,(13:12) (Shotgun) R.Griffin sacked at WAS 34 for -7 yards (sack split by C.Johnson and D.Edwards).,3,14,2012 -20121104_CAR@WAS,3,27,48,WAS,CAR,4,17,66,(12:48) S.Rocca punts 49 yards to CAR 17 Center-J.Snow. C.Munnerlyn to CAR 17 for no gain (N.Paul).,3,14,2012 -20121104_CAR@WAS,3,27,39,CAR,WAS,1,10,83,(12:39) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 22 for 5 yards (L.Fletcher).,14,3,2012 -20121104_CAR@WAS,3,26,58,CAR,WAS,2,5,78,(11:58) D.Williams left guard to CAR 23 for 1 yard (S.Bowen; R.Doughty).,14,3,2012 -20121104_CAR@WAS,3,26,17,CAR,WAS,3,4,77,(11:17) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,14,3,2012 -20121104_CAR@WAS,3,26,13,CAR,WAS,4,4,77,(11:13) B.Nortman punts 49 yards to WAS 28 Center-J.Jansen. B.Banks to WAS 23 for -5 yards (J.Thomas H.Nakamura).,14,3,2012 -20121104_CAR@WAS,3,26,2,WAS,CAR,1,10,77,(11:02) (Shotgun) R.Griffin pass deep left to L.Hankerson pushed ob at WAS 48 for 25 yards (J.Norman).,3,14,2012 -20121104_CAR@WAS,3,25,38,WAS,CAR,1,10,52,(10:38) (Shotgun) R.Griffin right end to CAR 43 for 9 yards (J.Norman).,3,14,2012 -20121104_CAR@WAS,3,25,3,WAS,CAR,2,1,43,(10:03) (Shotgun) J.Morgan left end to CAR 34 for 9 yards (J.Anderson).,3,14,2012 -20121104_CAR@WAS,3,24,22,WAS,CAR,1,10,34,(9:22) (Shotgun) R.Griffin scrambles right end pushed ob at CAR 28 for 6 yards (T.Davis).,3,14,2012 -20121104_CAR@WAS,3,23,42,WAS,CAR,2,4,28,(8:42) (Shotgun) D.Briscoe right end to CAR 23 for 5 yards. PENALTY on WAS-C.Cooley Illegal Block Above the Waist 10 yards enforced at CAR 27.,3,14,2012 -20121104_CAR@WAS,3,23,8,WAS,CAR,2,13,37,(8:08) (Shotgun) R.Griffin pass deep left to N.Paul to CAR 15 for 22 yards (L.Kuechly).,3,14,2012 -20121104_CAR@WAS,3,22,27,WAS,CAR,1,10,15,(7:27) (Shotgun) R.Griffin scrambles right end pushed ob at CAR 11 for 4 yards (N.Chandler).,3,14,2012 -20121104_CAR@WAS,3,21,55,WAS,CAR,2,6,11,(6:55) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan (J.Norman).,3,14,2012 -20121104_CAR@WAS,3,21,51,WAS,CAR,3,6,11,(6:51) (Shotgun) B.Banks left end pushed ob at CAR 8 for 3 yards (L.Kuechly).,3,14,2012 -20121104_CAR@WAS,3,21,7,WAS,CAR,4,3,8,(6:07) K.Forbath 25 yard field goal is GOOD Center-J.Snow Holder-S.Rocca.,3,14,2012 -20121104_CAR@WAS,3,21,7,WAS,CAR,,,8,K.Forbath kicks 62 yards from WAS 35 to CAR 3. K.Pilares to CAR 25 for 22 yards (D.Hall). CAR-K.Pilares was injured during the play.,6,14,2012 -20121104_CAR@WAS,3,20,55,CAR,WAS,1,10,75,(5:55) (Shotgun) C.Newton pass incomplete short right to G.Olsen. PENALTY on CAR-J.Gross Face Mask (15 Yards) 12 yards enforced at CAR 25 - No Play.,14,6,2012 -20121104_CAR@WAS,3,20,55,CAR,WAS,1,22,87,(5:55) (Shotgun) J.Stewart left end to CAR 34 for 21 yards (L.Fletcher).,14,6,2012 -20121104_CAR@WAS,3,20,6,CAR,WAS,2,1,66,(5:06) M.Tolbert up the middle to CAR 37 for 3 yards (S.Bowen).,14,6,2012 -20121104_CAR@WAS,3,19,29,CAR,WAS,1,10,63,(4:29) C.Newton pass incomplete deep right to L.Murphy.,14,6,2012 -20121104_CAR@WAS,3,19,22,CAR,WAS,2,10,63,(4:22) (Shotgun) PENALTY on CAR-C.Newton Delay of Game 5 yards enforced at CAR 37 - No Play.,14,6,2012 -20121104_CAR@WAS,3,19,22,CAR,WAS,2,15,68,(4:22) (Shotgun) C.Newton pass short right to S.Smith ran ob at CAR 46 for 14 yards.,14,6,2012 -20121104_CAR@WAS,3,19,0,CAR,WAS,3,1,54,(4:00) M.Tolbert right tackle to CAR 46 for no gain (R.Jackson).,14,6,2012 -20121104_CAR@WAS,3,18,25,CAR,WAS,4,1,54,(3:25) B.Nortman punts 14 yards to WAS 40 Center-J.Jansen out of bounds.,14,6,2012 -20121104_CAR@WAS,3,18,18,WAS,CAR,1,10,60,(3:18) (Shotgun) A.Morris right end to WAS 44 for 4 yards (D.Edwards L.Kuechly). PENALTY on WAS-D.Young Offensive Holding 10 yards enforced at WAS 40 - No Play.,6,14,2012 -20121104_CAR@WAS,3,17,48,WAS,CAR,1,20,70,(2:48) (Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 47 for 17 yards (C.Munnerlyn; L.Kuechly).,6,14,2012 -20121104_CAR@WAS,3,17,48,WAS,CAR,2,3,53,(2:48) PENALTY on CAR-D.Edwards Neutral Zone Infraction 5 yards enforced at WAS 47 - No Play.,6,14,2012 -20121104_CAR@WAS,3,16,52,WAS,CAR,1,10,48,(1:52) (Shotgun) A.Morris right end to CAR 44 for 4 yards (G.Hardy).,6,14,2012 -20121104_CAR@WAS,3,16,19,WAS,CAR,2,6,44,(1:19) (Shotgun) R.Griffin pass short right to D.Briscoe pushed ob at CAR 36 for 8 yards (C.Munnerlyn).,6,14,2012 -20121104_CAR@WAS,3,15,54,WAS,CAR,1,10,36,(:54) (Shotgun) R.Griffin scrambles left guard to CAR 36 for no gain (C.Munnerlyn L.Kuechly).,6,14,2012 -20121104_CAR@WAS,3,15,16,WAS,CAR,2,10,36,(:16) R.Griffin pass short left to D.Young pushed ob at CAR 30 for 6 yards (C.Munnerlyn). PENALTY on WAS-K.Lichtensteiger Ineligible Downfield Pass 5 yards enforced at CAR 36 - No Play.,6,14,2012 -20121104_CAR@WAS,4,15,0,WAS,CAR,2,15,41,(15:00) R.Griffin sacked at CAR 46 for -5 yards (C.Johnson).,6,14,2012 -20121104_CAR@WAS,4,14,31,WAS,CAR,3,20,46,(14:31) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,6,14,2012 -20121104_CAR@WAS,4,14,25,WAS,CAR,4,20,46,(14:25) S.Rocca punts 37 yards to CAR 9 Center-J.Snow fair catch by C.Munnerlyn.,6,14,2012 -20121104_CAR@WAS,4,14,17,CAR,WAS,1,10,91,(14:17) (Shotgun) C.Newton pass deep left to A.Edwards pushed ob at WAS 9 for 82 yards (C.Griffin).,14,6,2012 -20121104_CAR@WAS,4,13,41,CAR,WAS,1,9,9,(13:41) (Shotgun) Direct snap to D.Williams. D.Williams left guard to WAS 6 for 3 yards (Mad.Williams).,14,6,2012 -20121104_CAR@WAS,4,12,56,CAR,WAS,2,6,6,(12:56) C.Newton pass incomplete short left to S.Smith. PENALTY on WAS-J.Wilson Defensive Pass Interference 5 yards enforced at WAS 6 - No Play.,14,6,2012 -20121104_CAR@WAS,4,12,47,CAR,WAS,1,1,1,(12:47) (Shotgun) G.Williams reported in as eligible. C.Newton left guard for 1 yard TOUCHDOWN.,14,6,2012 -20121104_CAR@WAS,4,12,47,CAR,WAS,,,1,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,6,2012 -20121104_CAR@WAS,4,12,47,CAR,WAS,,,1,J.Medlock kicks 64 yards from CAR 35 to WAS 1. B.Banks pushed ob at WAS 22 for 21 yards (J.Phillips).,21,6,2012 -20121104_CAR@WAS,4,12,39,WAS,CAR,1,10,78,(12:39) R.Griffin pass incomplete short right to L.Paulsen.,6,21,2012 -20121104_CAR@WAS,4,12,34,WAS,CAR,2,10,78,(12:34) (Shotgun) R.Griffin up the middle to WAS 20 for -2 yards (T.Davis).,6,21,2012 -20121104_CAR@WAS,4,11,58,WAS,CAR,3,12,80,(11:58) (Shotgun) R.Griffin sacked at WAS 12 for -8 yards (G.Hardy).,6,21,2012 -20121104_CAR@WAS,4,11,38,WAS,CAR,4,20,88,(11:38) S.Rocca punts 51 yards to CAR 37 Center-J.Snow. C.Munnerlyn pushed ob at CAR 45 for 8 yards (D.Gomes).,6,21,2012 -20121104_CAR@WAS,4,11,26,CAR,WAS,1,10,55,(11:26) C.Newton pass short right to G.Olsen to 50 for 5 yards (L.Fletcher).,21,6,2012 -20121104_CAR@WAS,4,10,44,CAR,WAS,2,5,50,(10:44) D.Williams right guard to WAS 49 for 1 yard (L.Fletcher; C.Baker).,21,6,2012 -20121104_CAR@WAS,4,10,1,CAR,WAS,3,4,49,(10:01) (Shotgun) C.Newton left tackle to WAS 44 for 5 yards (Mad.Williams).,21,6,2012 -20121104_CAR@WAS,4,9,23,CAR,WAS,1,10,44,(9:23) (Shotgun) J.Stewart left end to WAS 41 for 3 yards (P.Riley R.Doughty).,21,6,2012 -20121104_CAR@WAS,4,8,38,CAR,WAS,2,7,41,(8:38) (Shotgun) J.Stewart right end to WAS 43 for -2 yards (B.Cofield).,21,6,2012 -20121104_CAR@WAS,4,7,52,CAR,WAS,3,9,43,(7:52) (Shotgun) C.Newton pass incomplete short middle to S.Smith [L.Alexander].,21,6,2012 -20121104_CAR@WAS,4,7,46,CAR,WAS,4,9,43,(7:46) B.Nortman punts 29 yards to WAS 14 Center-J.Jansen downed by CAR-G.Barnidge.,21,6,2012 -20121104_CAR@WAS,4,7,37,WAS,CAR,1,10,86,(7:37) (Shotgun) R.Griffin pass incomplete short left to J.Morgan.,6,21,2012 -20121104_CAR@WAS,4,7,33,WAS,CAR,2,10,86,(7:33) (Shotgun) R.Griffin pass short middle to E.Royster to WAS 20 for 6 yards (L.Kuechly).,6,21,2012 -20121104_CAR@WAS,4,7,10,WAS,CAR,3,4,80,(7:10) (No Huddle Shotgun) R.Griffin left end pushed ob at WAS 26 for 6 yards (C.Munnerlyn). Penalty on CAR-C.Johnson Defensive Offside declined.,6,21,2012 -20121104_CAR@WAS,4,6,44,WAS,CAR,1,10,74,(6:44) (Shotgun) R.Griffin pass short left to E.Royster to WAS 43 for 17 yards (S.Martin) [N.Chandler].,6,21,2012 -20121104_CAR@WAS,4,6,19,WAS,CAR,1,10,57,(6:19) (No Huddle Shotgun) R.Griffin pass incomplete short left to E.Royster.,6,21,2012 -20121104_CAR@WAS,4,6,11,WAS,CAR,2,10,57,(6:11) (Shotgun) R.Griffin pass incomplete short right to A.Morris.,6,21,2012 -20121104_CAR@WAS,4,6,7,WAS,CAR,3,10,57,(6:07) (Shotgun) R.Griffin pass incomplete short left to J.Morgan.,6,21,2012 -20121104_CAR@WAS,4,6,3,WAS,CAR,4,10,57,(6:03) (Shotgun) R.Griffin sacked at WAS 34 for -9 yards (sack split by G.Hardy and C.Johnson).,6,21,2012 -20121104_CAR@WAS,4,6,3,CAR,WAS,1,10,34,(6:03) D.Williams left end to WAS 36 for -2 yards (K.Golston).,21,6,2012 -20121104_CAR@WAS,4,5,25,CAR,WAS,2,12,36,(5:25) C.Newton pass incomplete deep right to S.Smith (D.Hall).,21,6,2012 -20121104_CAR@WAS,4,5,15,CAR,WAS,3,12,36,(5:15) (Shotgun) C.Newton pass short right to L.Murphy to WAS 32 for 4 yards (P.Riley).,21,6,2012 -20121104_CAR@WAS,4,4,27,CAR,WAS,4,8,32,(4:27) J.Medlock 50 yard field goal is No Good Short Center-J.Jansen Holder-B.Nortman.,21,6,2012 -20121104_CAR@WAS,4,4,22,WAS,CAR,1,10,60,(4:22) (Shotgun) R.Griffin pass short left to J.Morgan pushed ob at WAS 45 for 5 yards (J.Norman).,6,21,2012 -20121104_CAR@WAS,4,4,17,WAS,CAR,2,5,55,(4:17) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan (T.Davis).,6,21,2012 -20121104_CAR@WAS,4,4,13,WAS,CAR,3,5,55,(4:13) (Shotgun) R.Griffin pass short left to L.Paulsen to CAR 43 for 12 yards (T.Davis).,6,21,2012 -20121104_CAR@WAS,4,3,47,WAS,CAR,1,10,43,(3:47) (Shotgun) R.Griffin pass incomplete deep middle to L.Hankerson (S.Martin).,6,21,2012 -20121104_CAR@WAS,4,3,40,WAS,CAR,2,10,43,(3:40) (Shotgun) R.Griffin pass short right to L.Paulsen to CAR 37 for 6 yards (L.Kuechly).,6,21,2012 -20121104_CAR@WAS,4,3,22,WAS,CAR,3,4,37,(3:22) (No Huddle Shotgun) R.Griffin pass incomplete short left to S.Moss (J.Norman). WAS-S.Moss was injured during the play.,6,21,2012 -20121104_CAR@WAS,4,3,19,WAS,CAR,4,4,37,(3:19) (Shotgun) R.Griffin scrambles up the middle to CAR 29 for 8 yards (C.Munnerlyn; J.Anderson).,6,21,2012 -20121104_CAR@WAS,4,2,58,WAS,CAR,1,10,29,(2:58) (No Huddle Shotgun) R.Griffin pass deep middle to L.Paulsen to CAR 10 for 19 yards (C.Godfrey).,6,21,2012 -20121104_CAR@WAS,4,2,31,WAS,CAR,1,10,10,(2:31) (No Huddle Shotgun) R.Griffin pass short middle to L.Hankerson to CAR 3 for 7 yards (L.Kuechly; J.Anderson).,6,21,2012 -20121104_CAR@WAS,4,2,6,WAS,CAR,2,3,3,(2:06) (No Huddle Shotgun) R.Griffin pass incomplete short middle to N.Paul (C.Godfrey).,6,21,2012 -20121104_CAR@WAS,4,2,3,WAS,CAR,3,3,3,(2:03) (Shotgun) R.Griffin left tackle for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on WAS-W.Montgomery Offensive Holding 10 yards enforced at CAR 3 - No Play.,6,21,2012 -20121104_CAR@WAS,4,1,57,WAS,CAR,3,13,13,(1:57) (Shotgun) R.Griffin scrambles right end to CAR 6 for 7 yards (T.Davis). PENALTY on CAR-T.Davis Unnecessary Roughness 3 yards enforced at CAR 6.,6,21,2012 -20121104_CAR@WAS,4,1,49,WAS,CAR,1,3,3,(1:49) (Shotgun) R.Griffin pass short left to L.Hankerson for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on WAS Illegal Formation 5 yards enforced at CAR 3 - No Play. Neither receiver was on the line of scrimmage.,6,21,2012 -20121104_CAR@WAS,4,1,43,WAS,CAR,1,8,8,(1:43) (Shotgun) R.Griffin pass short middle to A.Robinson to CAR 2 for 6 yards (S.Martin).,6,21,2012 -20121104_CAR@WAS,4,1,34,WAS,CAR,2,2,2,(1:34) (Shotgun) E.Royster left end for 2 yards TOUCHDOWN.,6,21,2012 -20121104_CAR@WAS,4,1,34,WAS,CAR,,,2,K.Forbath extra point is GOOD Center-J.Snow Holder-S.Rocca.,6,21,2012 -20121104_CAR@WAS,4,1,34,WAS,CAR,,,2,K.Forbath kicks onside 14 yards from WAS 35 to WAS 49. S.Smith (didn't try to advance) to WAS 49 for no gain.,13,21,2012 -20121104_CAR@WAS,4,1,27,CAR,WAS,1,10,49,(1:27) PENALTY on WAS-R.Kerrigan Neutral Zone Infraction 5 yards enforced at WAS 49 - No Play.,21,13,2012 -20121104_CAR@WAS,4,1,27,CAR,WAS,1,5,44,(1:27) J.Stewart left tackle to WAS 43 for 1 yard (R.Doughty; S.Bowen).,21,13,2012 -20121104_CAR@WAS,4,1,22,CAR,WAS,2,4,43,(1:22) J.Stewart right tackle to WAS 43 for no gain (R.Jackson; J.Wilson).,21,13,2012 -20121104_CAR@WAS,4,1,15,CAR,WAS,3,4,43,(1:15) J.Stewart left tackle to WAS 45 for -2 yards (J.Wilson; S.Bowen).,21,13,2012 -20121104_CAR@WAS,4,1,15,CAR,WAS,4,6,45,(1:15) (Punt formation) PENALTY on CAR-B.Nortman Delay of Game 5 yards enforced at WAS 45 - No Play.,21,13,2012 -20121104_CAR@WAS,4,0,29,CAR,WAS,4,11,50,(:29) B.Nortman punts 34 yards to WAS 16 Center-J.Jansen. B.Banks pushed ob at WAS 17 for 1 yard (J.Senn). Penalty on WAS-K.Robinson Running Into the Kicker declined.,21,13,2012 -20121104_CAR@WAS,4,0,17,WAS,CAR,1,10,83,(:17) (Shotgun) R.Griffin pass short right to B.Banks to WAS 8 for -9 yards (L.Kuechly).,13,21,2012 -20121104_CAR@WAS,4,0,17,WAS,CAR,,,83,                      ,13,21,2012 -20121104_TB@OAK,1,0,0,TB,OAK,,,83,M.Koenen kicks 70 yards from TB 35 to OAK -5. M.Goodson to OAK 17 for 22 yards (A.Hayward).,0,0,2012 -20121104_TB@OAK,1,59,55,OAK,TB,1,10,83,(14:55) C.Palmer pass incomplete short left to D.Moore.,0,0,2012 -20121104_TB@OAK,1,59,52,OAK,TB,2,10,83,(14:52) (No Huddle) C.Palmer pass incomplete deep middle to D.Moore.,0,0,2012 -20121104_TB@OAK,1,59,45,OAK,TB,3,10,83,(14:45) (No Huddle) PENALTY on TB-R.Barber Encroachment 5 yards enforced at OAK 17 - No Play.,0,0,2012 -20121104_TB@OAK,1,59,45,OAK,TB,3,5,78,(14:45) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to OAK 24 for 2 yards (R.Barber).,0,0,2012 -20121104_TB@OAK,1,59,18,OAK,TB,4,3,76,(14:18) S.Lechler punts 48 yards to TB 28 Center-J.Condo fair catch by R.Parrish.,0,0,2012 -20121104_TB@OAK,1,59,10,TB,OAK,1,10,72,(14:10) (Shotgun) J.Freeman scrambles up the middle to TB 41 for 13 yards (P.Lee).,0,0,2012 -20121104_TB@OAK,1,58,28,TB,OAK,1,10,59,(13:28) J.Freeman pass incomplete short right to D.Clark.,0,0,2012 -20121104_TB@OAK,1,58,23,TB,OAK,2,10,59,(13:23) D.Martin right end to TB 45 for 4 yards (T.Kelly M.Huff).,0,0,2012 -20121104_TB@OAK,1,57,39,TB,OAK,3,6,55,(12:39) (Shotgun) J.Freeman sacked at TB 35 for -10 yards (A.Carter). FUMBLES (A.Carter) recovered by TB-J.Zuttah at TB 35. J.Zuttah to TB 35 for no gain (Team).,0,0,2012 -20121104_TB@OAK,1,57,26,TB,OAK,4,16,65,(12:26) M.Koenen punts 47 yards to OAK 18 Center-A.Economos. P.Adams to OAK 16 for -2 yards (Q.Black).,0,0,2012 -20121104_TB@OAK,1,57,15,OAK,TB,1,10,84,(12:15) (Shotgun) C.Palmer pass incomplete short middle to B.Myers.,0,0,2012 -20121104_TB@OAK,1,57,7,OAK,TB,2,10,84,(12:07) C.Palmer pass short right to D.Heyward-Bey to OAK 15 for -1 yards (L.David).,0,0,2012 -20121104_TB@OAK,1,56,58,OAK,TB,3,11,85,(11:58) (Shotgun) PENALTY on OAK-R.Gordon False Start 5 yards enforced at OAK 15 - No Play.,0,0,2012 -20121104_TB@OAK,1,56,11,OAK,TB,3,16,90,(11:11) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 23 for 13 yards (Q.Black).,0,0,2012 -20121104_TB@OAK,1,55,38,OAK,TB,4,3,77,(10:38) S.Lechler punts 58 yards to TB 19 Center-J.Condo. R.Parrish to TB 19 for no gain (M.Mitchell). PENALTY on TB-A.Benn Illegal Block Above the Waist 9 yards enforced at TB 19.,0,0,2012 -20121104_TB@OAK,1,55,27,TB,OAK,1,10,90,(10:27) J.Freeman pass short middle to N.Byham to TB 15 for 5 yards (R.McClain P.Wheeler). PENALTY on OAK-T.Kelly Roughing the Passer 15 yards enforced at TB 15.,0,0,2012 -20121104_TB@OAK,1,54,50,TB,OAK,1,10,70,(9:50) D.Martin right tackle to TB 42 for 12 yards (T.Branch). PENALTY on OAK-T.Branch Horse Collar Tackle 15 yards enforced at TB 42.,0,0,2012 -20121104_TB@OAK,1,54,21,TB,OAK,1,10,43,(9:21) J.Freeman pass short right to E.Lorig to OAK 32 for 11 yards (M.Huff).,0,0,2012 -20121104_TB@OAK,1,53,39,TB,OAK,1,10,32,(8:39) D.Martin left guard to OAK 30 for 2 yards (T.Branch; M.Huff).,0,0,2012 -20121104_TB@OAK,1,52,58,TB,OAK,2,8,30,(7:58) J.Freeman pass short middle to D.Martin to OAK 25 for 5 yards (M.Burris; M.Huff).,0,0,2012 -20121104_TB@OAK,1,52,12,TB,OAK,3,3,25,(7:12) J.Freeman pass short left to M.Williams to OAK 20 for 5 yards (P.Lee).,0,0,2012 -20121104_TB@OAK,1,51,32,TB,OAK,1,10,20,(6:32) D.Martin up the middle to OAK 21 for -1 yards (A.Carter D.Bryant).,0,0,2012 -20121104_TB@OAK,1,50,54,TB,OAK,2,11,21,(5:54) (Shotgun) J.Freeman pass incomplete short middle to M.Williams.,0,0,2012 -20121104_TB@OAK,1,50,49,TB,OAK,3,11,21,(5:49) (Shotgun) J.Freeman scrambles up the middle to OAK 17 for 4 yards (T.Kelly; M.Burris).,0,0,2012 -20121104_TB@OAK,1,50,6,OAK,TB,4,7,17,(5:06) C.Barth 35 yard field goal is BLOCKED (L.Houston) Center-A.Economos Holder-M.Koenen. L.Houston at OAK 22 to TB 44 for 34 yards (L.Stocker).,0,0,2012 -20121104_TB@OAK,1,49,53,OAK,TB,1,10,44,(4:53) D.McFadden left end to TB 37 for 7 yards (L.David).,0,0,2012 -20121104_TB@OAK,1,49,15,OAK,TB,2,3,37,(4:15) (No Huddle) C.Palmer pass incomplete short middle to D.McFadden.,0,0,2012 -20121104_TB@OAK,1,49,11,OAK,TB,3,3,37,(4:11) (No Huddle) PENALTY on TB-G.McCoy Neutral Zone Infraction 5 yards enforced at TB 37 - No Play.,0,0,2012 -20121104_TB@OAK,1,49,11,OAK,TB,1,10,32,(4:11) (No Huddle Shotgun) D.McFadden left end to TB 27 for 5 yards (L.David M.Barron).,0,0,2012 -20121104_TB@OAK,1,48,30,OAK,TB,2,5,27,(3:30) (No Huddle) D.McFadden right end to TB 20 for 7 yards (L.David).,0,0,2012 -20121104_TB@OAK,1,47,51,OAK,TB,1,10,20,(2:51) (No Huddle) C.Palmer pass short left to M.Reece to TB 20 for no gain (E.Biggers). FUMBLES (E.Biggers) ball out of bounds at TB 21.,0,0,2012 -20121104_TB@OAK,1,47,10,OAK,TB,2,11,21,(2:10) C.Palmer pass short middle to M.Goodson to TB 10 for 11 yards (M.Barron; M.Foster).,0,0,2012 -20121104_TB@OAK,1,46,37,OAK,TB,1,10,10,(1:37) D.McFadden right tackle to TB 11 for -1 yards (D.Bowers M.Foster).,0,0,2012 -20121104_TB@OAK,1,45,58,OAK,TB,2,11,11,(:58) C.Palmer pass incomplete short left to R.Gordon.,0,0,2012 -20121104_TB@OAK,1,45,54,OAK,TB,3,11,11,(:54) (Shotgun) C.Palmer pass incomplete short right to R.Streater.,0,0,2012 -20121104_TB@OAK,1,45,49,OAK,TB,4,11,11,(:49) S.Janikowski 29 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20121104_TB@OAK,1,45,49,OAK,TB,,,11,S.Janikowski kicks 66 yards from OAK 35 to TB -1. A.Benn Touchback.,3,0,2012 -20121104_TB@OAK,1,45,45,TB,OAK,1,10,80,(:45) D.Martin up the middle to TB 20 for no gain. PENALTY on TB-E.Lorig Offensive Holding 10 yards enforced at TB 20 - No Play.,0,3,2012 -20121104_TB@OAK,1,45,14,TB,OAK,1,20,90,(:14) J.Freeman pass incomplete deep left to M.Williams.,0,3,2012 -20121104_TB@OAK,1,45,9,TB,OAK,2,20,90,(:09) D.Martin right tackle to TB 15 for 5 yards (D.Bryant).,0,3,2012 -20121104_TB@OAK,2,45,0,TB,OAK,3,15,85,(15:00) (Shotgun) J.Freeman pass deep right to V.Jackson to OAK 21 for 64 yards (T.Branch). PENALTY on TB-V.Jackson Taunting 15 yards enforced at OAK 21.,0,3,2012 -20121104_TB@OAK,2,44,16,TB,OAK,1,10,36,(14:16) D.Martin right tackle to OAK 33 for 3 yards (M.Burris).,0,3,2012 -20121104_TB@OAK,2,43,32,TB,OAK,2,7,33,(13:32) D.Martin left tackle to OAK 20 for 13 yards (M.Giordano). OAK-T.Kelly was injured during the play. His return is Questionable.,0,3,2012 -20121104_TB@OAK,2,42,59,TB,OAK,1,10,20,(12:59) (Shotgun) J.Freeman pass deep right to V.Jackson for 20 yards TOUCHDOWN.,0,3,2012 -20121104_TB@OAK,2,42,59,TB,OAK,,,20,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,3,2012 -20121104_TB@OAK,2,42,59,TB,OAK,,,20,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,7,3,2012 -20121104_TB@OAK,2,42,54,OAK,TB,1,10,80,(12:54) D.McFadden left end to OAK 18 for -2 yards (L.David).,3,7,2012 -20121104_TB@OAK,2,42,24,OAK,TB,2,12,82,(12:24) (No Huddle) C.Palmer pass short right to D.Heyward-Bey to OAK 27 for 9 yards (M.Foster). TB-M.Bennett was injured during the play.,3,7,2012 -20121104_TB@OAK,2,41,45,OAK,TB,3,3,73,(11:45) (Shotgun) C.Palmer pass deep right to D.Moore to OAK 48 for 21 yards (M.Barron L.David).,3,7,2012 -20121104_TB@OAK,2,41,17,OAK,TB,1,10,52,(11:17) (No Huddle) D.McFadden right end to OAK 49 for 1 yard (M.Foster).,3,7,2012 -20121104_TB@OAK,2,40,49,OAK,TB,2,9,51,(10:49) (No Huddle) C.Palmer pass short right to D.McFadden to OAK 47 for -2 yards (E.Biggers).,3,7,2012 -20121104_TB@OAK,2,40,8,OAK,TB,3,11,53,(10:08) (Shotgun) C.Palmer sacked at OAK 38 for -9 yards (D.Bowers).,3,7,2012 -20121104_TB@OAK,2,39,47,OAK,TB,4,20,62,(9:47) S.Lechler punts 41 yards to TB 21 Center-J.Condo fair catch by R.Parrish. PENALTY on TB-A.Hayward Roughing the Kicker 15 yards enforced at OAK 38 - No Play.,3,7,2012 -20121104_TB@OAK,2,39,41,OAK,TB,1,10,47,(9:41) D.McFadden up the middle to TB 47 for no gain (L.David).,3,7,2012 -20121104_TB@OAK,2,39,2,OAK,TB,2,10,47,(9:02) C.Palmer pass deep middle to D.Hagan for 47 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on OAK-W.Smith Offensive Holding 10 yards enforced at TB 47 - No Play.,3,7,2012 -20121104_TB@OAK,2,38,55,OAK,TB,2,20,57,(8:55) C.Palmer pass short right to M.Goodson to 50 for 7 yards (R.Barber L.David).,3,7,2012 -20121104_TB@OAK,2,38,11,OAK,TB,3,13,50,(8:11) (Shotgun) C.Palmer pass incomplete short middle to B.Myers.,3,7,2012 -20121104_TB@OAK,2,38,6,OAK,TB,4,13,50,(8:06) (Punt formation) S.Lechler pass short right to T.Jones to TB 44 for 6 yards (A.Black). FUMBLES (A.Black) and recovers at TB 46. T.Jones to TB 46 for no gain (E.Wright).,3,7,2012 -20121104_TB@OAK,2,37,59,TB,OAK,1,10,54,(7:59) J.Freeman scrambles left guard to OAK 43 for 11 yards (R.McClain).,7,3,2012 -20121104_TB@OAK,2,37,15,TB,OAK,1,10,43,(7:15) L.Blount up the middle to OAK 40 for 3 yards (R.McClain P.Wheeler).,7,3,2012 -20121104_TB@OAK,2,36,31,TB,OAK,2,7,40,(6:31) J.Freeman pass short left to L.Stocker to OAK 38 for 2 yards (M.Giordano).,7,3,2012 -20121104_TB@OAK,2,35,48,TB,OAK,3,5,38,(5:48) (Shotgun) J.Freeman pass incomplete short right to L.Stocker.,7,3,2012 -20121104_TB@OAK,2,35,42,TB,OAK,4,5,38,(5:42) M.Koenen punts 32 yards to OAK 6 Center-A.Economos downed by TB-A.Hayward.,7,3,2012 -20121104_TB@OAK,2,35,31,OAK,TB,1,10,94,(5:31) C.Palmer pass short right to D.Heyward-Bey to OAK 20 for 14 yards (L.Johnson).,3,7,2012 -20121104_TB@OAK,2,34,53,OAK,TB,1,10,80,(4:53) M.Goodson left tackle to OAK 20 for no gain (M.Barron).,3,7,2012 -20121104_TB@OAK,2,34,11,OAK,TB,2,10,80,(4:11) C.Palmer sacked at OAK 13 for -7 yards (M.Bennett).,3,7,2012 -20121104_TB@OAK,2,33,36,OAK,TB,3,17,87,(3:36) (Shotgun) C.Palmer pass short right to B.Myers to OAK 20 for 7 yards (E.Wright).,3,7,2012 -20121104_TB@OAK,2,32,48,OAK,TB,4,10,80,(2:48) S.Lechler punts 54 yards to TB 26 Center-J.Condo. R.Parrish to TB 46 for 20 yards (J.Condo).,3,7,2012 -20121104_TB@OAK,2,32,39,TB,OAK,1,10,54,(2:39) D.Martin left end to TB 39 for -7 yards (L.Houston M.Shaughnessy).,7,3,2012 -20121104_TB@OAK,2,31,59,TB,OAK,2,17,61,(1:59) (Shotgun) J.Freeman pass incomplete short right to D.Clark [M.Burris].,7,3,2012 -20121104_TB@OAK,2,31,56,TB,OAK,3,17,61,(1:56) (Shotgun) J.Freeman pass incomplete short left to D.Clark.,7,3,2012 -20121104_TB@OAK,2,31,49,TB,OAK,4,17,61,(1:49) M.Koenen punts 32 yards to OAK 29 Center-A.Economos out of bounds.,7,3,2012 -20121104_TB@OAK,2,31,42,OAK,TB,1,10,71,(1:42) C.Palmer pass deep right to D.Heyward-Bey to TB 25 for 46 yards (A.Black). Penalty on TB-E.Wright Defensive Pass Interference declined.,3,7,2012 -20121104_TB@OAK,2,31,33,OAK,TB,1,10,25,(1:33) C.Palmer pass incomplete deep left to R.Streater (L.Johnson).,3,7,2012 -20121104_TB@OAK,2,31,28,OAK,TB,2,10,25,(1:28) (Shotgun) C.Palmer pass incomplete short left to R.Streater (R.Barber).,3,7,2012 -20121104_TB@OAK,2,31,25,OAK,TB,3,10,25,(1:25) (Shotgun) C.Palmer pass deep right to R.Streater for 25 yards TOUCHDOWN.,3,7,2012 -20121104_TB@OAK,2,31,25,OAK,TB,,,25,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,3,7,2012 -20121104_TB@OAK,2,31,25,OAK,TB,,,25,S.Janikowski kicks 69 yards from OAK 35 to TB -4. A.Benn to TB 21 for 25 yards (R.Gordon).,10,7,2012 -20121104_TB@OAK,2,31,14,TB,OAK,1,10,79,(1:14) (Shotgun) J.Freeman pass short middle to D.Martin to TB 29 for 8 yards (P.Wheeler).,7,10,2012 -20121104_TB@OAK,2,30,50,TB,OAK,2,2,71,(:50) (No Huddle Shotgun) J.Freeman pass short left to D.Clark to TB 39 for 10 yards (M.Burris).,7,10,2012 -20121104_TB@OAK,2,30,44,TB,OAK,1,10,61,(:44) (Shotgun) J.Freeman pass short middle to D.Martin to TB 40 for 1 yard (M.Burris; M.Giordano).,7,10,2012 -20121104_TB@OAK,2,30,33,TB,OAK,2,9,60,(:33) (Shotgun) J.Freeman pass incomplete short middle to D.Martin [J.Hanson].,7,10,2012 -20121104_TB@OAK,2,30,28,TB,OAK,3,9,60,(:28) (Shotgun) J.Freeman pass deep right to M.Williams to OAK 38 for 22 yards (M.Huff).,7,10,2012 -20121104_TB@OAK,2,30,21,TB,OAK,1,10,38,(:21) (Shotgun) J.Freeman pass incomplete short left to T.Underwood.,7,10,2012 -20121104_TB@OAK,2,30,16,TB,OAK,2,10,38,(:16) (Shotgun) PENALTY on TB-T.Larsen False Start 5 yards enforced at OAK 38 - No Play.,7,10,2012 -20121104_TB@OAK,2,30,16,TB,OAK,2,15,43,(:16) (Shotgun) J.Freeman pass short left to D.Martin to OAK 36 for 7 yards (P.Lee).,7,10,2012 -20121104_TB@OAK,2,30,11,TB,OAK,3,8,36,(:11) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson.,7,10,2012 -20121104_TB@OAK,2,30,3,TB,OAK,4,8,36,(:03) C.Barth 54 yard field goal is No Good Short Center-A.Economos Holder-M.Koenen.,7,10,2012 -20121104_TB@OAK,3,30,0,OAK,TB,,,36,S.Janikowski kicks 73 yards from OAK 35 to TB -8. A.Benn Touchback.,10,7,2012 -20121104_TB@OAK,3,30,0,TB,OAK,1,10,80,(15:00) PENALTY on TB-E.Lorig False Start 5 yards enforced at TB 20 - No Play.,7,10,2012 -20121104_TB@OAK,3,30,0,TB,OAK,1,15,85,(15:00) J.Freeman pass short right to D.Clark to TB 27 for 12 yards (P.Wheeler).,7,10,2012 -20121104_TB@OAK,3,29,21,TB,OAK,2,3,73,(14:21) D.Martin right tackle to TB 37 for 10 yards (L.Houston).,7,10,2012 -20121104_TB@OAK,3,28,42,TB,OAK,1,10,63,(13:42) D.Martin right guard to TB 43 for 6 yards (T.Branch).,7,10,2012 -20121104_TB@OAK,3,27,57,TB,OAK,2,4,57,(12:57) J.Freeman pass incomplete deep left to M.Williams (T.Branch).,7,10,2012 -20121104_TB@OAK,3,27,51,TB,OAK,3,4,57,(12:51) (Shotgun) J.Freeman pass short right to D.Ware to OAK 45 for 12 yards (T.Branch).,7,10,2012 -20121104_TB@OAK,3,27,18,TB,OAK,1,10,45,(12:18) D.Martin up the middle for 45 yards TOUCHDOWN.,7,10,2012 -20121104_TB@OAK,3,27,18,TB,OAK,,,45,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,7,10,2012 -20121104_TB@OAK,3,27,18,TB,OAK,,,45,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,14,10,2012 -20121104_TB@OAK,3,27,9,OAK,TB,1,10,80,(12:09) M.Goodson left tackle to OAK 20 for no gain (D.Te'o-Nesheim).,10,14,2012 -20121104_TB@OAK,3,26,31,OAK,TB,2,10,80,(11:31) C.Palmer pass incomplete short middle to B.Myers.,10,14,2012 -20121104_TB@OAK,3,26,28,OAK,TB,3,10,80,(11:28) (Shotgun) C.Palmer pass short right to R.Gordon to OAK 28 for 8 yards (R.Barber).,10,14,2012 -20121104_TB@OAK,3,25,51,OAK,TB,4,2,72,(10:51) S.Lechler punts 58 yards to TB 14 Center-J.Condo. R.Parrish to TB 40 for 26 yards (B.Myers).,10,14,2012 -20121104_TB@OAK,3,25,38,TB,OAK,1,10,60,(10:38) D.Martin left tackle to TB 45 for 5 yards (T.Branch).,14,10,2012 -20121104_TB@OAK,3,25,1,TB,OAK,2,5,55,(10:01) J.Freeman pass incomplete deep right to M.Williams.,14,10,2012 -20121104_TB@OAK,3,24,53,TB,OAK,3,5,55,(9:53) (Shotgun) J.Freeman pass short right to M.Williams to OAK 18 for 37 yards (P.Lee).,14,10,2012 -20121104_TB@OAK,3,24,18,TB,OAK,1,10,18,(9:18) D.Martin up the middle to OAK 12 for 6 yards (R.McClain).,14,10,2012 -20121104_TB@OAK,3,23,41,TB,OAK,2,4,12,(8:41) D.Martin left tackle to OAK 11 for 1 yard (R.McClain).,14,10,2012 -20121104_TB@OAK,3,22,56,TB,OAK,3,3,11,(7:56) (Shotgun) PENALTY on OAK-L.Houston Neutral Zone Infraction 5 yards enforced at OAK 11 - No Play.,14,10,2012 -20121104_TB@OAK,3,22,55,TB,OAK,1,6,6,(7:55) D.Martin up the middle to OAK 4 for 2 yards (Team).,14,10,2012 -20121104_TB@OAK,3,22,18,TB,OAK,2,4,4,(7:18) J.Freeman pass short right to M.Williams for 4 yards TOUCHDOWN.,14,10,2012 -20121104_TB@OAK,3,22,18,TB,OAK,,,4,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,14,10,2012 -20121104_TB@OAK,3,22,18,TB,OAK,,,4,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,21,10,2012 -20121104_TB@OAK,3,22,12,OAK,TB,1,10,80,(7:12) C.Palmer pass short left to M.Reece to OAK 27 for 7 yards (L.David).,10,21,2012 -20121104_TB@OAK,3,21,31,OAK,TB,2,3,73,(6:31) C.Palmer pass short left to M.Goodson to OAK 30 for 3 yards (L.David G.McCoy).,10,21,2012 -20121104_TB@OAK,3,20,46,OAK,TB,1,10,70,(5:46) C.Palmer pass incomplete short middle to D.Moore.,10,21,2012 -20121104_TB@OAK,3,20,41,OAK,TB,2,10,70,(5:41) C.Palmer pass short left to M.Goodson to OAK 39 for 9 yards (Q.Black).,10,21,2012 -20121104_TB@OAK,3,20,4,OAK,TB,3,1,61,(5:04) C.Palmer pass short right to M.Goodson to OAK 49 for 10 yards (Q.Black).,10,21,2012 -20121104_TB@OAK,3,19,28,OAK,TB,1,10,51,(4:28) (Shotgun) C.Palmer pass short left to D.Moore to TB 44 for 7 yards (Q.Black R.Barber).,10,21,2012 -20121104_TB@OAK,3,18,51,OAK,TB,2,3,44,(3:51) C.Palmer pass short right to D.Heyward-Bey to TB 38 for 6 yards (L.Johnson).,10,21,2012 -20121104_TB@OAK,3,18,12,OAK,TB,1,10,38,(3:12) C.Palmer pass short right intended for D.Moore INTERCEPTED by L.Johnson at TB 29. L.Johnson to TB 32 for 3 yards (D.Moore).,10,21,2012 -20121104_TB@OAK,3,18,7,TB,OAK,1,10,68,(3:07) D.Martin left guard to TB 33 for 1 yard (M.Burris; R.McClain).,21,10,2012 -20121104_TB@OAK,3,17,27,TB,OAK,2,9,67,(2:27) D.Martin left tackle for 67 yards TOUCHDOWN. OAK-M.Giordano was injured during the play. He is Out.,21,10,2012 -20121104_TB@OAK,3,17,27,TB,OAK,,,67,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,21,10,2012 -20121104_TB@OAK,3,17,27,TB,OAK,,,67,M.Koenen kicks 71 yards from TB 35 to OAK -6. M.Goodson Touchback.,28,10,2012 -20121104_TB@OAK,3,17,15,OAK,TB,1,10,80,(2:15) C.Palmer pass incomplete short left to D.Moore.,10,28,2012 -20121104_TB@OAK,3,17,10,OAK,TB,2,10,80,(2:10) (Shotgun) C.Palmer pass short middle to D.Moore to OAK 32 for 12 yards (M.Foster).,10,28,2012 -20121104_TB@OAK,3,16,59,OAK,TB,1,10,68,(1:59) (Shotgun) PENALTY on OAK-J.Veldheer False Start 5 yards enforced at OAK 32 - No Play.,10,28,2012 -20121104_TB@OAK,3,16,19,OAK,TB,1,15,73,(1:19) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 38 for 11 yards (L.David).,10,28,2012 -20121104_TB@OAK,3,15,47,OAK,TB,2,4,62,(:47) (No Huddle Shotgun) C.Palmer pass deep left to M.Reece to TB 36 for 26 yards (L.Johnson).,10,28,2012 -20121104_TB@OAK,3,15,12,OAK,TB,1,10,36,(:12) (No Huddle Shotgun) C.Palmer pass incomplete deep middle to D.Hagan.,10,28,2012 -20121104_TB@OAK,3,15,7,OAK,TB,2,10,36,(:07) (No Huddle Shotgun) C.Palmer pass short right to M.Reece to TB 21 for 15 yards (Q.Black).,10,28,2012 -20121104_TB@OAK,4,15,0,OAK,TB,1,10,21,(15:00) PENALTY on TB-Q.Black Defensive 12 On-field 5 yards enforced at TB 21 - No Play.,10,28,2012 -20121104_TB@OAK,4,15,0,OAK,TB,1,5,16,(15:00) (Shotgun) C.Palmer pass incomplete deep left to M.Reece.,10,28,2012 -20121104_TB@OAK,4,14,55,OAK,TB,2,5,16,(14:55) C.Palmer pass short middle to M.Goodson to TB 4 for 12 yards (L.David). OAK-M.Goodson was injured during the play. He is Out.,10,28,2012 -20121104_TB@OAK,4,14,16,OAK,TB,1,4,4,(14:16) (No Huddle Shotgun) C.Palmer pass short left to B.Myers for 4 yards TOUCHDOWN.,10,28,2012 -20121104_TB@OAK,4,14,16,OAK,TB,,,4,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,10,28,2012 -20121104_TB@OAK,4,14,16,OAK,TB,,,4,S.Janikowski kicks 69 yards from OAK 35 to TB -4. A.Benn to TB 30 for 34 yards (T.Jones).,17,28,2012 -20121104_TB@OAK,4,14,3,TB,OAK,1,10,70,(14:03) D.Martin right guard for 70 yards TOUCHDOWN.,28,17,2012 -20121104_TB@OAK,4,14,3,TB,OAK,,,70,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,28,17,2012 -20121104_TB@OAK,4,14,3,TB,OAK,,,70,M.Koenen kicks 73 yards from TB 35 to OAK -8. C.Francies Touchback.,35,17,2012 -20121104_TB@OAK,4,13,51,OAK,TB,1,10,80,(13:51) (Shotgun) C.Palmer pass short right to R.Streater to OAK 28 for 8 yards (A.Black).,17,35,2012 -20121104_TB@OAK,4,13,26,OAK,TB,2,2,72,(13:26) (No Huddle Shotgun) C.Palmer pass short middle to R.Streater to OAK 43 for 15 yards (L.Johnson; R.Barber). Penalty on TB-L.Johnson Defensive Holding declined.,17,35,2012 -20121104_TB@OAK,4,13,5,OAK,TB,1,10,57,(13:05) (No Huddle Shotgun) PENALTY on TB-D.Bowers Defensive Offside 5 yards enforced at OAK 43 - No Play.,17,35,2012 -20121104_TB@OAK,4,12,55,OAK,TB,1,5,52,(12:55) (No Huddle Shotgun) C.Palmer pass deep middle to D.Moore to TB 26 for 26 yards (L.Johnson A.Black). TB-L.Johnson was injured during the play.,17,35,2012 -20121104_TB@OAK,4,12,21,OAK,TB,1,10,26,(12:21) (Shotgun) C.Palmer pass short right to M.Reece to TB 17 for 9 yards (E.Biggers).,17,35,2012 -20121104_TB@OAK,4,11,53,OAK,TB,2,1,17,(11:53) (No Huddle) M.Reece up the middle to TB 17 for no gain (L.David). PENALTY on OAK-M.Brisiel Offensive Holding 10 yards enforced at TB 17 - No Play.,17,35,2012 -20121104_TB@OAK,4,11,24,OAK,TB,2,11,27,(11:24) (Shotgun) C.Palmer pass short left to M.Reece to TB 21 for 6 yards (R.Barber).,17,35,2012 -20121104_TB@OAK,4,10,40,OAK,TB,3,5,21,(10:40) (No Huddle) C.Palmer pass short right to R.Streater to TB 15 for 6 yards (E.Wright).,17,35,2012 -20121104_TB@OAK,4,9,56,OAK,TB,1,10,15,(9:56) (No Huddle Shotgun) C.Palmer pass incomplete short right to R.Streater. PENALTY on TB-E.Biggers Defensive Pass Interference 14 yards enforced at TB 15 - No Play.,17,35,2012 -20121104_TB@OAK,4,9,51,OAK,TB,1,1,1,(9:51) C.Palmer pass short middle to B.Myers for 1 yard TOUCHDOWN.,17,35,2012 -20121104_TB@OAK,4,9,51,OAK,TB,,,1,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,17,35,2012 -20121104_TB@OAK,4,9,51,OAK,TB,,,1,S.Janikowski kicks onside 12 yards from OAK 35 to OAK 47. A.Black to OAK 44 for 3 yards (D.Ausberry).,24,35,2012 -20121104_TB@OAK,4,9,45,TB,OAK,1,10,44,(9:45) J.Freeman pass short right to N.Byham to OAK 34 for 10 yards (P.Adams).,35,24,2012 -20121104_TB@OAK,4,9,0,TB,OAK,1,10,34,(9:00) L.Blount left end to OAK 34 for no gain. PENALTY on OAK-R.Seymour Defensive Offside 5 yards enforced at OAK 34 - No Play.,35,24,2012 -20121104_TB@OAK,4,8,33,TB,OAK,1,5,29,(8:33) L.Blount up the middle to OAK 27 for 2 yards (T.Branch).,35,24,2012 -20121104_TB@OAK,4,7,50,OAK,TB,2,3,35,(7:50) J.Freeman FUMBLES (Aborted) at OAK 32 RECOVERED by OAK-R.Seymour at OAK 35. R.Seymour to OAK 35 for no gain (T.Underwood).,24,35,2012 -20121104_TB@OAK,4,7,43,OAK,TB,1,10,65,(7:43) (Shotgun) C.Palmer pass incomplete short right to B.Myers.,24,35,2012 -20121104_TB@OAK,4,7,37,OAK,TB,2,10,65,(7:37) (Shotgun) C.Palmer pass incomplete short middle to B.Myers (R.Barber).,24,35,2012 -20121104_TB@OAK,4,7,32,OAK,TB,3,10,65,(7:32) (No Huddle Shotgun) C.Palmer pass short middle to M.Reece to TB 45 for 20 yards (A.Black).,24,35,2012 -20121104_TB@OAK,4,6,51,OAK,TB,1,10,45,(6:51) (No Huddle Shotgun) C.Palmer pass short right to D.Hagan to TB 39 for 6 yards (L.David).,24,35,2012 -20121104_TB@OAK,4,6,18,OAK,TB,2,4,39,(6:18) (No Huddle Shotgun) T.Jones left tackle to TB 37 for 2 yards (L.David).,24,35,2012 -20121104_TB@OAK,4,5,50,OAK,TB,3,2,37,(5:50) (No Huddle) C.Palmer pass incomplete short left to D.Hagan.,24,35,2012 -20121104_TB@OAK,4,5,46,OAK,TB,4,2,37,(5:46) (Shotgun) C.Palmer pass incomplete deep right to D.Moore. PENALTY on TB-E.Wright Defensive Pass Interference 13 yards enforced at TB 37 - No Play.,24,35,2012 -20121104_TB@OAK,4,5,41,OAK,TB,1,10,24,(5:41) (No Huddle) C.Palmer pass incomplete deep right to D.Heyward-Bey.,24,35,2012 -20121104_TB@OAK,4,5,35,OAK,TB,2,10,24,(5:35) (No Huddle Shotgun) C.Palmer pass short right to R.Streater to TB 8 for 16 yards (L.Johnson). PENALTY on OAK-J.Veldheer Offensive Holding 10 yards enforced at TB 24 - No Play.,24,35,2012 -20121104_TB@OAK,4,5,6,OAK,TB,2,20,34,(5:06) (Shotgun) C.Palmer pass short right to B.Myers to TB 29 for 5 yards (M.Lewis).,24,35,2012 -20121104_TB@OAK,4,4,59,OAK,TB,3,15,29,(4:59) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to TB 16 for 13 yards (L.David E.Wright).,24,35,2012 -20121104_TB@OAK,4,4,34,OAK,TB,4,2,16,(4:34) (No Huddle) C.Palmer up the middle to TB 13 for 3 yards (L.David).,24,35,2012 -20121104_TB@OAK,4,3,55,OAK,TB,1,10,13,(3:55) (No Huddle Shotgun) C.Palmer pass short right to M.Reece for 13 yards TOUCHDOWN.,24,35,2012 -20121104_TB@OAK,4,3,55,OAK,TB,,,13,TWO-POINT CONVERSION ATTEMPT. C.Palmer pass to J.Criner is complete. ATTEMPT SUCCEEDS.,24,35,2012 -20121104_TB@OAK,4,3,55,OAK,TB,,,13,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,32,35,2012 -20121104_TB@OAK,4,3,51,TB,OAK,1,10,80,(3:51) D.Martin right tackle to TB 19 for -1 yards (T.Branch).,35,32,2012 -20121104_TB@OAK,4,3,8,TB,OAK,2,11,81,(3:08) J.Freeman pass incomplete deep right to V.Jackson.,35,32,2012 -20121104_TB@OAK,4,3,3,TB,OAK,3,11,81,(3:03) (Shotgun) PENALTY on TB-J.Freeman Delay of Game 5 yards enforced at TB 19 - No Play.,35,32,2012 -20121104_TB@OAK,4,3,3,TB,OAK,3,16,86,(3:03) PENALTY on TB-J.Freeman Delay of Game 5 yards enforced at TB 14 - No Play.,35,32,2012 -20121104_TB@OAK,4,3,3,TB,OAK,3,21,91,(3:03) (Shotgun) J.Freeman pass short left to T.Underwood to TB 21 for 12 yards (P.Wheeler T.Branch).,35,32,2012 -20121104_TB@OAK,4,2,53,TB,OAK,4,9,79,(2:53) M.Koenen punts 43 yards to OAK 36 Center-A.Economos. P.Adams to OAK 38 for 2 yards (M.Lewis).,35,32,2012 -20121104_TB@OAK,4,2,42,OAK,TB,1,10,62,(2:42) (Shotgun) C.Palmer pass incomplete deep left to R.Streater.,32,35,2012 -20121104_TB@OAK,4,2,37,OAK,TB,2,10,62,(2:37) (Shotgun) C.Palmer pass deep left intended for R.Streater INTERCEPTED by A.Black at TB 44. A.Black to OAK 22 for 34 yards (D.Moore).,32,35,2012 -20121104_TB@OAK,4,2,27,TB,OAK,1,10,22,(2:27) D.Martin right guard to OAK 9 for 13 yards (T.Branch).,35,32,2012 -20121104_TB@OAK,4,2,0,TB,OAK,1,9,9,(2:00) D.Martin left tackle to OAK 1 for 8 yards (T.Branch).,35,32,2012 -20121104_TB@OAK,4,1,52,TB,OAK,2,1,1,(1:52) D.Martin left tackle for 1 yard TOUCHDOWN.,35,32,2012 -20121104_TB@OAK,4,1,52,TB,OAK,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,35,32,2012 -20121104_TB@OAK,4,1,52,TB,OAK,,,1,M.Koenen kicks 73 yards from TB 35 to OAK -8. C.Francies Touchback.,42,32,2012 -20121104_TB@OAK,4,1,48,OAK,TB,1,10,80,(1:48) (Shotgun) C.Palmer pass short right to B.Myers to OAK 25 for 5 yards (L.Johnson).,32,42,2012 -20121104_TB@OAK,4,1,43,OAK,TB,2,5,75,(1:43) (No Huddle Shotgun) C.Palmer pass deep left intended for R.Streater INTERCEPTED by E.Biggers at OAK 41. E.Biggers to OAK 41 for no gain (R.Streater).,32,42,2012 -20121104_TB@OAK,4,1,38,TB,OAK,1,10,41,(1:38) D.Martin left end to OAK 46 for -5 yards (D.Tollefson).,42,32,2012 -20121104_TB@OAK,4,1,31,TB,OAK,2,15,46,(1:31) D.Martin right end to OAK 47 for -1 yards (L.Houston).,42,32,2012 -20121104_TB@OAK,4,0,46,TB,OAK,3,16,47,(:46) D.Martin left end to TB 45 for -8 yards (P.Wheeler).,42,32,2012 -20121104_TB@OAK,4,0,2,TB,OAK,4,24,55,(:02) (Shotgun) J.Freeman kneels to TB 39 for -6 yards.,42,32,2012 -20121104_TB@OAK,4,0,2,TB,OAK,,,55,                      ,42,32,2012 -20121104_MIN@SEA,1,0,0,SEA,MIN,,,55,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,0,0,2012 -20121104_MIN@SEA,1,60,0,MIN,SEA,1,10,80,(15:00) A.Peterson left guard to MIN 25 for 5 yards (B.Browner; B.Wagner).,0,0,2012 -20121104_MIN@SEA,1,59,21,MIN,SEA,2,5,75,(14:21) A.Peterson right end to SEA 1 for 74 yards (B.Browner).,0,0,2012 -20121104_MIN@SEA,1,58,28,MIN,SEA,1,1,1,(13:28) G.Schwartz reported in as eligible. C.Ponder pass incomplete short right to A.Peterson.,0,0,2012 -20121104_MIN@SEA,1,58,22,MIN,SEA,2,1,1,(13:22) A.Peterson up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20121104_MIN@SEA,1,58,22,MIN,SEA,,,1,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121104_MIN@SEA,1,58,22,MIN,SEA,,,1,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,7,0,2012 -20121104_MIN@SEA,1,58,15,SEA,MIN,1,10,80,(13:15) (Shotgun) R.Wilson pass short middle to J.Kearse to SEA 26 for 6 yards (J.Brinkley; C.Greenway).,0,7,2012 -20121104_MIN@SEA,1,57,42,SEA,MIN,2,4,74,(12:42) M.Lynch left tackle to SEA 34 for 8 yards (J.Brinkley L.Guion).,0,7,2012 -20121104_MIN@SEA,1,57,9,SEA,MIN,1,10,66,(12:09) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 34 - No Play.,0,7,2012 -20121104_MIN@SEA,1,56,55,SEA,MIN,1,15,71,(11:55) M.Lynch right tackle to SEA 34 for 5 yards (J.Allen; L.Guion).,0,7,2012 -20121104_MIN@SEA,1,56,22,SEA,MIN,2,10,66,(11:22) (Shotgun) R.Wilson pass incomplete short middle to J.Kearse.,0,7,2012 -20121104_MIN@SEA,1,56,18,SEA,MIN,3,10,66,(11:18) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin.,0,7,2012 -20121104_MIN@SEA,1,56,14,SEA,MIN,4,10,66,(11:14) J.Ryan punts 55 yards to MIN 11 Center-C.Gresham. M.Sherels to MIN 11 for no gain (J.Lane).,0,7,2012 -20121104_MIN@SEA,1,56,6,MIN,SEA,1,10,89,(11:06) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,7,0,2012 -20121104_MIN@SEA,1,55,59,MIN,SEA,2,10,89,(10:59) A.Peterson up the middle to MIN 11 for no gain (B.Wagner B.Mebane).,7,0,2012 -20121104_MIN@SEA,1,55,23,MIN,SEA,3,10,89,(10:23) (Shotgun) P.Harvin up the middle to MIN 19 for 8 yards (M.Trufant). FUMBLES (M.Trufant) RECOVERED by SEA-M.Trufant at MIN 17. M.Trufant to MIN 17 for no gain (P.Loadholt).,7,0,2012 -20121104_MIN@SEA,1,55,15,SEA,MIN,1,10,17,(10:15) M.Lynch left tackle to MIN 14 for 3 yards (C.Greenway J.Sanford).,0,7,2012 -20121104_MIN@SEA,1,54,41,SEA,MIN,2,7,14,(9:41) M.Lynch right tackle to MIN 6 for 8 yards (J.Sanford).,0,7,2012 -20121104_MIN@SEA,1,54,0,SEA,MIN,1,6,6,(9:00) R.Wilson pass short right to G.Tate for 6 yards TOUCHDOWN.,0,7,2012 -20121104_MIN@SEA,1,54,0,SEA,MIN,,,6,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,7,2012 -20121104_MIN@SEA,1,54,0,SEA,MIN,,,6,S.Hauschka kicks 74 yards from SEA 35 to MIN -9. P.Harvin to MIN 30 for 39 yards (E.Thomas).,7,7,2012 -20121104_MIN@SEA,1,53,46,MIN,SEA,1,10,70,(8:46) A.Peterson left tackle pushed ob at MIN 46 for 16 yards (B.Browner).,7,7,2012 -20121104_MIN@SEA,1,53,17,MIN,SEA,1,10,54,(8:17) C.Ponder pass incomplete deep right to P.Harvin.,7,7,2012 -20121104_MIN@SEA,1,53,12,MIN,SEA,2,10,54,(8:12) C.Ponder pass incomplete short right to D.Aromashodu.,7,7,2012 -20121104_MIN@SEA,1,53,7,MIN,SEA,3,10,54,(8:07) (Shotgun) C.Ponder sacked at MIN 45 for -1 yards (J.Johnson).,7,7,2012 -20121104_MIN@SEA,1,52,35,MIN,SEA,4,11,55,(7:35) C.Kluwe punts 57 yards to SEA -2 Center-C.Loeffler. L.Washington to SEA 22 for 24 yards (M.Mitchell).,7,7,2012 -20121104_MIN@SEA,1,52,20,SEA,MIN,1,10,78,(7:20) R.Wilson pass short left to G.Tate to SEA 27 for 5 yards (A.Jefferson; J.Brinkley).,7,7,2012 -20121104_MIN@SEA,1,51,42,SEA,MIN,2,5,73,(6:42) (Shotgun) R.Wilson pass deep right to S.Rice to 50 for 23 yards (J.Robinson).,7,7,2012 -20121104_MIN@SEA,1,51,6,SEA,MIN,1,10,50,(6:06) M.Lynch left end to MIN 47 for 3 yards (E.Henderson).,7,7,2012 -20121104_MIN@SEA,1,50,28,SEA,MIN,2,7,47,(5:28) (Shotgun) M.Lynch right guard to MIN 37 for 10 yards (J.Brinkley).,7,7,2012 -20121104_MIN@SEA,1,49,50,SEA,MIN,1,10,37,(4:50) R.Wilson pass incomplete deep right [J.Allen].,7,7,2012 -20121104_MIN@SEA,1,49,42,SEA,MIN,2,10,37,(4:42) S.Rice pass deep right to Z.Miller to MIN 12 for 25 yards (J.Sanford). Lateral from Wilson to Rice.,7,7,2012 -20121104_MIN@SEA,1,48,57,SEA,MIN,1,10,12,(3:57) M.Lynch left end pushed ob at MIN 11 for 1 yard (H.Smith).,7,7,2012 -20121104_MIN@SEA,1,48,25,SEA,MIN,2,9,11,(3:25) R.Wilson pass incomplete short right to M.Robinson.,7,7,2012 -20121104_MIN@SEA,1,48,21,SEA,MIN,3,9,11,(3:21) (Shotgun) R.Wilson pass short right to S.Rice for 11 yards TOUCHDOWN.,7,7,2012 -20121104_MIN@SEA,1,48,21,SEA,MIN,,,11,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,7,2012 -20121104_MIN@SEA,1,48,21,SEA,MIN,,,11,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,14,7,2012 -20121104_MIN@SEA,1,48,15,MIN,SEA,1,10,80,(3:15) C.Ponder pass short middle to A.Peterson to MIN 23 for 3 yards (B.Wagner).,7,14,2012 -20121104_MIN@SEA,1,47,39,MIN,SEA,2,7,77,(2:39) A.Peterson right tackle to MIN 23 for no gain (R.Bryant L.Hill).,7,14,2012 -20121104_MIN@SEA,1,47,2,MIN,SEA,3,7,77,(2:02) (Shotgun) C.Ponder pass short left to M.Jenkins to MIN 30 for 7 yards (M.Trufant; B.Browner).,7,14,2012 -20121104_MIN@SEA,1,46,19,MIN,SEA,1,10,70,(1:19) P.Harvin left end to MIN 36 for 6 yards (L.Hill).,7,14,2012 -20121104_MIN@SEA,1,45,42,MIN,SEA,2,4,64,(:42) C.Ponder pass short middle to J.Simpson to 50 for 14 yards (K.Chancellor).,7,14,2012 -20121104_MIN@SEA,2,45,0,MIN,SEA,1,10,50,(15:00) A.Peterson up the middle to SEA 48 for 2 yards (E.Thomas; B.Wagner).,7,14,2012 -20121104_MIN@SEA,2,44,25,MIN,SEA,2,8,48,(14:25) C.Ponder scrambles right end to SEA 44 for 4 yards (L.Hill).,7,14,2012 -20121104_MIN@SEA,2,43,43,MIN,SEA,3,4,44,(13:43) (Shotgun) C.Ponder pass incomplete deep right to P.Harvin [B.Wagner]. PENALTY on SEA-M.Trufant Defensive Pass Interference 24 yards enforced at SEA 44 - No Play.,7,14,2012 -20121104_MIN@SEA,2,43,38,MIN,SEA,1,10,20,(13:38) A.Peterson up the middle to SEA 19 for 1 yard (B.Mebane; A.Branch).,7,14,2012 -20121104_MIN@SEA,2,43,3,MIN,SEA,2,9,19,(13:03) C.Ponder pass short middle to A.Reisner to SEA 6 for 13 yards (B.Browner; K.Chancellor).,7,14,2012 -20121104_MIN@SEA,2,42,26,MIN,SEA,1,6,6,(12:26) A.Peterson right guard to SEA 4 for 2 yards (C.McDonald B.Wagner).,7,14,2012 -20121104_MIN@SEA,2,41,52,MIN,SEA,2,4,4,(11:52) A.Peterson up the middle for 4 yards TOUCHDOWN.,7,14,2012 -20121104_MIN@SEA,2,41,52,MIN,SEA,,,4,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,14,2012 -20121104_MIN@SEA,2,41,52,MIN,SEA,,,4,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,14,14,2012 -20121104_MIN@SEA,2,41,46,SEA,MIN,1,10,80,(11:46) R.Wilson pass short left to S.Rice to SEA 20 for no gain (A.Jefferson). PENALTY on MIN-A.Jefferson Illegal Contact 5 yards enforced at SEA 20 - No Play.,14,14,2012 -20121104_MIN@SEA,2,41,20,SEA,MIN,1,10,75,(11:20) (Shotgun) M.Lynch right guard to SEA 32 for 7 yards (C.Greenway).,14,14,2012 -20121104_MIN@SEA,2,40,44,SEA,MIN,2,3,68,(10:44) R.Turbin up the middle to SEA 34 for 2 yards (F.Evans K.Williams).,14,14,2012 -20121104_MIN@SEA,2,40,10,SEA,MIN,3,1,66,(10:10) M.Robinson up the middle to SEA 34 for no gain (E.Henderson; C.Greenway).,14,14,2012 -20121104_MIN@SEA,2,39,26,SEA,MIN,4,1,66,(9:26) J.Ryan punts 41 yards to MIN 25 Center-C.Gresham. M.Sherels to MIN 24 for -1 yards (H.Farwell).,14,14,2012 -20121104_MIN@SEA,2,39,14,MIN,SEA,1,10,76,(9:14) C.Ponder scrambles right end to MIN 32 for 8 yards (M.Morgan).,14,14,2012 -20121104_MIN@SEA,2,38,36,MIN,SEA,2,2,68,(8:36) A.Peterson up the middle to SEA 44 for 24 yards (B.Browner C.McDonald).,14,14,2012 -20121104_MIN@SEA,2,37,52,MIN,SEA,1,10,44,(7:52) A.Peterson up the middle to SEA 29 for 15 yards (E.Thomas).,14,14,2012 -20121104_MIN@SEA,2,37,11,MIN,SEA,1,10,29,(7:11) P.Harvin right end pushed ob at SEA 14 for 15 yards (R.Sherman).,14,14,2012 -20121104_MIN@SEA,2,36,37,MIN,SEA,1,10,14,(6:37) C.Ponder pass short left to T.Gerhart to SEA 11 for 3 yards (M.Morgan; B.Wagner).,14,14,2012 -20121104_MIN@SEA,2,35,58,MIN,SEA,2,7,11,(5:58) (Shotgun) C.Ponder pass incomplete short right to P.Harvin.,14,14,2012 -20121104_MIN@SEA,2,35,55,MIN,SEA,3,7,11,(5:55) (Shotgun) C.Ponder sacked at SEA 18 for -7 yards (B.Wagner).,14,14,2012 -20121104_MIN@SEA,2,35,29,MIN,SEA,4,14,18,(5:29) B.Walsh 36 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,14,2012 -20121104_MIN@SEA,2,35,29,MIN,SEA,,,18,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,17,14,2012 -20121104_MIN@SEA,2,35,25,SEA,MIN,1,10,80,(5:25) (Shotgun) M.Lynch left end to SEA 24 for 4 yards (C.Greenway; J.Brinkley).,14,17,2012 -20121104_MIN@SEA,2,34,50,SEA,MIN,2,6,76,(4:50) M.Robinson left tackle to SEA 30 for 6 yards (A.Winfield).,14,17,2012 -20121104_MIN@SEA,2,34,10,SEA,MIN,1,10,70,(4:10) M.Lynch left tackle to SEA 38 for 8 yards (C.Greenway; J.Sanford).,14,17,2012 -20121104_MIN@SEA,2,33,34,SEA,MIN,2,2,62,(3:34) M.Lynch right tackle to SEA 36 for -2 yards (C.Greenway; J.Brinkley).,14,17,2012 -20121104_MIN@SEA,2,32,53,SEA,MIN,3,4,64,(2:53) (Shotgun) R.Wilson pass short middle to S.Rice to SEA 43 for 7 yards (J.Brinkley). Penalty on MIN-E.Griffen Defensive Offside declined.,14,17,2012 -20121104_MIN@SEA,2,32,33,SEA,MIN,1,10,57,(2:33) (Shotgun) R.Wilson scrambles right end pushed ob at SEA 47 for 4 yards (J.Brinkley).,14,17,2012 -20121104_MIN@SEA,2,32,3,SEA,MIN,2,6,53,(2:03) R.Turbin left tackle to SEA 46 for -1 yards (K.Williams).,14,17,2012 -20121104_MIN@SEA,2,31,58,SEA,MIN,3,7,54,(1:58) (Shotgun) R.Wilson pass short right to D.Baldwin ran ob at MIN 48 for 6 yards [E.Griffen].,14,17,2012 -20121104_MIN@SEA,2,31,52,SEA,MIN,4,1,48,(1:52) R.Wilson right guard to MIN 47 for 1 yard (A.Winfield; J.Brinkley). QB sneak.,14,17,2012 -20121104_MIN@SEA,2,31,26,SEA,MIN,1,10,47,(1:26) R.Wilson pass deep middle to Z.Miller to MIN 25 for 22 yards (H.Smith).,14,17,2012 -20121104_MIN@SEA,2,31,5,SEA,MIN,1,10,25,(1:05) (No Huddle) R.Wilson pass incomplete short right to Z.Miller. PENALTY on MIN-C.Greenway Illegal Contact 5 yards enforced at MIN 25 - No Play.,14,17,2012 -20121104_MIN@SEA,2,30,58,SEA,MIN,1,10,20,(:58) (Shotgun) R.Wilson pass short middle to R.Turbin to MIN 11 for 9 yards (A.Jefferson) [J.Allen].,14,17,2012 -20121104_MIN@SEA,2,30,52,SEA,MIN,2,1,11,(:52) (Shotgun) R.Wilson pass short right to G.Tate for 11 yards TOUCHDOWN.,14,17,2012 -20121104_MIN@SEA,2,30,52,SEA,MIN,,,11,S.Hauschka extra point is Blocked (K.Williams) Center-C.Gresham Holder-J.Ryan.,14,17,2012 -20121104_MIN@SEA,2,30,52,SEA,MIN,,,11,S.Hauschka kicks 42 yards from SEA 35 to MIN 23. J.Felton to MIN 39 for 16 yards (C.Martin).,20,17,2012 -20121104_MIN@SEA,2,30,38,MIN,SEA,1,10,61,(:38) (Shotgun) C.Ponder pass short left to P.Harvin to MIN 40 for 1 yard (M.Trufant).,17,20,2012 -20121104_MIN@SEA,2,30,33,MIN,SEA,2,9,60,(:33) (Shotgun) C.Ponder pass incomplete short middle to T.Gerhart.,17,20,2012 -20121104_MIN@SEA,2,30,29,MIN,SEA,3,9,60,(:29) (Shotgun) T.Gerhart right tackle to SEA 46 for 14 yards (K.Chancellor).,17,20,2012 -20121104_MIN@SEA,2,30,22,MIN,SEA,1,10,46,(:22) (Shotgun) C.Ponder sacked at SEA 49 for -3 yards (G.Scruggs).,17,20,2012 -20121104_MIN@SEA,2,30,9,MIN,SEA,2,13,49,(:09) (Shotgun) C.Ponder pass short right to M.Jenkins to SEA 48 for 1 yard (M.Trufant).,17,20,2012 -20121104_MIN@SEA,3,30,0,MIN,SEA,,,49,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,17,20,2012 -20121104_MIN@SEA,3,30,0,SEA,MIN,1,10,80,(15:00) R.Wilson pass incomplete short right to G.Tate.,20,17,2012 -20121104_MIN@SEA,3,29,56,SEA,MIN,2,10,80,(14:56) (Shotgun) M.Lynch up the middle to SEA 28 for 8 yards (C.Greenway).,20,17,2012 -20121104_MIN@SEA,3,29,21,SEA,MIN,3,2,72,(14:21) (Shotgun) R.Wilson pass incomplete short right to Z.Miller (B.Robison).,20,17,2012 -20121104_MIN@SEA,3,29,17,SEA,MIN,4,2,72,(14:17) J.Ryan punts 54 yards to MIN 18 Center-C.Gresham. M.Sherels to MIN 20 for 2 yards (M.Smith). PENALTY on MIN-A.Jefferson Offensive Holding 10 yards enforced at MIN 20.,20,17,2012 -20121104_MIN@SEA,3,29,2,MIN,SEA,1,10,90,(14:02) C.Ponder pass short right to P.Harvin pushed ob at MIN 19 for 9 yards (K.Chancellor).,17,20,2012 -20121104_MIN@SEA,3,28,32,MIN,SEA,2,1,81,(13:32) A.Peterson left guard to MIN 18 for -1 yards (M.Morgan).,17,20,2012 -20121104_MIN@SEA,3,27,52,MIN,SEA,3,2,82,(12:52) (Shotgun) C.Ponder pass short right to A.Peterson ran ob at MIN 21 for 3 yards. Seattle challenged the first down ruling and the play was Upheld. (Timeout #1.),17,20,2012 -20121104_MIN@SEA,3,27,28,MIN,SEA,1,10,79,(12:28) A.Peterson right tackle to MIN 20 for -1 yards (A.Branch; B.Wagner).,17,20,2012 -20121104_MIN@SEA,3,26,50,MIN,SEA,2,11,80,(11:50) C.Ponder scrambles up the middle to MIN 24 for 4 yards (B.Mebane).,17,20,2012 -20121104_MIN@SEA,3,26,9,MIN,SEA,3,7,76,(11:09) (Shotgun) C.Ponder sacked at MIN 16 for -8 yards (sack split by B.Irvin and L.Hill).,17,20,2012 -20121104_MIN@SEA,3,25,39,MIN,SEA,4,15,84,(10:39) C.Kluwe punts 53 yards to SEA 31 Center-C.Loeffler. L.Washington pushed ob at SEA 28 for -3 yards (A.Sendejo).,17,20,2012 -20121104_MIN@SEA,3,25,24,SEA,MIN,1,10,72,(10:24) G.Tate right end to SEA 41 for 13 yards (A.Winfield; H.Smith).,20,17,2012 -20121104_MIN@SEA,3,24,51,SEA,MIN,1,10,59,(9:51) G.Tate left end to SEA 49 for 8 yards (J.Brinkley; H.Smith).,20,17,2012 -20121104_MIN@SEA,3,24,15,SEA,MIN,2,2,51,(9:15) (Shotgun) R.Wilson left end to MIN 43 for 8 yards. Designed run - slid down on his own.,20,17,2012 -20121104_MIN@SEA,3,23,37,SEA,MIN,1,10,43,(8:37) (Shotgun) R.Wilson scrambles up the middle to MIN 41 for 2 yards (C.Greenway).,20,17,2012 -20121104_MIN@SEA,3,23,1,SEA,MIN,2,8,41,(8:01) (Shotgun) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at MIN 41 - No Play.,20,17,2012 -20121104_MIN@SEA,3,22,41,SEA,MIN,2,13,46,(7:41) (Shotgun) R.Wilson pass short right to M.Lynch pushed ob at MIN 43 for 3 yards (A.Winfield).,20,17,2012 -20121104_MIN@SEA,3,22,5,SEA,MIN,3,10,43,(7:05) (Shotgun) R.Wilson sacked at SEA 48 for -9 yards (K.Williams). PENALTY on MIN-B.Robison Defensive Offside 5 yards enforced at MIN 43 - No Play.,20,17,2012 -20121104_MIN@SEA,3,21,39,SEA,MIN,3,5,38,(6:39) (Shotgun) R.Wilson pass short left to G.Tate to MIN 32 for 6 yards (A.Winfield).,20,17,2012 -20121104_MIN@SEA,3,20,57,SEA,MIN,1,10,32,(5:57) M.Lynch left tackle to MIN 9 for 23 yards (E.Henderson; J.Sanford).,20,17,2012 -20121104_MIN@SEA,3,20,12,SEA,MIN,1,9,9,(5:12) M.Lynch up the middle to MIN 6 for 3 yards (E.Henderson; J.Sanford).,20,17,2012 -20121104_MIN@SEA,3,19,34,SEA,MIN,2,6,6,(4:34) R.Wilson scrambles left end pushed ob at MIN 2 for 4 yards (J.Sanford). PENALTY on MIN-E.Griffen Defensive Offside 3 yards enforced at MIN 6 - No Play.,20,17,2012 -20121104_MIN@SEA,3,19,13,SEA,MIN,2,3,3,(4:13) M.Lynch up the middle for 3 yards TOUCHDOWN.,20,17,2012 -20121104_MIN@SEA,3,19,13,SEA,MIN,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,20,17,2012 -20121104_MIN@SEA,3,19,13,SEA,MIN,,,3,S.Hauschka kicks 70 yards from SEA 35 to MIN -5. M.Sherels to MIN 19 for 24 yards (J.Johnson).,27,17,2012 -20121104_MIN@SEA,3,19,4,MIN,SEA,1,10,81,(4:04) A.Peterson right tackle to MIN 47 for 28 yards (B.Wagner).,17,27,2012 -20121104_MIN@SEA,3,18,26,MIN,SEA,1,10,53,(3:26) P.Harvin left end to MIN 44 for -3 yards (B.Wagner E.Thomas). PENALTY on SEA-B.Browner Unsportsmanlike Conduct 15 yards enforced at MIN 44.,17,27,2012 -20121104_MIN@SEA,3,18,5,MIN,SEA,1,10,41,(3:05) (Shotgun) C.Ponder pass short right to R.Ellison to SEA 37 for 4 yards (E.Thomas).,17,27,2012 -20121104_MIN@SEA,3,17,34,MIN,SEA,2,6,37,(2:34) A.Peterson left guard to SEA 37 for no gain (E.Thomas).,17,27,2012 -20121104_MIN@SEA,3,16,57,MIN,SEA,3,6,37,(1:57) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph [B.Irvin].,17,27,2012 -20121104_MIN@SEA,3,16,52,MIN,SEA,4,6,37,(1:52) B.Walsh 55 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,27,2012 -20121104_MIN@SEA,3,16,52,MIN,SEA,,,37,B.Walsh kicks 69 yards from MIN 35 to SEA -4. L.Washington to SEA 15 for 19 yards (R.Blanton).,20,27,2012 -20121104_MIN@SEA,3,16,41,SEA,MIN,1,10,85,(1:41) (Shotgun) M.Lynch left guard to SEA 24 for 9 yards (C.Greenway; J.Brinkley).,27,20,2012 -20121104_MIN@SEA,3,15,59,SEA,MIN,2,1,76,(:59) R.Turbin left tackle to SEA 28 for 4 yards (K.Williams; L.Guion).,27,20,2012 -20121104_MIN@SEA,3,15,22,SEA,MIN,1,10,72,(:22) (Shotgun) R.Turbin up the middle to SEA 32 for 4 yards (J.Allen). PENALTY on MIN-L.Guion Illegal Use of Hands 5 yards enforced at SEA 32.,27,20,2012 -20121104_MIN@SEA,4,15,0,SEA,MIN,1,10,63,(15:00) (Shotgun) R.Wilson pass short middle to S.Rice to 50 for 13 yards (J.Robinson).,27,20,2012 -20121104_MIN@SEA,4,14,26,SEA,MIN,1,10,50,(14:26) R.Wilson FUMBLES (Aborted) at SEA 49 ball out of bounds at SEA 49.,27,20,2012 -20121104_MIN@SEA,4,14,2,SEA,MIN,2,11,51,(14:02) R.Wilson pass incomplete short left to G.Tate.,27,20,2012 -20121104_MIN@SEA,4,13,59,SEA,MIN,3,11,51,(13:59) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin.,27,20,2012 -20121104_MIN@SEA,4,13,53,SEA,MIN,4,11,51,(13:53) J.Ryan punts 45 yards to MIN 6 Center-C.Gresham downed by SEA-J.Lane.,27,20,2012 -20121104_MIN@SEA,4,13,43,MIN,SEA,1,10,94,(13:43) C.Ponder scrambles right end to MIN 8 for 2 yards (C.Clemons).,20,27,2012 -20121104_MIN@SEA,4,13,6,MIN,SEA,2,8,92,(13:06) A.Peterson left end pushed ob at MIN 20 for 12 yards (B.Browner).,20,27,2012 -20121104_MIN@SEA,4,12,40,MIN,SEA,1,10,80,(12:40) C.Ponder pass short left to A.Peterson to MIN 25 for 5 yards (R.Bryant; E.Thomas) [B.Mebane].,20,27,2012 -20121104_MIN@SEA,4,12,5,MIN,SEA,2,5,75,(12:05) C.Ponder pass incomplete short right to J.Felton.,20,27,2012 -20121104_MIN@SEA,4,12,0,MIN,SEA,3,5,75,(12:00) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin.,20,27,2012 -20121104_MIN@SEA,4,11,56,MIN,SEA,4,5,75,(11:56) C.Kluwe punts 35 yards to SEA 40 Center-C.Loeffler fair catch by G.Tate.,20,27,2012 -20121104_MIN@SEA,4,11,49,SEA,MIN,1,10,60,(11:49) M.Lynch left tackle to SEA 37 for -3 yards (J.Allen).,27,20,2012 -20121104_MIN@SEA,4,11,12,SEA,MIN,2,13,63,(11:12) R.Wilson pass short right to M.Lynch to MIN 40 for 23 yards (J.Brinkley).,27,20,2012 -20121104_MIN@SEA,4,10,26,SEA,MIN,1,10,40,(10:26) (Shotgun) M.Lynch up the middle to MIN 38 for 2 yards (J.Allen).,27,20,2012 -20121104_MIN@SEA,4,9,48,SEA,MIN,2,8,38,(9:48) (Shotgun) M.Lynch up the middle to MIN 31 for 7 yards (C.Greenway; F.Evans).,27,20,2012 -20121104_MIN@SEA,4,9,3,SEA,MIN,3,1,31,(9:03) R.Wilson pass short right to M.Robinson to MIN 15 for 16 yards (H.Smith).,27,20,2012 -20121104_MIN@SEA,4,8,18,SEA,MIN,1,10,15,(8:18) M.Lynch right tackle to MIN 19 for -4 yards (K.Williams).,27,20,2012 -20121104_MIN@SEA,4,7,41,SEA,MIN,2,14,19,(7:41) R.Wilson sacked at MIN 27 for -8 yards (sack split by B.Robison and J.Allen).,27,20,2012 -20121104_MIN@SEA,4,7,6,SEA,MIN,3,22,27,(7:06) (Shotgun) M.Lynch right tackle to MIN 22 for 5 yards (E.Griffen; C.Greenway).,27,20,2012 -20121104_MIN@SEA,4,6,27,SEA,MIN,4,17,22,(6:27) S.Hauschka 40 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,27,20,2012 -20121104_MIN@SEA,4,6,27,SEA,MIN,,,22,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,30,20,2012 -20121104_MIN@SEA,4,6,23,MIN,SEA,1,10,80,(6:23) G.Schwartz reported in as eligible. C.Ponder pass incomplete deep left to J.Simpson (E.Thomas).,20,30,2012 -20121104_MIN@SEA,4,6,17,MIN,SEA,2,10,80,(6:17) C.Ponder scrambles left tackle to MIN 25 for 5 yards (C.Clemons).,20,30,2012 -20121104_MIN@SEA,4,5,36,MIN,SEA,3,5,75,(5:36) (Shotgun) C.Ponder pass deep left intended for P.Harvin INTERCEPTED by B.Browner at SEA 47. B.Browner to SEA 47 for no gain (P.Harvin).,20,30,2012 -20121104_MIN@SEA,4,5,27,SEA,MIN,1,10,53,(5:27) (Shotgun) R.Turbin right tackle to MIN 41 for 12 yards (H.Smith).,30,20,2012 -20121104_MIN@SEA,4,4,44,SEA,MIN,1,10,41,(4:44) M.Robinson up the middle to MIN 45 for -4 yards (F.Evans; E.Henderson).,30,20,2012 -20121104_MIN@SEA,4,4,3,SEA,MIN,2,14,45,(4:03) R.Wilson scrambles right end to MIN 32 for 13 yards. Slid down on his own.,30,20,2012 -20121104_MIN@SEA,4,3,14,SEA,MIN,3,1,32,(3:14) R.Wilson left guard to MIN 32 for no gain (E.Henderson; J.Allen). Official measurement.,30,20,2012 -20121104_MIN@SEA,4,3,9,SEA,MIN,4,1,32,(3:09) R.Wilson right guard to MIN 31 for 1 yard (C.Greenway; E.Henderson). Official measurement.,30,20,2012 -20121104_MIN@SEA,4,3,4,SEA,MIN,1,10,31,(3:04) M.Lynch left tackle to MIN 27 for 4 yards (B.Robison).,30,20,2012 -20121104_MIN@SEA,4,2,56,SEA,MIN,2,6,27,(2:56) M.Lynch left guard to MIN 21 for 6 yards (E.Henderson; K.Williams).,30,20,2012 -20121104_MIN@SEA,4,2,8,SEA,MIN,1,10,21,(2:08) M.Lynch right tackle to MIN 21 for no gain (J.Sanford).,30,20,2012 -20121104_MIN@SEA,4,2,0,SEA,MIN,2,10,21,(2:00) M.Lynch left end pushed ob at MIN 19 for 2 yards (A.Jefferson).,30,20,2012 -20121104_MIN@SEA,4,1,54,SEA,MIN,3,8,19,(1:54) M.Lynch right tackle to MIN 15 for 4 yards (H.Smith; L.Guion).,30,20,2012 -20121104_MIN@SEA,4,1,10,SEA,MIN,4,4,15,(1:10) R.Wilson pass short right to M.Robinson to MIN 9 for 6 yards (J.Brinkley).,30,20,2012 -20121104_MIN@SEA,4,0,27,SEA,MIN,1,9,9,(:27) R.Wilson kneels to MIN 11 for -2 yards.,30,20,2012 -20121104_MIN@SEA,4,0,27,SEA,MIN,,,9,                      ,30,20,2012 -20121104_PIT@NYG,1,0,0,PIT,NYG,,,9,S.Suisham kicks 65 yards from PIT 35 to NYG 0. D.Wilson to NYG 30 for 30 yards (R.Mundy).,0,0,2012 -20121104_PIT@NYG,1,59,53,NYG,PIT,1,10,70,(14:53) E.Manning pass incomplete deep middle to H.Nicks (K.Lewis).,0,0,2012 -20121104_PIT@NYG,1,59,45,NYG,PIT,2,10,70,(14:45) E.Manning pass short right to V.Cruz pushed ob at NYG 47 for 17 yards (I.Taylor).,0,0,2012 -20121104_PIT@NYG,1,59,24,NYG,PIT,1,10,53,(14:24) A.Bradshaw right guard to PIT 49 for 4 yards (J.Harrison).,0,0,2012 -20121104_PIT@NYG,1,58,55,NYG,PIT,2,6,49,(13:55) A.Bradshaw left tackle to PIT 44 for 5 yards (B.Keisel).,0,0,2012 -20121104_PIT@NYG,1,58,16,NYG,PIT,3,1,44,(13:16) E.Manning pass incomplete short right to R.Randle.,0,0,2012 -20121104_PIT@NYG,1,58,10,NYG,PIT,4,1,44,(13:10) S.Weatherford punts 42 yards to PIT 2 Center-Z.DeOssie downed by NYG-J.Tryon.,0,0,2012 -20121104_PIT@NYG,1,58,1,PIT,NYG,1,10,98,(13:01) I.Redman up the middle to PIT 13 for 11 yards (J.Pierre-Paul).,0,0,2012 -20121104_PIT@NYG,1,57,30,PIT,NYG,1,10,87,(12:30) B.Roethlisberger pass incomplete short left to W.Johnson (J.Tuck).,0,0,2012 -20121104_PIT@NYG,1,57,20,PIT,NYG,2,10,87,(12:20) B.Roethlisberger pass short right to I.Redman to PIT 16 for 3 yards (J.Hosley). PENALTY on NYG-J.Pierre-Paul Defensive Offside 5 yards enforced at PIT 13 - No Play.,0,0,2012 -20121104_PIT@NYG,1,56,57,PIT,NYG,2,5,82,(11:57) B.Roethlisberger pass short right to A.Brown to PIT 30 for 12 yards (P.Amukamara).,0,0,2012 -20121104_PIT@NYG,1,56,12,PIT,NYG,1,10,70,(11:12) B.Roethlisberger sacked at PIT 21 for -9 yards (J.Tuck).,0,0,2012 -20121104_PIT@NYG,1,55,29,PIT,NYG,2,19,79,(10:29) (Shotgun) B.Roethlisberger pass short right to C.Rainey to PIT 16 for -5 yards (J.Hosley). FUMBLES (J.Hosley) touched at PIT 16 ball out of bounds at PIT 18.,0,0,2012 -20121104_PIT@NYG,1,54,50,PIT,NYG,3,24,84,(9:50) (Shotgun) B.Roethlisberger pass short right to A.Brown pushed ob at PIT 23 for 7 yards (S.Brown).,0,0,2012 -20121104_PIT@NYG,1,54,30,PIT,NYG,4,17,77,(9:30) D.Butler punts 41 yards to NYG 36 Center-G.Warren fair catch by R.Randle.,0,0,2012 -20121104_PIT@NYG,1,54,24,NYG,PIT,1,10,64,(9:24) E.Manning pass incomplete short middle to H.Nicks (K.Lewis).,0,0,2012 -20121104_PIT@NYG,1,54,19,NYG,PIT,2,10,64,(9:19) A.Brown left guard to NYG 41 for 5 yards (L.Timmons R.Clark).,0,0,2012 -20121104_PIT@NYG,1,53,40,NYG,PIT,3,5,59,(8:40) (Shotgun) E.Manning pass incomplete short left to V.Cruz (K.Lewis).,0,0,2012 -20121104_PIT@NYG,1,53,30,NYG,PIT,4,5,59,(8:30) S.Weatherford punts 37 yards to PIT 22 Center-Z.DeOssie out of bounds.,0,0,2012 -20121104_PIT@NYG,1,53,24,PIT,NYG,1,10,78,(8:24) I.Redman up the middle to PIT 26 for 4 yards (O.Umenyiora M.Boley).,0,0,2012 -20121104_PIT@NYG,1,52,51,PIT,NYG,2,6,74,(7:51) (Shotgun) I.Redman left tackle to PIT 31 for 5 yards (L.Joseph).,0,0,2012 -20121104_PIT@NYG,1,52,4,PIT,NYG,3,1,69,(7:04) B.Roethlisberger pass short middle to I.Redman to PIT 35 for 4 yards (J.Pierre-Paul M.Herzlich).,0,0,2012 -20121104_PIT@NYG,1,51,20,PIT,NYG,1,10,65,(6:20) (Shotgun) W.Johnson left tackle to PIT 37 for 2 yards (O.Umenyiora L.Joseph).,0,0,2012 -20121104_PIT@NYG,1,50,38,PIT,NYG,2,8,63,(5:38) B.Roethlisberger scrambles up the middle to PIT 42 for 5 yards (O.Umenyiora).,0,0,2012 -20121104_PIT@NYG,1,49,48,PIT,NYG,3,3,58,(4:48) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey (A.Rolle).,0,0,2012 -20121104_PIT@NYG,1,49,42,PIT,NYG,4,3,58,(4:42) D.Butler punts 42 yards to NYG 16 Center-G.Warren fair catch by R.Randle.,0,0,2012 -20121104_PIT@NYG,1,49,34,NYG,PIT,1,10,84,(4:34) A.Bradshaw left end to NYG 15 for -1 yards (J.Harrison).,0,0,2012 -20121104_PIT@NYG,1,48,58,NYG,PIT,2,11,85,(3:58) E.Manning pass short middle to V.Cruz to NYG 41 for 26 yards (I.Taylor).,0,0,2012 -20121104_PIT@NYG,1,48,14,NYG,PIT,1,10,59,(3:14) E.Manning pass deep left intended for V.Cruz INTERCEPTED by I.Taylor [S.McLendon] at PIT 39. I.Taylor to PIT 42 for 3 yards (V.Cruz).,0,0,2012 -20121104_PIT@NYG,1,48,3,PIT,NYG,1,10,58,(3:03) I.Redman up the middle to NYG 41 for 17 yards (S.Brown).,0,0,2012 -20121104_PIT@NYG,1,47,26,PIT,NYG,1,10,41,(2:26) I.Redman right guard to NYG 37 for 4 yards (J.Tuck R.Bernard).,0,0,2012 -20121104_PIT@NYG,1,46,44,PIT,NYG,2,6,37,(1:44) B.Roethlisberger pass incomplete deep right to A.Brown.,0,0,2012 -20121104_PIT@NYG,1,46,35,PIT,NYG,3,6,37,(1:35) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to NYG 29 for 8 yards (M.Herzlich).,0,0,2012 -20121104_PIT@NYG,1,45,57,PIT,NYG,1,10,29,(:57) I.Redman left guard to NYG 30 for -1 yards (S.Brown).,0,0,2012 -20121104_PIT@NYG,1,45,14,PIT,NYG,2,11,30,(:14) B.Roethlisberger pass short middle to D.Paulson to NYG 23 for 7 yards (M.Boley A.Rolle).,0,0,2012 -20121104_PIT@NYG,2,45,0,PIT,NYG,3,4,23,(15:00) (Shotgun) B.Roethlisberger pass short right to W.Johnson to NYG 18 for 5 yards (M.Boley S.Brown).,0,0,2012 -20121104_PIT@NYG,2,44,28,PIT,NYG,1,10,18,(14:28) I.Redman right tackle to NYG 11 for 7 yards (L.Joseph).,0,0,2012 -20121104_PIT@NYG,2,43,43,PIT,NYG,2,3,11,(13:43) I.Redman left guard to NYG 6 for 5 yards (S.Brown).,0,0,2012 -20121104_PIT@NYG,2,42,59,PIT,NYG,1,6,6,(12:59) I.Redman right guard to NYG 4 for 2 yards (J.Pierre-Paul J.Tuck).,0,0,2012 -20121104_PIT@NYG,2,42,20,PIT,NYG,2,4,4,(12:20) B.Roethlisberger pass short middle to E.Sanders for 4 yards TOUCHDOWN.,0,0,2012 -20121104_PIT@NYG,2,42,20,PIT,NYG,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121104_PIT@NYG,2,42,20,PIT,NYG,,,4,S.Suisham kicks 69 yards from PIT 35 to NYG -4. D.Wilson to NYG 28 for 32 yards (B.Johnson).,7,0,2012 -20121104_PIT@NYG,2,42,3,NYG,PIT,1,10,72,(12:03) A.Bradshaw left guard to NYG 33 for 5 yards (W.Allen).,0,7,2012 -20121104_PIT@NYG,2,41,35,NYG,PIT,2,5,67,(11:35) E.Manning pass short middle to M.Bennett to NYG 39 for 6 yards (L.Foote).,0,7,2012 -20121104_PIT@NYG,2,40,50,NYG,PIT,1,10,61,(10:50) E.Manning pass incomplete deep middle to H.Nicks (K.Lewis). PENALTY on PIT-K.Lewis Defensive Pass Interference 41 yards enforced at NYG 39 - No Play.,0,7,2012 -20121104_PIT@NYG,2,40,41,NYG,PIT,1,10,20,(10:41) A.Bradshaw right tackle to PIT 16 for 4 yards (L.Foote K.Lewis).,0,7,2012 -20121104_PIT@NYG,2,40,5,NYG,PIT,2,6,16,(10:05) (Shotgun) A.Bradshaw right guard to PIT 12 for 4 yards (L.Foote B.Keisel).,0,7,2012 -20121104_PIT@NYG,2,39,20,NYG,PIT,3,2,12,(9:20) (Shotgun) A.Bradshaw right tackle to PIT 8 for 4 yards (K.Lewis R.Clark).,0,7,2012 -20121104_PIT@NYG,2,38,42,NYG,PIT,1,8,8,(8:42) (Shotgun) A.Bradshaw left tackle to PIT 5 for 3 yards (R.Clark B.Keisel).,0,7,2012 -20121104_PIT@NYG,2,38,2,NYG,PIT,2,5,5,(8:02) A.Bradshaw right tackle to PIT 2 for 3 yards (L.Timmons).,0,7,2012 -20121104_PIT@NYG,2,37,15,NYG,PIT,3,2,2,(7:15) E.Manning pass incomplete short middle to V.Cruz (I.Taylor). PENALTY on PIT-R.Clark Personal Foul 1 yard enforced at PIT 2 - No Play. #80 - V.Cruz injured on the play.,0,7,2012 -20121104_PIT@NYG,2,37,6,NYG,PIT,1,1,1,(7:06) A.Brown right guard for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,7,2012 -20121104_PIT@NYG,2,37,6,NYG,PIT,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,7,2012 -20121104_PIT@NYG,2,37,6,NYG,PIT,,,1,L.Tynes kicks 63 yards from NYG 35 to PIT 2. C.Rainey to NYG 48 for 50 yards (J.Tryon).,7,7,2012 -20121104_PIT@NYG,2,36,51,PIT,NYG,1,10,48,(6:51) (Shotgun) B.Roethlisberger pass incomplete short middle to H.Miller.,7,7,2012 -20121104_PIT@NYG,2,36,46,PIT,NYG,2,10,48,(6:46) (No Huddle Shotgun) I.Redman up the middle to NYG 37 for 11 yards (A.Rolle P.Amukamara).,7,7,2012 -20121104_PIT@NYG,2,36,7,PIT,NYG,1,10,37,(6:07) (No Huddle Shotgun) B.Roethlisberger pass short middle to H.Miller to NYG 32 for 5 yards (M.Herzlich).,7,7,2012 -20121104_PIT@NYG,2,35,29,PIT,NYG,2,5,32,(5:29) (No Huddle Shotgun) B.Roethlisberger sacked at NYG 38 for -6 yards (O.Umenyiora). FUMBLES (O.Umenyiora) RECOVERED by NYG-M.Boley at NYG 30. M.Boley for 70 yards TOUCHDOWN. Officially a sack for 0 yards. The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,7,2012 -20121104_PIT@NYG,2,35,29,NYG,PIT,,,32,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,7,2012 -20121104_PIT@NYG,2,35,29,NYG,PIT,,,32,L.Tynes kicks 65 yards from NYG 35 to PIT 0. C.Rainey to PIT 31 for 31 yards (S.Paysinger).,14,7,2012 -20121104_PIT@NYG,2,35,5,PIT,NYG,1,10,69,(5:05) (Shotgun) I.Redman right tackle to PIT 43 for 12 yards (R.Bernard).,7,14,2012 -20121104_PIT@NYG,2,34,28,PIT,NYG,1,10,57,(4:28) (Shotgun) I.Redman up the middle to PIT 46 for 3 yards (M.Boley J.Tuck).,7,14,2012 -20121104_PIT@NYG,2,33,41,PIT,NYG,2,7,54,(3:41) C.Rainey right guard to 50 for 4 yards (R.Bernard C.Canty).,7,14,2012 -20121104_PIT@NYG,2,33,0,PIT,NYG,3,3,50,(3:00) (Shotgun) B.Roethlisberger pass short right to C.Rainey to NYG 48 for 2 yards (M.Boley A.Rolle).,7,14,2012 -20121104_PIT@NYG,2,32,32,PIT,NYG,4,1,48,(2:32) I.Redman right guard to NYG 44 for 4 yards (M.Boley S.Brown).,7,14,2012 -20121104_PIT@NYG,2,32,0,PIT,NYG,1,10,44,(2:00) (Shotgun) I.Redman up the middle to NYG 41 for 3 yards (L.Joseph).,7,14,2012 -20121104_PIT@NYG,2,31,35,PIT,NYG,2,7,41,(1:35) (No Huddle Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace (C.Webster).,7,14,2012 -20121104_PIT@NYG,2,31,26,PIT,NYG,3,7,41,(1:26) (Shotgun) B.Roethlisberger sacked at PIT 47 for -12 yards (J.Pierre-Paul).,7,14,2012 -20121104_PIT@NYG,2,31,20,PIT,NYG,4,19,53,(1:20) D.Butler punts 53 yards to end zone Center-G.Warren Touchback.,7,14,2012 -20121104_PIT@NYG,2,31,10,NYG,PIT,1,10,80,(1:10) (Shotgun) E.Manning pass incomplete short right to V.Cruz.,14,7,2012 -20121104_PIT@NYG,2,31,2,NYG,PIT,2,10,80,(1:02) (Shotgun) E.Manning pass incomplete deep left to D.Hixon (K.Lewis). PENALTY on PIT-K.Lewis Defensive Pass Interference 46 yards enforced at NYG 20 - No Play.,14,7,2012 -20121104_PIT@NYG,2,30,52,NYG,PIT,1,10,34,(:52) (Shotgun) PENALTY on NYG-M.Bennett False Start 5 yards enforced at PIT 34 - No Play.,14,7,2012 -20121104_PIT@NYG,2,30,52,NYG,PIT,1,15,39,(:52) (Shotgun) PENALTY on NYG-D.Diehl False Start 5 yards enforced at PIT 39 - No Play.,14,7,2012 -20121104_PIT@NYG,2,30,52,NYG,PIT,1,20,44,(:52) (Shotgun) E.Manning pass incomplete short middle to R.Randle (C.Allen).,14,7,2012 -20121104_PIT@NYG,2,30,48,NYG,PIT,2,20,44,(:48) (Shotgun) E.Manning pass short middle to V.Cruz to PIT 33 for 11 yards (R.Clark I.Taylor).,14,7,2012 -20121104_PIT@NYG,2,30,41,NYG,PIT,3,9,33,(:41) (Shotgun) E.Manning pass incomplete short left to D.Hixon [L.Woodley].,14,7,2012 -20121104_PIT@NYG,2,30,36,NYG,PIT,4,9,33,(:36) L.Tynes 51 yard field goal is No Good Short Center-Z.DeOssie Holder-S.Weatherford.,14,7,2012 -20121104_PIT@NYG,2,30,31,PIT,NYG,1,10,59,(:31) (Shotgun) B.Roethlisberger pass deep middle to J.Cotchery to NYG 35 for 24 yards (M.Herzlich).,7,14,2012 -20121104_PIT@NYG,2,30,20,PIT,NYG,1,10,35,(:20) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to NYG 12 for 23 yards (A.Rolle).,7,14,2012 -20121104_PIT@NYG,2,30,6,PIT,NYG,1,10,12,(:06) B.Roethlisberger spiked the ball to stop the clock.,7,14,2012 -20121104_PIT@NYG,2,30,5,PIT,NYG,2,10,12,(:05) S.Suisham 30 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,7,14,2012 -20121104_PIT@NYG,3,30,0,NYG,PIT,,,12,L.Tynes kicks 68 yards from NYG 35 to PIT -3. C.Rainey pushed ob at NYG 35 for 68 yards (S.Brown).,14,10,2012 -20121104_PIT@NYG,3,29,50,PIT,NYG,1,10,35,(14:50) I.Redman right guard to NYG 32 for 3 yards (S.Brown M.Boley).,10,14,2012 -20121104_PIT@NYG,3,29,9,PIT,NYG,2,7,32,(14:09) (Shotgun) B.Roethlisberger pass short right to M.Wallace pushed ob at NYG 32 for no gain (C.Webster).,10,14,2012 -20121104_PIT@NYG,3,28,36,PIT,NYG,3,7,32,(13:36) (Shotgun) B.Roethlisberger sacked at NYG 36 for -4 yards (J.Tuck).,10,14,2012 -20121104_PIT@NYG,3,28,12,PIT,NYG,4,11,36,(13:12) D.Butler punts 29 yards to NYG 7 Center-G.Warren downed by PIT-C.Carter.,10,14,2012 -20121104_PIT@NYG,3,28,2,NYG,PIT,1,10,93,(13:02) A.Bradshaw right tackle to NYG 16 for 9 yards (L.Foote W.Allen).,14,10,2012 -20121104_PIT@NYG,3,27,33,NYG,PIT,2,1,84,(12:33) A.Bradshaw up the middle to NYG 20 for 4 yards (R.Mundy).,14,10,2012 -20121104_PIT@NYG,3,26,54,NYG,PIT,1,10,80,(11:54) E.Manning pass deep right to M.Bennett to PIT 47 for 33 yards (R.Clark) [C.Hampton].,14,10,2012 -20121104_PIT@NYG,3,26,10,NYG,PIT,1,10,47,(11:10) A.Brown right tackle to PIT 43 for 4 yards (R.Mundy E.Hood).,14,10,2012 -20121104_PIT@NYG,3,25,28,NYG,PIT,2,6,43,(10:28) (Shotgun) E.Manning pass short left to H.Hynoski pushed ob at PIT 35 for 8 yards (J.Harrison).,14,10,2012 -20121104_PIT@NYG,3,24,58,NYG,PIT,1,10,35,(9:58) A.Bradshaw left guard to PIT 32 for 3 yards (J.Harrison L.Foote).,14,10,2012 -20121104_PIT@NYG,3,24,21,NYG,PIT,2,7,32,(9:21) A.Bradshaw up the middle to PIT 32 for no gain (R.Clark).,14,10,2012 -20121104_PIT@NYG,3,23,36,NYG,PIT,3,7,32,(8:36) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,14,10,2012 -20121104_PIT@NYG,3,23,30,NYG,PIT,4,7,32,(8:30) L.Tynes 50 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,14,10,2012 -20121104_PIT@NYG,3,23,30,NYG,PIT,,,32,L.Tynes kicks 56 yards from NYG 35 to PIT 9. C.Rainey to PIT 19 for 10 yards (S.Paysinger). PENALTY on PIT-L.Pope Personal Foul 6 yards enforced at PIT 12. Officially a kickoff return of 3 yards.,17,10,2012 -20121104_PIT@NYG,3,23,18,PIT,NYG,1,10,94,(8:18) B.Roethlisberger pass short middle to J.Cotchery to PIT 12 for 6 yards (M.Herzlich).,10,17,2012 -20121104_PIT@NYG,3,22,47,PIT,NYG,2,4,88,(7:47) I.Redman left guard to PIT 15 for 3 yards (M.Boley). PENALTY on NYG-M.Kiwanuka Illegal Use of Hands 5 yards enforced at PIT 15.,10,17,2012 -20121104_PIT@NYG,3,22,23,PIT,NYG,1,10,80,(7:23) B.Roethlisberger pass deep middle intended for M.Wallace INTERCEPTED by C.Webster at PIT 40. C.Webster to PIT 33 for 7 yards (M.Wallace).,10,17,2012 -20121104_PIT@NYG,3,22,9,NYG,PIT,1,10,33,(7:09) A.Brown left end to PIT 30 for 3 yards (I.Taylor).,17,10,2012 -20121104_PIT@NYG,3,21,26,NYG,PIT,2,7,30,(6:26) (Shotgun) E.Manning pass short middle to V.Cruz to PIT 23 for 7 yards (I.Taylor). Pittsburgh challenged the first down ruling and the play was REVERSED. (Shotgun) E.Manning pass short middle to V.Cruz to PIT 24 for 6 yards (I.Taylor).,17,10,2012 -20121104_PIT@NYG,3,20,35,NYG,PIT,3,1,24,(5:35) A.Brown right tackle to PIT 16 for 8 yards (W.Allen I.Taylor).,17,10,2012 -20121104_PIT@NYG,3,20,35,NYG,PIT,1,10,16,(5:35) PENALTY on NYG-E.Manning Delay of Game 5 yards enforced at PIT 16 - No Play.,17,10,2012 -20121104_PIT@NYG,3,19,26,NYG,PIT,1,15,21,(4:26) E.Manning pass short middle to V.Cruz to PIT 14 for 7 yards (L.Foote).,17,10,2012 -20121104_PIT@NYG,3,18,43,NYG,PIT,2,8,14,(3:43) (Shotgun) E.Manning pass short right to H.Nicks ran ob at PIT 4 for 10 yards (W.Allen).,17,10,2012 -20121104_PIT@NYG,3,18,9,NYG,PIT,1,4,4,(3:09) A.Brown right tackle to PIT 2 for 2 yards (L.Woodley W.Allen).,17,10,2012 -20121104_PIT@NYG,3,17,26,NYG,PIT,2,2,2,(2:26) A.Brown left end to PIT 5 for -3 yards (R.Clark I.Taylor).,17,10,2012 -20121104_PIT@NYG,3,16,43,NYG,PIT,3,5,5,(1:43) (Shotgun) E.Manning pass incomplete short left to R.Randle.,17,10,2012 -20121104_PIT@NYG,3,16,36,NYG,PIT,4,5,5,(1:36) L.Tynes 23 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,10,2012 -20121104_PIT@NYG,3,16,36,NYG,PIT,,,5,L.Tynes kicks 61 yards from NYG 35 to PIT 4. C.Rainey to PIT 25 for 21 yards (A.Tracy). PIT-C.Rainey was injured during the play.,20,10,2012 -20121104_PIT@NYG,3,16,26,PIT,NYG,1,10,75,(1:26) I.Redman left tackle to PIT 29 for 4 yards (M.Boley).,10,20,2012 -20121104_PIT@NYG,3,15,47,PIT,NYG,2,6,71,(:47) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 44 for 15 yards (A.Rolle).,10,20,2012 -20121104_PIT@NYG,3,15,25,PIT,NYG,1,10,56,(:25) I.Redman right end to PIT 46 for 2 yards (M.Kiwanuka O.Umenyiora).,10,20,2012 -20121104_PIT@NYG,4,15,0,PIT,NYG,2,8,54,(15:00) I.Redman up the middle to PIT 49 for 3 yards (L.Joseph O.Umenyiora).,10,20,2012 -20121104_PIT@NYG,4,14,16,PIT,NYG,3,5,51,(14:16) (Shotgun) B.Roethlisberger pass short middle to M.Wallace for 51 yards TOUCHDOWN.,10,20,2012 -20121104_PIT@NYG,4,14,16,PIT,NYG,,,51,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,10,20,2012 -20121104_PIT@NYG,4,14,16,PIT,NYG,,,51,S.Suisham kicks 65 yards from PIT 35 to NYG 0. D.Wilson pushed ob at NYG 20 for 20 yards (C.Brown). PENALTY on PIT-C.Allen Face Mask (15 Yards) 15 yards enforced at NYG 20.,17,20,2012 -20121104_PIT@NYG,4,13,58,NYG,PIT,1,10,65,(13:58) E.Manning pass incomplete short right to V.Cruz.,20,17,2012 -20121104_PIT@NYG,4,13,54,NYG,PIT,2,10,65,(13:54) A.Bradshaw right tackle to NYG 34 for -1 yards (C.Hampton).,20,17,2012 -20121104_PIT@NYG,4,13,18,NYG,PIT,3,11,66,(13:18) (Shotgun) E.Manning sacked at NYG 23 for -11 yards (L.Timmons).,20,17,2012 -20121104_PIT@NYG,4,12,56,NYG,PIT,4,22,77,(12:56) S.Weatherford punts 52 yards to PIT 25 Center-Z.DeOssie. E.Sanders to NYG 12 for 63 yards (S.Weatherford).,20,17,2012 -20121104_PIT@NYG,4,12,36,PIT,NYG,1,10,12,(12:36) I.Redman left guard to NYG 9 for 3 yards (L.Joseph J.Pierre-Paul).,17,20,2012 -20121104_PIT@NYG,4,11,54,PIT,NYG,2,7,9,(11:54) B.Roethlisberger pass short middle to H.Miller to NYG 3 for 6 yards (M.Herzlich M.Boley).,17,20,2012 -20121104_PIT@NYG,4,11,8,PIT,NYG,3,1,3,(11:08) B.Roethlisberger pass short left to I.Redman to NYG 3 for no gain (A.Rolle J.Pierre-Paul).,17,20,2012 -20121104_PIT@NYG,4,10,41,PIT,NYG,4,1,3,(10:41) (Field Goal formation) S.Suisham right end to NYG 4 for -1 yards (M.Coe). Unsuccessful fake field goal attempt.,17,20,2012 -20121104_PIT@NYG,4,10,30,NYG,PIT,1,10,96,(10:30) A.Bradshaw left tackle to NYG 6 for 2 yards (B.Keisel J.Harrison).,20,17,2012 -20121104_PIT@NYG,4,9,59,NYG,PIT,2,8,94,(9:59) E.Manning pass incomplete deep left to H.Nicks.,20,17,2012 -20121104_PIT@NYG,4,9,45,NYG,PIT,3,8,94,(9:45) (Shotgun) E.Manning pass short left to M.Bennett to NYG 7 for 1 yard (R.Clark).,20,17,2012 -20121104_PIT@NYG,4,9,10,NYG,PIT,4,7,93,(9:10) S.Weatherford punts 55 yards to PIT 38 Center-Z.DeOssie. E.Sanders to PIT 49 for 11 yards (M.Boley).,20,17,2012 -20121104_PIT@NYG,4,8,55,PIT,NYG,1,10,51,(8:55) I.Redman right end to NYG 47 for 4 yards (O.Umenyiora A.Rolle).,17,20,2012 -20121104_PIT@NYG,4,8,11,PIT,NYG,2,6,47,(8:11) (Shotgun) B.Roethlisberger pass short right to H.Miller to NYG 33 for 14 yards (C.Webster M.Herzlich).,17,20,2012 -20121104_PIT@NYG,4,7,30,PIT,NYG,1,10,33,(7:30) (Shotgun) B.Batch up the middle to NYG 29 for 4 yards (J.Pierre-Paul).,17,20,2012 -20121104_PIT@NYG,4,6,51,PIT,NYG,2,6,29,(6:51) (Shotgun) B.Roethlisberger pass short right to J.Cotchery pushed ob at NYG 17 for 12 yards (P.Amukamara).,17,20,2012 -20121104_PIT@NYG,4,6,15,PIT,NYG,1,10,17,(6:15) (Shotgun) I.Redman left guard to NYG 14 for 3 yards (S.Brown L.Joseph).,17,20,2012 -20121104_PIT@NYG,4,5,32,PIT,NYG,2,7,14,(5:32) (Shotgun) B.Roethlisberger pass incomplete short left to W.Johnson.,17,20,2012 -20121104_PIT@NYG,4,5,26,PIT,NYG,3,7,14,(5:26) (Shotgun) I.Redman left tackle to NYG 9 for 5 yards (A.Rolle M.Kiwanuka). PENALTY on NYG-J.Hosley Defensive Offside 5 yards enforced at NYG 14 - No Play.,17,20,2012 -20121104_PIT@NYG,4,5,3,PIT,NYG,3,2,9,(5:03) I.Redman right guard to NYG 1 for 8 yards (S.Brown P.Amukamara).,17,20,2012 -20121104_PIT@NYG,4,4,14,PIT,NYG,1,1,1,(4:14) B.Roethlisberger pass incomplete short left to D.Paulson [M.Kiwanuka].,17,20,2012 -20121104_PIT@NYG,4,4,8,PIT,NYG,2,1,1,(4:08) I.Redman right tackle for 1 yard TOUCHDOWN.,17,20,2012 -20121104_PIT@NYG,4,4,8,PIT,NYG,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,20,2012 -20121104_PIT@NYG,4,4,8,PIT,NYG,,,1,S.Suisham kicks 61 yards from PIT 35 to NYG 4. D.Wilson to NYG 35 for 31 yards (C.Allen). PENALTY on NYG-T.Sash Offensive Holding 10 yards enforced at NYG 22. Officially a return for 18 yards.,24,20,2012 -20121104_PIT@NYG,4,3,55,NYG,PIT,1,10,88,(3:55) E.Manning pass incomplete short left to V.Cruz.,20,24,2012 -20121104_PIT@NYG,4,3,51,NYG,PIT,2,10,88,(3:51) (Shotgun) E.Manning pass incomplete deep middle to M.Bennett [L.Timmons].,20,24,2012 -20121104_PIT@NYG,4,3,45,NYG,PIT,3,10,88,(3:45) (Shotgun) E.Manning sacked at NYG 3 for -9 yards (L.Woodley). FUMBLES (L.Woodley) recovered by NYG-K.Boothe at NYG 13. K.Boothe to NYG 13 for no gain (L.Foote).,20,24,2012 -20121104_PIT@NYG,4,3,7,NYG,PIT,4,9,87,(3:07) S.Weatherford punts 51 yards to PIT 36 Center-Z.DeOssie. E.Sanders to PIT 38 for 2 yards (S.Paysinger Z.DeOssie). PENALTY on PIT-B.Johnson Offensive Holding 10 yards enforced at PIT 38.,20,24,2012 -20121104_PIT@NYG,4,2,52,PIT,NYG,1,10,72,(2:52) B.Batch right tackle to PIT 31 for 3 yards (M.Herzlich R.Bernard).,24,20,2012 -20121104_PIT@NYG,4,2,45,PIT,NYG,2,7,69,(2:45) I.Redman left tackle to PIT 29 for -2 yards (J.Pierre-Paul).,24,20,2012 -20121104_PIT@NYG,4,2,40,PIT,NYG,3,9,71,(2:40) (Shotgun) B.Roethlisberger pass deep right to E.Sanders to PIT 45 for 16 yards (A.Rolle).,24,20,2012 -20121104_PIT@NYG,4,2,23,PIT,NYG,1,10,55,(2:23) I.Redman up the middle to NYG 27 for 28 yards (A.Rolle).,24,20,2012 -20121104_PIT@NYG,4,2,0,PIT,NYG,1,10,27,(2:00) B.Roethlisberger kneels to NYG 28 for -1 yards.,24,20,2012 -20121104_PIT@NYG,4,1,19,PIT,NYG,2,11,28,(1:19) B.Roethlisberger kneels to NYG 30 for -2 yards.,24,20,2012 -20121104_PIT@NYG,4,0,38,PIT,NYG,3,13,30,(:38) B.Roethlisberger kneels to NYG 33 for -3 yards.,24,20,2012 -20121104_PIT@NYG,4,0,38,PIT,NYG,,,30,                      ,24,20,2012 -20121104_DAL@ATL,1,0,0,DAL,ATL,,,30,D.Bailey kicks 65 yards from DAL 35 to ATL 0. Jz. Rodgers to ATL 21 for 21 yards (K.Wilber).,0,0,2012 -20121104_DAL@ATL,1,59,54,ATL,DAL,1,10,79,(14:54) M.Ryan pass incomplete short left to L.Polite.,0,0,2012 -20121104_DAL@ATL,1,59,50,ATL,DAL,2,10,79,(14:50) M.Turner left guard to ATL 22 for 1 yard.,0,0,2012 -20121104_DAL@ATL,1,59,11,ATL,DAL,3,9,78,(14:11) M.Ryan pass incomplete short right to H.Douglas.,0,0,2012 -20121104_DAL@ATL,1,59,7,ATL,DAL,4,9,78,(14:07) M.Bosher punts 47 yards to DAL 31 Center-J.Harris. D.Harris to ATL 32 for 37 yards (M.Peterson).,0,0,2012 -20121104_DAL@ATL,1,58,53,DAL,ATL,1,10,32,(13:53) T.Romo pass short right to M.Austin pushed ob at ATL 23 for 9 yards (A.Samuel).,0,0,2012 -20121104_DAL@ATL,1,58,33,DAL,ATL,2,1,23,(13:33) F.Jones right tackle to ATL 20 for 3 yards (V.Walker).,0,0,2012 -20121104_DAL@ATL,1,57,48,DAL,ATL,1,10,20,(12:48) (Shotgun) T.Romo pass short left to K.Ogletree ran ob at ATL 10 for 10 yards.,0,0,2012 -20121104_DAL@ATL,1,57,19,DAL,ATL,1,10,10,(12:19) T.Romo pass short right to M.Austin to ATL 6 for 4 yards (W.Moore).,0,0,2012 -20121104_DAL@ATL,1,56,42,DAL,ATL,2,6,6,(11:42) F.Jones up the middle to ATL 5 for 1 yard (J.Babineaux).,0,0,2012 -20121104_DAL@ATL,1,55,56,DAL,ATL,3,5,5,(10:56) (Shotgun) T.Romo pass incomplete short left to C.Beasley.,0,0,2012 -20121104_DAL@ATL,1,55,49,DAL,ATL,4,5,5,(10:49) D.Bailey 23 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121104_DAL@ATL,1,55,49,DAL,ATL,,,5,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,3,0,2012 -20121104_DAL@ATL,1,55,46,ATL,DAL,1,10,80,(10:46) M.Turner left guard to ATL 21 for 1 yard (E.Sims).,0,3,2012 -20121104_DAL@ATL,1,55,4,ATL,DAL,2,9,79,(10:04) (Shotgun) M.Ryan pass incomplete short left. PENALTY on DAL-B.Carter Illegal Contact 5 yards enforced at ATL 21 - No Play.,0,3,2012 -20121104_DAL@ATL,1,54,57,ATL,DAL,1,10,74,(9:57) M.Ryan pass incomplete short middle to M.Turner.,0,3,2012 -20121104_DAL@ATL,1,54,51,ATL,DAL,2,10,74,(9:51) (Shotgun) M.Ryan pass deep left to J.Jones to DAL 36 for 38 yards (M.Claiborne). Penalty on DAL-M.Claiborne Defensive Pass Interference declined.,0,3,2012 -20121104_DAL@ATL,1,54,26,ATL,DAL,1,10,36,(9:26) M.Ryan pass short middle to R.White pushed ob at DAL 26 for 10 yards (G.Sensabaugh).,0,3,2012 -20121104_DAL@ATL,1,53,55,ATL,DAL,1,10,26,(8:55) M.Turner right tackle to DAL 23 for 3 yards (A.Spencer).,0,3,2012 -20121104_DAL@ATL,1,53,21,ATL,DAL,2,7,23,(8:21) (Shotgun) M.Ryan pass short left to J.Jones to DAL 23 for no gain (O.Scandrick). PENALTY on DAL-A.Spencer Defensive Offside 5 yards enforced at DAL 23 - No Play.,0,3,2012 -20121104_DAL@ATL,1,52,54,ATL,DAL,2,2,18,(7:54) M.Turner right tackle to DAL 18 for no gain (D.Ware).,0,3,2012 -20121104_DAL@ATL,1,52,4,ATL,DAL,3,2,18,(7:04) Jz. Rodgers up the middle to DAL 19 for -1 yards (B.Carter).,0,3,2012 -20121104_DAL@ATL,1,51,20,ATL,DAL,4,3,19,(6:20) M.Bryant 37 yard field goal is No Good Wide Right Center-J.Harris Holder-M.Bosher.,0,3,2012 -20121104_DAL@ATL,1,51,15,DAL,ATL,1,10,73,(6:15) T.Romo pass short right to J.Witten to DAL 34 for 7 yards (S.Nicholas). PENALTY on DAL-T.Smith Illegal Use of Hands 10 yards enforced at DAL 27 - No Play.,3,0,2012 -20121104_DAL@ATL,1,50,44,DAL,ATL,1,20,83,(5:44) (Shotgun) T.Romo pass incomplete short right to L.Dunbar.,3,0,2012 -20121104_DAL@ATL,1,50,39,DAL,ATL,2,20,83,(5:39) T.Romo pass incomplete short left to J.Witten.,3,0,2012 -20121104_DAL@ATL,1,50,35,DAL,ATL,3,20,83,(5:35) (Shotgun) T.Romo pass deep left to K.Ogletree to ATL 18 for 65 yards (D.Robinson).,3,0,2012 -20121104_DAL@ATL,1,49,42,DAL,ATL,1,10,18,(4:42) L.Dunbar left guard to ATL 14 for 4 yards (R.McClain).,3,0,2012 -20121104_DAL@ATL,1,49,1,DAL,ATL,2,6,14,(4:01) (Shotgun) T.Romo pass incomplete short left to L.Dunbar (A.Dent).,3,0,2012 -20121104_DAL@ATL,1,48,52,DAL,ATL,3,6,14,(3:52) (Shotgun) T.Romo pass incomplete short left to D.Bryant (J.Babineaux).,3,0,2012 -20121104_DAL@ATL,1,48,47,DAL,ATL,4,6,14,(3:47) D.Bailey 32 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,0,2012 -20121104_DAL@ATL,1,48,47,DAL,ATL,,,14,D.Bailey kicks 62 yards from DAL 35 to ATL 3. Jz. Rodgers to ATL 27 for 24 yards (P.Tanner).,6,0,2012 -20121104_DAL@ATL,1,48,36,ATL,DAL,1,10,73,(3:36) M.Ryan pass short middle to J.Jones to ATL 47 for 20 yards (A.Spencer).,0,6,2012 -20121104_DAL@ATL,1,48,14,ATL,DAL,1,10,53,(3:14) (No Huddle) Jz. Rodgers right end to ATL 45 for -2 yards (A.Spencer).,0,6,2012 -20121104_DAL@ATL,1,47,30,ATL,DAL,2,12,55,(2:30) (Shotgun) M.Ryan pass short left to T.Gonzalez to 50 for 5 yards (B.Carter).,0,6,2012 -20121104_DAL@ATL,1,46,45,ATL,DAL,3,7,50,(1:45) (Shotgun) M.Ryan pass short right to R.White to DAL 32 for 18 yards (D.McCray).,0,6,2012 -20121104_DAL@ATL,1,46,0,ATL,DAL,1,10,32,(1:00) M.Turner left tackle to DAL 28 for 4 yards (E.Sims).,0,6,2012 -20121104_DAL@ATL,1,45,14,ATL,DAL,2,6,28,(:14) M.Turner left guard to DAL 29 for -1 yards (D.Ware).,0,6,2012 -20121104_DAL@ATL,2,45,0,ATL,DAL,3,7,29,(15:00) (Shotgun) M.Ryan pass short right to J.Snelling to DAL 27 for 2 yards (O.Scandrick).,0,6,2012 -20121104_DAL@ATL,2,44,19,ATL,DAL,4,5,27,(14:19) M.Bryant 45 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,0,6,2012 -20121104_DAL@ATL,2,44,19,ATL,DAL,,,27,M.Bosher kicks 66 yards from ATL 35 to DAL -1. L.Dunbar to DAL 19 for 20 yards (A.Smith).,3,6,2012 -20121104_DAL@ATL,2,44,8,DAL,ATL,1,10,81,(14:08) F.Jones left guard to DAL 19 for no gain (J.Babineaux).,6,3,2012 -20121104_DAL@ATL,2,43,33,DAL,ATL,2,10,81,(13:33) (Shotgun) T.Romo pass short left to M.Austin pushed ob at DAL 30 for 11 yards (D.Robinson).,6,3,2012 -20121104_DAL@ATL,2,43,8,DAL,ATL,1,10,70,(13:08) L.Dunbar left end to DAL 32 for 2 yards (K.Biermann).,6,3,2012 -20121104_DAL@ATL,2,42,24,DAL,ATL,2,8,68,(12:24) T.Romo pass deep left to D.Bryant ran ob at DAL 47 for 15 yards. Penalty on ATL-D.Robinson Illegal Contact declined.,6,3,2012 -20121104_DAL@ATL,2,41,55,DAL,ATL,1,10,53,(11:55) F.Jones right guard to 50 for 3 yards (W.Moore).,6,3,2012 -20121104_DAL@ATL,2,41,22,DAL,ATL,2,7,50,(11:22) F.Jones left end to ATL 44 for 6 yards (D.Robinson).,6,3,2012 -20121104_DAL@ATL,2,40,42,DAL,ATL,3,1,44,(10:42) T.Romo pass deep right intended for J.Witten INTERCEPTED by T.DeCoud at ATL 25. T.DeCoud to ATL 31 for 6 yards (P.Tanner). PENALTY on ATL-D.Robinson Defensive Holding 5 yards enforced at ATL 44 - No Play.,6,3,2012 -20121104_DAL@ATL,2,40,33,DAL,ATL,1,10,39,(10:33) T.Romo pass incomplete deep right to D.Bryant (A.Samuel).,6,3,2012 -20121104_DAL@ATL,2,40,25,DAL,ATL,2,10,39,(10:25) (Shotgun) L.Dunbar right end to ATL 36 for 3 yards (J.Babineaux; R.McClain).,6,3,2012 -20121104_DAL@ATL,2,39,43,DAL,ATL,3,7,36,(9:43) (Shotgun) T.Romo pass incomplete short left to K.Ogletree.,6,3,2012 -20121104_DAL@ATL,2,39,37,DAL,ATL,4,7,36,(9:37) D.Bailey 54 yard field goal is No Good Wide Left Center-L.Ladouceur Holder-B.Moorman.,6,3,2012 -20121104_DAL@ATL,2,39,34,ATL,DAL,1,10,56,(9:34) M.Turner left end to DAL 48 for 8 yards (J.Price-Brent).,3,6,2012 -20121104_DAL@ATL,2,38,52,ATL,DAL,2,2,48,(8:52) (Shotgun) M.Ryan sacked at ATL 45 for -7 yards (D.Ware). FUMBLES (D.Ware) recovered by ATL-R.White at DAL 48.,3,6,2012 -20121104_DAL@ATL,2,38,2,ATL,DAL,3,2,48,(8:02) (Shotgun) M.Ryan pass short right to M.Palmer to DAL 43 for 5 yards (G.Sensabaugh; E.Sims).,3,6,2012 -20121104_DAL@ATL,2,37,17,ATL,DAL,1,10,43,(7:17) M.Ryan pass short left to J.Jones ran ob at DAL 38 for 5 yards (M.Claiborne) [D.Ware].,3,6,2012 -20121104_DAL@ATL,2,37,9,ATL,DAL,2,5,38,(7:09) M.Turner left guard to DAL 36 for 2 yards (E.Sims).,3,6,2012 -20121104_DAL@ATL,2,36,30,ATL,DAL,3,3,36,(6:30) (Shotgun) M.Ryan pass incomplete short right to J.Jones [J.Ratliff].,3,6,2012 -20121104_DAL@ATL,2,36,24,ATL,DAL,4,3,36,(6:24) M.Bosher punts 33 yards to DAL 3 Center-J.Harris downed by ATL-A.Smith.,3,6,2012 -20121104_DAL@ATL,2,36,14,DAL,ATL,1,10,97,(6:14) F.Jones left guard to DAL 5 for 2 yards (A.Dent; W.Moore).,6,3,2012 -20121104_DAL@ATL,2,35,33,DAL,ATL,2,8,95,(5:33) T.Romo pass short right to F.Jones to DAL 14 for 9 yards (A.Samuel).,6,3,2012 -20121104_DAL@ATL,2,34,56,DAL,ATL,1,10,86,(4:56) T.Romo pass short middle to J.Witten to DAL 19 for 5 yards (J.Abraham).,6,3,2012 -20121104_DAL@ATL,2,34,15,DAL,ATL,2,5,81,(4:15) (Shotgun) L.Dunbar left end to DAL 23 for 4 yards (R.McClain).,6,3,2012 -20121104_DAL@ATL,2,33,27,DAL,ATL,3,1,77,(3:27) (Shotgun) T.Romo pass short right to M.Austin to DAL 40 for 17 yards (R.McClain).,6,3,2012 -20121104_DAL@ATL,2,32,52,DAL,ATL,1,10,60,(2:52) L.Dunbar right end to DAL 41 for 1 yard (M.Peterson).,6,3,2012 -20121104_DAL@ATL,2,32,10,DAL,ATL,2,9,59,(2:10) (Shotgun) T.Romo pass short left to C.Beasley to DAL 49 for 8 yards (J.Babineaux).,6,3,2012 -20121104_DAL@ATL,2,31,57,DAL,ATL,3,1,51,(1:57) J.Parnell reported in as eligible. P.Tanner right tackle to DAL 49 for no gain (K.Biermann; A.Dent). The Replay Assistant challenged the first down ruling and the play was Upheld.,6,3,2012 -20121104_DAL@ATL,2,31,11,DAL,ATL,4,1,51,(1:11) B.Moorman punts 39 yards to ATL 12 Center-L.Ladouceur fair catch by D.Franks.,6,3,2012 -20121104_DAL@ATL,2,31,3,ATL,DAL,1,10,88,(1:03) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to ATL 17 for 5 yards (B.Carter; D.McCray).,3,6,2012 -20121104_DAL@ATL,2,30,41,ATL,DAL,2,5,83,(:41) (Shotgun) M.Ryan pass incomplete short left to Jz. Rodgers.,3,6,2012 -20121104_DAL@ATL,2,30,37,ATL,DAL,3,5,83,(:37) (Shotgun) M.Ryan pass short middle to R.White to ATL 37 for 20 yards (G.Sensabaugh).,3,6,2012 -20121104_DAL@ATL,2,30,29,ATL,DAL,1,10,63,(:29) (Shotgun) M.Ryan scrambles right tackle to ATL 45 for 8 yards. DAL-J.Ratliff was injured during the play. His return is Probable.,3,6,2012 -20121104_DAL@ATL,2,30,17,ATL,DAL,2,2,55,(:17) M.Ryan pass short middle to T.Gonzalez to DAL 43 for 12 yards (B.Carr). PENALTY on DAL-B.Carr Illegal Contact 5 yards enforced at ATL 45 - No Play.,3,6,2012 -20121104_DAL@ATL,2,30,9,ATL,DAL,1,10,50,(:09) (Shotgun) M.Ryan pass deep middle to T.Gonzalez to DAL 28 for 22 yards (G.Sensabaugh).,3,6,2012 -20121104_DAL@ATL,2,30,3,ATL,DAL,1,10,28,(:03) M.Bryant 46 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,3,6,2012 -20121104_DAL@ATL,3,30,0,ATL,DAL,,,28,M.Bosher kicks 65 yards from ATL 35 to DAL 0. L.Dunbar to DAL 14 for 14 yards (C.Hope).,6,6,2012 -20121104_DAL@ATL,3,29,56,DAL,ATL,1,10,86,(14:56) (Shotgun) F.Jones right guard to DAL 29 for 15 yards (T.DeCoud).,6,6,2012 -20121104_DAL@ATL,3,29,15,DAL,ATL,1,10,71,(14:15) F.Jones right tackle to DAL 35 for 6 yards (A.Dent).,6,6,2012 -20121104_DAL@ATL,3,28,34,DAL,ATL,2,4,65,(13:34) L.Dunbar right tackle to ATL 47 for 18 yards (J.Babineaux).,6,6,2012 -20121104_DAL@ATL,3,27,59,DAL,ATL,1,10,47,(12:59) F.Jones right tackle to ATL 44 for 3 yards (A.Dent).,6,6,2012 -20121104_DAL@ATL,3,27,20,DAL,ATL,2,7,44,(12:20) T.Romo pass incomplete short right to M.Austin.,6,6,2012 -20121104_DAL@ATL,3,27,16,DAL,ATL,3,7,44,(12:16) (Shotgun) T.Romo sacked at DAL 47 for -9 yards (J.Babineaux).,6,6,2012 -20121104_DAL@ATL,3,26,48,DAL,ATL,4,16,53,(11:48) B.Moorman punts 39 yards to ATL 14 Center-L.Ladouceur fair catch by D.Franks.,6,6,2012 -20121104_DAL@ATL,3,26,41,ATL,DAL,1,10,86,(11:41) M.Turner right tackle to ATL 14 for no gain (D.McCray).,6,6,2012 -20121104_DAL@ATL,3,26,2,ATL,DAL,2,10,86,(11:02) M.Ryan pass short right to J.Jones to ATL 32 for 18 yards (B.Carter).,6,6,2012 -20121104_DAL@ATL,3,25,28,ATL,DAL,1,10,68,(10:28) M.Turner left end to ATL 30 for -2 yards (B.Carter).,6,6,2012 -20121104_DAL@ATL,3,24,44,ATL,DAL,2,12,70,(9:44) (Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez (B.Carter).,6,6,2012 -20121104_DAL@ATL,3,24,39,ATL,DAL,3,12,70,(9:39) (Shotgun) M.Ryan pass deep left to R.White to DAL 44 for 26 yards (M.Claiborne). 574th reception by White sets team career receptions record.,6,6,2012 -20121104_DAL@ATL,3,23,58,ATL,DAL,1,10,44,(8:58) M.Ryan pass deep left to R.White to DAL 24 for 20 yards (D.McCray; G.Sensabaugh).,6,6,2012 -20121104_DAL@ATL,3,23,15,ATL,DAL,1,10,24,(8:15) M.Ryan sacked at DAL 27 for -3 yards (sack split by J.Price-Brent and D.Ware).,6,6,2012 -20121104_DAL@ATL,3,22,31,ATL,DAL,2,13,27,(7:31) (Shotgun) M.Ryan pass incomplete short middle to H.Douglas [V.Butler].,6,6,2012 -20121104_DAL@ATL,3,22,28,ATL,DAL,3,13,27,(7:28) (Shotgun) M.Ryan pass short middle to J.Snelling to DAL 25 for 2 yards (B.Carter).,6,6,2012 -20121104_DAL@ATL,3,21,48,ATL,DAL,4,11,25,(6:48) M.Bryant 43 yard field goal is No Good Wide Right Center-J.Harris Holder-M.Bosher.,6,6,2012 -20121104_DAL@ATL,3,21,43,DAL,ATL,1,10,67,(6:43) L.Dunbar left guard to DAL 30 for -3 yards (S.Nicholas).,6,6,2012 -20121104_DAL@ATL,3,21,3,DAL,ATL,2,13,70,(6:03) T.Romo pass short middle to J.Witten to DAL 39 for 9 yards (S.Nicholas; R.McClain).,6,6,2012 -20121104_DAL@ATL,3,20,17,DAL,ATL,3,4,61,(5:17) (Shotgun) T.Romo pass short right to L.Vickers to DAL 44 for 5 yards (T.DeCoud).,6,6,2012 -20121104_DAL@ATL,3,19,45,DAL,ATL,1,10,56,(4:45) T.Romo pass short right to J.Witten ran ob at DAL 46 for 2 yards (W.Moore).,6,6,2012 -20121104_DAL@ATL,3,19,9,DAL,ATL,2,8,54,(4:09) (Shotgun) T.Romo pass short left to M.Austin to 50 for 4 yards (R.McClain). PENALTY on DAL-N.Livings Offensive Holding 10 yards enforced at DAL 46 - No Play.,6,6,2012 -20121104_DAL@ATL,3,18,49,DAL,ATL,2,18,64,(3:49) T.Romo pass short middle to M.Austin to DAL 41 for 5 yards (S.Nicholas).,6,6,2012 -20121104_DAL@ATL,3,18,7,DAL,ATL,3,13,59,(3:07) (Shotgun) T.Romo pass incomplete short middle to M.Austin.,6,6,2012 -20121104_DAL@ATL,3,18,2,DAL,ATL,4,13,59,(3:02) B.Moorman punts 56 yards to ATL 3 Center-L.Ladouceur. D.Franks to ATL 7 for 4 yards (E.Frampton). PENALTY on DAL-E.Frampton Player Out of Bounds on Punt 5 yards enforced at DAL 41 - No Play.,6,6,2012 -20121104_DAL@ATL,3,17,50,DAL,ATL,4,18,64,(2:50) B.Moorman punts 51 yards to ATL 13 Center-L.Ladouceur. D.Franks to ATL 19 for 6 yards (L.Dunbar).,6,6,2012 -20121104_DAL@ATL,3,17,39,ATL,DAL,1,10,81,(2:39) M.Ryan pass short middle to R.White to ATL 35 for 16 yards (D.McCray).,6,6,2012 -20121104_DAL@ATL,3,17,1,ATL,DAL,1,10,65,(2:01) M.Turner up the middle to ATL 43 for 8 yards (A.Albright).,6,6,2012 -20121104_DAL@ATL,3,16,29,ATL,DAL,2,2,57,(1:29) M.Turner right end to DAL 14 for 43 yards (B.Carr).,6,6,2012 -20121104_DAL@ATL,3,15,43,ATL,DAL,1,10,14,(:43) Jz. Rodgers left guard to DAL 11 for 3 yards (A.Spencer).,6,6,2012 -20121104_DAL@ATL,4,15,0,ATL,DAL,2,7,11,(15:00) M.Ryan pass short left to R.White to DAL 3 for 8 yards (B.Carter).,6,6,2012 -20121104_DAL@ATL,4,14,21,ATL,DAL,1,3,3,(14:21) M.Turner right tackle for 3 yards TOUCHDOWN.,6,6,2012 -20121104_DAL@ATL,4,14,21,ATL,DAL,,,3,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,6,6,2012 -20121104_DAL@ATL,4,14,21,ATL,DAL,,,3,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,13,6,2012 -20121104_DAL@ATL,4,14,16,DAL,ATL,1,10,80,(14:16) T.Romo pass incomplete short left to D.Bryant.,6,13,2012 -20121104_DAL@ATL,4,14,11,DAL,ATL,2,10,80,(14:11) (Shotgun) L.Dunbar left tackle to DAL 17 for -3 yards (V.Walker; J.Babineaux).,6,13,2012 -20121104_DAL@ATL,4,13,26,DAL,ATL,3,13,83,(13:26) (Shotgun) T.Romo pass short right to M.Austin to DAL 27 for 10 yards (J.Abraham).,6,13,2012 -20121104_DAL@ATL,4,12,49,DAL,ATL,4,3,73,(12:49) B.Moorman punts 53 yards to ATL 20 Center-L.Ladouceur. D.Franks to ATL 20 for no gain (L.Dunbar).,6,13,2012 -20121104_DAL@ATL,4,12,39,ATL,DAL,1,10,80,(12:39) M.Ryan pass short left to J.Snelling to ATL 17 for -3 yards (J.Hatcher).,13,6,2012 -20121104_DAL@ATL,4,11,57,ATL,DAL,2,13,83,(11:57) (Shotgun) M.Ryan pass short left to J.Jones to DAL 35 for 48 yards (B.Carter).,13,6,2012 -20121104_DAL@ATL,4,11,13,ATL,DAL,1,10,35,(11:13) M.Turner right guard to DAL 32 for 3 yards (B.Carter).,13,6,2012 -20121104_DAL@ATL,4,10,30,ATL,DAL,2,7,32,(10:30) (Shotgun) M.Ryan pass short right to Jz. Rodgers to DAL 26 for 6 yards (J.Hatcher).,13,6,2012 -20121104_DAL@ATL,4,9,49,ATL,DAL,3,1,26,(9:49) J.Jones left end pushed ob at DAL 18 for 8 yards (G.Sensabaugh).,13,6,2012 -20121104_DAL@ATL,4,9,14,ATL,DAL,1,10,18,(9:14) M.Ryan sacked at DAL 27 for -9 yards (V.Butler).,13,6,2012 -20121104_DAL@ATL,4,8,34,ATL,DAL,2,19,27,(8:34) (Shotgun) M.Turner left guard to DAL 18 for 9 yards (V.Butler).,13,6,2012 -20121104_DAL@ATL,4,7,59,ATL,DAL,3,10,18,(7:59) (Shotgun) M.Ryan pass incomplete deep right to R.White (B.Carr).,13,6,2012 -20121104_DAL@ATL,4,7,53,ATL,DAL,4,10,18,(7:53) M.Bryant 36 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,13,6,2012 -20121104_DAL@ATL,4,7,53,ATL,DAL,,,18,M.Bosher kicks 72 yards from ATL 35 to DAL -7. L.Dunbar pushed ob at DAL 34 for 41 yards (R.James). PENALTY on DAL-A.Albright Illegal Block Above the Waist 10 yards enforced at DAL 32.,16,6,2012 -20121104_DAL@ATL,4,7,40,DAL,ATL,1,10,78,(7:40) (Shotgun) T.Romo pass deep right to M.Austin to DAL 42 for 20 yards (A.Samuel).,6,16,2012 -20121104_DAL@ATL,4,7,13,DAL,ATL,1,10,58,(7:13) (No Huddle Shotgun) T.Romo pass short middle to F.Jones to DAL 48 for 6 yards (R.McClain).,6,16,2012 -20121104_DAL@ATL,4,6,47,DAL,ATL,2,4,52,(6:47) (No Huddle Shotgun) T.Romo pass short middle to J.Witten to ATL 45 for 7 yards (A.Dent; S.Nicholas). 751st career catch for Witten establishes club career receptions record.,6,16,2012 -20121104_DAL@ATL,4,6,23,DAL,ATL,1,10,45,(6:23) (No Huddle Shotgun) T.Romo pass short middle to J.Witten to ATL 35 for 10 yards (A.Dent).,6,16,2012 -20121104_DAL@ATL,4,5,59,DAL,ATL,1,10,35,(5:59) (No Huddle Shotgun) T.Romo pass short right to F.Jones to ATL 21 for 14 yards (T.DeCoud).,6,16,2012 -20121104_DAL@ATL,4,5,31,DAL,ATL,1,10,21,(5:31) (No Huddle Shotgun) T.Romo pass deep right to K.Ogletree for 21 yards TOUCHDOWN.,6,16,2012 -20121104_DAL@ATL,4,5,31,DAL,ATL,,,21,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,6,16,2012 -20121104_DAL@ATL,4,5,31,DAL,ATL,,,21,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,13,16,2012 -20121104_DAL@ATL,4,5,21,ATL,DAL,1,10,80,(5:21) M.Ryan pass incomplete deep left to J.Jones. PENALTY on ATL-J.Jones Offensive Pass Interference 10 yards enforced at ATL 20 - No Play.,16,13,2012 -20121104_DAL@ATL,4,5,15,ATL,DAL,1,20,90,(5:15) M.Turner right guard to ATL 20 for 10 yards (B.Carter).,16,13,2012 -20121104_DAL@ATL,4,4,32,ATL,DAL,2,10,80,(4:32) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 24 for 4 yards (O.Scandrick).,16,13,2012 -20121104_DAL@ATL,4,3,57,ATL,DAL,3,6,76,(3:57) (Shotgun) M.Ryan pass short right to Jz. Rodgers to DAL 45 for 31 yards (G.Sensabaugh).,16,13,2012 -20121104_DAL@ATL,4,3,39,ATL,DAL,2,8,43,(3:39) (Shotgun) M.Ryan pass incomplete deep right to R.White (M.Jenkins).,16,13,2012 -20121104_DAL@ATL,4,3,33,ATL,DAL,3,8,43,(3:33) (Shotgun) M.Ryan pass incomplete deep left to R.White. PENALTY on DAL-O.Scandrick Defensive Holding 5 yards enforced at DAL 43 - No Play.,16,13,2012 -20121104_DAL@ATL,4,3,29,ATL,DAL,1,10,38,(3:29) J.Snelling left guard to DAL 33 for 5 yards (E.Sims).,16,13,2012 -20121104_DAL@ATL,4,3,23,ATL,DAL,2,5,33,(3:23) M.Ryan pass incomplete deep left to R.White (M.Claiborne).,16,13,2012 -20121104_DAL@ATL,4,3,18,ATL,DAL,3,5,33,(3:18) (Shotgun) M.Ryan pass short right to Jz. Rodgers to DAL 22 for 11 yards (D.McCray).,16,13,2012 -20121104_DAL@ATL,4,2,18,ATL,DAL,1,10,22,(2:18) M.Turner right tackle to DAL 17 for 5 yards (E.Sims; D.McCray).,16,13,2012 -20121104_DAL@ATL,4,1,59,ATL,DAL,2,5,17,(1:59) M.Turner right end to DAL 16 for 1 yard (A.Spencer).,16,13,2012 -20121104_DAL@ATL,4,1,9,ATL,DAL,3,4,16,(1:09) M.Turner right end to DAL 14 for 2 yards (K.Coleman).,16,13,2012 -20121104_DAL@ATL,4,0,22,ATL,DAL,4,2,14,(:22) M.Bryant 32 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,16,13,2012 -20121104_DAL@ATL,4,0,22,ATL,DAL,,,14,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,19,13,2012 -20121104_DAL@ATL,4,0,17,DAL,ATL,1,10,80,(:17) (Shotgun) T.Romo pass short left to J.Witten ran ob at DAL 27 for 7 yards.,13,19,2012 -20121104_DAL@ATL,4,0,13,DAL,ATL,2,3,73,(:13) (Shotgun) T.Romo pass short left to J.Witten ran ob at DAL 38 for 11 yards.,13,19,2012 -20121104_DAL@ATL,4,0,9,DAL,ATL,1,10,62,(:09) (Shotgun) T.Romo pass short left to F.Jones pushed ob at DAL 40 for 2 yards (A.Dent).,13,19,2012 -20121104_DAL@ATL,4,0,3,DAL,ATL,2,8,60,(:03) (Shotgun) T.Romo pass short left to F.Jones to ATL 21 for 39 yards (D.Robinson).,13,19,2012 -20121104_DAL@ATL,4,0,3,DAL,ATL,,,60,                      ,13,19,2012 -20121105_PHI@NO,1,0,0,NO,PHI,,,60,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,0,0,2012 -20121105_PHI@NO,1,60,0,PHI,NO,1,10,80,(15:00) M.Vick pass incomplete deep right to D.Jackson.,0,0,2012 -20121105_PHI@NO,1,59,54,PHI,NO,2,10,80,(14:54) M.Vick pass short right to D.Jackson pushed ob at PHI 38 for 18 yards (J.Greer). Pass 10 YAC 8,0,0,2012 -20121105_PHI@NO,1,59,17,PHI,NO,1,10,62,(14:17) L.McCoy right end ran ob at PHI 38 for no gain (J.Casillas).,0,0,2012 -20121105_PHI@NO,1,58,46,PHI,NO,2,10,62,(13:46) L.McCoy left tackle to PHI 42 for 4 yards (C.Jordan; S.Ellis).,0,0,2012 -20121105_PHI@NO,1,58,4,PHI,NO,3,6,58,(13:04) (Shotgun) M.Vick pass short right to C.Harbor to PHI 48 for 6 yards (C.Lofton). Pass 5 YAC 1,0,0,2012 -20121105_PHI@NO,1,57,24,PHI,NO,1,10,52,(12:24) (Shotgun) M.Vick pass incomplete deep middle to B.Celek.,0,0,2012 -20121105_PHI@NO,1,57,16,PHI,NO,2,10,52,(12:16) M.Vick pass incomplete short right to J.Maclin [C.Jordan].,0,0,2012 -20121105_PHI@NO,1,57,11,PHI,NO,3,10,52,(12:11) (Shotgun) M.Vick pass short middle to J.Avant to NO 39 for 13 yards (M.Jenkins) [C.White]. Pass 13 YAC 0 New Orleans challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20121105_PHI@NO,1,56,41,PHI,NO,1,10,39,(11:41) B.Brown left end to NO 38 for 1 yard (M.Jenkins).,0,0,2012 -20121105_PHI@NO,1,56,6,PHI,NO,2,9,38,(11:06) (Shotgun) L.McCoy right guard to NO 36 for 2 yards (C.Jordan; J.Casillas).,0,0,2012 -20121105_PHI@NO,1,55,27,PHI,NO,3,7,36,(10:27) (Shotgun) M.Vick sacked at NO 42 for -6 yards (M.Wilson). PENALTY on NO-M.Wilson Roughing the Passer 15 yards enforced at NO 42.,0,0,2012 -20121105_PHI@NO,1,55,11,PHI,NO,1,10,27,(10:11) M.Vick sacked at NO 30 for -3 yards (B.Bunkley).,0,0,2012 -20121105_PHI@NO,1,54,35,PHI,NO,2,13,30,(9:35) M.Vick sacked at NO 42 for -12 yards (C.Jordan). FUMBLES (C.Jordan) touched at NO 42 recovered by PHI-T.Herremans at PHI 48. T.Herremans to PHI 48 for no gain (J.Vilma).,0,0,2012 -20121105_PHI@NO,1,53,45,PHI,NO,3,35,52,(8:45) (Shotgun) L.McCoy up the middle to NO 46 for 6 yards (R.Harper; M.Wilson).,0,0,2012 -20121105_PHI@NO,1,53,4,PHI,NO,4,29,46,(8:04) M.McBriar punts 46 yards to end zone Center-J.Dorenbos Touchback.,0,0,2012 -20121105_PHI@NO,1,52,55,NO,PHI,1,10,80,(7:55) M.Ingram right guard to NO 17 for -3 yards (T.Cole).,0,0,2012 -20121105_PHI@NO,1,52,22,NO,PHI,2,13,83,(7:22) PENALTY on NO-D.Thomas False Start 5 yards enforced at NO 17 - No Play.,0,0,2012 -20121105_PHI@NO,1,51,40,NO,PHI,2,18,88,(6:40) D.Brees pass short right to J.Graham to NO 21 for 9 yards (D.Sims). Pass 9 YAC 0,0,0,2012 -20121105_PHI@NO,1,51,25,NO,PHI,3,9,79,(6:25) (Shotgun) D.Brees pass deep middle to L.Moore to PHI 41 for 38 yards (B.Boykin). Penalty on PHI-B.Boykin Defensive Pass Interference declined. Pass 38 YAC 0,0,0,2012 -20121105_PHI@NO,1,51,4,NO,PHI,1,10,41,(6:04) (Shotgun) D.Brees pass incomplete short left to P.Thomas.,0,0,2012 -20121105_PHI@NO,1,51,0,NO,PHI,2,10,41,(6:00) (Shotgun) P.Thomas up the middle to PHI 34 for 7 yards (P.Hunt).,0,0,2012 -20121105_PHI@NO,1,50,26,NO,PHI,3,3,34,(5:26) (Shotgun) D.Brees pass incomplete short middle to J.Graham.,0,0,2012 -20121105_PHI@NO,1,50,21,NO,PHI,4,3,34,(5:21) G.Hartley 52 yard field goal is No Good Wide Left Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121105_PHI@NO,1,50,16,PHI,NO,1,10,58,(5:16) (Shotgun) M.Vick pass short left to D.Jackson ran ob at PHI 47 for 5 yards (M.Jenkins). Pass -2 YAC 7,0,0,2012 -20121105_PHI@NO,1,49,52,PHI,NO,2,5,53,(4:52) L.McCoy right tackle to NO 45 for 8 yards (C.Lofton).,0,0,2012 -20121105_PHI@NO,1,49,18,PHI,NO,1,10,45,(4:18) B.Brown left end to NO 5 for 40 yards (M.Jenkins).,0,0,2012 -20121105_PHI@NO,1,48,33,PHI,NO,1,5,5,(3:33) L.McCoy left end to NO 6 for -1 yards (J.Vilma; W.Smith).,0,0,2012 -20121105_PHI@NO,1,47,51,PHI,NO,2,6,6,(2:51) M.Vick pass short left intended for B.Celek INTERCEPTED by P.Robinson at NO 1. P.Robinson for 99 yards TOUCHDOWN. PENALTY on PHI-M.Vick Low Block 15 yards enforced between downs. The penalty for a low block during the interception return will be assessed on the ensuing kickoff.,0,0,2012 -20121105_PHI@NO,1,47,51,NO,PHI,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121105_PHI@NO,1,47,51,NO,PHI,,,6,Kickoff moved to 50 because of the personal foul on the interception. T.Morstead kicks 50 yards from 50 to end zone Touchback.,7,0,2012 -20121105_PHI@NO,1,47,36,PHI,NO,1,10,80,(2:36) (Shotgun) M.Vick pass short right to B.Celek to PHI 25 for 5 yards (J.Casillas; R.Harper). Pass 5 YAC 0,0,7,2012 -20121105_PHI@NO,1,46,58,PHI,NO,2,5,75,(1:58) L.McCoy left end to PHI 38 for 13 yards (R.Harper; J.Greer). PHI-T.Herremans was injured during the play. His return is Questionable.,0,7,2012 -20121105_PHI@NO,1,46,30,PHI,NO,1,10,62,(1:30) L.McCoy left tackle to NO 37 for 25 yards (R.Harper). PENALTY on PHI-J.Maclin Illegal Block Above the Waist 10 yards enforced at NO 37.,0,7,2012 -20121105_PHI@NO,1,46,1,PHI,NO,1,10,47,(1:01) B.Brown left end pushed ob at NO 39 for 8 yards (S.Shanle).,0,7,2012 -20121105_PHI@NO,1,45,29,PHI,NO,2,2,39,(:29) L.McCoy left tackle to NO 40 for -1 yards (J.Vilma).,0,7,2012 -20121105_PHI@NO,2,45,0,PHI,NO,3,3,40,(15:00) (Shotgun) M.Vick pass short left to C.Harbor pushed ob at NO 38 for 2 yards (J.Vilma). Pass 2 YAC 0,0,7,2012 -20121105_PHI@NO,2,44,17,PHI,NO,4,1,38,(14:17) (Run formation) L.McCoy right end to NO 4 for 34 yards (M.Wilson; M.Jenkins).,0,7,2012 -20121105_PHI@NO,2,43,30,PHI,NO,1,4,4,(13:30) B.Brown right tackle to NO 4 for no gain (A.Hicks; M.Jenkins).,0,7,2012 -20121105_PHI@NO,2,42,51,PHI,NO,2,4,4,(12:51) M.Vick pass short middle to L.McCoy to NO 4 for no gain (C.Lofton). Pass -2 YAC 2,0,7,2012 -20121105_PHI@NO,2,42,10,PHI,NO,3,4,4,(12:10) M.Vick pass incomplete short middle to D.Jackson.,0,7,2012 -20121105_PHI@NO,2,42,7,PHI,NO,4,4,4,(12:07) A.Henery 22 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,7,2012 -20121105_PHI@NO,2,42,7,PHI,NO,,,4,A.Henery kicks 71 yards from PHI 35 to NO -6. T.Cadet to NO 24 for 30 yards (S.Havili).,3,7,2012 -20121105_PHI@NO,2,41,56,NO,PHI,1,10,76,(11:56) C.Ivory right end to NO 33 for 9 yards (K.Coleman; M.Patterson).,7,3,2012 -20121105_PHI@NO,2,41,18,NO,PHI,2,1,67,(11:18) D.Brees pass incomplete deep right to D.Henderson (N.Asomugha).,7,3,2012 -20121105_PHI@NO,2,41,10,NO,PHI,3,1,67,(11:10) M.Ingram right guard to NO 38 for 5 yards (A.Jordan).,7,3,2012 -20121105_PHI@NO,2,40,27,NO,PHI,1,10,62,(10:27) M.Ingram right guard to PHI 39 for 23 yards (K.Coleman; J.Babin).,7,3,2012 -20121105_PHI@NO,2,39,37,NO,PHI,1,10,39,(9:37) (Shotgun) D.Brees pass short right to J.Graham to PHI 30 for 9 yards (D.Sims). Pass 7 YAC 2,7,3,2012 -20121105_PHI@NO,2,39,4,NO,PHI,2,1,30,(9:04) D.Brees pass short right to J.Graham pushed ob at PHI 22 for 8 yards (M.Kendricks). Pass -2 YAC 10,7,3,2012 -20121105_PHI@NO,2,38,40,NO,PHI,1,10,22,(8:40) C.Ivory right end for 22 yards TOUCHDOWN.,7,3,2012 -20121105_PHI@NO,2,38,40,NO,PHI,,,22,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,3,2012 -20121105_PHI@NO,2,38,40,NO,PHI,,,22,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,14,3,2012 -20121105_PHI@NO,2,38,33,PHI,NO,1,10,80,(8:33) (Shotgun) L.McCoy right end to PHI 25 for 5 yards (C.Lofton; S.Ellis).,3,14,2012 -20121105_PHI@NO,2,37,57,PHI,NO,2,5,75,(7:57) (Shotgun) M.Vick scrambles left end ran ob at PHI 31 for 6 yards (T.Johnson).,3,14,2012 -20121105_PHI@NO,2,37,29,PHI,NO,1,10,69,(7:29) (Shotgun) M.Vick pass short middle to C.Harbor to PHI 43 for 12 yards (M.Jenkins). Pass 12 YAC 0,3,14,2012 -20121105_PHI@NO,2,36,55,PHI,NO,1,10,57,(6:55) L.McCoy right guard to 50 for 7 yards (M.Jenkins; M.Wilson).,3,14,2012 -20121105_PHI@NO,2,36,19,PHI,NO,2,3,50,(6:19) B.Brown left end to 50 for no gain (J.Greer). NO-B.Bunkley was injured during the play. His return is Questionable. PENALTY on PHI-R.Cooper Illegal Blindside Block 15 yards enforced at 50 - No Play.,3,14,2012 -20121105_PHI@NO,2,35,57,PHI,NO,2,18,65,(5:57) (Shotgun) M.Vick pass short right to S.Havili to PHI 42 for 7 yards (C.White). Pass 3 YAC 4,3,14,2012 -20121105_PHI@NO,2,35,11,PHI,NO,3,11,58,(5:11) (Shotgun) M.Vick pass incomplete short right to J.Avant [C.Jordan].,3,14,2012 -20121105_PHI@NO,2,35,7,PHI,NO,4,11,58,(5:07) M.McBriar punts 32 yards to NO 26 Center-J.Dorenbos fair catch by T.Cadet.,3,14,2012 -20121105_PHI@NO,2,34,59,NO,PHI,1,10,74,(4:59) M.Ingram right end pushed ob at NO 33 for 7 yards (D.Ryans).,14,3,2012 -20121105_PHI@NO,2,34,34,NO,PHI,2,3,67,(4:34) (Shotgun) D.Brees pass short middle to J.Graham to NO 46 for 13 yards (D.Sims). Pass 13 YAC 0,14,3,2012 -20121105_PHI@NO,2,33,56,NO,PHI,1,10,54,(3:56) C.Ivory right end to PHI 46 for 8 yards (J.Babin; A.Jordan).,14,3,2012 -20121105_PHI@NO,2,33,18,NO,PHI,2,2,46,(3:18) D.Brees pass short left to J.Graham to PHI 29 for 17 yards (K.Coleman). Pass 15 YAC 2,14,3,2012 -20121105_PHI@NO,2,32,36,NO,PHI,1,10,29,(2:36) (Shotgun) P.Thomas left end to PHI 10 for 19 yards (D.Sims; C.Jenkins).,14,3,2012 -20121105_PHI@NO,2,32,0,NO,PHI,1,10,10,(2:00) (Shotgun) P.Thomas left guard to PHI 1 for 9 yards (D.Sims; T.Cole).,14,3,2012 -20121105_PHI@NO,2,31,18,NO,PHI,2,1,1,(1:18) D.Brees pass short right to M.Colston for 1 yard TOUCHDOWN. Pass 1 YAC 0,14,3,2012 -20121105_PHI@NO,2,31,18,NO,PHI,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,3,2012 -20121105_PHI@NO,2,31,18,NO,PHI,,,1,T.Morstead kicks 73 yards from NO 35 to PHI -8. B.Boykin Touchback.,21,3,2012 -20121105_PHI@NO,2,31,13,PHI,NO,1,10,80,(1:13) (Shotgun) M.Vick pass incomplete short middle to B.Celek (I.Abdul-Quddus).,3,21,2012 -20121105_PHI@NO,2,31,8,PHI,NO,2,10,80,(1:08) (Shotgun) M.Vick pass short right to J.Avant to PHI 24 for 4 yards (J.Greer). Pass 1 YAC 3,3,21,2012 -20121105_PHI@NO,2,30,59,PHI,NO,3,6,76,(:59) (Shotgun) M.Vick pass incomplete short left to J.Avant [W.Smith].,3,21,2012 -20121105_PHI@NO,2,30,55,PHI,NO,4,6,76,(:55) M.McBriar punts 55 yards to NO 21 Center-J.Dorenbos. L.Moore to NO 26 for 5 yards (J.Chaney).,3,21,2012 -20121105_PHI@NO,2,30,43,NO,PHI,1,10,74,(:43) (Shotgun) D.Brees pass short middle to M.Colston to NO 37 for 11 yards (K.Coleman). Pass 10 YAC 1,21,3,2012 -20121105_PHI@NO,2,30,23,NO,PHI,1,10,63,(:23) (Shotgun) D.Brees pass incomplete short left to D.Henderson.,21,3,2012 -20121105_PHI@NO,2,30,18,NO,PHI,2,10,63,(:18) (Shotgun) D.Brees pass short right to P.Thomas pushed ob at NO 41 for 4 yards (C.Jenkins). Pass -5 YAC 9,21,3,2012 -20121105_PHI@NO,2,30,16,NO,PHI,3,6,59,(:16) (Shotgun) D.Brees pass incomplete short left to J.Graham [J.Babin].,21,3,2012 -20121105_PHI@NO,2,30,11,NO,PHI,4,6,59,(:11) T.Morstead punts 37 yards to PHI 22 Center-J.Drescher out of bounds.,21,3,2012 -20121105_PHI@NO,2,30,4,PHI,NO,1,10,78,(:04) (Shotgun) L.McCoy left tackle to PHI 21 for -1 yards (S.Ellis).,3,21,2012 -20121105_PHI@NO,3,30,0,PHI,NO,,,78,A.Henery kicks 70 yards from PHI 35 to NO -5. T.Cadet to NO 22 for 27 yards (J.Chaney).,3,21,2012 -20121105_PHI@NO,3,29,54,NO,PHI,1,10,78,(14:54) D.Brees pass short right to C.Ivory pushed ob at NO 24 for 2 yards (J.Babin). Pass -13 Yac 15,21,3,2012 -20121105_PHI@NO,3,29,27,NO,PHI,2,8,76,(14:27) M.Ingram left guard to NO 27 for 3 yards (T.Cole).,21,3,2012 -20121105_PHI@NO,3,28,51,NO,PHI,3,5,73,(13:51) (Shotgun) D.Brees pass short right to J.Graham to NO 36 for 9 yards (D.Sims). Pass 6 YAC 3,21,3,2012 -20121105_PHI@NO,3,28,13,NO,PHI,1,10,64,(13:13) C.Ivory left guard to NO 36 for no gain (P.Hunt).,21,3,2012 -20121105_PHI@NO,3,27,40,NO,PHI,2,10,64,(12:40) D.Brees pass short left to M.Colston to NO 49 for 13 yards (K.Coleman). Pass 12 YAC 1,21,3,2012 -20121105_PHI@NO,3,27,1,NO,PHI,1,10,51,(12:01) T.Cadet left end pushed ob at PHI 6 for 45 yards (C.Marsh). PENALTY on NO-M.Colston Offensive Holding 10 yards enforced at PHI 46.,21,3,2012 -20121105_PHI@NO,3,26,10,NO,PHI,1,15,56,(11:10) (Shotgun) D.Brees pass short left to P.Thomas to PHI 34 for 22 yards (M.Kendricks). Pass 14 YAC 13,21,3,2012 -20121105_PHI@NO,3,25,51,NO,PHI,1,10,34,(10:51) (Shotgun) P.Thomas left end to PHI 30 for 4 yards (T.Cole).,21,3,2012 -20121105_PHI@NO,3,25,14,NO,PHI,2,6,30,(10:14) D.Brees pass incomplete short left to J.Graham (D.Sims).,21,3,2012 -20121105_PHI@NO,3,25,8,NO,PHI,3,6,30,(10:08) (Shotgun) D.Brees pass short right to M.Colston pushed ob at PHI 9 for 21 yards (D.Sims). Pass 16 YAC 6,21,3,2012 -20121105_PHI@NO,3,24,39,NO,PHI,1,9,9,(9:39) (Shotgun) D.Brees sacked at PHI 17 for -8 yards (B.Graham). FUMBLES (B.Graham) RECOVERED by PHI-B.Graham at PHI 17. B.Graham to PHI 17 for no gain (B.Grubbs).,21,3,2012 -20121105_PHI@NO,3,24,31,PHI,NO,1,10,83,(9:31) (Shotgun) M.Vick pass short right to J.Maclin to PHI 23 for 6 yards (J.Greer). Pass 6 YAC 0,3,21,2012 -20121105_PHI@NO,3,23,56,PHI,NO,2,4,77,(8:56) M.Vick pass deep right to D.Jackson for 77 yards TOUCHDOWN.,3,21,2012 -20121105_PHI@NO,3,23,56,PHI,NO,,,77,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,3,21,2012 -20121105_PHI@NO,3,23,56,PHI,NO,,,77,A.Henery kicks 66 yards from PHI 35 to NO -1. T.Cadet to NO 22 for 23 yards (C.Polk). FUMBLES (C.Polk) RECOVERED by PHI-B.Hughes at NO 22. B.Hughes to NO 22 for no gain (M.Wilson).,10,21,2012 -20121105_PHI@NO,3,23,34,PHI,NO,1,10,22,(8:34) (Shotgun) M.Vick scrambles left end to NO 8 for 14 yards (R.Harper).,10,21,2012 -20121105_PHI@NO,3,22,52,PHI,NO,1,8,8,(7:52) M.Vick pass incomplete short left.,10,21,2012 -20121105_PHI@NO,3,22,45,PHI,NO,2,8,8,(7:45) (Shotgun) M.Vick sacked at NO 19 for -11 yards (W.Smith).,10,21,2012 -20121105_PHI@NO,3,22,11,PHI,NO,3,19,19,(7:11) (Shotgun) M.Vick pass incomplete deep right to J.Maclin [T.Johnson].,10,21,2012 -20121105_PHI@NO,3,22,4,PHI,NO,4,19,19,(7:04) A.Henery 37 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,21,2012 -20121105_PHI@NO,3,22,4,PHI,NO,,,19,A.Henery kicks 73 yards from PHI 35 to NO -8. P.Thomas to NO 30 for 38 yards (B.Boykin).,13,21,2012 -20121105_PHI@NO,3,21,53,NO,PHI,1,10,70,(6:53) C.Ivory right end to NO 28 for -2 yards (N.Asomugha; D.Ryans).,21,13,2012 -20121105_PHI@NO,3,21,19,NO,PHI,2,12,72,(6:19) D.Brees pass short middle to M.Ingram to NO 44 for 16 yards (D.Ryans; A.Jordan). Pass 2 YAC 14,21,13,2012 -20121105_PHI@NO,3,20,42,NO,PHI,1,10,56,(5:42) D.Brees pass short right to D.Henderson pushed ob at PHI 48 for 8 yards (D.Rodgers-Cromartie). Pass 8 YAC 0,21,13,2012 -20121105_PHI@NO,3,20,16,NO,PHI,2,2,48,(5:16) C.Ivory right tackle to NO 47 for -5 yards (D.Sims).,21,13,2012 -20121105_PHI@NO,3,19,34,NO,PHI,3,7,53,(4:34) (Shotgun) D.Brees pass deep middle to L.Moore to PHI 30 for 23 yards (D.Rodgers-Cromartie). Pass 16 YAC 7,21,13,2012 -20121105_PHI@NO,3,18,53,NO,PHI,1,10,30,(3:53) M.Ingram right end to PHI 23 for 7 yards (D.Rodgers-Cromartie).,21,13,2012 -20121105_PHI@NO,3,18,15,NO,PHI,2,3,23,(3:15) D.Brees pass short left to M.Ingram to PHI 16 for 7 yards (A.Jordan). Pass 3 YAC 4,21,13,2012 -20121105_PHI@NO,3,17,38,NO,PHI,1,10,16,(2:38) (Shotgun) P.Thomas right guard to PHI 13 for 3 yards (B.Graham; C.Thornton). NO-Z.Strief was injured during the play. His return is Probable.,21,13,2012 -20121105_PHI@NO,3,17,8,NO,PHI,2,7,13,(2:08) (Shotgun) D.Brees pass incomplete short middle to L.Moore. PENALTY on PHI-M.Kendricks Defensive Holding 5 yards enforced at PHI 13 - No Play.,21,13,2012 -20121105_PHI@NO,3,17,3,NO,PHI,1,8,8,(2:03) P.Thomas right guard to PHI 6 for 2 yards (D.Ryans; T.Cole).,21,13,2012 -20121105_PHI@NO,3,16,26,NO,PHI,2,6,6,(1:26) D.Brees pass short right to J.Graham for 6 yards TOUCHDOWN.,21,13,2012 -20121105_PHI@NO,3,16,26,NO,PHI,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,21,13,2012 -20121105_PHI@NO,3,16,5,PHI,NO,1,10,97,(1:05) L.McCoy right guard to PHI 5 for 2 yards (M.Jenkins).,13,28,2012 -20121105_PHI@NO,3,16,5,PHI,NO,2,8,95,(1:05) M.Vick pass incomplete [C.Jordan].,13,28,2012 -20121105_PHI@NO,3,15,25,PHI,NO,3,8,95,(:25) (Shotgun) M.Vick pass deep left to J.Maclin to PHI 27 for 22 yards (I.Abdul-Quddus).,13,28,2012 -20121105_PHI@NO,4,15,0,PHI,NO,1,10,73,(15:00) L.McCoy right guard to PHI 31 for 4 yards (T.Johnson).,13,28,2012 -20121105_PHI@NO,4,14,28,PHI,NO,2,6,69,(14:28) M.Vick sacked at PHI 29 for -2 yards (C.Jordan).,13,28,2012 -20121105_PHI@NO,4,13,51,PHI,NO,3,8,71,(13:51) (Shotgun) M.Vick pass short left to J.Avant pushed ob at PHI 39 for 10 yards (P.Robinson). Pass 1 YAC 9,13,28,2012 -20121105_PHI@NO,4,13,28,PHI,NO,1,10,61,(13:28) L.McCoy left guard to PHI 44 for 5 yards (J.Patrick).,13,28,2012 -20121105_PHI@NO,4,12,54,PHI,NO,2,5,56,(12:54) (Shotgun) M.Vick sacked at PHI 39 for -5 yards (W.Smith).,13,28,2012 -20121105_PHI@NO,4,12,21,PHI,NO,3,10,61,(12:21) (Shotgun) M.Vick pass incomplete deep middle to R.Cooper (J.Greer).,13,28,2012 -20121105_PHI@NO,4,12,15,PHI,NO,4,10,61,(12:15) M.McBriar punts 45 yards to NO 16 Center-J.Dorenbos fair catch by L.Moore.,13,28,2012 -20121105_PHI@NO,4,12,8,NO,PHI,1,10,84,(12:08) C.Ivory right end to NO 25 for 9 yards (T.Cole; F.Cox).,28,13,2012 -20121105_PHI@NO,4,11,28,NO,PHI,2,1,75,(11:28) C.Ivory right tackle to NO 27 for 2 yards (M.Kendricks).,28,13,2012 -20121105_PHI@NO,4,10,47,NO,PHI,1,10,73,(10:47) D.Brees pass short right to J.Collins to NO 28 for 1 yard (M.Kendricks). Pass -2 YAC 3,28,13,2012 -20121105_PHI@NO,4,10,7,NO,PHI,2,9,72,(10:07) C.Ivory right guard to NO 27 for -1 yards (F.Cox; M.Kendricks).,28,13,2012 -20121105_PHI@NO,4,9,32,NO,PHI,3,10,73,(9:32) (Shotgun) D.Brees sacked at NO 22 for -5 yards (J.Babin). FUMBLES (J.Babin) recovered by NO-P.Thomas at NO 28. P.Thomas to NO 28 for no gain (D.Ryans).,28,13,2012 -20121105_PHI@NO,4,8,52,NO,PHI,4,9,72,(8:52) T.Morstead punts 46 yards to PHI 26 Center-J.Drescher fair catch by D.Johnson.,28,13,2012 -20121105_PHI@NO,4,8,45,PHI,NO,1,10,74,(8:45) (Shotgun) L.McCoy right guard to PHI 26 for no gain (T.Johnson).,13,28,2012 -20121105_PHI@NO,4,8,16,PHI,NO,2,10,74,(8:16) (Shotgun) M.Vick scrambles right end to PHI 34 for 8 yards (C.White).,13,28,2012 -20121105_PHI@NO,4,7,41,PHI,NO,3,2,66,(7:41) (Shotgun) M.Vick pass short left to J.Avant to PHI 42 for 8 yards (M.Jenkins). Pass -6 YAC 14,13,28,2012 -20121105_PHI@NO,4,7,8,PHI,NO,1,10,58,(7:08) (Shotgun) M.Vick scrambles left end ran ob at NO 43 for 15 yards (R.Harper).,13,28,2012 -20121105_PHI@NO,4,6,48,PHI,NO,1,10,43,(6:48) (Shotgun) M.Vick pass short middle to L.McCoy to NO 29 for 14 yards (I.Abdul-Quddus; J.Greer). NO-R.Harper was injured during the play. His return is Probable. Pass 1 YAC 13,13,28,2012 -20121105_PHI@NO,4,6,21,PHI,NO,1,10,29,(6:21) L.McCoy right tackle to NO 22 for 7 yards (C.Jordan; M.Jenkins).,13,28,2012 -20121105_PHI@NO,4,5,51,PHI,NO,2,3,22,(5:51) (Shotgun) M.Vick right tackle to NO 16 for 6 yards (J.Casillas).,13,28,2012 -20121105_PHI@NO,4,5,24,PHI,NO,1,10,16,(5:24) M.Vick pass incomplete deep left to D.Jackson.,13,28,2012 -20121105_PHI@NO,4,5,17,PHI,NO,2,10,16,(5:17) (Shotgun) L.McCoy left end to NO 16 for no gain (J.Casillas; M.Jenkins).,13,28,2012 -20121105_PHI@NO,4,4,36,PHI,NO,3,10,16,(4:36) (Shotgun) PENALTY on NO-C.Jordan Neutral Zone Infraction 5 yards enforced at NO 16 - No Play.,13,28,2012 -20121105_PHI@NO,4,4,36,PHI,NO,3,5,11,(4:36) (Shotgun) M.Vick pass short middle to B.Celek to NO 5 for 6 yards (C.White; J.Casillas). Pass 3 YAC 3,13,28,2012 -20121105_PHI@NO,4,4,2,PHI,NO,1,5,5,(4:02) M.Vick pass short right to C.Harbor to NO 5 for no gain (C.White). PENALTY on PHI-D.Bell Ineligible Downfield Pass 5 yards enforced at NO 5 - No Play.,13,28,2012 -20121105_PHI@NO,4,3,53,PHI,NO,1,10,10,(3:53) (Shotgun) M.Vick pass incomplete short left to L.McCoy.,13,28,2012 -20121105_PHI@NO,4,3,49,PHI,NO,2,10,10,(3:49) (Shotgun) PENALTY on PHI-D.Bell False Start 5 yards enforced at NO 10 - No Play.,13,28,2012 -20121105_PHI@NO,4,3,49,PHI,NO,2,15,15,(3:49) (Shotgun) M.Vick sacked at NO 22 for -7 yards (C.Jordan).,13,28,2012 -20121105_PHI@NO,4,3,13,PHI,NO,3,22,22,(3:13) M.Vick pass short right to B.Celek to NO 8 for 14 yards (C.Lofton). FUMBLES (C.Lofton) RECOVERED by NO-I.Abdul-Quddus at NO 7. Pass 11 YAC 3,13,28,2012 -20121105_PHI@NO,4,3,3,NO,PHI,1,10,93,(3:03) M.Ingram left guard to NO 9 for 2 yards (F.Cox).,28,13,2012 -20121105_PHI@NO,4,2,56,NO,PHI,2,8,91,(2:56) D.Brees pass short right to J.Graham to NO 10 for 1 yard (A.Jordan). Pass -2 YAC 3,28,13,2012 -20121105_PHI@NO,4,2,47,NO,PHI,3,7,90,(2:47) C.Ivory right end to NO 16 for 6 yards (D.Ryans).,28,13,2012 -20121105_PHI@NO,4,2,6,NO,PHI,4,1,84,(2:06) T.Morstead punts 66 yards to PHI 18 Center-J.Drescher. D.Johnson to PHI 38 for 20 yards (R.Bush).,28,13,2012 -20121105_PHI@NO,4,1,54,PHI,NO,1,10,62,(1:54) (Shotgun) M.Vick pass short middle to J.Avant to PHI 47 for 9 yards (C.Lofton). Pass 8 YAC 1,13,28,2012 -20121105_PHI@NO,4,1,38,PHI,NO,2,1,53,(1:38) (Shotgun) M.Vick scrambles left end ran ob at NO 49 for 4 yards (J.Greer).,13,28,2012 -20121105_PHI@NO,4,1,30,PHI,NO,1,10,49,(1:30) (Shotgun) M.Vick pass short middle to B.Celek to NO 38 for 11 yards (C.Lofton). Pass 9 YAC 2,13,28,2012 -20121105_PHI@NO,4,1,9,PHI,NO,1,10,38,(1:09) (Shotgun) M.Vick pass short left to J.Avant to NO 26 for 12 yards (C.White). Pass 5 YAC 7,13,28,2012 -20121105_PHI@NO,4,0,48,PHI,NO,1,10,26,(:48) (Shotgun) M.Vick pass incomplete deep left to D.Jackson.,13,28,2012 -20121105_PHI@NO,4,0,41,PHI,NO,2,10,26,(:41) (Shotgun) M.Vick pass short right to B.Celek to NO 15 for 11 yards (C.Lofton; M.Jenkins). Pass 2 YAC 9,13,28,2012 -20121105_PHI@NO,4,0,24,PHI,NO,1,10,15,(:24) M.Vick spiked the ball to stop the clock.,13,28,2012 -20121105_PHI@NO,4,0,22,PHI,NO,2,10,15,(:22) M.Vick pass incomplete short right to C.Harbor.,13,28,2012 -20121105_PHI@NO,4,0,18,PHI,NO,3,10,15,(:18) (Shotgun) M.Vick pass incomplete short left to J.Avant.,13,28,2012 -20121105_PHI@NO,4,0,14,PHI,NO,4,10,15,(:14) (Shotgun) M.Vick pass incomplete short left to B.Celek.,13,28,2012 -20121105_PHI@NO,4,0,7,NO,PHI,1,10,85,(:07) D.Brees kneels to NO 14 for -1 yards.,28,13,2012 -20121105_PHI@NO,4,0,7,NO,PHI,,,85,                      ,28,13,2012 -20121108_IND@JAC,1,0,0,IND,JAC,,,85,P.McAfee kicks 71 yards from IND 35 to JAX -6. M.Spurlock Touchback.,0,0,2012 -20121108_IND@JAC,1,60,0,JAC,IND,1,10,80,(15:00) B.Gabbert pass incomplete short right to J.Blackmon.,0,0,2012 -20121108_IND@JAC,1,59,55,JAC,IND,2,10,80,(14:55) B.Gabbert pass short right to M.Lewis to JAX 28 for 8 yards (J.Hughes).,0,0,2012 -20121108_IND@JAC,1,59,20,JAC,IND,3,2,72,(14:20) B.Gabbert pass incomplete short left to L.Robinson.,0,0,2012 -20121108_IND@JAC,1,59,14,JAC,IND,4,2,72,(14:14) (Punt formation) B.Anger punts 47 yards to IND 25 Center-J.Cain fair catch by T.Hilton.,0,0,2012 -20121108_IND@JAC,1,59,7,IND,JAC,1,10,75,(14:07) V.Ballard left end to IND 36 for 11 yards (P.Posluszny).,0,0,2012 -20121108_IND@JAC,1,58,30,IND,JAC,1,10,64,(13:30) A.Luck pass short left to R.Wayne to IND 48 for 12 yards (A.Ross).,0,0,2012 -20121108_IND@JAC,1,57,53,IND,JAC,1,10,52,(12:53) A.Luck pass short left to R.Wayne to IND 48 for no gain (D.Cox).,0,0,2012 -20121108_IND@JAC,1,57,14,IND,JAC,2,10,52,(12:14) A.Luck pass incomplete deep left to R.Wayne.,0,0,2012 -20121108_IND@JAC,1,57,8,IND,JAC,3,10,52,(12:08) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (T.Alualu).,0,0,2012 -20121108_IND@JAC,1,57,0,IND,JAC,4,10,52,(12:00) (Punt formation) P.McAfee punts 42 yards to JAX 10 Center-M.Overton fair catch by M.Spurlock.,0,0,2012 -20121108_IND@JAC,1,56,55,JAC,IND,1,10,90,(11:55) R.Jennings up the middle to JAX 10 for no gain (A.Johnson).,0,0,2012 -20121108_IND@JAC,1,56,15,JAC,IND,2,10,90,(11:15) B.Gabbert pass incomplete short middle to M.Lewis.,0,0,2012 -20121108_IND@JAC,1,56,11,JAC,IND,3,10,90,(11:11) (Shotgun) B.Gabbert pass incomplete short left to L.Robinson.,0,0,2012 -20121108_IND@JAC,1,56,5,JAC,IND,4,10,90,(11:05) (Punt formation) B.Anger punts 47 yards to IND 43 Center-J.Cain out of bounds.,0,0,2012 -20121108_IND@JAC,1,55,58,IND,JAC,1,10,57,(10:58) V.Ballard left end to JAX 49 for 8 yards (P.Posluszny).,0,0,2012 -20121108_IND@JAC,1,55,20,IND,JAC,2,2,49,(10:20) A.Luck pass deep middle to R.Wayne to JAX 31 for 18 yards (R.Allen).,0,0,2012 -20121108_IND@JAC,1,54,40,IND,JAC,1,10,31,(9:40) T.Hilton right end ran ob at JAX 12 for 19 yards (C.Prosinski).,0,0,2012 -20121108_IND@JAC,1,54,11,IND,JAC,1,10,12,(9:11) V.Ballard left end to JAX 10 for 2 yards (T.Alualu).,0,0,2012 -20121108_IND@JAC,1,53,33,IND,JAC,2,8,10,(8:33) A.Luck pass short right to R.Hughes to JAX 7 for 3 yards (D.Landry).,0,0,2012 -20121108_IND@JAC,1,52,53,IND,JAC,3,5,7,(7:53) (Shotgun) A.Luck sacked at JAX 13 for -6 yards (T.Alualu).,0,0,2012 -20121108_IND@JAC,1,52,30,IND,JAC,4,11,13,(7:30) (Field Goal formation) A.Vinatieri 31 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121108_IND@JAC,1,52,30,IND,JAC,,,13,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,3,0,2012 -20121108_IND@JAC,1,52,27,JAC,IND,1,10,80,(7:27) (Shotgun) B.Gabbert pass deep right to M.Lewis to JAX 37 for 17 yards (P.Angerer).,0,3,2012 -20121108_IND@JAC,1,51,52,JAC,IND,1,10,63,(6:52) (No Huddle) B.Gabbert pass short right to L.Robinson to JAX 45 for 8 yards (D.Butler).,0,3,2012 -20121108_IND@JAC,1,51,18,JAC,IND,2,2,55,(6:18) (No Huddle) R.Jennings up the middle to JAX 49 for 4 yards (A.Bethea).,0,3,2012 -20121108_IND@JAC,1,50,40,JAC,IND,1,10,51,(5:40) (No Huddle) B.Gabbert pass short middle to M.Lewis to IND 40 for 11 yards (J.Freeman) [J.Hughes]. Penalty on IND-J.Freeman Defensive Holding declined.,0,3,2012 -20121108_IND@JAC,1,50,20,JAC,IND,1,10,40,(5:20) (No Huddle) R.Jennings left end to IND 38 for 2 yards (D.Nevis).,0,3,2012 -20121108_IND@JAC,1,49,49,JAC,IND,2,8,38,(4:49) (No Huddle) B.Gabbert scrambles right guard to IND 28 for 10 yards.,0,3,2012 -20121108_IND@JAC,1,49,9,JAC,IND,1,10,28,(4:09) (No Huddle) R.Jennings up the middle to IND 26 for 2 yards (M.Fokou).,0,3,2012 -20121108_IND@JAC,1,48,31,JAC,IND,2,8,26,(3:31) (No Huddle Shotgun) B.Gabbert pass incomplete short left to R.Jennings (M.Fokou).,0,3,2012 -20121108_IND@JAC,1,48,25,JAC,IND,3,8,26,(3:25) (No Huddle Shotgun) B.Gabbert pass incomplete short left to C.Shorts.,0,3,2012 -20121108_IND@JAC,1,48,19,JAC,IND,4,8,26,(3:19) (Field Goal formation) J.Scobee 44 yard field goal is No Good Wide Right Center-J.Cain Holder-B.Anger.,0,3,2012 -20121108_IND@JAC,1,48,14,IND,JAC,1,10,66,(3:14) A.Luck pass deep right intended for T.Hilton INTERCEPTED by A.Ross [T.Knighton] at JAX 29. A.Ross to JAX 29 for no gain (T.Hilton). PENALTY on JAX-A.Branch Roughing the Passer 15 yards enforced at IND 34 - No Play.,3,0,2012 -20121108_IND@JAC,1,48,6,IND,JAC,1,10,51,(3:06) (No Huddle) A.Luck pass short left to R.Wayne to JAX 46 for 5 yards (M.Harris).,3,0,2012 -20121108_IND@JAC,1,47,27,IND,JAC,2,5,46,(2:27) D.Brown up the middle to JAX 43 for 3 yards (P.Posluszny).,3,0,2012 -20121108_IND@JAC,1,46,48,IND,JAC,3,2,43,(1:48) D.Carter up the middle to JAX 39 for 4 yards (J.Mincey).,3,0,2012 -20121108_IND@JAC,1,46,9,IND,JAC,1,10,39,(1:09) D.Brown left end to JAX 37 for 2 yards (J.Mincey).,3,0,2012 -20121108_IND@JAC,1,45,27,IND,JAC,2,8,37,(:27) (Shotgun) A.Luck pass short right to R.Wayne to JAX 29 for 8 yards (A.Ross).,3,0,2012 -20121108_IND@JAC,2,45,0,IND,JAC,1,10,29,(15:00) A.Luck pass deep left to R.Wayne to JAX 8 for 21 yards (D.Cox) [C.Mosley].,3,0,2012 -20121108_IND@JAC,2,44,28,IND,JAC,1,8,8,(14:28) D.Brown up the middle to JAX 5 for 3 yards (T.Alualu).,3,0,2012 -20121108_IND@JAC,2,43,52,IND,JAC,2,5,5,(13:52) A.Luck scrambles right end for 5 yards TOUCHDOWN.,3,0,2012 -20121108_IND@JAC,2,43,52,IND,JAC,,,5,(Kick formation) A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,3,0,2012 -20121108_IND@JAC,2,43,52,IND,JAC,,,5,P.McAfee kicks 72 yards from IND 35 to JAX -7. M.Spurlock Touchback.,10,0,2012 -20121108_IND@JAC,2,43,44,JAC,IND,1,10,80,(13:44) B.Gabbert pass short right to L.Robinson pushed ob at JAX 39 for 19 yards (D.Butler).,0,10,2012 -20121108_IND@JAC,2,43,17,JAC,IND,1,10,61,(13:17) (No Huddle) R.Jennings up the middle to JAX 41 for 2 yards (R.Mathews).,0,10,2012 -20121108_IND@JAC,2,42,36,JAC,IND,2,8,59,(12:36) (No Huddle) B.Gabbert pass short right to L.Robinson to JAX 47 for 6 yards (D.Butler).,0,10,2012 -20121108_IND@JAC,2,41,53,JAC,IND,3,2,53,(11:53) (Shotgun) B.Gabbert pass short right to M.Spurlock to JAX 47 for no gain (J.Gordy). PENALTY on IND-J.Hughes Defensive Offside 5 yards enforced at JAX 47 - No Play.,0,10,2012 -20121108_IND@JAC,2,41,34,JAC,IND,1,10,48,(11:34) (No Huddle) B.Gabbert pass incomplete short right to L.Robinson.,0,10,2012 -20121108_IND@JAC,2,41,30,JAC,IND,2,10,48,(11:30) (No Huddle) B.Gabbert pass short right to L.Robinson to IND 39 for 9 yards (M.Fokou). Indianapolis challenged the runner was down by contact ruling and the play was REVERSED. (No Huddle) B.Gabbert pass short right to L.Robinson to IND 39 for 9 yards (M.Fokou). FUMBLES (M.Fokou) RECOVERED by IND-D.Butler at IND 39. D.Butler to IND 39 for no gain (L.Robinson).,0,10,2012 -20121108_IND@JAC,2,41,22,IND,JAC,1,10,61,(11:22) A.Luck pass short left to V.Ballard to IND 46 for 7 yards (R.Allen) [J.Mincey].,10,0,2012 -20121108_IND@JAC,2,41,2,IND,JAC,2,3,54,(11:02) V.Ballard left end to 50 for 4 yards (J.Mincey).,10,0,2012 -20121108_IND@JAC,2,40,25,IND,JAC,1,10,50,(10:25) A.Luck pass deep right to D.Avery to JAX 6 for 44 yards (C.Prosinski).,10,0,2012 -20121108_IND@JAC,2,39,35,IND,JAC,1,6,6,(9:35) V.Ballard up the middle to JAX 6 for no gain (R.Allen).,10,0,2012 -20121108_IND@JAC,2,38,56,IND,JAC,2,6,6,(8:56) V.Ballard right end to JAX 5 for 1 yard (P.Posluszny).,10,0,2012 -20121108_IND@JAC,2,38,23,IND,JAC,3,5,5,(8:23) (Shotgun) A.Luck pass short right to V.Ballard to JAX 1 for 4 yards (D.Landry).,10,0,2012 -20121108_IND@JAC,2,37,43,IND,JAC,4,1,1,(7:43) A.Luck up the middle for 1 yard TOUCHDOWN.,10,0,2012 -20121108_IND@JAC,2,37,43,IND,JAC,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee. PENALTY on JAX Unsportsmanlike Conduct 15 yards enforced between downs. Penalty on Jaguar Head Coach,10,0,2012 -20121108_IND@JAC,2,37,43,IND,JAC,,,1,P.McAfee kicks 50 yards from 50 to end zone Touchback.,17,0,2012 -20121108_IND@JAC,2,37,39,JAC,IND,1,10,80,(7:39) R.Jennings up the middle to JAX 21 for 1 yard (T.Zbikowski).,0,17,2012 -20121108_IND@JAC,2,37,8,JAC,IND,2,9,79,(7:08) (No Huddle) B.Gabbert pass short left to L.Robinson to JAX 26 for 5 yards (C.Vaughn).,0,17,2012 -20121108_IND@JAC,2,36,26,JAC,IND,3,5,75,(6:26) (Shotgun) B.Gabbert pass deep left to C.Shorts to IND 45 for 30 yards.,0,17,2012 -20121108_IND@JAC,2,36,22,JAC,IND,4,4,74,(6:22) B.Anger punts 45 yards to IND 29 Center-J.Cain out of bounds.,0,17,2012 -20121108_IND@JAC,2,36,12,IND,JAC,1,10,71,(6:12) A.Luck pass short right to L.Brazill to 50 for 21 yards (D.Landry).,17,0,2012 -20121108_IND@JAC,2,35,39,IND,JAC,1,10,50,(5:39) D.Brown up the middle to JAX 47 for 3 yards (T.Alualu).,17,0,2012 -20121108_IND@JAC,2,34,58,IND,JAC,2,7,47,(4:58) D.Brown up the middle to JAX 45 for 2 yards (A.Branch).,17,0,2012 -20121108_IND@JAC,2,34,16,IND,JAC,3,5,45,(4:16) (Shotgun) A.Luck pass incomplete short right to R.Wayne [C.Mosley]. PENALTY on JAX-M.Harris Defensive Pass Interference 5 yards enforced at JAX 45 - No Play.,17,0,2012 -20121108_IND@JAC,2,34,11,IND,JAC,1,10,40,(4:11) (Shotgun) D.Brown up the middle to JAX 34 for 6 yards (P.Posluszny).,17,0,2012 -20121108_IND@JAC,2,33,34,IND,JAC,2,4,34,(3:34) (Shotgun) D.Brown up the middle to JAX 30 for 4 yards (D.Landry).,17,0,2012 -20121108_IND@JAC,2,32,49,IND,JAC,1,10,30,(2:49) (Shotgun) A.Luck pass incomplete deep left to R.Wayne [A.Lane].,17,0,2012 -20121108_IND@JAC,2,32,43,IND,JAC,2,10,30,(2:43) D.Brown up the middle to JAX 28 for 2 yards (T.Alualu).,17,0,2012 -20121108_IND@JAC,2,32,0,IND,JAC,3,8,28,(2:00) (Shotgun) A.Luck pass deep middle intended for D.Avery INTERCEPTED by D.Landry [J.Mincey] at JAX 8. D.Landry to JAX 29 for 21 yards. Lateral to C.Prosinski to JAX 31 for 2 yards (R.Wayne). The Replay Assistant challenged the illegal forward pass ruling and the play was Upheld.,17,0,2012 -20121108_IND@JAC,2,31,48,JAC,IND,1,10,69,(1:48) (Shotgun) B.Gabbert pass incomplete short left to M.Spurlock. PENALTY on IND-J.Gordy Illegal Contact 5 yards enforced at JAX 31 - No Play.,0,17,2012 -20121108_IND@JAC,2,31,43,JAC,IND,1,10,64,(1:43) B.Gabbert pass short left to L.Robinson pushed ob at JAX 45 for 9 yards (C.Vaughn).,0,17,2012 -20121108_IND@JAC,2,31,36,JAC,IND,2,1,55,(1:36) (No Huddle Shotgun) B.Gabbert pass short left to L.Robinson to IND 49 for 6 yards (C.Vaughn).,0,17,2012 -20121108_IND@JAC,2,31,18,JAC,IND,1,10,51,(1:18) (No Huddle Shotgun) B.Gabbert sacked at JAX 42 for -7 yards (J.Hughes).,0,17,2012 -20121108_IND@JAC,2,31,11,JAC,IND,2,19,58,(1:11) (Shotgun) B.Gabbert pass deep middle to M.Spurlock to IND 36 for 22 yards (A.Bethea).,0,17,2012 -20121108_IND@JAC,2,30,52,JAC,IND,1,10,36,(:52) (No Huddle Shotgun) B.Gabbert pass short left to L.Robinson to IND 28 for 8 yards (C.Vaughn).,0,17,2012 -20121108_IND@JAC,2,30,49,JAC,IND,2,2,28,(:49) (Shotgun) B.Gabbert pass incomplete deep left to L.Robinson. PENALTY on IND-C.Vaughn Illegal Contact 5 yards enforced at IND 28 - No Play.,0,17,2012 -20121108_IND@JAC,2,30,45,JAC,IND,1,10,23,(:45) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,0,17,2012 -20121108_IND@JAC,2,30,41,JAC,IND,2,10,23,(:41) (Shotgun) B.Gabbert pass incomplete short left to C.Shorts.,0,17,2012 -20121108_IND@JAC,2,30,37,JAC,IND,3,10,23,(:37) (Shotgun) B.Gabbert pass short middle to M.Spurlock to IND 17 for 6 yards (J.Gordy).,0,17,2012 -20121108_IND@JAC,2,30,21,JAC,IND,4,4,17,(:21) (Shotgun) PENALTY on JAX-B.Gabbert False Start 5 yards enforced at IND 17 - No Play.,0,17,2012 -20121108_IND@JAC,2,30,21,JAC,IND,4,9,22,(:21) (Field Goal formation) J.Scobee 40 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,17,2012 -20121108_IND@JAC,2,30,21,JAC,IND,,,22,J.Scobee kicks 60 yards from JAX 35 to IND 5. T.Zbikowski to IND 21 for 16 yards (M.Stovall).,3,17,2012 -20121108_IND@JAC,2,30,0,IND,JAC,1,10,79,(:00) A.Luck kneels to IND 20 for -1 yards.,17,3,2012 -20121108_IND@JAC,3,30,0,JAC,IND,,,79,J.Scobee kicks 68 yards from JAX 35 to IND -3. T.Zbikowski to IND 21 for 24 yards (A.Blake).,3,17,2012 -20121108_IND@JAC,3,29,55,IND,JAC,1,10,79,(14:55) A.Luck pass short left to R.Wayne to IND 37 for 16 yards (D.Cox).,17,3,2012 -20121108_IND@JAC,3,29,20,IND,JAC,1,10,63,(14:20) (No Huddle) V.Ballard up the middle to IND 40 for 3 yards (D.Landry).,17,3,2012 -20121108_IND@JAC,3,28,41,IND,JAC,2,7,60,(13:41) A.Luck pass short right to D.Avery to JAX 45 for 15 yards (A.Ross).,17,3,2012 -20121108_IND@JAC,3,28,11,IND,JAC,1,10,45,(13:11) (Shotgun) A.Luck pass short left to D.Avery to JAX 44 for 1 yard (M.Harris).,17,3,2012 -20121108_IND@JAC,3,27,31,IND,JAC,2,9,44,(12:31) A.Luck pass short left to D.Allen to JAX 40 for 4 yards (R.Allen).,17,3,2012 -20121108_IND@JAC,3,26,48,IND,JAC,3,5,40,(11:48) (Shotgun) A.Luck pass incomplete short right to L.Brazill.,17,3,2012 -20121108_IND@JAC,3,26,44,IND,JAC,4,5,40,(11:44) (Punt formation) P.McAfee punts 36 yards to JAX 4 Center-M.Overton downed by IND-S.Brown.,17,3,2012 -20121108_IND@JAC,3,26,35,JAC,IND,1,10,96,(11:35) R.Jennings up the middle to JAX 8 for 4 yards (C.Redding).,3,17,2012 -20121108_IND@JAC,3,25,55,JAC,IND,2,6,92,(10:55) (Shotgun) B.Gabbert pass short right intended for C.Shorts INTERCEPTED by D.Butler at JAX 11. D.Butler for 11 yards TOUCHDOWN.,3,17,2012 -20121108_IND@JAC,3,25,55,IND,JAC,,,92,(Kick formation) A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,17,3,2012 -20121108_IND@JAC,3,25,55,IND,JAC,,,92,P.McAfee kicks 68 yards from IND 35 to JAX -3. M.Spurlock to JAX 16 for 19 yards (M.Fokou).,24,3,2012 -20121108_IND@JAC,3,25,44,JAC,IND,1,10,84,(10:44) R.Jennings up the middle to JAX 18 for 2 yards (A.Johnson).,3,24,2012 -20121108_IND@JAC,3,25,9,JAC,IND,2,8,82,(10:09) (No Huddle) B.Gabbert pass short right to C.Shorts to IND 30 for 52 yards (A.Bethea).,3,24,2012 -20121108_IND@JAC,3,24,52,JAC,IND,1,10,30,(9:52) (No Huddle) R.Jennings up the middle to IND 27 for 3 yards (C.Redding).,3,24,2012 -20121108_IND@JAC,3,24,18,JAC,IND,2,7,27,(9:18) (No Huddle) B.Gabbert sacked at IND 41 for -14 yards (J.Gordy).,3,24,2012 -20121108_IND@JAC,3,23,41,JAC,IND,3,21,41,(8:41) (Shotgun) B.Gabbert pass short middle to C.Shorts to IND 30 for 11 yards (D.Butler). PENALTY on JAX-C.Bradfield Offensive Holding 10 yards enforced at IND 41 - No Play.,3,24,2012 -20121108_IND@JAC,3,23,18,JAC,IND,3,31,51,(8:18) (Shotgun) B.Gabbert pass incomplete deep right to C.Shorts.,3,24,2012 -20121108_IND@JAC,3,23,9,JAC,IND,4,31,51,(8:09) (Punt formation) B.Anger punts 40 yards to IND 11 Center-J.Cain fair catch by T.Hilton.,3,24,2012 -20121108_IND@JAC,3,23,2,IND,JAC,1,10,89,(8:02) T.Hilton left end pushed ob at IND 22 for 11 yards (D.Landry).,24,3,2012 -20121108_IND@JAC,3,22,34,IND,JAC,1,10,78,(7:34) A.Luck pass incomplete deep left to D.Avery.,24,3,2012 -20121108_IND@JAC,3,22,25,IND,JAC,2,10,78,(7:25) (Shotgun) A.Luck pass incomplete deep right to T.Hilton (A.Ross).,24,3,2012 -20121108_IND@JAC,3,22,19,IND,JAC,3,10,78,(7:19) (Shotgun) A.Luck pass incomplete short right to D.Brown.,24,3,2012 -20121108_IND@JAC,3,22,14,IND,JAC,4,10,78,(7:14) (Punt formation) P.McAfee punts 57 yards to JAX 21 Center-M.Overton fair catch by M.Spurlock.,24,3,2012 -20121108_IND@JAC,3,22,6,JAC,IND,1,10,79,(7:06) R.Jennings up the middle to JAX 24 for 3 yards (K.Conner).,3,24,2012 -20121108_IND@JAC,3,21,31,JAC,IND,2,7,76,(6:31) R.Jennings up the middle to JAX 28 for 4 yards (J.Freeman).,3,24,2012 -20121108_IND@JAC,3,20,46,JAC,IND,3,3,72,(5:46) (Shotgun) B.Gabbert pass short right to M.Spurlock to JAX 29 for 1 yard (J.Gordy) [J.Hughes].,3,24,2012 -20121108_IND@JAC,3,20,12,JAC,IND,4,2,71,(5:12) (Punt formation) B.Anger punts 57 yards to IND 14 Center-J.Cain. T.Hilton to IND 26 for 12 yards (J.Stanford).,3,24,2012 -20121108_IND@JAC,3,20,2,IND,JAC,1,10,74,(5:02) V.Ballard up the middle to IND 30 for 4 yards (R.Allen).,24,3,2012 -20121108_IND@JAC,3,19,25,IND,JAC,2,6,70,(4:25) A.Luck pass deep left to D.Allen to JAX 43 for 27 yards (P.Posluszny).,24,3,2012 -20121108_IND@JAC,3,18,42,IND,JAC,1,10,43,(3:42) V.Ballard up the middle to JAX 36 for 7 yards (A.Branch).,24,3,2012 -20121108_IND@JAC,3,17,57,IND,JAC,2,3,36,(2:57) V.Ballard left end to JAX 35 for 1 yard (G.Selvie).,24,3,2012 -20121108_IND@JAC,3,17,19,IND,JAC,3,2,35,(2:19) D.Carter up the middle to JAX 32 for 3 yards (C.Mosley).,24,3,2012 -20121108_IND@JAC,3,16,38,IND,JAC,1,10,32,(1:38) (Shotgun) A.Luck pass short left to D.Avery to JAX 27 for 5 yards (M.Harris).,24,3,2012 -20121108_IND@JAC,3,15,55,IND,JAC,2,5,27,(:55) V.Ballard right guard to JAX 21 for 6 yards (P.Posluszny).,24,3,2012 -20121108_IND@JAC,3,15,13,IND,JAC,1,10,21,(:13) V.Ballard up the middle to JAX 20 for 1 yard (J.Mincey).,24,3,2012 -20121108_IND@JAC,4,15,0,IND,JAC,2,9,20,(15:00) A.Luck sacked at JAX 24 for -4 yards (A.Lane). FUMBLES (A.Lane) [A.Lane] RECOVERED by JAX-J.Mincey at JAX 19. J.Mincey to JAX 19 for no gain (A.Castonzo).,24,3,2012 -20121108_IND@JAC,4,14,52,JAC,IND,1,10,81,(14:52) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 26 for 7 yards (C.Vaughn).,3,24,2012 -20121108_IND@JAC,4,14,25,JAC,IND,2,3,74,(14:25) (No Huddle Shotgun) B.Gabbert pass short right to C.Shorts to JAX 31 for 5 yards (D.Butler).,3,24,2012 -20121108_IND@JAC,4,14,0,JAC,IND,1,10,69,(14:00) (No Huddle Shotgun) B.Gabbert pass incomplete deep left to L.Robinson.,3,24,2012 -20121108_IND@JAC,4,13,52,JAC,IND,2,10,69,(13:52) (Shotgun) B.Gabbert pass short left to J.Blackmon to JAX 41 for 10 yards (M.Green) [J.Hughes]. PENALTY on IND Face Mask (15 Yards) 15 yards enforced at JAX 41. Penalty on IND-J.Hughes Roughing the Passer declined.,3,24,2012 -20121108_IND@JAC,4,13,30,JAC,IND,1,10,44,(13:30) B.Gabbert sacked at IND 45 for -1 yards (A.Bethea). JAX-B.Gabbert was injured during the play. His return is Probable.,3,24,2012 -20121108_IND@JAC,4,13,7,JAC,IND,2,11,45,(13:07) (Shotgun) PENALTY on JAX-C.Bradfield False Start 5 yards enforced at IND 45 - No Play. JJ QB Henne enters the game,3,24,2012 -20121108_IND@JAC,4,12,54,JAC,IND,2,16,50,(12:54) (Shotgun) C.Henne pass short left to J.Blackmon pushed ob at IND 45 for 5 yards (M.Green).,3,24,2012 -20121108_IND@JAC,4,12,25,JAC,IND,3,11,45,(12:25) (Shotgun) C.Henne pass short left to C.Shorts to IND 34 for 11 yards (C.Vaughn).,3,24,2012 -20121108_IND@JAC,4,11,53,JAC,IND,1,10,34,(11:53) (Shotgun) C.Henne pass incomplete deep left to L.Robinson.,3,24,2012 -20121108_IND@JAC,4,11,48,JAC,IND,2,10,34,(11:48) (Shotgun) C.Henne sacked at IND 40 for -6 yards (T.Zbikowski).,3,24,2012 -20121108_IND@JAC,4,11,12,JAC,IND,3,16,40,(11:12) (Shotgun) C.Henne pass incomplete deep middle to L.Robinson. Penalty on JAX-M.Brewster Offensive Holding declined.,3,24,2012 -20121108_IND@JAC,4,11,1,JAC,IND,4,16,40,(11:01) C.Henne pass short left to R.Jennings to IND 37 for 3 yards (C.Redding). PENALTY on IND-J.Hughes Defensive Offside 5 yards enforced at IND 40 - No Play.,3,24,2012 -20121108_IND@JAC,4,10,43,JAC,IND,4,11,35,(10:43) C.Henne pass short middle to C.Shorts to IND 20 for 15 yards (T.Zbikowski).,3,24,2012 -20121108_IND@JAC,4,10,7,JAC,IND,1,10,20,(10:07) (No Huddle Shotgun) C.Henne pass short middle to M.Spurlock to IND 9 for 11 yards (J.Gordy).,3,24,2012 -20121108_IND@JAC,4,9,25,JAC,IND,1,9,9,(9:25) (Shotgun) C.Henne pass incomplete short middle to M.Lewis [J.Hickman]. PENALTY on IND-J.Hickman Defensive Offside 5 yards enforced at IND 9 - No Play.,3,24,2012 -20121108_IND@JAC,4,9,23,JAC,IND,1,4,4,(9:23) C.Henne pass incomplete short left to J.Parmele.,3,24,2012 -20121108_IND@JAC,4,9,18,JAC,IND,2,4,4,(9:18) (Shotgun) C.Henne pass short left to C.Shorts for 4 yards TOUCHDOWN.,3,24,2012 -20121108_IND@JAC,4,9,18,JAC,IND,,,4,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,3,24,2012 -20121108_IND@JAC,4,9,18,JAC,IND,,,4,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,10,24,2012 -20121108_IND@JAC,4,9,16,IND,JAC,1,10,80,(9:16) D.Brown up the middle to IND 25 for 5 yards (P.Posluszny).,24,10,2012 -20121108_IND@JAC,4,8,34,IND,JAC,2,5,75,(8:34) D.Brown up the middle to IND 27 for 2 yards (G.Selvie).,24,10,2012 -20121108_IND@JAC,4,7,48,IND,JAC,3,3,73,(7:48) (Shotgun) A.Luck pass short right to R.Wayne to IND 43 for 16 yards (A.Ross).,24,10,2012 -20121108_IND@JAC,4,7,2,IND,JAC,1,10,57,(7:02) D.Brown up the middle to IND 45 for 2 yards (C.Prosinski).,24,10,2012 -20121108_IND@JAC,4,6,19,IND,JAC,2,8,55,(6:19) A.Luck right end to JAX 46 for 9 yards (D.Landry). PENALTY on JAX-D.Landry Unnecessary Roughness 15 yards enforced at JAX 46.,24,10,2012 -20121108_IND@JAC,4,5,44,IND,JAC,1,10,31,(5:44) D.Brown up the middle to JAX 29 for 2 yards (D.Landry).,24,10,2012 -20121108_IND@JAC,4,5,1,IND,JAC,2,8,29,(5:01) D.Brown up the middle to JAX 26 for 3 yards (C.Mosley).,24,10,2012 -20121108_IND@JAC,4,4,15,IND,JAC,3,5,26,(4:15) D.Brown up the middle to JAX 23 for 3 yards (R.Allen).,24,10,2012 -20121108_IND@JAC,4,3,28,IND,JAC,4,2,23,(3:28) A.Vinatieri 41 yard field goal is GOOD Center-M.Overton Holder-P.McAfee. PENALTY on JAX-A.Branch Unnecessary Roughness 15 yards enforced between downs.,24,10,2012 -20121108_IND@JAC,4,3,28,IND,JAC,,,23,P.McAfee kicks 50 yards from 50 to end zone Touchback.,27,10,2012 -20121108_IND@JAC,4,3,23,JAC,IND,1,10,80,(3:23) (Shotgun) C.Henne pass short middle to J.Parmele to JAX 46 for 26 yards (A.Bethea).,10,27,2012 -20121108_IND@JAC,4,3,0,JAC,IND,1,10,54,(3:00) (No Huddle Shotgun) C.Henne pass incomplete short right to C.Shorts.,10,27,2012 -20121108_IND@JAC,4,2,55,JAC,IND,2,10,54,(2:55) (No Huddle Shotgun) C.Henne pass short left to J.Blackmon pushed ob at IND 44 for 10 yards (M.Green).,10,27,2012 -20121108_IND@JAC,4,2,50,JAC,IND,1,10,44,(2:50) (No Huddle Shotgun) C.Henne pass incomplete short left to J.Blackmon.,10,27,2012 -20121108_IND@JAC,4,2,47,JAC,IND,2,10,44,(2:47) (No Huddle Shotgun) C.Henne pass deep right to C.Shorts pushed ob at IND 26 for 18 yards (C.Vaughn). PENALTY on JAX-J.Blackmon Illegal Blindside Block 15 yards enforced at IND 26.,10,27,2012 -20121108_IND@JAC,4,2,35,JAC,IND,2,7,41,(2:35) C.Henne pass incomplete deep left to L.Robinson. PENALTY on JAX-M.Brewster Chop Block 15 yards enforced at IND 41 - No Play.,10,27,2012 -20121108_IND@JAC,4,2,32,JAC,IND,2,22,56,(2:32) (No Huddle Shotgun) C.Henne pass short right to M.Spurlock to IND 47 for 9 yards (A.Bethea).,10,27,2012 -20121108_IND@JAC,4,2,0,JAC,IND,3,13,47,(2:00) C.Henne pass short middle to M.Spurlock to IND 35 for 12 yards (A.Bethea).,10,27,2012 -20121108_IND@JAC,4,1,59,JAC,IND,4,1,35,(1:59) (Shotgun) C.Henne pass short middle INTERCEPTED by D.Butler (C.Redding) at IND 36. D.Butler to JAX 13 for 51 yards (J.Parmele).,10,27,2012 -20121108_IND@JAC,4,1,45,IND,JAC,1,10,13,(1:45) A.Luck kneels to JAX 14 for -1 yards.,27,10,2012 -20121108_IND@JAC,4,1,9,IND,JAC,2,11,14,(1:09) A.Luck kneels to JAX 15 for -1 yards.,27,10,2012 -20121108_IND@JAC,4,1,9,IND,JAC,3,12,15,(1:09) A.Luck kneels to JAX 16 for -1 yards.,27,10,2012 -20121108_IND@JAC,4,1,9,IND,JAC,,,15,                      ,27,10,2012 -20121111_OAK@BAL,1,1,0,BAL,OAK,,,15,J.Tucker kicks 74 yards from BLT 35 to OAK -9. C.Francies Touchback.,0,0,2012 -20121111_OAK@BAL,1,60,0,OAK,BAL,1,10,80,(15:00) M.Reece left guard to OAK 25 for 5 yards (A.Jones).,0,0,2012 -20121111_OAK@BAL,1,59,30,OAK,BAL,2,5,75,(14:30) M.Reece left tackle to OAK 27 for 2 yards (J.McClain M.Kemoeatu).,0,0,2012 -20121111_OAK@BAL,1,58,49,OAK,BAL,3,3,73,(13:49) C.Palmer pass deep left to D.Ausberry to OAK 47 for 20 yards (B.Pollard).,0,0,2012 -20121111_OAK@BAL,1,58,31,OAK,BAL,1,10,53,(13:31) C.Palmer pass short right to D.Heyward-Bey to BLT 45 for 8 yards (D.Ellerbe T.Suggs).,0,0,2012 -20121111_OAK@BAL,1,57,47,OAK,BAL,2,2,45,(12:47) C.Palmer pass incomplete deep middle to D.Moore.,0,0,2012 -20121111_OAK@BAL,1,57,40,OAK,BAL,3,2,45,(12:40) M.Reece left guard to BLT 44 for 1 yard (T.Suggs T.Cody).,0,0,2012 -20121111_OAK@BAL,1,56,53,OAK,BAL,4,1,44,(11:53) C.Palmer sacked at BLT 48 for -4 yards (P.Kruger).,0,0,2012 -20121111_OAK@BAL,1,56,53,BAL,OAK,1,10,52,(11:53) R.Rice right guard to OAK 47 for 5 yards (P.Wheeler). Ray Rice passes the 5000-yard mark.,0,0,2012 -20121111_OAK@BAL,1,56,21,BAL,OAK,2,5,47,(11:21) R.Rice left guard to OAK 45 for 2 yards (R.McClain).,0,0,2012 -20121111_OAK@BAL,1,55,48,BAL,OAK,3,3,45,(10:48) (Shotgun) J.Flacco pass short right to A.Boldin to OAK 34 for 11 yards (M.Huff).,0,0,2012 -20121111_OAK@BAL,1,55,16,BAL,OAK,1,10,34,(10:16) (No Huddle) J.Flacco pass incomplete short right to A.Boldin (M.Huff).,0,0,2012 -20121111_OAK@BAL,1,55,11,BAL,OAK,2,10,34,(10:11) (No Huddle) R.Rice right tackle to OAK 37 for -3 yards (D.Bryant).,0,0,2012 -20121111_OAK@BAL,1,54,39,BAL,OAK,3,13,37,(9:39) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to OAK 30 for 7 yards (P.Wheeler).,0,0,2012 -20121111_OAK@BAL,1,53,55,BAL,OAK,4,6,30,(8:55) (Field Goal formation) J.Tucker 48 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121111_OAK@BAL,1,53,55,BAL,OAK,,,30,J.Tucker kicks 70 yards from BLT 35 to OAK -5. C.Francies to OAK 24 for 29 yards (B.Ayanbadejo).,3,0,2012 -20121111_OAK@BAL,1,53,45,OAK,BAL,1,10,76,(8:45) C.Palmer pass incomplete short left to D.Moore (T.Suggs).,0,3,2012 -20121111_OAK@BAL,1,53,42,OAK,BAL,2,10,76,(8:42) C.Palmer pass short middle to M.Reece to OAK 28 for 4 yards (J.McClain).,0,3,2012 -20121111_OAK@BAL,1,53,3,OAK,BAL,3,6,72,(8:03) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 32 for 4 yards (B.Pollard).,0,3,2012 -20121111_OAK@BAL,1,52,24,OAK,BAL,4,2,68,(7:24) (Punt formation) S.Lechler punts 59 yards to BLT 9 Center-J.Condo. J.Jones to BLT 22 for 13 yards (B.Myers). PENALTY on OAK-A.Curry Personal Foul 15 yards enforced at BLT 22.,0,3,2012 -20121111_OAK@BAL,1,52,11,BAL,OAK,1,10,63,(7:11) J.Flacco pass short left to V.Leach to BLT 34 for -3 yards (M.Shaughnessy).,3,0,2012 -20121111_OAK@BAL,1,51,33,BAL,OAK,2,13,66,(6:33) R.Rice right tackle to BLT 38 for 4 yards (L.Houston).,3,0,2012 -20121111_OAK@BAL,1,50,56,BAL,OAK,3,9,62,(5:56) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to OAK 44 for 18 yards (J.Hanson M.Huff) [M.Mitchell].,3,0,2012 -20121111_OAK@BAL,1,50,26,BAL,OAK,1,10,44,(5:26) (No Huddle) R.Rice right tackle to OAK 46 for -2 yards (D.Bryant).,3,0,2012 -20121111_OAK@BAL,1,49,51,BAL,OAK,2,12,46,(4:51) (No Huddle Shotgun) R.Rice up the middle to OAK 44 for 2 yards (A.Carter).,3,0,2012 -20121111_OAK@BAL,1,49,19,BAL,OAK,3,10,44,(4:19) (No Huddle Shotgun) J.Flacco pass deep middle to E.Dickson to OAK 4 for 40 yards (T.Branch).,3,0,2012 -20121111_OAK@BAL,1,48,44,BAL,OAK,1,4,4,(3:44) (No Huddle) R.Rice left guard to OAK 1 for 3 yards (M.Giordano C.Bilukidi).,3,0,2012 -20121111_OAK@BAL,1,48,18,BAL,OAK,2,1,1,(3:18) (No Huddle) J.Flacco up the middle for 1 yard TOUCHDOWN.,3,0,2012 -20121111_OAK@BAL,1,48,18,BAL,OAK,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,0,2012 -20121111_OAK@BAL,1,48,18,BAL,OAK,,,1,J.Tucker kicks 73 yards from BLT 35 to OAK -8. C.Francies Touchback.,10,0,2012 -20121111_OAK@BAL,1,48,15,OAK,BAL,1,10,80,(3:15) M.Reece left guard to OAK 18 for -2 yards (C.Upshaw). PENALTY on OAK-S.Wisniewski Offensive Holding 10 yards enforced at OAK 20 - No Play.,0,10,2012 -20121111_OAK@BAL,1,48,3,OAK,BAL,1,20,90,(3:03) (No Huddle) J.Stewart left end to OAK 16 for 6 yards (J.McClain C.Williams).,0,10,2012 -20121111_OAK@BAL,1,47,20,OAK,BAL,2,14,84,(2:20) (Shotgun) C.Palmer pass short right to J.Criner to OAK 29 for 13 yards (E.Reed B.Pollard).,0,10,2012 -20121111_OAK@BAL,1,46,40,OAK,BAL,3,1,71,(1:40) C.Palmer pass short right to R.Streater to OAK 40 for 11 yards (C.Graham).,0,10,2012 -20121111_OAK@BAL,1,46,2,OAK,BAL,1,10,60,(1:02) D.Heyward-Bey left end to OAK 36 for -4 yards (C.Upshaw). Heyward-Bey tries end around play.,0,10,2012 -20121111_OAK@BAL,1,45,22,OAK,BAL,2,14,64,(:22) C.Palmer pass short right to T.Jones to OAK 43 for 7 yards (E.Reed).,0,10,2012 -20121111_OAK@BAL,2,45,0,OAK,BAL,3,7,57,(15:00) (Shotgun) C.Palmer pass short right to M.Reece to OAK 45 for 2 yards (B.Pollard). Penalty on OAK-M.Brisiel Offensive Holding declined.,0,10,2012 -20121111_OAK@BAL,2,44,26,OAK,BAL,4,5,55,(14:26) (Punt formation) S.Lechler punts 53 yards to BLT 2 Center-J.Condo downed by OAK-O.Schmitt.,0,10,2012 -20121111_OAK@BAL,2,44,22,BAL,OAK,1,10,98,(14:22) V.Leach right guard to BLT 4 for 2 yards (A.Carter O.Schmitt).,10,0,2012 -20121111_OAK@BAL,2,43,41,BAL,OAK,2,8,96,(13:41) J.Flacco pass short left to A.Boldin to BLT 13 for 9 yards (R.Bartell).,10,0,2012 -20121111_OAK@BAL,2,43,10,BAL,OAK,1,10,87,(13:10) J.Flacco pass short middle to A.Boldin to BLT 12 for -1 yards (A.Carter) [M.Shaughnessy].,10,0,2012 -20121111_OAK@BAL,2,43,1,BAL,OAK,2,11,88,(13:01) B.Pierce right end to BLT 25 for 13 yards (M.Huff). PENALTY on BLT-K.Osemele Offensive Holding 6 yards enforced at BLT 12 - No Play.,10,0,2012 -20121111_OAK@BAL,2,42,35,BAL,OAK,2,17,94,(12:35) (No Huddle) J.Flacco pass short right intended for J.Jones INTERCEPTED by M.Huff at BLT 19. M.Huff to BLT 19 for no gain (J.Jones).,10,0,2012 -20121111_OAK@BAL,2,42,27,OAK,BAL,1,10,19,(12:27) C.Palmer sacked at BLT 26 for -7 yards (B.Pollard).,0,10,2012 -20121111_OAK@BAL,2,41,55,OAK,BAL,2,17,26,(11:55) (Shotgun) C.Palmer pass deep middle to B.Myers to BLT 5 for 21 yards (E.Reed).,0,10,2012 -20121111_OAK@BAL,2,41,18,OAK,BAL,1,5,5,(11:18) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at BLT 5 - No Play.,0,10,2012 -20121111_OAK@BAL,2,41,8,OAK,BAL,1,10,10,(11:08) (No Huddle) C.Palmer pass short right to M.Reece pushed ob at BLT 7 for 3 yards (B.Pollard).,0,10,2012 -20121111_OAK@BAL,2,40,46,OAK,BAL,2,7,7,(10:46) (Shotgun) C.Palmer pass short left to D.Heyward-Bey to BLT 3 for 4 yards (C.Williams).,0,10,2012 -20121111_OAK@BAL,2,40,11,OAK,BAL,3,3,3,(10:11) C.Palmer pass incomplete short middle to B.Myers. Penalty on OAK-B.Myers Offensive Pass Interference declined.,0,10,2012 -20121111_OAK@BAL,2,40,5,OAK,BAL,4,3,3,(10:05) (Field Goal formation) S.Janikowski 32 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,10,2012 -20121111_OAK@BAL,2,40,5,OAK,BAL,,,3,S.Janikowski kicks 74 yards from OAK 35 to BLT -9. J.Jones Touchback.,3,10,2012 -20121111_OAK@BAL,2,40,2,BAL,OAK,1,10,80,(10:02) R.Rice left end pushed ob at BLT 23 for 3 yards (R.Bartell).,10,3,2012 -20121111_OAK@BAL,2,39,37,BAL,OAK,2,7,77,(9:37) (No Huddle) J.Flacco pass deep right to J.Jones to OAK 30 for 47 yards (M.Huff).,10,3,2012 -20121111_OAK@BAL,2,39,17,BAL,OAK,1,10,30,(9:17) (No Huddle) J.Jones left end to OAK 24 for 6 yards (T.Branch). End around play,10,3,2012 -20121111_OAK@BAL,2,38,38,BAL,OAK,2,4,24,(8:38) (No Huddle) J.Flacco pass incomplete deep right to T.Smith (M.Huff).,10,3,2012 -20121111_OAK@BAL,2,38,31,BAL,OAK,3,4,24,(8:31) (Shotgun) J.Flacco pass short middle to E.Dickson to OAK 5 for 19 yards (T.Branch).,10,3,2012 -20121111_OAK@BAL,2,37,55,BAL,OAK,1,5,5,(7:55) (No Huddle) J.Flacco pass short middle to D.Pitta for 5 yards TOUCHDOWN.,10,3,2012 -20121111_OAK@BAL,2,37,55,BAL,OAK,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,3,2012 -20121111_OAK@BAL,2,37,55,BAL,OAK,,,5,J.Tucker kicks 73 yards from BLT 35 to OAK -8. C.Francies Touchback.,17,3,2012 -20121111_OAK@BAL,2,37,49,OAK,BAL,1,10,80,(7:49) (Shotgun) C.Palmer pass incomplete short middle to J.Criner (D.Tyson).,3,17,2012 -20121111_OAK@BAL,2,37,46,OAK,BAL,2,10,80,(7:46) (No Huddle Shotgun) C.Palmer pass short left to D.Moore to OAK 27 for 7 yards (D.Ellerbe).,3,17,2012 -20121111_OAK@BAL,2,37,10,OAK,BAL,3,3,73,(7:10) (No Huddle Shotgun) C.Palmer pass short right to M.Reece to OAK 34 for 7 yards (T.Suggs).,3,17,2012 -20121111_OAK@BAL,2,36,41,OAK,BAL,1,10,66,(6:41) (No Huddle Shotgun) C.Palmer pass short left to J.Criner pushed ob at OAK 47 for 13 yards (J.McClain).,3,17,2012 -20121111_OAK@BAL,2,36,25,OAK,BAL,1,10,53,(6:25) (No Huddle) M.Reece left guard to OAK 50 for 3 yards (D.Ellerbe). PENALTY on OAK-M.Brisiel Offensive Holding 10 yards enforced at OAK 47 - No Play.,3,17,2012 -20121111_OAK@BAL,2,36,14,OAK,BAL,1,20,63,(6:14) (Shotgun) C.Palmer pass short left intended for D.Hagan INTERCEPTED by P.Kruger at OAK 32. P.Kruger to OAK 32 for no gain (M.Brisiel).,3,17,2012 -20121111_OAK@BAL,2,36,8,BAL,OAK,1,10,32,(6:08) J.Flacco pass short right to R.Rice to OAK 29 for 3 yards. PENALTY on BLT-J.Reid Illegal Use of Hands 10 yards enforced at OAK 32 - No Play.,17,3,2012 -20121111_OAK@BAL,2,35,39,BAL,OAK,1,20,42,(5:39) (Shotgun) J.Flacco pass incomplete short left to T.Doss.,17,3,2012 -20121111_OAK@BAL,2,35,34,BAL,OAK,2,20,42,(5:34) (Shotgun) R.Rice right guard to OAK 37 for 5 yards (P.Wheeler T.Kelly).,17,3,2012 -20121111_OAK@BAL,2,34,56,BAL,OAK,3,15,37,(4:56) (Shotgun) J.Flacco pass incomplete deep middle to D.Pitta. PENALTY on OAK-P.Wheeler Personal Foul 15 yards enforced at OAK 37 - No Play.,17,3,2012 -20121111_OAK@BAL,2,34,48,BAL,OAK,1,10,22,(4:48) (No Huddle) R.Rice left end to OAK 19 for 3 yards (M.Burris).,17,3,2012 -20121111_OAK@BAL,2,34,9,BAL,OAK,2,7,19,(4:09) R.Rice left guard to OAK 16 for 3 yards (R.McClain M.Burris).,17,3,2012 -20121111_OAK@BAL,2,33,26,BAL,OAK,3,4,16,(3:26) (Shotgun) J.Flacco pass incomplete deep left to T.Smith (R.Bartell).,17,3,2012 -20121111_OAK@BAL,2,33,20,BAL,OAK,4,4,16,(3:20) (Field Goal formation) J.Tucker 34 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,17,3,2012 -20121111_OAK@BAL,2,33,20,BAL,OAK,,,16,J.Tucker kicks 74 yards from BLT 35 to OAK -9. C.Francies Touchback.,20,3,2012 -20121111_OAK@BAL,2,33,16,OAK,BAL,1,10,80,(3:16) C.Palmer pass short left to M.Reece to OAK 29 for 9 yards (C.Williams).,3,20,2012 -20121111_OAK@BAL,2,32,39,OAK,BAL,2,1,71,(2:39) (No Huddle) C.Palmer pass incomplete short middle to D.Hagan (T.Suggs).,3,20,2012 -20121111_OAK@BAL,2,32,34,OAK,BAL,3,1,71,(2:34) (No Huddle) M.Reece left guard to OAK 35 for 6 yards (B.Pollard).,3,20,2012 -20121111_OAK@BAL,2,32,3,OAK,BAL,1,10,65,(2:03) (No Huddle Shotgun) C.Palmer pass short left to D.Hagan to OAK 45 for 10 yards (C.Williams J.McClain).,3,20,2012 -20121111_OAK@BAL,2,31,53,OAK,BAL,1,10,55,(1:53) (Shotgun) C.Palmer pass incomplete short right to M.Reece.,3,20,2012 -20121111_OAK@BAL,2,31,49,OAK,BAL,2,10,55,(1:49) (No Huddle Shotgun) C.Palmer pass incomplete short middle to D.Moore.,3,20,2012 -20121111_OAK@BAL,2,31,46,OAK,BAL,3,10,55,(1:46) (Shotgun) C.Palmer pass deep right to D.Heyward-Bey for 55 yards TOUCHDOWN.,3,20,2012 -20121111_OAK@BAL,2,31,46,OAK,BAL,,,55,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,3,20,2012 -20121111_OAK@BAL,2,31,46,OAK,BAL,,,55,S.Janikowski kicks 74 yards from OAK 35 to BLT -9. J.Jones Touchback.,10,20,2012 -20121111_OAK@BAL,2,31,37,BAL,OAK,1,10,80,(1:37) (Shotgun) J.Flacco pass short left to R.Rice to BLT 32 for 12 yards (M.Burris).,20,10,2012 -20121111_OAK@BAL,2,31,8,BAL,OAK,1,10,68,(1:08) (No Huddle) J.Flacco pass short middle to D.Pitta to OAK 42 for 26 yards (M.Giordano).,20,10,2012 -20121111_OAK@BAL,2,31,5,BAL,OAK,1,10,42,(1:05) (Shotgun) J.Flacco pass short right to J.Jones to OAK 35 for 7 yards (L.Houston).,20,10,2012 -20121111_OAK@BAL,2,30,45,BAL,OAK,2,3,35,(:45) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice pushed ob at OAK 18 for 17 yards (M.Giordano).,20,10,2012 -20121111_OAK@BAL,2,30,37,BAL,OAK,1,10,18,(:37) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to OAK 7 for 11 yards (M.Burris).,20,10,2012 -20121111_OAK@BAL,2,30,30,BAL,OAK,1,7,7,(:30) J.Flacco pass incomplete short right to R.Rice.,20,10,2012 -20121111_OAK@BAL,2,30,27,BAL,OAK,2,7,7,(:27) (Shotgun) R.Rice left guard for 7 yards TOUCHDOWN.,20,10,2012 -20121111_OAK@BAL,2,30,27,BAL,OAK,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,20,10,2012 -20121111_OAK@BAL,2,30,27,BAL,OAK,,,7,J.Tucker kicks 72 yards from BLT 35 to OAK -7. C.Francies to OAK 22 for 29 yards (A.Allen).,27,10,2012 -20121111_OAK@BAL,2,30,18,OAK,BAL,1,10,78,(:18) (Shotgun) M.Reece left end to OAK 19 for -3 yards (A.McClellan).,10,27,2012 -20121111_OAK@BAL,3,30,0,OAK,BAL,,,78,S.Janikowski kicks 53 yards from OAK 35 to BLT 12. A.Allen to BLT 30 for 18 yards (R.Gordon).,10,27,2012 -20121111_OAK@BAL,3,29,52,BAL,OAK,1,10,70,(14:52) R.Rice left tackle to BLT 33 for 3 yards (D.Bryant T.Kelly).,27,10,2012 -20121111_OAK@BAL,3,29,15,BAL,OAK,2,7,67,(14:15) J.Flacco pass short right to R.Rice to BLT 38 for 5 yards (P.Wheeler). PENALTY on OAK-P.Wheeler Face Mask (15 Yards) 15 yards enforced at BLT 38.,27,10,2012 -20121111_OAK@BAL,3,28,49,BAL,OAK,1,10,47,(13:49) (No Huddle) J.Flacco pass deep right to T.Smith for 47 yards TOUCHDOWN.,27,10,2012 -20121111_OAK@BAL,3,28,49,BAL,OAK,,,47,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,27,10,2012 -20121111_OAK@BAL,3,28,49,BAL,OAK,,,47,J.Tucker kicks 73 yards from BLT 35 to OAK -8. C.Francies Touchback.,34,10,2012 -20121111_OAK@BAL,3,28,42,OAK,BAL,1,10,80,(13:42) M.Reece left guard to OAK 29 for 9 yards (D.Ellerbe B.Pollard).,10,34,2012 -20121111_OAK@BAL,3,28,2,OAK,BAL,2,1,71,(13:02) M.Reece right end to OAK 34 for 5 yards (B.Pollard B.Hall).,10,34,2012 -20121111_OAK@BAL,3,27,23,OAK,BAL,1,10,66,(12:23) C.Palmer pass short left to M.Reece pushed ob at BLT 42 for 24 yards (A.McClellan).,10,34,2012 -20121111_OAK@BAL,3,26,55,OAK,BAL,1,10,42,(11:55) (No Huddle Shotgun) J.Stewart left tackle to BLT 40 for 2 yards (T.Cody).,10,34,2012 -20121111_OAK@BAL,3,26,19,OAK,BAL,2,8,40,(11:19) C.Palmer pass incomplete short right to B.Myers (C.Upshaw).,10,34,2012 -20121111_OAK@BAL,3,26,15,OAK,BAL,3,8,40,(11:15) (Shotgun) C.Palmer pass short right to D.Heyward-Bey to BLT 30 for 10 yards (C.Brown).,10,34,2012 -20121111_OAK@BAL,3,25,37,OAK,BAL,1,10,30,(10:37) (Shotgun) C.Palmer pass deep left to D.Moore for 30 yards TOUCHDOWN.,10,34,2012 -20121111_OAK@BAL,3,25,37,OAK,BAL,,,30,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,10,34,2012 -20121111_OAK@BAL,3,25,37,OAK,BAL,,,30,S.Janikowski kicks 74 yards from OAK 35 to BLT -9. J.Jones Touchback.,17,34,2012 -20121111_OAK@BAL,3,25,31,BAL,OAK,1,10,80,(10:31) B.Pierce left tackle to BLT 22 for 2 yards (C.Bilukidi M.Burris).,34,17,2012 -20121111_OAK@BAL,3,24,55,BAL,OAK,2,8,78,(9:55) (No Huddle) J.Flacco pass incomplete deep left to T.Smith.,34,17,2012 -20121111_OAK@BAL,3,24,47,BAL,OAK,3,8,78,(9:47) (Shotgun) J.Flacco pass incomplete short left to T.Doss [M.Burris].,34,17,2012 -20121111_OAK@BAL,3,24,42,BAL,OAK,4,8,78,(9:42) (Punt formation) S.Koch punts 53 yards to OAK 25 Center-M.Cox. P.Adams MUFFS catch RECOVERED by BLT-B.Ayanbadejo at OAK 20. B.Ayanbadejo to OAK 20 for no gain (P.Adams).,34,17,2012 -20121111_OAK@BAL,3,24,27,BAL,OAK,1,10,20,(9:27) J.Flacco pass deep left to T.Smith for 20 yards TOUCHDOWN.,34,17,2012 -20121111_OAK@BAL,3,24,27,BAL,OAK,,,20,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,34,17,2012 -20121111_OAK@BAL,3,24,27,BAL,OAK,,,20,J.Tucker kicks 68 yards from BLT 35 to OAK -3. C.Francies to OAK 17 for 20 yards (A.Allen).,41,17,2012 -20121111_OAK@BAL,3,24,16,OAK,BAL,1,10,83,(9:16) C.Palmer pass incomplete deep middle to D.Heyward-Bey (C.Williams).,17,41,2012 -20121111_OAK@BAL,3,24,5,OAK,BAL,2,10,83,(9:05) C.Palmer pass incomplete short left to M.Reece (D.Tyson).,17,41,2012 -20121111_OAK@BAL,3,24,2,OAK,BAL,3,10,83,(9:02) (Shotgun) C.Palmer pass incomplete short middle to D.Moore.,17,41,2012 -20121111_OAK@BAL,3,24,2,OAK,BAL,4,10,83,(9:02) (Punt formation) S.Lechler punts 60 yards to BLT 23 Center-J.Condo. J.Jones to BLT 36 for 13 yards (J.Condo). PENALTY on BLT-A.Allen Offensive Holding 10 yards enforced at BLT 36.,17,41,2012 -20121111_OAK@BAL,3,23,44,BAL,OAK,1,10,74,(8:44) J.Flacco pass short right to R.Rice to BLT 25 for -1 yards (P.Wheeler). PENALTY on OAK-A.Curry Personal Foul 15 yards enforced at BLT 25.,41,17,2012 -20121111_OAK@BAL,3,23,22,BAL,OAK,1,10,60,(8:22) B.Pierce right tackle to BLT 41 for 1 yard (C.Bilukidi).,41,17,2012 -20121111_OAK@BAL,3,22,42,BAL,OAK,2,9,59,(7:42) J.Flacco pass incomplete short left to A.Boldin.,41,17,2012 -20121111_OAK@BAL,3,22,37,BAL,OAK,3,9,59,(7:37) (Shotgun) J.Flacco pass deep right to A.Boldin to OAK 40 for 19 yards (J.Hanson).,41,17,2012 -20121111_OAK@BAL,3,21,25,BAL,OAK,1,10,40,(6:25) J.Flacco pass deep middle to T.Doss to OAK 14 for 26 yards (T.Branch).,41,17,2012 -20121111_OAK@BAL,3,21,25,BAL,OAK,1,10,14,(6:25) (No Huddle) B.Pierce left guard to OAK 12 for 2 yards (L.Houston).,41,17,2012 -20121111_OAK@BAL,3,20,58,BAL,OAK,2,8,12,(5:58) (No Huddle) J.Flacco pass incomplete short right to V.Leach [A.Carter].,41,17,2012 -20121111_OAK@BAL,3,20,51,BAL,OAK,3,8,12,(5:51) (No Huddle Shotgun) PENALTY on OAK-L.Houston Neutral Zone Infraction 5 yards enforced at OAK 12 - No Play.,41,17,2012 -20121111_OAK@BAL,3,20,51,BAL,OAK,3,3,7,(5:51) (No Huddle Shotgun) J.Flacco pass incomplete short right to A.Boldin.,41,17,2012 -20121111_OAK@BAL,3,20,44,BAL,OAK,4,3,7,(5:44) (Field Goal formation) S.Koch left tackle for 7 yards TOUCHDOWN. Sam Koch scores first NFL touchdown on fake field goal.,41,17,2012 -20121111_OAK@BAL,3,20,44,BAL,OAK,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch. Ravens tie team record for points scored.,41,17,2012 -20121111_OAK@BAL,3,20,44,BAL,OAK,,,7,J.Tucker kicks 72 yards from BLT 35 to OAK -7. C.Francies to OAK 20 for 27 yards (A.Allen).,48,17,2012 -20121111_OAK@BAL,3,20,36,OAK,BAL,1,10,80,(5:36) T.Jones left guard to OAK 23 for 3 yards (C.Upshaw).,17,48,2012 -20121111_OAK@BAL,3,19,57,OAK,BAL,2,7,77,(4:57) C.Palmer pass incomplete deep middle to R.Streater (C.Williams).,17,48,2012 -20121111_OAK@BAL,3,19,50,OAK,BAL,3,7,77,(4:50) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey.,17,48,2012 -20121111_OAK@BAL,3,19,44,OAK,BAL,4,7,77,(4:44) (Punt formation) S.Lechler punts 54 yards to BLT 23 Center-J.Condo. J.Jones to BLT 33 for 10 yards (R.Gordon).,17,48,2012 -20121111_OAK@BAL,3,19,35,BAL,OAK,1,10,67,(4:35) B.Pierce left end pushed ob at BLT 45 for 12 yards (R.Bartell).,48,17,2012 -20121111_OAK@BAL,3,19,6,BAL,OAK,1,10,55,(4:06) B.Pierce left guard to BLT 48 for 3 yards (P.Wheeler).,48,17,2012 -20121111_OAK@BAL,3,18,27,BAL,OAK,2,7,52,(3:27) B.Pierce right tackle to BLT 49 for 1 yard (D.Bryant P.Wheeler).,48,17,2012 -20121111_OAK@BAL,3,17,47,BAL,OAK,3,6,51,(2:47) (Shotgun) J.Flacco pass incomplete short middle to T.Smith (M.Huff).,48,17,2012 -20121111_OAK@BAL,3,17,43,BAL,OAK,4,6,51,(2:43) (Punt formation) S.Koch punts 41 yards to OAK 10 Center-M.Cox out of bounds.,48,17,2012 -20121111_OAK@BAL,3,17,33,OAK,BAL,1,10,90,(2:33) (No Huddle) M.Reece right tackle to OAK 14 for 4 yards (T.Cody D.Ellerbe).,17,48,2012 -20121111_OAK@BAL,3,16,58,OAK,BAL,2,6,86,(1:58) (Shotgun) M.Reece left tackle to OAK 18 for 4 yards (D.Ellerbe J.McClain).,17,48,2012 -20121111_OAK@BAL,3,16,17,OAK,BAL,3,2,82,(1:17) (Shotgun) C.Palmer pass short middle to D.Moore to OAK 33 for 15 yards (J.McClain).,17,48,2012 -20121111_OAK@BAL,3,15,36,OAK,BAL,1,10,67,(:36) (Shotgun) C.Palmer pass short left to M.Reece pushed ob at OAK 40 for 7 yards (D.Ellerbe).,17,48,2012 -20121111_OAK@BAL,3,15,7,OAK,BAL,2,3,60,(:07) M.Reece left tackle to OAK 45 for 5 yards (C.Upshaw).,17,48,2012 -20121111_OAK@BAL,4,15,0,OAK,BAL,1,10,55,(15:00) C.Palmer pass deep middle to D.Moore to BLT 17 for 38 yards (J.McClain).,17,48,2012 -20121111_OAK@BAL,4,14,14,OAK,BAL,1,10,17,(14:14) C.Palmer pass short right to D.Ausberry to BLT 22 for -5 yards (J.Ihedigbo).,17,48,2012 -20121111_OAK@BAL,4,12,58,OAK,BAL,2,15,22,(12:58) (Shotgun) C.Palmer sacked at BLT 29 for -7 yards (P.Kruger).,17,48,2012 -20121111_OAK@BAL,4,12,58,OAK,BAL,3,22,29,(12:58) C.Palmer pass incomplete deep left to D.Hagan.,17,48,2012 -20121111_OAK@BAL,4,12,58,OAK,BAL,4,22,29,(12:58) (Field Goal formation) S.Janikowski 47 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,17,48,2012 -20121111_OAK@BAL,4,12,58,OAK,BAL,,,29,S.Janikowski kicks 70 yards from OAK 35 to BLT -5. J.Jones for 105 yards TOUCHDOWN. Jacoby Jones returns KO for touchdown to become first Raven to accomplish feat.,20,48,2012 -20121111_OAK@BAL,4,12,58,BAL,OAK,,,29,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch. Ravens establish new single game scoring record.,48,20,2012 -20121111_OAK@BAL,4,12,58,BAL,OAK,,,29,J.Tucker kicks 70 yards from BLT 35 to OAK -5. C.Francies to OAK 26 for 31 yards (C.Brown).,55,20,2012 -20121111_OAK@BAL,4,12,28,OAK,BAL,1,10,74,(12:28) T.Jones right tackle to OAK 29 for 3 yards (J.Ihedigbo; D.Ellerbe).,20,55,2012 -20121111_OAK@BAL,4,11,55,OAK,BAL,2,7,71,(11:55) (No Huddle) M.Reece right end to OAK 36 for 7 yards (B.Hall).,20,55,2012 -20121111_OAK@BAL,4,11,18,OAK,BAL,1,10,64,(11:18) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to OAK 49 for 13 yards (J.McClain).,20,55,2012 -20121111_OAK@BAL,4,10,42,OAK,BAL,1,10,51,(10:42) (No Huddle) M.Reece left guard to OAK 50 for 1 yard (P.Kruger J.McClain).,20,55,2012 -20121111_OAK@BAL,4,10,13,OAK,BAL,2,9,50,(10:13) (No Huddle Shotgun) C.Palmer pass short right to B.Myers to BLT 43 for 7 yards (B.Pollard).,20,55,2012 -20121111_OAK@BAL,4,9,40,OAK,BAL,3,2,43,(9:40) (No Huddle Shotgun) C.Palmer pass short middle to D.Hagan to BLT 29 for 14 yards (C.Brown).,20,55,2012 -20121111_OAK@BAL,4,9,13,OAK,BAL,1,10,29,(9:13) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to BLT 17 for 12 yards (B.Pollard).,20,55,2012 -20121111_OAK@BAL,4,8,43,OAK,BAL,1,10,17,(8:43) (No Huddle) M.Reece right guard to BLT 15 for 2 yards (C.Upshaw P.Kruger).,20,55,2012 -20121111_OAK@BAL,4,8,16,OAK,BAL,2,8,15,(8:16) (No Huddle Shotgun) C.Palmer pass incomplete short right to R.Streater [D.Tyson].,20,55,2012 -20121111_OAK@BAL,4,8,6,OAK,BAL,3,8,15,(8:06) (Shotgun) C.Palmer pass short middle to D.Heyward-Bey to BLT 10 for 5 yards (D.Ellerbe).,20,55,2012 -20121111_OAK@BAL,4,7,36,BAL,OAK,4,3,13,(7:36) (No Huddle) C.Palmer FUMBLES (Aborted) at BLT 13 RECOVERED by BLT-A.McClellan at BLT 13. A.McClellan to BLT 13 for no gain (M.Reece).,55,20,2012 -20121111_OAK@BAL,4,7,31,BAL,OAK,1,10,87,(7:31) Tyrod Taylor replaces Joe Flacco at QB for Baltimore. B.Pierce left end to BLT 14 for 1 yard (M.Shaughnessy).,55,20,2012 -20121111_OAK@BAL,4,6,52,BAL,OAK,2,9,86,(6:52) B.Pierce right end pushed ob at BLT 12 for -2 yards (T.Branch).,55,20,2012 -20121111_OAK@BAL,4,6,18,BAL,OAK,3,11,88,(6:18) T.Taylor pass incomplete short right to A.Allen.,55,20,2012 -20121111_OAK@BAL,4,6,13,BAL,OAK,4,11,88,(6:13) (Punt formation) S.Koch punts 58 yards to OAK 30 Center-M.Cox. P.Adams to OAK 26 for -4 yards (A.McClellan). PENALTY on OAK-K.Clayton Illegal Block Above the Waist 10 yards enforced at OAK 26.,55,20,2012 -20121111_OAK@BAL,4,5,59,OAK,BAL,1,10,84,(5:59) J.Stewart right tackle to OAK 19 for 3 yards (P.Kruger D.Ellerbe).,20,55,2012 -20121111_OAK@BAL,4,5,23,OAK,BAL,2,7,81,(5:23) J.Stewart right tackle to OAK 22 for 3 yards (C.Graham D.Ellerbe).,20,55,2012 -20121111_OAK@BAL,4,4,34,OAK,BAL,3,4,78,(4:34) (Shotgun) PENALTY on OAK-M.Leinart Delay of Game 5 yards enforced at OAK 22 - No Play.,20,55,2012 -20121111_OAK@BAL,4,4,31,OAK,BAL,3,9,83,(4:31) M.Leinart pass incomplete short right to D.Heyward-Bey.,20,55,2012 -20121111_OAK@BAL,4,4,5,OAK,BAL,4,9,83,(4:05) (Punt formation) S.Lechler punts 48 yards to BLT 35 Center-J.Condo. T.Doss pushed ob at OAK 33 for 32 yards (S.Lechler). PENALTY on BLT-J.Smith Offensive Holding 15 yards enforced at BLT 35.,20,55,2012 -20121111_OAK@BAL,4,3,55,BAL,OAK,1,10,80,(3:55) B.Pierce left guard to BLT 25 for 5 yards (T.Branch).,55,20,2012 -20121111_OAK@BAL,4,3,30,BAL,OAK,2,5,75,(3:30) V.Leach left guard to BLT 29 for 4 yards (D.Bryant T.Branch).,55,20,2012 -20121111_OAK@BAL,4,2,45,BAL,OAK,3,1,71,(2:45) B.Pierce left end to BLT 27 for -2 yards (A.Curry).,55,20,2012 -20121111_OAK@BAL,4,2,0,BAL,OAK,4,3,73,(2:00) (Punt formation) S.Koch punts 53 yards to OAK 20 Center-M.Cox. P.Adams to OAK 20 for no gain (L.Williams).,55,20,2012 -20121111_OAK@BAL,4,1,50,OAK,BAL,1,10,80,(1:50) J.Stewart left tackle to OAK 24 for 4 yards (P.Kruger A.Jones).,20,55,2012 -20121111_OAK@BAL,4,1,15,OAK,BAL,2,6,76,(1:15) J.Stewart right tackle to OAK 25 for 1 yard (J.Bynes D.Ellerbe).,20,55,2012 -20121111_OAK@BAL,4,0,36,OAK,BAL,3,5,75,(:36) J.Stewart right tackle to OAK 28 for 3 yards (A.McClellan).,20,55,2012 -20121111_OAK@BAL,4,0,36,OAK,BAL,,,75,                      ,20,55,2012 -20121111_DEN@CAR,1,0,0,DEN,CAR,,,75,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20121111_DEN@CAR,1,60,0,CAR,DEN,1,10,80,(15:00) (Shotgun) C.Newton pass short right to J.Stewart to CAR 24 for 4 yards (C.Bailey).,0,0,2012 -20121111_DEN@CAR,1,60,0,CAR,DEN,2,6,76,(15:00) J.Stewart left tackle to CAR 38 for 14 yards (R.Moore).,0,0,2012 -20121111_DEN@CAR,1,58,47,CAR,DEN,1,10,62,(13:47) (Shotgun) C.Newton pass short left to B.LaFell to CAR 43 for 5 yards (C.Bailey).,0,0,2012 -20121111_DEN@CAR,1,58,8,CAR,DEN,2,5,57,(13:08) (Shotgun) C.Newton scrambles to CAR 44 for 1 yard (E.Dumervil).,0,0,2012 -20121111_DEN@CAR,1,57,22,CAR,DEN,3,4,56,(12:22) (Shotgun) C.Newton sacked at CAR 38 for -6 yards (V.Miller).,0,0,2012 -20121111_DEN@CAR,1,56,53,CAR,DEN,4,10,62,(11:53) B.Nortman punts 50 yards to DEN 12 Center-J.Jansen. T.Holliday to DEN 14 for 2 yards (J.Senn).,0,0,2012 -20121111_DEN@CAR,1,56,40,DEN,CAR,1,10,86,(11:40) W.McGahee right tackle to DEN 17 for 3 yards (J.Anderson; D.Edwards).,0,0,2012 -20121111_DEN@CAR,1,56,11,DEN,CAR,2,7,83,(11:11) (No Huddle) P.Manning pass short right to J.Tamme to DEN 23 for 6 yards (J.Thomas; T.Davis).,0,0,2012 -20121111_DEN@CAR,1,55,31,DEN,CAR,3,1,77,(10:31) W.McGahee up the middle to DEN 23 for no gain (C.Johnson).,0,0,2012 -20121111_DEN@CAR,1,55,2,DEN,CAR,4,1,77,(10:02) B.Colquitt punts 60 yards to CAR 17 Center-A.Brewer. C.Munnerlyn to CAR 23 for 6 yards (M.Willis).,0,0,2012 -20121111_DEN@CAR,1,54,50,CAR,DEN,1,10,77,(9:50) J.Stewart left guard to CAR 25 for 2 yards (K.Brooking; K.Vickerson).,0,0,2012 -20121111_DEN@CAR,1,54,11,CAR,DEN,2,8,75,(9:11) (Shotgun) C.Newton pass short right to G.Olsen to DEN 49 for 26 yards (C.Harris). DEN-V.Miller was injured during the play. His return is Probable.,0,0,2012 -20121111_DEN@CAR,1,53,48,CAR,DEN,1,10,49,(8:48) C.Newton pass short left to M.Tolbert to DEN 23 for 26 yards (M.Adams; K.Brooking).,0,0,2012 -20121111_DEN@CAR,1,53,3,CAR,DEN,1,10,23,(8:03) D.Williams up the middle to DEN 20 for 3 yards (R.Ayers; N.Irving).,0,0,2012 -20121111_DEN@CAR,1,52,26,CAR,DEN,2,7,20,(7:26) C.Newton pass short right to G.Olsen to DEN 4 for 16 yards (C.Harris).,0,0,2012 -20121111_DEN@CAR,1,51,55,CAR,DEN,1,4,4,(6:55) C.Newton pass short left to G.Olsen for 4 yards TOUCHDOWN.,0,0,2012 -20121111_DEN@CAR,1,51,55,CAR,DEN,,,4,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20121111_DEN@CAR,1,51,55,CAR,DEN,,,4,J.Medlock kicks 66 yards from CAR 35 to DEN -1. T.Holliday to DEN 26 for 27 yards (J.Phillips).,7,0,2012 -20121111_DEN@CAR,1,51,39,DEN,CAR,1,10,74,(6:39) (Shotgun) P.Manning pass short left to W.McGahee to DEN 36 for 10 yards (C.Godfrey; D.Edwards).,0,7,2012 -20121111_DEN@CAR,1,51,11,DEN,CAR,1,10,64,(6:11) (No Huddle Shotgun) W.McGahee left tackle to DEN 39 for 3 yards (J.Norman).,0,7,2012 -20121111_DEN@CAR,1,50,49,DEN,CAR,2,7,61,(5:49) (No Huddle Shotgun) P.Manning pass short right to E.Decker to DEN 41 for 2 yards (S.Martin; L.Kuechly).,0,7,2012 -20121111_DEN@CAR,1,50,14,DEN,CAR,3,5,59,(5:14) (No Huddle Shotgun) P.Manning pass incomplete deep right to E.Decker.,0,7,2012 -20121111_DEN@CAR,1,50,7,DEN,CAR,4,5,59,(5:07) B.Colquitt punts 52 yards to CAR 7 Center-A.Brewer. C.Munnerlyn to CAR 7 for no gain (O.Bolden).,0,7,2012 -20121111_DEN@CAR,1,49,56,CAR,DEN,1,10,93,(4:56) C.Newton pass incomplete short left to B.LaFell (J.Bannan).,7,0,2012 -20121111_DEN@CAR,1,49,53,CAR,DEN,2,10,93,(4:53) J.Stewart up the middle to CAR 9 for 2 yards (K.Brooking).,7,0,2012 -20121111_DEN@CAR,1,49,14,CAR,DEN,3,8,91,(4:14) (Shotgun) C.Newton pass incomplete deep right to L.Murphy. Penalty on CAR-A.Silatolu Illegal Use of Hands declined.,7,0,2012 -20121111_DEN@CAR,1,49,6,CAR,DEN,4,8,91,(4:06) B.Nortman punts 57 yards to DEN 34 Center-J.Jansen. T.Holliday to DEN 41 for 7 yards (D.Hogue).,7,0,2012 -20121111_DEN@CAR,1,48,48,DEN,CAR,1,10,59,(3:48) W.McGahee left guard to DEN 46 for 5 yards (G.Hardy).,0,7,2012 -20121111_DEN@CAR,1,48,23,DEN,CAR,2,5,54,(3:23) (No Huddle Shotgun) P.Manning pass deep left to D.Thomas to CAR 22 for 32 yards (J.Norman).,0,7,2012 -20121111_DEN@CAR,1,47,50,DEN,CAR,1,10,22,(2:50) W.McGahee right guard to CAR 19 for 3 yards (T.Davis; L.Kuechly).,0,7,2012 -20121111_DEN@CAR,1,47,20,DEN,CAR,2,7,19,(2:20) (No Huddle Shotgun) P.Manning pass short middle to J.Dreessen to CAR 10 for 9 yards (C.Godfrey).,0,7,2012 -20121111_DEN@CAR,1,46,39,DEN,CAR,1,10,10,(1:39) (Shotgun) P.Manning pass short right to B.Stokley for 10 yards TOUCHDOWN.,0,7,2012 -20121111_DEN@CAR,1,46,39,DEN,CAR,,,10,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,7,2012 -20121111_DEN@CAR,1,46,39,DEN,CAR,,,10,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,7,2012 -20121111_DEN@CAR,1,46,32,CAR,DEN,1,10,80,(1:32) (Shotgun) C.Newton pass incomplete short left to S.Smith.,7,7,2012 -20121111_DEN@CAR,1,46,29,CAR,DEN,2,10,80,(1:29) (Shotgun) C.Newton left end to CAR 26 for 6 yards (T.Carter).,7,7,2012 -20121111_DEN@CAR,1,45,47,CAR,DEN,3,4,74,(:47) (Shotgun) C.Newton sacked at CAR 26 for 0 yards (E.Dumervil). FUMBLES (E.Dumervil) and recovers at CAR 17. C.Newton to CAR 17 for no gain (V.Miller).,7,7,2012 -20121111_DEN@CAR,2,45,0,CAR,DEN,4,13,83,(15:00) B.Nortman punts 59 yards to DEN 24 Center-J.Jansen. T.Holliday for 76 yards TOUCHDOWN.,7,7,2012 -20121111_DEN@CAR,2,45,0,DEN,CAR,,,83,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,7,2012 -20121111_DEN@CAR,2,45,0,DEN,CAR,,,83,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,7,2012 -20121111_DEN@CAR,2,44,40,CAR,DEN,1,10,80,(14:40) D.Williams right guard to CAR 20 for no gain (V.Miller).,7,14,2012 -20121111_DEN@CAR,2,44,0,CAR,DEN,2,10,80,(14:00) (Shotgun) C.Newton pass incomplete deep right to S.Smith.,7,14,2012 -20121111_DEN@CAR,2,43,54,CAR,DEN,3,10,80,(13:54) (Shotgun) C.Newton pass incomplete short left to S.Smith.,7,14,2012 -20121111_DEN@CAR,2,43,49,CAR,DEN,4,10,80,(13:49) (Punt formation) PENALTY on CAR-J.Thomas False Start 5 yards enforced at CAR 20 - No Play.,7,14,2012 -20121111_DEN@CAR,2,43,49,CAR,DEN,4,15,85,(13:49) B.Nortman punts 47 yards to DEN 38 Center-J.Jansen. T.Holliday to DEN 45 for 7 yards (G.Barnidge).,7,14,2012 -20121111_DEN@CAR,2,43,38,DEN,CAR,1,10,55,(13:38) W.McGahee left tackle to CAR 48 for 7 yards (L.Kuechly).,14,7,2012 -20121111_DEN@CAR,2,43,10,DEN,CAR,2,3,48,(13:10) (No Huddle Shotgun) P.Manning pass short left to D.Thomas to CAR 40 for 8 yards (J.Norman).,14,7,2012 -20121111_DEN@CAR,2,42,37,DEN,CAR,1,10,40,(12:37) (No Huddle Shotgun) PENALTY on DEN-W.McGahee Illegal Touch Pass 5 yards enforced at CAR 40 - No Play.,14,7,2012 -20121111_DEN@CAR,2,42,6,DEN,CAR,1,15,45,(12:06) (Shotgun) P.Manning pass short right to D.Thomas to CAR 43 for 2 yards (A.Neblett; L.Kuechly).,14,7,2012 -20121111_DEN@CAR,2,41,32,DEN,CAR,2,13,43,(11:32) (No Huddle Shotgun) P.Manning pass short left to R.Hillman to CAR 36 for 7 yards (T.Davis).,14,7,2012 -20121111_DEN@CAR,2,41,0,DEN,CAR,3,6,36,(11:00) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to CAR 35 for 1 yard (S.Martin).,14,7,2012 -20121111_DEN@CAR,2,40,17,DEN,CAR,4,5,35,(10:17) M.Prater 53 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,14,7,2012 -20121111_DEN@CAR,2,40,17,DEN,CAR,,,35,M.Prater kicks 72 yards from DEN 35 to CAR -7. A.Edwards to CAR 22 for 29 yards (N.Irving).,17,7,2012 -20121111_DEN@CAR,2,40,6,CAR,DEN,1,10,78,(10:06) (Shotgun) S.Smith left end ran ob at CAR 24 for 2 yards (C.Harris). Play was an end around to Steve Smith.,7,17,2012 -20121111_DEN@CAR,2,39,36,CAR,DEN,2,8,76,(9:36) (Shotgun) J.Stewart right guard to CAR 24 for no gain (C.Harris).,7,17,2012 -20121111_DEN@CAR,2,38,55,CAR,DEN,3,8,76,(8:55) (Shotgun) C.Newton pass deep right to L.Murphy to DEN 42 for 34 yards (M.Adams). PENALTY on CAR-L.Murphy Offensive Pass Interference 10 yards enforced at CAR 24 - No Play.,7,17,2012 -20121111_DEN@CAR,2,38,22,CAR,DEN,3,18,86,(8:22) (Shotgun) C.Newton pass short left to G.Olsen to CAR 22 for 8 yards (C.Harris; J.Leonhard).,7,17,2012 -20121111_DEN@CAR,2,37,42,CAR,DEN,4,10,78,(7:42) B.Nortman punts 49 yards to DEN 29 Center-J.Jansen fair catch by T.Holliday.,7,17,2012 -20121111_DEN@CAR,2,37,32,DEN,CAR,1,10,71,(7:32) (Shotgun) W.McGahee up the middle to DEN 35 for 6 yards (R.Edwards).,17,7,2012 -20121111_DEN@CAR,2,37,3,DEN,CAR,2,4,65,(7:03) (No Huddle) W.McGahee right end to DEN 34 for -1 yards (J.Anderson).,17,7,2012 -20121111_DEN@CAR,2,36,20,DEN,CAR,3,5,66,(6:20) (Shotgun) P.Manning pass short left to D.Thomas to DEN 49 for 15 yards (S.Martin).,17,7,2012 -20121111_DEN@CAR,2,35,46,DEN,CAR,1,10,51,(5:46) P.Manning pass short left to W.McGahee to CAR 43 for 8 yards (J.Anderson).,17,7,2012 -20121111_DEN@CAR,2,35,22,DEN,CAR,2,2,43,(5:22) (No Huddle) R.Hillman left guard to CAR 43 for no gain (L.Kuechly).,17,7,2012 -20121111_DEN@CAR,2,34,46,DEN,CAR,3,2,43,(4:46) (Shotgun) P.Manning pass short right to W.McGahee to CAR 34 for 9 yards (C.Munnerlyn).,17,7,2012 -20121111_DEN@CAR,2,34,18,DEN,CAR,1,10,34,(4:18) (No Huddle Shotgun) P.Manning scrambles right end to CAR 28 for 6 yards (J.Anderson).,17,7,2012 -20121111_DEN@CAR,2,33,43,DEN,CAR,2,4,28,(3:43) (No Huddle) P.Manning pass short left to M.Willis to CAR 26 for 2 yards (J.Norman).,17,7,2012 -20121111_DEN@CAR,2,33,6,DEN,CAR,3,2,26,(3:06) (Shotgun) P.Manning pass short right to R.Hillman to CAR 25 for 1 yard (J.Thomas).,17,7,2012 -20121111_DEN@CAR,2,32,0,DEN,CAR,4,1,25,(2:00) M.Prater 43 yard field goal is No Good Wide Right Center-A.Brewer Holder-B.Colquitt.,17,7,2012 -20121111_DEN@CAR,2,31,57,CAR,DEN,1,10,67,(1:57) (Shotgun) C.Newton pass short middle to S.Smith to DEN 48 for 19 yards (C.Bailey).,7,17,2012 -20121111_DEN@CAR,2,31,31,CAR,DEN,1,10,48,(1:31) (No Huddle Shotgun) C.Newton pass short left to J.Stewart to DEN 29 for 19 yards (R.Moore; W.Woodyard).,7,17,2012 -20121111_DEN@CAR,2,31,1,CAR,DEN,1,10,29,(1:01) (No Huddle Shotgun) C.Newton pass incomplete short right to G.Olsen (D.Trevathan).,7,17,2012 -20121111_DEN@CAR,2,31,0,CAR,DEN,2,10,29,(1:00) (Shotgun) C.Newton pass incomplete deep left to S.Smith [R.Ayers].,7,17,2012 -20121111_DEN@CAR,2,30,54,CAR,DEN,3,10,29,(:54) (Shotgun) C.Newton scrambles up the middle to DEN 25 for 4 yards (R.Moore).,7,17,2012 -20121111_DEN@CAR,2,30,44,CAR,DEN,4,6,25,(:44) J.Medlock 43 yard field goal is No Good Wide Left Center-J.Jansen Holder-B.Nortman.,7,17,2012 -20121111_DEN@CAR,2,30,40,DEN,CAR,1,10,67,(:40) (Shotgun) P.Manning pass short right to E.Decker to DEN 46 for 13 yards (J.Thomas).,17,7,2012 -20121111_DEN@CAR,2,30,34,DEN,CAR,1,10,54,(:34) (No Huddle Shotgun) P.Manning pass incomplete short middle to B.Stokley. PENALTY on CAR-C.Munnerlyn Defensive Holding 5 yards enforced at DEN 46 - No Play.,17,7,2012 -20121111_DEN@CAR,2,30,28,DEN,CAR,1,10,49,(:28) (Shotgun) P.Manning pass incomplete short right to J.Tamme.,17,7,2012 -20121111_DEN@CAR,2,30,24,DEN,CAR,2,10,49,(:24) (No Huddle Shotgun) P.Manning pass incomplete deep right to B.Stokley. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,17,7,2012 -20121111_DEN@CAR,2,30,15,DEN,CAR,3,10,49,(:15) (Shotgun) P.Manning pass incomplete short left to D.Thomas. DEN-D.Thomas was injured during the play. His return is Questionable.,17,7,2012 -20121111_DEN@CAR,2,30,9,DEN,CAR,4,10,49,(:09) B.Colquitt punts 39 yards to CAR 10 Center-A.Brewer downed by DEN-D.Bruton.,17,7,2012 -20121111_DEN@CAR,3,30,0,CAR,DEN,,,49,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,17,2012 -20121111_DEN@CAR,3,30,0,DEN,CAR,1,10,80,(15:00) (Shotgun) W.McGahee up the middle to DEN 21 for 1 yard (C.Munnerlyn; L.Kuechly).,17,7,2012 -20121111_DEN@CAR,3,29,35,DEN,CAR,2,9,79,(14:35) (No Huddle Shotgun) P.Manning pass short left to W.McGahee to DEN 27 for 6 yards (G.Hardy; R.Edwards).,17,7,2012 -20121111_DEN@CAR,3,28,57,DEN,CAR,3,3,73,(13:57) (Shotgun) P.Manning pass incomplete short right to J.Tamme (G.Hardy).,17,7,2012 -20121111_DEN@CAR,3,28,51,DEN,CAR,4,3,73,(13:51) B.Colquitt punts 40 yards to CAR 33 Center-A.Brewer fair catch by C.Munnerlyn. PENALTY on CAR-J.Dockery Offensive Holding 10 yards enforced at CAR 33.,17,7,2012 -20121111_DEN@CAR,3,28,43,CAR,DEN,1,10,77,(13:43) (Shotgun) J.Stewart up the middle to CAR 29 for 6 yards (K.Brooking; R.Ayers).,7,17,2012 -20121111_DEN@CAR,3,28,11,CAR,DEN,2,4,71,(13:11) J.Stewart up the middle to CAR 31 for 2 yards (R.Ayers).,7,17,2012 -20121111_DEN@CAR,3,27,35,CAR,DEN,3,2,69,(12:35) C.Newton sacked at CAR 22 for -9 yards (K.Vickerson).,7,17,2012 -20121111_DEN@CAR,3,27,6,CAR,DEN,4,11,78,(12:06) B.Nortman punts 45 yards to DEN 33 Center-J.Jansen. T.Holliday to DEN 38 for 5 yards (C.Jones).,7,17,2012 -20121111_DEN@CAR,3,26,56,DEN,CAR,1,10,62,(11:56) P.Manning pass short left to D.Thomas to DEN 46 for 8 yards (J.Norman).,17,7,2012 -20121111_DEN@CAR,3,26,28,DEN,CAR,2,2,54,(11:28) W.McGahee right guard to DEN 49 for 3 yards (T.Davis).,17,7,2012 -20121111_DEN@CAR,3,25,55,DEN,CAR,1,10,51,(10:55) (No Huddle) P.Manning pass deep right to B.Stokley to CAR 28 for 23 yards (S.Martin).,17,7,2012 -20121111_DEN@CAR,3,25,21,DEN,CAR,1,10,28,(10:21) (No Huddle Shotgun) P.Manning sacked at CAR 33 for -5 yards (C.Johnson). FUMBLES (C.Johnson) RECOVERED by CAR-G.Hardy at CAR 34. G.Hardy to CAR 34 for no gain (M.Ramirez).,17,7,2012 -20121111_DEN@CAR,3,25,12,CAR,DEN,1,10,66,(10:12) C.Newton pass short left intended for B.LaFell INTERCEPTED by T.Carter at CAR 40. T.Carter for 40 yards TOUCHDOWN.,7,17,2012 -20121111_DEN@CAR,3,25,12,DEN,CAR,,,66,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,7,2012 -20121111_DEN@CAR,3,25,12,DEN,CAR,,,66,M.Prater kicks 59 yards from DEN 35 to CAR 6. A.Edwards to CAR 11 for 5 yards (N.Irving).,24,7,2012 -20121111_DEN@CAR,3,24,52,CAR,DEN,1,10,89,(9:52) C.Newton pass short left to J.Stewart to DEN 27 for 62 yards (M.Adams). PENALTY on CAR-J.Gross Offensive Holding 5 yards enforced at CAR 11 - No Play.,7,24,2012 -20121111_DEN@CAR,3,24,13,CAR,DEN,1,15,94,(9:13) D.Williams right guard to CAR 1 for -5 yards (V.Miller).,7,24,2012 -20121111_DEN@CAR,3,23,28,CAR,DEN,2,20,99,(8:28) (Shotgun) C.Newton pass short middle to B.LaFell to CAR 22 for 21 yards (D.Trevathan).,7,24,2012 -20121111_DEN@CAR,3,22,37,CAR,DEN,1,10,78,(7:37) C.Newton pass incomplete short left to S.Smith (R.Ayers).,7,24,2012 -20121111_DEN@CAR,3,22,32,CAR,DEN,2,10,78,(7:32) (Shotgun) C.Newton sacked at CAR 20 for -2 yards (K.Vickerson). PENALTY on DEN-K.Vickerson Horse Collar Tackle 15 yards enforced at CAR 20.,7,24,2012 -20121111_DEN@CAR,3,22,11,CAR,DEN,1,10,65,(7:11) D.Williams left end to CAR 35 for no gain (D.Wolfe).,7,24,2012 -20121111_DEN@CAR,3,21,32,CAR,DEN,2,10,65,(6:32) (Shotgun) C.Newton pass incomplete short right to S.Smith.,7,24,2012 -20121111_DEN@CAR,3,21,27,CAR,DEN,3,10,65,(6:27) (Shotgun) C.Newton sacked at CAR 32 for -3 yards (C.Harris).,7,24,2012 -20121111_DEN@CAR,3,20,53,CAR,DEN,4,13,68,(5:53) B.Nortman punts 41 yards to DEN 27 Center-J.Jansen. T.Holliday to DEN 48 for 21 yards (H.Nakamura).,7,24,2012 -20121111_DEN@CAR,3,20,40,DEN,CAR,1,10,52,(5:40) (Shotgun) P.Manning pass short left to T.Holliday to CAR 37 for 15 yards (L.Kuechly).,24,7,2012 -20121111_DEN@CAR,3,20,24,DEN,CAR,1,10,37,(5:24) (No Huddle Shotgun) P.Manning pass short left to T.Holliday to CAR 35 for 2 yards (J.Anderson).,24,7,2012 -20121111_DEN@CAR,3,19,52,DEN,CAR,2,8,35,(4:52) (No Huddle) W.McGahee to CAR 28 for 7 yards (G.Hardy). FUMBLES (G.Hardy) RECOVERED by CAR-C.Godfrey at CAR 22. C.Godfrey to CAR 22 for no gain (D.Thomas).,24,7,2012 -20121111_DEN@CAR,3,19,44,CAR,DEN,1,10,78,(4:44) (Shotgun) D.Williams left guard to CAR 26 for 4 yards (J.Bannan).,7,24,2012 -20121111_DEN@CAR,3,19,12,CAR,DEN,2,6,74,(4:12) (Shotgun) C.Newton pass short left to G.Olsen to CAR 30 for 4 yards (W.Woodyard; T.Carter).,7,24,2012 -20121111_DEN@CAR,3,18,28,CAR,DEN,3,2,70,(3:28) (Shotgun) C.Newton up the middle to CAR 26 for -4 yards (V.Miller).,7,24,2012 -20121111_DEN@CAR,3,17,53,CAR,DEN,4,6,74,(2:53) B.Nortman punts 47 yards to DEN 27 Center-J.Jansen. T.Holliday to DEN 30 for 3 yards (J.Senn).,7,24,2012 -20121111_DEN@CAR,3,17,42,DEN,CAR,1,10,70,(2:42) (Shotgun) R.Hillman up the middle to DEN 32 for 2 yards (L.Kuechly).,24,7,2012 -20121111_DEN@CAR,3,17,5,DEN,CAR,2,8,68,(2:05) (No Huddle Shotgun) P.Manning pass short left to B.Stokley to DEN 42 for 10 yards (C.Munnerlyn).,24,7,2012 -20121111_DEN@CAR,3,16,36,DEN,CAR,1,10,58,(1:36) (No Huddle Shotgun) P.Manning pass short right to B.Stokley to CAR 47 for 11 yards (C.Munnerlyn).,24,7,2012 -20121111_DEN@CAR,3,15,59,DEN,CAR,1,10,47,(:59) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to CAR 30 for 17 yards (J.Thomas). CAR-J.Thomas was injured during the play. His return is Probable.,24,7,2012 -20121111_DEN@CAR,3,15,12,DEN,CAR,1,10,30,(:12) (Shotgun) P.Manning pass deep right to J.Dreessen ran ob at CAR 8 for 22 yards.,24,7,2012 -20121111_DEN@CAR,4,15,0,DEN,CAR,1,8,8,(15:00) W.McGahee left guard to CAR 8 for no gain (L.Kuechly).,24,7,2012 -20121111_DEN@CAR,4,14,29,DEN,CAR,2,8,8,(14:29) (Shotgun) P.Manning pass incomplete short middle to W.McGahee (C.Johnson).,24,7,2012 -20121111_DEN@CAR,4,14,24,DEN,CAR,3,8,8,(14:24) (Shotgun) P.Manning pass incomplete short left to J.Tamme [A.Neblett].,24,7,2012 -20121111_DEN@CAR,4,14,20,DEN,CAR,4,8,8,(14:20) M.Prater 27 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,24,7,2012 -20121111_DEN@CAR,4,14,20,DEN,CAR,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,27,7,2012 -20121111_DEN@CAR,4,14,16,CAR,DEN,1,10,80,(14:16) J.Stewart to CAR 20 for no gain (V.Miller). FUMBLES (V.Miller) recovered by CAR-J.Gross at CAR 16. J.Gross to CAR 16 for no gain (R.Ayers).,7,27,2012 -20121111_DEN@CAR,4,14,16,CAR,DEN,2,14,84,(14:16) C.Newton pass incomplete short right to L.Murphy.,7,27,2012 -20121111_DEN@CAR,4,13,35,CAR,DEN,3,14,84,(13:35) (Shotgun) C.Newton pass incomplete short right to B.LaFell (R.Ayers).,7,27,2012 -20121111_DEN@CAR,4,13,28,CAR,DEN,4,14,84,(13:28) B.Nortman punts 56 yards to DEN 28 Center-J.Jansen. T.Holliday to DEN 32 for 4 yards (J.Phillips; H.Nakamura).,7,27,2012 -20121111_DEN@CAR,4,13,16,DEN,CAR,1,10,68,(13:16) (Shotgun) P.Manning pass short left to D.Thomas to DEN 38 for 6 yards (C.Godfrey).,27,7,2012 -20121111_DEN@CAR,4,12,51,DEN,CAR,2,4,62,(12:51) (No Huddle) P.Manning pass incomplete short right to W.McGahee.,27,7,2012 -20121111_DEN@CAR,4,12,45,DEN,CAR,3,4,62,(12:45) (No Huddle Shotgun) P.Manning pass incomplete short right to J.Dreessen (L.Kuechly).,27,7,2012 -20121111_DEN@CAR,4,12,39,DEN,CAR,4,4,62,(12:39) B.Colquitt punts 55 yards to CAR 7 Center-A.Brewer. C.Munnerlyn to CAR 11 for 4 yards (O.Bolden).,27,7,2012 -20121111_DEN@CAR,4,12,25,CAR,DEN,1,10,89,(12:25) (Shotgun) C.Newton pass short left to B.LaFell to CAR 18 for 7 yards (T.Carter). PENALTY on CAR-B.LaFell Offensive Pass Interference 5 yards enforced at CAR 11 - No Play.,7,27,2012 -20121111_DEN@CAR,4,11,58,CAR,DEN,1,15,94,(11:58) (Shotgun) C.Newton pass short right to M.Tolbert to CAR 14 for 8 yards (K.Brooking).,7,27,2012 -20121111_DEN@CAR,4,11,19,CAR,DEN,2,7,86,(11:19) (Shotgun) C.Newton sacked at CAR 2 for -12 yards (R.Ayers).,7,27,2012 -20121111_DEN@CAR,4,10,39,CAR,DEN,3,19,98,(10:39) (Shotgun) C.Newton sacked in End Zone for -2 yards SAFETY (M.Adams).,7,27,2012 -20121111_DEN@CAR,4,10,39,CAR,DEN,,,98,J.Medlock kicks 68 yards from CAR 20 to DEN 12. T.Holliday to DEN 29 for 17 yards (S.Martin).,7,29,2012 -20121111_DEN@CAR,4,10,24,DEN,CAR,1,10,71,(10:24) W.McGahee left tackle to DEN 35 for 6 yards (L.Kuechly).,29,7,2012 -20121111_DEN@CAR,4,9,53,DEN,CAR,2,4,65,(9:53) (No Huddle Shotgun) P.Manning pass incomplete short left to E.Decker.,29,7,2012 -20121111_DEN@CAR,4,9,49,DEN,CAR,3,4,65,(9:49) (No Huddle Shotgun) P.Manning pass incomplete deep right to D.Thomas.,29,7,2012 -20121111_DEN@CAR,4,9,43,DEN,CAR,4,4,65,(9:43) B.Colquitt punts 42 yards to CAR 23 Center-A.Brewer downed by DEN-M.Willis.,29,7,2012 -20121111_DEN@CAR,4,9,31,CAR,DEN,1,10,77,(9:31) (Shotgun) J.Stewart up the middle to CAR 32 for 9 yards (K.Brooking).,7,29,2012 -20121111_DEN@CAR,4,9,31,CAR,DEN,2,1,68,(9:31) (No Huddle Shotgun) PENALTY on CAR Offensive 12 On-field 5 yards enforced at CAR 32 - No Play.,7,29,2012 -20121111_DEN@CAR,4,8,36,CAR,DEN,2,6,73,(8:36) (Shotgun) C.Newton pass short right to B.LaFell pushed ob at CAR 31 for 4 yards (M.Adams).,7,29,2012 -20121111_DEN@CAR,4,8,2,CAR,DEN,3,2,69,(8:02) (Shotgun) C.Newton pass incomplete short right to D.Gettis. PENALTY on DEN-C.Bailey Defensive Holding 5 yards enforced at CAR 31 - No Play.,7,29,2012 -20121111_DEN@CAR,4,7,57,CAR,DEN,1,10,64,(7:57) (Shotgun) C.Newton pass short right to G.Olsen to CAR 49 for 13 yards (M.Adams).,7,29,2012 -20121111_DEN@CAR,4,7,30,CAR,DEN,1,10,51,(7:30) C.Newton pass short right to G.Olsen ran ob at DEN 43 for 8 yards.,7,29,2012 -20121111_DEN@CAR,4,7,15,CAR,DEN,2,2,43,(7:15) (No Huddle Shotgun) M.Tolbert up the middle to DEN 40 for 3 yards (W.Woodyard).,7,29,2012 -20121111_DEN@CAR,4,6,54,CAR,DEN,1,10,40,(6:54) (No Huddle Shotgun) C.Newton pass short right to G.Olsen to DEN 22 for 18 yards (W.Woodyard).,7,29,2012 -20121111_DEN@CAR,4,6,27,CAR,DEN,1,10,22,(6:27) (No Huddle Shotgun) C.Newton pass short left to A.Edwards pushed ob at DEN 13 for 9 yards (R.Moore).,7,29,2012 -20121111_DEN@CAR,4,6,10,CAR,DEN,2,1,13,(6:10) (No Huddle Shotgun) M.Tolbert right guard to DEN 10 for 3 yards (M.Jackson).,7,29,2012 -20121111_DEN@CAR,4,5,27,CAR,DEN,1,10,10,(5:27) (Shotgun) C.Newton pass incomplete short left to B.LaFell. PENALTY on DEN-C.Harris Defensive Pass Interference 5 yards enforced at DEN 10 - No Play.,7,29,2012 -20121111_DEN@CAR,4,5,20,CAR,DEN,1,5,5,(5:20) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,7,29,2012 -20121111_DEN@CAR,4,5,14,CAR,DEN,2,5,5,(5:14) (Shotgun) C.Newton pass short left to G.Olsen for 5 yards TOUCHDOWN.,7,29,2012 -20121111_DEN@CAR,4,5,14,CAR,DEN,,,5,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,29,2012 -20121111_DEN@CAR,4,5,14,CAR,DEN,,,5,J.Medlock kicks onside 19 yards from CAR 35 to DEN 46. D.Thomas (didn't try to advance) to DEN 46 for no gain (J.Phillips).,14,29,2012 -20121111_DEN@CAR,4,5,9,DEN,CAR,1,10,54,(5:09) PENALTY on DEN-R.Clady Offensive Holding 10 yards enforced at DEN 46 - No Play.,29,14,2012 -20121111_DEN@CAR,4,4,39,DEN,CAR,1,20,64,(4:39) W.McGahee left tackle to DEN 45 for 9 yards (C.Johnson). FUMBLES (C.Johnson) and recovers at DEN 49. W.McGahee to DEN 49 for no gain (G.Hardy).,29,14,2012 -20121111_DEN@CAR,4,3,41,DEN,CAR,2,7,51,(3:41) R.Hillman right guard to DEN 49 for no gain (C.Johnson).,29,14,2012 -20121111_DEN@CAR,4,3,36,DEN,CAR,3,7,51,(3:36) (Shotgun) P.Manning pass deep right to D.Thomas to CAR 5 for 46 yards (C.Godfrey).,29,14,2012 -20121111_DEN@CAR,4,3,30,DEN,CAR,1,5,5,(3:30) R.Hillman left end for 5 yards TOUCHDOWN.,29,14,2012 -20121111_DEN@CAR,4,3,30,DEN,CAR,,,5,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,29,14,2012 -20121111_DEN@CAR,4,3,30,DEN,CAR,,,5,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,36,14,2012 -20121111_DEN@CAR,4,3,23,CAR,DEN,1,10,80,(3:23) (Shotgun) C.Newton pass short left to D.Williams pushed ob at CAR 37 for 17 yards (W.Woodyard).,14,36,2012 -20121111_DEN@CAR,4,3,15,CAR,DEN,1,10,63,(3:15) (Shotgun) C.Newton pass incomplete deep left to L.Murphy. PENALTY on DEN-V.Miller Roughing the Passer 15 yards enforced at CAR 37 - No Play.,14,36,2012 -20121111_DEN@CAR,4,3,10,CAR,DEN,1,10,48,(3:10) (Shotgun) C.Newton pass short right to G.Barnidge to DEN 40 for 8 yards (D.Trevathan).,14,36,2012 -20121111_DEN@CAR,4,2,49,CAR,DEN,2,2,40,(2:49) (No Huddle Shotgun) D.Williams up the middle to DEN 36 for 4 yards (J.Bannan).,14,36,2012 -20121111_DEN@CAR,4,2,28,CAR,DEN,1,10,36,(2:28) (No Huddle Shotgun) C.Newton pass incomplete deep left to A.Edwards (O.Bolden).,14,36,2012 -20121111_DEN@CAR,4,2,20,CAR,DEN,2,10,36,(2:20) (Shotgun) C.Newton pass short right to B.LaFell to DEN 37 for -1 yards (C.Harris).,14,36,2012 -20121111_DEN@CAR,4,2,0,CAR,DEN,3,11,37,(2:00) (Shotgun) PENALTY on DEN-R.Ayers Neutral Zone Infraction 5 yards enforced at DEN 37 - No Play.,14,36,2012 -20121111_DEN@CAR,4,2,0,CAR,DEN,3,6,32,(2:00) (Shotgun) C.Newton pass deep middle intended for A.Edwards INTERCEPTED by R.Moore at DEN 11. R.Moore to DEN 34 for 23 yards (B.LaFell).,14,36,2012 -20121111_DEN@CAR,4,1,49,DEN,CAR,1,10,66,(1:49) R.Hillman right end to DEN 32 for -2 yards (C.Godfrey).,36,14,2012 -20121111_DEN@CAR,4,1,49,DEN,CAR,2,12,68,(1:49) P.Manning kneels to DEN 31 for -1 yards.,36,14,2012 -20121111_DEN@CAR,4,0,34,DEN,CAR,3,13,69,(:34) P.Manning kneels to DEN 30 for -1 yards.,36,14,2012 -20121111_DEN@CAR,4,0,34,DEN,CAR,,,69,                      ,36,14,2012 -20121111_NYG@CIN,1,0,0,NYG,CIN,,,69,L.Tynes kicks 68 yards from NYG 35 to CIN -3. B.Tate to CIN 21 for 24 yards (J.Tryon).,0,0,2012 -20121111_NYG@CIN,1,59,55,CIN,NYG,1,10,79,(14:55) (Shotgun) A.Dalton pass short right to A.Green pushed ob at CIN 28 for 7 yards (C.Webster).,0,0,2012 -20121111_NYG@CIN,1,59,24,CIN,NYG,2,3,72,(14:24) B.Green-Ellis left end to CIN 33 for 5 yards (L.Joseph; P.Amukamara).,0,0,2012 -20121111_NYG@CIN,1,58,46,CIN,NYG,1,10,67,(13:46) (Shotgun) A.Dalton pass short right to A.Green to CIN 40 for 7 yards (P.Amukamara).,0,0,2012 -20121111_NYG@CIN,1,58,21,CIN,NYG,2,3,60,(13:21) B.Green-Ellis up the middle to CIN 44 for 4 yards (J.Tuck; A.Rolle).,0,0,2012 -20121111_NYG@CIN,1,57,43,CIN,NYG,1,10,56,(12:43) A.Dalton pass deep right to A.Green for 56 yards TOUCHDOWN.,0,0,2012 -20121111_NYG@CIN,1,57,43,CIN,NYG,,,56,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121111_NYG@CIN,1,57,43,CIN,NYG,,,56,M.Nugent kicks 66 yards from CIN 35 to NYG -1. D.Wilson to NYG 20 for 21 yards (M.Sanu; E.Lamur).,7,0,2012 -20121111_NYG@CIN,1,57,27,NYG,CIN,1,10,80,(12:27) (Shotgun) E.Manning pass short middle to A.Brown to NYG 25 for 5 yards (V.Burfict; C.Crocker).,0,7,2012 -20121111_NYG@CIN,1,56,56,NYG,CIN,2,5,75,(11:56) E.Manning pass incomplete short right to D.Hixon.,0,7,2012 -20121111_NYG@CIN,1,56,49,NYG,CIN,3,5,75,(11:49) (Shotgun) E.Manning pass incomplete short middle to H.Nicks (A.Jones).,0,7,2012 -20121111_NYG@CIN,1,56,42,NYG,CIN,4,5,75,(11:42) S.Weatherford punts 61 yards to CIN 14 Center-Z.DeOssie out of bounds. PENALTY on NYG-J.Tryon Player Out of Bounds on Punt 5 yards enforced at NYG 25 - No Play.,0,7,2012 -20121111_NYG@CIN,1,56,34,NYG,CIN,4,10,80,(11:34) S.Weatherford punts 59 yards to CIN 21 Center-Z.DeOssie. A.Jones to NYG 11 for 68 yards (S.Weatherford).,0,7,2012 -20121111_NYG@CIN,1,56,11,CIN,NYG,1,10,11,(11:11) A.Dalton pass incomplete short right to A.Green (C.Webster).,7,0,2012 -20121111_NYG@CIN,1,56,5,CIN,NYG,2,10,11,(11:05) A.Dalton pass incomplete short right to A.Green (C.Webster).,7,0,2012 -20121111_NYG@CIN,1,55,59,CIN,NYG,3,10,11,(10:59) (Shotgun) A.Dalton pass short right to A.Hawkins for 11 yards TOUCHDOWN.,7,0,2012 -20121111_NYG@CIN,1,55,59,CIN,NYG,,,11,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,0,2012 -20121111_NYG@CIN,1,55,59,CIN,NYG,,,11,M.Nugent kicks 53 yards from CIN 35 to NYG 12. D.Wilson MUFFS catch and recovers at NYG 12. D.Wilson to NYG 12 for no gain (M.Sanu).,14,0,2012 -20121111_NYG@CIN,1,55,51,NYG,CIN,1,10,88,(10:51) (Shotgun) E.Manning pass short middle to D.Hixon to NYG 20 for 8 yards (R.Maualuga; A.Jones). PENALTY on CIN-R.Maualuga Personal Foul 15 yards enforced at NYG 20.,0,14,2012 -20121111_NYG@CIN,1,55,29,NYG,CIN,1,10,65,(10:29) A.Bradshaw left tackle to NYG 38 for 3 yards (C.Dunlap).,0,14,2012 -20121111_NYG@CIN,1,54,54,NYG,CIN,2,7,62,(9:54) A.Bradshaw left guard to NYG 41 for 3 yards (C.Dunlap).,0,14,2012 -20121111_NYG@CIN,1,54,14,NYG,CIN,3,4,59,(9:14) (Shotgun) E.Manning sacked at NYG 35 for -6 yards (sack split by C.Dunlap and R.Geathers).,0,14,2012 -20121111_NYG@CIN,1,53,45,NYG,CIN,4,10,65,(8:45) S.Weatherford punts 45 yards to CIN 20 Center-Z.DeOssie. B.Tate to CIN 27 for 7 yards (C.Blackburn). FUMBLES (C.Blackburn) RECOVERED by NYG-W.Hill at CIN 27. W.Hill to CIN 27 for no gain (B.Tate).,0,14,2012 -20121111_NYG@CIN,1,53,34,NYG,CIN,1,10,27,(8:34) (Shotgun) A.Bradshaw left guard to CIN 22 for 5 yards (G.Atkins).,0,14,2012 -20121111_NYG@CIN,1,53,2,NYG,CIN,2,5,22,(8:02) E.Manning pass short left to H.Nicks to CIN 12 for 10 yards (T.Mays).,0,14,2012 -20121111_NYG@CIN,1,52,34,NYG,CIN,1,10,12,(7:34) E.Manning pass short left to H.Nicks to CIN 9 for 3 yards (A.Jones).,0,14,2012 -20121111_NYG@CIN,1,51,53,NYG,CIN,2,7,9,(6:53) (Shotgun) A.Bradshaw right tackle to CIN 6 for 3 yards (W.Gilberry; R.Maualuga).,0,14,2012 -20121111_NYG@CIN,1,51,16,NYG,CIN,3,4,6,(6:16) (Shotgun) E.Manning pass short middle to A.Bradshaw to CIN 5 for 1 yard (N.Clements).,0,14,2012 -20121111_NYG@CIN,1,50,38,NYG,CIN,4,3,5,(5:38) L.Tynes 23 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,14,2012 -20121111_NYG@CIN,1,50,38,NYG,CIN,,,5,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,3,14,2012 -20121111_NYG@CIN,1,50,34,CIN,NYG,1,10,80,(5:34) A.Dalton pass short right to J.Gresham pushed ob at CIN 22 for 2 yards (C.Webster) [L.Joseph].,14,3,2012 -20121111_NYG@CIN,1,50,13,CIN,NYG,2,8,78,(5:13) A.Dalton pass short middle to O.Charles to CIN 41 for 19 yards (M.Boley).,14,3,2012 -20121111_NYG@CIN,1,49,34,CIN,NYG,1,10,59,(4:34) B.Green-Ellis left guard to CIN 45 for 4 yards (J.Pierre-Paul).,14,3,2012 -20121111_NYG@CIN,1,49,1,CIN,NYG,2,6,55,(4:01) B.Green-Ellis up the middle to CIN 49 for 4 yards (C.Blackburn; P.Amukamara).,14,3,2012 -20121111_NYG@CIN,1,48,14,CIN,NYG,3,2,51,(3:14) (Shotgun) M.Sanu up the middle to NYG 48 for 3 yards (C.Blackburn; R.Bernard).,14,3,2012 -20121111_NYG@CIN,1,47,40,CIN,NYG,1,10,48,(2:40) B.Green-Ellis up the middle to NYG 48 for no gain (O.Umenyiora; A.Rolle).,14,3,2012 -20121111_NYG@CIN,1,47,0,CIN,NYG,2,10,48,(2:00) (Shotgun) A.Dalton pass short right to A.Green pushed ob at NYG 38 for 10 yards (A.Rolle).,14,3,2012 -20121111_NYG@CIN,1,46,32,CIN,NYG,1,10,38,(1:32) A.Dalton pass short middle to B.Green-Ellis to NYG 36 for 2 yards (M.Boley; S.Paysinger).,14,3,2012 -20121111_NYG@CIN,1,45,44,CIN,NYG,2,8,36,(:44) (Shotgun) A.Dalton pass short right to A.Hawkins to NYG 30 for 6 yards (C.Webster).,14,3,2012 -20121111_NYG@CIN,2,45,0,CIN,NYG,3,2,30,(15:00) A.Dalton pass short left to A.Hawkins to NYG 31 for -1 yards (J.Hosley; P.Amukamara).,14,3,2012 -20121111_NYG@CIN,2,44,25,CIN,NYG,4,3,31,(14:25) A.Dalton pass incomplete short right to J.Gresham (S.Brown).,14,3,2012 -20121111_NYG@CIN,2,44,19,NYG,CIN,1,10,69,(14:19) D.Wilson left guard to NYG 32 for 1 yard (M.Lawson).,3,14,2012 -20121111_NYG@CIN,2,43,38,NYG,CIN,2,9,68,(13:38) E.Manning pass short middle to H.Nicks to NYG 37 for 5 yards (R.Maualuga; V.Burfict).,3,14,2012 -20121111_NYG@CIN,2,42,54,NYG,CIN,3,4,63,(12:54) (Shotgun) E.Manning scrambles up the middle to NYG 38 for 1 yard (C.Dunlap).,3,14,2012 -20121111_NYG@CIN,2,42,17,NYG,CIN,4,3,62,(12:17) S.Weatherford punts 41 yards to CIN 21 Center-Z.DeOssie. A.Jones to CIN 30 for 9 yards (M.Kiwanuka).,3,14,2012 -20121111_NYG@CIN,2,42,3,CIN,NYG,1,10,70,(12:03) C.Peerman right tackle to CIN 39 for 9 yards (A.Rolle; S.Brown).,14,3,2012 -20121111_NYG@CIN,2,41,31,CIN,NYG,2,1,61,(11:31) C.Peerman right guard to CIN 41 for 2 yards (O.Umenyiora).,14,3,2012 -20121111_NYG@CIN,2,40,53,CIN,NYG,1,10,59,(10:53) (Shotgun) A.Dalton pass incomplete short left to A.Green (M.Kuhn). {Knocked down at the line of scrimmage},14,3,2012 -20121111_NYG@CIN,2,40,49,CIN,NYG,2,10,59,(10:49) (Shotgun) C.Peerman up the middle to CIN 43 for 2 yards (M.Kiwanuka).,14,3,2012 -20121111_NYG@CIN,2,40,12,CIN,NYG,3,8,57,(10:12) (Shotgun) A.Dalton pass short left to M.Sanu to NYG 45 for 12 yards (P.Amukamara).,14,3,2012 -20121111_NYG@CIN,2,39,36,CIN,NYG,1,10,45,(9:36) (Shotgun) B.Leonard left end to NYG 45 for no gain (P.Amukamara).,14,3,2012 -20121111_NYG@CIN,2,38,59,CIN,NYG,2,10,45,(8:59) (Shotgun) A.Dalton pass short right to A.Green to NYG 36 for 9 yards (O.Umenyiora).,14,3,2012 -20121111_NYG@CIN,2,38,22,CIN,NYG,3,1,36,(8:22) B.Leonard left tackle to NYG 37 for -1 yards (M.Boley).,14,3,2012 -20121111_NYG@CIN,2,37,44,CIN,NYG,4,2,37,(7:44) (Shotgun) A.Dalton pass short middle to M.Sanu to NYG 22 for 15 yards (P.Amukamara).,14,3,2012 -20121111_NYG@CIN,2,37,18,CIN,NYG,1,10,22,(7:18) B.Leonard right guard to NYG 20 for 2 yards (C.Blackburn; M.Boley).,14,3,2012 -20121111_NYG@CIN,2,36,36,CIN,NYG,2,8,20,(6:36) A.Dalton pass short left to C.Peerman to NYG 11 for 9 yards (C.Blackburn; C.Canty).,14,3,2012 -20121111_NYG@CIN,2,35,56,CIN,NYG,1,10,11,(5:56) C.Peerman left end to NYG 7 for 4 yards (S.Paysinger; J.Pierre-Paul).,14,3,2012 -20121111_NYG@CIN,2,35,13,CIN,NYG,2,6,7,(5:13) (Shotgun) A.Dalton pass short right to A.Green to NYG 10 for -3 yards (P.Amukamara).,14,3,2012 -20121111_NYG@CIN,2,34,31,CIN,NYG,3,9,10,(4:31) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins.,14,3,2012 -20121111_NYG@CIN,2,34,22,CIN,NYG,4,9,10,(4:22) M.Nugent 28 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,14,3,2012 -20121111_NYG@CIN,2,34,22,CIN,NYG,,,10,M.Nugent kicks 70 yards from CIN 35 to NYG -5. D.Wilson to NYG 18 for 23 yards (E.Lamur).,17,3,2012 -20121111_NYG@CIN,2,34,12,NYG,CIN,1,10,82,(4:12) (Shotgun) E.Manning pass incomplete short left to B.Pascoe.,3,17,2012 -20121111_NYG@CIN,2,34,7,NYG,CIN,2,10,82,(4:07) E.Manning pass short middle to H.Nicks to NYG 27 for 9 yards (T.Newman).,3,17,2012 -20121111_NYG@CIN,2,33,25,NYG,CIN,3,1,73,(3:25) (Shotgun) E.Manning pass short right to H.Nicks to NYG 38 for 11 yards (T.Newman).,3,17,2012 -20121111_NYG@CIN,2,32,46,NYG,CIN,1,10,62,(2:46) (Shotgun) E.Manning pass short left to V.Cruz to NYG 46 for 8 yards (A.Jones).,3,17,2012 -20121111_NYG@CIN,2,32,4,NYG,CIN,2,2,54,(2:04) (Shotgun) E.Manning pass short left to H.Nicks to CIN 45 for 9 yards (A.Jones).,3,17,2012 -20121111_NYG@CIN,2,31,59,NYG,CIN,1,10,45,(1:59) (Shotgun) E.Manning pass short middle to R.Randle to CIN 40 for 5 yards (V.Burfict; T.Newman).,3,17,2012 -20121111_NYG@CIN,2,31,30,NYG,CIN,2,5,40,(1:30) (Shotgun) E.Manning pass short right to R.Randle to CIN 41 for -1 yards (L.Hall).,3,17,2012 -20121111_NYG@CIN,2,31,24,NYG,CIN,3,6,41,(1:24) (Shotgun) E.Manning pass incomplete deep left to H.Nicks (A.Jones).,3,17,2012 -20121111_NYG@CIN,2,31,17,NYG,CIN,4,6,41,(1:17) (Shotgun) E.Manning pass short right to H.Nicks to CIN 25 for 16 yards (T.Newman).,3,17,2012 -20121111_NYG@CIN,2,31,8,NYG,CIN,1,10,25,(1:08) (Shotgun) E.Manning pass short right to M.Bennett to CIN 14 for 11 yards (D.Skuta).,3,17,2012 -20121111_NYG@CIN,2,30,48,NYG,CIN,1,10,14,(:48) (Shotgun) E.Manning sacked at CIN 20 for -6 yards (C.Dunlap G.Atkins).,3,17,2012 -20121111_NYG@CIN,2,30,41,NYG,CIN,2,16,20,(:41) (Shotgun) E.Manning pass short right to A.Brown to CIN 13 for 7 yards (V.Burfict).,3,17,2012 -20121111_NYG@CIN,2,30,21,NYG,CIN,3,9,13,(:21) (Shotgun) E.Manning pass incomplete short middle to M.Bennett.,3,17,2012 -20121111_NYG@CIN,2,30,15,NYG,CIN,4,9,13,(:15) L.Tynes 31 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,17,2012 -20121111_NYG@CIN,2,30,15,NYG,CIN,,,13,L.Tynes kicks 61 yards from NYG 35 to CIN 4. B.Tate MUFFS catch recovered by CIN-C.Peerman at CIN 10. C.Peerman (didn't try to advance) to CIN 10 for no gain (J.Tryon).,6,17,2012 -20121111_NYG@CIN,2,30,9,CIN,NYG,1,10,90,(:09) A.Dalton kneels to CIN 9 for -1 yards.,17,6,2012 -20121111_NYG@CIN,3,30,0,CIN,NYG,,,90,M.Nugent kicks 68 yards from CIN 35 to NYG -3. D.Wilson pushed ob at NYG 26 for 29 yards (L.Hall).,17,6,2012 -20121111_NYG@CIN,3,29,53,NYG,CIN,1,10,74,(14:53) A.Brown up the middle to NYG 26 for no gain (V.Burfict; P.Sims).,6,17,2012 -20121111_NYG@CIN,3,29,16,NYG,CIN,2,10,74,(14:16) E.Manning sacked at NYG 20 for -6 yards (sack split by R.Geathers and D.Peko).,6,17,2012 -20121111_NYG@CIN,3,28,57,NYG,CIN,3,16,80,(13:57) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 32 for 12 yards (R.Maualuga; C.Crocker).,6,17,2012 -20121111_NYG@CIN,3,28,21,NYG,CIN,4,4,68,(13:21) S.Weatherford punts 68 yards to end zone Center-Z.DeOssie Touchback.,6,17,2012 -20121111_NYG@CIN,3,28,11,CIN,NYG,1,10,80,(13:11) B.Green-Ellis right end pushed ob at CIN 25 for 5 yards (S.Brown). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at CIN 20 - No Play.,17,6,2012 -20121111_NYG@CIN,3,27,52,CIN,NYG,1,20,90,(12:52) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins.,17,6,2012 -20121111_NYG@CIN,3,27,48,CIN,NYG,2,20,90,(12:48) (Shotgun) A.Dalton pass incomplete short left to M.Sanu.,17,6,2012 -20121111_NYG@CIN,3,27,43,CIN,NYG,3,20,90,(12:43) (Shotgun) B.Leonard right guard to CIN 13 for 3 yards (M.Kiwanuka; J.Pierre-Paul).,17,6,2012 -20121111_NYG@CIN,3,27,5,CIN,NYG,4,17,87,(12:05) K.Huber punts 54 yards to NYG 33 Center-C.Harris. R.Randle to NYG 47 for 14 yards (T.Mays).,17,6,2012 -20121111_NYG@CIN,3,26,52,NYG,CIN,1,10,53,(11:52) (Shotgun) E.Manning pass short middle to H.Nicks to CIN 40 for 13 yards (C.Crocker).,6,17,2012 -20121111_NYG@CIN,3,26,19,NYG,CIN,1,10,40,(11:19) (Shotgun) A.Bradshaw right guard to CIN 31 for 9 yards (N.Clements; C.Crocker).,6,17,2012 -20121111_NYG@CIN,3,25,47,NYG,CIN,2,1,31,(10:47) A.Bradshaw right guard to CIN 27 for 4 yards (W.Gilberry; R.Maualuga).,6,17,2012 -20121111_NYG@CIN,3,25,6,NYG,CIN,1,10,27,(10:06) (Shotgun) A.Bradshaw left end to CIN 16 for 11 yards (A.Jones). FUMBLES (A.Jones) RECOVERED by CIN-C.Dunlap at CIN 14. C.Dunlap to CIN 14 for no gain (A.Bradshaw).,6,17,2012 -20121111_NYG@CIN,3,24,56,CIN,NYG,1,10,86,(9:56) B.Green-Ellis left guard to CIN 21 for 7 yards (M.Kiwanuka).,17,6,2012 -20121111_NYG@CIN,3,24,25,CIN,NYG,2,3,79,(9:25) (Shotgun) A.Dalton pass short middle to M.Sanu to CIN 31 for 10 yards (P.Amukamara).,17,6,2012 -20121111_NYG@CIN,3,23,56,CIN,NYG,1,10,69,(8:56) B.Green-Ellis right end to CIN 31 for no gain (C.Blackburn).,17,6,2012 -20121111_NYG@CIN,3,23,19,CIN,NYG,2,10,69,(8:19) A.Dalton pass short middle to B.Green-Ellis to CIN 37 for 6 yards (S.Paysinger; M.Boley).,17,6,2012 -20121111_NYG@CIN,3,22,36,CIN,NYG,3,4,63,(7:36) (Shotgun) A.Dalton pass incomplete deep right to B.Tate. {Pass intended for Sanu tipped at the line of scrimmage by Canty},17,6,2012 -20121111_NYG@CIN,3,22,30,CIN,NYG,4,4,63,(7:30) K.Huber punts 45 yards to NYG 18 Center-C.Harris fair catch by R.Randle.,17,6,2012 -20121111_NYG@CIN,3,22,22,NYG,CIN,1,10,82,(7:22) (Shotgun) E.Manning pass short middle intended for R.Barden INTERCEPTED by P.Sims [G.Atkins] at NYG 15. P.Sims to NYG 12 for 3 yards (K.Boothe; R.Barden). {M.Johnson hit Manning's arm as he attempted to pass},6,17,2012 -20121111_NYG@CIN,3,22,12,CIN,NYG,1,10,12,(7:12) B.Green-Ellis left guard to NYG 10 for 2 yards (S.Paysinger; O.Umenyiora).,17,6,2012 -20121111_NYG@CIN,3,21,49,CIN,NYG,2,8,10,(6:49) A.Dalton pass incomplete short left to M.Sanu.,17,6,2012 -20121111_NYG@CIN,3,21,42,CIN,NYG,3,8,10,(6:42) (Shotgun) A.Dalton pass short middle to J.Gresham for 10 yards TOUCHDOWN.,17,6,2012 -20121111_NYG@CIN,3,21,42,CIN,NYG,,,10,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,17,6,2012 -20121111_NYG@CIN,3,21,42,CIN,NYG,,,10,M.Nugent kicks 63 yards from CIN 35 to NYG 2. D.Wilson to NYG 18 for 16 yards (J.Miles; E.Lamur).,24,6,2012 -20121111_NYG@CIN,3,21,29,NYG,CIN,1,10,82,(6:29) (Shotgun) A.Bradshaw left guard to NYG 23 for 5 yards (P.Sims; V.Burfict).,6,24,2012 -20121111_NYG@CIN,3,20,57,NYG,CIN,2,5,77,(5:57) (Shotgun) E.Manning pass incomplete short middle to A.Bradshaw (D.Peko). {Knocked down at the line of scrimmmage},6,24,2012 -20121111_NYG@CIN,3,20,51,NYG,CIN,3,5,77,(5:51) (Shotgun) E.Manning pass short left intended for M.Bennett INTERCEPTED by N.Clements [C.Dunlap] at NYG 37. N.Clements to NYG 16 for 21 yards (W.Beatty; K.Boothe).,6,24,2012 -20121111_NYG@CIN,3,20,41,CIN,NYG,1,10,16,(5:41) B.Green-Ellis left guard to NYG 14 for 2 yards (C.Blackburn).,24,6,2012 -20121111_NYG@CIN,3,20,10,CIN,NYG,2,8,14,(5:10) B.Green-Ellis left guard to NYG 10 for 4 yards (A.Rolle).,24,6,2012 -20121111_NYG@CIN,3,19,26,CIN,NYG,3,4,10,(4:26) (Shotgun) A.Dalton pass short middle to M.Sanu for 10 yards TOUCHDOWN.,24,6,2012 -20121111_NYG@CIN,3,19,26,CIN,NYG,,,10,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,24,6,2012 -20121111_NYG@CIN,3,19,26,CIN,NYG,,,10,M.Nugent kicks 61 yards from CIN 35 to NYG 4. D.Wilson to NYG 22 for 18 yards (T.Newman).,31,6,2012 -20121111_NYG@CIN,3,19,13,NYG,CIN,1,10,78,(4:13) (Shotgun) E.Manning pass incomplete short right to M.Bennett.,6,31,2012 -20121111_NYG@CIN,3,19,7,NYG,CIN,2,10,78,(4:07) (Shotgun) A.Bradshaw right guard to NYG 30 for 8 yards (R.Maualuga; M.Johnson).,6,31,2012 -20121111_NYG@CIN,3,18,26,NYG,CIN,3,2,70,(3:26) (Shotgun) A.Bradshaw right end to NYG 36 for 6 yards (M.Johnson; C.Crocker).,6,31,2012 -20121111_NYG@CIN,3,17,48,NYG,CIN,1,10,64,(2:48) (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 37 for 1 yard (R.Maualuga). FUMBLES (R.Maualuga) RECOVERED by CIN-G.Atkins at NYG 38. G.Atkins to NYG 43 for -5 yards (S.Locklear). The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 37 for 1 yard (R.Maualuga).,6,31,2012 -20121111_NYG@CIN,3,17,34,NYG,CIN,2,9,63,(2:34) (Shotgun) E.Manning pass short right to H.Nicks to NYG 36 for -1 yards (T.Newman).,6,31,2012 -20121111_NYG@CIN,3,16,28,NYG,CIN,3,10,64,(1:28) (Shotgun) E.Manning pass short left to V.Cruz to NYG 46 for 10 yards (L.Hall).,6,31,2012 -20121111_NYG@CIN,3,15,54,NYG,CIN,1,10,54,(:54) (Shotgun) E.Manning pass incomplete short right to M.Bennett.,6,31,2012 -20121111_NYG@CIN,3,15,49,NYG,CIN,2,10,54,(:49) (Shotgun) E.Manning pass short middle to M.Bennett to 50 for 4 yards (R.Maualuga).,6,31,2012 -20121111_NYG@CIN,3,15,8,NYG,CIN,3,6,50,(:08) (Shotgun) E.Manning pass short left to R.Barden ran ob at CIN 38 for 12 yards.,6,31,2012 -20121111_NYG@CIN,4,15,0,NYG,CIN,1,10,38,(15:00) (Shotgun) E.Manning pass incomplete deep middle to V.Cruz.,6,31,2012 -20121111_NYG@CIN,4,14,54,NYG,CIN,2,10,38,(14:54) (Shotgun) E.Manning pass short middle to A.Brown to CIN 32 for 6 yards (R.Maualuga; V.Burfict).,6,31,2012 -20121111_NYG@CIN,4,14,24,NYG,CIN,3,4,32,(14:24) (Shotgun) E.Manning pass incomplete short left to M.Bennett.,6,31,2012 -20121111_NYG@CIN,4,14,19,NYG,CIN,4,4,32,(14:19) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,6,31,2012 -20121111_NYG@CIN,4,14,14,CIN,NYG,1,10,68,(14:14) C.Peerman left tackle to CIN 37 for 5 yards (C.Blackburn; A.Rolle).,31,6,2012 -20121111_NYG@CIN,4,13,40,CIN,NYG,2,5,63,(13:40) C.Peerman left guard to CIN 36 for -1 yards (J.Pierre-Paul).,31,6,2012 -20121111_NYG@CIN,4,13,3,CIN,NYG,3,6,64,(13:03) (Shotgun) A.Dalton pass short middle to A.Green to CIN 35 for -1 yards (J.Hosley).,31,6,2012 -20121111_NYG@CIN,4,12,20,CIN,NYG,4,7,65,(12:20) K.Huber punts 57 yards to NYG 8 Center-C.Harris. R.Randle to NYG 22 for 14 yards (C.Harris).,31,6,2012 -20121111_NYG@CIN,4,12,7,NYG,CIN,1,10,78,(12:07) (Shotgun) E.Manning pass short right to A.Brown pushed ob at NYG 28 for 6 yards (E.Lamur).,6,31,2012 -20121111_NYG@CIN,4,11,45,NYG,CIN,2,4,72,(11:45) (Shotgun) E.Manning pass incomplete short left to T.Beckum [W.Gilberry]. PENALTY on CIN-R.Maualuga Illegal Contact 5 yards enforced at NYG 28 - No Play.,6,31,2012 -20121111_NYG@CIN,4,11,39,NYG,CIN,1,10,67,(11:39) (Shotgun) A.Brown left tackle pushed ob at 50 for 17 yards (N.Clements).,6,31,2012 -20121111_NYG@CIN,4,11,13,NYG,CIN,1,10,50,(11:13) (Shotgun) E.Manning pass incomplete short middle to T.Beckum (R.Maualuga).,6,31,2012 -20121111_NYG@CIN,4,11,7,NYG,CIN,2,10,50,(11:07) (Shotgun) E.Manning pass incomplete short left to A.Brown. PENALTY on CIN-G.Atkins Defensive Holding 5 yards enforced at 50 - No Play.,6,31,2012 -20121111_NYG@CIN,4,11,2,NYG,CIN,1,10,45,(11:02) (Shotgun) E.Manning pass incomplete deep right to H.Nicks.,6,31,2012 -20121111_NYG@CIN,4,10,55,NYG,CIN,2,10,45,(10:55) (Shotgun) E.Manning sacked at NYG 49 for -6 yards (W.Gilberry). FUMBLES (W.Gilberry) RECOVERED by CIN-W.Gilberry at NYG 47. W.Gilberry to NYG 41 for 6 yards (C.Snee; K.Boothe). {Sack credited for 8 yards due to where fumble was recovered},6,31,2012 -20121111_NYG@CIN,4,10,45,CIN,NYG,1,10,41,(10:45) B.Green-Ellis left tackle to NYG 40 for 1 yard (M.Boley). NYG-M.Kuhn was injured during the play.,31,6,2012 -20121111_NYG@CIN,4,10,4,CIN,NYG,2,9,40,(10:04) B.Green-Ellis right end to NYG 37 for 3 yards (P.Amukamara).,31,6,2012 -20121111_NYG@CIN,4,9,26,CIN,NYG,3,6,37,(9:26) A.Dalton pass short right to J.Gresham to NYG 34 for 3 yards (J.Pierre-Paul).,31,6,2012 -20121111_NYG@CIN,4,8,37,CIN,NYG,4,3,34,(8:37) (Shotgun) PENALTY on CIN Delay of Game 5 yards enforced at NYG 34 - No Play.,31,6,2012 -20121111_NYG@CIN,4,8,19,CIN,NYG,4,8,39,(8:19) K.Huber punts 37 yards to NYG 2 Center-C.Harris downed by CIN-A.Hawkins.,31,6,2012 -20121111_NYG@CIN,4,8,8,NYG,CIN,1,10,98,(8:08) (Shotgun) E.Manning pass short right to R.Barden to NYG 12 for 10 yards (T.Newman).,6,31,2012 -20121111_NYG@CIN,4,7,35,NYG,CIN,1,10,88,(7:35) (Shotgun) A.Brown left guard to NYG 21 for 9 yards (V.Burfict).,6,31,2012 -20121111_NYG@CIN,4,7,9,NYG,CIN,2,1,79,(7:09) A.Brown left guard to NYG 27 for 6 yards (R.Maualuga; M.Johnson).,6,31,2012 -20121111_NYG@CIN,4,6,38,NYG,CIN,1,10,73,(6:38) (Shotgun) E.Manning pass incomplete short left to H.Nicks (A.Jones). CIN-A.Jones was injured during the play.,6,31,2012 -20121111_NYG@CIN,4,6,32,NYG,CIN,2,10,73,(6:32) (Shotgun) E.Manning pass short right to A.Brown pushed ob at NYG 32 for 5 yards (T.Newman).,6,31,2012 -20121111_NYG@CIN,4,6,8,NYG,CIN,3,5,68,(6:08) (Shotgun) E.Manning pass short left to V.Cruz to NYG 40 for 8 yards (L.Hall).,6,31,2012 -20121111_NYG@CIN,4,5,33,NYG,CIN,1,10,60,(5:33) (Shotgun) E.Manning pass short middle to M.Bennett to NYG 49 for 9 yards (R.Maualuga; E.Lamur).,6,31,2012 -20121111_NYG@CIN,4,4,58,NYG,CIN,2,1,51,(4:58) (Shotgun) A.Brown left guard to CIN 49 for 2 yards (R.Maualuga).,6,31,2012 -20121111_NYG@CIN,4,4,18,NYG,CIN,1,10,49,(4:18) (Shotgun) A.Brown up the middle pushed ob at CIN 20 for 29 yards (D.Skuta).,6,31,2012 -20121111_NYG@CIN,4,4,9,NYG,CIN,1,10,20,(4:09) (Shotgun) H.Hynoski right tackle to CIN 15 for 5 yards (R.Geathers; D.Peko).,6,31,2012 -20121111_NYG@CIN,4,3,40,NYG,CIN,2,5,15,(3:40) (Shotgun) E.Manning pass short middle to M.Bennett to CIN 2 for 13 yards (E.Lamur).,6,31,2012 -20121111_NYG@CIN,4,2,56,NYG,CIN,1,2,2,(2:56) E.Manning pass incomplete short right to A.Brown [G.Atkins].,6,31,2012 -20121111_NYG@CIN,4,2,50,NYG,CIN,2,2,2,(2:50) A.Brown left guard for 2 yards TOUCHDOWN.,6,31,2012 -20121111_NYG@CIN,4,2,50,NYG,CIN,,,2,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,6,31,2012 -20121111_NYG@CIN,4,2,50,NYG,CIN,,,2,L.Tynes kicks 68 yards from NYG 35 to CIN -3. B.Tate Touchback.,13,31,2012 -20121111_NYG@CIN,4,2,46,CIN,NYG,1,10,80,(2:46) B.Green-Ellis left guard to CIN 26 for 6 yards (S.Brown; J.Tuck).,31,13,2012 -20121111_NYG@CIN,4,2,0,CIN,NYG,2,4,74,(2:00) B.Green-Ellis left guard to CIN 29 for 3 yards (L.Joseph).,31,13,2012 -20121111_NYG@CIN,4,1,17,CIN,NYG,3,1,71,(1:17) B.Green-Ellis right guard to CIN 34 for 5 yards (C.Webster; M.Boley).,31,13,2012 -20121111_NYG@CIN,4,0,35,CIN,NYG,1,10,66,(:35) A.Dalton kneels to CIN 33 for -1 yards.,31,13,2012 -20121111_NYG@CIN,4,0,35,CIN,NYG,,,66,                      ,31,13,2012 -20121111_TEN@MIA,1,0,0,TEN,MIA,,,66,R.Bironas kicks 70 yards from TEN 35 to MIA -5. M.Thigpen to MIA 24 for 29 yards (P.Bailey).,0,0,2012 -20121111_TEN@MIA,1,59,54,MIA,TEN,1,10,76,(14:54) R.Tannehill pass short right to R.Bush to MIA 32 for 8 yards (C.McCarthy).,0,0,2012 -20121111_TEN@MIA,1,59,10,MIA,TEN,2,2,68,(14:10) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 35 for 3 yards (J.McCourty).,0,0,2012 -20121111_TEN@MIA,1,58,34,MIA,TEN,1,10,65,(13:34) R.Bush right guard to MIA 41 for 6 yards (C.Sensabaugh).,0,0,2012 -20121111_TEN@MIA,1,58,0,MIA,TEN,2,4,59,(13:00) (Shotgun) R.Bush right tackle to MIA 44 for 3 yards (Z.Brown).,0,0,2012 -20121111_TEN@MIA,1,57,30,MIA,TEN,3,1,56,(12:30) J.Lane right guard to MIA 44 for no gain (S.Marks).,0,0,2012 -20121111_TEN@MIA,1,56,49,MIA,TEN,4,1,56,(11:49) (Punt formation) B.Fields punts 48 yards to TEN 8 Center-J.Denney. D.Reynaud to TEN 9 for 1 yard (M.Moore).,0,0,2012 -20121111_TEN@MIA,1,56,39,TEN,MIA,1,10,91,(11:39) C.Johnson left guard to TEN 15 for 6 yards (K.Dansby).,0,0,2012 -20121111_TEN@MIA,1,56,4,TEN,MIA,2,4,85,(11:04) J.Locker pass incomplete short right to K.Britt.,0,0,2012 -20121111_TEN@MIA,1,55,56,TEN,MIA,3,4,85,(10:56) (Shotgun) J.Locker pass short right to N.Washington to TEN 20 for 5 yards (S.Smith).,0,0,2012 -20121111_TEN@MIA,1,55,24,TEN,MIA,1,10,80,(10:24) (Shotgun) J.Locker pass incomplete deep right to D.Reynaud (K.Misi).,0,0,2012 -20121111_TEN@MIA,1,55,17,TEN,MIA,2,10,80,(10:17) J.Locker pass incomplete short left to Q.Johnson.,0,0,2012 -20121111_TEN@MIA,1,55,12,TEN,MIA,3,10,80,(10:12) (Shotgun) J.Locker sacked at TEN 14 for -6 yards (J.Wilson).,0,0,2012 -20121111_TEN@MIA,1,54,40,TEN,MIA,4,16,86,(9:40) (Punt formation) B.Kern punts 71 yards to MIA 15 Center-B.Brinkley out of bounds.,0,0,2012 -20121111_TEN@MIA,1,54,27,MIA,TEN,1,10,85,(9:27) R.Tannehill pass incomplete deep left to J.Gaffney.,0,0,2012 -20121111_TEN@MIA,1,54,20,MIA,TEN,2,10,85,(9:20) R.Bush right tackle to MIA 12 for -3 yards (D.Morgan).,0,0,2012 -20121111_TEN@MIA,1,53,46,MIA,TEN,3,13,88,(8:46) (Shotgun) R.Bush right tackle to MIA 27 for 15 yards (J.McCourty). FUMBLES (J.McCourty) RECOVERED by TEN-J.McCourty at MIA 28. J.McCourty to MIA 28 for no gain (R.Bush).,0,0,2012 -20121111_TEN@MIA,1,53,23,TEN,MIA,1,10,28,(8:23) C.Johnson right guard to MIA 7 for 21 yards (C.Clemons).,0,0,2012 -20121111_TEN@MIA,1,52,44,TEN,MIA,1,7,7,(7:44) (Shotgun) J.Locker pass incomplete short right to K.Wright.,0,0,2012 -20121111_TEN@MIA,1,52,37,TEN,MIA,2,7,7,(7:37) C.Johnson right tackle to MIA 9 for -2 yards (K.Misi).,0,0,2012 -20121111_TEN@MIA,1,51,57,TEN,MIA,3,9,9,(6:57) (Shotgun) J.Locker pass short middle to K.Wright for 9 yards TOUCHDOWN.,0,0,2012 -20121111_TEN@MIA,1,51,57,TEN,MIA,,,9,(Kick formation) R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121111_TEN@MIA,1,51,57,TEN,MIA,,,9,R.Bironas kicks 74 yards from TEN 35 to MIA -9. M.Thigpen Touchback.,7,0,2012 -20121111_TEN@MIA,1,51,49,MIA,TEN,1,10,80,(6:49) (Shotgun) R.Tannehill pass incomplete deep middle to D.Bess. PENALTY on TEN-C.Sensabaugh Defensive Pass Interference 19 yards enforced at MIA 20 - No Play.,0,7,2012 -20121111_TEN@MIA,1,51,43,MIA,TEN,1,10,61,(6:43) (Shotgun) R.Tannehill pass short left to D.Thomas to MIA 34 for -5 yards (C.McCarthy).,0,7,2012 -20121111_TEN@MIA,1,51,15,MIA,TEN,2,15,66,(6:15) D.Thomas right end to MIA 40 for 6 yards (Z.Brown). PENALTY on MIA-A.Fasano Offensive Holding 10 yards enforced at MIA 34 - No Play.,0,7,2012 -20121111_TEN@MIA,1,50,51,MIA,TEN,2,25,76,(5:51) (Shotgun) R.Tannehill pass incomplete short middle to D.Bess.,0,7,2012 -20121111_TEN@MIA,1,50,46,MIA,TEN,3,25,76,(5:46) R.Tannehill pass short middle to D.Thomas to MIA 34 for 10 yards (C.Sensabaugh; J.Babineaux). Penalty on MIA-J.Long Offensive Holding declined.,0,7,2012 -20121111_TEN@MIA,1,50,19,MIA,TEN,4,15,66,(5:19) (Punt formation) B.Fields punts 42 yards to TEN 24 Center-J.Denney downed by MIA-J.Freeny. PENALTY on MIA-M.Moore Player Out of Bounds on Punt 5 yards enforced at MIA 34 - No Play.,0,7,2012 -20121111_TEN@MIA,1,50,9,MIA,TEN,4,20,71,(5:09) (Punt formation) B.Fields punts 36 yards to TEN 35 Center-J.Denney out of bounds.,0,7,2012 -20121111_TEN@MIA,1,50,2,TEN,MIA,1,10,65,(5:02) J.Locker scrambles up the middle to MIA 45 for 20 yards (S.Smith).,7,0,2012 -20121111_TEN@MIA,1,49,18,TEN,MIA,1,10,45,(4:18) C.Johnson left guard to MIA 39 for 6 yards (T.McDaniel; K.Dansby).,7,0,2012 -20121111_TEN@MIA,1,48,37,TEN,MIA,2,4,39,(3:37) C.Johnson left end to MIA 37 for 2 yards (C.Wake; K.Dansby).,7,0,2012 -20121111_TEN@MIA,1,47,52,TEN,MIA,3,2,37,(2:52) (Shotgun) J.Locker pass incomplete short right to K.Britt.,7,0,2012 -20121111_TEN@MIA,1,47,46,TEN,MIA,4,2,37,(2:46) (Shotgun) J.Locker scrambles right guard to MIA 32 for 5 yards (K.Burnett).,7,0,2012 -20121111_TEN@MIA,1,47,5,TEN,MIA,1,10,32,(2:05) J.Locker pass short right to D.Williams ran ob at MIA 17 for 15 yards.,7,0,2012 -20121111_TEN@MIA,1,46,36,TEN,MIA,1,10,17,(1:36) C.Johnson right tackle for 17 yards TOUCHDOWN.,7,0,2012 -20121111_TEN@MIA,1,46,36,TEN,MIA,,,17,(Kick formation) R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,0,2012 -20121111_TEN@MIA,1,46,36,TEN,MIA,,,17,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,14,0,2012 -20121111_TEN@MIA,1,46,23,MIA,TEN,1,10,80,(1:23) R.Tannehill pass short right to B.Hartline to MIA 29 for 9 yards (J.McCourty).,0,14,2012 -20121111_TEN@MIA,1,45,47,MIA,TEN,2,1,71,(:47) L.Miller left tackle to MIA 38 for 9 yards (A.Verner). TEN-C.McCarthy was injured during the play. His return is Questionable.,0,14,2012 -20121111_TEN@MIA,2,45,0,MIA,TEN,1,10,62,(15:00) (Shotgun) R.Tannehill pass incomplete short left to J.Gaffney (A.Verner).,0,14,2012 -20121111_TEN@MIA,2,44,57,MIA,TEN,2,10,62,(14:57) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 47 for 9 yards (J.McCourty).,0,14,2012 -20121111_TEN@MIA,2,44,17,MIA,TEN,3,1,53,(14:17) R.Tannehill pass short right intended for C.Clay INTERCEPTED by C.McCarthy (A.Ayers) at MIA 49. C.McCarthy for 49 yards TOUCHDOWN.,0,14,2012 -20121111_TEN@MIA,2,44,17,TEN,MIA,,,53,(Kick formation) R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,14,0,2012 -20121111_TEN@MIA,2,44,17,TEN,MIA,,,53,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,21,0,2012 -20121111_TEN@MIA,2,44,5,MIA,TEN,1,10,80,(14:05) (Shotgun) D.Thomas up the middle to MIA 21 for 1 yard (Z.Brown).,0,21,2012 -20121111_TEN@MIA,2,43,40,MIA,TEN,2,9,79,(13:40) (Shotgun) R.Tannehill pass short middle to B.Hartline to MIA 29 for 8 yards (R.Mouton).,0,21,2012 -20121111_TEN@MIA,2,42,59,MIA,TEN,3,1,71,(12:59) (Shotgun) R.Tannehill pass short left to J.Gaffney to MIA 40 for 11 yards (A.Verner).,0,21,2012 -20121111_TEN@MIA,2,42,46,MIA,TEN,1,10,60,(12:46) R.Tannehill pass short right to B.Hartline to TEN 47 for 13 yards (J.McCourty).,0,21,2012 -20121111_TEN@MIA,2,42,25,MIA,TEN,1,10,47,(12:25) (No Huddle Shotgun) R.Tannehill pass short left to A.Fasano to TEN 43 for 4 yards (Z.Brown).,0,21,2012 -20121111_TEN@MIA,2,42,0,MIA,TEN,2,6,43,(12:00) (Shotgun) R.Tannehill pass short right to C.Clay to TEN 28 for 15 yards (J.McCourty).,0,21,2012 -20121111_TEN@MIA,2,41,13,MIA,TEN,1,10,28,(11:13) D.Thomas right tackle to TEN 14 for 14 yards (M.Griffin). PENALTY on MIA-R.Incognito Unnecessary Roughness 15 yards enforced at TEN 28 - No Play. Penalty on TEN-K.Wimbley Defensive Offside superseded.,0,21,2012 -20121111_TEN@MIA,2,40,43,MIA,TEN,1,25,43,(10:43) R.Tannehill pass incomplete short right to A.Fasano.,0,21,2012 -20121111_TEN@MIA,2,40,37,MIA,TEN,2,25,43,(10:37) (Shotgun) R.Tannehill pass short left to D.Bess to TEN 32 for 11 yards (C.McCarthy).,0,21,2012 -20121111_TEN@MIA,2,40,1,MIA,TEN,3,14,32,(10:01) (Shotgun) R.Tannehill pass short middle to D.Thomas to TEN 22 for 10 yards (M.Griffin).,0,21,2012 -20121111_TEN@MIA,2,39,8,MIA,TEN,4,4,22,(9:08) (Field Goal formation) D.Carpenter 40 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,21,2012 -20121111_TEN@MIA,2,39,8,MIA,TEN,,,22,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,3,21,2012 -20121111_TEN@MIA,2,39,3,TEN,MIA,1,10,80,(9:03) C.Johnson left tackle to TEN 21 for 1 yard (O.Vernon).,21,3,2012 -20121111_TEN@MIA,2,38,30,TEN,MIA,2,9,79,(8:30) J.Locker pass short middle to C.Johnson to TEN 29 for 8 yards (O.Vernon). TEN-F.Velasco was injured during the play. His return is Questionable.,21,3,2012 -20121111_TEN@MIA,2,37,59,TEN,MIA,3,1,71,(7:59) J.Locker scrambles right tackle to TEN 33 for 4 yards (K.Misi).,21,3,2012 -20121111_TEN@MIA,2,37,18,TEN,MIA,1,10,67,(7:18) (Shotgun) J.Locker pass incomplete short left to K.Wright.,21,3,2012 -20121111_TEN@MIA,2,37,13,TEN,MIA,2,10,67,(7:13) C.Johnson left tackle to TEN 35 for 2 yards (K.Burnett).,21,3,2012 -20121111_TEN@MIA,2,36,30,TEN,MIA,3,8,65,(6:30) (Shotgun) J.Locker scrambles right end to TEN 43 for 8 yards (R.Jones). PENALTY on TEN-D.Stewart Offensive Holding 10 yards enforced at TEN 35 - No Play.,21,3,2012 -20121111_TEN@MIA,2,35,55,TEN,MIA,3,18,75,(5:55) (Shotgun) J.Locker pass incomplete short right to C.Johnson.,21,3,2012 -20121111_TEN@MIA,2,35,50,TEN,MIA,4,18,75,(5:50) (Punt formation) B.Kern punts 51 yards to MIA 24 Center-B.Brinkley. M.Thigpen to MIA 40 for 16 yards (T.Campbell). PENALTY on MIA-J.Wilson Illegal Block Above the Waist 10 yards enforced at MIA 40.,21,3,2012 -20121111_TEN@MIA,2,35,37,MIA,TEN,1,10,70,(5:37) L.Miller left tackle to MIA 30 for no gain (M.Martin).,3,21,2012 -20121111_TEN@MIA,2,35,10,MIA,TEN,2,10,70,(5:10) R.Tannehill pass incomplete short middle to L.Miller (D.Morgan).,3,21,2012 -20121111_TEN@MIA,2,34,58,MIA,TEN,3,10,70,(4:58) (Shotgun) R.Tannehill pass short left to L.Miller to MIA 38 for 8 yards (Z.Brown).,3,21,2012 -20121111_TEN@MIA,2,34,17,MIA,TEN,4,2,62,(4:17) (Punt formation) B.Fields punts 54 yards to TEN 8 Center-J.Denney. D.Reynaud to TEN 33 for 25 yards (M.Moore).,3,21,2012 -20121111_TEN@MIA,2,34,1,TEN,MIA,1,10,67,(4:01) J.Locker pass incomplete short left to J.Cook (K.Dansby).,21,3,2012 -20121111_TEN@MIA,2,33,55,TEN,MIA,2,10,67,(3:55) C.Johnson left tackle to TEN 36 for 3 yards (K.Misi).,21,3,2012 -20121111_TEN@MIA,2,33,15,TEN,MIA,3,7,64,(3:15) (Shotgun) J.Locker pass incomplete short right to J.Cook.,21,3,2012 -20121111_TEN@MIA,2,33,10,TEN,MIA,4,7,64,(3:10) (Punt formation) B.Kern punts 50 yards to MIA 14 Center-B.Brinkley. M.Thigpen to MIA 14 for no gain (T.Thompson). PENALTY on MIA-B.McCann Illegal Block Above the Waist 7 yards enforced at MIA 14.,21,3,2012 -20121111_TEN@MIA,2,32,57,MIA,TEN,1,10,93,(2:57) D.Thomas left tackle to MIA 14 for 7 yards (A.Ayers).,3,21,2012 -20121111_TEN@MIA,2,32,12,MIA,TEN,2,3,86,(2:12) D.Thomas right end to MIA 16 for 2 yards (D.Morgan).,3,21,2012 -20121111_TEN@MIA,2,32,0,MIA,TEN,3,1,84,(2:00) R.Tannehill pass short right intended for A.Fasano INTERCEPTED by A.Ayers at MIA 25. A.Ayers to MIA 23 for 2 yards (A.Fasano).,3,21,2012 -20121111_TEN@MIA,2,31,51,TEN,MIA,1,10,23,(1:51) C.Johnson left guard to MIA 16 for 7 yards (R.Jones).,21,3,2012 -20121111_TEN@MIA,2,31,17,TEN,MIA,2,3,16,(1:17) C.Johnson right end to MIA 19 for -3 yards (C.Clemons).,21,3,2012 -20121111_TEN@MIA,2,30,38,TEN,MIA,3,6,19,(:38) (Shotgun) J.Locker pass incomplete deep left to C.Stevens.,21,3,2012 -20121111_TEN@MIA,2,30,32,TEN,MIA,4,6,19,(:32) (Field Goal formation) R.Bironas 37 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,21,3,2012 -20121111_TEN@MIA,2,30,32,TEN,MIA,,,19,R.Bironas kicks 63 yards from TEN 35 to MIA 2. M.Thigpen to MIA 26 for 24 yards (S.Solomon).,24,3,2012 -20121111_TEN@MIA,2,30,21,MIA,TEN,1,10,74,(:21) R.Tannehill kneels to MIA 25 for -1 yards.,3,24,2012 -20121111_TEN@MIA,3,30,0,MIA,TEN,,,74,D.Carpenter kicks 69 yards from MIA 35 to TEN -4. D.Reynaud to TEN 15 for 19 yards (M.Moore).,3,24,2012 -20121111_TEN@MIA,3,29,53,TEN,MIA,1,10,85,(14:53) C.Johnson left guard to TEN 23 for 8 yards (K.Dansby).,24,3,2012 -20121111_TEN@MIA,3,29,17,TEN,MIA,2,2,77,(14:17) C.Johnson up the middle to TEN 24 for 1 yard (K.Burnett).,24,3,2012 -20121111_TEN@MIA,3,28,38,TEN,MIA,3,1,76,(13:38) Q.Johnson up the middle to TEN 27 for 3 yards (K.Misi).,24,3,2012 -20121111_TEN@MIA,3,27,55,TEN,MIA,1,10,73,(12:55) J.Locker pass incomplete deep right to N.Washington (P.Soliai).,24,3,2012 -20121111_TEN@MIA,3,27,49,TEN,MIA,2,10,73,(12:49) J.Locker pass short left to C.Stevens to TEN 34 for 7 yards (K.Burnett).,24,3,2012 -20121111_TEN@MIA,3,27,12,TEN,MIA,3,3,66,(12:12) (Shotgun) J.Locker pass short middle to K.Britt to TEN 42 for 8 yards (J.Wilson).,24,3,2012 -20121111_TEN@MIA,3,26,29,TEN,MIA,1,10,58,(11:29) C.Johnson left guard to TEN 47 for 5 yards (C.Wake).,24,3,2012 -20121111_TEN@MIA,3,25,45,TEN,MIA,2,5,53,(10:45) C.Johnson left guard to MIA 49 for 4 yards (K.Randall).,24,3,2012 -20121111_TEN@MIA,3,25,5,TEN,MIA,3,1,49,(10:05) J.Locker pass deep middle to K.Britt to MIA 21 for 28 yards (S.Smith).,24,3,2012 -20121111_TEN@MIA,3,24,16,TEN,MIA,1,10,21,(9:16) (Shotgun) J.Harper right end to MIA 16 for 5 yards (R.Jones).,24,3,2012 -20121111_TEN@MIA,3,23,36,TEN,MIA,2,5,16,(8:36) J.Harper left tackle to MIA 21 for -5 yards (J.Odrick).,24,3,2012 -20121111_TEN@MIA,3,22,24,TEN,MIA,3,10,21,(7:24) (Shotgun) PENALTY on TEN-M.Roos False Start 5 yards enforced at MIA 21 - No Play.,24,3,2012 -20121111_TEN@MIA,3,22,0,TEN,MIA,3,15,26,(7:00) (Shotgun) J.Locker pass deep right to J.Cook for 26 yards TOUCHDOWN.,24,3,2012 -20121111_TEN@MIA,3,22,0,TEN,MIA,,,26,(Kick formation) R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,24,3,2012 -20121111_TEN@MIA,3,22,0,TEN,MIA,,,26,R.Bironas kicks 67 yards from TEN 35 to MIA -2. M.Thigpen to MIA 20 for 22 yards (R.Johnson; T.Shaw). PENALTY on MIA-O.Vernon Illegal Block Above the Waist 10 yards enforced at MIA 20.,31,3,2012 -20121111_TEN@MIA,3,21,48,MIA,TEN,1,10,90,(6:48) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 22 for 12 yards (C.Sensabaugh).,3,31,2012 -20121111_TEN@MIA,3,21,18,MIA,TEN,1,10,78,(6:18) (Shotgun) R.Tannehill pass incomplete short middle to J.Gaffney (C.Sensabaugh).,3,31,2012 -20121111_TEN@MIA,3,21,14,MIA,TEN,2,10,78,(6:14) R.Tannehill pass short middle to B.Hartline to MIA 36 for 14 yards (J.McCourty).,3,31,2012 -20121111_TEN@MIA,3,20,36,MIA,TEN,1,10,64,(5:36) (Shotgun) R.Bush right guard to MIA 36 for no gain (Z.Brown). PENALTY on MIA-M.Pouncey Offensive Holding 10 yards enforced at MIA 36 - No Play.,3,31,2012 -20121111_TEN@MIA,3,20,13,MIA,TEN,1,20,74,(5:13) (Shotgun) R.Tannehill sacked at MIA 18 for -8 yards (S.Marks).,3,31,2012 -20121111_TEN@MIA,3,19,35,MIA,TEN,2,28,82,(4:35) (Shotgun) R.Tannehill pass incomplete short middle to C.Clay.,3,31,2012 -20121111_TEN@MIA,3,19,30,MIA,TEN,3,28,82,(4:30) (Shotgun) R.Tannehill pass short right to D.Thomas to MIA 29 for 11 yards (D.Morgan).,3,31,2012 -20121111_TEN@MIA,3,18,48,MIA,TEN,4,17,71,(3:48) (Punt formation) B.Fields punts 67 yards to TEN 4 Center-J.Denney. D.Reynaud to TEN 31 for 27 yards (J.Amaya).,3,31,2012 -20121111_TEN@MIA,3,18,32,TEN,MIA,1,10,69,(3:32) C.Johnson left end to TEN 35 for 4 yards (T.McDaniel).,31,3,2012 -20121111_TEN@MIA,3,17,56,TEN,MIA,2,6,65,(2:56) C.Johnson right end to TEN 40 for 5 yards (S.Smith; K.Burnett).,31,3,2012 -20121111_TEN@MIA,3,17,18,TEN,MIA,3,1,60,(2:18) C.Johnson right end to TEN 44 for 4 yards (K.Dansby).,31,3,2012 -20121111_TEN@MIA,3,16,40,TEN,MIA,1,10,56,(1:40) J.Locker pass short left to D.Williams ran ob at MIA 40 for 16 yards.,31,3,2012 -20121111_TEN@MIA,3,16,10,TEN,MIA,1,10,40,(1:10) C.Johnson right tackle to MIA 27 for 13 yards (C.Clemons).,31,3,2012 -20121111_TEN@MIA,3,15,26,TEN,MIA,1,10,27,(:26) D.Reynaud right end to MIA 27 for no gain (K.Dansby).,31,3,2012 -20121111_TEN@MIA,4,15,0,TEN,MIA,2,10,27,(15:00) (Shotgun) J.Locker scrambles right tackle to MIA 20 for 7 yards (K.Burnett).,31,3,2012 -20121111_TEN@MIA,4,14,19,TEN,MIA,3,3,20,(14:19) (Shotgun) J.Locker pass incomplete deep right to K.Britt.,31,3,2012 -20121111_TEN@MIA,4,14,14,TEN,MIA,4,3,20,(14:14) (Field Goal formation) R.Bironas 38 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,31,3,2012 -20121111_TEN@MIA,4,14,14,TEN,MIA,,,20,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,34,3,2012 -20121111_TEN@MIA,4,14,9,MIA,TEN,1,10,80,(14:09) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 33 for 13 yards (R.Mouton).,3,34,2012 -20121111_TEN@MIA,4,13,44,MIA,TEN,1,10,67,(13:44) (No Huddle Shotgun) R.Tannehill pass short right to B.Hartline to MIA 44 for 11 yards (J.McCourty).,3,34,2012 -20121111_TEN@MIA,4,13,18,MIA,TEN,1,10,56,(13:18) (No Huddle Shotgun) R.Tannehill pass incomplete short right to R.Bush.,3,34,2012 -20121111_TEN@MIA,4,13,13,MIA,TEN,2,10,56,(13:13) (Shotgun) R.Tannehill pass short right to B.Hartline to TEN 44 for 12 yards (J.McCourty).,3,34,2012 -20121111_TEN@MIA,4,12,46,MIA,TEN,1,10,44,(12:46) (No Huddle Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,3,34,2012 -20121111_TEN@MIA,4,12,40,MIA,TEN,2,10,44,(12:40) (Shotgun) R.Tannehill pass short right to D.Thomas to TEN 36 for 8 yards (T.Shaw).,3,34,2012 -20121111_TEN@MIA,4,12,9,MIA,TEN,3,2,36,(12:09) (No Huddle Shotgun) R.Tannehill pass deep left to D.Bess to TEN 19 for 17 yards (M.Griffin).,3,34,2012 -20121111_TEN@MIA,4,11,35,MIA,TEN,1,10,19,(11:35) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline (J.McCourty).,3,34,2012 -20121111_TEN@MIA,4,11,28,MIA,TEN,2,10,19,(11:28) (Shotgun) R.Tannehill pass incomplete short right to D.Thomas.,3,34,2012 -20121111_TEN@MIA,4,11,24,MIA,TEN,3,10,19,(11:24) (Shotgun) R.Tannehill pass short left intended for J.Gaffney INTERCEPTED by Z.Brown at TEN 16. Z.Brown to MIA 37 for 47 yards (R.Tannehill).,3,34,2012 -20121111_TEN@MIA,4,11,13,TEN,MIA,1,10,37,(11:13) New QB- 8 M. Hasselbeck C.Johnson right end to MIA 37 for no gain (S.Smith).,34,3,2012 -20121111_TEN@MIA,4,10,39,TEN,MIA,2,10,37,(10:39) C.Johnson up the middle to MIA 35 for 2 yards (C.Clemons).,34,3,2012 -20121111_TEN@MIA,4,9,55,TEN,MIA,3,8,35,(9:55) (Shotgun) M.Hasselbeck pass incomplete short middle to K.Britt.,34,3,2012 -20121111_TEN@MIA,4,9,50,TEN,MIA,4,8,35,(9:50) (Field Goal formation) R.Bironas 53 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,34,3,2012 -20121111_TEN@MIA,4,9,50,TEN,MIA,,,35,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,37,3,2012 -20121111_TEN@MIA,4,9,45,MIA,TEN,1,10,80,(9:45) (Shotgun) R.Tannehill pass short left to L.Miller to MIA 25 for 5 yards (A.Verner).,3,37,2012 -20121111_TEN@MIA,4,9,16,MIA,TEN,2,5,75,(9:16) (No Huddle Shotgun) R.Tannehill pass incomplete short right to C.Clay.,3,37,2012 -20121111_TEN@MIA,4,9,8,MIA,TEN,3,5,75,(9:08) (Shotgun) R.Tannehill pass incomplete short middle to D.Bess (C.Sensabaugh).,3,37,2012 -20121111_TEN@MIA,4,9,3,MIA,TEN,4,5,75,(9:03) (Punt formation) B.Fields punts 38 yards to TEN 37 Center-J.Denney downed by MIA-J.Trusnik.,3,37,2012 -20121111_TEN@MIA,4,8,53,TEN,MIA,1,10,63,(8:53) C.Johnson left end ran ob at MIA 45 for 18 yards (J.Wilson).,37,3,2012 -20121111_TEN@MIA,4,8,15,TEN,MIA,1,10,45,(8:15) C.Johnson left guard to MIA 43 for 2 yards (J.Freeny).,37,3,2012 -20121111_TEN@MIA,4,7,32,TEN,MIA,2,8,43,(7:32) D.Reynaud right tackle to MIA 42 for 1 yard (D.Shelby).,37,3,2012 -20121111_TEN@MIA,4,6,47,TEN,MIA,3,7,42,(6:47) D.Reynaud right tackle to MIA 39 for 3 yards (J.Trusnik).,37,3,2012 -20121111_TEN@MIA,4,5,59,TEN,MIA,4,4,39,(5:59) (Shotgun) PENALTY on TEN Delay of Game 5 yards enforced at MIA 39 - No Play.,37,3,2012 -20121111_TEN@MIA,4,5,46,TEN,MIA,4,9,44,(5:46) (Punt formation) B.Kern punts 36 yards to MIA 8 Center-B.Brinkley downed by TEN-P.Bailey. Penalty on MIA-M.Moore Running Into the Kicker declined.,37,3,2012 -20121111_TEN@MIA,4,5,25,MIA,TEN,1,10,92,(5:25) New QB - 8 M.Moore D.Thomas left end to MIA 16 for 8 yards (T.Shaw).,3,37,2012 -20121111_TEN@MIA,4,4,53,MIA,TEN,2,2,84,(4:53) D.Thomas right guard to MIA 19 for 3 yards (J.Wynn).,3,37,2012 -20121111_TEN@MIA,4,4,10,MIA,TEN,1,10,81,(4:10) Matt.Moore scrambles left end ran ob at MIA 20 for 1 yard.,3,37,2012 -20121111_TEN@MIA,4,4,0,MIA,TEN,2,9,80,(4:00) (Shotgun) L.Miller left guard to MIA 23 for 3 yards (K.Klug; W.Witherspoon).,3,37,2012 -20121111_TEN@MIA,4,3,23,MIA,TEN,3,6,77,(3:23) (Shotgun) R.Tannehill sacked at MIA 15 for -8 yards (J.Wynn).,3,37,2012 -20121111_TEN@MIA,4,2,39,MIA,TEN,4,14,85,(2:39) (Punt formation) B.Fields punts 48 yards to TEN 37 Center-J.Denney. D.Reynaud to TEN 40 for 3 yards (R.Stanford).,3,37,2012 -20121111_TEN@MIA,4,2,29,TEN,MIA,1,10,60,(2:29) D.Reynaud left tackle to MIA 49 for 11 yards (J.Wilson).,37,3,2012 -20121111_TEN@MIA,4,2,0,TEN,MIA,1,10,49,(2:00) M.Hasselbeck kneels to 50 for -1 yards.,37,3,2012 -20121111_TEN@MIA,4,1,18,TEN,MIA,2,11,50,(1:18) M.Hasselbeck kneels to TEN 49 for -1 yards.,37,3,2012 -20121111_TEN@MIA,4,0,35,TEN,MIA,3,12,51,(:35) M.Hasselbeck kneels to TEN 48 for -1 yards.,37,3,2012 -20121111_TEN@MIA,4,0,35,TEN,MIA,,,51,                      ,37,3,2012 -20121111_DET@MIN,1,0,0,MIN,DET,,,51,B.Walsh kicks 68 yards from MIN 35 to DET -3. S.Logan to DET 14 for 17 yards (T.McKenzie).,0,0,2012 -20121111_DET@MIN,1,59,56,DET,MIN,1,10,86,(14:56) R.Reiff reported in as eligible. M.Leshoure left guard to DET 15 for 1 yard (F.Evans; J.Brinkley).,0,0,2012 -20121111_DET@MIN,1,59,21,DET,MIN,2,9,85,(14:21) M.Stafford pass short middle to B.Pettigrew to DET 25 for 10 yards (E.Henderson).,0,0,2012 -20121111_DET@MIN,1,58,45,DET,MIN,1,10,75,(13:45) R.Reiff reported in as eligible. M.Stafford pass short right to C.Johnson to DET 36 for 11 yards (A.Winfield).,0,0,2012 -20121111_DET@MIN,1,58,10,DET,MIN,1,10,64,(13:10) M.Leshoure up the middle to DET 38 for 2 yards (F.Evans). PENALTY on DET-R.Broyles Illegal Crackback 15 yards enforced at DET 38.,0,0,2012 -20121111_DET@MIN,1,57,40,DET,MIN,1,23,77,(12:40) M.Leshoure up the middle to DET 27 for 4 yards (A.Winfield).,0,0,2012 -20121111_DET@MIN,1,57,11,DET,MIN,2,19,73,(12:11) (Shotgun) M.Stafford pass incomplete short left to T.Young.,0,0,2012 -20121111_DET@MIN,1,57,6,DET,MIN,3,19,73,(12:06) (Shotgun) M.Stafford pass short left to J.Bell to DET 32 for 5 yards (Team).,0,0,2012 -20121111_DET@MIN,1,56,34,DET,MIN,4,14,68,(11:34) N.Harris punts 40 yards to MIN 28 Center-D.Muhlbach. M.Sherels to MIN 33 for 5 yards (T.Whitehead).,0,0,2012 -20121111_DET@MIN,1,56,23,MIN,DET,1,10,67,(11:23) (Shotgun) C.Ponder pass short right to J.Felton to MIN 38 for 5 yards (J.Durant) [N.Fairley].,0,0,2012 -20121111_DET@MIN,1,55,49,MIN,DET,2,5,62,(10:49) A.Peterson up the middle to MIN 45 for 7 yards (Team).,0,0,2012 -20121111_DET@MIN,1,55,19,MIN,DET,1,10,55,(10:19) A.Peterson left end to MIN 47 for 2 yards (K.Vanden Bosch).,0,0,2012 -20121111_DET@MIN,1,54,41,MIN,DET,2,8,53,(9:41) A.Peterson up the middle to MIN 45 for -2 yards (N.Fairley).,0,0,2012 -20121111_DET@MIN,1,54,11,MIN,DET,3,10,55,(9:11) (Shotgun) C.Ponder pass deep middle to J.Wright to DET 1 for 54 yards (E.Coleman).,0,0,2012 -20121111_DET@MIN,1,53,31,MIN,DET,1,1,1,(8:31) G.Schwartz reported in as eligible. PENALTY on MIN-K.Rudolph False Start 5 yards enforced at DET 1 - No Play.,0,0,2012 -20121111_DET@MIN,1,53,30,MIN,DET,1,6,6,(8:30) (Shotgun) A.Peterson up the middle to DET 3 for 3 yards (E.Coleman; K.Vanden Bosch).,0,0,2012 -20121111_DET@MIN,1,52,57,MIN,DET,2,3,3,(7:57) C.Ponder pass short left to J.Wright for 3 yards TOUCHDOWN.,0,0,2012 -20121111_DET@MIN,1,52,57,MIN,DET,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121111_DET@MIN,1,52,57,MIN,DET,,,3,B.Walsh kicks 70 yards from MIN 35 to DET -5. S.Logan Touchback.,7,0,2012 -20121111_DET@MIN,1,52,52,DET,MIN,1,10,80,(7:52) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (B.Robison).,0,7,2012 -20121111_DET@MIN,1,52,47,DET,MIN,2,10,80,(7:47) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass incomplete short left to T.Young.,0,7,2012 -20121111_DET@MIN,1,52,44,DET,MIN,3,10,80,(7:44) (Shotgun) M.Stafford pass short right intended for B.Pettigrew INTERCEPTED by C.Greenway at DET 28. C.Greenway to DET 25 for 3 yards (B.Pettigrew).,0,7,2012 -20121111_DET@MIN,1,52,38,MIN,DET,1,10,25,(7:38) C.Ponder pass short right to C.Ponder to DET 40 for -15 yards (C.Avril).,7,0,2012 -20121111_DET@MIN,1,52,3,MIN,DET,2,25,40,(7:03) (Shotgun) C.Ponder pass short left to J.Simpson to DET 38 for 2 yards (J.Durant).,7,0,2012 -20121111_DET@MIN,1,51,21,MIN,DET,3,23,38,(6:21) (Shotgun) C.Ponder pass short left to K.Rudolph to DET 30 for 8 yards (J.Durant; K.Vanden Bosch).,7,0,2012 -20121111_DET@MIN,1,50,45,MIN,DET,4,15,30,(5:45) B.Walsh 48 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,0,2012 -20121111_DET@MIN,1,50,45,MIN,DET,,,30,B.Walsh kicks 74 yards from MIN 35 to DET -9. S.Logan Touchback.,10,0,2012 -20121111_DET@MIN,1,50,41,DET,MIN,1,10,80,(5:41) R.Reiff reported in as eligible. M.Stafford pass short left to C.Johnson to DET 20 for no gain (C.Greenway).,0,10,2012 -20121111_DET@MIN,1,50,7,DET,MIN,2,10,80,(5:07) M.Leshoure right tackle to DET 23 for 3 yards (J.Brinkley).,0,10,2012 -20121111_DET@MIN,1,49,24,DET,MIN,3,7,77,(4:24) (Shotgun) M.Stafford pass incomplete short right to J.Bell.,0,10,2012 -20121111_DET@MIN,1,49,19,DET,MIN,4,7,77,(4:19) N.Harris punts 32 yards to MIN 45 Center-D.Muhlbach. M.Sherels to MIN 46 for 1 yard (E.Coleman). DET-E.Coleman was injured during the play. His return is Probable.,0,10,2012 -20121111_DET@MIN,1,49,10,MIN,DET,1,10,54,(4:10) A.Peterson up the middle to MIN 47 for 1 yard (J.Durant; S.Tulloch).,10,0,2012 -20121111_DET@MIN,1,48,38,MIN,DET,2,9,53,(3:38) (Shotgun) C.Ponder sacked at MIN 40 for -7 yards (N.Fairley).,10,0,2012 -20121111_DET@MIN,1,48,5,MIN,DET,3,16,60,(3:05) C.Ponder pass incomplete short middle to J.Wright.,10,0,2012 -20121111_DET@MIN,1,48,2,MIN,DET,4,16,60,(3:02) C.Kluwe punts 45 yards to DET 15 Center-C.Loeffler fair catch by S.Logan. PENALTY on DET-A.Smith Offensive Holding 7 yards enforced at DET 15.,10,0,2012 -20121111_DET@MIN,1,47,54,DET,MIN,1,10,92,(2:54) R.Reiff reported in as eligible. M.Leshoure left end to DET 13 for 5 yards (J.Brinkley). PENALTY on MIN-E.Griffen Defensive Offside 5 yards enforced at DET 8 - No Play.,0,10,2012 -20121111_DET@MIN,1,47,30,DET,MIN,1,5,87,(2:30) M.Stafford pass short left to T.Young to DET 20 for 7 yards (A.Jefferson).,0,10,2012 -20121111_DET@MIN,1,46,56,DET,MIN,1,10,80,(1:56) R.Reiff reported in as eligible. M.Leshoure right tackle to DET 19 for -1 yards (J.Brinkley).,0,10,2012 -20121111_DET@MIN,1,46,17,DET,MIN,2,11,81,(1:17) M.Stafford pass short middle to T.Young to DET 35 for 16 yards (A.Winfield).,0,10,2012 -20121111_DET@MIN,1,45,41,DET,MIN,1,10,65,(:41) (Shotgun) M.Leshoure left tackle to DET 39 for 4 yards (A.Winfield).,0,10,2012 -20121111_DET@MIN,1,45,2,DET,MIN,2,6,61,(:02) (Shotgun) M.Stafford pass short left to R.Broyles to DET 45 for 6 yards (C.Greenway).,0,10,2012 -20121111_DET@MIN,2,45,0,DET,MIN,1,10,55,(15:00) M.Stafford scrambles right end ran ob at MIN 46 for 9 yards.,0,10,2012 -20121111_DET@MIN,2,44,28,DET,MIN,2,1,46,(14:28) M.Leshoure up the middle to MIN 40 for 6 yards (B.Robison).,0,10,2012 -20121111_DET@MIN,2,43,48,DET,MIN,1,10,40,(13:48) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass deep right to C.Johnson to MIN 17 for 23 yards (H.Smith).,0,10,2012 -20121111_DET@MIN,2,43,1,DET,MIN,1,10,17,(13:01) (Shotgun) M.Leshoure up the middle to MIN 10 for 7 yards (H.Smith).,0,10,2012 -20121111_DET@MIN,2,42,25,DET,MIN,2,3,10,(12:25) (Shotgun) M.Leshoure right guard to MIN 12 for -2 yards (A.Winfield).,0,10,2012 -20121111_DET@MIN,2,41,45,DET,MIN,3,5,12,(11:45) (Shotgun) M.Stafford sacked at MIN 23 for -11 yards (K.Williams).,0,10,2012 -20121111_DET@MIN,2,41,11,DET,MIN,4,16,23,(11:11) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,10,2012 -20121111_DET@MIN,2,41,11,DET,MIN,,,23,J.Hanson kicks 67 yards from DET 35 to MIN -2. M.Sherels pushed ob at MIN 14 for 16 yards (D.Carey).,3,10,2012 -20121111_DET@MIN,2,41,2,MIN,DET,1,10,86,(11:02) C.Ponder pass incomplete short right to A.Peterson.,10,3,2012 -20121111_DET@MIN,2,40,58,MIN,DET,2,10,86,(10:58) A.Peterson up the middle to MIN 29 for 15 yards (J.Lacey).,10,3,2012 -20121111_DET@MIN,2,40,23,MIN,DET,1,10,71,(10:23) C.Ponder scrambles left end ran ob at MIN 49 for 20 yards.,10,3,2012 -20121111_DET@MIN,2,39,54,MIN,DET,1,10,51,(9:54) A.Peterson left guard to MIN 49 for no gain (D.Levy).,10,3,2012 -20121111_DET@MIN,2,39,24,MIN,DET,2,10,51,(9:24) (Shotgun) A.Peterson up the middle to DET 37 for 14 yards (R.Silva).,10,3,2012 -20121111_DET@MIN,2,38,45,MIN,DET,1,10,37,(8:45) (Shotgun) C.Ponder pass short right to K.Rudolph to DET 38 for -1 yards (J.Lacey).,10,3,2012 -20121111_DET@MIN,2,38,6,MIN,DET,2,11,38,(8:06) (Shotgun) C.Ponder pass short middle to K.Rudolph to DET 22 for 16 yards (R.Silva).,10,3,2012 -20121111_DET@MIN,2,37,30,MIN,DET,1,10,22,(7:30) C.Ponder pass short left to J.Wright to DET 14 for 8 yards (J.Lacey).,10,3,2012 -20121111_DET@MIN,2,36,51,MIN,DET,2,2,14,(6:51) A.Peterson up the middle to DET 12 for 2 yards (C.Avril).,10,3,2012 -20121111_DET@MIN,2,36,13,MIN,DET,1,10,12,(6:13) A.Peterson up the middle to DET 15 for -3 yards (D.Levy).,10,3,2012 -20121111_DET@MIN,2,35,36,MIN,DET,2,13,15,(5:36) C.Ponder pass incomplete short middle to S.Burton.,10,3,2012 -20121111_DET@MIN,2,35,31,MIN,DET,3,13,15,(5:31) (Shotgun) C.Ponder pass short left to T.Gerhart to DET 5 for 10 yards (D.Levy; J.Green).,10,3,2012 -20121111_DET@MIN,2,34,44,MIN,DET,4,3,5,(4:44) B.Walsh 23 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,3,2012 -20121111_DET@MIN,2,34,44,MIN,DET,,,5,B.Walsh kicks 74 yards from MIN 35 to DET -9. S.Logan Touchback.,13,3,2012 -20121111_DET@MIN,2,34,41,DET,MIN,1,10,80,(4:41) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 22 for 2 yards (E.Griffen C.Greenway).,3,13,2012 -20121111_DET@MIN,2,34,1,DET,MIN,2,8,78,(4:01) (Shotgun) M.Stafford pass short right to J.Bell pushed ob at DET 30 for 8 yards (J.Robinson).,3,13,2012 -20121111_DET@MIN,2,33,45,DET,MIN,1,10,70,(3:45) J.Bell up the middle to DET 34 for 4 yards (A.Winfield; K.Williams).,3,13,2012 -20121111_DET@MIN,2,33,6,DET,MIN,2,6,66,(3:06) (Shotgun) PENALTY on DET-S.Peterman False Start 5 yards enforced at DET 34 - No Play.,3,13,2012 -20121111_DET@MIN,2,32,46,DET,MIN,2,11,71,(2:46) (Shotgun) M.Stafford pass incomplete short right to T.Young [C.Ballard].,3,13,2012 -20121111_DET@MIN,2,32,41,DET,MIN,3,11,71,(2:41) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,3,13,2012 -20121111_DET@MIN,2,32,35,DET,MIN,4,11,71,(2:35) N.Harris punts 42 yards to MIN 29 Center-D.Muhlbach fair catch by M.Sherels.,3,13,2012 -20121111_DET@MIN,2,32,28,MIN,DET,1,10,71,(2:28) (Shotgun) C.Ponder pass incomplete short left to J.Wright.,13,3,2012 -20121111_DET@MIN,2,32,23,MIN,DET,2,10,71,(2:23) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 33 for 4 yards (C.Houston).,13,3,2012 -20121111_DET@MIN,2,32,2,MIN,DET,3,6,67,(2:02) C.Ponder pass short left to A.Peterson to MIN 32 for -1 yards (J.Lacey).,13,3,2012 -20121111_DET@MIN,2,31,55,MIN,DET,4,7,68,(1:55) C.Kluwe punts 57 yards to DET 11 Center-C.Loeffler. S.Logan to DET 26 for 15 yards (A.Sendejo).,13,3,2012 -20121111_DET@MIN,2,31,44,DET,MIN,1,10,74,(1:44) (Shotgun) M.Stafford pass short right to C.Johnson to DET 28 for 2 yards (J.Robinson).,3,13,2012 -20121111_DET@MIN,2,31,39,DET,MIN,2,8,72,(1:39) (Shotgun) M.Stafford pass short right intended for T.Scheffler INTERCEPTED by A.Winfield at DET 34. A.Winfield for 34 yards TOUCHDOWN. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) M.Stafford pass incomplete short right to T.Scheffler.,3,13,2012 -20121111_DET@MIN,2,31,36,DET,MIN,3,8,72,(1:36) (Shotgun) M.Stafford sacked at DET 18 for -10 yards (E.Griffen).,3,13,2012 -20121111_DET@MIN,2,31,30,DET,MIN,4,18,82,(1:30) N.Harris punts 40 yards to MIN 42 Center-D.Muhlbach fair catch by M.Sherels.,3,13,2012 -20121111_DET@MIN,2,31,23,MIN,DET,1,10,58,(1:23) (Shotgun) C.Ponder pass short right to J.Simpson to DET 49 for 9 yards (J.Green).,13,3,2012 -20121111_DET@MIN,2,31,4,MIN,DET,2,1,49,(1:04) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins.,13,3,2012 -20121111_DET@MIN,2,31,1,MIN,DET,3,1,49,(1:01) (Shotgun) A.Peterson up the middle to MIN 49 for -2 yards (S.Tulloch).,13,3,2012 -20121111_DET@MIN,2,30,57,MIN,DET,4,3,51,(:57) C.Kluwe punts 51 yards to end zone Center-C.Loeffler Touchback.,13,3,2012 -20121111_DET@MIN,2,30,48,DET,MIN,1,10,80,(:48) (Shotgun) M.Stafford pass short left to J.Bell to DET 26 for 6 yards (A.Jefferson).,3,13,2012 -20121111_DET@MIN,2,30,23,DET,MIN,2,4,74,(:23) (Shotgun) M.Stafford pass short right to J.Bell to DET 29 for 3 yards (A.Winfield).,3,13,2012 -20121111_DET@MIN,3,30,0,DET,MIN,,,74,J.Hanson kicks 67 yards from DET 35 to MIN -2. M.Sherels to MIN 39 for 41 yards (J.Hanson).,3,13,2012 -20121111_DET@MIN,3,29,53,MIN,DET,1,10,61,(14:53) C.Ponder pass short left to K.Rudolph to MIN 43 for 4 yards (E.Coleman).,13,3,2012 -20121111_DET@MIN,3,29,23,MIN,DET,2,6,57,(14:23) A.Peterson left end pushed ob at MIN 47 for 4 yards (E.Coleman). PENALTY on MIN-J.Simpson Offensive Holding 10 yards enforced at MIN 47.,13,3,2012 -20121111_DET@MIN,3,29,4,MIN,DET,2,12,63,(14:04) C.Ponder pass short left to J.Simpson to DET 46 for 17 yards (J.Durant).,13,3,2012 -20121111_DET@MIN,3,28,21,MIN,DET,1,10,46,(13:21) A.Peterson left guard to DET 43 for 3 yards (J.Durant).,13,3,2012 -20121111_DET@MIN,3,27,48,MIN,DET,2,7,43,(12:48) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph [J.Durant].,13,3,2012 -20121111_DET@MIN,3,27,42,MIN,DET,3,7,43,(12:42) (Shotgun) C.Ponder pass short left to K.Rudolph to DET 26 for 17 yards (J.Green). PENALTY on MIN-P.Loadholt Illegal Formation 5 yards enforced at DET 43 - No Play.,13,3,2012 -20121111_DET@MIN,3,27,21,MIN,DET,3,12,48,(12:21) (Shotgun) C.Ponder scrambles left end to DET 41 for 7 yards (J.Durant).,13,3,2012 -20121111_DET@MIN,3,26,39,MIN,DET,4,5,41,(11:39) C.Kluwe punts 36 yards to DET 5 Center-C.Loeffler. A.Smith to DET 7 for 2 yards (L.Dean).,13,3,2012 -20121111_DET@MIN,3,26,28,DET,MIN,1,10,93,(11:28) R.Reiff reported in as eligible. M.Leshoure right end to DET 7 for no gain (J.Allen).,3,13,2012 -20121111_DET@MIN,3,25,47,DET,MIN,2,10,93,(10:47) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,3,13,2012 -20121111_DET@MIN,3,25,43,DET,MIN,3,10,93,(10:43) (Shotgun) M.Stafford scrambles right end to DET 11 for 4 yards (E.Griffen).,3,13,2012 -20121111_DET@MIN,3,25,12,DET,MIN,4,6,89,(10:12) N.Harris punts 37 yards to DET 48 Center-D.Muhlbach fair catch by M.Sherels.,3,13,2012 -20121111_DET@MIN,3,25,4,MIN,DET,1,10,48,(10:04) A.Peterson left guard to DET 45 for 3 yards (J.Lacey).,13,3,2012 -20121111_DET@MIN,3,24,34,MIN,DET,2,7,45,(9:34) A.Peterson right guard to DET 41 for 4 yards (SamL.Hill; L.Jackson).,13,3,2012 -20121111_DET@MIN,3,23,58,MIN,DET,3,3,41,(8:58) (Shotgun) C.Ponder pass short right to K.Rudolph to DET 37 for 4 yards (D.Levy).,13,3,2012 -20121111_DET@MIN,3,23,20,MIN,DET,1,10,37,(8:20) J.Wright left end to DET 34 for 3 yards (R.Silva).,13,3,2012 -20121111_DET@MIN,3,22,44,MIN,DET,2,7,34,(7:44) C.Ponder pass short right to D.Aromashodu to DET 3 for 31 yards (J.Lacey; C.Houston).,13,3,2012 -20121111_DET@MIN,3,21,57,MIN,DET,1,3,3,(6:57) C.Ponder up the middle to DET 10 for -7 yards (D.Levy).,13,3,2012 -20121111_DET@MIN,3,21,27,MIN,DET,2,10,10,(6:27) (Shotgun) C.Ponder pass short left to A.Peterson to DET 10 for no gain (E.Coleman).,13,3,2012 -20121111_DET@MIN,3,20,49,MIN,DET,3,10,10,(5:49) (Shotgun) C.Ponder pass short middle to T.Gerhart to DET 5 for 5 yards (J.Lacey).,13,3,2012 -20121111_DET@MIN,3,20,14,MIN,DET,4,5,5,(5:14) B.Walsh 23 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,3,2012 -20121111_DET@MIN,3,20,14,MIN,DET,,,5,B.Walsh kicks 65 yards from MIN 35 to DET 0. S.Logan to DET 19 for 19 yards (T.McKenzie).,16,3,2012 -20121111_DET@MIN,3,20,5,DET,MIN,1,10,81,(5:05) M.Stafford pass deep left to C.Johnson to DET 39 for 20 yards (A.Jefferson; J.Brinkley).,3,16,2012 -20121111_DET@MIN,3,19,27,DET,MIN,1,10,61,(4:27) R.Reiff reported in as eligible. M.Stafford pass deep middle to C.Johnson to MIN 11 for 50 yards (J.Sanford).,3,16,2012 -20121111_DET@MIN,3,18,36,DET,MIN,1,10,16,(3:36) (Shotgun) M.Stafford FUMBLES (Aborted) at MIN 16 and recovers at MIN 16. M.Stafford to MIN 16 for no gain (F.Evans).,3,16,2012 -20121111_DET@MIN,3,18,1,DET,MIN,2,15,16,(3:01) (Shotgun) M.Stafford pass deep right to B.Pettigrew for 16 yards TOUCHDOWN.,3,16,2012 -20121111_DET@MIN,3,18,1,DET,MIN,,,16,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,3,16,2012 -20121111_DET@MIN,3,18,1,DET,MIN,,,16,J.Hanson kicks 35 yards from DET 35 to MIN 30. C.Ballard to MIN 36 for 6 yards (Team). FUMBLES (Team) and recovers at MIN 39. C.Ballard to MIN 38 for -1 yards (Team).,10,16,2012 -20121111_DET@MIN,3,17,54,MIN,DET,1,10,62,(2:54) C.Ponder pass short middle to A.Peterson to MIN 44 for 6 yards (L.Jackson).,16,10,2012 -20121111_DET@MIN,3,17,25,MIN,DET,2,4,56,(2:25) C.Ponder pass short right to J.Carlson to DET 45 for 11 yards (E.Coleman).,16,10,2012 -20121111_DET@MIN,3,17,55,MIN,DET,1,10,45,(2:55) A.Peterson right guard to DET 45 for no gain (D.Levy).,16,10,2012 -20121111_DET@MIN,3,16,9,MIN,DET,2,10,45,(1:09) C.Ponder pass short right to M.Jenkins to DET 37 for 8 yards (C.Houston).,16,10,2012 -20121111_DET@MIN,3,15,31,MIN,DET,3,2,37,(:31) (Shotgun) C.Ponder pass short middle to K.Rudolph to DET 24 for 13 yards (E.Coleman).,16,10,2012 -20121111_DET@MIN,4,15,0,MIN,DET,1,10,24,(15:00) C.Ponder pass incomplete deep right to J.Simpson.,16,10,2012 -20121111_DET@MIN,4,14,55,MIN,DET,2,10,24,(14:55) A.Peterson up the middle to DET 20 for 4 yards (E.Coleman; SamL.Hill).,16,10,2012 -20121111_DET@MIN,4,14,23,MIN,DET,3,6,20,(14:23) (Shotgun) C.Ponder pass short left to K.Rudolph for 20 yards TOUCHDOWN.,16,10,2012 -20121111_DET@MIN,4,14,23,MIN,DET,,,20,(Pass formation) TWO-POINT CONVERSION ATTEMPT. A.Peterson rushes up the middle. ATTEMPT SUCCEEDS.,16,10,2012 -20121111_DET@MIN,4,14,23,MIN,DET,,,20,B.Walsh kicks 66 yards from MIN 35 to DET -1. S.Logan Touchback.,24,10,2012 -20121111_DET@MIN,4,14,15,DET,MIN,1,10,80,(14:15) R.Reiff reported in as eligible. M.Leshoure right end to DET 23 for 3 yards (A.Winfield).,10,24,2012 -20121111_DET@MIN,4,13,42,DET,MIN,2,7,77,(13:42) (Shotgun) M.Stafford pass short middle to M.Leshoure to DET 28 for 5 yards (K.Williams). PENALTY on MIN-M.Raymond Unnecessary Roughness 15 yards enforced at DET 28.,10,24,2012 -20121111_DET@MIN,4,13,17,DET,MIN,1,10,57,(13:17) M.Leshoure right guard to MIN 43 for 14 yards (J.Robinson; M.Raymond).,10,24,2012 -20121111_DET@MIN,4,12,40,DET,MIN,1,10,43,(12:40) R.Reiff reported in as eligible. M.Stafford pass short left to C.Johnson to MIN 28 for 15 yards (A.Jefferson).,10,24,2012 -20121111_DET@MIN,4,11,59,DET,MIN,1,10,28,(11:59) (Shotgun) M.Stafford pass deep middle to C.Johnson to MIN 3 for 25 yards (Team). PENALTY on MIN-J.Brinkley Unnecessary Roughness 2 yards enforced at MIN 3.,10,24,2012 -20121111_DET@MIN,4,11,34,DET,MIN,1,1,1,(11:34) M.Stafford pass short left to T.Young for 1 yard TOUCHDOWN.,10,24,2012 -20121111_DET@MIN,4,11,34,DET,MIN,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,10,24,2012 -20121111_DET@MIN,4,11,34,DET,MIN,,,1,J.Hanson kicks 63 yards from DET 35 to MIN 2. M.Sherels to MIN 21 for 19 yards (D.Carey).,17,24,2012 -20121111_DET@MIN,4,11,27,MIN,DET,1,10,79,(11:27) A.Peterson right tackle to MIN 25 for 4 yards (N.Fairley).,24,17,2012 -20121111_DET@MIN,4,10,54,MIN,DET,2,6,75,(10:54) A.Peterson right end to MIN 29 for 4 yards (J.Durant; L.Jackson).,24,17,2012 -20121111_DET@MIN,4,10,16,MIN,DET,3,2,71,(10:16) C.Ponder pass incomplete short left to K.Rudolph.,24,17,2012 -20121111_DET@MIN,4,10,11,MIN,DET,4,2,71,(10:11) C.Kluwe punts 54 yards to DET 17 Center-C.Loeffler. S.Logan pushed ob at DET 48 for 31 yards (C.Kluwe).,24,17,2012 -20121111_DET@MIN,4,9,58,DET,MIN,1,10,52,(9:58) (Shotgun) M.Leshoure left end pushed ob at MIN 47 for 5 yards (A.Jefferson). PENALTY on DET-J.Backus Offensive Holding 10 yards enforced at DET 48 - No Play.,17,24,2012 -20121111_DET@MIN,4,9,35,DET,MIN,1,20,62,(9:35) (Shotgun) M.Stafford pass incomplete short right to M.Leshoure.,17,24,2012 -20121111_DET@MIN,4,9,31,DET,MIN,2,20,62,(9:31) (Shotgun) M.Stafford pass incomplete short left to M.Leshoure.,17,24,2012 -20121111_DET@MIN,4,9,27,DET,MIN,3,20,62,(9:27) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson.,17,24,2012 -20121111_DET@MIN,4,9,21,DET,MIN,4,20,62,(9:21) N.Harris punts 37 yards to MIN 25 Center-D.Muhlbach fair catch by M.Sherels.,17,24,2012 -20121111_DET@MIN,4,9,13,MIN,DET,1,10,75,(9:13) A.Peterson left end to MIN 44 for 19 yards (R.Silva).,24,17,2012 -20121111_DET@MIN,4,8,37,MIN,DET,1,10,56,(8:37) PENALTY on MIN-C.Ponder Delay of Game 5 yards enforced at MIN 44 - No Play.,24,17,2012 -20121111_DET@MIN,4,8,17,MIN,DET,1,15,61,(8:17) A.Peterson right end for 61 yards TOUCHDOWN. DET-C.Houston was injured during the play. His return is Probable.,24,17,2012 -20121111_DET@MIN,4,8,17,MIN,DET,,,61,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,24,17,2012 -20121111_DET@MIN,4,8,17,MIN,DET,,,61,B.Walsh kicks 70 yards from MIN 35 to DET -5. S.Logan Touchback.,31,17,2012 -20121111_DET@MIN,4,8,6,DET,MIN,1,10,80,(8:06) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 40 for 20 yards (J.Sanford). FUMBLES (J.Sanford) RECOVERED by MIN-A.Winfield at DET 45. A.Winfield to DET 45 for no gain (R.Broyles).,17,31,2012 -20121111_DET@MIN,4,7,52,MIN,DET,1,10,45,(7:52) A.Peterson left guard to DET 24 for 21 yards (R.Silva).,31,17,2012 -20121111_DET@MIN,4,7,6,MIN,DET,1,10,24,(7:06) A.Peterson right guard to DET 22 for 2 yards (J.Durant).,31,17,2012 -20121111_DET@MIN,4,6,26,MIN,DET,2,8,22,(6:26) PENALTY on DET-SamL.Hill Encroachment 5 yards enforced at DET 22 - No Play.,31,17,2012 -20121111_DET@MIN,4,6,3,MIN,DET,2,3,17,(6:03) A.Peterson up the middle to DET 18 for -1 yards (N.Fairley).,31,17,2012 -20121111_DET@MIN,4,5,22,MIN,DET,3,4,18,(5:22) A.Peterson up the middle to DET 15 for 3 yards (D.Levy; SamL.Hill).,31,17,2012 -20121111_DET@MIN,4,4,39,MIN,DET,4,1,15,(4:39) B.Walsh 33 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,31,17,2012 -20121111_DET@MIN,4,4,39,MIN,DET,,,15,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,34,17,2012 -20121111_DET@MIN,4,4,36,DET,MIN,1,10,80,(4:36) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 31 for 11 yards (J.Robinson).,17,34,2012 -20121111_DET@MIN,4,4,13,DET,MIN,1,10,69,(4:13) (Shotgun) M.Stafford pass short middle to J.Bell to DET 39 for 8 yards (C.Greenway).,17,34,2012 -20121111_DET@MIN,4,3,48,DET,MIN,2,2,61,(3:48) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (E.Henderson).,17,34,2012 -20121111_DET@MIN,4,3,44,DET,MIN,3,2,61,(3:44) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 45 for 6 yards (E.Henderson).,17,34,2012 -20121111_DET@MIN,4,3,21,DET,MIN,1,10,55,(3:21) (Shotgun) M.Stafford pass short middle to J.Bell to MIN 43 for 12 yards (C.Greenway; A.Winfield).,17,34,2012 -20121111_DET@MIN,4,2,57,DET,MIN,1,10,43,(2:57) (Shotgun) M.Stafford pass short middle to J.Bell to MIN 41 for 2 yards (E.Henderson).,17,34,2012 -20121111_DET@MIN,4,2,33,DET,MIN,2,8,41,(2:33) (Shotgun) M.Stafford pass short middle to T.Young to MIN 30 for 11 yards (H.Smith).,17,34,2012 -20121111_DET@MIN,4,2,15,DET,MIN,1,10,30,(2:15) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,17,34,2012 -20121111_DET@MIN,4,2,10,DET,MIN,2,10,30,(2:10) (Shotgun) M.Stafford pass deep right to C.Johnson to MIN 11 for 19 yards (H.Smith).,17,34,2012 -20121111_DET@MIN,4,2,0,DET,MIN,1,10,11,(2:00) (Shotgun) M.Stafford pass short right to C.Johnson for 11 yards TOUCHDOWN.,17,34,2012 -20121111_DET@MIN,4,2,0,DET,MIN,,,11,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,17,34,2012 -20121111_DET@MIN,4,2,0,DET,MIN,,,11,J.Hanson kicks 38 yards from DET 35 to MIN 27. M.Sherels to MIN 33 for 6 yards (S.Logan).,24,34,2012 -20121111_DET@MIN,4,1,50,MIN,DET,1,10,67,(1:50) A.Peterson up the middle to MIN 36 for 3 yards (N.Suh).,34,24,2012 -20121111_DET@MIN,4,1,46,MIN,DET,2,7,64,(1:46) A.Peterson up the middle to MIN 36 for no gain (S.Tulloch).,34,24,2012 -20121111_DET@MIN,4,1,40,MIN,DET,3,7,64,(1:40) C.Ponder left end to MIN 34 for -2 yards (SamL.Hill). PENALTY on DET-SamL.Hill Unnecessary Roughness 15 yards enforced at MIN 34.,34,24,2012 -20121111_DET@MIN,4,1,34,MIN,DET,1,10,51,(1:34) C.Ponder kneels to MIN 48 for -1 yards.,34,24,2012 -20121111_DET@MIN,4,0,53,MIN,DET,2,11,52,(:53) C.Ponder kneels to MIN 47 for -1 yards.,34,24,2012 -20121111_DET@MIN,4,0,29,MIN,DET,3,12,53,(:29) C.Ponder kneels to MIN 46 for -1 yards.,34,24,2012 -20121111_DET@MIN,4,0,29,MIN,DET,,,53,                      ,34,24,2012 -20121111_BUF@NE,1,0,0,NE,BUF,,,53,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 -20121111_BUF@NE,1,60,0,BUF,NE,1,10,80,(15:00) (Shotgun) R.Fitzpatrick scrambles left tackle to BUF 26 for 6 yards (J.Mayo).,0,0,2012 -20121111_BUF@NE,1,59,24,BUF,NE,2,4,74,(14:24) F.Jackson up the middle to BUF 31 for 5 yards (B.Spikes; C.Jones).,0,0,2012 -20121111_BUF@NE,1,58,46,BUF,NE,1,10,69,(13:46) (Shotgun) F.Jackson up the middle to BUF 33 for 2 yards (B.Spikes).,0,0,2012 -20121111_BUF@NE,1,58,6,BUF,NE,2,8,67,(13:06) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 40 for 7 yards (A.Dennard).,0,0,2012 -20121111_BUF@NE,1,57,29,BUF,NE,3,1,60,(12:29) PENALTY on BUF-L.Smith False Start 5 yards enforced at BUF 40 - No Play.,0,0,2012 -20121111_BUF@NE,1,57,4,BUF,NE,3,6,65,(12:04) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to BUF 49 for 14 yards (A.Dennard). PENALTY on BUF-C.Glenn Offensive Holding 10 yards enforced at BUF 35 - No Play.,0,0,2012 -20121111_BUF@NE,1,56,37,BUF,NE,3,16,75,(11:37) (Shotgun) PENALTY on BUF-K.Urbik False Start 5 yards enforced at BUF 25 - No Play.,0,0,2012 -20121111_BUF@NE,1,56,19,BUF,NE,3,21,80,(11:19) (Shotgun) F.Jackson left tackle to BUF 29 for 9 yards (D.Hightower; J.Mayo).,0,0,2012 -20121111_BUF@NE,1,55,44,BUF,NE,4,12,71,(10:44) S.Powell punts 50 yards to NE 21 Center-G.Sanborn. J.Edelman to NE 27 for 6 yards (C.White; C.McIntyre).,0,0,2012 -20121111_BUF@NE,1,55,31,NE,BUF,1,10,73,(10:31) S.Ridley up the middle to NE 31 for 4 yards (K.Moore).,0,0,2012 -20121111_BUF@NE,1,55,4,NE,BUF,2,6,69,(10:04) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker (M.Dareus).,0,0,2012 -20121111_BUF@NE,1,54,59,NE,BUF,3,6,69,(9:59) (Shotgun) T.Brady pass short middle to W.Welker to NE 38 for 7 yards (G.Wilson; S.Gilmore). NE 83-Welker 103rd consecutive game with a reception.,0,0,2012 -20121111_BUF@NE,1,54,32,NE,BUF,1,10,62,(9:32) (No Huddle) S.Ridley right guard to NE 47 for 9 yards (L.McKelvin).,0,0,2012 -20121111_BUF@NE,1,54,8,NE,BUF,2,1,53,(9:08) (No Huddle) S.Ridley up the middle to 50 for 3 yards (M.Dareus).,0,0,2012 -20121111_BUF@NE,1,53,48,NE,BUF,1,10,50,(8:48) (No Huddle) T.Brady pass short middle to B.Lloyd to BUF 39 for 11 yards (S.Gilmore).,0,0,2012 -20121111_BUF@NE,1,53,20,NE,BUF,1,10,39,(8:20) (Shotgun) T.Brady pass short left to D.Branch to BUF 34 for 5 yards (J.Rogers).,0,0,2012 -20121111_BUF@NE,1,52,42,NE,BUF,2,5,34,(7:42) (No Huddle Shotgun) T.Brady pass incomplete deep right to W.Welker.,0,0,2012 -20121111_BUF@NE,1,52,38,NE,BUF,3,5,34,(7:38) (No Huddle Shotgun) T.Brady pass short left to D.Branch pushed ob at BUF 28 for 6 yards (L.McKelvin).,0,0,2012 -20121111_BUF@NE,1,52,23,NE,BUF,1,10,28,(7:23) (No Huddle Shotgun) S.Ridley right guard to BUF 25 for 3 yards (J.Rogers; B.Scott).,0,0,2012 -20121111_BUF@NE,1,51,53,NE,BUF,2,7,25,(6:53) S.Ridley right guard to BUF 25 for no gain (M.Dareus).,0,0,2012 -20121111_BUF@NE,1,51,15,NE,BUF,3,7,25,(6:15) (No Huddle Shotgun) T.Brady pass incomplete short right to D.Branch (L.McKelvin).,0,0,2012 -20121111_BUF@NE,1,51,9,NE,BUF,4,7,25,(6:09) S.Gostkowski 43 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121111_BUF@NE,1,51,9,NE,BUF,,,25,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,3,0,2012 -20121111_BUF@NE,1,51,4,BUF,NE,1,10,80,(6:04) (Shotgun) C.Spiller right end pushed ob at BUF 23 for 3 yards (A.Dennard).,0,3,2012 -20121111_BUF@NE,1,50,30,BUF,NE,2,7,77,(5:30) (Shotgun) R.Fitzpatrick sacked at BUF 13 for -10 yards (V.Wilfork). FUMBLES (V.Wilfork) RECOVERED by NE-J.Cunningham at BUF 13. J.Cunningham to BUF 13 for no gain (A.Levitre).,0,3,2012 -20121111_BUF@NE,1,50,24,NE,BUF,1,10,13,(5:24) (Shotgun) S.Ridley left end to BUF 9 for 4 yards (A.Carrington).,3,0,2012 -20121111_BUF@NE,1,49,49,NE,BUF,2,6,9,(4:49) (Shotgun) T.Brady pass incomplete short left to R.Gronkowski. PENALTY on BUF-G.Wilson Defensive Pass Interference 8 yards enforced at BUF 9 - No Play.,3,0,2012 -20121111_BUF@NE,1,49,45,NE,BUF,1,1,1,(4:45) N.Solder reported in as eligible. S.Ridley right tackle to BUF 3 for -2 yards (N.Barnett; G.Wilson).,3,0,2012 -20121111_BUF@NE,1,49,1,NE,BUF,2,3,3,(4:01) T.Brady pass incomplete short right to B.Lloyd. PENALTY on BUF-S.Gilmore Defensive Pass Interference 2 yards enforced at BUF 3 - No Play.,3,0,2012 -20121111_BUF@NE,1,48,58,NE,BUF,1,1,1,(3:58) (No Huddle) S.Ridley right tackle for 1 yard TOUCHDOWN.,3,0,2012 -20121111_BUF@NE,1,48,58,NE,BUF,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,3,0,2012 -20121111_BUF@NE,1,48,58,NE,BUF,,,1,S.Gostkowski kicks 73 yards from NE 35 to BUF -8. B.Smith Touchback.,10,0,2012 -20121111_BUF@NE,1,48,54,BUF,NE,1,10,80,(3:54) F.Jackson left tackle to BUF 24 for 4 yards. PENALTY on BUF-E.Wood Offensive Holding 10 yards enforced at BUF 20 - No Play.,0,10,2012 -20121111_BUF@NE,1,48,28,BUF,NE,1,20,90,(3:28) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones [J.Francis].,0,10,2012 -20121111_BUF@NE,1,48,25,BUF,NE,2,20,90,(3:25) R.Fitzpatrick pass short right to L.Smith to BUF 15 for 5 yards (B.Spikes).,0,10,2012 -20121111_BUF@NE,1,47,39,BUF,NE,3,15,85,(2:39) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to BUF 30 for 15 yards (T.Wilson; J.Mayo).,0,10,2012 -20121111_BUF@NE,1,46,54,BUF,NE,1,10,70,(1:54) C.Spiller right end pushed ob at BUF 37 for 7 yards (D.McCourty).,0,10,2012 -20121111_BUF@NE,1,46,20,BUF,NE,2,3,63,(1:20) F.Jackson up the middle to BUF 42 for 5 yards (J.Mayo; D.Hightower).,0,10,2012 -20121111_BUF@NE,1,45,35,BUF,NE,1,10,58,(:35) (Shotgun) R.Fitzpatrick pass deep left to D.Jones to NE 36 for 22 yards (A.Dennard).,0,10,2012 -20121111_BUF@NE,2,45,0,BUF,NE,1,10,36,(15:00) F.Jackson left tackle to NE 34 for 2 yards (V.Wilfork). PENALTY on NE-V.Wilfork Face Mask (15 Yards) 15 yards enforced at NE 34.,0,10,2012 -20121111_BUF@NE,2,44,34,BUF,NE,1,10,19,(14:34) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to NE 15 for 4 yards (B.Spikes).,0,10,2012 -20121111_BUF@NE,2,43,51,BUF,NE,2,6,15,(13:51) (Shotgun) C.Spiller right end to NE 11 for 4 yards (J.Mayo).,0,10,2012 -20121111_BUF@NE,2,43,7,BUF,NE,3,2,11,(13:07) (Shotgun) C.Spiller right tackle to NE 9 for 2 yards (J.Mayo). PENALTY on BUF-C.Hairston Offensive Holding 10 yards enforced at NE 11 - No Play.,0,10,2012 -20121111_BUF@NE,2,42,42,BUF,NE,3,12,21,(12:42) (Shotgun) R.Fitzpatrick sacked at NE 23 for -2 yards (R.Ninkovich).,0,10,2012 -20121111_BUF@NE,2,42,11,BUF,NE,4,14,23,(12:11) R.Lindell 41 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,10,2012 -20121111_BUF@NE,2,42,11,BUF,NE,,,23,R.Lindell kicks 65 yards from BUF 35 to NE 0. D.McCourty to NE 17 for 17 yards (R.Brooks).,3,10,2012 -20121111_BUF@NE,2,42,2,NE,BUF,1,10,83,(12:02) T.Brady pass incomplete short left to D.Branch.,10,3,2012 -20121111_BUF@NE,2,41,58,NE,BUF,2,10,83,(11:58) (Shotgun) T.Brady pass short right to W.Welker to NE 36 for 19 yards (L.McKelvin).,10,3,2012 -20121111_BUF@NE,2,41,24,NE,BUF,1,10,64,(11:24) (No Huddle Shotgun) T.Brady pass deep middle to R.Gronkowski to BUF 40 for 24 yards (D.Searcy).,10,3,2012 -20121111_BUF@NE,2,40,54,NE,BUF,1,10,40,(10:54) (No Huddle Shotgun) T.Brady pass short right to W.Welker ran ob at BUF 33 for 7 yards.,10,3,2012 -20121111_BUF@NE,2,40,35,NE,BUF,2,3,33,(10:35) (No Huddle) S.Vereen up the middle to BUF 37 for -4 yards (D.Searcy).,10,3,2012 -20121111_BUF@NE,2,39,59,NE,BUF,3,7,37,(9:59) (Shotgun) T.Brady pass short middle to D.Woodhead to BUF 22 for 15 yards (J.Rogers).,10,3,2012 -20121111_BUF@NE,2,39,35,NE,BUF,1,10,22,(9:35) (No Huddle Shotgun) T.Brady pass short right to D.Woodhead to BUF 15 for 7 yards (M.Dareus).,10,3,2012 -20121111_BUF@NE,2,39,13,NE,BUF,2,3,15,(9:13) (No Huddle) D.Woodhead up the middle for 15 yards TOUCHDOWN.,10,3,2012 -20121111_BUF@NE,2,39,13,NE,BUF,,,15,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,10,3,2012 -20121111_BUF@NE,2,39,13,NE,BUF,,,15,S.Gostkowski kicks 74 yards from NE 35 to BUF -9. L.McKelvin Touchback.,17,3,2012 -20121111_BUF@NE,2,39,9,BUF,NE,1,10,80,(9:09) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 22 for 2 yards (S.Gregory).,3,17,2012 -20121111_BUF@NE,2,38,36,BUF,NE,2,8,78,(8:36) (Shotgun) C.Spiller up the middle to BUF 34 for 12 yards (J.Mayo; B.Spikes).,3,17,2012 -20121111_BUF@NE,2,37,59,BUF,NE,1,10,66,(7:59) R.Fitzpatrick pass deep left to S.Chandler to NE 43 for 23 yards (J.Mayo; D.McCourty). BUF 14-Fitzpatrick now has 10006 career pass yards career pass yards as a Bill 5th Bill to reach that milestone.,3,17,2012 -20121111_BUF@NE,2,37,19,BUF,NE,1,10,43,(7:19) R.Fitzpatrick pass short middle to S.Chandler to NE 26 for 17 yards (D.Hightower).,3,17,2012 -20121111_BUF@NE,2,36,46,BUF,NE,1,10,26,(6:46) C.Spiller left end to NE 14 for 12 yards (K.Arrington; D.McCourty).,3,17,2012 -20121111_BUF@NE,2,36,9,BUF,NE,1,10,14,(6:09) F.Jackson left guard for 14 yards TOUCHDOWN.,3,17,2012 -20121111_BUF@NE,2,36,9,BUF,NE,,,14,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,3,17,2012 -20121111_BUF@NE,2,36,9,BUF,NE,,,14,R.Lindell kicks 66 yards from BUF 35 to NE -1. D.McCourty to NE 18 for 19 yards (C.White; R.Martin).,10,17,2012 -20121111_BUF@NE,2,35,56,NE,BUF,1,10,82,(5:56) T.Brady pass incomplete deep right to M.Hoomanawanui.,17,10,2012 -20121111_BUF@NE,2,35,50,NE,BUF,2,10,82,(5:50) (Shotgun) T.Brady pass incomplete short right to S.Ridley [K.Williams].,17,10,2012 -20121111_BUF@NE,2,35,46,NE,BUF,3,10,82,(5:46) (Shotgun) T.Brady pass incomplete deep right to J.Edelman. PENALTY on BUF-J.Byrd Defensive Pass Interference 17 yards enforced at NE 18 - No Play.,17,10,2012 -20121111_BUF@NE,2,35,40,NE,BUF,1,10,65,(5:40) S.Ridley left end to NE 36 for 1 yard (M.Williams).,17,10,2012 -20121111_BUF@NE,2,35,3,NE,BUF,2,9,64,(5:03) T.Brady pass short left to S.Vereen pushed ob at NE 47 for 11 yards (S.Gilmore). PENALTY on BUF-S.Gilmore Face Mask (15 Yards) 15 yards enforced at NE 47.,17,10,2012 -20121111_BUF@NE,2,34,42,NE,BUF,1,10,38,(4:42) T.Brady pass incomplete deep right to B.Lloyd. PENALTY on BUF-S.Gilmore Defensive Pass Interference 37 yards enforced at BUF 38 - No Play.,17,10,2012 -20121111_BUF@NE,2,34,33,NE,BUF,1,1,1,(4:33) N.Solder reported in as eligible. S.Ridley right end to BUF 2 for -1 yards (A.Carrington).,17,10,2012 -20121111_BUF@NE,2,33,58,NE,BUF,2,2,2,(3:58) N.Solder reported in as eligible. T.Brady pass short right to R.Gronkowski for 2 yards TOUCHDOWN. NE 12-Brady 41st straight regular season game with a TD pass 3rd longest all-time.,17,10,2012 -20121111_BUF@NE,2,33,58,NE,BUF,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,17,10,2012 -20121111_BUF@NE,2,33,58,NE,BUF,,,2,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,24,10,2012 -20121111_BUF@NE,2,33,54,BUF,NE,1,10,80,(3:54) (Shotgun) F.Jackson up the middle to BUF 20 for no gain (K.Love; V.Wilfork).,10,24,2012 -20121111_BUF@NE,2,33,17,BUF,NE,2,10,80,(3:17) (Shotgun) R.Fitzpatrick pass short right to St.Johnson ran ob at BUF 34 for 14 yards.,10,24,2012 -20121111_BUF@NE,2,32,46,BUF,NE,1,10,66,(2:46) (Shotgun) F.Jackson up the middle to BUF 36 for 2 yards (J.Mayo; B.Spikes).,10,24,2012 -20121111_BUF@NE,2,32,1,BUF,NE,2,8,64,(2:01) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones.,10,24,2012 -20121111_BUF@NE,2,31,57,BUF,NE,3,8,64,(1:57) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to 50 for 14 yards (S.Gregory).,10,24,2012 -20121111_BUF@NE,2,31,28,BUF,NE,1,10,50,(1:28) (No Huddle Shotgun) R.Fitzpatrick pass short right to F.Jackson to NE 41 for 9 yards (B.Spikes).,10,24,2012 -20121111_BUF@NE,2,31,1,BUF,NE,2,1,41,(1:01) (No Huddle Shotgun) R.Fitzpatrick scrambles right end ran ob at NE 36 for 5 yards. PENALTY on NE-A.Dennard Unnecessary Roughness 15 yards enforced at NE 36.,10,24,2012 -20121111_BUF@NE,2,30,54,BUF,NE,1,10,21,(:54) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson.,10,24,2012 -20121111_BUF@NE,2,30,50,BUF,NE,2,10,21,(:50) (Shotgun) R.Fitzpatrick pass deep middle to D.Jones to NE 3 for 18 yards (D.McCourty; J.Mayo).,10,24,2012 -20121111_BUF@NE,2,30,41,BUF,NE,1,3,3,(:41) R.Fitzpatrick pass incomplete short right to St.Johnson.,10,24,2012 -20121111_BUF@NE,2,30,36,BUF,NE,2,3,3,(:36) R.Fitzpatrick pass short left to S.Chandler for 3 yards TOUCHDOWN.,10,24,2012 -20121111_BUF@NE,2,30,36,BUF,NE,,,3,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,10,24,2012 -20121111_BUF@NE,2,30,36,BUF,NE,,,3,R.Lindell kicks 71 yards from BUF 35 to NE -6. D.McCourty Touchback.,17,24,2012 -20121111_BUF@NE,2,30,31,NE,BUF,1,10,80,(:31) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,24,17,2012 -20121111_BUF@NE,2,30,27,NE,BUF,2,10,80,(:27) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 26 for 6 yards (N.Barnett).,24,17,2012 -20121111_BUF@NE,3,30,0,BUF,NE,,,80,R.Lindell kicks 68 yards from BUF 35 to NE -3. D.McCourty Touchback.,17,24,2012 -20121111_BUF@NE,3,30,0,NE,BUF,1,10,80,(15:00) (Shotgun) T.Brady pass incomplete deep left to W.Welker.,24,17,2012 -20121111_BUF@NE,3,29,56,NE,BUF,2,10,80,(14:56) S.Ridley up the middle to NE 35 for 15 yards (J.Byrd).,24,17,2012 -20121111_BUF@NE,3,29,31,NE,BUF,1,10,65,(14:31) (No Huddle Shotgun) T.Brady pass short left to R.Gronkowski to NE 40 for 5 yards (N.Barnett).,24,17,2012 -20121111_BUF@NE,3,29,6,NE,BUF,2,5,60,(14:06) (No Huddle) S.Ridley left guard to NE 44 for 4 yards (G.Wilson).,24,17,2012 -20121111_BUF@NE,3,28,44,NE,BUF,3,1,56,(13:44) (No Huddle) S.Ridley left end to NE 49 for 5 yards (N.Barnett).,24,17,2012 -20121111_BUF@NE,3,28,10,NE,BUF,1,10,51,(13:10) S.Ridley right tackle to BUF 47 for 4 yards (Sp.Johnson; A.Moats).,24,17,2012 -20121111_BUF@NE,3,28,10,NE,BUF,2,6,47,(13:10) T.Brady pass short right to B.Lloyd pushed ob at BUF 36 for 11 yards (S.Gilmore).,24,17,2012 -20121111_BUF@NE,3,27,24,NE,BUF,1,10,36,(12:24) (No Huddle) S.Vereen right guard to BUF 31 for 5 yards (K.Moore; G.Wilson).,24,17,2012 -20121111_BUF@NE,3,26,58,NE,BUF,2,5,31,(11:58) (No Huddle) S.Vereen left guard to BUF 31 for no gain (G.Wilson).,24,17,2012 -20121111_BUF@NE,3,26,18,NE,BUF,3,5,31,(11:18) (Shotgun) T.Brady sacked at BUF 38 for -7 yards (sack split by M.Dareus and K.Williams). NE-L.Mankins was injured during the play.,24,17,2012 -20121111_BUF@NE,3,25,59,NE,BUF,4,12,38,(10:59) Z.Mesko punts 25 yards to BUF 13 Center-D.Aiken fair catch by L.McKelvin.,24,17,2012 -20121111_BUF@NE,3,25,53,BUF,NE,1,10,87,(10:53) F.Jackson left end pushed ob at BUF 13 for no gain (S.Gregory).,17,24,2012 -20121111_BUF@NE,3,25,21,BUF,NE,2,10,87,(10:21) (Shotgun) R.Fitzpatrick sacked at BUF 7 for -6 yards (J.Cunningham).,17,24,2012 -20121111_BUF@NE,3,24,44,BUF,NE,3,16,93,(9:44) PENALTY on BUF-R.Fitzpatrick Delay of Game 3 yards enforced at BUF 7 - No Play.,17,24,2012 -20121111_BUF@NE,3,24,28,BUF,NE,3,19,96,(9:28) (Shotgun) F.Jackson left tackle to BUF 8 for 4 yards (J.Mayo; V.Wilfork).,17,24,2012 -20121111_BUF@NE,3,23,53,BUF,NE,4,15,92,(8:53) S.Powell punts 50 yards to NE 42 Center-G.Sanborn. J.Edelman to NE 46 for 4 yards (R.Brooks). PENALTY on BUF-R.Brooks Unnecessary Roughness 15 yards enforced at NE 46.,17,24,2012 -20121111_BUF@NE,3,23,44,NE,BUF,1,10,39,(8:44) (Shotgun) T.Brady pass short left to D.Branch to BUF 26 for 13 yards (J.Rogers).,24,17,2012 -20121111_BUF@NE,3,23,19,NE,BUF,1,10,26,(8:19) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to BUF 20 for 6 yards (N.Barnett).,24,17,2012 -20121111_BUF@NE,3,22,54,NE,BUF,2,4,20,(7:54) (No Huddle) S.Vereen left guard to BUF 18 for 2 yards (M.Williams).,24,17,2012 -20121111_BUF@NE,3,22,14,NE,BUF,3,2,18,(7:14) (Shotgun) T.Brady pass short middle to D.Woodhead for 18 yards TOUCHDOWN.,24,17,2012 -20121111_BUF@NE,3,22,14,NE,BUF,,,18,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,24,17,2012 -20121111_BUF@NE,3,22,14,NE,BUF,,,18,S.Gostkowski kicks 70 yards from NE 35 to BUF -5. L.McKelvin to BUF 16 for 21 yards (D.Martin).,31,17,2012 -20121111_BUF@NE,3,22,3,BUF,NE,1,10,84,(7:03) (Shotgun) R.Fitzpatrick pass deep middle to St.Johnson to BUF 35 for 19 yards (K.Arrington).,17,31,2012 -20121111_BUF@NE,3,21,22,BUF,NE,1,10,65,(6:22) R.Fitzpatrick pass short left to C.Spiller pushed ob at NE 45 for 20 yards (K.Arrington).,17,31,2012 -20121111_BUF@NE,3,20,46,BUF,NE,1,10,45,(5:46) (Shotgun) R.Fitzpatrick pass short right to D.Jones to NE 33 for 12 yards (S.Gregory; R.Ninkovich).,17,31,2012 -20121111_BUF@NE,3,20,2,BUF,NE,1,10,33,(5:02) (Shotgun) R.Fitzpatrick pass incomplete short right to F.Jackson.,17,31,2012 -20121111_BUF@NE,3,19,59,BUF,NE,2,10,33,(4:59) (Shotgun) C.Spiller up the middle to NE 27 for 6 yards (S.Gregory; D.Hightower).,17,31,2012 -20121111_BUF@NE,3,19,17,BUF,NE,3,4,27,(4:17) (Shotgun) R.Fitzpatrick pass incomplete deep left to D.Jones.,17,31,2012 -20121111_BUF@NE,3,19,12,BUF,NE,4,4,27,(4:12) (Shotgun) R.Fitzpatrick pass short right to St.Johnson pushed ob at NE 14 for 13 yards (A.Dennard).,17,31,2012 -20121111_BUF@NE,3,18,39,BUF,NE,1,10,14,(3:39) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson pushed ob at NE 2 for 12 yards (K.Arrington). Penalty on NE-B.Spikes Encroachment declined.,17,31,2012 -20121111_BUF@NE,3,18,15,BUF,NE,1,2,2,(3:15) PENALTY on BUF-C.Glenn False Start 5 yards enforced at NE 2 - No Play.,17,31,2012 -20121111_BUF@NE,3,17,59,BUF,NE,1,7,7,(2:59) R.Fitzpatrick pass short middle to D.Jones to NE 1 for 6 yards (A.Dennard).,17,31,2012 -20121111_BUF@NE,3,17,21,BUF,NE,2,1,1,(2:21) F.Jackson left guard to NE 1 for no gain (D.McCourty).,17,31,2012 -20121111_BUF@NE,3,16,40,BUF,NE,3,1,1,(1:40) F.Jackson left tackle for 1 yard TOUCHDOWN.,17,31,2012 -20121111_BUF@NE,3,16,40,BUF,NE,,,1,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,17,31,2012 -20121111_BUF@NE,3,16,40,BUF,NE,,,1,R.Lindell kicks 72 yards from BUF 35 to NE -7. S.Vereen Touchback. Only 6 officials,24,31,2012 -20121111_BUF@NE,3,16,37,NE,BUF,1,10,80,(1:37) T.Brady pass short right to D.Branch pushed ob at NE 26 for 6 yards (L.McKelvin).,31,24,2012 -20121111_BUF@NE,3,16,21,NE,BUF,2,4,74,(1:21) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to NE 38 for 12 yards (N.Barnett; J.Rogers).,31,24,2012 -20121111_BUF@NE,3,15,55,NE,BUF,1,10,62,(:55) (No Huddle) S.Ridley right guard to BUF 38 for 24 yards (J.Rogers).,31,24,2012 -20121111_BUF@NE,3,15,20,NE,BUF,1,10,38,(:20) (No Huddle Shotgun) S.Vereen right guard to BUF 36 for 2 yards (K.Moore; B.Scott).,31,24,2012 -20121111_BUF@NE,4,15,0,NE,BUF,2,8,36,(15:00) (Shotgun) T.Brady pass incomplete short middle to D.Woodhead.,31,24,2012 -20121111_BUF@NE,4,14,57,NE,BUF,3,8,36,(14:57) (Shotgun) T.Brady pass short left to B.Lloyd to BUF 30 for 6 yards (S.Gilmore).,31,24,2012 -20121111_BUF@NE,4,14,15,NE,BUF,4,2,30,(14:15) S.Gostkowski 48 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,31,24,2012 -20121111_BUF@NE,4,14,15,NE,BUF,,,30,S.Gostkowski kicks 66 yards from NE 35 to BUF -1. B.Smith to BUF 18 for 19 yards (M.Slater; N.Ebner). PENALTY on BUF-T.Choice Illegal Block Above the Waist 6 yards enforced at BUF 12.,34,24,2012 -20121111_BUF@NE,4,14,5,BUF,NE,1,10,94,(14:05) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler [R.Ninkovich].,24,34,2012 -20121111_BUF@NE,4,14,1,BUF,NE,2,10,94,(14:01) (Shotgun) F.Jackson left end to BUF 15 for 9 yards (J.Mayo).,24,34,2012 -20121111_BUF@NE,4,13,20,BUF,NE,3,1,85,(13:20) F.Jackson up the middle to BUF 17 for 2 yards (B.Spikes; J.Francis).,24,34,2012 -20121111_BUF@NE,4,12,39,BUF,NE,1,10,83,(12:39) (Shotgun) F.Jackson right tackle to BUF 30 for 13 yards (D.McCourty).,24,34,2012 -20121111_BUF@NE,4,11,59,BUF,NE,1,10,70,(11:59) R.Fitzpatrick pass short left to T.Graham to BUF 41 for 11 yards (K.Arrington; B.Spikes).,24,34,2012 -20121111_BUF@NE,4,11,19,BUF,NE,1,10,59,(11:19) (Shotgun) C.Spiller up the middle to BUF 42 for 1 yard (R.Ninkovich; B.Spikes).,24,34,2012 -20121111_BUF@NE,4,10,40,BUF,NE,2,9,58,(10:40) (Shotgun) R.Fitzpatrick pass incomplete short middle to C.Spiller [J.Cunningham]. PENALTY on NE-J.Cunningham Encroachment 5 yards enforced at BUF 42 - No Play.,24,34,2012 -20121111_BUF@NE,4,10,36,BUF,NE,2,4,53,(10:36) R.Fitzpatrick pass incomplete short right to S.Chandler [B.Spikes]. PENALTY on NE-B.Spikes Roughing the Passer 15 yards enforced at BUF 47 - No Play.,24,34,2012 -20121111_BUF@NE,4,10,33,BUF,NE,1,10,38,(10:33) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to NE 13 for 25 yards (K.Arrington; D.McCourty).,24,34,2012 -20121111_BUF@NE,4,9,43,BUF,NE,1,10,13,(9:43) F.Jackson left guard to NE 1 for 12 yards (D.McCourty). New England challenged the fumble ruling and the play was REVERSED. F.Jackson left guard to NE 1 for 12 yards (D.McCourty). FUMBLES (D.McCourty) RECOVERED by NE-K.Arrington at NE 1. K.Arrington to NE 1 for no gain (F.Jackson).,24,34,2012 -20121111_BUF@NE,4,9,35,NE,BUF,1,10,99,(9:35) (Shotgun) T.Brady pass incomplete short right to W.Welker (M.Dareus).,34,24,2012 -20121111_BUF@NE,4,9,32,NE,BUF,2,10,99,(9:32) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,34,24,2012 -20121111_BUF@NE,4,9,28,NE,BUF,3,10,99,(9:28) (Shotgun) T.Brady pass incomplete short left to D.Branch [K.Williams].,34,24,2012 -20121111_BUF@NE,4,9,24,NE,BUF,4,10,99,(9:24) Z.Mesko punts 44 yards to NE 45 Center-D.Aiken downed by NE-M.Cole.,34,24,2012 -20121111_BUF@NE,4,9,16,BUF,NE,1,10,45,(9:16) C.Spiller right tackle pushed ob at NE 31 for 14 yards (J.Mayo). PENALTY on NE-J.Mayo Unnecessary Roughness 15 yards enforced at NE 31.,24,34,2012 -20121111_BUF@NE,4,8,55,BUF,NE,1,10,16,(8:55) C.Spiller left end ran ob at NE 5 for 11 yards.,24,34,2012 -20121111_BUF@NE,4,8,24,BUF,NE,1,5,5,(8:24) R.Fitzpatrick pass incomplete short left to St.Johnson (K.Arrington).,24,34,2012 -20121111_BUF@NE,4,8,21,BUF,NE,2,5,5,(8:21) (Shotgun) F.Jackson up the middle to NE 5 for no gain. PENALTY on NE-R.Ninkovich Encroachment 3 yards enforced at NE 5 - No Play.,24,34,2012 -20121111_BUF@NE,4,7,55,BUF,NE,2,2,2,(7:55) (Shotgun) R.Fitzpatrick pass incomplete short middle to B.Smith (B.Spikes).,24,34,2012 -20121111_BUF@NE,4,7,51,BUF,NE,3,2,2,(7:51) R.Fitzpatrick pass short middle to D.Jones for 2 yards TOUCHDOWN.,24,34,2012 -20121111_BUF@NE,4,7,51,BUF,NE,,,2,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,24,34,2012 -20121111_BUF@NE,4,7,51,BUF,NE,,,2,R.Lindell kicks 65 yards from BUF 35 to NE 0. J.Edelman to NE 32 for 32 yards (R.Brooks).,31,34,2012 -20121111_BUF@NE,4,7,40,NE,BUF,1,10,68,(7:40) S.Ridley right guard to NE 37 for 5 yards (M.Dareus).,34,31,2012 -20121111_BUF@NE,4,7,15,NE,BUF,2,5,63,(7:15) (Shotgun) S.Ridley right end to NE 37 for no gain (Sp.Johnson).,34,31,2012 -20121111_BUF@NE,4,6,38,NE,BUF,3,5,63,(6:38) (Shotgun) T.Brady pass short middle to B.Lloyd to NE 49 for 12 yards (J.Byrd).,34,31,2012 -20121111_BUF@NE,4,6,3,NE,BUF,1,10,51,(6:03) S.Ridley left tackle to BUF 49 for 2 yards (M.Williams).,34,31,2012 -20121111_BUF@NE,4,5,31,NE,BUF,2,8,49,(5:31) (Shotgun) S.Ridley up the middle to BUF 40 for 9 yards (J.Byrd; B.Scott).,34,31,2012 -20121111_BUF@NE,4,4,57,NE,BUF,1,10,40,(4:57) T.Brady pass incomplete deep middle to R.Gronkowski.,34,31,2012 -20121111_BUF@NE,4,4,50,NE,BUF,2,10,40,(4:50) (Shotgun) T.Brady pass short right to W.Welker to BUF 17 for 23 yards (J.Byrd).,34,31,2012 -20121111_BUF@NE,4,4,39,NE,BUF,1,10,17,(4:39) S.Ridley left guard to BUF 17 for no gain (B.Scott).,34,31,2012 -20121111_BUF@NE,4,3,56,NE,BUF,2,10,17,(3:56) (Shotgun) T.Brady pass short left to B.Lloyd to BUF 12 for 5 yards (S.Gilmore).,34,31,2012 -20121111_BUF@NE,4,3,14,NE,BUF,3,5,12,(3:14) (Shotgun) S.Ridley up the middle to BUF 2 for 10 yards (D.Searcy).,34,31,2012 -20121111_BUF@NE,4,2,54,NE,BUF,1,2,2,(2:54) S.Ridley right tackle to BUF 4 for -2 yards (K.Williams).,34,31,2012 -20121111_BUF@NE,4,2,21,NE,BUF,2,4,4,(2:21) PENALTY on NE-S.Ridley False Start 5 yards enforced at BUF 4 - No Play.,34,31,2012 -20121111_BUF@NE,4,2,21,NE,BUF,2,9,9,(2:21) T.Brady pass incomplete short middle to D.Branch.,34,31,2012 -20121111_BUF@NE,4,2,15,NE,BUF,3,9,9,(2:15) (Shotgun) T.Brady pass incomplete short right to D.Woodhead.,34,31,2012 -20121111_BUF@NE,4,2,10,NE,BUF,4,9,9,(2:10) S.Gostkowski 27 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,34,31,2012 -20121111_BUF@NE,4,2,10,NE,BUF,,,9,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,37,31,2012 -20121111_BUF@NE,4,2,6,BUF,NE,1,10,80,(2:06) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler.,31,37,2012 -20121111_BUF@NE,4,2,1,BUF,NE,2,10,80,(2:01) (Shotgun) R.Fitzpatrick scrambles left end ran ob at BUF 21 for 1 yard.,31,37,2012 -20121111_BUF@NE,4,1,56,BUF,NE,3,9,79,(1:56) (Shotgun) R.Fitzpatrick pass short right to St.Johnson ran ob at BUF 42 for 21 yards.,31,37,2012 -20121111_BUF@NE,4,1,50,BUF,NE,1,10,58,(1:50) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to NE 44 for 14 yards (R.Ninkovich).,31,37,2012 -20121111_BUF@NE,4,1,24,BUF,NE,1,10,44,(1:24) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep left to D.Jones. BUF-D.Jones was injured during the play.,31,37,2012 -20121111_BUF@NE,4,1,15,BUF,NE,2,10,44,(1:15) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to NE 35 for 9 yards (B.Spikes). FUMBLES (B.Spikes) recovered by BUF-C.McIntyre at NE 37. BUF-F.Jackson was injured during the play.,31,37,2012 -20121111_BUF@NE,4,0,59,BUF,NE,3,3,37,(:59) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to NE 29 for 8 yards (T.Wilson; M.Cole).,31,37,2012 -20121111_BUF@NE,4,0,39,BUF,NE,1,10,29,(:39) (No Huddle Shotgun) R.Fitzpatrick pass short left to C.Spiller ran ob at NE 15 for 14 yards.,31,37,2012 -20121111_BUF@NE,4,0,33,BUF,NE,1,10,15,(:33) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler.,31,37,2012 -20121111_BUF@NE,4,0,28,BUF,NE,2,10,15,(:28) (Shotgun) R.Fitzpatrick pass deep right intended for T.Graham INTERCEPTED by D.McCourty at NE -3. Touchback.,31,37,2012 -20121111_BUF@NE,4,0,23,NE,BUF,1,10,80,(:23) T.Brady kneels dead ball declared at NE 19 for -1 yards.,37,31,2012 -20121111_BUF@NE,4,0,23,NE,BUF,,,80,                      ,37,31,2012 -20121111_ATL@NO,1,0,0,NO,ATL,,,80,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,0,0,2012 -20121111_ATL@NO,1,60,0,ATL,NO,1,10,80,(15:00) M.Turner left guard to ATL 17 for -3 yards (D.Hawthorne).,0,0,2012 -20121111_ATL@NO,1,59,22,ATL,NO,2,13,83,(14:22) M.Ryan pass short right to R.White to ATL 20 for 3 yards (M.Jenkins). Pass 3 YAC 0,0,0,2012 -20121111_ATL@NO,1,58,42,ATL,NO,3,10,80,(13:42) (Shotgun) M.Ryan pass short left to R.White to ATL 31 for 11 yards (C.Lofton). Pass 11 YAC 0,0,0,2012 -20121111_ATL@NO,1,58,12,ATL,NO,1,10,69,(13:12) M.Ryan pass short middle to T.Gonzalez to 50 for 19 yards (D.Hawthorne). Pass 15 YAC 4,0,0,2012 -20121111_ATL@NO,1,57,39,ATL,NO,1,10,50,(12:39) M.Ryan pass deep right to R.White pushed ob at NO 1 for 49 yards (R.Harper). Pass 46 YAC 3,0,0,2012 -20121111_ATL@NO,1,57,18,ATL,NO,1,1,1,(12:18) M.Turner left tackle to NO 1 for no gain (T.Johnson; C.Lofton).,0,0,2012 -20121111_ATL@NO,1,56,43,ATL,NO,2,1,1,(11:43) M.Ryan pass short left to M.Johnson for 1 yard TOUCHDOWN. Pass 1 YAC 0,0,0,2012 -20121111_ATL@NO,1,56,43,ATL,NO,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121111_ATL@NO,1,56,43,ATL,NO,,,1,M.Bosher kicks 61 yards from ATL 35 to NO 4. T.Cadet to NO 24 for 20 yards (R.McClain).,7,0,2012 -20121111_ATL@NO,1,56,33,NO,ATL,1,10,76,(11:33) (Shotgun) D.Brees pass short right intended for M.Colston INTERCEPTED by A.Samuel at NO 25. A.Samuel to NO 12 for 13 yards (M.Colston). PENALTY on ATL-A.Samuel Unsportsmanlike Conduct 15 yards enforced at NO 12. Penalty was for excessive celebration.,0,7,2012 -20121111_ATL@NO,1,56,26,ATL,NO,1,10,27,(11:26) M.Turner left end to NO 24 for 3 yards (P.Robinson; W.Smith).,7,0,2012 -20121111_ATL@NO,1,55,48,ATL,NO,2,7,24,(10:48) M.Ryan pass short right to J.Snelling to NO 18 for 6 yards (M.Jenkins; D.Hawthorne). Pass 2 YAC 4,7,0,2012 -20121111_ATL@NO,1,55,6,ATL,NO,3,1,18,(10:06) M.Turner right tackle to NO 19 for -1 yards (C.White).,7,0,2012 -20121111_ATL@NO,1,54,24,ATL,NO,4,2,19,(9:24) M.Bryant 37 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 -20121111_ATL@NO,1,54,24,ATL,NO,,,19,M.Bosher kicks 68 yards from ATL 35 to NO -3. T.Cadet to NO 22 for 25 yards (A.Smith).,10,0,2012 -20121111_ATL@NO,1,54,14,NO,ATL,1,10,78,(9:14) M.Ingram right guard to NO 27 for 5 yards (A.Dent).,0,10,2012 -20121111_ATL@NO,1,53,42,NO,ATL,2,5,73,(8:42) D.Brees pass short left to M.Colston to NO 34 for 7 yards (D.Robinson). Pass 6 YAC 1,0,10,2012 -20121111_ATL@NO,1,53,10,NO,ATL,1,10,66,(8:10) M.Ingram left tackle to NO 42 for 8 yards (M.Peterson).,0,10,2012 -20121111_ATL@NO,1,52,38,NO,ATL,2,2,58,(7:38) (Shotgun) P.Thomas left guard to NO 44 for 2 yards (V.Walker; W.Moore).,0,10,2012 -20121111_ATL@NO,1,52,9,NO,ATL,1,10,56,(7:09) D.Brees pass incomplete short right to M.Colston.,0,10,2012 -20121111_ATL@NO,1,52,3,NO,ATL,2,10,56,(7:03) C.Ivory right end for 56 yards TOUCHDOWN.,0,10,2012 -20121111_ATL@NO,1,52,3,NO,ATL,,,56,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,10,2012 -20121111_ATL@NO,1,52,3,NO,ATL,,,56,T.Morstead kicks 73 yards from NO 35 to ATL -8. Jz. Rodgers Touchback.,7,10,2012 -20121111_ATL@NO,1,51,49,ATL,NO,1,10,80,(6:49) M.Ryan pass short right to R.White to ATL 31 for 11 yards (M.Jenkins; J.Greer). Pass 6 YAC 5,10,7,2012 -20121111_ATL@NO,1,51,10,ATL,NO,1,10,69,(6:10) M.Ryan pass short left to J.Jones to ATL 42 for 11 yards (R.Harper). Pass 5 YAC 6,10,7,2012 -20121111_ATL@NO,1,50,32,ATL,NO,1,10,58,(5:32) M.Turner left guard to ATL 48 for 6 yards (C.Lofton).,10,7,2012 -20121111_ATL@NO,1,49,51,ATL,NO,2,4,52,(4:51) (Shotgun) M.Ryan pass short right to J.Jones to NO 49 for 3 yards (C.Jordan). Pass -1 YAC 4,10,7,2012 -20121111_ATL@NO,1,49,8,ATL,NO,3,1,49,(4:08) M.Ryan pass incomplete short right to J.Snelling [T.McBride].,10,7,2012 -20121111_ATL@NO,1,49,4,ATL,NO,4,1,49,(4:04) M.Bosher punts 39 yards to NO 10 Center-J.Harris fair catch by L.Moore.,10,7,2012 -20121111_ATL@NO,1,48,56,NO,ATL,1,10,90,(3:56) M.Ingram right guard to NO 15 for 5 yards (W.Moore).,7,10,2012 -20121111_ATL@NO,1,48,22,NO,ATL,2,5,85,(3:22) (Shotgun) D.Brees pass short right to J.Graham to NO 28 for 13 yards (A.Samuel). Pass 8 YAC 5,7,10,2012 -20121111_ATL@NO,1,47,42,NO,ATL,1,10,72,(2:42) D.Brees pass deep left to L.Moore to NO 47 for 19 yards (D.Robinson). Pass 16 YAC 3,7,10,2012 -20121111_ATL@NO,1,47,4,NO,ATL,1,10,53,(2:04) P.Thomas left guard to 50 for 3 yards (M.Peterson).,7,10,2012 -20121111_ATL@NO,1,46,27,NO,ATL,2,7,50,(1:27) C.Ivory right end to ATL 47 for 3 yards (T.DeCoud; M.Peterson).,7,10,2012 -20121111_ATL@NO,1,45,48,NO,ATL,3,4,47,(:48) (Shotgun) D.Brees pass short left to L.Moore pushed ob at ATL 40 for 7 yards (R.McClain). Pass 8 YAC -1,7,10,2012 -20121111_ATL@NO,1,45,21,NO,ATL,1,10,40,(:21) (Shotgun) D.Brees pass short left to T.Cadet to ATL 30 for 10 yards (T.DeCoud; V.Walker). Pass -4 YAC 14 INJURY UPDATE - ATL 11 J.Jones leg injury questionable.,7,10,2012 -20121111_ATL@NO,2,45,0,NO,ATL,1,10,30,(15:00) M.Ingram right guard to ATL 24 for 6 yards (S.Nicholas).,7,10,2012 -20121111_ATL@NO,2,44,28,NO,ATL,2,4,24,(14:28) M.Ingram left end to ATL 16 for 8 yards (W.Moore; A.Dent). PENALTY on NO-E.Olsen Personal Foul 15 yards enforced between downs.,7,10,2012 -20121111_ATL@NO,2,43,58,NO,ATL,1,10,31,(13:58) D.Brees pass short right to L.Moore to ATL 29 for 2 yards (R.McClain). Pass -8 YAC 10,7,10,2012 -20121111_ATL@NO,2,43,33,NO,ATL,2,8,29,(13:33) (Shotgun) D.Brees pass deep right to J.Graham for 29 yards TOUCHDOWN. Pass 19 YAC 10,7,10,2012 -20121111_ATL@NO,2,43,33,NO,ATL,,,29,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,10,2012 -20121111_ATL@NO,2,43,33,NO,ATL,,,29,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,14,10,2012 -20121111_ATL@NO,2,43,33,ATL,NO,1,10,80,(13:33) M.Turner right end to ATL 29 for 9 yards (J.Casillas; R.Harper).,10,14,2012 -20121111_ATL@NO,2,43,3,ATL,NO,2,1,71,(13:03) M.Turner right end to ATL 30 for 1 yard (B.Bunkley).,10,14,2012 -20121111_ATL@NO,2,42,19,ATL,NO,1,10,70,(12:19) Jz. Rodgers right tackle to ATL 33 for 3 yards (T.McBride).,10,14,2012 -20121111_ATL@NO,2,41,41,ATL,NO,2,7,67,(11:41) (Shotgun) M.Ryan pass incomplete short right to R.White (R.Harper).,10,14,2012 -20121111_ATL@NO,2,41,37,ATL,NO,3,7,67,(11:37) (Shotgun) M.Ryan pass short middle to T.Gonzalez to ATL 45 for 12 yards (M.Jenkins) [W.Smith]. Pass 12 YAC 0,10,14,2012 -20121111_ATL@NO,2,40,58,ATL,NO,1,10,55,(10:58) (Shotgun) M.Ryan pass short left to Jz. Rodgers to ATL 46 for 1 yard (W.Smith). Pass -5 YAC 6,10,14,2012 -20121111_ATL@NO,2,40,20,ATL,NO,2,9,54,(10:20) M.Ryan pass short right to T.Gonzalez to NO 41 for 13 yards (W.Smith). Penalty on NO-C.Jordan Defensive Holding declined. Pass 11 YAC 2,10,14,2012 -20121111_ATL@NO,2,39,54,ATL,NO,1,10,41,(9:54) M.Ryan pass deep right to R.White pushed ob at NO 15 for 26 yards (R.Harper). Pass 25 YAC 1,10,14,2012 -20121111_ATL@NO,2,39,23,ATL,NO,1,10,15,(9:23) M.Turner right end to NO 16 for -1 yards (C.Jordan).,10,14,2012 -20121111_ATL@NO,2,38,43,ATL,NO,2,11,16,(8:43) M.Ryan pass short right to M.Palmer to NO 11 for 5 yards (D.Hawthorne). Pass 2 YAC 3,10,14,2012 -20121111_ATL@NO,2,38,3,ATL,NO,3,6,11,(8:03) (Shotgun) M.Ryan pass short middle to T.Gonzalez to NO 1 for 10 yards (R.Harper; C.Lofton). Pass 10 YAC 0,10,14,2012 -20121111_ATL@NO,2,37,19,ATL,NO,1,1,1,(7:19) M.Ryan pass incomplete short right to T.Gonzalez (R.Harper).,10,14,2012 -20121111_ATL@NO,2,37,13,ATL,NO,2,1,1,(7:13) M.Turner left guard to NO 2 for -1 yards (B.Bunkley; J.Vilma).,10,14,2012 -20121111_ATL@NO,2,36,32,ATL,NO,3,2,2,(6:32) (Shotgun) M.Ryan pass short left to T.Gonzalez for 2 yards TOUCHDOWN. Pass 2 YAC 0,10,14,2012 -20121111_ATL@NO,2,36,32,ATL,NO,,,2,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,14,2012 -20121111_ATL@NO,2,36,32,ATL,NO,,,2,M.Bosher kicks 74 yards from ATL 35 to NO -9. T.Cadet Touchback.,17,14,2012 -20121111_ATL@NO,2,36,27,NO,ATL,1,10,80,(6:27) M.Ingram right end to NO 22 for 2 yards (A.Samuel).,14,17,2012 -20121111_ATL@NO,2,35,51,NO,ATL,2,8,78,(5:51) C.Ivory left guard to NO 30 for 8 yards (W.Moore).,14,17,2012 -20121111_ATL@NO,2,35,16,NO,ATL,1,10,70,(5:16) D.Brees pass incomplete deep middle to D.Henderson.,14,17,2012 -20121111_ATL@NO,2,35,9,NO,ATL,2,10,70,(5:09) M.Ingram left guard to NO 36 for 6 yards (A.Dent).,14,17,2012 -20121111_ATL@NO,2,34,30,NO,ATL,3,4,64,(4:30) (Shotgun) PENALTY on NO-J.Graham False Start 5 yards enforced at NO 36 - No Play.,14,17,2012 -20121111_ATL@NO,2,34,10,NO,ATL,3,9,69,(4:10) (Shotgun) D.Brees pass incomplete short right to J.Graham.,14,17,2012 -20121111_ATL@NO,2,34,5,NO,ATL,4,9,69,(4:05) T.Morstead punts 51 yards to ATL 18 Center-J.Drescher. D.Franks to ATL 23 for 5 yards (C.White).,14,17,2012 -20121111_ATL@NO,2,33,54,ATL,NO,1,10,77,(3:54) M.Turner right end to ATL 25 for 2 yards (W.Smith).,17,14,2012 -20121111_ATL@NO,2,33,9,ATL,NO,2,8,75,(3:09) (Shotgun) M.Ryan pass incomplete short middle to H.Douglas (S.Ellis).,17,14,2012 -20121111_ATL@NO,2,33,5,ATL,NO,3,8,75,(3:05) (Shotgun) M.Ryan sacked at ATL 22 for -3 yards (M.Wilson).,17,14,2012 -20121111_ATL@NO,2,32,25,ATL,NO,4,11,78,(2:25) M.Bosher punts 52 yards to NO 26 Center-J.Harris fair catch by L.Moore. PENALTY on ATL Illegal Shift 5 yards enforced between downs.,17,14,2012 -20121111_ATL@NO,2,32,17,NO,ATL,1,10,69,(2:17) (Shotgun) P.Thomas left guard to NO 35 for 4 yards (S.Nicholas).,14,17,2012 -20121111_ATL@NO,2,32,0,NO,ATL,2,6,65,(2:00) (Shotgun) D.Brees pass incomplete deep left to L.Moore (D.Robinson).,14,17,2012 -20121111_ATL@NO,2,31,51,NO,ATL,3,6,65,(1:51) (Shotgun) D.Brees pass short left to J.Graham to ATL 47 for 18 yards (S.Nicholas). Pass 10 YAC 8,14,17,2012 -20121111_ATL@NO,2,31,27,NO,ATL,1,10,47,(1:27) (Shotgun) D.Brees pass incomplete short left to P.Thomas (C.Peters).,14,17,2012 -20121111_ATL@NO,2,31,23,NO,ATL,2,10,47,(1:23) (Shotgun) D.Brees pass short left to J.Graham to ATL 32 for 15 yards (W.Moore). Pass 8 YAC 7,14,17,2012 -20121111_ATL@NO,2,30,53,NO,ATL,1,10,32,(:53) (Shotgun) D.Brees pass short right to L.Moore pushed ob at ATL 20 for 12 yards (R.McClain). Pass 11 YAC 1,14,17,2012 -20121111_ATL@NO,2,30,47,NO,ATL,1,10,20,(:47) (Shotgun) D.Brees pass short middle to P.Thomas to ATL 14 for 6 yards (A.Dent). ATL-R.McClain was injured during the play. His return is Probable. Pass -3 YAC 9,14,17,2012 -20121111_ATL@NO,2,30,40,NO,ATL,2,4,14,(:40) (Shotgun) D.Brees pass short middle to J.Graham for 14 yards TOUCHDOWN. Pass 10 YAC 4,14,17,2012 -20121111_ATL@NO,2,30,40,NO,ATL,,,14,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,17,2012 -20121111_ATL@NO,2,30,40,NO,ATL,,,14,T.Morstead kicks 74 yards from NO 35 to ATL -9. Jz. Rodgers Touchback.,21,17,2012 -20121111_ATL@NO,2,30,34,ATL,NO,1,10,80,(:34) (Shotgun) M.Ryan sacked at ATL 18 for -2 yards (S.Ellis). PENALTY on ATL-T.McClure Offensive Holding 10 yards enforced at ATL 20 - No Play.,17,21,2012 -20121111_ATL@NO,2,30,29,ATL,NO,1,20,90,(:29) Jz. Rodgers right guard to ATL 18 for 8 yards (C.Lofton; R.Harper).,17,21,2012 -20121111_ATL@NO,3,30,0,ATL,NO,,,90,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,21,2012 -20121111_ATL@NO,3,30,0,NO,ATL,1,10,80,(15:00) C.Ivory left tackle to NO 22 for 2 yards (V.Walker; T.DeCoud).,21,17,2012 -20121111_ATL@NO,3,29,29,NO,ATL,2,8,78,(14:29) P.Thomas left tackle to NO 23 for 1 yard (J.Abraham; V.Walker).,21,17,2012 -20121111_ATL@NO,3,28,46,NO,ATL,3,7,77,(13:46) (Shotgun) PENALTY on NO-D.Brees False Start 5 yards enforced at NO 23 - No Play.,21,17,2012 -20121111_ATL@NO,3,28,30,NO,ATL,3,12,82,(13:30) (Shotgun) D.Brees pass incomplete deep right to L.Moore (A.Samuel).,21,17,2012 -20121111_ATL@NO,3,28,25,NO,ATL,4,12,82,(13:25) T.Morstead punts 57 yards to ATL 25 Center-J.Drescher. D.Franks to ATL 29 for 4 yards (R.Humber).,21,17,2012 -20121111_ATL@NO,3,28,12,ATL,NO,1,10,71,(13:12) (Shotgun) M.Ryan pass incomplete short right to H.Douglas (C.White).,17,21,2012 -20121111_ATL@NO,3,28,7,ATL,NO,2,10,71,(13:07) (Shotgun) M.Ryan pass incomplete short right to R.White.,17,21,2012 -20121111_ATL@NO,3,28,3,ATL,NO,3,10,71,(13:03) (Shotgun) M.Ryan pass deep middle intended for DJ.Davis INTERCEPTED by C.White at NO 19. C.White to NO 19 for no gain (DJ.Davis). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,17,21,2012 -20121111_ATL@NO,3,27,54,NO,ATL,1,10,81,(12:54) D.Brees pass short middle to M.Colston to NO 31 for 12 yards (D.Robinson). Pass 12 YAC 0,21,17,2012 -20121111_ATL@NO,3,27,20,NO,ATL,1,10,69,(12:20) M.Ingram right end pushed ob at NO 39 for 8 yards (T.DeCoud).,21,17,2012 -20121111_ATL@NO,3,26,51,NO,ATL,2,2,61,(11:51) D.Brees pass deep middle to L.Moore to ATL 32 for 29 yards (A.Dent). Pass 25 YAC 4,21,17,2012 -20121111_ATL@NO,3,26,15,NO,ATL,1,10,32,(11:15) M.Ingram left end to ATL 26 for 6 yards (D.Robinson).,21,17,2012 -20121111_ATL@NO,3,25,42,NO,ATL,2,4,26,(10:42) D.Brees pass short left to C.Ivory to ATL 13 for 13 yards (D.Robinson). Pass 0 YAC 13,21,17,2012 -20121111_ATL@NO,3,25,2,NO,ATL,1,10,13,(10:02) M.Ingram left guard to ATL 7 for 6 yards (W.Moore).,21,17,2012 -20121111_ATL@NO,3,24,27,NO,ATL,2,4,7,(9:27) D.Brees pass short left to M.Colston for 7 yards TOUCHDOWN. Pass 4 YAC 3,21,17,2012 -20121111_ATL@NO,3,24,27,NO,ATL,,,7,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,21,17,2012 -20121111_ATL@NO,3,24,27,NO,ATL,,,7,T.Morstead kicks 74 yards from NO 35 to ATL -9. Jz. Rodgers Touchback.,28,17,2012 -20121111_ATL@NO,3,24,23,ATL,NO,1,10,80,(9:23) M.Turner right guard to ATL 21 for 1 yard (J.Greer; M.Jenkins).,17,28,2012 -20121111_ATL@NO,3,23,42,ATL,NO,2,9,79,(8:42) (Shotgun) M.Ryan pass short right to R.White to ATL 28 for 7 yards (C.White). Pass 6 YAC 1,17,28,2012 -20121111_ATL@NO,3,23,6,ATL,NO,3,2,72,(8:06) (Shotgun) M.Ryan pass incomplete short right to R.White (C.Lofton).,17,28,2012 -20121111_ATL@NO,3,23,1,ATL,NO,4,2,72,(8:01) M.Bosher punts 49 yards to NO 23 Center-J.Harris. T.Cadet to NO 25 for 2 yards (J.Snelling).,17,28,2012 -20121111_ATL@NO,3,22,50,NO,ATL,1,10,75,(7:50) C.Ivory right end to NO 23 for -2 yards (R.Edwards).,28,17,2012 -20121111_ATL@NO,3,22,8,NO,ATL,2,12,77,(7:08) (Shotgun) D.Brees pass short left to T.Cadet ran ob at NO 29 for 6 yards (S.Nicholas). Pass -4 YAC 10,28,17,2012 -20121111_ATL@NO,3,21,34,NO,ATL,3,6,71,(6:34) (Shotgun) D.Brees pass short left to J.Graham to NO 40 for 11 yards (R.McClain). Pass 9 YAC 2,28,17,2012 -20121111_ATL@NO,3,20,57,NO,ATL,1,10,60,(5:57) M.Ingram right guard to NO 44 for 4 yards (T.DeCoud).,28,17,2012 -20121111_ATL@NO,3,20,25,NO,ATL,2,6,56,(5:25) M.Ingram right guard to NO 43 for -1 yards (K.Biermann; S.Nicholas).,28,17,2012 -20121111_ATL@NO,3,19,49,NO,ATL,3,7,57,(4:49) (Shotgun) D.Brees sacked at NO 37 for -6 yards (S.Nicholas).,28,17,2012 -20121111_ATL@NO,3,19,19,NO,ATL,4,13,63,(4:19) T.Morstead punts 46 yards to ATL 17 Center-J.Drescher fair catch by D.Franks. PENALTY on ATL-A.Smith Unnecessary Roughness 8 yards enforced at ATL 17.,28,17,2012 -20121111_ATL@NO,3,19,13,ATL,NO,1,10,91,(4:13) M.Ryan pass short right to T.Gonzalez to ATL 18 for 9 yards (J.Greer). Pass 2 YAC 7,17,28,2012 -20121111_ATL@NO,3,18,44,ATL,NO,2,1,82,(3:44) (Shotgun) M.Ryan pass incomplete short right to M.Turner.,17,28,2012 -20121111_ATL@NO,3,18,39,ATL,NO,3,1,82,(3:39) M.Ryan up the middle to ATL 19 for 1 yard (T.Johnson).,17,28,2012 -20121111_ATL@NO,3,18,3,ATL,NO,1,10,81,(3:03) M.Ryan scrambles right end to ATL 20 for 1 yard (J.Casillas).,17,28,2012 -20121111_ATL@NO,3,17,22,ATL,NO,2,9,80,(2:22) M.Ryan pass short right to T.Gonzalez to ATL 28 for 8 yards (J.Patrick). Pass 8 YAC 0,17,28,2012 -20121111_ATL@NO,3,16,47,ATL,NO,3,1,72,(1:47) PENALTY on ATL-DJ.Davis False Start 5 yards enforced at ATL 28 - No Play.,17,28,2012 -20121111_ATL@NO,3,16,22,ATL,NO,3,6,77,(1:22) (Shotgun) M.Ryan pass short right to J.Jones to ATL 32 for 9 yards (P.Robinson). Pass 9 YAC 0,17,28,2012 -20121111_ATL@NO,3,15,42,ATL,NO,1,10,68,(:42) (Shotgun) M.Ryan pass deep right to T.Gonzalez to NO 49 for 19 yards (M.Jenkins).,17,28,2012 -20121111_ATL@NO,3,15,40,ATL,NO,1,10,68,(:40) (Shotgun) M.Ryan pass deep middle to T.Gonzalez to NO 49 for 19 yards (M.Jenkins). Pass 18 YAC 1,17,28,2012 -20121111_ATL@NO,4,15,0,ATL,NO,1,10,49,(15:00) M.Ryan pass incomplete short left to H.Douglas (M.Jenkins). Atlanta challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),17,28,2012 -20121111_ATL@NO,4,14,55,ATL,NO,2,10,49,(14:55) M.Ryan pass incomplete short right (W.Smith). PENALTY on NO-W.Smith Illegal Use of Hands 5 yards enforced at NO 49 - No Play.,17,28,2012 -20121111_ATL@NO,4,14,51,ATL,NO,1,10,44,(14:51) M.Ryan pass deep left to H.Douglas to NO 21 for 23 yards (J.Patrick). Pass 18 YAC 5,17,28,2012 -20121111_ATL@NO,4,14,14,ATL,NO,1,10,21,(14:14) M.Ryan pass short right to Jz. Rodgers to NO 6 for 15 yards (R.Harper; M.Jenkins). Pass -2 YAC 17,17,28,2012 -20121111_ATL@NO,4,13,32,ATL,NO,1,6,6,(13:32) (Shotgun) M.Ryan pass short middle to T.Gonzalez for 6 yards TOUCHDOWN.,17,28,2012 -20121111_ATL@NO,4,13,32,ATL,NO,,,6,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,28,2012 -20121111_ATL@NO,4,13,32,ATL,NO,,,6,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,24,28,2012 -20121111_ATL@NO,4,13,27,NO,ATL,1,10,80,(13:27) D.Brees pass short left to L.Moore to NO 25 for 5 yards (A.Dent). Pass 5 YAC 0,28,24,2012 -20121111_ATL@NO,4,12,52,NO,ATL,2,5,75,(12:52) M.Ingram right tackle to NO 28 for 3 yards (A.Dent).,28,24,2012 -20121111_ATL@NO,4,12,6,NO,ATL,3,2,72,(12:06) (Shotgun) D.Brees pass incomplete short right to D.Henderson (R.McClain).,28,24,2012 -20121111_ATL@NO,4,12,0,NO,ATL,4,2,72,(12:00) T.Morstead punts 41 yards to ATL 31 Center-J.Drescher downed by NO-W.Herring.,28,24,2012 -20121111_ATL@NO,4,11,50,ATL,NO,1,10,69,(11:50) M.Ryan pass short left to T.Gonzalez to ATL 38 for 7 yards (P.Robinson). Pass 2 YAC 5,24,28,2012 -20121111_ATL@NO,4,11,10,ATL,NO,2,3,62,(11:10) M.Ryan pass deep right to J.Jones to NO 10 for 52 yards (R.Harper; J.Greer) [A.Hicks]. PENALTY on NO Unsportsmanlike Conduct 5 yards enforced at NO 10. Pass 38 YAC 14,24,28,2012 -20121111_ATL@NO,4,10,34,ATL,NO,1,5,5,(10:34) M.Turner left guard to NO 5 for no gain (T.Johnson).,24,28,2012 -20121111_ATL@NO,4,9,56,ATL,NO,2,5,5,(9:56) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to NO 2 for 3 yards (J.Casillas). Pass 0 YAC 3,24,28,2012 -20121111_ATL@NO,4,9,17,ATL,NO,3,2,2,(9:17) M.Ryan pass incomplete short left to J.Jones (M.Jenkins).,24,28,2012 -20121111_ATL@NO,4,9,12,ATL,NO,4,2,2,(9:12) M.Bryant 20 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,24,28,2012 -20121111_ATL@NO,4,9,12,ATL,NO,,,2,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,27,28,2012 -20121111_ATL@NO,4,9,8,NO,ATL,1,10,80,(9:08) D.Brees pass incomplete short right to M.Ingram.,28,27,2012 -20121111_ATL@NO,4,9,1,NO,ATL,2,10,80,(9:01) (Shotgun) D.Brees pass short middle to L.Moore to NO 37 for 17 yards (D.Robinson). Pass 10 YAC 7,28,27,2012 -20121111_ATL@NO,4,8,27,NO,ATL,1,10,63,(8:27) C.Ivory left guard to NO 41 for 4 yards (M.Peterson; A.Dent).,28,27,2012 -20121111_ATL@NO,4,7,50,NO,ATL,2,6,59,(7:50) C.Ivory left tackle to NO 42 for 1 yard (K.Biermann).,28,27,2012 -20121111_ATL@NO,4,7,9,NO,ATL,3,5,58,(7:09) (Shotgun) D.Brees pass deep left to J.Graham pushed ob at ATL 12 for 46 yards (T.DeCoud). Pass 23 YAC 23,28,27,2012 -20121111_ATL@NO,4,6,46,NO,ATL,1,10,12,(6:46) M.Ingram right guard to ATL 13 for -1 yards (D.Robinson; K.Biermann).,28,27,2012 -20121111_ATL@NO,4,6,9,NO,ATL,2,11,13,(6:09) (Shotgun) D.Brees pass incomplete short right to T.Cadet.,28,27,2012 -20121111_ATL@NO,4,6,5,NO,ATL,3,11,13,(6:05) (Shotgun) D.Brees pass incomplete short right to M.Colston (A.Samuel).,28,27,2012 -20121111_ATL@NO,4,5,59,NO,ATL,4,11,13,(5:59) G.Hartley 31 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,28,27,2012 -20121111_ATL@NO,4,5,59,NO,ATL,,,13,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,31,27,2012 -20121111_ATL@NO,4,5,54,ATL,NO,1,10,80,(5:54) M.Ryan pass short right to R.White to ATL 27 for 7 yards (J.Greer). Pass 4 YAC 3,27,31,2012 -20121111_ATL@NO,4,5,22,ATL,NO,2,3,73,(5:22) M.Ryan pass incomplete short right to R.White.,27,31,2012 -20121111_ATL@NO,4,5,19,ATL,NO,3,3,73,(5:19) (Shotgun) M.Ryan pass short left to Jz. Rodgers to ATL 41 for 14 yards (M.Jenkins). Pass 1 YAC 13,27,31,2012 -20121111_ATL@NO,4,4,40,ATL,NO,1,10,59,(4:40) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez (I.Abdul-Quddus).,27,31,2012 -20121111_ATL@NO,4,4,32,ATL,NO,2,10,59,(4:32) (Shotgun) M.Ryan pass short middle to J.Snelling to ATL 47 for 6 yards (R.Harper). Pass 3 YAC 3,27,31,2012 -20121111_ATL@NO,4,3,49,ATL,NO,3,4,53,(3:49) (Shotgun) M.Ryan pass short right to H.Douglas pushed ob at NO 45 for 8 yards (J.Patrick). Pass 5 YAC 3,27,31,2012 -20121111_ATL@NO,4,3,44,ATL,NO,1,10,45,(3:44) (Shotgun) M.Ryan pass short right to T.Gonzalez to NO 28 for 17 yards (I.Abdul-Quddus). Pass 15 YAC 2,27,31,2012 -20121111_ATL@NO,4,3,3,ATL,NO,1,10,28,(3:03) Jz. Rodgers right end to NO 10 for 18 yards (M.Jenkins).,27,31,2012 -20121111_ATL@NO,4,2,26,ATL,NO,1,10,10,(2:26) (Shotgun) M.Ryan pass short left to H.Douglas to NO 1 for 9 yards (M.Jenkins; J.Patrick). Pass 4 YAC 5 New Orleans challenged the fumble ruling and the play was Upheld. (Timeout #1.),27,31,2012 -20121111_ATL@NO,4,2,0,ATL,NO,2,1,1,(2:00) M.Ryan pass incomplete short right to T.Gonzalez (M.Jenkins).,27,31,2012 -20121111_ATL@NO,4,1,56,ATL,NO,3,1,1,(1:56) M.Turner left guard to NO 2 for -1 yards (W.Smith).,27,31,2012 -20121111_ATL@NO,4,1,46,ATL,NO,4,2,2,(1:46) (Shotgun) M.Ryan pass incomplete short middle to R.White (J.Greer) [C.Jordan].,27,31,2012 -20121111_ATL@NO,4,1,42,NO,ATL,1,10,98,(1:42) P.Thomas right guard to NO 2 for no gain (M.Peterson; S.Nicholas).,31,27,2012 -20121111_ATL@NO,4,1,38,NO,ATL,2,10,98,(1:38) M.Ingram right guard to NO 3 for 1 yard (J.Babineaux).,31,27,2012 -20121111_ATL@NO,4,1,34,NO,ATL,3,9,97,(1:34) M.Ingram left guard to NO 4 for 1 yard (C.Peters; A.Dent).,31,27,2012 -20121111_ATL@NO,4,0,49,NO,ATL,4,8,96,(:49) T.Morstead punts 55 yards to ATL 41 Center-J.Drescher. H.Douglas to ATL 41 for no gain (J.Collins). PENALTY on ATL-L.Sidbury Offensive Holding 10 yards enforced at ATL 41.,31,27,2012 -20121111_ATL@NO,4,0,37,ATL,NO,1,10,69,(:37) (Shotgun) M.Ryan pass short right to H.Douglas to ATL 40 for 9 yards (J.Patrick). Pass 4 YAC 5,27,31,2012 -20121111_ATL@NO,4,0,31,ATL,NO,2,1,60,(:31) (Shotgun) M.Ryan pass incomplete deep left.,27,31,2012 -20121111_ATL@NO,4,0,24,ATL,NO,3,1,60,(:24) (Shotgun) M.Ryan pass incomplete deep right to R.White.,27,31,2012 -20121111_ATL@NO,4,0,16,ATL,NO,4,1,60,(:16) (Shotgun) M.Ryan pass incomplete short right to T.Gonzalez.,27,31,2012 -20121111_ATL@NO,4,0,12,NO,ATL,1,10,40,(:12) D.Brees kneels to ATL 41 for -1 yards.,31,27,2012 -20121111_ATL@NO,4,0,12,NO,ATL,,,40,                      ,31,27,2012 -20121111_SD@TB,1,0,0,TB,SD,,,40,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20121111_SD@TB,1,60,0,SD,TB,1,10,80,(15:00) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,0,0,2012 -20121111_SD@TB,1,59,55,SD,TB,2,10,80,(14:55) R.Mathews left tackle to SD 20 for no gain (E.Wright D.Te'o-Nesheim).,0,0,2012 -20121111_SD@TB,1,59,13,SD,TB,3,10,80,(14:13) (Shotgun) P.Rivers pass short left to D.Alexander for 80 yards TOUCHDOWN.,0,0,2012 -20121111_SD@TB,1,59,13,SD,TB,,,80,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20121111_SD@TB,1,59,13,SD,TB,,,80,N.Novak kicks 73 yards from SD 35 to TB -8. L.Lewis Touchback.,7,0,2012 -20121111_SD@TB,1,58,57,TB,SD,1,10,80,(13:57) J.Freeman pass short right to V.Jackson to TB 25 for 5 yards (Q.Jammer).,0,7,2012 -20121111_SD@TB,1,58,28,TB,SD,2,5,75,(13:28) D.Martin left end pushed ob at TB 39 for 14 yards (A.Bigby).,0,7,2012 -20121111_SD@TB,1,57,51,TB,SD,1,10,61,(12:51) (Shotgun) D.Martin up the middle to TB 46 for 7 yards (S.Phillips).,0,7,2012 -20121111_SD@TB,1,57,9,TB,SD,2,3,54,(12:09) D.Martin up the middle to TB 45 for -1 yards (C.Liuget D.Butler).,0,7,2012 -20121111_SD@TB,1,56,32,TB,SD,3,4,55,(11:32) (Shotgun) J.Freeman pass short right to V.Jackson to SD 48 for 7 yards (M.Gilchrist).,0,7,2012 -20121111_SD@TB,1,55,42,TB,SD,1,10,48,(10:42) J.Freeman pass incomplete deep right to V.Jackson.,0,7,2012 -20121111_SD@TB,1,55,34,TB,SD,2,10,48,(10:34) J.Freeman pass short right to D.Martin to SD 6 for 42 yards (Q.Jammer).,0,7,2012 -20121111_SD@TB,1,54,44,TB,SD,1,6,6,(9:44) L.Blount up the middle to SD 3 for 3 yards (C.Liuget).,0,7,2012 -20121111_SD@TB,1,54,3,TB,SD,2,3,3,(9:03) J.Freeman pass short right to D.Clark for 3 yards TOUCHDOWN.,0,7,2012 -20121111_SD@TB,1,54,3,TB,SD,,,3,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,7,2012 -20121111_SD@TB,1,54,3,TB,SD,,,3,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,7,7,2012 -20121111_SD@TB,1,53,57,SD,TB,1,10,80,(8:57) (Shotgun) P.Rivers pass short right to R.Mathews to SD 20 for no gain (Q.Black R.Miller).,7,7,2012 -20121111_SD@TB,1,53,17,SD,TB,2,10,80,(8:17) (Shotgun) P.Rivers pass deep left to M.Floyd pushed ob at SD 42 for 22 yards (M.Barron).,7,7,2012 -20121111_SD@TB,1,52,33,SD,TB,1,10,58,(7:33) P.Rivers scrambles up the middle to SD 46 for 4 yards (Q.Black).,7,7,2012 -20121111_SD@TB,1,51,48,SD,TB,2,6,54,(6:48) R.Mathews up the middle to SD 46 for no gain (M.Barron).,7,7,2012 -20121111_SD@TB,1,51,4,SD,TB,3,6,54,(6:04) (Shotgun) P.Rivers pass incomplete short middle to A.Gates (R.Barber). PENALTY on TB-R.Barber Defensive Holding 5 yards enforced at SD 46 - No Play.,7,7,2012 -20121111_SD@TB,1,50,55,SD,TB,1,10,49,(5:55) P.Rivers pass deep middle to A.Gates to TB 16 for 33 yards (M.Barron).,7,7,2012 -20121111_SD@TB,1,50,9,SD,TB,1,10,16,(5:09) R.Mathews right end to TB 13 for 3 yards (L.David M.Foster).,7,7,2012 -20121111_SD@TB,1,49,27,SD,TB,2,7,13,(4:27) P.Rivers pass short middle to A.Gates for 13 yards TOUCHDOWN.,7,7,2012 -20121111_SD@TB,1,49,27,SD,TB,,,13,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,7,7,2012 -20121111_SD@TB,1,49,27,SD,TB,,,13,N.Novak kicks 66 yards from SD 35 to TB -1. L.Lewis to TB 9 for 10 yards (C.Lynch).,14,7,2012 -20121111_SD@TB,1,49,12,TB,SD,1,10,91,(4:12) D.Martin up the middle to TB 18 for 9 yards (E.Weddle).,7,14,2012 -20121111_SD@TB,1,48,30,TB,SD,2,1,82,(3:30) J.Freeman pass incomplete deep right to M.Williams.,7,14,2012 -20121111_SD@TB,1,48,24,TB,SD,3,1,82,(3:24) J.Freeman pass incomplete deep middle to M.Williams.,7,14,2012 -20121111_SD@TB,1,48,21,TB,SD,4,1,82,(3:21) (Punt formation) M.Koenen punts 42 yards to SD 40 Center-A.Economos downed by TB-L.Lewis.,7,14,2012 -20121111_SD@TB,1,48,7,SD,TB,1,10,60,(3:07) R.Mathews left tackle to SD 46 for 6 yards (E.Biggers M.Foster).,14,7,2012 -20121111_SD@TB,1,47,26,SD,TB,2,4,54,(2:26) R.Mathews right guard to SD 45 for -1 yards (M.Bennett).,14,7,2012 -20121111_SD@TB,1,46,42,SD,TB,3,5,55,(1:42) (Shotgun) R.Brown left end pushed ob at SD 43 for -2 yards (R.Barber).,14,7,2012 -20121111_SD@TB,1,46,14,SD,TB,4,7,57,(1:14) (Punt formation) M.Scifres punts 57 yards to end zone Center-M.Windt Touchback.,14,7,2012 -20121111_SD@TB,1,46,1,TB,SD,1,10,80,(1:01) (Shotgun) J.Freeman sacked at TB 15 for -5 yards (D.Butler).,7,14,2012 -20121111_SD@TB,1,45,28,TB,SD,2,15,85,(:28) D.Martin right tackle to TB 18 for 3 yards (A.Franklin C.Liuget).,7,14,2012 -20121111_SD@TB,2,45,0,TB,SD,3,12,82,(15:00) (Shotgun) J.Freeman pass deep middle to M.Williams to SD 28 for 54 yards (Q.Jammer).,7,14,2012 -20121111_SD@TB,2,44,25,TB,SD,1,10,28,(14:25) (Shotgun) J.Freeman pass short right to T.Underwood to SD 21 for 7 yards (M.Gilchrist D.Williams).,7,14,2012 -20121111_SD@TB,2,43,42,TB,SD,2,3,21,(13:42) (Shotgun) J.Freeman pass incomplete deep left to E.Lorig.,7,14,2012 -20121111_SD@TB,2,43,35,TB,SD,3,3,21,(13:35) (Shotgun) D.Ware up the middle to SD 22 for -1 yards (C.Liuget L.English). direct snap to 28,7,14,2012 -20121111_SD@TB,2,42,58,TB,SD,4,4,22,(12:58) (Field Goal formation) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,14,2012 -20121111_SD@TB,2,42,58,TB,SD,,,22,M.Koenen kicks 66 yards from TB 35 to SD -1. C.Brinkley to SD 22 for 23 yards (L.Johnson D.Watson).,10,14,2012 -20121111_SD@TB,2,42,45,SD,TB,1,10,78,(12:45) (Shotgun) P.Rivers sacked at SD 18 for -4 yards (M.Foster).,14,10,2012 -20121111_SD@TB,2,42,2,SD,TB,2,14,82,(12:02) (Shotgun) P.Rivers pass short left to R.Brown to SD 23 for 5 yards (L.David).,14,10,2012 -20121111_SD@TB,2,41,18,SD,TB,3,9,77,(11:18) (Shotgun) P.Rivers pass short middle to D.Alexander to SD 37 for 14 yards (A.Black).,14,10,2012 -20121111_SD@TB,2,40,36,SD,TB,1,10,63,(10:36) (Shotgun) P.Rivers pass incomplete deep right to A.Gates (M.Barron).,14,10,2012 -20121111_SD@TB,2,40,27,SD,TB,2,10,63,(10:27) R.Mathews up the middle to SD 42 for 5 yards (M.Foster L.Johnson).,14,10,2012 -20121111_SD@TB,2,39,44,SD,TB,3,5,58,(9:44) (Shotgun) P.Rivers pass short right to R.Brown to SD 38 for -4 yards (L.Johnson).,14,10,2012 -20121111_SD@TB,2,39,7,SD,TB,4,9,62,(9:07) (Punt formation) M.Scifres punt is BLOCKED by D.Watson Center-M.Windt RECOVERED by TB-A.Hayward at SD 29. A.Hayward for 29 yards TOUCHDOWN.,14,10,2012 -20121111_SD@TB,2,39,7,TB,SD,,,62,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,10,14,2012 -20121111_SD@TB,2,39,7,TB,SD,,,62,M.Koenen kicks 74 yards from TB 35 to SD -9. C.Brinkley Touchback.,17,14,2012 -20121111_SD@TB,2,38,55,SD,TB,1,10,80,(8:55) R.Mathews left guard to SD 30 for 10 yards (M.Barron).,14,17,2012 -20121111_SD@TB,2,38,17,SD,TB,1,10,70,(8:17) R.Mathews right tackle to SD 33 for 3 yards (D.Te'o-Nesheim).,14,17,2012 -20121111_SD@TB,2,37,37,SD,TB,2,7,67,(7:37) P.Rivers pass short middle to R.Mathews to SD 38 for 5 yards (L.David).,14,17,2012 -20121111_SD@TB,2,36,55,SD,TB,3,2,62,(6:55) (Shotgun) P.Rivers pass short left to E.Royal pushed ob at TB 49 for 13 yards (E.Biggers).,14,17,2012 -20121111_SD@TB,2,36,21,SD,TB,1,10,49,(6:21) (Shotgun) P.Rivers pass short left to D.Rosario to TB 38 for 11 yards (L.David).,14,17,2012 -20121111_SD@TB,2,35,37,SD,TB,1,10,38,(5:37) (Shotgun) R.Brown left guard to TB 37 for 1 yard (L.David R.Miller).,14,17,2012 -20121111_SD@TB,2,34,54,SD,TB,2,9,37,(4:54) (Shotgun) P.Rivers pass short middle to A.Gates to TB 29 for 8 yards (L.David E.Biggers).,14,17,2012 -20121111_SD@TB,2,34,7,SD,TB,3,1,29,(4:07) (Shotgun) P.Rivers pass short right to A.Gates to TB 26 for 3 yards (R.Barber).,14,17,2012 -20121111_SD@TB,2,33,23,SD,TB,1,10,26,(3:23) (Shotgun) R.Mathews left tackle to TB 17 for 9 yards (L.David).,14,17,2012 -20121111_SD@TB,2,32,41,SD,TB,2,1,17,(2:41) L.McClain up the middle to TB 18 for -1 yards (Q.Black G.Gibson).,14,17,2012 -20121111_SD@TB,2,32,0,SD,TB,3,2,18,(2:00) (Shotgun) P.Rivers pass short right to M.Floyd pushed ob at TB 14 for 4 yards (Q.Black).,14,17,2012 -20121111_SD@TB,2,31,52,SD,TB,1,10,14,(1:52) (Shotgun) P.Rivers pass short middle to R.Mathews to TB 6 for 8 yards (Q.Black).,14,17,2012 -20121111_SD@TB,2,31,15,SD,TB,2,2,6,(1:15) R.Mathews up the middle to TB 3 for 3 yards (R.Miller).,14,17,2012 -20121111_SD@TB,2,30,34,SD,TB,1,3,3,(:34) P.Rivers pass short middle to M.Floyd for 3 yards TOUCHDOWN.,14,17,2012 -20121111_SD@TB,2,30,34,SD,TB,,,3,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,14,17,2012 -20121111_SD@TB,2,30,34,SD,TB,,,3,N.Novak kicks 72 yards from SD 35 to TB -7. L.Lewis Touchback.,21,17,2012 -20121111_SD@TB,2,30,27,TB,SD,1,10,80,(:27) (Shotgun) D.Martin left guard to TB 20 for no gain (C.Liuget).,17,21,2012 -20121111_SD@TB,3,30,0,SD,TB,,,80,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,21,17,2012 -20121111_SD@TB,3,30,0,TB,SD,1,10,80,(15:00) J.Freeman pass short left to V.Jackson to TB 25 for 5 yards (D.Butler).,17,21,2012 -20121111_SD@TB,3,29,22,TB,SD,2,5,75,(14:22) J.Freeman pass short left to V.Jackson to TB 36 for 11 yards (A.Cason).,17,21,2012 -20121111_SD@TB,3,28,35,TB,SD,1,10,64,(13:35) D.Martin up the middle to TB 41 for 5 yards (C.Liuget).,17,21,2012 -20121111_SD@TB,3,28,0,TB,SD,2,5,59,(13:00) D.Martin left tackle to TB 44 for 3 yards (J.Johnson).,17,21,2012 -20121111_SD@TB,3,27,20,TB,SD,3,2,56,(12:20) J.Freeman pass short left to M.Williams pushed ob at SD 46 for 10 yards (A.Cason).,17,21,2012 -20121111_SD@TB,3,26,52,TB,SD,1,10,46,(11:52) (Shotgun) D.Martin right tackle to SD 43 for 3 yards (E.Weddle).,17,21,2012 -20121111_SD@TB,3,26,14,TB,SD,2,7,43,(11:14) J.Freeman pass short left to D.Martin to SD 42 for 1 yard (A.Cason).,17,21,2012 -20121111_SD@TB,3,25,29,TB,SD,3,6,42,(10:29) (Shotgun) J.Freeman pass incomplete short right to C.Owusu (Q.Jammer).,17,21,2012 -20121111_SD@TB,3,25,23,TB,SD,4,6,42,(10:23) (Punt formation) M.Koenen punts 40 yards to SD 2 Center-A.Economos downed by TB-L.Lewis.,17,21,2012 -20121111_SD@TB,3,25,12,SD,TB,1,10,98,(10:12) L.McClain up the middle to SD 8 for 6 yards (L.David M.Foster).,21,17,2012 -20121111_SD@TB,3,24,40,SD,TB,2,4,92,(9:40) R.Mathews left tackle to SD 12 for 4 yards (R.Barber).,21,17,2012 -20121111_SD@TB,3,23,50,SD,TB,1,10,88,(8:50) (Shotgun) P.Rivers pass incomplete deep right to M.Floyd.,21,17,2012 -20121111_SD@TB,3,23,42,SD,TB,2,10,88,(8:42) R.Mathews left end to SD 9 for -3 yards (L.David).,21,17,2012 -20121111_SD@TB,3,22,57,SD,TB,3,13,91,(7:57) (Shotgun) P.Rivers pass incomplete deep left to D.Alexander [D.Bowers].,21,17,2012 -20121111_SD@TB,3,22,51,SD,TB,4,13,91,(7:51) (Punt formation) M.Scifres punts 55 yards to TB 36 Center-M.Windt. R.Parrish to TB 41 for 5 yards (A.Gachkar).,21,17,2012 -20121111_SD@TB,3,22,39,TB,SD,1,10,59,(7:39) D.Martin left guard to TB 44 for 3 yards (E.Weddle).,17,21,2012 -20121111_SD@TB,3,22,5,TB,SD,2,7,56,(7:05) D.Martin left tackle to 50 for 6 yards (S.Phillips).,17,21,2012 -20121111_SD@TB,3,21,25,TB,SD,3,1,50,(6:25) D.Martin up the middle to 50 for no gain (J.Johnson). Tampa Bay challenged the first down ruling and the play was Upheld. (Timeout #1.),17,21,2012 -20121111_SD@TB,3,20,36,TB,SD,4,1,50,(5:36) J.Freeman up the middle to SD 46 for 4 yards (S.Phillips).,17,21,2012 -20121111_SD@TB,3,20,0,TB,SD,1,10,46,(5:00) J.Freeman pass deep left to V.Jackson to SD 15 for 31 yards (E.Weddle).,17,21,2012 -20121111_SD@TB,3,19,16,TB,SD,1,10,15,(4:16) (Shotgun) J.Freeman pass short middle to T.Underwood for 15 yards TOUCHDOWN.,17,21,2012 -20121111_SD@TB,3,19,16,TB,SD,,,15,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,17,21,2012 -20121111_SD@TB,3,19,16,TB,SD,,,15,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,24,21,2012 -20121111_SD@TB,3,19,7,SD,TB,1,10,80,(4:07) (Shotgun) R.Mathews left tackle to SD 19 for -1 yards (Q.Black).,21,24,2012 -20121111_SD@TB,3,18,31,SD,TB,2,11,81,(3:31) (Shotgun) P.Rivers pass short left to M.Floyd to SD 21 for 2 yards (L.Johnson).,21,24,2012 -20121111_SD@TB,3,17,47,SD,TB,3,9,79,(2:47) (Shotgun) P.Rivers pass deep middle to D.Alexander to SD 40 for 19 yards (L.Johnson).,21,24,2012 -20121111_SD@TB,3,17,8,SD,TB,1,10,60,(2:08) R.Mathews left tackle pushed ob at SD 43 for 3 yards (M.Barron).,21,24,2012 -20121111_SD@TB,3,16,36,SD,TB,2,7,57,(1:36) (Shotgun) P.Rivers pass short right to E.Royal to SD 46 for 3 yards (L.David) [M.Bennett].,21,24,2012 -20121111_SD@TB,3,16,2,SD,TB,3,4,54,(1:02) (Shotgun) P.Rivers pass short right to D.Alexander to TB 48 for 6 yards (M.Lewis A.Black).,21,24,2012 -20121111_SD@TB,3,15,16,SD,TB,1,10,48,(:16) (Shotgun) P.Rivers pass deep left to M.Floyd to TB 29 for 19 yards (R.Barber) [G.McCoy].,21,24,2012 -20121111_SD@TB,4,15,0,SD,TB,1,10,29,(15:00) R.Mathews right end to TB 27 for 2 yards (L.David).,21,24,2012 -20121111_SD@TB,4,14,14,SD,TB,2,8,27,(14:14) (Shotgun) P.Rivers pass short right to R.Mathews pushed ob at TB 23 for 4 yards (L.David).,21,24,2012 -20121111_SD@TB,4,13,42,SD,TB,3,4,23,(13:42) (Shotgun) P.Rivers pass short right intended for E.Royal INTERCEPTED by L.Johnson at TB 17. L.Johnson for 83 yards TOUCHDOWN.,21,24,2012 -20121111_SD@TB,4,13,42,TB,SD,,,23,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,24,21,2012 -20121111_SD@TB,4,13,42,TB,SD,,,23,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,31,21,2012 -20121111_SD@TB,4,13,22,SD,TB,1,10,80,(13:22) R.Mathews right tackle to SD 30 for 10 yards (D.Te'o-Nesheim).,21,31,2012 -20121111_SD@TB,4,12,38,SD,TB,1,10,70,(12:38) R.Brown left end to SD 33 for 3 yards (D.Te'o-Nesheim R.Barber).,21,31,2012 -20121111_SD@TB,4,11,59,SD,TB,2,7,67,(11:59) (Shotgun) P.Rivers scrambles up the middle to SD 34 for 1 yard (M.Bennett).,21,31,2012 -20121111_SD@TB,4,11,13,SD,TB,3,6,66,(11:13) (Shotgun) P.Rivers pass deep right to E.Royal to TB 46 for 20 yards (A.Black).,21,31,2012 -20121111_SD@TB,4,10,32,SD,TB,1,10,46,(10:32) P.Rivers pass short right to R.Meachem pushed ob at TB 38 for 8 yards (M.Lewis).,21,31,2012 -20121111_SD@TB,4,9,57,SD,TB,2,2,38,(9:57) R.Mathews left tackle to TB 37 for 1 yard (L.David A.Hayward).,21,31,2012 -20121111_SD@TB,4,9,15,SD,TB,3,1,37,(9:15) J.Battle left guard pushed ob at TB 16 for 21 yards (M.Barron).,21,31,2012 -20121111_SD@TB,4,8,42,SD,TB,1,10,16,(8:42) P.Rivers pass short left to R.Mathews to TB 11 for 5 yards (A.Hayward).,21,31,2012 -20121111_SD@TB,4,7,58,SD,TB,2,5,11,(7:58) (Shotgun) P.Rivers pass short left to R.McMichael to TB 11 for no gain (L.Johnson G.McCoy).,21,31,2012 -20121111_SD@TB,4,7,13,SD,TB,3,5,11,(7:13) (Shotgun) P.Rivers pass incomplete short left to D.Rosario (R.Barber).,21,31,2012 -20121111_SD@TB,4,7,13,SD,TB,4,5,11,(7:13) (Field Goal formation) PENALTY on SD Delay of Game 5 yards enforced at TB 11 - No Play.,21,31,2012 -20121111_SD@TB,4,7,7,SD,TB,4,10,16,(7:07) (Field Goal formation) N.Novak 34 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,21,31,2012 -20121111_SD@TB,4,7,7,SD,TB,,,16,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,24,31,2012 -20121111_SD@TB,4,7,2,TB,SD,1,10,80,(7:02) D.Martin right tackle to TB 21 for 1 yard (E.Weddle).,31,24,2012 -20121111_SD@TB,4,6,21,TB,SD,2,9,79,(6:21) J.Freeman pass short middle to L.Stocker to TB 32 for 11 yards (T.Spikes).,31,24,2012 -20121111_SD@TB,4,5,36,TB,SD,1,10,68,(5:36) D.Martin up the middle to TB 35 for 3 yards (S.Phillips).,31,24,2012 -20121111_SD@TB,4,4,53,TB,SD,2,7,65,(4:53) D.Martin left end to TB 37 for 2 yards (K.Reyes).,31,24,2012 -20121111_SD@TB,4,4,8,TB,SD,3,5,63,(4:08) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson (S.Wright).,31,24,2012 -20121111_SD@TB,4,4,2,TB,SD,4,5,63,(4:02) (Punt formation) M.Koenen punts 52 yards to SD 11 Center-A.Economos. E.Royal to SD 22 for 11 yards (A.Economos).,31,24,2012 -20121111_SD@TB,4,3,53,SD,TB,1,10,78,(3:53) (Shotgun) P.Rivers sacked at SD 12 for -10 yards (D.Te'o-Nesheim).,24,31,2012 -20121111_SD@TB,4,3,19,SD,TB,2,20,88,(3:19) (Shotgun) P.Rivers pass deep left intended for D.Alexander INTERCEPTED by L.Lewis at SD 45. L.Lewis to SD 45 for no gain (D.Alexander).,24,31,2012 -20121111_SD@TB,4,3,9,TB,SD,1,10,45,(3:09) D.Martin right guard to SD 42 for 3 yards (J.Johnson C.Lynch).,31,24,2012 -20121111_SD@TB,4,3,2,TB,SD,2,7,42,(3:02) J.Freeman pass short right to D.Martin to SD 34 for 8 yards (J.Johnson).,31,24,2012 -20121111_SD@TB,4,2,53,TB,SD,1,10,34,(2:53) D.Martin up the middle to SD 30 for 4 yards (A.Bigby T.Spikes).,31,24,2012 -20121111_SD@TB,4,2,38,TB,SD,2,6,30,(2:38) D.Martin right guard to SD 27 for 3 yards (S.Phillips).,31,24,2012 -20121111_SD@TB,4,2,0,TB,SD,3,3,27,(2:00) D.Martin left end to SD 27 for no gain (D.Butler).,31,24,2012 -20121111_SD@TB,4,1,12,TB,SD,4,3,27,(1:12) (Field Goal formation) C.Barth 45 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,31,24,2012 -20121111_SD@TB,4,1,12,TB,SD,,,27,M.Koenen kicks 73 yards from TB 35 to SD -8. C.Brinkley to SD 20 for 28 yards (A.Hayward D.Watson).,34,24,2012 -20121111_SD@TB,4,1,1,SD,TB,1,10,80,(1:01) (Shotgun) P.Rivers pass short left to R.Brown to SD 25 for 5 yards (E.Biggers).,24,34,2012 -20121111_SD@TB,4,0,36,SD,TB,2,5,75,(:36) (No Huddle) P.Rivers pass incomplete short right to E.Royal.,24,34,2012 -20121111_SD@TB,4,0,29,SD,TB,3,5,75,(:29) (Shotgun) P.Rivers pass short middle to D.Alexander to SD 40 for 15 yards (L.Lewis).,24,34,2012 -20121111_SD@TB,4,0,9,SD,TB,1,10,60,(:09) (No Huddle) P.Rivers pass short right to M.Floyd ran ob at TB 47 for 13 yards.,24,34,2012 -20121111_SD@TB,4,0,3,SD,TB,1,10,47,(:03) (Shotgun) R.Brown up the middle to TB 31 for 16 yards (M.Bennett L.David).,24,34,2012 -20121111_SD@TB,4,0,3,SD,TB,,,47,                      ,24,34,2012 -20121111_NYJ@SEA,1,0,0,SEA,NYJ,,,47,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,0,0,2012 -20121111_NYJ@SEA,1,60,0,NYJ,SEA,1,10,80,(15:00) M.Sanchez pass incomplete short middle to S.Greene (R.Bryant).,0,0,2012 -20121111_NYJ@SEA,1,59,56,NYJ,SEA,2,10,80,(14:56) J.Smith reported in as eligible. S.Greene left tackle to NYJ 24 for 4 yards (E.Thomas).,0,0,2012 -20121111_NYJ@SEA,1,59,17,NYJ,SEA,3,6,76,(14:17) (Shotgun) M.Sanchez pass incomplete short right to D.Keller (K.Chancellor). PENALTY on SEA-B.Browner Defensive Holding 5 yards enforced at NYJ 24 - No Play.,0,0,2012 -20121111_NYJ@SEA,1,59,13,NYJ,SEA,1,10,71,(14:13) M.Sanchez pass incomplete short right to L.Hilliard.,0,0,2012 -20121111_NYJ@SEA,1,59,8,NYJ,SEA,2,10,71,(14:08) (Shotgun) T.Tebow pass short right to J.Kerley to NYJ 30 for 1 yard (L.Hill).,0,0,2012 -20121111_NYJ@SEA,1,58,27,NYJ,SEA,3,9,70,(13:27) (Shotgun) M.Sanchez pass short left to E.Gates to NYJ 40 for 10 yards (M.Trufant).,0,0,2012 -20121111_NYJ@SEA,1,57,49,NYJ,SEA,1,10,60,(12:49) S.Greene right end to NYJ 49 for 9 yards (B.Wagner; R.Sherman).,0,0,2012 -20121111_NYJ@SEA,1,57,15,NYJ,SEA,2,1,51,(12:15) S.Greene up the middle to SEA 49 for 2 yards (E.Thomas; B.Mebane).,0,0,2012 -20121111_NYJ@SEA,1,56,33,NYJ,SEA,1,10,49,(11:33) S.Greene up the middle to SEA 45 for 4 yards (B.Mebane; A.Branch).,0,0,2012 -20121111_NYJ@SEA,1,55,58,NYJ,SEA,2,6,45,(10:58) (Shotgun) T.Tebow pass short left to J.Kerley to SEA 40 for 5 yards (E.Thomas).,0,0,2012 -20121111_NYJ@SEA,1,55,22,NYJ,SEA,3,1,40,(10:22) L.Hilliard up the middle to SEA 40 for no gain (B.Mebane; B.Wagner).,0,0,2012 -20121111_NYJ@SEA,1,54,38,NYJ,SEA,4,1,40,(9:38) S.Greene left guard to SEA 40 for no gain (M.Morgan).,0,0,2012 -20121111_NYJ@SEA,1,54,34,SEA,NYJ,1,10,59,(9:34) Ball officially spotted at 41 after change of possession. M.Lynch right tackle to SEA 44 for 3 yards (D.Davis).,0,0,2012 -20121111_NYJ@SEA,1,53,57,SEA,NYJ,2,7,56,(8:57) (Shotgun) R.Wilson pass deep left to D.Baldwin to NYJ 38 for 18 yards (K.Wilson).,0,0,2012 -20121111_NYJ@SEA,1,53,9,SEA,NYJ,1,10,38,(8:09) R.Wilson pass deep left to G.Tate for 38 yards TOUCHDOWN.,0,0,2012 -20121111_NYJ@SEA,1,53,9,SEA,NYJ,,,38,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121111_NYJ@SEA,1,53,9,SEA,NYJ,,,38,S.Hauschka kicks 70 yards from SEA 35 to NYJ -5. E.Gates to NYJ 15 for 20 yards (H.Farwell; B.Maxwell).,7,0,2012 -20121111_NYJ@SEA,1,52,56,NYJ,SEA,1,10,85,(7:56) J.Smith reported in as eligible. S.Greene left tackle to NYJ 20 for 5 yards (L.Hill; B.Wagner).,0,7,2012 -20121111_NYJ@SEA,1,52,21,NYJ,SEA,2,5,80,(7:21) (Shotgun) M.Sanchez pass short left to D.Keller to NYJ 24 for 4 yards (E.Thomas; B.Browner).,0,7,2012 -20121111_NYJ@SEA,1,51,39,NYJ,SEA,3,1,76,(6:39) M.Sanchez pass incomplete short middle to E.Gates (A.Branch).,0,7,2012 -20121111_NYJ@SEA,1,51,35,NYJ,SEA,4,1,76,(6:35) R.Malone punts 56 yards to SEA 20 Center-T.Purdum. L.Washington to SEA 40 for 20 yards (I.Trufant).,0,7,2012 -20121111_NYJ@SEA,1,51,23,SEA,NYJ,1,10,60,(6:23) M.Lynch left guard to SEA 43 for 3 yards (S.Pouha).,7,0,2012 -20121111_NYJ@SEA,1,50,48,SEA,NYJ,2,7,57,(5:48) M.Lynch right guard to SEA 44 for 1 yard (A.Cromartie; B.Thomas).,7,0,2012 -20121111_NYJ@SEA,1,50,2,SEA,NYJ,3,6,56,(5:02) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,7,0,2012 -20121111_NYJ@SEA,1,49,54,SEA,NYJ,4,6,56,(4:54) (Punt formation) PENALTY on SEA-J.Lane False Start 5 yards enforced at SEA 44 - No Play.,7,0,2012 -20121111_NYJ@SEA,1,49,54,SEA,NYJ,4,11,61,(4:54) J.Ryan punts 42 yards to NYJ 19 Center-C.Gresham fair catch by J.Kerley.,7,0,2012 -20121111_NYJ@SEA,1,49,41,NYJ,SEA,1,10,81,(4:41) Direct snap formation PENALTY on NYJ-D.Keller False Start 5 yards enforced at NYJ 19 - No Play.,0,7,2012 -20121111_NYJ@SEA,1,49,41,NYJ,SEA,1,15,86,(4:41) M.Sanchez pass incomplete short right to E.Gates.,0,7,2012 -20121111_NYJ@SEA,1,49,37,NYJ,SEA,2,15,86,(4:37) B.Powell up the middle to NYJ 21 for 7 yards (E.Thomas).,0,7,2012 -20121111_NYJ@SEA,1,48,56,NYJ,SEA,3,8,79,(3:56) (Shotgun) M.Sanchez sacked at NYJ 12 for -9 yards (B.Irvin).,0,7,2012 -20121111_NYJ@SEA,1,48,34,NYJ,SEA,4,17,88,(3:34) R.Malone punts 56 yards to SEA 32 Center-T.Purdum. L.Washington to SEA 41 for 9 yards (A.Berry).,0,7,2012 -20121111_NYJ@SEA,1,48,25,SEA,NYJ,1,10,59,(3:25) R.Wilson sacked at SEA 29 for -12 yards (B.Scott). Penalty on SEA-R.Okung Offensive Holding declined.,7,0,2012 -20121111_NYJ@SEA,1,48,0,SEA,NYJ,2,22,71,(3:00) (Shotgun) R.Wilson sacked at SEA 22 for -7 yards (M.Devito). FUMBLES (M.Devito) [M.Devito] RECOVERED by NYJ-M.Wilkerson at SEA 21. M.Wilkerson for 21 yards TOUCHDOWN.,7,0,2012 -20121111_NYJ@SEA,1,48,0,NYJ,SEA,,,71,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,7,2012 -20121111_NYJ@SEA,1,48,0,NYJ,SEA,,,71,N.Folk kicks 63 yards from NYJ 35 to SEA 2 out of bounds.,7,7,2012 -20121111_NYJ@SEA,1,47,50,SEA,NYJ,1,10,60,(2:50) R.Wilson scrambles left end to SEA 41 for 1 yard (Y.Bell).,7,7,2012 -20121111_NYJ@SEA,1,47,4,SEA,NYJ,2,9,59,(2:04) (Shotgun) M.Lynch up the middle to SEA 48 for 7 yards (D.Harris).,7,7,2012 -20121111_NYJ@SEA,1,46,22,SEA,NYJ,3,2,52,(1:22) R.Wilson pass short right to Z.Miller pushed ob at NYJ 47 for 5 yards (B.Thomas).,7,7,2012 -20121111_NYJ@SEA,1,46,1,SEA,NYJ,1,10,47,(1:01) (Shotgun) R.Wilson pass short left to Z.Miller to NYJ 44 for 3 yards (A.Cromartie).,7,7,2012 -20121111_NYJ@SEA,1,45,22,SEA,NYJ,2,7,44,(:22) R.Turbin right tackle to NYJ 40 for 4 yards (S.Pouha).,7,7,2012 -20121111_NYJ@SEA,2,45,0,SEA,NYJ,3,3,40,(15:00) (Shotgun) M.Lynch left guard to NYJ 37 for 3 yards (M.Wilkerson). FUMBLES (M.Wilkerson) RECOVERED by NYJ-C.Pace at NYJ 37. C.Pace to NYJ 37 for no gain (M.Lynch).,7,7,2012 -20121111_NYJ@SEA,2,44,50,NYJ,SEA,1,10,62,(14:50) Ball placed at 38 to start next possession. M.Sanchez pass short left to J.Kerley to NYJ 44 for 6 yards (E.Thomas; M.Morgan).,7,7,2012 -20121111_NYJ@SEA,2,44,15,NYJ,SEA,2,4,56,(14:15) (Shotgun) T.Tebow left tackle to NYJ 47 for 3 yards (B.Mebane; B.Wagner).,7,7,2012 -20121111_NYJ@SEA,2,43,36,NYJ,SEA,3,1,53,(13:36) (Shotgun) T.Tebow up the middle to 50 for 3 yards (R.Bryant).,7,7,2012 -20121111_NYJ@SEA,2,42,58,NYJ,SEA,1,10,50,(12:58) M.Sanchez pass deep left to J.Kerley to SEA 7 for 43 yards (B.Browner).,7,7,2012 -20121111_NYJ@SEA,2,42,18,NYJ,SEA,1,7,7,(12:18) S.Greene up the middle to SEA 3 for 4 yards (L.Hill).,7,7,2012 -20121111_NYJ@SEA,2,41,47,NYJ,SEA,2,3,3,(11:47) S.Greene right tackle to SEA 1 for 2 yards (L.Hill; B.Wagner).,7,7,2012 -20121111_NYJ@SEA,2,41,6,NYJ,SEA,3,1,1,(11:06) (Shotgun) PENALTY on NYJ-D.Keller False Start 5 yards enforced at SEA 1 - No Play.,7,7,2012 -20121111_NYJ@SEA,2,40,55,NYJ,SEA,3,6,6,(10:55) (Shotgun) M.Sanchez pass short right intended for D.Keller INTERCEPTED by R.Sherman at SEA 3. R.Sherman ran ob at SEA 3 for no gain.,7,7,2012 -20121111_NYJ@SEA,2,40,45,SEA,NYJ,1,10,97,(10:45) M.Lynch left tackle to SEA 7 for 4 yards (M.Wilkerson; Y.Bell).,7,7,2012 -20121111_NYJ@SEA,2,40,9,SEA,NYJ,2,6,93,(10:09) M.Lynch right guard to SEA 9 for 2 yards (S.Pouha; M.Devito).,7,7,2012 -20121111_NYJ@SEA,2,39,27,SEA,NYJ,3,4,91,(9:27) (Shotgun) R.Wilson sacked at SEA 3 for -6 yards (E.Lankster). FUMBLES (E.Lankster) recovered by SEA-R.Turbin at SEA 7. R.Turbin to SEA 7 for no gain (L.Landry).,7,7,2012 -20121111_NYJ@SEA,2,38,48,SEA,NYJ,4,6,93,(8:48) J.Ryan punts 50 yards to NYJ 43 Center-C.Gresham. J.Kerley to NYJ 49 for 6 yards (J.Lane).,7,7,2012 -20121111_NYJ@SEA,2,38,37,NYJ,SEA,1,10,51,(8:37) (Shotgun) T.Tebow right tackle to SEA 49 for 2 yards (R.Bryant).,7,7,2012 -20121111_NYJ@SEA,2,37,59,NYJ,SEA,2,8,49,(7:59) M.Sanchez pass incomplete short left to S.Hill.,7,7,2012 -20121111_NYJ@SEA,2,37,55,NYJ,SEA,3,8,49,(7:55) (Shotgun) M.Sanchez pass incomplete short right to E.Gates (R.Sherman).,7,7,2012 -20121111_NYJ@SEA,2,37,49,NYJ,SEA,4,8,49,(7:49) R.Malone punts 39 yards to SEA 10 Center-T.Purdum fair catch by L.Washington.,7,7,2012 -20121111_NYJ@SEA,2,37,41,SEA,NYJ,1,10,90,(7:41) M.Lynch left guard to SEA 15 for 5 yards (Q.Coples; B.Scott).,7,7,2012 -20121111_NYJ@SEA,2,37,7,SEA,NYJ,2,5,85,(7:07) M.Lynch left end to SEA 18 for 3 yards (B.Thomas).,7,7,2012 -20121111_NYJ@SEA,2,36,31,SEA,NYJ,3,2,82,(6:31) M.Lynch right guard to SEA 15 for -3 yards (M.Devito).,7,7,2012 -20121111_NYJ@SEA,2,35,56,SEA,NYJ,4,5,85,(5:56) J.Ryan punts 47 yards to NYJ 38 Center-C.Gresham. J.Kerley MUFFS catch RECOVERED by SEA-K.Chancellor at NYJ 42. K.Chancellor to NYJ 42 for no gain (E.Lankster). Penalty on NYJ-M.Dowtin Offensive Holding declined.,7,7,2012 -20121111_NYJ@SEA,2,35,45,SEA,NYJ,1,10,42,(5:45) R.Wilson pass incomplete deep middle to S.Rice (A.Cromartie). Fleaflicker,7,7,2012 -20121111_NYJ@SEA,2,35,35,SEA,NYJ,2,10,42,(5:35) (Shotgun) R.Wilson pass short right to G.Tate to NYJ 42 for no gain (Y.Bell; E.Lankster). PENALTY on SEA-D.Baldwin Illegal Motion 5 yards enforced at NYJ 42 - No Play.,7,7,2012 -20121111_NYJ@SEA,2,35,11,SEA,NYJ,2,15,47,(5:11) (Shotgun) R.Wilson pass short left to M.Lynch pushed ob at NYJ 20 for 27 yards (A.Cromartie) [B.Thomas].,7,7,2012 -20121111_NYJ@SEA,2,34,45,SEA,NYJ,1,10,20,(4:45) M.Lynch up the middle to NYJ 15 for 5 yards (G.McIntyre; L.Landry).,7,7,2012 -20121111_NYJ@SEA,2,34,7,SEA,NYJ,2,5,15,(4:07) M.Lynch left tackle to NYJ 12 for 3 yards (G.McIntyre).,7,7,2012 -20121111_NYJ@SEA,2,33,29,SEA,NYJ,3,2,12,(3:29) R.Wilson scrambles right end to NYJ 3 for 9 yards (G.McIntyre).,7,7,2012 -20121111_NYJ@SEA,2,32,51,SEA,NYJ,1,3,3,(2:51) M.Lynch left tackle to NYJ 1 for 2 yards (B.Scott).,7,7,2012 -20121111_NYJ@SEA,2,32,14,SEA,NYJ,2,1,1,(2:14) R.Wilson pass incomplete short left to E.Moore. PENALTY on NYJ-L.Landry Defensive Pass Interference 0 yards enforced at NYJ 1 - No Play.,7,7,2012 -20121111_NYJ@SEA,2,32,7,SEA,NYJ,1,1,1,(2:07) M.Lynch left guard for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,7,7,2012 -20121111_NYJ@SEA,2,32,7,SEA,NYJ,,,1,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,7,2012 -20121111_NYJ@SEA,2,32,7,SEA,NYJ,,,1,S.Hauschka kicks 67 yards from SEA 35 to NYJ -2. E.Gates to NYJ 19 for 21 yards (B.Maxwell; M.Smith).,14,7,2012 -20121111_NYJ@SEA,2,31,59,NYJ,SEA,1,10,81,(1:59) (Shotgun) M.Sanchez pass short middle to B.Powell to NYJ 23 for 4 yards (B.Wagner).,7,14,2012 -20121111_NYJ@SEA,2,31,37,NYJ,SEA,2,6,77,(1:37) (No Huddle Shotgun) M.Sanchez pass incomplete short right to J.Kerley [C.Clemons].,7,14,2012 -20121111_NYJ@SEA,2,31,33,NYJ,SEA,3,6,77,(1:33) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,7,14,2012 -20121111_NYJ@SEA,2,31,29,NYJ,SEA,4,6,77,(1:29) R.Malone punts 45 yards to SEA 32 Center-T.Purdum. L.Washington to SEA 43 for 11 yards (A.Berry).,7,14,2012 -20121111_NYJ@SEA,2,31,19,SEA,NYJ,1,10,57,(1:19) (Shotgun) L.Washington left guard to SEA 45 for 2 yards (M.Wilkerson).,14,7,2012 -20121111_NYJ@SEA,2,31,0,SEA,NYJ,2,8,55,(1:00) (No Huddle Shotgun) R.Wilson pass short left to D.Baldwin ran ob at NYJ 42 for 13 yards.,14,7,2012 -20121111_NYJ@SEA,2,30,54,SEA,NYJ,1,10,42,(:54) L.Washington right tackle to NYJ 42 for no gain (L.Landry; E.Lankster). PENALTY on SEA-P.McQuistan Offensive Holding 10 yards enforced at NYJ 42 - No Play.,14,7,2012 -20121111_NYJ@SEA,2,30,49,SEA,NYJ,1,20,52,(:49) R.Wilson pass incomplete short right to Z.Miller (C.Pace).,14,7,2012 -20121111_NYJ@SEA,2,30,45,SEA,NYJ,2,20,52,(:45) (Shotgun) L.Washington up the middle to SEA 45 for -3 yards (Q.Coples).,14,7,2012 -20121111_NYJ@SEA,2,30,41,SEA,NYJ,3,23,55,(:41) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin [Q.Coples].,14,7,2012 -20121111_NYJ@SEA,2,30,36,SEA,NYJ,4,23,55,(:36) J.Ryan punts 40 yards to NYJ 15 Center-C.Gresham fair catch by J.Kerley.,14,7,2012 -20121111_NYJ@SEA,2,30,29,NYJ,SEA,1,10,85,(:29) J.Smith reported in as eligible. S.Greene left guard to NYJ 18 for 3 yards (B.Mebane; B.Wagner).,7,14,2012 -20121111_NYJ@SEA,3,30,0,NYJ,SEA,,,85,N.Folk kicks 64 yards from NYJ 35 to SEA 1. L.Washington to SEA 18 for 17 yards (D.Davis).,7,14,2012 -20121111_NYJ@SEA,3,29,55,SEA,NYJ,1,10,82,(14:55) M.Lynch left tackle to SEA 24 for 6 yards (C.Pace D.Davis).,14,7,2012 -20121111_NYJ@SEA,3,29,19,SEA,NYJ,2,4,76,(14:19) M.Lynch up the middle to SEA 26 for 2 yards (S.Pouha; B.Thomas).,14,7,2012 -20121111_NYJ@SEA,3,28,40,SEA,NYJ,3,2,74,(13:40) (Shotgun) R.Wilson pass incomplete short right to S.Rice [E.Lankster].,14,7,2012 -20121111_NYJ@SEA,3,28,33,SEA,NYJ,4,2,74,(13:33) J.Ryan punts 40 yards to NYJ 34 Center-C.Gresham fair catch by J.Kerley.,14,7,2012 -20121111_NYJ@SEA,3,28,26,NYJ,SEA,1,10,66,(13:26) M.Sanchez pass short middle to L.Hilliard to NYJ 43 for 9 yards (B.Wagner; M.Morgan).,7,14,2012 -20121111_NYJ@SEA,3,27,44,NYJ,SEA,2,1,57,(12:44) (Shotgun) T.Tebow pass short left to J.Kerley to NYJ 45 for 2 yards (E.Thomas).,7,14,2012 -20121111_NYJ@SEA,3,27,12,NYJ,SEA,1,10,55,(12:12) S.Greene right end to SEA 48 for 7 yards (R.Sherman).,7,14,2012 -20121111_NYJ@SEA,3,26,39,NYJ,SEA,2,3,48,(11:39) J.Smith reported in as eligible. S.Greene up the middle to SEA 47 for 1 yard (L.Hill).,7,14,2012 -20121111_NYJ@SEA,3,26,0,NYJ,SEA,3,2,47,(11:00) (Shotgun) M.Sanchez pass incomplete short left to D.Keller.,7,14,2012 -20121111_NYJ@SEA,3,25,56,NYJ,SEA,4,2,47,(10:56) R.Malone punts 37 yards to SEA 10 Center-T.Purdum fair catch by L.Washington.,7,14,2012 -20121111_NYJ@SEA,3,25,49,SEA,NYJ,1,10,90,(10:49) R.Wilson pass incomplete short left to S.Rice.,14,7,2012 -20121111_NYJ@SEA,3,25,43,SEA,NYJ,2,10,90,(10:43) M.Lynch right tackle to SEA 13 for 3 yards (M.Wilkerson).,14,7,2012 -20121111_NYJ@SEA,3,24,59,SEA,NYJ,3,7,87,(9:59) (Shotgun) R.Wilson pass short left to Z.Miller to SEA 22 for 9 yards (E.Lankster M.Wilkerson).,14,7,2012 -20121111_NYJ@SEA,3,24,12,SEA,NYJ,1,10,78,(9:12) M.Lynch up the middle to SEA 24 for 2 yards (D.Harris; S.Pouha).,14,7,2012 -20121111_NYJ@SEA,3,23,35,SEA,NYJ,2,8,76,(8:35) (Shotgun) R.Wilson sacked at SEA 24 for 0 yards (sack split by B.Thomas and D.Harris).,14,7,2012 -20121111_NYJ@SEA,3,22,53,SEA,NYJ,3,8,76,(7:53) (Shotgun) R.Wilson pass short middle to D.Baldwin to SEA 35 for 11 yards (L.Landry).,14,7,2012 -20121111_NYJ@SEA,3,22,7,SEA,NYJ,1,10,65,(7:07) R.Wilson pass incomplete short right to S.Rice (K.Wilson).,14,7,2012 -20121111_NYJ@SEA,3,22,1,SEA,NYJ,2,10,65,(7:01) M.Lynch left guard to SEA 44 for 9 yards (D.Harris; E.Smith).,14,7,2012 -20121111_NYJ@SEA,3,21,20,SEA,NYJ,3,1,56,(6:20) M.Lynch left tackle to SEA 44 for no gain (B.Thomas).,14,7,2012 -20121111_NYJ@SEA,3,20,40,SEA,NYJ,4,1,56,(5:40) J.Ryan punts 36 yards to NYJ 20 Center-C.Gresham fair catch by J.Kerley.,14,7,2012 -20121111_NYJ@SEA,3,20,33,NYJ,SEA,1,10,80,(5:33) J.Kerley right end pushed ob at NYJ 25 for 5 yards (M.Trufant).,7,14,2012 -20121111_NYJ@SEA,3,19,58,NYJ,SEA,2,5,75,(4:58) (Shotgun) T.Tebow scrambles right end to NYJ 31 for 6 yards (B.Wagner).,7,14,2012 -20121111_NYJ@SEA,3,19,16,NYJ,SEA,1,10,69,(4:16) J.Smith reported in as eligible. S.Greene right tackle to NYJ 34 for 3 yards (M.Morgan).,7,14,2012 -20121111_NYJ@SEA,3,18,36,NYJ,SEA,2,7,66,(3:36) (Shotgun) M.Sanchez pass short middle to D.Keller to NYJ 45 for 11 yards (K.Chancellor).,7,14,2012 -20121111_NYJ@SEA,3,17,59,NYJ,SEA,1,10,55,(2:59) S.Greene up the middle to NYJ 48 for 3 yards (B.Mebane; A.Branch).,7,14,2012 -20121111_NYJ@SEA,3,17,23,NYJ,SEA,2,7,52,(2:23) M.Sanchez pass incomplete deep right to J.Kerley.,7,14,2012 -20121111_NYJ@SEA,3,17,16,NYJ,SEA,3,7,52,(2:16) (Shotgun) M.Sanchez sacked at NYJ 42 for -6 yards (B.Irvin).,7,14,2012 -20121111_NYJ@SEA,3,17,1,NYJ,SEA,4,13,58,(2:01) R.Malone punts 42 yards to SEA 16 Center-T.Purdum out of bounds.,7,14,2012 -20121111_NYJ@SEA,3,16,51,SEA,NYJ,1,10,84,(1:51) R.Wilson pass short right to Z.Miller pushed ob at SEA 25 for 9 yards (D.Davis).,14,7,2012 -20121111_NYJ@SEA,3,16,24,SEA,NYJ,2,1,75,(1:24) (Shotgun) M.Lynch left tackle to SEA 28 for 3 yards (M.Wilkerson).,14,7,2012 -20121111_NYJ@SEA,3,15,43,SEA,NYJ,1,10,72,(:43) R.Wilson scrambles right end pushed ob at SEA 29 for 1 yard (L.Landry).,14,7,2012 -20121111_NYJ@SEA,3,15,11,SEA,NYJ,2,9,71,(:11) (Shotgun) R.Wilson right end ran ob at SEA 47 for 18 yards.,14,7,2012 -20121111_NYJ@SEA,4,15,0,SEA,NYJ,1,10,53,(15:00) M.Lynch up the middle to NYJ 48 for 5 yards (B.Thomas).,14,7,2012 -20121111_NYJ@SEA,4,14,22,SEA,NYJ,2,5,48,(14:22) M.Lynch left guard to NYJ 31 for 17 yards (E.Lankster).,14,7,2012 -20121111_NYJ@SEA,4,13,40,SEA,NYJ,1,10,31,(13:40) (Shotgun) R.Wilson pass deep right to S.Rice for 31 yards TOUCHDOWN. Penalty on NYJ-E.Lankster Defensive Holding declined.,14,7,2012 -20121111_NYJ@SEA,4,13,40,SEA,NYJ,,,31,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan. PENALTY on NYJ-A.Cromartie Defensive Offside 5 yards enforced between downs.,14,7,2012 -20121111_NYJ@SEA,4,13,40,SEA,NYJ,,,31,S.Hauschka kicks 60 yards from SEA 40 to end zone Touchback.,21,7,2012 -20121111_NYJ@SEA,4,13,33,NYJ,SEA,1,10,80,(13:33) M.Sanchez pass deep left to D.Keller pushed ob at SEA 48 for 32 yards (K.Chancellor).,7,21,2012 -20121111_NYJ@SEA,4,13,0,NYJ,SEA,1,10,48,(13:00) (Shotgun) T.Tebow pass incomplete deep left to J.Kerley (E.Thomas) [B.Mebane]. PENALTY on SEA-R.Bryant Defensive Holding 5 yards enforced at SEA 48 - No Play.,7,21,2012 -20121111_NYJ@SEA,4,12,53,NYJ,SEA,1,10,43,(12:53) S.Greene right end to SEA 36 for 7 yards (K.Chancellor M.Morgan).,7,21,2012 -20121111_NYJ@SEA,4,12,18,NYJ,SEA,2,3,36,(12:18) J.Smith reported in as eligible. S.Greene up the middle to SEA 32 for 4 yards (M.Morgan; C.Clemons).,7,21,2012 -20121111_NYJ@SEA,4,11,41,NYJ,SEA,1,10,32,(11:41) M.Sanchez sacked at SEA 46 for -14 yards (R.Sherman). FUMBLES (R.Sherman) [R.Sherman] RECOVERED by SEA-J.Jones at SEA 48. J.Jones to NYJ 49 for 3 yards (J.Smith).,7,21,2012 -20121111_NYJ@SEA,4,11,32,SEA,NYJ,1,10,49,(11:32) M.Lynch left tackle to NYJ 44 for 5 yards (M.Devito).,21,7,2012 -20121111_NYJ@SEA,4,10,49,SEA,NYJ,2,5,44,(10:49) M.Lynch left guard to NYJ 44 for no gain (B.Scott).,21,7,2012 -20121111_NYJ@SEA,4,10,6,SEA,NYJ,3,5,44,(10:06) (Shotgun) R.Wilson pass short right to G.Tate pushed ob at NYJ 31 for 13 yards (Y.Bell).,21,7,2012 -20121111_NYJ@SEA,4,10,6,SEA,NYJ,1,10,31,(10:06) (Shotgun) R.Wilson right tackle to NYJ 23 for 8 yards.,21,7,2012 -20121111_NYJ@SEA,4,8,58,SEA,NYJ,2,2,23,(8:58) M.Lynch left tackle to NYJ 8 for 15 yards (Y.Bell).,21,7,2012 -20121111_NYJ@SEA,4,8,14,SEA,NYJ,1,8,8,(8:14) M.Lynch left tackle for 8 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on SEA-J.Moffitt Offensive Holding 10 yards enforced at NYJ 8 - No Play.,21,7,2012 -20121111_NYJ@SEA,4,8,8,SEA,NYJ,1,18,18,(8:08) PENALTY on SEA-B.Edwards False Start 5 yards enforced at NYJ 18 - No Play.,21,7,2012 -20121111_NYJ@SEA,4,8,8,SEA,NYJ,1,23,23,(8:08) G.Tate pass deep left to S.Rice for 23 yards TOUCHDOWN.,21,7,2012 -20121111_NYJ@SEA,4,8,8,SEA,NYJ,,,23,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,21,7,2012 -20121111_NYJ@SEA,4,8,8,SEA,NYJ,,,23,S.Hauschka kicks 70 yards from SEA 35 to NYJ -5. E.Gates to NYJ 35 for 40 yards (S.Hauschka).,28,7,2012 -20121111_NYJ@SEA,4,7,53,NYJ,SEA,1,10,65,(7:53) (Shotgun) PENALTY on NYJ-A.Howard False Start 5 yards enforced at NYJ 35 - No Play.,7,28,2012 -20121111_NYJ@SEA,4,7,53,NYJ,SEA,1,15,70,(7:53) (Shotgun) M.Sanchez pass incomplete deep right to J.Kerley (R.Sherman).,7,28,2012 -20121111_NYJ@SEA,4,7,47,NYJ,SEA,2,15,70,(7:47) (Shotgun) M.Sanchez pass short left to S.Greene to NYJ 35 for 5 yards (L.Hill).,7,28,2012 -20121111_NYJ@SEA,4,7,16,NYJ,SEA,3,10,65,(7:16) (Shotgun) M.Sanchez pass incomplete short left to E.Gates.,7,28,2012 -20121111_NYJ@SEA,4,7,12,NYJ,SEA,4,10,65,(7:12) R.Malone punts 46 yards to SEA 19 Center-T.Purdum fair catch by L.Washington.,7,28,2012 -20121111_NYJ@SEA,4,7,5,SEA,NYJ,1,10,81,(7:05) R.Turbin up the middle to SEA 17 for -2 yards (D.Harris).,28,7,2012 -20121111_NYJ@SEA,4,6,23,SEA,NYJ,2,12,83,(6:23) (Shotgun) M.Lynch right tackle to SEA 35 for 18 yards (Y.Bell).,28,7,2012 -20121111_NYJ@SEA,4,5,35,SEA,NYJ,1,10,65,(5:35) R.Turbin up the middle to SEA 38 for 3 yards (B.Scott S.Pouha).,28,7,2012 -20121111_NYJ@SEA,4,4,56,SEA,NYJ,2,7,62,(4:56) R.Turbin up the middle to SEA 43 for 5 yards (E.Lankster; C.Pace).,28,7,2012 -20121111_NYJ@SEA,4,4,13,SEA,NYJ,3,2,57,(4:13) (Shotgun) R.Wilson pass incomplete short left to R.Turbin. PENALTY on NYJ-Y.Bell Unnecessary Roughness 15 yards enforced at SEA 43 - No Play.,28,7,2012 -20121111_NYJ@SEA,4,4,10,SEA,NYJ,1,10,42,(4:10) R.Turbin left end to NYJ 39 for 3 yards (A.Cromartie).,28,7,2012 -20121111_NYJ@SEA,4,3,26,SEA,NYJ,2,7,39,(3:26) R.Turbin left guard to NYJ 37 for 2 yards (M.Wilkerson; M.Devito).,28,7,2012 -20121111_NYJ@SEA,4,2,41,SEA,NYJ,3,5,37,(2:41) R.Turbin right tackle to NYJ 35 for 2 yards (D.Harris).,28,7,2012 -20121111_NYJ@SEA,4,2,0,SEA,NYJ,4,3,35,(2:00) (Shotgun) R.Wilson pass short right to Z.Miller to NYJ 24 for 11 yards (Y.Bell).,28,7,2012 -20121111_NYJ@SEA,4,1,18,SEA,NYJ,1,10,24,(1:18) R.Wilson kneels to NYJ 26 for -2 yards.,28,7,2012 -20121111_NYJ@SEA,4,0,39,SEA,NYJ,2,12,26,(:39) R.Wilson kneels to NYJ 27 for -1 yards.,28,7,2012 -20121111_NYJ@SEA,4,0,39,SEA,NYJ,,,26,                      ,28,7,2012 -20121111_DAL@PHI,1,0,0,DAL,PHI,,,26,D.Bailey kicks 66 yards from DAL 35 to PHI -1. B.Boykin to PHI 19 for 20 yards (A.Albright).,0,0,2012 -20121111_DAL@PHI,1,59,49,PHI,DAL,1,10,81,(14:49) (Shotgun) M.Vick pass short left to B.Celek to PHI 36 for 17 yards (C.Peprah).,0,0,2012 -20121111_DAL@PHI,1,59,28,PHI,DAL,1,10,64,(14:28) (Shotgun) M.Vick pass short right to D.Jackson ran ob at PHI 45 for 9 yards (B.Carr).,0,0,2012 -20121111_DAL@PHI,1,59,0,PHI,DAL,2,1,55,(14:00) (Shotgun) M.Vick pass incomplete short left [D.Ware].,0,0,2012 -20121111_DAL@PHI,1,58,59,PHI,DAL,3,1,55,(13:59) L.McCoy right end ran ob at PHI 45 for no gain. PENALTY on DAL-J.Hatcher Defensive Offside 5 yards enforced at PHI 45 - No Play.,0,0,2012 -20121111_DAL@PHI,1,58,43,PHI,DAL,1,10,50,(13:43) L.McCoy up the middle to DAL 44 for 6 yards (E.Sims).,0,0,2012 -20121111_DAL@PHI,1,58,21,PHI,DAL,2,4,44,(13:21) L.McCoy left tackle to DAL 43 for 1 yard (B.Carter).,0,0,2012 -20121111_DAL@PHI,1,57,41,PHI,DAL,3,3,43,(12:41) (Shotgun) PENALTY on DAL-J.Hatcher Encroachment 5 yards enforced at DAL 43 - No Play.,0,0,2012 -20121111_DAL@PHI,1,57,21,PHI,DAL,1,10,38,(12:21) L.McCoy left end to DAL 38 for no gain (A.Spencer).,0,0,2012 -20121111_DAL@PHI,1,56,47,PHI,DAL,2,10,38,(11:47) (Shotgun) M.Vick pass short left to D.Jackson pushed ob at DAL 7 for 31 yards (B.Carr).,0,0,2012 -20121111_DAL@PHI,1,56,13,PHI,DAL,1,7,7,(11:13) (Shotgun) L.McCoy up the middle to DAL 5 for 2 yards (E.Sims; J.Price-Brent).,0,0,2012 -20121111_DAL@PHI,1,55,36,PHI,DAL,2,5,5,(10:36) (Shotgun) M.Vick scrambles up the middle to DAL 2 for 3 yards (V.Butler).,0,0,2012 -20121111_DAL@PHI,1,54,57,PHI,DAL,3,2,2,(9:57) M.Vick pass short left to R.Cooper for 2 yards TOUCHDOWN.,0,0,2012 -20121111_DAL@PHI,1,54,57,PHI,DAL,,,2,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20121111_DAL@PHI,1,54,57,PHI,DAL,,,2,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,7,0,2012 -20121111_DAL@PHI,1,54,53,DAL,PHI,1,10,80,(9:53) F.Jones left tackle to DAL 24 for 4 yards (K.Coleman).,0,7,2012 -20121111_DAL@PHI,1,54,20,DAL,PHI,2,6,76,(9:20) T.Romo pass short right to J.Witten to DAL 29 for 5 yards (N.Allen).,0,7,2012 -20121111_DAL@PHI,1,53,37,DAL,PHI,3,1,71,(8:37) T.Romo pass short right to M.Austin ran ob at DAL 36 for 7 yards.,0,7,2012 -20121111_DAL@PHI,1,53,11,DAL,PHI,1,10,64,(8:11) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 36 - No Play.,0,7,2012 -20121111_DAL@PHI,1,52,52,DAL,PHI,1,15,69,(7:52) F.Jones up the middle to DAL 44 for 13 yards (K.Coleman).,0,7,2012 -20121111_DAL@PHI,1,52,19,DAL,PHI,2,2,56,(7:19) L.Vickers left end to PHI 43 for 13 yards (D.Landri).,0,7,2012 -20121111_DAL@PHI,1,51,42,DAL,PHI,1,10,43,(6:42) L.Dunbar right end to PHI 38 for 5 yards (D.Landri).,0,7,2012 -20121111_DAL@PHI,1,51,5,DAL,PHI,2,5,38,(6:05) L.Dunbar left end to PHI 35 for 3 yards (N.Asomugha; A.Jordan).,0,7,2012 -20121111_DAL@PHI,1,50,23,DAL,PHI,3,2,35,(5:23) (Shotgun) T.Romo pass short left to C.Beasley to PHI 32 for 3 yards (K.Coleman; D.Ryans).,0,7,2012 -20121111_DAL@PHI,1,49,48,DAL,PHI,1,10,32,(4:48) T.Romo pass short left to J.Witten ran ob at PHI 24 for 8 yards.,0,7,2012 -20121111_DAL@PHI,1,49,24,DAL,PHI,2,2,24,(4:24) F.Jones right guard to PHI 21 for 3 yards (A.Jordan).,0,7,2012 -20121111_DAL@PHI,1,48,40,DAL,PHI,1,10,21,(3:40) F.Jones left tackle to PHI 12 for 9 yards (M.Kendricks).,0,7,2012 -20121111_DAL@PHI,1,47,59,DAL,PHI,2,1,12,(2:59) F.Jones left guard to PHI 11 for 1 yard (A.Jordan).,0,7,2012 -20121111_DAL@PHI,1,47,21,DAL,PHI,1,10,11,(2:21) T.Romo pass short left to F.Jones for 11 yards TOUCHDOWN.,0,7,2012 -20121111_DAL@PHI,1,47,21,DAL,PHI,,,11,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,7,2012 -20121111_DAL@PHI,1,47,21,DAL,PHI,,,11,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,7,7,2012 -20121111_DAL@PHI,1,47,13,PHI,DAL,1,10,80,(2:13) (Shotgun) L.McCoy up the middle to PHI 26 for 6 yards (O.Scandrick).,7,7,2012 -20121111_DAL@PHI,1,46,35,PHI,DAL,2,4,74,(1:35) M.Vick pass incomplete deep left to J.Maclin (C.Peprah). PHI-J.Maclin was injured during the play. His return is Doubtful.,7,7,2012 -20121111_DAL@PHI,1,46,28,PHI,DAL,3,4,74,(1:28) (Shotgun) M.Vick right end to PHI 26 for no gain (J.Ratliff; A.Spencer).,7,7,2012 -20121111_DAL@PHI,1,45,48,PHI,DAL,4,4,74,(:48) M.McBriar punts 44 yards to DAL 30 Center-J.Dorenbos. D.Harris to DAL 35 for 5 yards (N.Allen).,7,7,2012 -20121111_DAL@PHI,1,45,36,DAL,PHI,1,10,65,(:36) T.Romo pass incomplete short left to M.Austin.,7,7,2012 -20121111_DAL@PHI,1,45,31,DAL,PHI,2,10,65,(:31) L.Dunbar right tackle to DAL 40 for 5 yards (C.Marsh).,7,7,2012 -20121111_DAL@PHI,2,45,0,DAL,PHI,3,5,60,(15:00) (Shotgun) T.Romo pass incomplete deep right to D.Bryant.,7,7,2012 -20121111_DAL@PHI,2,44,56,DAL,PHI,4,5,60,(14:56) B.Moorman punts 42 yards to PHI 18 Center-L.Ladouceur fair catch by D.Johnson.,7,7,2012 -20121111_DAL@PHI,2,44,48,PHI,DAL,1,10,82,(14:48) B.Brown right end to PHI 17 for -1 yards (B.Carter).,7,7,2012 -20121111_DAL@PHI,2,44,11,PHI,DAL,2,11,83,(14:11) (Shotgun) M.Vick pass short right to L.McCoy ran ob at PHI 29 for 12 yards.,7,7,2012 -20121111_DAL@PHI,2,43,35,PHI,DAL,1,10,71,(13:35) (Shotgun) M.Vick left tackle to PHI 33 for 4 yards (D.Ware).,7,7,2012 -20121111_DAL@PHI,2,43,3,PHI,DAL,2,6,67,(13:03) (Shotgun) M.Vick pass short left to J.Avant to PHI 32 for -1 yards (B.Carter).,7,7,2012 -20121111_DAL@PHI,2,42,23,PHI,DAL,3,7,68,(12:23) (Shotgun) M.Vick scrambles up the middle to PHI 32 for no gain (J.Ratliff). PENALTY on DAL-M.Claiborne Defensive Offside 5 yards enforced at PHI 32 - No Play.,7,7,2012 -20121111_DAL@PHI,2,41,53,PHI,DAL,3,2,63,(11:53) (Shotgun) M.Vick pass incomplete short left to L.McCoy (E.Sims). PHI-M.Vick was injured during the play. He is Out.,7,7,2012 -20121111_DAL@PHI,2,41,49,PHI,DAL,4,2,63,(11:49) M.McBriar punts 63 yards to end zone Center-J.Dorenbos Touchback.,7,7,2012 -20121111_DAL@PHI,2,41,40,DAL,PHI,1,10,80,(11:40) F.Jones up the middle to DAL 22 for 2 yards (M.Kendricks).,7,7,2012 -20121111_DAL@PHI,2,41,4,DAL,PHI,2,8,78,(11:04) (Shotgun) T.Romo pass short middle to F.Jones to DAL 26 for 4 yards (D.Ryans).,7,7,2012 -20121111_DAL@PHI,2,40,38,DAL,PHI,3,4,74,(10:38) (Shotgun) T.Romo pass short right to L.Vickers to DAL 43 for 17 yards (K.Coleman).,7,7,2012 -20121111_DAL@PHI,2,40,2,DAL,PHI,1,10,57,(10:02) T.Romo pass short right to F.Jones to 50 for 7 yards (T.Cole).,7,7,2012 -20121111_DAL@PHI,2,39,31,DAL,PHI,2,3,50,(9:31) L.Dunbar up the middle to PHI 45 for 5 yards (T.Cole).,7,7,2012 -20121111_DAL@PHI,2,38,56,DAL,PHI,1,10,45,(8:56) T.Romo pass incomplete short left to J.Witten (D.Landri).,7,7,2012 -20121111_DAL@PHI,2,38,51,DAL,PHI,2,10,45,(8:51) T.Romo sacked at 50 for -5 yards (M.Kendricks).,7,7,2012 -20121111_DAL@PHI,2,38,11,DAL,PHI,3,15,50,(8:11) (Shotgun) T.Romo sacked at DAL 43 for -7 yards (F.Cox).,7,7,2012 -20121111_DAL@PHI,2,37,48,DAL,PHI,4,22,57,(7:48) B.Moorman punts 35 yards to PHI 22 Center-L.Ladouceur out of bounds.,7,7,2012 -20121111_DAL@PHI,2,37,41,PHI,DAL,1,10,78,(7:41) L.McCoy right end to PHI 22 for no gain (D.Ware).,7,7,2012 -20121111_DAL@PHI,2,37,2,PHI,DAL,2,10,78,(7:02) L.McCoy right end to PHI 27 for 5 yards (E.Sims).,7,7,2012 -20121111_DAL@PHI,2,36,16,PHI,DAL,3,5,73,(6:16) (Shotgun) N.Foles pass incomplete deep right to J.Avant. PHI-J.Avant was injured during the play. He is Out.,7,7,2012 -20121111_DAL@PHI,2,36,10,PHI,DAL,4,5,73,(6:10) M.McBriar punts 47 yards to DAL 26 Center-J.Dorenbos. D.Harris to DAL 32 for 6 yards (A.Jordan).,7,7,2012 -20121111_DAL@PHI,2,36,0,DAL,PHI,1,10,68,(6:00) T.Romo pass deep right to D.Bryant to PHI 19 for 49 yards (K.Coleman; D.Rodgers-Cromartie).,7,7,2012 -20121111_DAL@PHI,2,35,12,DAL,PHI,1,10,19,(5:12) L.Dunbar right end ran ob at PHI 16 for 3 yards.,7,7,2012 -20121111_DAL@PHI,2,34,48,DAL,PHI,2,7,16,(4:48) T.Romo pass short right to J.Witten to PHI 11 for 5 yards (N.Allen).,7,7,2012 -20121111_DAL@PHI,2,33,59,DAL,PHI,3,2,11,(3:59) (Shotgun) T.Romo pass incomplete short right to J.Witten.,7,7,2012 -20121111_DAL@PHI,2,33,54,DAL,PHI,4,2,11,(3:54) D.Bailey 30 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,7,7,2012 -20121111_DAL@PHI,2,33,54,DAL,PHI,,,11,D.Bailey kicks 67 yards from DAL 35 to PHI -2. B.Boykin to PHI 22 for 24 yards (E.Frampton).,10,7,2012 -20121111_DAL@PHI,2,33,44,PHI,DAL,1,10,78,(3:44) (Shotgun) N.Foles pass short right to C.Harbor to PHI 29 for 7 yards (D.McCray) [D.Ware].,7,10,2012 -20121111_DAL@PHI,2,33,8,PHI,DAL,2,3,71,(3:08) N.Foles pass short right to B.Celek to PHI 37 for 8 yards (D.McCray). PENALTY on PHI-D.Bell Offensive Holding 10 yards enforced at PHI 29 - No Play.,7,10,2012 -20121111_DAL@PHI,2,32,42,PHI,DAL,2,13,81,(2:42) (Shotgun) N.Foles pass incomplete short right to S.Havili (O.Scandrick).,7,10,2012 -20121111_DAL@PHI,2,32,38,PHI,DAL,3,13,81,(2:38) (Shotgun) N.Foles pass short left to L.McCoy to PHI 27 for 8 yards (D.McCray).,7,10,2012 -20121111_DAL@PHI,2,32,31,PHI,DAL,4,5,73,(2:31) M.McBriar punts 38 yards to DAL 35 Center-J.Dorenbos fair catch by D.Harris.,7,10,2012 -20121111_DAL@PHI,2,32,24,DAL,PHI,1,10,65,(2:24) F.Jones left end to 50 for 15 yards (K.Coleman).,10,7,2012 -20121111_DAL@PHI,2,32,0,DAL,PHI,1,10,50,(2:00) (Shotgun) T.Romo pass short middle to J.Witten to PHI 41 for 9 yards (N.Allen).,10,7,2012 -20121111_DAL@PHI,2,31,37,DAL,PHI,2,1,41,(1:37) (Shotgun) T.Romo pass incomplete short right to M.Austin (F.Cox).,10,7,2012 -20121111_DAL@PHI,2,31,37,DAL,PHI,3,1,41,(1:37) (Shotgun) T.Romo pass short right to J.Witten to PHI 41 for no gain (D.Ryans) [T.Cole].,10,7,2012 -20121111_DAL@PHI,2,30,53,DAL,PHI,4,1,41,(:53) B.Moorman punts 33 yards to PHI 8 Center-L.Ladouceur fair catch by D.Johnson.,10,7,2012 -20121111_DAL@PHI,2,30,45,PHI,DAL,1,10,92,(:45) (Shotgun) L.McCoy right end to PHI 8 for no gain (B.Carter). PENALTY on DAL-A.Spencer Defensive Offside 5 yards enforced at PHI 8 - No Play.,7,10,2012 -20121111_DAL@PHI,2,30,43,PHI,DAL,1,5,87,(:43) (Shotgun) L.McCoy left end to PHI 13 for no gain (G.Sensabaugh).,7,10,2012 -20121111_DAL@PHI,2,30,34,PHI,DAL,2,5,87,(:34) (Shotgun) N.Foles pass short right to S.Havili ran ob at PHI 16 for 3 yards (B.Carr).,7,10,2012 -20121111_DAL@PHI,2,30,27,PHI,DAL,3,2,84,(:27) L.McCoy up the middle to PHI 16 for no gain (K.Coleman).,7,10,2012 -20121111_DAL@PHI,2,30,20,PHI,DAL,4,2,84,(:20) M.McBriar punts 54 yards to DAL 30 Center-J.Dorenbos. D.Harris to DAL 38 for 8 yards (S.Havili).,7,10,2012 -20121111_DAL@PHI,2,30,9,DAL,PHI,1,10,62,(:09) T.Romo kneels to DAL 37 for -1 yards.,10,7,2012 -20121111_DAL@PHI,3,30,0,PHI,DAL,,,62,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,7,10,2012 -20121111_DAL@PHI,3,30,0,DAL,PHI,1,10,80,(15:00) T.Romo pass incomplete short left to D.Bryant (N.Asomugha).,10,7,2012 -20121111_DAL@PHI,3,29,57,DAL,PHI,2,10,80,(14:57) T.Romo sacked at DAL 16 for -4 yards (C.Jenkins).,10,7,2012 -20121111_DAL@PHI,3,29,21,DAL,PHI,3,14,84,(14:21) (Shotgun) T.Romo pass incomplete short right [F.Cox].,10,7,2012 -20121111_DAL@PHI,3,29,15,DAL,PHI,4,14,84,(14:15) B.Moorman punts 46 yards to PHI 38 Center-L.Ladouceur downed by DAL-K.Wilber.,10,7,2012 -20121111_DAL@PHI,3,29,5,PHI,DAL,1,10,62,(14:05) N.Foles pass incomplete short left to J.Maclin.,7,10,2012 -20121111_DAL@PHI,3,29,2,PHI,DAL,2,10,62,(14:02) (Shotgun) N.Foles pass incomplete deep left to R.Cooper. PENALTY on DAL-M.Claiborne Defensive Holding 5 yards enforced at PHI 38 - No Play.,7,10,2012 -20121111_DAL@PHI,3,28,56,PHI,DAL,1,10,57,(13:56) L.McCoy left end pushed ob at DAL 34 for 23 yards (G.Sensabaugh).,7,10,2012 -20121111_DAL@PHI,3,28,23,PHI,DAL,1,10,34,(13:23) (Shotgun) L.McCoy right end to DAL 25 for 9 yards (C.Peprah). PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at DAL 34 - No Play.,7,10,2012 -20121111_DAL@PHI,3,28,0,PHI,DAL,1,20,44,(13:00) N.Foles pass deep left to J.Maclin for 44 yards TOUCHDOWN.,7,10,2012 -20121111_DAL@PHI,3,28,0,PHI,DAL,,,44,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,10,2012 -20121111_DAL@PHI,3,28,0,PHI,DAL,,,44,A.Henery kicks 68 yards from PHI 35 to DAL -3. L.Dunbar to DAL 14 for 17 yards (C.Anderson). FUMBLES (C.Anderson) recovered by DAL-E.Frampton at DAL 14. E.Frampton to DAL 17 for 3 yards (B.Hughes).,14,10,2012 -20121111_DAL@PHI,3,27,46,DAL,PHI,1,10,83,(12:46) F.Jones up the middle to DAL 21 for 4 yards (A.Jordan).,10,14,2012 -20121111_DAL@PHI,3,27,11,DAL,PHI,2,6,79,(12:11) F.Jones up the middle to DAL 22 for 1 yard (M.Kendricks).,10,14,2012 -20121111_DAL@PHI,3,26,30,DAL,PHI,3,5,78,(11:30) (Shotgun) T.Romo pass short right to L.Vickers to DAL 23 for 1 yard (D.Ryans).,10,14,2012 -20121111_DAL@PHI,3,25,55,DAL,PHI,4,4,77,(10:55) B.Moorman punts 53 yards to PHI 24 Center-L.Ladouceur. D.Johnson to PHI 28 for 4 yards (A.Albright).,10,14,2012 -20121111_DAL@PHI,3,25,42,PHI,DAL,1,10,72,(10:42) N.Foles pass short right to D.Jackson to PHI 35 for 7 yards (B.Carr).,14,10,2012 -20121111_DAL@PHI,3,25,8,PHI,DAL,2,3,65,(10:08) (Shotgun) N.Foles pass short right to B.Celek to PHI 35 for no gain (A.Spencer).,14,10,2012 -20121111_DAL@PHI,3,24,21,PHI,DAL,3,3,65,(9:21) (Shotgun) N.Foles pass incomplete short left to D.Jackson. PENALTY on DAL-O.Scandrick Defensive Holding 5 yards enforced at PHI 35 - No Play.,14,10,2012 -20121111_DAL@PHI,3,24,16,PHI,DAL,1,10,60,(9:16) (Shotgun) N.Foles pass short right to J.Maclin to PHI 44 for 4 yards (E.Sims).,14,10,2012 -20121111_DAL@PHI,3,23,39,PHI,DAL,2,6,56,(8:39) (Shotgun) N.Foles pass short left to L.McCoy to PHI 48 for 4 yards (M.Claiborne).,14,10,2012 -20121111_DAL@PHI,3,22,50,PHI,DAL,3,2,52,(7:50) N.Foles pass incomplete deep left to J.Maclin. PENALTY on DAL-M.Claiborne Defensive Pass Interference 20 yards enforced at PHI 48 - No Play.,14,10,2012 -20121111_DAL@PHI,3,22,44,PHI,DAL,1,10,32,(7:44) L.McCoy left end to DAL 19 for 13 yards (B.Carter).,14,10,2012 -20121111_DAL@PHI,3,22,2,PHI,DAL,1,10,19,(7:02) L.McCoy right end to DAL 13 for 6 yards (J.Ratliff).,14,10,2012 -20121111_DAL@PHI,3,21,21,PHI,DAL,2,4,13,(6:21) (Shotgun) N.Foles pass short right to J.Maclin to DAL 14 for -1 yards (O.Scandrick).,14,10,2012 -20121111_DAL@PHI,3,20,38,PHI,DAL,3,5,14,(5:38) (Shotgun) N.Foles pass short right to D.Johnson to DAL 2 for 12 yards (B.Carr). PENALTY on PHI-K.Dunlap Illegal Use of Hands 10 yards enforced at DAL 14 - No Play.,14,10,2012 -20121111_DAL@PHI,3,20,13,PHI,DAL,3,15,24,(5:13) (Shotgun) B.Brown right end to DAL 22 for 2 yards (B.Carter).,14,10,2012 -20121111_DAL@PHI,3,19,36,PHI,DAL,4,13,22,(4:36) A.Henery 40 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,14,10,2012 -20121111_DAL@PHI,3,19,36,PHI,DAL,,,22,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,17,10,2012 -20121111_DAL@PHI,3,19,32,DAL,PHI,1,10,80,(4:32) T.Romo pass short right to J.Witten to DAL 19 for -1 yards (M.Kendricks).,10,17,2012 -20121111_DAL@PHI,3,18,56,DAL,PHI,2,11,81,(3:56) T.Romo pass short left to J.Witten ran ob at DAL 34 for 15 yards.,10,17,2012 -20121111_DAL@PHI,3,18,32,DAL,PHI,1,10,66,(3:32) (Shotgun) T.Romo pass short right to J.Witten to DAL 40 for 6 yards (M.Kendricks).,10,17,2012 -20121111_DAL@PHI,3,17,57,DAL,PHI,2,4,60,(2:57) L.Dunbar up the middle to DAL 39 for -1 yards (K.Coleman).,10,17,2012 -20121111_DAL@PHI,3,17,14,DAL,PHI,3,5,61,(2:14) (Shotgun) T.Romo pass deep right to M.Austin to PHI 36 for 25 yards (N.Allen; D.Rodgers-Cromartie).,10,17,2012 -20121111_DAL@PHI,3,16,25,DAL,PHI,1,10,36,(1:25) (Shotgun) T.Romo pass short right to D.Bryant to PHI 28 for 8 yards (D.Ryans).,10,17,2012 -20121111_DAL@PHI,3,15,50,DAL,PHI,2,2,28,(:50) L.Vickers left tackle to PHI 30 for -2 yards (D.Ryans).,10,17,2012 -20121111_DAL@PHI,3,15,4,DAL,PHI,3,4,30,(:04) (Shotgun) T.Romo pass deep right to D.Bryant for 30 yards TOUCHDOWN. Penalty on PHI-D.Rodgers-Cromartie Defensive Pass Interference declined. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,17,2012 -20121111_DAL@PHI,3,15,4,DAL,PHI,,,30,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,17,2012 -20121111_DAL@PHI,4,15,0,DAL,PHI,,,30,D.Bailey kicks 67 yards from DAL 35 to PHI -2. B.Boykin to PHI 22 for 24 yards (E.Sims).,17,17,2012 -20121111_DAL@PHI,4,14,55,PHI,DAL,1,10,78,(14:55) N.Foles pass short right intended for L.McCoy INTERCEPTED by A.Spencer at PHI 17. A.Spencer to PHI 17 for no gain (L.McCoy). PENALTY on DAL-M.Claiborne Defensive Holding 5 yards enforced at PHI 22 - No Play.,17,17,2012 -20121111_DAL@PHI,4,14,47,PHI,DAL,1,10,73,(14:47) L.McCoy up the middle to PHI 29 for 2 yards (E.Sims).,17,17,2012 -20121111_DAL@PHI,4,14,4,PHI,DAL,2,8,71,(14:04) (Shotgun) N.Foles pass incomplete short right to D.Jackson.,17,17,2012 -20121111_DAL@PHI,4,13,58,PHI,DAL,3,8,71,(13:58) (Shotgun) N.Foles pass incomplete deep right to D.Jackson.,17,17,2012 -20121111_DAL@PHI,4,13,52,PHI,DAL,4,8,71,(13:52) M.McBriar punts 49 yards to DAL 22 Center-J.Dorenbos. D.Harris for 78 yards TOUCHDOWN.,17,17,2012 -20121111_DAL@PHI,4,13,52,DAL,PHI,,,71,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,17,2012 -20121111_DAL@PHI,4,13,52,DAL,PHI,,,71,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback.,24,17,2012 -20121111_DAL@PHI,4,13,35,PHI,DAL,1,10,80,(13:35) N.Foles pass short right to B.Celek to PHI 34 for 14 yards (B.Carter).,17,24,2012 -20121111_DAL@PHI,4,13,3,PHI,DAL,1,10,66,(13:03) L.McCoy left end pushed ob at PHI 37 for 3 yards (M.Claiborne).,17,24,2012 -20121111_DAL@PHI,4,12,37,PHI,DAL,2,7,63,(12:37) N.Foles pass short right intended for D.Jackson INTERCEPTED by B.Carr at PHI 47. B.Carr for 47 yards TOUCHDOWN.,17,24,2012 -20121111_DAL@PHI,4,12,37,DAL,PHI,,,63,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,24,17,2012 -20121111_DAL@PHI,4,12,37,DAL,PHI,,,63,D.Bailey kicks 70 yards from DAL 35 to PHI -5. B.Boykin to PHI 21 for 26 yards (P.Tanner).,31,17,2012 -20121111_DAL@PHI,4,12,19,PHI,DAL,1,10,79,(12:19) (Shotgun) PENALTY on DAL-J.Price-Brent Encroachment 5 yards enforced at PHI 21 - No Play.,17,31,2012 -20121111_DAL@PHI,4,12,19,PHI,DAL,1,5,74,(12:19) B.Brown left end to PHI 26 for no gain (J.Hatcher; V.Butler).,17,31,2012 -20121111_DAL@PHI,4,11,47,PHI,DAL,2,5,74,(11:47) (Shotgun) N.Foles pass short middle to C.Harbor to PHI 36 for 10 yards (B.Carter).,17,31,2012 -20121111_DAL@PHI,4,11,3,PHI,DAL,1,10,64,(11:03) (Shotgun) N.Foles pass short right to J.Maclin to PHI 47 for 11 yards (O.Scandrick).,17,31,2012 -20121111_DAL@PHI,4,10,32,PHI,DAL,1,10,53,(10:32) (No Huddle Shotgun) N.Foles pass short middle to R.Cooper to DAL 48 for 5 yards (D.McCray). PENALTY on PHI-K.Dunlap Illegal Use of Hands 10 yards enforced at PHI 47 - No Play.,17,31,2012 -20121111_DAL@PHI,4,10,4,PHI,DAL,1,20,63,(10:04) (Shotgun) N.Foles pass incomplete short left to J.Maclin (O.Scandrick).,17,31,2012 -20121111_DAL@PHI,4,9,58,PHI,DAL,2,20,63,(9:58) N.Foles pass short right to L.McCoy to PHI 33 for -4 yards (O.Scandrick).,17,31,2012 -20121111_DAL@PHI,4,9,12,PHI,DAL,3,24,67,(9:12) (Shotgun) N.Foles pass short right to C.Harbor to PHI 41 for 8 yards (D.McCray) [J.Hatcher].,17,31,2012 -20121111_DAL@PHI,4,8,29,PHI,DAL,4,16,59,(8:29) M.McBriar punts 59 yards to end zone Center-J.Dorenbos Touchback.,17,31,2012 -20121111_DAL@PHI,4,8,20,DAL,PHI,1,10,80,(8:20) F.Jones up the middle to DAL 21 for 1 yard (D.Ryans). PENALTY on PHI-M.Patterson Illegal Use of Hands 5 yards enforced at DAL 21.,31,17,2012 -20121111_DAL@PHI,4,8,9,DAL,PHI,1,10,74,(8:09) F.Jones right tackle to DAL 29 for 3 yards (D.Tapp).,31,17,2012 -20121111_DAL@PHI,4,7,24,DAL,PHI,2,7,71,(7:24) PENALTY on DAL-J.Phillips False Start 5 yards enforced at DAL 29 - No Play.,31,17,2012 -20121111_DAL@PHI,4,6,59,DAL,PHI,2,12,76,(6:59) F.Jones left end to DAL 27 for 3 yards (D.Tapp).,31,17,2012 -20121111_DAL@PHI,4,6,11,DAL,PHI,3,9,73,(6:11) F.Jones right end to DAL 35 for 8 yards (M.Kendricks).,31,17,2012 -20121111_DAL@PHI,4,5,34,DAL,PHI,4,1,65,(5:34) (Punt formation) PENALTY on DAL-J.Phillips False Start 5 yards enforced at DAL 35 - No Play.,31,17,2012 -20121111_DAL@PHI,4,5,33,DAL,PHI,4,6,70,(5:33) B.Moorman punts 47 yards to PHI 23 Center-L.Ladouceur fair catch by D.Johnson.,31,17,2012 -20121111_DAL@PHI,4,5,26,PHI,DAL,1,10,77,(5:26) (Shotgun) N.Foles pass incomplete short right to R.Cooper.,17,31,2012 -20121111_DAL@PHI,4,5,23,PHI,DAL,2,10,77,(5:23) (Shotgun) N.Foles pass short left to J.Maclin to PHI 37 for 14 yards (O.Scandrick) [A.Spencer].,17,31,2012 -20121111_DAL@PHI,4,4,53,PHI,DAL,1,10,63,(4:53) (Shotgun) N.Foles pass short left to J.Maclin to 50 for 13 yards (M.Claiborne).,17,31,2012 -20121111_DAL@PHI,4,4,32,PHI,DAL,1,10,50,(4:32) (No Huddle Shotgun) L.McCoy right end to DAL 41 for 9 yards.,17,31,2012 -20121111_DAL@PHI,4,4,8,PHI,DAL,2,1,41,(4:08) (No Huddle Shotgun) N.Foles pass short middle to J.Maclin to DAL 34 for 7 yards (B.Carter).,17,31,2012 -20121111_DAL@PHI,4,3,40,PHI,DAL,1,10,34,(3:40) L.McCoy up the middle to DAL 28 for 6 yards (B.Carter).,17,31,2012 -20121111_DAL@PHI,4,3,18,PHI,DAL,2,4,28,(3:18) (No Huddle Shotgun) N.Foles pass incomplete deep right to J.Maclin.,17,31,2012 -20121111_DAL@PHI,4,3,14,PHI,DAL,3,4,28,(3:14) (Shotgun) N.Foles sacked at DAL 33 for -5 yards (V.Butler).,17,31,2012 -20121111_DAL@PHI,4,2,41,PHI,DAL,4,9,33,(2:41) (Shotgun) N.Foles pass short right to D.Johnson to DAL 1 for 32 yards (G.Sensabaugh).,17,31,2012 -20121111_DAL@PHI,4,2,2,PHI,DAL,1,1,1,(2:02) (Shotgun) N.Foles pass incomplete short right to D.Jackson. PENALTY on DAL-M.Claiborne Defensive Offside 0 yards enforced at DAL 1 - No Play.,17,31,2012 -20121111_DAL@PHI,4,1,57,PHI,DAL,1,1,1,(1:57) S.Havili up the middle for 1 yard TOUCHDOWN.,17,31,2012 -20121111_DAL@PHI,4,1,57,PHI,DAL,,,1,A.Henery extra point is No Good Hit Left Upright Center-J.Dorenbos Holder-M.McBriar.,17,31,2012 -20121111_DAL@PHI,4,1,57,PHI,DAL,,,1,(Onside Kick formation) A.Henery kicks onside 12 yards from PHI 35 to PHI 47. J.Witten to PHI 47 for no gain (C.Anderson).,23,31,2012 -20121111_DAL@PHI,4,1,54,DAL,PHI,1,10,47,(1:54) F.Jones up the middle to PHI 45 for 2 yards (K.Coleman).,31,23,2012 -20121111_DAL@PHI,4,1,49,DAL,PHI,2,8,45,(1:49) F.Jones right end to PHI 46 for -1 yards (D.Ryans).,31,23,2012 -20121111_DAL@PHI,4,1,44,DAL,PHI,3,9,46,(1:44) F.Jones left end to PHI 43 for 3 yards (N.Asomugha).,31,23,2012 -20121111_DAL@PHI,4,0,59,DAL,PHI,4,6,43,(:59) B.Moorman punts 32 yards to PHI 11 Center-L.Ladouceur out of bounds.,31,23,2012 -20121111_DAL@PHI,4,0,53,PHI,DAL,1,10,89,(:53) (Shotgun) PENALTY on PHI-D.Bell False Start 5 yards enforced at PHI 11 - No Play.,23,31,2012 -20121111_DAL@PHI,4,0,53,PHI,DAL,1,15,94,(:53) (Shotgun) N.Foles sacked at PHI 1 for -5 yards (A.Spencer). FUMBLES (A.Spencer) RECOVERED by DAL-J.Hatcher at PHI 0. TOUCHDOWN.,23,31,2012 -20121111_DAL@PHI,4,0,53,DAL,PHI,,,94,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,31,23,2012 -20121111_DAL@PHI,4,0,53,DAL,PHI,,,94,D.Bailey kicks 33 yards from DAL 35 to PHI 32. S.Havili to PHI 32 for no gain (D.Harris).,38,23,2012 -20121111_DAL@PHI,4,0,43,PHI,DAL,1,10,68,(:43) (Shotgun) N.Foles pass short right to R.Cooper pushed ob at DAL 46 for 22 yards (B.Carter).,23,38,2012 -20121111_DAL@PHI,4,0,36,PHI,DAL,1,10,46,(:36) (Shotgun) N.Foles pass short left to D.Jackson pushed ob at DAL 39 for 7 yards (M.Claiborne).,23,38,2012 -20121111_DAL@PHI,4,0,32,PHI,DAL,2,3,39,(:32) (Shotgun) N.Foles pass short left to D.Jackson to DAL 31 for 8 yards (M.Claiborne).,23,38,2012 -20121111_DAL@PHI,4,0,14,PHI,DAL,1,10,31,(:14) N.Foles spiked the ball to stop the clock.,23,38,2012 -20121111_DAL@PHI,4,0,13,PHI,DAL,2,10,31,(:13) (Shotgun) N.Foles pass short left to J.Maclin to DAL 30 for 1 yard (K.Wilber).,23,38,2012 -20121111_DAL@PHI,4,0,13,PHI,DAL,,,31,                      ,23,38,2012 -20121111_STL@SF,1,0,0,STL,SF,,,31,G.Zuerlein kicks 73 yards from SL 35 to SF -8. T.Ginn to SF 20 for 28 yards (B.Fletcher).,0,0,2012 -20121111_STL@SF,1,59,55,SF,STL,1,10,80,(14:55) F.Gore up the middle to SF 19 for -1 yards (K.Langford).,0,0,2012 -20121111_STL@SF,1,59,20,SF,STL,2,11,81,(14:20) A.Smith sacked at SF 17 for -2 yards (sack split by M.Brockers and R.Quinn).,0,0,2012 -20121111_STL@SF,1,58,52,SF,STL,3,13,83,(13:52) (Shotgun) A.Smith pass short left to F.Gore to SF 21 for 4 yards (C.Long). Caught at SF 14. 7-yds YAC,0,0,2012 -20121111_STL@SF,1,58,11,SF,STL,4,9,79,(13:11) A.Lee punts 41 yards to SL 38 Center-B.Jennings. D.Amendola to SL 44 for 6 yards (C.Spillman). PENALTY on SL-R.McLeod Illegal Block Above the Waist 10 yards enforced at SL 44.,0,0,2012 -20121111_STL@SF,1,58,1,STL,SF,1,10,66,(13:01) S.Jackson right tackle to SL 36 for 2 yards (R.McDonald).,0,0,2012 -20121111_STL@SF,1,57,28,STL,SF,2,8,64,(12:28) S.Jackson up the middle to SL 46 for 10 yards (A.Brooks).,0,0,2012 -20121111_STL@SF,1,56,46,STL,SF,1,10,54,(11:46) S.Jackson right guard to 50 for 4 yards (R.McDonald).,0,0,2012 -20121111_STL@SF,1,56,8,STL,SF,2,6,50,(11:08) W.Hunter reported in as eligible. S.Jackson left tackle to SF 43 for 7 yards (T.Brown).,0,0,2012 -20121111_STL@SF,1,55,29,STL,SF,1,10,43,(10:29) S.Bradford pass short right to D.Amendola to SF 36 for 7 yards (D.Whitner). Caught at SF 39. 3-yds YAC,0,0,2012 -20121111_STL@SF,1,54,47,STL,SF,2,3,36,(9:47) (Shotgun) S.Bradford pass deep right to B.Quick for 36 yards TOUCHDOWN. Caught at SF 13. 13-yds YAC,0,0,2012 -20121111_STL@SF,1,54,47,STL,SF,,,36,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121111_STL@SF,1,54,47,STL,SF,,,36,G.Zuerlein kicks 68 yards from SL 35 to SF -3. T.Ginn to SF 19 for 22 yards (Q.Mikell).,7,0,2012 -20121111_STL@SF,1,54,32,SF,STL,1,10,81,(9:32) PENALTY on SL-K.Langford Encroachment 5 yards enforced at SF 19 - No Play.,0,7,2012 -20121111_STL@SF,1,54,32,SF,STL,1,5,76,(9:32) (Shotgun) F.Gore left end pushed ob at SF 32 for 8 yards (T.Johnson).,0,7,2012 -20121111_STL@SF,1,54,8,SF,STL,1,10,68,(9:08) K.Hunter left tackle to SF 36 for 4 yards (J.Laurinaitis).,0,7,2012 -20121111_STL@SF,1,53,24,SF,STL,2,6,64,(8:24) (Shotgun) A.Smith pass incomplete short left to M.Manningham.,0,7,2012 -20121111_STL@SF,1,53,20,SF,STL,3,6,64,(8:20) (Shotgun) A.Smith pass short left to M.Crabtree pushed ob at SF 48 for 12 yards (Q.Pointer). Caught at SF 39. 9-yds YAC,0,7,2012 -20121111_STL@SF,1,52,58,SF,STL,1,10,52,(7:58) F.Gore left tackle to SF 49 for 1 yard (R.McIntosh).,0,7,2012 -20121111_STL@SF,1,52,20,SF,STL,2,9,51,(7:20) (Shotgun) F.Gore left guard to SL 44 for 7 yards (C.Long W.Hayes).,0,7,2012 -20121111_STL@SF,1,51,45,SF,STL,3,2,44,(6:45) (Shotgun) F.Gore up the middle to SL 45 for -1 yards (J.Cudjo Q.Mikell).,0,7,2012 -20121111_STL@SF,1,51,3,SF,STL,4,3,45,(6:03) A.Lee punts 38 yards to SL 7 Center-B.Jennings fair catch by D.Amendola.,0,7,2012 -20121111_STL@SF,1,50,56,STL,SF,1,10,93,(5:56) S.Jackson up the middle to SL 14 for 7 yards (N.Bowman J.Smith).,7,0,2012 -20121111_STL@SF,1,50,20,STL,SF,2,3,86,(5:20) S.Jackson left guard to SL 19 for 5 yards (N.Bowman).,7,0,2012 -20121111_STL@SF,1,49,38,STL,SF,1,10,81,(4:38) S.Bradford pass deep left to L.Kendricks to SL 36 for 17 yards (D.Goldson). Caught at SL 36. 0-yds YAC,7,0,2012 -20121111_STL@SF,1,48,55,STL,SF,1,10,64,(3:55) S.Bradford pass short right to D.Amendola ran ob at SL 42 for 6 yards. PENALTY on SL-R.Saffold Illegal Formation 5 yards enforced at SL 36 - No Play.,7,0,2012 -20121111_STL@SF,1,48,36,STL,SF,1,15,69,(3:36) D.Richardson right end to SF 37 for 32 yards (Ald.Smith). PENALTY on SF-R.McDonald Face Mask (15 Yards) 15 yards enforced at SF 37.,7,0,2012 -20121111_STL@SF,1,48,3,STL,SF,1,10,22,(3:03) S.Jackson right guard to SF 20 for 2 yards (R.McDonald).,7,0,2012 -20121111_STL@SF,1,47,18,STL,SF,2,8,20,(2:18) (Shotgun) S.Bradford pass short left to D.Amendola pushed ob at SF 7 for 13 yards (T.Brown). Caught at SF 18. 11-yds YAC,7,0,2012 -20121111_STL@SF,1,46,51,STL,SF,1,7,7,(1:51) S.Jackson right guard for 7 yards TOUCHDOWN.,7,0,2012 -20121111_STL@SF,1,46,51,STL,SF,,,7,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,7,0,2012 -20121111_STL@SF,1,46,51,STL,SF,,,7,G.Zuerlein kicks 66 yards from SL 35 to SF -1. T.Ginn to SF 22 for 23 yards (B.Fletcher). FUMBLES (B.Fletcher) ball out of bounds at SF 22.,14,0,2012 -20121111_STL@SF,1,46,39,SF,STL,1,10,78,(1:39) A.Smith scrambles left end to SF 26 for 4 yards (J.Dunbar).,0,14,2012 -20121111_STL@SF,1,45,53,SF,STL,2,6,74,(:53) A.Smith pass short middle to V.Davis to SF 32 for 6 yards (Q.Mikell). Caught at SF 31. 1-yd YAC,0,14,2012 -20121111_STL@SF,1,45,9,SF,STL,1,10,68,(:09) F.Gore left end to SF 43 for 11 yards (M.Haggan).,0,14,2012 -20121111_STL@SF,2,45,0,SF,STL,1,10,57,(15:00) A.Smith sacked at SF 36 for -7 yards (M.Brockers).,0,14,2012 -20121111_STL@SF,2,44,22,SF,STL,2,17,64,(14:22) (Shotgun) F.Gore up the middle to SF 38 for 2 yards (J.Laurinaitis K.Langford).,0,14,2012 -20121111_STL@SF,2,43,40,SF,STL,3,15,62,(13:40) (Shotgun) A.Smith pass short middle to M.Crabtree to SL 48 for 14 yards (C.Dahl C.Finnegan). Caught at SF 42. 10-yds YAC Measurement indicate ball short of first down.,0,14,2012 -20121111_STL@SF,2,42,2,SF,STL,4,1,48,(12:02) A.Smith up the middle to SL 47 for 1 yard (K.Langford). Measurement indicated first-down.,0,14,2012 -20121111_STL@SF,2,41,28,SF,STL,1,10,47,(11:28) A.Smith pass short middle to M.Crabtree to SL 28 for 19 yards (Q.Mikell). Caught at SL 32. 4-yds YAC,0,14,2012 -20121111_STL@SF,2,40,42,SF,STL,1,10,28,(10:42) F.Gore up the middle to SL 17 for 11 yards (C.Dahl).,0,14,2012 -20121111_STL@SF,2,39,57,SF,STL,1,10,17,(9:57) A.Smith pass short left to F.Gore pushed ob at SL 14 for 3 yards (M.Haggan). Caught at SL 21. 7-yds YAC,0,14,2012 -20121111_STL@SF,2,39,29,SF,STL,2,7,14,(9:29) K.Hunter left guard to SL 9 for 5 yards (W.Hayes).,0,14,2012 -20121111_STL@SF,2,38,49,SF,STL,3,2,9,(8:49) F.Gore right end to SL 7 for 2 yards (J.Cudjo). PENALTY on SF-K.Williams Illegal Formation 5 yards enforced at SL 9 - No Play.,0,14,2012 -20121111_STL@SF,2,38,19,SF,STL,3,7,14,(8:19) A.Smith pass short middle to M.Crabtree for 14 yards TOUCHDOWN. Caught at SL 8. 8-yds YAC,0,14,2012 -20121111_STL@SF,2,38,19,SF,STL,,,14,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,14,2012 -20121111_STL@SF,2,38,19,SF,STL,,,14,D.Akers kicks 60 yards from SF 35 to SL 5. I.Pead to SL 15 for 10 yards (B.Miller).,7,14,2012 -20121111_STL@SF,2,38,7,STL,SF,1,10,85,(8:07) S.Jackson right end to SL 17 for 2 yards (C.Rogers).,14,7,2012 -20121111_STL@SF,2,37,27,STL,SF,2,8,83,(7:27) W.Hunter reported in as eligible. S.Jackson up the middle to SL 23 for 6 yards (N.Bowman).,14,7,2012 -20121111_STL@SF,2,36,47,STL,SF,3,2,77,(6:47) S.Bradford pass incomplete short right to B.Gibson (D.Goldson).,14,7,2012 -20121111_STL@SF,2,36,39,STL,SF,4,2,77,(6:39) J.Hekker punts 44 yards to SF 33 Center-J.McQuaide. T.Ginn pushed ob at SF 44 for 11 yards (R.McLeod). PENALTY on SF-C.Culliver Offensive Holding 10 yards enforced at SF 44.,14,7,2012 -20121111_STL@SF,2,36,31,SF,STL,1,10,66,(6:31) C. Kaepernick in at QB. C.Kaepernick scrambles left end pushed ob at SF 44 for 10 yards (J.Dunbar).,7,14,2012 -20121111_STL@SF,2,36,5,SF,STL,1,10,56,(6:05) F.Gore right tackle to 50 for 6 yards (K.Langford).,7,14,2012 -20121111_STL@SF,2,35,22,SF,STL,2,4,50,(5:22) F.Gore left end to SL 43 for 7 yards (J.Cudjo).,7,14,2012 -20121111_STL@SF,2,34,40,SF,STL,1,10,43,(4:40) C.Kaepernick pass incomplete deep left to V.Davis.,7,14,2012 -20121111_STL@SF,2,34,34,SF,STL,2,10,43,(4:34) (Shotgun) F.Gore up the middle to SL 43 for no gain (C.Finnegan).,7,14,2012 -20121111_STL@SF,2,33,50,SF,STL,3,10,43,(3:50) (Shotgun) C.Kaepernick pass short right to K.Hunter to SL 28 for 15 yards (J.Laurinaitis). SL-K.Langford was injured during the play. His return is Probable. PENALTY on SF-J.Goodwin Offensive Holding 10 yards enforced at SL 43 - No Play.,7,14,2012 -20121111_STL@SF,2,33,18,SF,STL,3,20,53,(3:18) (Shotgun) C.Kaepernick scrambles left end pushed ob at SL 49 for 4 yards (J.Dunbar).,7,14,2012 -20121111_STL@SF,2,32,48,SF,STL,4,16,49,(2:48) A.Lee punts 49 yards to end zone Center-B.Jennings Touchback.,7,14,2012 -20121111_STL@SF,2,32,42,STL,SF,1,10,80,(2:42) S.Bradford pass incomplete short right to B.Gibson.,14,7,2012 -20121111_STL@SF,2,32,31,STL,SF,2,10,80,(2:31) S.Bradford pass incomplete short right to D.Richardson.,14,7,2012 -20121111_STL@SF,2,32,26,STL,SF,3,10,80,(2:26) (Shotgun) PENALTY on SL-B.Richardson False Start 5 yards enforced at SL 20 - No Play.,14,7,2012 -20121111_STL@SF,2,32,26,STL,SF,3,15,85,(2:26) (Shotgun) S.Bradford pass short right to L.Kendricks to SL 27 for 12 yards (N.Bowman). Caught at SL 20. 7-yds YAC,14,7,2012 -20121111_STL@SF,2,32,17,STL,SF,4,3,73,(2:17) J.Hekker punts 13 yards to SL 40 Center-J.McQuaide out of bounds.,14,7,2012 -20121111_STL@SF,2,32,12,SF,STL,1,10,40,(2:12) (Shotgun) C.Kaepernick pass incomplete short left to F.Gore.,7,14,2012 -20121111_STL@SF,2,32,4,SF,STL,2,10,40,(2:04) (Shotgun) C.Kaepernick pass short right to V.Davis to SL 37 for 3 yards (J.Laurinaitis). Caught at SL 37. 0-yds YAC,7,14,2012 -20121111_STL@SF,2,31,59,SF,STL,3,7,37,(1:59) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree (B.Fletcher).,7,14,2012 -20121111_STL@SF,2,31,54,SF,STL,4,7,37,(1:54) A.Lee punts 33 yards to SL 4 Center-B.Jennings downed by SF-N.Bowman.,7,14,2012 -20121111_STL@SF,2,31,45,STL,SF,1,10,96,(1:45) S.Jackson right tackle to SL 5 for 1 yard (I.Sopoaga N.Bowman).,14,7,2012 -20121111_STL@SF,2,31,1,STL,SF,2,9,95,(1:01) S.Jackson left guard to SL 8 for 3 yards (J.Smith).,14,7,2012 -20121111_STL@SF,2,30,54,STL,SF,3,6,92,(:54) D.Richardson right tackle to SL 10 for 2 yards (A.Brooks J.Smith).,14,7,2012 -20121111_STL@SF,2,30,49,STL,SF,4,4,90,(:49) (Punt formation) J.Hekker pass short right to R.McLeod to SL 31 for 21 yards (P.Cox). Caught at SL 20. 11-yds YAC,14,7,2012 -20121111_STL@SF,2,30,44,STL,SF,1,10,69,(:44) (Shotgun) S.Bradford pass short left to S.Smith to SL 35 for 4 yards (C.Rogers).,14,7,2012 -20121111_STL@SF,2,30,36,STL,SF,2,6,65,(:36) (Shotgun) S.Bradford pass incomplete short right to L.Kendricks.,14,7,2012 -20121111_STL@SF,2,30,33,STL,SF,3,6,65,(:33) (Shotgun) S.Bradford sacked at SL 27 for -8 yards (Ald.Smith).,14,7,2012 -20121111_STL@SF,3,30,0,SF,STL,,,65,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,7,14,2012 -20121111_STL@SF,3,30,0,STL,SF,1,10,80,(15:00) S.Jackson right guard to SL 23 for 3 yards (P.Willis).,14,7,2012 -20121111_STL@SF,3,29,22,STL,SF,2,7,77,(14:22) S.Bradford pass short left to D.Amendola to SL 25 for 2 yards (C.Rogers). Caught at SL 20. 5-yds YAC,14,7,2012 -20121111_STL@SF,3,28,38,STL,SF,3,5,75,(13:38) S.Bradford pass short right to D.Amendola to SL 39 for 14 yards (C.Rogers) [J.Smith]. Caught at SL 30. 9-yds YAC,14,7,2012 -20121111_STL@SF,3,27,57,STL,SF,1,10,61,(12:57) S.Jackson up the middle to SL 45 for 6 yards (I.Sopoaga).,14,7,2012 -20121111_STL@SF,3,27,21,STL,SF,2,4,55,(12:21) S.Jackson right guard to SL 48 for 3 yards (N.Bowman).,14,7,2012 -20121111_STL@SF,3,26,40,STL,SF,3,1,53,(11:40) S.Bradford FUMBLES (Aborted) at SL 48 recovered by SL-B.Miller at SL 47. B.Miller to SL 47 for no gain (N.Bowman).,14,7,2012 -20121111_STL@SF,3,26,0,STL,SF,4,2,53,(11:00) J.Hekker punts 45 yards to SF 8 Center-J.McQuaide out of bounds.,14,7,2012 -20121111_STL@SF,3,25,49,SF,STL,1,10,92,(10:49) (Shotgun) C.Kaepernick pass short right to K.Williams to SF 19 for 11 yards (Q.Mikell). FUMBLES (Q.Mikell) and recovers at SF 19. K.Williams to SF 19 for no gain (J.Laurinaitis). Caught at SF 6. 13-yds YAC,7,14,2012 -20121111_STL@SF,3,24,52,SF,STL,1,10,81,(9:52) (Shotgun) F.Gore right guard to SF 20 for 1 yard (C.Long).,7,14,2012 -20121111_STL@SF,3,24,14,SF,STL,2,9,80,(9:14) C.Kaepernick pass incomplete short right to D.Walker.,7,14,2012 -20121111_STL@SF,3,24,6,SF,STL,3,9,80,(9:06) (Shotgun) C.Kaepernick pass incomplete deep left to M.Manningham.,7,14,2012 -20121111_STL@SF,3,24,0,SF,STL,4,9,80,(9:00) A.Lee punts 44 yards to SL 36 Center-B.Jennings. D.Amendola to SF 2 for 62 yards (D.Goldson). PENALTY on SL-J.Cole Illegal Block Above the Waist 10 yards enforced at SL 41. D.Amendola credited with 5-yard punt return.,7,14,2012 -20121111_STL@SF,3,23,43,STL,SF,1,10,69,(8:43) S.Bradford pass incomplete deep left to D.Amendola (T.Brown).,14,7,2012 -20121111_STL@SF,3,23,36,STL,SF,2,10,69,(8:36) W.Hunter reported in as eligible. S.Bradford pass short right to A.Pettis to SL 39 for 8 yards (C.Rogers). Caught at SL 39. 0-yds YAC,14,7,2012 -20121111_STL@SF,3,22,47,STL,SF,3,2,61,(7:47) PENALTY on SL-S.Bradford Delay of Game 5 yards enforced at SL 39 - No Play.,14,7,2012 -20121111_STL@SF,3,22,21,STL,SF,3,7,66,(7:21) (Shotgun) S.Bradford pass short left to S.Smith to SL 41 for 7 yards (D.Whitner). Measurement to determine 1st Down. Caught at SL 41. 0-yds YAC,14,7,2012 -20121111_STL@SF,3,21,52,STL,SF,1,10,59,(6:52) S.Jackson right end to SL 42 for 1 yard (Ald.Smith).,14,7,2012 -20121111_STL@SF,3,21,15,STL,SF,2,9,58,(6:15) S.Bradford pass incomplete short right to L.Kendricks (A.Brooks).,14,7,2012 -20121111_STL@SF,3,21,10,STL,SF,3,9,58,(6:10) (Shotgun) PENALTY on SL-Sh.Smith False Start 5 yards enforced at SL 42 - No Play.,14,7,2012 -20121111_STL@SF,3,21,10,STL,SF,3,14,63,(6:10) (Shotgun) S.Bradford pass short right to S.Jackson to SF 49 for 14 yards (P.Willis C.Culliver). Caught at SL 41. 8-yds YAC,14,7,2012 -20121111_STL@SF,3,20,5,STL,SF,1,10,49,(5:05) W.Hunter reported in as eligible. D.Richardson left guard to SF 42 for 7 yards (D.Goldson). PENALTY on SF-D.Goldson Unsportsmanlike Conduct 15 yards enforced at SF 42.,14,7,2012 -20121111_STL@SF,3,19,53,STL,SF,1,10,27,(4:53) D.Richardson up the middle to SF 22 for 5 yards (D.Goldson). PENALTY on SL-B.Richardson Offensive Holding 10 yards enforced at SF 22.,14,7,2012 -20121111_STL@SF,3,19,6,STL,SF,1,15,32,(4:06) S.Jackson up the middle to SF 28 for 4 yards (N.Bowman).,14,7,2012 -20121111_STL@SF,3,18,34,STL,SF,2,11,28,(3:34) (Shotgun) S.Bradford pass short left to D.Amendola to SF 13 for 15 yards (N.Bowman). Caught at SF 29. 16-yds YAC,14,7,2012 -20121111_STL@SF,3,17,48,STL,SF,1,10,13,(2:48) S.Jackson right tackle to SF 13 for no gain (A.Brooks P.Willis).,14,7,2012 -20121111_STL@SF,3,17,5,STL,SF,2,10,13,(2:05) (Shotgun) S.Bradford pass incomplete short right to S.Jackson.,14,7,2012 -20121111_STL@SF,3,17,0,STL,SF,3,10,13,(2:00) (Shotgun) S.Bradford pass incomplete short right to I.Pead [R.McDonald]. Penalty on SF-A.Brooks Neutral Zone Infraction declined. PENALTY on SF-R.McDonald Roughing the Passer 6 yards enforced at SF 13 - No Play.,14,7,2012 -20121111_STL@SF,3,16,44,STL,SF,1,7,7,(1:44) S.Jackson right tackle to SF 5 for 2 yards (J.Smith N.Bowman).,14,7,2012 -20121111_STL@SF,3,16,11,STL,SF,2,5,5,(1:11) S.Jackson left end to SF 9 for -4 yards (Ald.Smith).,14,7,2012 -20121111_STL@SF,3,15,27,STL,SF,3,9,9,(:27) (Shotgun) S.Bradford pass incomplete short left to L.Kendricks [R.McDonald].,14,7,2012 -20121111_STL@SF,3,15,22,STL,SF,4,9,9,(:22) G.Zuerlein 27 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,14,7,2012 -20121111_STL@SF,3,15,22,STL,SF,,,9,G.Zuerlein kicks 66 yards from SL 35 to SF -1. T.Ginn to SF 19 for 20 yards (R.McLeod).,17,7,2012 -20121111_STL@SF,3,15,12,SF,STL,1,10,81,(:12) C.Kaepernick pass short right to R.Moss to SF 25 for 6 yards (J.Dunbar) [J.Dunbar]. Caught at SF 25. 0-yds YAC,7,17,2012 -20121111_STL@SF,4,15,0,SF,STL,2,4,75,(15:00) C.Kaepernick pass short left to M.Manningham to SF 45 for 20 yards (T.Johnson). Caught at SF 39. 6-yds YAC,7,17,2012 -20121111_STL@SF,4,14,34,SF,STL,1,10,55,(14:34) C.Kaepernick sacked at SF 45 for 0 yards (R.Quinn).,7,17,2012 -20121111_STL@SF,4,13,47,SF,STL,2,10,57,(13:47) C.Kaepernick FUMBLES (Aborted) at SF 45 recovered by SF-F.Gore at SF 43. F.Gore to SL 43 for 14 yards (C.Finnegan; M.Brockers). F.Gore credited with 12-yds Fumble Return.,7,17,2012 -20121111_STL@SF,4,13,1,SF,STL,1,10,43,(13:01) C.Kaepernick pass short left to R.Moss to SL 30 for 13 yards (T.Johnson). Caught at SL 30. 0-yds YAC,7,17,2012 -20121111_STL@SF,4,12,16,SF,STL,1,10,30,(12:16) F.Gore right tackle to SL 24 for 6 yards (Q.Mikell).,7,17,2012 -20121111_STL@SF,4,11,39,SF,STL,2,4,24,(11:39) C.Kaepernick sacked at SL 36 for -12 yards (M.Haggan). FUMBLES (M.Haggan) recovered by SF-B.Miller at SL 38. B.Miller to SL 38 for no gain (R.Quinn). Play recorded as 14-yd QB sack.,7,17,2012 -20121111_STL@SF,4,10,51,SF,STL,3,18,38,(10:51) C.Kaepernick pass short middle to V.Davis to SL 21 for 17 yards (Q.Mikell) [K.Langford]. Caught at SL 23. 2-yds YAC,7,17,2012 -20121111_STL@SF,4,10,9,SF,STL,4,1,21,(10:09) F.Gore right end to SL 18 for 3 yards (C.Finnegan). SF-M.Iupati was injured during the play.,7,17,2012 -20121111_STL@SF,4,9,34,SF,STL,1,10,18,(9:34) C.Kaepernick pass short middle to F.Gore to SL 7 for 11 yards (M.Brockers). Caught at SL 15. 8-yds YAC,7,17,2012 -20121111_STL@SF,4,8,48,SF,STL,1,7,7,(8:48) (Shotgun) C.Kaepernick right end for 7 yards TOUCHDOWN.,7,17,2012 -20121111_STL@SF,4,8,48,SF,STL,,,7,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,17,2012 -20121111_STL@SF,4,8,48,SF,STL,,,7,D.Akers kicks 68 yards from SF 35 to SL -3. I.Pead to SL 28 for 31 yards (T.Brock). FUMBLES (T.Brock) RECOVERED by SF-D.McBath at SL 28. D.McBath to SL 20 for 8 yards (J.Cudjo). Penalty on SL-J.Cudjo Defensive Holding declined. The Replay Assistant challenged the fumble ruling and the play was Upheld.,14,17,2012 -20121111_STL@SF,4,8,29,SF,STL,1,10,20,(8:29) F.Gore right end for 20 yards TOUCHDOWN.,14,17,2012 -20121111_STL@SF,4,8,29,SF,STL,,,20,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,14,17,2012 -20121111_STL@SF,4,8,29,SF,STL,,,20,D.Akers kicks 64 yards from SF 35 to SL 1. I.Pead to SL 19 for 18 yards (D.McBath).,21,17,2012 -20121111_STL@SF,4,8,16,STL,SF,1,10,81,(8:16) D.Richardson left tackle to SL 24 for 5 yards (N.Bowman).,17,21,2012 -20121111_STL@SF,4,7,32,STL,SF,2,5,76,(7:32) S.Bradford pass short left to D.Amendola to SL 31 for 7 yards (C.Rogers) [N.Bowman]. Caught at SL 25. 6-yds YAC,17,21,2012 -20121111_STL@SF,4,6,53,STL,SF,1,10,69,(6:53) S.Bradford pass short left to D.Richardson to SL 31 for no gain (P.Willis). Caught at SL 31. 0-yds YAC,17,21,2012 -20121111_STL@SF,4,6,11,STL,SF,2,10,69,(6:11) S.Jackson right tackle to SL 33 for 2 yards (A.Brooks J.Smith).,17,21,2012 -20121111_STL@SF,4,5,26,STL,SF,3,8,67,(5:26) (Shotgun) S.Bradford pass incomplete short right to B.Gibson.,17,21,2012 -20121111_STL@SF,4,5,23,STL,SF,4,8,67,(5:23) (Punt formation) J.Hekker pass short left to L.Kendricks to SF 48 for 19 yards (P.Cox). Caught at SL 42. 10-yds YAC,17,21,2012 -20121111_STL@SF,4,4,41,STL,SF,1,10,48,(4:41) S.Jackson left tackle to SF 48 for no gain (R.McDonald). PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SF 48 - No Play.,17,21,2012 -20121111_STL@SF,4,4,35,STL,SF,1,20,58,(4:35) S.Jackson right tackle to SL 49 for 7 yards (A.Brooks J.Smith).,17,21,2012 -20121111_STL@SF,4,3,54,STL,SF,2,13,51,(3:54) (Shotgun) S.Bradford pass short middle to D.Amendola to SF 46 for 5 yards (P.Cox). Caught at SL 49. 0-yds YAC,17,21,2012 -20121111_STL@SF,4,3,18,STL,SF,3,8,46,(3:18) (Shotgun) S.Bradford pass short middle to D.Amendola to SF 30 for 16 yards (P.Willis D.Goldson). Caught at SF 32. 2-yds YAC,17,21,2012 -20121111_STL@SF,4,2,40,STL,SF,1,10,30,(2:40) S.Jackson left guard to SF 28 for 2 yards (D.Dobbs).,17,21,2012 -20121111_STL@SF,4,2,3,STL,SF,2,8,28,(2:03) S.Bradford pass short left to B.Gibson ran ob at SF 14 for 14 yards. Caught at SF 14. 0-yds YAC,17,21,2012 -20121111_STL@SF,4,1,58,STL,SF,1,10,14,(1:58) S.Jackson left tackle to SF 10 for 4 yards (D.Goldson).,17,21,2012 -20121111_STL@SF,4,1,24,STL,SF,2,6,10,(1:24) S.Bradford pass short right to D.Amendola to SF 2 for 8 yards (D.Whitner) [J.Smith]. Caught at SF 6. 4-yds YAC,17,21,2012 -20121111_STL@SF,4,1,13,STL,SF,1,2,2,(1:13) S.Bradford pass short middle to A.Pettis for 2 yards TOUCHDOWN.,17,21,2012 -20121111_STL@SF,4,1,13,STL,SF,,,2,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,17,21,2012 -20121111_STL@SF,4,1,13,STL,SF,,,2,G.Zuerlein kicks 68 yards from SL 35 to SF -3. T.Ginn to SF 22 for 25 yards (Q.Mikell).,24,21,2012 -20121111_STL@SF,4,1,3,SF,STL,1,10,78,(1:03) (Shotgun) C.Kaepernick scrambles left end ran ob at SF 41 for 19 yards.,21,24,2012 -20121111_STL@SF,4,0,55,SF,STL,1,10,59,(:55) (Shotgun) C.Kaepernick pass short left to V.Davis to SF 45 for 4 yards (T.Johnson) [K.Langford]. SL-T.Johnson was injured during the play. Caught at SF 45. 0-yds YAC,21,24,2012 -20121111_STL@SF,4,0,40,SF,STL,2,6,55,(:40) (Shotgun) C.Kaepernick scrambles left end ran ob at SL 45 for 10 yards.,21,24,2012 -20121111_STL@SF,4,0,33,SF,STL,1,10,45,(:33) (Shotgun) C.Kaepernick pass short right to K.Williams ran ob at SL 32 for 13 yards. Caught at SL 32. 0-yds YAC,21,24,2012 -20121111_STL@SF,4,0,26,SF,STL,1,10,32,(:26) (Shotgun) F.Gore up the middle to SL 23 for 9 yards (Q.Mikell J.Laurinaitis).,21,24,2012 -20121111_STL@SF,4,0,20,SF,STL,2,1,23,(:20) (Shotgun) C.Kaepernick pass short right to K.Hunter to SL 15 for 8 yards (J.Dunbar; C.Finnegan) [C.Long]. Caught at SL 20. 5-yds YAC,21,24,2012 -20121111_STL@SF,4,0,11,SF,STL,1,10,15,(:11) (Shotgun) C.Kaepernick pass incomplete short right to K.Williams.,21,24,2012 -20121111_STL@SF,4,0,5,SF,STL,2,10,15,(:05) D.Akers 33 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,21,24,2012 -20121111_STL@SF,4,0,5,SF,STL,,,15,D.Akers kicks 45 yards from SF 35 to SL 20. D.Amendola to SL 24 for 4 yards (C.Spillman).,24,24,2012 -20121111_STL@SF,5,0,0,SF,STL,,,15,D.Akers kicks 68 yards from SF 35 to SL -3. I.Pead to SL 18 for 21 yards (B.Miller).,24,24,2012 -20121111_STL@SF,5,-1,55,STL,SF,1,10,82,(14:55) S.Bradford pass deep right to D.Amendola pushed ob at SF 2 for 80 yards (D.Whitner). Caught at SF 45. 43-yds YAC PENALTY on SL-R.Saffold Illegal Formation 5 yards enforced at SL 18 - No Play.,24,24,2012 -20121111_STL@SF,5,-1,30,STL,SF,1,15,87,(14:30) S.Jackson up the middle to SL 15 for 2 yards (Ald.Smith).,24,24,2012 -20121111_STL@SF,5,-1,7,STL,SF,2,13,85,(14:07) S.Bradford pass short middle to S.Jackson to SL 27 for 12 yards (P.Willis). Caught at SL 17. 10-yds YAC,24,24,2012 -20121111_STL@SF,5,-2,4,STL,SF,3,1,73,(13:04) S.Bradford pass incomplete short right to B.Miller (A.Brooks).,24,24,2012 -20121111_STL@SF,5,-2,0,STL,SF,4,1,73,(13:00) J.Hekker punts 45 yards to SF 28 Center-J.McQuaide. T.Ginn pushed ob at SF 40 for 12 yards (C.Dahl).,24,24,2012 -20121111_STL@SF,5,-3,49,SF,STL,1,10,60,(12:49) C.Kaepernick pass short right to M.Crabtree to SL 49 for 11 yards (C.Finnegan). Caught at SF 41. 10-yds YAC,24,24,2012 -20121111_STL@SF,5,-3,11,SF,STL,1,10,49,(12:11) K.Hunter left end to SL 43 for 6 yards (J.Laurinaitis Q.Mikell).,24,24,2012 -20121111_STL@SF,5,-4,28,SF,STL,2,4,43,(11:28) F.Gore left tackle to SL 39 for 4 yards (M.Brockers).,24,24,2012 -20121111_STL@SF,5,-5,51,SF,STL,1,10,39,(10:51) C.Kaepernick right end pushed ob at SL 25 for 14 yards (C.Dahl).,24,24,2012 -20121111_STL@SF,5,-5,18,SF,STL,1,10,25,(10:18) F.Gore up the middle to SL 24 for 1 yard (J.Cudjo).,24,24,2012 -20121111_STL@SF,5,-6,39,SF,STL,2,9,24,(9:39) F.Gore left end to SL 27 for -3 yards (M.Haggan).,24,24,2012 -20121111_STL@SF,5,-7,52,SF,STL,3,12,27,(8:52) F.Gore right tackle to SL 23 for 4 yards (M.Haggan).,24,24,2012 -20121111_STL@SF,5,-7,14,SF,STL,4,8,23,(8:14) D.Akers 41 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,24,24,2012 -20121111_STL@SF,5,-7,7,STL,SF,1,10,69,(8:07) D.Richardson left tackle to SL 34 for 3 yards (J.Smith).,24,24,2012 -20121111_STL@SF,5,-8,29,STL,SF,2,7,66,(7:29) S.Bradford pass short right to B.Gibson to SL 43 for 9 yards (D.Goldson). Caught at SL 39. 4-yds YAC,24,24,2012 -20121111_STL@SF,5,-9,56,STL,SF,1,10,57,(6:56) S.Jackson up the middle to 50 for 7 yards (N.Bowman).,24,24,2012 -20121111_STL@SF,5,-9,16,STL,SF,2,3,50,(6:16) S.Jackson right end to SL 49 for -1 yards (A.Brooks N.Bowman).,24,24,2012 -20121111_STL@SF,5,-10,31,STL,SF,3,4,51,(5:31) S.Bradford pass short middle to D.Amendola to SF 41 for 10 yards (T.Brown). Caught at SF 43. 2-yds YAC,24,24,2012 -20121111_STL@SF,5,-11,52,STL,SF,1,10,41,(4:52) S.Jackson up the middle to SF 33 for 8 yards (D.Whitner).,24,24,2012 -20121111_STL@SF,5,-11,11,STL,SF,2,2,33,(4:11) D.Richardson up the middle to SF 34 for -1 yards (D.Whitner). PENALTY on SL Illegal Shift 5 yards enforced at SF 33 - No Play.,24,24,2012 -20121111_STL@SF,5,-11,5,STL,SF,2,7,38,(4:05) D.Richardson left guard to SF 34 for 4 yards (P.Willis).,24,24,2012 -20121111_STL@SF,5,-12,39,STL,SF,3,3,34,(3:39) W.Hunter reported in as eligible. S.Jackson right tackle to SF 35 for -1 yards (J.Smith).,24,24,2012 -20121111_STL@SF,5,-13,53,STL,SF,4,4,35,(2:53) (Field Goal formation) PENALTY on SL-J.Hekker Delay of Game 5 yards enforced at SF 35 - No Play.,24,24,2012 -20121111_STL@SF,5,-13,48,STL,SF,4,9,40,(2:48) G.Zuerlein 58 yard field goal is No Good Wide Right Center-J.McQuaide Holder-J.Hekker.,24,24,2012 -20121111_STL@SF,5,-13,42,SF,STL,1,10,52,(2:42) C.Kaepernick right end pushed ob at 50 for 2 yards (R.Quinn).,24,24,2012 -20121111_STL@SF,5,-13,34,SF,STL,2,8,50,(2:34) F.Gore up the middle to SL 49 for 1 yard (J.Laurinaitis).,24,24,2012 -20121111_STL@SF,5,-13,0,SF,STL,3,7,49,(2:00) C.Kaepernick sacked at SF 43 for -8 yards (C.Long).,24,24,2012 -20121111_STL@SF,5,-14,48,SF,STL,4,15,57,(1:48) A.Lee punts 46 yards to SL 11 Center-B.Jennings. D.Amendola to SL 14 for 3 yards (D.Dobbs).,24,24,2012 -20121111_STL@SF,5,-14,36,STL,SF,1,10,86,(1:36) (Shotgun) S.Bradford pass short right to A.Pettis to SL 19 for 5 yards (C.Culliver). Caught at SL 19. 0-yds YAC,24,24,2012 -20121111_STL@SF,5,-14,11,STL,SF,2,5,81,(1:11) (No Huddle Shotgun) S.Bradford pass incomplete short right to A.Pettis (A.Brooks).,24,24,2012 -20121111_STL@SF,5,-14,8,STL,SF,3,5,81,(1:08) (Shotgun) S.Bradford pass incomplete deep left to L.Kendricks. PENALTY on SF-P.Willis Defensive Holding 5 yards enforced at SL 19 - No Play.,24,24,2012 -20121111_STL@SF,5,-14,3,STL,SF,1,10,76,(1:03) (Shotgun) S.Bradford pass short left to I.Pead to SL 33 for 9 yards (D.Whitner). Caught at SL 22. 11-yds YAC,24,24,2012 -20121111_STL@SF,5,-15,53,STL,SF,2,1,67,(:53) (No Huddle) S.Bradford spiked the ball to stop the clock.,24,24,2012 -20121111_STL@SF,5,-15,53,STL,SF,3,1,67,(:53) S.Bradford pass short right to D.Amendola ran ob at SL 38 for 5 yards (D.Goldson).,24,24,2012 -20121111_STL@SF,5,-15,24,STL,SF,1,10,67,(:24) S.Bradford sacked at SL 30 for -3 yards (Ald.Smith).,24,24,2012 -20121111_STL@SF,5,-15,24,STL,SF,2,18,70,(:24) S.Bradford spiked the ball to stop the clock.,24,24,2012 -20121111_STL@SF,5,-15,8,STL,SF,3,18,70,(:08) (Shotgun) PENALTY on SL-S.Bradford Delay of Game 5 yards enforced at SL 30 - No Play.,24,24,2012 -20121111_STL@SF,5,-15,5,STL,SF,3,23,75,(:05) S.Bradford pass deep left to B.Gibson to SL 49 for 24 yards (C.Spillman). Caught at SL 49. 0-yds YAC,24,24,2012 -20121111_STL@SF,5,-15,5,STL,SF,,,75,                      ,24,24,2012 -20121111_HOU@CHI,1,-15,0,CHI,HOU,,,75,R.Gould kicks 67 yards from CHI 35 to HST -2. K.Martin to HST 19 for 21 yards (Z.Bowman). FUMBLES (Z.Bowman) RECOVERED by CHI-B.Costanzo at HST 19. B.Costanzo to HST 19 for no gain (K.Martin). Play Challenged by Replay Assistant and REVERSED. R.Gould kicks 67 yards from CHI 35 to HST -2. K.Martin to HST 18 for 20 yards (Z.Bowman).,0,0,2012 -20121111_HOU@CHI,1,59,53,HOU,CHI,1,10,82,(14:53) M.Schaub pass short right to G.Graham to HST 19 for 1 yard (N.Roach).,0,0,2012 -20121111_HOU@CHI,1,59,15,HOU,CHI,2,9,81,(14:15) M.Schaub pass incomplete deep right to A.Johnson (C.Tillman).,0,0,2012 -20121111_HOU@CHI,1,59,8,HOU,CHI,3,9,81,(14:08) (Shotgun) A.Foster right guard to HST 23 for 4 yards (H.Melton; I.Idonije).,0,0,2012 -20121111_HOU@CHI,1,58,40,HOU,CHI,4,5,77,(13:40) D.Jones punts 56 yards to CHI 21 Center-J.Weeks. D.Hester to CHI 45 for 24 yards (Q.Demps).,0,0,2012 -20121111_HOU@CHI,1,58,26,CHI,HOU,1,10,55,(13:26) J.Scott reported in as eligible. J.Cutler pass short middle to K.Davis to HST 49 for 6 yards (D.Manning). FUMBLES (D.Manning) RECOVERED by HST-T.Dobbins at HST 40. T.Dobbins to CHI 28 for 32 yards (K.Davis). PENALTY on HST Unsportsmanlike Conduct 15 yards enforced at CHI 28.,0,0,2012 -20121111_HOU@CHI,1,58,10,HOU,CHI,1,10,43,(13:10) M.Schaub pass short left to A.Johnson to CHI 32 for 11 yards (C.Tillman).,0,0,2012 -20121111_HOU@CHI,1,57,28,HOU,CHI,1,10,32,(12:28) M.Schaub pass incomplete short middle to A.Johnson.,0,0,2012 -20121111_HOU@CHI,1,57,23,HOU,CHI,2,10,32,(12:23) A.Foster left end pushed ob at CHI 29 for 3 yards (J.Peppers).,0,0,2012 -20121111_HOU@CHI,1,56,48,HOU,CHI,3,7,29,(11:48) (Shotgun) M.Schaub pass short left to A.Johnson pushed ob at CHI 21 for 8 yards (C.Tillman).,0,0,2012 -20121111_HOU@CHI,1,56,16,HOU,CHI,1,10,21,(11:16) A.Foster right tackle to CHI 20 for 1 yard (M.Wright).,0,0,2012 -20121111_HOU@CHI,1,55,36,HOU,CHI,2,9,20,(10:36) R.Harris reported in as eligible. A.Foster right end to CHI 7 for 13 yards (M.Wright).,0,0,2012 -20121111_HOU@CHI,1,54,59,HOU,CHI,1,7,7,(9:59) A.Foster right end to CHI 6 for 1 yard (M.Wright).,0,0,2012 -20121111_HOU@CHI,1,54,18,HOU,CHI,2,6,6,(9:18) A.Foster right end to CHI 5 for 1 yard (S.Paea; I.Idonije).,0,0,2012 -20121111_HOU@CHI,1,53,40,HOU,CHI,3,5,5,(8:40) M.Schaub pass short left to A.Foster pushed ob at CHI 2 for 3 yards (C.Tillman).,0,0,2012 -20121111_HOU@CHI,1,53,16,HOU,CHI,4,2,2,(8:16) S.Graham 20 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121111_HOU@CHI,1,53,16,HOU,CHI,,,2,S.Graham kicks 43 yards from HST 35 to CHI 22. K.Adams pushed ob at CHI 37 for 15 yards (T.Dobbins).,3,0,2012 -20121111_HOU@CHI,1,53,9,CHI,HOU,1,10,63,(8:09) M.Forte left guard to CHI 39 for 2 yards (B.James).,0,3,2012 -20121111_HOU@CHI,1,52,27,CHI,HOU,2,8,61,(7:27) J.Cutler pass short right to E.Bennett to CHI 48 for 9 yards (K.Jackson).,0,3,2012 -20121111_HOU@CHI,1,51,44,CHI,HOU,1,10,52,(6:44) M.Forte left tackle to 50 for 2 yards (C.Barwin).,0,3,2012 -20121111_HOU@CHI,1,51,3,CHI,HOU,2,8,50,(6:03) (Shotgun) J.Cutler scrambles right guard to HST 43 for 7 yards (B.Reed).,0,3,2012 -20121111_HOU@CHI,1,50,20,CHI,HOU,3,1,43,(5:20) (Shotgun) J.Cutler pass short right to D.Hester to HST 43 for no gain (K.Jackson).,0,3,2012 -20121111_HOU@CHI,1,49,49,CHI,HOU,4,1,43,(4:49) M.Bush right guard to HST 32 for 11 yards (G.Quin). FUMBLES (G.Quin) RECOVERED by HST-B.James at HST 27. B.James to HST 27 for no gain (M.Spaeth).,0,3,2012 -20121111_HOU@CHI,1,49,40,HOU,CHI,1,10,73,(4:40) M.Schaub pass incomplete short middle [C.Wootton].,3,0,2012 -20121111_HOU@CHI,1,49,34,HOU,CHI,2,10,73,(4:34) M.Schaub pass short left to A.Johnson to HST 32 for 5 yards (B.Urlacher).,3,0,2012 -20121111_HOU@CHI,1,48,52,HOU,CHI,3,5,68,(3:52) (Shotgun) M.Schaub pass short middle to A.Foster to HST 40 for 8 yards (K.Hayden) [J.Peppers].,3,0,2012 -20121111_HOU@CHI,1,48,12,HOU,CHI,1,10,60,(3:12) M.Schaub pass incomplete short middle to J.Casey.,3,0,2012 -20121111_HOU@CHI,1,48,6,HOU,CHI,2,10,60,(3:06) R.Harris reported in as eligible. A.Foster left end to HST 40 for no gain (B.Urlacher).,3,0,2012 -20121111_HOU@CHI,1,47,24,HOU,CHI,3,10,60,(2:24) (Shotgun) M.Schaub pass short right intended for K.Martin INTERCEPTED by T.Jennings at HST 45. T.Jennings to HST 45 for no gain (K.Martin).,3,0,2012 -20121111_HOU@CHI,1,47,24,CHI,HOU,1,10,45,(2:24) J.Cutler pass short right to B.Marshall to HST 31 for 14 yards (J.Joseph) [Team].,0,3,2012 -20121111_HOU@CHI,1,46,39,CHI,HOU,1,10,31,(1:39) M.Forte right tackle to HST 30 for 1 yard (T.Dobbins).,0,3,2012 -20121111_HOU@CHI,1,45,57,CHI,HOU,2,9,30,(:57) (Shotgun) J.Cutler pass deep right intended for K.Davis INTERCEPTED by D.Manning at HST 6. D.Manning to HST 10 for 4 yards (B.Marshall).,0,3,2012 -20121111_HOU@CHI,1,45,50,HOU,CHI,1,10,90,(:50) R.Harris reported in as eligible. J.Forsett left tackle to HST 11 for 1 yard (S.Paea).,3,0,2012 -20121111_HOU@CHI,1,45,12,HOU,CHI,2,9,89,(:12) A.Foster left tackle pushed ob at HST 29 for 18 yards (C.Tillman).,3,0,2012 -20121111_HOU@CHI,2,45,0,HOU,CHI,1,10,71,(15:00) R.Harris reported in as eligible. A.Foster right tackle to HST 29 for no gain (L.Briggs).,3,0,2012 -20121111_HOU@CHI,2,44,22,HOU,CHI,2,10,71,(14:22) M.Schaub pass deep left INTERCEPTED by T.Jennings at HST 48. T.Jennings dead ball declared at HST 30 for 18 yards. Play Challenged by Replay Assistant and REVERSED. M.Schaub pass deep left INTERCEPTED by T.Jennings at HST 48. T.Jennings to HST 38 for 10 yards (J.Casey).,3,0,2012 -20121111_HOU@CHI,2,44,14,CHI,HOU,1,10,38,(14:14) M.Forte right tackle to HST 34 for 4 yards (E.Mitchell).,0,3,2012 -20121111_HOU@CHI,2,43,37,CHI,HOU,2,6,34,(13:37) M.Forte right end pushed ob at HST 33 for 1 yard (E.Mitchell).,0,3,2012 -20121111_HOU@CHI,2,43,3,CHI,HOU,3,5,33,(13:03) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall.,0,3,2012 -20121111_HOU@CHI,2,42,57,CHI,HOU,4,5,33,(12:57) R.Gould 51 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,3,2012 -20121111_HOU@CHI,2,42,57,CHI,HOU,,,33,R.Gould kicks 67 yards from CHI 35 to HST -2. K.Martin to HST 21 for 23 yards (C.Steltz; E.Weems).,3,3,2012 -20121111_HOU@CHI,2,42,46,HOU,CHI,1,10,79,(12:46) A.Foster right guard to HST 27 for 6 yards (H.Melton).,3,3,2012 -20121111_HOU@CHI,2,42,9,HOU,CHI,2,4,73,(12:09) A.Foster left end to HST 30 for 3 yards (L.Briggs).,3,3,2012 -20121111_HOU@CHI,2,41,33,HOU,CHI,3,1,70,(11:33) R.Harris reported in as eligible. A.Foster right tackle to HST 43 for 13 yards (C.Tillman).,3,3,2012 -20121111_HOU@CHI,2,40,51,HOU,CHI,1,10,57,(10:51) J.Forsett left end to HST 47 for 4 yards (T.Jennings).,3,3,2012 -20121111_HOU@CHI,2,40,15,HOU,CHI,2,6,53,(10:15) R.Harris reported in as eligible. J.Forsett right end to HST 44 for -3 yards (M.Wright I.Idonije).,3,3,2012 -20121111_HOU@CHI,2,39,29,HOU,CHI,3,9,56,(9:29) (Shotgun) M.Schaub pass short right to A.Foster to HST 44 for no gain (C.Conte).,3,3,2012 -20121111_HOU@CHI,2,38,52,HOU,CHI,4,9,56,(8:52) (Punt formation) D.Jones punts 56 yards to end zone Center-J.Weeks Touchback.,3,3,2012 -20121111_HOU@CHI,2,38,44,CHI,HOU,1,10,80,(8:44) J.Cutler pass incomplete deep right to D.Hester [J.Watt].,3,3,2012 -20121111_HOU@CHI,2,38,36,CHI,HOU,2,10,80,(8:36) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 27 for 7 yards (D.Manning).,3,3,2012 -20121111_HOU@CHI,2,37,50,CHI,HOU,3,3,73,(7:50) (Shotgun) J.Cutler pass incomplete deep left to D.Hester (K.Jackson).,3,3,2012 -20121111_HOU@CHI,2,37,44,CHI,HOU,4,3,73,(7:44) (Punt formation) A.Podlesh punts 39 yards to HST 34 Center-P.Mannelly downed by CHI-Z.Bowman.,3,3,2012 -20121111_HOU@CHI,2,37,31,HOU,CHI,1,10,66,(7:31) M.Schaub pass incomplete short left to J.Casey.,3,3,2012 -20121111_HOU@CHI,2,37,27,HOU,CHI,2,10,66,(7:27) M.Schaub pass short left to A.Johnson to HST 45 for 11 yards (C.Tillman).,3,3,2012 -20121111_HOU@CHI,2,36,52,HOU,CHI,1,10,55,(6:52) A.Foster left end pushed ob at CHI 49 for 6 yards (B.Urlacher).,3,3,2012 -20121111_HOU@CHI,2,36,18,HOU,CHI,2,4,49,(6:18) A.Foster left tackle pushed ob at CHI 28 for 21 yards (N.Roach).,3,3,2012 -20121111_HOU@CHI,2,35,44,HOU,CHI,1,10,28,(5:44) J.Forsett left tackle to CHI 3 for 25 yards (C.Conte).,3,3,2012 -20121111_HOU@CHI,2,34,58,HOU,CHI,1,3,3,(4:58) R.Harris reported in as eligible. A.Foster left tackle to CHI 2 for 1 yard (H.Melton).,3,3,2012 -20121111_HOU@CHI,2,34,21,HOU,CHI,2,2,2,(4:21) M.Schaub pass short right to A.Foster for 2 yards TOUCHDOWN.,3,3,2012 -20121111_HOU@CHI,2,34,21,HOU,CHI,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,3,2012 -20121111_HOU@CHI,2,34,21,HOU,CHI,,,2,S.Graham kicks onside 16 yards from HST 35 to CHI 49. J.Thomas (didn't try to advance) to CHI 49 for no gain (S.Keo).,10,3,2012 -20121111_HOU@CHI,2,34,12,CHI,HOU,1,10,51,(4:12) M.Forte right tackle to HST 49 for 2 yards (C.Barwin).,3,10,2012 -20121111_HOU@CHI,2,33,35,CHI,HOU,2,8,49,(3:35) M.Forte right end to 50 for -1 yards (C.Barwin).,3,10,2012 -20121111_HOU@CHI,2,32,30,CHI,HOU,3,9,50,(2:30) (Shotgun) J.Cutler scrambles left guard to HST 39 for 11 yards (K.Jackson).,3,10,2012 -20121111_HOU@CHI,2,32,0,CHI,HOU,1,10,39,(2:00) J.Cutler pass short right to M.Forte to HST 39 for no gain (J.Joseph).,3,10,2012 -20121111_HOU@CHI,2,31,23,CHI,HOU,2,10,39,(1:23) J.Cutler pass short left intended for B.Marshall INTERCEPTED by K.Jackson [T.Dobbins] at HST 27. K.Jackson to HST 28 for 1 yard (B.Marshall).,3,10,2012 -20121111_HOU@CHI,2,31,16,HOU,CHI,1,10,72,(1:16) (Shotgun) M.Schaub pass incomplete short left to A.Johnson (C.Tillman).,10,3,2012 -20121111_HOU@CHI,2,31,12,HOU,CHI,2,10,72,(1:12) A.Foster left end to HST 19 for -9 yards (B.Urlacher).,10,3,2012 -20121111_HOU@CHI,2,31,3,HOU,CHI,3,19,81,(1:03) A.Foster left guard to HST 22 for 3 yards (H.Melton; I.Idonije).,10,3,2012 -20121111_HOU@CHI,2,30,59,HOU,CHI,4,16,78,(:59) (Punt formation) D.Jones punts 47 yards to CHI 31 Center-J.Weeks fair catch by D.Hester. PENALTY on CHI-A.Walters Offensive Holding 10 yards enforced at CHI 31.,10,3,2012 -20121111_HOU@CHI,2,30,51,CHI,HOU,1,10,79,(:51) (Shotgun) J.Cutler scrambles left guard to CHI 40 for 19 yards.,3,10,2012 -20121111_HOU@CHI,2,30,28,CHI,HOU,1,10,60,(:28) (No Huddle Shotgun) J.Cutler pass incomplete short middle to K.Davis.,3,10,2012 -20121111_HOU@CHI,2,30,25,CHI,HOU,2,10,60,(:25) (Shotgun) J.Cutler pass incomplete deep middle to M.Forte.,3,10,2012 -20121111_HOU@CHI,2,30,19,CHI,HOU,3,10,60,(:19) (Shotgun) J.Cutler pass short left to D.Hester to CHI 44 for 4 yards (Q.Demps).,3,10,2012 -20121111_HOU@CHI,3,30,0,HOU,CHI,,,60,S.Graham kicks 62 yards from HST 35 to CHI 3. D.Hester to CHI 23 for 20 yards (S.Keo).,10,3,2012 -20121111_HOU@CHI,3,29,54,CHI,HOU,1,10,77,(14:54) #2 J. Campbell in at QB. #6 J. Cutler is OUT with a concussion. M.Forte right tackle to CHI 30 for 7 yards (G.Quin).,3,10,2012 -20121111_HOU@CHI,3,29,20,CHI,HOU,2,3,70,(14:20) M.Forte right guard to CHI 38 for 8 yards (T.Dobbins; B.James).,3,10,2012 -20121111_HOU@CHI,3,28,36,CHI,HOU,1,10,62,(13:36) M.Forte left end to CHI 39 for 1 yard (B.James).,3,10,2012 -20121111_HOU@CHI,3,27,50,CHI,HOU,2,9,61,(12:50) J.Campbell pass short right to B.Marshall to CHI 41 for 2 yards (J.Joseph).,3,10,2012 -20121111_HOU@CHI,3,27,9,CHI,HOU,3,7,59,(12:09) (Shotgun) J.Campbell pass deep left to B.Marshall pushed ob at HST 41 for 18 yards (J.Joseph).,3,10,2012 -20121111_HOU@CHI,3,26,37,CHI,HOU,1,10,41,(11:37) M.Forte right end to HST 41 for no gain (J.Watt).,3,10,2012 -20121111_HOU@CHI,3,25,59,CHI,HOU,2,10,41,(10:59) J.Campbell pass short right to M.Spaeth pushed ob at HST 41 for no gain (T.Dobbins) [C.Barwin].,3,10,2012 -20121111_HOU@CHI,3,25,18,CHI,HOU,3,10,41,(10:18) (Shotgun) J.Campbell pass short middle to B.Marshall to HST 37 for 4 yards (C.Barwin A.Smith).,3,10,2012 -20121111_HOU@CHI,3,24,37,CHI,HOU,4,6,37,(9:37) (Punt formation) A.Podlesh punts 34 yards to HST 3 Center-P.Mannelly downed by CHI-E.Weems.,3,10,2012 -20121111_HOU@CHI,3,24,28,HOU,CHI,1,10,97,(9:28) M.Schaub pass incomplete short right to A.Johnson.,10,3,2012 -20121111_HOU@CHI,3,24,22,HOU,CHI,2,10,97,(9:22) A.Foster left end to HST 2 for -1 yards (B.Urlacher).,10,3,2012 -20121111_HOU@CHI,3,23,41,HOU,CHI,3,11,98,(8:41) A.Foster left guard to HST 6 for 4 yards (K.Hayden; B.Urlacher).,10,3,2012 -20121111_HOU@CHI,3,23,8,HOU,CHI,4,7,94,(8:08) (Punt formation) D.Jones punts 59 yards to CHI 35 Center-J.Weeks. D.Hester pushed ob at CHI 38 for 3 yards (J.Casey).,10,3,2012 -20121111_HOU@CHI,3,22,55,CHI,HOU,1,10,62,(7:55) M.Forte left end to CHI 39 for 1 yard (E.Mitchell).,3,10,2012 -20121111_HOU@CHI,3,22,12,CHI,HOU,2,9,61,(7:12) (Shotgun) J.Campbell pass incomplete short left to B.Marshall.,3,10,2012 -20121111_HOU@CHI,3,22,8,CHI,HOU,3,9,61,(7:08) (Shotgun) J.Campbell scrambles right end pushed ob at CHI 44 for 5 yards (T.Dobbins).,3,10,2012 -20121111_HOU@CHI,3,21,45,CHI,HOU,4,4,56,(6:45) (Punt formation) A.Podlesh punts 40 yards to HST 16 Center-P.Mannelly fair catch by K.Martin.,3,10,2012 -20121111_HOU@CHI,3,21,38,HOU,CHI,1,10,84,(6:38) A.Foster left end to HST 17 for 1 yard (C.Wootton; N.Collins).,10,3,2012 -20121111_HOU@CHI,3,21,3,HOU,CHI,2,9,83,(6:03) M.Schaub pass incomplete short left to A.Johnson.,10,3,2012 -20121111_HOU@CHI,3,20,59,HOU,CHI,3,9,83,(5:59) (Shotgun) M.Schaub pass short middle to K.Walter to HST 24 for 7 yards (K.Hayden).,10,3,2012 -20121111_HOU@CHI,3,20,26,HOU,CHI,4,2,76,(5:26) (Punt formation) D.Jones punts 28 yards to CHI 48 Center-J.Weeks downed by HST-J.Weeks.,10,3,2012 -20121111_HOU@CHI,3,20,15,CHI,HOU,1,10,52,(5:15) M.Forte right tackle to 50 for 2 yards (T.Dobbins; E.Mitchell).,3,10,2012 -20121111_HOU@CHI,3,19,32,CHI,HOU,2,8,50,(4:32) (Shotgun) PENALTY on CHI-C.Rachal False Start 5 yards enforced at 50 - No Play.,3,10,2012 -20121111_HOU@CHI,3,19,9,CHI,HOU,2,13,55,(4:09) J.Campbell pass deep left to B.Marshall to HST 10 for 45 yards (J.Joseph).,3,10,2012 -20121111_HOU@CHI,3,18,21,CHI,HOU,1,10,10,(3:21) M.Forte left guard to HST 5 for 5 yards (B.Reed; B.James).,3,10,2012 -20121111_HOU@CHI,3,17,45,CHI,HOU,2,5,5,(2:45) M.Forte right guard to HST 6 for -1 yards (J.Watt).,3,10,2012 -20121111_HOU@CHI,3,17,7,CHI,HOU,3,6,6,(2:07) (Shotgun) J.Campbell pass incomplete short right to E.Bennett.,3,10,2012 -20121111_HOU@CHI,3,17,0,CHI,HOU,4,6,6,(2:00) (Field Goal formation) R.Gould 24 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,10,2012 -20121111_HOU@CHI,3,17,0,CHI,HOU,,,6,R.Gould kicks 67 yards from CHI 35 to HST -2. K.Martin to CHI 45 for 57 yards (K.Hayden). PENALTY on HST Offensive Holding 10 yards enforced at HST 21.,6,10,2012 -20121111_HOU@CHI,3,16,46,HOU,CHI,1,10,89,(1:46) R.Harris reported in as eligible. A.Foster right end to HST 9 for -2 yards (I.Idonije).,10,6,2012 -20121111_HOU@CHI,3,16,15,HOU,CHI,2,12,91,(1:15) M.Schaub pass deep left to K.Walter to HST 32 for 23 yards (C.Conte).,10,6,2012 -20121111_HOU@CHI,3,15,33,HOU,CHI,1,10,68,(:33) A.Foster right end pushed ob at HST 39 for 7 yards (M.Wright).,10,6,2012 -20121111_HOU@CHI,4,15,0,HOU,CHI,2,3,61,(15:00) A.Foster left tackle to HST 38 for -1 yards (N.Collins).,10,6,2012 -20121111_HOU@CHI,4,14,15,HOU,CHI,3,4,62,(14:15) M.Schaub sacked at HST 31 for -7 yards (J.Peppers).,10,6,2012 -20121111_HOU@CHI,4,13,50,HOU,CHI,4,11,69,(13:50) (Punt formation) D.Jones punts 31 yards to CHI 38 Center-J.Weeks downed by HST-J.Nading.,10,6,2012 -20121111_HOU@CHI,4,13,40,CHI,HOU,1,10,62,(13:40) J.Campbell pass short right to B.Marshall to CHI 47 for 9 yards (G.Quin).,6,10,2012 -20121111_HOU@CHI,4,13,9,CHI,HOU,2,1,53,(13:09) M.Bush right tackle to HST 33 for 20 yards (D.Manning; B.James).,6,10,2012 -20121111_HOU@CHI,4,12,34,CHI,HOU,1,10,33,(12:34) M.Bush right tackle to HST 30 for 3 yards (W.Mercilus).,6,10,2012 -20121111_HOU@CHI,4,11,54,CHI,HOU,2,7,30,(11:54) J.Campbell pass incomplete short left to B.Marshall.,6,10,2012 -20121111_HOU@CHI,4,11,49,CHI,HOU,3,7,30,(11:49) (Shotgun) J.Campbell pass incomplete short right to B.Marshall (J.Joseph).,6,10,2012 -20121111_HOU@CHI,4,11,45,CHI,HOU,4,7,30,(11:45) (Field Goal formation) R.Gould 48 yard field goal is No Good Hit Left Upright Center-P.Mannelly Holder-A.Podlesh.,6,10,2012 -20121111_HOU@CHI,4,11,40,HOU,CHI,1,10,62,(11:40) M.Schaub pass short middle to G.Graham to HST 41 for 3 yards (B.Urlacher).,10,6,2012 -20121111_HOU@CHI,4,11,2,HOU,CHI,2,7,59,(11:02) R.Harris reported in as eligible. M.Schaub pass incomplete short middle to K.Walter (T.Jennings).,10,6,2012 -20121111_HOU@CHI,4,10,57,HOU,CHI,3,7,59,(10:57) (Shotgun) M.Schaub pass incomplete short right to G.Graham.,10,6,2012 -20121111_HOU@CHI,4,10,53,HOU,CHI,4,7,59,(10:53) (Punt formation) D.Jones punts 49 yards to CHI 10 Center-J.Weeks. D.Hester to CHI 14 for 4 yards (B.Ruud).,10,6,2012 -20121111_HOU@CHI,4,10,41,CHI,HOU,1,10,86,(10:41) M.Forte left tackle to CHI 19 for 5 yards (T.Dobbins).,6,10,2012 -20121111_HOU@CHI,4,10,0,CHI,HOU,2,5,81,(10:00) J.Campbell pass short left to B.Marshall to CHI 25 for 6 yards (K.Jackson). PENALTY on CHI-C.Rachal Offensive Holding 9 yards enforced at CHI 19 - No Play.,6,10,2012 -20121111_HOU@CHI,4,9,32,CHI,HOU,2,14,90,(9:32) J.Campbell pass short left to M.Spaeth to CHI 15 for 5 yards (T.Dobbins).,6,10,2012 -20121111_HOU@CHI,4,8,45,CHI,HOU,3,9,85,(8:45) (Shotgun) J.Campbell pass incomplete short left to M.Forte.,6,10,2012 -20121111_HOU@CHI,4,8,41,CHI,HOU,4,9,85,(8:41) (Punt formation) A.Podlesh punts 36 yards to HST 49 Center-P.Mannelly out of bounds.,6,10,2012 -20121111_HOU@CHI,4,8,41,CHI,HOU,4,9,85,(8:41) A.Podlesh punts 38 yards to HST 47 Center-P.Mannelly out of bounds.,6,10,2012 -20121111_HOU@CHI,4,8,34,HOU,CHI,1,10,53,(8:34) A.Foster right end to CHI 48 for 5 yards (L.Briggs).,10,6,2012 -20121111_HOU@CHI,4,7,54,HOU,CHI,2,5,48,(7:54) A.Foster right end to CHI 41 for 7 yards (C.Wootton). PENALTY on CHI-C.Wootton Face Mask (15 Yards) 15 yards enforced at CHI 41.,10,6,2012 -20121111_HOU@CHI,4,7,26,HOU,CHI,1,10,26,(7:26) A.Foster left tackle to CHI 27 for -1 yards (H.Melton).,10,6,2012 -20121111_HOU@CHI,4,6,44,HOU,CHI,2,11,27,(6:44) A.Foster right end pushed ob at CHI 23 for 4 yards (T.Jennings). PENALTY on HST-D.Newton Offensive Holding 10 yards enforced at CHI 27 - No Play.,10,6,2012 -20121111_HOU@CHI,4,6,23,HOU,CHI,2,21,37,(6:23) M.Schaub pass short middle to A.Foster to CHI 35 for 2 yards (B.Urlacher).,10,6,2012 -20121111_HOU@CHI,4,5,35,HOU,CHI,3,19,35,(5:35) (Shotgun) M.Schaub pass short middle to G.Graham to CHI 24 for 11 yards (L.Briggs; C.Conte).,10,6,2012 -20121111_HOU@CHI,4,4,55,HOU,CHI,4,8,24,(4:55) (Field Goal formation) S.Graham 42 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,10,6,2012 -20121111_HOU@CHI,4,4,55,HOU,CHI,,,24,S.Graham kicks 58 yards from HST 35 to CHI 7. D.Hester to CHI 25 for 18 yards (Q.Demps).,13,6,2012 -20121111_HOU@CHI,4,4,42,CHI,HOU,1,10,75,(4:42) (Shotgun) J.Campbell pass incomplete short right to K.Davis.,6,13,2012 -20121111_HOU@CHI,4,4,38,CHI,HOU,2,10,75,(4:38) J.Campbell pass short right to M.Spaeth to CHI 24 for -1 yards (B.James).,6,13,2012 -20121111_HOU@CHI,4,3,53,CHI,HOU,3,11,76,(3:53) (Shotgun) J.Campbell pass incomplete deep middle to K.Davis.,6,13,2012 -20121111_HOU@CHI,4,3,46,CHI,HOU,4,11,76,(3:46) (Punt formation) A.Podlesh punts 43 yards to HST 33 Center-P.Mannelly downed by CHI-E.Weems.,6,13,2012 -20121111_HOU@CHI,4,3,35,HOU,CHI,1,10,67,(3:35) R.Harris reported in as eligible. A.Foster right end to HST 30 for -3 yards (H.Melton).,13,6,2012 -20121111_HOU@CHI,4,2,52,HOU,CHI,2,13,70,(2:52) A.Foster right end to HST 30 for no gain (J.Peppers).,13,6,2012 -20121111_HOU@CHI,4,2,47,HOU,CHI,3,13,70,(2:47) A.Foster left tackle to HST 31 for 1 yard (J.Peppers).,13,6,2012 -20121111_HOU@CHI,4,2,42,HOU,CHI,4,12,69,(2:42) (Punt formation) D.Jones punts 31 yards to CHI 38 Center-J.Weeks out of bounds.,13,6,2012 -20121111_HOU@CHI,4,2,35,CHI,HOU,1,10,62,(2:35) (Shotgun) J.Campbell pass short left to M.Forte to CHI 35 for -3 yards (C.Barwin).,6,13,2012 -20121111_HOU@CHI,4,2,6,CHI,HOU,2,13,65,(2:06) (No Huddle Shotgun) J.Campbell pass short left to D.Hester to CHI 42 for 7 yards (B.McCain). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at CHI 35 - No Play.,6,13,2012 -20121111_HOU@CHI,4,2,0,CHI,HOU,2,23,75,(2:00) (Shotgun) J.Campbell pass short left to K.Adams to CHI 32 for 7 yards (G.Quin; B.James).,6,13,2012 -20121111_HOU@CHI,4,1,35,CHI,HOU,3,16,68,(1:35) (No Huddle Shotgun) J.Campbell pass short middle to B.Marshall to CHI 40 for 8 yards (C.Barwin).,6,13,2012 -20121111_HOU@CHI,4,1,5,CHI,HOU,4,8,60,(1:05) (No Huddle Shotgun) J.Campbell pass incomplete short middle to M.Forte.,6,13,2012 -20121111_HOU@CHI,4,1,0,HOU,CHI,1,10,40,(1:00) M.Schaub kneels to CHI 41 for -1 yards.,13,6,2012 -20121111_HOU@CHI,4,0,26,HOU,CHI,2,11,41,(:26) M.Schaub kneels to CHI 42 for -1 yards.,13,6,2012 -20121111_HOU@CHI,4,0,26,HOU,CHI,,,41,                      ,13,6,2012 -20121112_KC@PIT,1,0,0,PIT,KC,,,41,S.Suisham kicks 57 yards from PIT 35 to KC 8. S.Draughn to KC 32 for 24 yards (S.Suisham C.Carter).,0,0,2012 -20121112_KC@PIT,1,59,53,KC,PIT,1,10,68,(14:53) J.Charles right tackle to KC 41 for 9 yards (R.Clark).,0,0,2012 -20121112_KC@PIT,1,59,21,KC,PIT,2,1,59,(14:21) J.Charles right tackle to KC 43 for 2 yards (B.Keisel L.Woodley).,0,0,2012 -20121112_KC@PIT,1,58,45,KC,PIT,1,10,57,(13:45) M.Cassel pass short right to D.Bowe pushed ob at KC 49 for 6 yards (K.Lewis).,0,0,2012 -20121112_KC@PIT,1,58,23,KC,PIT,2,4,51,(13:23) P.Hillis left guard to KC 49 for no gain (B.Keisel J.Harrison).,0,0,2012 -20121112_KC@PIT,1,57,43,KC,PIT,3,4,51,(12:43) (Shotgun) M.Cassel sacked at KC 43 for -6 yards (B.Keisel).,0,0,2012 -20121112_KC@PIT,1,57,15,KC,PIT,4,10,57,(12:15) (Punt formation) D.Colquitt punts 57 yards to end zone Center-T.Gafford Touchback.,0,0,2012 -20121112_KC@PIT,1,57,4,PIT,KC,1,10,80,(12:04) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to PIT 40 for 20 yards (K.Lewis).,0,0,2012 -20121112_KC@PIT,1,56,29,PIT,KC,1,10,60,(11:29) B.Roethlisberger pass incomplete deep right to E.Sanders (E.Berry).,0,0,2012 -20121112_KC@PIT,1,56,23,PIT,KC,2,10,60,(11:23) I.Redman up the middle to PIT 43 for 3 yards (D.Johnson).,0,0,2012 -20121112_KC@PIT,1,55,39,PIT,KC,3,7,57,(10:39) (Shotgun) B.Roethlisberger pass incomplete short right to J.Cotchery. Coverage by #24 Flowers.,0,0,2012 -20121112_KC@PIT,1,55,33,PIT,KC,4,7,57,(10:33) (Punt formation) D.Butler punts 38 yards to KC 19 Center-G.Warren. J.Arenas to KC 30 for 11 yards (B.Batch).,0,0,2012 -20121112_KC@PIT,1,55,23,KC,PIT,1,10,70,(10:23) J.Charles right guard to KC 37 for 7 yards (R.Clark).,0,0,2012 -20121112_KC@PIT,1,54,50,KC,PIT,2,3,63,(9:50) M.Cassel pass deep right to T.Moeaki to PIT 25 for 38 yards (K.Lewis).,0,0,2012 -20121112_KC@PIT,1,54,17,KC,PIT,1,10,25,(9:17) M.Cassel pass short left to D.McCluster to PIT 12 for 13 yards (R.Clark).,0,0,2012 -20121112_KC@PIT,1,53,42,KC,PIT,1,10,12,(8:42) J.Charles right guard for 12 yards TOUCHDOWN.,0,0,2012 -20121112_KC@PIT,1,53,42,KC,PIT,,,12,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,0,0,2012 -20121112_KC@PIT,1,53,42,KC,PIT,,,12,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,7,0,2012 -20121112_KC@PIT,1,53,37,PIT,KC,1,10,80,(8:37) I.Redman right guard to PIT 21 for 1 yard (T.Jackson; R.Pitoitua).,0,7,2012 -20121112_KC@PIT,1,52,55,PIT,KC,2,9,79,(7:55) (Shotgun) B.Roethlisberger pass short right to H.Miller to PIT 26 for 5 yards (E.Berry).,0,7,2012 -20121112_KC@PIT,1,52,15,PIT,KC,3,4,74,(7:15) (Shotgun) B.Roethlisberger pass incomplete short right to J.Cotchery [J.Houston]. Coverage by #21 Arenas.,0,7,2012 -20121112_KC@PIT,1,51,58,PIT,KC,4,4,74,(6:58) (Punt formation) D.Butler punts 46 yards to KC 28 Center-G.Warren fair catch by J.Arenas.,0,7,2012 -20121112_KC@PIT,1,51,58,KC,PIT,1,10,72,(6:58) J.Charles right tackle to KC 35 for 7 yards (R.Clark).,7,0,2012 -20121112_KC@PIT,1,51,26,KC,PIT,2,3,65,(6:26) P.Hillis up the middle to KC 39 for 4 yards (L.Woodley L.Foote).,7,0,2012 -20121112_KC@PIT,1,50,53,KC,PIT,1,10,61,(5:53) P.Hillis right tackle to KC 43 for 4 yards (J.Harrison; B.Keisel).,7,0,2012 -20121112_KC@PIT,1,50,8,KC,PIT,2,6,57,(5:08) J.Charles right end pushed ob at KC 50 for 7 yards (L.Foote).,7,0,2012 -20121112_KC@PIT,1,49,40,KC,PIT,1,10,50,(4:40) M.Cassel scrambles left tackle to PIT 47 for 3 yards (L.Foote L.Timmons).,7,0,2012 -20121112_KC@PIT,1,49,3,KC,PIT,2,7,47,(4:03) J.Charles right tackle to PIT 43 for 4 yards (L.Timmons).,7,0,2012 -20121112_KC@PIT,1,48,19,KC,PIT,3,3,43,(3:19) (Shotgun) M.Cassel pass incomplete short right to D.Bowe.,7,0,2012 -20121112_KC@PIT,1,48,14,KC,PIT,4,3,43,(3:14) (Punt formation) D.Colquitt punts 30 yards to PIT 13 Center-T.Gafford out of bounds.,7,0,2012 -20121112_KC@PIT,1,48,5,PIT,KC,1,10,87,(3:05) B.Roethlisberger pass short middle to M.Wallace to PIT 20 for 7 yards (J.Belcher D.Johnson).,0,7,2012 -20121112_KC@PIT,1,47,27,PIT,KC,2,3,80,(2:27) B.Roethlisberger pass incomplete short left to M.Wallace (T.Hali).,0,7,2012 -20121112_KC@PIT,1,47,24,PIT,KC,3,3,80,(2:24) (No Huddle) B.Roethlisberger pass short left to I.Redman to PIT 28 for 8 yards (D.Johnson).,0,7,2012 -20121112_KC@PIT,1,46,41,PIT,KC,1,10,72,(1:41) I.Redman left guard pushed ob at PIT 36 for 8 yards (T.Hali). PENALTY on PIT-W.Colon Offensive Holding 10 yards enforced at PIT 28 - No Play. PENALTY on PIT-W.Colon Unsportsmanlike Conduct 9 yards enforced between downs.,0,7,2012 -20121112_KC@PIT,1,46,16,PIT,KC,1,29,91,(1:16) (Shotgun) I.Redman left guard to PIT 11 for 2 yards (D.Johnson). FUMBLES (D.Johnson) RECOVERED by KC-A.Bailey at PIT 11. A.Bailey to PIT 10 for 1 yard (M.Wallace).,0,7,2012 -20121112_KC@PIT,1,46,7,KC,PIT,1,10,10,(1:07) P.Hillis up the middle to PIT 4 for 6 yards (W.Allen).,7,0,2012 -20121112_KC@PIT,1,45,34,KC,PIT,2,4,4,(:34) J.Charles left guard to PIT 3 for 1 yard (R.Clark).,7,0,2012 -20121112_KC@PIT,2,45,0,KC,PIT,3,3,3,(15:00) J.Charles right guard to PIT 4 for -1 yards (L.Woodley).,7,0,2012 -20121112_KC@PIT,2,44,24,KC,PIT,4,4,4,(14:24) (Field Goal formation) R.Succop 22 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,7,0,2012 -20121112_KC@PIT,2,44,24,KC,PIT,,,4,R.Succop kicks 58 yards from KC 35 to PIT 7 out of bounds.,10,0,2012 -20121112_KC@PIT,2,44,20,PIT,KC,1,10,60,(14:20) B.Roethlisberger pass short middle to D.Paulson to PIT 46 for 6 yards (J.Houston). FUMBLES (J.Houston) recovered by PIT-W.Colon at PIT 46. W.Colon to PIT 46 for no gain (J.Belcher).,0,10,2012 -20121112_KC@PIT,2,43,39,PIT,KC,2,4,54,(13:39) J.Dwyer up the middle to PIT 48 for 2 yards (D.Johnson).,0,10,2012 -20121112_KC@PIT,2,42,52,PIT,KC,3,2,52,(12:52) (Shotgun) B.Roethlisberger pass short right to H.Miller to KC 46 for 6 yards (E.Berry).,0,10,2012 -20121112_KC@PIT,2,42,10,PIT,KC,1,10,46,(12:10) B.Roethlisberger pass incomplete short left to W.Johnson. Coverage by #91 Hali.,0,10,2012 -20121112_KC@PIT,2,42,7,PIT,KC,2,10,46,(12:07) B.Roethlisberger pass short left to H.Miller to KC 30 for 16 yards (A.Elam).,0,10,2012 -20121112_KC@PIT,2,41,22,PIT,KC,1,10,30,(11:22) B.Roethlisberger pass short left to D.Paulson to KC 21 for 9 yards (D.Johnson).,0,10,2012 -20121112_KC@PIT,2,40,41,PIT,KC,2,1,21,(10:41) J.Dwyer right guard to KC 19 for 2 yards (J.Houston).,0,10,2012 -20121112_KC@PIT,2,40,0,PIT,KC,1,10,19,(10:00) J.Dwyer right guard to KC 17 for 2 yards (D.Johnson).,0,10,2012 -20121112_KC@PIT,2,39,19,PIT,KC,2,8,17,(9:19) (Shotgun) B.Roethlisberger pass incomplete deep right to E.Sanders (E.Berry).,0,10,2012 -20121112_KC@PIT,2,39,9,PIT,KC,3,8,17,(9:09) (Shotgun) B.Roethlisberger pass incomplete short left to J.Cotchery (J.Brown).,0,10,2012 -20121112_KC@PIT,2,39,5,PIT,KC,4,8,17,(9:05) (Field Goal formation) S.Suisham 35 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,10,2012 -20121112_KC@PIT,2,39,5,PIT,KC,,,17,S.Suisham kicks 67 yards from PIT 35 to KC -2. S.Draughn to KC 3 for 5 yards. FUMBLES and recovers at KC 3. S.Draughn to KC 8 for 5 yards (D.Paulson).,3,10,2012 -20121112_KC@PIT,2,38,56,KC,PIT,1,10,92,(8:56) J.Charles right guard to KC 12 for 4 yards (K.Lewis L.Foote).,10,3,2012 -20121112_KC@PIT,2,38,22,KC,PIT,2,6,88,(8:22) J.Charles right guard to KC 17 for 5 yards (J.Harrison).,10,3,2012 -20121112_KC@PIT,2,37,43,KC,PIT,3,1,83,(7:43) PENALTY on KC-S.Maneri False Start 5 yards enforced at KC 17 - No Play.,10,3,2012 -20121112_KC@PIT,2,37,17,KC,PIT,3,6,88,(7:17) (Shotgun) M.Cassel pass incomplete short left to T.Moeaki (L.Timmons).,10,3,2012 -20121112_KC@PIT,2,37,11,KC,PIT,4,6,88,(7:11) (Punt formation) D.Colquitt punts 41 yards to PIT 47 Center-T.Gafford. D.Gilreath pushed ob at PIT 50 for 3 yards (T.Gafford).,10,3,2012 -20121112_KC@PIT,2,37,2,PIT,KC,1,10,50,(7:02) J.Dwyer up the middle to KC 44 for 6 yards (J.Belcher).,3,10,2012 -20121112_KC@PIT,2,36,22,PIT,KC,2,4,44,(6:22) B.Roethlisberger pass incomplete deep right to M.Wallace. Coverage by #23 Lewis.,3,10,2012 -20121112_KC@PIT,2,36,15,PIT,KC,3,4,44,(6:15) J.Dwyer up the middle to KC 27 for 17 yards (K.Lewis).,3,10,2012 -20121112_KC@PIT,2,35,34,PIT,KC,1,10,27,(5:34) J.Dwyer up the middle to KC 21 for 6 yards (R.Pitoitua; D.Poe).,3,10,2012 -20121112_KC@PIT,2,34,52,PIT,KC,2,4,21,(4:52) (Shotgun) J.Dwyer right guard to KC 21 for no gain (D.Johnson).,3,10,2012 -20121112_KC@PIT,2,34,10,PIT,KC,3,4,21,(4:10) (Shotgun) B.Roethlisberger scrambles left guard to KC 7 for 14 yards (A.Elam).,3,10,2012 -20121112_KC@PIT,2,33,22,PIT,KC,1,7,7,(3:22) B.Roethlisberger pass short right to M.Wallace for 7 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,3,10,2012 -20121112_KC@PIT,2,33,22,PIT,KC,,,7,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,10,2012 -20121112_KC@PIT,2,33,22,PIT,KC,,,7,S.Suisham kicks 65 yards from PIT 35 to KC 0. D.Wylie to KC 25 for 25 yards (K.Lewis R.Golden).,10,10,2012 -20121112_KC@PIT,2,33,10,KC,PIT,1,10,75,(3:10) J.Charles left tackle to KC 29 for 4 yards (E.Hood R.Clark).,10,10,2012 -20121112_KC@PIT,2,32,34,KC,PIT,2,6,71,(2:34) M.Cassel pass short right to D.Bowe to KC 39 for 10 yards (W.Allen).,10,10,2012 -20121112_KC@PIT,2,32,3,KC,PIT,1,10,61,(2:03) J.Charles right tackle to KC 41 for 2 yards (L.Woodley; C.Hampton).,10,10,2012 -20121112_KC@PIT,2,31,56,KC,PIT,2,8,59,(1:56) M.Cassel pass short left to J.Baldwin to PIT 48 for 11 yards (K.Lewis).,10,10,2012 -20121112_KC@PIT,2,31,27,KC,PIT,1,10,48,(1:27) (No Huddle) J.Charles left tackle to PIT 46 for 2 yards (C.Hampton).,10,10,2012 -20121112_KC@PIT,2,30,51,KC,PIT,2,8,46,(:51) (Shotgun) M.Cassel pass incomplete short right to D.Bowe. Coverage by #24 Taylor.,10,10,2012 -20121112_KC@PIT,2,30,46,KC,PIT,3,8,46,(:46) M.Cassel pass incomplete short left to T.Moeaki.,10,10,2012 -20121112_KC@PIT,2,30,41,KC,PIT,4,8,46,(:41) (Punt formation) D.Colquitt punts 32 yards to PIT 14 Center-T.Gafford fair catch by D.Gilreath.,10,10,2012 -20121112_KC@PIT,2,30,34,PIT,KC,1,10,86,(:34) J.Dwyer left guard to PIT 17 for 3 yards (J.Brown).,10,10,2012 -20121112_KC@PIT,3,30,0,KC,PIT,,,86,R.Succop kicks 66 yards from KC 35 to PIT -1. C.Rainey to PIT 22 for 23 yards (S.Draughn).,10,10,2012 -20121112_KC@PIT,3,29,53,PIT,KC,1,10,78,(14:53) B.Roethlisberger pass incomplete deep left to M.Wallace (J.Arenas).,10,10,2012 -20121112_KC@PIT,3,29,47,PIT,KC,2,10,78,(14:47) I.Redman right guard to PIT 28 for 6 yards (D.Johnson A.Elam).,10,10,2012 -20121112_KC@PIT,3,29,6,PIT,KC,3,4,72,(14:06) (Shotgun) B.Roethlisberger sacked at PIT 25 for -3 yards (J.Houston).,10,10,2012 -20121112_KC@PIT,3,28,48,PIT,KC,4,7,75,(13:48) (Punt formation) D.Butler punts 35 yards to KC 40 Center-G.Warren downed by PIT-B.Johnson.,10,10,2012 -20121112_KC@PIT,3,28,40,KC,PIT,1,10,60,(13:40) J.Charles right end ran ob at KC 42 for 2 yards.,10,10,2012 -20121112_KC@PIT,3,28,18,KC,PIT,2,8,58,(13:18) M.Cassel pass incomplete short left to J.Baldwin [B.Keisel]. Coverage by #23 Lewis.,10,10,2012 -20121112_KC@PIT,3,28,11,KC,PIT,3,8,58,(13:11) (Shotgun) M.Cassel scrambles left guard to PIT 49 for 9 yards (L.Woodley).,10,10,2012 -20121112_KC@PIT,3,27,33,KC,PIT,1,10,49,(12:33) J.Charles right tackle to PIT 40 for 9 yards (R.Clark).,10,10,2012 -20121112_KC@PIT,3,26,57,KC,PIT,2,1,40,(11:57) J.Charles right guard to PIT 33 for 7 yards (R.Clark K.Lewis).,10,10,2012 -20121112_KC@PIT,3,26,26,KC,PIT,1,10,33,(11:26) P.Hillis up the middle to PIT 26 for 7 yards (R.Clark; L.Foote).,10,10,2012 -20121112_KC@PIT,3,25,55,KC,PIT,2,3,26,(10:55) P.Hillis up the middle to PIT 26 for no gain (L.Timmons).,10,10,2012 -20121112_KC@PIT,3,25,14,KC,PIT,3,3,26,(10:14) P.Hillis right end to PIT 22 for 4 yards (I.Taylor). PIT-I.Taylor was injured during the play.,10,10,2012 -20121112_KC@PIT,3,24,53,KC,PIT,1,10,22,(9:53) (Shotgun) M.Cassel pass short left to D.Bowe for 22 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on KC-B.Albert Offensive Holding 10 yards enforced at PIT 10.,10,10,2012 -20121112_KC@PIT,3,24,45,KC,PIT,1,8,20,(9:45) P.Hillis up the middle to PIT 17 for 3 yards (L.Timmons; J.Harrison).,10,10,2012 -20121112_KC@PIT,3,24,9,KC,PIT,2,5,17,(9:09) J.Charles up the middle to PIT 15 for 2 yards (B.Keisel J.Harrison).,10,10,2012 -20121112_KC@PIT,3,23,28,KC,PIT,3,3,15,(8:28) (Shotgun) M.Cassel pass incomplete short right to D.McCluster [L.Timmons].,10,10,2012 -20121112_KC@PIT,3,23,24,KC,PIT,4,3,15,(8:24) (Field Goal formation) R.Succop 33 yard field goal is No Good Wide Right Center-T.Gafford Holder-D.Colquitt.,10,10,2012 -20121112_KC@PIT,3,23,20,PIT,KC,1,10,77,(8:20) B.Leftwich pass incomplete deep right to M.Wallace.,10,10,2012 -20121112_KC@PIT,3,23,13,PIT,KC,2,10,77,(8:13) J.Dwyer right guard to PIT 26 for 3 yards (T.Jackson).,10,10,2012 -20121112_KC@PIT,3,22,32,PIT,KC,3,7,74,(7:32) (Shotgun) B.Leftwich sacked at PIT 17 for -9 yards. FUMBLES RECOVERED by KC-J.Houston at PIT 21. J.Houston for 21 yards TOUCHDOWN. PENALTY on KC Unsportsmanlike Conduct 15 yards enforced between downs. The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) B.Leftwich pass incomplete short middle to E.Sanders. PENALTY on KC Unsportsmanlike Conduct 15 yards enforced at PIT 26.,10,10,2012 -20121112_KC@PIT,3,22,28,PIT,KC,1,10,59,(7:28) J.Dwyer up the middle to PIT 45 for 4 yards (T.Hali).,10,10,2012 -20121112_KC@PIT,3,21,50,PIT,KC,2,6,55,(6:50) J.Dwyer right guard to PIT 46 for 1 yard (J.Houston; T.Jackson).,10,10,2012 -20121112_KC@PIT,3,21,5,PIT,KC,3,5,54,(6:05) J.Dwyer up the middle to PIT 50 for 4 yards (J.Brown).,10,10,2012 -20121112_KC@PIT,3,20,20,PIT,KC,4,1,50,(5:20) (Run formation) I.Redman up the middle to PIT 49 for -1 yards (D.Johnson).,10,10,2012 -20121112_KC@PIT,3,20,14,KC,PIT,1,10,49,(5:14) P.Hillis left tackle to PIT 47 for 2 yards (L.Timmons; J.Harrison).,10,10,2012 -20121112_KC@PIT,3,19,41,KC,PIT,2,8,47,(4:41) J.Charles right tackle to PIT 46 for 1 yard (J.Harrison; L.Woodley).,10,10,2012 -20121112_KC@PIT,3,18,59,KC,PIT,3,7,46,(3:59) (Shotgun) M.Cassel pass incomplete short left to D.McCluster (K.Lewis). Penalty on KC-J.Baldwin Illegal Formation declined.,10,10,2012 -20121112_KC@PIT,3,18,52,KC,PIT,4,7,46,(3:52) (Punt formation) D.Colquitt punts 37 yards to PIT 9 Center-T.Gafford. D.Gilreath to PIT 14 for 5 yards (C.Greenwood).,10,10,2012 -20121112_KC@PIT,3,18,43,PIT,KC,1,10,86,(3:43) J.Dwyer up the middle to PIT 15 for 1 yard (J.Houston).,10,10,2012 -20121112_KC@PIT,3,18,3,PIT,KC,2,9,85,(3:03) B.Leftwich pass incomplete deep right to M.Wallace.,10,10,2012 -20121112_KC@PIT,3,17,55,PIT,KC,3,9,85,(2:55) (Shotgun) B.Leftwich pass short left to E.Sanders to PIT 46 for 31 yards (J.Arenas A.Elam).,10,10,2012 -20121112_KC@PIT,3,17,9,PIT,KC,1,10,54,(2:09) (Shotgun) E.Sanders right end to PIT 50 for 4 yards (J.Houston).,10,10,2012 -20121112_KC@PIT,3,16,29,PIT,KC,2,6,50,(1:29) I.Redman right guard to KC 47 for 3 yards (A.Elam T.Hali).,10,10,2012 -20121112_KC@PIT,3,15,43,PIT,KC,3,3,47,(:43) (Shotgun) B.Leftwich pass incomplete deep right to E.Sanders [E.Berry]. PENALTY on KC-J.Arenas Defensive Pass Interference 22 yards enforced at KC 47 - No Play.,10,10,2012 -20121112_KC@PIT,3,15,38,PIT,KC,1,10,25,(:38) J.Dwyer up the middle to KC 26 for -1 yards (D.Johnson).,10,10,2012 -20121112_KC@PIT,4,15,0,PIT,KC,2,11,26,(15:00) (Shotgun) B.Leftwich pass short right to E.Sanders to KC 27 for -1 yards (E.Berry).,10,10,2012 -20121112_KC@PIT,4,14,15,PIT,KC,3,12,27,(14:15) (Shotgun) B.Leftwich pass incomplete deep right to J.Cotchery [J.Houston]. Penalty on KC-A.Elam Defensive Holding declined. PENALTY on KC-T.Hali Roughing the Passer 14 yards enforced at KC 27 - No Play.,10,10,2012 -20121112_KC@PIT,4,14,9,PIT,KC,1,10,13,(14:09) J.Dwyer up the middle to KC 13 for no gain (E.Berry J.Houston).,10,10,2012 -20121112_KC@PIT,4,13,29,PIT,KC,2,10,13,(13:29) B.Leftwich pass short right to M.Wallace to KC 13 for no gain (B.Flowers).,10,10,2012 -20121112_KC@PIT,4,12,48,PIT,KC,3,10,13,(12:48) (Shotgun) B.Leftwich pass incomplete short left to E.Sanders [T.Hali]. Coverage by #30 Brown.,10,10,2012 -20121112_KC@PIT,4,12,41,PIT,KC,4,10,13,(12:41) (Field Goal formation) S.Suisham 31 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,10,2012 -20121112_KC@PIT,4,12,41,PIT,KC,,,13,S.Suisham kicks 57 yards from PIT 35 to KC 8. D.Wylie to KC 31 for 23 yards (C.Brown).,13,10,2012 -20121112_KC@PIT,4,12,32,KC,PIT,1,10,69,(12:32) M.Cassel pass incomplete deep middle to J.Baldwin (I.Taylor).,10,13,2012 -20121112_KC@PIT,4,12,22,KC,PIT,2,10,69,(12:22) J.Charles right tackle to KC 30 for -1 yards (E.Hood L.Woodley).,10,13,2012 -20121112_KC@PIT,4,11,41,KC,PIT,3,11,70,(11:41) (Shotgun) M.Cassel pass incomplete short left to D.Bowe (R.Clark) [E.Hood].,10,13,2012 -20121112_KC@PIT,4,11,35,KC,PIT,4,11,70,(11:35) (Punt formation) D.Colquitt punts 45 yards to PIT 25 Center-T.Gafford. C.Rainey MUFFS catch and recovers at PIT 25. C.Rainey to PIT 21 for -4 yards (S.Draughn).,10,13,2012 -20121112_KC@PIT,4,11,24,PIT,KC,1,10,79,(11:24) B.Leftwich pass short left to I.Redman to PIT 31 for 10 yards (E.Berry).,13,10,2012 -20121112_KC@PIT,4,10,40,PIT,KC,1,10,69,(10:40) B.Leftwich pass incomplete short right to W.Johnson.,13,10,2012 -20121112_KC@PIT,4,10,35,PIT,KC,2,10,69,(10:35) I.Redman up the middle to PIT 35 for 4 yards (J.Arenas).,13,10,2012 -20121112_KC@PIT,4,9,53,PIT,KC,3,6,65,(9:53) (Shotgun) J.Dwyer right tackle to PIT 38 for 3 yards (A.Bailey).,13,10,2012 -20121112_KC@PIT,4,9,24,PIT,KC,4,3,62,(9:24) (Punt formation) D.Butler punts 38 yards to KC 24 Center-G.Warren. J.Arenas to KC 30 for 6 yards (C.Allen).,13,10,2012 -20121112_KC@PIT,4,9,14,KC,PIT,1,10,70,(9:14) M.Cassel pass short left to P.Hillis to KC 32 for 2 yards (L.Timmons).,10,13,2012 -20121112_KC@PIT,4,8,39,KC,PIT,2,8,68,(8:39) J.Charles left guard to KC 39 for 7 yards (L.Timmons L.Foote).,10,13,2012 -20121112_KC@PIT,4,8,3,KC,PIT,3,1,61,(8:03) P.Hillis right guard to KC 39 for no gain (W.Allen B.Keisel).,10,13,2012 -20121112_KC@PIT,4,7,25,KC,PIT,4,1,61,(7:25) (Punt formation) D.Colquitt punts 43 yards to PIT 18 Center-T.Gafford downed by KC-A.Bailey.,10,13,2012 -20121112_KC@PIT,4,7,17,PIT,KC,1,10,82,(7:17) J.Dwyer up the middle to PIT 19 for 1 yard (D.Johnson).,13,10,2012 -20121112_KC@PIT,4,6,38,PIT,KC,2,9,81,(6:38) (Shotgun) B.Leftwich pass short left to J.Dwyer to PIT 23 for 4 yards (D.Johnson).,13,10,2012 -20121112_KC@PIT,4,5,57,PIT,KC,3,5,77,(5:57) (Shotgun) B.Leftwich pass incomplete short middle to E.Sanders (J.Arenas).,13,10,2012 -20121112_KC@PIT,4,5,52,PIT,KC,4,5,77,(5:52) (Punt formation) D.Butler punts 41 yards to KC 36 Center-G.Warren. J.Arenas to KC 36 for no gain (C.Allen).,13,10,2012 -20121112_KC@PIT,4,5,40,KC,PIT,1,10,64,(5:40) M.Cassel sacked at KC 36 for 0 yards (B.Keisel).,10,13,2012 -20121112_KC@PIT,4,5,2,KC,PIT,2,10,64,(5:02) J.Charles up the middle to KC 40 for 4 yards (C.Hampton).,10,13,2012 -20121112_KC@PIT,4,4,23,KC,PIT,3,6,60,(4:23) (Shotgun) M.Cassel pass incomplete short left to T.Moeaki [B.Keisel]. Pressure by #99 Keisel.,10,13,2012 -20121112_KC@PIT,4,4,18,KC,PIT,4,6,60,(4:18) (Punt formation) D.Colquitt punts 52 yards to PIT 8 Center-T.Gafford fair catch by D.Gilreath.,10,13,2012 -20121112_KC@PIT,4,4,9,PIT,KC,1,10,92,(4:09) I.Redman right guard to PIT 11 for 3 yards (R.Pitoitua; J.Belcher).,13,10,2012 -20121112_KC@PIT,4,3,25,PIT,KC,2,7,89,(3:25) (Shotgun) B.Leftwich pass incomplete short right to I.Redman. Coverage by #24 Flowers.,13,10,2012 -20121112_KC@PIT,4,3,21,PIT,KC,3,7,89,(3:21) (Shotgun) B.Leftwich pass deep middle to J.Cotchery to PIT 33 for 22 yards (J.Brown).,13,10,2012 -20121112_KC@PIT,4,2,39,PIT,KC,1,10,67,(2:39) J.Dwyer left guard to PIT 34 for 1 yard (R.Pitoitua; J.Arenas).,13,10,2012 -20121112_KC@PIT,4,2,32,PIT,KC,2,9,66,(2:32) B.Leftwich pass short right to W.Johnson to PIT 41 for 7 yards (B.Flowers).,13,10,2012 -20121112_KC@PIT,4,2,25,PIT,KC,3,2,59,(2:25) (Shotgun) J.Dwyer right guard to PIT 42 for 1 yard (R.Pitoitua). Official measurement.,13,10,2012 -20121112_KC@PIT,4,2,0,PIT,KC,4,1,58,(2:00) (Punt formation) D.Butler punts 58 yards to end zone Center-G.Warren Touchback.,13,10,2012 -20121112_KC@PIT,4,1,51,KC,PIT,1,10,80,(1:51) (Shotgun) M.Cassel pass deep middle to T.Moeaki to KC 38 for 18 yards (L.Foote).,10,13,2012 -20121112_KC@PIT,4,1,30,KC,PIT,1,10,62,(1:30) (No Huddle Shotgun) M.Cassel pass incomplete deep left to T.Copper.,10,13,2012 -20121112_KC@PIT,4,1,24,KC,PIT,2,10,62,(1:24) (Shotgun) M.Cassel pass short right to T.Moeaki to KC 50 for 12 yards (R.Clark).,10,13,2012 -20121112_KC@PIT,4,1,2,KC,PIT,1,10,50,(1:02) (No Huddle Shotgun) M.Cassel pass incomplete short middle to D.Bowe (R.Clark). PIT-R.Clark was injured during the play. KC-D.Bowe was injured during the play.,10,13,2012 -20121112_KC@PIT,4,0,54,KC,PIT,2,10,50,(:54) (Shotgun) M.Cassel pass short middle to D.McCluster to PIT 45 for 5 yards (L.Woodley).,10,13,2012 -20121112_KC@PIT,4,0,34,KC,PIT,3,5,45,(:34) (No Huddle Shotgun) M.Cassel pass short left to T.Moeaki pushed ob at PIT 33 for 12 yards (W.Allen). PENALTY on KC-T.Moeaki Offensive Pass Interference 10 yards enforced at PIT 45 - No Play.,10,13,2012 -20121112_KC@PIT,4,0,28,KC,PIT,3,15,55,(:28) (Shotgun) M.Cassel pass incomplete short left to D.McCluster. Coverage by #92 Harrison.,10,13,2012 -20121112_KC@PIT,4,0,22,KC,PIT,4,15,55,(:22) (Shotgun) M.Cassel pass deep middle to D.Bowe to PIT 28 for 27 yards (R.Mundy).,10,13,2012 -20121112_KC@PIT,4,0,3,KC,PIT,1,10,28,(:03) M.Cassel spiked the ball to stop the clock.,10,13,2012 -20121112_KC@PIT,4,0,2,KC,PIT,2,10,28,(:02) (Field Goal formation) R.Succop 46 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,10,13,2012 -20121112_KC@PIT,5,0,0,PIT,KC,,,28,S.Suisham kicks 70 yards from PIT 35 to KC -5. D.Wylie to KC 15 for 20 yards (B.Johnson; D.Gilreath).,13,13,2012 -20121112_KC@PIT,5,-1,54,KC,PIT,1,10,85,(14:54) J.Charles right tackle to KC 19 for 4 yards (B.Keisel).,13,13,2012 -20121112_KC@PIT,5,-1,21,KC,PIT,2,6,81,(14:21) M.Cassel pass short left intended for D.Bowe INTERCEPTED by L.Timmons at KC 28. L.Timmons to KC 5 for 23 yards (B.Albert).,13,13,2012 -20121112_KC@PIT,5,-1,9,PIT,KC,1,5,5,(14:09) (Field Goal formation) S.Suisham 23 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,13,13,2012 -20121112_KC@PIT,5,-1,9,PIT,KC,,,5,                      ,16,13,2012 -20121115_MIA@BUF,1,-1,0,BUF,MIA,,,5,R.Lindell kicks 65 yards from BUF 35 to MIA 0. M.Thigpen to MIA 21 for 21 yards (A.Moats).,0,0,2012 -20121115_MIA@BUF,1,59,53,MIA,BUF,1,10,79,(14:53) R.Bush left guard to MIA 23 for 2 yards (K.Williams; G.Wilson).,0,0,2012 -20121115_MIA@BUF,1,59,27,MIA,BUF,2,8,77,(14:27) R.Tannehill pass short right to B.Hartline to MIA 28 for 5 yards (S.Gilmore). Screen pass caught at MIA 23.,0,0,2012 -20121115_MIA@BUF,1,58,52,MIA,BUF,3,3,72,(13:52) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano. Thrown wide of receiver near sideline at MIA 33.,0,0,2012 -20121115_MIA@BUF,1,58,49,MIA,BUF,4,3,72,(13:49) B.Fields punts 51 yards to BUF 21 Center-J.Denney. L.McKelvin for 79 yards TOUCHDOWN. Key blocks: C.McIntyre.,0,0,2012 -20121115_MIA@BUF,1,58,49,BUF,MIA,,,72,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,0,0,2012 -20121115_MIA@BUF,1,58,49,BUF,MIA,,,72,R.Lindell kicks 68 yards from BUF 35 to MIA -3. M.Thigpen to MIA 20 for 23 yards (A.Moats B.Smith). PENALTY on BUF-C.White Low Block 15 yards enforced at MIA 20.,7,0,2012 -20121115_MIA@BUF,1,58,23,MIA,BUF,1,10,65,(13:23) R.Bush right tackle to MIA 30 for -5 yards (M.Williams).,0,7,2012 -20121115_MIA@BUF,1,57,51,MIA,BUF,2,15,70,(12:51) R.Tannehill pass short middle to R.Bush to MIA 31 for 1 yard (G.Wilson). Screen pass caught at MIA 30.,0,7,2012 -20121115_MIA@BUF,1,57,9,MIA,BUF,3,14,69,(12:09) R.Tannehill up the middle to MIA 38 for 7 yards (N.Barnett).,0,7,2012 -20121115_MIA@BUF,1,56,31,MIA,BUF,4,7,62,(11:31) B.Fields punts 43 yards to BUF 19 Center-J.Denney. L.McKelvin to BUF 24 for 5 yards (K.Misi).,0,7,2012 -20121115_MIA@BUF,1,56,20,BUF,MIA,1,10,76,(11:20) C.Spiller up the middle to BUF 28 for 4 yards (J.Wilson).,7,0,2012 -20121115_MIA@BUF,1,55,42,BUF,MIA,2,6,72,(10:42) (Shotgun) C.Spiller up the middle to BUF 33 for 5 yards (K.Misi K.Dansby).,7,0,2012 -20121115_MIA@BUF,1,55,0,BUF,MIA,3,1,67,(10:00) Direct snap to T.Choice. T.Choice up the middle to BUF 33 for no gain (R.Jones C.Wake).,7,0,2012 -20121115_MIA@BUF,1,54,20,BUF,MIA,4,1,67,(9:20) S.Powell punts 56 yards to MIA 11 Center-G.Sanborn. M.Thigpen pushed ob at MIA 33 for 22 yards (B.Smith).,7,0,2012 -20121115_MIA@BUF,1,54,6,MIA,BUF,1,10,67,(9:06) R.Tannehill pass deep middle to B.Hartline to 50 for 17 yards (S.Gilmore). FUMBLES (S.Gilmore) RECOVERED by BUF-J.Byrd at BUF 48. J.Byrd to BUF 48 for no gain (B.Hartline). Play upheld but end of return changed to BUF 48 (originally credited to MIA 47). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,7,2012 -20121115_MIA@BUF,1,53,59,BUF,MIA,1,10,52,(8:59) C.Spiller up the middle to MIA 47 for 5 yards (O.Vernon R.Jones).,7,0,2012 -20121115_MIA@BUF,1,53,12,BUF,MIA,2,5,47,(8:12) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Thrown behind receiver aloing sideline at MIA 36.,7,0,2012 -20121115_MIA@BUF,1,53,9,BUF,MIA,3,5,47,(8:09) (Shotgun) PENALTY on BUF-C.Hairston False Start 5 yards enforced at MIA 47 - No Play.,7,0,2012 -20121115_MIA@BUF,1,53,9,BUF,MIA,3,10,52,(8:09) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to MIA 37 for 15 yards (C.Clemons). Caught at MIA 40 crossing from right.,7,0,2012 -20121115_MIA@BUF,1,52,25,BUF,MIA,1,10,37,(7:25) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to MIA 21 for 16 yards (S.Smith). Caught in flat at MIA 27.,7,0,2012 -20121115_MIA@BUF,1,51,45,BUF,MIA,1,10,21,(6:45) C.Spiller right tackle to MIA 20 for 1 yard (R.Jones).,7,0,2012 -20121115_MIA@BUF,1,51,0,BUF,MIA,2,9,20,(6:00) (Shotgun) C.Spiller left guard to MIA 14 for 6 yards (C.Clemons K.Burnett).,7,0,2012 -20121115_MIA@BUF,1,50,16,BUF,MIA,3,3,14,(5:16) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Jones. Overthrown receiver in front corner of end zone.,7,0,2012 -20121115_MIA@BUF,1,50,16,BUF,MIA,4,3,14,(5:16) R.Lindell 32 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,7,0,2012 -20121115_MIA@BUF,1,50,16,BUF,MIA,,,14,R.Lindell kicks 61 yards from BUF 35 to MIA 4. M.Thigpen for 96 yards TOUCHDOWN.,10,0,2012 -20121115_MIA@BUF,1,50,16,MIA,BUF,,,14,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,10,2012 -20121115_MIA@BUF,1,50,16,MIA,BUF,,,14,D.Carpenter kicks 66 yards from MIA 35 to BUF -1. L.McKelvin to BUF 24 for 25 yards (J.Trusnik J.Freeny).,7,10,2012 -20121115_MIA@BUF,1,49,48,BUF,MIA,1,10,76,(4:48) (Shotgun) C.Spiller right guard to BUF 27 for 3 yards (D.Shelby).,10,7,2012 -20121115_MIA@BUF,1,49,8,BUF,MIA,2,7,73,(4:08) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at MIA 49 for 24 yards (R.Jones). Screen pass caught at BUF 20.,10,7,2012 -20121115_MIA@BUF,1,48,33,BUF,MIA,1,10,49,(3:33) T.Choice up the middle to MIA 47 for 2 yards (K.Dansby R.Starks).,10,7,2012 -20121115_MIA@BUF,1,47,54,BUF,MIA,2,8,47,(2:54) R.Fitzpatrick pass short right to S.Chandler to MIA 25 for 22 yards (S.Smith). FUMBLES (S.Smith) and recovers at MIA 25. Caught in flat at MIA 41.,10,7,2012 -20121115_MIA@BUF,1,47,3,BUF,MIA,1,10,25,(2:03) (Shotgun) R.Fitzpatrick pass short right to T.Graham to MIA 23 for 2 yards (R.Jones; N.Carroll). Slant pattern caught at MIA 25.,10,7,2012 -20121115_MIA@BUF,1,46,23,BUF,MIA,2,8,23,(1:23) C.Spiller right tackle pushed ob at MIA 16 for 7 yards (S.Smith).,10,7,2012 -20121115_MIA@BUF,1,45,47,BUF,MIA,3,1,16,(:47) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler (K.Dansby). Receiver underthrown at MIA 12 nearly intercepted.,10,7,2012 -20121115_MIA@BUF,1,45,43,BUF,MIA,4,1,16,(:43) R.Lindell 34 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,10,7,2012 -20121115_MIA@BUF,1,45,43,BUF,MIA,,,16,R.Lindell kicks 66 yards from BUF 35 to MIA -1. M.Thigpen to MIA 27 for 28 yards (G.Wilson).,13,7,2012 -20121115_MIA@BUF,1,45,33,MIA,BUF,1,10,73,(:33) D.Thomas up the middle to MIA 30 for 3 yards (D.Searcy N.Bradham).,7,13,2012 -20121115_MIA@BUF,2,45,0,MIA,BUF,2,7,70,(15:00) D.Thomas left guard to MIA 34 for 4 yards (K.Sheppard D.Searcy).,7,13,2012 -20121115_MIA@BUF,2,44,27,MIA,BUF,3,3,66,(14:27) (No Huddle Shotgun) PENALTY on BUF-M.Dareus Defensive Offside 5 yards enforced at MIA 34 - No Play.,7,13,2012 -20121115_MIA@BUF,2,44,14,MIA,BUF,1,10,61,(14:14) D.Thomas left guard to MIA 40 for 1 yard (M.Dareus).,7,13,2012 -20121115_MIA@BUF,2,43,39,MIA,BUF,2,9,60,(13:39) (No Huddle Shotgun) R.Tannehill pass short left to D.Bess to MIA 45 for 5 yards (J.Byrd). Caught at MIA 45 crossing from middle.,7,13,2012 -20121115_MIA@BUF,2,43,6,MIA,BUF,3,4,55,(13:06) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Underthrown receiver at 50 crossing to middle.,7,13,2012 -20121115_MIA@BUF,2,43,2,MIA,BUF,4,4,55,(13:02) B.Fields punts 43 yards to BUF 12 Center-J.Denney fair catch by L.McKelvin.,7,13,2012 -20121115_MIA@BUF,2,42,54,BUF,MIA,1,10,88,(12:54) C.Spiller right guard to BUF 17 for 5 yards (C.Wake; K.Dansby).,13,7,2012 -20121115_MIA@BUF,2,42,14,BUF,MIA,2,5,83,(12:14) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson. Underthrown receiver in flat at BUF 21.,13,7,2012 -20121115_MIA@BUF,2,42,10,BUF,MIA,3,5,83,(12:10) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham. Overthrown receiver along sideline at BUF 48. PENALTY on MIA-N.Carroll Defensive Pass Interference 31 yards enforced at BUF 17 - No Play.,13,7,2012 -20121115_MIA@BUF,2,42,4,BUF,MIA,1,10,52,(12:04) R.Fitzpatrick pass incomplete short left to C.Spiller. Screen pass overthrown receiver at BUF 43.,13,7,2012 -20121115_MIA@BUF,2,42,0,BUF,MIA,2,10,52,(12:00) (Shotgun) R.Fitzpatrick scrambles up the middle to MIA 39 for 13 yards (R.Jones).,13,7,2012 -20121115_MIA@BUF,2,41,11,BUF,MIA,1,10,39,(11:11) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Jones. Overthrown receiver along sideline at MIA 25. PENALTY on MIA-N.Carroll Defensive Pass Interference 15 yards enforced at MIA 39 - No Play.,13,7,2012 -20121115_MIA@BUF,2,41,8,BUF,MIA,1,10,24,(11:08) C.Spiller right tackle to MIA 20 for 4 yards (K.Burnett C.Clemons).,13,7,2012 -20121115_MIA@BUF,2,40,24,BUF,MIA,2,6,20,(10:24) T.Choice up the middle to MIA 17 for 3 yards (K.Burnett).,13,7,2012 -20121115_MIA@BUF,2,39,42,BUF,MIA,3,3,17,(9:42) (Shotgun) R.Fitzpatrick sacked at MIA 19 for -2 yards (K.Misi).,13,7,2012 -20121115_MIA@BUF,2,39,8,BUF,MIA,4,5,19,(9:08) (Field Goal formation) PENALTY on BUF-K.Urbik False Start 5 yards enforced at MIA 19 - No Play.,13,7,2012 -20121115_MIA@BUF,2,39,0,BUF,MIA,4,10,24,(9:00) R.Lindell 42 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,13,7,2012 -20121115_MIA@BUF,2,39,0,BUF,MIA,,,24,R.Lindell kicks 55 yards from BUF 35 to MIA 10. M.Thigpen to MIA 23 for 13 yards (C.White).,16,7,2012 -20121115_MIA@BUF,2,38,52,MIA,BUF,1,10,77,(8:52) R.Tannehill pass incomplete deep left to B.Hartline (J.Byrd). Receiver and coverage along sideline at BUF 45.,7,16,2012 -20121115_MIA@BUF,2,38,45,MIA,BUF,2,10,77,(8:45) (No Huddle Shotgun) R.Tannehill pass short right to R.Bush ran ob at MIA 37 for 14 yards. Swing pass caught at MIA 19.,7,16,2012 -20121115_MIA@BUF,2,38,3,MIA,BUF,1,10,63,(8:03) R.Bush left tackle to MIA 36 for -1 yards (N.Bradham).,7,16,2012 -20121115_MIA@BUF,2,37,22,MIA,BUF,2,11,64,(7:22) PENALTY on BUF-S.Merriman Neutral Zone Infraction 5 yards enforced at MIA 36 - No Play.,7,16,2012 -20121115_MIA@BUF,2,36,57,MIA,BUF,2,6,59,(6:57) R.Tannehill pass incomplete short middle to R.Matthews (A.Carrington). Pass tipped at line. QB pressure: K.Moore.,7,16,2012 -20121115_MIA@BUF,2,36,53,MIA,BUF,3,6,59,(6:53) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 43 for 2 yards (J.Byrd). Caught at MIA 44 crossing from right.,7,16,2012 -20121115_MIA@BUF,2,36,16,MIA,BUF,4,4,57,(6:16) B.Fields punts 41 yards to BUF 16 Center-J.Denney fair catch by L.McKelvin.,7,16,2012 -20121115_MIA@BUF,2,36,8,BUF,MIA,1,10,84,(6:08) (Shotgun) C.Spiller up the middle pushed ob at BUF 20 for 4 yards (S.Smith).,16,7,2012 -20121115_MIA@BUF,2,35,34,BUF,MIA,2,6,80,(5:34) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 32 for 12 yards (R.Jones K.Burnett). Swing pass caught at BUF 22.,16,7,2012 -20121115_MIA@BUF,2,34,48,BUF,MIA,1,10,68,(4:48) R.Fitzpatrick pass incomplete deep right to D.Jones. Overthrown receiver along sideline at MIA 38. PENALTY on MIA-N.Carroll Illegal Contact 5 yards enforced at BUF 32 - No Play.,16,7,2012 -20121115_MIA@BUF,2,34,41,BUF,MIA,1,10,63,(4:41) C.Spiller up the middle to BUF 33 for -4 yards (J.Wilson).,16,7,2012 -20121115_MIA@BUF,2,33,57,BUF,MIA,2,14,67,(3:57) R.Fitzpatrick pass short middle to S.Chandler to BUF 41 for 8 yards (R.Jones). Caught at BUF 40.,16,7,2012 -20121115_MIA@BUF,2,33,12,BUF,MIA,3,6,59,(3:12) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Choice. Overthrown receiver at BUF 45.,16,7,2012 -20121115_MIA@BUF,2,33,8,BUF,MIA,4,6,59,(3:08) S.Powell punts 52 yards to MIA 7 Center-G.Sanborn. D.Bess ran ob at MIA 7 for no gain.,16,7,2012 -20121115_MIA@BUF,2,33,0,MIA,BUF,1,10,93,(3:00) R.Bush up the middle to MIA 8 for 1 yard (K.Sheppard N.Barnett).,7,16,2012 -20121115_MIA@BUF,2,32,23,MIA,BUF,2,9,92,(2:23) R.Tannehill pass incomplete short left to D.Bess [K.Moore]. Overthrown receiver along sideline at MIA 20.,7,16,2012 -20121115_MIA@BUF,2,32,18,MIA,BUF,3,9,92,(2:18) R.Tannehill sacked at MIA 2 for -6 yards (M.Williams).,7,16,2012 -20121115_MIA@BUF,2,32,13,MIA,BUF,4,15,98,(2:13) B.Fields punts 65 yards to BUF 33 Center-J.Denney. L.McKelvin to BUF 47 for 14 yards (J.Freeny; K.Misi).,7,16,2012 -20121115_MIA@BUF,2,31,58,BUF,MIA,1,10,53,(1:58) R.Fitzpatrick pass short right to C.Spiller pushed ob at MIA 40 for 13 yards (K.Dansby). Screen pass caught at BUF 44.,16,7,2012 -20121115_MIA@BUF,2,31,50,BUF,MIA,1,10,40,(1:50) (Shotgun) C.Spiller up the middle to MIA 20 for 20 yards (K.Burnett J.Odrick).,16,7,2012 -20121115_MIA@BUF,2,31,9,BUF,MIA,1,10,20,(1:09) (Shotgun) T.Choice up the middle to MIA 16 for 4 yards (K.Dansby J.Odrick).,16,7,2012 -20121115_MIA@BUF,2,30,33,BUF,MIA,2,6,16,(:33) (Shotgun) R.Fitzpatrick sacked at MIA 18 for -2 yards (R.Starks).,16,7,2012 -20121115_MIA@BUF,2,30,26,BUF,MIA,3,8,18,(:26) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to MIA 4 for 14 yards (S.Smith). Caught in coverage near sideline at MIA 4.,16,7,2012 -20121115_MIA@BUF,2,30,15,BUF,MIA,1,4,4,(:15) R.Fitzpatrick pass incomplete short middle to D.Jones (C.Clemons). Off receiver's hands at goal line nearly intercepted 3 yds. deep.,16,7,2012 -20121115_MIA@BUF,2,30,9,BUF,MIA,2,4,4,(:09) R.Fitzpatrick pass incomplete short right to St.Johnson. Overthrown receiver in rear corner of end zone. PENALTY on MIA-S.Smith Defensive Pass Interference 3 yards enforced at MIA 4 - No Play.,16,7,2012 -20121115_MIA@BUF,2,30,6,BUF,MIA,1,1,1,(:06) R.Fitzpatrick pass incomplete short left to S.Chandler (R.Jones). Receiver and coverage at goal line crossing to middle.,16,7,2012 -20121115_MIA@BUF,2,30,3,BUF,MIA,2,1,1,(:03) R.Lindell 19 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,16,7,2012 -20121115_MIA@BUF,3,30,0,MIA,BUF,,,1,D.Carpenter kicks 69 yards from MIA 35 to BUF -4. L.McKelvin to BUF 21 for 25 yards (A.Spitler).,7,19,2012 -20121115_MIA@BUF,3,29,55,BUF,MIA,1,10,79,(14:55) (Shotgun) C.Spiller left tackle to BUF 28 for 7 yards (N.Carroll).,19,7,2012 -20121115_MIA@BUF,3,29,14,BUF,MIA,2,3,72,(14:14) C.Spiller up the middle to BUF 37 for 9 yards (R.Jones C.Clemons).,19,7,2012 -20121115_MIA@BUF,3,28,32,BUF,MIA,1,10,63,(13:32) (Shotgun) T.Choice right tackle to BUF 39 for 2 yards (R.Jones C.Clemons).,19,7,2012 -20121115_MIA@BUF,3,27,53,BUF,MIA,2,8,61,(12:53) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 47 for 8 yards (C.Clemons; K.Burnett). Screen pass caught at BUF 40.,19,7,2012 -20121115_MIA@BUF,3,27,6,BUF,MIA,1,10,53,(12:06) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to MIA 44 for 9 yards (S.Smith). Caught near sideline at MIA 44.,19,7,2012 -20121115_MIA@BUF,3,26,22,BUF,MIA,2,1,44,(11:22) C.Spiller right guard to MIA 39 for 5 yards (J.Wilson).,19,7,2012 -20121115_MIA@BUF,3,25,39,BUF,MIA,1,10,39,(10:39) (Shotgun) T.Choice left guard to MIA 36 for 3 yards (O.Vernon K.Burnett).,19,7,2012 -20121115_MIA@BUF,3,24,55,BUF,MIA,2,7,36,(9:55) (Shotgun) R.Fitzpatrick pass short middle to T.Choice to MIA 36 for no gain (R.Jones). Center screen caught at MIA 39.,19,7,2012 -20121115_MIA@BUF,3,24,8,BUF,MIA,3,7,36,(9:08) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Overthrown receiver near sideline at MIA 30.,19,7,2012 -20121115_MIA@BUF,3,24,3,BUF,MIA,4,7,36,(9:03) S.Powell punts 24 yards to MIA 12 Center-G.Sanborn fair catch by D.Bess.,19,7,2012 -20121115_MIA@BUF,3,23,56,MIA,BUF,1,10,88,(8:56) PENALTY on BUF-K.Williams Encroachment 5 yards enforced at MIA 12 - No Play.,7,19,2012 -20121115_MIA@BUF,3,23,55,MIA,BUF,1,5,83,(8:55) R.Bush up the middle to MIA 21 for 4 yards (G.Wilson N.Barnett).,7,19,2012 -20121115_MIA@BUF,3,23,23,MIA,BUF,2,1,79,(8:23) R.Bush up the middle to MIA 24 for 3 yards (G.Wilson M.Dareus).,7,19,2012 -20121115_MIA@BUF,3,22,46,MIA,BUF,1,10,76,(7:46) R.Tannehill pass incomplete deep left to D.Bess. Overthrown receiver along sideline at BUF 40.,7,19,2012 -20121115_MIA@BUF,3,22,40,MIA,BUF,2,10,76,(7:40) R.Bush up the middle to MIA 20 for -4 yards (K.Williams).,7,19,2012 -20121115_MIA@BUF,3,21,58,MIA,BUF,3,14,80,(6:58) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush. Screen pass dropped at MIA 19.,7,19,2012 -20121115_MIA@BUF,3,21,54,MIA,BUF,4,14,80,(6:54) B.Fields punts 56 yards to BUF 24 Center-J.Denney out of bounds.,7,19,2012 -20121115_MIA@BUF,3,21,46,BUF,MIA,1,10,76,(6:46) (Shotgun) R.Fitzpatrick scrambles left guard to BUF 27 for 3 yards (P.Soliai). MIA-J.Wilson was injured during the play. J.Wilson walks off.,19,7,2012 -20121115_MIA@BUF,3,21,17,BUF,MIA,2,7,73,(6:17) (Shotgun) C.Spiller right guard pushed ob at BUF 25 for -2 yards (R.Stanford).,19,7,2012 -20121115_MIA@BUF,3,20,37,BUF,MIA,3,9,75,(5:37) (Shotgun) R.Fitzpatrick sacked at BUF 22 for -3 yards (C.Wake).,19,7,2012 -20121115_MIA@BUF,3,20,8,BUF,MIA,4,12,78,(5:08) S.Powell punts 42 yards to MIA 36 Center-G.Sanborn out of bounds.,19,7,2012 -20121115_MIA@BUF,3,20,1,MIA,BUF,1,10,64,(5:01) (Shotgun) D.Thomas left guard to MIA 35 for -1 yards (S.Merriman).,7,19,2012 -20121115_MIA@BUF,3,19,27,MIA,BUF,2,11,65,(4:27) R.Tannehill pass short middle to B.Hartline to 50 for 15 yards (J.Rogers). Caught at MIA 49 crossing from right.,7,19,2012 -20121115_MIA@BUF,3,18,53,MIA,BUF,1,10,50,(3:53) D.Thomas up the middle to BUF 45 for 5 yards (A.Carrington G.Wilson).,7,19,2012 -20121115_MIA@BUF,3,18,25,MIA,BUF,2,5,45,(3:25) R.Tannehill pass incomplete deep right to B.Hartline. Thrown wide of receiver along sideline at BUF 15.,7,19,2012 -20121115_MIA@BUF,3,18,25,MIA,BUF,3,5,45,(3:25) (Shotgun) PENALTY on BUF-M.Williams Neutral Zone Infraction 5 yards enforced at BUF 45 - No Play.,7,19,2012 -20121115_MIA@BUF,3,18,21,MIA,BUF,1,10,40,(3:21) D.Thomas right tackle to BUF 40 for no gain (K.Sheppard; J.Byrd).,7,19,2012 -20121115_MIA@BUF,3,17,46,MIA,BUF,2,10,40,(2:46) (Shotgun) R.Tannehill pass incomplete deep middle to C.Clay. Thrown wide of receiver at BUF 23 crossing from right.,7,19,2012 -20121115_MIA@BUF,3,17,42,MIA,BUF,3,10,40,(2:42) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline. Overthrown receiver at BUF 19. PENALTY on BUF-S.Gilmore Illegal Contact 5 yards enforced at BUF 40 - No Play.,7,19,2012 -20121115_MIA@BUF,3,17,35,MIA,BUF,1,10,35,(2:35) (Shotgun) R.Tannehill pass incomplete short middle to C.Clay [M.Dareus]. Underthrown QB under pressure.,7,19,2012 -20121115_MIA@BUF,3,17,30,MIA,BUF,2,10,35,(2:30) D.Thomas up the middle to BUF 32 for 3 yards (M.Dareus Sp.Johnson).,7,19,2012 -20121115_MIA@BUF,3,16,52,MIA,BUF,3,7,32,(1:52) (Shotgun) R.Tannehill pass incomplete short left to M.Moore. Thrown wide of receiver near sideline at BUF 20.,7,19,2012 -20121115_MIA@BUF,3,16,47,MIA,BUF,4,7,32,(1:47) D.Carpenter 50 yard field goal is No Good Hit Right Upright Center-J.Denney Holder-B.Fields.,7,19,2012 -20121115_MIA@BUF,3,16,43,BUF,MIA,1,10,60,(1:43) R.Fitzpatrick pass short left to D.Dickerson to BUF 44 for 4 yards (D.Shelby; C.Clemons). Screen caught at BUF 35.,19,7,2012 -20121115_MIA@BUF,3,15,56,BUF,MIA,2,6,56,(:56) (Shotgun) C.Spiller right end pushed ob at BUF 49 for 5 yards (K.Dansby). PENALTY on BUF-T.Graham Offensive Holding 10 yards enforced at BUF 44 - No Play.,19,7,2012 -20121115_MIA@BUF,3,15,22,BUF,MIA,2,16,66,(:22) (Shotgun) R.Fitzpatrick pass short middle to T.Graham to BUF 37 for 3 yards (R.Stanford). Caught at BUF 36 slanting from right.,19,7,2012 -20121115_MIA@BUF,4,15,0,BUF,MIA,3,13,63,(15:00) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 40 for 3 yards (R.Jones). FUMBLES (R.Jones) recovered by BUF-E.Wood at BUF 40. E.Wood to BUF 40 for no gain (J.Wilson).,19,7,2012 -20121115_MIA@BUF,4,14,21,BUF,MIA,4,10,60,(14:21) S.Powell punts 50 yards to MIA 10 Center-G.Sanborn. M.Thigpen pushed ob at MIA 19 for 9 yards (B.Scott).,19,7,2012 -20121115_MIA@BUF,4,14,4,MIA,BUF,1,10,81,(14:04) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (M.Dareus). Pass tipped at line receiver at MIA 30.,7,19,2012 -20121115_MIA@BUF,4,14,0,MIA,BUF,2,10,81,(14:00) (Shotgun) R.Bush up the middle to MIA 27 for 8 yards (N.Barnett J.Byrd).,7,19,2012 -20121115_MIA@BUF,4,13,24,MIA,BUF,3,2,73,(13:24) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 36 for 9 yards (D.Searcy). Caught at MIA 36 crossing from right.,7,19,2012 -20121115_MIA@BUF,4,12,54,MIA,BUF,1,10,64,(12:54) (No Huddle Shotgun) R.Tannehill pass incomplete deep left to R.Matthews. Overthrown receiver near sideline at BUF 34. PENALTY on BUF-L.McKelvin Defensive Pass Interference 30 yards enforced at MIA 36 - No Play.,7,19,2012 -20121115_MIA@BUF,4,12,48,MIA,BUF,1,10,34,(12:48) (Shotgun) R.Bush up the middle to BUF 23 for 11 yards (B.Scott).,7,19,2012 -20121115_MIA@BUF,4,12,15,MIA,BUF,1,10,23,(12:15) R.Bush right guard to BUF 22 for 1 yard (K.Moore B.Scott).,7,19,2012 -20121115_MIA@BUF,4,11,36,MIA,BUF,2,9,22,(11:36) (Shotgun) R.Tannehill pass short left to D.Bess pushed ob at BUF 8 for 14 yards (J.Rogers). Caught near sideline at BUF 11.,7,19,2012 -20121115_MIA@BUF,4,11,9,MIA,BUF,1,8,8,(11:09) D.Thomas left guard to BUF 6 for 2 yards (N.Bradham K.Sheppard).,7,19,2012 -20121115_MIA@BUF,4,10,34,MIA,BUF,2,6,6,(10:34) (Shotgun) R.Tannehill sacked at BUF 16 for -10 yards (K.Moore). PENALTY on BUF-K.Moore Face Mask (15 Yards) 10 yards enforced at BUF 16.,7,19,2012 -20121115_MIA@BUF,4,10,14,MIA,BUF,1,6,6,(10:14) D.Thomas up the middle to BUF 7 for -1 yards (J.Rogers).,7,19,2012 -20121115_MIA@BUF,4,9,34,MIA,BUF,2,7,7,(9:34) D.Thomas up the middle to BUF 2 for 5 yards (D.Searcy M.Williams).,7,19,2012 -20121115_MIA@BUF,4,8,48,MIA,BUF,3,2,2,(8:48) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Caught out of bounds in front corner of end zone. Miami challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) R.Tannehill pass short right to D.Bess for 2 yards TOUCHDOWN. Caught in front corner of end zone.,7,19,2012 -20121115_MIA@BUF,4,8,48,MIA,BUF,,,2,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,7,19,2012 -20121115_MIA@BUF,4,8,48,MIA,BUF,,,2,D.Carpenter kicks 67 yards from MIA 35 to BUF -2. L.McKelvin to BUF 23 for 25 yards (R.Stanford).,14,19,2012 -20121115_MIA@BUF,4,8,36,BUF,MIA,1,10,77,(8:36) (Shotgun) C.Spiller right guard to BUF 28 for 5 yards (C.Wake).,19,14,2012 -20121115_MIA@BUF,4,7,51,BUF,MIA,2,5,72,(7:51) (Shotgun) R.Fitzpatrick pass short right to St.Johnson pushed ob at BUF 41 for 13 yards (R.Stanford). Caught along sideline at BUF 36.,19,14,2012 -20121115_MIA@BUF,4,7,16,BUF,MIA,1,10,59,(7:16) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones [C.Wake]. Underthrown receiver at MIA 45. Thrown under pressure.,19,14,2012 -20121115_MIA@BUF,4,7,12,BUF,MIA,2,10,59,(7:12) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller. Underthrown receiver at BUF 39. PENALTY on MIA-N.Carroll Defensive Holding 5 yards enforced at BUF 41 - No Play.,19,14,2012 -20121115_MIA@BUF,4,7,7,BUF,MIA,1,10,54,(7:07) (Shotgun) C.Spiller right tackle to BUF 42 for -4 yards (J.Odrick R.Jones).,19,14,2012 -20121115_MIA@BUF,4,6,20,BUF,MIA,2,14,58,(6:20) (Shotgun) C.Spiller right guard to BUF 45 for 3 yards (K.Burnett K.Dansby).,19,14,2012 -20121115_MIA@BUF,4,5,35,BUF,MIA,3,11,55,(5:35) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 47 for 2 yards (R.Jones O.Vernon). Out-pattern caught at BUF 47.,19,14,2012 -20121115_MIA@BUF,4,4,51,BUF,MIA,4,9,53,(4:51) S.Powell punts 52 yards to MIA 1 Center-G.Sanborn out of bounds.,19,14,2012 -20121115_MIA@BUF,4,4,42,MIA,BUF,1,10,99,(4:42) J.Lane up the middle to MIA 1 for no gain (G.Wilson K.Sheppard).,14,19,2012 -20121115_MIA@BUF,4,4,7,MIA,BUF,2,10,99,(4:07) D.Thomas up the middle to MIA 9 for 8 yards (K.Sheppard N.Barnett).,14,19,2012 -20121115_MIA@BUF,4,3,22,MIA,BUF,3,2,91,(3:22) (Shotgun) R.Tannehill pass short left to B.Hartline pushed ob at MIA 21 for 12 yards (S.Gilmore). Out-pattern caught at MIA 17.,14,19,2012 -20121115_MIA@BUF,4,3,14,MIA,BUF,1,10,79,(3:14) (Shotgun) D.Thomas up the middle to MIA 25 for 4 yards (M.Williams M.Dareus).,14,19,2012 -20121115_MIA@BUF,4,2,43,MIA,BUF,2,6,75,(2:43) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 33 for 8 yards (B.Scott). Caught at MIA 33 crossing from middle.,14,19,2012 -20121115_MIA@BUF,4,2,13,MIA,BUF,1,10,67,(2:13) (Shotgun) R.Tannehill sacked at MIA 32 for -1 yards (S.Merriman).,14,19,2012 -20121115_MIA@BUF,4,2,0,MIA,BUF,2,11,68,(2:00) (Shotgun) R.Tannehill pass deep left intended for D.Bess INTERCEPTED by J.Byrd at BUF 35. J.Byrd ran ob at BUF 35 for no gain. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,19,2012 -20121115_MIA@BUF,4,1,54,BUF,MIA,1,10,65,(1:54) C.Spiller left tackle to BUF 41 for 6 yards (C.Clemons).,19,14,2012 -20121115_MIA@BUF,4,1,45,BUF,MIA,2,4,59,(1:45) C.Spiller right guard to BUF 44 for 3 yards (C.Clemons K.Burnett).,19,14,2012 -20121115_MIA@BUF,4,1,39,BUF,MIA,3,1,56,(1:39) C.Spiller up the middle to BUF 43 for -1 yards (K.Dansby C.Wake).,19,14,2012 -20121115_MIA@BUF,4,1,34,BUF,MIA,4,2,57,(1:34) S.Powell punts 41 yards to MIA 16 Center-G.Sanborn downed by BUF-C.White. S.Powell ties club record with 5 punts inside-the-20.,19,14,2012 -20121115_MIA@BUF,4,1,24,MIA,BUF,1,10,84,(1:24) (Shotgun) R.Tannehill pass short middle to D.Bess pushed ob at MIA 34 for 18 yards (J.Rogers). Caught at MIA 21 crossing from left.,14,19,2012 -20121115_MIA@BUF,4,1,17,MIA,BUF,1,10,66,(1:17) (Shotgun) R.Tannehill pass short middle to R.Matthews to BUF 47 for 19 yards (L.McKelvin). Caught at MIA 49.,14,19,2012 -20121115_MIA@BUF,4,0,56,MIA,BUF,1,10,47,(:56) (No Huddle Shotgun) R.Tannehill pass deep right to B.Hartline ran ob at BUF 30 for 17 yards. PENALTY on MIA-B.Hartline Offensive Pass Interference 10 yards enforced at BUF 47 - No Play.,14,19,2012 -20121115_MIA@BUF,4,0,50,MIA,BUF,1,20,57,(:50) (Shotgun) R.Tannehill pass short middle intended for D.Bess INTERCEPTED by B.Scott at BUF 42. B.Scott to MIA 44 for 14 yards (J.Long).,14,19,2012 -20121115_MIA@BUF,4,0,41,BUF,MIA,1,10,44,(:41) R.Fitzpatrick kneels to MIA 45 for -1 yards.,19,14,2012 -20121115_MIA@BUF,4,0,41,BUF,MIA,,,44,                      ,19,14,2012 -20121118_ARI@ATL,1,0,0,ARI,ATL,,,44,J.Feely kicks 68 yards from ARZ 35 to ATL -3. Jz. Rodgers to ATL 27 for 30 yards (J.Bethel).,0,0,2012 -20121118_ARI@ATL,1,59,52,ATL,ARI,1,10,73,(14:52) (Shotgun) M.Ryan pass deep left intended for R.White INTERCEPTED by R.Johnson at ATL 43. R.Johnson to ATL 9 for 34 yards (S.Baker).,0,0,2012 -20121118_ARI@ATL,1,59,41,ARI,ATL,1,9,9,(14:41) L.Stephens-Howling right guard to ATL 3 for 6 yards (T.DeCoud).,0,0,2012 -20121118_ARI@ATL,1,58,59,ARI,ATL,2,3,3,(13:59) L.Stephens-Howling right tackle for 3 yards TOUCHDOWN.,0,0,2012 -20121118_ARI@ATL,1,58,59,ARI,ATL,,,3,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20121118_ARI@ATL,1,58,59,ARI,ATL,,,3,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,7,0,2012 -20121118_ARI@ATL,1,58,54,ATL,ARI,1,10,80,(13:54) M.Turner right end to ATL 20 for no gain (D.Dockett).,0,7,2012 -20121118_ARI@ATL,1,58,21,ATL,ARI,2,10,80,(13:21) (Shotgun) M.Ryan pass incomplete short right to M.Turner.,0,7,2012 -20121118_ARI@ATL,1,58,17,ATL,ARI,3,10,80,(13:17) (Shotgun) M.Ryan pass incomplete short middle to T.Gonzalez [J.Sanders].,0,7,2012 -20121118_ARI@ATL,1,58,12,ATL,ARI,4,10,80,(13:12) M.Bosher punts 47 yards to ARZ 33 Center-J.Harris. P.Peterson to ATL 45 for 22 yards (J.Harris). PENALTY on ARZ-R.Walker Illegal Block Above the Waist 10 yards enforced at ARZ 40.,0,7,2012 -20121118_ARI@ATL,1,57,59,ARI,ATL,1,10,70,(12:59) (Shotgun) L.Stephens-Howling right end pushed ob at ATL 30 for 40 yards (R.McClain).,7,0,2012 -20121118_ARI@ATL,1,57,29,ARI,ATL,1,10,30,(12:29) W.Powell right tackle to ATL 31 for -1 yards (A.Dent).,7,0,2012 -20121118_ARI@ATL,1,56,52,ARI,ATL,2,11,31,(11:52) J.Skelton pass short right to M.Floyd to ATL 30 for 1 yard (R.McClain).,7,0,2012 -20121118_ARI@ATL,1,56,8,ARI,ATL,3,10,30,(11:08) (Shotgun) J.Skelton pass incomplete short right to E.Doucet.,7,0,2012 -20121118_ARI@ATL,1,56,3,ARI,ATL,4,10,30,(11:03) J.Feely 48 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,7,0,2012 -20121118_ARI@ATL,1,56,3,ARI,ATL,,,30,J.Feely kicks 67 yards from ARZ 35 to ATL -2. Jz. Rodgers to ATL 21 for 23 yards (S.Bradley).,10,0,2012 -20121118_ARI@ATL,1,55,54,ATL,ARI,1,10,79,(10:54) M.Ryan pass short left to T.Gonzalez pushed ob at ATL 33 for 12 yards (W.Gay).,0,10,2012 -20121118_ARI@ATL,1,55,27,ATL,ARI,1,10,67,(10:27) M.Ryan pass short left to J.Jones to ATL 41 for 8 yards (W.Gay).,0,10,2012 -20121118_ARI@ATL,1,54,45,ATL,ARI,2,2,59,(9:45) M.Turner right end to ATL 41 for no gain (D.Washington).,0,10,2012 -20121118_ARI@ATL,1,54,3,ATL,ARI,3,2,59,(9:03) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to ATL 42 for 1 yard (P.Lenon). ARZ 79 D. Carter tipped pass.,0,10,2012 -20121118_ARI@ATL,1,53,21,ATL,ARI,4,1,58,(8:21) M.Bosher punts 53 yards to ARZ 5 Center-J.Harris downed by ATL-J.Snelling. PENALTY on ARZ-S.Bradley Offensive Holding 2 yards enforced at ARZ 5.,0,10,2012 -20121118_ARI@ATL,1,53,7,ARI,ATL,1,10,97,(8:07) L.Stephens-Howling right guard to ARZ 2 for -1 yards (S.Nicholas).,10,0,2012 -20121118_ARI@ATL,1,52,27,ARI,ATL,2,11,98,(7:27) L.Stephens-Howling left tackle to ARZ 3 for 1 yard (J.Babineaux).,10,0,2012 -20121118_ARI@ATL,1,51,43,ARI,ATL,3,10,97,(6:43) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,10,0,2012 -20121118_ARI@ATL,1,51,39,ARI,ATL,4,10,97,(6:39) D.Zastudil punts 60 yards to ATL 37 Center-M.Leach. D.Franks to ATL 48 for 11 yards (Q.Groves).,10,0,2012 -20121118_ARI@ATL,1,51,27,ATL,ARI,1,10,52,(6:27) M.Turner right tackle to 50 for 2 yards (P.Lenon; Q.Groves).,0,10,2012 -20121118_ARI@ATL,1,50,51,ATL,ARI,2,8,50,(5:51) M.Ryan sacked at ATL 45 for -5 yards (R.Talley).,0,10,2012 -20121118_ARI@ATL,1,50,18,ATL,ARI,3,13,55,(5:18) (Shotgun) M.Ryan pass deep right to R.White to ARZ 29 for 26 yards (W.Gay). FUMBLES (W.Gay) ball out of bounds at ARZ 29.,0,10,2012 -20121118_ARI@ATL,1,49,52,ATL,ARI,1,10,29,(4:52) M.Ryan pass incomplete deep left to R.White.,0,10,2012 -20121118_ARI@ATL,1,49,46,ATL,ARI,2,10,29,(4:46) (Shotgun) M.Ryan pass short right intended for J.Jones INTERCEPTED by W.Gay (D.Dockett) at ARZ 25. W.Gay to ARZ 26 for 1 yard (H.Douglas).,0,10,2012 -20121118_ARI@ATL,1,49,41,ARI,ATL,1,10,74,(4:41) J.Skelton pass incomplete short right to M.Floyd (A.Samuel).,10,0,2012 -20121118_ARI@ATL,1,49,35,ARI,ATL,2,10,74,(4:35) (Shotgun) L.Stephens-Howling right guard to ARZ 31 for 5 yards (K.Biermann).,10,0,2012 -20121118_ARI@ATL,1,48,55,ARI,ATL,3,5,69,(3:55) (Shotgun) J.Skelton pass incomplete short middle to L.Fitzgerald (A.Samuel).,10,0,2012 -20121118_ARI@ATL,1,48,51,ARI,ATL,4,5,69,(3:51) D.Zastudil punts 62 yards to ATL 7 Center-M.Leach downed by ARZ-M.Adams.,10,0,2012 -20121118_ARI@ATL,1,48,34,ATL,ARI,1,10,93,(3:34) M.Turner right end to ATL 11 for 4 yards (P.Peterson).,0,10,2012 -20121118_ARI@ATL,1,47,51,ATL,ARI,2,6,89,(2:51) M.Ryan pass incomplete deep right to T.Gonzalez.,0,10,2012 -20121118_ARI@ATL,1,47,46,ATL,ARI,3,6,89,(2:46) (Shotgun) M.Ryan pass short right intended for T.Gonzalez INTERCEPTED by K.Rhodes [D.Dockett] at ATL 20. K.Rhodes to ATL 18 for 2 yards (T.Gonzalez).,0,10,2012 -20121118_ARI@ATL,1,47,40,ARI,ATL,1,10,18,(2:40) J.Skelton pass incomplete deep right to L.Fitzgerald.,10,0,2012 -20121118_ARI@ATL,1,47,34,ARI,ATL,2,10,18,(2:34) L.Stephens-Howling left guard to ATL 14 for 4 yards (W.Moore).,10,0,2012 -20121118_ARI@ATL,1,46,58,ARI,ATL,3,6,14,(1:58) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to ATL 9 for 5 yards (V.Walker).,10,0,2012 -20121118_ARI@ATL,1,46,6,ARI,ATL,4,1,9,(1:06) J.Feely 28 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,10,0,2012 -20121118_ARI@ATL,1,46,6,ARI,ATL,,,9,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,13,0,2012 -20121118_ARI@ATL,1,46,2,ATL,ARI,1,10,80,(1:02) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to ATL 25 for 5 yards (D.Washington).,0,13,2012 -20121118_ARI@ATL,1,45,30,ATL,ARI,2,5,75,(:30) Jz. Rodgers left end to ATL 26 for 1 yard (D.Washington; W.Gay). PENALTY on ATL-H.Douglas Illegal Motion 5 yards enforced at ATL 25 - No Play.,0,13,2012 -20121118_ARI@ATL,1,45,14,ATL,ARI,2,10,80,(:14) Jz. Rodgers left guard to ATL 24 for 4 yards (D.Washington).,0,13,2012 -20121118_ARI@ATL,2,45,0,ATL,ARI,3,6,76,(15:00) (Shotgun) M.Ryan pass short right to R.White to ATL 33 for 9 yards (P.Peterson).,0,13,2012 -20121118_ARI@ATL,2,44,26,ATL,ARI,1,10,67,(14:26) Jz. Rodgers right tackle to ATL 35 for 2 yards (D.Williams).,0,13,2012 -20121118_ARI@ATL,2,43,51,ATL,ARI,2,8,65,(13:51) (Shotgun) M.Ryan pass incomplete deep right to J.Jones.,0,13,2012 -20121118_ARI@ATL,2,43,46,ATL,ARI,3,8,65,(13:46) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 47 for 12 yards (D.Washington).,0,13,2012 -20121118_ARI@ATL,2,43,11,ATL,ARI,1,10,53,(13:11) M.Ryan pass short left to Jz. Rodgers to 50 for 3 yards (S.Acho).,0,13,2012 -20121118_ARI@ATL,2,42,27,ATL,ARI,2,7,50,(12:27) M.Ryan pass incomplete short left to T.Gonzalez.,0,13,2012 -20121118_ARI@ATL,2,42,22,ATL,ARI,3,7,50,(12:22) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to ARZ 41 for 9 yards (S.Acho).,0,13,2012 -20121118_ARI@ATL,2,41,39,ATL,ARI,1,10,41,(11:39) M.Turner left tackle to ARZ 35 for 6 yards (R.Talley; V.Holliday).,0,13,2012 -20121118_ARI@ATL,2,41,6,ATL,ARI,2,4,35,(11:06) M.Turner right tackle to ARZ 32 for 3 yards (R.Walker).,0,13,2012 -20121118_ARI@ATL,2,40,23,ATL,ARI,3,1,32,(10:23) J.Snelling right guard to ARZ 33 for -1 yards (D.Washington).,0,13,2012 -20121118_ARI@ATL,2,39,44,ATL,ARI,4,2,33,(9:44) M.Bryant 51 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,0,13,2012 -20121118_ARI@ATL,2,39,44,ATL,ARI,,,33,M.Bryant kicks 69 yards from ATL 35 to ARZ -4. W.Powell to ARZ 14 for 18 yards (R.James).,3,13,2012 -20121118_ARI@ATL,2,39,32,ARI,ATL,1,10,86,(9:32) R.Lindley pass incomplete deep middle to A.Roberts.,13,3,2012 -20121118_ARI@ATL,2,39,21,ARI,ATL,2,10,86,(9:21) (Shotgun) L.Stephens-Howling left guard to ARZ 21 for 7 yards (W.Moore).,13,3,2012 -20121118_ARI@ATL,2,38,46,ARI,ATL,3,3,79,(8:46) (Shotgun) R.Lindley sacked at ARZ 14 for -7 yards (J.Abraham). FUMBLES (J.Abraham) [J.Abraham] RECOVERED by ATL-J.Babineaux at ARZ 15. J.Babineaux for 15 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was Upheld.,13,3,2012 -20121118_ARI@ATL,2,38,46,ATL,ARI,,,79,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,3,13,2012 -20121118_ARI@ATL,2,38,46,ATL,ARI,,,79,M.Bryant kicks 65 yards from ATL 35 to ARZ 0. W.Powell pushed ob at ATL 35 for 65 yards (R.McClain).,10,13,2012 -20121118_ARI@ATL,2,38,27,ARI,ATL,1,10,35,(8:27) L.Stephens-Howling up the middle to ATL 39 for -4 yards (W.Moore).,13,10,2012 -20121118_ARI@ATL,2,37,44,ARI,ATL,2,14,39,(7:44) (Shotgun) R.Lindley pass short right to L.Stephens-Howling to ATL 38 for 1 yard (R.McClain).,13,10,2012 -20121118_ARI@ATL,2,37,2,ARI,ATL,3,13,38,(7:02) (Shotgun) R.Lindley pass incomplete short left to M.Floyd.,13,10,2012 -20121118_ARI@ATL,2,36,56,ARI,ATL,4,13,38,(6:56) D.Zastudil punts 29 yards to ATL 9 Center-M.Leach fair catch by D.Franks.,13,10,2012 -20121118_ARI@ATL,2,36,48,ATL,ARI,1,10,91,(6:48) (Shotgun) M.Ryan pass deep left to R.White to ATL 46 for 37 yards (G.Toler).,10,13,2012 -20121118_ARI@ATL,2,36,4,ATL,ARI,1,10,54,(6:04) M.Ryan pass short right to J.Snelling to ARZ 49 for 5 yards (Q.Groves).,10,13,2012 -20121118_ARI@ATL,2,35,22,ATL,ARI,2,5,49,(5:22) M.Turner right tackle to ARZ 39 for 10 yards (P.Lenon).,10,13,2012 -20121118_ARI@ATL,2,34,39,ATL,ARI,1,10,39,(4:39) M.Ryan pass short right to R.White to ARZ 20 for 19 yards (A.Wilson).,10,13,2012 -20121118_ARI@ATL,2,33,55,ATL,ARI,1,10,20,(3:55) M.Ryan pass short left to R.White pushed ob at ARZ 13 for 7 yards (K.Rhodes).,10,13,2012 -20121118_ARI@ATL,2,33,26,ATL,ARI,2,3,13,(3:26) M.Johnson reported in as eligible. M.Turner right tackle to ARZ 10 for 3 yards (D.Washington).,10,13,2012 -20121118_ARI@ATL,2,32,48,ATL,ARI,1,10,10,(2:48) Jz. Rodgers right end to ARZ 10 for no gain (Q.Groves). ATL-T.McClure was injured during the play. His return is Probable.,10,13,2012 -20121118_ARI@ATL,2,32,16,ATL,ARI,2,10,10,(2:16) (Shotgun) M.Ryan pass short right to H.Douglas to ARZ 10 for no gain (D.Dockett).,10,13,2012 -20121118_ARI@ATL,2,32,0,ATL,ARI,3,10,10,(2:00) (Shotgun) M.Ryan pass incomplete short left to R.White (G.Toler) [S.Acho].,10,13,2012 -20121118_ARI@ATL,2,31,56,ATL,ARI,4,10,10,(1:56) M.Bryant 28 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,10,13,2012 -20121118_ARI@ATL,2,31,56,ATL,ARI,,,10,M.Bryant kicks 69 yards from ATL 35 to ARZ -4. W.Powell to ARZ 23 for 27 yards (R.James). PENALTY on ARZ-S.Acho Offensive Holding 6 yards enforced at ARZ 12.,13,13,2012 -20121118_ARI@ATL,2,31,45,ARI,ATL,1,10,94,(1:45) L.Stephens-Howling right guard to ATL 42 for 52 yards (M.Peterson).,13,13,2012 -20121118_ARI@ATL,2,31,24,ARI,ATL,1,10,42,(1:24) (Shotgun) R.Lindley pass short left to M.Floyd to ATL 25 for 17 yards (W.Moore).,13,13,2012 -20121118_ARI@ATL,2,30,57,ARI,ATL,1,10,25,(:57) (Shotgun) R.Lindley pass incomplete short left to L.Fitzgerald (R.McClain).,13,13,2012 -20121118_ARI@ATL,2,30,52,ARI,ATL,2,10,25,(:52) (Shotgun) R.Lindley sacked at ATL 31 for -6 yards (J.Abraham). PENALTY on ATL-J.Abraham Defensive Offside 5 yards enforced at ATL 25 - No Play.,13,13,2012 -20121118_ARI@ATL,2,30,46,ARI,ATL,2,5,20,(:46) (Shotgun) R.Lindley pass incomplete short right to L.Stephens-Howling.,13,13,2012 -20121118_ARI@ATL,2,30,42,ARI,ATL,3,5,20,(:42) (Shotgun) R.Lindley pass incomplete short left to E.Doucet (D.Robinson).,13,13,2012 -20121118_ARI@ATL,2,30,37,ARI,ATL,4,5,20,(:37) J.Feely 38 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,13,13,2012 -20121118_ARI@ATL,2,30,37,ARI,ATL,,,20,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,16,13,2012 -20121118_ARI@ATL,2,30,32,ATL,ARI,1,10,80,(:32) (Shotgun) M.Ryan pass short left to J.Snelling to ATL 33 for 13 yards (K.Rhodes).,13,16,2012 -20121118_ARI@ATL,2,30,23,ATL,ARI,1,10,67,(:23) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to 50 for 17 yards (P.Lenon).,13,16,2012 -20121118_ARI@ATL,2,30,16,ATL,ARI,1,10,50,(:16) (Shotgun) M.Ryan pass incomplete short right to J.Jones.,13,16,2012 -20121118_ARI@ATL,2,30,8,ATL,ARI,2,10,50,(:08) (Shotgun) M.Ryan pass deep right to J.Jones to ARZ 30 for 20 yards (P.Peterson).,13,16,2012 -20121118_ARI@ATL,2,30,2,ATL,ARI,1,10,30,(:02) M.Bryant 48 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,13,16,2012 -20121118_ARI@ATL,3,30,0,ATL,ARI,,,30,M.Bryant kicks 65 yards from ATL 35 to end zone Touchback.,16,16,2012 -20121118_ARI@ATL,3,30,0,ARI,ATL,1,10,80,(15:00) L.Stephens-Howling right end to ARZ 19 for -1 yards (A.Dent).,16,16,2012 -20121118_ARI@ATL,3,29,20,ARI,ATL,2,11,81,(14:20) (Shotgun) R.Lindley pass short middle to L.Fitzgerald to ARZ 30 for 11 yards (R.McClain).,16,16,2012 -20121118_ARI@ATL,3,28,45,ARI,ATL,1,10,70,(13:45) (Shotgun) L.Stephens-Howling right guard to ARZ 35 for 5 yards (S.Nicholas; C.Owens).,16,16,2012 -20121118_ARI@ATL,3,28,12,ARI,ATL,2,5,65,(13:12) R.Lindley pass incomplete deep right to L.Fitzgerald.,16,16,2012 -20121118_ARI@ATL,3,28,6,ARI,ATL,3,5,65,(13:06) (Shotgun) R.Lindley pass short right to E.Doucet to ARZ 41 for 6 yards (R.McClain).,16,16,2012 -20121118_ARI@ATL,3,27,34,ARI,ATL,1,10,59,(12:34) L.Stephens-Howling left guard to ARZ 43 for 2 yards (M.Peterson; A.Dent).,16,16,2012 -20121118_ARI@ATL,3,26,58,ARI,ATL,2,8,57,(11:58) (Shotgun) W.Powell up the middle to ARZ 49 for 6 yards (S.Nicholas).,16,16,2012 -20121118_ARI@ATL,3,26,15,ARI,ATL,3,2,51,(11:15) W.Powell right end pushed ob at ATL 49 for 2 yards (R.McClain).,16,16,2012 -20121118_ARI@ATL,3,25,45,ARI,ATL,1,10,49,(10:45) W.Powell left guard to ATL 46 for 3 yards (J.Abraham; R.McClain).,16,16,2012 -20121118_ARI@ATL,3,25,7,ARI,ATL,2,7,46,(10:07) R.Lindley sacked at ARZ 40 for -14 yards (S.Nicholas).,16,16,2012 -20121118_ARI@ATL,3,24,27,ARI,ATL,3,21,60,(9:27) (Shotgun) R.Lindley pass incomplete short right to L.Stephens-Howling.,16,16,2012 -20121118_ARI@ATL,3,24,21,ARI,ATL,4,21,60,(9:21) D.Zastudil punts 47 yards to ATL 13 Center-M.Leach. D.Franks to ATL 41 for 28 yards (A.Sherman).,16,16,2012 -20121118_ARI@ATL,3,24,7,ATL,ARI,1,10,59,(9:07) M.Turner left end to ATL 41 for no gain (P.Lenon; D.Williams).,16,16,2012 -20121118_ARI@ATL,3,23,25,ATL,ARI,2,10,59,(8:25) (Shotgun) M.Ryan pass incomplete short right to J.Jones.,16,16,2012 -20121118_ARI@ATL,3,23,21,ATL,ARI,3,10,59,(8:21) (Shotgun) PENALTY on ATL-T.McClure False Start 5 yards enforced at ATL 41 - No Play.,16,16,2012 -20121118_ARI@ATL,3,23,21,ATL,ARI,3,15,64,(8:21) (Shotgun) M.Ryan pass incomplete deep right to R.White [D.Washington]. PENALTY on ARZ-D.Washington Roughing the Passer 15 yards enforced at ATL 36 - No Play.,16,16,2012 -20121118_ARI@ATL,3,23,15,ATL,ARI,1,10,49,(8:15) M.Ryan pass incomplete deep left to R.White.,16,16,2012 -20121118_ARI@ATL,3,23,9,ATL,ARI,2,10,49,(8:09) M.Ryan pass short right to R.White to ARZ 45 for 4 yards (P.Peterson).,16,16,2012 -20121118_ARI@ATL,3,22,15,ATL,ARI,3,6,45,(7:15) (Shotgun) M.Ryan pass short left to J.Snelling to ARZ 38 for 7 yards (S.Acho). FUMBLES (S.Acho) touched at ARZ 30 RECOVERED by ARZ-R.Johnson at ARZ 28. R.Johnson ran ob at ARZ 27 for -1 yards. PENALTY on ATL Unsportsmanlike Conduct 15 yards enforced at ARZ 27.,16,16,2012 -20121118_ARI@ATL,3,22,2,ARI,ATL,1,10,58,(7:02) L.Stephens-Howling left end to ARZ 41 for -1 yards (J.Abraham).,16,16,2012 -20121118_ARI@ATL,3,21,38,ARI,ATL,2,11,59,(6:38) R.Lindley pass short right to A.Roberts to ARZ 48 for 7 yards (M.Peterson).,16,16,2012 -20121118_ARI@ATL,3,20,53,ARI,ATL,3,4,52,(5:53) (Shotgun) R.Lindley pass short middle to E.Doucet to 50 for 2 yards (C.Owens; M.Peterson). PENALTY on ARZ-R.Housler Offensive Pass Interference 10 yards enforced at ARZ 48 - No Play.,16,16,2012 -20121118_ARI@ATL,3,20,22,ARI,ATL,3,14,62,(5:22) (Shotgun) R.Lindley pass incomplete short left to L.Fitzgerald [J.Abraham].,16,16,2012 -20121118_ARI@ATL,3,20,17,ARI,ATL,4,14,62,(5:17) D.Zastudil punts 54 yards to ATL 8 Center-M.Leach. D.Franks to ATL 10 for 2 yards (R.Walker). PENALTY on ATL-T.DeCoud Illegal Block Above the Waist 5 yards enforced at ATL 10.,16,16,2012 -20121118_ARI@ATL,3,20,4,ATL,ARI,1,10,95,(5:04) M.Ryan pass short left to H.Douglas to ATL 4 for -1 yards (W.Gay).,16,16,2012 -20121118_ARI@ATL,3,19,27,ATL,ARI,2,11,96,(4:27) (Shotgun) M.Ryan pass incomplete short middle to M.Turner [D.Dockett].,16,16,2012 -20121118_ARI@ATL,3,19,22,ATL,ARI,3,11,96,(4:22) (Shotgun) M.Ryan pass short left to J.Jones to ATL 9 for 5 yards (G.Toler).,16,16,2012 -20121118_ARI@ATL,3,18,43,ATL,ARI,4,6,91,(3:43) M.Bosher punts 53 yards to ARZ 38 Center-J.Harris downed by ATL-DJ.Davis.,16,16,2012 -20121118_ARI@ATL,3,18,30,ARI,ATL,1,10,62,(3:30) (Shotgun) R.Lindley pass short left to E.Doucet ran ob at ARZ 43 for 5 yards (C.Owens).,16,16,2012 -20121118_ARI@ATL,3,18,12,ARI,ATL,2,5,57,(3:12) L.Stephens-Howling right end to ARZ 40 for -3 yards (V.Walker).,16,16,2012 -20121118_ARI@ATL,3,17,31,ARI,ATL,3,8,60,(2:31) (Shotgun) R.Lindley pass short middle to E.Doucet to ARZ 45 for 5 yards (C.Owens) [A.Dent].,16,16,2012 -20121118_ARI@ATL,3,16,59,ARI,ATL,4,3,55,(1:59) D.Zastudil punts 55 yards to end zone Center-M.Leach Touchback.,16,16,2012 -20121118_ARI@ATL,3,16,49,ATL,ARI,1,10,80,(1:49) M.Ryan pass short right intended for R.White INTERCEPTED by D.Washington at ATL 23. D.Washington to ATL 16 for 7 yards (M.Ryan).,16,16,2012 -20121118_ARI@ATL,3,16,43,ARI,ATL,1,10,16,(1:43) L.Stephens-Howling left guard to ATL 14 for 2 yards (P.Jerry).,16,16,2012 -20121118_ARI@ATL,3,16,5,ARI,ATL,2,8,14,(1:05) L.Stephens-Howling right end to ATL 13 for 1 yard (J.Babineaux).,16,16,2012 -20121118_ARI@ATL,3,15,20,ARI,ATL,3,7,13,(:20) (Shotgun) R.Lindley pass short right to E.Doucet to ATL 9 for 4 yards (A.Dent).,16,16,2012 -20121118_ARI@ATL,4,15,0,ARI,ATL,4,3,9,(15:00) J.Feely 27 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,16,16,2012 -20121118_ARI@ATL,4,15,0,ARI,ATL,,,9,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,19,16,2012 -20121118_ARI@ATL,4,14,56,ATL,ARI,1,10,80,(14:56) (Shotgun) Jz. Rodgers right tackle to ATL 24 for 4 yards (P.Lenon; D.Washington).,16,19,2012 -20121118_ARI@ATL,4,14,19,ATL,ARI,2,6,76,(14:19) M.Ryan pass incomplete short right to T.Gonzalez (P.Lenon).,16,19,2012 -20121118_ARI@ATL,4,14,9,ATL,ARI,3,6,76,(14:09) (Shotgun) M.Ryan pass short middle to H.Douglas to ATL 36 for 12 yards (R.Johnson).,16,19,2012 -20121118_ARI@ATL,4,13,33,ATL,ARI,1,10,64,(13:33) M.Turner left guard to ATL 37 for 1 yard (D.Washington).,16,19,2012 -20121118_ARI@ATL,4,12,52,ATL,ARI,2,9,63,(12:52) (Shotgun) M.Ryan pass short right to R.White to ATL 40 for 3 yards (W.Gay).,16,19,2012 -20121118_ARI@ATL,4,12,10,ATL,ARI,3,6,60,(12:10) (Shotgun) M.Ryan pass short middle to DJ.Davis to ATL 44 for 4 yards (D.Washington; S.Acho). Penalty on ATL-Jz. Rodgers Offensive Holding declined.,16,19,2012 -20121118_ARI@ATL,4,11,52,ATL,ARI,4,2,56,(11:52) M.Bosher punts 52 yards to ARZ 4 Center-J.Harris. A.Roberts to ARZ 14 for 10 yards (C.Owens).,16,19,2012 -20121118_ARI@ATL,4,11,40,ARI,ATL,1,10,86,(11:40) (Shotgun) R.Lindley pass short left to E.Doucet to ARZ 22 for 8 yards (D.Robinson).,19,16,2012 -20121118_ARI@ATL,4,11,5,ARI,ATL,2,2,78,(11:05) (Shotgun) L.Stephens-Howling left guard to ARZ 23 for 1 yard (K.Biermann; J.Abraham).,19,16,2012 -20121118_ARI@ATL,4,10,23,ARI,ATL,3,1,77,(10:23) (Shotgun) L.Stephens-Howling left guard to ARZ 23 for no gain (P.Jerry).,19,16,2012 -20121118_ARI@ATL,4,9,52,ARI,ATL,4,1,77,(9:52) D.Zastudil punts 47 yards to ATL 30 Center-M.Leach out of bounds.,19,16,2012 -20121118_ARI@ATL,4,9,44,ATL,ARI,1,10,70,(9:44) (Shotgun) M.Ryan pass short right to H.Douglas ran ob at ATL 41 for 11 yards (D.Washington).,16,19,2012 -20121118_ARI@ATL,4,9,16,ATL,ARI,1,10,59,(9:16) M.Ryan pass deep left to H.Douglas to ARZ 33 for 26 yards (K.Rhodes).,16,19,2012 -20121118_ARI@ATL,4,8,35,ATL,ARI,1,10,33,(8:35) M.Ryan pass deep left to R.White to ARZ 15 for 18 yards (K.Rhodes).,16,19,2012 -20121118_ARI@ATL,4,7,59,ATL,ARI,1,10,15,(7:59) M.Turner right tackle to ARZ 10 for 5 yards (G.Toler).,16,19,2012 -20121118_ARI@ATL,4,7,20,ATL,ARI,2,5,10,(7:20) M.Ryan pass incomplete short right to H.Douglas.,16,19,2012 -20121118_ARI@ATL,4,7,14,ATL,ARI,3,5,10,(7:14) (Shotgun) M.Ryan pass short right to T.Gonzalez to ARZ 1 for 9 yards (G.Toler). ARZ-G.Toler was injured during the play. His return is Probable.,16,19,2012 -20121118_ARI@ATL,4,6,42,ATL,ARI,1,1,1,(6:42) M.Johnson reported in as eligible. M.Turner left tackle for 1 yard TOUCHDOWN.,16,19,2012 -20121118_ARI@ATL,4,6,42,ATL,ARI,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,16,19,2012 -20121118_ARI@ATL,4,6,42,ATL,ARI,,,1,M.Bryant kicks 68 yards from ATL 35 to ARZ -3. W.Powell to ARZ 23 for 26 yards (R.James).,23,19,2012 -20121118_ARI@ATL,4,6,34,ARI,ATL,1,10,77,(6:34) R.Lindley pass incomplete deep right to A.Roberts (A.Samuel).,19,23,2012 -20121118_ARI@ATL,4,6,26,ARI,ATL,2,10,77,(6:26) (Shotgun) L.Stephens-Howling left guard to ARZ 23 for no gain (K.Biermann).,19,23,2012 -20121118_ARI@ATL,4,5,47,ARI,ATL,3,10,77,(5:47) (Shotgun) R.Lindley sacked at ARZ 14 for -9 yards (J.Abraham).,19,23,2012 -20121118_ARI@ATL,4,5,13,ARI,ATL,4,19,86,(5:13) D.Zastudil punts 53 yards to ATL 33 Center-M.Leach. D.Franks to ATL 36 for 3 yards (R.Walker).,19,23,2012 -20121118_ARI@ATL,4,5,1,ATL,ARI,1,10,64,(5:01) M.Turner right guard to ATL 39 for 3 yards (Q.Groves).,23,19,2012 -20121118_ARI@ATL,4,4,16,ATL,ARI,2,7,61,(4:16) (Shotgun) M.Ryan pass short middle intended for Jz. Rodgers INTERCEPTED by S.Acho (D.Williams) at ATL 34. S.Acho to ATL 32 for 2 yards (S.Baker).,23,19,2012 -20121118_ARI@ATL,4,4,8,ARI,ATL,1,10,32,(4:08) R.Lindley pass incomplete deep right to A.Roberts.,19,23,2012 -20121118_ARI@ATL,4,4,3,ARI,ATL,2,10,32,(4:03) (Shotgun) L.Stephens-Howling left guard to ATL 24 for 8 yards (C.Owens).,19,23,2012 -20121118_ARI@ATL,4,3,19,ARI,ATL,3,2,24,(3:19) L.Stephens-Howling right end pushed ob at ATL 24 for no gain (W.Moore).,19,23,2012 -20121118_ARI@ATL,4,3,13,ARI,ATL,4,2,24,(3:13) (Shotgun) R.Lindley pass incomplete deep left to L.Fitzgerald.,19,23,2012 -20121118_ARI@ATL,4,3,6,ATL,ARI,1,10,76,(3:06) M.Johnson reported in as eligible. M.Turner left tackle to ATL 25 for 1 yard (D.Dockett).,23,19,2012 -20121118_ARI@ATL,4,2,20,ATL,ARI,2,9,75,(2:20) M.Turner right end to ATL 32 for 7 yards (D.Washington).,23,19,2012 -20121118_ARI@ATL,4,2,6,ATL,ARI,3,2,68,(2:06) Jz. Rodgers left end to ATL 38 for 6 yards (Q.Groves).,23,19,2012 -20121118_ARI@ATL,4,2,0,ATL,ARI,1,10,62,(2:00) M.Ryan kneels to ATL 37 for -1 yards.,23,19,2012 -20121118_ARI@ATL,4,1,17,ATL,ARI,2,11,63,(1:17) M.Ryan kneels to ATL 36 for -1 yards.,23,19,2012 -20121118_ARI@ATL,4,0,38,ATL,ARI,3,12,64,(:38) M.Ryan kneels to ATL 35 for -1 yards.,23,19,2012 -20121118_ARI@ATL,4,0,38,ATL,ARI,,,64,                      ,23,19,2012 -20121118_TB@CAR,1,0,0,TB,CAR,,,64,M.Koenen kicks 66 yards from TB 35 to CAR -1. A.Edwards to CAR 22 for 23 yards (A.Morgan).,0,0,2012 -20121118_TB@CAR,1,59,55,CAR,TB,1,10,78,(14:55) (Shotgun) C.Newton pass short right to S.Smith to CAR 32 for 10 yards (E.Wright).,0,0,2012 -20121118_TB@CAR,1,59,17,CAR,TB,1,10,68,(14:17) (Shotgun) C.Newton pass incomplete short right to S.Smith.,0,0,2012 -20121118_TB@CAR,1,59,17,CAR,TB,2,10,68,(14:17) PENALTY on CAR-G.Olsen False Start 5 yards enforced at CAR 32 - No Play.,0,0,2012 -20121118_TB@CAR,1,59,14,CAR,TB,2,15,73,(14:14) (Shotgun) J.Stewart left end to CAR 32 for 5 yards (L.David; M.Foster).,0,0,2012 -20121118_TB@CAR,1,58,26,CAR,TB,3,10,68,(13:26) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,0,0,2012 -20121118_TB@CAR,1,58,19,CAR,TB,4,10,68,(13:19) B.Nortman punts 44 yards to TB 24 Center-J.Jansen fair catch by R.Parrish.,0,0,2012 -20121118_TB@CAR,1,58,13,TB,CAR,1,10,76,(13:13) J.Freeman pass short right to V.Jackson pushed ob at TB 32 for 8 yards (C.Munnerlyn).,0,0,2012 -20121118_TB@CAR,1,57,45,TB,CAR,2,2,68,(12:45) J.Freeman pass incomplete short left to E.Lorig.,0,0,2012 -20121118_TB@CAR,1,57,41,TB,CAR,3,2,68,(12:41) J.Freeman pass incomplete short right to V.Jackson.,0,0,2012 -20121118_TB@CAR,1,57,36,TB,CAR,4,2,68,(12:36) M.Koenen punts 53 yards to CAR 15 Center-A.Economos. C.Munnerlyn to CAR 33 for 18 yards (J.Cutrera). FUMBLES (J.Cutrera) RECOVERED by TB-D.Watson at CAR 29. D.Watson to CAR 29 for no gain (J.Thomas).,0,0,2012 -20121118_TB@CAR,1,57,19,TB,CAR,1,10,29,(12:19) J.Freeman pass short middle to D.Martin to CAR 25 for 4 yards.,0,0,2012 -20121118_TB@CAR,1,56,33,TB,CAR,2,6,25,(11:33) D.Martin left guard to CAR 20 for 5 yards (T.Davis).,0,0,2012 -20121118_TB@CAR,1,55,49,TB,CAR,3,1,20,(10:49) J.Freeman up the middle to CAR 18 for 2 yards (R.Edwards).,0,0,2012 -20121118_TB@CAR,1,55,4,TB,CAR,1,10,18,(10:04) D.Martin up the middle to CAR 13 for 5 yards (C.Godfrey; L.Kuechly).,0,0,2012 -20121118_TB@CAR,1,54,25,TB,CAR,2,5,13,(9:25) J.Freeman scrambles up the middle to CAR 6 for 7 yards (J.Anderson). PENALTY on CAR-J.Anderson Unnecessary Roughness 3 yards enforced at CAR 6.,0,0,2012 -20121118_TB@CAR,1,53,52,TB,CAR,1,3,3,(8:52) J.Freeman pass short middle to N.Byham for 3 yards TOUCHDOWN.,0,0,2012 -20121118_TB@CAR,1,53,52,TB,CAR,,,3,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121118_TB@CAR,1,53,52,TB,CAR,,,3,M.Koenen kicks 48 yards from TB 35 to CAR 17. S.Fua to CAR 26 for 9 yards (E.Biggers). PENALTY on CAR-J.Senn Offensive Holding 10 yards enforced at CAR 26.,7,0,2012 -20121118_TB@CAR,1,53,40,CAR,TB,1,10,84,(8:40) (Shotgun) C.Newton pass incomplete deep right to G.Olsen.,0,7,2012 -20121118_TB@CAR,1,53,35,CAR,TB,2,10,84,(8:35) (Shotgun) J.Stewart up the middle to CAR 17 for 1 yard (D.Te'o-Nesheim; L.David).,0,7,2012 -20121118_TB@CAR,1,52,56,CAR,TB,3,9,83,(7:56) (Shotgun) C.Newton pass incomplete deep right to G.Olsen.,0,7,2012 -20121118_TB@CAR,1,52,49,CAR,TB,4,9,83,(7:49) B.Nortman punts 35 yards to TB 48 Center-J.Jansen downed by CAR-D.Hogue.,0,7,2012 -20121118_TB@CAR,1,52,40,TB,CAR,1,10,52,(7:40) J.Freeman pass deep left to V.Jackson ran ob at CAR 33 for 19 yards.,7,0,2012 -20121118_TB@CAR,1,52,14,TB,CAR,1,10,33,(7:14) D.Martin left tackle to CAR 33 for no gain (L.Kuechly).,7,0,2012 -20121118_TB@CAR,1,51,34,TB,CAR,2,10,33,(6:34) D.Martin left guard to CAR 31 for 2 yards (T.Davis). PENALTY on TB-J.Zuttah Offensive Holding 10 yards enforced at CAR 33 - No Play.,7,0,2012 -20121118_TB@CAR,1,51,10,TB,CAR,2,20,43,(6:10) (Shotgun) J.Freeman pass short left to D.Martin to CAR 33 for 10 yards (L.Kuechly).,7,0,2012 -20121118_TB@CAR,1,50,30,TB,CAR,3,10,33,(5:30) (Shotgun) J.Freeman pass incomplete deep left to M.Williams.,7,0,2012 -20121118_TB@CAR,1,50,25,TB,CAR,4,10,33,(5:25) C.Barth 51 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,0,2012 -20121118_TB@CAR,1,50,25,TB,CAR,,,33,M.Koenen kicks 72 yards from TB 35 to CAR -7. A.Edwards to CAR 20 for 27 yards (A.Benn).,10,0,2012 -20121118_TB@CAR,1,50,16,CAR,TB,1,10,80,(5:16) D.Williams left guard to CAR 19 for -1 yards (M.Foster).,0,10,2012 -20121118_TB@CAR,1,49,39,CAR,TB,2,11,81,(4:39) D.Williams up the middle to CAR 24 for 5 yards (L.David; A.Hayward).,0,10,2012 -20121118_TB@CAR,1,49,0,CAR,TB,3,6,76,(4:00) (Shotgun) C.Newton pass short middle to S.Smith to CAR 41 for 17 yards (E.Wright). PENALTY on CAR-G.Hangartner Illegal Use of Hands 10 yards enforced at CAR 24 - No Play.,0,10,2012 -20121118_TB@CAR,1,48,26,CAR,TB,3,16,86,(3:26) (Shotgun) C.Newton sacked at CAR 4 for -10 yards (D.Bowers).,0,10,2012 -20121118_TB@CAR,1,47,59,CAR,TB,4,26,96,(2:59) B.Nortman punts 47 yards to TB 49 Center-J.Jansen downed by CAR-G.Hardy.,0,10,2012 -20121118_TB@CAR,1,47,50,TB,CAR,1,10,51,(2:50) D.Martin left guard to CAR 47 for 4 yards (T.Davis; L.Kuechly). TB-D.Penn was injured during the play. His return is Probable.,10,0,2012 -20121118_TB@CAR,1,47,11,TB,CAR,2,6,47,(2:11) J.Freeman pass incomplete deep right to M.Williams (H.Nakamura C.Munnerlyn).,10,0,2012 -20121118_TB@CAR,1,47,5,TB,CAR,3,6,47,(2:05) (Shotgun) J.Freeman pass short right to D.Ware to CAR 32 for 15 yards (C.Godfrey). CAR-C.Johnson was injured during the play. His return is Probable. CAR-G.Hardy was injured during the play. His return is Probable.,10,0,2012 -20121118_TB@CAR,1,46,33,TB,CAR,1,10,32,(1:33) D.Martin left tackle to CAR 30 for 2 yards (J.Anderson; D.Edwards).,10,0,2012 -20121118_TB@CAR,1,45,51,TB,CAR,2,8,30,(:51) J.Freeman pass incomplete short right to V.Jackson (D.Edwards).,10,0,2012 -20121118_TB@CAR,1,45,48,TB,CAR,3,8,30,(:48) (Shotgun) J.Freeman pass short right intended for D.Clark INTERCEPTED by C.Munnerlyn [D.Edwards] at CAR 26. C.Munnerlyn for 74 yards TOUCHDOWN. PENALTY on TB-T.Larsen Personal Foul 15 yards enforced between downs. Penalty enforced on the Kick Off.,10,0,2012 -20121118_TB@CAR,1,45,48,CAR,TB,,,30,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,10,2012 -20121118_TB@CAR,1,45,48,CAR,TB,,,30,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,1,10,2012 -20121118_TB@CAR,1,45,35,TB,CAR,1,10,80,(:35) D.Martin left end to TB 40 for 20 yards (H.Nakamura).,10,1,2012 -20121118_TB@CAR,2,45,0,TB,CAR,1,10,60,(15:00) D.Martin right guard to TB 42 for 2 yards (L.Kuechly).,10,1,2012 -20121118_TB@CAR,2,44,23,TB,CAR,2,8,58,(14:23) (Shotgun) J.Freeman sacked at TB 30 for -12 yards (sack split by G.Hardy and A.Neblett).,10,1,2012 -20121118_TB@CAR,2,43,44,TB,CAR,3,20,70,(13:44) (Shotgun) J.Freeman pass short middle to D.Ware to TB 37 for 7 yards (T.Davis; D.Edwards).,10,1,2012 -20121118_TB@CAR,2,43,15,TB,CAR,4,13,63,(13:15) M.Koenen punts 51 yards to CAR 12 Center-A.Economos. J.Adams pushed ob at CAR 23 for 11 yards (D.Ware).,10,1,2012 -20121118_TB@CAR,2,43,2,CAR,TB,1,10,77,(13:02) J.Stewart up the middle to CAR 34 for 11 yards (M.Barron).,1,10,2012 -20121118_TB@CAR,2,42,22,CAR,TB,1,10,66,(12:22) (Shotgun) C.Newton pass short left to J.Stewart to TB 36 for 30 yards (R.Barber).,1,10,2012 -20121118_TB@CAR,2,41,48,CAR,TB,1,10,36,(11:48) (Shotgun) C.Newton scrambles right end to TB 30 for 6 yards (D.Te'o-Nesheim).,1,10,2012 -20121118_TB@CAR,2,41,18,CAR,TB,2,4,30,(11:18) (Shotgun) D.Williams left guard to TB 28 for 2 yards (M.Bennett).,1,10,2012 -20121118_TB@CAR,2,40,39,CAR,TB,3,2,28,(10:39) (Shotgun) C.Newton pass short right to S.Smith to TB 11 for 17 yards (M.Bennett; E.Biggers).,1,10,2012 -20121118_TB@CAR,2,39,54,CAR,TB,1,10,11,(9:54) (Shotgun) C.Newton pass incomplete short left to S.Smith.,1,10,2012 -20121118_TB@CAR,2,39,48,CAR,TB,2,10,11,(9:48) (Shotgun) C.Newton up the middle to TB 11 for no gain (L.David).,1,10,2012 -20121118_TB@CAR,2,39,3,CAR,TB,3,10,11,(9:03) (Shotgun) C.Newton pass incomplete short right to G.Olsen. PENALTY on TB-M.Barron Defensive Pass Interference 10 yards enforced at TB 11 - No Play.,1,10,2012 -20121118_TB@CAR,2,38,58,CAR,TB,1,1,1,(8:58) J.Stewart left guard for 1 yard TOUCHDOWN.,1,10,2012 -20121118_TB@CAR,2,38,58,CAR,TB,,,1,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,1,10,2012 -20121118_TB@CAR,2,38,58,CAR,TB,,,1,J.Medlock kicks 70 yards from CAR 35 to TB -5. L.Lewis to TB 28 for 33 yards (H.Nakamura).,8,10,2012 -20121118_TB@CAR,2,38,47,TB,CAR,1,10,72,(8:47) J.Freeman pass incomplete deep right to M.Williams.,10,8,2012 -20121118_TB@CAR,2,38,40,TB,CAR,2,10,72,(8:40) (Shotgun) J.Freeman pass incomplete short left to L.Stocker (C.Godfrey).,10,8,2012 -20121118_TB@CAR,2,38,38,TB,CAR,3,10,72,(8:38) (Shotgun) J.Freeman pass short right to D.Ware to TB 29 for 1 yard (T.Davis; L.Kuechly).,10,8,2012 -20121118_TB@CAR,2,37,55,TB,CAR,4,9,71,(7:55) M.Koenen punts 39 yards to CAR 32 Center-A.Economos downed by TB-C.Grimm.,10,8,2012 -20121118_TB@CAR,2,37,43,CAR,TB,1,10,68,(7:43) (Shotgun) C.Newton scrambles right end pushed ob at CAR 37 for 5 yards (L.David).,8,10,2012 -20121118_TB@CAR,2,37,13,CAR,TB,2,5,63,(7:13) (Shotgun) C.Newton up the middle to CAR 47 for 10 yards (E.Wright).,8,10,2012 -20121118_TB@CAR,2,36,31,CAR,TB,1,10,53,(6:31) (Shotgun) C.Newton pass incomplete short right to L.Murphy.,8,10,2012 -20121118_TB@CAR,2,36,27,CAR,TB,2,10,53,(6:27) J.Stewart up the middle to CAR 44 for -3 yards (L.David).,8,10,2012 -20121118_TB@CAR,2,35,45,CAR,TB,3,13,56,(5:45) (Shotgun) C.Newton scrambles up the middle to TB 40 for 16 yards (D.Bowers). TB-A.Morgan was injured during the play. His return is Questionable.,8,10,2012 -20121118_TB@CAR,2,35,15,CAR,TB,1,10,40,(5:15) PENALTY on CAR-B.Bell False Start 5 yards enforced at TB 40 - No Play.,8,10,2012 -20121118_TB@CAR,2,34,52,CAR,TB,1,15,45,(4:52) C.Newton pass deep middle to G.Olsen to TB 13 for 32 yards (E.Biggers).,8,10,2012 -20121118_TB@CAR,2,34,8,CAR,TB,1,10,13,(4:08) (Shotgun) D.Williams up the middle to TB 8 for 5 yards (G.McCoy).,8,10,2012 -20121118_TB@CAR,2,33,32,CAR,TB,2,5,8,(3:32) (Shotgun) C.Newton right end to TB 12 for -4 yards (M.Bennett).,8,10,2012 -20121118_TB@CAR,2,32,51,CAR,TB,3,9,12,(2:51) (Shotgun) C.Newton pass short left to S.Smith for 12 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CAR-S.Smith Offensive Pass Interference 10 yards enforced at TB 12 - No Play.,8,10,2012 -20121118_TB@CAR,2,32,46,CAR,TB,3,19,22,(2:46) (Shotgun) C.Newton pass incomplete deep left to A.Edwards.,8,10,2012 -20121118_TB@CAR,2,32,42,CAR,TB,4,19,22,(2:42) J.Medlock 40 yard field goal is No Good Wide Right Center-J.Jansen Holder-B.Nortman.,8,10,2012 -20121118_TB@CAR,2,32,38,TB,CAR,1,10,70,(2:38) D.Martin right tackle to TB 31 for 1 yard (D.Edwards).,10,8,2012 -20121118_TB@CAR,2,32,0,TB,CAR,2,9,69,(2:00) (Shotgun) J.Freeman pass short right to M.Williams to TB 37 for 6 yards (J.Thomas).,10,8,2012 -20121118_TB@CAR,2,31,34,TB,CAR,3,3,63,(1:34) (Shotgun) PENALTY on CAR-G.Hardy Encroachment 5 yards enforced at TB 37 - No Play.,10,8,2012 -20121118_TB@CAR,2,31,34,TB,CAR,1,10,58,(1:34) (Shotgun) J.Freeman pass incomplete short left to D.Martin [F.Alexander].,10,8,2012 -20121118_TB@CAR,2,31,29,TB,CAR,2,10,58,(1:29) (Shotgun) PENALTY on TB-D.Dotson False Start 5 yards enforced at TB 42 - No Play.,10,8,2012 -20121118_TB@CAR,2,31,29,TB,CAR,2,15,63,(1:29) (Shotgun) J.Freeman pass short right to D.Martin to TB 40 for 3 yards (T.Davis) [G.Hardy].,10,8,2012 -20121118_TB@CAR,2,31,22,TB,CAR,3,12,60,(1:22) (Shotgun) J.Freeman pass short middle to D.Clark to CAR 49 for 11 yards (T.Davis).,10,8,2012 -20121118_TB@CAR,2,31,9,TB,CAR,4,1,49,(1:09) (Pass formation) PENALTY on TB-J.Freeman Delay of Game 5 yards enforced at CAR 49 - No Play.,10,8,2012 -20121118_TB@CAR,2,31,9,TB,CAR,4,6,54,(1:09) M.Koenen punts 54 yards to end zone Center-A.Economos Touchback.,10,8,2012 -20121118_TB@CAR,2,31,1,CAR,TB,1,10,80,(1:01) (Shotgun) C.Newton pass incomplete deep right to L.Murphy.,8,10,2012 -20121118_TB@CAR,2,30,55,CAR,TB,2,10,80,(:55) (Shotgun) J.Stewart left end to CAR 25 for 5 yards (E.Wright).,8,10,2012 -20121118_TB@CAR,2,30,46,CAR,TB,3,5,75,(:46) (Shotgun) J.Stewart up the middle to CAR 36 for 11 yards (L.David).,8,10,2012 -20121118_TB@CAR,2,30,40,CAR,TB,1,10,64,(:40) (Shotgun) C.Newton pass incomplete deep middle to G.Olsen.,8,10,2012 -20121118_TB@CAR,2,30,35,CAR,TB,2,10,64,(:35) (Shotgun) C.Newton pass incomplete short left to L.Murphy.,8,10,2012 -20121118_TB@CAR,2,30,28,CAR,TB,3,10,64,(:28) (Shotgun) J.Stewart left guard to CAR 46 for 10 yards (M.Bennett).,8,10,2012 -20121118_TB@CAR,2,30,28,CAR,TB,1,10,54,(:28) C.Newton spiked the ball to stop the clock.,8,10,2012 -20121118_TB@CAR,2,30,12,CAR,TB,2,10,54,(:12) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,8,10,2012 -20121118_TB@CAR,2,30,8,CAR,TB,3,10,54,(:08) (Shotgun) C.Newton pass short middle to B.LaFell to TB 30 for 24 yards (A.Black).,8,10,2012 -20121118_TB@CAR,3,30,0,CAR,TB,,,54,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,8,10,2012 -20121118_TB@CAR,3,30,0,TB,CAR,1,10,80,(15:00) D.Martin up the middle to TB 21 for 1 yard (J.Anderson; C.Godfrey).,10,8,2012 -20121118_TB@CAR,3,29,24,TB,CAR,2,9,79,(14:24) J.Freeman pass incomplete short right to L.Stocker.,10,8,2012 -20121118_TB@CAR,3,29,19,TB,CAR,3,9,79,(14:19) (Shotgun) J.Freeman pass incomplete short left to M.Williams.,10,8,2012 -20121118_TB@CAR,3,29,16,TB,CAR,4,9,79,(14:16) M.Koenen punts 58 yards to CAR 21 Center-A.Economos. J.Adams to CAR 37 for 16 yards (A.Benn).,10,8,2012 -20121118_TB@CAR,3,29,5,CAR,TB,1,10,63,(14:05) PENALTY on CAR-G.Olsen False Start 5 yards enforced at CAR 37 - No Play.,8,10,2012 -20121118_TB@CAR,3,29,5,CAR,TB,1,15,68,(14:05) C.Newton pass incomplete short left to G.Olsen [D.Te'o-Nesheim]. TB-E.Wright was injured during the play. His return is Probable.,8,10,2012 -20121118_TB@CAR,3,29,1,CAR,TB,2,15,68,(14:01) (Shotgun) C.Newton up the middle to CAR 30 for -2 yards (G.McCoy).,8,10,2012 -20121118_TB@CAR,3,28,21,CAR,TB,3,17,70,(13:21) (Shotgun) C.Newton pass short middle to B.LaFell to CAR 41 for 11 yards (L.David).,8,10,2012 -20121118_TB@CAR,3,27,36,CAR,TB,4,6,59,(12:36) (Punt formation) H.Nakamura left end to CAR 37 for -4 yards (A.Benn).,8,10,2012 -20121118_TB@CAR,3,27,29,TB,CAR,1,10,37,(12:29) J.Freeman pass deep left intended for V.Jackson INTERCEPTED by H.Nakamura at CAR 5. H.Nakamura to CAR 23 for 18 yards (D.Clark).,10,8,2012 -20121118_TB@CAR,3,27,18,CAR,TB,1,10,77,(12:18) C.Newton sacked at CAR 15 for -8 yards (M.Bennett).,8,10,2012 -20121118_TB@CAR,3,26,42,CAR,TB,2,18,85,(11:42) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 19 for 4 yards. PENALTY on CAR-A.Silatolu Illegal Block Above the Waist 10 yards enforced at CAR 20.,8,10,2012 -20121118_TB@CAR,3,26,18,CAR,TB,2,23,90,(11:18) C.Newton pass short middle to G.Olsen to CAR 20 for 10 yards (M.Foster).,8,10,2012 -20121118_TB@CAR,3,25,39,CAR,TB,3,13,80,(10:39) (Shotgun) C.Newton pass short right to M.Tolbert to CAR 30 for 10 yards (R.Barber; A.Black).,8,10,2012 -20121118_TB@CAR,3,25,3,CAR,TB,4,3,70,(10:03) B.Nortman punts 44 yards to TB 26 Center-J.Jansen. R.Parrish to TB 32 for 6 yards (R.Brockel; C.Jones).,8,10,2012 -20121118_TB@CAR,3,24,53,TB,CAR,1,10,68,(9:53) D.Martin left tackle to TB 36 for 4 yards (L.Kuechly; D.Edwards).,10,8,2012 -20121118_TB@CAR,3,24,10,TB,CAR,2,6,64,(9:10) (Shotgun) D.Martin up the middle to TB 39 for 3 yards (T.Davis).,10,8,2012 -20121118_TB@CAR,3,23,30,TB,CAR,3,3,61,(8:30) D.Ware right guard to TB 41 for 2 yards (L.Kuechly; C.Godfrey).,10,8,2012 -20121118_TB@CAR,3,22,57,TB,CAR,4,1,59,(7:57) M.Koenen punts 42 yards to CAR 17 Center-A.Economos fair catch by J.Adams.,10,8,2012 -20121118_TB@CAR,3,22,49,CAR,TB,1,10,83,(7:49) D.Williams left guard to CAR 20 for 3 yards (D.Te'o-Nesheim).,8,10,2012 -20121118_TB@CAR,3,22,11,CAR,TB,2,7,80,(7:11) (Shotgun) C.Newton pass short left to S.Smith to CAR 26 for 6 yards (L.Johnson).,8,10,2012 -20121118_TB@CAR,3,21,31,CAR,TB,3,1,74,(6:31) (Shotgun) C.Newton left guard to CAR 28 for 2 yards (A.Hayward).,8,10,2012 -20121118_TB@CAR,3,20,48,CAR,TB,1,10,72,(5:48) D.Williams up the middle to CAR 33 for 5 yards (R.Miller).,8,10,2012 -20121118_TB@CAR,3,20,11,CAR,TB,2,5,67,(5:11) (Shotgun) D.Williams up the middle to CAR 32 for -1 yards (D.Te'o-Nesheim).,8,10,2012 -20121118_TB@CAR,3,19,31,CAR,TB,3,6,68,(4:31) (Shotgun) PENALTY on TB-M.Bennett Neutral Zone Infraction 5 yards enforced at CAR 32 - No Play.,8,10,2012 -20121118_TB@CAR,3,19,15,CAR,TB,3,1,63,(4:15) J.Stewart left guard to CAR 35 for -2 yards (R.Barber).,8,10,2012 -20121118_TB@CAR,3,18,39,CAR,TB,4,3,65,(3:39) B.Nortman punts 55 yards to TB 10 Center-J.Jansen. R.Parrish to TB 19 for 9 yards (C.Jones).,8,10,2012 -20121118_TB@CAR,3,18,26,TB,CAR,1,10,81,(3:26) J.Freeman pass incomplete short right to D.Clark (C.Johnson).,10,8,2012 -20121118_TB@CAR,3,18,22,TB,CAR,2,10,81,(3:22) D.Martin right guard to TB 20 for 1 yard (T.Davis).,10,8,2012 -20121118_TB@CAR,3,17,44,TB,CAR,3,9,80,(2:44) (Shotgun) J.Freeman scrambles up the middle to TB 33 for 13 yards (G.Hardy).,10,8,2012 -20121118_TB@CAR,3,17,0,TB,CAR,1,10,67,(2:00) D.Martin right guard to TB 43 for 10 yards (H.Nakamura).,10,8,2012 -20121118_TB@CAR,3,16,28,TB,CAR,1,10,57,(1:28) D.Martin right tackle to TB 44 for 1 yard (L.Kuechly).,10,8,2012 -20121118_TB@CAR,3,15,51,TB,CAR,2,9,56,(:51) J.Freeman scrambles right end pushed ob at TB 45 for 1 yard (J.Anderson).,10,8,2012 -20121118_TB@CAR,3,15,16,TB,CAR,3,8,55,(:16) (Shotgun) J.Freeman pass short right to D.Clark to CAR 46 for 9 yards (C.Munnerlyn).,10,8,2012 -20121118_TB@CAR,4,15,0,TB,CAR,1,10,46,(15:00) D.Martin right guard to CAR 25 for 21 yards (H.Nakamura; T.Davis).,10,8,2012 -20121118_TB@CAR,4,14,27,TB,CAR,1,10,25,(14:27) D.Martin left guard to CAR 22 for 3 yards (T.Davis; G.Hardy).,10,8,2012 -20121118_TB@CAR,4,13,45,TB,CAR,2,7,22,(13:45) (Shotgun) J.Freeman pass short left to D.Clark to CAR 16 for 6 yards (J.Norman).,10,8,2012 -20121118_TB@CAR,4,13,10,TB,CAR,3,1,16,(13:10) D.Martin left tackle to CAR 11 for 5 yards (C.Godfrey).,10,8,2012 -20121118_TB@CAR,4,12,30,TB,CAR,1,10,11,(12:30) (Shotgun) J.Freeman pass short right to D.Clark to CAR 7 for 4 yards (J.Thomas).,10,8,2012 -20121118_TB@CAR,4,11,48,TB,CAR,2,6,7,(11:48) D.Martin right tackle to CAR 6 for 1 yard (L.Kuechly; G.Hardy).,10,8,2012 -20121118_TB@CAR,4,11,6,TB,CAR,3,5,6,(11:06) (Shotgun) J.Freeman scrambles up the middle to CAR 2 for 4 yards (J.Anderson).,10,8,2012 -20121118_TB@CAR,4,10,40,TB,CAR,4,1,2,(10:40) D.Martin up the middle to CAR 1 for 1 yard (T.Davis). FUMBLES (T.Davis) RECOVERED by CAR-L.Kuechly at CAR 0. Touchback. Play Challenged by Replay Assistant and Upheld.,10,8,2012 -20121118_TB@CAR,4,10,34,CAR,TB,1,10,80,(10:34) (Shotgun) C.Newton pass short right to B.LaFell to CAR 29 for 9 yards (L.Lewis).,8,10,2012 -20121118_TB@CAR,4,9,49,CAR,TB,2,1,71,(9:49) J.Stewart left guard to CAR 28 for -1 yards (R.Barber; D.Te'o-Nesheim).,8,10,2012 -20121118_TB@CAR,4,9,5,CAR,TB,3,2,72,(9:05) (Shotgun) C.Newton pass short middle to B.LaFell to CAR 48 for 20 yards (A.Black).,8,10,2012 -20121118_TB@CAR,4,8,19,CAR,TB,1,10,52,(8:19) J.Stewart right tackle to TB 46 for 6 yards (M.Foster).,8,10,2012 -20121118_TB@CAR,4,7,33,CAR,TB,2,4,46,(7:33) (Shotgun) J.Stewart up the middle to TB 46 for no gain (D.Te'o-Nesheim; M.Foster).,8,10,2012 -20121118_TB@CAR,4,6,50,CAR,TB,3,4,46,(6:50) C.Newton pass short right to S.Smith to TB 29 for 17 yards (M.Barron).,8,10,2012 -20121118_TB@CAR,4,6,6,CAR,TB,1,10,29,(6:06) (Shotgun) C.Newton pass deep middle to B.LaFell for 29 yards TOUCHDOWN.,8,10,2012 -20121118_TB@CAR,4,6,6,CAR,TB,,,29,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,8,10,2012 -20121118_TB@CAR,4,6,6,CAR,TB,,,29,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,15,10,2012 -20121118_TB@CAR,4,6,0,TB,CAR,1,10,80,(6:00) (Shotgun) J.Freeman pass incomplete deep right to M.Williams (J.Thomas).,10,15,2012 -20121118_TB@CAR,4,5,53,TB,CAR,2,10,80,(5:53) (Shotgun) J.Freeman pass incomplete short right to M.Williams. PENALTY on CAR-J.Thomas Defensive Pass Interference 13 yards enforced at TB 20 - No Play.,10,15,2012 -20121118_TB@CAR,4,5,53,TB,CAR,1,10,67,(5:53) J.Freeman pass deep middle to V.Jackson to CAR 45 for 22 yards (T.Davis). Penalty on CAR-C.Johnson Defensive Offside declined.,10,15,2012 -20121118_TB@CAR,4,5,53,TB,CAR,1,10,45,(5:53) J.Freeman pass incomplete short left to D.Clark.,10,15,2012 -20121118_TB@CAR,4,5,30,TB,CAR,2,10,45,(5:30) (Shotgun) J.Freeman pass short middle to D.Clark to CAR 40 for 5 yards (T.Davis).,10,15,2012 -20121118_TB@CAR,4,5,2,TB,CAR,3,5,40,(5:02) (No Huddle Shotgun) J.Freeman pass incomplete short left to M.Williams.,10,15,2012 -20121118_TB@CAR,4,4,56,TB,CAR,4,5,40,(4:56) (Shotgun) J.Freeman pass deep left to [] to CAR 30 for 10 yards (J.Norman).,10,15,2012 -20121118_TB@CAR,4,4,32,TB,CAR,1,10,30,(4:32) J.Freeman pass incomplete deep right to V.Jackson.,10,15,2012 -20121118_TB@CAR,4,4,31,TB,CAR,2,10,30,(4:31) (Shotgun) J.Freeman pass short middle to D.Clark to CAR 22 for 8 yards (T.Davis).,10,15,2012 -20121118_TB@CAR,4,4,9,TB,CAR,3,2,22,(4:09) (No Huddle Shotgun) J.Freeman pass incomplete short middle to T.Underwood.,10,15,2012 -20121118_TB@CAR,4,4,6,TB,CAR,4,2,22,(4:06) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,15,2012 -20121118_TB@CAR,4,4,6,TB,CAR,,,22,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,15,2012 -20121118_TB@CAR,4,4,3,CAR,TB,1,10,80,(4:03) C.Newton pass short left to S.Smith to CAR 31 for 11 yards (L.Johnson).,15,13,2012 -20121118_TB@CAR,4,3,19,CAR,TB,1,10,69,(3:19) J.Stewart up the middle to CAR 31 for no gain (R.Miller).,15,13,2012 -20121118_TB@CAR,4,3,14,CAR,TB,2,10,69,(3:14) (Shotgun) J.Stewart up the middle to CAR 30 for -1 yards (R.Miller; D.Te'o-Nesheim).,15,13,2012 -20121118_TB@CAR,4,3,9,CAR,TB,3,11,70,(3:09) (Shotgun) C.Newton pass short left to L.Murphy ran ob at CAR 42 for 12 yards.,15,13,2012 -20121118_TB@CAR,4,3,3,CAR,TB,1,10,58,(3:03) J.Stewart up the middle to CAR 42 for no gain (L.David).,15,13,2012 -20121118_TB@CAR,4,2,19,CAR,TB,2,10,58,(2:19) (Shotgun) C.Newton up the middle to CAR 40 for -2 yards (M.Barron).,15,13,2012 -20121118_TB@CAR,4,2,0,CAR,TB,3,12,60,(2:00) (Shotgun) C.Newton right end to TB 49 for 11 yards (A.Black).,15,13,2012 -20121118_TB@CAR,4,1,9,CAR,TB,4,1,49,(1:09) B.Nortman punts 49 yards to end zone Center-J.Jansen Touchback.,15,13,2012 -20121118_TB@CAR,4,1,2,TB,CAR,1,10,80,(1:02) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (J.Thomas).,13,15,2012 -20121118_TB@CAR,4,0,56,TB,CAR,2,10,80,(:56) (Shotgun) J.Freeman pass deep middle to T.Underwood to TB 38 for 18 yards (T.Davis). PENALTY on CAR-T.Davis Unnecessary Roughness 15 yards enforced at TB 38. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,15,2012 -20121118_TB@CAR,4,0,45,TB,CAR,1,10,47,(:45) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at CAR 41 for 6 yards (J.Norman).,13,15,2012 -20121118_TB@CAR,4,0,38,TB,CAR,2,4,41,(:38) (Shotgun) J.Freeman pass incomplete short middle to D.Clark.,13,15,2012 -20121118_TB@CAR,4,0,32,TB,CAR,3,4,41,(:32) (Shotgun) J.Freeman pass short right to V.Jackson to CAR 24 for 17 yards (J.Anderson).,13,15,2012 -20121118_TB@CAR,4,0,32,TB,CAR,1,10,24,(:32) (No Huddle Shotgun) J.Freeman spiked the ball to stop the clock.,13,15,2012 -20121118_TB@CAR,4,0,20,TB,CAR,2,10,24,(:20) (Shotgun) J.Freeman pass deep middle to V.Jackson for 24 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,15,2012 -20121118_TB@CAR,4,0,20,TB,CAR,,,24,TWO-POINT CONVERSION ATTEMPT. J.Freeman pass to V.Jackson is complete. ATTEMPT SUCCEEDS.,13,15,2012 -20121118_TB@CAR,4,0,20,TB,CAR,,,24,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,21,15,2012 -20121118_TB@CAR,4,0,12,CAR,TB,1,10,80,(:12) C.Newton kneels to CAR 18 for -2 yards.,15,21,2012 -20121118_TB@CAR,5,0,0,CAR,TB,,,80,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,15,21,2012 -20121118_TB@CAR,5,0,0,TB,CAR,1,10,80,(15:00) D.Martin up the middle to TB 31 for 11 yards (T.Davis; H.Nakamura).,21,15,2012 -20121118_TB@CAR,5,-1,23,TB,CAR,1,10,69,(14:23) D.Martin right guard to CAR 42 for 27 yards (H.Nakamura).,21,15,2012 -20121118_TB@CAR,5,-2,41,TB,CAR,1,10,42,(13:41) D.Martin left guard to CAR 41 for 1 yard (A.Neblett).,21,15,2012 -20121118_TB@CAR,5,-2,8,TB,CAR,2,9,41,(13:08) J.Freeman pass short right to M.Williams pushed ob at CAR 28 for 13 yards (C.Godfrey).,21,15,2012 -20121118_TB@CAR,5,-3,46,TB,CAR,1,10,28,(12:46) D.Martin left guard to CAR 21 for 7 yards (N.Chandler).,21,15,2012 -20121118_TB@CAR,5,-3,7,TB,CAR,2,3,21,(12:07) D.Martin right guard to CAR 19 for 2 yards (J.Anderson; C.Godfrey).,21,15,2012 -20121118_TB@CAR,5,-4,18,TB,CAR,3,1,19,(11:18) J.Freeman pass short left to V.Jackson pushed ob at CAR 15 for 4 yards (J.Norman).,21,15,2012 -20121118_TB@CAR,5,-5,48,TB,CAR,1,10,15,(10:48) (Shotgun) J.Freeman pass short left to D.Clark for 15 yards TOUCHDOWN.,21,15,2012 -20121118_TB@CAR,5,-5,48,TB,CAR,,,15,                      ,21,15,2012 -20121118_CLE@DAL,1,-5,0,CLE,DAL,,,15,P.Dawson kicks 73 yards from CLV 35 to DAL -8. L.Dunbar Touchback.,0,0,2012 -20121118_CLE@DAL,1,60,0,DAL,CLE,1,10,80,(15:00) F.Jones right tackle to DAL 21 for 1 yard (F.Rucker).,0,0,2012 -20121118_CLE@DAL,1,59,28,DAL,CLE,2,9,79,(14:28) (Shotgun) T.Romo pass short middle to J.Witten to DAL 30 for 9 yards (J.Johnson; K.Maiava).,0,0,2012 -20121118_CLE@DAL,1,58,49,DAL,CLE,1,10,70,(13:49) T.Romo pass short right to F.Jones to DAL 35 for 5 yards (B.Skrine). Pass complete after play action and roll right.,0,0,2012 -20121118_CLE@DAL,1,58,10,DAL,CLE,2,5,65,(13:10) F.Jones right guard to DAL 39 for 4 yards (J.Johnson).,0,0,2012 -20121118_CLE@DAL,1,57,29,DAL,CLE,3,1,61,(12:29) (Shotgun) T.Romo pass incomplete deep left to M.Austin.,0,0,2012 -20121118_CLE@DAL,1,57,24,DAL,CLE,4,1,61,(12:24) (Punt formation) B.Moorman punts 33 yards to CLV 28 Center-L.Ladouceur out of bounds.,0,0,2012 -20121118_CLE@DAL,1,57,16,CLE,DAL,1,10,72,(12:16) T.Richardson up the middle to CLV 28 for no gain (D.McCray).,0,0,2012 -20121118_CLE@DAL,1,56,41,CLE,DAL,2,10,72,"(11:41) B.Weeden pass short right to G.Little to CLV 42 for 14 yards (D.McCray). DAL-D.McCray was injured during the play. His return is Questionable. Pass complete on a ""curl.""",0,0,2012 -20121118_CLE@DAL,1,56,19,CLE,DAL,1,10,58,(11:19) B.Weeden pass incomplete short left to J.Cribbs. Quick out sideline.,0,0,2012 -20121118_CLE@DAL,1,56,16,CLE,DAL,2,10,58,(11:16) T.Richardson up the middle to CLV 45 for 3 yards (M.Spears; J.Ratliff).,0,0,2012 -20121118_CLE@DAL,1,55,39,CLE,DAL,3,7,55,(10:39) (Shotgun) B.Weeden pass short right to J.Cooper ran ob at DAL 49 for 6 yards.,0,0,2012 -20121118_CLE@DAL,1,55,28,CLE,DAL,4,1,49,(10:28) (Punt formation) R.Hodges punts 35 yards to DAL 14 Center-C.Yount fair catch by D.Harris. Injury update: Dallas' Danny McCray has a right hip injury; he may return.,0,0,2012 -20121118_CLE@DAL,1,55,19,DAL,CLE,1,10,86,(10:19) T.Romo pass incomplete short right to F.Jones. PENALTY on DAL-D.Dockery Offensive Holding 7 yards enforced at DAL 14 - No Play.,0,0,2012 -20121118_CLE@DAL,1,55,15,DAL,CLE,1,17,93,(10:15) F.Jones left end to DAL 12 for 5 yards (U.Young).,0,0,2012 -20121118_CLE@DAL,1,54,42,DAL,CLE,2,12,88,(9:42) (Shotgun) T.Romo pass short left to J.Witten pushed ob at DAL 20 for 8 yards (C.Robertson). Pass complete on a crossing pattern.,0,0,2012 -20121118_CLE@DAL,1,54,15,DAL,CLE,3,4,80,(9:15) (Shotgun) T.Romo pass incomplete short left to J.Witten. Pass incomplete sideline; Hagg closest defender.,0,0,2012 -20121118_CLE@DAL,1,54,9,DAL,CLE,4,4,80,(9:09) (Punt formation) B.Moorman punts 48 yards to CLV 32 Center-L.Ladouceur. J.Cribbs to DAL 48 for 20 yards (L.Vickers). Return the punt outside the yard line markers right side of the field.,0,0,2012 -20121118_CLE@DAL,1,53,56,CLE,DAL,1,10,48,(8:56) T.Richardson right guard to DAL 41 for 7 yards (G.Sensabaugh).,0,0,2012 -20121118_CLE@DAL,1,53,22,CLE,DAL,2,3,41,(8:22) T.Richardson right end to DAL 40 for 1 yard (J.Hatcher).,0,0,2012 -20121118_CLE@DAL,1,52,39,CLE,DAL,3,2,40,(7:39) B.Weeden pass short left to T.Richardson pushed ob at DAL 33 for 7 yards (A.Spencer). Pass complete in the flat.,0,0,2012 -20121118_CLE@DAL,1,52,11,CLE,DAL,1,10,33,"(7:11) B.Weeden pass short left to J.Gordon to DAL 20 for 13 yards (E.Frampton). Pass complete on a ""slant.""",0,0,2012 -20121118_CLE@DAL,1,51,39,CLE,DAL,1,10,20,(6:39) T.Richardson left tackle to DAL 13 for 7 yards (D.Ware).,0,0,2012 -20121118_CLE@DAL,1,51,2,CLE,DAL,2,3,13,(6:02) T.Richardson right tackle to DAL 11 for 2 yards (T.Crawford).,0,0,2012 -20121118_CLE@DAL,1,50,22,CLE,DAL,3,1,11,(5:22) C.Ogbonnaya up the middle to DAL 10 for 1 yard (J.Hatcher J.Price-Brent).,0,0,2012 -20121118_CLE@DAL,1,49,54,CLE,DAL,1,10,10,(4:54) B.Weeden pass incomplete short right to J.Cameron. Pass off play action roll right; ball thrown out of the back of the end zone.,0,0,2012 -20121118_CLE@DAL,1,49,46,CLE,DAL,2,10,10,(4:46) T.Richardson left guard to DAL 10 for no gain (J.Hatcher).,0,0,2012 -20121118_CLE@DAL,1,49,7,CLE,DAL,3,10,10,(4:07) (Shotgun) B.Weeden pass short middle to B.Watson for 10 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,0,0,2012 -20121118_CLE@DAL,1,49,7,CLE,DAL,,,10,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges. PENALTY on DAL-G.Sensabaugh Defensive Offside 5 yards enforced between downs.,0,0,2012 -20121118_CLE@DAL,1,49,7,CLE,DAL,,,10,P.Dawson kicks 60 yards from CLV 40 to end zone Touchback. Ball was kicked over the goal line.,7,0,2012 -20121118_CLE@DAL,1,49,1,DAL,CLE,1,10,80,(4:01) F.Jones left tackle to DAL 20 for no gain (P.Taylor).,0,7,2012 -20121118_CLE@DAL,1,48,27,DAL,CLE,2,10,80,(3:27) T.Romo scrambles up the middle to DAL 25 for 5 yards (K.Maiava). PENALTY on CLV-P.Taylor Defensive Holding 5 yards enforced at DAL 25.,0,7,2012 -20121118_CLE@DAL,1,47,59,DAL,CLE,1,10,70,(2:59) T.Romo pass incomplete short right to F.Jones [P.Taylor]. Pass incomplete in the flat after Romo avoids heavy pressure.,0,7,2012 -20121118_CLE@DAL,1,47,49,DAL,CLE,2,10,70,(2:49) T.Romo sacked at DAL 20 for -10 yards (C.Robertson). PENALTY on CLV-S.Brown Illegal Contact 5 yards enforced at DAL 30 - No Play.,0,7,2012 -20121118_CLE@DAL,1,47,31,DAL,CLE,1,10,65,"(2:31) (Shotgun) T.Romo pass short right to D.Bryant to DAL 39 for 4 yards (J.Johnson). Pass complete on a ""button hook.""",0,7,2012 -20121118_CLE@DAL,1,46,45,DAL,CLE,2,6,61,(1:45) L.Dunbar left tackle to DAL 34 for -5 yards (J.Parker).,0,7,2012 -20121118_CLE@DAL,1,46,7,DAL,CLE,3,11,66,(1:07) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete sideline at the Dallas 49; Brown closest defender.,0,7,2012 -20121118_CLE@DAL,1,46,1,DAL,CLE,4,11,66,(1:01) (Punt formation) B.Moorman punts 50 yards to CLV 16 Center-L.Ladouceur out of bounds.,0,7,2012 -20121118_CLE@DAL,1,45,53,CLE,DAL,1,10,84,(:53) T.Richardson up the middle to CLV 21 for 5 yards (J.Ratliff).,7,0,2012 -20121118_CLE@DAL,1,45,22,CLE,DAL,2,5,79,"(:22) B.Weeden pass short left to T.Richardson pushed ob at CLV 48 for 27 yards (M.Claiborne). Pass complete in the ""flat.""",7,0,2012 -20121118_CLE@DAL,2,45,0,CLE,DAL,1,10,52,(15:00) T.Richardson right tackle to DAL 47 for 5 yards (B.Carter).,7,0,2012 -20121118_CLE@DAL,2,44,21,CLE,DAL,2,5,47,(14:21) (Shotgun) B.Weeden pass incomplete short right to J.Gordon (B.Carr). Pass knocked away sideline at the Dallas 35.,7,0,2012 -20121118_CLE@DAL,2,44,16,CLE,DAL,3,5,47,"(14:16) (Shotgun) B.Weeden pass short right to J.Gordon to DAL 34 for 13 yards (O.Scandrick). Pass complete on a ""drag"" route.",7,0,2012 -20121118_CLE@DAL,2,43,39,CLE,DAL,1,10,34,(13:39) B.Weeden pass short right to T.Richardson to DAL 37 for -3 yards (B.Carter). Pass complete flat.,7,0,2012 -20121118_CLE@DAL,2,43,0,CLE,DAL,2,13,37,(13:00) T.Richardson right guard to DAL 33 for 4 yards (J.Ratliff).,7,0,2012 -20121118_CLE@DAL,2,42,20,CLE,DAL,3,9,33,(12:20) (Shotgun) B.Weeden pass incomplete deep left to J.Cooper. Pass incomplete sideline at the Dallas 15.,7,0,2012 -20121118_CLE@DAL,2,42,13,CLE,DAL,4,9,33,(12:13) (Field Goal formation) P.Dawson 51 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,7,0,2012 -20121118_CLE@DAL,2,42,13,CLE,DAL,,,33,P.Dawson kicks 73 yards from CLV 35 to DAL -8. L.Dunbar Touchback.,10,0,2012 -20121118_CLE@DAL,2,42,9,DAL,CLE,1,10,80,(12:09) T.Romo pass short right to J.Witten to DAL 26 for 6 yards (D.Jackson).,0,10,2012 -20121118_CLE@DAL,2,41,33,DAL,CLE,2,4,74,(11:33) F.Jones left tackle to DAL 32 for 6 yards (S.Brown).,0,10,2012 -20121118_CLE@DAL,2,40,55,DAL,CLE,1,10,68,(10:55) (Shotgun) F.Jones left end pushed ob at DAL 39 for 7 yards (T.Ward). PENALTY on DAL-D.Bryant Offensive Holding 10 yards enforced at DAL 32 - No Play. Penalty on DAL-B.Bass Offensive Holding declined.,0,10,2012 -20121118_CLE@DAL,2,40,34,DAL,CLE,1,20,78,(10:34) (Shotgun) T.Romo pass incomplete short left to M.Austin. Pass incomplete sideline.,0,10,2012 -20121118_CLE@DAL,2,40,33,DAL,CLE,2,20,78,(10:33) (Shotgun) T.Romo pass short middle to C.Beasley to DAL 30 for 8 yards (E.Hagg).,0,10,2012 -20121118_CLE@DAL,2,39,53,DAL,CLE,3,12,70,(9:53) (Shotgun) T.Romo sacked at DAL 20 for -10 yards (J.Parker).,0,10,2012 -20121118_CLE@DAL,2,39,32,DAL,CLE,4,22,80,(9:32) (Punt formation) B.Moorman punts 53 yards to CLV 27 Center-L.Ladouceur out of bounds. Injury update: Dallas' Tyron Smith has ankle injury; he may return.,0,10,2012 -20121118_CLE@DAL,2,39,23,CLE,DAL,1,10,73,(9:23) T.Richardson right end to CLV 33 for 6 yards (E.Sims; B.Bass).,10,0,2012 -20121118_CLE@DAL,2,38,51,CLE,DAL,2,4,67,(8:51) B.Weeden pass short right to B.Watson to CLV 43 for 10 yards (B.Carr).,10,0,2012 -20121118_CLE@DAL,2,38,16,CLE,DAL,1,10,57,(8:16) T.Richardson up the middle to CLV 47 for 4 yards (A.Spencer).,10,0,2012 -20121118_CLE@DAL,2,37,35,CLE,DAL,2,6,53,(7:35) B.Weeden pass short right to J.Gordon pushed ob at CLV 45 for -2 yards (A.Spencer).,10,0,2012 -20121118_CLE@DAL,2,37,4,CLE,DAL,3,8,55,(7:04) (Shotgun) B.Weeden pass incomplete short left to M.Massaquoi. PENALTY on DAL-O.Scandrick Unnecessary Roughness 15 yards enforced at CLV 45.,10,0,2012 -20121118_CLE@DAL,2,36,58,CLE,DAL,1,10,40,(6:58) M.Hardesty up the middle to DAL 33 for 7 yards (A.Spencer).,10,0,2012 -20121118_CLE@DAL,2,36,24,CLE,DAL,2,3,33,(6:24) M.Hardesty right tackle to DAL 21 for 12 yards (O.Scandrick; C.Peprah).,10,0,2012 -20121118_CLE@DAL,2,35,55,CLE,DAL,1,10,21,(5:55) B.Weeden pass incomplete short middle to B.Watson.,10,0,2012 -20121118_CLE@DAL,2,35,48,CLE,DAL,2,10,21,(5:48) T.Richardson left tackle to DAL 18 for 3 yards (B.Carter).,10,0,2012 -20121118_CLE@DAL,2,35,18,CLE,DAL,3,7,18,(5:18) B.Weeden pass incomplete short left to B.Watson. Pass incomplete sideline at the Dallas 9.,10,0,2012 -20121118_CLE@DAL,2,35,18,CLE,DAL,4,7,18,(5:18) (Field Goal formation) P.Dawson 37 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,0,2012 -20121118_CLE@DAL,2,35,18,CLE,DAL,,,18,P.Dawson kicks 70 yards from CLV 35 to DAL -5. L.Dunbar Touchback.,13,0,2012 -20121118_CLE@DAL,2,35,7,DAL,CLE,1,10,80,(5:07) T.Romo sacked at DAL 14 for -6 yards (J.Hughes).,0,13,2012 -20121118_CLE@DAL,2,34,37,DAL,CLE,2,16,86,(4:37) (Shotgun) T.Romo pass short left to D.Bryant ran ob at DAL 29 for 15 yards (D.Jackson).,0,13,2012 -20121118_CLE@DAL,2,33,59,DAL,CLE,3,1,71,(3:59) (Shotgun) F.Jones up the middle to DAL 30 for 1 yard (T.Wade C.Robertson). Injury update: Browns' Josh Cooper has a knee injury; return probable. Cleveland challenged the first down ruling and the play was Upheld. (Timeout #2.),0,13,2012 -20121118_CLE@DAL,2,33,11,DAL,CLE,1,10,70,"(3:11) (Shotgun) T.Romo pass short right to D.Bryant to DAL 36 for 6 yards (B.Skrine). Pass complete on a ""curl.""",0,13,2012 -20121118_CLE@DAL,2,32,43,DAL,CLE,2,4,64,(2:43) (No Huddle Shotgun) T.Romo pass incomplete deep right to D.Bryant. PENALTY on CLV-B.Skrine Illegal Contact 5 yards enforced at DAL 36 - No Play.,0,13,2012 -20121118_CLE@DAL,2,32,35,DAL,CLE,1,10,59,(2:35) (Shotgun) T.Romo pass incomplete deep right to D.Bryant. PENALTY on CLV-B.Skrine Illegal Contact 5 yards enforced at DAL 41 - No Play.,0,13,2012 -20121118_CLE@DAL,2,32,29,DAL,CLE,1,10,54,(2:29) (Shotgun) T.Romo pass short right to F.Jones to CLV 47 for 7 yards (C.Robertson B.Skrine).,0,13,2012 -20121118_CLE@DAL,2,32,4,DAL,CLE,2,3,47,(2:04) (No Huddle Shotgun) T.Romo pass short right to L.Dunbar to CLV 41 for 6 yards (D.Jackson). Pass complete right sideline.,0,13,2012 -20121118_CLE@DAL,2,32,0,DAL,CLE,1,10,41,(2:00) (Shotgun) T.Romo pass incomplete short left to M.Austin (T.Wade). Pass was knocked down at the line of scrimmage.,0,13,2012 -20121118_CLE@DAL,2,31,57,DAL,CLE,2,10,41,(1:57) (Shotgun) T.Romo pass incomplete deep right to K.Ogletree. Pass incomplete 2 yards deep end zone.,0,13,2012 -20121118_CLE@DAL,2,31,51,DAL,CLE,3,10,41,(1:51) (Shotgun) T.Romo sacked at CLV 48 for -7 yards (J.Sheard).,0,13,2012 -20121118_CLE@DAL,2,31,38,DAL,CLE,4,17,48,(1:38) (Punt formation) B.Moorman punts 38 yards to CLV 10 Center-L.Ladouceur out of bounds.,0,13,2012 -20121118_CLE@DAL,2,31,31,CLE,DAL,1,10,90,(1:31) T.Richardson left end to CLV 19 for 9 yards (B.Carter).,13,0,2012 -20121118_CLE@DAL,2,30,57,CLE,DAL,2,1,81,(:57) T.Richardson left tackle to CLV 22 for 3 yards (E.Sims).,13,0,2012 -20121118_CLE@DAL,2,30,20,CLE,DAL,1,10,78,(:20) T.Richardson up the middle to CLV 25 for 3 yards (J.Hatcher; M.Spears).,13,0,2012 -20121118_CLE@DAL,3,30,0,DAL,CLE,,,78,D.Bailey kicks 60 yards from DAL 35 to CLV 5. J.Cribbs to CLV 11 for 6 yards (E.Frampton).,0,13,2012 -20121118_CLE@DAL,3,29,55,CLE,DAL,1,10,89,(14:55) T.Richardson left tackle to CLV 16 for 5 yards (D.Connor).,13,0,2012 -20121118_CLE@DAL,3,29,12,CLE,DAL,2,5,84,(14:12) (Shotgun) B.Weeden pass incomplete short right to M.Massaquoi. Pass incomplete at the Cleveland 22; Scandrick closest defender.,13,0,2012 -20121118_CLE@DAL,3,29,7,CLE,DAL,3,5,84,(14:07) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 23 for 7 yards (O.Scandrick).,13,0,2012 -20121118_CLE@DAL,3,28,33,CLE,DAL,1,10,77,(13:33) T.Richardson up the middle to CLV 27 for 4 yards (J.Hatcher).,13,0,2012 -20121118_CLE@DAL,3,27,55,CLE,DAL,2,6,73,(12:55) B.Weeden pass short right to T.Richardson to CLV 33 for 6 yards (B.Carr).,13,0,2012 -20121118_CLE@DAL,3,27,25,CLE,DAL,1,10,67,(12:25) M.Hardesty up the middle to CLV 36 for 3 yards (T.Crawford).,13,0,2012 -20121118_CLE@DAL,3,26,51,CLE,DAL,2,7,64,(11:51) B.Weeden pass deep middle to G.Little pushed ob at DAL 42 for 22 yards (G.Sensabaugh).,13,0,2012 -20121118_CLE@DAL,3,26,16,CLE,DAL,1,10,42,(11:16) M.Hardesty up the middle to DAL 41 for 1 yard (V.Butler).,13,0,2012 -20121118_CLE@DAL,3,25,40,CLE,DAL,2,9,41,(10:40) B.Weeden pass incomplete deep right to J.Gordon. Pass was thrown out of bounds; Weeden was outside the tackle box.,13,0,2012 -20121118_CLE@DAL,3,25,31,CLE,DAL,3,9,41,(10:31) (Shotgun) B.Weeden sacked at DAL 48 for -7 yards (sack split by J.Hatcher and D.Ware).,13,0,2012 -20121118_CLE@DAL,3,25,10,CLE,DAL,4,16,48,(10:10) (Punt formation) R.Hodges punts 48 yards to end zone Center-C.Yount Touchback.,13,0,2012 -20121118_CLE@DAL,3,25,0,DAL,CLE,1,10,80,(10:00) (Shotgun) T.Romo pass short left to D.Bryant to DAL 33 for 13 yards (S.Brown).,0,13,2012 -20121118_CLE@DAL,3,24,35,DAL,CLE,1,10,67,(9:35) F.Jones left tackle to DAL 45 for 12 yards (T.Ward; T.Gipson).,0,13,2012 -20121118_CLE@DAL,3,23,52,DAL,CLE,1,10,55,(8:52) F.Jones up the middle to DAL 46 for 1 yard (A.Rubin).,0,13,2012 -20121118_CLE@DAL,3,23,12,DAL,CLE,2,9,54,"(8:12) (Shotgun) T.Romo pass short middle to M.Austin to CLV 42 for 12 yards (T.Wade). Pass complete on a ""crossing"" pattern.",0,13,2012 -20121118_CLE@DAL,3,22,36,DAL,CLE,1,10,42,(7:36) (Shotgun) T.Romo pass short left to M.Austin to CLV 38 for 4 yards (S.Brown).,0,13,2012 -20121118_CLE@DAL,3,21,54,DAL,CLE,2,6,38,(6:54) T.Romo pass incomplete short middle to L.Vickers. PENALTY on CLV-B.Winn Face Mask (15 Yards) 15 yards enforced at CLV 38 - No Play.,0,13,2012 -20121118_CLE@DAL,3,21,46,DAL,CLE,1,10,23,(6:46) L.Dunbar left tackle to CLV 19 for 4 yards (B.Winn).,0,13,2012 -20121118_CLE@DAL,3,21,8,DAL,CLE,2,6,19,(6:08) T.Romo sacked at CLV 26 for -7 yards (sack split by K.Maiava and U.Young).,0,13,2012 -20121118_CLE@DAL,3,20,34,DAL,CLE,3,13,26,(5:34) (Shotgun) T.Romo scrambles up the middle to CLV 11 for 15 yards (T.Wade). PENALTY on DAL-J.Parnell Offensive Holding 10 yards enforced at CLV 26 - No Play.,0,13,2012 -20121118_CLE@DAL,3,20,2,DAL,CLE,3,23,36,(5:02) (Shotgun) T.Romo pass short middle to J.Witten to CLV 26 for 10 yards (E.Hagg).,0,13,2012 -20121118_CLE@DAL,3,19,22,DAL,CLE,4,13,26,(4:22) (Field Goal formation) D.Bailey 44 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,13,2012 -20121118_CLE@DAL,3,19,22,DAL,CLE,,,26,D.Bailey kicks onside 21 yards from DAL 35 to CLV 44. J.Johnson (didn't try to advance) to CLV 44 for no gain (L.Dunbar).,3,13,2012 -20121118_CLE@DAL,3,19,15,CLE,DAL,1,10,56,(4:15) T.Richardson left tackle to CLV 45 for 1 yard (D.McCray).,13,3,2012 -20121118_CLE@DAL,3,18,43,CLE,DAL,2,9,55,(3:43) T.Richardson left guard to DAL 50 for 5 yards (D.Ware). DAL-D.Ware was injured during the play. His return is Probable.,13,3,2012 -20121118_CLE@DAL,3,18,8,CLE,DAL,3,4,50,"(3:08) (Shotgun) B.Weeden pass incomplete short middle to G.Little. Pass incomplete on a ""crossing"" pattern.",13,3,2012 -20121118_CLE@DAL,3,18,0,CLE,DAL,4,4,50,(3:00) (Punt formation) R.Hodges punts 39 yards to DAL 11 Center-C.Yount downed by CLV-C.Robertson.,13,3,2012 -20121118_CLE@DAL,3,17,48,DAL,CLE,1,10,89,"(2:48) (Shotgun) T.Romo pass short left to D.Bryant to DAL 17 for 6 yards (S.Brown T.Wade). Pass complete on a ""curl.""",3,13,2012 -20121118_CLE@DAL,3,17,12,DAL,CLE,2,4,83,"(2:12) (Shotgun) T.Romo pass deep left to D.Bryant pushed ob at DAL 47 for 30 yards (T.Gipson). Pass complete on a ""GO"" route.",3,13,2012 -20121118_CLE@DAL,3,16,42,DAL,CLE,1,10,53,"(1:42) (Shotgun) T.Romo pass short right to D.Bryant to CLV 46 for 7 yards (B.Skrine). Pass complete on a ""curl"" route.",3,13,2012 -20121118_CLE@DAL,3,15,55,DAL,CLE,2,3,46,"(:55) (Shotgun) T.Romo pass short right to K.Ogletree to CLV 36 for 10 yards (B.Skrine). Pass complete on a ""button hook.""",3,13,2012 -20121118_CLE@DAL,3,15,18,DAL,CLE,1,10,36,(:18) (Shotgun) T.Romo pass incomplete short right to K.Ogletree. PENALTY on CLV-T.Ward Defensive Pass Interference 13 yards enforced at CLV 36 - No Play.,3,13,2012 -20121118_CLE@DAL,3,15,12,DAL,CLE,1,10,23,(:12) (Shotgun) T.Romo pass short right to D.Harris to CLV 18 for 5 yards (B.Skrine).,3,13,2012 -20121118_CLE@DAL,4,15,0,DAL,CLE,2,5,18,(15:00) (Shotgun) T.Romo pass short right to J.Witten pushed ob at CLV 13 for 5 yards (T.Ward).,3,13,2012 -20121118_CLE@DAL,4,14,32,DAL,CLE,1,10,13,"(14:32) (Shotgun) T.Romo pass short middle to D.Bryant to CLV 2 for 11 yards (T.Wade). Pass complete on a ""quick slant.""",3,13,2012 -20121118_CLE@DAL,4,13,54,DAL,CLE,1,2,2,(13:54) F.Jones right tackle for 2 yards TOUCHDOWN.,3,13,2012 -20121118_CLE@DAL,4,13,54,DAL,CLE,,,2,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman. Injury update: Charlie Peprah has been taken to the locker room for further evaluation. His return is questionable.,3,13,2012 -20121118_CLE@DAL,4,13,54,DAL,CLE,,,2,D.Bailey kicks 68 yards from DAL 35 to CLV -3. J.Cribbs to CLV 25 for 28 yards (D.McCray). FUMBLES (D.McCray) RECOVERED by DAL-E.Sims at CLV 26. Penalty on CLV-A.Smith Offensive Holding declined. Cleveland challenged the fumble ruling and the play was REVERSED. D.Bailey kicks 68 yards from DAL 35 to CLV -3. J.Cribbs to CLV 14 for 17 yards (D.McCray). PENALTY on CLV-A.Smith Offensive Holding 7 yards enforced at CLV 14.,10,13,2012 -20121118_CLE@DAL,4,13,46,CLE,DAL,1,10,93,(13:46) B.Weeden pass incomplete short middle to B.Watson (J.Price-Brent) [D.Ware].,13,10,2012 -20121118_CLE@DAL,4,13,39,CLE,DAL,2,10,93,(13:39) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 12 for 5 yards (B.Carr).,13,10,2012 -20121118_CLE@DAL,4,12,54,CLE,DAL,3,5,88,(12:54) (Shotgun) T.Richardson left end to CLV 16 for 4 yards (G.Sensabaugh). FUMBLES (G.Sensabaugh) and recovers at CLV 16.,13,10,2012 -20121118_CLE@DAL,4,12,4,CLE,DAL,4,1,84,(12:04) (Punt formation) R.Hodges punts 49 yards to DAL 35 Center-C.Yount. D.Harris to DAL 42 for 7 yards (J.Bademosi).,13,10,2012 -20121118_CLE@DAL,4,11,57,DAL,CLE,1,10,58,(11:57) (Shotgun) T.Romo pass incomplete short middle to J.Witten. PENALTY on CLV-J.Sheard Defensive Holding 5 yards enforced at DAL 42 - No Play.,10,13,2012 -20121118_CLE@DAL,4,11,50,DAL,CLE,1,10,53,(11:50) (Shotgun) F.Jones right guard to CLV 44 for 9 yards (B.Skrine; D.Jackson).,10,13,2012 -20121118_CLE@DAL,4,11,12,DAL,CLE,2,1,44,"(11:12) (Shotgun) T.Romo pass incomplete deep right to D.Bryant (B.Skrine) [F.Rucker]. Pass incomplete on a ""FLY"" pattern; Skrine closest defender on the play.",10,13,2012 -20121118_CLE@DAL,4,11,4,DAL,CLE,3,1,44,(11:04) F.Jones left tackle to CLV 44 for no gain (A.Rubin).,10,13,2012 -20121118_CLE@DAL,4,10,30,DAL,CLE,4,1,44,(10:30) T.Romo pass short right to L.Vickers to CLV 41 for 3 yards (D.Jackson). Pass complete in the flat off play action.,10,13,2012 -20121118_CLE@DAL,4,9,51,DAL,CLE,1,10,41,(9:51) T.Romo pass short right to L.Dunbar to CLV 41 for no gain (J.Sheard).,10,13,2012 -20121118_CLE@DAL,4,8,53,DAL,CLE,2,10,41,(8:53) (Shotgun) T.Romo pass short middle to D.Bryant to CLV 37 for 4 yards (C.Robertson A.Rubin).,10,13,2012 -20121118_CLE@DAL,4,8,10,DAL,CLE,3,6,37,(8:10) (Shotgun) T.Romo pass short middle to J.Witten to CLV 28 for 9 yards (E.Hagg).,10,13,2012 -20121118_CLE@DAL,4,7,27,DAL,CLE,1,10,28,(7:27) T.Romo pass incomplete short right to D.Harris. PENALTY on CLV-B.Skrine Defensive Pass Interference 9 yards enforced at CLV 28 - No Play.,10,13,2012 -20121118_CLE@DAL,4,7,21,DAL,CLE,1,10,19,(7:21) (Shotgun) T.Romo sacked at CLV 28 for -9 yards (A.Rubin).,10,13,2012 -20121118_CLE@DAL,4,6,54,DAL,CLE,2,19,28,(6:54) (Shotgun) T.Romo pass deep left to D.Bryant for 28 yards TOUCHDOWN [J.Parker].,10,13,2012 -20121118_CLE@DAL,4,6,54,DAL,CLE,,,28,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,13,2012 -20121118_CLE@DAL,4,6,54,DAL,CLE,,,28,D.Bailey kicks 71 yards from DAL 35 to CLV -6. J.Cribbs to CLV 22 for 28 yards (D.McCray). PENALTY on CLV-L.Fort Offensive Holding 10 yards enforced at CLV 22.,17,13,2012 -20121118_CLE@DAL,4,6,39,CLE,DAL,1,10,88,(6:39) T.Richardson left tackle to CLV 14 for 2 yards (D.McCray A.Spencer).,13,17,2012 -20121118_CLE@DAL,4,6,7,CLE,DAL,2,8,86,(6:07) B.Weeden pass incomplete short middle to B.Watson (A.Spencer) [J.Ratliff]. PENALTY on DAL-J.Ratliff Unsportsmanlike Conduct 15 yards enforced at CLV 14.,13,17,2012 -20121118_CLE@DAL,4,5,58,CLE,DAL,1,10,71,(5:58) B.Weeden pass incomplete short right to T.Richardson. Pass thrown in the flat; Spencer closest defender; heavy pressure by Ware,13,17,2012 -20121118_CLE@DAL,4,5,52,CLE,DAL,2,10,71,(5:52) (Shotgun) B.Weeden sacked at CLV 18 for -11 yards (A.Spencer). FUMBLES (A.Spencer) RECOVERED by DAL-A.Spencer at CLV 18.,13,17,2012 -20121118_CLE@DAL,4,5,45,DAL,CLE,1,10,18,(5:45) F.Jones left end to CLV 18 for no gain (D.Jackson; B.Skrine). PENALTY on DAL-M.Bernadeau Offensive Holding 10 yards enforced at CLV 18 - No Play. Penalty on DAL-L.Vickers Offensive Holding declined.,17,13,2012 -20121118_CLE@DAL,4,5,10,DAL,CLE,1,20,28,(5:10) (Shotgun) T.Romo sacked at CLV 38 for -10 yards (F.Rucker). FUMBLES (F.Rucker) RECOVERED by CLV-C.Robertson at CLV 35. C.Robertson to CLV 35 for no gain (J.Parnell).,17,13,2012 -20121118_CLE@DAL,4,5,1,CLE,DAL,1,10,65,(5:01) B.Weeden pass deep left to G.Little to DAL 48 for 17 yards (B.Carr).,13,17,2012 -20121118_CLE@DAL,4,4,54,CLE,DAL,1,10,48,(4:54) B.Weeden pass short right to A.Smith pushed ob at DAL 46 for 2 yards (B.Carr).,13,17,2012 -20121118_CLE@DAL,4,4,47,CLE,DAL,2,8,46,"(4:47) B.Weeden pass deep middle to J.Gordon to DAL 23 for 23 yards (G.Sensabaugh). Pass complete on ""post"" pattern.",13,17,2012 -20121118_CLE@DAL,4,4,10,CLE,DAL,1,10,23,(4:10) T.Richardson up the middle to DAL 16 for 7 yards (D.Connor; B.Carter).,13,17,2012 -20121118_CLE@DAL,4,3,31,CLE,DAL,2,3,16,(3:31) T.Richardson right tackle to DAL 16 for no gain (D.McCray).,13,17,2012 -20121118_CLE@DAL,4,2,46,CLE,DAL,3,3,16,"(2:46) (Shotgun) B.Weeden pass short middle to B.Watson to DAL 6 for 10 yards (M.Claiborne). Pass complete on a ""drag"" route.",13,17,2012 -20121118_CLE@DAL,4,2,5,CLE,DAL,1,6,6,(2:05) T.Richardson left guard to DAL 6 for no gain (D.Connor M.Spears).,13,17,2012 -20121118_CLE@DAL,4,2,0,CLE,DAL,2,6,6,(2:00) T.Richardson left end to DAL 1 for 5 yards (M.Claiborne).,13,17,2012 -20121118_CLE@DAL,4,1,52,CLE,DAL,3,1,1,(1:52) T.Richardson up the middle to DAL 1 for no gain (D.Connor).,13,17,2012 -20121118_CLE@DAL,4,1,47,CLE,DAL,4,1,1,(1:47) B.Weeden pass incomplete short left to J.Cameron. Pass incomplete left corner of the end zone; Sensabaugh closest defender.,13,17,2012 -20121118_CLE@DAL,4,1,42,DAL,CLE,1,10,98,(1:42) F.Jones up the middle to DAL 2 for no gain (P.Taylor).,17,13,2012 -20121118_CLE@DAL,4,1,38,DAL,CLE,2,10,98,(1:38) F.Jones right guard to DAL 3 for 1 yard (U.Young).,17,13,2012 -20121118_CLE@DAL,4,1,30,DAL,CLE,3,9,97,(1:30) F.Jones up the middle to DAL 4 for 1 yard (A.Rubin).,17,13,2012 -20121118_CLE@DAL,4,1,23,DAL,CLE,4,8,96,(1:23) (Punt formation) B.Moorman punts 49 yards to CLV 47 Center-L.Ladouceur. J.Cribbs to DAL 32 for 21 yards (J.Phillips). PENALTY on DAL-J.Phillips Horse Collar Tackle 15 yards enforced at DAL 32.,17,13,2012 -20121118_CLE@DAL,4,1,10,CLE,DAL,1,10,17,"(1:10) B.Weeden pass deep middle to B.Watson for 17 yards TOUCHDOWN. Pass complete on ""skinny post.""",13,17,2012 -20121118_CLE@DAL,4,1,10,CLE,DAL,,,17,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,13,17,2012 -20121118_CLE@DAL,4,1,10,CLE,DAL,,,17,P.Dawson kicks 74 yards from CLV 35 to DAL -9. L.Dunbar Touchback.,20,17,2012 -20121118_CLE@DAL,4,1,7,DAL,CLE,1,10,80,(1:07) (Shotgun) T.Romo pass short right to J.Witten pushed ob at DAL 24 for 4 yards (B.Skrine).,17,20,2012 -20121118_CLE@DAL,4,1,3,DAL,CLE,2,6,76,(1:03) (Shotgun) T.Romo pass incomplete deep right to K.Ogletree. PENALTY on CLV-T.Ward Unsportsmanlike Conduct 15 yards enforced at DAL 24.,17,20,2012 -20121118_CLE@DAL,4,0,57,DAL,CLE,1,10,61,(:57) (Shotgun) T.Romo pass incomplete short left to L.Dunbar. Pass incomplete flat.,17,20,2012 -20121118_CLE@DAL,4,0,54,DAL,CLE,2,10,61,(:54) (Shotgun) T.Romo pass short right to M.Austin to CLV 49 for 12 yards (S.Brown).,17,20,2012 -20121118_CLE@DAL,4,0,29,DAL,CLE,1,10,49,(:29) (Shotgun) T.Romo pass incomplete deep left to D.Harris. DAL-D.Harris was injured during the play. His return is Probable. PENALTY on CLV-S.Brown Defensive Pass Interference 35 yards enforced at CLV 49 - No Play.,17,20,2012 -20121118_CLE@DAL,4,0,23,DAL,CLE,1,10,14,(:23) (Shotgun) T.Romo scrambles up the middle to CLV 9 for 5 yards (F.Rucker).,17,20,2012 -20121118_CLE@DAL,4,0,16,DAL,CLE,2,5,9,(:16) (Shotgun) T.Romo pass incomplete short right to M.Austin. Pass lofted too tall right corner of the end zone. Injury update: Kevin Ogletree has been taken to the locker room for further evaluation.,17,20,2012 -20121118_CLE@DAL,4,0,12,DAL,CLE,3,5,9,(:12) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at CLV 9 - No Play.,17,20,2012 -20121118_CLE@DAL,4,0,12,DAL,CLE,3,10,14,(:12) (Shotgun) T.Romo pass incomplete short left.,17,20,2012 -20121118_CLE@DAL,4,0,6,DAL,CLE,4,10,14,(:06) (Field Goal formation) D.Bailey 32 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,20,2012 -20121118_CLE@DAL,4,0,6,DAL,CLE,,,14,D.Bailey kicks 28 yards from DAL 35 to CLV 37. E.Hagg to CLV 40 for 3 yards (J.Hanna).,20,20,2012 -20121118_CLE@DAL,5,0,0,CLE,DAL,,,14,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback. Ball was kicked out of the end zone.,20,20,2012 -20121118_CLE@DAL,5,0,0,DAL,CLE,1,10,80,(15:00) (Shotgun) T.Romo pass short right to D.Harris pushed ob at DAL 27 for 7 yards (S.Brown).,20,20,2012 -20121118_CLE@DAL,5,-1,31,DAL,CLE,2,3,73,(14:31) (Shotgun) T.Romo pass short right to D.Bryant pushed ob at DAL 40 for 13 yards (S.Brown).,20,20,2012 -20121118_CLE@DAL,5,-2,53,DAL,CLE,1,10,60,(13:53) (Shotgun) T.Romo sacked at DAL 30 for -10 yards (C.Robertson).,20,20,2012 -20121118_CLE@DAL,5,-2,21,DAL,CLE,2,20,70,(13:21) (Shotgun) T.Romo pass short left to D.Bryant pushed ob at DAL 38 for 8 yards (J.Bademosi).,20,20,2012 -20121118_CLE@DAL,5,-3,50,DAL,CLE,3,12,62,(12:50) (Shotgun) T.Romo pass short middle to M.Austin to CLV 49 for 13 yards (J.Bademosi). Pass complete on a slant.,20,20,2012 -20121118_CLE@DAL,5,-3,10,DAL,CLE,1,10,49,(12:10) (Shotgun) T.Romo pass incomplete deep left to M.Austin. Pass incomplete at the Cleveland 15; Bademosi closest defender.,20,20,2012 -20121118_CLE@DAL,5,-3,3,DAL,CLE,2,10,49,"(12:03) (Shotgun) T.Romo pass short left to D.Harris to CLV 41 for 8 yards (J.Bademosi). Pass complete on a ""curl"" route.",20,20,2012 -20121118_CLE@DAL,5,-4,26,DAL,CLE,3,2,41,"(11:26) (Shotgun) T.Romo pass incomplete short left to D.Bryant (J.Bademosi). Pass incomplete on a ""slant"" pattern.",20,20,2012 -20121118_CLE@DAL,5,-4,21,DAL,CLE,4,2,41,(11:21) (Punt formation) B.Moorman punts 31 yards to CLV 10 Center-L.Ladouceur out of bounds.,20,20,2012 -20121118_CLE@DAL,5,-4,14,CLE,DAL,1,10,90,(11:14) T.Richardson left end to CLV 10 for no gain (J.Ratliff).,20,20,2012 -20121118_CLE@DAL,5,-5,39,CLE,DAL,2,10,90,(10:39) B.Weeden pass incomplete short right to T.Richardson. Pass thrown in the flat; Carter closest defender.,20,20,2012 -20121118_CLE@DAL,5,-5,33,CLE,DAL,3,10,90,(10:33) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 16 for 6 yards (D.McCray). Pass complete in the flat.,20,20,2012 -20121118_CLE@DAL,5,-6,57,CLE,DAL,4,4,84,(9:57) (Punt formation) R.Hodges punts 52 yards to DAL 32 Center-C.Yount. D.Harris to CLV 48 for 20 yards (J.Cribbs).,20,20,2012 -20121118_CLE@DAL,5,-6,39,DAL,CLE,1,10,48,(9:39) (Shotgun) T.Romo pass short right to M.Austin pushed ob at CLV 39 for 9 yards (S.Brown).,20,20,2012 -20121118_CLE@DAL,5,-6,17,DAL,CLE,2,1,39,(9:17) L.Dunbar up the middle to CLV 32 for 7 yards (D.Jackson).,20,20,2012 -20121118_CLE@DAL,5,-7,41,DAL,CLE,1,10,32,(8:41) (Shotgun) T.Romo pass incomplete short middle to M.Austin (S.Brown). Pass incomplete on a slant.,20,20,2012 -20121118_CLE@DAL,5,-7,35,DAL,CLE,2,10,32,(8:35) (Shotgun) T.Romo pass short middle to M.Austin to CLV 24 for 8 yards (S.Brown). Pass complete on a slant. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,20,20,2012 -20121118_CLE@DAL,5,-8,45,DAL,CLE,3,2,24,(7:45) L.Dunbar up the middle to CLV 21 for 3 yards (A.Rubin).,20,20,2012 -20121118_CLE@DAL,5,-9,54,DAL,CLE,1,10,21,(6:54) L.Dunbar right guard to CLV 20 for 1 yard (J.Johnson).,20,20,2012 -20121118_CLE@DAL,5,-9,13,DAL,CLE,2,9,20,(6:13) (Field Goal formation) D.Bailey 38 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,20,20,2012 -20121118_CLE@DAL,5,-9,13,DAL,CLE,,,20,                      ,23,20,2012 -20121118_GB@DET,1,-9,0,GB,DET,,,20,M.Crosby kicks 72 yards from GB 35 to DET -7. S.Logan Touchback.,0,0,2012 -20121118_GB@DET,1,60,0,DET,GB,1,10,80,(15:00) M.Stafford pass short right to B.Pettigrew pushed ob at DET 23 for 3 yards (M.Burnett).,0,0,2012 -20121118_GB@DET,1,59,31,DET,GB,2,7,77,(14:31) (No Huddle Shotgun) M.Stafford pass incomplete short left to B.Pettigrew (C.Hayward).,0,0,2012 -20121118_GB@DET,1,59,27,DET,GB,3,7,77,(14:27) (No Huddle Shotgun) M.Stafford pass incomplete short left to C.Johnson (C.Hayward).,0,0,2012 -20121118_GB@DET,1,59,19,DET,GB,4,7,77,(14:19) N.Harris punts 38 yards to GB 39 Center-D.Muhlbach out of bounds.,0,0,2012 -20121118_GB@DET,1,59,11,GB,DET,1,10,61,(14:11) (Shotgun) A.Rodgers pass short left to R.Cobb pushed ob at GB 44 for 5 yards (D.Florence).,0,0,2012 -20121118_GB@DET,1,58,53,GB,DET,2,5,56,(13:53) J.Starks left end to 50 for 6 yards (D.Levy J.Green).,0,0,2012 -20121118_GB@DET,1,58,16,GB,DET,1,10,50,(13:16) J.Starks up the middle to DET 46 for 4 yards (E.Coleman).,0,0,2012 -20121118_GB@DET,1,57,38,GB,DET,2,6,46,(12:38) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,0,0,2012 -20121118_GB@DET,1,57,31,GB,DET,3,6,46,(12:31) (Shotgun) PENALTY on GB-E.Dietrich-Smith False Start 5 yards enforced at DET 46 - No Play.,0,0,2012 -20121118_GB@DET,1,57,31,GB,DET,3,11,51,(12:31) (Shotgun) A.Rodgers pass incomplete short middle to A.Green.,0,0,2012 -20121118_GB@DET,1,57,27,GB,DET,4,11,51,(12:27) T.Masthay punts 49 yards to DET 2 Center-B.Goode downed by GB-J.Bush.,0,0,2012 -20121118_GB@DET,1,57,18,DET,GB,1,10,98,(12:18) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 4 for 2 yards (F.Zombo; A.Hawk).,0,0,2012 -20121118_GB@DET,1,56,42,DET,GB,2,8,96,(11:42) M.Stafford pass incomplete short middle to T.Young (D.House).,0,0,2012 -20121118_GB@DET,1,56,37,DET,GB,3,8,96,(11:37) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler.,0,0,2012 -20121118_GB@DET,1,56,32,DET,GB,4,8,96,(11:32) N.Harris punts 44 yards to DET 48 Center-D.Muhlbach fair catch by R.Cobb.,0,0,2012 -20121118_GB@DET,1,56,24,GB,DET,1,10,48,(11:24) (Shotgun) R.Cobb up the middle to DET 44 for 4 yards (N.Suh; J.Durant).,0,0,2012 -20121118_GB@DET,1,55,53,GB,DET,2,6,44,(10:53) J.Starks right end to DET 39 for 5 yards (N.Suh).,0,0,2012 -20121118_GB@DET,1,55,5,GB,DET,3,1,39,(10:05) J.Starks right end pushed ob at DET 37 for 2 yards (J.Durant).,0,0,2012 -20121118_GB@DET,1,54,39,GB,DET,1,10,37,(9:39) (Shotgun) A.Rodgers pass deep left to R.Cobb pushed ob at DET 11 for 26 yards (D.Florence). PENALTY on GB-J.Sitton Offensive Holding 10 yards enforced at DET 37 - No Play.,0,0,2012 -20121118_GB@DET,1,54,24,GB,DET,1,20,47,(9:24) (Shotgun) A.Rodgers pass short left to R.Cobb to DET 38 for 9 yards (J.Lacey).,0,0,2012 -20121118_GB@DET,1,54,7,GB,DET,2,11,38,(9:07) A.Rodgers pass incomplete deep left to Ja.Jones. PENALTY on GB-E.Dietrich-Smith Offensive Holding 10 yards enforced at DET 38 - No Play.,0,0,2012 -20121118_GB@DET,1,54,0,GB,DET,2,21,48,(9:00) (Shotgun) A.Rodgers pass short middle to R.Cobb to DET 44 for 4 yards (S.Tulloch).,0,0,2012 -20121118_GB@DET,1,53,20,GB,DET,3,17,44,(8:20) (Shotgun) A.Rodgers pass short middle to Ja.Jones to DET 31 for 13 yards (D.Florence).,0,0,2012 -20121118_GB@DET,1,52,37,GB,DET,4,4,31,(7:37) (Shotgun) A.Rodgers pass incomplete deep middle to R.Cobb [W.Young].,0,0,2012 -20121118_GB@DET,1,52,32,DET,GB,1,10,69,(7:32) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass incomplete deep left to C.Johnson.,0,0,2012 -20121118_GB@DET,1,52,26,DET,GB,2,10,69,(7:26) M.Stafford pass short middle to M.Leshoure to DET 29 for -2 yards (A.Hawk).,0,0,2012 -20121118_GB@DET,1,51,44,DET,GB,3,12,71,(6:44) (Shotgun) M.Stafford pass deep right to C.Johnson to GB 18 for 53 yards (J.McMillian).,0,0,2012 -20121118_GB@DET,1,51,2,DET,GB,1,10,18,(6:02) K.Smith right tackle to GB 14 for 4 yards (M.Burnett). PENALTY on GB-E.Walden Illegal Use of Hands 5 yards enforced at GB 14.,0,0,2012 -20121118_GB@DET,1,50,42,DET,GB,1,10,9,(5:42) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,0,0,2012 -20121118_GB@DET,1,50,41,DET,GB,2,10,9,(5:41) (Shotgun) M.Stafford pass short middle to T.Scheffler to GB 3 for 6 yards (C.Hayward; M.Burnett).,0,0,2012 -20121118_GB@DET,1,50,41,DET,GB,3,4,3,(5:41) R.Reiff reported in as eligible. M.Stafford sacked at GB 12 for -9 yards (M.Burnett).,0,0,2012 -20121118_GB@DET,1,49,29,DET,GB,4,13,12,(4:29) J.Hanson 30 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121118_GB@DET,1,49,29,DET,GB,,,12,J.Hanson kicks 63 yards from DET 35 to GB 2. R.Cobb to GB 20 for 18 yards (S.Logan).,3,0,2012 -20121118_GB@DET,1,49,16,GB,DET,1,10,81,(4:16) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones (J.Lacey).,0,3,2012 -20121118_GB@DET,1,49,14,GB,DET,2,10,81,(4:14) (Shotgun) J.Starks left tackle to GB 23 for 4 yards (D.Levy; N.Suh).,0,3,2012 -20121118_GB@DET,1,48,35,GB,DET,3,6,77,(3:35) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 38 for 15 yards (R.Silva) [N.Fairley].,0,3,2012 -20121118_GB@DET,1,47,57,GB,DET,1,10,62,(2:57) J.Starks up the middle to GB 41 for 3 yards (J.Durant).,0,3,2012 -20121118_GB@DET,1,47,12,GB,DET,2,7,59,(2:12) J.Starks left end to GB 39 for -2 yards (S.Tulloch).,0,3,2012 -20121118_GB@DET,1,46,36,GB,DET,3,9,61,(1:36) (Shotgun) A.Rodgers pass short middle to D.Driver to DET 49 for 12 yards (R.Silva) [K.Vanden Bosch].,0,3,2012 -20121118_GB@DET,1,45,58,GB,DET,1,10,49,(:58) J.Starks right tackle to DET 47 for 2 yards (W.Young).,0,3,2012 -20121118_GB@DET,1,45,22,GB,DET,2,8,47,(:22) J.Starks up the middle to DET 42 for 5 yards (S.Tulloch).,0,3,2012 -20121118_GB@DET,2,45,0,GB,DET,3,3,42,(15:00) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at DET 23 for 19 yards (R.Silva).,0,3,2012 -20121118_GB@DET,2,44,34,GB,DET,1,10,23,(14:34) (Shotgun) A.Rodgers pass short middle to R.Cobb to DET 20 for 3 yards (C.Houston).,0,3,2012 -20121118_GB@DET,2,44,3,GB,DET,2,7,20,(14:03) (Shotgun) A.Rodgers pass short middle to J.Finley for 20 yards TOUCHDOWN.,0,3,2012 -20121118_GB@DET,2,44,3,GB,DET,,,20,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,3,2012 -20121118_GB@DET,2,44,3,GB,DET,,,20,M.Crosby kicks 59 yards from GB 35 to DET 6. S.Logan to DET 26 for 20 yards (J.Lattimore).,7,3,2012 -20121118_GB@DET,2,43,50,DET,GB,1,10,74,(13:50) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 29 for 3 yards (A.Hawk).,3,7,2012 -20121118_GB@DET,2,43,13,DET,GB,2,7,71,(13:13) M.Stafford pass short right to W.Heller to DET 46 for 17 yards (B.Jones).,3,7,2012 -20121118_GB@DET,2,42,29,DET,GB,1,10,54,(12:29) (Shotgun) M.Leshoure up the middle to DET 48 for 2 yards (A.Hawk).,3,7,2012 -20121118_GB@DET,2,41,48,DET,GB,2,8,52,(11:48) (Shotgun) M.Stafford sacked at DET 47 for -1 yards (E.Walden).,3,7,2012 -20121118_GB@DET,2,41,10,DET,GB,3,9,53,(11:10) (Shotgun) M.Stafford pass deep right to C.Johnson pushed ob at GB 32 for 21 yards (M.Jennings).,3,7,2012 -20121118_GB@DET,2,40,48,DET,GB,1,10,32,(10:48) (Shotgun) J.Bell right tackle to GB 28 for 4 yards (A.Hawk).,3,7,2012 -20121118_GB@DET,2,40,7,DET,GB,2,6,28,(10:07) (Shotgun) M.Stafford pass short left to B.Pettigrew to GB 25 for 3 yards (A.Hawk) [D.Moses].,3,7,2012 -20121118_GB@DET,2,39,22,DET,GB,3,3,25,(9:22) (Shotgun) M.Stafford pass short right to C.Johnson to GB 11 for 14 yards (T.Williams).,3,7,2012 -20121118_GB@DET,2,38,42,DET,GB,1,10,11,(8:42) (Shotgun) M.Leshoure up the middle to GB 1 for 10 yards (A.Hawk; M.Jennings).,3,7,2012 -20121118_GB@DET,2,39,22,DET,GB,1,1,1,(9:22) M.Leshoure up the middle for 1 yard TOUCHDOWN.,3,7,2012 -20121118_GB@DET,2,39,22,DET,GB,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,3,7,2012 -20121118_GB@DET,2,39,22,DET,GB,,,1,J.Hanson kicks 70 yards from DET 35 to GB -5. R.Cobb Touchback.,10,7,2012 -20121118_GB@DET,2,38,6,GB,DET,1,10,80,(8:06) (Shotgun) A.Rodgers pass short left to J.Starks to GB 26 for 6 yards (J.Durant C.Avril).,7,10,2012 -20121118_GB@DET,2,37,31,GB,DET,2,4,74,(7:31) J.Starks right end pushed ob at GB 31 for 5 yards (S.Tulloch; C.Houston).,7,10,2012 -20121118_GB@DET,2,36,52,GB,DET,1,10,69,(6:52) J.Starks up the middle to GB 39 for 8 yards (S.Tulloch). PENALTY on DET-N.Fairley Neutral Zone Infraction 5 yards enforced at GB 31 - No Play.,7,10,2012 -20121118_GB@DET,2,36,28,GB,DET,1,5,64,(6:28) J.Starks right tackle to GB 40 for 4 yards (S.Tulloch N.Fairley).,7,10,2012 -20121118_GB@DET,2,35,48,GB,DET,2,1,60,(5:48) J.Starks left tackle to GB 38 for -2 yards (J.Durant N.Suh).,7,10,2012 -20121118_GB@DET,2,35,6,GB,DET,3,3,62,(5:06) (Shotgun) A.Rodgers pass incomplete short right to R.Cobb (J.Lacey). Penalty on GB-T.Lang Offensive Holding declined.,7,10,2012 -20121118_GB@DET,2,34,57,GB,DET,4,3,62,(4:57) T.Masthay punts 34 yards to DET 28 Center-B.Goode. S.Logan MUFFS catch and recovers at DET 28. S.Logan to DET 28 for no gain (J.Lattimore). Play whistled dead early,7,10,2012 -20121118_GB@DET,2,34,48,DET,GB,1,10,72,(4:48) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,10,7,2012 -20121118_GB@DET,2,34,44,DET,GB,2,10,72,(4:44) R.Reiff reported in as eligible. M.Thomas right end to DET 34 for 6 yards (C.Hayward).,10,7,2012 -20121118_GB@DET,2,34,4,DET,GB,3,4,66,(4:04) (Shotgun) PENALTY on GB-M.Neal Defensive Offside 5 yards enforced at DET 34 - No Play.,10,7,2012 -20121118_GB@DET,2,33,42,DET,GB,1,10,61,(3:42) (Shotgun) M.Leshoure left tackle pushed ob at GB 46 for 15 yards (M.Burnett).,10,7,2012 -20121118_GB@DET,2,33,16,DET,GB,1,10,46,(3:16) M.Leshoure left tackle to GB 44 for 2 yards (E.Walden).,10,7,2012 -20121118_GB@DET,2,32,36,DET,GB,2,8,44,(2:36) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson [D.Moses].,10,7,2012 -20121118_GB@DET,2,32,30,DET,GB,3,8,44,(2:30) (Shotgun) M.Stafford pass incomplete deep left to T.Young. PENALTY on GB-B.Jones Roughing the Passer 15 yards enforced at GB 44 - No Play.,10,7,2012 -20121118_GB@DET,2,32,25,DET,GB,1,10,29,(2:25) M.Stafford pass short right intended for T.Young INTERCEPTED by C.Hayward [R.Pickett] at GB 28. C.Hayward to GB 48 for 20 yards (G.Cherilus). Penalty on DET-R.Reiff Offensive Holding declined.,10,7,2012 -20121118_GB@DET,2,32,15,GB,DET,1,10,52,(2:15) (Shotgun) J.Starks left end pushed ob at DET 44 for 8 yards (D.Florence; S.Tulloch).,7,10,2012 -20121118_GB@DET,2,32,0,GB,DET,2,2,44,(2:00) A.Rodgers pass deep middle intended for R.Cobb INTERCEPTED by J.Lacey at DET 23. J.Lacey to DET 33 for 10 yards (J.Kuhn).,7,10,2012 -20121118_GB@DET,2,31,51,DET,GB,1,10,67,(1:51) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 37 for 4 yards (A.Hawk).,10,7,2012 -20121118_GB@DET,2,31,26,DET,GB,2,6,63,(1:26) (No Huddle Shotgun) M.Stafford scrambles right end ran ob at DET 43 for 6 yards (E.Walden).,10,7,2012 -20121118_GB@DET,2,31,18,DET,GB,1,10,57,(1:18) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,10,7,2012 -20121118_GB@DET,2,31,14,DET,GB,2,10,57,(1:14) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,10,7,2012 -20121118_GB@DET,2,31,9,DET,GB,3,10,57,(1:09) (Shotgun) M.Stafford sacked at DET 42 for -1 yards (D.Moses). FUMBLES (D.Moses) RECOVERED by GB-M.Daniels at DET 42. M.Daniels to DET 42 for no gain (R.Reiff).,10,7,2012 -20121118_GB@DET,2,30,59,GB,DET,1,10,42,(:59) (Shotgun) A.Rodgers pass short right to R.Cobb to DET 35 for 7 yards (D.Florence).,7,10,2012 -20121118_GB@DET,2,30,39,GB,DET,2,3,35,(:39) (Shotgun) A.Rodgers pass short right to R.Cobb to DET 24 for 11 yards (D.Florence; S.Tulloch).,7,10,2012 -20121118_GB@DET,2,30,34,GB,DET,1,10,24,(:34) (Shotgun) A.Rodgers sacked at DET 32 for -8 yards (N.Fairley).,7,10,2012 -20121118_GB@DET,2,30,3,GB,DET,2,18,32,(:03) M.Crosby 50 yard field goal is No Good Wide Left Center-B.Goode Holder-T.Masthay.,7,10,2012 -20121118_GB@DET,3,30,0,DET,GB,,,32,J.Hanson kicks 70 yards from DET 35 to GB -5. R.Cobb to GB 20 for 25 yards (R.Silva). PENALTY on GB-D.Williams Illegal Block Above the Waist 10 yards enforced at GB 15.,10,7,2012 -20121118_GB@DET,3,29,55,GB,DET,1,10,95,(14:55) (Shotgun) J.Starks up the middle to GB 8 for 3 yards (J.Lacey K.Vanden Bosch).,7,10,2012 -20121118_GB@DET,3,29,11,GB,DET,2,7,92,(14:11) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 18 for 10 yards (C.Houston).,7,10,2012 -20121118_GB@DET,3,28,43,GB,DET,1,10,82,(13:43) J.Starks left tackle to GB 20 for 2 yards (N.Suh N.Fairley).,7,10,2012 -20121118_GB@DET,3,28,4,GB,DET,2,8,80,(13:04) (Shotgun) A.Rodgers sacked at GB 15 for -5 yards (C.Avril).,7,10,2012 -20121118_GB@DET,3,27,29,GB,DET,3,13,85,(12:29) (Shotgun) A.Rodgers sacked at GB 9 for -6 yards (N.Fairley). FUMBLES (N.Fairley) recovered by GB-J.Saturday at GB 11. J.Saturday to GB 11 for no gain (K.Vanden Bosch).,7,10,2012 -20121118_GB@DET,3,26,47,GB,DET,4,17,89,(11:47) T.Masthay punts 56 yards to DET 33 Center-B.Goode downed by GB-J.Bush.,7,10,2012 -20121118_GB@DET,3,26,35,DET,GB,1,10,67,(11:35) (Shotgun) M.Leshoure right tackle to DET 40 for 7 yards (R.Pickett).,10,7,2012 -20121118_GB@DET,3,25,59,DET,GB,2,3,60,(10:59) M.Leshoure right tackle to DET 40 for no gain (B.Jones).,10,7,2012 -20121118_GB@DET,3,25,21,DET,GB,3,3,60,(10:21) (Shotgun) M.Stafford pass short middle to T.Scheffler to GB 44 for 16 yards (M.Burnett).,10,7,2012 -20121118_GB@DET,3,24,39,DET,GB,1,10,44,(9:39) M.Stafford pass incomplete deep right to C.Johnson.,10,7,2012 -20121118_GB@DET,3,24,33,DET,GB,2,10,44,(9:33) (Shotgun) M.Leshoure up the middle to GB 39 for 5 yards (C.Hayward).,10,7,2012 -20121118_GB@DET,3,23,54,DET,GB,3,5,39,(8:54) (Shotgun) PENALTY on DET-T.Young False Start 5 yards enforced at GB 39 - No Play.,10,7,2012 -20121118_GB@DET,3,23,46,DET,GB,3,10,44,(8:46) (Shotgun) M.Stafford pass deep middle intended for T.Scheffler INTERCEPTED by M.Jennings at GB 28. M.Jennings for 72 yards TOUCHDOWN. PENALTY on DET-M.Stafford Personal Foul 15 yards enforced between downs. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,10,7,2012 -20121118_GB@DET,3,23,46,GB,DET,,,44,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,10,2012 -20121118_GB@DET,3,23,46,GB,DET,,,44,M.Crosby kicks 45 yards from GB 50 to DET 5. M.Thomas to DET 17 for 12 yards (J.Lattimore).,14,10,2012 -20121118_GB@DET,3,23,26,DET,GB,1,10,83,(8:26) M.Leshoure left tackle to DET 22 for 5 yards (M.Burnett).,10,14,2012 -20121118_GB@DET,3,22,48,DET,GB,2,5,78,(7:48) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler [J.McMillian]. PENALTY on GB-B.Jones Face Mask (15 Yards) 15 yards enforced at DET 22 - No Play.,10,14,2012 -20121118_GB@DET,3,22,42,DET,GB,1,10,63,(7:42) (Shotgun) M.Stafford pass short left to R.Broyles pushed ob at DET 45 for 8 yards (D.House; J.McMillian).,10,14,2012 -20121118_GB@DET,3,22,7,DET,GB,2,2,55,(7:07) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,10,14,2012 -20121118_GB@DET,3,22,1,DET,GB,3,2,55,(7:01) (Shotgun) M.Stafford pass short middle to B.Pettigrew to GB 43 for 12 yards (M.Burnett; J.McMillian).,10,14,2012 -20121118_GB@DET,3,21,25,DET,GB,1,10,43,(6:25) M.Leshoure right tackle to GB 38 for 5 yards (A.Hawk).,10,14,2012 -20121118_GB@DET,3,20,45,DET,GB,2,5,38,(5:45) (Shotgun) M.Leshoure up the middle ran ob at GB 26 for 12 yards (M.Burnett).,10,14,2012 -20121118_GB@DET,3,20,10,DET,GB,1,10,26,(5:10) (Shotgun) M.Stafford pass short middle to J.Bell to GB 21 for 5 yards (A.Hawk).,10,14,2012 -20121118_GB@DET,3,19,27,DET,GB,2,5,21,(4:27) M.Stafford scrambles left tackle to GB 15 for 6 yards (T.Williams).,10,14,2012 -20121118_GB@DET,3,18,44,DET,GB,1,10,15,(3:44) M.Leshoure left end to GB 17 for -2 yards (D.Moses). PENALTY on DET-R.Reiff Offensive Holding 10 yards enforced at GB 15 - No Play.,10,14,2012 -20121118_GB@DET,3,18,18,DET,GB,1,20,25,(3:18) M.Stafford pass incomplete deep right to T.Scheffler.,10,14,2012 -20121118_GB@DET,3,18,7,DET,GB,2,20,25,(3:07) (Shotgun) M.Stafford pass deep middle to C.Johnson for 25 yards TOUCHDOWN.,10,14,2012 -20121118_GB@DET,3,18,7,DET,GB,,,25,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,10,14,2012 -20121118_GB@DET,3,18,7,DET,GB,,,25,J.Hanson kicks 68 yards from DET 35 to GB -3. R.Cobb to GB 11 for 14 yards (J.Wendling).,17,14,2012 -20121118_GB@DET,3,17,55,GB,DET,1,10,89,(2:55) (Shotgun) J.Starks up the middle to GB 18 for 7 yards (R.Silva).,14,17,2012 -20121118_GB@DET,3,17,18,GB,DET,2,3,82,(2:18) (Shotgun) J.Starks right tackle to GB 20 for 2 yards (D.Levy).,14,17,2012 -20121118_GB@DET,3,16,32,GB,DET,3,1,80,(1:32) R.Cobb left end to GB 35 for 15 yards (J.Green).,14,17,2012 -20121118_GB@DET,3,15,48,GB,DET,1,10,65,(:48) A.Rodgers pass deep middle to Ja.Jones to DET 45 for 20 yards (D.Carey).,14,17,2012 -20121118_GB@DET,3,15,12,GB,DET,1,10,45,(:12) J.Kuhn left tackle to DET 46 for -1 yards (N.Fairley).,14,17,2012 -20121118_GB@DET,4,15,0,GB,DET,2,11,46,(15:00) (Shotgun) A.Rodgers scrambles up the middle to DET 43 for 3 yards (K.Vanden Bosch).,14,17,2012 -20121118_GB@DET,4,14,21,GB,DET,3,8,43,(14:21) (Shotgun) A.Rodgers pass short middle to R.Cobb to DET 40 for 3 yards (D.Florence).,14,17,2012 -20121118_GB@DET,4,13,39,GB,DET,4,5,40,(13:39) (Field Goal formation) PENALTY on GB-T.Crabtree False Start 5 yards enforced at DET 40 - No Play.,14,17,2012 -20121118_GB@DET,4,13,37,GB,DET,4,10,45,(13:37) T.Masthay punts 37 yards to DET 8 Center-B.Goode fair catch by S.Logan.,14,17,2012 -20121118_GB@DET,4,13,28,DET,GB,1,10,92,(13:28) M.Leshoure up the middle to DET 11 for 3 yards (E.Walden; B.Raji).,17,14,2012 -20121118_GB@DET,4,12,50,DET,GB,2,7,89,(12:50) M.Stafford sacked at DET 8 for -3 yards (D.House).,17,14,2012 -20121118_GB@DET,4,12,10,DET,GB,3,10,92,(12:10) (Shotgun) M.Stafford sacked at DET 8 for 0 yards (E.Walden).,17,14,2012 -20121118_GB@DET,4,11,42,DET,GB,4,10,92,(11:42) N.Harris punts 36 yards to DET 44 Center-D.Muhlbach fair catch by R.Cobb.,17,14,2012 -20121118_GB@DET,4,11,33,GB,DET,1,10,44,(11:33) A.Rodgers pass short right to J.Nelson ran ob at DET 33 for 11 yards (C.Houston).,14,17,2012 -20121118_GB@DET,4,11,4,GB,DET,1,10,33,(11:04) (Shotgun) J.Starks up the middle to DET 33 for no gain (W.Young S.Tulloch).,14,17,2012 -20121118_GB@DET,4,10,21,GB,DET,2,10,33,(10:21) (Shotgun) A.Rodgers pass incomplete short left to J.Nelson. PENALTY on DET-D.Florence Defensive Holding 5 yards enforced at DET 33 - No Play.,14,17,2012 -20121118_GB@DET,4,10,14,GB,DET,1,10,28,(10:14) (Shotgun) A.Rodgers pass incomplete deep right to R.Cobb. PENALTY on DET-C.Avril Neutral Zone Infraction 5 yards enforced at DET 28 - No Play.,14,17,2012 -20121118_GB@DET,4,10,10,GB,DET,1,5,23,(10:10) J.Starks up the middle to DET 22 for 1 yard (W.Young; N.Fairley).,14,17,2012 -20121118_GB@DET,4,9,28,GB,DET,2,4,22,(9:28) (Shotgun) J.Starks left tackle to DET 20 for 2 yards (N.Fairley).,14,17,2012 -20121118_GB@DET,4,8,46,GB,DET,3,2,20,(8:46) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones.,14,17,2012 -20121118_GB@DET,4,8,41,GB,DET,4,2,20,(8:41) M.Crosby 38 yard field goal is No Good Wide Left Center-B.Goode Holder-T.Masthay.,14,17,2012 -20121118_GB@DET,4,8,37,DET,GB,1,10,72,(8:37) (Shotgun) M.Leshoure up the middle to DET 32 for 4 yards (C.Hayward).,17,14,2012 -20121118_GB@DET,4,8,0,DET,GB,2,6,68,(8:00) M.Leshoure left end to DET 37 for 5 yards (D.House; B.Jones).,17,14,2012 -20121118_GB@DET,4,7,15,DET,GB,3,1,63,(7:15) (Shotgun) M.Stafford pass short left to R.Broyles to GB 36 for 27 yards (D.House).,17,14,2012 -20121118_GB@DET,4,6,29,DET,GB,1,10,36,(6:29) (Shotgun) M.Leshoure up the middle to GB 34 for 2 yards (R.Pickett).,17,14,2012 -20121118_GB@DET,4,5,49,DET,GB,2,8,34,(5:49) (Shotgun) M.Stafford pass deep left to T.Young to GB 10 for 24 yards (S.Richardson; J.McMillian).,17,14,2012 -20121118_GB@DET,4,5,21,DET,GB,1,10,10,(5:21) (Shotgun) M.Leshoure right tackle to GB 7 for 3 yards (E.Walden).,17,14,2012 -20121118_GB@DET,4,4,39,DET,GB,2,7,7,(4:39) M.Leshoure up the middle to GB 9 for -2 yards (B.Jones).,17,14,2012 -20121118_GB@DET,4,4,33,DET,GB,3,9,9,(4:33) (Shotgun) M.Stafford pass incomplete short left to T.Young (C.Hayward).,17,14,2012 -20121118_GB@DET,4,4,25,DET,GB,4,9,9,(4:25) J.Hanson 27 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,17,14,2012 -20121118_GB@DET,4,4,25,DET,GB,,,9,J.Hanson kicks 67 yards from DET 35 to GB -2. R.Cobb to GB 17 for 19 yards (T.Lewis). FUMBLES (T.Lewis) and recovers at GB 18. R.Cobb to GB 18 for no gain (T.Lewis).,20,14,2012 -20121118_GB@DET,4,4,19,GB,DET,1,10,82,(4:19) J.Starks up the middle to GB 29 for 11 yards (D.Levy).,14,20,2012 -20121118_GB@DET,4,3,47,GB,DET,1,10,71,(3:47) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,14,20,2012 -20121118_GB@DET,4,3,43,GB,DET,2,10,71,(3:43) (Shotgun) A.Rodgers pass short right to J.Finley to DET 31 for 40 yards (R.Silva).,14,20,2012 -20121118_GB@DET,4,3,12,GB,DET,1,10,31,(3:12) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to DET 25 for 6 yards (D.Levy).,14,20,2012 -20121118_GB@DET,4,2,44,GB,DET,2,4,25,(2:44) (No Huddle Shotgun) J.Starks right tackle to DET 22 for 3 yards (D.Levy; S.Tulloch).,14,20,2012 -20121118_GB@DET,4,2,2,GB,DET,3,1,22,(2:02) (Shotgun) A.Rodgers pass deep left to R.Cobb for 22 yards TOUCHDOWN.,14,20,2012 -20121118_GB@DET,4,2,2,GB,DET,,,22,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,20,2012 -20121118_GB@DET,4,2,2,GB,DET,,,22,M.Crosby kicks 65 yards from GB 35 to DET 0. S.Logan to DET 25 for 25 yards (M.Burnett).,21,20,2012 -20121118_GB@DET,4,1,48,DET,GB,1,10,75,(1:48) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler.,20,21,2012 -20121118_GB@DET,4,1,43,DET,GB,2,10,75,(1:43) (Shotgun) PENALTY on DET-G.Cherilus False Start 5 yards enforced at DET 25 - No Play.,20,21,2012 -20121118_GB@DET,4,1,43,DET,GB,2,15,80,(1:43) (Shotgun) M.Stafford pass incomplete short middle to T.Young.,20,21,2012 -20121118_GB@DET,4,1,37,DET,GB,3,15,80,(1:37) (Shotgun) M.Stafford pass incomplete short right to T.Young (C.Hayward).,20,21,2012 -20121118_GB@DET,4,1,31,DET,GB,4,15,80,(1:31) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (J.McMillian).,20,21,2012 -20121118_GB@DET,4,1,19,GB,DET,1,10,20,(1:19) J.Starks right tackle to DET 20 for no gain (D.Levy).,21,20,2012 -20121118_GB@DET,4,1,13,GB,DET,2,10,20,(1:13) J.Starks left end to DET 20 for no gain (SamL.Hill).,21,20,2012 -20121118_GB@DET,4,1,9,GB,DET,3,10,20,(1:09) J.Starks right end to DET 21 for -1 yards (D.Levy).,21,20,2012 -20121118_GB@DET,4,0,24,GB,DET,4,11,21,(:24) M.Crosby 39 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,21,20,2012 -20121118_GB@DET,4,0,24,GB,DET,,,21,M.Crosby kicks 35 yards from GB 35 to DET 30. T.Scheffler to DET 37 for 7 yards (C.Hayward).,24,20,2012 -20121118_GB@DET,4,0,15,DET,GB,1,10,63,(:15) (Shotgun) M.Stafford pass incomplete deep left to T.Scheffler.,20,24,2012 -20121118_GB@DET,4,0,9,DET,GB,2,10,63,(:09) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (J.McMillian).,20,24,2012 -20121118_GB@DET,4,0,3,DET,GB,3,10,63,(:03) (Shotgun) M.Stafford pass deep left to C.Johnson to GB 33 for 30 yards. FUMBLES RECOVERED by GB-J.McMillian at GB 33. J.McMillian to GB 36 for 3 yards (B.Pettigrew). Johnson's attempted lateral was recovered by GB.,20,24,2012 -20121118_GB@DET,4,0,3,DET,GB,,,63,                      ,20,24,2012 -20121118_JAC@HOU,1,0,0,JAC,HOU,,,63,J.Scobee kicks 67 yards from JAX 35 to HST -2. K.Martin to HST 16 for 18 yards (Gr.Jones).,0,0,2012 -20121118_JAC@HOU,1,59,54,HOU,JAC,1,10,84,(14:54) M.Schaub pass short left to A.Johnson to HST 23 for 7 yards (D.Cox).,0,0,2012 -20121118_JAC@HOU,1,59,15,HOU,JAC,2,3,77,(14:15) M.Schaub pass short left to A.Johnson to HST 45 for 22 yards (D.Landry).,0,0,2012 -20121118_JAC@HOU,1,58,44,HOU,JAC,1,10,55,(13:44) M.Schaub pass deep middle to A.Johnson to JAX 10 for 45 yards (C.Prosinski).,0,0,2012 -20121118_JAC@HOU,1,57,58,HOU,JAC,1,10,10,(12:58) A.Foster left tackle to JAX 9 for 1 yard (P.Posluszny).,0,0,2012 -20121118_JAC@HOU,1,57,22,HOU,JAC,2,9,9,(12:22) M.Schaub pass short middle to K.Martin for 9 yards TOUCHDOWN. Penalty on JAX-A.Ross Illegal Use of Hands declined.,0,0,2012 -20121118_JAC@HOU,1,57,22,HOU,JAC,,,9,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121118_JAC@HOU,1,57,22,HOU,JAC,,,9,S.Graham kicks 65 yards from HST 35 to JAX 0. R.Jennings to JAX 27 for 27 yards (A.Ball).,7,0,2012 -20121118_JAC@HOU,1,57,7,JAC,HOU,1,10,73,(12:07) B.Gabbert pass short middle to J.Blackmon to JAX 42 for 15 yards (G.Quin).,0,7,2012 -20121118_JAC@HOU,1,56,27,JAC,HOU,1,10,58,(11:27) B.Gabbert pass short right to C.Shorts to HST 49 for 9 yards (J.Joseph). Penalty on HST-J.Watt Defensive Offside declined.,0,7,2012 -20121118_JAC@HOU,1,56,2,JAC,HOU,2,1,49,(11:02) R.Jennings up the middle to HST 44 for 5 yards (D.Manning).,0,7,2012 -20121118_JAC@HOU,1,55,30,JAC,HOU,1,10,44,(10:30) J.Parmele up the middle to HST 44 for no gain (J.Watt).,0,7,2012 -20121118_JAC@HOU,1,54,54,JAC,HOU,2,10,44,(9:54) B.Gabbert sacked at JAX 47 for -9 yards (D.Manning). FUMBLES (D.Manning) [D.Manning] RECOVERED by HST-T.Dobbins at HST 37. (#11Gabbert was injured on the play. His return is questionable.) The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,7,2012 -20121118_JAC@HOU,1,54,48,HOU,JAC,1,10,63,(9:48) J.Forsett left guard to HST 42 for 5 yards (J.Stanford).,7,0,2012 -20121118_JAC@HOU,1,54,12,HOU,JAC,2,5,58,(9:12) M.Schaub pass incomplete short middle to J.Forsett.,7,0,2012 -20121118_JAC@HOU,1,54,5,HOU,JAC,3,5,58,(9:05) (Shotgun) M.Schaub pass incomplete deep left to A.Johnson [T.Alualu].,7,0,2012 -20121118_JAC@HOU,1,53,58,HOU,JAC,4,5,58,(8:58) D.Jones punts 39 yards to JAX 19 Center-J.Weeks. A.Ross to JAX 24 for 5 yards (S.Keo; D.Posey). (The punt hang time was 3.8 seconds.),7,0,2012 -20121118_JAC@HOU,1,53,47,JAC,HOU,1,10,76,(8:47) C.Henne pass short left to J.Parmele to JAX 29 for 5 yards (D.Manning).,0,7,2012 -20121118_JAC@HOU,1,53,7,JAC,HOU,2,5,71,(8:07) J.Parmele right guard to JAX 30 for 1 yard (J.Watt).,0,7,2012 -20121118_JAC@HOU,1,52,27,JAC,HOU,3,4,70,(7:27) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon (Q.Demps).,0,7,2012 -20121118_JAC@HOU,1,52,21,JAC,HOU,4,4,70,(7:21) B.Anger punts 41 yards to HST 29 Center-J.Cain fair catch by K.Martin. (The punt hang time was 3.5 seconds.),0,7,2012 -20121118_JAC@HOU,1,52,13,HOU,JAC,1,10,71,(7:13) A.Foster left tackle to HST 39 for 10 yards (A.Ross).,7,0,2012 -20121118_JAC@HOU,1,51,35,HOU,JAC,1,10,61,(6:35) A.Foster right end to HST 37 for -2 yards (C.Mosley).,7,0,2012 -20121118_JAC@HOU,1,50,53,HOU,JAC,2,12,63,(5:53) M.Schaub pass short right to O.Daniels to HST 47 for 10 yards (A.Ross).,7,0,2012 -20121118_JAC@HOU,1,50,13,HOU,JAC,3,2,53,(5:13) M.Schaub sacked at HST 40 for -7 yards (C.Mosley). FUMBLES (C.Mosley) and recovers at HST 32. M.Schaub to HST 32 for no gain (T.Knighton).,7,0,2012 -20121118_JAC@HOU,1,49,38,HOU,JAC,4,17,68,(4:38) D.Jones punts 55 yards to JAX 13 Center-J.Weeks. A.Ross to JAX 19 for 6 yards (A.Ball). (The punt hang time was 4.9 seconds.),7,0,2012 -20121118_JAC@HOU,1,49,28,JAC,HOU,1,10,81,(4:28) C.Henne pass deep middle to J.Blackmon pushed ob at HST 18 for 63 yards (G.Quin).,0,7,2012 -20121118_JAC@HOU,1,48,50,JAC,HOU,1,10,18,(3:50) (Shotgun) C.Henne pass short right to C.Shorts to HST 13 for 5 yards (K.Jackson).,0,7,2012 -20121118_JAC@HOU,1,48,9,JAC,HOU,2,5,13,(3:09) (Shotgun) C.Henne pass incomplete short left to J.Blackmon.,0,7,2012 -20121118_JAC@HOU,1,48,2,JAC,HOU,3,5,13,(3:02) (Shotgun) C.Henne pass short middle to M.Lewis for 13 yards TOUCHDOWN [C.Barwin].,0,7,2012 -20121118_JAC@HOU,1,48,2,JAC,HOU,,,13,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,7,2012 -20121118_JAC@HOU,1,48,2,JAC,HOU,,,13,J.Scobee kicks 70 yards from JAX 35 to HST -5. K.Martin to HST 17 for 22 yards (A.Blake; A.Branch).,7,7,2012 -20121118_JAC@HOU,1,47,49,HOU,JAC,1,10,83,(2:49) M.Schaub pass short left to J.Casey to HST 28 for 11 yards (D.Cox).,7,7,2012 -20121118_JAC@HOU,1,47,11,HOU,JAC,1,10,72,(2:11) A.Foster up the middle to HST 30 for 2 yards (R.Allen).,7,7,2012 -20121118_JAC@HOU,1,46,33,HOU,JAC,2,8,70,(1:33) J.Forsett right tackle pushed ob at JAX 40 for 30 yards (D.Landry).,7,7,2012 -20121118_JAC@HOU,1,45,56,HOU,JAC,1,10,40,(:56) M.Schaub pass incomplete deep right to A.Johnson.,7,7,2012 -20121118_JAC@HOU,1,45,48,HOU,JAC,2,10,40,(:48) M.Schaub pass short left to A.Foster to JAX 36 for 4 yards (D.Cox).,7,7,2012 -20121118_JAC@HOU,2,45,0,HOU,JAC,3,6,36,(15:00) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels.,7,7,2012 -20121118_JAC@HOU,2,44,55,HOU,JAC,4,6,36,(14:55) D.Jones punts 17 yards to JAX 19 Center-J.Weeks fair catch by A.Ross. (The punt hang time was 4.5 seconds.),7,7,2012 -20121118_JAC@HOU,2,44,47,JAC,HOU,1,10,81,(14:47) J.Parmele left tackle to JAX 22 for 3 yards (C.Barwin; B.James).,7,7,2012 -20121118_JAC@HOU,2,44,10,JAC,HOU,2,7,78,(14:10) J.Parmele up the middle to JAX 31 for 9 yards (K.Jackson).,7,7,2012 -20121118_JAC@HOU,2,43,25,JAC,HOU,1,10,69,(13:25) J.Parmele up the middle to JAX 33 for 2 yards (B.James).,7,7,2012 -20121118_JAC@HOU,2,42,43,JAC,HOU,2,8,67,(12:43) (Shotgun) C.Henne pass short left to C.Shorts for 67 yards TOUCHDOWN.,7,7,2012 -20121118_JAC@HOU,2,42,43,JAC,HOU,,,67,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,7,7,2012 -20121118_JAC@HOU,2,42,43,JAC,HOU,,,67,J.Scobee kicks 67 yards from JAX 35 to HST -2. K.Martin to JAX 48 for 54 yards (M.Harris).,14,7,2012 -20121118_JAC@HOU,2,42,21,HOU,JAC,1,10,48,(12:21) A.Foster right guard to JAX 46 for 2 yards (T.Alualu).,7,14,2012 -20121118_JAC@HOU,2,41,40,HOU,JAC,2,8,46,(11:40) M.Schaub pass short right to A.Johnson pushed ob at JAX 31 for 15 yards (D.Cox).,7,14,2012 -20121118_JAC@HOU,2,41,11,HOU,JAC,1,10,31,(11:11) J.Forsett right tackle to JAX 22 for 9 yards (T.Knighton; D.Landry).,7,14,2012 -20121118_JAC@HOU,2,40,27,HOU,JAC,2,1,22,(10:27) J.Forsett left guard to JAX 19 for 3 yards (C.Mosley).,7,14,2012 -20121118_JAC@HOU,2,39,47,HOU,JAC,1,10,19,(9:47) A.Foster right guard to JAX 10 for 9 yards (D.Landry).,7,14,2012 -20121118_JAC@HOU,2,39,9,HOU,JAC,2,1,10,(9:09) A.Foster up the middle to JAX 4 for 6 yards (R.Allen; A.Ross). JAX-A.Ross was injured during the play. His return is Questionable.,7,14,2012 -20121118_JAC@HOU,2,38,38,HOU,JAC,1,4,4,(8:38) A.Foster up the middle to JAX 1 for 3 yards (R.Allen).,7,14,2012 -20121118_JAC@HOU,2,37,58,HOU,JAC,2,1,1,(7:58) M.Schaub pass short left to J.Casey for 1 yard TOUCHDOWN.,7,14,2012 -20121118_JAC@HOU,2,37,58,HOU,JAC,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,14,2012 -20121118_JAC@HOU,2,37,58,HOU,JAC,,,1,S.Graham kicks 61 yards from HST 35 to JAX 4. R.Jennings to JAX 31 for 27 yards (A.Ball).,14,14,2012 -20121118_JAC@HOU,2,37,44,JAC,HOU,1,10,69,(7:44) C.Henne pass short left to J.Parmele to JAX 32 for 1 yard (D.Sharpton).,14,14,2012 -20121118_JAC@HOU,2,37,7,JAC,HOU,2,9,68,(7:07) J.Parmele up the middle to JAX 44 for 12 yards (J.Crick; D.Manning).,14,14,2012 -20121118_JAC@HOU,2,36,27,JAC,HOU,1,10,56,(6:27) J.Parmele left guard to JAX 46 for 2 yards (J.Crick; D.Sharpton).,14,14,2012 -20121118_JAC@HOU,2,35,47,JAC,HOU,2,8,54,(5:47) C.Henne pass short left to M.Lewis to HST 28 for 26 yards (D.Manning) [C.Barwin].,14,14,2012 -20121118_JAC@HOU,2,35,3,JAC,HOU,1,10,28,(5:03) J.Parmele left tackle to HST 24 for 4 yards (K.Jackson).,14,14,2012 -20121118_JAC@HOU,2,34,28,JAC,HOU,2,6,24,(4:28) R.Jennings up the middle to HST 28 for -4 yards (D.Sharpton).,14,14,2012 -20121118_JAC@HOU,2,33,42,JAC,HOU,3,10,28,(3:42) (Shotgun) C.Henne scrambles left end pushed ob at HST 25 for 3 yards (C.Barwin).,14,14,2012 -20121118_JAC@HOU,2,32,58,JAC,HOU,4,7,25,(2:58) J.Scobee 43 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,14,14,2012 -20121118_JAC@HOU,2,32,58,JAC,HOU,,,25,J.Scobee kicks 71 yards from JAX 35 to HST -6. K.Martin Touchback.,17,14,2012 -20121118_JAC@HOU,2,32,53,HOU,JAC,1,10,80,(2:53) M.Schaub pass deep middle to A.Johnson to HST 43 for 23 yards (D.Landry; C.Prosinski).,14,17,2012 -20121118_JAC@HOU,2,32,15,HOU,JAC,1,10,57,(2:15) M.Schaub pass short right to O.Daniels pushed ob at HST 49 for 6 yards (D.Cox).,14,17,2012 -20121118_JAC@HOU,2,32,0,HOU,JAC,2,4,51,(2:00) M.Schaub pass short middle to O.Daniels to JAX 44 for 7 yards (R.Allen; P.Posluszny).,14,17,2012 -20121118_JAC@HOU,2,31,34,HOU,JAC,1,10,31,(1:34) M.Schaub pass incomplete deep left to K.Walter.,14,17,2012 -20121118_JAC@HOU,2,31,28,HOU,JAC,2,10,31,(1:28) (Shotgun) M.Schaub pass short left to A.Johnson to JAX 24 for 7 yards (D.Cox).,14,17,2012 -20121118_JAC@HOU,2,31,22,HOU,JAC,3,3,24,(1:22) M.Schaub pass incomplete short left to K.Walter (C.Prosinski).,14,17,2012 -20121118_JAC@HOU,2,31,16,HOU,JAC,4,3,24,(1:16) S.Graham 42 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,14,17,2012 -20121118_JAC@HOU,2,31,16,HOU,JAC,,,24,S.Graham kicks 64 yards from HST 35 to JAX 1. R.Jennings to JAX 24 for 23 yards (D.Posey; S.Keo).,17,17,2012 -20121118_JAC@HOU,2,31,12,JAC,HOU,1,10,76,(1:12) (Shotgun) C.Henne pass short right to J.Parmele to JAX 21 for -3 yards (B.James) [B.Reed].,17,17,2012 -20121118_JAC@HOU,2,30,39,JAC,HOU,2,13,79,(:39) (Shotgun) C.Henne pass incomplete short left to M.Spurlock (B.McCain).,17,17,2012 -20121118_JAC@HOU,2,30,34,JAC,HOU,3,13,79,(:34) J.Parmele right guard to JAX 21 for no gain (J.Watt).,17,17,2012 -20121118_JAC@HOU,2,30,31,JAC,HOU,4,13,79,(:31) B.Anger punts 44 yards to HST 35 Center-J.Cain out of bounds. (The punt hang time was 4.4 seconds.),17,17,2012 -20121118_JAC@HOU,2,30,24,HOU,JAC,1,10,65,(:24) (Shotgun) M.Schaub pass short left to A.Johnson to HST 48 for 13 yards (D.Cox).,17,17,2012 -20121118_JAC@HOU,2,30,17,HOU,JAC,1,10,52,(:17) (Shotgun) M.Schaub pass incomplete deep right to A.Johnson.,17,17,2012 -20121118_JAC@HOU,2,30,12,HOU,JAC,2,10,52,(:12) (Shotgun) M.Schaub pass incomplete short left to A.Foster. PENALTY on JAX-J.Mincey Face Mask (15 Yards) 15 yards enforced at HST 48 - No Play.,17,17,2012 -20121118_JAC@HOU,2,30,6,HOU,JAC,1,10,37,(:06) (Shotgun) M.Schaub pass short left to K.Walter pushed ob at JAX 32 for 5 yards (D.Cox).,17,17,2012 -20121118_JAC@HOU,2,30,2,HOU,JAC,2,5,32,(:02) S.Graham 50 yard field goal is No Good Wide Left Center-J.Weeks Holder-D.Jones.,17,17,2012 -20121118_JAC@HOU,3,30,0,HOU,JAC,,,32,S.Graham kicks 73 yards from HST 35 to JAX -8. R.Jennings Touchback.,17,17,2012 -20121118_JAC@HOU,3,30,0,JAC,HOU,1,10,80,(15:00) C.Henne pass deep middle to J.Blackmon to HST 41 for 39 yards (K.Jackson).,17,17,2012 -20121118_JAC@HOU,3,29,24,JAC,HOU,1,10,41,(14:24) J.Parmele right guard to HST 39 for 2 yards (E.Mitchell).,17,17,2012 -20121118_JAC@HOU,3,28,47,JAC,HOU,2,8,39,(13:47) R.Jennings left guard to HST 41 for -2 yards (B.Reed).,17,17,2012 -20121118_JAC@HOU,3,28,1,JAC,HOU,3,10,41,(13:01) (Shotgun) C.Henne pass short right to J.Blackmon pushed ob at HST 30 for 11 yards (B.McCain).,17,17,2012 -20121118_JAC@HOU,3,27,30,JAC,HOU,1,10,30,(12:30) J.Parmele left guard to HST 28 for 2 yards (D.Sharpton; J.Watt).,17,17,2012 -20121118_JAC@HOU,3,26,50,JAC,HOU,2,8,28,(11:50) J.Parmele up the middle to HST 22 for 6 yards (B.James).,17,17,2012 -20121118_JAC@HOU,3,26,10,JAC,HOU,3,2,22,(11:10) (Shotgun) C.Henne pass incomplete short left to M.Spurlock (J.Joseph).,17,17,2012 -20121118_JAC@HOU,3,26,5,JAC,HOU,4,2,22,(11:05) J.Scobee 40 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,17,17,2012 -20121118_JAC@HOU,3,26,5,JAC,HOU,,,22,J.Scobee kicks 69 yards from JAX 35 to HST -4. K.Martin to HST 33 for 37 yards (J.Scobee).,20,17,2012 -20121118_JAC@HOU,3,25,55,HOU,JAC,1,10,67,(10:55) A.Foster right end pushed ob at HST 34 for 1 yard (P.Posluszny).,17,20,2012 -20121118_JAC@HOU,3,25,24,HOU,JAC,2,9,66,(10:24) M.Schaub sacked at HST 26 for -8 yards (C.Mosley).,17,20,2012 -20121118_JAC@HOU,3,24,46,HOU,JAC,3,17,74,(9:46) (Shotgun) A.Foster right guard to HST 22 for -4 yards (P.Posluszny). FUMBLES (P.Posluszny) RECOVERED by JAX-J.Chick at HST 11. J.Chick to HST 11 for no gain (K.Walter). The Replay Assistant challenged the loose ball recovery ruling and the play was Upheld.,17,20,2012 -20121118_JAC@HOU,3,24,31,JAC,HOU,1,10,11,(9:31) J.Parmele right guard to HST 11 for no gain (B.James).,20,17,2012 -20121118_JAC@HOU,3,23,56,JAC,HOU,2,10,11,(8:56) (Shotgun) C.Henne pass short left to M.Spurlock to HST 1 for 10 yards (B.McCain).,20,17,2012 -20121118_JAC@HOU,3,23,14,JAC,HOU,1,1,1,(8:14) J.Parmele left guard to HST 1 for no gain (B.James).,20,17,2012 -20121118_JAC@HOU,3,22,36,JAC,HOU,2,1,1,(7:36) J.Parmele left guard to HST 1 for no gain (B.James).,20,17,2012 -20121118_JAC@HOU,3,21,57,JAC,HOU,3,1,1,(6:57) C.Henne pass short left to M.Lewis for 1 yard TOUCHDOWN.,20,17,2012 -20121118_JAC@HOU,3,21,57,JAC,HOU,,,1,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,20,17,2012 -20121118_JAC@HOU,3,21,57,JAC,HOU,,,1,J.Scobee kicks 70 yards from JAX 35 to HST -5. K.Martin to HST 26 for 31 yards (C.Harris; K.Elliott).,27,17,2012 -20121118_JAC@HOU,3,21,46,HOU,JAC,1,10,74,(6:46) J.Forsett left guard to HST 31 for 5 yards (C.Mosley).,17,27,2012 -20121118_JAC@HOU,3,21,24,HOU,JAC,2,5,69,(6:24) M.Schaub pass short left to G.Graham to HST 39 for 8 yards (R.Allen).,17,27,2012 -20121118_JAC@HOU,3,20,57,HOU,JAC,1,10,61,(5:57) M.Schaub pass deep middle to G.Graham to JAX 31 for 30 yards (C.Prosinski; P.Posluszny) [A.Lane].,17,27,2012 -20121118_JAC@HOU,3,20,24,HOU,JAC,1,10,31,(5:24) A.Foster left guard pushed ob at JAX 24 for 7 yards (D.Landry).,17,27,2012 -20121118_JAC@HOU,3,19,55,HOU,JAC,2,3,24,(4:55) J.Forsett right end to JAX 18 for 6 yards (T.Alualu).,17,27,2012 -20121118_JAC@HOU,3,19,20,HOU,JAC,1,10,18,(4:20) M.Schaub pass short middle to J.Forsett to JAX 12 for 6 yards (P.Posluszny; J.Stanford).,17,27,2012 -20121118_JAC@HOU,3,18,45,HOU,JAC,2,4,12,(3:45) A.Foster right tackle to JAX 9 for 3 yards (G.Selvie).,17,27,2012 -20121118_JAC@HOU,3,18,9,HOU,JAC,3,1,9,(3:09) A.Foster left tackle to JAX 9 for no gain (P.Posluszny).,17,27,2012 -20121118_JAC@HOU,3,17,18,HOU,JAC,4,1,9,(2:18) S.Graham 27 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,17,27,2012 -20121118_JAC@HOU,3,17,18,HOU,JAC,,,9,S.Graham kicks 67 yards from HST 35 to JAX -2. R.Jennings to JAX 13 for 15 yards (B.Braman).,20,27,2012 -20121118_JAC@HOU,3,17,9,JAC,HOU,1,10,87,(2:09) J.Parmele right guard to JAX 14 for 1 yard (B.James).,27,20,2012 -20121118_JAC@HOU,3,16,30,JAC,HOU,2,9,86,(1:30) C.Henne pass short left to J.Blackmon to JAX 26 for 12 yards (K.Jackson).,27,20,2012 -20121118_JAC@HOU,3,15,50,JAC,HOU,1,10,74,(:50) J.Parmele left tackle to JAX 28 for 2 yards (D.Sharpton).,27,20,2012 -20121118_JAC@HOU,3,15,11,JAC,HOU,2,8,72,(:11) J.Parmele left tackle to JAX 32 for 4 yards (D.Sharpton; D.Manning).,27,20,2012 -20121118_JAC@HOU,4,15,0,JAC,HOU,3,4,68,(15:00) (Shotgun) C.Henne pass incomplete short right to C.Shorts.,27,20,2012 -20121118_JAC@HOU,4,14,55,JAC,HOU,4,4,68,(14:55) B.Anger punts 62 yards to HST 6 Center-J.Cain. K.Martin to JAX 23 for 71 yards (B.Anger). (The punt hang time was 4.8 seconds.),27,20,2012 -20121118_JAC@HOU,4,14,36,HOU,JAC,1,10,23,(14:36) A.Foster right end pushed ob at JAX 19 for 4 yards (P.Posluszny).,20,27,2012 -20121118_JAC@HOU,4,14,8,HOU,JAC,2,6,19,(14:08) M.Schaub pass short middle intended for O.Daniels INTERCEPTED by P.Posluszny at JAX 11. P.Posluszny to JAX 13 for 2 yards. Lateral to D.Landry to JAX 30 for 17 yards (O.Daniels).,20,27,2012 -20121118_JAC@HOU,4,13,56,JAC,HOU,1,10,70,(13:56) C.Henne sacked at JAX 24 for -6 yards (J.Watt).,27,20,2012 -20121118_JAC@HOU,4,13,19,JAC,HOU,2,16,76,(13:19) PENALTY on JAX-M.Brewster False Start 5 yards enforced at JAX 24 - No Play.,27,20,2012 -20121118_JAC@HOU,4,12,52,JAC,HOU,2,21,81,(12:52) C.Henne pass incomplete short left to J.Blackmon (K.Jackson) [A.Smith].,27,20,2012 -20121118_JAC@HOU,4,12,46,JAC,HOU,3,21,81,(12:46) (Shotgun) C.Henne pass deep middle to J.Blackmon for 81 yards TOUCHDOWN.,27,20,2012 -20121118_JAC@HOU,4,12,46,JAC,HOU,,,81,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,27,20,2012 -20121118_JAC@HOU,4,12,46,JAC,HOU,,,81,J.Scobee kicks 65 yards from JAX 35 to HST 0. K.Martin to HST 24 for 24 yards (A.Branch). PENALTY on JAX Offside on Free Kick 5 yards enforced at JAX 35 - No Play.,34,20,2012 -20121118_JAC@HOU,4,12,46,JAC,HOU,,,81,J.Scobee kicks 76 yards from JAX 30 to HST -6. K.Martin Touchback.,34,20,2012 -20121118_JAC@HOU,4,12,26,HOU,JAC,1,10,80,(12:26) M.Schaub pass short middle to O.Daniels to HST 27 for 7 yards (K.Bosworth).,20,34,2012 -20121118_JAC@HOU,4,12,3,HOU,JAC,2,3,73,(12:03) A.Foster right guard to HST 29 for 2 yards (C.Mosley).,20,34,2012 -20121118_JAC@HOU,4,11,29,HOU,JAC,3,1,71,(11:29) A.Foster right tackle to HST 30 for 1 yard (K.Bosworth P.Posluszny).,20,34,2012 -20121118_JAC@HOU,4,11,1,HOU,JAC,1,10,70,(11:01) M.Schaub pass short right to J.Casey pushed ob at HST 38 for 8 yards (R.Allen).,20,34,2012 -20121118_JAC@HOU,4,10,37,HOU,JAC,2,2,62,(10:37) M.Schaub pass short middle to G.Graham to HST 43 for 5 yards (P.Posluszny).,20,34,2012 -20121118_JAC@HOU,4,10,10,HOU,JAC,1,10,57,(10:10) M.Schaub pass short middle to G.Graham to JAX 49 for 8 yards (R.Allen).,20,34,2012 -20121118_JAC@HOU,4,9,45,HOU,JAC,2,2,49,(9:45) M.Schaub pass short middle to G.Graham to JAX 43 for 6 yards (P.Posluszny; R.Allen) [A.Lane].,20,34,2012 -20121118_JAC@HOU,4,9,11,HOU,JAC,1,10,43,(9:11) M.Schaub pass deep middle to G.Graham to JAX 24 for 19 yards (D.Landry) [C.Mosley]. PENALTY on JAX-D.Landry Unnecessary Roughness 12 yards enforced at JAX 24.,20,34,2012 -20121118_JAC@HOU,4,8,43,HOU,JAC,1,10,12,(8:43) A.Foster left end pushed ob at JAX 9 for 3 yards (D.Cox).,20,34,2012 -20121118_JAC@HOU,4,8,13,HOU,JAC,2,7,9,(8:13) M.Schaub pass short left to A.Johnson to JAX 3 for 6 yards (D.Cox).,20,34,2012 -20121118_JAC@HOU,4,7,40,HOU,JAC,3,1,3,(7:40) A.Foster left guard to JAX 1 for 2 yards (R.Allen).,20,34,2012 -20121118_JAC@HOU,4,7,0,HOU,JAC,1,1,1,(7:00) A.Foster left tackle to JAX 1 for no gain (P.Posluszny).,20,34,2012 -20121118_JAC@HOU,4,6,22,HOU,JAC,2,1,1,(6:22) A.Foster left end to JAX 1 for no gain (J.Stanford).,20,34,2012 -20121118_JAC@HOU,4,5,42,HOU,JAC,3,1,1,(5:42) M.Schaub pass short middle to G.Graham for 1 yard TOUCHDOWN.,20,34,2012 -20121118_JAC@HOU,4,5,42,HOU,JAC,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,20,34,2012 -20121118_JAC@HOU,4,5,42,HOU,JAC,,,1,S.Graham kicks 62 yards from HST 35 to JAX 3. R.Jennings to JAX 31 for 28 yards (J.Nading).,27,34,2012 -20121118_JAC@HOU,4,5,33,JAC,HOU,1,10,69,(5:33) J.Parmele left guard to JAX 35 for 4 yards (B.James).,34,27,2012 -20121118_JAC@HOU,4,4,50,JAC,HOU,2,6,65,(4:50) J.Parmele left guard to JAX 37 for 2 yards (G.Quin).,34,27,2012 -20121118_JAC@HOU,4,4,5,JAC,HOU,3,4,63,(4:05) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon [A.Smith].,34,27,2012 -20121118_JAC@HOU,4,4,0,JAC,HOU,4,4,63,(4:00) B.Anger punts 53 yards to HST 10 Center-J.Cain fair catch by K.Martin. (The punt hang time was 4.7 seconds.),34,27,2012 -20121118_JAC@HOU,4,3,52,HOU,JAC,1,10,90,(3:52) (Shotgun) M.Schaub pass deep right to A.Johnson to HST 30 for 20 yards (D.Cox).,27,34,2012 -20121118_JAC@HOU,4,3,27,HOU,JAC,1,10,70,(3:27) (Shotgun) M.Schaub pass short right to K.Walter to HST 41 for 11 yards (R.Allen).,27,34,2012 -20121118_JAC@HOU,4,3,5,HOU,JAC,1,10,59,(3:05) (Shotgun) M.Schaub pass short left to O.Daniels to JAX 41 for 18 yards (P.Posluszny).,27,34,2012 -20121118_JAC@HOU,4,2,35,HOU,JAC,1,10,41,(2:35) (Shotgun) M.Schaub pass short middle to K.Walter to JAX 28 for 13 yards (R.Allen). JAX-R.Allen was injured during the play.,27,34,2012 -20121118_JAC@HOU,4,2,18,HOU,JAC,1,10,28,(2:18) (Shotgun) M.Schaub pass short right to A.Johnson pushed ob at JAX 21 for 7 yards (D.Cox).,27,34,2012 -20121118_JAC@HOU,4,2,12,HOU,JAC,2,3,21,(2:12) (Shotgun) M.Schaub pass short middle to A.Johnson to JAX 7 for 14 yards (P.Posluszny; C.Prosinski). JAX-D.Cox was injured during the play.,27,34,2012 -20121118_JAC@HOU,4,2,0,HOU,JAC,1,7,7,(2:00) A.Foster up the middle to JAX 5 for 2 yards (A.Lane; C.Mosley).,27,34,2012 -20121118_JAC@HOU,4,1,40,HOU,JAC,2,5,5,(1:40) M.Schaub pass short left to G.Graham for 5 yards TOUCHDOWN.,27,34,2012 -20121118_JAC@HOU,4,1,40,HOU,JAC,,,5,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,27,34,2012 -20121118_JAC@HOU,4,1,40,HOU,JAC,,,5,S.Graham kicks 67 yards from HST 35 to JAX -2. R.Jennings Touchback.,34,34,2012 -20121118_JAC@HOU,4,1,34,JAC,HOU,1,10,80,(1:34) (Shotgun) C.Henne pass incomplete short middle to M.Spurlock.,34,34,2012 -20121118_JAC@HOU,4,1,29,JAC,HOU,2,10,80,(1:29) (Shotgun) C.Henne pass incomplete short left to J.Blackmon [B.McCain].,34,34,2012 -20121118_JAC@HOU,4,1,25,JAC,HOU,3,10,80,(1:25) (Shotgun) C.Henne pass short right to M.Spurlock to JAX 28 for 8 yards (J.Joseph).,34,34,2012 -20121118_JAC@HOU,4,1,17,JAC,HOU,4,2,72,(1:17) B.Anger punts 42 yards to HST 30 Center-J.Cain. K.Martin to HST 35 for 5 yards (J.Cain).,34,34,2012 -20121118_JAC@HOU,4,1,7,HOU,JAC,1,10,65,(1:07) (Shotgun) M.Schaub pass deep right to A.Johnson to JAX 30 for 35 yards (D.Cox).,34,34,2012 -20121118_JAC@HOU,4,0,33,HOU,JAC,1,10,30,(:33) A.Foster left guard to JAX 30 for no gain (J.Chick).,34,34,2012 -20121118_JAC@HOU,4,0,27,HOU,JAC,2,10,30,(:27) A.Foster up the middle to JAX 24 for 6 yards (D.Landry).,34,34,2012 -20121118_JAC@HOU,4,0,5,HOU,JAC,3,4,24,(:05) PENALTY on HST-A.Caldwell False Start 5 yards enforced at JAX 24 - No Play.,34,34,2012 -20121118_JAC@HOU,4,0,5,HOU,JAC,3,17,29,(:05) S.Graham 47 yard field goal is No Good Wide Left Center-J.Weeks Holder-D.Jones.,34,34,2012 -20121118_JAC@HOU,5,0,0,JAC,HOU,,,29,J.Scobee kicks 72 yards from JAX 35 to HST -7. K.Martin Touchback.,34,34,2012 -20121118_JAC@HOU,5,0,0,HOU,JAC,1,10,80,(15:00) M.Schaub pass short left to A.Johnson to HST 31 for 11 yards (R.Allen) [A.Lane].,34,34,2012 -20121118_JAC@HOU,5,-1,33,HOU,JAC,1,10,69,(14:33) M.Schaub pass incomplete short middle to G.Graham.,34,34,2012 -20121118_JAC@HOU,5,-1,28,HOU,JAC,2,10,69,(14:28) M.Schaub pass short middle to A.Foster to HST 40 for 9 yards (R.Allen).,34,34,2012 -20121118_JAC@HOU,5,-2,53,HOU,JAC,3,1,60,(13:53) A.Foster left tackle to HST 41 for 1 yard (R.Allen; J.Mincey).,34,34,2012 -20121118_JAC@HOU,5,-2,12,HOU,JAC,1,10,59,(13:12) M.Schaub pass short middle to O.Daniels to 50 for 9 yards (K.Bosworth).,34,34,2012 -20121118_JAC@HOU,5,-3,35,HOU,JAC,2,1,50,(12:35) A.Foster left end to JAX 44 for 6 yards (D.Cox).,34,34,2012 -20121118_JAC@HOU,5,-4,55,HOU,JAC,1,10,44,(11:55) A.Foster left end to JAX 41 for 3 yards (D.Cox).,34,34,2012 -20121118_JAC@HOU,5,-4,14,HOU,JAC,2,7,41,(11:14) M.Schaub pass short right to K.Walter to JAX 29 for 12 yards (K.Bosworth).,34,34,2012 -20121118_JAC@HOU,5,-5,33,HOU,JAC,1,10,29,(10:33) A.Foster right tackle to JAX 22 for 7 yards (D.Cox).,34,34,2012 -20121118_JAC@HOU,5,-6,57,HOU,JAC,2,3,22,(9:57) J.Forsett left end to JAX 21 for 1 yard (C.Prosinski).,34,34,2012 -20121118_JAC@HOU,5,-6,10,HOU,JAC,3,2,21,(9:10) (Shotgun) M.Schaub pass incomplete deep right to K.Martin. PENALTY on JAX-A.Ross Defensive Pass Interference 12 yards enforced at JAX 21 - No Play.,34,34,2012 -20121118_JAC@HOU,5,-6,5,HOU,JAC,1,9,9,(9:05) M.Schaub pass incomplete short left to O.Daniels.,34,34,2012 -20121118_JAC@HOU,5,-6,0,HOU,JAC,2,9,9,(9:00) M.Schaub pass short right to A.Foster to JAX 7 for 2 yards (K.Bosworth).,34,34,2012 -20121118_JAC@HOU,5,-7,18,HOU,JAC,3,7,7,(8:18) (Shotgun) M.Schaub pass incomplete short right to A.Johnson (D.Cox).,34,34,2012 -20121118_JAC@HOU,5,-7,13,HOU,JAC,4,7,7,(8:13) S.Graham 25 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,34,34,2012 -20121118_JAC@HOU,5,-7,13,HOU,JAC,,,7,S.Graham kicks 62 yards from HST 35 to JAX 3. R.Jennings to JAX 32 for 29 yards (A.Ball).,37,34,2012 -20121118_JAC@HOU,5,-7,3,JAC,HOU,1,10,68,(8:03) C.Henne scrambles left end to JAX 36 for 4 yards (D.Sharpton).,34,37,2012 -20121118_JAC@HOU,5,-8,35,JAC,HOU,2,6,64,(7:35) (Shotgun) C.Henne pass incomplete short right to M.Lewis. PENALTY on HST-A.Smith Unnecessary Roughness 15 yards enforced at JAX 36.,34,37,2012 -20121118_JAC@HOU,5,-8,29,JAC,HOU,1,10,49,(7:29) J.Parmele right guard to HST 49 for no gain (J.Watt).,34,37,2012 -20121118_JAC@HOU,5,-9,44,JAC,HOU,2,10,49,(6:44) (Shotgun) C.Henne pass incomplete short left to R.Jennings (C.Barwin).,34,37,2012 -20121118_JAC@HOU,5,-9,40,JAC,HOU,3,10,49,(6:40) (Shotgun) C.Henne pass incomplete short left to Z.Potter (A.Smith).,34,37,2012 -20121118_JAC@HOU,5,-9,36,JAC,HOU,4,10,49,(6:36) (Shotgun) C.Henne pass short middle to J.Blackmon to HST 34 for 15 yards (D.Manning) [J.Watt].,34,37,2012 -20121118_JAC@HOU,5,-10,54,JAC,HOU,1,10,34,(5:54) J.Parmele left end to HST 6 for 28 yards (D.Manning).,34,37,2012 -20121118_JAC@HOU,5,-10,10,JAC,HOU,1,6,6,(5:10) J.Parmele right guard to HST 10 for -4 yards (J.Watt).,34,37,2012 -20121118_JAC@HOU,5,-11,31,JAC,HOU,2,10,10,(4:31) (Shotgun) PENALTY on JAX-E.Monroe False Start 5 yards enforced at HST 10 - No Play.,34,37,2012 -20121118_JAC@HOU,5,-11,31,JAC,HOU,2,15,15,(4:31) (Shotgun) C.Henne pass incomplete short left to L.Robinson (A.Smith) [J.Watt].,34,37,2012 -20121118_JAC@HOU,5,-11,27,JAC,HOU,3,15,15,(4:27) (Shotgun) C.Henne pass incomplete short right to C.Shorts (J.Watt).,34,37,2012 -20121118_JAC@HOU,5,-11,24,JAC,HOU,4,15,15,(4:24) J.Scobee 33 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,34,37,2012 -20121118_JAC@HOU,5,-11,24,JAC,HOU,,,15,J.Scobee kicks 72 yards from JAX 35 to HST -7. K.Martin Touchback.,37,37,2012 -20121118_JAC@HOU,5,-11,21,HOU,JAC,1,10,80,(4:21) (Shotgun) M.Schaub pass short middle to K.Walter to HST 28 for 8 yards (R.Allen).,37,37,2012 -20121118_JAC@HOU,5,-12,49,HOU,JAC,2,2,72,(3:49) (Shotgun) M.Schaub pass short right to L.Jean pushed ob at HST 39 for 11 yards (A.Ross).,37,37,2012 -20121118_JAC@HOU,5,-12,44,HOU,JAC,1,10,61,(3:44) (Shotgun) M.Schaub pass deep left intended for A.Johnson INTERCEPTED by D.Cox at JAX 37. D.Cox to HST 47 for 16 yards (O.Daniels).,37,37,2012 -20121118_JAC@HOU,5,-12,30,JAC,HOU,1,10,47,(3:30) C.Henne pass incomplete short right to C.Shorts.,37,37,2012 -20121118_JAC@HOU,5,-12,25,JAC,HOU,2,10,47,(3:25) J.Parmele left guard to HST 47 for no gain (J.Watt; B.Reed).,37,37,2012 -20121118_JAC@HOU,5,-13,41,JAC,HOU,3,10,47,(2:41) (Shotgun) C.Henne pass incomplete short right to L.Robinson (A.Ball).,37,37,2012 -20121118_JAC@HOU,5,-13,36,JAC,HOU,4,10,47,(2:36) (Shotgun) C.Henne pass incomplete deep middle to J.Blackmon.,37,37,2012 -20121118_JAC@HOU,5,-13,30,HOU,JAC,1,10,53,(2:30) (Shotgun) M.Schaub pass short right to K.Walter to JAX 48 for 5 yards (C.Prosinski).,37,37,2012 -20121118_JAC@HOU,5,-13,10,HOU,JAC,2,5,48,(2:10) (Shotgun) M.Schaub pass short right to A.Johnson for 48 yards TOUCHDOWN.,37,37,2012 -20121118_JAC@HOU,5,-13,10,HOU,JAC,,,48,                      ,37,37,2012 -20121118_CIN@KC,1,-13,0,CIN,KC,,,48,M.Nugent kicks 64 yards from CIN 35 to KC 1. S.Draughn to KC 24 for 23 yards (E.Lamur).,0,0,2012 -20121118_CIN@KC,1,59,54,KC,CIN,1,10,76,(14:54) J.Charles left end to KC 26 for 2 yards (G.Atkins).,0,0,2012 -20121118_CIN@KC,1,59,21,KC,CIN,2,8,74,(14:21) (No Huddle) J.Charles left end pushed ob at KC 31 for 5 yards (A.Jones).,0,0,2012 -20121118_CIN@KC,1,58,51,KC,CIN,3,3,69,(13:51) (No Huddle Shotgun) M.Cassel pass incomplete short left to S.Breaston (G.Atkins).,0,0,2012 -20121118_CIN@KC,1,58,43,KC,CIN,4,3,69,(13:43) D.Colquitt punts 62 yards to CIN 7 Center-T.Gafford. A.Jones to CIN 18 for 11 yards (C.Greenwood). PENALTY on CIN Illegal Block Above the Waist 9 yards enforced at CIN 18.,0,0,2012 -20121118_CIN@KC,1,58,31,CIN,KC,1,10,91,(13:31) A.Dalton pass short left to M.Sanu to CIN 17 for 8 yards (J.Arenas).,0,0,2012 -20121118_CIN@KC,1,57,55,CIN,KC,2,2,83,(12:55) B.Green-Ellis right end to CIN 28 for 11 yards (E.Berry).,0,0,2012 -20121118_CIN@KC,1,57,29,CIN,KC,1,10,72,(12:29) (No Huddle) B.Green-Ellis right end to CIN 30 for 2 yards (J.Belcher).,0,0,2012 -20121118_CIN@KC,1,56,51,CIN,KC,2,8,70,(11:51) (Shotgun) A.Dalton pass incomplete short left to M.Sanu (D.Poe).,0,0,2012 -20121118_CIN@KC,1,56,47,CIN,KC,3,8,70,(11:47) (Shotgun) A.Dalton pass incomplete short left to J.Gresham [D.Poe].,0,0,2012 -20121118_CIN@KC,1,56,42,CIN,KC,4,8,70,(11:42) K.Huber punts 57 yards to KC 13 Center-C.Harris. J.Arenas to KC 25 for 12 yards (M.Lawson).,0,0,2012 -20121118_CIN@KC,1,56,30,KC,CIN,1,10,75,(11:30) M.Cassel pass short middle to T.Moeaki to KC 47 for 22 yards (C.Crocker).,0,0,2012 -20121118_CIN@KC,1,56,0,KC,CIN,1,10,53,(11:00) (No Huddle) J.Charles left end pushed ob at CIN 36 for 17 yards (N.Clements).,0,0,2012 -20121118_CIN@KC,1,55,40,KC,CIN,1,10,36,(10:40) (No Huddle) J.Charles up the middle to CIN 34 for 2 yards (W.Gilberry).,0,0,2012 -20121118_CIN@KC,1,54,54,KC,CIN,2,8,34,(9:54) (No Huddle) J.Charles up the middle to CIN 24 for 10 yards (N.Clements).,0,0,2012 -20121118_CIN@KC,1,54,20,KC,CIN,1,10,24,(9:20) (No Huddle) J.Charles right tackle to CIN 19 for 5 yards (C.Dunlap).,0,0,2012 -20121118_CIN@KC,1,53,46,KC,CIN,2,5,19,(8:46) (No Huddle) M.Cassel pass incomplete short right to D.Bowe [D.Peko].,0,0,2012 -20121118_CIN@KC,1,53,40,KC,CIN,3,5,19,(8:40) (Shotgun) M.Cassel pass short left to D.McCluster pushed ob at CIN 16 for 3 yards (L.Hall).,0,0,2012 -20121118_CIN@KC,1,53,35,KC,CIN,4,2,16,(8:35) R.Succop 34 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,0,2012 -20121118_CIN@KC,1,53,35,KC,CIN,,,16,R.Succop kicks 69 yards from KC 35 to CIN -4. B.Tate to CIN 22 for 26 yards (B.Siler).,3,0,2012 -20121118_CIN@KC,1,53,26,CIN,KC,1,10,78,(8:26) B.Green-Ellis left end to CIN 22 for no gain (R.Pitoitua).,0,3,2012 -20121118_CIN@KC,1,52,43,CIN,KC,2,10,78,(7:43) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 29 for 7 yards (D.Johnson).,0,3,2012 -20121118_CIN@KC,1,51,57,CIN,KC,3,3,71,(6:57) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,0,3,2012 -20121118_CIN@KC,1,51,51,CIN,KC,4,3,71,(6:51) (Punt formation) C.Peerman left end to KC 39 for 32 yards (A.Elam).,0,3,2012 -20121118_CIN@KC,1,51,51,CIN,KC,1,10,39,(6:51) PENALTY on CIN-J.Gresham False Start 5 yards enforced at KC 39 - No Play.,0,3,2012 -20121118_CIN@KC,1,50,48,CIN,KC,1,15,44,(5:48) A.Dalton pass short left to A.Green to KC 47 for -3 yards (T.Hali).,0,3,2012 -20121118_CIN@KC,1,50,10,CIN,KC,2,18,47,(5:10) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,0,3,2012 -20121118_CIN@KC,1,50,5,CIN,KC,3,18,47,(5:05) (Shotgun) A.Dalton pass short left to B.Leonard pushed ob at KC 36 for 11 yards (E.Berry).,0,3,2012 -20121118_CIN@KC,1,49,43,CIN,KC,4,7,36,(4:43) (Shotgun) A.Dalton scrambles left end ran ob at KC 25 for 11 yards (A.Elam).,0,3,2012 -20121118_CIN@KC,1,49,15,CIN,KC,1,10,25,(4:15) B.Green-Ellis up the middle to KC 22 for 3 yards (D.Johnson).,0,3,2012 -20121118_CIN@KC,1,48,40,CIN,KC,2,7,22,(3:40) A.Dalton pass short middle to J.Gresham to KC 4 for 18 yards (J.Houston).,0,3,2012 -20121118_CIN@KC,1,47,56,CIN,KC,1,4,4,(2:56) A.Dalton pass short left to A.Green for 4 yards TOUCHDOWN.,0,3,2012 -20121118_CIN@KC,1,47,56,CIN,KC,,,4,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,3,2012 -20121118_CIN@KC,1,47,56,CIN,KC,,,4,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,7,3,2012 -20121118_CIN@KC,1,47,51,KC,CIN,1,10,80,(2:51) J.Charles left end to KC 24 for 4 yards (R.Maualuga).,3,7,2012 -20121118_CIN@KC,1,47,23,KC,CIN,2,6,76,(2:23) (No Huddle) M.Cassel sacked at KC 20 for -4 yards (G.Atkins). FUMBLES (G.Atkins) recovered by KC-E.Winston at KC 23.,3,7,2012 -20121118_CIN@KC,1,46,55,KC,CIN,3,7,77,(1:55) (Shotgun) M.Cassel sacked at KC 23 for 0 yards (C.Dunlap). PENALTY on CIN-T.Newman Defensive Holding 5 yards enforced at KC 23 - No Play.,3,7,2012 -20121118_CIN@KC,1,46,31,KC,CIN,1,10,72,(1:31) P.Hillis up the middle to KC 34 for 6 yards (M.Lawson).,3,7,2012 -20121118_CIN@KC,1,45,56,KC,CIN,2,4,66,(:56) P.Hillis left end to KC 35 for 1 yard (G.Atkins). FUMBLES (G.Atkins) RECOVERED by CIN-V.Burfict at KC 34.,3,7,2012 -20121118_CIN@KC,1,45,46,CIN,KC,1,10,34,(:46) B.Green-Ellis up the middle to KC 29 for 5 yards (S.Smith).,7,3,2012 -20121118_CIN@KC,1,45,15,CIN,KC,2,5,29,(:15) B.Green-Ellis up the middle to KC 26 for 3 yards (D.Poe).,7,3,2012 -20121118_CIN@KC,2,45,0,CIN,KC,3,2,26,(15:00) (Shotgun) A.Dalton sacked at KC 32 for -6 yards (T.Hali).,7,3,2012 -20121118_CIN@KC,2,44,26,CIN,KC,4,8,32,(14:26) M.Nugent 50 yard field goal is No Good Wide Left Center-C.Harris Holder-K.Huber.,7,3,2012 -20121118_CIN@KC,2,44,21,KC,CIN,1,10,60,(14:21) J.Charles up the middle to KC 40 for no gain (T.Mays).,3,7,2012 -20121118_CIN@KC,2,43,43,KC,CIN,2,10,60,(13:43) M.Cassel scrambles up the middle to KC 40 for no gain (C.Dunlap). No sack on the play. Broken running play.,3,7,2012 -20121118_CIN@KC,2,43,5,KC,CIN,3,10,60,(13:05) (Shotgun) M.Cassel pass incomplete short left to S.Draughn.,3,7,2012 -20121118_CIN@KC,2,43,0,KC,CIN,4,10,60,(13:00) D.Colquitt punts 44 yards to CIN 16 Center-T.Gafford. B.Tate to CIN 16 for no gain.,3,7,2012 -20121118_CIN@KC,2,42,52,CIN,KC,1,10,84,(12:52) C.Peerman right end to CIN 18 for 2 yards (E.Berry).,7,3,2012 -20121118_CIN@KC,2,42,15,CIN,KC,2,8,82,(12:15) (Shotgun) C.Peerman right end to CIN 22 for 4 yards (J.Belcher; T.Jackson).,7,3,2012 -20121118_CIN@KC,2,41,33,CIN,KC,3,4,78,(11:33) (Shotgun) A.Dalton pass incomplete short left to J.Gresham.,7,3,2012 -20121118_CIN@KC,2,41,28,CIN,KC,4,4,78,(11:28) K.Huber punts 51 yards to KC 27 Center-C.Harris fair catch by J.Arenas.,7,3,2012 -20121118_CIN@KC,2,41,21,KC,CIN,1,10,73,(11:21) M.Cassel pass incomplete deep left to T.Moeaki.,3,7,2012 -20121118_CIN@KC,2,41,15,KC,CIN,2,10,73,(11:15) J.Charles left end pushed ob at KC 27 for no gain (R.Maualuga).,3,7,2012 -20121118_CIN@KC,2,40,46,KC,CIN,3,10,73,(10:46) (Shotgun) M.Cassel pass short left to S.Draughn to KC 24 for -3 yards (A.Jones).,3,7,2012 -20121118_CIN@KC,2,40,12,KC,CIN,4,13,76,(10:12) D.Colquitt punts 38 yards to CIN 38 Center-T.Gafford out of bounds. PENALTY on KC-N.Thorpe Player Out of Bounds on Punt 5 yards enforced at CIN 38.,3,7,2012 -20121118_CIN@KC,2,40,5,CIN,KC,1,10,57,(10:05) A.Dalton pass deep right to A.Green to KC 17 for 40 yards (A.Elam). PENALTY on KC-A.Elam Unnecessary Roughness 9 yards enforced at KC 17.,7,3,2012 -20121118_CIN@KC,2,39,30,CIN,KC,1,8,8,(9:30) B.Green-Ellis up the middle to KC 7 for 1 yard (D.Johnson).,7,3,2012 -20121118_CIN@KC,2,38,51,CIN,KC,2,7,7,(8:51) (Shotgun) A.Dalton sacked at KC 11 for -4 yards (T.Jackson).,7,3,2012 -20121118_CIN@KC,2,38,15,CIN,KC,3,11,11,(8:15) (Shotgun) A.Dalton pass short middle to J.Gresham for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (Shotgun) A.Dalton pass short middle to J.Gresham to KC 1 for 10 yards (E.Berry).,7,3,2012 -20121118_CIN@KC,2,37,54,CIN,KC,4,1,1,(7:54) A.Dalton left end for 1 yard TOUCHDOWN.,7,3,2012 -20121118_CIN@KC,2,37,54,CIN,KC,,,1,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,3,2012 -20121118_CIN@KC,2,37,54,CIN,KC,,,1,M.Nugent kicks 70 yards from CIN 35 to KC -5. S.Draughn to KC 24 for 29 yards (V.Rey).,14,3,2012 -20121118_CIN@KC,2,37,45,KC,CIN,1,10,76,(7:45) M.Cassel pass short middle to J.Charles ran ob at KC 40 for 16 yards (A.Jones) [W.Gilberry].,3,14,2012 -20121118_CIN@KC,2,37,13,KC,CIN,1,10,60,(7:13) M.Cassel pass incomplete deep right to D.Bowe.,3,14,2012 -20121118_CIN@KC,2,37,6,KC,CIN,2,10,60,(7:06) M.Cassel pass incomplete short left to S.Breaston.,3,14,2012 -20121118_CIN@KC,2,37,1,KC,CIN,3,10,60,(7:01) (Shotgun) M.Cassel pass short right to J.Charles to KC 40 for no gain (V.Burfict).,3,14,2012 -20121118_CIN@KC,2,36,28,KC,CIN,4,10,60,(6:28) D.Colquitt punts 44 yards to CIN 16 Center-T.Gafford fair catch by B.Tate. PENALTY on KC-D.McCluster Player Out of Bounds on Punt 5 yards enforced at CIN 16.,3,14,2012 -20121118_CIN@KC,2,36,18,CIN,KC,1,10,79,(6:18) B.Green-Ellis up the middle to CIN 28 for 7 yards (T.Hali).,14,3,2012 -20121118_CIN@KC,2,35,47,CIN,KC,2,3,72,(5:47) B.Green-Ellis right tackle to CIN 31 for 3 yards (S.Smith). PENALTY on CIN-O.Charles Offensive Holding 10 yards enforced at CIN 28 - No Play.,14,3,2012 -20121118_CIN@KC,2,35,18,CIN,KC,2,13,82,(5:18) (Shotgun) A.Dalton pass short right to R.Whalen to CIN 24 for 6 yards (B.Flowers).,14,3,2012 -20121118_CIN@KC,2,34,30,CIN,KC,3,7,76,(4:30) (Shotgun) A.Dalton pass short left to J.Gresham to CIN 35 for 11 yards (J.Arenas).,14,3,2012 -20121118_CIN@KC,2,33,53,CIN,KC,1,10,65,(3:53) B.Green-Ellis up the middle to CIN 39 for 4 yards (E.Berry).,14,3,2012 -20121118_CIN@KC,2,33,16,CIN,KC,2,6,61,(3:16) (No Huddle Shotgun) B.Green-Ellis up the middle to KC 40 for 21 yards (J.Brown).,14,3,2012 -20121118_CIN@KC,2,32,49,CIN,KC,1,10,40,(2:49) (No Huddle) A.Dalton pass incomplete deep right to A.Green.,14,3,2012 -20121118_CIN@KC,2,32,44,CIN,KC,2,10,40,(2:44) (Shotgun) C.Peerman up the middle to KC 23 for 17 yards (E.Berry).,14,3,2012 -20121118_CIN@KC,2,32,15,CIN,KC,1,10,23,(2:15) (No Huddle) C.Peerman up the middle to KC 23 for no gain (D.Johnson).,14,3,2012 -20121118_CIN@KC,2,32,0,CIN,KC,2,10,23,(2:00) (Shotgun) PENALTY on CIN-A.Whitworth False Start 5 yards enforced at KC 23 - No Play.,14,3,2012 -20121118_CIN@KC,2,32,0,CIN,KC,2,15,28,(2:00) (Shotgun) A.Dalton pass short middle to J.Gresham to KC 11 for 17 yards (D.Johnson). FUMBLES (D.Johnson) and recovers at KC 11. J.Gresham to KC 11 for no gain (D.Johnson).,14,3,2012 -20121118_CIN@KC,2,31,37,CIN,KC,1,10,11,(1:37) B.Green-Ellis up the middle to KC 7 for 4 yards (A.Toribio).,14,3,2012 -20121118_CIN@KC,2,31,2,CIN,KC,2,6,7,(1:02) A.Dalton pass incomplete short left to B.Tate. PENALTY on KC-J.Brown Defensive Pass Interference 6 yards enforced at KC 7 - No Play.,14,3,2012 -20121118_CIN@KC,2,30,57,CIN,KC,1,1,1,(:57) B.Green-Ellis up the middle for 1 yard TOUCHDOWN.,14,3,2012 -20121118_CIN@KC,2,30,57,CIN,KC,,,1,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,14,3,2012 -20121118_CIN@KC,2,30,57,CIN,KC,,,1,M.Nugent kicks 65 yards from CIN 35 to end zone Touchback.,21,3,2012 -20121118_CIN@KC,2,30,53,KC,CIN,1,10,80,(:53) (Shotgun) M.Cassel pass short right to T.Copper to KC 29 for 9 yards (V.Burfict). CIN-T.Newman was injured during the play.,3,21,2012 -20121118_CIN@KC,2,30,41,KC,CIN,2,1,71,(:41) J.Charles up the middle to KC 34 for 5 yards (G.Atkins).,3,21,2012 -20121118_CIN@KC,2,30,35,KC,CIN,1,10,66,(:35) (Shotgun) M.Cassel pass incomplete short right to J.Charles.,3,21,2012 -20121118_CIN@KC,2,30,29,KC,CIN,2,10,66,(:29) (Shotgun) M.Cassel pass deep middle to T.Moeaki to CIN 46 for 20 yards (N.Clements).,3,21,2012 -20121118_CIN@KC,2,30,13,KC,CIN,1,10,46,(:13) M.Cassel spiked the ball to stop the clock.,3,21,2012 -20121118_CIN@KC,2,30,7,KC,CIN,2,10,46,(:07) (Shotgun) M.Cassel pass deep middle to D.McCluster to CIN 20 for 26 yards (A.Jones).,3,21,2012 -20121118_CIN@KC,2,30,5,KC,CIN,1,10,20,(:05) (Field Goal formation) PENALTY on CIN-M.Johnson Neutral Zone Infraction 5 yards enforced at CIN 20 - No Play.,3,21,2012 -20121118_CIN@KC,2,30,5,KC,CIN,1,5,15,(:05) R.Succop 33 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,21,2012 -20121118_CIN@KC,3,30,0,KC,CIN,,,15,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,6,21,2012 -20121118_CIN@KC,3,30,0,CIN,KC,1,10,80,(15:00) B.Green-Ellis right end to CIN 24 for 4 yards (T.Jackson). PENALTY on CIN-D.Roland Offensive Holding 10 yards enforced at CIN 20 - No Play.,21,6,2012 -20121118_CIN@KC,3,29,34,CIN,KC,1,20,90,(14:34) (Shotgun) A.Dalton pass short right to J.Gresham ran ob at CIN 15 for 5 yards (A.Elam).,21,6,2012 -20121118_CIN@KC,3,28,59,CIN,KC,2,15,85,(13:59) A.Dalton pass incomplete short right to A.Green (J.Houston).,21,6,2012 -20121118_CIN@KC,3,28,57,CIN,KC,3,15,85,(13:57) (Shotgun) A.Dalton pass short left to A.Green to CIN 36 for 21 yards (D.Johnson).,21,6,2012 -20121118_CIN@KC,3,28,30,CIN,KC,1,10,64,(13:30) (No Huddle) M.Sanu up the middle to CIN 40 for 4 yards (E.Berry).,21,6,2012 -20121118_CIN@KC,3,27,55,CIN,KC,2,6,60,(12:55) A.Dalton scrambles up the middle to CIN 41 for 1 yard (D.Poe; T.Jackson).,21,6,2012 -20121118_CIN@KC,3,27,12,CIN,KC,3,5,59,(12:12) (Shotgun) A.Dalton pass incomplete short left to B.Tate.,21,6,2012 -20121118_CIN@KC,3,27,7,CIN,KC,4,5,59,(12:07) K.Huber punts 48 yards to KC 11 Center-C.Harris. J.Arenas to KC 11 for no gain (J.Miles).,21,6,2012 -20121118_CIN@KC,3,26,58,KC,CIN,1,10,89,(11:58) J.Charles up the middle to KC 16 for 5 yards (D.Peko).,6,21,2012 -20121118_CIN@KC,3,26,22,KC,CIN,2,5,84,(11:22) B.Quinn pass short right to J.Charles ran ob at KC 22 for 6 yards (R.Maualuga).,6,21,2012 -20121118_CIN@KC,3,25,49,KC,CIN,1,10,78,(10:49) J.Charles left end to KC 24 for 2 yards (D.Peko).,6,21,2012 -20121118_CIN@KC,3,25,6,KC,CIN,2,8,76,(10:06) J.Charles up the middle to KC 24 for no gain (M.Johnson). KC-B.Albert was injured during the play. His return is Questionable.,6,21,2012 -20121118_CIN@KC,3,24,46,KC,CIN,3,8,76,(9:46) (Shotgun) B.Quinn pass short right to T.Copper to KC 36 for 12 yards (G.Atkins). Penalty on CIN-C.Crocker Defensive Offside declined.,6,21,2012 -20121118_CIN@KC,3,24,19,KC,CIN,1,10,64,(9:19) B.Quinn pass short right to T.Copper to KC 48 for 12 yards (D.Kirkpatrick).,6,21,2012 -20121118_CIN@KC,3,23,51,KC,CIN,1,10,52,(8:51) (No Huddle) J.Charles up the middle to KC 49 for 1 yard (M.Johnson).,6,21,2012 -20121118_CIN@KC,3,23,17,KC,CIN,2,9,51,(8:17) (No Huddle Shotgun) B.Quinn pass incomplete short middle to J.Charles [G.Atkins].,6,21,2012 -20121118_CIN@KC,3,23,12,KC,CIN,3,9,51,(8:12) (Shotgun) B.Quinn sacked at KC 43 for -6 yards (A.Jones).,6,21,2012 -20121118_CIN@KC,3,22,43,KC,CIN,4,15,57,(7:43) D.Colquitt punts 40 yards to CIN 17 Center-T.Gafford. B.Tate to CIN 19 for 2 yards (C.Greenwood).,6,21,2012 -20121118_CIN@KC,3,22,34,CIN,KC,1,10,81,(7:34) B.Green-Ellis up the middle to CIN 22 for 3 yards (E.Berry).,21,6,2012 -20121118_CIN@KC,3,22,0,CIN,KC,2,7,78,(7:00) (Shotgun) A.Dalton pass short right to A.Green pushed ob at CIN 31 for 9 yards (B.Flowers).,21,6,2012 -20121118_CIN@KC,3,21,20,CIN,KC,1,10,69,(6:20) B.Green-Ellis left end to CIN 33 for 2 yards (T.Hali).,21,6,2012 -20121118_CIN@KC,3,20,38,CIN,KC,2,8,67,(5:38) (Shotgun) A.Dalton pass deep left to B.Tate pushed ob at KC 43 for 24 yards (K.Lewis).,21,6,2012 -20121118_CIN@KC,3,20,23,CIN,KC,1,10,43,(5:23) B.Green-Ellis up the middle to KC 36 for 7 yards (J.Arenas).,21,6,2012 -20121118_CIN@KC,3,19,52,CIN,KC,2,3,36,(4:52) B.Green-Ellis right end to KC 35 for 1 yard (D.Johnson).,21,6,2012 -20121118_CIN@KC,3,19,13,CIN,KC,3,2,35,(4:13) (Shotgun) M.Sanu left end to KC 39 for -4 yards (D.Johnson).,21,6,2012 -20121118_CIN@KC,3,18,27,CIN,KC,4,6,39,(3:27) K.Huber punts 35 yards to KC 4 Center-C.Harris downed by CIN-D.Kirkpatrick.,21,6,2012 -20121118_CIN@KC,3,18,14,KC,CIN,1,10,96,(3:14) P.Hillis up the middle to KC 7 for 3 yards (T.Mays).,6,21,2012 -20121118_CIN@KC,3,17,34,KC,CIN,2,7,93,(2:34) J.Charles up the middle to KC 16 for 9 yards (T.Mays).,6,21,2012 -20121118_CIN@KC,3,16,54,KC,CIN,1,10,84,(1:54) B.Quinn right end to KC 16 for no gain (R.Maualuga).,6,21,2012 -20121118_CIN@KC,3,16,12,KC,CIN,2,10,88,(1:12) (Shotgun) B.Quinn Aborted. R.Hochstein FUMBLES at KC 12 recovered by KC-B.Quinn at KC 12. B.Quinn to KC 12 for no gain (G.Atkins).,6,21,2012 -20121118_CIN@KC,3,15,32,KC,CIN,3,14,88,(:32) B.Quinn pass short right to T.Moeaki to KC 23 for 11 yards (V.Burfict).,6,21,2012 -20121118_CIN@KC,3,15,0,KC,CIN,4,3,77,(:00) D.Colquitt punts 60 yards to CIN 17 Center-T.Gafford. B.Tate to CIN 28 for 11 yards (A.Studebaker).,6,21,2012 -20121118_CIN@KC,4,15,0,CIN,KC,1,10,72,(15:00) B.Green-Ellis up the middle to CIN 36 for 8 yards (K.Lewis).,21,6,2012 -20121118_CIN@KC,4,14,30,CIN,KC,2,2,64,(14:30) B.Green-Ellis up the middle to CIN 40 for 4 yards (D.Johnson).,21,6,2012 -20121118_CIN@KC,4,13,58,CIN,KC,1,10,60,(13:58) A.Dalton pass incomplete deep right to A.Green.,21,6,2012 -20121118_CIN@KC,4,13,52,CIN,KC,2,10,60,(13:52) (Shotgun) C.Peerman up the middle to KC 46 for 14 yards (A.Elam).,21,6,2012 -20121118_CIN@KC,4,13,17,CIN,KC,1,10,46,(13:17) C.Peerman up the middle to KC 42 for 4 yards (E.Berry).,21,6,2012 -20121118_CIN@KC,4,12,41,CIN,KC,2,6,42,(12:41) A.Dalton pass incomplete short right to A.Green.,21,6,2012 -20121118_CIN@KC,4,12,36,CIN,KC,3,6,42,(12:36) (Shotgun) A.Dalton pass short right to J.Gresham to KC 34 for 8 yards (B.Flowers; T.Hali).,21,6,2012 -20121118_CIN@KC,4,11,52,CIN,KC,1,10,34,(11:52) B.Green-Ellis right end to KC 34 for no gain (T.Jackson).,21,6,2012 -20121118_CIN@KC,4,11,9,CIN,KC,2,10,34,(11:09) A.Dalton pass deep right to A.Green pushed ob at KC 14 for 20 yards (B.Flowers).,21,6,2012 -20121118_CIN@KC,4,10,34,CIN,KC,1,10,14,(10:34) B.Green-Ellis right end to KC 14 for no gain (J.Houston).,21,6,2012 -20121118_CIN@KC,4,9,50,CIN,KC,2,10,14,(9:50) A.Dalton pass incomplete short right to M.Sanu.,21,6,2012 -20121118_CIN@KC,4,9,45,CIN,KC,3,10,14,(9:45) (Shotgun) A.Dalton pass short middle to M.Sanu for 14 yards TOUCHDOWN.,21,6,2012 -20121118_CIN@KC,4,9,45,CIN,KC,,,14,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,21,6,2012 -20121118_CIN@KC,4,9,45,CIN,KC,,,14,M.Nugent kicks 61 yards from CIN 35 to KC 4. S.Draughn to KC 21 for 17 yards (V.Rey).,28,6,2012 -20121118_CIN@KC,4,9,33,KC,CIN,1,10,79,(9:33) (Shotgun) J.Charles left end to KC 24 for 3 yards (A.Jones).,6,28,2012 -20121118_CIN@KC,4,9,7,KC,CIN,2,7,76,(9:07) (No Huddle Shotgun) B.Quinn pass short middle to J.Charles to KC 33 for 9 yards (V.Burfict).,6,28,2012 -20121118_CIN@KC,4,8,41,KC,CIN,1,10,67,(8:41) (No Huddle Shotgun) PENALTY on KC-R.Hochstein False Start 5 yards enforced at KC 33 - No Play.,6,28,2012 -20121118_CIN@KC,4,8,15,KC,CIN,1,15,72,(8:15) (Shotgun) J.Charles up the middle to KC 45 for 17 yards (C.Crocker).,6,28,2012 -20121118_CIN@KC,4,7,49,KC,CIN,1,10,55,(7:49) (No Huddle Shotgun) B.Quinn pass deep middle to T.Moeaki to CIN 35 for 20 yards (N.Clements). KC-T.Moeaki was injured during the play. CIN-N.Clements was injured during the play.,6,28,2012 -20121118_CIN@KC,4,7,26,KC,CIN,1,10,35,(7:26) (Shotgun) B.Quinn pass incomplete short middle to D.Wylie.,6,28,2012 -20121118_CIN@KC,4,7,19,KC,CIN,2,10,35,(7:19) B.Quinn pass incomplete short right to T.Moeaki.,6,28,2012 -20121118_CIN@KC,4,7,15,KC,CIN,3,10,35,(7:15) (Shotgun) B.Quinn pass short left to D.McCluster to CIN 27 for 8 yards (R.Maualuga).,6,28,2012 -20121118_CIN@KC,4,6,43,KC,CIN,4,2,27,(6:43) (No Huddle Shotgun) B.Quinn pass incomplete deep right to T.Copper.,6,28,2012 -20121118_CIN@KC,4,6,38,CIN,KC,1,10,73,(6:38) B.Green-Ellis right end to CIN 35 for 8 yards (B.Flowers).,28,6,2012 -20121118_CIN@KC,4,5,56,CIN,KC,2,2,65,(5:56) B.Green-Ellis right end to CIN 35 for no gain (J.Belcher).,28,6,2012 -20121118_CIN@KC,4,5,11,CIN,KC,3,2,65,(5:11) B.Green-Ellis up the middle to CIN 36 for 1 yard (E.Berry).,28,6,2012 -20121118_CIN@KC,4,5,11,CIN,KC,4,1,64,(5:11) (Punt formation) PENALTY on CIN-K.Huber Delay of Game 5 yards enforced at CIN 36 - No Play.,28,6,2012 -20121118_CIN@KC,4,4,21,CIN,KC,4,6,69,(4:21) K.Huber punts 62 yards to KC 7 Center-C.Harris. J.Arenas to KC 25 for 18 yards (J.Miles).,28,6,2012 -20121118_CIN@KC,4,4,10,KC,CIN,1,10,75,(4:10) (Shotgun) B.Quinn scrambles right end to KC 27 for 2 yards (W.Gilberry).,6,28,2012 -20121118_CIN@KC,4,3,44,KC,CIN,2,8,73,(3:44) (No Huddle Shotgun) B.Quinn scrambles up the middle to KC 32 for 5 yards (M.Johnson).,6,28,2012 -20121118_CIN@KC,4,3,16,KC,CIN,3,3,68,(3:16) (No Huddle Shotgun) B.Quinn pass incomplete short left to D.Wylie [M.Johnson].,6,28,2012 -20121118_CIN@KC,4,3,10,KC,CIN,4,3,68,(3:10) D.Colquitt punts 64 yards to CIN 4 Center-T.Gafford downed by KC-J.Brown. PENALTY on CIN-C.Peerman Illegal Touch Kick 0 yards enforced between downs. J. Brown stepped out of bounds and was first player to touch the ball. Penalty inside 20 yard line spotted at the 20.,6,28,2012 -20121118_CIN@KC,4,3,0,CIN,KC,1,10,80,(3:00) B.Green-Ellis up the middle to CIN 25 for 5 yards (R.Pitoitua).,28,6,2012 -20121118_CIN@KC,4,2,17,CIN,KC,2,5,75,(2:17) B.Green-Ellis right end to CIN 25 for no gain (T.Jackson).,28,6,2012 -20121118_CIN@KC,4,2,0,CIN,KC,3,5,75,(2:00) C.Peerman up the middle to CIN 27 for 2 yards (E.Berry).,28,6,2012 -20121118_CIN@KC,4,1,17,CIN,KC,4,3,73,(1:17) K.Huber punts 69 yards to KC 4 Center-C.Harris out of bounds.,28,6,2012 -20121118_CIN@KC,4,1,4,KC,CIN,1,10,96,(1:04) S.Draughn up the middle to KC 10 for 6 yards (W.Gilberry).,6,28,2012 -20121118_CIN@KC,4,0,45,KC,CIN,2,4,90,(:45) (No Huddle Shotgun) B.Quinn pass short right to S.Breaston to KC 23 for 13 yards (D.Kirkpatrick).,6,28,2012 -20121118_CIN@KC,4,0,35,KC,CIN,1,10,77,(:35) (Shotgun) B.Quinn pass short right to S.Draughn ran ob at KC 27 for 4 yards (J.Miles).,6,28,2012 -20121118_CIN@KC,4,0,29,KC,CIN,2,6,73,(:29) (No Huddle Shotgun) B.Quinn sacked at KC 17 for -10 yards (M.Johnson).,6,28,2012 -20121118_CIN@KC,4,0,3,KC,CIN,3,16,83,(:03) (No Huddle Shotgun) S.Draughn up the middle to KC 21 for 4 yards (V.Rey).,6,28,2012 -20121118_CIN@KC,4,0,3,KC,CIN,,,83,                      ,6,28,2012 -20121118_NYJ@STL,1,0,0,STL,NYJ,,,83,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,0,0,2012 -20121118_NYJ@STL,1,60,0,NYJ,STL,1,10,80,(15:00) S.Greene left guard to NYJ 30 for 10 yards (J.Laurinaitis).,0,0,2012 -20121118_NYJ@STL,1,59,23,NYJ,STL,1,10,70,(14:23) (Shotgun) M.Sanchez pass short right to J.Kerley to NYJ 35 for 5 yards (K.Langford).,0,0,2012 -20121118_NYJ@STL,1,58,48,NYJ,STL,2,5,65,(13:48) (Shotgun) T.Tebow left tackle to NYJ 36 for 1 yard (C.Dahl). SL-M.Haggan was injured during the play.,0,0,2012 -20121118_NYJ@STL,1,58,28,NYJ,STL,3,4,64,(13:28) (Shotgun) M.Sanchez pass short right to C.Schilens to NYJ 44 for 8 yards (Q.Mikell).,0,0,2012 -20121118_NYJ@STL,1,57,47,NYJ,STL,1,10,56,(12:47) S.Greene right end to NYJ 46 for 2 yards (Q.Mikell).,0,0,2012 -20121118_NYJ@STL,1,57,11,NYJ,STL,2,8,54,(12:11) S.Greene right tackle to SL 44 for 10 yards (W.Hayes).,0,0,2012 -20121118_NYJ@STL,1,56,27,NYJ,STL,1,10,44,(11:27) S.Greene up the middle to SL 40 for 4 yards (E.Sims).,0,0,2012 -20121118_NYJ@STL,1,55,53,NYJ,STL,2,6,40,(10:53) M.Sanchez pass incomplete short left to S.Hill.,0,0,2012 -20121118_NYJ@STL,1,55,48,NYJ,STL,3,6,40,(10:48) (Shotgun) M.Sanchez sacked at SL 47 for -7 yards (Q.Mikell). FUMBLES (Q.Mikell) and recovers at SL 46. M.Sanchez to SL 46 for no gain (C.Long).,0,0,2012 -20121118_NYJ@STL,1,55,23,NYJ,STL,4,12,46,(10:23) R.Malone punts 32 yards to SL 14 Center-T.Purdum fair catch by D.Amendola.,0,0,2012 -20121118_NYJ@STL,1,55,16,STL,NYJ,1,10,86,(10:16) S.Jackson right guard to SL 25 for 11 yards (C.Pace).,0,0,2012 -20121118_NYJ@STL,1,54,42,STL,NYJ,1,10,75,(9:42) S.Jackson up the middle to SL 30 for 5 yards (S.Pouha).,0,0,2012 -20121118_NYJ@STL,1,54,4,STL,NYJ,2,5,70,(9:04) S.Jackson right guard to SL 32 for 2 yards (M.Wilkerson; B.Scott).,0,0,2012 -20121118_NYJ@STL,1,53,22,STL,NYJ,3,3,68,(8:22) (Shotgun) S.Bradford pass short right to D.Amendola to SL 41 for 9 yards (Q.Coples).,0,0,2012 -20121118_NYJ@STL,1,52,37,STL,NYJ,1,10,59,(7:37) (Shotgun) S.Bradford pass short right to M.McNeill to 50 for 9 yards (A.Cromartie).,0,0,2012 -20121118_NYJ@STL,1,51,55,STL,NYJ,2,1,50,(6:55) S.Bradford pass short right to D.Amendola to SL 47 for -3 yards (Y.Bell).,0,0,2012 -20121118_NYJ@STL,1,51,12,STL,NYJ,3,4,53,(6:12) (Shotgun) S.Bradford pass deep left to A.Pettis to NYJ 17 for 36 yards (Y.Bell).,0,0,2012 -20121118_NYJ@STL,1,50,32,STL,NYJ,1,10,17,(5:32) S.Jackson right tackle to NYJ 13 for 4 yards (Q.Coples).,0,0,2012 -20121118_NYJ@STL,1,49,57,STL,NYJ,2,6,13,(4:57) S.Bradford pass short left to D.Amendola pushed ob at NYJ 5 for 8 yards (Y.Bell).,0,0,2012 -20121118_NYJ@STL,1,49,31,STL,NYJ,1,5,5,(4:31) S.Jackson right tackle to NYJ 1 for 4 yards (S.Pouha).,0,0,2012 -20121118_NYJ@STL,1,49,0,STL,NYJ,2,1,1,(4:00) S.Bradford pass incomplete short middle to B.Gibson.,0,0,2012 -20121118_NYJ@STL,1,48,51,STL,NYJ,3,1,1,(3:51) S.Bradford pass incomplete short right to D.Amendola.,0,0,2012 -20121118_NYJ@STL,1,48,48,STL,NYJ,4,1,1,(3:48) S.Bradford pass short middle to B.Gibson for 1 yard TOUCHDOWN.,0,0,2012 -20121118_NYJ@STL,1,48,48,,STL,,,1,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20121118_NYJ@STL,1,48,48,STL,NYJ,,,1,G.Zuerlein kicks 70 yards from SL 35 to NYJ -5. J.McKnight ran ob at NYJ 37 for 42 yards (G.Zuerlein).,7,0,2012 -20121118_NYJ@STL,1,48,37,NYJ,STL,1,10,63,(3:37) M.Sanchez sacked at NYJ 34 for -3 yards (C.Long).,0,7,2012 -20121118_NYJ@STL,1,48,9,NYJ,STL,2,13,66,(3:09) M.Sanchez pass short left to E.Gates pushed ob at NYJ 44 for 10 yards (J.Jenkins).,0,7,2012 -20121118_NYJ@STL,1,47,38,NYJ,STL,3,3,56,(2:38) (Shotgun) M.Sanchez pass short left to J.McKnight pushed ob at SL 38 for 18 yards (J.Laurinaitis).,0,7,2012 -20121118_NYJ@STL,1,47,8,NYJ,STL,1,10,38,(2:08) S.Greene right tackle to SL 34 for 4 yards (J.Laurinaitis).,0,7,2012 -20121118_NYJ@STL,1,46,36,NYJ,STL,2,6,34,(1:36) S.Greene up the middle to SL 33 for 1 yard (J.Cudjo).,0,7,2012 -20121118_NYJ@STL,1,45,57,NYJ,STL,3,5,33,(:57) (Shotgun) M.Sanchez pass incomplete short left to E.Gates (J.Jenkins).,0,7,2012 -20121118_NYJ@STL,1,45,49,NYJ,STL,4,5,33,(:49) N.Folk 51 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,7,2012 -20121118_NYJ@STL,1,45,49,NYJ,STL,,,33,N.Folk kicks 67 yards from NYJ 35 to SL -2. C.Givens to SL 17 for 19 yards (C.Schilens).,3,7,2012 -20121118_NYJ@STL,1,45,38,STL,NYJ,1,10,83,(:38) S.Jackson left guard to SL 20 for 3 yards (K.Ellis). NYJ-K.Ellis was injured during the play. His return is Probable.,7,3,2012 -20121118_NYJ@STL,2,45,0,STL,NYJ,2,7,80,(15:00) S.Bradford pass short right to L.Kendricks to SL 37 for 17 yards (B.Scott) [C.Pace]. PENALTY on SL-D.Amendola Illegal Motion 5 yards enforced at SL 20 - No Play.,7,3,2012 -20121118_NYJ@STL,2,44,33,STL,NYJ,2,12,85,(14:33) (Shotgun) S.Bradford pass short right to D.Amendola to SL 17 for 2 yards (L.Landry).,7,3,2012 -20121118_NYJ@STL,2,44,1,STL,NYJ,3,10,83,(14:01) (Shotgun) S.Bradford pass short right intended for M.McNeill INTERCEPTED by E.Smith at SL 18. E.Smith to SL 13 for 5 yards (M.McNeill).,7,3,2012 -20121118_NYJ@STL,2,43,53,NYJ,STL,1,10,13,(13:53) S.Greene left tackle to SL 12 for 1 yard (J.Jenkins; J.Laurinaitis).,3,7,2012 -20121118_NYJ@STL,2,43,19,NYJ,STL,2,9,12,(13:19) (Shotgun) M.Sanchez sacked at SL 15 for -3 yards (C.Long).,3,7,2012 -20121118_NYJ@STL,2,42,48,NYJ,STL,3,12,15,(12:48) M.Sanchez pass short right to J.Cumberland to SL 8 for 7 yards (T.Johnson).,3,7,2012 -20121118_NYJ@STL,2,41,53,NYJ,STL,4,5,8,(11:53) N.Folk 26 yard field goal is BLOCKED (J.Jenkins) Center-T.Purdum Holder-R.Malone RECOVERED by SL-Q.Mikell at SL 13. Q.Mikell ran ob at SL 13 for no gain.,3,7,2012 -20121118_NYJ@STL,2,41,48,STL,NYJ,1,10,87,(11:48) D.Richardson right tackle to SL 24 for 11 yards (L.Landry).,7,3,2012 -20121118_NYJ@STL,2,41,20,STL,NYJ,1,10,76,(11:20) D.Richardson up the middle to SL 29 for 5 yards (E.Smith).,7,3,2012 -20121118_NYJ@STL,2,40,40,STL,NYJ,2,5,71,(10:40) D.Richardson left tackle to SL 30 for 1 yard (M.Wilkerson).,7,3,2012 -20121118_NYJ@STL,2,39,56,STL,NYJ,3,4,70,(9:56) S.Bradford pass incomplete short right to A.Pettis (A.Cromartie).,7,3,2012 -20121118_NYJ@STL,2,39,45,STL,NYJ,4,4,70,(9:45) J.Hekker punts 55 yards to NYJ 15 Center-J.McQuaide. K.Wilson pushed ob at NYJ 34 for 19 yards (M.McNeill).,7,3,2012 -20121118_NYJ@STL,2,39,35,NYJ,STL,1,10,66,(9:35) J.McKnight right tackle to NYJ 41 for 7 yards (J.Laurinaitis).,3,7,2012 -20121118_NYJ@STL,2,39,1,NYJ,STL,2,3,59,(9:01) J.McKnight left tackle to 50 for 9 yards (Q.Mikell).,3,7,2012 -20121118_NYJ@STL,2,38,16,NYJ,STL,1,10,50,(8:16) (Shotgun) J.Kerley right tackle to NYJ 49 for -1 yards (W.Hayes).,3,7,2012 -20121118_NYJ@STL,2,37,39,NYJ,STL,2,11,51,(7:39) M.Sanchez pass incomplete short left to J.McKnight.,3,7,2012 -20121118_NYJ@STL,2,37,34,NYJ,STL,3,11,51,(7:34) (Shotgun) M.Sanchez pass short left to D.Keller to SL 45 for 6 yards (Q.Mikell).,3,7,2012 -20121118_NYJ@STL,2,36,54,NYJ,STL,4,5,45,(6:54) (Punt formation) T.Tebow pass short right to L.Hilliard to SL 46 for -1 yards (J.Laurinaitis).,3,7,2012 -20121118_NYJ@STL,2,36,50,STL,NYJ,1,10,54,(6:50) S.Jackson right tackle to NYJ 33 for 21 yards (C.Pace).,7,3,2012 -20121118_NYJ@STL,2,36,5,STL,NYJ,1,10,33,(6:05) S.Jackson left guard to NYJ 31 for 2 yards (M.Wilkerson).,7,3,2012 -20121118_NYJ@STL,2,35,24,STL,NYJ,2,8,31,(5:24) S.Bradford sacked at NYJ 37 for -6 yards (M.Wilkerson). FUMBLES (M.Wilkerson) RECOVERED by NYJ-B.Scott at NYJ 34. B.Scott to SL 28 for 38 yards (M.Mulligan).,7,3,2012 -20121118_NYJ@STL,2,35,12,NYJ,STL,1,10,28,(5:12) S.Greene up the middle to SL 25 for 3 yards (R.McIntosh).,3,7,2012 -20121118_NYJ@STL,2,34,37,NYJ,STL,2,7,25,(4:37) (Shotgun) M.Sanchez pass deep right to C.Schilens for 25 yards TOUCHDOWN.,3,7,2012 -20121118_NYJ@STL,2,34,37,NYJ,STL,,,25,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,3,7,2012 -20121118_NYJ@STL,2,34,37,NYJ,STL,,,25,N.Folk kicks 68 yards from NYJ 35 to SL -3. C.Givens pushed ob at SL 19 for 22 yards (G.McIntyre).,10,7,2012 -20121118_NYJ@STL,2,34,27,STL,NYJ,1,10,81,(4:27) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 26 for 7 yards (L.Landry). FUMBLES (L.Landry) and recovers at SL 26. L.Kendricks to SL 26 for no gain (L.Landry).,7,10,2012 -20121118_NYJ@STL,2,33,51,STL,NYJ,2,3,74,(3:51) S.Jackson right tackle to SL 25 for -1 yards (Q.Coples).,7,10,2012 -20121118_NYJ@STL,2,33,8,STL,NYJ,3,4,75,(3:08) (Shotgun) S.Bradford pass incomplete deep right to D.Amendola [D.Harris]. SL-D.Amendola was injured during the play. His return is Questionable.,7,10,2012 -20121118_NYJ@STL,2,33,2,STL,NYJ,4,4,75,(3:02) J.Hekker punts 41 yards to NYJ 34 Center-J.McQuaide out of bounds.,7,10,2012 -20121118_NYJ@STL,2,32,52,NYJ,STL,1,10,66,(2:52) PENALTY on NYJ-J.Smith False Start 5 yards enforced at NYJ 34 - No Play.,10,7,2012 -20121118_NYJ@STL,2,32,52,NYJ,STL,1,15,71,(2:52) J.McKnight left end pushed ob at NYJ 28 for -1 yards (R.McIntosh).,10,7,2012 -20121118_NYJ@STL,2,32,24,NYJ,STL,2,16,72,(2:24) M.Sanchez pass deep middle to J.Kerley to SL 40 for 32 yards (T.Johnson).,10,7,2012 -20121118_NYJ@STL,2,32,0,NYJ,STL,1,10,40,(2:00) M.Sanchez pass incomplete deep left to S.Hill [J.Laurinaitis].,10,7,2012 -20121118_NYJ@STL,2,31,54,NYJ,STL,2,10,40,(1:54) B.Powell up the middle to SL 40 for no gain (R.Quinn).,10,7,2012 -20121118_NYJ@STL,2,31,21,NYJ,STL,3,10,40,(1:21) M.Sanchez pass short middle to B.Powell to SL 33 for 7 yards (C.Finnegan).,10,7,2012 -20121118_NYJ@STL,2,31,2,NYJ,STL,4,3,33,(1:02) N.Folk 51 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,10,7,2012 -20121118_NYJ@STL,2,30,43,STL,NYJ,1,10,86,(:43) (Shotgun) S.Bradford pass incomplete short right to B.Quick (E.Lankster).,7,13,2012 -20121118_NYJ@STL,2,30,39,STL,NYJ,2,10,86,(:39) (Shotgun) S.Bradford pass short right to B.Quick to SL 23 for 9 yards (K.Wilson).,7,13,2012 -20121118_NYJ@STL,2,30,30,STL,NYJ,3,1,77,(:30) S.Bradford pass incomplete deep right to A.Pettis.,7,13,2012 -20121118_NYJ@STL,2,30,24,STL,NYJ,4,1,77,(:24) J.Hekker punts 48 yards to NYJ 29 Center-J.McQuaide fair catch by K.Wilson.,7,13,2012 -20121118_NYJ@STL,2,30,18,NYJ,STL,1,10,71,(:18) M.Sanchez kneels to NYJ 28 for -1 yards.,13,7,2012 -20121118_NYJ@STL,3,30,0,NYJ,STL,,,71,N.Folk kicks 67 yards from NYJ 35 to SL -2. C.Givens to SL 14 for 16 yards (J.Bush).,13,7,2012 -20121118_NYJ@STL,3,29,55,STL,NYJ,1,10,86,(14:55) S.Bradford pass short right to S.Jackson to SL 16 for 2 yards (D.Harris).,7,13,2012 -20121118_NYJ@STL,3,29,21,STL,NYJ,2,8,84,(14:21) (Shotgun) S.Jackson up the middle to SL 23 for 7 yards (L.Landry).,7,13,2012 -20121118_NYJ@STL,3,28,30,STL,NYJ,3,1,77,(13:30) (Shotgun) S.Bradford pass short right to D.Amendola to SL 32 for 9 yards (D.Harris).,7,13,2012 -20121118_NYJ@STL,3,27,52,STL,NYJ,1,10,68,(12:52) S.Jackson right end pushed ob at SL 39 for 7 yards (E.Smith).,7,13,2012 -20121118_NYJ@STL,3,27,23,STL,NYJ,2,3,61,(12:23) (Shotgun) D.Richardson right guard to SL 40 for 1 yard (D.Davis).,7,13,2012 -20121118_NYJ@STL,3,26,38,STL,NYJ,3,2,60,(11:38) (Shotgun) S.Bradford pass incomplete deep right to D.Amendola.,7,13,2012 -20121118_NYJ@STL,3,26,32,STL,NYJ,4,2,60,(11:32) J.Hekker punts 50 yards to NYJ 10 Center-J.McQuaide. K.Wilson MUFFS catch and recovers at NYJ 11. K.Wilson to NYJ 11 for no gain (R.McLeod).,7,13,2012 -20121118_NYJ@STL,3,26,23,NYJ,STL,1,10,89,(11:23) S.Greene right tackle to NYJ 25 for 14 yards (J.Laurinaitis).,13,7,2012 -20121118_NYJ@STL,3,25,50,NYJ,STL,1,10,75,(10:50) S.Greene up the middle to NYJ 26 for 1 yard (M.Brockers).,13,7,2012 -20121118_NYJ@STL,3,25,16,NYJ,STL,2,9,74,(10:16) M.Sanchez pass short left to C.Schilens to NYJ 32 for 6 yards (J.Jenkins).,13,7,2012 -20121118_NYJ@STL,3,24,36,NYJ,STL,3,3,68,(9:36) (Shotgun) M.Sanchez pass short right to J.Kerley pushed ob at NYJ 38 for 6 yards (C.Finnegan).,13,7,2012 -20121118_NYJ@STL,3,24,10,NYJ,STL,1,10,62,(9:10) S.Greene right tackle to NYJ 42 for 4 yards (R.McIntosh).,13,7,2012 -20121118_NYJ@STL,3,23,29,NYJ,STL,2,6,58,(8:29) M.Sanchez pass incomplete deep right to S.Hill. PENALTY on NYJ-S.Hill Offensive Pass Interference 10 yards enforced at NYJ 42 - No Play.,13,7,2012 -20121118_NYJ@STL,3,23,23,NYJ,STL,2,16,68,(8:23) M.Sanchez pass incomplete short left to C.Schilens.,13,7,2012 -20121118_NYJ@STL,3,23,19,NYJ,STL,3,16,68,(8:19) B.Powell up the middle to NYJ 42 for 10 yards (C.Finnegan).,13,7,2012 -20121118_NYJ@STL,3,22,51,NYJ,STL,4,6,58,(7:51) R.Malone punts 58 yards to end zone Center-T.Purdum Touchback.,13,7,2012 -20121118_NYJ@STL,3,22,42,STL,NYJ,1,10,80,(7:42) S.Bradford pass incomplete short left to B.Gibson.,7,13,2012 -20121118_NYJ@STL,3,22,36,STL,NYJ,2,10,80,(7:36) S.Jackson right guard to SL 16 for -4 yards (Y.Bell).,7,13,2012 -20121118_NYJ@STL,3,21,51,STL,NYJ,3,14,84,(6:51) (Shotgun) PENALTY on NYJ-E.Lankster Encroachment 5 yards enforced at SL 16 - No Play.,7,13,2012 -20121118_NYJ@STL,3,21,30,STL,NYJ,3,9,79,(6:30) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,7,13,2012 -20121118_NYJ@STL,3,21,24,STL,NYJ,4,9,79,(6:24) J.Hekker punts 57 yards to NYJ 22 Center-J.McQuaide. K.Wilson pushed ob at NYJ 32 for 10 yards (J.Cole). PENALTY on SL-R.McLeod Player Out of Bounds on Punt 5 yards enforced at NYJ 32.,7,13,2012 -20121118_NYJ@STL,3,21,14,NYJ,STL,1,10,63,(6:14) M.Sanchez left end to NYJ 45 for 8 yards (J.Dunbar).,13,7,2012 -20121118_NYJ@STL,3,20,32,NYJ,STL,2,2,55,(5:32) S.Greene up the middle to NYJ 49 for 4 yards (R.McIntosh).,13,7,2012 -20121118_NYJ@STL,3,19,57,NYJ,STL,1,10,51,(4:57) S.Greene up the middle to 50 for 1 yard (Q.Mikell).,13,7,2012 -20121118_NYJ@STL,3,19,15,NYJ,STL,2,9,50,(4:15) M.Sanchez pass short left to D.Keller to SL 40 for 10 yards (Q.Mikell).,13,7,2012 -20121118_NYJ@STL,3,18,39,NYJ,STL,1,10,40,(3:39) B.Powell left guard to SL 39 for 1 yard (J.Dunbar).,13,7,2012 -20121118_NYJ@STL,3,18,5,NYJ,STL,2,9,39,(3:05) M.Sanchez pass short right to C.Schilens to SL 30 for 9 yards (C.Finnegan).,13,7,2012 -20121118_NYJ@STL,3,17,23,NYJ,STL,1,10,30,(2:23) B.Powell right guard to SL 27 for 3 yards (J.Laurinaitis).,13,7,2012 -20121118_NYJ@STL,3,16,49,NYJ,STL,2,7,27,(1:49) B.Powell right tackle to SL 23 for 4 yards (J.Laurinaitis).,13,7,2012 -20121118_NYJ@STL,3,16,11,NYJ,STL,3,3,23,(1:11) M.Sanchez pass short left to K.Reuland to SL 5 for 18 yards (Q.Mikell).,13,7,2012 -20121118_NYJ@STL,3,15,45,NYJ,STL,1,5,5,(:45) S.Greene up the middle to SL 4 for 1 yard (E.Sims).,13,7,2012 -20121118_NYJ@STL,4,15,0,NYJ,STL,2,4,4,(15:00) J.McKnight left tackle to SL 5 for -1 yards (J.Laurinaitis).,13,7,2012 -20121118_NYJ@STL,4,14,22,NYJ,STL,3,5,5,(14:22) (Shotgun) B.Powell up the middle for 5 yards TOUCHDOWN.,13,7,2012 -20121118_NYJ@STL,4,14,22,NYJ,STL,,,5,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,13,7,2012 -20121118_NYJ@STL,4,14,22,NYJ,STL,,,5,N.Folk kicks 71 yards from NYJ 35 to SL -6. C.Givens Touchback.,20,7,2012 -20121118_NYJ@STL,4,14,16,STL,NYJ,1,10,80,(14:16) S.Bradford pass short left to C.Givens to SL 23 for 3 yards (D.Davis).,7,20,2012 -20121118_NYJ@STL,4,13,34,STL,NYJ,2,7,77,(13:34) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 29 for 6 yards (D.Harris) [Q.Coples].,7,20,2012 -20121118_NYJ@STL,4,13,1,STL,NYJ,3,1,71,(13:01) D.Richardson up the middle to SL 35 for 6 yards (G.McIntyre).,7,20,2012 -20121118_NYJ@STL,4,12,23,STL,NYJ,1,10,65,(12:23) D.Richardson left end to SL 37 for 2 yards (L.Landry). FUMBLES (L.Landry) RECOVERED by NYJ-G.McIntyre at SL 38. G.McIntyre to SL 38 for no gain (H.Dahl). SL-B.Richardson was injured during the play.,7,20,2012 -20121118_NYJ@STL,4,12,15,NYJ,STL,1,10,38,(12:15) E.Gates right end pushed ob at SL 26 for 12 yards (C.Finnegan).,20,7,2012 -20121118_NYJ@STL,4,11,47,NYJ,STL,1,10,26,(11:47) S.Greene left tackle to SL 27 for -1 yards (M.Brockers).,20,7,2012 -20121118_NYJ@STL,4,11,6,NYJ,STL,2,11,27,(11:06) S.Greene left tackle to SL 25 for 2 yards (J.Laurinaitis).,20,7,2012 -20121118_NYJ@STL,4,10,25,NYJ,STL,3,9,25,(10:25) (Shotgun) M.Sanchez pass short left to B.Powell to SL 14 for 11 yards (J.Jenkins).,20,7,2012 -20121118_NYJ@STL,4,9,55,NYJ,STL,1,10,14,(9:55) B.Powell up the middle to SL 10 for 4 yards (J.Dunbar).,20,7,2012 -20121118_NYJ@STL,4,9,15,NYJ,STL,2,6,10,(9:15) B.Powell right guard to SL 11 for -1 yards (J.Dunbar).,20,7,2012 -20121118_NYJ@STL,4,8,32,NYJ,STL,3,7,11,(8:32) B.Powell up the middle for 11 yards TOUCHDOWN.,20,7,2012 -20121118_NYJ@STL,4,8,32,NYJ,STL,,,11,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,20,7,2012 -20121118_NYJ@STL,4,8,32,NYJ,STL,,,11,N.Folk kicks 69 yards from NYJ 35 to SL -4. C.Givens to SL 44 for 48 yards (C.Schilens).,27,7,2012 -20121118_NYJ@STL,4,8,21,STL,NYJ,1,10,56,(8:21) (Shotgun) S.Jackson left tackle pushed ob at NYJ 36 for 20 yards (Y.Bell).,7,27,2012 -20121118_NYJ@STL,4,8,21,STL,NYJ,1,10,36,(8:21) (No Huddle Shotgun) PENALTY on SL-R.Saffold False Start 5 yards enforced at NYJ 36 - No Play.,7,27,2012 -20121118_NYJ@STL,4,7,37,STL,NYJ,1,15,41,(7:37) (Shotgun) S.Bradford pass incomplete deep right to C.Givens.,7,27,2012 -20121118_NYJ@STL,4,7,31,STL,NYJ,2,15,41,(7:31) (Shotgun) S.Bradford pass short right to D.Amendola to NYJ 31 for 10 yards (L.Landry).,7,27,2012 -20121118_NYJ@STL,4,7,5,STL,NYJ,3,5,31,(7:05) (No Huddle Shotgun) S.Bradford pass short right to C.Givens to NYJ 23 for 8 yards (K.Wilson).,7,27,2012 -20121118_NYJ@STL,4,6,44,STL,NYJ,1,10,23,(6:44) (No Huddle Shotgun) S.Bradford pass short middle to S.Jackson to NYJ 20 for 3 yards (D.Harris).,7,27,2012 -20121118_NYJ@STL,4,6,16,STL,NYJ,2,7,20,(6:16) (No Huddle Shotgun) S.Bradford pass short right to D.Richardson to NYJ 2 for 18 yards (K.Wilson).,7,27,2012 -20121118_NYJ@STL,4,5,48,STL,NYJ,1,2,2,(5:48) (No Huddle Shotgun) S.Bradford pass short left to B.Gibson for 2 yards TOUCHDOWN.,7,27,2012 -20121118_NYJ@STL,4,5,48,STL,NYJ,,,2,TWO-POINT CONVERSION ATTEMPT. S.Bradford pass to B.Quick is incomplete. ATTEMPT FAILS.,7,27,2012 -20121118_NYJ@STL,4,5,48,STL,NYJ,,,2,J.Hekker kicks onside 9 yards from SL 35 to SL 44. D.Keller (didn't try to advance) to SL 44 for no gain (R.McLeod).,13,27,2012 -20121118_NYJ@STL,4,5,39,NYJ,STL,1,10,44,(5:39) S.Greene right tackle to SL 43 for 1 yard (W.Hayes).,27,13,2012 -20121118_NYJ@STL,4,4,54,NYJ,STL,2,9,43,(4:54) S.Greene up the middle to SL 41 for 2 yards (E.Sims).,27,13,2012 -20121118_NYJ@STL,4,4,48,NYJ,STL,3,7,41,(4:48) T.Tebow right end to SL 47 for -6 yards (R.McIntosh).,27,13,2012 -20121118_NYJ@STL,4,4,41,NYJ,STL,4,13,47,(4:41) R.Malone punts 37 yards to SL 10 Center-T.Purdum downed by NYJ-L.Hilliard.,27,13,2012 -20121118_NYJ@STL,4,4,28,STL,NYJ,1,10,90,(4:28) (Shotgun) S.Bradford pass short middle to B.Gibson to SL 16 for 6 yards (K.Wilson).,13,27,2012 -20121118_NYJ@STL,4,4,28,STL,NYJ,2,4,84,(4:28) (No Huddle Shotgun) S.Bradford pass incomplete short left to S.Jackson. NYJ-A.Berry was injured during the play.,13,27,2012 -20121118_NYJ@STL,4,3,58,STL,NYJ,3,4,84,(3:58) (Shotgun) S.Bradford pass incomplete short right to S.Jackson.,13,27,2012 -20121118_NYJ@STL,4,3,54,STL,NYJ,4,4,84,(3:54) S.Bradford pass short right to L.Kendricks to SL 23 for 7 yards (L.Landry).,13,27,2012 -20121118_NYJ@STL,4,3,37,STL,NYJ,1,10,77,(3:37) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,13,27,2012 -20121118_NYJ@STL,4,3,32,STL,NYJ,2,10,77,(3:32) (Shotgun) S.Bradford pass incomplete short left to D.Amendola (Y.Bell).,13,27,2012 -20121118_NYJ@STL,4,3,24,STL,NYJ,3,10,77,(3:24) (Shotgun) S.Bradford pass incomplete short left to C.Givens. Penalty on SL-D.Richardson Offensive Holding declined.,13,27,2012 -20121118_NYJ@STL,4,3,14,STL,NYJ,4,10,77,(3:14) (Shotgun) S.Bradford pass incomplete short left to A.Pettis.,13,27,2012 -20121118_NYJ@STL,4,3,12,NYJ,STL,1,10,23,(3:12) B.Powell up the middle to SL 20 for 3 yards (C.Finnegan).,27,13,2012 -20121118_NYJ@STL,4,2,30,NYJ,STL,2,7,20,(2:30) B.Powell up the middle to SL 18 for 2 yards (M.Brockers).,27,13,2012 -20121118_NYJ@STL,4,2,23,NYJ,STL,3,5,18,(2:23) M.Sanchez left end to SL 26 for -8 yards (E.Sims).,27,13,2012 -20121118_NYJ@STL,4,2,0,NYJ,STL,4,13,26,(2:00) N.Folk 44 yard field goal is No Good Wide Left Center-T.Purdum Holder-R.Malone.,27,13,2012 -20121118_NYJ@STL,4,1,56,STL,NYJ,1,10,66,(1:56) (Shotgun) S.Bradford scrambles left end ran ob at SL 41 for 7 yards (E.Lankster).,13,27,2012 -20121118_NYJ@STL,4,1,48,STL,NYJ,2,3,59,(1:48) (Shotgun) S.Bradford pass incomplete deep middle to C.Givens.,13,27,2012 -20121118_NYJ@STL,4,1,41,STL,NYJ,3,3,59,(1:41) (Shotgun) S.Bradford pass incomplete deep right to A.Pettis.,13,27,2012 -20121118_NYJ@STL,4,1,36,STL,NYJ,4,3,59,(1:36) (Shotgun) S.Bradford pass short right to A.Pettis to NYJ 49 for 10 yards (Y.Bell).,13,27,2012 -20121118_NYJ@STL,4,1,21,STL,NYJ,1,10,49,(1:21) S.Bradford spiked the ball to stop the clock.,13,27,2012 -20121118_NYJ@STL,4,1,20,STL,NYJ,2,10,49,(1:20) (Shotgun) S.Bradford pass incomplete short middle to C.Harkey.,13,27,2012 -20121118_NYJ@STL,4,1,16,STL,NYJ,3,10,49,(1:16) (Shotgun) S.Bradford pass short left to C.Givens to 50 for -1 yards (E.Smith).,13,27,2012 -20121118_NYJ@STL,4,0,47,STL,NYJ,4,11,50,(:47) (Shotgun) S.Bradford pass short right to C.Givens to NYJ 41 for 9 yards (E.Lankster).,13,27,2012 -20121118_NYJ@STL,4,0,41,NYJ,STL,1,10,59,(:41) M.Sanchez kneels to NYJ 40 for -1 yards.,27,13,2012 -20121118_NYJ@STL,4,0,41,NYJ,STL,,,59,                      ,27,13,2012 -20121118_PHI@WAS,1,0,0,WAS,PHI,,,59,K.Forbath kicks 63 yards from WAS 35 to PHI 2. B.Brown to PHI 21 for 19 yards (L.Alexander).,0,0,2012 -20121118_PHI@WAS,1,59,56,PHI,WAS,1,10,79,(14:56) N.Foles pass incomplete short left to D.Jackson.,0,0,2012 -20121118_PHI@WAS,1,59,48,PHI,WAS,2,10,79,(14:48) (Shotgun) L.McCoy left tackle to PHI 23 for 2 yards (P.Riley L.Fletcher).,0,0,2012 -20121118_PHI@WAS,1,59,7,PHI,WAS,3,8,77,(14:07) (Shotgun) N.Foles pass short middle intended for B.Celek INTERCEPTED by D.Hall at PHI 31. D.Hall to PHI 9 for 22 yards (D.Kelly).,0,0,2012 -20121118_PHI@WAS,1,58,52,WAS,PHI,1,9,9,(13:52) (Shotgun) A.Morris left end to PHI 6 for 3 yards (K.Coleman).,0,0,2012 -20121118_PHI@WAS,1,58,13,WAS,PHI,2,6,6,(13:13) (Shotgun) R.Griffin pass short right to D.Young for 6 yards TOUCHDOWN.,0,0,2012 -20121118_PHI@WAS,1,58,13,WAS,PHI,,,6,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20121118_PHI@WAS,1,58,13,WAS,PHI,,,6,K.Forbath kicks 64 yards from WAS 35 to PHI 1. B.Brown to PHI 23 for 22 yards (D.Johnson).,7,0,2012 -20121118_PHI@WAS,1,58,2,PHI,WAS,1,10,77,(13:02) N.Foles pass short right to B.Celek to PHI 29 for 6 yards (B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,57,23,PHI,WAS,2,4,71,(12:23) (Shotgun) PENALTY on WAS-L.Fletcher Neutral Zone Infraction 5 yards enforced at PHI 29 - No Play.,0,7,2012 -20121118_PHI@WAS,1,57,6,PHI,WAS,1,10,66,(12:06) (Shotgun) PENALTY on PHI-J.Scott False Start 5 yards enforced at PHI 34 - No Play.,0,7,2012 -20121118_PHI@WAS,1,56,30,PHI,WAS,1,15,71,(11:30) (Shotgun) B.Brown left end pushed ob at PHI 34 for 5 yards (L.Fletcher).,0,7,2012 -20121118_PHI@WAS,1,57,6,PHI,WAS,2,10,66,(12:06) N.Foles pass short right to D.Jackson ran ob at PHI 42 for 8 yards.,0,7,2012 -20121118_PHI@WAS,1,55,5,PHI,WAS,3,2,58,(10:05) (Shotgun) N.Foles pass short left to S.Havili to WAS 49 for 9 yards (D.Hall B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,54,50,PHI,WAS,1,10,49,(9:50) N.Foles pass short middle to L.McCoy to WAS 45 for 4 yards (L.Fletcher). WAS-L.Fletcher was injured during the play.,0,7,2012 -20121118_PHI@WAS,1,54,32,PHI,WAS,2,6,45,(9:32) (Shotgun) N.Foles pass short right to C.Harbor to WAS 46 for -1 yards (B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,53,48,PHI,WAS,3,7,46,(8:48) (Shotgun) N.Foles pass short middle to R.Cooper to WAS 31 for 15 yards (J.Wilson B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,53,10,PHI,WAS,1,10,31,(8:10) (Shotgun) N.Foles pass short right to B.Brown to WAS 18 for 13 yards [B.Cofield]. PENALTY on PHI-D.Kelly Offensive Holding 10 yards enforced at WAS 31 - No Play.,0,7,2012 -20121118_PHI@WAS,1,52,35,PHI,WAS,1,20,41,(7:35) PENALTY on PHI-J.Scott False Start 5 yards enforced at WAS 41 - No Play.,0,7,2012 -20121118_PHI@WAS,1,52,11,PHI,WAS,1,25,46,(7:11) (Shotgun) L.McCoy right guard to WAS 42 for 4 yards (R.Kerrigan).,0,7,2012 -20121118_PHI@WAS,1,51,35,PHI,WAS,2,21,42,(6:35) (Shotgun) N.Foles pass incomplete short middle to L.McCoy (P.Riley).,0,7,2012 -20121118_PHI@WAS,1,51,31,PHI,WAS,3,21,42,(6:31) (Shotgun) N.Foles pass deep middle intended for D.Jackson INTERCEPTED by B.Meriweather at WAS 19. B.Meriweather to WAS 44 for 25 yards (J.Scott).,0,7,2012 -20121118_PHI@WAS,1,51,21,WAS,PHI,1,10,56,(6:21) (Shotgun) R.Griffin pass short left to P.Garcon to PHI 49 for 7 yards (N.Asomugha D.Tapp).,7,0,2012 -20121118_PHI@WAS,1,50,44,WAS,PHI,2,3,49,(5:44) (Shotgun) R.Griffin scrambles left tackle pushed ob at PHI 47 for 2 yards (A.Jordan).,7,0,2012 -20121118_PHI@WAS,1,50,10,WAS,PHI,3,1,47,(5:10) (Shotgun) A.Morris left end to WAS 48 for -5 yards (D.Tapp).,7,0,2012 -20121118_PHI@WAS,1,49,32,WAS,PHI,4,6,52,(4:32) S.Rocca punts 43 yards to PHI 9 Center-N.Sundberg fair catch by D.Johnson. PENALTY on WAS-P.Riley Illegal Formation 5 yards enforced at WAS 48 - No Play.,7,0,2012 -20121118_PHI@WAS,1,49,25,WAS,PHI,4,11,57,(4:25) S.Rocca punts 48 yards to PHI 9 Center-N.Sundberg. D.Johnson to PHI 16 for 7 yards (D.Gomes).,7,0,2012 -20121118_PHI@WAS,1,49,18,PHI,WAS,1,10,84,(4:18) L.McCoy left guard to PHI 18 for 2 yards (R.Jackson B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,48,37,PHI,WAS,2,8,82,(3:37) (Shotgun) N.Foles pass incomplete short left to D.Johnson.,0,7,2012 -20121118_PHI@WAS,1,48,33,PHI,WAS,3,8,82,(3:33) (Shotgun) N.Foles pass short left to R.Cooper pushed ob at PHI 41 for 23 yards (D.Hall B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,48,5,PHI,WAS,1,10,59,(3:05) N.Foles pass incomplete short left to C.Harbor (B.Meriweather).,0,7,2012 -20121118_PHI@WAS,1,47,59,PHI,WAS,2,10,59,(2:59) (Shotgun) L.McCoy right end to PHI 42 for 1 yard (Mad.Williams). PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at PHI 41 - No Play.,0,7,2012 -20121118_PHI@WAS,1,47,34,PHI,WAS,2,20,69,(2:34) (Shotgun) N.Foles pass short middle to L.McCoy to WAS 49 for 20 yards (C.Griffin).,0,7,2012 -20121118_PHI@WAS,1,46,50,PHI,WAS,1,10,49,(1:50) B.Brown left end to 50 for -1 yards (K.Golston).,0,7,2012 -20121118_PHI@WAS,1,46,13,PHI,WAS,2,11,50,(1:13) (Shotgun) N.Foles pass short right to L.McCoy to WAS 25 for 25 yards (C.Griffin).,0,7,2012 -20121118_PHI@WAS,1,45,22,PHI,WAS,1,10,25,(:22) L.McCoy left end to WAS 20 for 5 yards (L.Fletcher).,0,7,2012 -20121118_PHI@WAS,2,45,0,PHI,WAS,2,5,20,(15:00) (Shotgun) N.Foles pass short right to D.Jackson pushed ob at WAS 23 for -3 yards (D.Hall).,0,7,2012 -20121118_PHI@WAS,2,44,27,PHI,WAS,3,8,23,(14:27) (Shotgun) N.Foles pass incomplete short right to B.Celek.,0,7,2012 -20121118_PHI@WAS,2,44,19,PHI,WAS,4,8,23,(14:19) A.Henery 41 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,7,2012 -20121118_PHI@WAS,2,44,19,PHI,WAS,,,23,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,3,7,2012 -20121118_PHI@WAS,2,44,15,WAS,PHI,1,10,80,(14:15) (Shotgun) A.Morris right end pushed ob at WAS 22 for 2 yards (F.Cox K.Coleman).,7,3,2012 -20121118_PHI@WAS,2,43,45,WAS,PHI,2,8,78,(13:45) (Shotgun) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at WAS 22 - No Play.,7,3,2012 -20121118_PHI@WAS,2,43,22,WAS,PHI,2,13,83,(13:22) R.Griffin pass short middle to A.Morris to WAS 24 for 7 yards (K.Coleman M.Kendricks).,7,3,2012 -20121118_PHI@WAS,2,42,41,WAS,PHI,3,6,76,(12:41) (Shotgun) R.Griffin scrambles left end pushed ob at WAS 34 for 10 yards (N.Allen).,7,3,2012 -20121118_PHI@WAS,2,42,0,WAS,PHI,1,10,66,(12:00) (Shotgun) A.Morris up the middle to WAS 39 for 5 yards (D.Ryans).,7,3,2012 -20121118_PHI@WAS,2,41,25,WAS,PHI,2,5,61,(11:25) (Shotgun) A.Morris left end to PHI 49 for 12 yards (N.Allen M.Kendricks).,7,3,2012 -20121118_PHI@WAS,2,40,45,WAS,PHI,1,10,49,(10:45) R.Griffin pass deep right to A.Robinson for 49 yards TOUCHDOWN [D.Tapp].,7,3,2012 -20121118_PHI@WAS,2,40,45,WAS,PHI,,,49,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,7,3,2012 -20121118_PHI@WAS,2,40,45,WAS,PHI,,,49,K.Forbath kicks 59 yards from WAS 35 to PHI 6. B.Brown to PHI 31 for 25 yards (J.Pugh).,14,3,2012 -20121118_PHI@WAS,2,40,29,PHI,WAS,1,10,69,(10:29) B.Brown right tackle to PHI 44 for 13 yards (L.Fletcher D.Hall).,3,14,2012 -20121118_PHI@WAS,2,39,51,PHI,WAS,1,10,56,(9:51) (Shotgun) L.McCoy right end pushed ob at WAS 47 for 9 yards (L.Fletcher).,3,14,2012 -20121118_PHI@WAS,2,39,16,PHI,WAS,2,1,47,(9:16) (Shotgun) B.Brown left tackle pushed ob at WAS 29 for 18 yards (L.Fletcher). PENALTY on PHI-J.Maclin Offensive Holding 10 yards enforced at WAS 33.,3,14,2012 -20121118_PHI@WAS,2,38,55,PHI,WAS,1,10,43,(8:55) N.Foles pass incomplete short middle to C.Harbor.,3,14,2012 -20121118_PHI@WAS,2,38,45,PHI,WAS,2,10,43,(8:45) (Shotgun) L.McCoy left end to WAS 41 for 2 yards (R.Jackson; B.Cofield).,3,14,2012 -20121118_PHI@WAS,2,38,6,PHI,WAS,3,8,41,(8:06) N.Foles sacked at PHI 49 for -10 yards (J.Wilson). FUMBLES (J.Wilson) recovered by PHI-J.Scott at PHI 47. J.Scott to PHI 47 for no gain (P.Riley). Penalty on PHI-K.Dunlap Offensive Holding declined.,3,14,2012 -20121118_PHI@WAS,2,37,36,PHI,WAS,4,20,53,(7:36) M.McBriar punts 47 yards to WAS 6 Center-J.Dorenbos. B.Banks to WAS 14 for 8 yards.,3,14,2012 -20121118_PHI@WAS,2,37,29,WAS,PHI,1,10,86,(7:29) (Shotgun) A.Morris left end to WAS 13 for -1 yards (D.Ryans; A.Jordan).,14,3,2012 -20121118_PHI@WAS,2,37,1,WAS,PHI,2,11,87,(7:01) R.Griffin pass short right to J.Morgan pushed ob at WAS 17 for 4 yards (D.Rodgers-Cromartie).,14,3,2012 -20121118_PHI@WAS,2,36,19,WAS,PHI,3,7,83,(6:19) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 23 for 6 yards (N.Asomugha).,14,3,2012 -20121118_PHI@WAS,2,35,39,WAS,PHI,4,1,77,(5:39) S.Rocca punts 57 yards to PHI 20 Center-N.Sundberg. D.Johnson pushed ob at PHI 36 for 16 yards (S.Rocca).,14,3,2012 -20121118_PHI@WAS,2,35,26,PHI,WAS,1,10,64,(5:26) N.Foles pass incomplete short left to R.Cooper.,3,14,2012 -20121118_PHI@WAS,2,35,22,PHI,WAS,2,10,64,(5:22) (Shotgun) N.Foles pass short middle to L.McCoy to PHI 29 for -7 yards (P.Riley K.Golston).,3,14,2012 -20121118_PHI@WAS,2,34,37,PHI,WAS,3,17,71,(4:37) (Shotgun) N.Foles pass deep middle to D.Johnson to 50 for 21 yards (D.Hall).,3,14,2012 -20121118_PHI@WAS,2,34,3,PHI,WAS,1,10,50,(4:03) B.Brown left tackle to WAS 46 for 4 yards (L.Fletcher).,3,14,2012 -20121118_PHI@WAS,2,33,24,PHI,WAS,2,6,46,(3:24) (Shotgun) L.McCoy left tackle to WAS 45 for 1 yard (B.Meriweather).,3,14,2012 -20121118_PHI@WAS,2,32,41,PHI,WAS,3,5,45,(2:41) (Shotgun) N.Foles pass incomplete short right to B.Celek.,3,14,2012 -20121118_PHI@WAS,2,32,34,PHI,WAS,4,5,45,(2:34) M.McBriar punts 45 yards to end zone Center-J.Dorenbos Touchback.,3,14,2012 -20121118_PHI@WAS,2,32,27,WAS,PHI,1,10,80,(2:27) (Shotgun) R.Griffin scrambles right guard to WAS 21 for 1 yard (F.Cox). FUMBLES (F.Cox) recovered by WAS-D.Young at WAS 22. D.Young to WAS 22 for no gain (C.Jenkins).,14,3,2012 -20121118_PHI@WAS,2,32,0,WAS,PHI,2,8,78,(2:00) (Shotgun) R.Griffin pass deep left to L.Hankerson to WAS 43 for 21 yards (N.Allen).,14,3,2012 -20121118_PHI@WAS,2,31,36,WAS,PHI,1,10,57,(1:36) (No Huddle Shotgun) R.Griffin pass incomplete short middle to J.Morgan (D.Rodgers-Cromartie).,14,3,2012 -20121118_PHI@WAS,2,31,32,WAS,PHI,2,10,57,(1:32) (Shotgun) R.Griffin sacked at WAS 43 for 0 yards (F.Cox T.Cole).,14,3,2012 -20121118_PHI@WAS,2,30,50,WAS,PHI,3,10,57,(:50) (Shotgun) R.Griffin scrambles left guard to 50 for 7 yards.,14,3,2012 -20121118_PHI@WAS,2,30,44,WAS,PHI,4,3,50,(:44) S.Rocca punts 38 yards to PHI 12 Center-N.Sundberg fair catch by D.Johnson.,14,3,2012 -20121118_PHI@WAS,2,30,36,PHI,WAS,1,10,88,(:36) (Shotgun) L.McCoy left tackle to PHI 13 for 1 yard (B.Cofield). FUMBLES (B.Cofield) RECOVERED by WAS-R.Kerrigan at PHI 14.,3,14,2012 -20121118_PHI@WAS,2,30,27,WAS,PHI,1,10,14,(:27) (Shotgun) R.Griffin pass short right to P.Garcon to PHI 15 for -1 yards (K.Coleman).,14,3,2012 -20121118_PHI@WAS,2,30,14,WAS,PHI,2,11,15,(:14) A.Morris right end to PHI 12 for 3 yards (M.Kendricks).,14,3,2012 -20121118_PHI@WAS,2,30,2,WAS,PHI,3,8,12,(:02) (Field Goal formation) PENALTY on PHI Defensive 12 On-field 5 yards enforced at PHI 12 - No Play.,14,3,2012 -20121118_PHI@WAS,2,30,2,WAS,PHI,3,3,7,(:02) K.Forbath 25 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,14,3,2012 -20121118_PHI@WAS,3,30,0,PHI,WAS,,,7,A.Henery kicks 72 yards from PHI 35 to WAS -7. B.Banks Touchback.,3,17,2012 -20121118_PHI@WAS,3,30,0,WAS,PHI,1,10,80,(15:00) (Shotgun) A.Morris up the middle to WAS 22 for 2 yards (J.Babin). PENALTY on WAS-T.Polumbus Illegal Formation 5 yards enforced at WAS 20 - No Play.,17,3,2012 -20121118_PHI@WAS,3,29,34,WAS,PHI,1,15,85,(14:34) (Shotgun) A.Morris right tackle to WAS 19 for 4 yards (K.Coleman M.Kendricks).,17,3,2012 -20121118_PHI@WAS,3,28,55,WAS,PHI,2,11,81,(13:55) (Shotgun) PENALTY on WAS-A.Morris False Start 5 yards enforced at WAS 19 - No Play.,17,3,2012 -20121118_PHI@WAS,3,28,41,WAS,PHI,2,16,86,(13:41) (Shotgun) R.Griffin pass short left to P.Garcon to WAS 13 for -1 yards (F.Cox).,17,3,2012 -20121118_PHI@WAS,3,28,5,WAS,PHI,3,17,87,(13:05) (Shotgun) R.Griffin sacked at WAS 5 for -8 yards (J.Babin).,17,3,2012 -20121118_PHI@WAS,3,27,42,WAS,PHI,4,25,95,(12:42) S.Rocca punts 47 yards to PHI 48 Center-N.Sundberg. D.Johnson pushed ob at WAS 47 for 5 yards (D.Gomes).,17,3,2012 -20121118_PHI@WAS,3,27,32,PHI,WAS,1,10,47,(12:32) (Shotgun) N.Foles pass incomplete deep right to D.Jackson.,3,17,2012 -20121118_PHI@WAS,3,27,25,PHI,WAS,2,10,47,(12:25) (Shotgun) L.McCoy left tackle to WAS 42 for 5 yards (L.Fletcher).,3,17,2012 -20121118_PHI@WAS,3,26,43,PHI,WAS,3,5,42,(11:43) (Shotgun) N.Foles pass deep middle to B.Celek to WAS 20 for 22 yards (Mad.Williams).,3,17,2012 -20121118_PHI@WAS,3,25,59,PHI,WAS,1,10,20,(10:59) (Shotgun) L.McCoy left tackle to WAS 26 for -6 yards (R.Kerrigan). WAS-B.Meriweather was injured during the play.,3,17,2012 -20121118_PHI@WAS,3,25,25,PHI,WAS,2,16,26,(10:25) (Shotgun) N.Foles pass short right to L.McCoy to WAS 14 for 12 yards (L.Fletcher D.Gomes).,3,17,2012 -20121118_PHI@WAS,3,24,35,PHI,WAS,3,4,14,(9:35) (Shotgun) PENALTY on PHI-N.Foles Delay of Game 5 yards enforced at WAS 14 - No Play.,3,17,2012 -20121118_PHI@WAS,3,24,16,PHI,WAS,3,9,19,(9:16) (Shotgun) N.Foles sacked at WAS 26 for -7 yards (R.Kerrigan). FUMBLES (R.Kerrigan) recovered by PHI-L.McCoy at WAS 24. L.McCoy to WAS 24 for no gain (B.Cofield).,3,17,2012 -20121118_PHI@WAS,3,23,32,PHI,WAS,4,14,24,(8:32) A.Henery 42 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,3,17,2012 -20121118_PHI@WAS,3,23,32,PHI,WAS,,,24,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,6,17,2012 -20121118_PHI@WAS,3,23,27,WAS,PHI,1,10,80,(8:27) A.Morris right end to WAS 19 for -1 yards. FUMBLES and recovers at WAS 20. A.Morris to WAS 20 for no gain (M.Patterson).,17,6,2012 -20121118_PHI@WAS,3,22,46,WAS,PHI,2,10,80,(7:46) R.Griffin scrambles left end pushed ob at WAS 21 for 1 yard (M.Kendricks).,17,6,2012 -20121118_PHI@WAS,3,22,13,WAS,PHI,3,9,79,(7:13) (Shotgun) PENALTY on WAS-A.Morris False Start 5 yards enforced at WAS 21 - No Play.,17,6,2012 -20121118_PHI@WAS,3,21,54,WAS,PHI,3,14,84,(6:54) (Shotgun) R.Griffin scrambles left end pushed ob at WAS 39 for 23 yards (F.Cox).,17,6,2012 -20121118_PHI@WAS,3,21,22,WAS,PHI,1,10,61,(6:22) A.Morris right tackle to WAS 39 for no gain (D.Ryans).,17,6,2012 -20121118_PHI@WAS,3,20,42,WAS,PHI,2,10,61,(5:42) (Shotgun) R.Griffin pass short middle to B.Banks to WAS 39 for no gain (C.Jenkins; D.Ryans).,17,6,2012 -20121118_PHI@WAS,3,20,2,WAS,PHI,3,10,61,(5:02) (Shotgun) R.Griffin pass deep middle to S.Moss for 61 yards TOUCHDOWN. Penalty on PHI-D.Rodgers-Cromartie Illegal Use of Hands declined.,17,6,2012 -20121118_PHI@WAS,3,20,2,WAS,PHI,,,61,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,17,6,2012 -20121118_PHI@WAS,3,20,2,WAS,PHI,,,61,K.Forbath kicks 53 yards from WAS 35 to PHI 12. R.Cooper to PHI 26 for 14 yards (A.Robinson). PHI-R.Cooper was injured during the play.,24,6,2012 -20121118_PHI@WAS,3,19,43,PHI,WAS,1,10,74,(4:43) N.Foles pass incomplete short left to J.Maclin.,6,24,2012 -20121118_PHI@WAS,3,19,36,PHI,WAS,2,10,74,(4:36) (Shotgun) L.McCoy up the middle to PHI 30 for 4 yards (K.Golston).,6,24,2012 -20121118_PHI@WAS,3,19,0,PHI,WAS,3,6,70,(4:00) (Shotgun) N.Foles sacked at PHI 27 for -3 yards (P.Riley).,6,24,2012 -20121118_PHI@WAS,3,18,35,PHI,WAS,4,9,73,(3:35) M.McBriar punts 53 yards to WAS 20 Center-J.Dorenbos. B.Banks to WAS 31 for 11 yards (D.Sims; K.Coleman).,6,24,2012 -20121118_PHI@WAS,3,18,23,WAS,PHI,1,10,69,(3:23) A.Morris right end pushed ob at WAS 35 for 4 yards (D.Ryans).,24,6,2012 -20121118_PHI@WAS,3,17,55,WAS,PHI,2,6,65,(2:55) (Shotgun) R.Griffin right end to WAS 46 for 11 yards (D.Ryans). PENALTY on PHI-D.Ryans Unnecessary Roughness 15 yards enforced at WAS 46.,24,6,2012 -20121118_PHI@WAS,3,17,25,WAS,PHI,1,10,39,(2:25) PENALTY on WAS-P.Riley False Start 5 yards enforced at PHI 39 - No Play.,24,6,2012 -20121118_PHI@WAS,3,17,8,WAS,PHI,1,15,44,(2:08) A.Morris right end to PHI 42 for 2 yards (M.Patterson N.Allen).,24,6,2012 -20121118_PHI@WAS,3,16,23,WAS,PHI,2,13,42,(1:23) R.Griffin pass short middle to J.Morgan to PHI 27 for 15 yards (D.Rodgers-Cromartie).,24,6,2012 -20121118_PHI@WAS,3,15,45,WAS,PHI,1,10,27,(:45) (Shotgun) A.Morris right guard to PHI 24 for 3 yards (F.Cox).,24,6,2012 -20121118_PHI@WAS,4,15,0,WAS,PHI,2,7,24,(15:00) B.Banks right tackle pushed ob at PHI 18 for 6 yards (N.Allen). End Around by #16,24,6,2012 -20121118_PHI@WAS,4,14,34,WAS,PHI,3,1,18,(14:34) R.Griffin up the middle to PHI 18 for no gain (D.Landri F.Cox).,24,6,2012 -20121118_PHI@WAS,4,14,10,WAS,PHI,4,1,18,(14:10) A.Morris right tackle to PHI 18 for no gain (J.Babin). Yard line changes to the 19 on change of possession,24,6,2012 -20121118_PHI@WAS,4,14,3,PHI,WAS,1,10,81,(14:03) (Shotgun) N.Foles pass incomplete short middle to J.Maclin (D.Gomes).,6,24,2012 -20121118_PHI@WAS,4,13,59,PHI,WAS,2,10,81,(13:59) (Shotgun) L.McCoy left end to PHI 14 for -5 yards (D.Hall).,6,24,2012 -20121118_PHI@WAS,4,13,21,PHI,WAS,3,15,86,(13:21) (Shotgun) N.Foles pass incomplete deep right to J.Maclin [L.Alexander]. Penalty on PHI-J.Scott Offensive Holding declined.,6,24,2012 -20121118_PHI@WAS,4,13,13,PHI,WAS,4,15,86,(13:13) (Punt formation) PENALTY on WAS-C.Griffin Defensive Delay of Game 5 yards enforced at PHI 14 - No Play.,6,24,2012 -20121118_PHI@WAS,4,13,13,PHI,WAS,4,10,81,(13:13) M.McBriar punts 36 yards to WAS 45 Center-J.Dorenbos out of bounds.,6,24,2012 -20121118_PHI@WAS,4,13,5,WAS,PHI,1,10,55,(13:05) A.Morris left end pushed ob at PHI 38 for 17 yards (D.Ryans).,24,6,2012 -20121118_PHI@WAS,4,12,35,WAS,PHI,1,10,38,(12:35) A.Morris right end to PHI 31 for 7 yards (T.Cole; D.Landri). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at PHI 38 - No Play.,24,6,2012 -20121118_PHI@WAS,4,12,9,WAS,PHI,1,20,48,(12:09) (Shotgun) R.Griffin left end pushed ob at PHI 20 for 28 yards (A.Jordan).,24,6,2012 -20121118_PHI@WAS,4,11,36,WAS,PHI,1,10,20,(11:36) A.Morris left end pushed ob at PHI 11 for 9 yards (K.Coleman).,24,6,2012 -20121118_PHI@WAS,4,11,3,WAS,PHI,2,1,11,(11:03) (Shotgun) R.Griffin left end to PHI 17 for -6 yards (M.Kendricks).,24,6,2012 -20121118_PHI@WAS,4,10,35,WAS,PHI,3,7,17,(10:35) R.Griffin pass short middle to L.Paulsen for 17 yards TOUCHDOWN [D.Landri].,24,6,2012 -20121118_PHI@WAS,4,10,35,WAS,PHI,,,17,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,24,6,2012 -20121118_PHI@WAS,4,10,35,WAS,PHI,,,17,K.Forbath kicks 73 yards from WAS 35 to PHI -8. R.Cooper Touchback.,31,6,2012 -20121118_PHI@WAS,4,10,24,PHI,WAS,1,10,88,(10:24) (Shotgun) N.Foles FUMBLES (Aborted) at PHI 20 and recovers at PHI 12.,6,31,2012 -20121118_PHI@WAS,4,9,55,PHI,WAS,2,18,88,(9:55) N.Foles pass incomplete deep right to D.Jackson (D.Gomes).,6,31,2012 -20121118_PHI@WAS,4,9,48,PHI,WAS,3,18,88,(9:48) (Shotgun) N.Foles pass short middle to L.McCoy to PHI 25 for 13 yards [P.Riley]. PENALTY on WAS-P.Riley Unnecessary Roughness 15 yards enforced at PHI 25.,6,31,2012 -20121118_PHI@WAS,4,9,25,PHI,WAS,1,10,60,(9:25) N.Foles sacked at PHI 33 for -7 yards (R.Jackson).,6,31,2012 -20121118_PHI@WAS,4,9,18,PHI,WAS,2,17,67,(9:18) L.McCoy up the middle to PHI 42 for 9 yards (P.Riley L.Fletcher).,6,31,2012 -20121118_PHI@WAS,4,8,50,PHI,WAS,3,8,58,(8:50) (No Huddle Shotgun) N.Foles pass incomplete short left. PENALTY on WAS-D.Hall Defensive Holding 5 yards enforced at PHI 42 - No Play.,6,31,2012 -20121118_PHI@WAS,4,0,**,PHI,WAS,3,3,53,*** play under review ***,6,31,2012 -20121118_PHI@WAS,4,8,39,PHI,WAS,2,10,53,(8:39) (Shotgun) N.Foles pass incomplete deep right to D.Jackson.,6,31,2012 -20121118_PHI@WAS,4,8,33,PHI,WAS,3,10,53,(8:33) PENALTY on PHI-L.McCoy False Start 5 yards enforced at PHI 47 - No Play.,6,31,2012 -20121118_PHI@WAS,4,8,33,PHI,WAS,3,15,58,(8:33) N.Foles pass short middle to B.Celek to PHI 39 for -3 yards (L.Alexander L.Fletcher).,6,31,2012 -20121118_PHI@WAS,4,7,51,PHI,WAS,4,18,61,(7:51) M.McBriar punts 53 yards to WAS 8 Center-J.Dorenbos. B.Banks to WAS 21 for 13 yards (J.Dorenbos A.Jordan).,6,31,2012 -20121118_PHI@WAS,4,7,38,WAS,PHI,1,10,79,(7:38) A.Morris up the middle to WAS 41 for 20 yards (M.Kendricks N.Allen).,31,6,2012 -20121118_PHI@WAS,4,6,49,WAS,PHI,1,10,59,(6:49) PENALTY on WAS-R.Griffin False Start 5 yards enforced at WAS 41 - No Play.,31,6,2012 -20121118_PHI@WAS,4,6,34,WAS,PHI,1,15,64,(6:34) A.Morris up the middle to WAS 36 for no gain (D.Tapp M.Patterson).,31,6,2012 -20121118_PHI@WAS,4,5,56,WAS,PHI,2,15,64,(5:56) (Shotgun) R.Griffin right end pushed ob at WAS 44 for 8 yards (N.Asomugha).,31,6,2012 -20121118_PHI@WAS,4,5,22,WAS,PHI,3,7,56,(5:22) R.Griffin pass short right to L.Hankerson to PHI 47 for 9 yards (D.Rodgers-Cromartie).,31,6,2012 -20121118_PHI@WAS,4,4,41,WAS,PHI,1,10,47,(4:41) A.Morris up the middle to PHI 44 for 3 yards (K.Coleman).,31,6,2012 -20121118_PHI@WAS,4,3,58,WAS,PHI,2,7,44,(3:58) A.Morris left end to PHI 49 for -5 yards (A.Jordan).,31,6,2012 -20121118_PHI@WAS,4,3,51,WAS,PHI,3,12,49,(3:51) E.Royster left guard to PHI 46 for 3 yards (F.Cox).,31,6,2012 -20121118_PHI@WAS,4,3,45,WAS,PHI,4,9,46,(3:45) S.Rocca punts 37 yards to PHI 9 Center-N.Sundberg fair catch by D.Johnson.,31,6,2012 -20121118_PHI@WAS,4,3,38,PHI,WAS,1,10,91,(3:38) (Shotgun) L.McCoy left end to PHI 14 for 5 yards (K.Golston).,6,31,2012 -20121118_PHI@WAS,4,3,10,PHI,WAS,2,5,86,(3:10) (No Huddle Shotgun) N.Foles pass incomplete short right to D.Jackson.,6,31,2012 -20121118_PHI@WAS,4,3,6,PHI,WAS,3,5,86,(3:06) (Shotgun) N.Foles pass short middle to B.Celek to PHI 25 for 11 yards (D.Gomes).,6,31,2012 -20121118_PHI@WAS,4,2,42,PHI,WAS,1,10,75,(2:42) (No Huddle Shotgun) N.Foles pass short left to R.Cooper pushed ob at PHI 30 for 5 yards (D.Hall).,6,31,2012 -20121118_PHI@WAS,4,2,37,PHI,WAS,2,5,70,(2:37) (Shotgun) N.Foles pass incomplete short middle to S.Havili.,6,31,2012 -20121118_PHI@WAS,4,2,33,PHI,WAS,3,5,70,(2:33) (Shotgun) N.Foles pass short right to B.Celek to PHI 36 for 6 yards (P.Riley K.Robinson) [L.Alexander].,6,31,2012 -20121118_PHI@WAS,4,2,4,PHI,WAS,1,10,64,(2:04) (Shotgun) N.Foles pass incomplete deep right to D.Jackson.,6,31,2012 -20121118_PHI@WAS,4,1,58,PHI,WAS,2,10,64,(1:58) (Shotgun) L.McCoy left end to PHI 43 for 7 yards (Mad.Williams R.Doughty). PHI-L.McCoy was injured during the play.,6,31,2012 -20121118_PHI@WAS,4,1,45,PHI,WAS,3,3,57,(1:45) (Shotgun) N.Foles pass incomplete short middle to R.Cooper (J.Wilson).,6,31,2012 -20121118_PHI@WAS,4,1,41,PHI,WAS,4,3,57,(1:41) (Shotgun) N.Foles pass incomplete short right to J.Maclin. PENALTY on WAS-L.Alexander Defensive Offside 5 yards enforced at PHI 43 - No Play.,6,31,2012 -20121118_PHI@WAS,4,1,35,PHI,WAS,1,10,52,(1:35) (Shotgun) N.Foles pass incomplete short middle to C.Harbor.,6,31,2012 -20121118_PHI@WAS,4,1,31,PHI,WAS,2,10,52,(1:31) (Shotgun) N.Foles pass short middle to R.Cooper to WAS 41 for 11 yards (C.Griffin).,6,31,2012 -20121118_PHI@WAS,4,1,3,PHI,WAS,1,10,41,(1:03) (Shotgun) N.Foles pass short left to R.Cooper pushed ob at WAS 34 for 7 yards (D.Johnson).,6,31,2012 -20121118_PHI@WAS,4,0,57,PHI,WAS,2,3,34,(:57) (Shotgun) N.Foles pass incomplete deep middle to C.Harbor (C.Baker).,6,31,2012 -20121118_PHI@WAS,4,0,52,PHI,WAS,3,3,34,(:52) N.Foles pass incomplete short right to S.Havili [C.Wilson].,6,31,2012 -20121118_PHI@WAS,4,0,45,PHI,WAS,4,3,34,(:45) (Shotgun) N.Foles pass incomplete short right to C.Harbor.,6,31,2012 -20121118_PHI@WAS,4,0,41,WAS,PHI,1,10,66,(:41) R.Griffin kneels to WAS 33 for -1 yards.,31,6,2012 -20121118_PHI@WAS,4,0,41,WAS,PHI,,,66,                      ,31,6,2012 -20121118_NO@OAK,1,0,0,NO,OAK,,,66,T.Morstead kicks 72 yards from NO 35 to OAK -7. C.Francies to OAK 23 for 30 yards (E.Mack).,0,0,2012 -20121118_NO@OAK,1,59,55,OAK,NO,1,10,77,(14:55) M.Reece right end to OAK 40 for 17 yards (R.Harper).,0,0,2012 -20121118_NO@OAK,1,59,21,OAK,NO,1,10,60,(14:21) M.Reece right end to OAK 48 for 8 yards (C.Lofton).,0,0,2012 -20121118_NO@OAK,1,58,42,OAK,NO,2,2,52,(13:42) T.Jones up the middle to NO 49 for 3 yards (W.Smith). PENALTY on OAK-D.Hagan Illegal Block Above the Waist 10 yards enforced at NO 49.,0,0,2012 -20121118_NO@OAK,1,58,8,OAK,NO,2,9,59,(13:08) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan (P.Robinson).,0,0,2012 -20121118_NO@OAK,1,58,3,OAK,NO,3,9,59,(13:03) (Shotgun) C.Palmer pass short right to R.Streater to OAK 47 for 6 yards (E.Mack; J.Greer).,0,0,2012 -20121118_NO@OAK,1,57,15,OAK,NO,4,3,53,(12:15) S.Lechler punts 53 yards to end zone Center-J.Condo Touchback.,0,0,2012 -20121118_NO@OAK,1,56,55,NO,OAK,1,10,80,(11:55) D.Brees pass short left to M.Colston pushed ob at NO 34 for 14 yards (R.Bartell).,0,0,2012 -20121118_NO@OAK,1,56,51,NO,OAK,1,10,66,(11:51) M.Ingram up the middle to 50 for 16 yards (M.Mitchell).,0,0,2012 -20121118_NO@OAK,1,56,21,NO,OAK,1,10,50,(11:21) P.Thomas right guard to OAK 36 for 14 yards (J.Hanson).,0,0,2012 -20121118_NO@OAK,1,55,50,NO,OAK,1,10,36,(10:50) (Shotgun) D.Brees pass deep right to T.Cadet to OAK 7 for 29 yards (M.Huff).,0,0,2012 -20121118_NO@OAK,1,55,45,NO,OAK,2,10,36,(10:45) (Shotgun) D.Brees pass short left to T.Cadet to OAK 19 for 17 yards (P.Wheeler).,0,0,2012 -20121118_NO@OAK,1,55,14,NO,OAK,1,10,19,(10:14) (Shotgun) P.Thomas left end pushed ob at OAK 13 for 6 yards (M.Giordano).,0,0,2012 -20121118_NO@OAK,1,54,50,NO,OAK,2,4,13,(9:50) (Shotgun) D.Brees pass short middle to P.Thomas to OAK 8 for 5 yards (M.Burris).,0,0,2012 -20121118_NO@OAK,1,54,15,NO,OAK,1,8,8,(9:15) (Shotgun) P.Thomas left guard to OAK 5 for 3 yards (Team).,0,0,2012 -20121118_NO@OAK,1,53,35,NO,OAK,2,5,5,(8:35) (Shotgun) D.Brees pass short left to P.Thomas to OAK 1 for 4 yards (R.Bartell).,0,0,2012 -20121118_NO@OAK,1,52,58,NO,OAK,3,1,1,(7:58) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN.,0,0,2012 -20121118_NO@OAK,1,52,58,NO,OAK,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121118_NO@OAK,1,52,58,NO,OAK,,,1,T.Morstead kicks 70 yards from NO 35 to OAK -5. C.Francies to OAK 20 for 25 yards (C.Roby).,7,0,2012 -20121118_NO@OAK,1,52,48,OAK,NO,1,10,80,(7:48) M.Reece right tackle to OAK 26 for 6 yards (J.Vilma; B.Bunkley).,0,7,2012 -20121118_NO@OAK,1,52,12,OAK,NO,2,4,74,(7:12) M.Reece right end to OAK 23 for -3 yards (R.Harper).,0,7,2012 -20121118_NO@OAK,1,51,27,OAK,NO,3,7,77,(6:27) (Shotgun) C.Palmer pass incomplete short middle to D.Moore (M.Wilson).,0,7,2012 -20121118_NO@OAK,1,51,18,OAK,NO,4,7,77,(6:18) S.Lechler punts 58 yards to NO 19 Center-J.Condo. T.Cadet ran ob at NO 44 for 25 yards. PENALTY on NO-M.Ingram Defensive Offside 5 yards enforced at OAK 23 - No Play.,0,7,2012 -20121118_NO@OAK,1,51,8,OAK,NO,4,2,72,(6:08) S.Lechler punts 46 yards to NO 26 Center-J.Condo fair catch by T.Cadet.,0,7,2012 -20121118_NO@OAK,1,51,1,NO,OAK,1,10,74,(6:01) C.Ivory right guard to NO 24 for -2 yards (R.McClain).,7,0,2012 -20121118_NO@OAK,1,50,27,NO,OAK,2,12,76,(5:27) M.Ingram left guard to NO 25 for 1 yard (M.Shaughnessy; R.McClain).,7,0,2012 -20121118_NO@OAK,1,49,40,NO,OAK,3,11,75,(4:40) (Shotgun) D.Brees pass incomplete deep left to L.Moore [P.Wheeler].,7,0,2012 -20121118_NO@OAK,1,49,34,NO,OAK,4,11,75,(4:34) T.Morstead punts 42 yards to OAK 33 Center-J.Drescher. P.Adams to OAK 36 for 3 yards (J.Casillas). PENALTY on NO-C.Roby Fair Catch Interference 15 yards enforced at OAK 33.,7,0,2012 -20121118_NO@OAK,1,49,24,OAK,NO,1,10,52,(4:24) C.Palmer pass incomplete deep right to D.Moore.,0,7,2012 -20121118_NO@OAK,1,49,18,OAK,NO,2,10,52,(4:18) C.Palmer pass short right intended for B.Myers INTERCEPTED by M.Jenkins at NO 45. M.Jenkins for 55 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,0,7,2012 -20121118_NO@OAK,1,49,18,NO,OAK,,,52,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,0,2012 -20121118_NO@OAK,1,49,18,NO,OAK,,,52,T.Morstead kicks 65 yards from NO 35 to OAK 0. C.Francies to OAK 16 for 16 yards (T.McBride).,14,0,2012 -20121118_NO@OAK,1,48,58,OAK,NO,1,10,84,(3:58) T.Bergstrom reported in as eligible. M.Reece right end pushed ob at OAK 30 for 14 yards (M.Jenkins; R.Harper).,0,14,2012 -20121118_NO@OAK,1,48,26,OAK,NO,1,10,70,(3:26) M.Reece right tackle to OAK 32 for 2 yards (W.Smith).,0,14,2012 -20121118_NO@OAK,1,47,47,OAK,NO,2,8,68,(2:47) C.Palmer pass incomplete deep left to D.Heyward-Bey.,0,14,2012 -20121118_NO@OAK,1,47,40,OAK,NO,3,8,68,(2:40) (Shotgun) C.Palmer pass short left to B.Myers pushed ob at OAK 41 for 9 yards (R.Harper).,0,14,2012 -20121118_NO@OAK,1,47,14,OAK,NO,1,10,59,(2:14) C.Palmer pass incomplete deep right to D.Moore.,0,14,2012 -20121118_NO@OAK,1,47,8,OAK,NO,2,10,59,(2:08) T.Jones right end to OAK 44 for 3 yards (T.Johnson).,0,14,2012 -20121118_NO@OAK,1,46,25,OAK,NO,3,7,56,(1:25) (Shotgun) C.Palmer pass short middle to J.Criner to NO 43 for 13 yards (I.Abdul-Quddus).,0,14,2012 -20121118_NO@OAK,1,45,42,OAK,NO,1,10,43,(:42) C.Palmer pass short middle to D.Hagan to NO 26 for 17 yards (J.Greer).,0,14,2012 -20121118_NO@OAK,1,45,4,OAK,NO,1,10,26,(:04) M.Reece left end to NO 22 for 4 yards (A.Hicks).,0,14,2012 -20121118_NO@OAK,2,45,0,OAK,NO,2,6,22,(15:00) M.Reece right end pushed ob at NO 21 for 1 yard (D.Hawthorne). PENALTY on OAK-T.Bergstrom Offensive Holding 10 yards enforced at NO 22 - No Play.,0,14,2012 -20121118_NO@OAK,2,44,47,OAK,NO,2,16,32,(14:47) (Shotgun) C.Palmer pass short middle to M.Reece to NO 12 for 20 yards (R.Harper).,0,14,2012 -20121118_NO@OAK,2,44,7,OAK,NO,1,10,12,(14:07) M.Reece right tackle to NO 11 for 1 yard (R.Harper).,0,14,2012 -20121118_NO@OAK,2,43,30,OAK,NO,2,9,11,(13:30) J.Stewart left tackle to NO 8 for 3 yards (C.Jordan).,0,14,2012 -20121118_NO@OAK,2,42,51,OAK,NO,3,6,8,(12:51) (Shotgun) C.Palmer pass short right to B.Myers to NO 3 for 5 yards (J.Greer; E.Mack).,0,14,2012 -20121118_NO@OAK,2,42,30,OAK,NO,4,1,3,(12:30) C.Palmer up the middle to NO 1 for 2 yards (Team).,0,14,2012 -20121118_NO@OAK,2,41,46,OAK,NO,1,1,1,(11:46) M.Reece right guard to NO 2 for -1 yards (A.Hicks).,0,14,2012 -20121118_NO@OAK,2,41,0,OAK,NO,2,2,2,(11:00) (Shotgun) C.Palmer pass incomplete short left to D.Heyward-Bey. PENALTY on OAK-R.Streater Offensive Pass Interference 10 yards enforced at NO 2 - No Play.,0,14,2012 -20121118_NO@OAK,2,40,56,OAK,NO,2,12,12,(10:56) C.Palmer pass short middle to M.Reece to NO 7 for 5 yards (J.Vilma).,0,14,2012 -20121118_NO@OAK,2,40,14,OAK,NO,3,7,7,(10:14) (Shotgun) C.Palmer pass short middle intended for B.Myers INTERCEPTED by R.Harper at NO 0. Touchback. PENALTY on NO-M.Jenkins Unsportsmanlike Conduct 10 yards enforced at NO 20.,0,14,2012 -20121118_NO@OAK,2,40,7,NO,OAK,1,10,90,(10:07) E.Olsen reported in as eligible. D.Brees pass short right to J.Collins to NO 21 for 11 yards (M.Burris).,14,0,2012 -20121118_NO@OAK,2,39,31,NO,OAK,1,10,79,(9:31) C.Ivory up the middle to NO 22 for 1 yard (R.McClain).,14,0,2012 -20121118_NO@OAK,2,38,43,NO,OAK,2,9,78,(8:43) D.Brees pass short middle to J.Graham to NO 32 for 10 yards (M.Mitchell; R.McClain).,14,0,2012 -20121118_NO@OAK,2,38,8,NO,OAK,1,10,68,(8:08) (Shotgun) P.Thomas up the middle to NO 33 for 1 yard (M.Burris).,14,0,2012 -20121118_NO@OAK,2,37,38,NO,OAK,2,9,67,(7:38) D.Brees pass short right to D.Henderson to NO 36 for 3 yards (M.Huff).,14,0,2012 -20121118_NO@OAK,2,37,0,NO,OAK,3,6,64,(7:00) (Shotgun) PENALTY on NO-C.Brown False Start 5 yards enforced at NO 36 - No Play.,14,0,2012 -20121118_NO@OAK,2,36,41,NO,OAK,3,11,69,(6:41) (Shotgun) D.Brees pass incomplete deep right to M.Colston (M.Huff).,14,0,2012 -20121118_NO@OAK,2,36,33,NO,OAK,4,11,69,(6:33) T.Morstead punts 40 yards to OAK 29 Center-J.Drescher out of bounds. PENALTY on OAK-C.Francies Offensive Holding 10 yards enforced at OAK 29.,14,0,2012 -20121118_NO@OAK,2,36,27,OAK,NO,1,10,81,(6:27) M.Reece left end to OAK 24 for 5 yards (D.Hawthorne).,0,14,2012 -20121118_NO@OAK,2,35,53,OAK,NO,2,5,76,(5:53) T.Bergstrom reported in as eligible. M.Reece right end to OAK 24 for no gain (T.McBride).,0,14,2012 -20121118_NO@OAK,2,35,15,OAK,NO,3,5,76,(5:15) (Shotgun) C.Palmer pass short left to M.Reece to NO 20 for 56 yards (M.Jenkins).,0,14,2012 -20121118_NO@OAK,2,34,24,OAK,NO,1,10,20,(4:24) C.Palmer pass incomplete deep left to D.Moore. PENALTY on NO-P.Robinson Defensive Pass Interference 19 yards enforced at NO 20 - No Play.,0,14,2012 -20121118_NO@OAK,2,34,19,OAK,NO,1,1,1,(4:19) C.Palmer pass short right to B.Myers for 1 yard TOUCHDOWN.,0,14,2012 -20121118_NO@OAK,2,34,19,OAK,NO,,,1,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,14,2012 -20121118_NO@OAK,2,34,19,OAK,NO,,,1,S.Janikowski kicks 73 yards from OAK 35 to NO -8. T.Cadet to NO 20 for 28 yards (B.Ross; O.Gaither). PENALTY on NO-T.McBride Offensive Holding 10 yards enforced at NO 20.,7,14,2012 -20121118_NO@OAK,2,34,4,NO,OAK,1,10,90,(4:04) E.Olsen reported in as eligible. M.Ingram left guard to NO 19 for 9 yards (R.McClain).,14,7,2012 -20121118_NO@OAK,2,33,25,NO,OAK,2,1,81,(3:25) (Shotgun) D.Brees pass short middle to M.Colston to NO 43 for 24 yards (M.Burris).,14,7,2012 -20121118_NO@OAK,2,32,44,NO,OAK,1,10,57,(2:44) P.Thomas left end pushed ob at NO 49 for 6 yards (R.Bartell; M.Mitchell).,14,7,2012 -20121118_NO@OAK,2,32,2,NO,OAK,2,4,51,(2:02) E.Olsen reported in as eligible. D.Brees pass incomplete deep middle to J.Morgan.,14,7,2012 -20121118_NO@OAK,2,31,55,NO,OAK,3,4,51,(1:55) (Shotgun) D.Brees pass deep right to M.Colston to OAK 35 for 16 yards (M.Giordano).,14,7,2012 -20121118_NO@OAK,2,31,40,NO,OAK,1,10,35,(1:40) D.Brees pass short middle to J.Graham to OAK 28 for 7 yards (J.Hanson). FUMBLES (J.Hanson) and recovers at OAK 28. J.Graham to OAK 28 for no gain (M.Mitchell).,14,7,2012 -20121118_NO@OAK,2,31,0,NO,OAK,2,3,28,(1:00) (Shotgun) D.Brees pass incomplete short middle [J.Hanson]. PENALTY on NO-D.Brees Intentional Grounding 10 yards enforced at OAK 28.,14,7,2012 -20121118_NO@OAK,2,30,57,NO,OAK,3,13,38,(:57) (Shotgun) D.Brees pass deep middle to L.Moore for 38 yards TOUCHDOWN [L.Houston].,14,7,2012 -20121118_NO@OAK,2,30,57,NO,OAK,,,38,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,7,2012 -20121118_NO@OAK,2,30,57,NO,OAK,,,38,T.Morstead kicks 58 yards from NO 35 to OAK 7. J.Stewart to OAK 19 for 12 yards (C.Roby; R.Humber).,21,7,2012 -20121118_NO@OAK,2,30,41,OAK,NO,1,10,81,(:41) C.Palmer pass short right to M.Reece to OAK 28 for 9 yards (R.Harper).,7,21,2012 -20121118_NO@OAK,2,30,17,OAK,NO,2,1,72,(:17) (No Huddle Shotgun) C.Palmer pass incomplete short left to J.Criner (E.Mack).,7,21,2012 -20121118_NO@OAK,2,30,14,OAK,NO,3,1,72,(:14) M.Reece left guard to OAK 35 for 7 yards (R.Harper).,7,21,2012 -20121118_NO@OAK,2,30,11,OAK,NO,1,10,65,(:11) (Shotgun) C.Palmer sacked at OAK 27 for -8 yards (W.Smith).,7,21,2012 -20121118_NO@OAK,3,30,0,OAK,NO,,,65,S.Janikowski kicks 67 yards from OAK 35 to NO -2. T.Cadet pushed ob at OAK 27 for 75 yards (J.Hanson).,7,21,2012 -20121118_NO@OAK,3,29,51,NO,OAK,1,10,27,(14:51) E.Olsen reported in as eligible. M.Ingram left end for 27 yards TOUCHDOWN. PENALTY on NO-M.Ingram Taunting 15 yards enforced between downs.,21,7,2012 -20121118_NO@OAK,3,29,51,NO,OAK,,,27,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,21,7,2012 -20121118_NO@OAK,3,29,51,NO,OAK,,,27,T.Morstead kicks 62 yards from NO 20 to OAK 18. J.Stewart to OAK 33 for 15 yards (R.Bush; C.Roby).,28,7,2012 -20121118_NO@OAK,3,29,37,OAK,NO,1,10,67,(14:37) T.Bergstrom reported in as eligible. M.Reece right tackle to OAK 37 for 4 yards (D.Hawthorne; J.Vilma).,7,28,2012 -20121118_NO@OAK,3,29,1,OAK,NO,2,6,63,(14:01) C.Palmer pass short right to D.Heyward-Bey to 50 for 13 yards (M.Jenkins).,7,28,2012 -20121118_NO@OAK,3,28,18,OAK,NO,1,10,50,(13:18) C.Palmer pass short left to B.Myers to NO 44 for 6 yards (C.Jordan).,7,28,2012 -20121118_NO@OAK,3,27,39,OAK,NO,2,4,44,(12:39) T.Jones right guard to NO 37 for 7 yards (M.Jenkins).,7,28,2012 -20121118_NO@OAK,3,27,0,OAK,NO,1,10,37,(12:00) C.Palmer sacked at NO 45 for -8 yards (J.Vilma).,7,28,2012 -20121118_NO@OAK,3,26,24,OAK,NO,2,18,45,(11:24) C.Palmer pass short right to J.Stewart to NO 22 for 23 yards (J.Greer; W.Smith).,7,28,2012 -20121118_NO@OAK,3,25,39,OAK,NO,1,10,22,(10:39) T.Bergstrom reported in as eligible. C.Palmer pass short right to R.Streater to NO 13 for 9 yards (J.Greer). FUMBLES (J.Greer) RECOVERED by NO-R.Harper at NO 10. R.Harper to OAK 33 for 57 yards (M.Reece). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. T.Bergstrom and T.Bergstrom reported in as eligible. C.Palmer pass incomplete short right to R.Streater.,7,28,2012 -20121118_NO@OAK,3,25,37,OAK,NO,2,10,22,(10:37) C.Palmer pass incomplete short middle to B.Myers (B.Bunkley).,7,28,2012 -20121118_NO@OAK,3,25,31,OAK,NO,3,10,22,(10:31) (Shotgun) C.Palmer pass incomplete short left to D.Moore (E.Mack).,7,28,2012 -20121118_NO@OAK,3,25,27,OAK,NO,4,10,22,(10:27) S.Janikowski 40 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,7,28,2012 -20121118_NO@OAK,3,25,27,OAK,NO,,,22,S.Janikowski kicks 70 yards from OAK 35 to NO -5. T.Cadet to NO 15 for 20 yards (M.Mitchell).,10,28,2012 -20121118_NO@OAK,3,25,17,NO,OAK,1,10,85,(10:17) D.Brees pass short right to J.Graham to NO 17 for 2 yards (R.McClain; M.Burris).,28,10,2012 -20121118_NO@OAK,3,24,39,NO,OAK,2,8,83,(9:39) D.Brees pass short left to J.Graham to NO 24 for 7 yards (M.Burris).,28,10,2012 -20121118_NO@OAK,3,24,4,NO,OAK,3,1,76,(9:04) E.Olsen reported in as eligible. M.Ingram up the middle to NO 24 for no gain (D.Bryant; M.Mitchell).,28,10,2012 -20121118_NO@OAK,3,23,18,NO,OAK,4,1,76,(8:18) T.Morstead punts 50 yards to OAK 26 Center-J.Drescher fair catch by P.Adams.,28,10,2012 -20121118_NO@OAK,3,23,11,OAK,NO,1,10,74,(8:11) D.Moore right end pushed ob at OAK 21 for -5 yards (R.Harper; J.Greer).,10,28,2012 -20121118_NO@OAK,3,22,27,OAK,NO,2,15,79,(7:27) C.Palmer sacked at OAK 9 for -12 yards (T.Johnson).,10,28,2012 -20121118_NO@OAK,3,21,52,OAK,NO,3,27,91,(6:52) (Shotgun) M.Reece up the middle to OAK 22 for 13 yards (M.Wilson).,10,28,2012 -20121118_NO@OAK,3,21,20,OAK,NO,4,14,78,(6:20) S.Lechler punts 36 yards to NO 42 Center-J.Condo out of bounds.,10,28,2012 -20121118_NO@OAK,3,21,12,NO,OAK,1,10,58,(6:12) E.Olsen reported in as eligible. M.Ingram left tackle to NO 46 for 4 yards (P.Wheeler; M.Mitchell).,28,10,2012 -20121118_NO@OAK,3,20,38,NO,OAK,2,6,54,(5:38) (Shotgun) D.Brees pass short right to T.Cadet to OAK 46 for 8 yards (P.Wheeler).,28,10,2012 -20121118_NO@OAK,3,20,34,NO,OAK,1,10,46,(5:34) M.Ingram left end pushed ob at OAK 40 for 6 yards (M.Mitchell). OAK-P.Wheeler was injured during the play. His return is Probable.,28,10,2012 -20121118_NO@OAK,3,19,42,NO,OAK,2,4,40,(4:42) C.Ivory up the middle to OAK 15 for 25 yards (M.Giordano).,28,10,2012 -20121118_NO@OAK,3,19,4,NO,OAK,1,10,15,(4:04) C.Ivory up the middle to OAK 15 for no gain (M.Shaughnessy).,28,10,2012 -20121118_NO@OAK,3,18,31,NO,OAK,2,10,15,(3:31) (Shotgun) D.Brees pass short left to L.Moore for 15 yards TOUCHDOWN.,28,10,2012 -20121118_NO@OAK,3,18,31,NO,OAK,,,15,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,28,10,2012 -20121118_NO@OAK,3,18,31,NO,OAK,,,15,T.Morstead kicks 73 yards from NO 35 to OAK -8. C.Francies Touchback.,35,10,2012 -20121118_NO@OAK,3,18,26,OAK,NO,1,10,80,(3:26) M.Reece right end to OAK 29 for 9 yards (R.Harper).,10,35,2012 -20121118_NO@OAK,3,17,48,OAK,NO,2,1,71,(2:48) M.Reece left end to OAK 38 for 9 yards (C.Lofton; E.Mack).,10,35,2012 -20121118_NO@OAK,3,17,8,OAK,NO,1,10,62,(2:08) (Shotgun) J.Stewart right tackle to OAK 42 for 4 yards (C.Lofton; C.Jordan).,10,35,2012 -20121118_NO@OAK,3,16,32,OAK,NO,2,6,58,(1:32) C.Palmer pass short left to D.Moore to NO 49 for 9 yards (M.Jenkins).,10,35,2012 -20121118_NO@OAK,3,15,52,OAK,NO,1,10,49,(:52) M.Reece right end pushed ob at NO 47 for 2 yards (M.Jenkins).,10,35,2012 -20121118_NO@OAK,3,15,14,OAK,NO,2,8,47,(:14) C.Palmer pass incomplete short right to D.Moore [A.Hicks].,10,35,2012 -20121118_NO@OAK,3,15,10,OAK,NO,3,8,47,(:10) (Shotgun) C.Palmer pass short left to J.Criner to NO 40 for 7 yards (M.Wilson).,10,35,2012 -20121118_NO@OAK,4,15,0,OAK,NO,4,1,40,(15:00) M.Reece up the middle to NO 40 for no gain (Team).,10,35,2012 -20121118_NO@OAK,4,14,54,NO,OAK,1,10,60,(14:54) E.Olsen reported in as eligible. D.Brees pass short middle to M.Ingram to NO 41 for 1 yard (A.Carter) [D.Bryant].,35,10,2012 -20121118_NO@OAK,4,14,17,NO,OAK,2,9,59,(14:17) M.Ingram up the middle to NO 44 for 3 yards (R.McClain; D.Bryant).,35,10,2012 -20121118_NO@OAK,4,13,38,NO,OAK,3,6,56,(13:38) (Shotgun) D.Brees pass short middle to M.Colston to OAK 41 for 15 yards (P.Wheeler).,35,10,2012 -20121118_NO@OAK,4,13,4,NO,OAK,1,10,41,(13:04) E.Olsen reported in as eligible. C.Ivory right guard to OAK 32 for 9 yards (R.McClain; P.Wheeler).,35,10,2012 -20121118_NO@OAK,4,12,31,NO,OAK,2,1,32,(12:31) D.Brees pass short right to J.Graham to OAK 30 for 2 yards (M.Mitchell).,35,10,2012 -20121118_NO@OAK,4,11,57,NO,OAK,1,10,30,(11:57) E.Olsen reported in as eligible. M.Ingram right guard to OAK 25 for 5 yards (M.Mitchell).,35,10,2012 -20121118_NO@OAK,4,11,20,NO,OAK,2,5,25,(11:20) M.Ingram up the middle to OAK 29 for -4 yards (M.Huff).,35,10,2012 -20121118_NO@OAK,4,10,37,NO,OAK,3,9,29,(10:37) (Shotgun) D.Brees pass incomplete short middle to P.Thomas (D.Bryant).,35,10,2012 -20121118_NO@OAK,4,10,33,NO,OAK,4,9,29,(10:33) G.Hartley 47 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,35,10,2012 -20121118_NO@OAK,4,10,33,NO,OAK,,,29,T.Morstead kicks 68 yards from NO 35 to OAK -3. C.Francies to OAK 20 for 23 yards (I.Abdul-Quddus; J.Casillas).,38,10,2012 -20121118_NO@OAK,4,10,19,OAK,NO,1,10,80,(10:19) (Shotgun) C.Palmer pass short middle to D.Heyward-Bey to OAK 38 for 18 yards (W.Smith).,10,38,2012 -20121118_NO@OAK,4,9,47,OAK,NO,1,10,62,(9:47) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to OAK 45 for 7 yards (R.Harper).,10,38,2012 -20121118_NO@OAK,4,9,14,OAK,NO,2,3,55,(9:14) M.Reece left end to NO 49 for 6 yards (M.Wilson).,10,38,2012 -20121118_NO@OAK,4,8,37,OAK,NO,1,10,49,(8:37) (No Huddle) C.Palmer pass incomplete short middle to M.Reece.,10,38,2012 -20121118_NO@OAK,4,8,32,OAK,NO,2,10,49,(8:32) (No Huddle Shotgun) C.Palmer pass incomplete to B.Myers.,10,38,2012 -20121118_NO@OAK,4,8,28,OAK,NO,3,10,49,(8:28) (No Huddle Shotgun) C.Palmer pass incomplete deep right to J.Criner.,10,38,2012 -20121118_NO@OAK,4,8,23,OAK,NO,4,10,49,(8:23) (No Huddle Shotgun) PENALTY on NO-M.Wilson Neutral Zone Infraction 5 yards enforced at NO 49 - No Play.,10,38,2012 -20121118_NO@OAK,4,8,23,OAK,NO,4,5,44,(8:23) (No Huddle Shotgun) C.Palmer pass incomplete deep right to D.Moore.,10,38,2012 -20121118_NO@OAK,4,8,18,NO,OAK,1,10,56,(8:18) C.Ivory right tackle to NO 46 for 2 yards (J.Crawford). PENALTY on NO-B.De La Puente Offensive Holding 10 yards enforced at NO 44 - No Play.,38,10,2012 -20121118_NO@OAK,4,7,53,NO,OAK,1,20,66,(7:53) (Shotgun) D.Brees pass short middle to P.Thomas to OAK 47 for 19 yards (M.Burris; M.Giordano).,38,10,2012 -20121118_NO@OAK,4,7,4,NO,OAK,2,1,47,(7:04) E.Olsen reported in as eligible. M.Ingram left tackle to OAK 47 for no gain (M.Mitchell).,38,10,2012 -20121118_NO@OAK,4,6,20,NO,OAK,3,1,47,(6:20) (Shotgun) D.Brees pass incomplete short right to M.Colston.,38,10,2012 -20121118_NO@OAK,4,6,14,NO,OAK,4,1,47,(6:14) T.Morstead punts 40 yards to OAK 7 Center-J.Drescher downed by NO-C.Roby.,38,10,2012 -20121118_NO@OAK,4,6,3,OAK,NO,1,10,93,(6:03) (Shotgun) C.Palmer pass short right intended for R.Streater INTERCEPTED by E.Mack (E.Mack) at OAK 10. E.Mack to OAK 1 for 9 yards (R.Streater). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) C.Palmer pass incomplete short right to R.Streater (E.Mack). NO-E.Mack was injured during the play. His return is Doubtful.,10,38,2012 -20121118_NO@OAK,4,6,0,OAK,NO,2,10,93,(6:00) (No Huddle Shotgun) C.Palmer pass short middle to D.Heyward-Bey to OAK 29 for 22 yards (I.Abdul-Quddus).,10,38,2012 -20121118_NO@OAK,4,5,28,OAK,NO,1,10,71,(5:28) (No Huddle Shotgun) C.Palmer pass short middle to D.Heyward-Bey to OAK 45 for 16 yards (J.Patrick).,10,38,2012 -20121118_NO@OAK,4,5,0,OAK,NO,1,10,55,(5:00) (No Huddle Shotgun) C.Palmer pass deep middle to B.Myers to NO 28 for 27 yards (I.Abdul-Quddus).,10,38,2012 -20121118_NO@OAK,4,4,21,OAK,NO,1,10,28,(4:21) (No Huddle Shotgun) C.Palmer pass incomplete short middle to R.Streater (J.Patrick). PENALTY on NO-J.Patrick Defensive Holding 5 yards enforced at NO 28 - No Play.,10,38,2012 -20121118_NO@OAK,4,4,17,OAK,NO,1,10,23,(4:17) (No Huddle Shotgun) C.Palmer pass short right to R.Streater pushed ob at NO 3 for 20 yards (J.Patrick).,10,38,2012 -20121118_NO@OAK,4,4,11,OAK,NO,1,3,3,(4:11) (No Huddle Shotgun) C.Palmer pass incomplete short left to J.Criner (P.Robinson).,10,38,2012 -20121118_NO@OAK,4,4,6,OAK,NO,2,3,3,(4:06) (Shotgun) C.Palmer pass short left to J.Criner for 3 yards TOUCHDOWN.,10,38,2012 -20121118_NO@OAK,4,4,6,OAK,NO,,,3,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,10,38,2012 -20121118_NO@OAK,4,4,6,OAK,NO,,,3,S.Janikowski kicks onside 15 yards from OAK 35 to 50. J.Graham (didn't try to advance) to 50 for no gain (R.Streater).,17,38,2012 -20121118_NO@OAK,4,4,0,NO,OAK,1,10,50,(4:00) E.Olsen reported in as eligible. C.Ivory left tackle to 50 for no gain (R.McClain; P.Wheeler).,38,17,2012 -20121118_NO@OAK,4,3,50,NO,OAK,2,10,50,(3:50) C.Ivory up the middle to 50 for no gain (D.Bryant).,38,17,2012 -20121118_NO@OAK,4,3,45,NO,OAK,3,10,50,(3:45) C.Daniel pass short right to J.Collins to OAK 40 for 10 yards (R.McClain; D.Bryant).,38,17,2012 -20121118_NO@OAK,4,2,59,NO,OAK,1,10,40,(2:59) C.Ivory right guard to OAK 36 for 4 yards (D.Bryant).,38,17,2012 -20121118_NO@OAK,4,2,13,NO,OAK,2,6,36,(2:13) M.Ingram right guard to OAK 36 for no gain (T.Kelly; M.Burris).,38,17,2012 -20121118_NO@OAK,4,2,0,NO,OAK,3,6,36,(2:00) E.Olsen reported in as eligible. C.Daniel right end to OAK 17 for 19 yards (J.Crawford).,38,17,2012 -20121118_NO@OAK,4,1,12,NO,OAK,1,10,17,(1:12) C.Daniel kneels to OAK 18 for -1 yards.,38,17,2012 -20121118_NO@OAK,4,0,30,NO,OAK,2,11,18,(:30) C.Daniel kneels to OAK 17 for 1 yard.,38,17,2012 -20121118_NO@OAK,4,0,30,NO,OAK,,,18,                      ,38,17,2012 -20121118_IND@NE,1,0,0,NE,IND,,,18,S.Gostkowski kicks 74 yards from NE 35 to IND -9. T.Zbikowski Touchback.,0,0,2012 -20121118_IND@NE,1,60,0,IND,NE,1,10,80,(15:00) A.Luck pass short right to R.Wayne to IND 27 for 7 yards (A.Talib; D.Hightower).,0,0,2012 -20121118_IND@NE,1,59,23,IND,NE,2,3,73,(14:23) A.Luck pass short right to D.Allen to IND 29 for 2 yards (D.McCourty; J.Mayo).,0,0,2012 -20121118_IND@NE,1,58,40,IND,NE,3,1,71,(13:40) R.Hughes right guard to IND 34 for 5 yards (R.Ninkovich; B.Spikes).,0,0,2012 -20121118_IND@NE,1,58,1,IND,NE,1,10,66,(13:01) V.Ballard left tackle to NE 46 for 20 yards (D.McCourty).,0,0,2012 -20121118_IND@NE,1,57,20,IND,NE,1,10,46,(12:20) V.Ballard left tackle to NE 46 for no gain (J.Mayo; B.Spikes).,0,0,2012 -20121118_IND@NE,1,56,43,IND,NE,2,10,46,(11:43) A.Luck pass incomplete deep middle to D.Avery. PENALTY on NE-K.Arrington Defensive Pass Interference 40 yards enforced at NE 46 - No Play.,0,0,2012 -20121118_IND@NE,1,56,37,IND,NE,1,6,6,(11:37) V.Ballard left end to NE 1 for 5 yards (D.Hightower; B.Spikes).,0,0,2012 -20121118_IND@NE,1,55,52,IND,NE,2,1,1,(10:52) A.Shipley reported in as eligible. D.Carter left guard for 1 yard TOUCHDOWN.,0,0,2012 -20121118_IND@NE,1,55,52,IND,NE,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121118_IND@NE,1,55,52,IND,NE,,,1,P.McAfee kicks 64 yards from IND 35 to NE 1. D.McCourty to NE 19 for 18 yards (L.Brazill).,7,0,2012 -20121118_IND@NE,1,55,44,NE,IND,1,10,81,(10:44) S.Ridley up the middle to NE 23 for 4 yards (R.Mathis; C.Redding).,0,7,2012 -20121118_IND@NE,1,55,3,NE,IND,2,6,77,(10:03) T.Brady pass incomplete deep right to W.Welker.,0,7,2012 -20121118_IND@NE,1,55,0,NE,IND,3,6,77,(10:00) (No Huddle Shotgun) T.Brady pass short right to J.Edelman to NE 41 for 18 yards (J.Freeman; J.Gordy).,0,7,2012 -20121118_IND@NE,1,54,25,NE,IND,1,10,59,(9:25) T.Brady pass deep right to R.Gronkowski to IND 23 for 36 yards (T.Zbikowski; A.Bethea).,0,7,2012 -20121118_IND@NE,1,53,57,NE,IND,1,10,23,(8:57) (No Huddle) S.Ridley left guard to IND 19 for 4 yards (A.Johnson).,0,7,2012 -20121118_IND@NE,1,53,17,NE,IND,2,6,19,(8:17) (Shotgun) T.Brady pass short left to R.Gronkowski pushed ob at IND 3 for 16 yards (T.Zbikowski). Penalty on IND-C.Vaughn Defensive Holding declined.,0,7,2012 -20121118_IND@NE,1,52,53,NE,IND,1,3,3,(7:53) S.Ridley left end to IND 4 for -1 yards (J.Freeman; M.Fokou).,0,7,2012 -20121118_IND@NE,1,52,10,NE,IND,2,4,4,(7:10) (Shotgun) T.Brady pass short left to R.Gronkowski for 4 yards TOUCHDOWN. NE 12-Brady 42nd straight regular season game with a TD pass 3rd longest all-time. NE 87-Gronkowski 36th career TD reception ties John Jefferson for 3rd-most rec TD in 1st 3 NFL seasons all-time.,0,7,2012 -20121118_IND@NE,1,52,10,NE,IND,,,4,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,7,2012 -20121118_IND@NE,1,52,10,NE,IND,,,4,S.Gostkowski kicks 64 yards from NE 35 to IND 1. T.Zbikowski to IND 16 for 15 yards (D.Martin; M.Slater).,7,7,2012 -20121118_IND@NE,1,52,3,IND,NE,1,10,84,(7:03) A.Luck pass incomplete deep middle to D.Allen.,7,7,2012 -20121118_IND@NE,1,51,56,IND,NE,2,10,84,(6:56) (Shotgun) A.Luck pass short left to T.Hilton to IND 29 for 13 yards (D.McCourty).,7,7,2012 -20121118_IND@NE,1,51,15,IND,NE,1,10,71,(6:15) J.Linkenbach reported in as eligible. V.Ballard left guard to IND 38 for 9 yards (S.Gregory).,7,7,2012 -20121118_IND@NE,1,50,34,IND,NE,2,1,62,(5:34) V.Ballard up the middle to IND 42 for 4 yards (V.Wilfork). NE-C.Jones was injured during the play.,7,7,2012 -20121118_IND@NE,1,49,52,IND,NE,1,10,58,(4:52) (Shotgun) A.Luck pass short middle to D.Avery to IND 48 for 6 yards (A.Dennard).,7,7,2012 -20121118_IND@NE,1,49,15,IND,NE,2,4,52,(4:15) V.Ballard left tackle to IND 45 for -3 yards (R.Ninkovich; B.Spikes).,7,7,2012 -20121118_IND@NE,1,48,32,IND,NE,3,7,55,(3:32) (Shotgun) A.Luck pass deep right to L.Brazill pushed ob at NE 30 for 25 yards (A.Talib). Penalty on NE-K.Arrington Defensive Holding declined.,7,7,2012 -20121118_IND@NE,1,48,5,IND,NE,1,10,30,(3:05) V.Ballard left end to NE 29 for 1 yard (R.Ninkovich; J.Mayo).,7,7,2012 -20121118_IND@NE,1,47,25,IND,NE,2,9,29,(2:25) V.Ballard left end to NE 14 for 15 yards (J.Mayo; D.McCourty).,7,7,2012 -20121118_IND@NE,1,46,48,IND,NE,1,10,14,(1:48) A.Luck pass short middle to T.Hilton for 14 yards TOUCHDOWN.,7,7,2012 -20121118_IND@NE,1,46,48,IND,NE,,,14,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,7,2012 -20121118_IND@NE,1,46,48,IND,NE,,,14,P.McAfee kicks 63 yards from IND 35 to NE 2. D.McCourty to NE 25 for 23 yards (S.Brown).,14,7,2012 -20121118_IND@NE,1,46,37,NE,IND,1,10,75,(1:37) T.Brady pass incomplete deep right to B.Lloyd.,7,14,2012 -20121118_IND@NE,1,46,32,NE,IND,2,10,75,(1:32) T.Brady pass short right to B.Lloyd to NE 33 for 8 yards (J.Gordy) [D.Freeney].,7,14,2012 -20121118_IND@NE,1,46,3,NE,IND,3,2,67,(1:03) (Shotgun) T.Brady pass short right to W.Welker to NE 45 for 12 yards (D.Butler; A.Bethea). NE 83-Welker 104th consecutive game with a reception.,7,14,2012 -20121118_IND@NE,1,45,29,NE,IND,1,10,55,(:29) (Shotgun) T.Brady pass incomplete short right to J.Edelman.,7,14,2012 -20121118_IND@NE,1,45,23,NE,IND,2,10,55,(:23) (Shotgun) T.Brady pass short left to J.Edelman to IND 39 for 16 yards (C.Vaughn; T.Zbikowski).,7,14,2012 -20121118_IND@NE,2,45,0,NE,IND,1,10,39,(15:00) (Shotgun) T.Brady pass short left to S.Vereen to IND 35 for 4 yards (F.Moala). PENALTY on NE-N.Solder Offensive Holding 10 yards enforced at IND 39 - No Play.,7,14,2012 -20121118_IND@NE,2,44,43,NE,IND,1,20,49,(14:43) S.Vereen left guard to IND 41 for 8 yards (T.Zbikowski).,7,14,2012 -20121118_IND@NE,2,44,5,NE,IND,2,12,41,(14:05) (Shotgun) T.Brady pass short middle to W.Welker to IND 33 for 8 yards (J.Freeman).,7,14,2012 -20121118_IND@NE,2,43,29,NE,IND,3,4,33,(13:29) (Shotgun) T.Brady pass short right to B.Lloyd pushed ob at IND 23 for 10 yards (J.Gordy).,7,14,2012 -20121118_IND@NE,2,43,17,NE,IND,1,10,23,(13:17) T.Brady pass short right to J.Edelman to IND 18 for 5 yards (J.Freeman; J.Hickman).,7,14,2012 -20121118_IND@NE,2,42,39,NE,IND,2,5,18,(12:39) T.Brady pass incomplete short middle to S.Vereen.,7,14,2012 -20121118_IND@NE,2,42,34,NE,IND,3,5,18,(12:34) (Shotgun) T.Brady pass incomplete short middle to W.Welker. Penalty on NE-N.Solder Offensive Holding declined.,7,14,2012 -20121118_IND@NE,2,42,30,NE,IND,4,5,18,(12:30) S.Gostkowski 36 yard field goal is No Good Wide Right Center-D.Aiken Holder-Z.Mesko.,7,14,2012 -20121118_IND@NE,2,42,26,IND,NE,1,10,74,(12:26) A.Luck pass incomplete short right to D.Allen.,14,7,2012 -20121118_IND@NE,2,42,22,IND,NE,2,10,74,(12:22) (Shotgun) A.Luck pass incomplete short left to R.Wayne (D.Hightower).,14,7,2012 -20121118_IND@NE,2,42,18,IND,NE,3,10,74,(12:18) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (V.Wilfork).,14,7,2012 -20121118_IND@NE,2,42,14,IND,NE,4,10,74,(12:14) (Punt formation) PENALTY on IND-S.Brown False Start 5 yards enforced at IND 26 - No Play.,14,7,2012 -20121118_IND@NE,2,42,14,IND,NE,4,15,79,(12:14) P.McAfee punts 47 yards to NE 32 Center-M.Overton. J.Edelman for 68 yards TOUCHDOWN.,14,7,2012 -20121118_IND@NE,2,42,14,NE,IND,,,79,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,14,2012 -20121118_IND@NE,2,42,14,NE,IND,,,79,S.Gostkowski kicks 59 yards from NE 35 to IND 6. T.Zbikowski to IND 22 for 16 yards (N.Ebner; K.Arrington).,14,14,2012 -20121118_IND@NE,2,41,55,IND,NE,1,10,78,(11:55) D.Brown left end to IND 31 for 9 yards (S.Gregory).,14,14,2012 -20121118_IND@NE,2,41,17,IND,NE,2,1,69,(11:17) A.Luck pass deep middle intended for R.Wayne INTERCEPTED by A.Talib at NE 41. A.Talib for 59 yards TOUCHDOWN.,14,14,2012 -20121118_IND@NE,2,41,17,NE,IND,,,69,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,14,2012 -20121118_IND@NE,2,41,17,NE,IND,,,69,S.Gostkowski kicks 60 yards from NE 35 to IND 5. T.Hilton to IND 19 for 14 yards (N.Koutouvides).,21,14,2012 -20121118_IND@NE,2,40,55,IND,NE,1,10,81,(10:55) V.Ballard left guard to IND 16 for -3 yards (J.Mayo; R.Ninkovich).,14,21,2012 -20121118_IND@NE,2,40,16,IND,NE,2,13,84,(10:16) A.Luck pass short right to R.Wayne to IND 27 for 11 yards (B.Spikes).,14,21,2012 -20121118_IND@NE,2,39,36,IND,NE,3,2,73,(9:36) (Shotgun) A.Luck pass short right to R.Wayne to IND 33 for 6 yards (A.Talib). IND 87-Wayne now has 58 straight games with 3 or more receptions tying NFL record (Cris Carter).,14,21,2012 -20121118_IND@NE,2,38,54,IND,NE,1,10,67,(8:54) A.Luck pass incomplete short left to R.Wayne [R.Ninkovich].,14,21,2012 -20121118_IND@NE,2,38,47,IND,NE,2,10,67,(8:47) V.Ballard left tackle to IND 38 for 5 yards (J.Mayo; B.Deaderick).,14,21,2012 -20121118_IND@NE,2,38,4,IND,NE,3,5,62,(8:04) (Shotgun) A.Luck pass short middle to L.Brazill pushed ob at NE 41 for 21 yards (A.Dennard).,14,21,2012 -20121118_IND@NE,2,37,34,IND,NE,1,10,41,(7:34) (Shotgun) A.Luck pass short right to D.Avery to NE 32 for 9 yards (M.Cole).,14,21,2012 -20121118_IND@NE,2,36,52,IND,NE,2,1,32,(6:52) J.Linkenbach reported in as eligible. V.Ballard left tackle to NE 29 for 3 yards (B.Deaderick). FUMBLES (B.Deaderick) and recovers at NE 29. V.Ballard to NE 29 for no gain (K.Arrington).,14,21,2012 -20121118_IND@NE,2,36,8,IND,NE,1,10,29,(6:08) A.Luck pass incomplete deep right to D.Allen.,14,21,2012 -20121118_IND@NE,2,36,1,IND,NE,2,10,29,(6:01) (Shotgun) A.Luck pass incomplete deep right to L.Brazill (D.McCourty).,14,21,2012 -20121118_IND@NE,2,35,56,IND,NE,3,10,29,(5:56) (Shotgun) A.Luck pass incomplete deep right to R.Wayne [J.Cunningham].,14,21,2012 -20121118_IND@NE,2,35,51,IND,NE,4,10,29,(5:51) A.Vinatieri 47 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,14,21,2012 -20121118_IND@NE,2,35,51,IND,NE,,,29,P.McAfee kicks 69 yards from IND 35 to NE -4. D.McCourty to NE 25 for 29 yards (S.Brown; M.Fokou).,17,21,2012 -20121118_IND@NE,2,35,40,NE,IND,1,10,75,(5:40) (Shotgun) T.Brady pass short middle to R.Gronkowski to NE 40 for 15 yards (J.Freeman).,21,17,2012 -20121118_IND@NE,2,35,11,NE,IND,1,10,60,(5:11) S.Ridley right guard to NE 40 for no gain (J.Freeman; P.Angerer).,21,17,2012 -20121118_IND@NE,2,34,34,NE,IND,2,10,60,(4:34) T.Brady pass short left to W.Welker to IND 42 for 18 yards (A.Bethea; C.Vaughn).,21,17,2012 -20121118_IND@NE,2,34,10,NE,IND,1,10,42,(4:10) (No Huddle) S.Ridley right guard to IND 44 for -2 yards (A.Johnson; F.Moala).,21,17,2012 -20121118_IND@NE,2,33,31,NE,IND,2,12,44,(3:31) T.Brady pass short middle to B.Lloyd to IND 29 for 15 yards (A.Bethea).,21,17,2012 -20121118_IND@NE,2,33,6,NE,IND,1,10,29,(3:06) (No Huddle) S.Vereen up the middle to IND 16 for 13 yards (A.Bethea).,21,17,2012 -20121118_IND@NE,2,32,41,NE,IND,1,10,16,(2:41) (No Huddle) S.Vereen right guard to IND 13 for 3 yards (J.Hughes).,21,17,2012 -20121118_IND@NE,2,32,5,NE,IND,2,7,13,(2:05) (Shotgun) T.Brady pass incomplete short right to S.Vereen (J.Hughes).,21,17,2012 -20121118_IND@NE,2,32,2,NE,IND,3,7,13,(2:02) (Shotgun) T.Brady pass incomplete short right to J.Edelman.,21,17,2012 -20121118_IND@NE,2,31,58,NE,IND,4,7,13,(1:58) S.Gostkowski 31 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,21,17,2012 -20121118_IND@NE,2,31,58,NE,IND,,,13,S.Gostkowski kicks 61 yards from NE 35 to IND 4. T.Hilton to IND 14 for 10 yards (J.Edelman). FUMBLES (J.Edelman) recovered by IND-N.Palmer at IND 10. N.Palmer to IND 10 for no gain (N.Ebner).,24,17,2012 -20121118_IND@NE,2,31,47,IND,NE,1,10,90,(1:47) (Shotgun) A.Luck pass incomplete short right to D.Brown. PENALTY on NE-J.Mayo Illegal Contact 5 yards enforced at IND 10 - No Play.,17,24,2012 -20121118_IND@NE,2,31,43,IND,NE,1,10,85,(1:43) (Shotgun) A.Luck pass incomplete deep left to D.Avery (A.Dennard).,17,24,2012 -20121118_IND@NE,2,31,38,IND,NE,2,10,85,(1:38) (Shotgun) A.Luck pass short left to D.Brown to IND 22 for 7 yards (J.Mayo).,17,24,2012 -20121118_IND@NE,2,31,30,IND,NE,3,3,78,(1:30) (Shotgun) A.Luck pass deep middle to D.Avery to IND 41 for 19 yards (S.Gregory; J.Mayo). IND-D.Avery was injured during the play.,17,24,2012 -20121118_IND@NE,2,31,23,IND,NE,1,10,59,(1:23) (Shotgun) A.Luck pass short left to D.Brown to IND 40 for -1 yards (R.Ninkovich) [B.Spikes].,17,24,2012 -20121118_IND@NE,2,30,59,IND,NE,2,11,60,(:59) (No Huddle Shotgun) A.Luck pass short middle to D.Allen to NE 44 for 16 yards (J.Mayo; B.Spikes).,17,24,2012 -20121118_IND@NE,2,30,37,IND,NE,1,10,44,(:37) (No Huddle Shotgun) A.Luck pass incomplete short middle to R.Wayne.,17,24,2012 -20121118_IND@NE,2,30,32,IND,NE,2,10,44,(:32) (Shotgun) A.Luck pass short left to R.Wayne to NE 40 for 4 yards (M.Cole).,17,24,2012 -20121118_IND@NE,2,30,9,IND,NE,3,6,40,(:09) (No Huddle Shotgun) A.Luck pass incomplete deep right to N.Palmer.,17,24,2012 -20121118_IND@NE,2,30,3,IND,NE,4,6,40,(:03) A.Vinatieri 58 yard field goal is No Good Wide Left Center-M.Overton Holder-P.McAfee.,17,24,2012 -20121118_IND@NE,3,30,0,IND,NE,,,40,P.McAfee kicks 65 yards from IND 35 to NE 0. D.McCourty pushed ob at NE 24 for 24 yards (J.Gordy).,17,24,2012 -20121118_IND@NE,3,29,53,NE,IND,1,10,76,(14:53) S.Ridley right guard to NE 23 for -1 yards (C.Redding).,24,17,2012 -20121118_IND@NE,3,29,19,NE,IND,2,11,77,(14:19) T.Brady pass incomplete deep right to B.Lloyd.,24,17,2012 -20121118_IND@NE,3,29,13,NE,IND,3,11,77,(14:13) (Shotgun) T.Brady pass short right to J.Edelman to NE 40 for 17 yards (J.Freeman; R.Mathis).,24,17,2012 -20121118_IND@NE,3,28,30,NE,IND,1,10,60,(13:30) (Shotgun) T.Brady pass incomplete short right to W.Welker.,24,17,2012 -20121118_IND@NE,3,28,27,NE,IND,2,10,60,(13:27) T.Brady pass short left to W.Welker pushed ob at IND 49 for 11 yards (D.Butler).,24,17,2012 -20121118_IND@NE,3,27,59,NE,IND,1,10,49,(12:59) S.Ridley left tackle to IND 38 for 11 yards (C.Vaughn; A.Bethea).,24,17,2012 -20121118_IND@NE,3,27,18,NE,IND,1,10,38,(12:18) (Shotgun) T.Brady pass short right to R.Gronkowski pushed ob at IND 7 for 31 yards (J.Freeman). NE 87-Gronkowski 9th career 100-yard game.,24,17,2012 -20121118_IND@NE,3,27,2,NE,IND,1,7,7,(12:02) (No Huddle) T.Brady pass short right to W.Welker to IND 3 for 4 yards (D.Butler). FUMBLES (D.Butler) ball out of bounds at IND 3.,24,17,2012 -20121118_IND@NE,3,26,51,NE,IND,2,3,3,(11:51) (No Huddle) S.Ridley left guard to IND 2 for 1 yard (A.Johnson; J.Freeman).,24,17,2012 -20121118_IND@NE,3,26,10,NE,IND,3,2,2,(11:10) (Shotgun) T.Brady pass short left to J.Edelman for 2 yards TOUCHDOWN.,24,17,2012 -20121118_IND@NE,3,26,10,NE,IND,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,24,17,2012 -20121118_IND@NE,3,26,10,NE,IND,,,2,S.Gostkowski kicks 65 yards from NE 35 to IND 0. T.Hilton to IND 20 for 20 yards (M.Slater; N.Koutouvides).,31,17,2012 -20121118_IND@NE,3,26,2,IND,NE,1,10,80,(11:02) J.Linkenbach reported in as eligible. V.Ballard left end to IND 18 for -2 yards (J.Mayo; B.Spikes).,17,31,2012 -20121118_IND@NE,3,25,22,IND,NE,2,12,82,(10:22) (Shotgun) A.Luck pass incomplete short middle to D.Allen (S.Gregory).,17,31,2012 -20121118_IND@NE,3,25,17,IND,NE,3,12,82,(10:17) (Shotgun) A.Luck pass deep left to T.Hilton to IND 34 for 16 yards (A.Dennard) [R.Ninkovich].,17,31,2012 -20121118_IND@NE,3,24,31,IND,NE,1,10,66,(9:31) J.Linkenbach reported in as eligible. A.Luck pass deep middle to R.Wayne to NE 45 for 21 yards (D.McCourty).,17,31,2012 -20121118_IND@NE,3,23,47,IND,NE,1,10,45,(8:47) A.Luck pass short left to T.Hilton to NE 42 for 3 yards (R.Ninkovich).,17,31,2012 -20121118_IND@NE,3,23,9,IND,NE,2,7,42,(8:09) V.Ballard left tackle to NE 39 for 3 yards (V.Wilfork; K.Arrington).,17,31,2012 -20121118_IND@NE,3,22,25,IND,NE,3,4,39,(7:25) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (V.Wilfork).,17,31,2012 -20121118_IND@NE,3,22,20,IND,NE,4,4,39,(7:20) P.McAfee punts 35 yards to NE 4 Center-M.Overton downed by IND-J.Lefeged.,17,31,2012 -20121118_IND@NE,3,22,9,NE,IND,1,10,96,(7:09) T.Brady pass short right to B.Lloyd to NE 16 for 12 yards (J.Gordy).,31,17,2012 -20121118_IND@NE,3,21,41,NE,IND,1,10,84,(6:41) S.Ridley left tackle to NE 19 for 3 yards (P.Angerer).,31,17,2012 -20121118_IND@NE,3,20,57,NE,IND,2,7,81,(5:57) S.Ridley up the middle to NE 20 for 1 yard (C.Redding).,31,17,2012 -20121118_IND@NE,3,20,13,NE,IND,3,6,80,(5:13) (Shotgun) T.Brady pass incomplete short right to W.Welker [R.Mathis].,31,17,2012 -20121118_IND@NE,3,20,8,NE,IND,4,6,80,(5:08) Z.Mesko punts 61 yards to IND 19 Center-D.Aiken. T.Hilton pushed ob at IND 26 for 7 yards (N.Ebner). IND 13-Hilton bobbled ball into air and caught it during return.,31,17,2012 -20121118_IND@NE,3,19,53,IND,NE,1,10,74,(4:53) D.Brown up the middle to IND 31 for 5 yards (K.Love; J.Cunningham).,17,31,2012 -20121118_IND@NE,3,19,18,IND,NE,2,5,69,(4:18) (No Huddle) D.Brown left tackle to IND 29 for -2 yards (R.Ninkovich).,17,31,2012 -20121118_IND@NE,3,18,37,IND,NE,3,7,71,(3:37) (Shotgun) A.Luck sacked at IND 24 for -5 yards (R.Ninkovich). FUMBLES (R.Ninkovich) RECOVERED by NE-R.Ninkovich at IND 24. R.Ninkovich to IND 24 for no gain (J.Reitz).,17,31,2012 -20121118_IND@NE,3,18,28,NE,IND,1,10,24,(3:28) T.Brady pass deep left to R.Gronkowski for 24 yards TOUCHDOWN. NE 87-Gronkowski 10th TD reception of season 1st TE in NFL history to have 3 consecutive 10+ TD reception seasons.,31,17,2012 -20121118_IND@NE,3,18,28,NE,IND,,,24,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,31,17,2012 -20121118_IND@NE,3,18,28,NE,IND,,,24,S.Gostkowski kicks 72 yards from NE 35 to IND -7. T.Zbikowski Touchback.,38,17,2012 -20121118_IND@NE,3,18,22,IND,NE,1,10,80,(3:22) A.Luck pass incomplete short middle to T.Hilton.,17,38,2012 -20121118_IND@NE,3,18,18,IND,NE,2,10,80,(3:18) A.Luck pass incomplete deep middle to T.Hilton. PENALTY on NE-J.Mayo Roughing the Passer 15 yards enforced at IND 20 - No Play.,17,38,2012 -20121118_IND@NE,3,18,13,IND,NE,1,10,65,(3:13) A.Luck scrambles left guard to IND 39 for 4 yards (J.Cunningham).,17,38,2012 -20121118_IND@NE,3,17,33,IND,NE,2,6,61,(2:33) V.Ballard left guard to IND 35 for -4 yards (T.Scott; B.Spikes).,17,38,2012 -20121118_IND@NE,3,16,50,IND,NE,3,10,65,(1:50) (Shotgun) A.Luck pass short right to R.Wayne to IND 47 for 12 yards (M.Cole).,17,38,2012 -20121118_IND@NE,3,16,8,IND,NE,1,10,53,(1:08) A.Luck pass short right to D.Allen to NE 34 for 19 yards (A.Talib; B.Spikes).,17,38,2012 -20121118_IND@NE,3,15,24,IND,NE,1,10,34,(:24) A.Luck pass incomplete deep right to R.Wayne [D.Hightower].,17,38,2012 -20121118_IND@NE,3,15,18,IND,NE,2,10,34,(:18) (Shotgun) A.Luck pass short right to T.Hilton to NE 23 for 11 yards (A.Talib).,17,38,2012 -20121118_IND@NE,4,15,0,IND,NE,1,10,23,(15:00) A.Luck pass short left intended for R.Wayne INTERCEPTED by A.Dennard at NE 13. A.Dennard for 87 yards TOUCHDOWN. Last time E had 2 INT return TD was 1/6/02 at Carolina (Otis Smith & Ty Law).,17,38,2012 -20121118_IND@NE,4,15,0,NE,IND,,,23,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,38,17,2012 -20121118_IND@NE,4,15,0,NE,IND,,,23,S.Gostkowski kicks 57 yards from NE 35 to IND 8. T.Hilton to IND 26 for 18 yards (M.Rivera; K.Arrington).,45,17,2012 -20121118_IND@NE,4,14,43,IND,NE,1,10,74,(14:43) (Shotgun) A.Luck pass short right to D.Allen to IND 34 for 8 yards (A.Talib).,17,45,2012 -20121118_IND@NE,4,14,2,IND,NE,2,2,66,(14:02) D.Brown right end to IND 39 for 5 yards (A.Talib).,17,45,2012 -20121118_IND@NE,4,13,20,IND,NE,1,10,61,(13:20) (Shotgun) A.Luck pass incomplete deep middle to L.Brazill.,17,45,2012 -20121118_IND@NE,4,13,15,IND,NE,2,10,61,(13:15) V.Ballard left guard to NE 43 for 18 yards (K.Arrington; D.McCourty).,17,45,2012 -20121118_IND@NE,4,12,38,IND,NE,1,10,43,(12:38) A.Luck pass deep right to T.Hilton for 43 yards TOUCHDOWN [J.Cunningham]. Penalty on NE-A.Talib Illegal Contact declined.,17,45,2012 -20121118_IND@NE,4,12,38,IND,NE,,,43,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,17,45,2012 -20121118_IND@NE,4,12,38,IND,NE,,,43,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,24,45,2012 -20121118_IND@NE,4,12,32,NE,IND,1,10,80,(12:32) T.Brady pass incomplete deep left to B.Lloyd. IND-C.Redding was injured during the play.,45,24,2012 -20121118_IND@NE,4,12,26,NE,IND,2,10,80,(12:26) S.Ridley right end pushed ob at NE 22 for 2 yards (P.Angerer).,45,24,2012 -20121118_IND@NE,4,11,49,NE,IND,3,8,78,(11:49) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to NE 33 for 11 yards (A.Bethea).,45,24,2012 -20121118_IND@NE,4,11,11,NE,IND,1,10,67,(11:11) S.Ridley right tackle to NE 36 for 3 yards (D.Butler; F.Moala).,45,24,2012 -20121118_IND@NE,4,10,29,NE,IND,2,7,64,(10:29) T.Brady pass short left to W.Welker ran ob at 50 for 14 yards. NE 12-Brady 51st career 300-yard game tying Dan Fouts for 6th most all-time.,45,24,2012 -20121118_IND@NE,4,9,55,NE,IND,1,10,50,(9:55) J.Edelman right end to IND 3 for 47 yards (A.Bethea). reverse,45,24,2012 -20121118_IND@NE,4,9,9,NE,IND,1,3,3,(9:09) S.Ridley up the middle for 3 yards TOUCHDOWN.,45,24,2012 -20121118_IND@NE,4,9,9,NE,IND,,,3,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,45,24,2012 -20121118_IND@NE,4,9,9,NE,IND,,,3,S.Gostkowski kicks 57 yards from NE 35 to IND 8. T.Hilton to IND 23 for 15 yards (T.White).,52,24,2012 -20121118_IND@NE,4,9,2,IND,NE,1,10,77,(9:02) (Shotgun) A.Luck pass short left to V.Ballard pushed ob at IND 30 for 7 yards (A.Dennard).,24,52,2012 -20121118_IND@NE,4,8,39,IND,NE,2,3,70,(8:39) (No Huddle) V.Ballard left tackle to IND 31 for 1 yard (V.Wilfork).,24,52,2012 -20121118_IND@NE,4,7,56,IND,NE,3,2,69,(7:56) (Shotgun) A.Luck pass incomplete short left to T.Hilton.,24,52,2012 -20121118_IND@NE,4,7,52,IND,NE,4,2,69,(7:52) P.McAfee punts 57 yards to NE 12 Center-M.Overton. J.Edelman to IND 39 for 49 yards (P.McAfee).,24,52,2012 -20121118_IND@NE,4,7,37,NE,IND,1,10,39,(7:37) (Shotgun) T.Brady pass short left to S.Vereen to IND 28 for 11 yards (J.Freeman).,52,24,2012 -20121118_IND@NE,4,6,52,NE,IND,1,10,28,(6:52) S.Vereen left tackle to IND 29 for -1 yards (D.Freeney).,52,24,2012 -20121118_IND@NE,4,6,15,NE,IND,2,11,29,(6:15) S.Vereen left guard to IND 25 for 4 yards (R.Mathews; J.Freeman).,52,24,2012 -20121118_IND@NE,4,5,32,NE,IND,3,7,25,(5:32) (Shotgun) T.Brady pass short middle to W.Welker to IND 12 for 13 yards (D.Butler).,52,24,2012 -20121118_IND@NE,4,4,48,NE,IND,1,10,12,(4:48) S.Vereen left end pushed ob at IND 7 for 5 yards (J.Freeman).,52,24,2012 -20121118_IND@NE,4,4,43,NE,IND,2,5,7,(4:43) S.Vereen up the middle to IND 4 for 3 yards (K.Conner).,52,24,2012 -20121118_IND@NE,4,3,59,NE,IND,3,2,4,(3:59) S.Vereen left end for 4 yards TOUCHDOWN.,52,24,2012 -20121118_IND@NE,4,3,59,NE,IND,,,4,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko. NE 59 points ties franchise record (10/18/09 vs TEN 59-0) NE 3-Gostkowski 8 PAT in game ties franchise record.,52,24,2012 -20121118_IND@NE,4,3,59,NE,IND,,,4,S.Gostkowski kicks 69 yards from NE 35 to IND -4. T.Hilton Touchback.,59,24,2012 -20121118_IND@NE,4,3,55,IND,NE,1,10,80,(3:55) (Shotgun) A.Luck pass incomplete deep middle to R.Wayne (K.Arrington).,24,59,2012 -20121118_IND@NE,4,3,50,IND,NE,2,10,80,(3:50) (Shotgun) A.Luck pass short middle to R.Wayne to IND 31 for 11 yards (T.Wilson). IND-12 Luck 5th 300-yard game of season new NFL rookie record. IND-87 Wayne 8th career 1000 yard season.,24,59,2012 -20121118_IND@NE,4,3,25,IND,NE,1,10,69,(3:25) (No Huddle Shotgun) A.Luck pass short right to D.Allen to IND 44 for 13 yards (K.Arrington).,24,59,2012 -20121118_IND@NE,4,2,58,IND,NE,1,10,56,(2:58) A.Luck pass incomplete deep left to T.Hilton.,24,59,2012 -20121118_IND@NE,4,2,53,IND,NE,2,10,56,(2:53) (Shotgun) A.Luck pass incomplete short right to D.Allen.,24,59,2012 -20121118_IND@NE,4,2,49,IND,NE,3,10,56,(2:49) (Shotgun) A.Luck pass short left to D.Allen to NE 45 for 11 yards (K.Arrington).,24,59,2012 -20121118_IND@NE,4,2,25,IND,NE,1,10,45,(2:25) (No Huddle Shotgun) A.Luck pass intended for R.Wayne INTERCEPTED by T.Wilson (K.Arrington) at NE 22. T.Wilson to NE 42 for 20 yards (R.Wayne).,24,59,2012 -20121118_IND@NE,4,2,17,NE,IND,1,10,58,(2:17) NE 15-Mallett now at QB. S.Vereen left guard to NE 42 for no gain (C.Geathers; K.Conner).,59,24,2012 -20121118_IND@NE,4,2,0,NE,IND,2,10,58,(2:00) S.Vereen right guard to NE 43 for 1 yard (L.Guy).,59,24,2012 -20121118_IND@NE,4,1,23,NE,IND,3,9,57,(1:23) S.Vereen right end to NE 43 for no gain (D.Butler).,59,24,2012 -20121118_IND@NE,4,0,41,NE,IND,4,9,57,(:41) Z.Mesko punts 53 yards to IND 4 Center-D.Aiken downed by NE.,59,24,2012 -20121118_IND@NE,4,0,28,IND,NE,1,10,96,(:28) J.Linkenbach reported in as eligible. D.Carter left end to IND 24 for 20 yards (D.McCourty).,24,59,2012 -20121118_IND@NE,4,0,28,IND,NE,,,96,                      ,24,59,2012 -20121118_SD@DEN,1,0,0,DEN,SD,,,96,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20121118_SD@DEN,1,60,0,SD,DEN,1,10,80,(15:00) J.Battle up the middle to SD 21 for 1 yard (E.Dumervil; W.Woodyard).,0,0,2012 -20121118_SD@DEN,1,59,21,SD,DEN,2,9,79,(14:21) P.Rivers pass short middle to A.Gates to SD 34 for 13 yards (K.Brooking).,0,0,2012 -20121118_SD@DEN,1,58,40,SD,DEN,1,10,66,(13:40) (Shotgun) P.Rivers pass short left to J.Battle to SD 35 for 1 yard (J.Bannan).,0,0,2012 -20121118_SD@DEN,1,58,1,SD,DEN,2,9,65,(13:01) J.Battle left end to SD 35 for no gain (R.Moore; R.Ayers).,0,0,2012 -20121118_SD@DEN,1,57,28,SD,DEN,3,9,65,(12:28) (Shotgun) P.Rivers pass incomplete short right to D.Alexander [W.Woodyard].,0,0,2012 -20121118_SD@DEN,1,57,5,SD,DEN,4,9,65,(12:05) M.Scifres punts 56 yards to DEN 9 Center-M.Windt. T.Holliday to DEN 15 for 6 yards (S.Wright).,0,0,2012 -20121118_SD@DEN,1,57,1,DEN,SD,1,10,85,(12:01) (Shotgun) P.Manning pass short middle to W.McGahee to DEN 33 for 18 yards (E.Weddle).,0,0,2012 -20121118_SD@DEN,1,56,28,DEN,SD,1,10,67,(11:28) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 39 for 6 yards (E.Weddle).,0,0,2012 -20121118_SD@DEN,1,56,2,DEN,SD,2,4,61,(11:02) W.McGahee up the middle to DEN 42 for 3 yards (S.Phillips; M.Gilchrist).,0,0,2012 -20121118_SD@DEN,1,55,28,DEN,SD,3,1,58,(10:28) L.Ball up the middle to DEN 42 for no gain (V.Martin).,0,0,2012 -20121118_SD@DEN,1,54,48,DEN,SD,4,1,58,(9:48) B.Colquitt punts 58 yards to end zone Center-A.Brewer Touchback.,0,0,2012 -20121118_SD@DEN,1,54,38,SD,DEN,1,10,80,(9:38) J.Battle up the middle to SD 17 for -3 yards (V.Miller).,0,0,2012 -20121118_SD@DEN,1,53,57,SD,DEN,2,13,83,(8:57) (Shotgun) P.Rivers pass short right to M.Floyd to SD 21 for 4 yards (C.Bailey).,0,0,2012 -20121118_SD@DEN,1,53,15,SD,DEN,3,9,79,(8:15) (Shotgun) P.Rivers pass incomplete deep right to E.Royal.,0,0,2012 -20121118_SD@DEN,1,53,8,SD,DEN,4,9,79,(8:08) M.Scifres punts 66 yards to DEN 13 Center-M.Windt downed by SD-D.Stuckey.,0,0,2012 -20121118_SD@DEN,1,52,55,DEN,SD,1,10,87,(7:55) (Shotgun) P.Manning pass short middle to J.Tamme to DEN 20 for 7 yards (T.Spikes).,0,0,2012 -20121118_SD@DEN,1,52,29,DEN,SD,2,3,80,(7:29) (Shotgun) P.Manning pass short right to J.Dreessen to DEN 25 for 5 yards (Q.Jammer).,0,0,2012 -20121118_SD@DEN,1,52,0,DEN,SD,1,10,75,(7:00) (Shotgun) P.Manning pass short left intended for M.Willis INTERCEPTED by E.Weddle (D.Williams) at DEN 23. E.Weddle for 23 yards TOUCHDOWN.,0,0,2012 -20121118_SD@DEN,1,52,0,SD,DEN,,,75,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres.,0,0,2012 -20121118_SD@DEN,1,52,0,SD,DEN,,,75,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,7,0,2012 -20121118_SD@DEN,1,51,52,DEN,SD,1,10,80,(6:52) (Shotgun) W.McGahee right end to DEN 29 for 9 yards (D.Butler).,0,7,2012 -20121118_SD@DEN,1,51,23,DEN,SD,2,1,71,(6:23) P.Manning pass incomplete short left to W.McGahee.,0,7,2012 -20121118_SD@DEN,1,51,17,DEN,SD,3,1,71,(6:17) W.McGahee up the middle to DEN 38 for 9 yards (D.Butler).,0,7,2012 -20121118_SD@DEN,1,50,49,DEN,SD,1,10,62,(5:49) R.Hillman right end pushed ob at SD 41 for 21 yards (Q.Jammer).,0,7,2012 -20121118_SD@DEN,1,50,17,DEN,SD,1,10,41,(5:17) P.Manning pass short left to M.Willis to SD 37 for 4 yards (M.Gilchrist).,0,7,2012 -20121118_SD@DEN,1,49,40,DEN,SD,2,6,37,(4:40) (Shotgun) P.Manning pass incomplete deep left to D.Thomas.,0,7,2012 -20121118_SD@DEN,1,49,34,DEN,SD,3,6,37,(4:34) (Shotgun) P.Manning pass incomplete short left to M.Willis.,0,7,2012 -20121118_SD@DEN,1,49,28,DEN,SD,4,6,37,(4:28) M.Prater 55 yard field goal is No Good Hit Left Upright Center-A.Brewer Holder-B.Colquitt.,0,7,2012 -20121118_SD@DEN,1,49,23,SD,DEN,1,10,55,(4:23) (Shotgun) P.Rivers pass short middle to R.Mathews pushed ob at DEN 46 for 9 yards (W.Woodyard).,7,0,2012 -20121118_SD@DEN,1,48,48,SD,DEN,2,1,46,(3:48) (Shotgun) P.Rivers pass incomplete short right to E.Royal.,7,0,2012 -20121118_SD@DEN,1,48,42,SD,DEN,3,1,46,(3:42) J.Battle up the middle to DEN 47 for -1 yards (W.Woodyard).,7,0,2012 -20121118_SD@DEN,1,47,59,SD,DEN,4,2,47,(2:59) M.Scifres punts 47 yards to end zone Center-M.Windt Touchback.,7,0,2012 -20121118_SD@DEN,1,47,54,DEN,SD,1,10,80,(2:54) W.McGahee up the middle to DEN 26 for 6 yards (D.Butler).,0,7,2012 -20121118_SD@DEN,1,47,26,DEN,SD,2,4,74,(2:26) P.Manning pass incomplete short right to J.Dreessen (T.Spikes).,0,7,2012 -20121118_SD@DEN,1,47,22,DEN,SD,3,4,74,(2:22) (Shotgun) P.Manning pass incomplete deep right to J.Tamme.,0,7,2012 -20121118_SD@DEN,1,47,17,DEN,SD,4,4,74,(2:17) B.Colquitt punts 55 yards to SD 19 Center-A.Brewer. E.Royal to SD 20 for 1 yard (N.Irving). PENALTY on SD-S.Wright Offensive Holding 10 yards enforced at SD 20.,0,7,2012 -20121118_SD@DEN,1,46,56,SD,DEN,1,10,90,(1:56) R.Mathews up the middle to SD 16 for 6 yards (K.Vickerson).,7,0,2012 -20121118_SD@DEN,1,46,20,SD,DEN,2,4,84,(1:20) R.Mathews left tackle to SD 16 for no gain (R.Moore).,7,0,2012 -20121118_SD@DEN,1,45,38,SD,DEN,3,4,84,(:38) (Shotgun) P.Rivers pass incomplete short left to E.Royal (C.Harris).,7,0,2012 -20121118_SD@DEN,1,45,29,SD,DEN,4,4,84,(:29) M.Scifres punts 40 yards to DEN 44 Center-M.Windt downed by SD-C.Lynch.,7,0,2012 -20121118_SD@DEN,1,45,20,DEN,SD,1,10,56,(:20) W.McGahee up the middle to SD 41 for 15 yards (D.Butler; A.Bigby).,0,7,2012 -20121118_SD@DEN,2,45,0,DEN,SD,1,10,41,(15:00) (Shotgun) P.Manning pass incomplete deep right to D.Thomas.,0,7,2012 -20121118_SD@DEN,2,44,54,DEN,SD,2,10,41,(14:54) W.McGahee right guard to SD 36 for 5 yards (M.Ingram).,0,7,2012 -20121118_SD@DEN,2,44,17,DEN,SD,3,5,36,(14:17) (Shotgun) P.Manning pass short right to M.Willis to SD 26 for 10 yards (Q.Jammer).,0,7,2012 -20121118_SD@DEN,2,44,17,DEN,SD,1,10,26,(14:17) PENALTY on SD-S.Phillips Neutral Zone Infraction 5 yards enforced at SD 26 - No Play.,0,7,2012 -20121118_SD@DEN,2,43,33,DEN,SD,1,5,21,(13:33) W.McGahee right end to SD 13 for 8 yards (A.Bigby).,0,7,2012 -20121118_SD@DEN,2,43,3,DEN,SD,1,10,13,(13:03) P.Manning pass incomplete short left to D.Thomas (A.Cason). Denver challenged the runner was in bounds ruling and the play was REVERSED. P.Manning pass short left to D.Thomas for 13 yards TOUCHDOWN.,0,7,2012 -20121118_SD@DEN,2,43,3,DEN,SD,,,13,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,7,2012 -20121118_SD@DEN,2,43,3,DEN,SD,,,13,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,7,2012 -20121118_SD@DEN,2,42,57,SD,DEN,1,10,80,(12:57) P.Rivers pass short middle intended for D.Alexander INTERCEPTED by W.Woodyard at SD 33. W.Woodyard pushed ob at SD 8 for 25 yards (P.Rivers).,7,7,2012 -20121118_SD@DEN,2,42,47,DEN,SD,1,8,8,(12:47) P.Manning pass incomplete short left to D.Thomas.,7,7,2012 -20121118_SD@DEN,2,42,42,DEN,SD,2,8,8,(12:42) R.Hillman up the middle to SD 7 for 1 yard (E.Weddle).,7,7,2012 -20121118_SD@DEN,2,42,5,DEN,SD,3,7,7,(12:05) (Shotgun) P.Manning pass short right to L.Ball to SD 1 for 6 yards (D.Williams).,7,7,2012 -20121118_SD@DEN,2,41,37,DEN,SD,4,1,1,(11:37) M.Prater 19 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,7,7,2012 -20121118_SD@DEN,2,41,37,DEN,SD,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,10,7,2012 -20121118_SD@DEN,2,41,33,SD,DEN,1,10,80,(11:33) R.Mathews right end to SD 20 for no gain (E.Dumervil; J.Bannan).,7,10,2012 -20121118_SD@DEN,2,40,52,SD,DEN,2,10,80,(10:52) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,7,10,2012 -20121118_SD@DEN,2,40,46,SD,DEN,3,10,80,(10:46) (Shotgun) P.Rivers pass incomplete deep right to M.Floyd.,7,10,2012 -20121118_SD@DEN,2,40,41,SD,DEN,4,10,80,(10:41) M.Scifres punts 61 yards to DEN 19 Center-M.Windt. T.Holliday to DEN 26 for 7 yards (D.Stuckey). FUMBLES (D.Stuckey) recovered by DEN-L.Ball at DEN 26. L.Ball to DEN 26 for no gain (C.Lynch). PENALTY on SD-C.Lynch Offensive Holding 10 yards enforced at DEN 26.,7,10,2012 -20121118_SD@DEN,2,40,16,DEN,SD,1,10,64,(10:16) R.Hillman up the middle to DEN 35 for -1 yards (M.Gilchrist).,10,7,2012 -20121118_SD@DEN,2,39,51,DEN,SD,2,11,65,(9:51) P.Manning pass short right to R.Hillman to DEN 39 for 4 yards (S.Wright).,10,7,2012 -20121118_SD@DEN,2,39,8,DEN,SD,3,7,61,(9:08) (Shotgun) P.Manning pass short left to D.Thomas to SD 44 for 17 yards (M.Ingram).,10,7,2012 -20121118_SD@DEN,2,38,34,DEN,SD,1,10,44,(8:34) L.Ball up the middle to SD 40 for 4 yards (S.Wright).,10,7,2012 -20121118_SD@DEN,2,38,2,DEN,SD,2,6,40,(8:02) P.Manning pass incomplete to E.Decker.,10,7,2012 -20121118_SD@DEN,2,38,1,DEN,SD,3,6,40,(8:01) P.Manning pass short right to L.Ball to SD 34 for 6 yards (D.Butler T.Spikes). FUMBLES (D.Butler) RECOVERED by SD-A.Barnes at SD 36. A.Barnes to SD 37 for 1 yard (O.Franklin).,10,7,2012 -20121118_SD@DEN,2,37,53,SD,DEN,1,10,63,(7:53) (Shotgun) R.Mathews left tackle to SD 39 for 2 yards (D.Williams; W.Woodyard).,7,10,2012 -20121118_SD@DEN,2,37,11,SD,DEN,2,8,61,(7:11) (Shotgun) P.Rivers pass incomplete to R.Mathews.,7,10,2012 -20121118_SD@DEN,2,37,6,SD,DEN,3,8,61,(7:06) (Shotgun) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at SD 39 - No Play.,7,10,2012 -20121118_SD@DEN,2,37,6,SD,DEN,3,13,66,(7:06) P.Rivers pass short right to L.Green to SD 46 for 12 yards (C.Harris).,7,10,2012 -20121118_SD@DEN,2,36,18,SD,DEN,4,1,54,(6:18) M.Scifres punts 54 yards to end zone Center-M.Windt Touchback.,7,10,2012 -20121118_SD@DEN,2,36,17,DEN,SD,1,10,80,(6:17) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 26 for 6 yards (M.Gilchrist).,10,7,2012 -20121118_SD@DEN,2,35,46,DEN,SD,2,4,74,(5:46) R.Hillman up the middle to DEN 29 for 3 yards (S.Phillips).,10,7,2012 -20121118_SD@DEN,2,35,7,DEN,SD,3,1,71,(5:07) P.Manning pass incomplete short right to E.Decker.,10,7,2012 -20121118_SD@DEN,2,35,0,DEN,SD,4,1,71,(5:00) B.Colquitt punts 41 yards to SD 30 Center-A.Brewer fair catch by A.Cason.,10,7,2012 -20121118_SD@DEN,2,34,52,SD,DEN,1,10,70,(4:52) R.Mathews right tackle to SD 31 for 1 yard (K.Vickerson).,7,10,2012 -20121118_SD@DEN,2,34,7,SD,DEN,2,9,69,(4:07) (Shotgun) P.Rivers pass short right to D.Alexander ran ob at SD 39 for 8 yards (T.Carter).,7,10,2012 -20121118_SD@DEN,2,33,34,SD,DEN,3,1,61,(3:34) P.Rivers pass incomplete deep middle to R.McMichael. PENALTY on DEN-M.Adams Defensive Holding 5 yards enforced at SD 39 - No Play.,7,10,2012 -20121118_SD@DEN,2,33,25,SD,DEN,1,10,56,(3:25) R.Mathews up the middle to SD 47 for 3 yards (M.Unrein).,7,10,2012 -20121118_SD@DEN,2,32,48,SD,DEN,2,7,53,(2:48) (Shotgun) P.Rivers pass short right to R.Mathews to 50 for 3 yards (D.Williams).,7,10,2012 -20121118_SD@DEN,2,32,3,SD,DEN,3,4,50,(2:03) (Shotgun) P.Rivers sacked at SD 36 for -14 yards (V.Miller).,7,10,2012 -20121118_SD@DEN,2,31,59,SD,DEN,4,18,64,(1:59) M.Scifres punt is BLOCKED by N.Irving Center-M.Windt RECOVERED by DEN-L.Ball at SD 31. L.Ball to SD 31 for no gain (A.Gachkar).,7,10,2012 -20121118_SD@DEN,2,31,51,DEN,SD,1,10,31,(1:51) (Shotgun) P.Manning pass deep right to B.Stokley for 31 yards TOUCHDOWN.,10,7,2012 -20121118_SD@DEN,2,31,51,DEN,SD,,,31,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,10,7,2012 -20121118_SD@DEN,2,31,51,DEN,SD,,,31,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,17,7,2012 -20121118_SD@DEN,2,31,42,SD,DEN,1,10,80,(1:42) R.Brown up the middle to SD 19 for -1 yards (D.Trevathan).,7,17,2012 -20121118_SD@DEN,2,31,16,SD,DEN,2,11,81,(1:16) P.Rivers pass short right to R.Brown to SD 19 for no gain (C.Bailey).,7,17,2012 -20121118_SD@DEN,2,31,11,SD,DEN,3,10,80,(1:11) (Shotgun) P.Rivers pass short middle to L.Green to SD 29 for 9 yards (D.Bruton).,7,17,2012 -20121118_SD@DEN,2,31,2,SD,DEN,4,1,71,(1:02) M.Scifres punts 55 yards to DEN 16 Center-M.Windt. T.Holliday to DEN 25 for 9 yards (S.Wright).,7,17,2012 -20121118_SD@DEN,2,30,51,DEN,SD,1,10,75,(:51) (Shotgun) P.Manning pass to J.Tamme to DEN 34 for 9 yards (E.Weddle; A.Bigby).,17,7,2012 -20121118_SD@DEN,2,30,29,DEN,SD,2,1,66,(:29) PENALTY on DEN-M.Ramirez Offensive Offside 12 yards enforced at DEN 34 - No Play.,17,7,2012 -20121118_SD@DEN,2,30,29,DEN,SD,2,6,71,(:29) P.Manning pass short middle to D.Thomas to DEN 41 for 12 yards (A.Cason).,17,7,2012 -20121118_SD@DEN,2,30,25,DEN,SD,1,10,59,(:25) P.Manning pass incomplete.,17,7,2012 -20121118_SD@DEN,2,30,6,DEN,SD,2,10,59,(:06) P.Manning pass to L.Ball to SD 48 for 11 yards (E.Weddle).,17,7,2012 -20121118_SD@DEN,3,30,0,SD,DEN,,,59,N.Novak kicks onside 16 yards from SD 35 to DEN 49. RECOVERED by SD-D.Stuckey.,7,17,2012 -20121118_SD@DEN,3,29,50,SD,DEN,1,10,49,(14:50) P.Rivers pass incomplete short middle to D.Alexander.,7,17,2012 -20121118_SD@DEN,3,29,50,SD,DEN,2,10,49,(14:50) R.Mathews up the middle to SD 49 for -2 yards (D.Williams).,7,17,2012 -20121118_SD@DEN,3,29,10,SD,DEN,3,12,51,(14:10) (Shotgun) P.Rivers sacked at SD 43 for -6 yards (V.Miller). FUMBLES (V.Miller) recovered by SD-R.Hadnot at SD 43. R.Hadnot to SD 43 for no gain (R.Ayers).,7,17,2012 -20121118_SD@DEN,3,28,34,SD,DEN,4,18,57,(13:34) M.Scifres punts 55 yards to DEN 2 Center-M.Windt downed by SD-D.Stuckey.,7,17,2012 -20121118_SD@DEN,3,28,23,DEN,SD,1,10,98,(13:23) R.Hillman up the middle to DEN 2 for no gain (C.Liuget).,17,7,2012 -20121118_SD@DEN,3,27,54,DEN,SD,2,10,98,(12:54) P.Manning sacked in End Zone for -2 yards SAFETY (S.Phillips).,17,7,2012 -20121118_SD@DEN,3,27,54,DEN,SD,,,98,B.Colquitt kicks 60 yards from DEN 20 to SD 20. A.Cason to SD 36 for 16 yards (N.Irving; D.Trevathan).,17,9,2012 -20121118_SD@DEN,3,27,36,SD,DEN,1,10,64,(12:36) P.Rivers pass incomplete to R.Mathews [M.Jackson].,9,17,2012 -20121118_SD@DEN,3,27,36,SD,DEN,2,10,64,(12:36) R.Mathews up the middle to SD 41 for 5 yards (C.Bailey).,9,17,2012 -20121118_SD@DEN,3,26,53,SD,DEN,3,5,59,(11:53) (Shotgun) P.Rivers pass incomplete short right to A.Gates (C.Harris).,9,17,2012 -20121118_SD@DEN,3,26,48,SD,DEN,4,5,59,(11:48) M.Scifres punts 59 yards to end zone Center-M.Windt Touchback.,9,17,2012 -20121118_SD@DEN,3,26,38,DEN,SD,1,10,80,(11:38) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 26 for 6 yards (D.Williams).,17,9,2012 -20121118_SD@DEN,3,26,13,DEN,SD,2,4,74,(11:13) (Shotgun) P.Manning pass incomplete short right to J.Dreessen (A.Bigby).,17,9,2012 -20121118_SD@DEN,3,26,10,DEN,SD,3,4,74,(11:10) (Shotgun) P.Manning pass short left to E.Decker to DEN 29 for 3 yards (M.Gilchrist).,17,9,2012 -20121118_SD@DEN,3,25,27,DEN,SD,4,1,71,(10:27) B.Colquitt punts 56 yards to SD 15 Center-A.Brewer. A.Cason to SD 24 for 9 yards (V.Miller).,17,9,2012 -20121118_SD@DEN,3,25,14,SD,DEN,1,10,76,(10:14) R.Mathews up the middle to SD 29 for 5 yards (E.Dumervil).,9,17,2012 -20121118_SD@DEN,3,24,37,SD,DEN,2,5,71,(9:37) R.Mathews left end to SD 40 for 11 yards (C.Harris).,9,17,2012 -20121118_SD@DEN,3,24,8,SD,DEN,1,10,60,(9:08) R.Mathews left tackle to SD 44 for 4 yards (W.Woodyard).,9,17,2012 -20121118_SD@DEN,3,23,32,SD,DEN,2,6,56,(8:32) R.Mathews right guard to SD 46 for 2 yards (D.Williams).,9,17,2012 -20121118_SD@DEN,3,22,51,SD,DEN,3,4,54,(7:51) (Shotgun) P.Rivers sacked at SD 37 for -9 yards (V.Miller). FUMBLES (V.Miller) RECOVERED by DEN-W.Woodyard at SD 37. W.Woodyard to SD 25 for 12 yards (M.Floyd).,9,17,2012 -20121118_SD@DEN,3,22,40,DEN,SD,1,10,25,(7:40) P.Manning pass incomplete deep left to D.Thomas.,17,9,2012 -20121118_SD@DEN,3,22,35,DEN,SD,2,10,25,(7:35) (Shotgun) P.Manning pass incomplete short left to B.Stokley (M.Gilchrist).,17,9,2012 -20121118_SD@DEN,3,22,35,DEN,SD,3,10,25,(7:35) (Shotgun) PENALTY on SD-S.Phillips Neutral Zone Infraction 5 yards enforced at SD 25 - No Play.,17,9,2012 -20121118_SD@DEN,3,22,23,DEN,SD,3,5,20,(7:23) (Shotgun) P.Manning pass short left to E.Decker for 20 yards TOUCHDOWN.,17,9,2012 -20121118_SD@DEN,3,22,23,DEN,SD,,,20,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,9,2012 -20121118_SD@DEN,3,22,23,DEN,SD,,,20,B.Colquitt kicks 65 yards from DEN 35 to end zone Touchback.,24,9,2012 -20121118_SD@DEN,3,22,23,SD,DEN,1,10,80,(7:23) (Shotgun) R.Mathews up the middle to SD 27 for 7 yards (K.Vickerson).,9,24,2012 -20121118_SD@DEN,3,21,40,SD,DEN,2,3,73,(6:40) (Shotgun) P.Rivers pass short left to M.Floyd to SD 37 for 10 yards (W.Woodyard).,9,24,2012 -20121118_SD@DEN,3,20,59,SD,DEN,1,10,63,(5:59) (Shotgun) P.Rivers pass short middle to D.Alexander to DEN 48 for 15 yards (T.Carter; W.Woodyard).,9,24,2012 -20121118_SD@DEN,3,20,25,SD,DEN,1,10,48,(5:25) P.Rivers pass incomplete short right to D.Alexander.,9,24,2012 -20121118_SD@DEN,3,20,18,SD,DEN,2,10,48,(5:18) (Shotgun) P.Rivers pass incomplete deep left to R.McMichael.,9,24,2012 -20121118_SD@DEN,3,20,11,SD,DEN,3,10,48,(5:11) (Shotgun) P.Rivers pass short left to M.Floyd to DEN 33 for 15 yards (C.Bailey).,9,24,2012 -20121118_SD@DEN,3,19,32,SD,DEN,1,10,33,(4:32) (Shotgun) R.Mathews left end to DEN 31 for 2 yards (C.Bailey).,9,24,2012 -20121118_SD@DEN,3,18,52,SD,DEN,2,8,31,(3:52) (Shotgun) P.Rivers pass short left to A.Gates to DEN 27 for 4 yards (E.Dumervil).,9,24,2012 -20121118_SD@DEN,3,18,8,SD,DEN,3,4,27,(3:08) (Shotgun) P.Rivers pass short left to R.Meachem to DEN 17 for 10 yards (T.Carter).,9,24,2012 -20121118_SD@DEN,3,17,26,SD,DEN,1,10,17,(2:26) (Shotgun) P.Rivers pass short left to R.Brown to DEN 12 for 5 yards (T.Carter).,9,24,2012 -20121118_SD@DEN,3,16,48,SD,DEN,2,5,12,(1:48) (Shotgun) R.Brown up the middle to DEN 8 for 4 yards (J.Bannan).,9,24,2012 -20121118_SD@DEN,3,16,3,SD,DEN,3,1,8,(1:03) (Shotgun) P.Rivers pass short right to D.Alexander for 8 yards TOUCHDOWN.,9,24,2012 -20121118_SD@DEN,3,16,3,SD,DEN,,,8,N.Novak extra point is GOOD Center-M.Windt Holder-M.Scifres. PENALTY on DEN-W.Woodyard Unnecessary Roughness 15 yards enforced between downs.,9,24,2012 -20121118_SD@DEN,3,16,3,SD,DEN,,,8,N.Novak kicks 47 yards from 50 to DEN 3. T.Holliday to DEN 21 for 18 yards (J.Battle).,16,24,2012 -20121118_SD@DEN,3,15,52,DEN,SD,1,10,79,(:52) R.Hillman right end to DEN 40 for 19 yards (S.Wright).,24,16,2012 -20121118_SD@DEN,3,15,15,DEN,SD,1,10,60,(:15) L.Ball left tackle to DEN 41 for 1 yard (S.Phillips).,24,16,2012 -20121118_SD@DEN,4,15,0,DEN,SD,2,9,59,(15:00) (Shotgun) P.Manning pass short right to J.Dreessen to DEN 47 for 6 yards (M.Gilchrist).,24,16,2012 -20121118_SD@DEN,4,14,24,DEN,SD,3,3,53,(14:24) (Shotgun) P.Manning pass short middle to J.Tamme to SD 46 for 7 yards (A.Bigby).,24,16,2012 -20121118_SD@DEN,4,13,52,DEN,SD,1,10,46,(13:52) L.Ball left end to SD 32 for 14 yards (E.Weddle).,24,16,2012 -20121118_SD@DEN,4,13,12,DEN,SD,1,10,32,(13:12) (Shotgun) P.Manning pass short left to J.Dreessen to SD 21 for 11 yards (A.Cason).,24,16,2012 -20121118_SD@DEN,4,12,25,DEN,SD,1,10,21,(12:25) (Shotgun) P.Manning pass incomplete deep middle to D.Thomas (A.Cason).,24,16,2012 -20121118_SD@DEN,4,12,20,DEN,SD,2,10,21,(12:20) (Shotgun) P.Manning sacked at SD 29 for -8 yards (K.Reyes).,24,16,2012 -20121118_SD@DEN,4,12,20,DEN,SD,3,18,29,(12:20) (Shotgun) PENALTY on SD-A.Garay Encroachment 5 yards enforced at SD 29 - No Play.,24,16,2012 -20121118_SD@DEN,4,11,32,DEN,SD,3,13,24,(11:32) (Shotgun) P.Manning pass short middle to B.Stokley to SD 12 for 12 yards (D.Butler).,24,16,2012 -20121118_SD@DEN,4,10,47,DEN,SD,4,1,12,(10:47) M.Prater 30 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,24,16,2012 -20121118_SD@DEN,4,10,47,DEN,SD,,,12,B.Colquitt kicks 65 yards from DEN 35 to end zone Touchback.,27,16,2012 -20121118_SD@DEN,4,10,43,SD,DEN,1,10,80,(10:43) (Shotgun) P.Rivers pass deep left to M.Floyd to DEN 42 for 38 yards (C.Bailey) [M.Adams].,16,27,2012 -20121118_SD@DEN,4,10,4,SD,DEN,1,10,42,(10:04) R.Mathews left end pushed ob at DEN 41 for 1 yard (C.Harris).,16,27,2012 -20121118_SD@DEN,4,9,30,SD,DEN,2,9,41,(9:30) (Shotgun) P.Rivers pass incomplete short middle to R.Brown.,16,27,2012 -20121118_SD@DEN,4,9,25,SD,DEN,3,9,41,(9:25) (Shotgun) P.Rivers pass incomplete deep left to R.Meachem.,16,27,2012 -20121118_SD@DEN,4,9,19,SD,DEN,4,9,41,(9:19) (Pass formation) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at DEN 41 - No Play.,16,27,2012 -20121118_SD@DEN,4,9,18,SD,DEN,4,14,46,(9:18) (Shotgun) P.Rivers pass deep middle intended for M.Floyd INTERCEPTED by J.Leonhard at DEN 29. J.Leonhard to DEN 29 for no gain (M.Floyd).,16,27,2012 -20121118_SD@DEN,4,9,10,DEN,SD,1,10,71,(9:10) R.Hillman right tackle to DEN 30 for 1 yard (C.Thomas).,27,16,2012 -20121118_SD@DEN,4,8,40,DEN,SD,2,9,70,(8:40) (Shotgun) P.Manning pass short right to R.Hillman to DEN 42 for 12 yards (S.Wright).,27,16,2012 -20121118_SD@DEN,4,8,5,DEN,SD,1,10,58,(8:05) L.Ball up the middle to DEN 45 for 3 yards (C.Thomas). PENALTY on SD-C.Liuget Illegal Use of Hands 5 yards enforced at DEN 45.,27,16,2012 -20121118_SD@DEN,4,5,42,DEN,SD,1,10,50,(5:42) L.Ball up the middle to SD 37 for 13 yards (M.Ingram; D.Williams).,27,16,2012 -20121118_SD@DEN,4,5,34,DEN,SD,1,10,37,(5:34) R.Hillman up the middle to SD 38 for -1 yards (S.Phillips).,27,16,2012 -20121118_SD@DEN,4,5,26,DEN,SD,2,11,38,(5:26) P.Manning sacked at SD 45 for -7 yards (K.Reyes).,27,16,2012 -20121118_SD@DEN,4,5,18,DEN,SD,3,18,45,(5:18) P.Manning pass deep middle to J.Tamme to SD 15 for 30 yards (D.Butler).,27,16,2012 -20121118_SD@DEN,4,5,4,DEN,SD,1,10,15,(5:04) R.Hillman up the middle to SD 14 for 1 yard (T.Spikes; A.Garay).,27,16,2012 -20121118_SD@DEN,4,4,28,DEN,SD,2,9,14,(4:28) P.Manning pass incomplete short middle to E.Decker.,27,16,2012 -20121118_SD@DEN,4,4,23,DEN,SD,3,9,14,(4:23) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,27,16,2012 -20121118_SD@DEN,4,4,19,DEN,SD,4,9,14,(4:19) M.Prater 32 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,27,16,2012 -20121118_SD@DEN,4,4,19,DEN,SD,,,14,B.Colquitt kicks 65 yards from DEN 35 to end zone Touchback.,30,16,2012 -20121118_SD@DEN,4,4,14,SD,DEN,1,10,80,(4:14) (Shotgun) P.Rivers pass short right to R.Mathews to SD 20 for no gain (C.Bailey).,16,30,2012 -20121118_SD@DEN,4,3,45,SD,DEN,2,10,80,(3:45) P.Rivers pass short left to D.Alexander to SD 32 for 12 yards (T.Carter).,16,30,2012 -20121118_SD@DEN,4,3,11,SD,DEN,1,10,68,(3:11) (Shotgun) P.Rivers pass short left to R.Mathews to DEN 44 for 24 yards (R.Moore).,16,30,2012 -20121118_SD@DEN,4,2,36,SD,DEN,1,10,44,(2:36) (Shotgun) P.Rivers pass short middle to D.Alexander to DEN 30 for 14 yards (W.Woodyard).,16,30,2012 -20121118_SD@DEN,4,2,10,SD,DEN,1,10,30,(2:10) (Shotgun) P.Rivers pass incomplete short left to D.Alexander. PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at DEN 30 - No Play.,16,30,2012 -20121118_SD@DEN,4,2,5,SD,DEN,1,20,40,(2:05) (Shotgun) R.Brown up the middle to DEN 35 for 5 yards (V.Miller).,16,30,2012 -20121118_SD@DEN,4,2,0,SD,DEN,2,15,35,(2:00) PENALTY on SD-M.Harris False Start 5 yards enforced at DEN 35 - No Play.,16,30,2012 -20121118_SD@DEN,4,2,0,SD,DEN,2,20,40,(2:00) (Shotgun) P.Rivers pass deep middle to D.Alexander to DEN 22 for 18 yards (C.Bailey).,16,30,2012 -20121118_SD@DEN,4,1,36,SD,DEN,3,2,22,(1:36) (Shotgun) R.Brown up the middle to DEN 21 for 1 yard (V.Miller).,16,30,2012 -20121118_SD@DEN,4,1,29,SD,DEN,4,1,21,(1:29) (Shotgun) P.Rivers pass deep left to D.Alexander for 21 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,16,30,2012 -20121118_SD@DEN,4,1,29,SD,DEN,,,21,M.Scifres extra point is GOOD Center-M.Windt Holder-M.Scifres.,16,30,2012 -20121118_SD@DEN,4,1,29,SD,DEN,,,21,N.Novak kicks onside 14 yards from SD 35 to SD 49. V.Green (didn't try to advance) to SD 49 for no gain (C.Lynch).,23,30,2012 -20121118_SD@DEN,4,1,23,DEN,SD,1,10,49,(1:23) R.Hillman left guard to SD 49 for no gain (D.Butler).,30,23,2012 -20121118_SD@DEN,4,1,20,DEN,SD,2,10,49,(1:20) R.Hillman left tackle to SD 49 for no gain (K.Reyes).,30,23,2012 -20121118_SD@DEN,4,1,16,DEN,SD,3,10,49,(1:16) R.Hillman left end to 50 for -1 yards (J.Johnson).,30,23,2012 -20121118_SD@DEN,4,0,30,DEN,SD,4,11,50,(:30) (Pass formation) PENALTY on DEN-B.Colquitt Delay of Game 5 yards enforced at 50 - No Play.,30,23,2012 -20121118_SD@DEN,4,0,30,DEN,SD,4,16,55,(:30) B.Colquitt punts 42 yards to SD 13 Center-A.Brewer fair catch by A.Cason.,30,23,2012 -20121118_SD@DEN,4,0,23,SD,DEN,1,10,87,(:23) (Shotgun) P.Rivers pass short left to L.Green ran ob at SD 17 for 4 yards.,23,30,2012 -20121118_SD@DEN,4,0,17,SD,DEN,2,6,83,(:17) (Shotgun) P.Rivers sacked at SD 12 for -5 yards (E.Dumervil). FUMBLES (E.Dumervil) and recovers at SD 12. P.Rivers to SD 12 for no gain (E.Dumervil).,23,30,2012 -20121118_SD@DEN,4,0,17,SD,DEN,,,83,                      ,23,30,2012 -20121118_BAL@PIT,1,0,0,BAL,PIT,,,83,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20121118_BAL@PIT,1,60,0,PIT,BAL,1,10,80,(15:00) B.Leftwich pass incomplete deep left to M.Wallace. PENALTY on BLT-C.Williams Defensive Pass Interference 42 yards enforced at PIT 20 - No Play.,0,0,2012 -20121118_BAL@PIT,1,59,51,PIT,BAL,1,10,38,(14:51) D.Gilreath right end pushed ob at BLT 31 for 7 yards (C.Graham).,0,0,2012 -20121118_BAL@PIT,1,59,29,PIT,BAL,2,3,31,(14:29) B.Leftwich scrambles right end for 31 yards TOUCHDOWN.,0,0,2012 -20121118_BAL@PIT,1,59,29,PIT,BAL,,,31,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121118_BAL@PIT,1,59,29,PIT,BAL,,,31,S.Suisham kicks 56 yards from PIT 35 to BLT 9. J.Jones pushed ob at BLT 34 for 25 yards (C.Brown).,7,0,2012 -20121118_BAL@PIT,1,59,12,BAL,PIT,1,10,66,(14:12) J.Flacco pass incomplete deep right to T.Smith [B.Keisel]. Coverage by #25 Clark.,0,7,2012 -20121118_BAL@PIT,1,59,5,BAL,PIT,2,10,66,(14:05) R.Rice right tackle to BLT 37 for 3 yards (B.Keisel).,0,7,2012 -20121118_BAL@PIT,1,58,25,BAL,PIT,3,7,63,(13:25) (Shotgun) J.Flacco pass short right to D.Pitta to BLT 42 for 5 yards (R.Clark L.Timmons).,0,7,2012 -20121118_BAL@PIT,1,57,50,BAL,PIT,4,2,58,(12:50) (Punt formation) S.Koch punts 45 yards to PIT 13 Center-M.Cox. E.Sanders to PIT 14 for 1 yard (A.McClellan).,0,7,2012 -20121118_BAL@PIT,1,57,39,PIT,BAL,1,10,86,(12:39) R.Mendenhall up the middle to PIT 17 for 3 yards (C.Upshaw; H.Ngata).,7,0,2012 -20121118_BAL@PIT,1,57,1,PIT,BAL,2,7,83,(12:01) J.Dwyer left guard to PIT 27 for 10 yards (C.Graham). PENALTY on PIT-W.Colon Offensive Holding 8 yards enforced at PIT 17 - No Play.,7,0,2012 -20121118_BAL@PIT,1,56,32,PIT,BAL,2,15,91,(11:32) I.Redman right tackle to PIT 14 for 5 yards (J.McClain; H.Ngata).,7,0,2012 -20121118_BAL@PIT,1,55,46,PIT,BAL,3,10,86,(10:46) (Shotgun) B.Leftwich pass short middle to M.Wallace to PIT 29 for 15 yards (C.Johnson). FUMBLES (C.Johnson) RECOVERED by BLT-E.Reed at PIT 29. E.Reed to PIT 12 for 17 yards (E.Sanders).,7,0,2012 -20121118_BAL@PIT,1,55,31,BAL,PIT,1,10,12,(10:31) R.Rice right guard to PIT 14 for -2 yards (C.Hampton).,0,7,2012 -20121118_BAL@PIT,1,54,48,BAL,PIT,2,12,14,(9:48) R.Rice up the middle to PIT 13 for 1 yard (L.Woodley).,0,7,2012 -20121118_BAL@PIT,1,54,7,BAL,PIT,3,11,13,(9:07) (Shotgun) J.Flacco pass short right to R.Rice to PIT 8 for 5 yards (I.Taylor L.Foote).,0,7,2012 -20121118_BAL@PIT,1,53,26,BAL,PIT,4,6,8,(8:26) (Field Goal formation) J.Tucker 26 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,7,2012 -20121118_BAL@PIT,1,53,26,BAL,PIT,,,8,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,3,7,2012 -20121118_BAL@PIT,1,53,22,PIT,BAL,1,10,80,(8:22) B.Leftwich pass deep middle to E.Sanders to PIT 45 for 25 yards (B.Pollard).,7,3,2012 -20121118_BAL@PIT,1,52,40,PIT,BAL,1,10,55,(7:40) B.Leftwich pass incomplete short right to W.Johnson. Coverage by #50 McClellan.,7,3,2012 -20121118_BAL@PIT,1,52,33,PIT,BAL,2,10,55,(7:33) B.Leftwich pass incomplete short left to M.Wallace (C.Williams).,7,3,2012 -20121118_BAL@PIT,1,52,27,PIT,BAL,3,10,55,(7:27) (Shotgun) B.Leftwich sacked at PIT 38 for -7 yards (P.Kruger).,7,3,2012 -20121118_BAL@PIT,1,52,9,PIT,BAL,4,17,62,(7:09) (Punt formation) D.Butler punts 51 yards to BLT 11 Center-G.Warren. J.Jones to BLT 14 for 3 yards (C.Brown).,7,3,2012 -20121118_BAL@PIT,1,51,59,BAL,PIT,1,10,86,(6:59) J.Flacco pass short left to A.Boldin pushed ob at BLT 23 for 9 yards (K.Lewis).,3,7,2012 -20121118_BAL@PIT,1,51,39,BAL,PIT,2,1,77,(6:39) B.Pierce up the middle to BLT 27 for 4 yards (L.Foote L.Timmons).,3,7,2012 -20121118_BAL@PIT,1,51,13,BAL,PIT,1,10,73,(6:13) J.Flacco pass incomplete deep middle to T.Smith (I.Taylor).,3,7,2012 -20121118_BAL@PIT,1,51,5,BAL,PIT,2,10,73,(6:05) (Shotgun) J.Flacco pass incomplete short right to A.Boldin (L.Foote). PENALTY on PIT-J.Harrison Defensive Offside 5 yards enforced at BLT 27 - No Play.,3,7,2012 -20121118_BAL@PIT,1,51,1,BAL,PIT,2,5,68,(6:01) R.Rice right guard to BLT 34 for 2 yards (J.Harrison; B.Keisel).,3,7,2012 -20121118_BAL@PIT,1,50,23,BAL,PIT,3,3,66,(5:23) (Shotgun) J.Flacco pass incomplete short right to T.Smith. Coverage by #24 Taylor.,3,7,2012 -20121118_BAL@PIT,1,50,18,BAL,PIT,4,3,66,(5:18) (Punt formation) S.Koch punts 54 yards to PIT 12 Center-M.Cox fair catch by E.Sanders.,3,7,2012 -20121118_BAL@PIT,1,50,9,PIT,BAL,1,10,88,(5:09) PENALTY on PIT-J.Cotchery False Start 5 yards enforced at PIT 12 - No Play.,7,3,2012 -20121118_BAL@PIT,1,50,9,PIT,BAL,1,15,93,(5:09) J.Dwyer up the middle to PIT 10 for 3 yards (T.Suggs).,7,3,2012 -20121118_BAL@PIT,1,49,26,PIT,BAL,2,12,90,(4:26) J.Dwyer right guard to PIT 12 for 2 yards (M.Kemoeatu; D.Tyson).,7,3,2012 -20121118_BAL@PIT,1,48,41,PIT,BAL,3,10,88,(3:41) (Shotgun) B.Leftwich pass incomplete deep left to E.Sanders (P.Kruger).,7,3,2012 -20121118_BAL@PIT,1,48,33,PIT,BAL,4,10,88,(3:33) (Punt formation) D.Butler punts 51 yards to BLT 37 Center-G.Warren. J.Jones for 63 yards TOUCHDOWN.,7,3,2012 -20121118_BAL@PIT,1,48,33,BAL,PIT,,,88,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,7,2012 -20121118_BAL@PIT,1,48,33,BAL,PIT,,,88,J.Tucker kicks 70 yards from BLT 35 to PIT -5. C.Rainey to PIT 12 for 17 yards (A.McClellan).,10,7,2012 -20121118_BAL@PIT,1,48,10,PIT,BAL,1,10,88,(3:10) B.Leftwich pass short right to D.Paulson to PIT 18 for 6 yards (D.Ellerbe).,7,10,2012 -20121118_BAL@PIT,1,47,26,PIT,BAL,2,4,82,(2:26) R.Mendenhall left guard to PIT 21 for 3 yards (C.Upshaw; C.Graham).,7,10,2012 -20121118_BAL@PIT,1,46,44,PIT,BAL,3,1,79,(1:44) (Shotgun) B.Leftwich pass incomplete deep right to J.Cotchery. Coverage by #39 Johnson.,7,10,2012 -20121118_BAL@PIT,1,46,38,PIT,BAL,4,1,79,(1:38) (Punt formation) D.Butler punts 49 yards to BLT 30 Center-G.Warren out of bounds.,7,10,2012 -20121118_BAL@PIT,1,46,27,BAL,PIT,1,10,70,(1:27) R.Rice right end to BLT 29 for -1 yards (R.Clark). FUMBLES (R.Clark) ball out of bounds at BLT 29.,10,7,2012 -20121118_BAL@PIT,1,46,7,BAL,PIT,2,11,71,(1:07) (Shotgun) J.Flacco pass deep right to R.Rice to PIT 40 for 31 yards (L.Woodley).,10,7,2012 -20121118_BAL@PIT,1,45,32,BAL,PIT,3,9,29,(:32) J.Flacco pass short right to [] to PIT 29 for no gain.,10,7,2012 -20121118_BAL@PIT,1,45,32,BAL,PIT,1,10,29,(:32) J.Flacco pass short right to A.Boldin to PIT 20 for 9 yards (K.Lewis).,10,7,2012 -20121118_BAL@PIT,2,45,0,BAL,PIT,2,1,20,(15:00) R.Rice up the middle to PIT 19 for 1 yard (J.Harrison K.Lewis). Official measurement.,10,7,2012 -20121118_BAL@PIT,2,44,34,BAL,PIT,1,10,19,(14:34) J.Flacco pass incomplete short left to T.Smith (R.Mundy).,10,7,2012 -20121118_BAL@PIT,2,44,29,BAL,PIT,2,10,19,(14:29) PENALTY on BLT-J.Reid False Start 5 yards enforced at PIT 19 - No Play.,10,7,2012 -20121118_BAL@PIT,2,44,29,BAL,PIT,2,15,27,(14:29) (Shotgun) J.Flacco FUMBLES (Aborted) at PIT 27 and recovers at PIT 27. J.Flacco pass incomplete short left to T.Smith.,10,7,2012 -20121118_BAL@PIT,2,44,26,BAL,PIT,3,15,24,(14:26) (Shotgun) J.Flacco pass short left to E.Dickson to PIT 22 for 2 yards (L.Timmons).,10,7,2012 -20121118_BAL@PIT,2,44,8,BAL,PIT,4,13,22,(14:08) (Field Goal formation) J.Tucker 41 yard field goal is No Good Wide Right Center-M.Cox Holder-S.Koch.,10,7,2012 -20121118_BAL@PIT,2,44,3,PIT,BAL,1,10,69,(14:03) R.Mendenhall up the middle to PIT 33 for 2 yards (A.Jones D.Ellerbe).,7,10,2012 -20121118_BAL@PIT,2,43,22,PIT,BAL,2,8,67,(13:22) B.Leftwich pass deep right to H.Miller to PIT 49 for 16 yards (J.McClain).,7,10,2012 -20121118_BAL@PIT,2,42,37,PIT,BAL,1,10,51,(12:37) J.Dwyer up the middle to BLT 45 for 6 yards (B.Pollard).,7,10,2012 -20121118_BAL@PIT,2,41,56,PIT,BAL,2,4,45,(11:56) B.Leftwich pass short left to E.Sanders to BLT 46 for -1 yards (D.Ellerbe B.Pollard). PENALTY on PIT-J.Cotchery Illegal Block Above the Waist 10 yards enforced at BLT 45 - No Play.,7,10,2012 -20121118_BAL@PIT,2,41,28,PIT,BAL,2,14,55,(11:28) B.Leftwich pass incomplete short right to W.Johnson (A.McClellan).,7,10,2012 -20121118_BAL@PIT,2,41,23,PIT,BAL,3,14,55,(11:23) (Shotgun) B.Leftwich pass incomplete deep left to E.Sanders. Coverage by #20 Reed,7,10,2012 -20121118_BAL@PIT,2,41,15,PIT,BAL,4,14,55,(11:15) (Punt formation) D.Butler punts 35 yards to BLT 20 Center-G.Warren fair catch by J.Jones.,7,10,2012 -20121118_BAL@PIT,2,41,7,BAL,PIT,1,10,80,(11:07) B.Pierce right guard to BLT 24 for 4 yards (I.Taylor).,10,7,2012 -20121118_BAL@PIT,2,40,26,BAL,PIT,2,6,76,(10:26) (Shotgun) R.Rice up the middle to BLT 26 for 2 yards (L.Timmons B.Keisel).,10,7,2012 -20121118_BAL@PIT,2,39,47,BAL,PIT,3,4,74,(9:47) (Shotgun) J.Flacco pass short left to R.Rice to BLT 31 for 5 yards (C.Allen L.Foote).,10,7,2012 -20121118_BAL@PIT,2,39,7,BAL,PIT,1,10,69,(9:07) J.Flacco pass short right to A.Boldin to BLT 42 for 11 yards (K.Lewis). Penalty on PIT-K.Lewis Defensive Holding declined.,10,7,2012 -20121118_BAL@PIT,2,38,39,BAL,PIT,1,10,58,(8:39) J.Flacco pass short right to A.Boldin to BLT 44 for 2 yards (K.Lewis).,10,7,2012 -20121118_BAL@PIT,2,37,58,BAL,PIT,2,8,56,(7:58) R.Rice right tackle to BLT 48 for 4 yards (I.Taylor L.Foote). PENALTY on BLT-B.Bajema Offensive Holding 10 yards enforced at BLT 44 - No Play.,10,7,2012 -20121118_BAL@PIT,2,37,30,BAL,PIT,2,18,66,(7:30) (Shotgun) J.Flacco pass short left to J.Jones to BLT 38 for 4 yards (K.Lewis).,10,7,2012 -20121118_BAL@PIT,2,36,48,BAL,PIT,3,14,62,(6:48) (Shotgun) J.Flacco pass short right to J.Jones to BLT 35 for -3 yards (K.Lewis L.Timmons).,10,7,2012 -20121118_BAL@PIT,2,36,18,BAL,PIT,4,17,65,(6:18) (Punt formation) S.Koch punts 44 yards to PIT 21 Center-M.Cox downed by BLT-J.Bynes.,10,7,2012 -20121118_BAL@PIT,2,36,5,PIT,BAL,1,10,79,(6:05) B.Leftwich pass incomplete short right to D.Paulson.,7,10,2012 -20121118_BAL@PIT,2,35,57,PIT,BAL,2,10,79,(5:57) B.Leftwich pass short right to M.Wallace to PIT 30 for 9 yards (C.Graham).,7,10,2012 -20121118_BAL@PIT,2,35,19,PIT,BAL,3,1,70,(5:19) J.Dwyer up the middle to PIT 30 for no gain (D.Ellerbe; A.Jones).,7,10,2012 -20121118_BAL@PIT,2,34,47,PIT,BAL,4,1,70,(4:47) (Punt formation) D.Butler punts 42 yards to BLT 28 Center-G.Warren fair catch by J.Jones.,7,10,2012 -20121118_BAL@PIT,2,34,39,BAL,PIT,1,10,72,(4:39) J.Flacco pass short right to A.Boldin to BLT 35 for 7 yards (W.Allen).,10,7,2012 -20121118_BAL@PIT,2,34,4,BAL,PIT,2,3,65,(4:04) R.Rice right tackle to BLT 39 for 4 yards (B.Keisel R.Clark).,10,7,2012 -20121118_BAL@PIT,2,33,33,BAL,PIT,1,10,61,(3:33) R.Rice left tackle to BLT 39 for no gain (C.Hampton; L.Timmons).,10,7,2012 -20121118_BAL@PIT,2,33,0,BAL,PIT,2,10,61,(3:00) J.Flacco pass incomplete short right to A.Boldin.,10,7,2012 -20121118_BAL@PIT,2,32,55,BAL,PIT,3,10,61,(2:55) (Shotgun) J.Flacco pass short left to A.Boldin to PIT 47 for 14 yards (C.Allen).,10,7,2012 -20121118_BAL@PIT,2,32,24,BAL,PIT,1,10,47,(2:24) (Shotgun) J.Flacco pass incomplete short left to T.Smith. Coverage by #25 Clark.,10,7,2012 -20121118_BAL@PIT,2,32,20,BAL,PIT,2,10,47,(2:20) (Shotgun) R.Rice left tackle to PIT 44 for 3 yards (L.Timmons J.Harrison).,10,7,2012 -20121118_BAL@PIT,2,32,0,BAL,PIT,3,7,44,(2:00) (Shotgun) J.Flacco pass short right to A.Boldin to PIT 40 for 4 yards (L.Foote L.Timmons).,10,7,2012 -20121118_BAL@PIT,2,31,27,BAL,PIT,4,3,40,(1:27) (Punt formation) S.Koch punts 40 yards to end zone Center-M.Cox Touchback.,10,7,2012 -20121118_BAL@PIT,2,31,23,PIT,BAL,1,10,80,(1:23) (Shotgun) J.Dwyer left tackle pushed ob at PIT 24 for 4 yards (D.Ellerbe).,7,10,2012 -20121118_BAL@PIT,2,31,17,PIT,BAL,2,6,76,(1:17) (Shotgun) B.Leftwich pass short right to J.Dwyer to PIT 27 for 3 yards (D.Ellerbe).,7,10,2012 -20121118_BAL@PIT,2,30,45,PIT,BAL,3,3,73,(:45) (Shotgun) B.Leftwich pass short left to J.Cotchery ran ob at PIT 38 for 11 yards.,7,10,2012 -20121118_BAL@PIT,2,30,39,PIT,BAL,1,10,62,(:39) (Shotgun) B.Leftwich pass incomplete short right to H.Miller [T.Suggs]. Coverage by #53 McClain.,7,10,2012 -20121118_BAL@PIT,2,30,39,PIT,BAL,2,10,62,(:39) (Shotgun) B.Leftwich pass incomplete short middle to C.Rainey. Coverage by #59 Ellerbe.,7,10,2012 -20121118_BAL@PIT,2,30,25,PIT,BAL,3,10,62,(:25) (Shotgun) B.Leftwich pass incomplete short right to E.Sanders. Coverage by #24 Graham.,7,10,2012 -20121118_BAL@PIT,2,30,21,PIT,BAL,4,10,62,(:21) (Punt formation) D.Butler punts 47 yards to BLT 15 Center-G.Warren fair catch by J.Jones.,7,10,2012 -20121118_BAL@PIT,2,30,12,BAL,PIT,1,10,85,(:12) J.Flacco kneels to BLT 14 for -1 yards.,10,7,2012 -20121118_BAL@PIT,3,30,0,PIT,BAL,,,85,S.Suisham kicks 68 yards from PIT 35 to BLT -3. J.Jones to BLT 30 for 33 yards (M.McFadden; D.Paulson).,7,10,2012 -20121118_BAL@PIT,3,29,54,BAL,PIT,1,10,70,(14:54) R.Rice up the middle to BLT 38 for 8 yards (C.Heyward).,10,7,2012 -20121118_BAL@PIT,3,29,23,BAL,PIT,2,2,62,(14:23) R.Rice up the middle to BLT 39 for 1 yard (L.Foote).,10,7,2012 -20121118_BAL@PIT,3,28,41,BAL,PIT,3,1,61,(13:41) R.Rice up the middle to BLT 39 for no gain (L.Woodley K.Lewis).,10,7,2012 -20121118_BAL@PIT,3,28,6,BAL,PIT,4,1,61,(13:06) (Punt formation) S.Koch punts 46 yards to PIT 15 Center-M.Cox fair catch by E.Sanders.,10,7,2012 -20121118_BAL@PIT,3,27,58,PIT,BAL,1,10,85,(12:58) R.Mendenhall right guard to PIT 19 for 4 yards (M.Kemoeatu; J.McClain).,7,10,2012 -20121118_BAL@PIT,3,27,33,PIT,BAL,2,6,81,(12:33) (No Huddle) R.Mendenhall up the middle to PIT 23 for 4 yards (T.Suggs; H.Ngata).,7,10,2012 -20121118_BAL@PIT,3,26,51,PIT,BAL,3,2,77,(11:51) B.Leftwich pass deep left to E.Sanders to BLT 40 for 37 yards (C.Williams; C.Graham).,7,10,2012 -20121118_BAL@PIT,3,26,5,PIT,BAL,1,10,40,(11:05) J.Dwyer left guard to BLT 39 for 1 yard (A.McClellan D.Ellerbe).,7,10,2012 -20121118_BAL@PIT,3,25,25,PIT,BAL,2,9,39,(10:25) J.Dwyer right tackle to BLT 38 for 1 yard (D.Tyson J.McClain).,7,10,2012 -20121118_BAL@PIT,3,24,40,PIT,BAL,3,8,38,(9:40) (Shotgun) B.Leftwich pass deep left intended for E.Sanders INTERCEPTED by C.Graham at BLT 18. C.Graham to BLT 38 for 20 yards (M.Pouncey).,7,10,2012 -20121118_BAL@PIT,3,24,27,BAL,PIT,1,10,62,(9:27) J.Flacco pass deep left to A.Boldin to PIT 39 for 23 yards (K.Lewis).,10,7,2012 -20121118_BAL@PIT,3,24,6,BAL,PIT,1,10,39,(9:06) (No Huddle) R.Rice left tackle to PIT 35 for 4 yards (R.Clark).,10,7,2012 -20121118_BAL@PIT,3,23,30,BAL,PIT,2,6,35,(8:30) J.Flacco pass incomplete deep left to A.Boldin. Coverage by #23 Lewis #26 Allen. Pressure by #50 Foote.,10,7,2012 -20121118_BAL@PIT,3,23,23,BAL,PIT,3,6,35,(8:23) (Shotgun) J.Flacco pass short middle to R.Rice to PIT 27 for 8 yards (R.Clark).,10,7,2012 -20121118_BAL@PIT,3,22,46,BAL,PIT,1,10,27,(7:46) (No Huddle Shotgun) J.Flacco pass short left to E.Dickson to PIT 21 for 6 yards (L.Foote).,10,7,2012 -20121118_BAL@PIT,3,22,6,BAL,PIT,2,4,21,(7:06) J.Flacco pass incomplete deep left to A.Boldin (K.Lewis).,10,7,2012 -20121118_BAL@PIT,3,22,1,BAL,PIT,3,4,21,(7:01) (Shotgun) J.Flacco pass incomplete short right to J.Jones (K.Lewis).,10,7,2012 -20121118_BAL@PIT,3,21,55,BAL,PIT,4,4,21,(6:55) (Field Goal formation) J.Tucker 39 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,10,7,2012 -20121118_BAL@PIT,3,21,55,BAL,PIT,,,21,J.Tucker kicks 68 yards from BLT 35 to PIT -3. C.Rainey to PIT 16 for 19 yards (J.Ihedigbo).,13,7,2012 -20121118_BAL@PIT,3,21,41,PIT,BAL,1,10,84,(6:41) B.Leftwich pass short right to R.Mendenhall to PIT 12 for -4 yards (B.Pollard).,7,13,2012 -20121118_BAL@PIT,3,20,58,PIT,BAL,2,14,88,(5:58) (Shotgun) B.Leftwich pass short right to J.Dwyer to PIT 27 for 15 yards (C.Graham).,7,13,2012 -20121118_BAL@PIT,3,20,14,PIT,BAL,1,10,73,(5:14) J.Dwyer up the middle to PIT 34 for 7 yards (C.Graham).,7,13,2012 -20121118_BAL@PIT,3,19,38,PIT,BAL,2,3,66,(4:38) J.Dwyer right tackle to PIT 45 for 11 yards (D.Ellerbe).,7,13,2012 -20121118_BAL@PIT,3,18,58,PIT,BAL,1,10,55,(3:58) R.Mendenhall left tackle to PIT 49 for 4 yards (J.McClain).,7,13,2012 -20121118_BAL@PIT,3,18,16,PIT,BAL,2,6,51,(3:16) R.Mendenhall right end to BLT 46 for 5 yards (T.Suggs; C.Graham).,7,13,2012 -20121118_BAL@PIT,3,17,46,PIT,BAL,3,1,46,(2:46) B.Batch right guard to BLT 43 for 3 yards (J.McClain).,7,13,2012 -20121118_BAL@PIT,3,17,6,PIT,BAL,1,10,43,(2:06) B.Leftwich pass deep left to E.Sanders to BLT 23 for 20 yards (E.Reed). PENALTY on BLT-E.Reed Unnecessary Roughness 11 yards enforced at BLT 23.,7,13,2012 -20121118_BAL@PIT,3,16,39,PIT,BAL,1,10,12,(1:39) (Shotgun) B.Leftwich pass incomplete short right to J.Cotchery (C.Graham).,7,13,2012 -20121118_BAL@PIT,3,16,30,PIT,BAL,2,10,12,(1:30) J.Dwyer left guard to BLT 4 for 8 yards (D.Ellerbe).,7,13,2012 -20121118_BAL@PIT,3,15,44,PIT,BAL,3,2,4,(:44) B.Leftwich pass incomplete short right to M.Wallace. Coverage by #24 Graham.,7,13,2012 -20121118_BAL@PIT,3,15,37,PIT,BAL,4,2,4,(:37) (Field Goal formation) S.Suisham 22 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,7,13,2012 -20121118_BAL@PIT,3,15,37,PIT,BAL,,,4,S.Suisham kicks 47 yards from PIT 35 to BLT 18. A.Allen to BLT 36 for 18 yards (C.Brown).,10,13,2012 -20121118_BAL@PIT,3,15,28,BAL,PIT,1,10,64,(:28) J.Flacco pass incomplete short right to A.Boldin. Coverage by #24 Taylor.,13,10,2012 -20121118_BAL@PIT,3,15,23,BAL,PIT,2,10,64,(:23) R.Rice up the middle to BLT 38 for 2 yards (J.Harrison B.Keisel).,13,10,2012 -20121118_BAL@PIT,4,15,0,BAL,PIT,3,8,62,(15:00) (Shotgun) J.Flacco sacked at BLT 30 for -8 yards (L.Woodley).,13,10,2012 -20121118_BAL@PIT,4,14,33,BAL,PIT,4,16,70,(14:33) (Punt formation) S.Koch punts 47 yards to PIT 23 Center-M.Cox. E.Sanders to PIT 30 for 7 yards (A.Allen B.Ayanbadejo).,13,10,2012 -20121118_BAL@PIT,4,14,21,PIT,BAL,1,10,70,(14:21) B.Leftwich pass short left to R.Mendenhall to PIT 39 for 9 yards (D.Ellerbe).,10,13,2012 -20121118_BAL@PIT,4,13,37,PIT,BAL,2,1,61,(13:37) R.Mendenhall up the middle to PIT 43 for 4 yards (C.Upshaw B.Pollard).,10,13,2012 -20121118_BAL@PIT,4,12,56,PIT,BAL,1,10,57,(12:56) B.Leftwich pass short middle to M.Wallace to PIT 45 for 2 yards (J.McClain).,10,13,2012 -20121118_BAL@PIT,4,12,9,PIT,BAL,2,8,55,(12:09) B.Leftwich pass incomplete short right to H.Miller. Pressure by #53 McClain.,10,13,2012 -20121118_BAL@PIT,4,12,2,PIT,BAL,3,8,55,(12:02) (Shotgun) B.Leftwich pass short middle to J.Dwyer to BLT 48 for 7 yards (E.Reed) [B.Hall]. Official measurement. Pittsburgh challenged the runner broke the plane ruling and the play was REVERSED. (Shotgun) B.Leftwich pass short middle to J.Dwyer to BLT 47 for 8 yards (E.Reed) [B.Hall]. Official measurement.,10,13,2012 -20121118_BAL@PIT,4,11,30,PIT,BAL,1,10,47,(11:30) R.Mendenhall up the middle to BLT 46 for 1 yard (H.Ngata).,10,13,2012 -20121118_BAL@PIT,4,10,52,PIT,BAL,2,9,46,(10:52) B.Leftwich pass incomplete deep right to W.Johnson.,10,13,2012 -20121118_BAL@PIT,4,10,44,PIT,BAL,3,9,46,(10:44) (Shotgun) B.Leftwich sacked at PIT 44 for -10 yards (H.Ngata).,10,13,2012 -20121118_BAL@PIT,4,10,26,PIT,BAL,4,19,56,(10:26) (Punt formation) D.Butler punts 45 yards to BLT 11 Center-G.Warren. T.Doss to BLT 19 for 8 yards (R.Mundy).,10,13,2012 -20121118_BAL@PIT,4,10,13,BAL,PIT,1,10,81,(10:13) J.Flacco pass short middle to R.Rice to BLT 23 for 4 yards (L.Foote) [L.Woodley].,13,10,2012 -20121118_BAL@PIT,4,9,36,BAL,PIT,2,6,77,(9:36) R.Rice right tackle to BLT 27 for 4 yards (C.Heyward L.Timmons).,13,10,2012 -20121118_BAL@PIT,4,8,54,BAL,PIT,3,2,73,(8:54) (Shotgun) J.Flacco pass incomplete short right to J.Jones. Coverage by #23 Lewis.,13,10,2012 -20121118_BAL@PIT,4,8,49,BAL,PIT,4,2,73,(8:49) (Punt formation) S.Koch punts 52 yards to PIT 21 Center-M.Cox. E.Sanders to PIT 25 for 4 yards (B.Ayanbadejo J.Bynes).,13,10,2012 -20121118_BAL@PIT,4,8,36,PIT,BAL,1,10,75,(8:36) (Shotgun) B.Leftwich pass short right to J.Cotchery pushed ob at PIT 36 for 11 yards (C.Brown).,10,13,2012 -20121118_BAL@PIT,4,8,8,PIT,BAL,1,10,64,(8:08) J.Dwyer up the middle to PIT 43 for 7 yards (J.McClain B.Pollard).,10,13,2012 -20121118_BAL@PIT,4,7,28,PIT,BAL,2,3,57,(7:28) J.Dwyer up the middle to PIT 48 for 5 yards (A.Jones; C.Graham).,10,13,2012 -20121118_BAL@PIT,4,6,47,PIT,BAL,1,10,52,(6:47) R.Mendenhall left guard to BLT 48 for 4 yards (D.Ellerbe; A.Jones).,10,13,2012 -20121118_BAL@PIT,4,6,5,PIT,BAL,2,6,48,(6:05) (Shotgun) B.Leftwich pass incomplete short left to R.Mendenhall. Coverage by #31 Pollard Pressure by #99 Kruger.,10,13,2012 -20121118_BAL@PIT,4,6,0,PIT,BAL,3,6,48,(6:00) (Shotgun) B.Leftwich pass short right to H.Miller to BLT 42 for 6 yards (D.Ellerbe).,10,13,2012 -20121118_BAL@PIT,4,5,27,PIT,BAL,1,10,42,(5:27) R.Mendenhall right guard to BLT 43 for -1 yards (D.Ellerbe).,10,13,2012 -20121118_BAL@PIT,4,4,47,PIT,BAL,2,11,43,(4:47) (Shotgun) B.Leftwich pass incomplete short left to M.Wallace. Coverage by #20 Reid.,10,13,2012 -20121118_BAL@PIT,4,4,41,PIT,BAL,3,11,43,(4:41) (Shotgun) B.Leftwich sacked at 50 for -7 yards (J.Ihedigbo).,10,13,2012 -20121118_BAL@PIT,4,4,21,PIT,BAL,4,18,50,(4:21) (Punt formation) D.Butler punts 37 yards to BLT 13 Center-G.Warren fair catch by J.Jones.,10,13,2012 -20121118_BAL@PIT,4,4,13,BAL,PIT,1,10,87,(4:13) J.Flacco pass short left to T.Smith to BLT 20 for 7 yards (J.Harrison).,13,10,2012 -20121118_BAL@PIT,4,3,35,BAL,PIT,2,3,80,(3:35) R.Rice right tackle to BLT 24 for 4 yards (B.Keisel C.Hampton).,13,10,2012 -20121118_BAL@PIT,4,2,55,BAL,PIT,1,10,76,(2:55) R.Rice right tackle to BLT 25 for 1 yard (J.Harrison). PENALTY on PIT-L.Foote Tripping 10 yards enforced at BLT 25.,13,10,2012 -20121118_BAL@PIT,4,2,51,BAL,PIT,1,10,65,(2:51) R.Rice right tackle to BLT 38 for 3 yards (L.Woodley C.Hampton).,13,10,2012 -20121118_BAL@PIT,4,2,9,BAL,PIT,2,7,62,(2:09) R.Rice right tackle to BLT 38 for no gain (J.Harrison).,13,10,2012 -20121118_BAL@PIT,4,2,4,BAL,PIT,3,7,62,(2:04) (Shotgun) J.Flacco sacked at BLT 33 for -5 yards (J.Harrison). PENALTY on PIT-B.Keisel Defensive Offside 5 yards enforced at BLT 38 - No Play.,13,10,2012 -20121118_BAL@PIT,4,2,0,BAL,PIT,3,2,57,(2:00) (Shotgun) J.Flacco sacked at BLT 40 for -3 yards (J.Harrison).,13,10,2012 -20121118_BAL@PIT,4,1,12,BAL,PIT,4,5,60,(1:12) (Punt formation) S.Koch punts 44 yards to PIT 16 Center-M.Cox fair catch by E.Sanders.,13,10,2012 -20121118_BAL@PIT,4,1,5,PIT,BAL,1,10,84,(1:05) (Shotgun) B.Leftwich pass incomplete deep right to E.Sanders. Coverage by #23 Brown.,10,13,2012 -20121118_BAL@PIT,4,1,0,PIT,BAL,2,10,84,(1:00) (Shotgun) B.Leftwich pass short right to R.Mendenhall to PIT 28 for 12 yards (J.McClain).,10,13,2012 -20121118_BAL@PIT,4,0,35,PIT,BAL,1,10,72,(:35) (Shotgun) B.Leftwich pass incomplete deep middle to H.Miller (C.Graham).,10,13,2012 -20121118_BAL@PIT,4,0,27,PIT,BAL,2,10,72,(:27) (Shotgun) B.Leftwich pass incomplete deep right to J.Cotchery (B.Pollard). PIT-J.Cotchery was injured during the play.,10,13,2012 -20121118_BAL@PIT,4,0,22,PIT,BAL,3,10,79,(:22) (Shotgun) B.Leftwich FUMBLES (Aborted) at PIT 21 and recovers at PIT 21. B.Leftwich pass incomplete deep middle to D.Gilreath.,10,13,2012 -20121118_BAL@PIT,4,0,12,PIT,BAL,4,10,72,(:12) (Shotgun) B.Leftwich pass short left to M.Wallace to PIT 28 for no gain. Lateral to W.Colon to PIT 26 for -2 yards. Lateral to M.Starks to PIT 23 for -3 yards (P.Kruger). FUMBLES (P.Kruger) RECOVERED by BLT-C.Upshaw at PIT 31. C.Upshaw to PIT 26 for 5 yards (M.Starks).,10,13,2012 -20121118_BAL@PIT,4,0,12,PIT,BAL,,,72,                      ,10,13,2012 -20121119_CHI@SF,1,0,0,CHI,SF,,,72,R.Gould kicks 66 yards from CHI 35 to SF -1. T.Ginn to SF 18 for 19 yards (G.Hayes).,0,0,2012 -20121119_CHI@SF,1,59,55,SF,CHI,1,10,82,(14:55) C.Kaepernick pass short left to M.Manningham ran ob at SF 26 for 8 yards. PENALTY on CHI-C.Conte Unnecessary Roughness 15 yards enforced at SF 26. Caught at SF 26. 0-yds YAC,0,0,2012 -20121119_CHI@SF,1,59,23,SF,CHI,1,10,59,(14:23) F.Gore right end to SF 42 for 1 yard (T.Jennings).,0,0,2012 -20121119_CHI@SF,1,58,46,SF,CHI,2,9,58,(13:46) L.Davis reported in as eligible. C.Kaepernick pass deep left to V.Davis pushed ob at CHI 36 for 22 yards (M.Wright). Caught at SF 37. 1-yd YAC,0,0,2012 -20121119_CHI@SF,1,58,17,SF,CHI,1,10,36,(13:17) D.Kilgore and L.Davis reported in as eligible. F.Gore up the middle to CHI 35 for 1 yard (J.Peppers B.Urlacher).,0,0,2012 -20121119_CHI@SF,1,57,40,SF,CHI,2,9,35,(12:40) C.Kaepernick pass short right to V.Davis to CHI 23 for 12 yards (C.Tillman L.Briggs). Caught at CHI 27. 4-yds YAC,0,0,2012 -20121119_CHI@SF,1,56,57,SF,CHI,1,10,23,(11:57) D.Kilgore reported in as eligible. K.Hunter right end to CHI 17 for 6 yards (M.Wright).,0,0,2012 -20121119_CHI@SF,1,56,24,SF,CHI,2,4,17,(11:24) (Shotgun) C.Kaepernick pass short left to K.Williams to CHI 14 for 3 yards (C.Tillman). Caught at CHI 16. 2-yds YAC,0,0,2012 -20121119_CHI@SF,1,55,43,SF,CHI,3,1,14,(10:43) C.Kaepernick pass incomplete short right to V.Davis.,0,0,2012 -20121119_CHI@SF,1,55,37,SF,CHI,4,1,14,(10:37) D.Akers 32 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121119_CHI@SF,1,55,37,SF,CHI,,,14,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,3,0,2012 -20121119_CHI@SF,1,55,32,CHI,SF,1,10,80,(10:32) J.Scott reported in as eligible. M.Forte left guard to CHI 24 for 4 yards (N.Bowman).,0,3,2012 -20121119_CHI@SF,1,55,1,CHI,SF,2,6,76,(10:01) M.Forte right tackle to CHI 28 for 4 yards (R.McDonald).,0,3,2012 -20121119_CHI@SF,1,54,15,CHI,SF,3,2,72,(9:15) (Shotgun) J.Campbell sacked at CHI 18 for -10 yards (Ald.Smith).,0,3,2012 -20121119_CHI@SF,1,53,39,CHI,SF,4,12,82,(8:39) A.Podlesh punts 37 yards to SF 45 Center-P.Mannelly. T.Ginn to SF 49 for 4 yards (Z.Bowman). PENALTY on SF-D.Dobbs Offensive Holding 10 yards enforced at SF 47. T.Ginn credited with 2-yd return.,0,3,2012 -20121119_CHI@SF,1,53,30,SF,CHI,1,10,63,(8:30) C.Kaepernick pass short left to D.Walker to SF 46 for 9 yards (M.Wright). Caught at SF 44. 2-yds YAC,3,0,2012 -20121119_CHI@SF,1,52,52,SF,CHI,2,1,54,(7:52) D.Kilgore and L.Davis reported in as eligible. F.Gore up the middle to SF 40 for -6 yards (S.Paea B.Urlacher).,3,0,2012 -20121119_CHI@SF,1,52,8,SF,CHI,3,7,60,(7:08) (Shotgun) C.Kaepernick pass deep right to K.Williams to CHI 3 for 57 yards (C.Conte). Caught at CHI 27. 24-yds YAC,3,0,2012 -20121119_CHI@SF,1,51,19,SF,CHI,1,3,3,(6:19) C.Kaepernick pass short right to V.Davis for 3 yards TOUCHDOWN.,3,0,2012 -20121119_CHI@SF,1,51,19,SF,CHI,,,3,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,0,2012 -20121119_CHI@SF,1,51,19,SF,CHI,,,3,D.Akers kicks 68 yards from SF 35 to CHI -3. D.Hester to CHI 19 for 22 yards (T.Gooden).,10,0,2012 -20121119_CHI@SF,1,51,9,CHI,SF,1,10,81,(6:09) M.Forte right guard to CHI 26 for 7 yards (P.Willis).,0,10,2012 -20121119_CHI@SF,1,50,33,CHI,SF,2,3,74,(5:33) M.Forte right tackle to CHI 30 for 4 yards (P.Willis).,0,10,2012 -20121119_CHI@SF,1,49,54,CHI,SF,1,10,70,(4:54) J.Campbell pass short left to A.Jeffery to CHI 39 for 9 yards (T.Brown). Caught at CHI 37. 2-yds YAC,0,10,2012 -20121119_CHI@SF,1,49,12,CHI,SF,2,1,61,(4:12) M.Forte up the middle to CHI 39 for no gain (I.Sopoaga).,0,10,2012 -20121119_CHI@SF,1,48,29,CHI,SF,3,1,61,(3:29) J.Scott reported in as eligible. M.Forte right tackle to CHI 42 for 3 yards (N.Bowman).,0,10,2012 -20121119_CHI@SF,1,47,46,CHI,SF,1,10,58,(2:46) J.Campbell pass incomplete short left to E.Rodriguez (P.Willis).,0,10,2012 -20121119_CHI@SF,1,47,40,CHI,SF,2,10,58,(2:40) M.Bush right end to CHI 43 for 1 yard (R.McDonald J.Smith).,0,10,2012 -20121119_CHI@SF,1,46,57,CHI,SF,3,9,57,(1:57) (Shotgun) J.Campbell pass incomplete short middle to M.Forte (P.Willis).,0,10,2012 -20121119_CHI@SF,1,46,52,CHI,SF,4,9,57,(1:52) A.Podlesh punts 53 yards to SF 4 Center-P.Mannelly downed by CHI-B.Costanzo.,0,10,2012 -20121119_CHI@SF,1,46,40,SF,CHI,1,10,96,(1:40) F.Gore right guard to SF 17 for 13 yards (C.Conte).,10,0,2012 -20121119_CHI@SF,1,45,54,SF,CHI,1,10,83,(:54) C.Kaepernick pass short left to R.Moss to SF 29 for 12 yards (C.Tillman). Caught at SF 28. 1-yd YAC,10,0,2012 -20121119_CHI@SF,1,45,15,SF,CHI,1,10,71,(:15) F.Gore left tackle to SF 36 for 7 yards (J.Peppers).,10,0,2012 -20121119_CHI@SF,2,45,0,SF,CHI,2,3,64,(15:00) (Shotgun) C.Kaepernick pass deep left to V.Davis to CHI 32 for 32 yards (C.Conte). Caught at CHI 45. 13-yds YAC,10,0,2012 -20121119_CHI@SF,2,44,16,SF,CHI,1,10,32,(14:16) F.Gore right guard to CHI 19 for 13 yards (M.Wright).,10,0,2012 -20121119_CHI@SF,2,43,38,SF,CHI,1,10,19,(13:38) C.Kaepernick pass incomplete short left to R.Moss.,10,0,2012 -20121119_CHI@SF,2,43,33,SF,CHI,2,10,19,(13:33) C.Kaepernick pass incomplete deep left to D.Walker. PENALTY on CHI-M.Wright Defensive Holding 5 yards enforced at CHI 19 - No Play.,10,0,2012 -20121119_CHI@SF,2,43,28,SF,CHI,1,10,14,(13:28) D.Kilgore and L.Davis reported in as eligible. F.Gore right end to CHI 14 for no gain (T.Jennings).,10,0,2012 -20121119_CHI@SF,2,42,47,SF,CHI,2,10,14,(12:47) (Shotgun) K.Hunter up the middle for 14 yards TOUCHDOWN.,10,0,2012 -20121119_CHI@SF,2,42,47,,SF,,,14,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,10,2012 -20121119_CHI@SF,2,42,47,SF,CHI,,,14,D.Akers kicks 65 yards from SF 35 to CHI 0. D.Hester pushed ob at CHI 26 for 26 yards (P.Cox). PENALTY on SF-C.Spillman Unnecessary Roughness 15 yards enforced at CHI 26.,17,0,2012 -20121119_CHI@SF,2,42,34,CHI,SF,1,10,59,(12:34) J.Campbell sacked at CHI 35 for -6 yards (Ald.Smith). FUMBLES (Ald.Smith) [Ald.Smith] and recovers at CHI 35. J.Campbell to CHI 35 for no gain (Ald.Smith).,0,17,2012 -20121119_CHI@SF,2,42,5,CHI,SF,2,16,65,(12:05) M.Forte left tackle to CHI 39 for 4 yards (N.Bowman).,0,17,2012 -20121119_CHI@SF,2,41,25,CHI,SF,3,12,61,(11:25) (Shotgun) J.Campbell pass short left intended for D.Hester INTERCEPTED by T.Brown [J.Smith] at CHI 49. T.Brown to CHI 44 for 5 yards (D.Hester).,0,17,2012 -20121119_CHI@SF,2,41,19,SF,CHI,1,10,44,(11:19) F.Gore up the middle to CHI 30 for 14 yards (C.Conte).,17,0,2012 -20121119_CHI@SF,2,40,40,SF,CHI,1,10,30,(10:40) F.Gore up the middle to CHI 27 for 3 yards (T.Jennings S.Paea).,17,0,2012 -20121119_CHI@SF,2,40,3,SF,CHI,2,7,27,(10:03) K.Hunter sacked at CHI 31 for -4 yards (sack split by N.Roach and L.Briggs). K.Hunter on a HB pass attempt.,17,0,2012 -20121119_CHI@SF,2,39,14,SF,CHI,3,11,31,(9:14) (Shotgun) C.Kaepernick pass short right to M.Crabtree to CHI 11 for 20 yards (T.Jennings). Caught at CHI 27. 16-yds YAC,17,0,2012 -20121119_CHI@SF,2,38,36,SF,CHI,1,10,11,(8:36) D.Kilgore and L.Davis reported in as eligible. F.Gore right end to CHI 15 for -4 yards (B.Urlacher).,17,0,2012 -20121119_CHI@SF,2,37,49,SF,CHI,2,14,15,(7:49) (Shotgun) C.Kaepernick right end pushed ob at CHI 12 for 3 yards (B.Urlacher).,17,0,2012 -20121119_CHI@SF,2,37,12,SF,CHI,3,11,12,(7:12) (Shotgun) C.Kaepernick sacked at CHI 19 for -7 yards (sack split by I.Idonije and C.Wootton).,17,0,2012 -20121119_CHI@SF,2,36,37,SF,CHI,4,18,19,(6:37) D.Akers 37 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,17,0,2012 -20121119_CHI@SF,2,36,37,SF,CHI,,,19,D.Akers kicks 55 yards from SF 35 to CHI 10. D.Hester to CHI 31 for 21 yards (B.Miller D.Walker).,20,0,2012 -20121119_CHI@SF,2,36,26,CHI,SF,1,10,69,(6:26) M.Forte right tackle to CHI 30 for -1 yards (J.Smith).,0,20,2012 -20121119_CHI@SF,2,35,49,CHI,SF,2,11,70,(5:49) M.Forte up the middle to CHI 30 for no gain (P.Willis).,0,20,2012 -20121119_CHI@SF,2,35,10,CHI,SF,3,11,70,(5:10) (Shotgun) J.Campbell pass short right to M.Forte to CHI 30 for no gain (P.Willis). Caught at CHI 26. 4-yds YAC,0,20,2012 -20121119_CHI@SF,2,34,34,CHI,SF,4,11,70,(4:34) A.Podlesh punts 48 yards to SF 22 Center-P.Mannelly. T.Ginn pushed ob at SF 34 for 12 yards (A.Walters).,0,20,2012 -20121119_CHI@SF,2,34,23,SF,CHI,1,10,66,(4:23) (Shotgun) C.Kaepernick pass short right to K.Hunter to SF 37 for 3 yards (C.Tillman). Caught at SF 33. 4-yds YAC,20,0,2012 -20121119_CHI@SF,2,33,44,SF,CHI,2,7,63,(3:44) F.Gore left guard to SF 40 for 3 yards (N.Roach).,20,0,2012 -20121119_CHI@SF,2,33,1,SF,CHI,3,4,60,(3:01) (Shotgun) C.Kaepernick scrambles up the middle to SF 43 for 3 yards (L.Briggs). Officials measured for the 1st down short.,20,0,2012 -20121119_CHI@SF,2,32,41,SF,CHI,4,1,57,(2:41) A.Lee punts 46 yards to CHI 11 Center-B.Jennings fair catch by D.Hester.,20,0,2012 -20121119_CHI@SF,2,32,34,CHI,SF,1,10,89,(2:34) J.Campbell sacked at CHI 5 for -6 yards (Ald.Smith).,0,20,2012 -20121119_CHI@SF,2,32,0,CHI,SF,2,16,95,(2:00) M.Forte left guard to CHI 7 for 2 yards (A.Brooks).,0,20,2012 -20121119_CHI@SF,2,31,56,CHI,SF,3,14,93,(1:56) (Shotgun) J.Campbell pass incomplete deep left to B.Marshall [J.Smith].,0,20,2012 -20121119_CHI@SF,2,31,51,CHI,SF,4,14,93,(1:51) A.Podlesh punts 53 yards to SF 40 Center-P.Mannelly. T.Ginn pushed ob at CHI 41 for 19 yards (C.Steltz). PENALTY on SF-A.Dixon Illegal Block Above the Waist 10 yards enforced at SF 48.,0,20,2012 -20121119_CHI@SF,2,31,17,SF,CHI,1,10,62,(1:17) (Shotgun) C.Kaepernick pass short left to V.Davis to SF 41 for 3 yards (L.Briggs). Caught at SF 41. 0-yds YAC,20,0,2012 -20121119_CHI@SF,2,31,17,SF,CHI,2,7,59,(1:17) (Shotgun) F.Gore up the middle to SF 46 for 5 yards (K.Hayden).,20,0,2012 -20121119_CHI@SF,2,30,52,SF,CHI,3,2,54,(:52) (No Huddle Shotgun) C.Kaepernick pass incomplete short left to M.Crabtree (C.Tillman).,20,0,2012 -20121119_CHI@SF,2,30,52,SF,CHI,4,2,54,(:52) A.Lee punts 41 yards to CHI 13 Center-B.Jennings. D.Hester to CHI 23 for 10 yards (D.Goldson). PENALTY on CHI-B.Costanzo Offensive Holding 10 yards enforced at CHI 17. D.Hester is credited with a 4-yard return.,20,0,2012 -20121119_CHI@SF,2,30,41,CHI,SF,1,10,93,(:41) (Shotgun) J.Campbell pass short middle to E.Bennett to CHI 13 for 6 yards (N.Bowman). Caught at CHI 11. 2-yds YAC,0,20,2012 -20121119_CHI@SF,2,30,12,CHI,SF,2,4,87,(:12) (Shotgun) J.Campbell pass short left to A.Jeffery ran ob at CHI 19 for 6 yards. Caught at CHI 19. 0-yds YAC,0,20,2012 -20121119_CHI@SF,2,30,12,CHI,SF,1,10,81,(:12) M.Forte up the middle to CHI 27 for 8 yards (N.Bowman).,0,20,2012 -20121119_CHI@SF,3,30,0,SF,CHI,,,81,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,20,0,2012 -20121119_CHI@SF,3,30,0,CHI,SF,1,10,80,(15:00) J.Scott reported in as eligible. M.Forte up the middle to CHI 23 for 3 yards (D.Whitner).,0,20,2012 -20121119_CHI@SF,3,29,44,CHI,SF,2,7,77,(14:44) M.Forte up the middle to CHI 27 for 4 yards (N.Bowman J.Smith).,0,20,2012 -20121119_CHI@SF,3,28,53,CHI,SF,3,3,73,(13:53) (Shotgun) J.Campbell sacked at CHI 16 for -11 yards (Ald.Smith).,0,20,2012 -20121119_CHI@SF,3,28,24,CHI,SF,4,14,84,(13:24) A.Podlesh punts 43 yards to SF 41 Center-P.Mannelly. T.Ginn to SF 38 for -3 yards (Z.Bowman).,0,20,2012 -20121119_CHI@SF,3,28,13,SF,CHI,1,10,62,(13:13) F.Gore left end to SF 49 for 11 yards (N.Roach).,20,0,2012 -20121119_CHI@SF,3,27,29,SF,CHI,1,10,51,(12:29) C.Kaepernick pass short left to M.Manningham to CHI 14 for 37 yards (M.Wright). Caught at CHI 42. 28-yds YAC,20,0,2012 -20121119_CHI@SF,3,26,58,SF,CHI,1,10,14,(11:58) F.Gore left guard to CHI 10 for 4 yards (B.Urlacher).,20,0,2012 -20121119_CHI@SF,3,26,21,SF,CHI,2,6,10,(11:21) C.Kaepernick pass incomplete short left to D.Walker.,20,0,2012 -20121119_CHI@SF,3,26,12,SF,CHI,3,6,10,(11:12) C.Kaepernick pass short left to M.Crabtree for 10 yards TOUCHDOWN.,20,0,2012 -20121119_CHI@SF,3,26,12,SF,CHI,,,10,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,20,0,2012 -20121119_CHI@SF,3,26,12,SF,CHI,,,10,D.Akers kicks 69 yards from SF 35 to CHI -4. D.Hester to CHI 26 for 30 yards (B.Miller T.Brock).,27,0,2012 -20121119_CHI@SF,3,25,58,CHI,SF,1,10,74,(10:58) J.Campbell pass short left to B.Marshall to CHI 34 for 8 yards (T.Brown D.Whitner). Caught at CHI 34. 0-yds YAC,0,27,2012 -20121119_CHI@SF,3,25,27,CHI,SF,2,2,66,(10:27) J.Scott reported in as eligible. M.Bush left tackle to CHI 40 for 6 yards (D.Whitner).,0,27,2012 -20121119_CHI@SF,3,24,52,CHI,SF,1,10,60,(9:52) M.Bush right guard to CHI 42 for 2 yards (R.McDonald).,0,27,2012 -20121119_CHI@SF,3,24,16,CHI,SF,2,8,58,(9:16) (Shotgun) J.Campbell scrambles up the middle to SF 45 for 13 yards (C.Rogers).,0,27,2012 -20121119_CHI@SF,3,23,40,CHI,SF,1,10,45,(8:40) J.Scott reported in as eligible. M.Bush right tackle to SF 45 for no gain (I.Sopoaga).,0,27,2012 -20121119_CHI@SF,3,23,4,CHI,SF,2,10,45,(8:04) (Shotgun) J.Campbell pass short right to M.Bush to SF 27 for 18 yards (D.Whitner T.Brown) [A.Brooks]. Caught at SF 47. 20-yds YAC,0,27,2012 -20121119_CHI@SF,3,22,26,CHI,SF,1,10,27,(7:26) M.Forte right end to SF 26 for 1 yard (A.Brooks P.Willis). PENALTY on CHI-C.Rachal Offensive Holding 10 yards enforced at SF 27 - No Play.,0,27,2012 -20121119_CHI@SF,3,22,3,CHI,SF,1,20,37,(7:03) (Shotgun) M.Forte left guard to SF 36 for 1 yard (N.Bowman D.Dobbs).,0,27,2012 -20121119_CHI@SF,3,21,18,CHI,SF,2,19,36,(6:18) (Shotgun) J.Campbell pass incomplete short left to A.Jeffery.,0,27,2012 -20121119_CHI@SF,3,21,14,CHI,SF,3,19,36,(6:14) (Shotgun) J.Campbell sacked at SF 43 for -7 yards (A.Brooks). FUMBLES (A.Brooks) ball out of bounds at SF 49. CHI-J.Campbell was injured during the play. His return is Probable. PENALTY on SF-Ald.Smith Illegal Use of Hands 10 yards enforced at SF 36 - No Play.,0,27,2012 -20121119_CHI@SF,3,21,4,CHI,SF,1,10,26,(6:04) J.Campbell pass incomplete deep middle to A.Jeffery.,0,27,2012 -20121119_CHI@SF,3,21,0,CHI,SF,2,10,26,(6:00) M.Forte left guard to SF 23 for 3 yards (D.Goldson).,0,27,2012 -20121119_CHI@SF,3,20,22,CHI,SF,3,7,23,(5:22) (Shotgun) J.Campbell pass short right to K.Davis to SF 14 for 9 yards (C.Rogers N.Bowman) [Ald.Smith]. Caught at SF 19. 5-yds YAC,0,27,2012 -20121119_CHI@SF,3,19,37,CHI,SF,1,10,14,(4:37) M.Forte right tackle to SF 13 for 1 yard (N.Bowman).,0,27,2012 -20121119_CHI@SF,3,18,51,CHI,SF,2,9,13,(3:51) (Shotgun) J.Campbell pass short right to B.Marshall for 13 yards TOUCHDOWN. Caught in end zone. 0-yds YAC,0,27,2012 -20121119_CHI@SF,3,18,51,CHI,SF,,,13,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,27,2012 -20121119_CHI@SF,3,18,51,CHI,SF,,,13,R.Gould kicks 72 yards from CHI 35 to SF -7. T.Ginn to SF 16 for 23 yards (G.Hayes).,7,27,2012 -20121119_CHI@SF,3,18,37,SF,CHI,1,10,84,(3:37) K.Hunter left end to SF 24 for 8 yards (M.Wright).,27,7,2012 -20121119_CHI@SF,3,17,55,SF,CHI,2,2,76,(2:55) C.Kaepernick pass incomplete deep left to V.Davis.,27,7,2012 -20121119_CHI@SF,3,17,48,SF,CHI,3,2,76,(2:48) C.Kaepernick pass short right to M.Crabtree to SF 25 for 1 yard (C.Tillman). Caught at SF 25. 0-yds YAC,27,7,2012 -20121119_CHI@SF,3,16,48,SF,CHI,4,1,75,(1:48) A.Lee punts 47 yards to CHI 28 Center-B.Jennings. D.Hester to CHI 19 for -9 yards (T.Brock A.Dixon).,27,7,2012 -20121119_CHI@SF,3,16,34,CHI,SF,1,10,81,(1:34) M.Bush up the middle to CHI 19 for no gain (N.Bowman).,7,27,2012 -20121119_CHI@SF,3,15,56,CHI,SF,2,10,81,(:56) J.Campbell pass short left to D.Hester to CHI 26 for 7 yards (N.Bowman). Caught at CHI 24. 2-yds YAC,7,27,2012 -20121119_CHI@SF,3,15,16,CHI,SF,3,3,74,(:16) (Shotgun) J.Campbell pass intended for E.Bennett INTERCEPTED by D.Goldson [Ald.Smith] at CHI 37. D.Goldson ran ob at CHI 37 for no gain.,7,27,2012 -20121119_CHI@SF,3,15,11,SF,CHI,1,10,37,(:11) C.Kaepernick scrambles right end pushed ob at CHI 32 for 5 yards (C.Conte).,27,7,2012 -20121119_CHI@SF,4,15,0,SF,CHI,2,5,32,(15:00) F.Gore right tackle to CHI 31 for 1 yard (T.Jennings).,27,7,2012 -20121119_CHI@SF,4,14,17,SF,CHI,3,4,31,(14:17) (Shotgun) F.Gore up the middle to CHI 23 for 8 yards (M.Wright).,27,7,2012 -20121119_CHI@SF,4,13,34,SF,CHI,1,10,23,(13:34) (Shotgun) C.Kaepernick pass incomplete deep right to D.Walker (N.Roach).,27,7,2012 -20121119_CHI@SF,4,13,27,SF,CHI,2,10,23,(13:27) K.Hunter right end to CHI 25 for -2 yards (L.Briggs B.Urlacher).,27,7,2012 -20121119_CHI@SF,4,12,41,SF,CHI,3,12,25,(12:41) (Shotgun) C.Kaepernick pass short middle to V.Davis to CHI 14 for 11 yards (M.Wright). Caught at CHI 14. 0-yds YAC,27,7,2012 -20121119_CHI@SF,4,11,51,SF,CHI,4,1,14,(11:51) D.Akers 32 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,27,7,2012 -20121119_CHI@SF,4,11,51,SF,CHI,,,14,D.Akers kicks 68 yards from SF 35 to CHI -3. D.Hester to CHI 24 for 27 yards (C.Culliver). FUMBLES (C.Culliver) recovered by CHI-S.McManis at CHI 26. S.McManis to CHI 26 for no gain (Team). 2-yds of loose ball yardage.,30,7,2012 -20121119_CHI@SF,4,11,35,CHI,SF,1,10,74,(11:35) J.Campbell scrambles right end ran ob at CHI 27 for 1 yard. PENALTY on CHI-C.Rachal Offensive Holding 10 yards enforced at CHI 26 - No Play.,7,30,2012 -20121119_CHI@SF,4,11,5,CHI,SF,1,20,84,(11:05) (Shotgun) J.Campbell pass short right to M.Forte to CHI 16 for no gain (P.Willis). Caught at CHI 13. 3-yds YAC,7,30,2012 -20121119_CHI@SF,4,10,22,CHI,SF,2,20,84,(10:22) (Shotgun) J.Campbell sacked at CHI 8 for -8 yards (sack split by J.Smith and Ald.Smith).,7,30,2012 -20121119_CHI@SF,4,9,38,CHI,SF,3,28,92,(9:38) (Shotgun) J.Campbell sacked at CHI 0 for -8 yards (sack split by J.Smith and Ald.Smith). FUMBLES (J.Smith) recovered by CHI-C.Rachal at CHI -2. C.Rachal pass incomplete. PENALTY on CHI-C.Rachal Intentional Grounding 4 yards enforced at CHI 8. San Francisco challenged the safety ruling and the play was REVERSED. (Shotgun) J.Campbell sacked at CHI 0 for -8 yards (Ald.Smith). FUMBLES (Ald.Smith) recovered by CHI-C.Rachal at CHI -2. C.Rachal tackled in End Zone SAFETY (R.McDonald).,7,30,2012 -20121119_CHI@SF,4,9,38,CHI,SF,,,92,A.Podlesh kicks 64 yards from CHI 20 to SF 16. T.Ginn to SF 37 for 21 yards (J.Thomas).,7,32,2012 -20121119_CHI@SF,4,9,26,SF,CHI,1,10,63,(9:26) K.Hunter left tackle to SF 38 for 1 yard (C.Tillman; B.Urlacher).,32,7,2012 -20121119_CHI@SF,4,8,45,SF,CHI,2,9,62,(8:45) C.Kaepernick pass incomplete deep right to M.Crabtree.,32,7,2012 -20121119_CHI@SF,4,8,38,SF,CHI,3,9,62,(8:38) F.Gore up the middle to SF 42 for 4 yards (I.Idonije).,32,7,2012 -20121119_CHI@SF,4,7,44,SF,CHI,4,5,58,(7:44) A.Lee punts 54 yards to CHI 4 Center-B.Jennings. D.Hester to CHI 8 for 4 yards (N.Bowman).,32,7,2012 -20121119_CHI@SF,4,7,44,CHI,SF,1,10,92,(7:44) M.Forte up the middle to CHI 10 for 2 yards (I.Sopoaga; P.Willis). CHI-L.Louis was injured during the play. His return is Probable.,7,32,2012 -20121119_CHI@SF,4,7,12,CHI,SF,2,8,90,(7:12) M.Forte right end pushed ob at CHI 17 for 7 yards (C.Rogers).,7,32,2012 -20121119_CHI@SF,4,6,42,CHI,SF,3,1,83,(6:42) M.Forte up the middle to CHI 20 for 3 yards (C.Haggans).,7,32,2012 -20121119_CHI@SF,4,6,6,CHI,SF,1,10,80,(6:06) (Shotgun) J.Campbell pass short left to D.Hester to CHI 27 for 7 yards (D.Whitner).,7,32,2012 -20121119_CHI@SF,4,5,22,CHI,SF,2,3,73,(5:22) (Shotgun) M.Forte up the middle to CHI 33 for 6 yards (R.Jean Francois).,7,32,2012 -20121119_CHI@SF,4,4,57,CHI,SF,1,10,67,(4:57) (No Huddle Shotgun) J.Campbell pass short right to D.Hester to CHI 42 for 9 yards (C.Culliver).,7,32,2012 -20121119_CHI@SF,4,4,28,CHI,SF,2,1,58,(4:28) (No Huddle Shotgun) J.Campbell pass short middle to M.Forte to CHI 46 for 4 yards (N.Bowman).,7,32,2012 -20121119_CHI@SF,4,3,44,CHI,SF,1,10,54,(3:44) (No Huddle Shotgun) M.Forte left guard to CHI 44 for -2 yards (R.Jean Francois).,7,32,2012 -20121119_CHI@SF,4,3,11,CHI,SF,2,12,56,(3:11) (No Huddle Shotgun) J.Campbell pass incomplete deep left to B.Marshall.,7,32,2012 -20121119_CHI@SF,4,3,6,CHI,SF,3,12,56,(3:06) (Shotgun) J.Campbell pass short right to K.Davis to SF 45 for 11 yards (P.Willis).,7,32,2012 -20121119_CHI@SF,4,2,25,CHI,SF,4,1,45,(2:25) (Shotgun) A.Allen up the middle to SF 45 for no gain (D.Dobbs).,7,32,2012 -20121119_CHI@SF,4,2,18,SF,CHI,1,10,55,(2:18) A.Dixon left tackle to SF 49 for 4 yards (C.Wootton).,32,7,2012 -20121119_CHI@SF,4,1,58,SF,CHI,2,6,51,(1:58) A.Dixon left tackle to 50 for 1 yard (A.Okoye; C.Tillman).,32,7,2012 -20121119_CHI@SF,4,1,31,SF,CHI,3,5,50,(1:31) A.Dixon right end to CHI 49 for 1 yard (L.Briggs).,32,7,2012 -20121119_CHI@SF,4,0,28,SF,CHI,4,4,49,(:28) PENALTY on CHI-J.Thomas Neutral Zone Infraction 5 yards enforced at CHI 49 - No Play.,32,7,2012 -20121119_CHI@SF,4,0,28,SF,CHI,1,10,44,(:28) C.Kaepernick kneels to CHI 43 for 1 yard.,32,7,2012 -20121119_CHI@SF,4,0,28,SF,CHI,,,44,                      ,32,7,2012 -20121122_HOU@DET,1,0,0,HOU,DET,,,44,S.Graham kicks 70 yards from HST 35 to DET -5. S.Logan Touchback.,0,0,2012 -20121122_HOU@DET,1,60,0,DET,HOU,1,10,80,(15:00) M.Stafford sacked at DET 13 for -7 yards (J.Watt).,0,0,2012 -20121122_HOU@DET,1,59,25,DET,HOU,2,17,87,(14:25) (Shotgun) M.Stafford pass incomplete short right to R.Broyles.,0,0,2012 -20121122_HOU@DET,1,59,20,DET,HOU,3,17,87,(14:20) (Shotgun) PENALTY on HST-J.Watt Neutral Zone Infraction 5 yards enforced at DET 13 - No Play.,0,0,2012 -20121122_HOU@DET,1,59,20,DET,HOU,3,12,82,(14:20) (Shotgun) M.Stafford pass short right to R.Broyles pushed ob at DET 43 for 25 yards (D.Manning).,0,0,2012 -20121122_HOU@DET,1,58,37,DET,HOU,1,10,57,(13:37) M.Leshoure right tackle to DET 44 for 1 yard (A.Smith).,0,0,2012 -20121122_HOU@DET,1,57,58,DET,HOU,2,9,56,(12:58) (Shotgun) M.Stafford pass deep right to C.Johnson to HST 36 for 20 yards (A.Ball).,0,0,2012 -20121122_HOU@DET,1,57,18,DET,HOU,1,10,36,(12:18) M.Leshoure up the middle to HST 24 for 12 yards (D.Manning).,0,0,2012 -20121122_HOU@DET,1,56,39,DET,HOU,1,10,24,(11:39) (Shotgun) M.Stafford pass incomplete short left to C.Johnson.,0,0,2012 -20121122_HOU@DET,1,56,35,DET,HOU,2,10,24,(11:35) (Shotgun) M.Stafford pass short right to M.Thomas to HST 12 for 12 yards (J.Crick).,0,0,2012 -20121122_HOU@DET,1,55,53,DET,HOU,1,10,12,(10:53) (Shotgun) M.Stafford pass incomplete short left to C.Johnson.,0,0,2012 -20121122_HOU@DET,1,55,50,DET,HOU,2,10,12,(10:50) (Shotgun) M.Stafford pass incomplete short left to R.Broyles.,0,0,2012 -20121122_HOU@DET,1,55,46,DET,HOU,3,10,12,(10:46) (Shotgun) M.Stafford pass short left to T.Scheffler to HST 2 for 10 yards (G.Quin D.Manning).,0,0,2012 -20121122_HOU@DET,1,55,1,DET,HOU,1,2,2,(10:01) M.Leshoure left tackle for 2 yards TOUCHDOWN.,0,0,2012 -20121122_HOU@DET,1,55,1,DET,HOU,,,2,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121122_HOU@DET,1,55,1,DET,HOU,,,2,J.Hanson kicks 69 yards from DET 35 to HST -4. K.Martin to HST 20 for 24 yards (S.Logan). PENALTY on DET-S.Logan Face Mask (15 Yards) 15 yards enforced at HST 20.,7,0,2012 -20121122_HOU@DET,1,54,50,HOU,DET,1,10,65,(9:50) PENALTY on HST-D.Newton False Start 5 yards enforced at HST 35 - No Play.,0,7,2012 -20121122_HOU@DET,1,54,50,HOU,DET,1,15,70,(9:50) M.Schaub pass incomplete short right to A.Johnson (C.Houston).,0,7,2012 -20121122_HOU@DET,1,54,47,HOU,DET,2,15,70,(9:47) M.Schaub pass short right to G.Graham to HST 30 for no gain (N.Fairley).,0,7,2012 -20121122_HOU@DET,1,54,6,HOU,DET,3,15,70,(9:06) (Shotgun) J.Forsett up the middle to HST 33 for 3 yards (J.Durant).,0,7,2012 -20121122_HOU@DET,1,53,29,HOU,DET,4,12,67,(8:29) D.Jones punts 52 yards to DET 15 Center-J.Weeks. S.Logan pushed ob at DET 18 for 3 yards (R.Carmichael).,0,7,2012 -20121122_HOU@DET,1,53,20,DET,HOU,1,10,82,(8:20) M.Leshoure right tackle to DET 19 for 1 yard (B.James).,7,0,2012 -20121122_HOU@DET,1,52,42,DET,HOU,2,9,81,(7:42) (Shotgun) M.Leshoure up the middle to DET 18 for -1 yards (A.Smith).,7,0,2012 -20121122_HOU@DET,1,52,3,DET,HOU,3,10,82,(7:03) (Shotgun) M.Stafford pass incomplete deep right to R.Broyles.,7,0,2012 -20121122_HOU@DET,1,51,55,DET,HOU,4,10,82,(6:55) N.Harris punts 41 yards to HST 41 Center-D.Muhlbach. K.Martin ran ob at HST 41 for no gain. PENALTY on HST-K.Martin Unsportsmanlike Conduct 15 yards enforced at HST 41.,7,0,2012 -20121122_HOU@DET,1,51,49,HOU,DET,1,10,74,(6:49) M.Schaub pass incomplete deep left to O.Daniels [N.Suh].,0,7,2012 -20121122_HOU@DET,1,51,43,HOU,DET,2,10,74,(6:43) A.Foster right tackle to HST 30 for 4 yards (S.Tulloch).,0,7,2012 -20121122_HOU@DET,1,51,4,HOU,DET,3,6,70,(6:04) (Shotgun) M.Schaub pass incomplete short left to A.Johnson (D.Florence).,0,7,2012 -20121122_HOU@DET,1,50,59,HOU,DET,4,6,70,(5:59) D.Jones punts 53 yards to DET 17 Center-J.Weeks out of bounds.,0,7,2012 -20121122_HOU@DET,1,50,49,DET,HOU,1,10,83,(5:49) (Shotgun) M.Stafford pass incomplete deep right to J.Bell. HST-B.Reed was injured during the play. He is Out. Ball thrown away.,7,0,2012 -20121122_HOU@DET,1,50,43,DET,HOU,2,10,83,(5:43) (Shotgun) M.Stafford pass short left to T.Scheffler pushed ob at DET 23 for 6 yards (B.James).,7,0,2012 -20121122_HOU@DET,1,50,15,DET,HOU,3,4,77,(5:15) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (D.Manning).,7,0,2012 -20121122_HOU@DET,1,50,9,DET,HOU,4,4,77,(5:09) N.Harris punts 32 yards to HST 45 Center-D.Muhlbach downed by DET-E.Coleman. Detroit challenged the fumble ruling and the play was Upheld. (Timeout #1 at 04:59.),7,0,2012 -20121122_HOU@DET,1,49,59,HOU,DET,1,10,55,(4:59) A.Foster up the middle to HST 45 for no gain (W.Young).,0,7,2012 -20121122_HOU@DET,1,49,25,HOU,DET,2,10,55,(4:25) A.Foster left tackle to HST 47 for 2 yards (J.Durant).,0,7,2012 -20121122_HOU@DET,1,48,48,HOU,DET,3,8,53,(3:48) (Shotgun) M.Schaub pass short middle to O.Daniels to DET 46 for 7 yards (J.Durant).,0,7,2012 -20121122_HOU@DET,1,48,8,HOU,DET,4,1,46,(3:08) D.Jones punts 36 yards to DET 10 Center-J.Weeks fair catch by S.Logan.,0,7,2012 -20121122_HOU@DET,1,48,0,DET,HOU,1,10,90,(3:00) M.Stafford pass incomplete short left to M.Thomas (K.Jackson).,7,0,2012 -20121122_HOU@DET,1,47,55,DET,HOU,2,10,90,(2:55) (Shotgun) M.Stafford pass incomplete short middle to R.Broyles.,7,0,2012 -20121122_HOU@DET,1,47,51,DET,HOU,3,10,90,(2:51) (Shotgun) M.Stafford pass short left to B.Pettigrew to DET 22 for 12 yards (G.Quin; A.Ball).,7,0,2012 -20121122_HOU@DET,1,47,14,DET,HOU,1,10,78,(2:14) (Shotgun) M.Leshoure up the middle to DET 33 for 11 yards (G.Quin). PENALTY on DET-S.Peterman Offensive Holding 10 yards enforced at DET 22 - No Play.,7,0,2012 -20121122_HOU@DET,1,46,56,DET,HOU,1,20,88,(1:56) M.Leshoure up the middle to DET 10 for -2 yards (J.Watt).,7,0,2012 -20121122_HOU@DET,1,46,17,DET,HOU,2,22,90,(1:17) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 20 for 10 yards (G.Quin). PENALTY on DET-R.Reiff Illegal Use of Hands 5 yards enforced at DET 10 - No Play.,7,0,2012 -20121122_HOU@DET,1,45,48,DET,HOU,2,27,95,(:48) (Shotgun) M.Stafford pass short left to B.Pettigrew to DET 29 for 24 yards (D.Sharpton).,7,0,2012 -20121122_HOU@DET,2,45,0,DET,HOU,3,3,71,(15:00) (Shotgun) M.Stafford pass incomplete short left to R.Broyles (A.Smith).,7,0,2012 -20121122_HOU@DET,2,44,54,DET,HOU,4,3,71,(14:54) N.Harris punts 38 yards to HST 33 Center-D.Muhlbach. K.Martin pushed ob at HST 36 for 3 yards (D.Carey). PENALTY on HST-W.Mercilus Illegal Block Above the Waist 10 yards enforced at HST 36.,7,0,2012 -20121122_HOU@DET,2,44,39,HOU,DET,1,10,74,(14:39) M.Schaub pass deep right to A.Johnson to DET 37 for 37 yards (E.Coleman).,0,7,2012 -20121122_HOU@DET,2,44,4,HOU,DET,1,10,37,(14:04) J.Forsett left end to DET 30 for 7 yards (L.Delmas).,0,7,2012 -20121122_HOU@DET,2,43,27,HOU,DET,2,3,30,(13:27) A.Foster right tackle to DET 19 for 11 yards (E.Coleman).,0,7,2012 -20121122_HOU@DET,2,42,49,HOU,DET,1,10,19,(12:49) A.Foster right end to DET 16 for 3 yards (N.Fairley).,0,7,2012 -20121122_HOU@DET,2,42,10,HOU,DET,2,7,16,(12:10) M.Schaub pass short left to J.Casey to DET 11 for 5 yards (L.Delmas; D.Levy).,0,7,2012 -20121122_HOU@DET,2,41,25,HOU,DET,3,2,11,(11:25) M.Schaub pass short left to A.Foster pushed ob at DET 6 for 5 yards (S.Tulloch).,0,7,2012 -20121122_HOU@DET,2,41,2,HOU,DET,1,6,6,(11:02) A.Foster left end for 6 yards TOUCHDOWN.,0,7,2012 -20121122_HOU@DET,2,41,2,HOU,DET,,,6,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,7,2012 -20121122_HOU@DET,2,41,2,HOU,DET,,,6,S.Graham kicks 67 yards from HST 35 to DET -2. S.Logan to DET 17 for 19 yards (A.Ball).,7,7,2012 -20121122_HOU@DET,2,40,49,DET,HOU,1,10,83,(10:49) M.Leshoure right end to DET 20 for 3 yards (D.Sharpton).,7,7,2012 -20121122_HOU@DET,2,40,13,DET,HOU,2,7,80,(10:13) (Shotgun) M.Stafford pass short left to C.Johnson ran ob at DET 34 for 14 yards.,7,7,2012 -20121122_HOU@DET,2,39,43,DET,HOU,1,10,66,(9:43) (Shotgun) M.Stafford pass deep right to C.Johnson to HST 31 for 35 yards (A.Ball).,7,7,2012 -20121122_HOU@DET,2,39,11,DET,HOU,1,10,31,(9:11) (Shotgun) M.Leshoure left tackle to HST 30 for 1 yard (J.Watt).,7,7,2012 -20121122_HOU@DET,2,38,28,DET,HOU,2,9,30,(8:28) M.Stafford scrambles up the middle to HST 29 for 1 yard (W.Mercilus).,7,7,2012 -20121122_HOU@DET,2,37,42,DET,HOU,3,8,29,(7:42) (Shotgun) M.Stafford pass short left to C.Johnson to HST 17 for 12 yards (A.Ball).,7,7,2012 -20121122_HOU@DET,2,36,58,DET,HOU,1,10,17,(6:58) (Shotgun) M.Stafford pass short right to B.Pettigrew to HST 5 for 12 yards (D.Manning).,7,7,2012 -20121122_HOU@DET,2,36,15,DET,HOU,1,5,5,(6:15) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (A.Ball).,7,7,2012 -20121122_HOU@DET,2,36,10,DET,HOU,2,5,5,(6:10) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew [J.Watt].,7,7,2012 -20121122_HOU@DET,2,36,4,DET,HOU,3,5,5,(6:04) (Shotgun) M.Stafford pass short middle to M.Thomas for 5 yards TOUCHDOWN.,7,7,2012 -20121122_HOU@DET,2,36,4,DET,HOU,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,7,7,2012 -20121122_HOU@DET,2,36,4,DET,HOU,,,5,J.Hanson kicks 70 yards from DET 35 to HST -5. K.Martin to HST 25 for 30 yards (J.Wendling).,14,7,2012 -20121122_HOU@DET,2,35,55,HOU,DET,1,10,75,(5:55) M.Schaub pass incomplete deep left to A.Johnson (C.Houston).,7,14,2012 -20121122_HOU@DET,2,35,48,HOU,DET,2,10,75,(5:48) M.Schaub pass short middle to K.Walter to HST 40 for 15 yards (D.Florence).,7,14,2012 -20121122_HOU@DET,2,35,12,HOU,DET,1,10,60,(5:12) A.Foster left end to HST 39 for -1 yards (J.Durant).,7,14,2012 -20121122_HOU@DET,2,34,32,HOU,DET,2,11,61,(4:32) M.Schaub pass short right to K.Martin to HST 45 for 6 yards (D.Florence).,7,14,2012 -20121122_HOU@DET,2,33,48,HOU,DET,3,5,55,(3:48) (Shotgun) M.Schaub pass deep left to A.Johnson pushed ob at DET 12 for 43 yards (L.Delmas).,7,14,2012 -20121122_HOU@DET,2,33,34,HOU,DET,1,10,12,(3:34) J.Forsett left tackle to DET 14 for -2 yards (L.Jackson S.Tulloch).,7,14,2012 -20121122_HOU@DET,2,32,54,HOU,DET,2,12,14,(2:54) M.Schaub pass short middle to K.Walter to DET 9 for 5 yards (S.Tulloch) [N.Suh].,7,14,2012 -20121122_HOU@DET,2,32,15,HOU,DET,3,7,9,(2:15) M.Schaub pass short middle to O.Daniels for 9 yards TOUCHDOWN.,7,14,2012 -20121122_HOU@DET,2,32,15,HOU,DET,,,9,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,14,2012 -20121122_HOU@DET,2,32,15,HOU,DET,,,9,S.Graham kicks 62 yards from HST 35 to DET 3. S.Logan to DET 41 for 38 yards (J.Forsett).,14,14,2012 -20121122_HOU@DET,2,32,4,DET,HOU,1,10,59,(2:04) (Shotgun) M.Stafford pass short middle to R.Broyles to HST 22 for 37 yards (K.Jackson).,14,14,2012 -20121122_HOU@DET,2,31,56,DET,HOU,1,10,22,(1:56) (Shotgun) M.Stafford pass deep left to C.Johnson for 22 yards TOUCHDOWN.,14,14,2012 -20121122_HOU@DET,2,31,56,DET,HOU,,,22,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,14,14,2012 -20121122_HOU@DET,2,31,56,DET,HOU,,,22,J.Hanson kicks 70 yards from DET 35 to HST -5. K.Martin Touchback.,21,14,2012 -20121122_HOU@DET,2,31,49,HOU,DET,1,10,80,(1:49) (Shotgun) M.Schaub pass short right to O.Daniels to HST 22 for 2 yards (S.Tulloch).,14,21,2012 -20121122_HOU@DET,2,31,18,HOU,DET,2,8,78,(1:18) (Shotgun) M.Schaub pass short left to O.Daniels pushed ob at HST 24 for 2 yards (C.Houston).,14,21,2012 -20121122_HOU@DET,2,30,31,HOU,DET,3,6,76,(:31) (Shotgun) M.Schaub pass short right to A.Johnson to HST 31 for 7 yards (S.Tulloch).,14,21,2012 -20121122_HOU@DET,2,30,25,HOU,DET,1,10,69,(:25) (Shotgun) M.Schaub sacked at HST 22 for -9 yards (C.Avril). FUMBLES (C.Avril) recovered by HST-R.Harris at HST 20. R.Harris to HST 20 for no gain (L.Jackson).,14,21,2012 -20121122_HOU@DET,3,30,0,DET,HOU,,,69,J.Hanson kicks 69 yards from DET 35 to HST -4. K.Martin to HST 25 for 29 yards (T.Whitehead).,21,14,2012 -20121122_HOU@DET,3,29,52,HOU,DET,1,10,75,(14:52) M.Schaub pass incomplete short left to K.Walter.,14,21,2012 -20121122_HOU@DET,3,29,48,HOU,DET,2,10,75,(14:48) M.Schaub sacked at HST 17 for -8 yards (C.Avril).,14,21,2012 -20121122_HOU@DET,3,29,18,HOU,DET,3,18,83,(14:18) (Shotgun) A.Foster up the middle to HST 28 for 11 yards (S.Tulloch).,14,21,2012 -20121122_HOU@DET,3,28,42,HOU,DET,4,7,72,(13:42) D.Jones punts 53 yards to DET 19 Center-J.Weeks. S.Logan pushed ob at DET 32 for 13 yards (J.Nading). PENALTY on DET-J.Bell Illegal Block Above the Waist 10 yards enforced at DET 32.,14,21,2012 -20121122_HOU@DET,3,28,31,DET,HOU,1,10,78,(13:31) PENALTY on HST-A.Smith Encroachment 5 yards enforced at DET 22 - No Play.,21,14,2012 -20121122_HOU@DET,3,28,31,DET,HOU,1,5,73,(13:31) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 31 for 4 yards (B.James).,21,14,2012 -20121122_HOU@DET,3,27,52,DET,HOU,2,1,69,(12:52) M.Leshoure right tackle to DET 35 for 4 yards (B.James).,21,14,2012 -20121122_HOU@DET,3,27,13,DET,HOU,1,10,65,(12:13) M.Leshoure left end to DET 34 for -1 yards (C.Barwin E.Mitchell).,21,14,2012 -20121122_HOU@DET,3,26,31,DET,HOU,2,11,66,(11:31) (Shotgun) M.Stafford pass short right to B.Pettigrew to DET 40 for 6 yards (G.Quin).,21,14,2012 -20121122_HOU@DET,3,25,50,DET,HOU,3,5,60,(10:50) (Shotgun) M.Stafford pass short left to R.Broyles ran ob at HST 47 for 13 yards (D.Manning).,21,14,2012 -20121122_HOU@DET,3,25,29,DET,HOU,1,10,47,(10:29) (No Huddle) K.Smith left tackle to HST 46 for 1 yard (J.Crick).,21,14,2012 -20121122_HOU@DET,3,24,47,DET,HOU,2,9,46,(9:47) (Shotgun) M.Stafford pass short middle to R.Broyles to HST 39 for 7 yards (D.Sharpton; B.McCain).,21,14,2012 -20121122_HOU@DET,3,24,1,DET,HOU,3,2,39,(9:01) (Shotgun) M.Stafford pass short right to C.Johnson ran ob at HST 33 for 6 yards.,21,14,2012 -20121122_HOU@DET,3,23,35,DET,HOU,1,10,33,(8:35) (Shotgun) K.Smith left tackle to HST 27 for 6 yards (A.Ball).,21,14,2012 -20121122_HOU@DET,3,22,55,DET,HOU,2,4,27,(7:55) K.Smith left end to HST 28 for -1 yards (W.Mercilus J.Crick).,21,14,2012 -20121122_HOU@DET,3,22,11,DET,HOU,3,5,28,(7:11) M.Stafford pass incomplete short right to C.Johnson.,21,14,2012 -20121122_HOU@DET,3,22,8,DET,HOU,4,5,28,(7:08) J.Hanson 46 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,21,14,2012 -20121122_HOU@DET,3,22,8,DET,HOU,,,28,J.Hanson kicks 61 yards from DET 35 to HST 4. K.Martin pushed ob at HST 19 for 15 yards (A.Palmer).,24,14,2012 -20121122_HOU@DET,3,21,58,HOU,DET,1,10,81,(6:58) M.Schaub pass incomplete deep middle to K.Walter (E.Coleman) [N.Suh].,14,24,2012 -20121122_HOU@DET,3,21,50,HOU,DET,2,10,81,(6:50) J.Forsett up the middle for 81 yards TOUCHDOWN. Penalty on Detoit head coach. PENALTY on DET Unsportsmanlike Conduct 15 yards enforced between downs.,14,24,2012 -20121122_HOU@DET,3,21,50,HOU,DET,,,81,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,24,2012 -20121122_HOU@DET,3,21,50,HOU,DET,,,81,S.Graham kicks 50 yards from HST 50 to end zone Touchback.,21,24,2012 -20121122_HOU@DET,3,21,35,DET,HOU,1,10,80,(6:35) M.Thomas left end pushed ob at DET 34 for 14 yards (D.Sharpton).,24,21,2012 -20121122_HOU@DET,3,20,57,DET,HOU,1,10,66,(5:57) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,24,21,2012 -20121122_HOU@DET,3,20,53,DET,HOU,2,10,66,(5:53) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew.,24,21,2012 -20121122_HOU@DET,3,20,50,DET,HOU,3,10,66,(5:50) M.Stafford pass incomplete short right to B.Pettigrew (J.Watt) [J.Crick].,24,21,2012 -20121122_HOU@DET,3,20,45,DET,HOU,4,10,66,(5:45) N.Harris punts 40 yards to HST 26 Center-D.Muhlbach. K.Martin ran ob at HST 33 for 7 yards (T.Whitehead).,24,21,2012 -20121122_HOU@DET,3,20,36,HOU,DET,1,10,67,(5:36) A.Foster left tackle to HST 40 for 7 yards (L.Delmas; E.Coleman).,21,24,2012 -20121122_HOU@DET,3,20,3,HOU,DET,2,3,60,(5:03) A.Foster right tackle to 50 for 10 yards (L.Delmas).,21,24,2012 -20121122_HOU@DET,3,19,24,HOU,DET,1,10,50,(4:24) K.Martin left end pushed ob at DET 33 for 17 yards (D.Florence).,21,24,2012 -20121122_HOU@DET,3,18,55,HOU,DET,1,10,33,(3:55) PENALTY on HST-K.Martin False Start 5 yards enforced at DET 33 - No Play.,21,24,2012 -20121122_HOU@DET,3,18,33,HOU,DET,1,15,38,(3:33) M.Schaub pass incomplete short middle to J.Forsett [N.Suh].,21,24,2012 -20121122_HOU@DET,3,18,27,HOU,DET,2,15,38,(3:27) (Shotgun) M.Schaub pass incomplete short left to A.Johnson (R.Silva).,21,24,2012 -20121122_HOU@DET,3,18,23,HOU,DET,3,15,38,(3:23) (Shotgun) M.Schaub pass short right to K.Martin to DET 27 for 11 yards (N.Fairley).,21,24,2012 -20121122_HOU@DET,3,17,40,HOU,DET,4,4,27,(2:40) S.Graham 45 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,21,24,2012 -20121122_HOU@DET,3,17,40,HOU,DET,,,27,S.Graham kicks 70 yards from HST 35 to DET -5. S.Logan Touchback.,24,24,2012 -20121122_HOU@DET,3,17,36,DET,HOU,1,10,80,(2:36) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 25 for 5 yards (D.Sharpton; G.Quin).,24,24,2012 -20121122_HOU@DET,3,16,54,DET,HOU,2,5,75,(1:54) (Shotgun) M.Leshoure right tackle to DET 32 for 7 yards (G.Quin; B.James).,24,24,2012 -20121122_HOU@DET,3,16,12,DET,HOU,1,10,68,(1:12) (Shotgun) M.Stafford pass short middle to R.Broyles to DET 36 for 4 yards (B.McCain).,24,24,2012 -20121122_HOU@DET,3,15,32,DET,HOU,2,6,64,(:32) (Shotgun) M.Stafford pass short right to M.Leshoure to HST 48 for 16 yards (W.Mercilus). PENALTY on DET-B.Pettigrew Illegal Block Above the Waist 10 yards enforced at DET 49.,24,24,2012 -20121122_HOU@DET,3,15,8,DET,HOU,2,3,61,(:08) (Shotgun) J.Bell left tackle to HST 35 for 26 yards (Q.Demps).,24,24,2012 -20121122_HOU@DET,4,15,0,DET,HOU,1,10,35,(15:00) (Shotgun) M.Stafford pass short middle to B.Pettigrew to HST 29 for 6 yards (G.Quin).,24,24,2012 -20121122_HOU@DET,4,14,19,DET,HOU,2,4,29,(14:19) (Shotgun) M.Stafford scrambles up the middle to HST 23 for 6 yards (J.Crick).,24,24,2012 -20121122_HOU@DET,4,13,36,DET,HOU,1,10,23,(13:36) (Shotgun) J.Bell up the middle for 23 yards TOUCHDOWN.,24,24,2012 -20121122_HOU@DET,4,13,36,DET,HOU,,,23,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,24,24,2012 -20121122_HOU@DET,4,13,36,DET,HOU,,,23,J.Hanson kicks 69 yards from DET 35 to HST -4. K.Martin to HST 19 for 23 yards (A.Palmer).,31,24,2012 -20121122_HOU@DET,4,13,26,HOU,DET,1,10,81,(13:26) M.Schaub pass short right to J.Casey to HST 26 for 7 yards (J.Durant).,24,31,2012 -20121122_HOU@DET,4,12,47,HOU,DET,2,3,74,(12:47) A.Foster left end ran ob at HST 23 for -3 yards (D.Florence).,24,31,2012 -20121122_HOU@DET,4,12,20,HOU,DET,3,6,77,(12:20) (Shotgun) M.Schaub pass incomplete short left to O.Daniels (J.Durant).,24,31,2012 -20121122_HOU@DET,4,12,15,HOU,DET,4,6,77,(12:15) D.Jones punts 47 yards to DET 30 Center-J.Weeks. S.Logan to DET 46 for 16 yards (B.Braman).,24,31,2012 -20121122_HOU@DET,4,12,3,DET,HOU,1,10,54,(12:03) (Shotgun) M.Stafford pass short left to C.Johnson to HST 41 for 13 yards (K.Jackson).,31,24,2012 -20121122_HOU@DET,4,11,25,DET,HOU,1,10,41,(11:25) (Shotgun) M.Leshoure left tackle to HST 36 for 5 yards (B.James; Q.Demps). HST-B.James was injured during the play. He is Out.,31,24,2012 -20121122_HOU@DET,4,10,50,DET,HOU,2,5,36,(10:50) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,31,24,2012 -20121122_HOU@DET,4,10,44,DET,HOU,3,5,36,(10:44) (Shotgun) M.Stafford sacked at HST 44 for -8 yards (J.Watt).,31,24,2012 -20121122_HOU@DET,4,10,14,DET,HOU,4,13,44,(10:14) N.Harris punts 29 yards to HST 15 Center-D.Muhlbach fair catch by K.Martin.,31,24,2012 -20121122_HOU@DET,4,10,6,HOU,DET,1,10,85,(10:06) M.Schaub pass incomplete deep middle to K.Walter.,24,31,2012 -20121122_HOU@DET,4,9,56,HOU,DET,2,10,85,(9:56) M.Schaub pass short right to G.Graham to HST 21 for 6 yards (J.Durant).,24,31,2012 -20121122_HOU@DET,4,9,18,HOU,DET,3,4,79,(9:18) (Shotgun) M.Schaub pass incomplete short left to K.Walter.,24,31,2012 -20121122_HOU@DET,4,9,14,HOU,DET,4,4,79,(9:14) D.Jones punts 44 yards to DET 35 Center-J.Weeks downed by HST. PENALTY on HST-B.Harris Interference with Opportunity to Catch 15 yards enforced at DET 35.,24,31,2012 -20121122_HOU@DET,4,9,1,DET,HOU,1,10,50,(9:01) M.Stafford pass short right to M.Leshoure ran ob at HST 36 for 14 yards (D.Manning).,31,24,2012 -20121122_HOU@DET,4,8,26,DET,HOU,1,10,36,(8:26) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (G.Quin).,31,24,2012 -20121122_HOU@DET,4,8,23,DET,HOU,2,10,36,(8:23) (Shotgun) M.Stafford pass incomplete short left to M.Thomas (A.Ball).,31,24,2012 -20121122_HOU@DET,4,8,19,DET,HOU,3,10,36,(8:19) (Shotgun) M.Stafford sacked at HST 43 for -7 yards (J.Watt).,31,24,2012 -20121122_HOU@DET,4,7,49,DET,HOU,4,17,43,(7:49) N.Harris punts 40 yards to HST 3 Center-D.Muhlbach downed by DET-A.Palmer.,31,24,2012 -20121122_HOU@DET,4,7,38,HOU,DET,1,10,97,(7:38) M.Schaub pass incomplete short right to O.Daniels. Ball thrown away.,24,31,2012 -20121122_HOU@DET,4,7,29,HOU,DET,2,10,97,(7:29) M.Schaub pass short right to A.Foster to HST 5 for 2 yards (C.Houston).,24,31,2012 -20121122_HOU@DET,4,6,49,HOU,DET,3,8,95,(6:49) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 18 for 13 yards (S.Tulloch).,24,31,2012 -20121122_HOU@DET,4,6,17,HOU,DET,1,10,82,(6:17) A.Foster right end pushed ob at HST 33 for 15 yards (E.Coleman).,24,31,2012 -20121122_HOU@DET,4,5,56,HOU,DET,1,10,67,(5:56) (No Huddle Shotgun) M.Schaub pass short middle to A.Johnson to DET 44 for 23 yards (E.Coleman; R.Silva).,24,31,2012 -20121122_HOU@DET,4,5,23,HOU,DET,1,10,44,(5:23) M.Schaub pass incomplete deep left to A.Johnson (C.Houston).,24,31,2012 -20121122_HOU@DET,4,5,15,HOU,DET,2,10,44,(5:15) (Shotgun) M.Schaub pass short right to A.Foster to DET 46 for -2 yards (S.Tulloch).,24,31,2012 -20121122_HOU@DET,4,4,43,HOU,DET,3,12,46,(4:43) (Shotgun) M.Schaub pass short middle to A.Foster to DET 41 for 5 yards (S.Tulloch).,24,31,2012 -20121122_HOU@DET,4,4,8,HOU,DET,4,7,41,(4:08) (Shotgun) M.Schaub pass short middle to A.Johnson to DET 25 for 16 yards (R.Silva).,24,31,2012 -20121122_HOU@DET,4,3,29,HOU,DET,1,10,25,(3:29) M.Schaub pass incomplete deep left to O.Daniels.,24,31,2012 -20121122_HOU@DET,4,3,24,HOU,DET,2,10,25,(3:24) M.Schaub pass incomplete deep right to K.Martin.,24,31,2012 -20121122_HOU@DET,4,3,17,HOU,DET,3,10,25,(3:17) (Shotgun) M.Schaub pass short right to A.Johnson to DET 13 for 12 yards (S.Tulloch; R.Silva).,24,31,2012 -20121122_HOU@DET,4,2,37,HOU,DET,1,10,13,(2:37) M.Schaub pass short middle to G.Graham to DET 2 for 11 yards (R.Silva; J.Durant).,24,31,2012 -20121122_HOU@DET,4,2,3,HOU,DET,1,2,2,(2:03) B.Brooks reported in as eligible. A.Foster left end to DET 1 for 1 yard (S.Tulloch; E.Coleman).,24,31,2012 -20121122_HOU@DET,4,1,58,HOU,DET,2,1,1,(1:58) A.Foster left tackle for 1 yard TOUCHDOWN.,24,31,2012 -20121122_HOU@DET,4,1,58,HOU,DET,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,24,31,2012 -20121122_HOU@DET,4,1,58,HOU,DET,,,1,S.Graham kicks 55 yards from HST 35 to DET 10. S.Logan to DET 24 for 14 yards (B.Harris).,31,31,2012 -20121122_HOU@DET,4,1,50,DET,HOU,1,10,76,(1:50) (Shotgun) M.Stafford pass short middle to C.Johnson pushed ob at DET 42 for 18 yards (D.Manning).,31,31,2012 -20121122_HOU@DET,4,1,44,DET,HOU,1,10,58,(1:44) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (B.Ruud).,31,31,2012 -20121122_HOU@DET,4,1,40,DET,HOU,2,10,58,(1:40) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew (B.Ruud).,31,31,2012 -20121122_HOU@DET,4,1,32,DET,HOU,3,10,58,(1:32) (Shotgun) M.Stafford pass short middle to T.Scheffler to HST 45 for 13 yards (B.McCain).,31,31,2012 -20121122_HOU@DET,4,1,4,DET,HOU,1,10,45,(1:04) (No Huddle Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (G.Quin).,31,31,2012 -20121122_HOU@DET,4,1,0,DET,HOU,2,10,45,(1:00) (Shotgun) M.Stafford pass incomplete short right to K.Smith [J.Watt].,31,31,2012 -20121122_HOU@DET,4,0,56,DET,HOU,3,10,45,(:56) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson (D.Manning).,31,31,2012 -20121122_HOU@DET,4,0,48,DET,HOU,4,10,45,(:48) N.Harris punts 43 yards to HST 2 Center-D.Muhlbach downed by DET-J.Wendling.,31,31,2012 -20121122_HOU@DET,4,0,39,HOU,DET,1,10,98,(:39) M.Schaub kneels to HST 1 for -1 yards.,31,31,2012 -20121122_HOU@DET,4,0,28,HOU,DET,2,11,99,(:28) M.Schaub up the middle to HST 1 for no gain (N.Fairley).,31,31,2012 -20121122_HOU@DET,5,0,0,HOU,DET,,,99,S.Graham kicks 70 yards from HST 35 to DET -5. S.Logan Touchback.,31,31,2012 -20121122_HOU@DET,5,0,0,DET,HOU,1,10,80,(15:00) (Shotgun) M.Stafford pass deep left to R.Broyles to HST 40 for 40 yards (A.Ball).,31,31,2012 -20121122_HOU@DET,5,-1,12,DET,HOU,1,10,40,(14:12) (Shotgun) M.Stafford pass incomplete deep right to M.Thomas.,31,31,2012 -20121122_HOU@DET,5,-1,6,DET,HOU,2,10,40,(14:06) (Shotgun) M.Stafford pass short middle to B.Pettigrew to HST 32 for 8 yards (D.Manning) [C.Barwin]. FUMBLES (D.Manning) RECOVERED by HST-D.Sharpton at HST 35. D.Sharpton to HST 35 for no gain (J.Bell).,31,31,2012 -20121122_HOU@DET,5,-2,57,HOU,DET,1,10,65,(13:57) A.Foster left end pushed ob at HST 46 for 11 yards (D.Florence).,31,31,2012 -20121122_HOU@DET,5,-2,33,HOU,DET,1,10,54,(13:33) M.Schaub pass short middle to A.Johnson to DET 40 for 14 yards (C.Houston).,31,31,2012 -20121122_HOU@DET,5,-3,52,HOU,DET,1,10,40,(12:52) A.Foster left tackle to DET 38 for 2 yards (J.Durant).,31,31,2012 -20121122_HOU@DET,5,-3,16,HOU,DET,2,8,38,(12:16) A.Foster right end pushed ob at DET 27 for 11 yards (S.Tulloch).,31,31,2012 -20121122_HOU@DET,5,-3,2,HOU,DET,1,10,27,(12:02) PENALTY on HST-K.Walter False Start 5 yards enforced at DET 27 - No Play.,31,31,2012 -20121122_HOU@DET,5,-4,34,HOU,DET,1,15,32,(11:34) A.Foster left end to DET 29 for 3 yards (R.Silva).,31,31,2012 -20121122_HOU@DET,5,-4,5,HOU,DET,2,12,29,(11:05) J.Forsett right tackle to DET 31 for -2 yards (N.Fairley).,31,31,2012 -20121122_HOU@DET,5,-5,20,HOU,DET,3,14,31,(10:20) A.Foster left end to DET 33 for -2 yards (D.Levy; SamL.Hill).,31,31,2012 -20121122_HOU@DET,5,-6,43,HOU,DET,4,16,33,(9:43) S.Graham 51 yard field goal is No Good Wide Left Center-J.Weeks Holder-D.Jones.,31,31,2012 -20121122_HOU@DET,5,-6,38,DET,HOU,1,10,59,(9:38) (Shotgun) M.Stafford pass incomplete short right to J.Bell (J.Watt).,31,31,2012 -20121122_HOU@DET,5,-6,34,DET,HOU,2,10,59,(9:34) (Shotgun) M.Stafford pass short middle to T.Scheffler to HST 45 for 14 yards (D.Sharpton).,31,31,2012 -20121122_HOU@DET,5,-7,52,DET,HOU,1,10,45,(8:52) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler (G.Quin).,31,31,2012 -20121122_HOU@DET,5,-7,48,DET,HOU,2,10,45,(8:48) (Shotgun) M.Stafford pass incomplete short right to M.Thomas.,31,31,2012 -20121122_HOU@DET,5,-7,45,DET,HOU,3,10,45,(8:45) (Shotgun) M.Stafford pass deep left intended for R.Broyles INTERCEPTED by B.McCain at HST 28. B.McCain to HST 28 for no gain (R.Broyles). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) M.Stafford pass incomplete deep left to R.Broyles.,31,31,2012 -20121122_HOU@DET,5,-7,42,DET,HOU,4,10,45,(8:42) N.Harris punts 36 yards to HST 9 Center-D.Muhlbach downed by DET-D.Muhlbach.,31,31,2012 -20121122_HOU@DET,5,-7,30,HOU,DET,1,10,91,(8:30) M.Schaub pass short right to A.Foster ran ob at HST 14 for 5 yards (S.Tulloch).,31,31,2012 -20121122_HOU@DET,5,-7,7,HOU,DET,2,5,86,(8:07) M.Schaub pass incomplete short middle to J.Casey (K.Vanden Bosch) [N.Suh].,31,31,2012 -20121122_HOU@DET,5,-7,1,HOU,DET,3,5,86,(8:01) (Shotgun) M.Schaub pass incomplete short left to K.Martin. PENALTY on DET-C.Avril Defensive Offside 5 yards enforced at HST 14 - No Play.,31,31,2012 -20121122_HOU@DET,5,-8,57,HOU,DET,1,10,81,(7:57) A.Foster right tackle to HST 29 for 10 yards (R.Silva).,31,31,2012 -20121122_HOU@DET,5,-8,18,HOU,DET,1,10,71,(7:18) M.Schaub pass intended for A.Johnson INTERCEPTED by C.Houston at HST 43. C.Houston to HST 41 for 2 yards (A.Johnson).,31,31,2012 -20121122_HOU@DET,5,-8,11,DET,HOU,1,10,41,(7:11) (Shotgun) J.Bell up the middle to HST 42 for -1 yards (C.Barwin).,31,31,2012 -20121122_HOU@DET,5,-9,32,DET,HOU,2,11,42,(6:32) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson.,31,31,2012 -20121122_HOU@DET,5,-9,27,DET,HOU,3,11,42,(6:27) (Shotgun) M.Stafford pass short right to T.Scheffler pushed ob at HST 28 for 14 yards (D.Manning).,31,31,2012 -20121122_HOU@DET,5,-10,58,DET,HOU,1,10,28,(5:58) J.Bell up the middle to HST 26 for 2 yards (E.Mitchell).,31,31,2012 -20121122_HOU@DET,5,-10,17,DET,HOU,2,8,26,(5:17) J.Bell up the middle to HST 29 for -3 yards (W.Mercilus).,31,31,2012 -20121122_HOU@DET,5,-11,35,DET,HOU,3,11,29,(4:35) J.Hanson 47 yard field goal is No Good Hit Right Upright Center-D.Muhlbach Holder-N.Harris.,31,31,2012 -20121122_HOU@DET,5,-11,32,HOU,DET,1,10,63,(4:32) M.Schaub pass incomplete short middle to G.Graham.,31,31,2012 -20121122_HOU@DET,5,-11,27,HOU,DET,2,10,63,(4:27) M.Schaub pass short left to J.Casey to DET 48 for 15 yards (E.Coleman; D.Levy).,31,31,2012 -20121122_HOU@DET,5,-12,52,HOU,DET,1,10,48,(3:52) M.Schaub pass incomplete short right to G.Graham.,31,31,2012 -20121122_HOU@DET,5,-12,46,HOU,DET,2,10,48,(3:46) M.Schaub pass short left to A.Johnson to DET 25 for 23 yards (C.Houston). The Replay Assistant challenged the fumble ruling and the play was Upheld.,31,31,2012 -20121122_HOU@DET,5,-12,4,HOU,DET,1,10,25,(3:04) M.Schaub pass short right to J.Casey to DET 14 for 11 yards (S.Tulloch).,31,31,2012 -20121122_HOU@DET,5,-13,25,HOU,DET,1,10,14,(2:25) S.Graham 32 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,31,31,2012 -20121122_HOU@DET,5,-13,25,HOU,DET,,,14,                      ,34,31,2012 -20121122_WAS@DAL,1,-13,0,DAL,WAS,,,14,D.Bailey kicks 74 yards from DAL 35 to WAS -9. B.Banks Touchback.,0,0,2012 -20121122_WAS@DAL,1,60,0,WAS,DAL,1,10,80,(15:00) (Shotgun) A.Morris left end to WAS 20 for no gain (J.Hatcher; D.Connor).,0,0,2012 -20121122_WAS@DAL,1,59,20,WAS,DAL,2,10,80,(14:20) (Shotgun) R.Griffin pass incomplete short middle to L.Paulsen. Pass incomplete at the Washington 30; Simms closest defender.,0,0,2012 -20121122_WAS@DAL,1,59,13,WAS,DAL,3,10,80,(14:13) (Shotgun) R.Griffin pass incomplete short middle [J.Hatcher]. PENALTY on WAS-R.Griffin Intentional Grounding 12 yards enforced at WAS 20.,0,0,2012 -20121122_WAS@DAL,1,59,1,WAS,DAL,4,22,92,(14:01) (Punt formation) S.Rocca punts 44 yards to DAL 48 Center-N.Sundberg. D.Harris to WAS 49 for 3 yards (D.Johnson).,0,0,2012 -20121122_WAS@DAL,1,58,57,DAL,WAS,1,10,49,(13:57) T.Romo pass incomplete short left to D.Bryant. PENALTY on WAS-J.Wilson Defensive Pass Interference 14 yards enforced at WAS 49 - No Play.,0,0,2012 -20121122_WAS@DAL,1,58,52,DAL,WAS,1,10,35,(13:52) F.Jones up the middle to WAS 30 for 5 yards (B.Cofield).,0,0,2012 -20121122_WAS@DAL,1,58,15,DAL,WAS,2,5,30,(13:15) F.Jones right guard to WAS 29 for 1 yard (R.Jackson; B.Cofield).,0,0,2012 -20121122_WAS@DAL,1,57,28,DAL,WAS,3,4,29,"(12:28) (Shotgun) T.Romo pass short middle to J.Witten to WAS 23 for 6 yards (P.Riley). Pass complete on a ""curl"" route.",0,0,2012 -20121122_WAS@DAL,1,56,49,DAL,WAS,1,10,23,"(11:49) (Shotgun) T.Romo pass short middle to D.Bryant to WAS 14 for 9 yards (C.Griffin L.Fletcher). Pass complete on a ""slant"" pattern.",0,0,2012 -20121122_WAS@DAL,1,56,10,DAL,WAS,2,1,14,(11:10) F.Jones right guard to WAS 11 for 3 yards (R.Jackson).,0,0,2012 -20121122_WAS@DAL,1,55,33,DAL,WAS,1,10,11,"(10:33) (Shotgun) T.Romo pass incomplete short middle to M.Austin. Pass incomplete on a ""crossing"" pattern.",0,0,2012 -20121122_WAS@DAL,1,55,29,DAL,WAS,2,10,11,"(10:29) (Shotgun) T.Romo pass short left to D.Harris to WAS 7 for 4 yards (D.Gomes). Pass complete on a ""bubble"" screen.",0,0,2012 -20121122_WAS@DAL,1,55,29,DAL,WAS,3,6,7,(10:29) (Shotgun) PENALTY on DAL-J.Witten False Start 5 yards enforced at WAS 7 - No Play.,0,0,2012 -20121122_WAS@DAL,1,54,27,DAL,WAS,3,11,12,(9:27) (Shotgun) T.Romo pass incomplete short middle to M.Austin (L.Fletcher). Pass incomplete back of the end zone.,0,0,2012 -20121122_WAS@DAL,1,54,27,DAL,WAS,4,11,12,(9:27) (Field Goal formation) D.Bailey 30 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121122_WAS@DAL,1,54,27,DAL,WAS,,,12,D.Bailey kicks 74 yards from DAL 35 to WAS -9. B.Banks Touchback.,3,0,2012 -20121122_WAS@DAL,1,54,17,WAS,DAL,1,10,80,(9:17) A.Morris right end to WAS 23 for 3 yards (A.Spencer; B.Carter).,0,3,2012 -20121122_WAS@DAL,1,53,51,WAS,DAL,2,7,77,(8:51) A.Morris left end to WAS 26 for 3 yards (J.Price-Brent).,0,3,2012 -20121122_WAS@DAL,1,53,11,WAS,DAL,3,4,74,"(8:11) (Shotgun) R.Griffin pass short right to P.Garcon to WAS 32 for 6 yards (B.Carr). Pass complete on a ""curl"" route.",0,3,2012 -20121122_WAS@DAL,1,52,32,WAS,DAL,1,10,68,"(7:32) R.Griffin pass short left to J.Morgan pushed ob at WAS 49 for 17 yards (G.Sensabaugh). Pass complete on a ""bubble"" screen.",0,3,2012 -20121122_WAS@DAL,1,52,1,WAS,DAL,1,10,51,(7:01) R.Griffin sacked at WAS 42 for -7 yards (A.Spencer).,0,3,2012 -20121122_WAS@DAL,1,51,25,WAS,DAL,2,17,58,(6:25) (Shotgun) A.Morris right tackle to WAS 46 for 4 yards (T.Crawford A.Spencer).,0,3,2012 -20121122_WAS@DAL,1,50,43,WAS,DAL,3,13,54,"(5:43) (Shotgun) R.Griffin pass incomplete short right to P.Garcon. Pass incomplete on a ""skinny"" post.",0,3,2012 -20121122_WAS@DAL,1,50,39,WAS,DAL,4,13,54,(5:39) (Punt formation) S.Rocca punts 41 yards to DAL 13 Center-N.Sundberg downed by WAS-N.Paul.,0,3,2012 -20121122_WAS@DAL,1,50,30,DAL,WAS,1,10,87,(5:30) T.Romo pass incomplete short right to J.Witten (R.Kerrigan). Pass knocked away in the offensive backfield.,3,0,2012 -20121122_WAS@DAL,1,50,25,DAL,WAS,2,10,87,(5:25) F.Jones up the middle to DAL 15 for 2 yards (P.Riley; L.Alexander).,3,0,2012 -20121122_WAS@DAL,1,49,40,DAL,WAS,3,8,85,"(4:40) (Shotgun) T.Romo pass short right to D.Harris pushed ob at DAL 32 for 17 yards (D.Gomes) [L.Alexander]. Pass complete on an ""up and out"" pattern.",3,0,2012 -20121122_WAS@DAL,1,49,13,DAL,WAS,1,10,68,(4:13) D.Bryant right end to DAL 38 for 6 yards (J.Wilson). End around.,3,0,2012 -20121122_WAS@DAL,1,48,28,DAL,WAS,2,4,62,(3:28) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 38 - No Play.,3,0,2012 -20121122_WAS@DAL,1,48,0,DAL,WAS,2,9,67,(3:00) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 33 - No Play.,3,0,2012 -20121122_WAS@DAL,1,47,38,DAL,WAS,2,14,72,"(2:38) (Shotgun) T.Romo pass incomplete deep right to J.Witten. Pass incomplete at the 50 on a ""seam"" pattern; Fletcher closest defender.",3,0,2012 -20121122_WAS@DAL,1,47,32,DAL,WAS,3,14,72,(2:32) (Shotgun) T.Romo pass short middle to L.Vickers to DAL 36 for 8 yards (D.Hall; D.Gomes).,3,0,2012 -20121122_WAS@DAL,1,46,58,DAL,WAS,4,6,64,(1:58) (Punt formation) B.Moorman punts 64 yards to WAS 0 Center-L.Ladouceur. B.Banks pushed ob at WAS 7 for 7 yards (P.Tanner).,3,0,2012 -20121122_WAS@DAL,1,46,44,WAS,DAL,1,10,93,(1:44) (Shotgun) A.Morris right guard to WAS 11 for 4 yards (D.Ware).,0,3,2012 -20121122_WAS@DAL,1,46,5,WAS,DAL,2,6,89,(1:05) (Shotgun) R.Griffin right end to WAS 20 for 9 yards (A.Spencer).,0,3,2012 -20121122_WAS@DAL,1,45,20,WAS,DAL,1,10,80,(:20) R.Griffin pass short left to P.Garcon to WAS 27 for 7 yards (D.Ware; B.Carter).,0,3,2012 -20121122_WAS@DAL,2,45,0,WAS,DAL,2,3,73,(15:00) (Shotgun) A.Morris right guard to WAS 37 for 10 yards (D.McCray).,0,3,2012 -20121122_WAS@DAL,2,44,21,WAS,DAL,1,10,63,(14:21) (Shotgun) PENALTY on WAS-A.Robinson False Start 5 yards enforced at WAS 37 - No Play. Injury update: Dallas' Miles Austin has right hip strain; return is questionable.,0,3,2012 -20121122_WAS@DAL,2,43,57,WAS,DAL,1,15,68,"(13:57) (Shotgun) R.Griffin pass deep left to A.Robinson for 68 yards TOUCHDOWN. Pass complete off play action deep ""post"" pattern.",0,3,2012 -20121122_WAS@DAL,2,43,57,WAS,DAL,,,68,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,3,2012 -20121122_WAS@DAL,2,43,57,WAS,DAL,,,68,K.Forbath kicks 65 yards from WAS 35 to DAL 0. D.Harris to DAL 24 for 24 yards (L.Alexander). Return right side outside the yard line markers.,7,3,2012 -20121122_WAS@DAL,2,43,40,DAL,WAS,1,10,76,(13:40) F.Jones left tackle to DAL 26 for 2 yards (R.Jackson).,3,7,2012 -20121122_WAS@DAL,2,42,57,DAL,WAS,2,8,74,(12:57) (Shotgun) T.Romo pass short right to C.Beasley ran ob at DAL 29 for 3 yards.,3,7,2012 -20121122_WAS@DAL,2,42,24,DAL,WAS,3,5,71,"(12:24) (Shotgun) T.Romo pass short middle to C.Beasley to DAL 38 for 9 yards (D.Gomes). Pass complete on a ""crossing"" pattern.",3,7,2012 -20121122_WAS@DAL,2,41,40,DAL,WAS,1,10,62,"(11:40) T.Romo pass incomplete short middle to J.Witten (C.Griffin) [B.Cofield]. Pass incomplete on a ""drag"" route.",3,7,2012 -20121122_WAS@DAL,2,41,34,DAL,WAS,2,10,62,(11:34) L.Dunbar left tackle to DAL 46 for 8 yards (R.Kerrigan).,3,7,2012 -20121122_WAS@DAL,2,40,49,DAL,WAS,3,2,54,(10:49) (Shotgun) T.Romo pass deep left to D.Bryant to WAS 43 for 11 yards (J.Wilson). FUMBLES (J.Wilson) RECOVERED by WAS-D.Gomes at WAS 38. D.Gomes to DAL 49 for 13 yards (A.Holmes).,3,7,2012 -20121122_WAS@DAL,2,40,37,WAS,DAL,1,10,49,(10:37) A.Morris left guard to DAL 43 for 6 yards (B.Carter).,7,3,2012 -20121122_WAS@DAL,2,40,1,WAS,DAL,2,4,43,(10:01) (Shotgun) A.Morris right guard to DAL 41 for 2 yards (J.Hatcher; B.Carter).,7,3,2012 -20121122_WAS@DAL,2,39,17,WAS,DAL,3,2,41,(9:17) (Shotgun) R.Griffin pass short left to S.Moss to DAL 32 for 9 yards (E.Sims).,7,3,2012 -20121122_WAS@DAL,2,38,35,WAS,DAL,1,10,32,(8:35) (Shotgun) A.Morris right tackle to DAL 25 for 7 yards (J.Hatcher).,7,3,2012 -20121122_WAS@DAL,2,37,55,WAS,DAL,2,3,25,"(7:55) (Shotgun) R.Griffin pass short right to P.Garcon to DAL 6 for 19 yards (B.Carr). Pass complete on a ""skinny"" post.",7,3,2012 -20121122_WAS@DAL,2,37,9,WAS,DAL,1,6,6,(7:09) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson. PENALTY on DAL-B.Carr Defensive Pass Interference 5 yards enforced at DAL 6 - No Play.,7,3,2012 -20121122_WAS@DAL,2,37,3,WAS,DAL,1,1,1,(7:03) A.Morris left tackle for 1 yard TOUCHDOWN.,7,3,2012 -20121122_WAS@DAL,2,37,3,WAS,DAL,,,1,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,7,3,2012 -20121122_WAS@DAL,2,37,3,WAS,DAL,,,1,"K.Forbath kicks 72 yards from WAS 35 to DAL -7. D.Harris to DAL 16 for 23 yards (J.Pugh). Return ""outside"" the yardline markers.",14,3,2012 -20121122_WAS@DAL,2,36,54,DAL,WAS,1,10,84,(6:54) T.Romo pass short right to F.Jones to DAL 20 for 4 yards (R.Kerrigan). Pass complete in the flat.,3,14,2012 -20121122_WAS@DAL,2,36,14,DAL,WAS,2,6,80,(6:14) F.Jones left tackle to DAL 21 for 1 yard (P.Riley).,3,14,2012 -20121122_WAS@DAL,2,35,30,DAL,WAS,3,5,79,"(5:30) (Shotgun) T.Romo pass incomplete short left to C.Beasley. Pass incomplete on a ""crossing"" pattern; Hall closest defender.",3,14,2012 -20121122_WAS@DAL,2,35,24,DAL,WAS,4,5,79,(5:24) (Punt formation) B.Moorman punts 50 yards to WAS 29 Center-L.Ladouceur fair catch by B.Banks.,3,14,2012 -20121122_WAS@DAL,2,35,15,WAS,DAL,1,10,71,(5:15) R.Griffin sacked at WAS 28 for -1 yards (A.Spencer).,14,3,2012 -20121122_WAS@DAL,2,34,34,WAS,DAL,2,11,72,(4:34) A.Morris left guard to WAS 35 for 7 yards (B.Carter).,14,3,2012 -20121122_WAS@DAL,2,33,51,WAS,DAL,3,4,65,"(3:51) (Shotgun) R.Griffin pass short right to B.Banks to WAS 43 for 8 yards (O.Scandrick; A.Spencer). Pass complete on a ""curl"" route.",14,3,2012 -20121122_WAS@DAL,2,33,11,WAS,DAL,1,10,57,(3:11) R.Griffin pass short left to J.Morgan to WAS 41 for -2 yards (M.Claiborne). Injury update: Dallas' Orlando Scandrick taken to locker room for left forearm injury; return is questionable.,14,3,2012 -20121122_WAS@DAL,2,32,25,WAS,DAL,2,12,59,"(2:25) R.Griffin pass short middle to P.Garcon for 59 yards TOUCHDOWN. Pass caught middle on a deep ""crossing"" pattern. PENALTY on DAL-M.Jenkins Unnecessary Roughness 0 yards enforced between downs.",14,3,2012 -20121122_WAS@DAL,2,32,25,WAS,DAL,,,59,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,14,3,2012 -20121122_WAS@DAL,2,32,25,WAS,DAL,,,59,K.Forbath kicks 50 yards from DAL 50 to end zone Touchback. Ball was kicked out of the end zone.,21,3,2012 -20121122_WAS@DAL,2,32,14,DAL,WAS,1,10,80,(2:14) (Shotgun) T.Romo pass short right to C.Beasley to DAL 24 for 4 yards (C.Griffin).,3,21,2012 -20121122_WAS@DAL,2,32,0,DAL,WAS,2,6,76,(2:00) (Shotgun) T.Romo pass short middle to J.Witten to DAL 30 for 6 yards (L.Fletcher).,3,21,2012 -20121122_WAS@DAL,2,31,40,DAL,WAS,1,10,70,(1:40) (No Huddle Shotgun) T.Romo pass short middle to J.Witten to DAL 37 for 7 yards (L.Fletcher) [L.Alexander].,3,21,2012 -20121122_WAS@DAL,2,31,15,DAL,WAS,2,3,63,(1:15) (No Huddle Shotgun) T.Romo pass short middle to C.Beasley to DAL 46 for 9 yards (Mad.Williams).,3,21,2012 -20121122_WAS@DAL,2,30,50,DAL,WAS,1,10,54,"(:50) (No Huddle Shotgun) T.Romo pass incomplete deep right to D.Harris [B.Cofield]. Pass incomplete on a ""fly"" pattern; Griffin closest defender.",3,21,2012 -20121122_WAS@DAL,2,30,44,DAL,WAS,2,10,54,(:44) (Shotgun) T.Romo pass short middle intended for C.Beasley INTERCEPTED by D.Hall at WAS 40. D.Hall to DAL 33 for 27 yards (L.Dunbar).,3,21,2012 -20121122_WAS@DAL,2,30,30,WAS,DAL,1,10,33,(:30) (Shotgun) R.Griffin sacked at DAL 33 for 0 yards (T.Crawford).,21,3,2012 -20121122_WAS@DAL,2,30,24,WAS,DAL,2,10,33,(:24) (Shotgun) R.Griffin pass short right to J.Morgan to DAL 22 for 11 yards (E.Sims).,21,3,2012 -20121122_WAS@DAL,2,30,17,WAS,DAL,1,10,22,(:17) (Shotgun) A.Morris up the middle to DAL 6 for 16 yards (C.Peprah).,21,3,2012 -20121122_WAS@DAL,2,30,10,WAS,DAL,1,6,6,(:10) (Shotgun) R.Griffin pass short right to S.Moss for 6 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,21,3,2012 -20121122_WAS@DAL,2,30,10,WAS,DAL,,,6,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,21,3,2012 -20121122_WAS@DAL,2,30,10,WAS,DAL,,,6,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback. Ball bounces in and out of the end zone.,28,3,2012 -20121122_WAS@DAL,2,30,5,DAL,WAS,1,10,80,(:05) T.Romo kneels to DAL 19 for -1 yards.,3,28,2012 -20121122_WAS@DAL,3,30,0,WAS,DAL,,,80,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback. Ball out of the end zone. Injury update: Miles Austin has a right hip injury and will not return. Orlando Scandrick has a left hand injury and will not return.,28,3,2012 -20121122_WAS@DAL,3,29,59,DAL,WAS,1,10,80,(14:59) (Shotgun) T.Romo pass incomplete short right to D.Harris. Pass incomplete sideline; Hall closest defender.,3,28,2012 -20121122_WAS@DAL,3,29,54,DAL,WAS,2,10,80,"(14:54) (Shotgun) T.Romo pass short left to C.Beasley pushed ob at DAL 40 for 20 yards (J.Wilson). Pass complete on a ""crossing"" pattern.",3,28,2012 -20121122_WAS@DAL,3,29,34,DAL,WAS,1,10,60,(14:34) (Shotgun) T.Romo pass short right to J.Witten to DAL 47 for 7 yards (D.Gomes).,3,28,2012 -20121122_WAS@DAL,3,29,9,DAL,WAS,2,3,53,(14:09) (No Huddle Shotgun) T.Romo pass short middle to D.Harris to WAS 39 for 14 yards (C.Griffin).,3,28,2012 -20121122_WAS@DAL,3,28,41,DAL,WAS,1,10,39,"(13:41) (No Huddle Shotgun) T.Romo pass incomplete short middle to D.Bryant. Pass incomplete on a ""drag"" pattern; Griffin closest defender.",3,28,2012 -20121122_WAS@DAL,3,28,36,DAL,WAS,2,10,39,(13:36) (Shotgun) T.Romo pass short left to F.Jones pushed ob at WAS 6 for 33 yards (C.Griffin). Pass complete in the flat.,3,28,2012 -20121122_WAS@DAL,3,28,1,DAL,WAS,1,6,6,(13:01) (No Huddle Shotgun) T.Romo pass short left to L.Dunbar pushed ob at WAS 10 for -4 yards (P.Riley).,3,28,2012 -20121122_WAS@DAL,3,27,31,DAL,WAS,2,10,10,(12:31) (No Huddle Shotgun) PENALTY on DAL-N.Livings False Start 5 yards enforced at WAS 10 - No Play.,3,28,2012 -20121122_WAS@DAL,3,27,10,DAL,WAS,2,15,15,"(12:10) (No Huddle Shotgun) T.Romo pass incomplete short left to C.Beasley. Pass incomplete on an ""out"" pattern; Williams closest defender.",3,28,2012 -20121122_WAS@DAL,3,27,4,DAL,WAS,3,15,15,(12:04) (Shotgun) T.Romo pass incomplete short middle to D.Harris [R.Jackson]. Pass incomplete at the goal line.,3,28,2012 -20121122_WAS@DAL,3,26,53,DAL,WAS,4,15,15,(11:53) (Field Goal formation) D.Bailey 33 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,28,2012 -20121122_WAS@DAL,3,26,53,DAL,WAS,,,15,D.Bailey kicks 69 yards from DAL 35 to WAS -4. B.Banks to WAS 13 for 17 yards (A.Albright). Return right side of the field outside the yard line markers.,6,28,2012 -20121122_WAS@DAL,3,26,43,WAS,DAL,1,10,87,(11:43) R.Griffin sacked at WAS 5 for -8 yards (J.Hatcher).,28,6,2012 -20121122_WAS@DAL,3,26,4,WAS,DAL,2,18,95,(11:04) (Shotgun) R.Griffin pass short middle to L.Paulsen to WAS 13 for 8 yards (B.Carter).,28,6,2012 -20121122_WAS@DAL,3,25,23,WAS,DAL,3,10,87,"(10:23) (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 23 for 10 yards (B.Carter). Pass complete on a ""slant"" route. Dallas challenged the first down ruling and the play was REVERSED. (Shotgun) R.Griffin pass short middle to J.Morgan to WAS 22 for 9 yards (B.Carter). Pass complete on a ""slant"" route.",28,6,2012 -20121122_WAS@DAL,3,25,23,WAS,DAL,4,1,78,(10:23) (Punt formation) PENALTY on WAS-N.Paul False Start 5 yards enforced at WAS 22 - No Play.,28,6,2012 -20121122_WAS@DAL,3,24,34,WAS,DAL,4,6,83,(9:34) (Punt formation) S.Rocca punts 58 yards to DAL 25 Center-N.Sundberg. D.Harris to DAL 33 for 8 yards (K.Robinson).,28,6,2012 -20121122_WAS@DAL,3,24,18,DAL,WAS,1,10,67,(9:18) (Shotgun) T.Romo pass short left to J.Witten to DAL 37 for 4 yards (Mad.Williams).,6,28,2012 -20121122_WAS@DAL,3,23,52,DAL,WAS,2,6,63,"(8:52) (No Huddle Shotgun) T.Romo pass incomplete deep middle to J.Witten. Pass incomplete on a ""seam"" route; Fletcher closest.",6,28,2012 -20121122_WAS@DAL,3,23,46,DAL,WAS,3,6,63,(8:46) (Shotgun) T.Romo sacked at DAL 30 for -7 yards (S.Bowen).,6,28,2012 -20121122_WAS@DAL,3,23,29,DAL,WAS,4,13,70,(8:29) (Punt formation) B.Moorman punts 56 yards to WAS 14 Center-L.Ladouceur. B.Banks to WAS 20 for 6 yards (D.McCray E.Frampton).,6,28,2012 -20121122_WAS@DAL,3,23,17,WAS,DAL,1,10,80,(8:17) (Shotgun) A.Morris up the middle to WAS 25 for 5 yards (J.Price-Brent B.Carter).,28,6,2012 -20121122_WAS@DAL,3,22,40,WAS,DAL,2,5,75,(7:40) (Shotgun) A.Morris right guard to WAS 28 for 3 yards (T.Crawford J.Price-Brent).,28,6,2012 -20121122_WAS@DAL,3,22,3,WAS,DAL,3,2,72,(7:03) (Shotgun) R.Griffin pass short right to L.Paulsen pushed ob at WAS 31 for 3 yards (B.Carr).,28,6,2012 -20121122_WAS@DAL,3,21,32,WAS,DAL,1,10,69,(6:32) R.Griffin pass incomplete short left to L.Hankerson. Pass incomplete off a naked bootleg; Spencer closest defender.,28,6,2012 -20121122_WAS@DAL,3,21,26,WAS,DAL,2,10,69,(6:26) (Shotgun) A.Morris left tackle to WAS 34 for 3 yards (A.Spencer). Stretch play.,28,6,2012 -20121122_WAS@DAL,3,20,42,WAS,DAL,3,7,66,(5:42) (Shotgun) R.Griffin pass incomplete deep right to S.Moss [B.Carter]. Pass incomplete right sideline at the Dallas 45; Carr closest defender.,28,6,2012 -20121122_WAS@DAL,3,20,35,WAS,DAL,4,7,66,(5:35) (Punt formation) S.Rocca punts 51 yards to DAL 15 Center-N.Sundberg. D.Harris to DAL 21 for 6 yards (R.Doughty; D.Young).,28,6,2012 -20121122_WAS@DAL,3,20,23,DAL,WAS,1,10,79,"(5:23) (Shotgun) T.Romo pass short right to D.Bryant to DAL 25 for 4 yards (S.Bowen). ""Bubble screen.""",6,28,2012 -20121122_WAS@DAL,3,19,50,DAL,WAS,2,6,75,(4:50) (No Huddle Shotgun) T.Romo pass short left to J.Witten pushed ob at DAL 31 for 6 yards (D.Gomes).,6,28,2012 -20121122_WAS@DAL,3,19,50,DAL,WAS,1,10,69,(4:50) (No Huddle Shotgun) T.Romo up the middle to DAL 33 for 2 yards (R.Kerrigan).,6,28,2012 -20121122_WAS@DAL,3,19,16,DAL,WAS,2,8,67,(4:16) (No Huddle Shotgun) T.Romo pass incomplete deep left to D.Bryant [B.Cofield]. Pass incomplete sideline at the 50; Wilson closest defender.,6,28,2012 -20121122_WAS@DAL,3,19,16,DAL,WAS,3,8,67,(4:16) (Shotgun) PENALTY on DAL-D.Bryant False Start 5 yards enforced at DAL 33 - No Play.,6,28,2012 -20121122_WAS@DAL,3,19,11,DAL,WAS,3,13,72,(4:11) (Shotgun) T.Romo pass short right to J.Witten to DAL 43 for 15 yards (L.Alexander).,6,28,2012 -20121122_WAS@DAL,3,18,42,DAL,WAS,1,10,57,(3:42) (No Huddle Shotgun) T.Romo pass incomplete short left to C.Beasley. Pass incomplete at the Dallas 45; Wilson closest.,6,28,2012 -20121122_WAS@DAL,3,18,37,DAL,WAS,2,10,57,(3:37) (No Huddle Shotgun) T.Romo pass short left to L.Vickers to DAL 46 for 3 yards (D.Hall) [J.Jenkins].,6,28,2012 -20121122_WAS@DAL,3,18,5,DAL,WAS,3,7,54,(3:05) (No Huddle Shotgun) T.Romo pass short middle intended for C.Beasley INTERCEPTED by L.Fletcher at WAS 39. L.Fletcher to WAS 49 for 10 yards (C.Beasley).,6,28,2012 -20121122_WAS@DAL,3,17,57,WAS,DAL,1,10,51,(2:57) A.Morris right end to DAL 50 for 1 yard (A.Spencer).,28,6,2012 -20121122_WAS@DAL,3,17,19,WAS,DAL,2,9,50,(2:19) (Shotgun) R.Griffin right end pushed ob at DAL 47 for 3 yards (M.Spears). Injury update: Chris Wilson has a right hamstring injury. His return is questionable.,28,6,2012 -20121122_WAS@DAL,3,16,52,WAS,DAL,3,6,47,(1:52) (Shotgun) R.Griffin pass incomplete short left. Griffin forced out of the pocket.,28,6,2012 -20121122_WAS@DAL,3,16,44,WAS,DAL,4,6,47,(1:44) (Punt formation) S.Rocca punts 32 yards to DAL 15 Center-N.Sundberg fair catch by D.Harris. Penalty on DAL-D.McCray Defensive 12 On-field declined.,28,6,2012 -20121122_WAS@DAL,3,16,38,DAL,WAS,1,10,85,"(1:38) (Shotgun) T.Romo pass deep right to D.Bryant for 85 yards TOUCHDOWN. Pass complete after Romo forced out of the pocked and threw on the run; Bryant caught the pass on a ""crossing"" pattern.",6,28,2012 -20121122_WAS@DAL,3,16,38,DAL,WAS,,,85,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,6,28,2012 -20121122_WAS@DAL,3,16,38,DAL,WAS,,,85,D.Bailey kicks 70 yards from DAL 35 to WAS -5. B.Banks to WAS 18 for 23 yards (A.Albright). Return right side of the field outside the yard line markers.,13,28,2012 -20121122_WAS@DAL,3,16,18,WAS,DAL,1,10,82,"(1:18) R.Griffin pass short left to P.Garcon to WAS 20 for 2 yards (D.Connor). Pass complete on a ""bubble"" screen.",28,13,2012 -20121122_WAS@DAL,3,15,37,WAS,DAL,2,8,80,(:37) (Shotgun) R.Griffin left end pushed ob at WAS 34 for 14 yards (C.Peprah).,28,13,2012 -20121122_WAS@DAL,4,15,0,WAS,DAL,1,10,66,(15:00) (Shotgun) A.Morris left tackle to WAS 49 for 15 yards (G.Sensabaugh; C.Peprah).,28,13,2012 -20121122_WAS@DAL,4,14,19,WAS,DAL,1,10,51,(14:19) R.Griffin pass short right to J.Morgan pushed ob at DAL 38 for 13 yards (B.Carter) [D.Ware]. DAL-B.Carter was injured during the play. His return is Questionable.,28,13,2012 -20121122_WAS@DAL,4,14,2,WAS,DAL,1,10,38,(14:02) (Shotgun) A.Morris left guard to DAL 33 for 5 yards (T.Crawford).,28,13,2012 -20121122_WAS@DAL,4,13,26,WAS,DAL,2,5,33,(13:26) (Shotgun) R.Griffin right end to DAL 29 for 4 yards (B.Carr). Injury update: Bruce Carter has a left elbow injury and will not return to the game.,28,13,2012 -20121122_WAS@DAL,4,12,57,WAS,DAL,3,1,29,"(12:57) R.Griffin pass deep right to N.Paul for 29 yards TOUCHDOWN [J.Price-Brent]. Pass complete on a ""flag"" pattern.",28,13,2012 -20121122_WAS@DAL,4,12,57,WAS,DAL,,,29,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,28,13,2012 -20121122_WAS@DAL,4,12,57,WAS,DAL,,,29,K.Forbath kicks 61 yards from WAS 35 to DAL 4. L.Dunbar to DAL 12 for 8 yards (L.Alexander).,35,13,2012 -20121122_WAS@DAL,4,12,42,DAL,WAS,1,10,88,(12:42) (Shotgun) T.Romo pass short left to D.Bryant to DAL 27 for 15 yards (J.Wilson).,13,35,2012 -20121122_WAS@DAL,4,12,42,DAL,WAS,1,10,73,(12:42) (No Huddle Shotgun) T.Romo pass short left to C.Beasley to DAL 38 for 11 yards (L.Fletcher).,13,35,2012 -20121122_WAS@DAL,4,11,50,DAL,WAS,1,10,62,(11:50) (No Huddle Shotgun) T.Romo pass short middle to D.Harris to WAS 26 for 36 yards (J.Wilson).,13,35,2012 -20121122_WAS@DAL,4,11,13,DAL,WAS,1,10,26,"(11:13) (No Huddle Shotgun) T.Romo pass incomplete short middle to C.Beasley. Pass incomplete on a ""crossing"" pattern.",13,35,2012 -20121122_WAS@DAL,4,11,8,DAL,WAS,2,10,26,(11:08) (Shotgun) T.Romo pass short left to C.Beasley to WAS 14 for 12 yards (J.Wilson).,13,35,2012 -20121122_WAS@DAL,4,10,37,DAL,WAS,1,10,14,(10:37) (No Huddle Shotgun) T.Romo pass short middle to A.Holmes to WAS 10 for 4 yards (D.Hall).,13,35,2012 -20121122_WAS@DAL,4,10,6,DAL,WAS,2,6,10,(10:06) (No Huddle Shotgun) T.Romo pass incomplete short middle to F.Jones. Pass incomplete flat; Wilson closest defender.,13,35,2012 -20121122_WAS@DAL,4,10,1,DAL,WAS,3,6,10,(10:01) (Shotgun) T.Romo pass short left to F.Jones for 10 yards TOUCHDOWN. Pass caught after circling out of the backfield.,13,35,2012 -20121122_WAS@DAL,4,10,1,DAL,WAS,,,10,TWO-POINT CONVERSION ATTEMPT. T.Romo rushes up the middle. ATTEMPT SUCCEEDS. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,13,35,2012 -20121122_WAS@DAL,4,10,1,DAL,WAS,,,10,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was not touched and bounced out of the end zone.,21,35,2012 -20121122_WAS@DAL,4,9,54,WAS,DAL,1,10,80,(9:54) (Shotgun) A.Morris left tackle to WAS 22 for 2 yards (J.Price-Brent).,35,21,2012 -20121122_WAS@DAL,4,9,14,WAS,DAL,2,8,78,(9:14) (Shotgun) R.Griffin pass deep middle intended for J.Morgan INTERCEPTED by C.Peprah at WAS 45. C.Peprah to WAS 18 for 27 yards (P.Garcon). Heavy pressure on Griffin by Ware. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,35,21,2012 -20121122_WAS@DAL,4,8,59,DAL,WAS,1,10,18,(8:59) (Shotgun) T.Romo pass short left to D.Bryant pushed ob at WAS 11 for 7 yards (K.Robinson).,21,35,2012 -20121122_WAS@DAL,4,8,31,DAL,WAS,2,3,11,(8:31) (No Huddle Shotgun) T.Romo pass incomplete short right to J.Witten (D.Hall). Hall tipped the pass at the line of scrimmage.,21,35,2012 -20121122_WAS@DAL,4,8,27,DAL,WAS,3,3,11,"(8:27) (Shotgun) T.Romo pass incomplete short left to L.Dunbar. Pass incomplete in the flat on a ""wheel"" route.",21,35,2012 -20121122_WAS@DAL,4,8,24,DAL,WAS,4,3,11,(8:24) (Shotgun) T.Romo pass short left to D.Bryant for 11 yards TOUCHDOWN.,21,35,2012 -20121122_WAS@DAL,4,8,24,DAL,WAS,,,11,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman. Injury update: London Fletcher has an ankle injury. His return is questionable.,21,35,2012 -20121122_WAS@DAL,4,8,24,DAL,WAS,,,11,D.Bailey kicks 73 yards from DAL 35 to WAS -8. B.Banks Touchback.,28,35,2012 -20121122_WAS@DAL,4,8,18,WAS,DAL,1,10,80,(8:18) (Shotgun) A.Morris left tackle to WAS 19 for -1 yards (D.Connor).,35,28,2012 -20121122_WAS@DAL,4,7,38,WAS,DAL,2,11,81,(7:38) R.Griffin pass deep middle to S.Moss to WAS 42 for 23 yards (G.Sensabaugh).,35,28,2012 -20121122_WAS@DAL,4,6,53,WAS,DAL,1,10,58,(6:53) (Shotgun) A.Morris right end pushed ob at WAS 48 for 6 yards (B.Carr).,35,28,2012 -20121122_WAS@DAL,4,6,16,WAS,DAL,2,4,52,(6:16) (Shotgun) A.Morris left tackle to DAL 49 for 3 yards (T.Crawford).,35,28,2012 -20121122_WAS@DAL,4,5,30,WAS,DAL,3,1,49,"(5:30) (Shotgun) R.Griffin pass short right to S.Moss to DAL 45 for 4 yards (M.Jenkins). Pass complete on a ""curl"" route.",35,28,2012 -20121122_WAS@DAL,4,4,49,WAS,DAL,1,10,45,(4:49) A.Morris left end to DAL 39 for 6 yards (M.Claiborne; E.Sims).,35,28,2012 -20121122_WAS@DAL,4,4,49,WAS,DAL,2,4,39,(4:49) (Shotgun) PENALTY on WAS-T.Williams False Start 5 yards enforced at DAL 39 - No Play.,35,28,2012 -20121122_WAS@DAL,4,4,2,WAS,DAL,2,9,44,"(4:02) (Shotgun) R.Griffin pass short left to L.Hankerson to DAL 32 for 12 yards (A.Spencer). Pass complete on a ""button hook.""",35,28,2012 -20121122_WAS@DAL,4,3,20,WAS,DAL,1,10,32,(3:20) A.Morris right tackle to DAL 30 for 2 yards (E.Sims).,35,28,2012 -20121122_WAS@DAL,4,3,14,WAS,DAL,2,8,30,(3:14) (Shotgun) R.Griffin right end to DAL 30 for no gain (A.Spencer).,35,28,2012 -20121122_WAS@DAL,4,3,8,WAS,DAL,3,8,30,(3:08) (Shotgun) R.Griffin pass incomplete short left to P.Garcon. Pass incomplete on a slant at the Dallas 23; Claiborne closest defender.,35,28,2012 -20121122_WAS@DAL,4,3,3,WAS,DAL,4,8,30,(3:03) (Field Goal formation) K.Forbath 48 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,35,28,2012 -20121122_WAS@DAL,4,3,3,WAS,DAL,,,30,K.Forbath kicks 65 yards from WAS 35 to DAL 0. L.Dunbar to DAL 21 for 21 yards (R.Doughty). Return right side of the field outside the yardline markers.,38,28,2012 -20121122_WAS@DAL,4,2,53,DAL,WAS,1,10,79,(2:53) (Shotgun) T.Romo scrambles up the middle to DAL 27 for 6 yards (P.Riley).,28,38,2012 -20121122_WAS@DAL,4,2,23,DAL,WAS,2,4,73,(2:23) (No Huddle Shotgun) T.Romo pass incomplete short left to L.Dunbar.,28,38,2012 -20121122_WAS@DAL,4,2,18,DAL,WAS,3,4,73,"(2:18) (Shotgun) T.Romo pass short left to L.Dunbar pushed ob at DAL 41 for 14 yards (Mad.Williams). Pass complete on a ""wheel"" route.",28,38,2012 -20121122_WAS@DAL,4,2,12,DAL,WAS,1,10,59,(2:12) (No Huddle Shotgun) T.Romo sacked at DAL 30 for -11 yards (R.Kerrigan).,28,38,2012 -20121122_WAS@DAL,4,2,0,DAL,WAS,2,21,70,(2:00) (Shotgun) T.Romo pass short right to J.Witten to DAL 43 for 13 yards (K.Robinson).,28,38,2012 -20121122_WAS@DAL,4,2,0,DAL,WAS,3,8,57,(2:00) (No Huddle Shotgun) T.Romo pass short right to J.Witten to WAS 47 for 10 yards (P.Riley).,28,38,2012 -20121122_WAS@DAL,4,1,9,DAL,WAS,1,10,47,(1:09) (No Huddle Shotgun) T.Romo pass short right to D.Bryant pushed ob at WAS 44 for 3 yards (P.Riley).,28,38,2012 -20121122_WAS@DAL,4,1,3,DAL,WAS,2,7,44,(1:03) (Shotgun) T.Romo pass incomplete deep middle to D.Bryant (Mad.Williams). Pass incomplete 8 yards deep middle of the end zone on deep post.,28,38,2012 -20121122_WAS@DAL,4,0,54,DAL,WAS,3,7,44,(:54) (Shotgun) T.Romo pass short right to L.Dunbar to WAS 33 for 11 yards (Mad.Williams; P.Riley).,28,38,2012 -20121122_WAS@DAL,4,0,38,DAL,WAS,1,10,33,(:38) T.Romo spiked the ball to stop the clock.,28,38,2012 -20121122_WAS@DAL,4,0,36,DAL,WAS,2,10,33,(:36) (Shotgun) T.Romo pass incomplete short middle to L.Dunbar.,28,38,2012 -20121122_WAS@DAL,4,0,31,DAL,WAS,3,10,33,(:31) (Shotgun) T.Romo pass incomplete deep left to J.Witten. Pass incomplete left corner of the end zone.,28,38,2012 -20121122_WAS@DAL,4,0,23,DAL,WAS,4,10,33,(:23) (Field Goal formation) D.Bailey 51 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman. Penalty on WAS-B.Cofield Defensive Offside declined.,28,38,2012 -20121122_WAS@DAL,4,0,23,DAL,WAS,,,33,D.Bailey kicks onside 10 yards from DAL 35 to DAL 45. D.Hall to DAL 2 for 43 yards (D.Bailey).,31,38,2012 -20121122_WAS@DAL,4,0,12,WAS,DAL,1,2,2,(:12) R.Griffin kneels to DAL 3 for -1 yards.,38,31,2012 -20121122_WAS@DAL,4,0,12,WAS,DAL,,,2,                      ,38,31,2012 -20121122_NE@NYJ,1,0,0,NYJ,NE,,,2,N.Folk kicks 64 yards from NYJ 35 to NE 1. D.McCourty to NE 19 for 18 yards (N.Bellore).,0,0,2012 -20121122_NE@NYJ,1,59,53,NE,NYJ,1,10,81,(14:53) T.Brady pass incomplete short right. PENALTY on NE-T.Brady Intentional Grounding 9 yards enforced at NE 19.,0,0,2012 -20121122_NE@NYJ,1,59,48,NE,NYJ,2,19,90,(14:48) S.Ridley left tackle to NE 15 for 5 yards (K.Wilson).,0,0,2012 -20121122_NE@NYJ,1,59,48,NE,NYJ,3,14,85,(14:48) (Shotgun) T.Brady pass short right to J.Edelman to NE 23 for 8 yards (Y.Bell).,0,0,2012 -20121122_NE@NYJ,1,58,37,NE,NYJ,4,6,77,(13:37) Z.Mesko punts 43 yards to NYJ 34 Center-D.Aiken. K.Wilson to NYJ 35 for 1 yard (M.Slater).,0,0,2012 -20121122_NE@NYJ,1,58,28,NYJ,NE,1,10,65,(13:28) M.Sanchez sacked at NYJ 29 for -6 yards (D.Hightower).,0,0,2012 -20121122_NE@NYJ,1,57,56,NYJ,NE,2,16,71,(12:56) S.Greene up the middle to NYJ 40 for 11 yards (J.Mayo).,0,0,2012 -20121122_NE@NYJ,1,57,22,NYJ,NE,3,5,60,(12:22) (Shotgun) M.Sanchez pass incomplete short left to E.Gates.,0,0,2012 -20121122_NE@NYJ,1,57,18,NYJ,NE,4,5,60,(12:18) R.Malone punts 54 yards to NE 6 Center-T.Purdum. J.Edelman to NE 36 for 30 yards (G.McIntyre; T.Purdum).,0,0,2012 -20121122_NE@NYJ,1,57,5,NE,NYJ,1,10,64,(12:05) S.Ridley up the middle to NE 45 for 9 yards (D.Harris; L.Landry).,0,0,2012 -20121122_NE@NYJ,1,56,41,NE,NYJ,2,1,55,(11:41) (No Huddle) S.Ridley up the middle to 50 for 5 yards (M.Wilkerson; M.Devito).,0,0,2012 -20121122_NE@NYJ,1,56,20,NE,NYJ,1,10,50,(11:20) (No Huddle) T.Brady pass short left to A.Hernandez to NYJ 22 for 28 yards (K.Wilson; M.Wilkerson).,0,0,2012 -20121122_NE@NYJ,1,55,51,NE,NYJ,1,10,22,(10:51) (No Huddle) S.Ridley left tackle to NYJ 21 for 1 yard (C.Pace; B.Scott).,0,0,2012 -20121122_NE@NYJ,1,55,21,NE,NYJ,2,9,21,(10:21) T.Brady pass incomplete deep right to B.Lloyd.,0,0,2012 -20121122_NE@NYJ,1,55,14,NE,NYJ,3,9,21,(10:14) (Shotgun) T.Brady pass incomplete short left to W.Welker.,0,0,2012 -20121122_NE@NYJ,1,55,9,NE,NYJ,4,9,21,(10:09) S.Gostkowski 39 yard field goal is No Good Wide Left Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121122_NE@NYJ,1,55,5,NYJ,NE,1,10,70,(10:05) Change of yardline due to change of possession. PENALTY on NE-V.Wilfork Encroachment 5 yards enforced at NYJ 30 - No Play.,0,0,2012 -20121122_NE@NYJ,1,55,5,NYJ,NE,1,5,65,(10:05) S.Greene up the middle to NYJ 38 for 3 yards (B.Spikes).,0,0,2012 -20121122_NE@NYJ,1,54,31,NYJ,NE,2,2,62,(9:31) S.Greene right tackle to NE 47 for 15 yards (D.McCourty).,0,0,2012 -20121122_NE@NYJ,1,53,54,NYJ,NE,1,10,47,(8:54) S.Greene left tackle to NE 42 for 5 yards (B.Spikes).,0,0,2012 -20121122_NE@NYJ,1,53,19,NYJ,NE,2,5,42,(8:19) M.Sanchez pass short right to J.Cumberland to NE 35 for 7 yards (B.Spikes).,0,0,2012 -20121122_NE@NYJ,1,53,19,NYJ,NE,1,10,35,(8:19) J.Smith reported in as eligible. S.Greene up the middle to NE 32 for 3 yards (B.Spikes; J.Mayo).,0,0,2012 -20121122_NE@NYJ,1,52,3,NYJ,NE,2,7,32,(7:03) M.Sanchez pass short right to S.Greene to NE 26 for 6 yards (J.Mayo). PENALTY on NE-J.Cunningham Defensive Holding 5 yards enforced at NE 32 - No Play.,0,0,2012 -20121122_NE@NYJ,1,51,40,NYJ,NE,1,10,27,(6:40) B.Powell left guard to NE 23 for 4 yards (J.Mayo).,0,0,2012 -20121122_NE@NYJ,1,51,1,NYJ,NE,2,6,23,(6:01) M.Sanchez pass short right intended for B.Powell INTERCEPTED by S.Gregory at NE 15. S.Gregory to NE 16 for 1 yard (B.Powell).,0,0,2012 -20121122_NE@NYJ,1,50,55,NE,NYJ,1,10,84,(5:55) T.Brady pass incomplete short middle to D.Fells.,0,0,2012 -20121122_NE@NYJ,1,50,55,NE,NYJ,2,10,84,(5:55) (Shotgun) PENALTY on NYJ Defensive 12 On-field 5 yards enforced at NE 16 - No Play.,0,0,2012 -20121122_NE@NYJ,1,50,51,NE,NYJ,2,5,79,(5:51) (Shotgun) D.Woodhead up the middle to NE 29 for 8 yards (E.Lankster).,0,0,2012 -20121122_NE@NYJ,1,50,23,NE,NYJ,1,10,71,(5:23) (No Huddle Shotgun) T.Brady pass incomplete deep left to W.Welker (L.Landry).,0,0,2012 -20121122_NE@NYJ,1,50,17,NE,NYJ,2,10,71,(5:17) S.Ridley right tackle to NE 38 for 9 yards (K.Wilson).,0,0,2012 -20121122_NE@NYJ,1,49,38,NE,NYJ,3,1,62,(4:38) S.Vereen left end to NE 45 for 7 yards (Y.Bell).,0,0,2012 -20121122_NE@NYJ,1,49,6,NE,NYJ,1,10,55,(4:06) (Shotgun) T.Brady pass short left to W.Welker to 50 for 5 yards (E.Smith).,0,0,2012 -20121122_NE@NYJ,1,48,42,NE,NYJ,2,5,50,(3:42) S.Ridley left guard to NYJ 49 for 1 yard (B.Scott).,0,0,2012 -20121122_NE@NYJ,1,48,42,NE,NYJ,3,4,49,(3:42) (Shotgun) PENALTY on NYJ Neutral Zone Infraction 5 yards enforced at NYJ 49 - No Play.,0,0,2012 -20121122_NE@NYJ,1,47,40,NE,NYJ,1,10,44,(2:40) T.Brady pass short left to W.Welker to NYJ 41 for 3 yards (D.Harris).,0,0,2012 -20121122_NE@NYJ,1,47,4,NE,NYJ,2,7,41,(2:04) S.Ridley right tackle to NYJ 35 for 6 yards (D.Harris).,0,0,2012 -20121122_NE@NYJ,1,46,42,NE,NYJ,3,1,35,(1:42) (No Huddle) S.Ridley left tackle to NYJ 32 for 3 yards (D.Davis).,0,0,2012 -20121122_NE@NYJ,1,46,8,NE,NYJ,1,10,32,(1:08) (Shotgun) T.Brady pass incomplete short right to W.Welker.,0,0,2012 -20121122_NE@NYJ,1,46,7,NE,NYJ,2,10,32,(1:07) S.Vereen up the middle to NYJ 19 for 13 yards (E.Lankster). PENALTY on NYJ-E.Lankster Face Mask (15 Yards) 10 yards enforced at NYJ 19.,0,0,2012 -20121122_NE@NYJ,1,45,40,NE,NYJ,1,9,9,(:40) S.Vereen left guard to NYJ 7 for 2 yards (S.Pouha).,0,0,2012 -20121122_NE@NYJ,1,45,18,NE,NYJ,2,7,7,(:18) S.Vereen left tackle to NYJ 3 for 4 yards (B.Scott).,0,0,2012 -20121122_NE@NYJ,2,45,0,NE,NYJ,3,3,3,(15:00) (Shotgun) T.Brady pass short right to W.Welker for 3 yards TOUCHDOWN.,0,0,2012 -20121122_NE@NYJ,2,45,0,NE,NYJ,,,3,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121122_NE@NYJ,2,45,0,NE,NYJ,,,3,S.Gostkowski kicks 70 yards from NE 35 to NYJ -5. J.McKnight to NYJ 32 for 37 yards (T.Wilson; S.Gregory).,7,0,2012 -20121122_NE@NYJ,2,44,48,NYJ,NE,1,10,68,(14:48) B.Powell right tackle to NYJ 36 for 4 yards (J.Cunningham).,0,7,2012 -20121122_NE@NYJ,2,44,7,NYJ,NE,2,6,64,(14:07) J.Smith reported in as eligible. M.Sanchez pass short left to B.Powell pushed ob at 50 for 14 yards (D.McCourty).,0,7,2012 -20121122_NE@NYJ,2,43,38,NYJ,NE,1,10,50,(13:38) B.Powell up the middle to NE 44 for 6 yards (J.Mayo).,0,7,2012 -20121122_NE@NYJ,2,43,5,NYJ,NE,2,4,44,(13:05) B.Powell up the middle to NE 43 for 1 yard (J.Mayo).,0,7,2012 -20121122_NE@NYJ,2,42,26,NYJ,NE,3,3,43,(12:26) (Shotgun) B.Powell up the middle to NE 40 for 3 yards (J.Cunningham; V.Wilfork).,0,7,2012 -20121122_NE@NYJ,2,41,55,NYJ,NE,1,10,40,(11:55) B.Powell right tackle to NE 37 for 3 yards (J.Cunningham).,0,7,2012 -20121122_NE@NYJ,2,41,11,NYJ,NE,2,7,37,(11:11) (Shotgun) M.Sanchez pass short left to J.Cumberland pushed ob at NE 32 for 5 yards (B.Spikes).,0,7,2012 -20121122_NE@NYJ,2,40,44,NYJ,NE,3,2,32,(10:44) (Shotgun) B.Powell up the middle to NE 31 for 1 yard (B.Spikes; J.Mayo).,0,7,2012 -20121122_NE@NYJ,2,40,6,NYJ,NE,4,1,31,(10:06) J.Smith reported in as eligible. S.Greene up the middle to NE 31 for no gain (B.Spikes). FUMBLES (B.Spikes) RECOVERED by NE-S.Gregory at NE 19. S.Gregory to NE 17 for -2 yards (J.Cumberland).,0,7,2012 -20121122_NE@NYJ,2,39,56,NE,NYJ,1,10,83,(9:56) (Shotgun) T.Brady pass short left to S.Vereen for 83 yards TOUCHDOWN.,7,0,2012 -20121122_NE@NYJ,2,39,56,NE,NYJ,,,83,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,0,2012 -20121122_NE@NYJ,2,39,56,NE,NYJ,,,83,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,14,0,2012 -20121122_NE@NYJ,2,39,43,NYJ,NE,1,10,80,(9:43) M.Sanchez pass short left to E.Gates to NYJ 31 for 11 yards (D.McCourty).,0,14,2012 -20121122_NE@NYJ,2,39,10,NYJ,NE,1,10,69,(9:10) M.Sanchez up the middle to NYJ 32 for 1 yard. FUMBLES RECOVERED by NE-S.Gregory at NYJ 32. S.Gregory for 32 yards TOUCHDOWN.,0,14,2012 -20121122_NE@NYJ,2,39,10,NE,NYJ,,,69,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,0,2012 -20121122_NE@NYJ,2,39,10,NE,NYJ,,,69,S.Gostkowski kicks 70 yards from NE 35 to NYJ -5. J.McKnight to NYJ 20 for 25 yards (D.McCourty). FUMBLES (D.McCourty) RECOVERED by NE-J.Edelman at NYJ 22. J.Edelman for 22 yards TOUCHDOWN.,21,0,2012 -20121122_NE@NYJ,2,39,10,NE,NYJ,,,69,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,0,2012 -20121122_NE@NYJ,2,39,10,NE,NYJ,,,69,S.Gostkowski kicks 70 yards from NE 35 to NYJ -5. J.McKnight to NYJ 18 for 23 yards (M.Rivera).,28,0,2012 -20121122_NE@NYJ,2,38,47,NYJ,NE,1,10,82,(8:47) S.Greene up the middle to NYJ 22 for 4 yards (B.Deaderick; J.Cunningham).,0,28,2012 -20121122_NE@NYJ,2,38,14,NYJ,NE,2,6,78,(8:14) M.Sanchez pass short left to K.Reuland to NYJ 29 for 7 yards (D.Hightower).,0,28,2012 -20121122_NE@NYJ,2,37,40,NYJ,NE,1,10,71,(7:40) S.Greene left end to NYJ 39 for 10 yards (A.Dennard).,0,28,2012 -20121122_NE@NYJ,2,36,57,NYJ,NE,1,10,61,(6:57) S.Greene up the middle to NYJ 44 for 5 yards (J.Mayo).,0,28,2012 -20121122_NE@NYJ,2,36,21,NYJ,NE,2,5,56,(6:21) M.Sanchez pass short left to B.Powell to NYJ 43 for -1 yards (P.Chung).,0,28,2012 -20121122_NE@NYJ,2,35,35,NYJ,NE,3,6,57,(5:35) (Shotgun) M.Sanchez sacked at NYJ 34 for -9 yards (J.Mayo).,0,28,2012 -20121122_NE@NYJ,2,35,8,NYJ,NE,4,15,66,(5:08) R.Malone punts 41 yards to NE 25 Center-T.Purdum. J.Edelman ran ob at NE 27 for 2 yards.,0,28,2012 -20121122_NE@NYJ,2,35,1,NE,NYJ,1,10,73,(5:01) T.Brady pass short left to B.Lloyd to NE 39 for 12 yards (D.Harris).,28,0,2012 -20121122_NE@NYJ,2,34,33,NE,NYJ,1,10,61,(4:33) (No Huddle) S.Ridley left tackle to NE 45 for 6 yards (D.Davis). NYJ-M.Wilkerson was injured during the play.,28,0,2012 -20121122_NE@NYJ,2,33,57,NE,NYJ,2,4,55,(3:57) S.Ridley left end to NE 44 for -1 yards (L.Landry).,28,0,2012 -20121122_NE@NYJ,2,33,17,NE,NYJ,3,5,56,(3:17) (Shotgun) T.Brady pass deep left to J.Edelman for 56 yards TOUCHDOWN.,28,0,2012 -20121122_NE@NYJ,2,33,17,NE,NYJ,,,56,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,28,0,2012 -20121122_NE@NYJ,2,33,17,NE,NYJ,,,56,S.Gostkowski kicks 66 yards from NE 35 to NYJ -1. J.McKnight to NYJ 23 for 24 yards (M.Rivera; K.Arrington).,35,0,2012 -20121122_NE@NYJ,2,33,3,NYJ,NE,1,10,77,(3:03) (Shotgun) M.Sanchez pass short middle to J.Kerley to NYJ 28 for 5 yards (B.Spikes).,0,35,2012 -20121122_NE@NYJ,2,32,39,NYJ,NE,2,5,72,(2:39) (No Huddle Shotgun) M.Sanchez pass short right to D.Keller to NYJ 40 for 12 yards (S.Gregory).,0,35,2012 -20121122_NE@NYJ,2,32,12,NYJ,NE,1,10,60,(2:12) (No Huddle Shotgun) M.Sanchez pass short left to D.Keller to NYJ 48 for 8 yards (B.Spikes; J.Mayo).,0,35,2012 -20121122_NE@NYJ,2,32,0,NYJ,NE,2,2,52,(2:00) (Shotgun) B.Powell up the middle to NYJ 48 for no gain (V.Wilfork).,0,35,2012 -20121122_NE@NYJ,2,31,53,NYJ,NE,3,2,52,(1:53) (Shotgun) M.Sanchez pass short middle to J.Cumberland to NE 45 for 7 yards (J.Mayo).,0,35,2012 -20121122_NE@NYJ,2,31,32,NYJ,NE,1,10,45,(1:32) (No Huddle Shotgun) M.Sanchez pass incomplete deep right to J.Kerley.,0,35,2012 -20121122_NE@NYJ,2,31,29,NYJ,NE,2,10,45,(1:29) (Shotgun) M.Sanchez pass short right to S.Hill to NE 36 for 9 yards (K.Arrington).,0,35,2012 -20121122_NE@NYJ,2,31,16,NYJ,NE,3,1,36,(1:16) J.Smith reported in as eligible. S.Greene up the middle to NE 30 for 6 yards (R.Ninkovich).,0,35,2012 -20121122_NE@NYJ,2,30,55,NYJ,NE,1,10,30,(:55) (No Huddle Shotgun) M.Sanchez pass incomplete short left to E.Gates (A.Dennard).,0,35,2012 -20121122_NE@NYJ,2,30,50,NYJ,NE,2,10,30,(:50) (Shotgun) M.Sanchez pass short middle to E.Gates to NE 21 for 9 yards (K.Arrington). NYJ-E.Gates was injured during the play. NE-K.Arrington was injured during the play.,0,35,2012 -20121122_NE@NYJ,2,30,32,NYJ,NE,3,1,21,(:32) (Shotgun) M.Sanchez pass incomplete short middle to J.Kerley (B.Spikes).,0,35,2012 -20121122_NE@NYJ,2,30,28,NYJ,NE,4,1,21,(:28) (Shotgun) M.Sanchez pass short right to S.Hill to NE 14 for 7 yards (D.McCourty; A.Talib).,0,35,2012 -20121122_NE@NYJ,2,30,7,NYJ,NE,1,10,14,(:07) (No Huddle) M.Sanchez spiked the ball to stop the clock.,0,35,2012 -20121122_NE@NYJ,2,30,7,NYJ,NE,2,10,14,(:07) N.Folk 32 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,35,2012 -20121122_NE@NYJ,2,30,7,NYJ,NE,,,14,N.Folk kicks 30 yards from NYJ 35 to NE 35. J.Edelman (didn't try to advance) dead ball declared at NE 35 for no gain.,3,35,2012 -20121122_NE@NYJ,3,30,0,NE,NYJ,,,14,S.Gostkowski kicks 58 yards from NE 35 to NYJ 7. J.McKnight to NYJ 21 for 14 yards (M.Slater).,35,3,2012 -20121122_NE@NYJ,3,29,56,NYJ,NE,1,10,79,(14:56) (Shotgun) S.Greene left guard to NYJ 19 for -2 yards (K.Arrington).,3,35,2012 -20121122_NE@NYJ,3,29,15,NYJ,NE,2,12,81,(14:15) M.Sanchez pass short right to J.Kerley pushed ob at NYJ 29 for 10 yards (A.Talib).,3,35,2012 -20121122_NE@NYJ,3,28,31,NYJ,NE,3,2,71,(13:31) (Shotgun) M.Sanchez pass short right to J.Kerley to NYJ 30 for 1 yard (J.Cunningham).,3,35,2012 -20121122_NE@NYJ,3,27,49,NYJ,NE,4,1,70,(12:49) R.Malone punts 46 yards to NE 24 Center-T.Purdum. W.Welker ran ob at NE 24 for no gain.,3,35,2012 -20121122_NE@NYJ,3,27,42,NE,NYJ,1,10,76,(12:42) (Shotgun) T.Brady pass incomplete deep left to J.Edelman.,35,3,2012 -20121122_NE@NYJ,3,27,37,NE,NYJ,2,10,76,(12:37) T.Brady pass incomplete deep left to B.Lloyd.,35,3,2012 -20121122_NE@NYJ,3,27,31,NE,NYJ,3,10,76,(12:31) (Shotgun) T.Brady pass short middle to W.Welker to NE 43 for 19 yards (L.Landry).,35,3,2012 -20121122_NE@NYJ,3,27,2,NE,NYJ,1,10,57,(12:02) S.Ridley left end to NE 44 for 1 yard (D.Harris).,35,3,2012 -20121122_NE@NYJ,3,26,39,NE,NYJ,2,9,56,(11:39) (No Huddle) T.Brady pass short left to A.Hernandez to NYJ 48 for 8 yards (D.Davis).,35,3,2012 -20121122_NE@NYJ,3,26,12,NE,NYJ,3,1,48,(11:12) (No Huddle) T.Brady up the middle to NYJ 46 for 2 yards (M.Devito).,35,3,2012 -20121122_NE@NYJ,3,25,43,NE,NYJ,1,10,46,(10:43) (No Huddle Shotgun) J.Edelman right end to NYJ 43 for 3 yards (L.Landry K.Wilson). FUMBLES (L.Landry) RECOVERED by NYJ-E.Smith at NYJ 43. E.Smith to NYJ 43 for no gain (D.Fells). NE-J.Edelman was injured during the play.,35,3,2012 -20121122_NE@NYJ,3,25,34,NYJ,NE,1,10,57,(10:34) M.Sanchez pass deep right to D.Keller to NE 36 for 21 yards (S.Gregory).,3,35,2012 -20121122_NE@NYJ,3,24,55,NYJ,NE,1,10,36,(9:55) S.Greene up the middle to NE 33 for 3 yards (J.Mayo).,3,35,2012 -20121122_NE@NYJ,3,24,13,NYJ,NE,2,7,33,(9:13) (Shotgun) M.Sanchez pass short right to J.Kerley to NE 20 for 13 yards (S.Gregory). FUMBLES (S.Gregory) recovered by NYJ-C.Schilens at NE 14. C.Schilens to NE 14 for no gain (D.McCourty).,3,35,2012 -20121122_NE@NYJ,3,23,38,NYJ,NE,1,10,14,(8:38) (No Huddle Shotgun) S.Greene up the middle to NE 6 for 8 yards (S.Gregory).,3,35,2012 -20121122_NE@NYJ,3,23,24,NYJ,NE,2,2,6,(8:24) M.Sanchez pass incomplete short right to C.Schilens. New York Jets challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),3,35,2012 -20121122_NE@NYJ,3,23,24,NYJ,NE,3,2,6,(8:24) (Shotgun) PENALTY on NE-B.Spikes Encroachment 3 yards enforced at NE 6 - No Play.,3,35,2012 -20121122_NE@NYJ,3,23,22,NYJ,NE,1,3,3,(8:22) (Shotgun) B.Powell up the middle to NE 2 for 1 yard (V.Wilfork).,3,35,2012 -20121122_NE@NYJ,3,22,43,NYJ,NE,2,2,2,(7:43) (Shotgun) M.Sanchez pass incomplete short middle to D.Keller (K.Arrington).,3,35,2012 -20121122_NE@NYJ,3,22,39,NYJ,NE,3,2,2,(7:39) (Shotgun) M.Sanchez right tackle to NE 1 for 1 yard.,3,35,2012 -20121122_NE@NYJ,3,21,56,NYJ,NE,4,1,1,(6:56) J.Smith reported in as eligible. S.Greene up the middle to NE 1 for no gain (B.Spikes).,3,35,2012 -20121122_NE@NYJ,3,21,52,NE,NYJ,1,10,99,(6:52) T.Brady pass incomplete short left to B.Lloyd. PENALTY on NE-S.Ridley Chop Block 0 yards enforced in End Zone SAFETY.,35,3,2012 -20121122_NE@NYJ,3,21,52,NE,NYJ,,,99,Z.Mesko kicks 60 yards from NE 20 to NYJ 20. K.Wilson to NYJ 29 for 9 yards (D.Martin).,35,5,2012 -20121122_NE@NYJ,3,21,42,NYJ,NE,1,10,71,(6:42) M.Sanchez pass deep left to J.Cumberland pushed ob at NE 32 for 39 yards (D.Hightower).,5,35,2012 -20121122_NE@NYJ,3,21,22,NYJ,NE,1,10,32,(6:22) (Shotgun) B.Powell up the middle to NE 18 for 14 yards (T.Scott; D.McCourty).,5,35,2012 -20121122_NE@NYJ,3,20,38,NYJ,NE,1,10,18,(5:38) M.Sanchez pass short middle to J.Kerley to NE 7 for 11 yards (B.Spikes; D.McCourty).,5,35,2012 -20121122_NE@NYJ,3,20,1,NYJ,NE,1,7,7,(5:01) (Shotgun) M.Sanchez sacked at NE 8 for -1 yards (J.Mayo). PENALTY on NE-B.Spikes Defensive Holding 3 yards enforced at NE 7 - No Play.,5,35,2012 -20121122_NE@NYJ,3,19,45,NYJ,NE,1,4,4,(4:45) B.Powell left tackle for 4 yards TOUCHDOWN.,5,35,2012 -20121122_NE@NYJ,3,19,45,NYJ,NE,,,4,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,5,35,2012 -20121122_NE@NYJ,3,19,45,NYJ,NE,,,4,N.Folk kicks 63 yards from NYJ 35 to NE 2. D.McCourty pushed ob at NE 13 for 11 yards (E.Lankster).,12,35,2012 -20121122_NE@NYJ,3,19,37,NE,NYJ,1,10,87,(4:37) S.Ridley right guard to NE 21 for 8 yards (D.Harris).,35,12,2012 -20121122_NE@NYJ,3,19,6,NE,NYJ,2,2,79,(4:06) (No Huddle) S.Ridley right end to NE 22 for 1 yard (D.Harris).,35,12,2012 -20121122_NE@NYJ,3,18,32,NE,NYJ,3,1,78,(3:32) T.Brady left tackle to NE 24 for 2 yards (M.Devito).,35,12,2012 -20121122_NE@NYJ,3,18,2,NE,NYJ,1,10,76,(3:02) S.Ridley left guard to NE 30 for 6 yards (D.Davis).,35,12,2012 -20121122_NE@NYJ,3,17,29,NE,NYJ,2,4,70,(2:29) T.Brady pass incomplete deep left to A.Hernandez.,35,12,2012 -20121122_NE@NYJ,3,17,23,NE,NYJ,3,4,70,(2:23) (Shotgun) T.Brady pass short right to W.Welker to NE 35 for 5 yards (E.Lankster).,35,12,2012 -20121122_NE@NYJ,3,16,46,NE,NYJ,1,10,65,(1:46) T.Brady pass deep middle to D.Fells to NYJ 41 for 24 yards (E.Smith).,35,12,2012 -20121122_NE@NYJ,3,16,17,NE,NYJ,1,10,41,(1:17) (No Huddle) S.Ridley left tackle to NYJ 42 for -1 yards (B.Thomas).,35,12,2012 -20121122_NE@NYJ,3,15,37,NE,NYJ,2,11,42,(:37) (Shotgun) T.Brady pass short left to B.Lloyd to NYJ 33 for 9 yards (Y.Bell).,35,12,2012 -20121122_NE@NYJ,4,15,0,NE,NYJ,3,2,33,(15:00) S.Ridley left guard to NYJ 29 for 4 yards (D.Harris).,35,12,2012 -20121122_NE@NYJ,4,14,36,NE,NYJ,1,10,29,(14:36) (No Huddle) S.Ridley left tackle to NYJ 22 for 7 yards (D.Harris; L.Landry).,35,12,2012 -20121122_NE@NYJ,4,14,14,NE,NYJ,2,3,22,(14:14) (No Huddle) S.Ridley right guard to NYJ 15 for 7 yards (L.Landry).,35,12,2012 -20121122_NE@NYJ,4,13,53,NE,NYJ,1,10,15,(13:53) (No Huddle) S.Ridley up the middle to NYJ 7 for 8 yards (Y.Bell; L.Landry).,35,12,2012 -20121122_NE@NYJ,4,13,14,NE,NYJ,2,2,7,(13:14) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez for 7 yards TOUCHDOWN NULLIFIED by Penalty [B.Thomas]. PENALTY on NE-A.Hernandez Offensive Pass Interference 10 yards enforced at NYJ 7 - No Play.,35,12,2012 -20121122_NE@NYJ,4,13,9,NE,NYJ,2,12,17,(13:09) T.Brady pass short left to B.Lloyd to NYJ 12 for 5 yards (E.Lankster).,35,12,2012 -20121122_NE@NYJ,4,12,33,NE,NYJ,3,7,12,(12:33) (Shotgun) T.Brady pass short left to S.Vereen pushed ob at NYJ 4 for 8 yards (K.Wilson).,35,12,2012 -20121122_NE@NYJ,4,12,27,NE,NYJ,1,4,4,(12:27) (No Huddle) S.Vereen right guard to NYJ 1 for 3 yards (M.Wilkerson; E.Lankster).,35,12,2012 -20121122_NE@NYJ,4,12,6,NE,NYJ,2,1,1,(12:06) (No Huddle) T.Brady up the middle for 1 yard TOUCHDOWN.,35,12,2012 -20121122_NE@NYJ,4,12,6,NE,NYJ,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,35,12,2012 -20121122_NE@NYJ,4,12,6,NE,NYJ,,,1,S.Gostkowski kicks 66 yards from NE 35 to NYJ -1. J.McKnight to NYJ 23 for 24 yards (M.Rivera).,42,12,2012 -20121122_NE@NYJ,4,11,56,NYJ,NE,1,10,77,(11:56) (Shotgun) M.Sanchez pass deep left to C.Schilens to NYJ 45 for 22 yards (A.Dennard). FUMBLES (A.Dennard) RECOVERED by NE-R.Ninkovich at NYJ 40. R.Ninkovich to NYJ 37 for 3 yards (D.Fletcher).,12,42,2012 -20121122_NE@NYJ,4,11,45,NE,NYJ,1,10,37,(11:45) T.Brady pass deep left to W.Welker to NYJ 9 for 28 yards (Y.Bell).,42,12,2012 -20121122_NE@NYJ,4,11,13,NE,NYJ,1,9,9,(11:13) S.Ridley right end for 9 yards TOUCHDOWN.,42,12,2012 -20121122_NE@NYJ,4,11,13,NE,NYJ,,,9,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,42,12,2012 -20121122_NE@NYJ,4,11,13,NE,NYJ,,,9,S.Gostkowski kicks 66 yards from NE 35 to NYJ -1. J.McKnight pushed ob at NYJ 20 for 21 yards (D.McCourty). PENALTY on NYJ-N.Bellore Personal Foul 10 yards enforced at NYJ 20.,49,12,2012 -20121122_NE@NYJ,4,11,3,NYJ,NE,1,10,90,(11:03) (Shotgun) B.Powell left guard to NYJ 9 for -1 yards (J.Cunningham).,12,49,2012 -20121122_NE@NYJ,4,10,34,NYJ,NE,2,11,91,(10:34) (No Huddle Shotgun) M.Sanchez pass short left to J.Kerley to NYJ 19 for 10 yards (A.Dennard).,12,49,2012 -20121122_NE@NYJ,4,10,9,NYJ,NE,3,1,81,(10:09) (No Huddle Shotgun) B.Powell left tackle to NYJ 22 for 3 yards (T.Scott; R.Ninkovich). PENALTY on NYJ-S.Hill Illegal Motion 5 yards enforced at NYJ 19 - No Play.,12,49,2012 -20121122_NE@NYJ,4,9,48,NYJ,NE,3,6,86,(9:48) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley (K.Arrington).,12,49,2012 -20121122_NE@NYJ,4,9,43,NYJ,NE,4,6,86,(9:43) R.Malone punts 57 yards to NE 29 Center-T.Purdum fair catch by W.Welker.,12,49,2012 -20121122_NE@NYJ,4,9,36,NE,NYJ,1,10,71,(9:36) S.Vereen left end to NE 36 for 7 yards (B.Thomas).,49,12,2012 -20121122_NE@NYJ,4,9,0,NE,NYJ,2,3,64,(9:00) S.Vereen right tackle to NE 41 for 5 yards (M.Devito).,49,12,2012 -20121122_NE@NYJ,4,8,18,NE,NYJ,1,10,59,(8:18) S.Vereen left tackle to NE 38 for -3 yards (L.Landry).,49,12,2012 -20121122_NE@NYJ,4,7,43,NE,NYJ,2,13,62,(7:43) T.Brady pass short right to W.Welker pushed ob at NE 46 for 8 yards (K.Wilson).,49,12,2012 -20121122_NE@NYJ,4,7,0,NE,NYJ,3,5,54,(7:00) (Shotgun) T.Brady pass short middle to D.Woodhead to NYJ 43 for 11 yards (C.Pace; E.Smith) [D.Harris].,49,12,2012 -20121122_NE@NYJ,4,6,18,NE,NYJ,1,10,43,(6:18) S.Vereen left guard to NYJ 41 for 2 yards (D.Davis).,49,12,2012 -20121122_NE@NYJ,4,5,37,NE,NYJ,2,8,41,(5:37) S.Vereen left end to NYJ 39 for 2 yards (D.Harris).,49,12,2012 -20121122_NE@NYJ,4,4,53,NE,NYJ,3,6,39,(4:53) (Shotgun) D.Woodhead right tackle to NYJ 39 for no gain (G.McIntyre).,49,12,2012 -20121122_NE@NYJ,4,4,9,NE,NYJ,4,6,39,(4:09) Z.Mesko punts 39 yards to end zone Center-D.Aiken Touchback.,49,12,2012 -20121122_NE@NYJ,4,4,1,NYJ,NE,1,10,80,(4:01) (Shotgun) M.Sanchez pass short middle to S.Greene to NYJ 29 for 9 yards (T.White; D.Hightower) [J.Francis].,12,49,2012 -20121122_NE@NYJ,4,3,32,NYJ,NE,2,1,71,(3:32) (No Huddle Shotgun) M.Sanchez pass deep right to J.Kerley to NE 35 for 36 yards (S.Gregory).,12,49,2012 -20121122_NE@NYJ,4,3,5,NYJ,NE,1,10,35,(3:05) (No Huddle Shotgun) M.Sanchez pass deep left to D.Keller to NE 13 for 22 yards (P.Chung).,12,49,2012 -20121122_NE@NYJ,4,2,39,NYJ,NE,1,10,13,(2:39) (No Huddle Shotgun) M.Sanchez pass incomplete short middle to D.Keller.,12,49,2012 -20121122_NE@NYJ,4,2,34,NYJ,NE,2,10,13,(2:34) (Shotgun) M.Sanchez pass short left to C.Schilens to NE 2 for 11 yards (A.Dennard). PENALTY on NE-A.Dennard Unnecessary Roughness 1 yard enforced at NE 2.,12,49,2012 -20121122_NE@NYJ,4,2,26,NYJ,NE,1,1,1,(2:26) M.Sanchez pass short left to D.Keller for 1 yard TOUCHDOWN.,12,49,2012 -20121122_NE@NYJ,4,2,26,NYJ,NE,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,12,49,2012 -20121122_NE@NYJ,4,2,18,NE,NYJ,1,10,86,(2:18) NE 15-Mallett now at QB. S.Ridley right tackle to NE 17 for 3 yards (D.Davis).,49,19,2012 -20121122_NE@NYJ,4,2,0,NE,NYJ,2,7,83,(2:00) R.Mallett kneels to NE 15 for -2 yards.,49,19,2012 -20121122_NE@NYJ,4,1,20,NE,NYJ,3,9,85,(1:20) R.Mallett kneels to NE 14 for -1 yards.,49,19,2012 -20121122_NE@NYJ,4,0,39,NE,NYJ,4,10,86,(:39) Z.Mesko punts 43 yards to NYJ 43 Center-D.Aiken fair catch by K.Wilson.,49,19,2012 -20121122_NE@NYJ,4,0,33,NYJ,NE,1,10,57,(:33) J.Smith reported in as eligible. J.McKnight left tackle to NYJ 49 for 6 yards (A.Dennard).,19,49,2012 -20121122_NE@NYJ,4,0,33,NYJ,NE,,,57,                      ,19,49,2012 -20121125_MIN@CHI,1,0,0,CHI,MIN,,,57,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121125_MIN@CHI,1,60,0,MIN,CHI,1,10,80,(15:00) (Shotgun) C.Ponder sacked at MIN 11 for -9 yards (H.Melton).,0,0,2012 -20121125_MIN@CHI,1,59,37,MIN,CHI,2,19,89,(14:37) A.Peterson right tackle to MIN 12 for 1 yard (N.Roach).,0,0,2012 -20121125_MIN@CHI,1,59,2,MIN,CHI,3,18,88,(14:02) (Shotgun) C.Ponder pass short left to J.Wright to MIN 24 for 12 yards (B.Urlacher; L.Briggs).,0,0,2012 -20121125_MIN@CHI,1,58,23,MIN,CHI,4,6,76,(13:23) (Punt formation) C.Kluwe punts 53 yards to CHI 23 Center-C.Loeffler. D.Hester to CHI 29 for 6 yards (H.Smith).,0,0,2012 -20121125_MIN@CHI,1,58,12,CHI,MIN,1,10,71,(13:12) M.Forte left guard to CHI 29 for no gain. FUMBLES RECOVERED by MIN-C.Greenway at CHI 28. C.Greenway to CHI 28 for no gain (L.Louis).,0,0,2012 -20121125_MIN@CHI,1,58,7,MIN,CHI,1,10,28,(13:07) C.Ponder pass incomplete deep middle to K.Rudolph (L.Briggs).,0,0,2012 -20121125_MIN@CHI,1,58,2,MIN,CHI,2,10,28,(13:02) A.Peterson right guard to CHI 22 for 6 yards (N.Roach).,0,0,2012 -20121125_MIN@CHI,1,57,26,MIN,CHI,3,4,22,(12:26) (Shotgun) C.Ponder pass incomplete short right to J.Simpson (C.Tillman).,0,0,2012 -20121125_MIN@CHI,1,57,22,MIN,CHI,4,4,22,(12:22) (Field Goal formation) B.Walsh 40 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121125_MIN@CHI,1,57,22,MIN,CHI,,,22,B.Walsh kicks 55 yards from MIN 35 to CHI 10. E.Weems to CHI 22 for 12 yards (M.Mitchell).,3,0,2012 -20121125_MIN@CHI,1,57,13,CHI,MIN,1,10,78,(12:13) J.Cutler sacked at CHI 17 for -5 yards (F.Evans).,0,3,2012 -20121125_MIN@CHI,1,56,40,CHI,MIN,2,15,83,(11:40) M.Forte right end to CHI 19 for 2 yards (J.Brinkley).,0,3,2012 -20121125_MIN@CHI,1,56,2,CHI,MIN,3,13,81,(11:02) (Shotgun) J.Cutler pass short right to M.Forte to CHI 23 for 4 yards (J.Robinson).,0,3,2012 -20121125_MIN@CHI,1,55,23,CHI,MIN,4,9,77,(10:23) (Punt formation) A.Podlesh punts 45 yards to MIN 32 Center-P.Mannelly downed by CHI-A.Allen.,0,3,2012 -20121125_MIN@CHI,1,55,13,MIN,CHI,1,10,68,(10:13) A.Peterson left end to MIN 33 for 1 yard (N.Roach). FUMBLES (N.Roach) RECOVERED by CHI-C.Tillman at MIN 33. C.Tillman to MIN 34 for -1 yards (A.Peterson).,3,0,2012 -20121125_MIN@CHI,1,55,7,CHI,MIN,1,10,34,(10:07) M.Forte right guard to MIN 30 for 4 yards (L.Guion).,0,3,2012 -20121125_MIN@CHI,1,54,34,CHI,MIN,2,6,30,(9:34) J.Cutler pass incomplete short left to B.Marshall (J.Allen).,0,3,2012 -20121125_MIN@CHI,1,54,29,CHI,MIN,3,6,30,(9:29) (Shotgun) J.Cutler pass short middle to E.Bennett to MIN 19 for 11 yards (J.Sanford).,0,3,2012 -20121125_MIN@CHI,1,53,46,CHI,MIN,1,10,19,(8:46) M.Bush right guard to MIN 16 for 3 yards (H.Smith).,0,3,2012 -20121125_MIN@CHI,1,53,7,CHI,MIN,2,7,16,(8:07) (Shotgun) J.Cutler pass short middle to K.Davis to MIN 1 for 15 yards (J.Sanford).,0,3,2012 -20121125_MIN@CHI,1,52,21,CHI,MIN,1,1,1,(7:21) G.Carimi reported in as eligible. M.Bush left end for 1 yard TOUCHDOWN.,0,3,2012 -20121125_MIN@CHI,1,52,21,CHI,MIN,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,3,2012 -20121125_MIN@CHI,1,52,21,CHI,MIN,,,1,R.Gould kicks 58 yards from CHI 35 to MIN 7. M.Asiata to MIN 22 for 15 yards (E.Weems).,7,3,2012 -20121125_MIN@CHI,1,52,12,MIN,CHI,1,10,78,(7:12) C.Ponder pass short left to J.Simpson to MIN 23 for 1 yard (C.Tillman).,3,7,2012 -20121125_MIN@CHI,1,51,40,MIN,CHI,2,9,77,(6:40) C.Ponder pass incomplete short right to A.Peterson.,3,7,2012 -20121125_MIN@CHI,1,51,31,MIN,CHI,3,9,77,(6:31) (Shotgun) C.Ponder pass short left to J.Wright to MIN 31 for 8 yards (C.Tillman).,3,7,2012 -20121125_MIN@CHI,1,50,51,MIN,CHI,4,1,69,(5:51) (Punt formation) C.Kluwe punts 23 yards to CHI 46 Center-C.Loeffler out of bounds.,3,7,2012 -20121125_MIN@CHI,1,50,45,CHI,MIN,1,10,54,(5:45) J.Cutler pass short middle to B.Marshall to MIN 46 for 8 yards (H.Smith).,7,3,2012 -20121125_MIN@CHI,1,50,9,CHI,MIN,2,2,46,(5:09) M.Bush left guard to MIN 45 for 1 yard (J.Allen).,7,3,2012 -20121125_MIN@CHI,1,49,31,CHI,MIN,3,1,45,(4:31) G.Carimi reported in as eligible. M.Bush right end to MIN 43 for 2 yards (C.Ballard).,7,3,2012 -20121125_MIN@CHI,1,48,57,CHI,MIN,1,10,43,(3:57) M.Bush right guard to MIN 42 for 1 yard (C.Ballard; L.Guion).,7,3,2012 -20121125_MIN@CHI,1,48,19,CHI,MIN,2,9,42,(3:19) J.Cutler pass short left to B.Marshall pushed ob at MIN 34 for 8 yards (E.Henderson).,7,3,2012 -20121125_MIN@CHI,1,47,51,CHI,MIN,3,1,34,(2:51) G.Carimi reported in as eligible. M.Bush left end to MIN 33 for 1 yard (C.Greenway). PENALTY on MIN-A.Jefferson Unnecessary Roughness 15 yards enforced at MIN 33.,7,3,2012 -20121125_MIN@CHI,1,47,22,CHI,MIN,1,10,18,(2:22) J.Cutler scrambles left end pushed ob at MIN 13 for 5 yards (A.Jefferson). PENALTY on CHI-J.Cutler Taunting 15 yards enforced at MIN 13.,7,3,2012 -20121125_MIN@CHI,1,47,0,CHI,MIN,2,20,28,(2:00) M.Forte left tackle to MIN 22 for 6 yards (C.Greenway).,7,3,2012 -20121125_MIN@CHI,1,46,20,CHI,MIN,3,14,22,(1:20) J.Cutler pass short right to B.Marshall to MIN 29 for -7 yards (H.Smith).,7,3,2012 -20121125_MIN@CHI,1,45,37,CHI,MIN,4,21,29,(:37) (Field Goal formation) R.Gould 47 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,3,2012 -20121125_MIN@CHI,1,45,37,CHI,MIN,,,29,R.Gould kicks 68 yards from CHI 35 to MIN -3. M.Sherels to MIN 35 for 38 yards (A.Allen).,10,3,2012 -20121125_MIN@CHI,1,45,24,MIN,CHI,1,10,65,(:24) (Shotgun) A.Peterson right guard to MIN 40 for 5 yards (C.Wootton; L.Briggs).,3,10,2012 -20121125_MIN@CHI,2,45,0,MIN,CHI,2,5,60,(15:00) C.Ponder pass short right to J.Wright to MIN 44 for 4 yards (T.Jennings).,3,10,2012 -20121125_MIN@CHI,2,44,24,MIN,CHI,3,1,56,(14:24) C.Ponder pass short right to K.Rudolph pushed ob at CHI 31 for 25 yards (C.Conte).,3,10,2012 -20121125_MIN@CHI,2,43,56,MIN,CHI,1,10,31,(13:56) A.Peterson left end to CHI 23 for 8 yards (K.Hayden; C.Conte).,3,10,2012 -20121125_MIN@CHI,2,43,16,MIN,CHI,2,2,23,(13:16) C.Ponder pass short left to A.Peterson pushed ob at CHI 16 for 7 yards (K.Hayden).,3,10,2012 -20121125_MIN@CHI,2,42,54,MIN,CHI,1,10,16,(12:54) A.Peterson right tackle to CHI 12 for 4 yards (T.Jennings).,3,10,2012 -20121125_MIN@CHI,2,42,20,MIN,CHI,2,6,12,(12:20) C.Ponder pass incomplete short left.,3,10,2012 -20121125_MIN@CHI,2,42,10,MIN,CHI,3,6,12,(12:10) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (C.Conte M.Wright).,3,10,2012 -20121125_MIN@CHI,2,42,5,MIN,CHI,4,6,12,(12:05) B.Walsh 30 yard field goal is BLOCKED (J.Peppers) Center-C.Loeffler Holder-C.Kluwe.,3,10,2012 -20121125_MIN@CHI,2,42,0,CHI,MIN,1,10,80,(12:00) M.Forte left guard to CHI 25 for 5 yards (J.Brinkley).,10,3,2012 -20121125_MIN@CHI,2,41,18,CHI,MIN,2,5,75,(11:18) J.Cutler pass incomplete short middle to K.Davis [K.Williams].,10,3,2012 -20121125_MIN@CHI,2,41,11,CHI,MIN,3,5,75,(11:11) (Shotgun) M.Forte left end to CHI 31 for 6 yards (J.Brinkley).,10,3,2012 -20121125_MIN@CHI,2,40,32,CHI,MIN,1,10,69,(10:32) J.Cutler pass short right to B.Marshall to CHI 38 for 7 yards (A.Winfield).,10,3,2012 -20121125_MIN@CHI,2,39,47,CHI,MIN,2,3,62,(9:47) (Shotgun) M.Forte right tackle to CHI 38 for no gain (B.Robison).,10,3,2012 -20121125_MIN@CHI,2,39,8,CHI,MIN,3,3,62,(9:08) J.Cutler pass short left to E.Rodriguez pushed ob at CHI 49 for 11 yards (C.Greenway).,10,3,2012 -20121125_MIN@CHI,2,38,40,CHI,MIN,1,10,51,(8:40) M.Bush right guard to MIN 46 for 5 yards (E.Henderson).,10,3,2012 -20121125_MIN@CHI,2,38,7,CHI,MIN,2,5,46,(8:07) M.Bush right guard to MIN 43 for 3 yards (C.Greenway).,10,3,2012 -20121125_MIN@CHI,2,37,28,CHI,MIN,3,2,43,(7:28) M.Bush right tackle to MIN 42 for 1 yard (M.Raymond). Offical measurement.,10,3,2012 -20121125_MIN@CHI,2,36,48,CHI,MIN,4,1,42,(6:48) G.Carimi reported in as eligible. M.Bush right tackle to MIN 37 for 5 yards (E.Henderson).,10,3,2012 -20121125_MIN@CHI,2,36,16,CHI,MIN,1,10,37,(6:16) J.Cutler pass short left to E.Bennett to MIN 33 for 4 yards (E.Henderson).,10,3,2012 -20121125_MIN@CHI,2,35,36,CHI,MIN,2,6,33,(5:36) M.Forte right end to MIN 31 for 2 yards (A.Winfield).,10,3,2012 -20121125_MIN@CHI,2,34,59,CHI,MIN,3,4,31,(4:59) (Shotgun) J.Cutler pass short right to B.Marshall to MIN 25 for 6 yards (H.Smith). CHI-C.Spencer was injured during the play. His return is Questionable.,10,3,2012 -20121125_MIN@CHI,2,34,17,CHI,MIN,1,10,25,(4:17) J.Cutler pass incomplete deep right to B.Marshall. PENALTY on MIN-A.Winfield Defensive Pass Interference 24 yards enforced at MIN 25 - No Play.,10,3,2012 -20121125_MIN@CHI,2,34,5,CHI,MIN,1,1,1,(4:05) G.Carimi reported in as eligible. M.Bush left end for 1 yard TOUCHDOWN.,10,3,2012 -20121125_MIN@CHI,2,34,5,CHI,MIN,,,1,(Kick formation) TWO-POINT CONVERSION ATTEMPT. A.Podlesh rushes left tackle. ATTEMPT SUCCEEDS.,10,3,2012 -20121125_MIN@CHI,2,34,5,CHI,MIN,,,1,R.Gould kicks 68 yards from CHI 35 to MIN -3. J.Robinson to MIN 11 for 14 yards (E.Weems; A.Allen).,18,3,2012 -20121125_MIN@CHI,2,33,57,MIN,CHI,1,10,89,(3:57) A.Peterson right tackle to MIN 11 for no gain (M.Wright).,3,18,2012 -20121125_MIN@CHI,2,33,18,MIN,CHI,2,10,89,(3:18) C.Ponder scrambles left end to MIN 17 for 6 yards (L.Briggs).,3,18,2012 -20121125_MIN@CHI,2,32,44,MIN,CHI,3,4,83,(2:44) (Shotgun) C.Ponder pass short left to K.Rudolph pushed ob at MIN 25 for 8 yards (C.Conte) [H.Melton].,3,18,2012 -20121125_MIN@CHI,2,32,13,MIN,CHI,1,10,75,(2:13) (Shotgun) C.Ponder pass incomplete short right to D.Aromashodu.,3,18,2012 -20121125_MIN@CHI,2,32,8,MIN,CHI,2,10,75,(2:08) C.Ponder pass deep middle intended for D.Aromashodu INTERCEPTED by C.Conte [N.Collins] at MIN 48. C.Conte to MIN 13 for 35 yards (C.Johnson).,3,18,2012 -20121125_MIN@CHI,2,31,55,CHI,MIN,1,10,13,(1:55) J.Cutler pass short left to M.Spaeth for 13 yards TOUCHDOWN [J.Allen]. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,18,3,2012 -20121125_MIN@CHI,2,31,55,CHI,MIN,,,13,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,18,3,2012 -20121125_MIN@CHI,2,31,55,CHI,MIN,,,13,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,25,3,2012 -20121125_MIN@CHI,2,31,44,MIN,CHI,1,10,80,(1:44) (Shotgun) C.Ponder pass incomplete short right to J.Wright.,3,25,2012 -20121125_MIN@CHI,2,31,43,MIN,CHI,2,10,80,(1:43) (Shotgun) C.Ponder pass incomplete deep middle to K.Rudolph [S.McClellin].,3,25,2012 -20121125_MIN@CHI,2,31,39,MIN,CHI,3,10,80,(1:39) (Shotgun) C.Ponder pass short left to J.Wright pushed ob at MIN 25 for 5 yards (K.Hayden).,3,25,2012 -20121125_MIN@CHI,2,31,33,MIN,CHI,4,5,75,(1:33) (Punt formation) C.Kluwe punts 42 yards to CHI 33 Center-C.Loeffler downed by MIN-T.McKenzie.,3,25,2012 -20121125_MIN@CHI,2,31,21,CHI,MIN,1,10,67,(1:21) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 38 for 5 yards (A.Winfield). PENALTY on MIN-J.Sullivan Illegal Use of Hands 5 yards enforced at CHI 33 - No Play.,25,3,2012 -20121125_MIN@CHI,2,31,15,CHI,MIN,1,10,62,(1:15) (Shotgun) J.Cutler pass short left to E.Bennett to MIN 42 for 20 yards (J.Sanford).,25,3,2012 -20121125_MIN@CHI,2,31,3,CHI,MIN,1,10,42,(1:03) (Shotgun) J.Cutler pass short middle to M.Forte to MIN 42 for no gain (J.Brinkley) [B.Robison].,25,3,2012 -20121125_MIN@CHI,2,30,43,CHI,MIN,2,10,42,(:43) (No Huddle Shotgun) J.Cutler pass short left to B.Marshall to MIN 34 for 8 yards (A.Winfield).,25,3,2012 -20121125_MIN@CHI,2,30,25,CHI,MIN,3,2,34,(:25) (No Huddle Shotgun) J.Cutler pass short right to E.Weems to MIN 25 for 9 yards (H.Smith).,25,3,2012 -20121125_MIN@CHI,2,30,10,CHI,MIN,1,10,25,(:10) (No Huddle Shotgun) M.Forte left guard to MIN 21 for 4 yards (C.Greenway).,25,3,2012 -20121125_MIN@CHI,2,30,3,CHI,MIN,2,6,21,(:03) R.Gould 39 yard field goal is BLOCKED (K.Williams) Center-P.Mannelly Holder-A.Podlesh.,25,3,2012 -20121125_MIN@CHI,3,30,0,MIN,CHI,,,21,B.Walsh kicks 67 yards from MIN 35 to CHI -2. E.Weems to CHI 25 for 27 yards (R.Blanton).,3,25,2012 -20121125_MIN@CHI,3,29,54,CHI,MIN,1,10,75,(14:54) M.Forte left end to CHI 29 for 4 yards (J.Brinkley).,25,3,2012 -20121125_MIN@CHI,3,29,12,CHI,MIN,2,6,71,(14:12) (Shotgun) J.Cutler pass incomplete short middle to K.Davis.,25,3,2012 -20121125_MIN@CHI,3,29,5,CHI,MIN,3,6,71,(14:05) (Shotgun) J.Cutler pass short middle to B.Marshall to CHI 46 for 17 yards (A.Winfield).,25,3,2012 -20121125_MIN@CHI,3,28,15,CHI,MIN,1,10,54,(13:15) J.Cutler pass short right to E.Bennett pushed ob at MIN 44 for 10 yards (H.Smith). MIN-H.Smith was injured during the play. He is Out.,25,3,2012 -20121125_MIN@CHI,3,27,57,CHI,MIN,1,10,44,(12:57) J.Cutler pass short middle intended for B.Marshall INTERCEPTED by A.Winfield at MIN 29. A.Winfield to CHI 40 for 31 yards (M.Forte). CHI-L.Louis was injured during the play. He is Out.,25,3,2012 -20121125_MIN@CHI,3,27,45,MIN,CHI,1,10,40,(12:45) A.Peterson right guard to CHI 39 for 1 yard (H.Melton). PENALTY on CHI-H.Melton Face Mask (15 Yards) 15 yards enforced at CHI 39.,3,25,2012 -20121125_MIN@CHI,3,27,24,MIN,CHI,1,10,24,(12:24) A.Peterson right tackle to CHI 19 for 5 yards (N.Roach).,3,25,2012 -20121125_MIN@CHI,3,26,48,MIN,CHI,2,5,19,(11:48) (Shotgun) A.Peterson left guard to CHI 15 for 4 yards (L.Briggs).,3,25,2012 -20121125_MIN@CHI,3,26,14,MIN,CHI,3,1,15,(11:14) C.Ponder pass short left to K.Rudolph pushed ob at CHI 2 for 13 yards (M.Wright).,3,25,2012 -20121125_MIN@CHI,3,25,48,MIN,CHI,1,2,2,(10:48) C.Ponder pass short right to K.Rudolph for 2 yards TOUCHDOWN.,3,25,2012 -20121125_MIN@CHI,3,25,48,MIN,CHI,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,25,2012 -20121125_MIN@CHI,3,25,48,MIN,CHI,,,2,B.Walsh kicks 70 yards from MIN 35 to CHI -5. E.Weems to CHI 21 for 26 yards (A.Sendejo).,10,25,2012 -20121125_MIN@CHI,3,25,36,CHI,MIN,1,10,79,(10:36) M.Forte right end to CHI 25 for 4 yards (A.Winfield).,25,10,2012 -20121125_MIN@CHI,3,24,59,CHI,MIN,2,6,75,(9:59) M.Forte right end to CHI 27 for 2 yards (A.Winfield).,25,10,2012 -20121125_MIN@CHI,3,24,23,CHI,MIN,3,4,73,(9:23) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 35 for 8 yards (E.Henderson).,25,10,2012 -20121125_MIN@CHI,3,23,46,CHI,MIN,1,10,65,(8:46) M.Forte left guard to CHI 36 for 1 yard (F.Evans).,25,10,2012 -20121125_MIN@CHI,3,23,7,CHI,MIN,2,9,64,(8:07) J.Cutler pass short middle to B.Marshall to CHI 39 for 3 yards (E.Henderson).,25,10,2012 -20121125_MIN@CHI,3,22,23,CHI,MIN,3,6,61,(7:23) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 49 for 10 yards (A.Winfield) [J.Sanford].,25,10,2012 -20121125_MIN@CHI,3,20,58,CHI,MIN,2,7,48,(5:58) J.Cutler pass short right to B.Marshall to MIN 37 for 11 yards (J.Brinkley).,25,10,2012 -20121125_MIN@CHI,3,20,22,CHI,MIN,1,10,37,(5:22) M.Bush right guard to MIN 31 for 6 yards (E.Henderson).,25,10,2012 -20121125_MIN@CHI,3,19,47,CHI,MIN,2,4,31,(4:47) M.Bush right guard to MIN 28 for 3 yards (J.Allen; B.Robison).,25,10,2012 -20121125_MIN@CHI,3,19,47,CHI,MIN,3,1,28,(4:47) J.Cutler pass incomplete short middle to B.Marshall (E.Henderson).,25,10,2012 -20121125_MIN@CHI,3,19,2,CHI,MIN,4,1,28,(4:02) R.Gould 46 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,25,10,2012 -20121125_MIN@CHI,3,19,2,CHI,MIN,,,28,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,28,10,2012 -20121125_MIN@CHI,3,18,57,MIN,CHI,1,10,80,(3:57) A.Peterson left guard to MIN 30 for 10 yards (M.Wright; N.Roach).,10,28,2012 -20121125_MIN@CHI,3,18,23,MIN,CHI,1,10,70,(3:23) C.Ponder pass incomplete short left to J.Simpson.,10,28,2012 -20121125_MIN@CHI,3,18,18,MIN,CHI,2,10,70,(3:18) (Shotgun) A.Peterson left tackle to MIN 36 for 6 yards (C.Wootton).,10,28,2012 -20121125_MIN@CHI,3,17,47,MIN,CHI,3,4,64,(2:47) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 43 for 7 yards (C.Conte).,10,28,2012 -20121125_MIN@CHI,3,17,24,MIN,CHI,1,10,57,(2:24) (Shotgun) C.Ponder pass incomplete short left to J.Simpson.,10,28,2012 -20121125_MIN@CHI,3,17,21,MIN,CHI,2,10,57,(2:21) (Shotgun) C.Ponder pass short left to M.Jenkins to MIN 47 for 4 yards (B.Urlacher).,10,28,2012 -20121125_MIN@CHI,3,16,45,MIN,CHI,3,6,53,(1:45) (Shotgun) C.Ponder pass short right to M.Jenkins to CHI 40 for 13 yards (T.Jennings).,10,28,2012 -20121125_MIN@CHI,3,16,12,MIN,CHI,1,10,40,(1:12) C.Ponder pass incomplete deep middle to J.Simpson (K.Hayden).,10,28,2012 -20121125_MIN@CHI,3,16,4,MIN,CHI,2,10,40,(1:04) A.Peterson right end to CHI 26 for 14 yards (N.Roach).,10,28,2012 -20121125_MIN@CHI,3,15,32,MIN,CHI,1,10,26,(:32) (Shotgun) C.Ponder pass incomplete deep left to K.Rudolph.,10,28,2012 -20121125_MIN@CHI,3,15,32,MIN,CHI,2,10,26,(:32) C.Ponder pass short left to J.Wright to CHI 16 for 10 yards (K.Hayden).,10,28,2012 -20121125_MIN@CHI,4,15,0,MIN,CHI,1,10,16,(15:00) C.Ponder pass incomplete short right to R.Ellison.,10,28,2012 -20121125_MIN@CHI,4,14,55,MIN,CHI,2,10,16,(14:55) A.Peterson right end to CHI 8 for 8 yards (L.Briggs).,10,28,2012 -20121125_MIN@CHI,4,14,18,MIN,CHI,3,2,8,(14:18) (Shotgun) C.Ponder pass incomplete short left to J.Wright (K.Hayden).,10,28,2012 -20121125_MIN@CHI,4,14,11,MIN,CHI,4,2,8,(14:11) (Shotgun) C.Ponder pass incomplete short left to M.Jenkins.,10,28,2012 -20121125_MIN@CHI,4,14,4,CHI,MIN,1,10,92,(14:04) J.Cutler pass short left to B.Marshall to CHI 21 for 13 yards (A.Jefferson).,28,10,2012 -20121125_MIN@CHI,4,13,26,CHI,MIN,1,10,79,(13:26) M.Bush right guard to CHI 24 for 3 yards (J.Allen).,28,10,2012 -20121125_MIN@CHI,4,13,26,CHI,MIN,2,7,76,(13:26) PENALTY on CHI-J.Webb False Start 5 yards enforced at CHI 24 - No Play.,28,10,2012 -20121125_MIN@CHI,4,12,17,CHI,MIN,2,12,81,(12:17) J.Cutler pass short left to M.Bush to CHI 18 for -1 yards (F.Evans).,28,10,2012 -20121125_MIN@CHI,4,11,34,CHI,MIN,3,13,82,(11:34) (Shotgun) M.Bush left guard to CHI 26 for 8 yards (E.Henderson).,28,10,2012 -20121125_MIN@CHI,4,10,49,CHI,MIN,4,5,74,(10:49) (Punt formation) A.Podlesh punts 50 yards to MIN 24 Center-P.Mannelly fair catch by M.Sherels.,28,10,2012 -20121125_MIN@CHI,4,10,41,MIN,CHI,1,10,76,(10:41) (Shotgun) C.Ponder pass incomplete short right to M.Jenkins (L.Briggs).,10,28,2012 -20121125_MIN@CHI,4,10,37,MIN,CHI,2,10,76,(10:37) (Shotgun) A.Peterson right tackle to MIN 28 for 4 yards (S.Paea).,10,28,2012 -20121125_MIN@CHI,4,10,11,MIN,CHI,3,6,72,(10:11) (No Huddle Shotgun) C.Ponder sacked at MIN 22 for -6 yards (sack split by I.Idonije and S.McClellin).,10,28,2012 -20121125_MIN@CHI,4,9,38,MIN,CHI,4,12,78,(9:38) (Punt formation) C.Kluwe punts 44 yards to CHI 34 Center-C.Loeffler fair catch by E.Bennett.,10,28,2012 -20121125_MIN@CHI,4,9,30,CHI,MIN,1,10,66,(9:30) A.Allen left end to CHI 36 for 2 yards (C.Greenway).,28,10,2012 -20121125_MIN@CHI,4,8,42,CHI,MIN,2,8,64,(8:42) J.Cutler pass incomplete short middle to B.Marshall.,28,10,2012 -20121125_MIN@CHI,4,8,37,CHI,MIN,3,8,64,(8:37) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,28,10,2012 -20121125_MIN@CHI,4,8,32,CHI,MIN,4,8,64,(8:32) (Punt formation) A.Podlesh punts 46 yards to MIN 18 Center-P.Mannelly. M.Sherels pushed ob at MIN 18 for no gain (S.McManis).,28,10,2012 -20121125_MIN@CHI,4,8,23,MIN,CHI,1,10,82,(8:23) A.Peterson right tackle pushed ob at MIN 41 for 23 yards (T.Jennings).,10,28,2012 -20121125_MIN@CHI,4,7,58,MIN,CHI,1,10,59,(7:58) A.Peterson right tackle to MIN 49 for 8 yards (S.McClellin).,10,28,2012 -20121125_MIN@CHI,4,7,36,MIN,CHI,2,2,51,(7:36) (No Huddle Shotgun) C.Ponder pass short right to A.Peterson to 50 for 1 yard (L.Briggs).,10,28,2012 -20121125_MIN@CHI,4,7,12,CHI,MIN,3,1,50,(7:12) C.Ponder FUMBLES (Aborted) at 50 RECOVERED by CHI-M.Wright at 50. M.Wright to 50 for no gain (J.Sullivan).,28,10,2012 -20121125_MIN@CHI,4,7,5,CHI,MIN,1,10,50,(7:05) M.Bush right guard to MIN 47 for 3 yards (J.Brinkley; J.Sanford).,28,10,2012 -20121125_MIN@CHI,4,6,17,CHI,MIN,2,7,47,(6:17) J.Cutler scrambles left guard to MIN 42 for 5 yards (C.Greenway).,28,10,2012 -20121125_MIN@CHI,4,5,30,CHI,MIN,3,2,42,(5:30) J.Cutler pass incomplete deep middle to B.Marshall.,28,10,2012 -20121125_MIN@CHI,4,5,30,CHI,MIN,4,2,42,(5:30) (Punt formation) A.Podlesh punts 32 yards to MIN 10 Center-P.Mannelly downed by CHI-P.Mannelly.,28,10,2012 -20121125_MIN@CHI,4,5,14,MIN,CHI,1,10,90,(5:14) (Shotgun) C.Ponder pass short middle to A.Peterson to MIN 14 for 4 yards (B.Urlacher).,10,28,2012 -20121125_MIN@CHI,4,4,56,MIN,CHI,2,6,86,(4:56) (No Huddle Shotgun) C.Ponder pass incomplete short left to J.Wright [C.Wootton].,10,28,2012 -20121125_MIN@CHI,4,4,50,MIN,CHI,3,6,86,(4:50) (Shotgun) C.Ponder pass short left to J.Wright to MIN 24 for 10 yards (L.Briggs).,10,28,2012 -20121125_MIN@CHI,4,4,26,MIN,CHI,1,10,76,(4:26) (No Huddle Shotgun) C.Ponder pass short left to A.Peterson to MIN 33 for 9 yards (B.Urlacher). PENALTY on CHI-B.Urlacher Horse Collar Tackle 15 yards enforced at MIN 33.,10,28,2012 -20121125_MIN@CHI,4,4,18,MIN,CHI,1,10,52,(4:18) C.Ponder pass deep middle intended for S.Burton INTERCEPTED by T.Jennings at CHI 36. T.Jennings to MIN 15 for 49 yards (S.Burton). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. C.Ponder pass incomplete deep middle to S.Burton.,10,28,2012 -20121125_MIN@CHI,4,4,14,MIN,CHI,2,10,52,(4:14) C.Ponder pass short right to J.Wright to MIN 48 for no gain (T.Jennings).,10,28,2012 -20121125_MIN@CHI,4,3,55,MIN,CHI,3,10,52,(3:55) (No Huddle Shotgun) C.Ponder pass incomplete short right. PENALTY on CHI Defensive 12 On-field 5 yards enforced at MIN 48 - No Play.,10,28,2012 -20121125_MIN@CHI,4,3,51,MIN,CHI,3,5,47,(3:51) (Shotgun) C.Ponder pass incomplete deep right to D.Aromashodu (Z.Bowman).,10,28,2012 -20121125_MIN@CHI,4,3,45,MIN,CHI,4,5,47,(3:45) (Shotgun) C.Ponder pass short right to J.Carlson to CHI 40 for 7 yards (Z.Bowman).,10,28,2012 -20121125_MIN@CHI,4,3,22,MIN,CHI,1,10,40,(3:22) (No Huddle Shotgun) C.Ponder pass short middle to A.Peterson to CHI 33 for 7 yards (N.Roach).,10,28,2012 -20121125_MIN@CHI,4,3,2,MIN,CHI,2,3,33,(3:02) (No Huddle Shotgun) C.Ponder pass short middle to A.Peterson to CHI 31 for 2 yards (S.Paea).,10,28,2012 -20121125_MIN@CHI,4,3,2,MIN,CHI,3,1,31,(3:02) (No Huddle Shotgun) C.Ponder pass incomplete short right to J.Carlson.,10,28,2012 -20121125_MIN@CHI,4,2,36,MIN,CHI,4,1,31,(2:36) A.Peterson left guard to CHI 31 for no gain (J.Peppers).,10,28,2012 -20121125_MIN@CHI,4,2,28,CHI,MIN,1,10,69,(2:28) M.Bush right tackle to CHI 35 for 4 yards (F.Evans).,28,10,2012 -20121125_MIN@CHI,4,2,0,CHI,MIN,2,6,65,(2:00) M.Bush right guard to CHI 35 for no gain (F.Evans).,28,10,2012 -20121125_MIN@CHI,4,1,55,CHI,MIN,3,6,65,(1:55) M.Bush right end to CHI 42 for 7 yards (J.Robinson).,28,10,2012 -20121125_MIN@CHI,4,1,48,CHI,MIN,1,10,58,(1:48) M.Bush left tackle to CHI 44 for 2 yards (C.Ballard).,28,10,2012 -20121125_MIN@CHI,4,1,4,CHI,MIN,2,8,56,(1:04) M.Bush left end to CHI 44 for no gain (J.Allen).,28,10,2012 -20121125_MIN@CHI,4,0,16,CHI,MIN,3,8,56,(:16) J.Cutler kneels to CHI 43 for -1 yards.,28,10,2012 -20121125_MIN@CHI,4,0,16,CHI,MIN,,,56,                      ,28,10,2012 -20121125_OAK@CIN,1,0,0,CIN,OAK,,,56,M.Nugent kicks 65 yards from CIN 35 to OAK 0. C.Francies to OAK 22 for 22 yards (E.Lamur; R.Whalen).,0,0,2012 -20121125_OAK@CIN,1,59,55,OAK,CIN,1,10,78,(14:55) M.Reece left tackle to OAK 30 for 8 yards (T.Newman; R.Nelson).,0,0,2012 -20121125_OAK@CIN,1,59,17,OAK,CIN,2,2,70,(14:17) M.Reece right tackle to OAK 35 for 5 yards (C.Crocker; D.Peko).,0,0,2012 -20121125_OAK@CIN,1,58,36,OAK,CIN,1,10,65,(13:36) C.Palmer sacked at OAK 28 for -7 yards (G.Atkins).,0,0,2012 -20121125_OAK@CIN,1,58,5,OAK,CIN,2,17,72,(13:05) C.Palmer pass short middle to J.Stewart to OAK 31 for 3 yards (A.Jones).,0,0,2012 -20121125_OAK@CIN,1,57,18,OAK,CIN,3,14,69,(12:18) (Shotgun) C.Palmer sacked at OAK 25 for -6 yards (M.Johnson).,0,0,2012 -20121125_OAK@CIN,1,56,44,OAK,CIN,4,20,75,(11:44) S.Lechler punts 51 yards to CIN 24 Center-J.Condo. A.Jones to CIN 42 for 18 yards (D.Ausberry; M.Mitchell).,0,0,2012 -20121125_OAK@CIN,1,56,31,CIN,OAK,1,10,58,(11:31) A.Dalton pass short right to M.Sanu to CIN 48 for 6 yards (M.Huff; L.Houston).,0,0,2012 -20121125_OAK@CIN,1,55,56,CIN,OAK,2,4,52,(10:56) B.Green-Ellis right guard to OAK 49 for 3 yards (T.Kelly).,0,0,2012 -20121125_OAK@CIN,1,55,20,CIN,OAK,3,1,49,(10:20) B.Green-Ellis right guard for 49 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. B.Green-Ellis right guard pushed ob at OAK 1 for 48 yards (M.Giordano).,0,0,2012 -20121125_OAK@CIN,1,55,1,CIN,OAK,1,1,1,(10:01) B.Green-Ellis right guard to OAK 1 for no gain (M.Burris).,0,0,2012 -20121125_OAK@CIN,1,54,15,CIN,OAK,2,1,1,(9:15) B.Green-Ellis right guard for 1 yard TOUCHDOWN.,0,0,2012 -20121125_OAK@CIN,1,54,15,CIN,OAK,,,1,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121125_OAK@CIN,1,54,15,CIN,OAK,,,1,M.Nugent kicks 68 yards from CIN 35 to OAK -3. C.Francies to OAK 25 for 28 yards (R.Whalen; E.Lamur).,7,0,2012 -20121125_OAK@CIN,1,54,6,OAK,CIN,1,10,75,(9:06) M.Reece right end to OAK 23 for -2 yards (C.Dunlap).,0,7,2012 -20121125_OAK@CIN,1,53,28,OAK,CIN,2,12,77,(8:28) J.Stewart left tackle to OAK 30 for 7 yards (E.Lamur; V.Burfict).,0,7,2012 -20121125_OAK@CIN,1,52,46,OAK,CIN,3,5,70,(7:46) (Shotgun) C.Palmer pass incomplete deep right to D.Moore (L.Hall).,0,7,2012 -20121125_OAK@CIN,1,52,39,OAK,CIN,4,5,70,(7:39) S.Lechler punts 57 yards to CIN 13 Center-J.Condo. A.Jones to CIN 24 for 11 yards (M.Mitchell). PENALTY on CIN-T.Newman Illegal Block Above the Waist 10 yards enforced at CIN 22. {Jones credited with 9 yards on the return due to the penalty},0,7,2012 -20121125_OAK@CIN,1,52,27,CIN,OAK,1,10,88,(7:27) A.Dalton pass incomplete short left. {Thrown away},7,0,2012 -20121125_OAK@CIN,1,52,20,CIN,OAK,2,10,88,(7:20) (Shotgun) B.Green-Ellis up the middle to CIN 16 for 4 yards (M.Burris).,7,0,2012 -20121125_OAK@CIN,1,51,38,CIN,OAK,3,6,84,(6:38) (Shotgun) A.Dalton pass deep middle to A.Green to OAK 40 for 44 yards (P.Wheeler).,7,0,2012 -20121125_OAK@CIN,1,50,50,CIN,OAK,1,10,40,(5:50) B.Green-Ellis left guard to OAK 34 for 6 yards (M.Burris).,7,0,2012 -20121125_OAK@CIN,1,50,26,CIN,OAK,2,4,34,(5:26) A.Dalton pass incomplete short right to M.Sanu.,7,0,2012 -20121125_OAK@CIN,1,50,20,CIN,OAK,3,4,34,(5:20) M.Sanu left end to OAK 29 for 5 yards (L.Houston).,7,0,2012 -20121125_OAK@CIN,1,49,41,CIN,OAK,1,10,29,(4:41) B.Green-Ellis right tackle to OAK 14 for 15 yards (T.Branch). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at OAK 29 - No Play.,7,0,2012 -20121125_OAK@CIN,1,49,15,CIN,OAK,1,20,39,(4:15) A.Dalton pass short left to O.Charles to OAK 29 for 10 yards (M.Burris; R.Bartell).,7,0,2012 -20121125_OAK@CIN,1,48,33,CIN,OAK,2,10,29,(3:33) A.Dalton pass deep middle to J.Gresham to OAK 2 for 27 yards (T.Branch).,7,0,2012 -20121125_OAK@CIN,1,48,5,CIN,OAK,1,2,2,(3:05) A.Dalton pass short left to M.Sanu for 2 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,7,0,2012 -20121125_OAK@CIN,1,48,5,CIN,OAK,,,2,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,7,0,2012 -20121125_OAK@CIN,1,48,5,CIN,OAK,,,2,M.Nugent kicks 67 yards from CIN 35 to OAK -2. C.Francies to OAK 26 for 28 yards (D.Skuta; R.Whalen).,14,0,2012 -20121125_OAK@CIN,1,47,54,OAK,CIN,1,10,74,(2:54) C.Palmer pass incomplete short left to D.Moore.,0,14,2012 -20121125_OAK@CIN,1,47,48,OAK,CIN,2,10,74,(2:48) C.Palmer pass incomplete short middle to D.Moore (L.Hall). CIN-L.Hall was injured during the play.,0,14,2012 -20121125_OAK@CIN,1,47,41,OAK,CIN,3,10,74,(2:41) (Shotgun) C.Palmer pass incomplete short middle [R.Nelson].,0,14,2012 -20121125_OAK@CIN,1,47,37,OAK,CIN,4,10,74,(2:37) S.Lechler punts 46 yards to CIN 28 Center-J.Condo. A.Jones to CIN 22 for -6 yards (T.Jones).,0,14,2012 -20121125_OAK@CIN,1,47,24,CIN,OAK,1,10,78,(2:24) B.Green-Ellis right guard to CIN 25 for 3 yards (M.Burris; C.Bilukidi).,14,0,2012 -20121125_OAK@CIN,1,46,45,CIN,OAK,2,7,75,(1:45) (Shotgun) A.Dalton pass deep right to B.Tate to CIN 31 for 6 yards (M.Huff; M.Giordano).,14,0,2012 -20121125_OAK@CIN,1,46,3,CIN,OAK,3,1,69,(1:03) A.Dalton pass incomplete short left to A.Green [P.Wheeler].,14,0,2012 -20121125_OAK@CIN,1,45,55,CIN,OAK,4,1,69,(:55) K.Huber punts 40 yards to OAK 29 Center-C.Harris out of bounds.,14,0,2012 -20121125_OAK@CIN,1,45,45,OAK,CIN,1,10,71,(:45) (Shotgun) M.Reece right guard to OAK 33 for 4 yards (W.Gilberry).,0,14,2012 -20121125_OAK@CIN,1,45,12,OAK,CIN,2,6,67,(:12) (Shotgun) C.Palmer pass short right to B.Myers to OAK 39 for 6 yards (T.Newman; V.Burfict).,0,14,2012 -20121125_OAK@CIN,2,45,0,OAK,CIN,1,10,61,(15:00) (Shotgun) M.Reece right guard to OAK 40 for 1 yard (R.Nelson).,0,14,2012 -20121125_OAK@CIN,2,44,22,OAK,CIN,2,9,60,(14:22) (Shotgun) C.Palmer pass short left to J.Criner to OAK 46 for 6 yards (A.Jones; W.Gilberry).,0,14,2012 -20121125_OAK@CIN,2,43,39,OAK,CIN,3,3,54,(13:39) (Shotgun) C.Palmer pass incomplete short left to D.Heyward-Bey (A.Jones).,0,14,2012 -20121125_OAK@CIN,2,43,34,OAK,CIN,4,3,54,(13:34) S.Lechler punts 43 yards to CIN 11 Center-J.Condo fair catch by B.Tate.,0,14,2012 -20121125_OAK@CIN,2,43,27,CIN,OAK,1,10,89,(13:27) A.Dalton scrambles right end ran ob at CIN 19 for 8 yards (R.McClain).,14,0,2012 -20121125_OAK@CIN,2,42,58,CIN,OAK,2,2,81,(12:58) A.Dalton pass incomplete short left to M.Jones (R.Bartell) [R.McClain].,14,0,2012 -20121125_OAK@CIN,2,42,51,CIN,OAK,3,2,81,(12:51) B.Green-Ellis left tackle to CIN 22 for 3 yards (M.Burris).,14,0,2012 -20121125_OAK@CIN,2,42,14,CIN,OAK,1,10,78,(12:14) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 31 for 9 yards (M.Burris).,14,0,2012 -20121125_OAK@CIN,2,41,41,CIN,OAK,2,1,69,(11:41) A.Green left end pushed ob at OAK 49 for 20 yards (R.Bartell). {End around},14,0,2012 -20121125_OAK@CIN,2,41,14,CIN,OAK,1,10,49,(11:14) A.Dalton pass short right to J.Gresham to OAK 48 for 1 yard (L.Houston; P.Wheeler).,14,0,2012 -20121125_OAK@CIN,2,40,29,CIN,OAK,2,9,48,(10:29) (Shotgun) A.Dalton pass short left to J.Gresham to OAK 42 for 6 yards (P.Wheeler).,14,0,2012 -20121125_OAK@CIN,2,39,58,CIN,OAK,3,3,42,(9:58) B.Green-Ellis left guard to OAK 38 for 4 yards (T.Branch).,14,0,2012 -20121125_OAK@CIN,2,39,22,CIN,OAK,1,10,38,(9:22) (Shotgun) B.Green-Ellis left guard to OAK 36 for 2 yards (J.Hanson).,14,0,2012 -20121125_OAK@CIN,2,38,48,CIN,OAK,2,8,36,(8:48) C.Peerman right guard pushed ob at OAK 5 for 31 yards (M.Huff R.Bartell).,14,0,2012 -20121125_OAK@CIN,2,38,16,CIN,OAK,1,5,5,(8:16) C.Peerman up the middle to OAK 5 for no gain (M.Burris; L.Houston).,14,0,2012 -20121125_OAK@CIN,2,37,38,CIN,OAK,2,5,5,(7:38) A.Dalton pass incomplete short right to A.Green.,14,0,2012 -20121125_OAK@CIN,2,37,32,CIN,OAK,3,5,5,(7:32) (Shotgun) A.Dalton pass short middle to M.Sanu for 5 yards TOUCHDOWN.,14,0,2012 -20121125_OAK@CIN,2,37,32,CIN,OAK,,,5,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,14,0,2012 -20121125_OAK@CIN,2,37,32,CIN,OAK,,,5,M.Nugent kicks 68 yards from CIN 35 to OAK -3. C.Francies to OAK 19 for 22 yards (D.Skuta; T.Mays).,21,0,2012 -20121125_OAK@CIN,2,37,22,OAK,CIN,1,10,81,(7:22) J.Stewart left tackle to OAK 18 for -1 yards (G.Atkins; M.Johnson).,0,21,2012 -20121125_OAK@CIN,2,36,38,OAK,CIN,2,11,82,(6:38) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 28 for 10 yards (V.Burfict).,0,21,2012 -20121125_OAK@CIN,2,35,56,OAK,CIN,3,1,72,(5:56) (Shotgun) C.Palmer pass short left to B.Myers to OAK 30 for 2 yards (R.Nelson).,0,21,2012 -20121125_OAK@CIN,2,35,13,OAK,CIN,1,10,70,(5:13) J.Stewart left guard to OAK 36 for 6 yards (R.Maualuga).,0,21,2012 -20121125_OAK@CIN,2,34,32,OAK,CIN,2,4,64,(4:32) (Shotgun) J.Stewart left guard to OAK 35 for -1 yards (R.Nelson).,0,21,2012 -20121125_OAK@CIN,2,33,51,OAK,CIN,3,5,65,(3:51) (Shotgun) C.Palmer pass short middle to M.Reece to OAK 46 for 11 yards (R.Nelson; L.Hall) [R.Maualuga].,0,21,2012 -20121125_OAK@CIN,2,33,9,OAK,CIN,1,10,54,(3:09) (Shotgun) C.Palmer pass short right to M.Reece to CIN 45 for 9 yards (T.Newman; V.Burfict).,0,21,2012 -20121125_OAK@CIN,2,32,42,OAK,CIN,2,1,45,(2:42) M.Reece right guard to CIN 45 for no gain (M.Johnson).,0,21,2012 -20121125_OAK@CIN,2,32,0,OAK,CIN,3,1,45,(2:00) C.Palmer pass incomplete short left to D.Heyward-Bey.,0,21,2012 -20121125_OAK@CIN,2,31,55,OAK,CIN,4,1,45,(1:55) O.Schmitt up the middle to CIN 46 for -1 yards (V.Burfict; R.Geathers).,0,21,2012 -20121125_OAK@CIN,2,31,48,CIN,OAK,1,10,54,(1:48) (Shotgun) A.Dalton pass short left to A.Green to OAK 35 for 19 yards (T.Branch; M.Giordano).,21,0,2012 -20121125_OAK@CIN,2,31,22,CIN,OAK,1,10,35,(1:22) (Shotgun) A.Dalton pass short middle to M.Sanu to OAK 30 for 5 yards (M.Burris).,21,0,2012 -20121125_OAK@CIN,2,30,57,CIN,OAK,2,5,30,(:57) (Shotgun) A.Dalton pass incomplete deep left to M.Sanu.,21,0,2012 -20121125_OAK@CIN,2,30,50,CIN,OAK,3,5,30,(:50) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,21,0,2012 -20121125_OAK@CIN,2,30,45,CIN,OAK,4,5,30,(:45) M.Nugent 48 yard field goal is No Good Wide Right Center-C.Harris Holder-K.Huber.,21,0,2012 -20121125_OAK@CIN,2,30,40,OAK,CIN,1,10,62,(:40) (Shotgun) C.Palmer pass incomplete deep middle to D.Heyward-Bey.,0,21,2012 -20121125_OAK@CIN,2,30,34,OAK,CIN,2,10,62,(:34) (Shotgun) C.Palmer pass short middle to J.Criner to OAK 49 for 11 yards (A.Jones).,0,21,2012 -20121125_OAK@CIN,2,30,28,OAK,CIN,1,10,51,(:28) (Shotgun) C.Palmer pass incomplete short middle to M.Reece.,0,21,2012 -20121125_OAK@CIN,2,30,23,OAK,CIN,2,10,51,(:23) (Shotgun) C.Palmer pass short middle to B.Myers to CIN 39 for 12 yards (R.Maualuga).,0,21,2012 -20121125_OAK@CIN,2,30,17,OAK,CIN,1,10,39,(:17) (Shotgun) C.Palmer pass deep middle intended for M.Reece INTERCEPTED by C.Crocker [D.Peko] at CIN 23. C.Crocker ran ob at OAK 48 for 29 yards (K.Barnes).,0,21,2012 -20121125_OAK@CIN,2,30,8,CIN,OAK,1,10,48,(:08) (Shotgun) A.Dalton pass short middle to M.Sanu to OAK 37 for 11 yards (J.Hanson).,21,0,2012 -20121125_OAK@CIN,2,30,2,CIN,OAK,1,10,37,(:02) M.Nugent 55 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,21,0,2012 -20121125_OAK@CIN,3,30,0,OAK,CIN,,,37,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,24,2012 -20121125_OAK@CIN,3,30,0,CIN,OAK,1,10,80,(15:00) B.Green-Ellis right guard to CIN 21 for 1 yard (R.McClain; L.Houston).,24,0,2012 -20121125_OAK@CIN,3,29,20,CIN,OAK,2,9,79,(14:20) A.Dalton pass incomplete short right to M.Sanu (M.Giordano).,24,0,2012 -20121125_OAK@CIN,3,29,15,CIN,OAK,3,9,79,(14:15) (Shotgun) A.Dalton pass incomplete deep left to A.Green [D.Bryant].,24,0,2012 -20121125_OAK@CIN,3,29,10,CIN,OAK,4,9,79,(14:10) K.Huber punts 40 yards to OAK 39 Center-C.Harris. P.Adams ran ob at 50 for 11 yards (C.Harris).,24,0,2012 -20121125_OAK@CIN,3,29,0,OAK,CIN,1,10,50,(14:00) C.Palmer pass incomplete deep middle to D.Heyward-Bey (R.Nelson).,0,24,2012 -20121125_OAK@CIN,3,28,53,OAK,CIN,2,10,50,(13:53) M.Reece right tackle to CIN 40 for 10 yards (C.Crocker; R.Maualuga).,0,24,2012 -20121125_OAK@CIN,3,28,7,OAK,CIN,1,10,40,(13:07) M.Reece left tackle to CIN 37 for 3 yards (D.Peko; R.Maualuga).,0,24,2012 -20121125_OAK@CIN,3,27,28,OAK,CIN,2,7,37,(12:28) C.Palmer pass short right to J.Stewart to CIN 38 for -1 yards (R.Geathers).,0,24,2012 -20121125_OAK@CIN,3,26,35,OAK,CIN,3,8,38,(11:35) (Shotgun) PENALTY on OAK Delay of Game 5 yards enforced at CIN 38 - No Play.,0,24,2012 -20121125_OAK@CIN,3,26,14,OAK,CIN,3,13,43,(11:14) (Shotgun) C.Palmer pass short right to J.Criner to CIN 37 for 6 yards (L.Hall).,0,24,2012 -20121125_OAK@CIN,3,25,34,OAK,CIN,4,7,37,(10:34) S.Janikowski 55 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,24,2012 -20121125_OAK@CIN,3,25,34,OAK,CIN,,,37,S.Janikowski kicks 73 yards from OAK 35 to CIN -8. B.Tate to CIN 17 for 25 yards (C.Francies).,3,24,2012 -20121125_OAK@CIN,3,25,22,CIN,OAK,1,10,83,(10:22) A.Dalton pass incomplete short right. {Thrown away},24,3,2012 -20121125_OAK@CIN,3,25,13,CIN,OAK,2,10,83,(10:13) (Shotgun) B.Green-Ellis up the middle to CIN 22 for 5 yards (J.Hanson).,24,3,2012 -20121125_OAK@CIN,3,24,31,CIN,OAK,3,5,78,(9:31) (Shotgun) A.Dalton pass incomplete short middle to M.Sanu (J.Hanson).,24,3,2012 -20121125_OAK@CIN,3,24,27,CIN,OAK,4,5,78,(9:27) K.Huber punts 35 yards to OAK 43 Center-C.Harris downed by CIN-C.Peerman.,24,3,2012 -20121125_OAK@CIN,3,24,15,OAK,CIN,1,10,57,(9:15) C.Palmer sacked at OAK 33 for -10 yards (W.Gilberry).,3,24,2012 -20121125_OAK@CIN,3,23,36,OAK,CIN,2,20,67,(8:36) (Shotgun) C.Palmer pass short right to J.Stewart to OAK 39 for 6 yards (T.Newman).,3,24,2012 -20121125_OAK@CIN,3,22,54,OAK,CIN,3,14,61,(7:54) (Shotgun) C.Palmer pass short middle to J.Stewart to OAK 46 for 7 yards (V.Burfict).,3,24,2012 -20121125_OAK@CIN,3,22,13,OAK,CIN,4,7,54,(7:13) S.Lechler punts 42 yards to CIN 12 Center-J.Condo. B.Tate pushed ob at CIN 15 for 3 yards (R.Gordon).,3,24,2012 -20121125_OAK@CIN,3,22,4,CIN,OAK,1,10,85,(7:04) A.Green left end to CIN 16 for 1 yard (M.Huff). {End around},24,3,2012 -20121125_OAK@CIN,3,21,16,CIN,OAK,2,9,84,(6:16) (Shotgun) A.Dalton sacked at CIN 8 for -8 yards (P.Wheeler).,24,3,2012 -20121125_OAK@CIN,3,20,41,CIN,OAK,3,17,92,(5:41) (Shotgun) A.Dalton pass incomplete short right to A.Green.,24,3,2012 -20121125_OAK@CIN,3,20,37,CIN,OAK,4,17,92,(5:37) K.Huber punts 44 yards to OAK 48 Center-C.Harris fair catch by P.Adams.,24,3,2012 -20121125_OAK@CIN,3,20,29,OAK,CIN,1,10,52,(5:29) M.Reece left guard to CIN 40 for 12 yards (R.Nelson M.Lawson).,3,24,2012 -20121125_OAK@CIN,3,19,51,OAK,CIN,1,10,40,(4:51) PENALTY on OAK-K.Barnes False Start 5 yards enforced at CIN 40 - No Play.,3,24,2012 -20121125_OAK@CIN,3,19,29,OAK,CIN,1,15,45,(4:29) M.Reece left end to CIN 30 for 15 yards (C.Crocker).,3,24,2012 -20121125_OAK@CIN,3,18,49,OAK,CIN,1,10,30,(3:49) J.Stewart right end to CIN 22 for 8 yards (V.Burfict).,3,24,2012 -20121125_OAK@CIN,3,18,10,OAK,CIN,2,2,22,(3:10) M.Reece right tackle to CIN 20 for 2 yards (P.Sims).,3,24,2012 -20121125_OAK@CIN,3,17,28,OAK,CIN,1,10,20,(2:28) C.Palmer pass deep middle to D.Moore for 20 yards TOUCHDOWN [R.Nelson].,3,24,2012 -20121125_OAK@CIN,3,17,28,OAK,CIN,,,20,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,3,24,2012 -20121125_OAK@CIN,3,17,28,OAK,CIN,,,20,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,10,24,2012 -20121125_OAK@CIN,3,17,21,CIN,OAK,1,10,80,(2:21) B.Green-Ellis right end to CIN 21 for 1 yard (T.Kelly).,24,10,2012 -20121125_OAK@CIN,3,16,46,CIN,OAK,2,9,79,(1:46) (Shotgun) A.Dalton pass short right to O.Charles to CIN 25 for 4 yards (R.McClain).,24,10,2012 -20121125_OAK@CIN,3,16,3,CIN,OAK,3,5,75,(1:03) (Shotgun) A.Dalton sacked at CIN 17 for -8 yards (M.Shaughnessy).,24,10,2012 -20121125_OAK@CIN,3,15,40,CIN,OAK,4,13,83,(:40) K.Huber punts 45 yards to OAK 38 Center-C.Harris. P.Adams ran ob at OAK 44 for 6 yards (T.Mays).,24,10,2012 -20121125_OAK@CIN,3,15,26,OAK,CIN,1,10,56,(:26) J.Stewart right end to 50 for 6 yards (C.Dunlap).,10,24,2012 -20121125_OAK@CIN,4,15,0,OAK,CIN,2,4,50,(15:00) C.Palmer sacked at OAK 42 for -8 yards (M.Lawson). FUMBLES (M.Lawson) RECOVERED by CIN-R.Maualuga at OAK 46. R.Maualuga to OAK 46 for no gain (M.Reece).,10,24,2012 -20121125_OAK@CIN,4,14,52,CIN,OAK,1,10,46,(14:52) B.Green-Ellis left tackle to OAK 40 for 6 yards (D.Bryant; L.Houston).,24,10,2012 -20121125_OAK@CIN,4,14,29,CIN,OAK,2,4,40,(14:29) B.Green-Ellis left tackle to OAK 1 for 39 yards (T.Branch; M.Giordano).,24,10,2012 -20121125_OAK@CIN,4,13,58,CIN,OAK,1,1,1,(13:58) B.Green-Ellis right guard to OAK 1 for no gain (R.McClain; T.Branch).,24,10,2012 -20121125_OAK@CIN,4,13,21,CIN,OAK,2,1,1,(13:21) B.Green-Ellis right guard to OAK 2 for -1 yards (P.Wheeler; M.Burris).,24,10,2012 -20121125_OAK@CIN,4,12,40,CIN,OAK,3,2,2,(12:40) A.Dalton pass incomplete short left to M.Jones (R.Bartell).,24,10,2012 -20121125_OAK@CIN,4,12,33,CIN,OAK,4,2,2,(12:33) M.Nugent 20 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,24,10,2012 -20121125_OAK@CIN,4,12,33,CIN,OAK,,,2,M.Nugent kicks 71 yards from CIN 35 to OAK -6. C.Francies Touchback.,27,10,2012 -20121125_OAK@CIN,4,12,29,OAK,CIN,1,10,80,(12:29) (Shotgun) M.Reece right tackle to OAK 28 for 8 yards (P.Sims).,10,27,2012 -20121125_OAK@CIN,4,11,52,OAK,CIN,2,2,72,(11:52) (Shotgun) M.Reece left tackle pushed ob at OAK 34 for 6 yards (C.Crocker).,10,27,2012 -20121125_OAK@CIN,4,11,21,OAK,CIN,1,10,66,(11:21) J.Stewart left guard to OAK 35 for 1 yard (P.Sims; M.Johnson).,10,27,2012 -20121125_OAK@CIN,4,10,45,OAK,CIN,2,9,65,(10:45) (Shotgun) C.Palmer pass short left to J.Stewart pushed ob at CIN 39 for 26 yards (C.Crocker).,10,27,2012 -20121125_OAK@CIN,4,10,8,OAK,CIN,1,10,39,(10:08) C.Palmer pass short middle to M.Reece to CIN 27 for 12 yards (R.Maualuga; C.Crocker). PENALTY on OAK-M.Brisiel Clipping 15 yards enforced at CIN 34. {Reece credited with 5 reception yards due to penalty},10,27,2012 -20121125_OAK@CIN,4,9,43,OAK,CIN,1,20,49,(9:43) C.Palmer pass incomplete short right to J.Criner (T.Newman).,10,27,2012 -20121125_OAK@CIN,4,9,39,OAK,CIN,2,20,49,(9:39) (Shotgun) C.Palmer pass short middle to J.Stewart to OAK 47 for -4 yards (G.Atkins).,10,27,2012 -20121125_OAK@CIN,4,9,8,OAK,CIN,3,24,53,(9:08) (Shotgun) C.Palmer pass incomplete short right to J.Criner.,10,27,2012 -20121125_OAK@CIN,4,9,0,OAK,CIN,4,24,53,(9:00) S.Lechler punts 42 yards to CIN 11 Center-J.Condo. B.Tate to CIN 16 for 5 yards (T.Jones).,10,27,2012 -20121125_OAK@CIN,4,8,50,CIN,OAK,1,10,84,(8:50) B.Green-Ellis left guard to CIN 20 for 4 yards (A.Carter).,27,10,2012 -20121125_OAK@CIN,4,8,16,CIN,OAK,2,6,80,(8:16) B.Green-Ellis right tackle to CIN 20 for no gain (M.Huff; P.Wheeler).,27,10,2012 -20121125_OAK@CIN,4,7,16,CIN,OAK,3,6,80,(7:16) PENALTY on CIN Offensive 12 On-field 5 yards enforced at CIN 20 - No Play.,27,10,2012 -20121125_OAK@CIN,4,7,16,CIN,OAK,3,11,85,(7:16) A.Dalton pass deep middle to A.Green to OAK 37 for 48 yards (M.Giordano).,27,10,2012 -20121125_OAK@CIN,4,6,32,CIN,OAK,1,10,37,(6:32) C.Peerman up the middle to OAK 30 for 7 yards (R.McClain; M.Burris).,27,10,2012 -20121125_OAK@CIN,4,5,59,CIN,OAK,2,3,30,(5:59) C.Peerman up the middle to OAK 30 for no gain (M.Burris).,27,10,2012 -20121125_OAK@CIN,4,5,27,CIN,OAK,3,3,30,(5:27) C.Peerman right guard to OAK 24 for 6 yards (T.Branch).,27,10,2012 -20121125_OAK@CIN,4,5,21,CIN,OAK,1,10,24,(5:21) C.Peerman right tackle to OAK 15 for 9 yards (M.Giordano; R.McClain).,27,10,2012 -20121125_OAK@CIN,4,4,42,CIN,OAK,2,1,15,(4:42) C.Peerman right tackle to OAK 11 for 4 yards (M.Huff).,27,10,2012 -20121125_OAK@CIN,4,3,58,CIN,OAK,1,10,11,(3:58) A.Dalton pass incomplete short left to A.Green.,27,10,2012 -20121125_OAK@CIN,4,3,53,CIN,OAK,2,10,11,(3:53) C.Peerman left tackle to OAK 7 for 4 yards (M.Burris; M.Giordano).,27,10,2012 -20121125_OAK@CIN,4,3,46,CIN,OAK,3,6,7,(3:46) (Shotgun) A.Dalton pass short left to J.Gresham for 7 yards TOUCHDOWN.,27,10,2012 -20121125_OAK@CIN,4,3,46,CIN,OAK,,,7,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,27,10,2012 -20121125_OAK@CIN,4,3,46,CIN,OAK,,,7,M.Nugent kicks 64 yards from CIN 35 to OAK 1. C.Francies to OAK 18 for 17 yards (D.Kirkpatrick).,34,10,2012 -20121125_OAK@CIN,4,3,33,OAK,CIN,1,10,82,(3:33) (Shotgun) M.Reece right guard to OAK 20 for 2 yards (R.Geathers).,10,34,2012 -20121125_OAK@CIN,4,3,4,OAK,CIN,2,8,80,(3:04) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 27 for 7 yards (R.Maualuga; V.Burfict).,10,34,2012 -20121125_OAK@CIN,4,2,21,OAK,CIN,3,1,73,(2:21) C.Palmer pass short right to M.Reece pushed ob at OAK 31 for 4 yards (V.Burfict).,10,34,2012 -20121125_OAK@CIN,4,2,14,OAK,CIN,1,10,69,(2:14) (Shotgun) C.Palmer pass incomplete short right to M.Reece [G.Atkins].,10,34,2012 -20121125_OAK@CIN,4,2,9,OAK,CIN,2,10,69,(2:09) (Shotgun) M.Reece right guard to OAK 31 for no gain (R.Geathers).,10,34,2012 -20121125_OAK@CIN,4,2,0,OAK,CIN,3,10,69,(2:00) (Shotgun) C.Palmer pass incomplete short right to M.Reece.,10,34,2012 -20121125_OAK@CIN,4,1,54,OAK,CIN,4,10,69,(1:54) (Shotgun) C.Palmer pass incomplete short left to B.Myers.,10,34,2012 -20121125_OAK@CIN,4,1,48,CIN,OAK,1,10,31,(1:48) A.Dalton kneels to OAK 32 for -1 yards.,34,10,2012 -20121125_OAK@CIN,4,1,14,CIN,OAK,2,11,32,(1:14) A.Dalton kneels to OAK 33 for -1 yards.,34,10,2012 -20121125_OAK@CIN,4,0,37,CIN,OAK,3,12,33,(:37) A.Dalton kneels to OAK 34 for -1 yards.,34,10,2012 -20121125_OAK@CIN,4,0,37,CIN,OAK,,,33,                      ,34,10,2012 -20121125_PIT@CLE,1,0,0,PIT,CLE,,,33,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,0,0,2012 -20121125_PIT@CLE,1,60,0,CLE,PIT,1,10,80,(15:00) B.Weeden pass short right to J.Gordon to CLV 46 for 26 yards (I.Taylor).,0,0,2012 -20121125_PIT@CLE,1,59,40,CLE,PIT,1,10,54,(14:40) T.Richardson left tackle to CLV 49 for 3 yards (L.Foote; C.Hampton).,0,0,2012 -20121125_PIT@CLE,1,59,7,CLE,PIT,2,7,51,(14:07) B.Weeden pass incomplete deep left to T.Benjamin.,0,0,2012 -20121125_PIT@CLE,1,59,0,CLE,PIT,3,7,51,(14:00) (Shotgun) B.Weeden pass short middle intended for G.Little INTERCEPTED by L.Timmons (B.Keisel) at PIT 47. L.Timmons for 53 yards TOUCHDOWN. Ball tipped by 99 Keisel,0,0,2012 -20121125_PIT@CLE,1,59,0,PIT,CLE,,,51,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121125_PIT@CLE,1,59,0,PIT,CLE,,,51,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,7,0,2012 -20121125_PIT@CLE,1,58,49,CLE,PIT,1,10,80,(13:49) (Shotgun) B.Weeden sacked at CLV 12 for -8 yards (J.Harrison).,0,7,2012 -20121125_PIT@CLE,1,58,20,CLE,PIT,2,18,88,(13:20) T.Richardson right tackle to CLV 14 for 2 yards (L.Timmons; L.Foote).,0,7,2012 -20121125_PIT@CLE,1,57,38,CLE,PIT,3,16,86,(12:38) (Shotgun) B.Weeden pass incomplete deep left to J.Gordon.,0,7,2012 -20121125_PIT@CLE,1,57,33,CLE,PIT,4,16,86,(12:33) (Punt formation) R.Hodges punts 45 yards to PIT 41 Center-C.Yount fair catch by E.Sanders.,0,7,2012 -20121125_PIT@CLE,1,57,26,PIT,CLE,1,10,59,(12:26) R.Mendenhall right guard to PIT 43 for 2 yards (F.Rucker).,7,0,2012 -20121125_PIT@CLE,1,56,49,PIT,CLE,2,8,57,(11:49) R.Mendenhall left tackle to PIT 46 for 3 yards (A.Rubin U.Young). FUMBLES (A.Rubin) RECOVERED by CLV-U.Young at PIT 46. U.Young to PIT 44 for 2 yards. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,7,0,2012 -20121125_PIT@CLE,1,56,38,CLE,PIT,1,10,44,(11:38) T.Richardson right tackle to PIT 38 for 6 yards (R.Clark).,0,7,2012 -20121125_PIT@CLE,1,56,10,CLE,PIT,2,4,38,(11:10) T.Richardson left guard to PIT 31 for 7 yards (L.Timmons).,0,7,2012 -20121125_PIT@CLE,1,55,31,CLE,PIT,1,10,31,(10:31) M.Hardesty left tackle to PIT 18 for 13 yards (R.Clark; W.Allen).,0,7,2012 -20121125_PIT@CLE,1,54,51,CLE,PIT,1,10,18,(9:51) M.Hardesty right tackle to PIT 17 for 1 yard (C.Heyward).,0,7,2012 -20121125_PIT@CLE,1,54,14,CLE,PIT,2,9,17,(9:14) B.Weeden pass incomplete deep right to J.Gordon.,0,7,2012 -20121125_PIT@CLE,1,54,10,CLE,PIT,3,9,17,(9:10) (Shotgun) B.Weeden pass short right to M.Massaquoi to PIT 11 for 6 yards (C.Allen).,0,7,2012 -20121125_PIT@CLE,1,54,10,CLE,PIT,4,3,11,(9:10) (Field Goal formation) P.Dawson 28 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,7,2012 -20121125_PIT@CLE,1,54,10,CLE,PIT,,,11,P.Dawson kicks 63 yards from CLV 35 to PIT 2. C.Rainey to PIT 21 for 19 yards (J.Bademosi).,3,7,2012 -20121125_PIT@CLE,1,53,21,PIT,CLE,1,10,79,(8:21) J.Dwyer right guard to PIT 25 for 4 yards (S.Brown; F.Rucker).,7,3,2012 -20121125_PIT@CLE,1,52,37,PIT,CLE,2,6,75,(7:37) (Shotgun) C.Batch pass short right to J.Dwyer to PIT 32 for 7 yards (D.Jackson; T.Ward).,7,3,2012 -20121125_PIT@CLE,1,51,54,PIT,CLE,1,10,68,(6:54) J.Dwyer right tackle to PIT 35 for 3 yards (D.Jackson; S.Brown).,7,3,2012 -20121125_PIT@CLE,1,51,13,PIT,CLE,2,7,65,(6:13) J.Dwyer left guard to PIT 39 for 4 yards (J.Hughes).,7,3,2012 -20121125_PIT@CLE,1,50,33,PIT,CLE,3,3,61,(5:33) I.Redman left guard to PIT 41 for 2 yards (K.Maiava).,7,3,2012 -20121125_PIT@CLE,1,50,1,PIT,CLE,4,1,59,(5:01) (Punt formation) D.Butler punts 41 yards to CLV 18 Center-G.Warren downed by PIT-J.Worilds.,7,3,2012 -20121125_PIT@CLE,1,49,52,CLE,PIT,1,10,82,(4:52) (Shotgun) B.Weeden pass short middle to B.Watson to CLV 29 for 11 yards (L.Foote; R.Clark).,3,7,2012 -20121125_PIT@CLE,1,49,20,CLE,PIT,1,10,71,(4:20) B.Weeden pass short left to T.Richardson to CLV 47 for 18 yards (R.Clark).,3,7,2012 -20121125_PIT@CLE,1,49,20,CLE,PIT,1,10,53,(4:20) T.Richardson left guard to 50 for 3 yards (C.Hampton).,3,7,2012 -20121125_PIT@CLE,1,48,22,CLE,PIT,2,7,50,(3:22) B.Weeden pass incomplete short right to A.Smith (J.Worilds).,3,7,2012 -20121125_PIT@CLE,1,48,13,CLE,PIT,3,7,50,(3:13) (Shotgun) B.Weeden pass incomplete short right to M.Massaquoi.,3,7,2012 -20121125_PIT@CLE,1,48,9,CLE,PIT,4,7,50,(3:09) (Punt formation) R.Hodges punts 30 yards to PIT 20 Center-C.Yount fair catch by E.Sanders.,3,7,2012 -20121125_PIT@CLE,1,48,2,PIT,CLE,1,10,80,(3:02) C.Batch pass incomplete deep middle to H.Miller.,7,3,2012 -20121125_PIT@CLE,1,47,57,PIT,CLE,2,10,80,(2:57) C.Batch pass incomplete short left to W.Johnson (U.Young).,7,3,2012 -20121125_PIT@CLE,1,47,55,PIT,CLE,3,10,80,(2:55) (Shotgun) PENALTY on PIT-E.Sanders False Start 5 yards enforced at PIT 20 - No Play.,7,3,2012 -20121125_PIT@CLE,1,47,55,PIT,CLE,3,15,85,(2:55) (Shotgun) C.Batch pass short middle to E.Sanders to PIT 26 for 11 yards (B.Skrine; D.Jackson).,7,3,2012 -20121125_PIT@CLE,1,47,26,PIT,CLE,4,4,74,(2:26) (Punt formation) D.Butler punts 47 yards to CLV 27 Center-G.Warren. J.Cribbs to CLV 40 for 13 yards (R.Mundy).,7,3,2012 -20121125_PIT@CLE,1,47,15,CLE,PIT,1,10,60,(2:15) T.Richardson left end to CLV 44 for 4 yards. pitchout,3,7,2012 -20121125_PIT@CLE,1,46,38,CLE,PIT,2,6,56,(1:38) T.Benjamin left end to CLV 45 for 1 yard (K.Lewis).,3,7,2012 -20121125_PIT@CLE,1,45,55,CLE,PIT,3,5,55,(:55) B.Weeden pass short left to B.Watson to CLV 47 for 2 yards.,3,7,2012 -20121125_PIT@CLE,1,45,23,CLE,PIT,4,3,53,(:23) (Punt formation) R.Hodges punts 39 yards to PIT 14 Center-C.Yount fair catch by E.Sanders.,3,7,2012 -20121125_PIT@CLE,1,45,16,PIT,CLE,1,10,86,(:16) J.Dwyer right guard to PIT 16 for 2 yards (J.Sheard).,7,3,2012 -20121125_PIT@CLE,2,45,0,PIT,CLE,2,8,84,(15:00) J.Dwyer right tackle to PIT 19 for 3 yards (J.Hughes). PENALTY on PIT-R.Foster Offensive Holding 8 yards enforced at PIT 16 - No Play.,7,3,2012 -20121125_PIT@CLE,2,44,39,PIT,CLE,2,16,92,(14:39) J.Dwyer right tackle to PIT 5 for -3 yards (S.Brown).,7,3,2012 -20121125_PIT@CLE,2,43,54,PIT,CLE,3,19,95,(13:54) I.Redman left guard to PIT 10 for 5 yards (J.Parker). FUMBLES (J.Parker) RECOVERED by CLV-B.Skrine at PIT 10.,7,3,2012 -20121125_PIT@CLE,2,43,41,CLE,PIT,1,10,10,(13:41) T.Richardson left end to PIT 7 for 3 yards (L.Timmons; E.Hood).,3,7,2012 -20121125_PIT@CLE,2,43,8,CLE,PIT,2,7,7,(13:08) T.Richardson right end to PIT 5 for 2 yards (J.Worilds). pitch out,3,7,2012 -20121125_PIT@CLE,2,42,25,CLE,PIT,3,5,5,(12:25) (Shotgun) B.Weeden pass short right to J.Cameron for 5 yards TOUCHDOWN.,3,7,2012 -20121125_PIT@CLE,2,42,25,CLE,PIT,,,5,(Kick formation) P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,7,2012 -20121125_PIT@CLE,2,42,25,CLE,PIT,,,5,P.Dawson kicks 72 yards from CLV 35 to PIT -7. C.Rainey to PIT 24 for 31 yards (T.Wade). PENALTY on PIT-S.Sylvester Offensive Holding 10 yards enforced at PIT 19.,10,7,2012 -20121125_PIT@CLE,2,42,15,PIT,CLE,1,10,91,(12:15) C.Batch pass short left to J.Dwyer to PIT 11 for 2 yards (J.Haden).,7,10,2012 -20121125_PIT@CLE,2,41,32,PIT,CLE,2,8,89,(11:32) J.Dwyer left guard to PIT 12 for 1 yard (J.Sheard).,7,10,2012 -20121125_PIT@CLE,2,40,47,PIT,CLE,3,7,88,(10:47) (Shotgun) C.Batch pass short left to E.Sanders to PIT 22 for 10 yards (S.Brown).,7,10,2012 -20121125_PIT@CLE,2,40,0,PIT,CLE,1,10,78,(10:00) J.Dwyer right guard to PIT 24 for 2 yards (J.Johnson).,7,10,2012 -20121125_PIT@CLE,2,39,20,PIT,CLE,2,8,76,(9:20) C.Batch pass incomplete short right to H.Miller.,7,10,2012 -20121125_PIT@CLE,2,39,15,PIT,CLE,3,8,76,(9:15) (Shotgun) C.Batch pass incomplete deep left to M.Wallace.,7,10,2012 -20121125_PIT@CLE,2,39,7,PIT,CLE,4,8,76,(9:07) (Punt formation) D.Butler punts 50 yards to CLV 26 Center-G.Warren. T.Benjamin to CLV 42 for 16 yards.,7,10,2012 -20121125_PIT@CLE,2,39,0,CLE,PIT,1,10,58,(9:00) B.Weeden pass short left to J.Gordon to PIT 46 for 12 yards (K.Lewis; L.Timmons).,10,7,2012 -20121125_PIT@CLE,2,38,27,CLE,PIT,1,10,46,(8:27) B.Weeden scrambles right tackle to PIT 42 for 4 yards (W.Allen).,10,7,2012 -20121125_PIT@CLE,2,37,48,CLE,PIT,2,6,42,(7:48) B.Weeden pass short left to J.Gordon to PIT 35 for 7 yards (J.Harrison).,10,7,2012 -20121125_PIT@CLE,2,37,5,CLE,PIT,1,10,35,(7:05) T.Richardson right guard to PIT 30 for 5 yards (I.Taylor).,10,7,2012 -20121125_PIT@CLE,2,36,31,CLE,PIT,2,5,30,(6:31) T.Richardson left guard to PIT 33 for -3 yards (S.McLendon).,10,7,2012 -20121125_PIT@CLE,2,35,49,CLE,PIT,3,8,33,(5:49) B.Weeden pass short right to B.Watson to PIT 20 for 13 yards (L.Timmons).,10,7,2012 -20121125_PIT@CLE,2,35,10,CLE,PIT,1,10,20,(5:10) T.Richardson right guard to PIT 18 for 2 yards (L.Foote).,10,7,2012 -20121125_PIT@CLE,2,34,27,CLE,PIT,2,8,18,(4:27) T.Richardson right tackle to PIT 18 for no gain (C.Allen).,10,7,2012 -20121125_PIT@CLE,2,33,45,CLE,PIT,3,8,18,(3:45) B.Weeden scrambles right guard to PIT 14 for 4 yards (L.Timmons). Penalty on CLV-A.Mack Offensive Holding declined.,10,7,2012 -20121125_PIT@CLE,2,33,45,CLE,PIT,4,4,14,(3:45) (Field Goal formation) P.Dawson 32 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,7,2012 -20121125_PIT@CLE,2,33,45,CLE,PIT,,,14,P.Dawson kicks 54 yards from CLV 35 to PIT 11. C.Rainey to PIT 26 for 15 yards (T.Carder).,13,7,2012 -20121125_PIT@CLE,2,33,22,PIT,CLE,1,10,74,(3:22) J.Dwyer right tackle to PIT 34 for 8 yards (T.Ward). FUMBLES (T.Ward) RECOVERED by CLV-D.Jackson at PIT 34. D.Jackson to PIT 34 for no gain (M.Adams).,7,13,2012 -20121125_PIT@CLE,2,33,12,CLE,PIT,1,10,34,(3:12) B.Weeden sacked at PIT 41 for -7 yards (J.Worilds).,13,7,2012 -20121125_PIT@CLE,2,32,47,CLE,PIT,2,17,41,(2:47) T.Richardson left tackle to PIT 41 for no gain (R.Clark).,13,7,2012 -20121125_PIT@CLE,2,32,4,CLE,PIT,3,17,41,(2:04) (Shotgun) B.Weeden pass incomplete short right to G.Little (I.Taylor).,13,7,2012 -20121125_PIT@CLE,2,31,58,CLE,PIT,4,17,41,(1:58) (Punt formation) R.Hodges punts 25 yards to PIT 16 Center-C.Yount fair catch by E.Sanders.,13,7,2012 -20121125_PIT@CLE,2,31,51,PIT,CLE,1,10,84,(1:51) C.Rainey right end to PIT 22 for 6 yards (D.Jackson).,7,13,2012 -20121125_PIT@CLE,2,31,16,PIT,CLE,2,4,78,(1:16) C.Batch pass deep right to E.Sanders to PIT 49 for 27 yards (T.Ward).,7,13,2012 -20121125_PIT@CLE,2,31,9,PIT,CLE,1,10,51,(1:09) (Shotgun) C.Batch pass short left to C.Rainey to CLV 47 for 4 yards (J.Haden). FUMBLES (J.Haden) ball out of bounds at CLV 45.,7,13,2012 -20121125_PIT@CLE,2,30,56,PIT,CLE,2,6,47,(:56) (Shotgun) C.Batch pass short right to E.Sanders to CLV 37 for 10 yards (B.Winn).,7,13,2012 -20121125_PIT@CLE,2,30,30,PIT,CLE,1,10,37,(:30) (No Huddle Shotgun) C.Batch pass incomplete short right to D.Gilreath.,7,13,2012 -20121125_PIT@CLE,2,30,29,PIT,CLE,2,10,37,(:29) (Shotgun) C.Batch pass short middle to H.Miller to CLV 26 for 11 yards (C.Robertson).,7,13,2012 -20121125_PIT@CLE,2,30,22,PIT,CLE,1,10,26,(:22) (Shotgun) C.Batch pass incomplete deep right to P.Burress.,7,13,2012 -20121125_PIT@CLE,2,30,18,PIT,CLE,2,10,26,(:18) (Shotgun) C.Batch pass incomplete deep left to M.Wallace.,7,13,2012 -20121125_PIT@CLE,2,30,12,PIT,CLE,3,10,26,(:12) (Shotgun) C.Batch pass incomplete deep right to P.Burress. PENALTY on CLV-S.Brown Defensive Pass Interference 25 yards enforced at CLV 26 - No Play.,7,13,2012 -20121125_PIT@CLE,2,30,7,PIT,CLE,1,1,1,(:07) C.Rainey left guard for 1 yard TOUCHDOWN. running back bounced off left guard scored off left end,7,13,2012 -20121125_PIT@CLE,2,30,7,PIT,CLE,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,7,13,2012 -20121125_PIT@CLE,2,30,7,PIT,CLE,,,1,S.Suisham kicks 23 yards from PIT 35 to CLV 42. E.Hagg to CLV 47 for 5 yards (R.Mundy).,14,13,2012 -20121125_PIT@CLE,3,30,0,CLE,PIT,,,1,P.Dawson kicks 60 yards from CLV 35 to PIT 5. C.Rainey to PIT 21 for 16 yards (T.Wade; T.Carder).,13,14,2012 -20121125_PIT@CLE,3,29,54,PIT,CLE,1,10,79,(14:54) C.Batch pass short right to M.Wallace to PIT 30 for 9 yards (T.Ward). PENALTY on PIT-M.Adams Offensive Holding 10 yards enforced at PIT 21 - No Play.,14,13,2012 -20121125_PIT@CLE,3,29,28,PIT,CLE,1,20,89,(14:28) C.Batch pass short right to H.Miller to PIT 19 for 8 yards (U.Young). CLV-U.Young was injured during the play. He is Out. PENALTY on CLV-F.Rucker Defensive Offside 5 yards enforced at PIT 11 - No Play.,14,13,2012 -20121125_PIT@CLE,3,29,4,PIT,CLE,1,15,84,(14:04) (Shotgun) C.Batch pass short right to C.Rainey to PIT 15 for -1 yards (C.Robertson).,14,13,2012 -20121125_PIT@CLE,3,28,19,PIT,CLE,2,16,85,(13:19) (Shotgun) C.Batch pass short right to H.Miller to PIT 17 for 2 yards (B.Skrine).,14,13,2012 -20121125_PIT@CLE,3,28,19,PIT,CLE,3,14,83,(13:19) (Shotgun) PENALTY on PIT-C.Batch Delay of Game 5 yards enforced at PIT 17 - No Play.,14,13,2012 -20121125_PIT@CLE,3,27,10,PIT,CLE,3,19,88,(12:10) C.Batch pass short left to H.Miller to PIT 21 for 9 yards (J.Haden; B.Skrine).,14,13,2012 -20121125_PIT@CLE,3,26,34,PIT,CLE,4,10,79,(11:34) (Punt formation) D.Butler punts 55 yards to CLV 24 Center-G.Warren. J.Cribbs to CLV 24 for no gain (C.Brown; C.Allen).,14,13,2012 -20121125_PIT@CLE,3,26,25,CLE,PIT,1,10,76,(11:25) B.Weeden pass short right to T.Richardson to CLV 28 for 4 yards (J.Harrison).,13,14,2012 -20121125_PIT@CLE,3,25,51,CLE,PIT,2,6,72,(10:51) T.Richardson right guard to CLV 32 for 4 yards (B.Keisel).,13,14,2012 -20121125_PIT@CLE,3,25,7,CLE,PIT,3,2,68,(10:07) (Shotgun) B.Weeden pass short left to M.Massaquoi to CLV 36 for 4 yards (K.Lewis).,13,14,2012 -20121125_PIT@CLE,3,24,31,CLE,PIT,1,10,64,(9:31) T.Richardson right guard to CLV 43 for 7 yards (J.Harrison; L.Foote).,13,14,2012 -20121125_PIT@CLE,3,23,59,CLE,PIT,2,3,57,(8:59) T.Richardson left tackle to CLV 41 for -2 yards (J.Harrison).,13,14,2012 -20121125_PIT@CLE,3,23,16,CLE,PIT,3,5,59,(8:16) B.Weeden pass incomplete short right to G.Little (I.Taylor).,13,14,2012 -20121125_PIT@CLE,3,23,11,CLE,PIT,4,5,59,(8:11) (Punt formation) R.Hodges punts 46 yards to PIT 13 Center-C.Yount. E.Sanders MUFFS catch touched at PIT 13 ball out of bounds at PIT 15.,13,14,2012 -20121125_PIT@CLE,3,23,3,PIT,CLE,1,10,85,(8:03) C.Rainey right tackle to PIT 19 for 4 yards (D.Jackson; K.Maiava).,14,13,2012 -20121125_PIT@CLE,3,22,18,PIT,CLE,2,6,81,(7:18) C.Batch pass incomplete deep middle to M.Wallace (T.Ward).,14,13,2012 -20121125_PIT@CLE,3,22,10,PIT,CLE,3,6,81,(7:10) (Shotgun) C.Batch pass short right intended for P.Burress INTERCEPTED by S.Brown at PIT 32. S.Brown ran ob at PIT 31 for 1 yard.,14,13,2012 -20121125_PIT@CLE,3,22,5,CLE,PIT,1,10,31,(7:05) B.Weeden pass short left to T.Richardson to PIT 27 for 4 yards (L.Timmons).,13,14,2012 -20121125_PIT@CLE,3,21,27,CLE,PIT,2,6,27,(6:27) B.Weeden pass deep left to M.Massaquoi to PIT 10 for 17 yards (K.Lewis).,13,14,2012 -20121125_PIT@CLE,3,21,27,CLE,PIT,1,10,10,(6:27) PENALTY on CLV-B.Watson False Start 5 yards enforced at PIT 10 - No Play.,13,14,2012 -20121125_PIT@CLE,3,20,25,CLE,PIT,1,15,15,(5:25) T.Richardson left tackle for 15 yards TOUCHDOWN.,13,14,2012 -20121125_PIT@CLE,3,20,25,CLE,PIT,,,15,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,13,14,2012 -20121125_PIT@CLE,3,20,25,CLE,PIT,,,15,P.Dawson kicks 47 yards from CLV 35 to PIT 18 fair catch by L.Pope.,20,14,2012 -20121125_PIT@CLE,3,20,18,PIT,CLE,1,10,82,(5:18) R.Mendenhall left guard to PIT 19 for 1 yard (F.Rucker).,14,20,2012 -20121125_PIT@CLE,3,19,40,PIT,CLE,2,9,81,(4:40) C.Batch pass short middle to H.Miller to PIT 29 for 10 yards (J.Johnson; D.Jackson).,14,20,2012 -20121125_PIT@CLE,3,19,2,PIT,CLE,1,10,71,(4:02) R.Mendenhall right tackle to PIT 37 for 8 yards (D.Jackson; T.Gipson). PENALTY on PIT-H.Miller Offensive Holding 10 yards enforced at PIT 29 - No Play.,14,20,2012 -20121125_PIT@CLE,3,18,32,PIT,CLE,1,20,81,(3:32) C.Batch sacked at PIT 13 for -6 yards (P.Taylor). PIT-M.Adams was injured during the play. His return is Questionable.,14,20,2012 -20121125_PIT@CLE,3,18,10,PIT,CLE,2,26,87,(3:10) C.Batch pass deep middle to H.Miller to PIT 46 for 33 yards (D.Jackson). PENALTY on PIT-K.Beachum Offensive Holding 6 yards enforced at PIT 13 - No Play.,14,20,2012 -20121125_PIT@CLE,3,17,44,PIT,CLE,2,32,93,(2:44) (Shotgun) C.Batch pass incomplete deep middle to E.Sanders (D.Jackson).,14,20,2012 -20121125_PIT@CLE,3,17,38,PIT,CLE,3,32,93,(2:38) (Shotgun) C.Batch pass short left to I.Redman to PIT 22 for 15 yards (E.Hagg). shovel pass,14,20,2012 -20121125_PIT@CLE,3,17,1,PIT,CLE,4,17,78,(2:01) (Punt formation) D.Butler punts 48 yards to CLV 30 Center-G.Warren out of bounds. PENALTY on CLV-L.Fort Offensive Holding 10 yards enforced at CLV 30.,14,20,2012 -20121125_PIT@CLE,3,16,55,CLE,PIT,1,10,80,(1:55) B.Weeden pass short right to J.Cameron to CLV 24 for 4 yards (W.Allen). PENALTY on CLV-S.Lauvao Offensive Holding 10 yards enforced at CLV 20 - No Play.,20,14,2012 -20121125_PIT@CLE,3,16,42,CLE,PIT,1,20,90,(1:42) T.Richardson right guard to CLV 11 for 1 yard (R.Clark).,20,14,2012 -20121125_PIT@CLE,3,16,1,CLE,PIT,2,19,89,(1:01) B.Weeden pass short right to T.Benjamin to CLV 24 for 13 yards (K.Lewis). PENALTY on CLV-S.Lauvao Offensive Holding 5 yards enforced at CLV 11 - No Play.,20,14,2012 -20121125_PIT@CLE,3,15,37,CLE,PIT,2,24,94,(:37) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 7 for 1 yard (L.Timmons).,20,14,2012 -20121125_PIT@CLE,4,15,0,CLE,PIT,3,23,93,(15:00) (Shotgun) B.Weeden pass short right to G.Little to CLV 13 for 6 yards (J.Harrison).,20,14,2012 -20121125_PIT@CLE,4,14,25,CLE,PIT,4,17,87,(14:25) (Punt formation) R.Hodges punts 39 yards to PIT 48 Center-C.Yount. E.Sanders to CLV 44 for 8 yards (J.Bademosi; L.Fort).,20,14,2012 -20121125_PIT@CLE,4,14,15,PIT,CLE,1,10,44,(14:15) R.Mendenhall left guard to CLV 44 for no gain (K.Maiava). FUMBLES (K.Maiava) recovered by PIT-W.Johnson at CLV 43.,14,20,2012 -20121125_PIT@CLE,4,13,32,PIT,CLE,2,9,43,(13:32) (Shotgun) C.Batch pass short left to E.Sanders to CLV 28 for 15 yards (D.Jackson).,14,20,2012 -20121125_PIT@CLE,4,12,46,PIT,CLE,1,10,28,(12:46) J.Dwyer right guard to CLV 30 for -2 yards (B.Winn).,14,20,2012 -20121125_PIT@CLE,4,12,6,PIT,CLE,2,12,30,(12:06) C.Batch pass short middle intended for M.Wallace INTERCEPTED by B.Winn (J.Haden) at CLV 26. B.Winn to CLV 26 for no gain (D.Legursky).,14,20,2012 -20121125_PIT@CLE,4,12,0,CLE,PIT,1,10,74,(12:00) T.Richardson left guard to CLV 27 for 1 yard (L.Timmons; K.Lewis). PENALTY on PIT-C.Hampton Illegal Use of Hands 5 yards enforced at CLV 27.,20,14,2012 -20121125_PIT@CLE,4,11,47,CLE,PIT,1,10,68,(11:47) T.Richardson right tackle to CLV 40 for 8 yards (L.Foote).,20,14,2012 -20121125_PIT@CLE,4,11,12,CLE,PIT,2,2,60,(11:12) T.Richardson right guard to CLV 41 for 1 yard (R.Clark). PENALTY on CLV-A.Mack Offensive Holding 10 yards enforced at CLV 40 - No Play.,20,14,2012 -20121125_PIT@CLE,4,10,48,CLE,PIT,2,12,70,(10:48) B.Weeden sacked at CLV 21 for -9 yards (B.Keisel).,20,14,2012 -20121125_PIT@CLE,4,10,17,CLE,PIT,3,21,79,(10:17) (Shotgun) T.Richardson left guard to CLV 28 for 7 yards (L.Timmons). PENALTY on CLV-J.Greco Offensive Holding 10 yards enforced at CLV 25.,20,14,2012 -20121125_PIT@CLE,4,9,58,CLE,PIT,3,27,85,(9:58) T.Richardson right guard to CLV 19 for 4 yards (C.Allen).,20,14,2012 -20121125_PIT@CLE,4,9,20,CLE,PIT,4,23,81,(9:20) R.Hodges punts 46 yards to PIT 35 Center-C.Yount fair catch by E.Sanders.,20,14,2012 -20121125_PIT@CLE,4,9,19,PIT,CLE,1,10,65,(9:19) C.Rainey left guard to PIT 42 for 7 yards (A.Rubin).,14,20,2012 -20121125_PIT@CLE,4,8,45,PIT,CLE,2,3,58,(8:45) C.Rainey right guard to PIT 41 for -1 yards (J.Johnson).,14,20,2012 -20121125_PIT@CLE,4,8,4,PIT,CLE,3,4,59,(8:04) (Shotgun) C.Batch pass incomplete short left to M.Wallace.,14,20,2012 -20121125_PIT@CLE,4,8,0,PIT,CLE,4,4,59,(8:00) (Punt formation) D.Butler punts 34 yards to CLV 25 Center-G.Warren. J.Cribbs to CLV 39 for 14 yards (C.Allen).,14,20,2012 -20121125_PIT@CLE,4,7,51,CLE,PIT,1,10,61,(7:51) B.Weeden sacked at CLV 35 for -4 yards (J.Worilds).,20,14,2012 -20121125_PIT@CLE,4,7,18,CLE,PIT,2,14,65,(7:18) (Shotgun) B.Weeden pass short middle to J.Gordon to 50 for 15 yards (W.Allen; R.Clark).,20,14,2012 -20121125_PIT@CLE,4,6,39,CLE,PIT,1,10,50,(6:39) B.Weeden pass short left to J.Cameron to PIT 43 for 7 yards (R.Clark).,20,14,2012 -20121125_PIT@CLE,4,6,1,CLE,PIT,2,3,43,(6:01) T.Richardson right guard to PIT 44 for -1 yards (B.Keisel; R.Clark).,20,14,2012 -20121125_PIT@CLE,4,5,24,CLE,PIT,3,4,44,(5:24) B.Weeden pass incomplete short left to J.Gordon [J.Worilds].,20,14,2012 -20121125_PIT@CLE,4,5,20,CLE,PIT,4,4,44,(5:20) (Punt formation) R.Hodges punts 29 yards to PIT 15 Center-C.Yount fair catch by E.Sanders.,20,14,2012 -20121125_PIT@CLE,4,5,13,PIT,CLE,1,10,85,(5:13) (Shotgun) C.Batch pass short middle to H.Miller to PIT 27 for 12 yards (J.Johnson).,14,20,2012 -20121125_PIT@CLE,4,4,38,PIT,CLE,1,10,73,(4:38) (Shotgun) C.Batch pass short middle to H.Miller to PIT 46 for 19 yards (T.Gipson).,14,20,2012 -20121125_PIT@CLE,4,3,54,PIT,CLE,1,10,54,(3:54) (Shotgun) C.Batch pass short left to C.Rainey to PIT 47 for 1 yard (D.Jackson; K.Maiava).,14,20,2012 -20121125_PIT@CLE,4,3,21,PIT,CLE,2,9,53,(3:21) (Shotgun) C.Batch pass incomplete short left to C.Rainey. PENALTY on PIT-D.Legursky Offensive Holding 10 yards enforced at PIT 47 - No Play.,14,20,2012 -20121125_PIT@CLE,4,3,16,PIT,CLE,2,19,63,(3:16) (Shotgun) C.Batch pass short right to W.Johnson to PIT 44 for 7 yards (J.Haden; B.Skrine). PENALTY on CLV-J.Sheard Illegal Use of Hands 5 yards enforced at PIT 37 - No Play.,14,20,2012 -20121125_PIT@CLE,4,3,9,PIT,CLE,1,10,58,(3:09) (Shotgun) C.Batch pass deep right intended for M.Wallace INTERCEPTED by J.Haden at CLV 19. J.Haden to CLV 19 for no gain (M.Wallace).,14,20,2012 -20121125_PIT@CLE,4,3,0,CLE,PIT,1,10,81,(3:00) T.Richardson right guard to CLV 21 for 2 yards (L.Foote).,20,14,2012 -20121125_PIT@CLE,4,2,55,CLE,PIT,2,8,79,(2:55) T.Richardson right tackle to CLV 19 for -2 yards (J.Harrison).,20,14,2012 -20121125_PIT@CLE,4,2,51,CLE,PIT,3,10,81,(2:51) T.Richardson left tackle to CLV 22 for 3 yards (J.Worilds).,20,14,2012 -20121125_PIT@CLE,4,2,46,CLE,PIT,4,7,78,(2:46) (Punt formation) R.Hodges punts 49 yards to PIT 29 Center-C.Yount. E.Sanders to PIT 26 for -3 yards (B.Skrine).,20,14,2012 -20121125_PIT@CLE,4,2,36,PIT,CLE,1,10,74,(2:36) (Shotgun) C.Batch pass short right to C.Rainey to PIT 37 for 11 yards (D.Jackson). FUMBLES (D.Jackson) RECOVERED by CLV-P.Taylor at PIT 40. P.Taylor to PIT 40 for no gain (R.Foster). PIT-C.Rainey was injured during the play. His return is Questionable.,14,20,2012 -20121125_PIT@CLE,4,2,25,CLE,PIT,1,10,40,(2:25) T.Richardson right guard to PIT 41 for -1 yards (J.Harrison).,20,14,2012 -20121125_PIT@CLE,4,2,0,CLE,PIT,2,11,41,(2:00) T.Richardson right tackle to PIT 36 for 5 yards (K.Lewis).,20,14,2012 -20121125_PIT@CLE,4,1,15,CLE,PIT,3,6,36,(1:15) T.Richardson left guard to PIT 33 for 3 yards (J.Harrison).,20,14,2012 -20121125_PIT@CLE,4,1,15,CLE,PIT,4,3,33,(1:15) (Run formation) PENALTY on CLV-C.McCoy Delay of Game 5 yards enforced at PIT 33 - No Play.,20,14,2012 -20121125_PIT@CLE,4,0,28,CLE,PIT,4,8,38,(:28) (Punt formation) R.Hodges punts 35 yards to PIT 3 Center-C.Yount out of bounds. The Replay Assistant challenged the kick touched ruling and the play was Upheld.,20,14,2012 -20121125_PIT@CLE,4,0,19,PIT,CLE,1,10,97,(:19) (Shotgun) C.Batch pass short left to W.Johnson ran ob at PIT 16 for 13 yards (T.Gipson).,14,20,2012 -20121125_PIT@CLE,4,0,10,PIT,CLE,1,10,84,(:10) (Shotgun) C.Batch pass incomplete short left to W.Johnson.,14,20,2012 -20121125_PIT@CLE,4,0,5,PIT,CLE,2,10,84,(:05) (Shotgun) C.Batch pass short left to M.Wallace to PIT 25 for 9 yards. Lateral to E.Sanders to PIT 29 for 4 yards (T.Ward). FUMBLES (T.Ward) RECOVERED by CLV-C.Robertson at PIT 27. C.Robertson to PIT 25 for 2 yards (M.Starks).,14,20,2012 -20121125_PIT@CLE,4,0,5,PIT,CLE,,,84,                      ,14,20,2012 -20121125_BUF@IND,1,0,0,BUF,IND,,,84,R.Lindell kicks 62 yards from BUF 35 to IND 3. J.Lefeged to IND 16 for 13 yards (A.Moats; R.Brooks).,0,0,2012 -20121125_BUF@IND,1,59,55,IND,BUF,1,10,84,(14:55) (Run formation) A.Luck pass incomplete short right to D.Avery. PENALTY on IND-W.Justice Ineligible Downfield Pass 5 yards enforced at IND 16 - No Play.,0,0,2012 -20121125_BUF@IND,1,59,49,IND,BUF,1,15,89,(14:49) A.Luck pass short left to R.Wayne to IND 15 for 4 yards (N.Barnett).,0,0,2012 -20121125_BUF@IND,1,59,3,IND,BUF,2,11,85,(14:03) (Run formation) A.Luck pass incomplete deep left to D.Allen [K.Williams].,0,0,2012 -20121125_BUF@IND,1,58,58,IND,BUF,3,11,85,(13:58) (Shotgun) A.Luck pass deep right to T.Hilton to IND 33 for 18 yards (S.Gilmore).,0,0,2012 -20121125_BUF@IND,1,58,18,IND,BUF,1,10,67,(13:18) (Run formation) B.Sowell reported in as eligible. V.Ballard left tackle to IND 36 for 3 yards (L.McKelvin).,0,0,2012 -20121125_BUF@IND,1,57,37,IND,BUF,2,7,64,(12:37) (Run formation) PENALTY on IND-V.Ballard False Start 5 yards enforced at IND 36 - No Play.,0,0,2012 -20121125_BUF@IND,1,57,12,IND,BUF,2,12,69,(12:12) V.Ballard up the middle to IND 30 for -1 yards (Sp.Johnson; N.Barnett).,0,0,2012 -20121125_BUF@IND,1,56,32,IND,BUF,3,13,70,(11:32) (Shotgun) A.Luck pass incomplete short left to D.Allen.,0,0,2012 -20121125_BUF@IND,1,56,26,IND,BUF,4,13,70,(11:26) P.McAfee punts 55 yards to BUF 15 Center-M.Overton. L.McKelvin to BUF 31 for 16 yards (M.Overton; D.Carter).,0,0,2012 -20121125_BUF@IND,1,56,14,BUF,IND,1,10,69,(11:14) (Run formation) C.Spiller up the middle to BUF 34 for 3 yards (F.Moala; J.Freeman).,0,0,2012 -20121125_BUF@IND,1,55,35,BUF,IND,2,7,66,(10:35) R.Fitzpatrick pass incomplete short left to St.Johnson (C.Vaughn).,0,0,2012 -20121125_BUF@IND,1,55,30,BUF,IND,3,7,66,(10:30) (Shotgun) R.Fitzpatrick sacked at BUF 27 for -7 yards (J.Freeman).,0,0,2012 -20121125_BUF@IND,1,55,16,BUF,IND,4,14,73,(10:16) S.Powell punts 48 yards to IND 25 Center-G.Sanborn. T.Hilton for 75 yards TOUCHDOWN.,0,0,2012 -20121125_BUF@IND,1,55,16,IND,BUF,,,73,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121125_BUF@IND,1,55,16,IND,BUF,,,73,P.McAfee kicks 73 yards from IND 35 to BUF -8. B.Smith Touchback.,7,0,2012 -20121125_BUF@IND,1,54,56,BUF,IND,1,10,80,(9:56) (Run formation) C.Spiller left end to BUF 16 for -4 yards (J.Freeman; R.Mathis).,0,7,2012 -20121125_BUF@IND,1,54,13,BUF,IND,2,14,84,(9:13) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 25 for 9 yards (M.Fokou).,0,7,2012 -20121125_BUF@IND,1,53,28,BUF,IND,3,5,75,(8:28) (Shotgun) R.Fitzpatrick pass incomplete deep right to C.Spiller. PENALTY on IND-D.Freeney Defensive Offside 5 yards enforced at BUF 25 - No Play.,0,7,2012 -20121125_BUF@IND,1,53,23,BUF,IND,1,10,70,(8:23) (Run formation) R.Fitzpatrick pass incomplete deep right to D.Dickerson [F.Moala].,0,7,2012 -20121125_BUF@IND,1,53,18,BUF,IND,2,10,70,(8:18) (Shotgun) R.Fitzpatrick pass incomplete short middle to C.Spiller (M.Tevaseu).,0,7,2012 -20121125_BUF@IND,1,53,14,BUF,IND,3,10,70,(8:14) (Shotgun) R.Fitzpatrick pass short left to T.Graham to IND 46 for 24 yards (D.Butler).,0,7,2012 -20121125_BUF@IND,1,52,31,BUF,IND,1,10,46,(7:31) (Run formation) C.Spiller up the middle to IND 43 for 3 yards (F.Moala; C.Redding).,0,7,2012 -20121125_BUF@IND,1,51,52,BUF,IND,2,7,43,(6:52) C.Spiller up the middle pushed ob at IND 20 for 23 yards (A.Bethea).,0,7,2012 -20121125_BUF@IND,1,51,27,BUF,IND,1,10,20,(6:27) (Run formation) C.Spiller up the middle to IND 21 for -1 yards (K.Conner).,0,7,2012 -20121125_BUF@IND,1,50,41,BUF,IND,2,11,21,(5:41) (Shotgun) R.Fitzpatrick pass short left to T.Graham to IND 21 for no gain (C.Vaughn).,0,7,2012 -20121125_BUF@IND,1,49,59,BUF,IND,3,11,21,(4:59) (Run formation) R.Fitzpatrick pass short middle to St.Johnson to IND 15 for 6 yards (J.Hughes; J.Freeman).,0,7,2012 -20121125_BUF@IND,1,49,33,BUF,IND,4,5,15,(4:33) R.Lindell 33 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,7,2012 -20121125_BUF@IND,1,49,33,BUF,IND,,,15,R.Lindell kicks 63 yards from BUF 35 to IND 2. J.Lefeged to IND 20 for 18 yards (J.Rogers).,3,7,2012 -20121125_BUF@IND,1,49,23,IND,BUF,1,10,80,(4:23) (Run formation) V.Ballard right tackle to IND 20 for no gain (K.Williams).,7,3,2012 -20121125_BUF@IND,1,48,54,IND,BUF,2,10,80,(3:54) (No Huddle) V.Ballard up the middle to IND 31 for 11 yards (B.Scott).,7,3,2012 -20121125_BUF@IND,1,48,23,IND,BUF,1,10,69,(3:23) A.Luck pass short right to R.Wayne to IND 38 for 7 yards (B.Scott).,7,3,2012 -20121125_BUF@IND,1,47,56,IND,BUF,2,3,62,(2:56) (Run formation) V.Ballard right tackle to IND 42 for 4 yards (B.Scott).,7,3,2012 -20121125_BUF@IND,1,47,17,IND,BUF,1,10,58,(2:17) V.Ballard left end to BUF 49 for 9 yards (S.Merriman).,7,3,2012 -20121125_BUF@IND,1,46,36,IND,BUF,2,1,49,(1:36) (Run formation) B.Sowell reported in as eligible. V.Ballard left tackle to BUF 47 for 2 yards (K.Sheppard).,7,3,2012 -20121125_BUF@IND,1,45,57,IND,BUF,1,10,47,(:57) A.Luck pass incomplete deep left to D.Avery.,7,3,2012 -20121125_BUF@IND,1,45,52,IND,BUF,2,10,47,(:52) (Shotgun) A.Luck pass incomplete short left to D.Avery (M.Williams).,7,3,2012 -20121125_BUF@IND,1,45,48,IND,BUF,3,10,47,(:48) (Shotgun) A.Luck sacked at 50 for -3 yards (M.Williams).,7,3,2012 -20121125_BUF@IND,1,45,26,IND,BUF,4,13,50,(:26) P.McAfee punts 49 yards to BUF 1 Center-M.Overton downed by IND-S.Brown.,7,3,2012 -20121125_BUF@IND,1,45,17,BUF,IND,1,10,99,(:17) (Run formation) R.Fitzpatrick up the middle to BUF 3 for 2 yards (J.Freeman; L.Guy).,3,7,2012 -20121125_BUF@IND,2,45,0,BUF,IND,2,8,97,(15:00) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 12 for 9 yards (J.Freeman).,3,7,2012 -20121125_BUF@IND,2,44,22,BUF,IND,1,10,88,(14:22) R.Fitzpatrick pass incomplete deep left to D.Jones.,3,7,2012 -20121125_BUF@IND,2,44,16,BUF,IND,2,10,88,(14:16) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson.,3,7,2012 -20121125_BUF@IND,2,44,9,BUF,IND,3,10,88,(14:09) (Shotgun) F.Jackson right guard to BUF 16 for 4 yards (R.Mathews; D.Butler).,3,7,2012 -20121125_BUF@IND,2,43,30,BUF,IND,4,6,84,(13:30) S.Powell punts 55 yards to IND 29 Center-G.Sanborn. T.Hilton to IND 47 for 18 yards (N.Bradham). FUMBLES (N.Bradham) RECOVERED by BUF-C.McIntyre at IND 48. C.McIntyre to IND 41 for 7 yards (S.Brown). Play Challenged by Replay Assistant and REVERSED. S.Powell punts 55 yards to IND 29 Center-G.Sanborn. T.Hilton to IND 47 for 18 yards (N.Bradham). IND-T.Hilton was injured during the play. His return is Probable.,3,7,2012 -20121125_BUF@IND,2,43,22,IND,BUF,1,10,53,(13:22) A.Luck pass incomplete deep right to R.Wayne (S.Gilmore).,7,3,2012 -20121125_BUF@IND,2,43,17,IND,BUF,2,10,53,(13:17) (Shotgun) A.Luck pass short middle intended for R.Wayne INTERCEPTED by J.Rogers at BUF 47. J.Rogers to BUF 46 for -1 yards (R.Wayne).,7,3,2012 -20121125_BUF@IND,2,43,10,BUF,IND,1,10,54,(13:10) C.Spiller up the middle to IND 43 for 11 yards (J.Freeman; A.Bethea).,3,7,2012 -20121125_BUF@IND,2,42,29,BUF,IND,1,10,43,(12:29) (Shotgun) C.Spiller left end pushed ob at IND 30 for 13 yards (J.Freeman).,3,7,2012 -20121125_BUF@IND,2,41,57,BUF,IND,1,10,30,(11:57) (Shotgun) C.Spiller up the middle to IND 27 for 3 yards (D.Butler; F.Moala).,3,7,2012 -20121125_BUF@IND,2,41,10,BUF,IND,2,7,27,(11:10) (Run formation) F.Jackson up the middle to IND 30 for -3 yards (J.Freeman).,3,7,2012 -20121125_BUF@IND,2,40,23,BUF,IND,3,10,30,(10:23) (Shotgun) R.Fitzpatrick sacked at IND 34 for -4 yards (R.Mathis).,3,7,2012 -20121125_BUF@IND,2,40,18,BUF,IND,4,14,34,(10:18) S.Powell punts 23 yards to IND 11 Center-G.Sanborn fair catch by T.Zbikowski.,3,7,2012 -20121125_BUF@IND,2,40,11,IND,BUF,1,10,89,(10:11) (Run formation) D.Brown right tackle to IND 14 for 3 yards (J.Byrd).,7,3,2012 -20121125_BUF@IND,2,39,32,IND,BUF,2,7,86,(9:32) (Shotgun) A.Luck pass short left to D.Avery to IND 18 for 4 yards (S.Gilmore).,7,3,2012 -20121125_BUF@IND,2,38,50,IND,BUF,3,3,82,(8:50) (Shotgun) A.Luck scrambles up the middle to IND 26 for 8 yards (K.Moore).,7,3,2012 -20121125_BUF@IND,2,38,6,IND,BUF,1,10,74,(8:06) A.Luck pass short right to D.Brown pushed ob at IND 49 for 23 yards (D.Searcy).,7,3,2012 -20121125_BUF@IND,2,37,36,IND,BUF,1,10,51,(7:36) (Run formation) B.Sowell reported in as eligible. A.Luck pass short left to D.Allen to BUF 27 for 24 yards (J.Byrd).,7,3,2012 -20121125_BUF@IND,2,36,47,IND,BUF,1,10,27,(6:47) (Run formation) A.Luck pass incomplete deep left to W.Saunders.,7,3,2012 -20121125_BUF@IND,2,36,43,IND,BUF,2,10,27,(6:43) D.Brown right guard to BUF 28 for -1 yards (J.Byrd).,7,3,2012 -20121125_BUF@IND,2,36,5,IND,BUF,3,11,28,(6:05) (Shotgun) A.Luck scrambles right end pushed ob at BUF 14 for 14 yards (K.Moore).,7,3,2012 -20121125_BUF@IND,2,35,28,IND,BUF,1,10,14,(5:28) D.Brown left end pushed ob at BUF 10 for 4 yards (N.Bradham).,7,3,2012 -20121125_BUF@IND,2,34,56,IND,BUF,2,6,10,(4:56) (Run formation) B.Sowell reported in as eligible. D.Brown left tackle to BUF 7 for 3 yards (L.McKelvin).,7,3,2012 -20121125_BUF@IND,2,34,18,IND,BUF,3,3,7,(4:18) (Shotgun) A.Luck pass incomplete short left to V.Ballard.,7,3,2012 -20121125_BUF@IND,2,34,13,IND,BUF,4,3,7,(4:13) A.Vinatieri 25 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,7,3,2012 -20121125_BUF@IND,2,34,13,IND,BUF,,,7,P.McAfee kicks 71 yards from IND 35 to BUF -6. L.McKelvin Touchback.,10,3,2012 -20121125_BUF@IND,2,34,8,BUF,IND,1,10,80,(4:08) (Shotgun) R.Fitzpatrick pass deep right to St.Johnson to IND 17 for 63 yards (D.Butler; T.Zbikowski).,3,10,2012 -20121125_BUF@IND,2,33,15,BUF,IND,1,10,17,(3:15) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,3,10,2012 -20121125_BUF@IND,2,33,11,BUF,IND,2,10,17,(3:11) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (D.Butler).,3,10,2012 -20121125_BUF@IND,2,33,5,BUF,IND,3,10,17,(3:05) (Shotgun) R.Fitzpatrick scrambles up the middle to IND 13 for 4 yards (J.Freeman).,3,10,2012 -20121125_BUF@IND,2,32,21,BUF,IND,4,6,13,(2:21) R.Lindell 31 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,3,10,2012 -20121125_BUF@IND,2,32,21,BUF,IND,,,13,R.Lindell kicks 68 yards from BUF 35 to IND -3. J.Lefeged to IND 15 for 18 yards (M.Silva). PENALTY on IND-J.Gordy Offensive Holding 7 yards enforced at IND 15.,6,10,2012 -20121125_BUF@IND,2,32,12,IND,BUF,1,10,92,(2:12) V.Ballard up the middle to IND 8 for no gain (M.Dareus).,10,6,2012 -20121125_BUF@IND,2,32,0,IND,BUF,2,10,92,(2:00) (Shotgun) A.Luck pass short middle to D.Allen to IND 10 for 2 yards (M.Dareus).,10,6,2012 -20121125_BUF@IND,2,31,52,IND,BUF,3,8,90,(1:52) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 20 for 10 yards (J.Rogers).,10,6,2012 -20121125_BUF@IND,2,31,47,IND,BUF,1,10,80,(1:47) (Shotgun) A.Luck pass deep middle to D.Avery to IND 37 for 17 yards (L.McKelvin).,10,6,2012 -20121125_BUF@IND,2,31,26,IND,BUF,1,10,63,(1:26) (No Huddle Shotgun) A.Luck pass short right to D.Allen pushed ob at IND 47 for 10 yards (B.Scott).,10,6,2012 -20121125_BUF@IND,2,31,22,IND,BUF,1,10,53,(1:22) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,10,6,2012 -20121125_BUF@IND,2,31,16,IND,BUF,2,10,53,(1:16) (Shotgun) A.Luck pass incomplete deep left to D.Avery.,10,6,2012 -20121125_BUF@IND,2,31,9,IND,BUF,3,10,53,(1:09) (Shotgun) A.Luck pass incomplete deep left to D.Avery.,10,6,2012 -20121125_BUF@IND,2,31,5,IND,BUF,4,10,53,(1:05) P.McAfee punts 45 yards to BUF 8 Center-M.Overton fair catch by L.McKelvin.,10,6,2012 -20121125_BUF@IND,2,30,58,BUF,IND,1,10,92,(:58) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson [R.Mathis].,6,10,2012 -20121125_BUF@IND,2,30,53,BUF,IND,2,10,92,(:53) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,6,10,2012 -20121125_BUF@IND,2,30,50,BUF,IND,3,10,92,(:50) (Shotgun) F.Jackson up the middle to BUF 12 for 4 yards (A.Johnson; R.Mathis).,6,10,2012 -20121125_BUF@IND,2,30,44,BUF,IND,4,6,88,(:44) S.Powell punts 50 yards to IND 38 Center-G.Sanborn. T.Hilton to IND 49 for 11 yards (N.Bradham).,6,10,2012 -20121125_BUF@IND,2,30,32,IND,BUF,1,10,51,(:32) (Shotgun) A.Luck pass incomplete deep right to R.Wayne. PENALTY on BUF-J.Rogers Defensive Pass Interference 23 yards enforced at IND 49 - No Play.,10,6,2012 -20121125_BUF@IND,2,30,28,IND,BUF,1,10,28,(:28) (Shotgun) A.Luck pass short left to R.Wayne to BUF 3 for 25 yards (J.Byrd).,10,6,2012 -20121125_BUF@IND,2,30,16,IND,BUF,1,3,3,(:16) (Shotgun) A.Luck pass incomplete short middle to D.Allen (B.Scott).,10,6,2012 -20121125_BUF@IND,2,30,12,IND,BUF,2,3,3,(:12) (Shotgun) A.Luck pass short right to R.Wayne to BUF 1 for 2 yards (S.Gilmore).,10,6,2012 -20121125_BUF@IND,2,30,1,IND,BUF,3,1,1,(:01) A.Luck spiked the ball to stop the clock.,10,6,2012 -20121125_BUF@IND,2,30,1,IND,BUF,4,1,1,(:01) A.Vinatieri 19 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,10,6,2012 -20121125_BUF@IND,3,30,0,IND,BUF,,,1,P.McAfee kicks 65 yards from IND 35 to BUF 0. B.Smith to BUF 32 for 32 yards (M.Fokou).,13,6,2012 -20121125_BUF@IND,3,29,54,BUF,IND,1,10,68,(14:54) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 32 for no gain (J.Freeman). PENALTY on IND-A.Johnson Defensive Holding 5 yards enforced at BUF 32 - No Play.,6,13,2012 -20121125_BUF@IND,3,29,33,BUF,IND,1,10,63,(14:33) (Run formation) C.Spiller up the middle to BUF 37 for no gain (C.Redding; F.Moala).,6,13,2012 -20121125_BUF@IND,3,28,53,BUF,IND,2,10,63,(13:53) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham.,6,13,2012 -20121125_BUF@IND,3,28,48,BUF,IND,3,10,63,(13:48) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to BUF 47 for 10 yards (A.Bethea).,6,13,2012 -20121125_BUF@IND,3,28,7,BUF,IND,1,10,53,(13:07) C.Spiller right tackle to IND 48 for 5 yards (A.Bethea).,6,13,2012 -20121125_BUF@IND,3,27,25,BUF,IND,2,5,48,(12:25) (Run formation) R.Fitzpatrick pass incomplete deep middle to S.Chandler (F.Moala).,6,13,2012 -20121125_BUF@IND,3,27,18,BUF,IND,3,5,48,(12:18) (Shotgun) R.Fitzpatrick pass incomplete short middle to St.Johnson (M.Fokou) [D.Freeney].,6,13,2012 -20121125_BUF@IND,3,27,13,BUF,IND,4,5,48,(12:13) S.Powell punts 35 yards to IND 13 Center-G.Sanborn fair catch by T.Hilton.,6,13,2012 -20121125_BUF@IND,3,27,6,IND,BUF,1,10,87,(12:06) (Run formation) V.Ballard left end to IND 22 for 9 yards (S.Gilmore; G.Wilson).,13,6,2012 -20121125_BUF@IND,3,26,32,IND,BUF,2,1,78,(11:32) (Run formation) V.Ballard up the middle to IND 25 for 3 yards (N.Barnett; K.Sheppard).,13,6,2012 -20121125_BUF@IND,3,25,56,IND,BUF,1,10,75,(10:56) (Run formation) A.Luck pass short right to W.Saunders to IND 29 for 4 yards (N.Bradham).,13,6,2012 -20121125_BUF@IND,3,25,20,IND,BUF,2,6,71,(10:20) (Run formation) A.Luck pass incomplete short right to D.Avery.,13,6,2012 -20121125_BUF@IND,3,25,14,IND,BUF,3,6,71,(10:14) (Shotgun) A.Luck pass short left to R.Wayne to IND 44 for 15 yards (G.Wilson).,13,6,2012 -20121125_BUF@IND,3,24,27,IND,BUF,1,10,56,(9:27) V.Ballard left end to IND 37 for -7 yards (N.Barnett).,13,6,2012 -20121125_BUF@IND,3,23,44,IND,BUF,2,17,63,(8:44) (Shotgun) A.Luck pass short right to L.Brazill to IND 48 for 11 yards (G.Wilson).,13,6,2012 -20121125_BUF@IND,3,23,4,IND,BUF,3,6,52,(8:04) (Shotgun) A.Luck pass short middle to D.Avery to BUF 42 for 10 yards (S.Gilmore). FUMBLES (S.Gilmore) recovered by IND-D.Allen at BUF 39. D.Allen to BUF 39 for no gain (B.Scott).,13,6,2012 -20121125_BUF@IND,3,23,4,IND,BUF,1,10,39,(8:04) PENALTY on BUF-K.Moore Neutral Zone Infraction 5 yards enforced at BUF 39 - No Play.,13,6,2012 -20121125_BUF@IND,3,21,58,IND,BUF,1,5,34,(6:58) (Run formation) B.Sowell reported in as eligible. V.Ballard left tackle to BUF 25 for 9 yards (N.Barnett).,13,6,2012 -20121125_BUF@IND,3,21,16,IND,BUF,1,10,25,(6:16) (Run formation) A.Luck pass incomplete short middle to R.Wayne (S.Gilmore) [M.Williams].,13,6,2012 -20121125_BUF@IND,3,21,9,IND,BUF,2,10,25,(6:09) (Run formation) A.Luck sacked at BUF 32 for -7 yards (M.Dareus). Penalty on IND-S.Satele Offensive Holding declined.,13,6,2012 -20121125_BUF@IND,3,20,41,IND,BUF,3,17,32,(5:41) (Shotgun) A.Luck pass deep left to R.Wayne to BUF 7 for 25 yards (B.Scott; J.Byrd) [K.Moore].,13,6,2012 -20121125_BUF@IND,3,19,55,IND,BUF,1,7,7,(4:55) A.Luck pass incomplete short left to R.Wayne.,13,6,2012 -20121125_BUF@IND,3,19,49,IND,BUF,2,7,7,(4:49) (Run formation) V.Ballard right end to BUF 8 for -1 yards (S.Gilmore).,13,6,2012 -20121125_BUF@IND,3,19,8,IND,BUF,3,8,8,(4:08) (Shotgun) A.Luck pass short middle to T.Hilton for 8 yards TOUCHDOWN.,13,6,2012 -20121125_BUF@IND,3,19,8,IND,BUF,,,8,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,13,6,2012 -20121125_BUF@IND,3,19,8,IND,BUF,,,8,P.McAfee kicks 74 yards from IND 35 to BUF -9. B.Smith Touchback.,20,6,2012 -20121125_BUF@IND,3,19,2,BUF,IND,1,10,80,(4:02) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Jones.,6,20,2012 -20121125_BUF@IND,3,18,57,BUF,IND,2,10,80,(3:57) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,6,20,2012 -20121125_BUF@IND,3,18,53,BUF,IND,3,10,80,(3:53) (Shotgun) R.Fitzpatrick pass short left to F.Jackson pushed ob at BUF 28 for 8 yards (J.Freeman).,6,20,2012 -20121125_BUF@IND,3,18,30,BUF,IND,4,2,72,(3:30) S.Powell punts 57 yards to IND 15 Center-G.Sanborn. T.Hilton pushed ob at IND 25 for 10 yards (G.Wilson). PENALTY on IND-C.Vaughn Offensive Holding 10 yards enforced at IND 22.,6,20,2012 -20121125_BUF@IND,3,18,17,IND,BUF,1,10,88,(3:17) (Run formation) B.Sowell reported in as eligible. D.Brown up the middle to IND 13 for 1 yard (M.Dareus).,20,6,2012 -20121125_BUF@IND,3,17,40,IND,BUF,2,9,87,(2:40) (Run formation) D.Brown left tackle to IND 17 for 4 yards (J.Byrd).,20,6,2012 -20121125_BUF@IND,3,16,57,IND,BUF,3,5,83,(1:57) (Shotgun) A.Luck sacked at IND 17 for 0 yards (M.Williams).,20,6,2012 -20121125_BUF@IND,3,16,21,IND,BUF,4,5,83,(1:21) P.McAfee punts 59 yards to BUF 24 Center-M.Overton. L.McKelvin to BUF 46 for 22 yards (J.Hughes). PENALTY on BUF-R.Brooks Illegal Block Above the Waist 10 yards enforced at BUF 32.,20,6,2012 -20121125_BUF@IND,3,16,6,BUF,IND,1,10,78,(1:06) (Run formation) C.Spiller up the middle pushed ob at IND 37 for 41 yards (A.Bethea).,6,20,2012 -20121125_BUF@IND,3,15,37,BUF,IND,1,10,37,(:37) (Run formation) C.Spiller up the middle to IND 31 for 6 yards (K.Conner).,6,20,2012 -20121125_BUF@IND,4,15,0,BUF,IND,2,4,31,(15:00) (Shotgun) C.Spiller left end pushed ob at IND 29 for 2 yards (M.Fokou).,6,20,2012 -20121125_BUF@IND,4,14,15,BUF,IND,3,2,29,(14:15) (Run formation) R.Fitzpatrick pass short left to St.Johnson to IND 15 for 14 yards (T.Zbikowski).,6,20,2012 -20121125_BUF@IND,4,13,33,BUF,IND,1,10,15,(13:33) (Run formation) C.Spiller right end to IND 13 for 2 yards (J.Freeman). BUF-C.McIntyre was injured during the play. He is Out.,6,20,2012 -20121125_BUF@IND,4,13,2,BUF,IND,2,8,13,(13:02) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to IND 1 for 12 yards (T.Zbikowski).,6,20,2012 -20121125_BUF@IND,4,12,17,BUF,IND,1,1,1,(12:17) (Run formation) S.Young and K.Williams reported in as eligible. F.Jackson up the middle to IND 1 for no gain (F.Moala; K.Conner).,6,20,2012 -20121125_BUF@IND,4,11,37,BUF,IND,2,1,1,(11:37) (Run formation) S.Young and K.Williams reported in as eligible. R.Fitzpatrick pass short middle to L.Smith for 1 yard TOUCHDOWN.,6,20,2012 -20121125_BUF@IND,4,11,37,BUF,IND,,,1,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,6,20,2012 -20121125_BUF@IND,4,11,37,BUF,IND,,,1,R.Lindell kicks 60 yards from BUF 35 to IND 5. J.Lefeged to IND 24 for 19 yards (K.Sheppard).,13,20,2012 -20121125_BUF@IND,4,11,23,IND,BUF,1,10,76,(11:23) (Shotgun) A.Luck scrambles up the middle to IND 25 for 1 yard (M.Dareus).,20,13,2012 -20121125_BUF@IND,4,10,44,IND,BUF,2,9,75,(10:44) (Shotgun) A.Luck pass short middle to T.Hilton to IND 32 for 7 yards (J.Rogers).,20,13,2012 -20121125_BUF@IND,4,10,4,IND,BUF,3,2,68,(10:04) (Shotgun) A.Luck sacked at IND 27 for -5 yards (M.Williams).,20,13,2012 -20121125_BUF@IND,4,9,39,IND,BUF,4,7,73,(9:39) P.McAfee punts 48 yards to BUF 25 Center-M.Overton out of bounds.,20,13,2012 -20121125_BUF@IND,4,9,31,BUF,IND,1,10,75,(9:31) (Run formation) R.Fitzpatrick pass short middle to S.Chandler to BUF 41 for 16 yards (A.Bethea).,13,20,2012 -20121125_BUF@IND,4,8,53,BUF,IND,1,10,59,(8:53) R.Fitzpatrick pass short right to D.Jones to BUF 43 for 2 yards (J.Gordy).,13,20,2012 -20121125_BUF@IND,4,8,13,BUF,IND,2,8,57,(8:13) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 49 for 6 yards (J.Freeman).,13,20,2012 -20121125_BUF@IND,4,7,33,BUF,IND,3,2,51,(7:33) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to IND 43 for 8 yards (C.Vaughn).,13,20,2012 -20121125_BUF@IND,4,6,52,BUF,IND,1,10,43,(6:52) (Shotgun) F.Jackson left tackle to IND 36 for 7 yards (J.Freeman; M.Tevaseu).,13,20,2012 -20121125_BUF@IND,4,6,11,BUF,IND,2,3,36,(6:11) (Run formation) F.Jackson right guard to IND 32 for 4 yards (M.Tevaseu; J.Hughes).,13,20,2012 -20121125_BUF@IND,4,5,27,BUF,IND,1,10,32,(5:27) (Shotgun) R.Fitzpatrick pass short left to D.Jones to IND 36 for -4 yards (T.Zbikowski; J.Freeman).,13,20,2012 -20121125_BUF@IND,4,4,43,BUF,IND,2,14,36,(4:43) (Shotgun) R.Fitzpatrick pass short left intended for St.Johnson INTERCEPTED by T.Zbikowski at IND 24. T.Zbikowski to IND 44 for 20 yards (St.Johnson). FUMBLES (St.Johnson) RECOVERED by BUF-St.Johnson at BUF 47. St.Johnson to BUF 47 for no gain (T.Zbikowski). IND-F.Moala was injured during the play. His return is Questionable.,13,20,2012 -20121125_BUF@IND,4,4,31,BUF,IND,1,10,53,(4:31) R.Fitzpatrick scrambles left end ran ob at IND 47 for 6 yards.,13,20,2012 -20121125_BUF@IND,4,4,24,BUF,IND,2,4,47,(4:24) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 49 for -4 yards (J.Freeman).,13,20,2012 -20121125_BUF@IND,4,3,37,BUF,IND,3,8,51,(3:37) (Shotgun) R.Fitzpatrick pass incomplete short left to C.Spiller (C.Vaughn).,13,20,2012 -20121125_BUF@IND,4,3,32,BUF,IND,4,8,51,(3:32) S.Powell punts 46 yards to IND 5 Center-G.Sanborn downed by BUF-R.Martin.,13,20,2012 -20121125_BUF@IND,4,3,22,IND,BUF,1,10,95,(3:22) (Run formation) A.Luck pass incomplete short right to R.Wayne (N.Barnett).,20,13,2012 -20121125_BUF@IND,4,3,17,IND,BUF,2,10,95,(3:17) (Run formation) D.Brown left tackle to IND 16 for 11 yards (N.Bradham; D.Searcy).,20,13,2012 -20121125_BUF@IND,4,2,32,IND,BUF,1,10,84,(2:32) (Run formation) D.Brown up the middle to IND 17 for 1 yard (N.Bradham; D.Searcy).,20,13,2012 -20121125_BUF@IND,4,2,27,IND,BUF,2,9,83,(2:27) (Run formation) A.Luck pass short middle to R.Wayne to IND 31 for 14 yards (L.McKelvin).,20,13,2012 -20121125_BUF@IND,4,2,0,IND,BUF,1,10,69,(2:00) D.Brown left end to IND 30 for -1 yards (J.Rogers; D.Searcy).,20,13,2012 -20121125_BUF@IND,4,1,55,IND,BUF,2,11,70,(1:55) D.Brown up the middle to IND 31 for 1 yard (K.Williams; N.Bradham).,20,13,2012 -20121125_BUF@IND,4,1,48,IND,BUF,3,10,69,(1:48) (Shotgun) A.Luck pass incomplete short left to R.Wayne (S.Gilmore). PENALTY on BUF-S.Gilmore Defensive Pass Interference 8 yards enforced at IND 31 - No Play.,20,13,2012 -20121125_BUF@IND,4,1,44,IND,BUF,1,10,61,(1:44) A.Luck kneels to IND 38 for -1 yards.,20,13,2012 -20121125_BUF@IND,4,1,3,IND,BUF,2,11,62,(1:03) A.Luck kneels to IND 37 for -1 yards.,20,13,2012 -20121125_BUF@IND,4,0,35,IND,BUF,3,12,63,(:35) A.Luck kneels to IND 36 for -1 yards.,20,13,2012 -20121125_BUF@IND,4,0,35,IND,BUF,,,63,                      ,20,13,2012 -20121125_TEN@JAC,1,0,0,TEN,JAC,,,63,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,0,0,2012 -20121125_TEN@JAC,1,60,0,JAC,TEN,1,10,80,(15:00) PENALTY on TEN-S.Marks Encroachment 5 yards enforced at JAX 20 - No Play.,0,0,2012 -20121125_TEN@JAC,1,60,0,JAC,TEN,1,5,75,(15:00) (Shotgun) C.Henne pass short left intended for C.Shorts INTERCEPTED by A.Verner (S.Marks) at JAX 28. A.Verner to JAX 28 for no gain (B.Meester).,0,0,2012 -20121125_TEN@JAC,1,59,55,TEN,JAC,1,10,28,(14:55) C.Johnson up the middle to JAX 24 for 4 yards (R.Allen).,0,0,2012 -20121125_TEN@JAC,1,59,22,TEN,JAC,2,6,24,(14:22) K.Wright left end to JAX 20 for 4 yards (J.Mincey).,0,0,2012 -20121125_TEN@JAC,1,58,40,TEN,JAC,3,2,20,(13:40) (Shotgun) J.Locker pass incomplete short right to N.Washington.,0,0,2012 -20121125_TEN@JAC,1,58,36,TEN,JAC,4,2,20,(13:36) R.Bironas 38 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121125_TEN@JAC,1,58,36,TEN,JAC,,,20,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,3,0,2012 -20121125_TEN@JAC,1,58,32,JAC,TEN,1,10,80,(13:32) J.Parmele left end to JAX 33 for 13 yards (Z.Brown). JAX-J.Parmele was injured during the play. His return is Questionable.,0,3,2012 -20121125_TEN@JAC,1,57,50,JAC,TEN,1,10,67,(12:50) C.Henne sacked at JAX 31 for -2 yards (Z.Brown).,0,3,2012 -20121125_TEN@JAC,1,57,14,JAC,TEN,2,12,69,(12:14) C.Henne pass short middle to M.Lewis to TEN 48 for 21 yards (J.Babineaux).,0,3,2012 -20121125_TEN@JAC,1,56,36,JAC,TEN,1,10,48,(11:36) C.Henne pass deep right to C.Shorts to TEN 25 for 23 yards (M.Griffin).,0,3,2012 -20121125_TEN@JAC,1,56,0,JAC,TEN,1,10,25,(11:00) R.Jennings right end to TEN 25 for no gain (J.McCourty). PENALTY on JAX-Z.Potter Illegal Motion 5 yards enforced at TEN 25 - No Play.,0,3,2012 -20121125_TEN@JAC,1,55,35,JAC,TEN,1,15,30,(10:35) (Shotgun) C.Henne pass short right to M.Lewis to TEN 25 for 5 yards (Z.Brown).,0,3,2012 -20121125_TEN@JAC,1,54,54,JAC,TEN,2,10,25,(9:54) C.Henne sacked at TEN 32 for -7 yards (A.Ayers).,0,3,2012 -20121125_TEN@JAC,1,54,17,JAC,TEN,3,17,32,(9:17) (Shotgun) C.Henne sacked at TEN 42 for -10 yards (J.Casey).,0,3,2012 -20121125_TEN@JAC,1,54,7,JAC,TEN,4,27,42,(9:07) B.Anger punts 31 yards to TEN 11 Center-J.Cain fair catch by D.Reynaud.,0,3,2012 -20121125_TEN@JAC,1,54,0,TEN,JAC,1,10,89,(9:00) C.Johnson up the middle to TEN 16 for 5 yards (P.Posluszny).,3,0,2012 -20121125_TEN@JAC,1,53,25,TEN,JAC,2,5,84,(8:25) C.Johnson up the middle to TEN 18 for 2 yards (R.Allen).,3,0,2012 -20121125_TEN@JAC,1,52,45,TEN,JAC,3,3,82,(7:45) (Shotgun) J.Locker pass incomplete short left to K.Britt (D.Cox).,3,0,2012 -20121125_TEN@JAC,1,52,40,TEN,JAC,4,3,82,(7:40) B.Kern punts 57 yards to JAX 25 Center-B.Brinkley out of bounds.,3,0,2012 -20121125_TEN@JAC,1,52,31,JAC,TEN,1,10,75,(7:31) R.Jennings left end to JAX 34 for 9 yards (J.Babineaux).,0,3,2012 -20121125_TEN@JAC,1,52,31,JAC,TEN,2,1,66,(7:31) R.Jennings right end to JAX 34 for no gain (S.Marks).,0,3,2012 -20121125_TEN@JAC,1,52,31,JAC,TEN,3,1,66,(7:31) C.Henne up the middle to JAX 35 for 1 yard (Z.Brown).,0,3,2012 -20121125_TEN@JAC,1,52,31,JAC,TEN,1,10,65,(7:31) R.Jennings left end to JAX 35 for no gain (S.Marks).,0,3,2012 -20121125_TEN@JAC,1,52,31,JAC,TEN,2,10,65,(7:31) C.Henne pass short left to J.Blackmon to TEN 44 for 21 yards (A.Verner).,0,3,2012 -20121125_TEN@JAC,1,49,16,JAC,TEN,1,10,44,(4:16) C.Henne pass short left to W.Ta'ufo'ou to TEN 39 for 5 yards (A.Ayers).,0,3,2012 -20121125_TEN@JAC,1,48,39,JAC,TEN,2,5,39,(3:39) R.Jennings up the middle to TEN 35 for 4 yards (M.Martin).,0,3,2012 -20121125_TEN@JAC,1,47,53,JAC,TEN,3,1,35,(2:53) R.Jennings left end to TEN 33 for 2 yards (J.Babineaux).,0,3,2012 -20121125_TEN@JAC,1,47,19,JAC,TEN,1,10,33,(2:19) C.Henne pass short left to M.Lewis to TEN 10 for 23 yards (M.Griffin).,0,3,2012 -20121125_TEN@JAC,1,46,30,JAC,TEN,1,10,10,(1:30) R.Jennings up the middle to TEN 2 for 8 yards (J.Babineaux).,0,3,2012 -20121125_TEN@JAC,1,45,54,JAC,TEN,2,2,2,(:54) R.Jennings up the middle to TEN 1 for 1 yard (A.Ayers).,0,3,2012 -20121125_TEN@JAC,1,45,16,JAC,TEN,3,1,1,(:16) R.Jennings up the middle for 1 yard TOUCHDOWN.,0,3,2012 -20121125_TEN@JAC,1,45,16,JAC,TEN,,,1,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,3,2012 -20121125_TEN@JAC,1,45,16,JAC,TEN,,,1,J.Scobee kicks 65 yards from JAX 35 to TEN 0. D.Reynaud to TEN 18 for 18 yards (K.Bosworth).,7,3,2012 -20121125_TEN@JAC,1,45,5,TEN,JAC,1,10,82,(:05) J.Locker scrambles right end to TEN 23 for 5 yards (R.Allen).,3,7,2012 -20121125_TEN@JAC,2,45,0,TEN,JAC,2,5,77,(15:00) C.Johnson up the middle to TEN 27 for 4 yards (P.Posluszny).,3,7,2012 -20121125_TEN@JAC,2,44,22,TEN,JAC,3,1,73,(14:22) C.Johnson left end to TEN 33 for 6 yards (D.Landry).,3,7,2012 -20121125_TEN@JAC,2,43,46,TEN,JAC,1,10,67,(13:46) (Shotgun) J.Locker pass incomplete deep middle to K.Wright (M.Harris).,3,7,2012 -20121125_TEN@JAC,2,43,41,TEN,JAC,2,10,67,(13:41) J.Locker pass short right to J.Cook to TEN 32 for -1 yards (A.Ross).,3,7,2012 -20121125_TEN@JAC,2,42,56,TEN,JAC,3,11,68,(12:56) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 46 for 14 yards (M.Harris).,3,7,2012 -20121125_TEN@JAC,2,42,12,TEN,JAC,1,10,54,(12:12) D.Reynaud right end to TEN 48 for 2 yards (A.Lane; A.Ross).,3,7,2012 -20121125_TEN@JAC,2,41,37,TEN,JAC,2,8,52,(11:37) J.Locker pass deep left to N.Washington to JAX 31 for 21 yards (D.Cox).,3,7,2012 -20121125_TEN@JAC,2,40,57,TEN,JAC,1,10,31,(10:57) C.Johnson up the middle to JAX 27 for 4 yards (C.Mosley).,3,7,2012 -20121125_TEN@JAC,2,40,14,TEN,JAC,2,6,27,(10:14) J.Locker scrambles left end to JAX 24 for 3 yards (P.Posluszny).,3,7,2012 -20121125_TEN@JAC,2,39,39,TEN,JAC,3,3,24,(9:39) (Shotgun) J.Locker pass short right to N.Washington pushed ob at JAX 21 for 3 yards (M.Harris). Play Challenged by JAX and REVERSED. (Shotgun) J.Locker pass incomplete short right to N.Washington.,3,7,2012 -20121125_TEN@JAC,2,39,34,TEN,JAC,4,3,24,(9:34) R.Bironas 42 yard field goal is No Good Wide Left Center-B.Brinkley Holder-B.Kern.,3,7,2012 -20121125_TEN@JAC,2,39,31,JAC,TEN,1,10,68,(9:31) J.Blackmon left end to JAX 44 for 12 yards (C.McCarthy).,7,3,2012 -20121125_TEN@JAC,2,39,1,JAC,TEN,1,10,56,(9:01) R.Jennings up the middle to JAX 45 for 1 yard (A.Ayers).,7,3,2012 -20121125_TEN@JAC,2,38,22,JAC,TEN,2,9,55,(8:22) R.Jennings right guard to TEN 49 for 6 yards (C.Sensabaugh). PENALTY on JAX-U.Nwaneri Offensive Holding 10 yards enforced at JAX 45 - No Play.,7,3,2012 -20121125_TEN@JAC,2,37,58,JAC,TEN,2,19,65,(7:58) (Shotgun) C.Henne sacked at JAX 33 for -2 yards (K.Wimbley).,7,3,2012 -20121125_TEN@JAC,2,37,24,JAC,TEN,3,21,67,(7:24) (Shotgun) C.Henne pass short left to R.Jennings to JAX 35 for 2 yards (D.Morgan). JAX-D.Cox was injured during the play. He is Out.,7,3,2012 -20121125_TEN@JAC,2,36,51,JAC,TEN,4,19,65,(6:51) B.Anger punts 62 yards to TEN 3 Center-J.Cain downed by JAX-A.Blake.,7,3,2012 -20121125_TEN@JAC,2,36,40,TEN,JAC,1,10,97,(6:40) C.Johnson up the middle to TEN 5 for 2 yards (J.Stanford).,3,7,2012 -20121125_TEN@JAC,2,35,58,TEN,JAC,2,8,95,(5:58) C.Johnson right end to TEN 1 for -4 yards (T.Knighton).,3,7,2012 -20121125_TEN@JAC,2,35,15,TEN,JAC,3,12,99,(5:15) J.Locker pass short right to C.Stevens to TEN 13 for 12 yards (R.Allen; A.Ross).,3,7,2012 -20121125_TEN@JAC,2,34,47,TEN,JAC,1,10,87,(4:47) C.Johnson up the middle to TEN 16 for 3 yards (P.Posluszny).,3,7,2012 -20121125_TEN@JAC,2,34,5,TEN,JAC,2,7,84,(4:05) J.Locker pass incomplete short middle to J.Cook.,3,7,2012 -20121125_TEN@JAC,2,33,59,TEN,JAC,3,7,84,(3:59) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 38 for 22 yards (D.Lowery).,3,7,2012 -20121125_TEN@JAC,2,33,9,TEN,JAC,1,10,62,(3:09) J.Locker scrambles up the middle to TEN 42 for 4 yards (P.Posluszny).,3,7,2012 -20121125_TEN@JAC,2,32,30,TEN,JAC,2,6,58,(2:30) D.Reynaud left end pushed ob at TEN 45 for 3 yards (D.Cox).,3,7,2012 -20121125_TEN@JAC,2,32,0,TEN,JAC,3,3,55,(2:00) (Shotgun) J.Locker pass incomplete short left to K.Wright.,3,7,2012 -20121125_TEN@JAC,2,31,54,TEN,JAC,4,3,55,(1:54) B.Kern punts 36 yards to JAX 19 Center-B.Brinkley downed by TEN-P.Bailey.,3,7,2012 -20121125_TEN@JAC,2,31,47,JAC,TEN,1,10,81,(1:47) (Shotgun) C.Henne pass short left to J.Blackmon to JAX 24 for 5 yards (R.Mouton).,7,3,2012 -20121125_TEN@JAC,2,31,24,JAC,TEN,2,5,76,(1:24) (No Huddle Shotgun) C.Henne pass deep right to J.Shipley to JAX 48 for 24 yards (C.Sensabaugh) [D.Morgan]. Penalty on TEN-C.Sensabaugh Defensive Pass Interference declined.,7,3,2012 -20121125_TEN@JAC,2,31,19,JAC,TEN,1,10,52,(1:19) (No Huddle Shotgun) C.Henne pass short middle to J.Parmele to TEN 45 for 7 yards (R.Mouton).,7,3,2012 -20121125_TEN@JAC,2,31,1,JAC,TEN,2,3,45,(1:01) (No Huddle Shotgun) C.Henne pass incomplete deep left to K.Elliott [D.Morgan].,7,3,2012 -20121125_TEN@JAC,2,30,56,JAC,TEN,3,3,45,(:56) (Shotgun) C.Henne pass incomplete deep left to K.Elliott.,7,3,2012 -20121125_TEN@JAC,2,30,52,JAC,TEN,4,3,45,(:52) (Shotgun) C.Henne pass incomplete deep middle to J.Blackmon [S.Solomon].,7,3,2012 -20121125_TEN@JAC,2,30,47,TEN,JAC,1,10,55,(:47) (Shotgun) J.Locker pass short left to K.Britt to JAX 43 for 12 yards (A.Ross).,3,7,2012 -20121125_TEN@JAC,2,30,41,TEN,JAC,1,10,43,(:41) (Shotgun) J.Locker pass short right to J.Cook to JAX 28 for 15 yards (D.Lowery).,3,7,2012 -20121125_TEN@JAC,2,30,32,TEN,JAC,1,10,28,(:32) (Shotgun) J.Locker pass incomplete short middle to C.Johnson [R.Allen].,3,7,2012 -20121125_TEN@JAC,2,30,26,TEN,JAC,2,10,28,(:26) (Shotgun) J.Locker pass short right to J.Cook to JAX 22 for 6 yards (D.Landry).,3,7,2012 -20121125_TEN@JAC,2,30,20,TEN,JAC,3,4,22,(:20) (Shotgun) J.Locker pass incomplete deep left to D.Reynaud.,3,7,2012 -20121125_TEN@JAC,2,30,15,TEN,JAC,4,4,22,(:15) R.Bironas 40 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,3,7,2012 -20121125_TEN@JAC,2,30,15,TEN,JAC,,,22,R.Bironas kicks 68 yards from TEN 35 to JAX -3. M.Spurlock to JAX 21 for 24 yards (T.Shaw).,6,7,2012 -20121125_TEN@JAC,2,30,6,JAC,TEN,1,10,79,(:06) C.Henne kneels to JAX 20 for -1 yards.,7,6,2012 -20121125_TEN@JAC,3,30,0,JAC,TEN,,,79,J.Scobee kicks 69 yards from JAX 35 to TEN -4. D.Reynaud to TEN 14 for 18 yards (M.Owens).,7,6,2012 -20121125_TEN@JAC,3,29,56,TEN,JAC,1,10,86,(14:56) C.Johnson up the middle to TEN 16 for 2 yards (R.Allen).,6,7,2012 -20121125_TEN@JAC,3,29,22,TEN,JAC,2,8,84,(14:22) C.Johnson right guard to TEN 23 for 7 yards (P.Posluszny).,6,7,2012 -20121125_TEN@JAC,3,28,46,TEN,JAC,3,1,77,(13:46) C.Johnson left end to TEN 26 for 3 yards (D.Landry).,6,7,2012 -20121125_TEN@JAC,3,28,6,TEN,JAC,1,10,74,(13:06) J.Locker pass incomplete short middle to K.Britt.,6,7,2012 -20121125_TEN@JAC,3,28,1,TEN,JAC,2,10,74,(13:01) C.Johnson up the middle to TEN 29 for 3 yards (G.Selvie).,6,7,2012 -20121125_TEN@JAC,3,27,21,TEN,JAC,3,7,71,(12:21) (Shotgun) J.Locker sacked at TEN 18 for -11 yards (M.Harris).,6,7,2012 -20121125_TEN@JAC,3,26,47,TEN,JAC,4,18,82,(11:47) B.Kern punts 57 yards to JAX 25 Center-B.Brinkley out of bounds.,6,7,2012 -20121125_TEN@JAC,3,26,39,JAC,TEN,1,10,75,(11:39) J.Parmele right end to JAX 27 for 2 yards (Z.Brown; J.McCourty).,7,6,2012 -20121125_TEN@JAC,3,26,3,JAC,TEN,2,8,73,(11:03) (Shotgun) C.Henne pass short right to M.Lewis to JAX 34 for 7 yards (Z.Brown).,7,6,2012 -20121125_TEN@JAC,3,25,18,JAC,TEN,3,1,66,(10:18) J.Parmele up the middle to JAX 38 for 4 yards (J.McCourty).,7,6,2012 -20121125_TEN@JAC,3,24,39,JAC,TEN,1,10,62,(9:39) C.Henne pass incomplete short right to M.Lewis.,7,6,2012 -20121125_TEN@JAC,3,24,32,JAC,TEN,2,10,62,(9:32) R.Jennings up the middle to JAX 41 for 3 yards (J.Casey).,7,6,2012 -20121125_TEN@JAC,3,23,49,JAC,TEN,3,7,59,(8:49) (Shotgun) C.Henne pass deep right to C.Shorts for 59 yards TOUCHDOWN.,7,6,2012 -20121125_TEN@JAC,3,23,49,JAC,TEN,,,59,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,7,6,2012 -20121125_TEN@JAC,3,23,49,JAC,TEN,,,59,J.Scobee kicks 73 yards from JAX 35 to TEN -8. D.Reynaud to TEN 15 for 23 yards (Gr.Jones).,14,6,2012 -20121125_TEN@JAC,3,23,34,TEN,JAC,1,10,85,(8:34) PENALTY on TEN-M.Roos False Start 5 yards enforced at TEN 15 - No Play.,6,14,2012 -20121125_TEN@JAC,3,23,34,TEN,JAC,1,15,90,(8:34) J.Locker pass short left to K.Wright to TEN 11 for 1 yard (C.Prosinski).,6,14,2012 -20121125_TEN@JAC,3,22,56,TEN,JAC,2,14,89,(7:56) J.Locker pass incomplete deep right to N.Washington (R.Mathis).,6,14,2012 -20121125_TEN@JAC,3,22,49,TEN,JAC,3,14,89,(7:49) (Shotgun) J.Locker pass short middle to J.Cook to TEN 26 for 15 yards (D.Landry).,6,14,2012 -20121125_TEN@JAC,3,22,4,TEN,JAC,1,10,74,(7:04) C.Johnson left end pushed ob at TEN 33 for 7 yards (C.Prosinski). PENALTY on JAX-J.Stanford Illegal Use of Hands 5 yards enforced at TEN 33.,6,14,2012 -20121125_TEN@JAC,3,21,44,TEN,JAC,1,10,62,(6:44) C.Johnson right guard to TEN 45 for 7 yards (D.Landry).,6,14,2012 -20121125_TEN@JAC,3,21,2,TEN,JAC,2,3,55,(6:02) J.Locker pass deep left to D.Williams ran ob at JAX 28 for 27 yards.,6,14,2012 -20121125_TEN@JAC,3,20,39,TEN,JAC,1,10,28,(5:39) C.Johnson left end to JAX 29 for -1 yards (M.Harris).,6,14,2012 -20121125_TEN@JAC,3,20,1,TEN,JAC,2,11,29,(5:01) J.Locker scrambles right end ran ob at JAX 25 for 4 yards (D.Landry).,6,14,2012 -20121125_TEN@JAC,3,19,32,TEN,JAC,3,7,25,(4:32) (Shotgun) J.Locker pass incomplete short left to N.Washington. PENALTY on JAX-P.Posluszny Defensive Holding 5 yards enforced at JAX 25 - No Play.,6,14,2012 -20121125_TEN@JAC,3,19,26,TEN,JAC,1,10,20,(4:26) C.Johnson up the middle to JAX 21 for -1 yards (R.Allen).,6,14,2012 -20121125_TEN@JAC,3,18,42,TEN,JAC,2,11,21,(3:42) (Shotgun) J.Locker pass incomplete deep left to N.Washington (M.Harris).,6,14,2012 -20121125_TEN@JAC,3,18,34,TEN,JAC,3,11,21,(3:34) (Shotgun) J.Locker pass incomplete short left to D.Williams. JAX-A.Ross was injured during the play. His return is Questionable.,6,14,2012 -20121125_TEN@JAC,3,18,34,TEN,JAC,4,11,21,(3:34) R.Bironas 39 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,6,14,2012 -20121125_TEN@JAC,3,18,34,TEN,JAC,,,21,R.Bironas kicks 69 yards from TEN 35 to JAX -4. M.Spurlock Touchback.,9,14,2012 -20121125_TEN@JAC,3,18,26,JAC,TEN,1,10,80,(3:26) J.Parmele right end to JAX 24 for 4 yards (J.Casey).,14,9,2012 -20121125_TEN@JAC,3,17,49,JAC,TEN,2,6,76,(2:49) (No Huddle) J.Parmele up the middle to JAX 26 for 2 yards (Z.Brown).,14,9,2012 -20121125_TEN@JAC,3,17,8,JAC,TEN,3,4,74,(2:08) (Shotgun) C.Henne sacked at JAX 17 for -9 yards (Z.Brown).,14,9,2012 -20121125_TEN@JAC,3,17,4,JAC,TEN,4,13,83,(2:04) B.Anger punts 65 yards to TEN 18 Center-J.Cain. D.Reynaud to TEN 30 for 12 yards (J.Cain). PENALTY on TEN-T.Wilson Offensive Holding 9 yards enforced at TEN 18.,14,9,2012 -20121125_TEN@JAC,3,16,49,TEN,JAC,1,10,91,(1:49) C.Johnson up the middle to TEN 16 for 7 yards (M.Harris).,9,14,2012 -20121125_TEN@JAC,3,16,16,TEN,JAC,2,3,84,(1:16) C.Johnson right end to TEN 5 for -11 yards (R.Allen).,9,14,2012 -20121125_TEN@JAC,3,15,24,TEN,JAC,3,14,95,(:24) (Shotgun) PENALTY on TEN-J.Locker Delay of Game 3 yards enforced at TEN 5 - No Play.,9,14,2012 -20121125_TEN@JAC,3,15,24,TEN,JAC,3,17,98,(:24) (Shotgun) J.Locker pass short middle to J.Cook to TEN 6 for 4 yards (D.Landry).,9,14,2012 -20121125_TEN@JAC,4,15,0,TEN,JAC,4,13,94,(15:00) B.Kern punts 51 yards to JAX 43 Center-B.Brinkley. J.Shipley to JAX 48 for 5 yards (T.Thompson).,9,14,2012 -20121125_TEN@JAC,4,14,50,JAC,TEN,1,10,52,(14:50) J.Parmele left guard to TEN 36 for 16 yards (R.Johnson).,14,9,2012 -20121125_TEN@JAC,4,14,12,JAC,TEN,1,10,36,(14:12) J.Parmele up the middle to TEN 32 for 4 yards (Z.Brown).,14,9,2012 -20121125_TEN@JAC,4,13,35,JAC,TEN,2,6,32,(13:35) (Shotgun) C.Henne pass incomplete short left to M.Lewis (A.Verner).,14,9,2012 -20121125_TEN@JAC,4,13,31,JAC,TEN,3,6,32,(13:31) (Shotgun) C.Henne sacked at TEN 40 for -8 yards (M.Griffin).,14,9,2012 -20121125_TEN@JAC,4,13,3,JAC,TEN,4,14,40,(13:03) B.Anger punts 27 yards to TEN 13 Center-J.Cain fair catch by D.Reynaud.,14,9,2012 -20121125_TEN@JAC,4,12,56,TEN,JAC,1,10,87,(12:56) (Shotgun) J.Locker pass short right to N.Washington to TEN 19 for 6 yards (R.Allen).,9,14,2012 -20121125_TEN@JAC,4,12,28,TEN,JAC,2,4,81,(12:28) (Shotgun) J.Locker pass short right to K.Wright to TEN 29 for 10 yards (A.Lane).,9,14,2012 -20121125_TEN@JAC,4,12,4,TEN,JAC,1,10,71,(12:04) (No Huddle Shotgun) J.Locker pass short right to K.Wright pushed ob at JAX 48 for 23 yards (D.Lowery).,9,14,2012 -20121125_TEN@JAC,4,11,44,TEN,JAC,1,10,48,(11:44) (No Huddle Shotgun) J.Locker pass deep right to D.Williams to JAX 29 for 19 yards (D.Landry).,9,14,2012 -20121125_TEN@JAC,4,11,25,TEN,JAC,1,10,29,(11:25) (No Huddle Shotgun) J.Locker scrambles up the middle to JAX 24 for 5 yards (T.Alualu).,9,14,2012 -20121125_TEN@JAC,4,10,54,TEN,JAC,2,5,24,(10:54) (No Huddle Shotgun) J.Locker pass short left to J.Cook to JAX 15 for 9 yards (C.Prosinski).,9,14,2012 -20121125_TEN@JAC,4,10,28,TEN,JAC,1,10,15,(10:28) (No Huddle Shotgun) J.Locker pass incomplete short right to D.Williams. Tennessee challenged the pass completion ruling and the play was Upheld. (Timeout #1.),9,14,2012 -20121125_TEN@JAC,4,10,21,TEN,JAC,2,10,15,(10:21) (Shotgun) J.Locker pass incomplete short left to D.Reynaud (J.Chick).,9,14,2012 -20121125_TEN@JAC,4,10,17,TEN,JAC,3,10,15,(10:17) (Shotgun) J.Locker pass incomplete short right to K.Wright.,9,14,2012 -20121125_TEN@JAC,4,10,9,TEN,JAC,4,10,15,(10:09) R.Bironas 33 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,9,14,2012 -20121125_TEN@JAC,4,10,9,TEN,JAC,,,15,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,12,14,2012 -20121125_TEN@JAC,4,10,5,JAC,TEN,1,10,80,(10:05) C.Henne pass incomplete short right to M.Lewis. PENALTY on TEN-A.Ayers Defensive Pass Interference 5 yards enforced at JAX 20 - No Play.,14,12,2012 -20121125_TEN@JAC,4,9,59,JAC,TEN,1,10,75,(9:59) J.Parmele right end to JAX 25 for no gain (C.McCarthy). JAX-J.Parmele was injured during the play. His return is Questionable.,14,12,2012 -20121125_TEN@JAC,4,9,19,JAC,TEN,2,10,75,(9:19) (Shotgun) C.Henne pass short right to J.Blackmon to JAX 31 for 6 yards (J.McCourty).,14,12,2012 -20121125_TEN@JAC,4,8,43,JAC,TEN,3,4,69,(8:43) (Shotgun) C.Henne pass short right to C.Shorts to TEN 46 for 23 yards (C.Sensabaugh) [M.Griffin]. PENALTY on TEN-M.Griffin Roughing the Passer 15 yards enforced at TEN 46.,14,12,2012 -20121125_TEN@JAC,4,8,20,JAC,TEN,1,10,31,(8:20) R.Jennings up the middle to TEN 30 for 1 yard (D.Morgan).,14,12,2012 -20121125_TEN@JAC,4,7,41,JAC,TEN,2,9,30,(7:41) C.Henne pass incomplete deep left to C.Shorts [S.Marks].,14,12,2012 -20121125_TEN@JAC,4,7,41,JAC,TEN,3,9,30,(7:41) (Shotgun) C.Henne pass deep right to J.Blackmon to TEN 7 for 23 yards (C.Sensabaugh).,14,12,2012 -20121125_TEN@JAC,4,7,3,JAC,TEN,1,7,7,(7:03) (Shotgun) C.Henne pass incomplete short left to M.Spurlock.,14,12,2012 -20121125_TEN@JAC,4,6,57,JAC,TEN,2,7,7,(6:57) (Shotgun) C.Henne pass short middle to J.Blackmon for 7 yards TOUCHDOWN.,14,12,2012 -20121125_TEN@JAC,4,6,57,JAC,TEN,,,7,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,14,12,2012 -20121125_TEN@JAC,4,6,57,JAC,TEN,,,7,J.Scobee kicks 72 yards from JAX 35 to TEN -7. D.Reynaud to TEN 22 for 29 yards (K.Rutland).,21,12,2012 -20121125_TEN@JAC,4,6,44,TEN,JAC,1,10,78,(6:44) (Shotgun) J.Locker pass short left to N.Washington pushed ob at TEN 29 for 7 yards (M.Harris).,12,21,2012 -20121125_TEN@JAC,4,6,27,TEN,JAC,2,3,71,(6:27) (No Huddle Shotgun) J.Locker pass short right to K.Wright to TEN 34 for 5 yards (R.Mathis).,12,21,2012 -20121125_TEN@JAC,4,6,6,TEN,JAC,1,10,66,(6:06) (No Huddle Shotgun) J.Locker pass short middle to N.Washington to JAX 46 for 20 yards (C.Prosinski).,12,21,2012 -20121125_TEN@JAC,4,5,34,TEN,JAC,1,10,46,(5:34) (No Huddle Shotgun) J.Locker pass short right to K.Wright to JAX 37 for 9 yards (C.Prosinski).,12,21,2012 -20121125_TEN@JAC,4,5,6,TEN,JAC,2,1,37,(5:06) (No Huddle Shotgun) C.Johnson up the middle pushed ob at JAX 6 for 31 yards (D.Lowery).,12,21,2012 -20121125_TEN@JAC,4,4,57,TEN,JAC,1,6,6,(4:57) (Shotgun) J.Locker pass short left to K.Britt for 6 yards TOUCHDOWN.,12,21,2012 -20121125_TEN@JAC,4,4,57,TEN,JAC,,,6,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,12,21,2012 -20121125_TEN@JAC,4,4,57,TEN,JAC,,,6,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,19,21,2012 -20121125_TEN@JAC,4,4,52,JAC,TEN,1,10,80,(4:52) C.Henne pass incomplete short right to C.Shorts.,21,19,2012 -20121125_TEN@JAC,4,4,47,JAC,TEN,2,10,80,(4:47) C.Henne pass short right to C.Shorts to JAX 20 for no gain (J.McCourty).,21,19,2012 -20121125_TEN@JAC,4,4,7,JAC,TEN,3,10,80,(4:07) (Shotgun) C.Henne sacked at JAX 18 for -2 yards (K.Klug).,21,19,2012 -20121125_TEN@JAC,4,3,40,JAC,TEN,4,12,82,(3:40) (Punt formation) PENALTY on JAX-A.Blake False Start 5 yards enforced at JAX 18 - No Play.,21,19,2012 -20121125_TEN@JAC,4,3,40,JAC,TEN,4,17,87,(3:40) B.Anger punts 50 yards to TEN 37 Center-J.Cain downed by JAX-K.Elliott.,21,19,2012 -20121125_TEN@JAC,4,3,28,TEN,JAC,1,10,63,(3:28) C.Johnson up the middle to TEN 37 for no gain (J.Chick).,19,21,2012 -20121125_TEN@JAC,4,2,53,TEN,JAC,2,10,63,(2:53) (Shotgun) J.Locker pass deep middle intended for J.Cook INTERCEPTED by D.Lowery (R.Allen) at JAX 43. D.Lowery to TEN 36 for 21 yards (J.Locker).,19,21,2012 -20121125_TEN@JAC,4,2,40,JAC,TEN,1,10,36,(2:40) R.Jennings up the middle to TEN 30 for 6 yards (M.Griffin).,21,19,2012 -20121125_TEN@JAC,4,2,28,JAC,TEN,2,4,30,(2:28) R.Jennings up the middle to TEN 24 for 6 yards (M.Griffin).,21,19,2012 -20121125_TEN@JAC,4,2,22,JAC,TEN,1,10,24,(2:22) R.Jennings up the middle to TEN 24 for no gain (Z.Brown).,21,19,2012 -20121125_TEN@JAC,4,2,0,JAC,TEN,2,10,24,(2:00) R.Jennings up the middle to TEN 24 for no gain (J.Casey).,21,19,2012 -20121125_TEN@JAC,4,1,15,JAC,TEN,3,10,24,(1:15) (Shotgun) R.Jennings right end to TEN 23 for 1 yard (M.Griffin).,21,19,2012 -20121125_TEN@JAC,4,0,29,JAC,TEN,4,9,23,(:29) J.Scobee 41 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,21,19,2012 -20121125_TEN@JAC,4,0,29,JAC,TEN,,,23,J.Scobee kicks 72 yards from JAX 35 to TEN -7. J.McCourty to TEN 7 for 14 yards. Lateral to D.Williams to TEN 13 for 6 yards (A.Blake).,24,19,2012 -20121125_TEN@JAC,4,0,19,TEN,JAC,1,10,87,(:19) (Shotgun) J.Locker pass short left to K.Britt to TEN 20 for 7 yards. Lateral to J.Cook to TEN 19 for -1 yards. Handoff to C.Johnson to TEN 18 for -1 yards (P.Posluszny). FUMBLES (P.Posluszny) recovered by TEN-K.Britt at TEN 12. K.Britt to TEN 3 for -9 yards. Lateral to J.Locker ran ob at TEN 10 for 7 yards.,19,24,2012 -20121125_TEN@JAC,4,0,4,TEN,JAC,2,13,90,(:04) (Shotgun) J.Locker pass intended for N.Washington INTERCEPTED by M.Harris at JAX 42. M.Harris to JAX 42 for no gain (K.Wright).,19,24,2012 -20121125_TEN@JAC,4,0,4,TEN,JAC,,,90,                      ,19,24,2012 -20121125_DEN@KC,1,0,0,DEN,KC,,,90,M.Prater kicks 67 yards from DEN 35 to KC -2. S.Draughn to KC 29 for 31 yards (M.Willis).,0,0,2012 -20121125_DEN@KC,1,59,54,KC,DEN,1,10,71,(14:54) J.Charles right end to KC 35 for 6 yards (W.Woodyard).,0,0,2012 -20121125_DEN@KC,1,59,16,KC,DEN,2,4,65,(14:16) P.Hillis left end to KC 37 for 2 yards (E.Dumervil).,0,0,2012 -20121125_DEN@KC,1,58,39,KC,DEN,3,2,63,(13:39) S.Draughn up the middle to KC 44 for 7 yards (R.Moore).,0,0,2012 -20121125_DEN@KC,1,58,1,KC,DEN,1,10,56,(13:01) (Shotgun) B.Quinn pass short middle to D.McCluster to DEN 49 for 7 yards (R.Moore).,0,0,2012 -20121125_DEN@KC,1,57,29,KC,DEN,2,3,49,(12:29) J.Charles left tackle to DEN 45 for 4 yards (M.Adams).,0,0,2012 -20121125_DEN@KC,1,56,54,KC,DEN,1,10,45,(11:54) P.Hillis up the middle to DEN 42 for 3 yards (M.Adams). FUMBLES (M.Adams) RECOVERED by DEN-M.Adams at DEN 42. M.Adams to DEN 42 for no gain (J.Asamoah). The Replay Assistant challenged the fumble ruling and the play was REVERSED. P.Hillis up the middle to DEN 42 for 3 yards (M.Adams).,0,0,2012 -20121125_DEN@KC,1,56,31,KC,DEN,2,7,42,(11:31) D.McCluster right end to DEN 23 for 19 yards (J.Leonhard).,0,0,2012 -20121125_DEN@KC,1,55,54,KC,DEN,1,10,23,(10:54) J.Charles up the middle to DEN 22 for 1 yard (M.Adams).,0,0,2012 -20121125_DEN@KC,1,55,16,KC,DEN,2,9,22,(10:16) S.Draughn up the middle to DEN 16 for 6 yards (M.Adams).,0,0,2012 -20121125_DEN@KC,1,54,30,KC,DEN,3,3,16,(9:30) (Shotgun) Direct snap to P.Hillis. P.Hillis pass incomplete short left to B.Quinn.,0,0,2012 -20121125_DEN@KC,1,54,24,KC,DEN,4,3,16,(9:24) R.Succop 34 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,0,2012 -20121125_DEN@KC,1,54,24,KC,DEN,,,16,R.Succop kicks 69 yards from KC 35 to DEN -4. T.Holliday Touchback.,3,0,2012 -20121125_DEN@KC,1,54,20,DEN,KC,1,10,80,(9:20) K.Moreno up the middle to DEN 22 for 2 yards (D.Johnson).,0,3,2012 -20121125_DEN@KC,1,53,54,DEN,KC,2,8,78,(8:54) (No Huddle Shotgun) P.Manning pass short left to K.Moreno to DEN 18 for -4 yards (D.Johnson).,0,3,2012 -20121125_DEN@KC,1,53,17,DEN,KC,3,12,82,(8:17) (No Huddle Shotgun) P.Manning pass deep middle intended for B.Stokley INTERCEPTED by J.Arenas at DEN 46. J.Arenas to DEN 46 for no gain (B.Stokley). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (No Huddle Shotgun) P.Manning pass incomplete deep middle to B.Stokley (J.Arenas).,0,3,2012 -20121125_DEN@KC,1,53,9,DEN,KC,4,12,82,(8:09) B.Colquitt punts 39 yards to KC 43 Center-A.Brewer. J.Arenas to DEN 37 for 20 yards (M.Willis).,0,3,2012 -20121125_DEN@KC,1,52,56,KC,DEN,1,10,37,(7:56) B.Quinn pass incomplete deep right to J.Newsome (M.Adams) [R.Ayers].,3,0,2012 -20121125_DEN@KC,1,52,48,KC,DEN,2,10,37,(7:48) J.Charles right tackle to DEN 31 for 6 yards (M.Adams).,3,0,2012 -20121125_DEN@KC,1,52,8,KC,DEN,3,4,31,(7:08) B.Quinn pass short right to T.Moeaki pushed ob at DEN 12 for 19 yards (W.Woodyard).,3,0,2012 -20121125_DEN@KC,1,51,33,KC,DEN,1,10,12,(6:33) D.McCluster left end to DEN 8 for 4 yards (C.Bailey).,3,0,2012 -20121125_DEN@KC,1,50,59,KC,DEN,2,6,8,(5:59) J.Charles left guard to DEN 7 for 1 yard (M.Adams).,3,0,2012 -20121125_DEN@KC,1,50,15,KC,DEN,3,5,7,(5:15) P.Hillis pass short left to T.Copper to DEN 4 for 3 yards (C.Bailey).,3,0,2012 -20121125_DEN@KC,1,49,35,KC,DEN,4,2,4,(4:35) R.Succop 22 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,3,0,2012 -20121125_DEN@KC,1,49,35,KC,DEN,,,4,R.Succop kicks 68 yards from KC 35 to DEN -3. T.Holliday pushed ob at DEN 47 for 50 yards (R.Succop).,6,0,2012 -20121125_DEN@KC,1,49,22,DEN,KC,1,10,53,(4:22) (Shotgun) P.Manning sacked at DEN 39 for -8 yards (J.Houston).,0,6,2012 -20121125_DEN@KC,1,48,51,DEN,KC,2,18,61,(3:51) (No Huddle Shotgun) P.Manning pass short right to B.Stokley to DEN 44 for 5 yards (J.Arenas).,0,6,2012 -20121125_DEN@KC,1,48,12,DEN,KC,3,13,56,(3:12) (No Huddle Shotgun) P.Manning pass deep middle to E.Decker to KC 27 for 29 yards (J.Brown).,0,6,2012 -20121125_DEN@KC,1,47,30,DEN,KC,1,10,27,(2:30) (No Huddle Shotgun) P.Manning pass short left to B.Stokley to KC 19 for 8 yards (J.Arenas).,0,6,2012 -20121125_DEN@KC,1,47,1,DEN,KC,2,2,19,(2:01) K.Moreno up the middle to KC 12 for 7 yards (A.Elam). PENALTY on DEN-Z.Beadles Offensive Holding 10 yards enforced at KC 19 - No Play.,0,6,2012 -20121125_DEN@KC,1,46,33,DEN,KC,2,12,29,(1:33) P.Manning pass incomplete short left to E.Decker.,0,6,2012 -20121125_DEN@KC,1,46,26,DEN,KC,3,12,29,(1:26) (Shotgun) P.Manning pass incomplete short right to D.Thomas.,0,6,2012 -20121125_DEN@KC,1,46,22,DEN,KC,4,12,29,(1:22) M.Prater 47 yard field goal is No Good Wide Right Center-A.Brewer Holder-B.Colquitt.,0,6,2012 -20121125_DEN@KC,1,46,18,KC,DEN,1,10,62,(1:18) (Shotgun) PENALTY on KC-E.Winston False Start 5 yards enforced at KC 38 - No Play.,6,0,2012 -20121125_DEN@KC,1,46,18,KC,DEN,1,15,67,(1:18) J.Charles up the middle to KC 36 for 3 yards (J.Bannan).,6,0,2012 -20121125_DEN@KC,1,45,40,KC,DEN,2,12,64,(:40) (Shotgun) B.Quinn pass short left to D.McCluster to KC 43 for 7 yards (W.Woodyard).,6,0,2012 -20121125_DEN@KC,2,45,0,KC,DEN,3,5,57,(15:00) (Shotgun) B.Quinn sacked at KC 42 for -1 yards (V.Miller).,6,0,2012 -20121125_DEN@KC,2,44,27,KC,DEN,4,6,58,(14:27) D.Colquitt punts 58 yards to DEN 0 Center-T.Gafford. J.Leonhard Touchback.,6,0,2012 -20121125_DEN@KC,2,44,18,DEN,KC,1,10,80,(14:18) K.Moreno up the middle to DEN 24 for 4 yards (B.Flowers).,0,6,2012 -20121125_DEN@KC,2,43,45,DEN,KC,2,6,76,(13:45) P.Manning pass short right to K.Moreno ran ob at DEN 33 for 9 yards (A.Elam).,0,6,2012 -20121125_DEN@KC,2,43,10,DEN,KC,1,10,67,(13:10) (No Huddle) P.Manning pass short right to J.Tamme to DEN 40 for 7 yards (D.Johnson).,0,6,2012 -20121125_DEN@KC,2,42,35,DEN,KC,2,3,60,(12:35) (No Huddle Shotgun) P.Manning pass short right to K.Moreno to DEN 45 for 5 yards (A.Elam).,0,6,2012 -20121125_DEN@KC,2,42,0,DEN,KC,1,10,55,(12:00) P.Manning pass deep middle intended for E.Decker INTERCEPTED by B.Flowers at KC 12. B.Flowers to KC 10 for -2 yards. Lateral to A.Elam to KC 20 for 10 yards (E.Decker).,0,6,2012 -20121125_DEN@KC,2,41,44,KC,DEN,1,10,80,(11:44) B.Quinn pass short right to D.Bowe to KC 31 for 11 yards (C.Bailey).,6,0,2012 -20121125_DEN@KC,2,41,7,KC,DEN,1,10,69,(11:07) J.Charles left end pushed ob at KC 35 for 4 yards (M.Adams).,6,0,2012 -20121125_DEN@KC,2,41,7,KC,DEN,2,6,65,(11:07) PENALTY on KC-S.Maneri False Start 5 yards enforced at KC 35 - No Play.,6,0,2012 -20121125_DEN@KC,2,40,19,KC,DEN,2,11,70,(10:19) B.Quinn pass incomplete deep left to D.Bowe.,6,0,2012 -20121125_DEN@KC,2,40,13,KC,DEN,3,11,70,(10:13) (Shotgun) B.Quinn pass short left to T.Moeaki to DEN 49 for 21 yards (T.Carter) [M.Adams].,6,0,2012 -20121125_DEN@KC,2,39,50,KC,DEN,1,10,49,(9:50) J.Charles up the middle to DEN 49 for no gain (K.Vickerson).,6,0,2012 -20121125_DEN@KC,2,39,11,KC,DEN,2,10,49,(9:11) (Shotgun) B.Quinn pass short middle to D.McCluster to DEN 43 for 6 yards (W.Woodyard).,6,0,2012 -20121125_DEN@KC,2,38,34,KC,DEN,3,4,43,(8:34) (Shotgun) B.Quinn left tackle to DEN 34 for 9 yards (M.Adams). PENALTY on KC-J.Allen Offensive Holding 10 yards enforced at DEN 43 - No Play.,6,0,2012 -20121125_DEN@KC,2,38,5,KC,DEN,3,14,53,(8:05) (Shotgun) B.Quinn pass short left to D.Bowe to DEN 40 for 13 yards (C.Bailey).,6,0,2012 -20121125_DEN@KC,2,37,15,KC,DEN,4,1,40,(7:15) (Run formation) PENALTY on DEN-K.Vickerson Neutral Zone Infraction 5 yards enforced at DEN 40 - No Play.,6,0,2012 -20121125_DEN@KC,2,37,15,KC,DEN,1,10,35,(7:15) J.Charles up the middle to DEN 34 for 1 yard (D.Wolfe).,6,0,2012 -20121125_DEN@KC,2,36,39,KC,DEN,2,9,34,(6:39) (Shotgun) B.Quinn pass short left to D.McCluster to DEN 33 for 1 yard (C.Harris).,6,0,2012 -20121125_DEN@KC,2,35,56,KC,DEN,3,8,33,(5:56) (Shotgun) B.Quinn sacked at DEN 42 for -9 yards (W.Woodyard).,6,0,2012 -20121125_DEN@KC,2,35,23,KC,DEN,4,17,42,(5:23) D.Colquitt punts 37 yards to DEN 5 Center-T.Gafford fair catch by J.Leonhard.,6,0,2012 -20121125_DEN@KC,2,35,15,DEN,KC,1,10,94,(5:15) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 21 for 15 yards (B.Flowers).,0,6,2012 -20121125_DEN@KC,2,34,49,DEN,KC,1,10,79,(4:49) K.Moreno up the middle to DEN 31 for 10 yards (A.Elam).,0,6,2012 -20121125_DEN@KC,2,34,9,DEN,KC,1,10,69,(4:09) (No Huddle) P.Manning pass deep right to B.Stokley to KC 38 for 31 yards (K.Lewis) [J.Houston].,0,6,2012 -20121125_DEN@KC,2,33,30,DEN,KC,1,10,38,(3:30) (No Huddle) K.Moreno left tackle to KC 30 for 8 yards (T.Hali).,0,6,2012 -20121125_DEN@KC,2,32,52,DEN,KC,2,2,30,(2:52) (No Huddle) K.Moreno right tackle to KC 29 for 1 yard (J.Houston E.Berry).,0,6,2012 -20121125_DEN@KC,2,32,12,DEN,KC,3,1,29,(2:12) (No Huddle Shotgun) P.Manning pass short left to J.Dreessen to KC 28 for 1 yard (J.Arenas) [J.Houston].,0,6,2012 -20121125_DEN@KC,2,32,0,DEN,KC,1,10,28,(2:00) (Shotgun) P.Manning sacked at KC 32 for -4 yards (J.Houston).,0,6,2012 -20121125_DEN@KC,2,31,20,DEN,KC,2,14,32,(1:20) (Shotgun) P.Manning pass short middle to J.Tamme to KC 10 for 22 yards (K.Lewis).,0,6,2012 -20121125_DEN@KC,2,30,39,DEN,KC,1,10,10,(:39) K.Moreno right guard to KC 9 for 1 yard (D.Johnson).,0,6,2012 -20121125_DEN@KC,2,30,32,DEN,KC,2,9,9,(:32) (Shotgun) P.Manning pass short left to E.Decker to KC 7 for 2 yards (J.Arenas).,0,6,2012 -20121125_DEN@KC,2,30,23,DEN,KC,3,7,7,(:23) (Shotgun) P.Manning pass short middle to J.Tamme for 7 yards TOUCHDOWN [T.Jackson].,0,6,2012 -20121125_DEN@KC,2,30,23,DEN,KC,,,7,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,6,2012 -20121125_DEN@KC,2,30,23,DEN,KC,,,7,M.Prater kicks 73 yards from DEN 35 to KC -8. S.Draughn Touchback.,7,6,2012 -20121125_DEN@KC,2,30,14,KC,DEN,1,10,80,(:14) B.Quinn kneels to KC 19 for -1 yards.,6,7,2012 -20121125_DEN@KC,3,30,0,KC,DEN,,,80,R.Succop kicks 65 yards from KC 35 to DEN 0. T.Holliday pushed ob at DEN 42 for 42 yards (R.Succop).,6,7,2012 -20121125_DEN@KC,3,29,53,DEN,KC,1,10,58,(14:53) (Shotgun) P.Manning pass deep right to B.Stokley to KC 40 for 18 yards (K.Lewis).,7,6,2012 -20121125_DEN@KC,3,29,18,DEN,KC,1,10,40,(14:18) K.Moreno up the middle to KC 37 for 3 yards (T.Hali).,7,6,2012 -20121125_DEN@KC,3,28,44,DEN,KC,2,7,37,(13:44) (No Huddle) P.Manning pass short left to E.Decker ran ob at KC 21 for 16 yards (J.Brown).,7,6,2012 -20121125_DEN@KC,3,28,22,DEN,KC,1,10,21,(13:22) K.Moreno left guard to KC 17 for 4 yards (D.Poe).,7,6,2012 -20121125_DEN@KC,3,27,42,DEN,KC,2,6,17,(12:42) (No Huddle Shotgun) P.Manning pass short left to J.Dreessen to KC 15 for 2 yards (E.Berry).,7,6,2012 -20121125_DEN@KC,3,27,4,DEN,KC,3,4,15,(12:04) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,7,6,2012 -20121125_DEN@KC,3,27,1,DEN,KC,4,4,15,(12:01) M.Prater 33 yard field goal is No Good Hit Left Upright Center-A.Brewer Holder-B.Colquitt.,7,6,2012 -20121125_DEN@KC,3,26,57,KC,DEN,1,10,77,(11:57) J.Charles right tackle to KC 28 for 5 yards (K.Brooking).,6,7,2012 -20121125_DEN@KC,3,26,23,KC,DEN,2,5,72,(11:23) J.Charles left tackle to KC 39 for 11 yards (J.Bannan).,6,7,2012 -20121125_DEN@KC,3,25,46,KC,DEN,1,10,61,(10:46) B.Quinn pass short left to J.Newsome to KC 49 for 10 yards (T.Carter).,6,7,2012 -20121125_DEN@KC,3,25,13,KC,DEN,1,10,51,(10:13) J.Charles right tackle to DEN 40 for 11 yards (E.Dumervil).,6,7,2012 -20121125_DEN@KC,3,24,40,KC,DEN,1,10,40,(9:40) J.Charles up the middle to DEN 38 for 2 yards (J.Bannan).,6,7,2012 -20121125_DEN@KC,3,24,3,KC,DEN,2,8,38,(9:03) J.Charles left guard to DEN 37 for 1 yard (V.Miller).,6,7,2012 -20121125_DEN@KC,3,23,21,KC,DEN,3,7,37,(8:21) (Shotgun) B.Quinn pass short left to D.Bowe to DEN 31 for 6 yards (C.Bailey).,6,7,2012 -20121125_DEN@KC,3,22,40,KC,DEN,4,1,31,(7:40) R.Succop 49 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,6,7,2012 -20121125_DEN@KC,3,22,40,KC,DEN,,,31,R.Succop kicks 72 yards from KC 35 to DEN -7. T.Holliday Touchback.,9,7,2012 -20121125_DEN@KC,3,22,35,DEN,KC,1,10,80,(7:35) (Shotgun) P.Manning pass incomplete deep left to J.Tamme (E.Berry).,7,9,2012 -20121125_DEN@KC,3,22,30,DEN,KC,2,10,80,(7:30) K.Moreno right tackle to DEN 35 for 15 yards (K.Lewis). PENALTY on KC-T.Jackson Illegal Use of Hands 5 yards enforced at DEN 35.,7,9,2012 -20121125_DEN@KC,3,22,4,DEN,KC,1,10,60,(7:04) (Shotgun) R.Hillman left end pushed ob at 50 for 10 yards (K.Lewis).,7,9,2012 -20121125_DEN@KC,3,21,30,DEN,KC,1,10,50,(6:30) P.Manning up the middle to KC 49 for 1 yard (T.Jackson).,7,9,2012 -20121125_DEN@KC,3,21,6,DEN,KC,2,9,49,(6:06) K.Moreno up the middle to KC 42 for 7 yards (A.Elam).,7,9,2012 -20121125_DEN@KC,3,20,24,DEN,KC,3,2,42,(5:24) (Shotgun) P.Manning pass short middle to J.Tamme to KC 30 for 12 yards (J.Brown). KC-K.Lewis was injured during the play. His return is Questionable. Injury to K.Lewis to right shoulder.,7,9,2012 -20121125_DEN@KC,3,19,46,DEN,KC,1,10,30,(4:46) (Shotgun) P.Manning pass deep left to D.Thomas for 30 yards TOUCHDOWN.,7,9,2012 -20121125_DEN@KC,3,19,46,DEN,KC,,,30,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,9,2012 -20121125_DEN@KC,3,19,46,DEN,KC,,,30,M.Prater kicks 66 yards from DEN 35 to KC -1. S.Draughn to KC 21 for 22 yards (D.Trevathan).,14,9,2012 -20121125_DEN@KC,3,19,35,KC,DEN,1,10,79,(4:35) J.Charles right tackle to KC 23 for 2 yards (J.Bannan).,9,14,2012 -20121125_DEN@KC,3,18,56,KC,DEN,2,8,77,(3:56) B.Quinn pass short left to D.Bowe pushed ob at KC 34 for 11 yards (C.Bailey). PENALTY on KC-D.Stephenson Clipping 15 yards enforced at KC 34.,9,14,2012 -20121125_DEN@KC,3,18,21,KC,DEN,2,12,81,(3:21) (Shotgun) B.Quinn pass short middle to T.Copper to KC 30 for 11 yards (C.Harris; W.Woodyard).,9,14,2012 -20121125_DEN@KC,3,17,41,KC,DEN,3,1,70,(2:41) PENALTY on KC-J.Charles False Start 5 yards enforced at KC 30 - No Play.,9,14,2012 -20121125_DEN@KC,3,17,41,KC,DEN,3,6,75,(2:41) (Shotgun) B.Quinn pass incomplete short right to J.Charles. PENALTY on DEN-W.Woodyard Personal Foul 15 yards enforced at KC 25 - No Play.,9,14,2012 -20121125_DEN@KC,3,17,38,KC,DEN,1,10,60,(2:38) J.Charles right guard to KC 45 for 5 yards (K.Vickerson).,9,14,2012 -20121125_DEN@KC,3,17,2,KC,DEN,2,5,55,(2:02) T.Copper left end to KC 46 for 1 yard (D.Wolfe).,9,14,2012 -20121125_DEN@KC,3,16,26,KC,DEN,3,4,54,(1:26) B.Quinn pass incomplete deep right to D.Bowe. Penalty on KC-J.Asamoah Offensive Holding declined.,9,14,2012 -20121125_DEN@KC,3,16,20,KC,DEN,4,4,54,(1:20) D.Colquitt punts 54 yards to end zone Center-T.Gafford Touchback.,9,14,2012 -20121125_DEN@KC,3,16,11,DEN,KC,1,10,80,(1:11) K.Moreno left end to DEN 18 for -2 yards (E.Berry).,14,9,2012 -20121125_DEN@KC,3,15,39,DEN,KC,2,12,82,(:39) (No Huddle Shotgun) P.Manning pass short middle to K.Moreno to DEN 34 for 16 yards (J.Arenas).,14,9,2012 -20121125_DEN@KC,4,15,0,DEN,KC,1,10,66,(15:00) (Shotgun) P.Manning pass incomplete short left to E.Decker.,14,9,2012 -20121125_DEN@KC,4,14,57,DEN,KC,2,10,66,(14:57) (No Huddle Shotgun) P.Manning pass incomplete short left to E.Decker.,14,9,2012 -20121125_DEN@KC,4,14,52,DEN,KC,3,10,66,(14:52) (Shotgun) P.Manning pass deep left to E.Decker to KC 49 for 17 yards (B.Flowers).,14,9,2012 -20121125_DEN@KC,4,14,19,DEN,KC,1,10,49,(14:19) (No Huddle) R.Hillman right tackle to DEN 49 for -2 yards (D.Poe; T.Jackson).,14,9,2012 -20121125_DEN@KC,4,13,38,DEN,KC,2,12,51,(13:38) (Shotgun) P.Manning pass incomplete deep left to D.Thomas.,14,9,2012 -20121125_DEN@KC,4,13,33,DEN,KC,3,12,51,(13:33) (Shotgun) P.Manning pass incomplete short left to J.Tamme [D.Johnson].,14,9,2012 -20121125_DEN@KC,4,13,28,DEN,KC,4,12,51,(13:28) B.Colquitt punts 30 yards to KC 21 Center-A.Brewer fair catch by J.Arenas.,14,9,2012 -20121125_DEN@KC,4,13,19,KC,DEN,1,10,79,(13:19) J.Charles up the middle to KC 23 for 2 yards (D.Wolfe).,9,14,2012 -20121125_DEN@KC,4,12,40,KC,DEN,2,8,77,(12:40) J.Charles left end pushed ob at KC 38 for 15 yards (W.Woodyard).,9,14,2012 -20121125_DEN@KC,4,12,11,KC,DEN,1,10,62,(12:11) J.Charles right end to KC 38 for no gain (M.Unrein).,9,14,2012 -20121125_DEN@KC,4,11,28,KC,DEN,2,10,62,(11:28) (Shotgun) B.Quinn pass incomplete deep left to D.Bowe.,9,14,2012 -20121125_DEN@KC,4,11,22,KC,DEN,3,10,62,(11:22) B.Quinn pass incomplete deep right to J.Newsome [C.Harris].,9,14,2012 -20121125_DEN@KC,4,11,15,KC,DEN,4,10,62,(11:15) D.Colquitt punts 50 yards to DEN 12 Center-T.Gafford fair catch by T.Holliday.,9,14,2012 -20121125_DEN@KC,4,11,7,DEN,KC,1,10,88,(11:07) (Shotgun) P.Manning pass incomplete short middle to B.Stokley (J.Arenas).,14,9,2012 -20121125_DEN@KC,4,11,2,DEN,KC,2,10,88,(11:02) (No Huddle Shotgun) K.Moreno right tackle to DEN 14 for 2 yards (J.Houston).,14,9,2012 -20121125_DEN@KC,4,10,31,DEN,KC,3,8,86,(10:31) (No Huddle Shotgun) P.Manning pass incomplete short right to J.Tamme (E.Berry).,14,9,2012 -20121125_DEN@KC,4,10,26,DEN,KC,4,8,86,(10:26) B.Colquitt punts 49 yards to KC 37 Center-A.Brewer out of bounds.,14,9,2012 -20121125_DEN@KC,4,10,18,KC,DEN,1,10,63,(10:18) J.Charles left end to KC 46 for 9 yards (W.Woodyard).,9,14,2012 -20121125_DEN@KC,4,9,39,KC,DEN,2,1,54,(9:39) J.Charles left guard to DEN 42 for 12 yards (R.Moore).,9,14,2012 -20121125_DEN@KC,4,9,0,KC,DEN,1,10,42,(9:00) B.Quinn pass incomplete short left to D.Bowe (C.Bailey).,9,14,2012 -20121125_DEN@KC,4,8,55,KC,DEN,2,10,42,(8:55) J.Charles right end to DEN 45 for -3 yards (W.Woodyard).,9,14,2012 -20121125_DEN@KC,4,8,14,KC,DEN,3,13,45,(8:14) (Shotgun) B.Quinn pass incomplete short left to D.Bowe.,9,14,2012 -20121125_DEN@KC,4,8,10,KC,DEN,4,13,45,(8:10) D.Colquitt punts 43 yards to DEN 2 Center-T.Gafford downed by KC-N.Thorpe.,9,14,2012 -20121125_DEN@KC,4,8,0,DEN,KC,1,10,98,(8:00) P.Manning pass incomplete short left to D.Thomas.,14,9,2012 -20121125_DEN@KC,4,7,58,DEN,KC,2,10,98,(7:58) (Shotgun) P.Manning pass incomplete short middle to J.Dreessen.,14,9,2012 -20121125_DEN@KC,4,7,53,DEN,KC,3,10,98,(7:53) (No Huddle Shotgun) P.Manning pass incomplete deep middle to B.Stokley (D.Poe).,14,9,2012 -20121125_DEN@KC,4,7,49,DEN,KC,4,10,98,(7:49) B.Colquitt punts 51 yards to KC 47 Center-A.Brewer. J.Arenas to 50 for 3 yards (V.Green).,14,9,2012 -20121125_DEN@KC,4,7,39,KC,DEN,1,10,50,(7:39) B.Quinn pass incomplete short left to D.Bowe.,9,14,2012 -20121125_DEN@KC,4,7,34,KC,DEN,2,10,50,(7:34) J.Charles left tackle to DEN 41 for 9 yards (M.Adams). FUMBLES (M.Adams) recovered by KC-S.Maneri at DEN 41.,9,14,2012 -20121125_DEN@KC,4,6,57,KC,DEN,3,1,41,(6:57) (Run formation) PENALTY on KC-J.Asamoah False Start 5 yards enforced at DEN 41 - No Play.,9,14,2012 -20121125_DEN@KC,4,6,41,KC,DEN,3,6,46,(6:41) (Shotgun) B.Quinn pass incomplete deep right to D.Bowe. Penalty on KC-D.Stephenson Offensive Holding declined.,9,14,2012 -20121125_DEN@KC,4,6,35,KC,DEN,4,6,46,(6:35) D.Colquitt punts 30 yards to DEN 16 Center-T.Gafford fair catch by J.Leonhard.,9,14,2012 -20121125_DEN@KC,4,6,24,DEN,KC,1,10,84,(6:24) K.Moreno up the middle to DEN 21 for 5 yards (A.Elam).,14,9,2012 -20121125_DEN@KC,4,5,45,DEN,KC,2,5,79,(5:45) K.Moreno left guard to DEN 38 for 17 yards (T.Daniels).,14,9,2012 -20121125_DEN@KC,4,4,59,DEN,KC,1,10,62,(4:59) (No Huddle) K.Moreno up the middle to DEN 39 for 1 yard (E.Berry).,14,9,2012 -20121125_DEN@KC,4,4,17,DEN,KC,2,9,61,(4:17) K.Moreno up the middle to DEN 45 for 6 yards (T.Hali).,14,9,2012 -20121125_DEN@KC,4,3,35,DEN,KC,3,3,55,(3:35) (Shotgun) P.Manning pass short middle to D.Thomas to KC 45 for 10 yards (J.Brown).,14,9,2012 -20121125_DEN@KC,4,2,50,DEN,KC,1,10,45,(2:50) K.Moreno up the middle to KC 43 for 2 yards (D.Poe).,14,9,2012 -20121125_DEN@KC,4,2,4,DEN,KC,2,8,43,(2:04) R.Hillman right guard to KC 42 for 1 yard (B.Flowers).,14,9,2012 -20121125_DEN@KC,4,1,59,DEN,KC,3,7,42,(1:59) (Shotgun) P.Manning pass deep left to D.Thomas pushed ob at KC 15 for 27 yards (J.Brown).,14,9,2012 -20121125_DEN@KC,4,1,54,DEN,KC,1,10,15,(1:54) K.Moreno up the middle to KC 12 for 3 yards (T.Jackson).,14,9,2012 -20121125_DEN@KC,4,1,48,DEN,KC,2,7,12,(1:48) K.Moreno right guard to KC 15 for -3 yards (D.Poe).,14,9,2012 -20121125_DEN@KC,4,1,4,DEN,KC,3,10,15,(1:04) K.Moreno left guard to KC 16 for -1 yards (R.Pitoitua).,14,9,2012 -20121125_DEN@KC,4,0,18,DEN,KC,4,11,16,(:18) M.Prater 34 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,14,9,2012 -20121125_DEN@KC,4,0,18,DEN,KC,,,16,M.Prater kicks 46 yards from DEN 35 to KC 19. A.Toribio to KC 23 for 4 yards (S.Johnson).,17,9,2012 -20121125_DEN@KC,4,0,11,KC,DEN,1,10,77,(:11) (Shotgun) PENALTY on DEN-V.Miller Neutral Zone Infraction 5 yards enforced at KC 23 - No Play.,9,17,2012 -20121125_DEN@KC,4,0,11,KC,DEN,1,5,72,(:11) (Shotgun) B.Quinn pass incomplete short right to J.Baldwin (W.Woodyard).,9,17,2012 -20121125_DEN@KC,4,0,6,KC,DEN,2,5,72,(:06) (Shotgun) B.Quinn pass incomplete short right to T.Copper.,9,17,2012 -20121125_DEN@KC,4,0,1,KC,DEN,3,5,72,(:01) (Shotgun) B.Quinn pass deep left intended for D.Bowe INTERCEPTED by D.Bruton [E.Dumervil] at DEN 28. D.Bruton to DEN 26 for -2 yards (D.Bowe).,9,17,2012 -20121125_DEN@KC,4,0,1,KC,DEN,,,72,                      ,9,17,2012 -20121125_SEA@MIA,1,0,0,MIA,SEA,,,72,D.Carpenter kicks 73 yards from MIA 35 to SEA -8. L.Washington to SEA 16 for 24 yards (J.Trusnik).,0,0,2012 -20121125_SEA@MIA,1,60,0,SEA,MIA,1,10,84,(15:00) M.Lynch right guard to SEA 18 for 2 yards (P.Soliai).,0,0,2012 -20121125_SEA@MIA,1,59,21,SEA,MIA,2,8,82,(14:21) (Shotgun) R.Wilson pass incomplete short right to A.McCoy [J.Odrick].,0,0,2012 -20121125_SEA@MIA,1,59,11,SEA,MIA,3,8,82,(14:11) (Shotgun) PENALTY on SEA Illegal Substitution 5 yards enforced at SEA 18 - No Play.,0,0,2012 -20121125_SEA@MIA,1,59,11,SEA,MIA,3,17,77,(14:11) (Shotgun) R.Turbin left guard to SEA 23 for no gain (O.Vernon).,0,0,2012 -20121125_SEA@MIA,1,58,40,SEA,MIA,4,17,77,(13:40) (Punt formation) J.Ryan punts 43 yards to MIA 34 Center-C.Gresham out of bounds.,0,0,2012 -20121125_SEA@MIA,1,58,28,MIA,SEA,1,10,66,(13:28) R.Bush right tackle to MIA 36 for 2 yards (B.Mebane).,0,0,2012 -20121125_SEA@MIA,1,57,56,MIA,SEA,2,8,64,(12:56) R.Tannehill pass incomplete short right to B.Hartline.,0,0,2012 -20121125_SEA@MIA,1,57,42,MIA,SEA,3,8,64,(12:42) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 46 for 10 yards (E.Thomas; K.Wright).,0,0,2012 -20121125_SEA@MIA,1,57,3,MIA,SEA,1,10,54,(12:03) R.Bush right end to MIA 48 for 2 yards (L.Hill). PENALTY on SEA-B.Mebane Encroachment 5 yards enforced at MIA 46 - No Play.,0,0,2012 -20121125_SEA@MIA,1,56,37,MIA,SEA,1,5,49,(11:37) R.Bush left end to 50 for -1 yards (L.Hill).,0,0,2012 -20121125_SEA@MIA,1,56,17,MIA,SEA,2,6,50,(11:17) (Shotgun) R.Tannehill pass short right to R.Bush to MIA 45 for -5 yards (K.Chancellor).,0,0,2012 -20121125_SEA@MIA,1,55,24,MIA,SEA,3,11,55,(10:24) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,0,0,2012 -20121125_SEA@MIA,1,55,4,MIA,SEA,4,11,55,(10:04) (Punt formation) B.Fields punts 40 yards to SEA 15 Center-J.Denney. L.Washington to SEA 30 for 15 yards (K.Misi).,0,0,2012 -20121125_SEA@MIA,1,54,51,SEA,MIA,1,10,70,(9:51) R.Wilson pass short right to G.Tate to SEA 30 for no gain (K.Misi).,0,0,2012 -20121125_SEA@MIA,1,54,30,SEA,MIA,2,10,70,(9:30) S.Rice left end to SEA 33 for 3 yards (K.Burnett).,0,0,2012 -20121125_SEA@MIA,1,53,37,SEA,MIA,3,7,67,(8:37) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin.,0,0,2012 -20121125_SEA@MIA,1,53,31,SEA,MIA,4,7,67,(8:31) (Punt formation) J.Ryan punts 67 yards to end zone Center-C.Gresham Touchback. PENALTY on SEA-J.Lane Player Out of Bounds on Punt 5 yards enforced at SEA 33 - No Play.,0,0,2012 -20121125_SEA@MIA,1,53,21,SEA,MIA,4,12,72,(8:21) (Punt formation) J.Ryan punts 55 yards to MIA 17 Center-C.Gresham out of bounds.,0,0,2012 -20121125_SEA@MIA,1,53,12,MIA,SEA,1,10,82,(8:12) R.Tannehill pass deep right intended for D.Bess INTERCEPTED by B.Wagner at MIA 35. B.Wagner ran ob at MIA 25 for 10 yards (C.Clay). PENALTY on SEA-C.Clemons Illegal Block Above the Waist 10 yards enforced at MIA 25.,0,0,2012 -20121125_SEA@MIA,1,52,59,SEA,MIA,1,10,35,(7:59) PENALTY on SEA-E.Moore False Start 5 yards enforced at MIA 35 - No Play.,0,0,2012 -20121125_SEA@MIA,1,52,59,SEA,MIA,1,15,40,(7:59) M.Lynch left end to MIA 45 for -5 yards (J.Odrick).,0,0,2012 -20121125_SEA@MIA,1,52,24,SEA,MIA,2,20,45,(7:24) (Shotgun) R.Wilson pass short left to G.Tate to MIA 35 for 10 yards (K.Dansby).,0,0,2012 -20121125_SEA@MIA,1,51,33,SEA,MIA,3,10,35,(6:33) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin.,0,0,2012 -20121125_SEA@MIA,1,51,27,SEA,MIA,4,10,35,(6:27) (Punt formation) PENALTY on SEA-J.Ryan Delay of Game 5 yards enforced at MIA 35 - No Play.,0,0,2012 -20121125_SEA@MIA,1,51,25,SEA,MIA,4,15,40,(6:25) (Punt formation) J.Ryan punts 31 yards to MIA 9 Center-C.Gresham fair catch by D.Bess.,0,0,2012 -20121125_SEA@MIA,1,51,20,MIA,SEA,1,10,91,(6:20) R.Bush left end pushed ob at MIA 20 for 11 yards (E.Thomas).,0,0,2012 -20121125_SEA@MIA,1,50,56,MIA,SEA,1,10,80,(5:56) (No Huddle Shotgun) R.Tannehill sacked at MIA 13 for -7 yards (C.Clemons).,0,0,2012 -20121125_SEA@MIA,1,50,26,MIA,SEA,2,17,87,(5:26) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush (B.Wagner).,0,0,2012 -20121125_SEA@MIA,1,50,16,MIA,SEA,3,17,87,(5:16) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 25 for 12 yards (M.Trufant).,0,0,2012 -20121125_SEA@MIA,1,49,41,MIA,SEA,4,5,75,(4:41) (Punt formation) B.Fields punts 45 yards to SEA 30 Center-J.Denney. L.Washington to SEA 45 for 15 yards (J.Trusnik).,0,0,2012 -20121125_SEA@MIA,1,49,27,SEA,MIA,1,10,55,(4:27) M.Lynch right guard to SEA 45 for no gain (K.Burnett).,0,0,2012 -20121125_SEA@MIA,1,48,51,SEA,MIA,2,10,55,(3:51) M.Lynch left guard to SEA 47 for 2 yards (D.Shelby).,0,0,2012 -20121125_SEA@MIA,1,48,11,SEA,MIA,3,8,53,(3:11) (Shotgun) R.Wilson scrambles up the middle to MIA 48 for 5 yards (R.Jones).,0,0,2012 -20121125_SEA@MIA,1,47,32,SEA,MIA,4,3,48,(2:32) (Punt formation) J.Ryan punts 38 yards to MIA 10 Center-C.Gresham fair catch by D.Bess.,0,0,2012 -20121125_SEA@MIA,1,47,24,MIA,SEA,1,10,89,(2:24) D.Thomas right guard to MIA 31 for 20 yards (B.Wagner).,0,0,2012 -20121125_SEA@MIA,1,46,56,MIA,SEA,1,10,69,(1:56) R.Tannehill pass incomplete short right to J.Lane. PENALTY on MIA-M.Pouncey Offensive Holding 10 yards enforced at MIA 31 - No Play.,0,0,2012 -20121125_SEA@MIA,1,46,42,MIA,SEA,1,20,79,(1:42) D.Thomas right tackle to MIA 30 for 9 yards (B.Irvin; K.Wright).,0,0,2012 -20121125_SEA@MIA,1,46,5,MIA,SEA,2,11,70,(1:05) D.Thomas left guard to MIA 38 for 8 yards (B.Wagner).,0,0,2012 -20121125_SEA@MIA,1,45,18,MIA,SEA,3,3,62,(:18) (Shotgun) R.Tannehill pass short middle to D.Bess to MIA 40 for 2 yards (B.Wagner; B.Mebane).,0,0,2012 -20121125_SEA@MIA,2,45,0,MIA,SEA,4,1,60,(15:00) (Punt formation) B.Fields punts 42 yards to SEA 18 Center-J.Denney fair catch by L.Washington.,0,0,2012 -20121125_SEA@MIA,2,44,51,SEA,MIA,1,10,81,(14:51) R.Wilson scrambles up the middle to SEA 27 for 8 yards (K.Dansby).,0,0,2012 -20121125_SEA@MIA,2,44,11,SEA,MIA,2,2,73,(14:11) M.Lynch right tackle to SEA 29 for 2 yards (J.Odrick).,0,0,2012 -20121125_SEA@MIA,2,43,29,SEA,MIA,1,10,71,(13:29) R.Wilson pass incomplete deep right to G.Tate.,0,0,2012 -20121125_SEA@MIA,2,43,22,SEA,MIA,2,10,71,(13:22) (Shotgun) R.Wilson right tackle to SEA 27 for -2 yards (C.Wake).,0,0,2012 -20121125_SEA@MIA,2,42,56,SEA,MIA,3,12,73,(12:56) (Shotgun) R.Wilson pass deep left to S.Rice ran ob at MIA 47 for 26 yards.,0,0,2012 -20121125_SEA@MIA,2,42,16,SEA,MIA,1,10,47,(12:16) R.Wilson sacked at SEA 47 for -6 yards (sack split by T.McDaniel and P.Soliai).,0,0,2012 -20121125_SEA@MIA,2,41,38,SEA,MIA,2,16,53,(11:38) (Shotgun) R.Wilson pass short right to S.Rice to MIA 42 for 11 yards (S.Smith).,0,0,2012 -20121125_SEA@MIA,2,41,2,SEA,MIA,3,5,42,(11:02) (Shotgun) R.Wilson pass short right to Z.Miller to MIA 38 for 4 yards (K.Burnett).,0,0,2012 -20121125_SEA@MIA,2,40,10,SEA,MIA,4,1,38,(10:10) (Punt formation) J.Ryan punts 32 yards to MIA 6 Center-C.Gresham downed by SEA-J.Lane.,0,0,2012 -20121125_SEA@MIA,2,40,5,MIA,SEA,1,10,94,(10:05) D.Thomas right guard to MIA 12 for 6 yards (B.Wagner).,0,0,2012 -20121125_SEA@MIA,2,39,31,MIA,SEA,2,4,88,(9:31) R.Tannehill pass short right to C.Clay to MIA 20 for 8 yards (L.Hill).,0,0,2012 -20121125_SEA@MIA,2,38,45,MIA,SEA,1,10,80,(8:45) R.Bush left guard to MIA 24 for 4 yards (C.Clemons).,0,0,2012 -20121125_SEA@MIA,2,38,9,MIA,SEA,2,6,76,(8:09) R.Tannehill pass deep middle to D.Bess to MIA 47 for 23 yards (K.Wright; L.Hill).,0,0,2012 -20121125_SEA@MIA,2,37,32,MIA,SEA,1,10,53,(7:32) (No Huddle) R.Tannehill pass deep right to C.Clay ran ob at SEA 35 for 18 yards (E.Thomas).,0,0,2012 -20121125_SEA@MIA,2,36,58,MIA,SEA,1,10,35,(6:58) R.Bush right tackle to SEA 31 for 4 yards (R.Sherman).,0,0,2012 -20121125_SEA@MIA,2,36,21,MIA,SEA,2,6,31,(6:21) R.Bush up the middle to SEA 26 for 5 yards (B.Wagner).,0,0,2012 -20121125_SEA@MIA,2,35,55,MIA,SEA,3,1,26,(5:55) (No Huddle) R.Tannehill left guard to SEA 25 for 1 yard (R.Bryant). PENALTY on SEA-B.Mebane Defensive 12 On-field 5 yards enforced at SEA 26 - No Play.,0,0,2012 -20121125_SEA@MIA,2,35,23,MIA,SEA,1,10,21,(5:23) (Shotgun) R.Bush left end for 21 yards TOUCHDOWN.,0,0,2012 -20121125_SEA@MIA,2,35,23,MIA,SEA,,,21,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20121125_SEA@MIA,2,35,23,MIA,SEA,,,21,D.Carpenter kicks 74 yards from MIA 35 to SEA -9. L.Washington Touchback.,7,0,2012 -20121125_SEA@MIA,2,35,13,SEA,MIA,1,10,80,(5:13) M.Lynch right end to SEA 20 for no gain (R.Starks).,0,7,2012 -20121125_SEA@MIA,2,34,46,SEA,MIA,2,10,80,(4:46) R.Wilson right guard to SEA 27 for 7 yards (K.Misi).,0,7,2012 -20121125_SEA@MIA,2,33,56,SEA,MIA,3,3,73,(3:56) (Shotgun) R.Wilson pass short right to R.Turbin to SEA 47 for 20 yards (C.Clemons).,0,7,2012 -20121125_SEA@MIA,2,33,29,SEA,MIA,1,10,53,(3:29) M.Lynch right guard to 50 for 3 yards (R.Jones).,0,7,2012 -20121125_SEA@MIA,2,32,43,SEA,MIA,2,7,50,(2:43) M.Lynch up the middle to MIA 44 for 6 yards (K.Dansby).,0,7,2012 -20121125_SEA@MIA,2,32,18,SEA,MIA,3,1,44,(2:18) R.Wilson pass short right to M.Lynch pushed ob at MIA 37 for 7 yards (R.Stanford).,0,7,2012 -20121125_SEA@MIA,2,31,21,SEA,MIA,1,10,37,(1:21) R.Wilson pass deep right to G.Tate to MIA 5 for 32 yards (R.Stanford) [C.Wake].,0,7,2012 -20121125_SEA@MIA,2,31,12,SEA,MIA,1,5,5,(1:12) M.Lynch up the middle to MIA 3 for 2 yards (R.Stanford).,0,7,2012 -20121125_SEA@MIA,2,30,36,SEA,MIA,2,3,3,(:36) (Shotgun) R.Wilson pass short left to A.McCoy for 3 yards TOUCHDOWN.,0,7,2012 -20121125_SEA@MIA,2,30,36,SEA,MIA,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,7,2012 -20121125_SEA@MIA,2,30,36,SEA,MIA,,,3,S.Hauschka kicks 74 yards from SEA 35 to MIA -9. M.Thigpen Touchback.,7,7,2012 -20121125_SEA@MIA,2,30,29,MIA,SEA,1,10,80,(:29) R.Tannehill kneels to MIA 19 for -1 yards.,7,7,2012 -20121125_SEA@MIA,3,30,0,SEA,MIA,,,80,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,7,7,2012 -20121125_SEA@MIA,3,30,0,MIA,SEA,1,10,80,(15:00) R.Bush right tackle to MIA 24 for 4 yards (B.Mebane).,7,7,2012 -20121125_SEA@MIA,3,29,40,MIA,SEA,2,6,76,(14:40) R.Tannehill pass short right to B.Hartline ran ob at MIA 34 for 10 yards.,7,7,2012 -20121125_SEA@MIA,3,29,7,MIA,SEA,1,10,66,(14:07) (No Huddle Shotgun) R.Tannehill pass short right to B.Hartline to MIA 41 for 7 yards (R.Sherman).,7,7,2012 -20121125_SEA@MIA,3,28,45,MIA,SEA,2,3,59,(13:45) R.Bush right end to MIA 40 for -1 yards (K.Chancellor).,7,7,2012 -20121125_SEA@MIA,3,27,37,MIA,SEA,3,4,60,(12:37) (Shotgun) R.Tannehill pass short right to C.Clay to MIA 43 for 3 yards (K.Chancellor). Penalty on MIA Illegal Shift declined.,7,7,2012 -20121125_SEA@MIA,3,27,29,MIA,SEA,4,1,57,(12:29) (Punt formation) B.Fields punts 57 yards to end zone Center-J.Denney Touchback.,7,7,2012 -20121125_SEA@MIA,3,27,10,SEA,MIA,1,10,80,(12:10) R.Wilson pass short right to S.Rice to SEA 32 for 12 yards (S.Smith).,7,7,2012 -20121125_SEA@MIA,3,26,42,SEA,MIA,1,10,68,(11:42) M.Lynch up the middle to SEA 35 for 3 yards (J.Odrick).,7,7,2012 -20121125_SEA@MIA,3,26,20,SEA,MIA,2,7,65,(11:20) R.Wilson pass short left to Z.Miller to SEA 39 for 4 yards (C.Clemons).,7,7,2012 -20121125_SEA@MIA,3,25,40,SEA,MIA,3,3,61,(10:40) (Shotgun) R.Wilson pass short middle to J.Kearse to SEA 47 for 8 yards (N.Carroll).,7,7,2012 -20121125_SEA@MIA,3,24,43,SEA,MIA,1,10,53,(9:43) (Shotgun) R.Wilson pass short right to D.Baldwin pushed ob at MIA 39 for 14 yards (J.Wilson).,7,7,2012 -20121125_SEA@MIA,3,24,8,SEA,MIA,1,10,39,(9:08) M.Lynch right tackle to MIA 38 for 1 yard (K.Misi).,7,7,2012 -20121125_SEA@MIA,3,23,45,SEA,MIA,2,9,38,(8:45) (Shotgun) M.Lynch up the middle to MIA 34 for 4 yards (K.Dansby). PENALTY on SEA-B.Giacomini Offensive Holding 10 yards enforced at MIA 38 - No Play.,7,7,2012 -20121125_SEA@MIA,3,22,58,SEA,MIA,2,19,48,(7:58) R.Wilson pass short middle to R.Turbin to MIA 30 for 18 yards (J.Wilson).,7,7,2012 -20121125_SEA@MIA,3,22,13,SEA,MIA,3,1,30,(7:13) R.Wilson pass short right to E.Moore to MIA 24 for 6 yards (N.Carroll).,7,7,2012 -20121125_SEA@MIA,3,21,36,SEA,MIA,1,10,24,(6:36) M.Lynch right guard to MIA 19 for 5 yards (R.Jones).,7,7,2012 -20121125_SEA@MIA,3,21,12,SEA,MIA,2,5,19,(6:12) PENALTY on SEA-J.Moffitt False Start 5 yards enforced at MIA 19 - No Play.,7,7,2012 -20121125_SEA@MIA,3,20,39,SEA,MIA,2,10,24,(5:39) (Shotgun) R.Wilson up the middle to MIA 4 for 20 yards (S.Smith).,7,7,2012 -20121125_SEA@MIA,3,19,47,SEA,MIA,1,4,4,(4:47) M.Lynch right guard to MIA 4 for no gain (R.Starks).,7,7,2012 -20121125_SEA@MIA,3,19,11,SEA,MIA,2,4,4,(4:11) R.Wilson pass short right to M.Robinson for 4 yards TOUCHDOWN.,7,7,2012 -20121125_SEA@MIA,3,19,11,SEA,MIA,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,7,2012 -20121125_SEA@MIA,3,19,11,SEA,MIA,,,4,S.Hauschka kicks 72 yards from SEA 35 to MIA -7. M.Thigpen Touchback.,14,7,2012 -20121125_SEA@MIA,3,18,59,MIA,SEA,1,10,80,(3:59) D.Thomas right tackle to MIA 22 for 2 yards (A.Branch).,7,14,2012 -20121125_SEA@MIA,3,18,25,MIA,SEA,2,8,78,(3:25) R.Tannehill pass short left to D.Bess to MIA 31 for 9 yards (B.Wagner).,7,14,2012 -20121125_SEA@MIA,3,17,45,MIA,SEA,1,10,69,(2:45) R.Bush left guard to MIA 33 for 2 yards (B.Wagner; B.Mebane).,7,14,2012 -20121125_SEA@MIA,3,17,14,MIA,SEA,2,8,67,(2:14) (Shotgun) R.Tannehill left tackle to SEA 48 for 19 yards (A.Branch).,7,14,2012 -20121125_SEA@MIA,3,16,35,MIA,SEA,1,10,48,(1:35) R.Bush left guard to SEA 45 for 3 yards (C.Clemons).,7,14,2012 -20121125_SEA@MIA,3,16,2,MIA,SEA,2,7,45,(1:02) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (R.Sherman).,7,14,2012 -20121125_SEA@MIA,3,15,47,MIA,SEA,3,7,45,(:47) (Shotgun) R.Tannehill pass incomplete short right to R.Bush (J.Jones).,7,14,2012 -20121125_SEA@MIA,3,15,43,MIA,SEA,4,7,45,(:43) (Punt formation) B.Fields punts 41 yards to SEA 4 Center-J.Denney downed by MIA-J.Wilson.,7,14,2012 -20121125_SEA@MIA,3,15,34,SEA,MIA,1,10,96,(:34) M.Lynch left tackle to SEA 4 for no gain (K.Burnett).,14,7,2012 -20121125_SEA@MIA,4,15,0,SEA,MIA,2,10,96,(15:00) R.Wilson pass short right to G.Tate to SEA 18 for 14 yards (R.Jones; K.Dansby).,14,7,2012 -20121125_SEA@MIA,4,14,35,SEA,MIA,1,10,82,(14:35) M.Lynch left end to SEA 34 for 16 yards (K.Dansby).,14,7,2012 -20121125_SEA@MIA,4,13,43,SEA,MIA,1,10,66,(13:43) M.Lynch up the middle to SEA 32 for -2 yards (K.Dansby).,14,7,2012 -20121125_SEA@MIA,4,13,18,SEA,MIA,2,12,68,(13:18) R.Wilson pass short left to Z.Miller to SEA 40 for 8 yards (K.Burnett).,14,7,2012 -20121125_SEA@MIA,4,12,19,SEA,MIA,3,4,60,(12:19) (Shotgun) R.Wilson pass incomplete deep right to D.Baldwin.,14,7,2012 -20121125_SEA@MIA,4,12,11,SEA,MIA,4,4,60,(12:11) (Punt formation) J.Ryan punts 42 yards to MIA 18 Center-C.Gresham fair catch by D.Bess.,14,7,2012 -20121125_SEA@MIA,4,12,3,MIA,SEA,1,10,82,(12:03) R.Tannehill pass deep left to C.Clay to MIA 37 for 19 yards (K.Wright).,7,14,2012 -20121125_SEA@MIA,4,11,31,MIA,SEA,1,10,63,(11:31) (No Huddle) D.Thomas right tackle to MIA 43 for 6 yards (L.Hill).,7,14,2012 -20121125_SEA@MIA,4,10,56,MIA,SEA,2,4,57,(10:56) R.Tannehill pass deep right to D.Bess ran ob at SEA 18 for 39 yards (B.Wagner).,7,14,2012 -20121125_SEA@MIA,4,10,12,MIA,SEA,1,10,18,(10:12) M.Moore left end to SEA 9 for 9 yards (E.Thomas).,7,14,2012 -20121125_SEA@MIA,4,9,48,MIA,SEA,2,1,9,(9:48) (No Huddle) R.Tannehill up the middle to SEA 9 for no gain (B.Mebane).,7,14,2012 -20121125_SEA@MIA,4,9,20,MIA,SEA,3,1,9,(9:20) D.Thomas left tackle to SEA 7 for 2 yards (C.Clemons).,7,14,2012 -20121125_SEA@MIA,4,8,37,MIA,SEA,1,7,7,(8:37) (Shotgun) R.Tannehill pass short left intended for A.Fasano INTERCEPTED by B.Wagner at SEA -3. Touchback. PENALTY on SEA-E.Thomas Roughing the Passer 4 yards enforced at SEA 7 - No Play.,7,14,2012 -20121125_SEA@MIA,4,8,13,MIA,SEA,1,3,3,(8:13) (Shotgun) D.Thomas right guard for 3 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,7,14,2012 -20121125_SEA@MIA,4,8,13,MIA,SEA,,,3,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,7,14,2012 -20121125_SEA@MIA,4,8,13,MIA,SEA,,,3,D.Carpenter kicks 63 yards from MIA 35 to SEA 2. L.Washington for 98 yards TOUCHDOWN.,8,14,2012 -20121125_SEA@MIA,4,8,13,SEA,MIA,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,14,8,2012 -20121125_SEA@MIA,4,8,13,SEA,MIA,,,3,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,21,8,2012 -20121125_SEA@MIA,4,7,54,MIA,SEA,1,10,80,(7:54) R.Bush right end pushed ob at MIA 42 for 22 yards (R.Sherman).,8,21,2012 -20121125_SEA@MIA,4,7,28,MIA,SEA,1,10,58,(7:28) R.Tannehill pass incomplete short right to B.Hartline.,8,21,2012 -20121125_SEA@MIA,4,7,21,MIA,SEA,2,10,58,(7:21) R.Bush right tackle to MIA 45 for 3 yards (C.Clemons).,8,21,2012 -20121125_SEA@MIA,4,6,41,MIA,SEA,3,7,55,(6:41) (Shotgun) R.Tannehill pass short left to D.Thomas to SEA 37 for 18 yards (B.Browner).,8,21,2012 -20121125_SEA@MIA,4,6,1,MIA,SEA,1,10,37,(6:01) R.Bush left tackle to SEA 29 for 8 yards (L.Hill).,8,21,2012 -20121125_SEA@MIA,4,5,36,MIA,SEA,2,2,29,(5:36) R.Tannehill pass deep right to C.Clay for 29 yards TOUCHDOWN.,8,21,2012 -20121125_SEA@MIA,4,5,36,MIA,SEA,,,29,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,8,21,2012 -20121125_SEA@MIA,4,5,36,MIA,SEA,,,29,D.Carpenter kicks 74 yards from MIA 35 to SEA -9. L.Washington Touchback.,15,21,2012 -20121125_SEA@MIA,4,5,13,SEA,MIA,1,10,80,(5:13) M.Lynch right tackle to SEA 25 for 5 yards (K.Misi).,21,15,2012 -20121125_SEA@MIA,4,4,35,SEA,MIA,2,5,75,(4:35) R.Wilson pass incomplete short left to M.Lynch.,21,15,2012 -20121125_SEA@MIA,4,4,29,SEA,MIA,3,5,75,(4:29) (Shotgun) R.Wilson pass short right to R.Turbin to SEA 34 for 9 yards (C.Clemons; O.Vernon).,21,15,2012 -20121125_SEA@MIA,4,3,40,SEA,MIA,1,10,66,(3:40) M.Lynch left end to SEA 35 for 1 yard (R.Jones; K.Burnett).,21,15,2012 -20121125_SEA@MIA,4,3,3,SEA,MIA,2,9,65,(3:03) (Shotgun) M.Lynch right guard to SEA 40 for 5 yards (K.Dansby).,21,15,2012 -20121125_SEA@MIA,4,2,17,SEA,MIA,3,4,60,(2:17) (Shotgun) R.Wilson pass deep right to A.McCoy ran ob at MIA 40 for 20 yards.,21,15,2012 -20121125_SEA@MIA,4,2,11,SEA,MIA,1,10,40,(2:11) R.Turbin right tackle to MIA 41 for -1 yards (K.Misi).,21,15,2012 -20121125_SEA@MIA,4,2,0,SEA,MIA,2,11,41,(2:00) (Shotgun) R.Wilson pass short right to M.Lynch to MIA 47 for -6 yards (K.Misi; P.Soliai).,21,15,2012 -20121125_SEA@MIA,4,1,47,SEA,MIA,3,17,47,(1:47) (Shotgun) R.Wilson sacked at MIA 49 for -2 yards (J.Odrick).,21,15,2012 -20121125_SEA@MIA,4,1,38,SEA,MIA,4,19,49,(1:38) (Punt formation) J.Ryan punts 39 yards to MIA 10 Center-C.Gresham fair catch by D.Bess.,21,15,2012 -20121125_SEA@MIA,4,1,32,MIA,SEA,1,10,90,(1:32) R.Tannehill pass short middle to D.Bess to MIA 29 for 19 yards (M.Trufant).,15,21,2012 -20121125_SEA@MIA,4,1,5,MIA,SEA,1,10,71,(1:05) (No Huddle Shotgun) R.Tannehill scrambles up the middle to MIA 44 for 15 yards (K.Wright).,15,21,2012 -20121125_SEA@MIA,4,0,46,MIA,SEA,1,10,56,(:46) (No Huddle) R.Tannehill spiked the ball to stop the clock. PENALTY on MIA-R.Matthews Illegal Motion 5 yards enforced at MIA 44 - No Play.,15,21,2012 -20121125_SEA@MIA,4,0,46,MIA,SEA,1,15,61,(:46) (Shotgun) R.Tannehill pass deep middle to D.Bess to SEA 36 for 25 yards (M.Trufant).,15,21,2012 -20121125_SEA@MIA,4,0,46,MIA,SEA,1,10,36,(:46) (No Huddle) R.Tannehill spiked the ball to stop the clock.,15,21,2012 -20121125_SEA@MIA,4,0,29,MIA,SEA,2,10,36,(:29) (Shotgun) R.Tannehill pass short left to C.Clay ran ob at SEA 29 for 7 yards (K.Chancellor).,15,21,2012 -20121125_SEA@MIA,4,0,24,MIA,SEA,3,3,29,(:24) D.Thomas up the middle to SEA 25 for 4 yards (B.Wagner).,15,21,2012 -20121125_SEA@MIA,4,0,4,MIA,SEA,1,10,25,(:04) (Field Goal formation) D.Carpenter 43 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,15,21,2012 -20121125_SEA@MIA,4,0,4,MIA,SEA,,,25,                      ,18,21,2012 -20121125_ATL@TB,1,0,0,TB,ATL,,,25,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20121125_ATL@TB,1,60,0,ATL,TB,1,10,80,(15:00) M.Turner up the middle to ATL 22 for 2 yards (A.Hayward).,0,0,2012 -20121125_ATL@TB,1,59,31,ATL,TB,2,8,78,(14:31) M.Turner up the middle to ATL 26 for 4 yards (M.Foster R.Miller).,0,0,2012 -20121125_ATL@TB,1,58,51,ATL,TB,3,4,74,(13:51) (Shotgun) M.Ryan pass short left to J.Jones pushed ob at ATL 39 for 13 yards (E.Biggers).,0,0,2012 -20121125_ATL@TB,1,58,20,ATL,TB,1,10,61,(13:20) (Shotgun) Jz. Rodgers right tackle to TB 41 for 20 yards (R.Barber).,0,0,2012 -20121125_ATL@TB,1,57,42,ATL,TB,1,10,41,(12:42) Jz. Rodgers left end to TB 38 for 3 yards (R.Barber).,0,0,2012 -20121125_ATL@TB,1,57,8,ATL,TB,2,7,38,(12:08) Jz. Rodgers left tackle to TB 29 for 9 yards (M.Barron L.David).,0,0,2012 -20121125_ATL@TB,1,56,30,ATL,TB,1,10,29,(11:30) M.Turner right tackle to TB 29 for no gain (L.Johnson). PENALTY on ATL-H.Douglas Illegal Motion 5 yards enforced at TB 29 - No Play.,0,0,2012 -20121125_ATL@TB,1,56,5,ATL,TB,1,15,34,(11:05) M.Ryan pass short middle to M.Turner to TB 26 for 8 yards (G.Gibson).,0,0,2012 -20121125_ATL@TB,1,55,21,ATL,TB,2,7,26,(10:21) (Shotgun) M.Turner left tackle to TB 18 for 8 yards (L.David).,0,0,2012 -20121125_ATL@TB,1,54,43,ATL,TB,1,10,18,(9:43) Jz. Rodgers right guard to TB 18 for no gain (G.Gibson).,0,0,2012 -20121125_ATL@TB,1,54,0,ATL,TB,2,10,18,(9:00) (Shotgun) M.Ryan pass short left to T.Gonzalez to TB 11 for 7 yards (M.Barron).,0,0,2012 -20121125_ATL@TB,1,53,21,ATL,TB,3,3,11,(8:21) M.Ryan pass short middle to Jz. Rodgers to TB 13 for -2 yards (D.Te'o-Nesheim M.Foster).,0,0,2012 -20121125_ATL@TB,1,52,43,ATL,TB,4,5,13,(7:43) (Field Goal formation) M.Bryant 31 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121125_ATL@TB,1,52,43,ATL,TB,,,13,M.Bosher kicks 68 yards from ATL 35 to TB -3. L.Lewis to TB 19 for 22 yards (DJ.Davis).,3,0,2012 -20121125_ATL@TB,1,52,31,TB,ATL,1,10,81,(7:31) J.Freeman pass short middle to M.Williams to TB 27 for 8 yards (A.Dent).,0,3,2012 -20121125_ATL@TB,1,51,51,TB,ATL,2,2,73,(6:51) J.Freeman pass short middle to D.Martin to TB 32 for 5 yards (S.Weatherspoon).,0,3,2012 -20121125_ATL@TB,1,51,5,TB,ATL,1,10,68,(6:05) D.Martin right tackle to TB 40 for 8 yards (A.Dent).,0,3,2012 -20121125_ATL@TB,1,50,19,TB,ATL,2,2,60,(5:19) J.Freeman pass short middle to D.Clark to ATL 39 for 21 yards (S.Nicholas).,0,3,2012 -20121125_ATL@TB,1,49,35,TB,ATL,1,10,39,(4:35) D.Martin up the middle to ATL 39 for no gain (W.Moore).,0,3,2012 -20121125_ATL@TB,1,48,57,TB,ATL,2,10,39,(3:57) (Shotgun) J.Freeman pass deep right to T.Underwood ran ob at ATL 17 for 22 yards.,0,3,2012 -20121125_ATL@TB,1,48,19,TB,ATL,1,10,17,(3:19) D.Martin left end pushed ob at ATL 12 for 5 yards (D.Robinson).,0,3,2012 -20121125_ATL@TB,1,47,46,TB,ATL,2,5,12,(2:46) D.Martin up the middle to ATL 6 for 6 yards (T.DeCoud).,0,3,2012 -20121125_ATL@TB,1,47,4,TB,ATL,1,6,6,(2:04) (Shotgun) D.Martin right tackle to ATL 1 for 5 yards (K.Biermann).,0,3,2012 -20121125_ATL@TB,1,46,19,TB,ATL,2,1,1,(1:19) D.Martin left end for 1 yard TOUCHDOWN.,0,3,2012 -20121125_ATL@TB,1,46,19,TB,ATL,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,3,2012 -20121125_ATL@TB,1,46,19,TB,ATL,,,1,M.Koenen kicks 70 yards from TB 35 to ATL -5. Jz. Rodgers to ATL 25 for 30 yards (E.Lorig).,7,3,2012 -20121125_ATL@TB,1,46,5,ATL,TB,1,10,75,(1:05) M.Ryan pass short right to R.White to ATL 32 for 7 yards (A.Hayward).,3,7,2012 -20121125_ATL@TB,1,45,35,ATL,TB,2,3,68,(:35) M.Turner right tackle to ATL 32 for no gain (A.Hayward L.Johnson).,3,7,2012 -20121125_ATL@TB,2,45,0,ATL,TB,3,3,68,(15:00) (Shotgun) M.Ryan pass short middle to T.Gonzalez to TB 48 for 20 yards (A.Black).,3,7,2012 -20121125_ATL@TB,2,44,22,ATL,TB,1,10,48,(14:22) M.Ryan pass short middle to J.Jones to TB 33 for 15 yards (L.Johnson).,3,7,2012 -20121125_ATL@TB,2,43,45,ATL,TB,1,10,33,(13:45) M.Turner up the middle to TB 36 for -3 yards (D.Te'o-Nesheim).,3,7,2012 -20121125_ATL@TB,2,43,5,ATL,TB,2,13,36,(13:05) (Shotgun) M.Ryan pass short left to H.Douglas pushed ob at TB 30 for 6 yards (L.Lewis).,3,7,2012 -20121125_ATL@TB,2,42,30,ATL,TB,3,7,30,(12:30) (Shotgun) M.Ryan pass short right to T.Gonzalez to TB 14 for 16 yards (L.Johnson R.Barber).,3,7,2012 -20121125_ATL@TB,2,41,46,ATL,TB,1,10,14,(11:46) Jz. Rodgers left end to TB 18 for -4 yards (L.David).,3,7,2012 -20121125_ATL@TB,2,41,5,ATL,TB,2,14,18,(11:05) (Shotgun) M.Ryan scrambles left end ran ob at TB 5 for 13 yards.,3,7,2012 -20121125_ATL@TB,2,40,33,ATL,TB,3,1,5,(10:33) (Shotgun) Jz. Rodgers right end for 5 yards TOUCHDOWN.,3,7,2012 -20121125_ATL@TB,2,40,33,ATL,TB,,,5,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,3,7,2012 -20121125_ATL@TB,2,40,33,ATL,TB,,,5,M.Bosher kicks 69 yards from ATL 35 to TB -4. L.Lewis to TB 20 for 24 yards (C.Matthews).,10,7,2012 -20121125_ATL@TB,2,39,49,TB,ATL,1,10,80,(9:49) J.Freeman sacked at TB 13 for -7 yards (D.Robinson).,7,10,2012 -20121125_ATL@TB,2,39,14,TB,ATL,2,17,87,(9:14) J.Freeman pass short right to D.Martin pushed ob at ATL 45 for 42 yards (K.Biermann). Penalty on TB-D.Dotson Offensive Holding declined. PENALTY on TB-J.Meredith Illegal Use of Hands 6 yards enforced at TB 13 - No Play.,7,10,2012 -20121125_ATL@TB,2,38,39,TB,ATL,2,23,93,(8:39) J.Freeman pass short right to L.Stocker to TB 12 for 5 yards (A.Dent).,7,10,2012 -20121125_ATL@TB,2,37,55,TB,ATL,3,18,88,(7:55) (Shotgun) J.Freeman sacked at TB 11 for -1 yards (K.Biermann).,7,10,2012 -20121125_ATL@TB,2,37,27,TB,ATL,4,19,89,(7:27) (Punt formation) M.Koenen punts 58 yards to ATL 31 Center-A.Economos. D.Franks to ATL 41 for 10 yards (K.Tandy J.Cutrera).,7,10,2012 -20121125_ATL@TB,2,37,13,ATL,TB,1,10,59,(7:13) (Shotgun) Jz. Rodgers left guard to ATL 41 for no gain (M.Foster).,10,7,2012 -20121125_ATL@TB,2,36,36,ATL,TB,2,10,59,(6:36) (Shotgun) M.Ryan pass short right to R.White to ATL 47 for 6 yards (L.Johnson).,10,7,2012 -20121125_ATL@TB,2,36,0,ATL,TB,3,4,53,(6:00) (Shotgun) M.Ryan pass short right intended for R.White INTERCEPTED by R.Barber [D.Bowers] at TB 41. R.Barber to ATL 31 for 28 yards (J.Jones). Penalty on ATL Offensive Holding declined.,10,7,2012 -20121125_ATL@TB,2,35,47,TB,ATL,1,10,31,(5:47) M.Williams pass deep left to V.Jackson to ATL 3 for 28 yards (S.Nicholas).,7,10,2012 -20121125_ATL@TB,2,35,1,TB,ATL,1,3,3,(5:01) D.Martin right guard to ATL 1 for 2 yards (S.Weatherspoon C.Peters).,7,10,2012 -20121125_ATL@TB,2,34,18,TB,ATL,2,1,1,(4:18) J.Freeman pass incomplete short left to L.Stocker.,7,10,2012 -20121125_ATL@TB,2,34,10,TB,ATL,3,1,1,(4:10) D.Martin left end to ATL 4 for -3 yards (M.Peterson).,7,10,2012 -20121125_ATL@TB,2,33,41,TB,ATL,4,4,4,(3:41) (Field Goal formation) C.Barth 22 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,10,2012 -20121125_ATL@TB,2,33,41,TB,ATL,,,4,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,10,10,2012 -20121125_ATL@TB,2,33,37,ATL,TB,1,10,80,(3:37) M.Ryan pass short middle to J.Snelling to ATL 30 for 10 yards (A.Hayward R.Miller).,10,10,2012 -20121125_ATL@TB,2,32,59,ATL,TB,1,10,70,(2:59) (Shotgun) M.Ryan pass short left to J.Snelling to ATL 44 for 14 yards (L.David).,10,10,2012 -20121125_ATL@TB,2,32,25,ATL,TB,1,10,56,(2:25) M.Ryan pass incomplete deep right to H.Douglas.,10,10,2012 -20121125_ATL@TB,2,32,20,ATL,TB,2,10,56,(2:20) M.Turner left end to TB 47 for 9 yards (R.Barber).,10,10,2012 -20121125_ATL@TB,2,32,0,ATL,TB,3,1,47,(2:00) (Shotgun) M.Ryan pass short left to R.White pushed ob at TB 18 for 29 yards (R.Barber).,10,10,2012 -20121125_ATL@TB,2,31,53,ATL,TB,1,10,18,(1:53) M.Turner left tackle to TB 18 for no gain (D.Te'o-Nesheim M.Barron).,10,10,2012 -20121125_ATL@TB,2,31,14,ATL,TB,2,10,18,(1:14) (Shotgun) M.Ryan pass incomplete deep left to J.Jones. PENALTY on ATL-J.Jones Offensive Pass Interference 10 yards enforced at TB 18 - No Play.,10,10,2012 -20121125_ATL@TB,2,31,8,ATL,TB,2,20,28,(1:08) (Shotgun) M.Ryan pass short left to J.Snelling to TB 19 for 9 yards (M.Bennett).,10,10,2012 -20121125_ATL@TB,2,30,22,ATL,TB,3,11,19,(:22) (Shotgun) M.Ryan pass short middle to J.Jones to TB 4 for 15 yards (L.David).,10,10,2012 -20121125_ATL@TB,2,30,15,ATL,TB,1,4,4,(:15) M.Ryan pass incomplete short left to J.Jones.,10,10,2012 -20121125_ATL@TB,2,30,10,ATL,TB,2,4,4,(:10) (Shotgun) M.Ryan pass incomplete short middle to J.Jones.,10,10,2012 -20121125_ATL@TB,2,30,4,ATL,TB,3,4,4,(:04) (Field Goal formation) M.Bryant 22 yard field goal is No Good Wide Left Center-J.Harris Holder-M.Bosher.,10,10,2012 -20121125_ATL@TB,3,30,0,ATL,TB,,,4,M.Bosher kicks 68 yards from ATL 35 to TB -3. L.Lewis to TB 14 for 17 yards (A.Smith).,10,10,2012 -20121125_ATL@TB,3,29,56,TB,ATL,1,10,86,(14:56) D.Martin right end to TB 11 for -3 yards (J.Babineaux).,10,10,2012 -20121125_ATL@TB,3,29,12,TB,ATL,2,13,89,(14:12) (Shotgun) J.Freeman pass short right to D.Martin to TB 19 for 8 yards (S.Nicholas J.Babineaux).,10,10,2012 -20121125_ATL@TB,3,28,31,TB,ATL,3,5,81,(13:31) (Shotgun) J.Freeman pass short middle to T.Underwood to TB 26 for 7 yards (R.McClain).,10,10,2012 -20121125_ATL@TB,3,27,46,TB,ATL,1,10,74,(12:46) D.Martin right guard to TB 29 for 3 yards (W.Moore C.Peters).,10,10,2012 -20121125_ATL@TB,3,27,6,TB,ATL,2,7,71,(12:06) D.Martin left tackle to TB 32 for 3 yards (D.Robinson).,10,10,2012 -20121125_ATL@TB,3,26,28,TB,ATL,3,4,68,(11:28) (Shotgun) J.Freeman pass short left to D.Clark to TB 45 for 13 yards (T.DeCoud S.Nicholas).,10,10,2012 -20121125_ATL@TB,3,25,41,TB,ATL,1,10,55,(10:41) D.Martin left guard to TB 47 for 2 yards (J.Abraham).,10,10,2012 -20121125_ATL@TB,3,25,1,TB,ATL,2,8,53,(10:01) D.Martin left tackle to TB 45 for -2 yards (S.Weatherspoon).,10,10,2012 -20121125_ATL@TB,3,24,20,TB,ATL,3,10,55,(9:20) (Shotgun) J.Freeman pass deep left to V.Jackson ran ob at ATL 24 for 31 yards.,10,10,2012 -20121125_ATL@TB,3,24,5,TB,ATL,1,10,24,(9:05) (Shotgun) J.Freeman pass incomplete deep middle to T.Underwood.,10,10,2012 -20121125_ATL@TB,3,23,57,TB,ATL,2,10,24,(8:57) J.Freeman pass incomplete deep left to V.Jackson [W.Moore].,10,10,2012 -20121125_ATL@TB,3,23,49,TB,ATL,3,10,24,(8:49) (Shotgun) J.Freeman pass incomplete deep right to M.Williams.,10,10,2012 -20121125_ATL@TB,3,23,42,TB,ATL,4,10,24,(8:42) (Field Goal formation) C.Barth 42 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,10,2012 -20121125_ATL@TB,3,23,42,TB,ATL,,,24,M.Koenen kicks 72 yards from TB 35 to ATL -7. Jz. Rodgers Touchback.,13,10,2012 -20121125_ATL@TB,3,23,37,ATL,TB,1,10,80,(8:37) M.Ryan pass deep right to J.Jones for 80 yards TOUCHDOWN.,10,13,2012 -20121125_ATL@TB,3,23,37,ATL,TB,,,80,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,13,2012 -20121125_ATL@TB,3,23,37,ATL,TB,,,80,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,13,2012 -20121125_ATL@TB,3,23,26,TB,ATL,1,10,80,(8:26) J.Freeman pass incomplete deep right to V.Jackson (A.Samuel).,13,17,2012 -20121125_ATL@TB,3,23,18,TB,ATL,2,10,80,(8:18) (Shotgun) D.Martin left guard to TB 24 for 4 yards (D.Robinson).,13,17,2012 -20121125_ATL@TB,3,22,43,TB,ATL,3,6,76,(7:43) (Shotgun) J.Freeman pass short right to T.Underwood pushed ob at TB 29 for 5 yards (R.McClain).,13,17,2012 -20121125_ATL@TB,3,22,43,TB,ATL,4,1,71,(7:43) (Punt formation) PENALTY on TB Delay of Game 5 yards enforced at TB 29 - No Play.,13,17,2012 -20121125_ATL@TB,3,21,50,TB,ATL,4,6,76,(6:50) (Punt formation) M.Koenen punts 42 yards to ATL 34 Center-A.Economos fair catch by D.Franks.,13,17,2012 -20121125_ATL@TB,3,21,41,ATL,TB,1,10,66,(6:41) M.Ryan pass short right to M.Turner to ATL 34 for no gain (D.Te'o-Nesheim).,17,13,2012 -20121125_ATL@TB,3,21,8,ATL,TB,2,10,66,(6:08) Jz. Rodgers right guard to ATL 37 for 3 yards (L.David).,17,13,2012 -20121125_ATL@TB,3,20,26,ATL,TB,3,7,63,(5:26) (Shotgun) M.Ryan pass incomplete short left to R.White.,17,13,2012 -20121125_ATL@TB,3,20,21,ATL,TB,4,7,63,(5:21) (Punt formation) M.Bosher punts 45 yards to TB 18 Center-J.Harris fair catch by R.Parrish.,17,13,2012 -20121125_ATL@TB,3,20,12,TB,ATL,1,10,82,(5:12) PENALTY on TB False Start 5 yards enforced at TB 18 - No Play.,13,17,2012 -20121125_ATL@TB,3,20,12,TB,ATL,1,15,87,(5:12) J.Freeman pass short left to E.Lorig to TB 16 for 3 yards (S.Nicholas). PENALTY on TB-D.Dotson Illegal Use of Hands 6 yards enforced at TB 13 - No Play.,13,17,2012 -20121125_ATL@TB,3,19,41,TB,ATL,1,21,93,(4:41) J.Freeman pass short right to V.Jackson to TB 17 for 10 yards (D.Robinson).,13,17,2012 -20121125_ATL@TB,3,18,56,TB,ATL,2,11,83,(3:56) (Shotgun) J.Freeman pass deep middle to T.Underwood to ATL 44 for 39 yards (S.Weatherspoon).,13,17,2012 -20121125_ATL@TB,3,18,8,TB,ATL,1,10,44,(3:08) D.Martin left end to ATL 45 for -1 yards (D.Robinson).,13,17,2012 -20121125_ATL@TB,3,17,26,TB,ATL,2,11,45,(2:26) (Shotgun) J.Freeman pass short right to V.Jackson to ATL 30 for 15 yards (J.Abraham).,13,17,2012 -20121125_ATL@TB,3,16,42,TB,ATL,1,10,30,(1:42) D.Martin left guard to ATL 23 for 7 yards (S.Nicholas W.Moore).,13,17,2012 -20121125_ATL@TB,3,16,1,TB,ATL,2,3,23,(1:01) J.Freeman pass short left to V.Jackson pushed ob at ATL 11 for 12 yards (S.Weatherspoon).,13,17,2012 -20121125_ATL@TB,3,15,30,TB,ATL,1,10,11,(:30) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,13,17,2012 -20121125_ATL@TB,3,15,25,TB,ATL,2,10,11,(:25) (Shotgun) D.Martin left guard to ATL 1 for 10 yards (W.Moore).,13,17,2012 -20121125_ATL@TB,4,15,0,TB,ATL,1,1,1,(15:00) D.Martin left guard for 1 yard TOUCHDOWN.,13,17,2012 -20121125_ATL@TB,4,15,0,TB,ATL,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,13,17,2012 -20121125_ATL@TB,4,15,0,TB,ATL,,,1,M.Koenen kicks 71 yards from TB 35 to ATL -6. Jz. Rodgers Touchback.,20,17,2012 -20121125_ATL@TB,4,14,56,ATL,TB,1,10,80,(14:56) M.Turner left end to ATL 18 for -2 yards (E.Biggers).,17,20,2012 -20121125_ATL@TB,4,14,16,ATL,TB,2,12,82,(14:16) (Shotgun) M.Ryan pass short left to M.Turner to ATL 23 for 5 yards (E.Biggers).,17,20,2012 -20121125_ATL@TB,4,13,34,ATL,TB,3,7,77,(13:34) (Shotgun) M.Ryan pass short middle to T.Gonzalez to ATL 35 for 12 yards (L.David).,17,20,2012 -20121125_ATL@TB,4,12,57,ATL,TB,1,10,65,(12:57) M.Ryan pass short left to J.Jones to ATL 44 for 9 yards (E.Biggers R.Barber).,17,20,2012 -20121125_ATL@TB,4,12,15,ATL,TB,2,1,56,(12:15) M.Turner right guard to ATL 44 for no gain (L.David).,17,20,2012 -20121125_ATL@TB,4,11,32,ATL,TB,3,1,56,(11:32) (Shotgun) M.Ryan sacked at ATL 36 for -8 yards (E.Biggers). FUMBLES (E.Biggers) RECOVERED by TB-G.McCoy at ATL 36. G.McCoy to ATL 36 for no gain (S.Baker).,17,20,2012 -20121125_ATL@TB,4,11,23,TB,ATL,1,10,36,(11:23) J.Freeman pass incomplete deep middle to C.Owusu.,20,17,2012 -20121125_ATL@TB,4,11,20,TB,ATL,2,10,36,(11:20) (Shotgun) J.Freeman pass short middle to M.Williams to ATL 30 for 6 yards (W.Moore).,20,17,2012 -20121125_ATL@TB,4,10,38,TB,ATL,3,4,30,(10:38) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,20,17,2012 -20121125_ATL@TB,4,10,33,TB,ATL,4,4,30,(10:33) (Field Goal formation) C.Barth 48 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,20,17,2012 -20121125_ATL@TB,4,10,33,TB,ATL,,,30,M.Koenen kicks 72 yards from TB 35 to ATL -7. Jz. Rodgers to ATL 36 for 43 yards (L.Lewis M.Koenen).,23,17,2012 -20121125_ATL@TB,4,10,21,ATL,TB,1,10,64,(10:21) (Shotgun) M.Ryan pass short right to Jz. Rodgers to TB 32 for 32 yards (R.Barber).,17,23,2012 -20121125_ATL@TB,4,9,56,ATL,TB,1,10,32,(9:56) (Shotgun) M.Ryan pass short right to R.White pushed ob at TB 25 for 7 yards (L.Johnson).,17,23,2012 -20121125_ATL@TB,4,9,38,ATL,TB,2,3,25,(9:38) (Shotgun) M.Ryan pass short left to J.Jones to TB 10 for 15 yards (M.Barron).,17,23,2012 -20121125_ATL@TB,4,8,52,ATL,TB,1,10,10,(8:52) M.Ryan pass short right to H.Douglas pushed ob at TB 5 for 5 yards (E.Biggers).,17,23,2012 -20121125_ATL@TB,4,8,13,ATL,TB,2,5,5,(8:13) (Shotgun) M.Ryan pass incomplete short left to J.Jones.,17,23,2012 -20121125_ATL@TB,4,8,6,ATL,TB,3,5,5,(8:06) (Shotgun) M.Ryan pass incomplete short right to H.Douglas. PENALTY on TB-A.Black Defensive Holding 2 yards enforced at TB 5 - No Play.,17,23,2012 -20121125_ATL@TB,4,8,1,ATL,TB,1,3,3,(8:01) M.Turner left end for 3 yards TOUCHDOWN.,17,23,2012 -20121125_ATL@TB,4,8,1,ATL,TB,,,3,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,23,2012 -20121125_ATL@TB,4,8,1,ATL,TB,,,3,M.Bosher kicks 74 yards from ATL 35 to TB -9. L.Lewis Touchback.,24,23,2012 -20121125_ATL@TB,4,7,55,TB,ATL,1,10,80,(7:55) D.Martin left guard to TB 22 for 2 yards (C.Peters).,23,24,2012 -20121125_ATL@TB,4,7,15,TB,ATL,2,8,78,(7:15) (Shotgun) J.Freeman pass short right to M.Williams to TB 36 for 14 yards (S.Weatherspoon).,23,24,2012 -20121125_ATL@TB,4,6,35,TB,ATL,1,10,64,(6:35) D.Martin right guard to TB 37 for 1 yard (S.Nicholas).,23,24,2012 -20121125_ATL@TB,4,5,55,TB,ATL,2,9,63,(5:55) (Shotgun) J.Freeman pass incomplete deep middle to T.Underwood (R.McClain).,23,24,2012 -20121125_ATL@TB,4,5,49,TB,ATL,3,9,63,(5:49) (Shotgun) J.Freeman pass short middle to D.Clark to ATL 41 for 22 yards (S.Nicholas).,23,24,2012 -20121125_ATL@TB,4,5,8,TB,ATL,1,10,41,(5:08) (Shotgun) J.Freeman pass short right to T.Underwood to ATL 37 for 4 yards (W.Moore).,23,24,2012 -20121125_ATL@TB,4,4,30,TB,ATL,2,6,37,(4:30) D.Martin left end to ATL 38 for -1 yards (A.Dent).,23,24,2012 -20121125_ATL@TB,4,3,44,TB,ATL,3,7,38,(3:44) J.Freeman pass incomplete short right to T.Underwood (A.Samuel) [J.Abraham].,23,24,2012 -20121125_ATL@TB,4,3,37,TB,ATL,4,7,38,(3:37) (Field Goal formation) C.Barth 56 yard field goal is No Good Short Center-A.Economos Holder-M.Koenen.,23,24,2012 -20121125_ATL@TB,4,3,32,ATL,TB,1,10,54,(3:32) Jz. Rodgers left guard to TB 42 for 12 yards (M.Barron).,24,23,2012 -20121125_ATL@TB,4,2,47,ATL,TB,1,10,42,(2:47) M.Turner right tackle to TB 38 for 4 yards (M.Foster L.Johnson).,24,23,2012 -20121125_ATL@TB,4,2,0,ATL,TB,2,6,38,(2:00) Jz. Rodgers left end to TB 37 for 1 yard (A.Hayward M.Foster).,24,23,2012 -20121125_ATL@TB,4,1,55,ATL,TB,3,5,37,(1:55) (Shotgun) M.Ryan pass short left to R.White to TB 29 for 8 yards (L.Lewis).,24,23,2012 -20121125_ATL@TB,4,1,47,ATL,TB,1,10,29,(1:47) M.Turner up the middle to TB 30 for -1 yards (R.Barber).,24,23,2012 -20121125_ATL@TB,4,1,42,ATL,TB,2,11,30,(1:42) M.Turner right tackle to TB 37 for -7 yards (M.Foster).,24,23,2012 -20121125_ATL@TB,4,0,59,ATL,TB,3,18,37,(:59) M.Ryan pass short right to T.Gonzalez to TB 30 for 7 yards (L.Johnson).,24,23,2012 -20121125_ATL@TB,4,0,13,ATL,TB,4,11,30,(:13) (Field Goal formation) M.Bryant 48 yard field goal is No Good Wide Right Center-J.Harris Holder-M.Bosher.,24,23,2012 -20121125_ATL@TB,4,0,8,TB,ATL,1,10,62,(:08) J.Freeman pass short right to D.Clark ran ob at TB 47 for 9 yards.,23,24,2012 -20121125_ATL@TB,4,0,3,TB,ATL,2,1,53,(:03) (Shotgun) J.Freeman pass incomplete deep middle.,23,24,2012 -20121125_ATL@TB,4,0,3,TB,ATL,,,53,                      ,23,24,2012 -20121125_BAL@SD,1,0,0,BAL,SD,,,53,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20121125_BAL@SD,1,60,0,SD,BAL,1,10,80,(15:00) (Shotgun) PENALTY on SD-D.Alexander False Start 5 yards enforced at SD 20 - No Play.,0,0,2012 -20121125_BAL@SD,1,60,0,SD,BAL,1,15,85,(15:00) (Shotgun) P.Rivers pass short left to R.Mathews pushed ob at SD 24 for 9 yards (E.Reed).,0,0,2012 -20121125_BAL@SD,1,59,29,SD,BAL,2,6,76,(14:29) R.Mathews up the middle to SD 29 for 5 yards (M.Kemoeatu A.Jones).,0,0,2012 -20121125_BAL@SD,1,58,47,SD,BAL,3,1,71,(13:47) P.Rivers pass incomplete deep right to M.Floyd (E.Reed). PENALTY on BLT-H.Ngata Defensive Offside 5 yards enforced at SD 29 - No Play.,0,0,2012 -20121125_BAL@SD,1,58,39,SD,BAL,1,10,66,(13:39) R.Mathews left guard to SD 36 for 2 yards (T.Suggs D.Ellerbe).,0,0,2012 -20121125_BAL@SD,1,57,58,SD,BAL,2,8,64,(12:58) (Shotgun) P.Rivers pass short left to R.Mathews to SD 40 for 4 yards (C.Williams).,0,0,2012 -20121125_BAL@SD,1,57,13,SD,BAL,3,4,60,(12:13) (Shotgun) P.Rivers sacked at SD 35 for -5 yards (P.Kruger).,0,0,2012 -20121125_BAL@SD,1,56,45,SD,BAL,4,9,65,(11:45) M.Scifres punts 62 yards to BLT 3 Center-K.Nelson. J.Jones to BLT 12 for 9 yards (D.Stuckey).,0,0,2012 -20121125_BAL@SD,1,56,31,BAL,SD,1,10,88,(11:31) R.Rice up the middle to BLT 15 for 3 yards (E.Weddle).,0,0,2012 -20121125_BAL@SD,1,56,13,BAL,SD,2,7,85,(11:13) R.Rice right tackle to BLT 17 for 2 yards (C.Thomas).,0,0,2012 -20121125_BAL@SD,1,55,38,BAL,SD,3,5,83,(10:38) J.Flacco pass short left to D.Pitta to BLT 24 for 7 yards (D.Butler).,0,0,2012 -20121125_BAL@SD,1,54,56,BAL,SD,1,10,76,(9:56) J.Flacco pass incomplete deep right to A.Boldin.,0,0,2012 -20121125_BAL@SD,1,54,49,BAL,SD,2,10,76,(9:49) R.Rice right end to BLT 40 for 16 yards (A.Bigby).,0,0,2012 -20121125_BAL@SD,1,54,14,BAL,SD,1,10,60,(9:14) B.Pierce up the middle to BLT 43 for 3 yards (C.Liuget T.Spikes).,0,0,2012 -20121125_BAL@SD,1,53,33,BAL,SD,2,7,57,(8:33) PENALTY on BLT-J.Reid False Start 5 yards enforced at BLT 43 - No Play.,0,0,2012 -20121125_BAL@SD,1,53,13,BAL,SD,2,12,62,(8:13) B.Pierce left end to BLT 40 for 2 yards (C.Thomas C.Liuget).,0,0,2012 -20121125_BAL@SD,1,52,35,BAL,SD,3,10,60,(7:35) (Shotgun) J.Flacco pass incomplete short right to A.Boldin (M.Gilchrist).,0,0,2012 -20121125_BAL@SD,1,52,29,BAL,SD,4,10,60,(7:29) S.Koch punts 39 yards to SD 21 Center-M.Cox fair catch by C.Carr.,0,0,2012 -20121125_BAL@SD,1,52,23,SD,BAL,1,10,79,(7:23) R.Mathews up the middle to SD 25 for 4 yards (H.Ngata D.Ellerbe).,0,0,2012 -20121125_BAL@SD,1,51,47,SD,BAL,2,6,75,(6:47) P.Rivers pass short left to D.Alexander to SD 39 for 14 yards (E.Reed J.McClain). PENALTY on SD-D.Alexander Offensive Pass Interference 11 yards enforced at SD 25 - No Play.,0,0,2012 -20121125_BAL@SD,1,51,25,SD,BAL,2,17,86,(6:25) R.Mathews up the middle to SD 24 for 10 yards (T.Suggs B.Pollard).,0,0,2012 -20121125_BAL@SD,1,50,40,SD,BAL,3,7,76,(5:40) (Shotgun) P.Rivers sacked at SD 16 for -8 yards (D.Ellerbe).,0,0,2012 -20121125_BAL@SD,1,50,14,SD,BAL,4,15,84,(5:14) M.Scifres punts 55 yards to BLT 29 Center-K.Nelson. J.Jones ran ob at SD 45 for 26 yards (A.Gachkar). PENALTY on BLT-A.Allen Illegal Block Above the Waist 10 yards enforced at BLT 34.,0,0,2012 -20121125_BAL@SD,1,50,0,BAL,SD,1,10,76,(5:00) R.Rice right end to BLT 27 for 3 yards (A.Garay T.Spikes).,0,0,2012 -20121125_BAL@SD,1,49,27,BAL,SD,2,7,73,(4:27) J.Flacco pass incomplete short middle to A.Boldin (Q.Jammer).,0,0,2012 -20121125_BAL@SD,1,49,21,BAL,SD,3,7,73,(4:21) (Shotgun) J.Flacco pass short right to A.Boldin pushed ob at BLT 46 for 19 yards (D.Butler).,0,0,2012 -20121125_BAL@SD,1,49,0,BAL,SD,1,10,54,(4:00) (Shotgun) J.Flacco pass short right to R.Rice to 50 for 4 yards (E.Weddle).,0,0,2012 -20121125_BAL@SD,1,48,25,BAL,SD,2,6,50,(3:25) (Shotgun) J.Flacco pass short middle to R.Rice to SD 46 for 4 yards (D.Butler A.Bigby).,0,0,2012 -20121125_BAL@SD,1,47,42,BAL,SD,3,2,46,(2:42) (Shotgun) J.Flacco pass short right to T.Smith pushed ob at SD 34 for 12 yards (Q.Jammer).,0,0,2012 -20121125_BAL@SD,1,47,15,BAL,SD,1,10,34,(2:15) J.Flacco pass incomplete deep middle to T.Smith.,0,0,2012 -20121125_BAL@SD,1,47,8,BAL,SD,2,10,34,(2:08) J.Flacco pass incomplete short right to J.Jones.,0,0,2012 -20121125_BAL@SD,1,47,2,BAL,SD,3,10,34,(2:02) (Shotgun) J.Flacco sacked at SD 43 for -9 yards (C.Liuget).,0,0,2012 -20121125_BAL@SD,1,46,34,BAL,SD,4,19,43,(1:34) S.Koch punts 29 yards to SD 14 Center-M.Cox fair catch by C.Carr.,0,0,2012 -20121125_BAL@SD,1,46,25,SD,BAL,1,10,86,(1:25) (Shotgun) P.Rivers pass short right to R.McMichael to SD 20 for 6 yards (D.Ellerbe C.Graham).,0,0,2012 -20121125_BAL@SD,1,45,47,SD,BAL,2,4,80,(:47) R.Mathews up the middle to SD 23 for 3 yards (P.Kruger M.Kemoeatu).,0,0,2012 -20121125_BAL@SD,1,45,6,SD,BAL,3,1,77,(:06) (Shotgun) P.Rivers pass incomplete short left to S.Ajirotutu (T.Suggs).,0,0,2012 -20121125_BAL@SD,1,45,2,SD,BAL,4,1,77,(:02) M.Scifres punts 50 yards to BLT 27 Center-K.Nelson. J.Jones pushed ob at BLT 34 for 7 yards (D.Williams).,0,0,2012 -20121125_BAL@SD,2,45,0,BAL,SD,1,10,66,(15:00) B.Pierce right end to BLT 36 for 2 yards (Q.Jammer A.Bigby). SD-A.Bigby was injured during the play.,0,0,2012 -20121125_BAL@SD,2,44,41,BAL,SD,2,8,64,(14:41) B.Pierce left end to BLT 35 for -1 yards (C.Lynch).,0,0,2012 -20121125_BAL@SD,2,43,58,BAL,SD,3,9,65,(13:58) (Shotgun) J.Flacco pass incomplete short left to T.Smith (E.Weddle).,0,0,2012 -20121125_BAL@SD,2,43,53,BAL,SD,4,9,65,(13:53) S.Koch punts 43 yards to SD 22 Center-M.Cox out of bounds.,0,0,2012 -20121125_BAL@SD,2,43,45,SD,BAL,1,10,78,(13:45) (Shotgun) P.Rivers pass deep right to D.Alexander to SD 48 for 26 yards (C.Graham).,0,0,2012 -20121125_BAL@SD,2,43,2,SD,BAL,1,10,52,(13:02) (Shotgun) P.Rivers pass incomplete short right.,0,0,2012 -20121125_BAL@SD,2,42,56,SD,BAL,2,10,52,(12:56) P.Rivers pass deep left to M.Floyd ran ob at BLT 36 for 16 yards.,0,0,2012 -20121125_BAL@SD,2,42,25,SD,BAL,1,10,36,(12:25) P.Rivers pass incomplete short right to M.Floyd (C.Graham).,0,0,2012 -20121125_BAL@SD,2,42,20,SD,BAL,2,10,36,(12:20) P.Rivers pass short left to D.Alexander to BLT 27 for 9 yards (C.Williams).,0,0,2012 -20121125_BAL@SD,2,41,52,SD,BAL,3,1,27,(11:52) J.Battle up the middle to BLT 27 for no gain (D.Ellerbe M.Kemoeatu).,0,0,2012 -20121125_BAL@SD,2,41,19,SD,BAL,4,1,27,(11:19) J.Battle up the middle to BLT 25 for 2 yards (H.Ngata M.Kemoeatu).,0,0,2012 -20121125_BAL@SD,2,40,30,SD,BAL,1,10,25,(10:30) R.Mathews left guard to BLT 21 for 4 yards (D.Ellerbe).,0,0,2012 -20121125_BAL@SD,2,39,48,SD,BAL,2,6,21,(9:48) (Shotgun) P.Rivers pass deep middle to M.Floyd for 21 yards TOUCHDOWN.,0,0,2012 -20121125_BAL@SD,2,39,48,SD,BAL,,,21,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,0,0,2012 -20121125_BAL@SD,2,39,48,SD,BAL,,,21,N.Novak kicks 70 yards from SD 35 to BLT -5. J.Jones to BLT 16 for 21 yards (J.Battle). FUMBLES (J.Battle) recovered by BLT-G.Gradkowski at BLT 9. G.Gradkowski to BLT 9 for no gain (S.Ajirotutu). Baltimore challenged the fumble ruling and the play was REVERSED. N.Novak kicks 70 yards from SD 35 to BLT -5. J.Jones to BLT 16 for 21 yards (J.Battle).,7,0,2012 -20121125_BAL@SD,2,39,41,BAL,SD,1,10,84,(9:41) R.Rice left guard to BLT 22 for 6 yards (A.Franklin).,0,7,2012 -20121125_BAL@SD,2,39,13,BAL,SD,2,4,78,(9:13) R.Rice up the middle to BLT 25 for 3 yards (C.Lynch D.Butler).,0,7,2012 -20121125_BAL@SD,2,38,46,BAL,SD,3,1,75,(8:46) R.Rice left tackle to BLT 24 for -1 yards (K.Reyes T.Spikes).,0,7,2012 -20121125_BAL@SD,2,38,7,BAL,SD,4,2,76,(8:07) S.Koch punts 58 yards to SD 18 Center-M.Cox. C.Carr to SD 18 for no gain (A.Levine).,0,7,2012 -20121125_BAL@SD,2,37,56,SD,BAL,1,10,82,(7:56) R.Mathews right tackle to SD 27 for 9 yards (P.Kruger).,7,0,2012 -20121125_BAL@SD,2,37,21,SD,BAL,2,1,73,(7:21) R.Mathews right end to SD 29 for 2 yards (T.Suggs T.Cody).,7,0,2012 -20121125_BAL@SD,2,36,36,SD,BAL,1,10,71,(6:36) P.Rivers pass incomplete short left.,7,0,2012 -20121125_BAL@SD,2,36,31,SD,BAL,2,10,71,(6:31) (Shotgun) R.Mathews up the middle to SD 33 for 4 yards (B.Pollard).,7,0,2012 -20121125_BAL@SD,2,35,46,SD,BAL,3,6,67,(5:46) (Shotgun) P.Rivers pass short left to A.Gates ran ob at SD 44 for 11 yards.,7,0,2012 -20121125_BAL@SD,2,35,12,SD,BAL,1,10,56,(5:12) (Shotgun) P.Rivers pass short left to M.Floyd to BLT 41 for 15 yards (B.Pollard).,7,0,2012 -20121125_BAL@SD,2,34,43,SD,BAL,1,10,41,(4:43) (Shotgun) P.Rivers pass short right to D.Alexander to BLT 22 for 19 yards (E.Reed).,7,0,2012 -20121125_BAL@SD,2,33,58,SD,BAL,1,10,22,(3:58) P.Rivers pass incomplete short right.,7,0,2012 -20121125_BAL@SD,2,33,53,SD,BAL,2,10,22,(3:53) P.Rivers sacked at BLT 29 for -7 yards (T.Suggs).,7,0,2012 -20121125_BAL@SD,2,33,15,SD,BAL,3,17,29,(3:15) (Shotgun) P.Rivers pass incomplete short right.,7,0,2012 -20121125_BAL@SD,2,33,8,SD,BAL,4,17,29,(3:08) N.Novak 47 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,7,0,2012 -20121125_BAL@SD,2,33,8,SD,BAL,,,29,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,10,0,2012 -20121125_BAL@SD,2,33,4,BAL,SD,1,10,80,(3:04) J.Flacco sacked at BLT 14 for -6 yards (A.Barnes).,0,10,2012 -20121125_BAL@SD,2,32,29,BAL,SD,2,16,86,(2:29) (Shotgun) R.Rice left tackle to BLT 14 for no gain (E.Weddle D.Butler).,0,10,2012 -20121125_BAL@SD,2,32,23,BAL,SD,3,16,86,(2:23) (Shotgun) J.Flacco pass incomplete deep middle to D.Pitta.,0,10,2012 -20121125_BAL@SD,2,32,17,BAL,SD,4,16,86,(2:17) S.Koch punts 50 yards to SD 36 Center-M.Cox fair catch by C.Carr.,0,10,2012 -20121125_BAL@SD,2,32,9,SD,BAL,1,10,64,(2:09) (Shotgun) P.Rivers pass incomplete short right.,10,0,2012 -20121125_BAL@SD,2,32,6,SD,BAL,2,10,64,(2:06) (Shotgun) P.Rivers sacked at SD 32 for -4 yards (C.Upshaw).,10,0,2012 -20121125_BAL@SD,2,32,0,SD,BAL,3,14,68,(2:00) (Shotgun) P.Rivers pass short right to S.Ajirotutu pushed ob at SD 44 for 12 yards (C.Graham).,10,0,2012 -20121125_BAL@SD,2,31,55,SD,BAL,4,2,56,(1:55) M.Scifres punts 45 yards to BLT 11 Center-K.Nelson. T.Doss to BLT 16 for 5 yards (S.Wright).,10,0,2012 -20121125_BAL@SD,2,31,45,BAL,SD,1,10,84,(1:45) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 18 for 2 yards (E.Weddle).,0,10,2012 -20121125_BAL@SD,2,31,39,BAL,SD,2,8,82,(1:39) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 25 for 7 yards (C.Liuget).,0,10,2012 -20121125_BAL@SD,2,31,12,BAL,SD,3,1,75,(1:12) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 29 for 4 yards (T.Spikes).,0,10,2012 -20121125_BAL@SD,2,30,50,BAL,SD,1,10,71,(:50) (Shotgun) J.Flacco sacked at BLT 24 for -5 yards (S.Phillips).,0,10,2012 -20121125_BAL@SD,2,30,46,BAL,SD,2,15,76,(:46) (Shotgun) J.Flacco pass incomplete short right to T.Doss.,0,10,2012 -20121125_BAL@SD,2,30,38,BAL,SD,3,15,76,(:38) (Shotgun) R.Rice up the middle to BLT 37 for 13 yards (Q.Jammer E.Weddle).,0,10,2012 -20121125_BAL@SD,2,30,11,BAL,SD,4,2,63,(:11) S.Koch punts 49 yards to SD 14 Center-M.Cox downed by BLT-A.Levine. Penalty on BLT Illegal Touch Kick declined.,0,10,2012 -20121125_BAL@SD,3,30,0,SD,BAL,,,63,N.Novak kicks 74 yards from SD 35 to BLT -9. J.Jones pushed ob at BLT 16 for 25 yards (S.Wright).,10,0,2012 -20121125_BAL@SD,3,29,56,BAL,SD,1,10,84,(14:56) J.Flacco pass short left to V.Leach to BLT 17 for 1 yard (Q.Jammer). SD-D.Butler was injured during the play.,0,10,2012 -20121125_BAL@SD,3,29,34,BAL,SD,2,9,83,(14:34) R.Rice right tackle to BLT 19 for 2 yards (V.Martin C.Lynch).,0,10,2012 -20121125_BAL@SD,3,28,52,BAL,SD,3,7,81,(13:52) (Shotgun) J.Flacco pass short left to T.Smith to SD 27 for 54 yards (M.Gilchrist).,0,10,2012 -20121125_BAL@SD,3,28,10,BAL,SD,1,10,27,(13:10) R.Rice right guard to SD 25 for 2 yards (C.Lynch).,0,10,2012 -20121125_BAL@SD,3,27,35,BAL,SD,2,8,25,(12:35) J.Flacco pass incomplete deep middle to D.Pitta.,0,10,2012 -20121125_BAL@SD,3,27,29,BAL,SD,3,8,25,(12:29) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,0,10,2012 -20121125_BAL@SD,3,27,23,BAL,SD,4,8,25,(12:23) J.Tucker 43 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,10,2012 -20121125_BAL@SD,3,27,23,BAL,SD,,,25,J.Tucker kicks 74 yards from BLT 35 to SD -9. C.Carr Touchback.,3,10,2012 -20121125_BAL@SD,3,27,19,SD,BAL,1,10,80,(12:19) R.Mathews up the middle to SD 24 for 4 yards (J.McClain B.Ayanbadejo).,10,3,2012 -20121125_BAL@SD,3,26,38,SD,BAL,2,6,76,(11:38) P.Rivers sacked at SD 17 for -7 yards (A.Jones).,10,3,2012 -20121125_BAL@SD,3,25,54,SD,BAL,3,13,83,(10:54) (Shotgun) P.Rivers pass short right to R.Brown pushed ob at SD 25 for 8 yards (C.Brown).,10,3,2012 -20121125_BAL@SD,3,25,30,SD,BAL,4,5,75,(10:30) M.Scifres punts 52 yards to BLT 23 Center-K.Nelson. J.Jones to BLT 29 for 6 yards (D.Williams).,10,3,2012 -20121125_BAL@SD,3,25,17,BAL,SD,1,10,71,(10:17) B.Pierce up the middle to BLT 41 for 12 yards (C.Lynch).,3,10,2012 -20121125_BAL@SD,3,24,36,BAL,SD,1,10,59,(9:36) J.Flacco sacked at BLT 31 for -10 yards (sack split by T.Spikes and J.Johnson).,3,10,2012 -20121125_BAL@SD,3,24,0,BAL,SD,2,20,69,(9:00) (Shotgun) B.Pierce up the middle to BLT 28 for -3 yards (A.Gachkar).,3,10,2012 -20121125_BAL@SD,3,23,18,BAL,SD,3,23,72,(8:18) (Shotgun) J.Flacco pass incomplete deep right to T.Doss.,3,10,2012 -20121125_BAL@SD,3,23,9,BAL,SD,4,23,72,(8:09) S.Koch punts 50 yards to SD 22 Center-M.Cox. C.Carr to SD 33 for 11 yards (J.Ihedigbo B.Ayanbadejo).,3,10,2012 -20121125_BAL@SD,3,22,56,SD,BAL,1,10,67,(7:56) (Shotgun) P.Rivers pass incomplete short right.,10,3,2012 -20121125_BAL@SD,3,22,49,SD,BAL,2,10,67,(7:49) P.Rivers pass short right to R.McMichael to SD 38 for 5 yards (J.McClain).,10,3,2012 -20121125_BAL@SD,3,22,4,SD,BAL,3,5,62,(7:04) (Shotgun) P.Rivers sacked at SD 30 for -8 yards (A.Jones).,10,3,2012 -20121125_BAL@SD,3,21,31,SD,BAL,4,13,70,(6:31) M.Scifres punts 56 yards to BLT 14 Center-K.Nelson. J.Jones to BLT 24 for 10 yards (D.Williams).,10,3,2012 -20121125_BAL@SD,3,21,18,BAL,SD,1,10,76,(6:18) J.Flacco pass incomplete short left to T.Smith.,3,10,2012 -20121125_BAL@SD,3,21,12,BAL,SD,2,10,76,(6:12) R.Rice up the middle to BLT 31 for 7 yards (C.Lynch J.Johnson).,3,10,2012 -20121125_BAL@SD,3,20,34,BAL,SD,3,3,69,(5:34) (Shotgun) J.Flacco pass short left to T.Smith to BLT 38 for 7 yards (A.Gachkar).,3,10,2012 -20121125_BAL@SD,3,19,55,BAL,SD,1,10,62,(4:55) (Shotgun) J.Flacco pass short left to R.Rice to 50 for 12 yards (A.Cason A.Gachkar).,3,10,2012 -20121125_BAL@SD,3,19,18,BAL,SD,1,10,50,(4:18) R.Rice up the middle to SD 44 for 6 yards (A.Franklin A.Cason).,3,10,2012 -20121125_BAL@SD,3,18,41,BAL,SD,2,4,44,(3:41) B.Pierce up the middle to SD 41 for 3 yards (D.Williams).,3,10,2012 -20121125_BAL@SD,3,17,58,BAL,SD,3,1,41,(2:58) B.Pierce right end to SD 23 for 18 yards (E.Weddle).,3,10,2012 -20121125_BAL@SD,3,17,18,BAL,SD,1,10,23,(2:18) R.Rice left end to SD 19 for 4 yards (A.Cason).,3,10,2012 -20121125_BAL@SD,3,16,33,BAL,SD,2,6,19,(1:33) (Shotgun) R.Rice up the middle to SD 14 for 5 yards (T.Spikes C.Lynch).,3,10,2012 -20121125_BAL@SD,3,16,4,BAL,SD,3,1,14,(1:04) J.Flacco up the middle to SD 14 for no gain (M.Ingram).,3,10,2012 -20121125_BAL@SD,3,15,34,BAL,SD,4,1,14,(:34) B.Pierce right end to SD 16 for -2 yards (C.Liuget).,3,10,2012 -20121125_BAL@SD,3,15,30,SD,BAL,1,10,84,(:30) R.Mathews left end to SD 24 for 8 yards (B.Pollard).,10,3,2012 -20121125_BAL@SD,4,15,0,SD,BAL,2,2,76,(15:00) R.Mathews left tackle to SD 28 for 4 yards (M.Kemoeatu A.McClellan).,10,3,2012 -20121125_BAL@SD,4,14,26,SD,BAL,1,10,72,(14:26) R.Mathews right end to SD 28 for no gain (B.Pollard).,10,3,2012 -20121125_BAL@SD,4,13,47,SD,BAL,2,10,72,(13:47) P.Rivers pass short left to M.Floyd ran ob at SD 41 for 13 yards.,10,3,2012 -20121125_BAL@SD,4,13,9,SD,BAL,1,10,59,(13:09) R.Mathews left tackle to SD 48 for 7 yards (B.Pollard C.Graham).,10,3,2012 -20121125_BAL@SD,4,12,21,SD,BAL,2,3,52,(12:21) PENALTY on SD-M.Harris False Start 5 yards enforced at SD 48 - No Play.,10,3,2012 -20121125_BAL@SD,4,11,55,SD,BAL,2,8,57,(11:55) (Shotgun) P.Rivers pass short left to J.Battle to BLT 47 for 10 yards (B.Pollard).,10,3,2012 -20121125_BAL@SD,4,11,10,SD,BAL,1,10,47,(11:10) P.Rivers pass incomplete deep right to D.Alexander [P.Kruger]. PENALTY on BLT-B.Pollard Personal Foul 15 yards enforced at BLT 47 - No Play.,10,3,2012 -20121125_BAL@SD,4,11,2,SD,BAL,1,10,32,(11:02) R.Mathews up the middle to BLT 30 for 2 yards (T.Cody).,10,3,2012 -20121125_BAL@SD,4,10,23,SD,BAL,2,8,30,(10:23) R.Mathews left guard to BLT 29 for 1 yard (J.McClain C.Upshaw).,10,3,2012 -20121125_BAL@SD,4,9,41,SD,BAL,3,7,29,(9:41) (Shotgun) R.Brown right tackle to BLT 16 for 13 yards (J.McClain).,10,3,2012 -20121125_BAL@SD,4,9,1,SD,BAL,1,10,16,(9:01) R.Mathews right guard to BLT 17 for -1 yards (A.Jones).,10,3,2012 -20121125_BAL@SD,4,8,16,SD,BAL,2,11,17,(8:16) (Shotgun) P.Rivers pass incomplete short right.,10,3,2012 -20121125_BAL@SD,4,8,9,SD,BAL,3,11,17,(8:09) (Shotgun) P.Rivers pass short right to R.Brown pushed ob at BLT 12 for 5 yards (P.Kruger).,10,3,2012 -20121125_BAL@SD,4,7,55,SD,BAL,4,6,12,(7:55) N.Novak 30 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,10,3,2012 -20121125_BAL@SD,4,7,55,SD,BAL,,,12,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,13,3,2012 -20121125_BAL@SD,4,7,51,BAL,SD,1,10,80,(7:51) (Shotgun) J.Flacco pass short right to J.Jones to BLT 32 for 12 yards (C.Liuget). Penalty on SD-M.Ingram Illegal Use of Hands declined.,3,13,2012 -20121125_BAL@SD,4,7,31,BAL,SD,1,10,68,(7:31) (Shotgun) J.Flacco pass incomplete short left to R.Rice.,3,13,2012 -20121125_BAL@SD,4,7,31,BAL,SD,2,10,68,(7:31) (Shotgun) R.Rice up the middle to BLT 36 for 4 yards (A.Gachkar).,3,13,2012 -20121125_BAL@SD,4,6,56,BAL,SD,3,6,64,(6:56) (Shotgun) J.Flacco pass deep left to J.Jones to SD 40 for 24 yards (C.Lynch M.Gilchrist).,3,13,2012 -20121125_BAL@SD,4,6,24,BAL,SD,1,10,40,(6:24) (Shotgun) J.Flacco pass short left to J.Jones to SD 34 for 6 yards (A.Cason).,3,13,2012 -20121125_BAL@SD,4,5,55,BAL,SD,2,4,34,(5:55) (Shotgun) J.Flacco pass short right to T.Smith to SD 30 for 4 yards (E.Weddle). PENALTY on BLT-A.Boldin Personal Foul 15 yards enforced between downs.,3,13,2012 -20121125_BAL@SD,4,5,1,BAL,SD,1,10,45,(5:01) J.Flacco pass deep middle to T.Smith to SD 23 for 22 yards (C.Lynch).,3,13,2012 -20121125_BAL@SD,4,5,1,BAL,SD,1,10,23,(5:01) (Shotgun) J.Flacco pass short right to T.Smith to SD 9 for 14 yards (C.Lynch).,3,13,2012 -20121125_BAL@SD,4,4,23,BAL,SD,1,9,9,(4:23) PENALTY on SD-A.Garay Neutral Zone Infraction 5 yards enforced at SD 9 - No Play.,3,13,2012 -20121125_BAL@SD,4,4,23,BAL,SD,1,4,4,(4:23) (Shotgun) J.Flacco pass short middle to D.Pitta for 4 yards TOUCHDOWN.,3,13,2012 -20121125_BAL@SD,4,4,23,BAL,SD,,,4,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,13,2012 -20121125_BAL@SD,4,4,23,BAL,SD,,,4,J.Tucker kicks 67 yards from BLT 35 to SD -2. C.Carr Touchback.,10,13,2012 -20121125_BAL@SD,4,4,19,SD,BAL,1,10,80,(4:19) P.Rivers pass short middle to R.Mathews to SD 23 for 3 yards (J.McClain A.McClellan).,13,10,2012 -20121125_BAL@SD,4,3,39,SD,BAL,2,7,77,(3:39) (Shotgun) P.Rivers pass incomplete short right to D.Alexander (C.Graham).,13,10,2012 -20121125_BAL@SD,4,3,34,SD,BAL,3,7,77,(3:34) (Shotgun) P.Rivers pass short left to R.Brown to SD 26 for 3 yards (B.Ayanbadejo).,13,10,2012 -20121125_BAL@SD,4,3,25,SD,BAL,4,4,74,(3:25) M.Scifres punts 57 yards to BLT 17 Center-K.Nelson. J.Jones pushed ob at BLT 40 for 23 yards (D.Williams).,13,10,2012 -20121125_BAL@SD,4,3,9,BAL,SD,1,10,60,(3:09) (Shotgun) J.Flacco pass incomplete short right to T.Doss (K.Reyes).,10,13,2012 -20121125_BAL@SD,4,3,4,BAL,SD,2,10,60,(3:04) (Shotgun) J.Flacco pass short left to D.Pitta to SD 44 for 16 yards (A.Gachkar).,10,13,2012 -20121125_BAL@SD,4,2,26,BAL,SD,1,10,44,(2:26) (Shotgun) J.Flacco pass short right to R.Rice to SD 49 for -5 yards (C.Liuget). PENALTY on BLT-M.Yanda Offensive Holding 10 yards enforced at SD 44 - No Play.,10,13,2012 -20121125_BAL@SD,4,2,18,BAL,SD,1,20,54,(2:18) (Shotgun) J.Flacco pass incomplete short right to A.Boldin (E.Weddle).,10,13,2012 -20121125_BAL@SD,4,2,12,BAL,SD,2,20,54,(2:12) (Shotgun) J.Flacco pass incomplete deep left to D.Pitta.,10,13,2012 -20121125_BAL@SD,4,2,7,BAL,SD,3,20,54,(2:07) (Shotgun) J.Flacco sacked at BLT 37 for -9 yards (A.Barnes). FUMBLES (A.Barnes) recovered by BLT-M.Oher at BLT 37. M.Oher to BLT 37 for no gain (S.Phillips).,10,13,2012 -20121125_BAL@SD,4,1,59,BAL,SD,4,29,63,(1:59) (Shotgun) J.Flacco pass short middle to R.Rice to SD 33 for 30 yards (Q.Jammer A.Cason). SD-E.Weddle was injured during the play. The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) J.Flacco pass short middle to R.Rice to SD 34 for 29 yards (Q.Jammer A.Cason). SD-E.Weddle was injured during the play.,10,13,2012 -20121125_BAL@SD,4,1,37,BAL,SD,1,10,34,(1:37) (Shotgun) J.Flacco pass short right to J.Jones to SD 34 for no gain (V.Martin).,10,13,2012 -20121125_BAL@SD,4,1,13,BAL,SD,2,10,34,(1:13) (Shotgun) J.Flacco pass short right to J.Jones to SD 26 for 8 yards (T.Spikes D.Williams).,10,13,2012 -20121125_BAL@SD,4,0,50,BAL,SD,3,2,26,(:50) (Shotgun) R.Rice right guard to SD 23 for 3 yards (T.Spikes).,10,13,2012 -20121125_BAL@SD,4,0,27,BAL,SD,1,10,23,(:27) (Shotgun) J.Flacco pass incomplete deep left to T.Smith.,10,13,2012 -20121125_BAL@SD,4,0,21,BAL,SD,2,10,23,(:21) (Shotgun) R.Rice up the middle to SD 20 for 3 yards (M.Ingram T.Spikes).,10,13,2012 -20121125_BAL@SD,4,0,3,BAL,SD,3,7,20,(:03) J.Tucker 38 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,10,13,2012 -20121125_BAL@SD,5,0,0,BAL,SD,,,20,J.Tucker kicks 74 yards from BLT 35 to SD -9. C.Carr to SD 16 for 25 yards (A.Jackson).,13,13,2012 -20121125_BAL@SD,5,-1,56,SD,BAL,1,10,84,(14:56) (Shotgun) R.Mathews up the middle to SD 19 for 3 yards (J.McClain H.Ngata).,13,13,2012 -20121125_BAL@SD,5,-1,16,SD,BAL,2,7,81,(14:16) (Shotgun) P.Rivers pass incomplete short right to R.McMichael.,13,13,2012 -20121125_BAL@SD,5,-1,11,SD,BAL,3,7,81,(14:11) (Shotgun) P.Rivers pass short left to D.Alexander to SD 33 for 14 yards (C.Williams).,13,13,2012 -20121125_BAL@SD,5,-2,31,SD,BAL,1,10,67,(13:31) (Shotgun) P.Rivers pass short right to D.Alexander to SD 39 for 6 yards (C.Graham).,13,13,2012 -20121125_BAL@SD,5,-3,53,SD,BAL,2,4,61,(12:53) (Shotgun) P.Rivers pass short right to S.Ajirotutu ran ob at SD 44 for 5 yards.,13,13,2012 -20121125_BAL@SD,5,-3,24,SD,BAL,1,10,56,(12:24) (Shotgun) R.Brown right tackle to SD 48 for 4 yards (A.Jones J.McClain).,13,13,2012 -20121125_BAL@SD,5,-4,41,SD,BAL,2,6,52,(11:41) (Shotgun) P.Rivers pass short left to A.Gates to 50 for 2 yards (B.Ayanbadejo).,13,13,2012 -20121125_BAL@SD,5,-5,56,SD,BAL,3,4,50,(10:56) (Shotgun) P.Rivers pass incomplete short left to D.Alexander (C.Williams).,13,13,2012 -20121125_BAL@SD,5,-5,52,SD,BAL,4,4,50,(10:52) M.Scifres punts 39 yards to BLT 11 Center-K.Nelson fair catch by T.Doss.,13,13,2012 -20121125_BAL@SD,5,-5,44,BAL,SD,1,10,89,(10:44) R.Rice up the middle to BLT 11 for no gain (V.Martin).,13,13,2012 -20121125_BAL@SD,5,-5,6,BAL,SD,2,10,89,(10:06) (Shotgun) J.Flacco pass incomplete short left to J.Jones (C.Liuget).,13,13,2012 -20121125_BAL@SD,5,-5,2,BAL,SD,3,10,89,(10:02) (Shotgun) J.Flacco pass short middle to A.Boldin to BLT 34 for 23 yards (S.Wright).,13,13,2012 -20121125_BAL@SD,5,-6,18,BAL,SD,1,10,66,(9:18) (Shotgun) R.Rice right end to BLT 46 for 12 yards (D.Williams Q.Jammer).,13,13,2012 -20121125_BAL@SD,5,-7,40,BAL,SD,1,10,54,(8:40) R.Rice left end to BLT 45 for -1 yards (D.Williams).,13,13,2012 -20121125_BAL@SD,5,-8,59,BAL,SD,2,11,55,(7:59) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 46 for 1 yard (S.Phillips).,13,13,2012 -20121125_BAL@SD,5,-8,16,BAL,SD,3,10,54,(7:16) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 48 for 2 yards (S.Wright).,13,13,2012 -20121125_BAL@SD,5,-9,35,BAL,SD,4,8,52,(6:35) S.Koch punts 52 yards to end zone Center-M.Cox Touchback.,13,13,2012 -20121125_BAL@SD,5,-9,27,SD,BAL,1,10,80,(6:27) (Shotgun) P.Rivers pass short right to R.Brown ran ob at SD 26 for 6 yards (B.Ayanbadejo C.Brown).,13,13,2012 -20121125_BAL@SD,5,-10,56,SD,BAL,2,4,74,(5:56) (Shotgun) R.Mathews up the middle to SD 27 for 1 yard (B.Pollard).,13,13,2012 -20121125_BAL@SD,5,-10,12,SD,BAL,3,3,73,(5:12) (Shotgun) P.Rivers pass incomplete short middle to D.Alexander (B.Ayanbadejo).,13,13,2012 -20121125_BAL@SD,5,-10,8,SD,BAL,4,3,73,(5:08) M.Scifres punts 63 yards to BLT 10 Center-K.Nelson. J.Jones to BLT 11 for 1 yard (S.Wright).,13,13,2012 -20121125_BAL@SD,5,-11,56,BAL,SD,1,10,89,(4:56) J.Flacco pass incomplete short right to T.Smith. PENALTY on SD-Q.Jammer Defensive Pass Interference 11 yards enforced at BLT 11 - No Play.,13,13,2012 -20121125_BAL@SD,5,-11,51,BAL,SD,1,10,78,(4:51) J.Flacco pass incomplete deep left to T.Smith (A.Cason).,13,13,2012 -20121125_BAL@SD,5,-11,43,BAL,SD,2,10,78,(4:43) (Shotgun) J.Flacco pass short left to R.Rice ran ob at BLT 28 for 6 yards (A.Cason).,13,13,2012 -20121125_BAL@SD,5,-11,37,BAL,SD,3,4,72,(4:37) (Shotgun) J.Flacco pass short middle to D.Pitta to BLT 39 for 11 yards (D.Williams).,13,13,2012 -20121125_BAL@SD,5,-12,59,BAL,SD,1,10,61,(3:59) R.Rice left end to BLT 44 for 5 yards (D.Williams).,13,13,2012 -20121125_BAL@SD,5,-12,20,BAL,SD,2,5,56,(3:20) (Shotgun) J.Flacco pass short left to T.Doss to SD 47 for 9 yards (A.Cason).,13,13,2012 -20121125_BAL@SD,5,-13,36,BAL,SD,1,10,47,(2:36) (Shotgun) J.Flacco pass incomplete short left to T.Smith [J.Johnson].,13,13,2012 -20121125_BAL@SD,5,-13,32,BAL,SD,2,10,47,(2:32) (Shotgun) J.Flacco pass incomplete short left to A.Boldin (S.Wright).,13,13,2012 -20121125_BAL@SD,5,-13,27,BAL,SD,3,10,47,(2:27) (Shotgun) J.Flacco pass deep right to T.Smith to SD 16 for 31 yards (Q.Jammer). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,13,2012 -20121125_BAL@SD,5,-13,0,BAL,SD,1,10,16,(2:00) J.Flacco kneels dead ball declared at SD 18 for -2 yards.,13,13,2012 -20121125_BAL@SD,5,-14,57,BAL,SD,2,12,18,(1:57) J.Flacco kneels dead ball declared at SD 19 for -1 yards.,13,13,2012 -20121125_BAL@SD,5,-14,54,BAL,SD,3,13,19,(1:54) J.Flacco kneels dead ball declared at SD 20 for -1 yards.,13,13,2012 -20121125_BAL@SD,5,-14,12,BAL,SD,4,14,20,(1:12) J.Tucker 38 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,13,13,2012 -20121125_BAL@SD,5,-14,12,BAL,SD,,,20,                      ,16,13,2012 -20121125_STL@ARI,1,-14,0,ARI,STL,,,20,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,0,0,2012 -20121125_STL@ARI,1,60,0,STL,ARI,1,10,80,(15:00) PENALTY on ARZ-D.Carter Encroachment 5 yards enforced at SL 20 - No Play.,0,0,2012 -20121125_STL@ARI,1,60,0,STL,ARI,1,5,75,(15:00) S.Jackson left tackle to SL 33 for 8 yards (Q.Groves).,0,0,2012 -20121125_STL@ARI,1,59,23,STL,ARI,1,10,67,(14:23) C.Givens left end to SL 34 for 1 yard (S.Acho).,0,0,2012 -20121125_STL@ARI,1,58,42,STL,ARI,2,9,66,(13:42) S.Bradford pass short left to M.Mulligan pushed ob at SL 49 for 15 yards (W.Gay).,0,0,2012 -20121125_STL@ARI,1,58,12,STL,ARI,1,10,51,(13:12) S.Jackson left tackle to ARZ 49 for 2 yards (P.Lenon).,0,0,2012 -20121125_STL@ARI,1,57,33,STL,ARI,2,8,49,(12:33) S.Jackson up the middle to ARZ 46 for 3 yards (D.Washington).,0,0,2012 -20121125_STL@ARI,1,56,49,STL,ARI,3,5,46,(11:49) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson.,0,0,2012 -20121125_STL@ARI,1,56,44,STL,ARI,4,5,46,(11:44) J.Hekker punts 37 yards to ARZ 9 Center-J.McQuaide fair catch by P.Peterson.,0,0,2012 -20121125_STL@ARI,1,56,36,ARI,STL,1,10,91,(11:36) C.Wells up the middle to ARZ 13 for 4 yards (J.Dunbar).,0,0,2012 -20121125_STL@ARI,1,56,3,ARI,STL,2,6,87,(11:03) C.Wells right tackle to ARZ 20 for 7 yards (C.Finnegan).,0,0,2012 -20121125_STL@ARI,1,55,29,ARI,STL,1,10,80,(10:29) R.Lindley pass short right to R.Housler to ARZ 26 for 6 yards (C.Finnegan).,0,0,2012 -20121125_STL@ARI,1,54,52,ARI,STL,2,4,74,(9:52) (Shotgun) L.Stephens-Howling up the middle to ARZ 27 for 1 yard (J.Dunbar).,0,0,2012 -20121125_STL@ARI,1,54,7,ARI,STL,3,3,73,(9:07) (Shotgun) R.Lindley pass short left to L.Fitzgerald to ARZ 39 for 12 yards (C.Finnegan).,0,0,2012 -20121125_STL@ARI,1,53,34,ARI,STL,1,10,61,(8:34) R.Lindley pass incomplete short left to L.Fitzgerald.,0,0,2012 -20121125_STL@ARI,1,53,30,ARI,STL,2,10,61,(8:30) (Shotgun) R.Lindley pass short right to A.Roberts to 50 for 11 yards (C.Finnegan).,0,0,2012 -20121125_STL@ARI,1,52,50,ARI,STL,1,10,50,(7:50) C.Wells left tackle to SL 46 for 4 yards (J.Jenkins). PENALTY on ARZ-N.Potter Offensive Holding 10 yards enforced at 50 - No Play.,0,0,2012 -20121125_STL@ARI,1,52,22,ARI,STL,1,20,60,(7:22) PENALTY on SL-R.Quinn Neutral Zone Infraction 5 yards enforced at ARZ 40 - No Play.,0,0,2012 -20121125_STL@ARI,1,52,6,ARI,STL,1,15,55,(7:06) (Shotgun) R.Lindley pass short middle to R.Housler to SL 44 for 11 yards (Q.Mikell; J.Laurinaitis).,0,0,2012 -20121125_STL@ARI,1,51,27,ARI,STL,2,4,44,(6:27) C.Wells up the middle to SL 43 for 1 yard (K.Langford). PENALTY on ARZ-A.Snyder Personal Foul 15 yards enforced at SL 43.,0,0,2012 -20121125_STL@ARI,1,51,27,ARI,STL,3,18,58,(6:27) R.Lindley pass short left to L.Fitzgerald to ARZ 48 for 6 yards (C.Finnegan). PENALTY on SL-Q.Mikell Personal Foul 15 yards enforced at ARZ 48.,0,0,2012 -20121125_STL@ARI,1,50,38,ARI,STL,1,10,37,(5:38) R.Lindley pass short right to L.Fitzgerald to SL 24 for 13 yards.,0,0,2012 -20121125_STL@ARI,1,50,1,ARI,STL,1,10,24,(5:01) C.Wells up the middle to SL 22 for 2 yards (R.McIntosh).,0,0,2012 -20121125_STL@ARI,1,49,18,ARI,STL,2,8,22,(4:18) R.Lindley pass short middle to A.Roberts to SL 1 for 21 yards (J.Jenkins).,0,0,2012 -20121125_STL@ARI,1,48,32,ARI,STL,1,1,1,(3:32) C.Wells up the middle to SL 1 for no gain (J.Cudjo J.Laurinaitis).,0,0,2012 -20121125_STL@ARI,1,47,51,ARI,STL,2,1,1,(2:51) C.Wells right tackle for 1 yard TOUCHDOWN.,0,0,2012 -20121125_STL@ARI,1,47,51,ARI,STL,,,1,(Kick formation) PENALTY on SL Defensive 12 On-field 5 yards enforced between downs.,0,0,2012 -20121125_STL@ARI,1,47,51,ARI,STL,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20121125_STL@ARI,1,47,51,ARI,STL,,,1,J.Feely kicks 60 yards from ARZ 40 to end zone Touchback.,7,0,2012 -20121125_STL@ARI,1,47,41,STL,ARI,1,10,80,(2:41) S.Bradford pass incomplete short left to L.Kendricks.,0,7,2012 -20121125_STL@ARI,1,47,34,STL,ARI,2,10,80,(2:34) (Shotgun) S.Bradford pass short left to C.Givens pushed ob at SL 45 for 25 yards (K.Rhodes).,0,7,2012 -20121125_STL@ARI,1,47,10,STL,ARI,1,10,55,(2:10) S.Jackson right tackle to SL 45 for no gain (D.Dockett; D.Washington).,0,7,2012 -20121125_STL@ARI,1,46,30,STL,ARI,2,10,55,(1:30) S.Bradford scrambles up the middle to SL 47 for 2 yards (S.Acho).,0,7,2012 -20121125_STL@ARI,1,45,44,STL,ARI,3,8,53,(:44) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson.,0,7,2012 -20121125_STL@ARI,1,45,38,STL,ARI,4,8,53,(:38) J.Hekker punts 48 yards to ARZ 5 Center-J.McQuaide. P.Peterson to ARZ 31 for 26 yards (C.Dahl).,0,7,2012 -20121125_STL@ARI,1,45,23,ARI,STL,1,10,69,(:23) C.Wells up the middle to ARZ 33 for 2 yards (M.Brockers).,7,0,2012 -20121125_STL@ARI,2,45,0,ARI,STL,2,8,67,(15:00) (Shotgun) R.Lindley pass short left intended for L.Stephens-Howling INTERCEPTED by J.Jenkins at ARZ 36. J.Jenkins for 36 yards TOUCHDOWN.,7,0,2012 -20121125_STL@ARI,2,45,0,STL,ARI,,,67,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 -20121125_STL@ARI,2,45,0,STL,ARI,,,67,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,7,7,2012 -20121125_STL@ARI,2,44,52,ARI,STL,1,10,80,(14:52) (Shotgun) R.Lindley pass incomplete deep right to R.Housler.,7,7,2012 -20121125_STL@ARI,2,44,47,ARI,STL,2,10,80,(14:47) W.Powell left tackle to ARZ 18 for -2 yards (J.Dunbar).,7,7,2012 -20121125_STL@ARI,2,44,6,ARI,STL,3,12,82,(14:06) (Shotgun) R.Lindley pass short right to A.Roberts to ARZ 22 for 4 yards (Q.Mikell).,7,7,2012 -20121125_STL@ARI,2,43,34,ARI,STL,4,8,78,(13:34) D.Zastudil punts 47 yards to SL 31 Center-M.Leach. A.Pettis pushed ob at SL 44 for 13 yards (A.Sherman). PENALTY on SL-B.Fletcher Offensive Holding 10 yards enforced at SL 31. Penalty on SL-J.Hull Offensive Holding declined.,7,7,2012 -20121125_STL@ARI,2,43,21,STL,ARI,1,10,79,(13:21) S.Jackson left tackle to SL 21 for no gain (S.Acho).,7,7,2012 -20121125_STL@ARI,2,42,42,STL,ARI,2,10,79,(12:42) S.Jackson right tackle to SL 26 for 5 yards (P.Peterson).,7,7,2012 -20121125_STL@ARI,2,42,1,STL,ARI,3,5,74,(12:01) (Shotgun) S.Bradford sacked at SL 17 for -9 yards (D.Washington).,7,7,2012 -20121125_STL@ARI,2,41,22,STL,ARI,4,14,83,(11:22) J.Hekker punts 48 yards to ARZ 35 Center-J.McQuaide. P.Peterson pushed ob at ARZ 35 for no gain (Q.Pointer).,7,7,2012 -20121125_STL@ARI,2,41,13,ARI,STL,1,10,65,(11:13) C.Wells right tackle to ARZ 36 for 1 yard (C.Finnegan; J.Laurinaitis).,7,7,2012 -20121125_STL@ARI,2,40,34,ARI,STL,2,9,64,(10:34) R.Lindley pass short middle to J.King to ARZ 45 for 9 yards (R.McIntosh).,7,7,2012 -20121125_STL@ARI,2,40,1,ARI,STL,1,10,55,(10:01) C.Wells up the middle to ARZ 47 for 2 yards (W.Hayes).,7,7,2012 -20121125_STL@ARI,2,39,20,ARI,STL,2,8,53,(9:20) R.Lindley pass deep left to R.Housler to SL 25 for 28 yards (C.Finnegan).,7,7,2012 -20121125_STL@ARI,2,38,37,ARI,STL,1,10,25,(8:37) A.Roberts left end to SL 12 for 13 yards (R.McIntosh).,7,7,2012 -20121125_STL@ARI,2,37,59,ARI,STL,1,10,12,(7:59) C.Wells right tackle for 12 yards TOUCHDOWN.,7,7,2012 -20121125_STL@ARI,2,37,59,ARI,STL,,,12,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,7,2012 -20121125_STL@ARI,2,37,59,ARI,STL,,,12,J.Feely kicks 71 yards from ARZ 35 to SL -6. C.Givens to SL 25 for 31 yards (L.Byrd). PENALTY on ARZ-S.Bradley Offside on Free Kick 5 yards enforced at SL 25.,14,7,2012 -20121125_STL@ARI,2,37,45,STL,ARI,1,10,70,(7:45) S.Bradford pass short right to C.Givens to SL 43 for 13 yards (A.Wilson).,7,14,2012 -20121125_STL@ARI,2,37,15,STL,ARI,1,10,57,(7:15) PENALTY on ARZ-N.Eason Encroachment 5 yards enforced at SL 43 - No Play.,7,14,2012 -20121125_STL@ARI,2,36,56,STL,ARI,1,5,52,(6:56) D.Richardson right tackle to ARZ 40 for 12 yards (G.Toler; J.Sanders). PENALTY on SL-L.Kendricks Illegal Motion 5 yards enforced at SL 48 - No Play.,7,14,2012 -20121125_STL@ARI,2,36,31,STL,ARI,1,10,57,(6:31) (Shotgun) S.Bradford pass incomplete short middle to C.Givens (M.Adams).,7,14,2012 -20121125_STL@ARI,2,36,26,STL,ARI,2,10,57,(6:26) S.Bradford pass deep left to D.Amendola to ARZ 19 for 38 yards (W.Gay).,7,14,2012 -20121125_STL@ARI,2,36,1,STL,ARI,1,10,19,(6:01) S.Jackson up the middle to ARZ 13 for 6 yards (P.Lenon).,7,14,2012 -20121125_STL@ARI,2,35,26,STL,ARI,2,4,13,(5:26) S.Jackson left tackle to ARZ 7 for 6 yards (D.Carter; K.Rhodes).,7,14,2012 -20121125_STL@ARI,2,34,46,STL,ARI,1,7,7,(4:46) S.Bradford pass short middle intended for A.Pettis INTERCEPTED by P.Peterson at ARZ 0. Touchback.,7,14,2012 -20121125_STL@ARI,2,34,36,ARI,STL,1,10,80,(4:36) R.Lindley pass incomplete deep left to L.Fitzgerald.,14,7,2012 -20121125_STL@ARI,2,34,31,ARI,STL,2,10,80,(4:31) C.Wells left tackle to ARZ 26 for 6 yards (J.Dunbar).,14,7,2012 -20121125_STL@ARI,2,33,48,ARI,STL,3,4,74,(3:48) (Shotgun) R.Lindley pass incomplete short right to R.Housler.,14,7,2012 -20121125_STL@ARI,2,33,44,ARI,STL,4,4,74,(3:44) D.Zastudil punts 52 yards to SL 22 Center-M.Leach. A.Pettis to SL 29 for 7 yards (J.Sanders; R.Johnson).,14,7,2012 -20121125_STL@ARI,2,33,32,STL,ARI,1,10,71,(3:32) S.Bradford pass incomplete short right to B.Gibson.,7,14,2012 -20121125_STL@ARI,2,33,26,STL,ARI,2,10,71,(3:26) K.Clemens pass incomplete short middle to S.Jackson (D.Dockett).,7,14,2012 -20121125_STL@ARI,2,33,21,STL,ARI,3,10,71,(3:21) (Shotgun) S.Bradford pass deep right to C.Givens to SL 47 for 18 yards (G.Toler).,7,14,2012 -20121125_STL@ARI,2,33,6,STL,ARI,1,10,53,(3:06) S.Jackson right tackle to ARZ 49 for 4 yards (P.Lenon).,7,14,2012 -20121125_STL@ARI,2,32,38,STL,ARI,2,6,49,(2:38) S.Jackson left tackle to ARZ 42 for 7 yards (D.Washington).,7,14,2012 -20121125_STL@ARI,2,32,16,STL,ARI,1,10,42,(2:16) S.Jackson left tackle to ARZ 38 for 4 yards (S.Acho). PENALTY on ARZ Illegal Substitution 5 yards enforced at ARZ 42 - No Play.,7,14,2012 -20121125_STL@ARI,2,32,0,STL,ARI,1,5,37,(2:00) (Shotgun) S.Bradford pass deep middle to L.Kendricks for 37 yards TOUCHDOWN.,7,14,2012 -20121125_STL@ARI,2,32,0,STL,ARI,,,37,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,7,14,2012 -20121125_STL@ARI,2,32,0,STL,ARI,,,37,G.Zuerlein kicks 67 yards from SL 35 to ARZ -2. W.Powell to ARZ 23 for 25 yards (R.McIntosh).,14,14,2012 -20121125_STL@ARI,2,31,47,ARI,STL,1,10,77,(1:47) (Shotgun) R.Lindley pass short middle to R.Housler to ARZ 31 for 8 yards (J.Laurinaitis).,14,14,2012 -20121125_STL@ARI,2,31,27,ARI,STL,2,2,69,(1:27) (Shotgun) R.Lindley pass incomplete deep left to L.Fitzgerald.,14,14,2012 -20121125_STL@ARI,2,31,22,ARI,STL,3,2,69,(1:22) (Shotgun) R.Lindley pass short right to M.Floyd to ARZ 36 for 5 yards (T.Johnson). Penalty on SL-M.Brockers Defensive Offside declined.,14,14,2012 -20121125_STL@ARI,2,31,16,ARI,STL,1,10,64,(1:16) R.Lindley pass short middle to W.Powell to ARZ 46 for 10 yards (C.Finnegan).,14,14,2012 -20121125_STL@ARI,2,30,54,ARI,STL,1,10,54,(:54) R.Lindley pass short left to A.Roberts to ARZ 48 for 2 yards (C.Dahl).,14,14,2012 -20121125_STL@ARI,2,30,46,ARI,STL,2,8,52,(:46) (Shotgun) R.Lindley pass short left to R.Housler to SL 45 for 7 yards (J.Dunbar).,14,14,2012 -20121125_STL@ARI,2,30,44,ARI,STL,3,1,45,(:44) R.Lindley up the middle to SL 42 for 3 yards (M.Brockers).,14,14,2012 -20121125_STL@ARI,2,30,23,ARI,STL,1,10,44,(:23) (Shotgun) R.Lindley pass short right to M.Floyd to SL 39 for 5 yards (J.Dunbar).,14,14,2012 -20121125_STL@ARI,2,30,16,ARI,STL,2,5,39,(:16) (Shotgun) R.Lindley pass short middle to W.Powell pushed ob at SL 14 for 25 yards (J.Jenkins).,14,14,2012 -20121125_STL@ARI,2,30,7,ARI,STL,1,10,14,(:07) R.Lindley pass incomplete short right to A.Roberts.,14,14,2012 -20121125_STL@ARI,2,30,3,ARI,STL,2,10,14,(:03) J.Feely 32 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,14,14,2012 -20121125_STL@ARI,3,30,0,STL,ARI,,,14,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,14,17,2012 -20121125_STL@ARI,3,30,0,ARI,STL,1,10,80,(15:00) C.Wells left tackle to ARZ 25 for 5 yards (J.Laurinaitis).,17,14,2012 -20121125_STL@ARI,3,29,29,ARI,STL,2,5,75,(14:29) W.Powell right tackle to ARZ 36 for 11 yards (M.Brockers; J.Laurinaitis).,17,14,2012 -20121125_STL@ARI,3,28,53,ARI,STL,1,10,64,(13:53) C.Wells right tackle to ARZ 40 for 4 yards (J.Laurinaitis).,17,14,2012 -20121125_STL@ARI,3,28,14,ARI,STL,2,6,60,(13:14) (Shotgun) R.Lindley pass short right to W.Powell to ARZ 49 for 9 yards (C.Finnegan J.Laurinaitis).,17,14,2012 -20121125_STL@ARI,3,27,38,ARI,STL,1,10,51,(12:38) W.Powell left tackle to SL 49 for 2 yards (R.McIntosh; J.Dunbar).,17,14,2012 -20121125_STL@ARI,3,27,1,ARI,STL,2,8,49,(12:01) R.Lindley pass incomplete short right to A.Roberts (Q.Mikell).,17,14,2012 -20121125_STL@ARI,3,26,56,ARI,STL,3,8,49,(11:56) (Shotgun) R.Lindley pass short right to M.Floyd pushed ob at SL 42 for 7 yards (Q.Mikell). PENALTY on SL-R.Quinn Defensive Offside 5 yards enforced at SL 49 - No Play.,17,14,2012 -20121125_STL@ARI,3,26,24,ARI,STL,3,3,44,(11:24) (Shotgun) R.Lindley pass incomplete short middle to L.Fitzgerald. Penalty on ARZ-R.Housler Offensive Pass Interference declined.,17,14,2012 -20121125_STL@ARI,3,26,17,ARI,STL,4,3,44,(11:17) D.Zastudil punts 36 yards to SL 8 Center-M.Leach fair catch by A.Pettis.,17,14,2012 -20121125_STL@ARI,3,26,11,STL,ARI,1,10,92,(11:11) S.Jackson right tackle pushed ob at ARZ 46 for 46 yards (K.Rhodes).,14,17,2012 -20121125_STL@ARI,3,25,31,STL,ARI,1,10,46,(10:31) D.Richardson up the middle to ARZ 37 for 9 yards (Q.Groves). ARZ-Q.Groves was injured during the play. His return is Questionable.,14,17,2012 -20121125_STL@ARI,3,25,6,STL,ARI,2,1,37,(10:06) S.Bradford pass deep left to C.Givens for 37 yards TOUCHDOWN.,14,17,2012 -20121125_STL@ARI,3,25,6,STL,ARI,,,37,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,14,17,2012 -20121125_STL@ARI,3,25,6,STL,ARI,,,37,G.Zuerlein kicks 71 yards from SL 35 to ARZ -6. W.Powell to ARZ 19 for 25 yards (Q.Mikell).,21,17,2012 -20121125_STL@ARI,3,24,54,ARI,STL,1,10,81,(9:54) R.Lindley pass short right to A.Roberts to ARZ 31 for 12 yards (C.Finnegan).,17,21,2012 -20121125_STL@ARI,3,24,16,ARI,STL,1,10,69,(9:16) C.Wells up the middle to ARZ 30 for -1 yards (R.McIntosh; J.Laurinaitis).,17,21,2012 -20121125_STL@ARI,3,23,37,ARI,STL,2,11,70,(8:37) (Shotgun) R.Lindley pass deep middle intended for L.Fitzgerald INTERCEPTED by C.Dahl at 50. C.Dahl to ARZ 12 for 38 yards (D.Colledge).,17,21,2012 -20121125_STL@ARI,3,23,24,STL,ARI,1,10,12,(8:24) S.Jackson up the middle to ARZ 8 for 4 yards (P.Lenon).,21,17,2012 -20121125_STL@ARI,3,22,44,STL,ARI,2,6,8,(7:44) S.Jackson left tackle to ARZ 1 for 7 yards (D.Washington). PENALTY on SL-R.Saffold Offensive Holding 10 yards enforced at ARZ 8 - No Play.,21,17,2012 -20121125_STL@ARI,3,22,15,STL,ARI,2,16,18,(7:15) (Shotgun) S.Bradford sacked at ARZ 26 for -8 yards (Q.Groves). FUMBLES (Q.Groves) and recovers at ARZ 20. S.Bradford to ARZ 20 for no gain (D.Dockett).,21,17,2012 -20121125_STL@ARI,3,21,37,STL,ARI,3,18,20,(6:37) (Shotgun) D.Richardson up the middle to ARZ 17 for 3 yards (D.Washington).,21,17,2012 -20121125_STL@ARI,3,21,37,STL,ARI,4,15,17,(6:37) G.Zuerlein 35 yard field goal is No Good Wide Left Center-J.McQuaide Holder-J.Hekker.,21,17,2012 -20121125_STL@ARI,3,20,53,ARI,STL,1,10,75,(5:53) R.Lindley sacked at ARZ 24 for -1 yards (R.McIntosh).,17,21,2012 -20121125_STL@ARI,3,20,53,ARI,STL,2,11,76,(5:53) C.Wells left tackle to ARZ 24 for no gain (K.Langford).,17,21,2012 -20121125_STL@ARI,3,19,38,ARI,STL,3,11,76,(4:38) (Shotgun) R.Lindley pass incomplete short middle to W.Powell (K.Langford).,17,21,2012 -20121125_STL@ARI,3,19,32,ARI,STL,4,11,76,(4:32) D.Zastudil punts 49 yards to SL 27 Center-M.Leach. A.Pettis to SL 28 for 1 yard (J.Bethel).,17,21,2012 -20121125_STL@ARI,3,19,23,STL,ARI,1,10,72,(4:23) D.Richardson left tackle to SL 35 for 7 yards (Q.Groves).,21,17,2012 -20121125_STL@ARI,3,18,49,STL,ARI,2,3,65,(3:49) D.Richardson left tackle pushed ob at SL 42 for 7 yards (G.Toler).,21,17,2012 -20121125_STL@ARI,3,18,13,STL,ARI,1,10,58,(3:13) S.Bradford pass incomplete short right.,21,17,2012 -20121125_STL@ARI,3,18,5,STL,ARI,2,10,58,(3:05) (Shotgun) S.Bradford pass incomplete deep left to B.Quick.,21,17,2012 -20121125_STL@ARI,3,17,58,STL,ARI,3,10,58,(2:58) (Shotgun) S.Bradford pass incomplete short right to A.Pettis.,21,17,2012 -20121125_STL@ARI,3,17,51,STL,ARI,4,10,58,(2:51) J.Hekker punts 48 yards to ARZ 10 Center-J.McQuaide. P.Peterson to ARZ 22 for 12 yards (R.McIntosh).,21,17,2012 -20121125_STL@ARI,3,17,39,ARI,STL,1,10,78,(2:39) R.Lindley pass deep left intended for L.Fitzgerald INTERCEPTED by J.Jenkins at ARZ 39. J.Jenkins for 39 yards TOUCHDOWN.,17,21,2012 -20121125_STL@ARI,3,17,39,STL,ARI,,,78,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,21,17,2012 -20121125_STL@ARI,3,17,39,STL,ARI,,,78,G.Zuerlein kicks 67 yards from SL 35 to ARZ -2. W.Powell to ARZ 16 for 18 yards (Q.Pointer).,28,17,2012 -20121125_STL@ARI,3,17,22,ARI,STL,1,10,84,(2:22) C.Wells right tackle to ARZ 18 for 2 yards (J.Dunbar).,17,28,2012 -20121125_STL@ARI,3,16,44,ARI,STL,2,8,82,(1:44) (Shotgun) R.Lindley pass short middle to R.Housler to ARZ 25 for 7 yards (C.Finnegan; J.Dunbar).,17,28,2012 -20121125_STL@ARI,3,16,8,ARI,STL,3,1,75,(1:08) C.Wells left tackle to ARZ 25 for no gain (E.Sims; J.Laurinaitis).,17,28,2012 -20121125_STL@ARI,3,15,22,ARI,STL,4,1,75,(:22) D.Zastudil punts 51 yards to SL 24 Center-M.Leach fair catch by A.Pettis.,17,28,2012 -20121125_STL@ARI,3,15,14,STL,ARI,1,10,76,(:14) S.Jackson up the middle to SL 27 for 3 yards (A.Wilson).,28,17,2012 -20121125_STL@ARI,4,15,0,STL,ARI,2,7,73,(15:00) S.Jackson up the middle to SL 31 for 4 yards (Q.Groves).,28,17,2012 -20121125_STL@ARI,4,14,25,STL,ARI,3,3,69,(14:25) S.Jackson up the middle to SL 33 for 2 yards (Q.Groves; D.Washington).,28,17,2012 -20121125_STL@ARI,4,13,38,STL,ARI,4,1,67,(13:38) J.Hekker punts 43 yards to ARZ 24 Center-J.McQuaide out of bounds.,28,17,2012 -20121125_STL@ARI,4,13,30,ARI,STL,1,10,76,(13:30) R.Lindley pass incomplete deep left to R.Housler.,17,28,2012 -20121125_STL@ARI,4,13,23,ARI,STL,2,10,76,(13:23) (Shotgun) R.Lindley pass short right to A.Roberts to ARZ 29 for 5 yards (J.Laurinaitis).,17,28,2012 -20121125_STL@ARI,4,12,43,ARI,STL,3,5,71,(12:43) (Shotgun) R.Lindley pass incomplete short right to A.Roberts.,17,28,2012 -20121125_STL@ARI,4,12,38,ARI,STL,4,5,71,(12:38) D.Zastudil punts 54 yards to SL 17 Center-M.Leach. A.Pettis to SL 27 for 10 yards (M.Adams; Q.Groves).,17,28,2012 -20121125_STL@ARI,4,12,26,STL,ARI,1,10,73,(12:26) S.Jackson left end to SL 36 for 9 yards (P.Lenon).,28,17,2012 -20121125_STL@ARI,4,12,26,STL,ARI,2,1,64,(12:26) PENALTY on SL-R.Turner False Start 5 yards enforced at SL 36 - No Play.,28,17,2012 -20121125_STL@ARI,4,11,32,STL,ARI,2,6,69,(11:32) S.Jackson up the middle to SL 36 for 5 yards (K.Rhodes D.Washington).,28,17,2012 -20121125_STL@ARI,4,11,32,STL,ARI,3,1,64,(11:32) S.Jackson right tackle to ARZ 49 for 15 yards (K.Rhodes).,28,17,2012 -20121125_STL@ARI,4,10,20,STL,ARI,1,10,49,(10:20) D.Richardson left tackle to ARZ 44 for 5 yards (P.Peterson).,28,17,2012 -20121125_STL@ARI,4,9,37,STL,ARI,2,5,44,(9:37) D.Richardson up the middle to ARZ 45 for -1 yards (D.Williams).,28,17,2012 -20121125_STL@ARI,4,8,51,STL,ARI,3,6,45,(8:51) (Shotgun) S.Bradford pass deep left to C.Givens pushed ob at ARZ 23 for 22 yards (K.Rhodes).,28,17,2012 -20121125_STL@ARI,4,8,19,STL,ARI,1,10,23,(8:19) S.Jackson up the middle to ARZ 22 for 1 yard (R.Talley). PENALTY on ARZ-R.Talley Unnecessary Roughness 11 yards enforced at ARZ 22.,28,17,2012 -20121125_STL@ARI,4,7,39,STL,ARI,1,10,11,(7:39) S.Jackson right tackle to ARZ 8 for 3 yards (D.Washington R.Talley).,28,17,2012 -20121125_STL@ARI,4,6,58,STL,ARI,2,7,8,(6:58) S.Jackson up the middle to ARZ 2 for 6 yards (D.Washington).,28,17,2012 -20121125_STL@ARI,4,6,18,STL,ARI,3,1,2,(6:18) S.Jackson right tackle to ARZ 2 for no gain (K.Rhodes).,28,17,2012 -20121125_STL@ARI,4,5,32,STL,ARI,4,1,2,(5:32) G.Zuerlein 19 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,28,17,2012 -20121125_STL@ARI,4,5,32,STL,ARI,,,2,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,31,17,2012 -20121125_STL@ARI,4,5,27,ARI,STL,1,10,80,(5:27) (Shotgun) R.Lindley pass short right to A.Roberts to ARZ 25 for 5 yards (C.Finnegan).,17,31,2012 -20121125_STL@ARI,4,5,5,ARI,STL,2,5,75,(5:05) (No Huddle Shotgun) R.Lindley pass short left to R.Housler to ARZ 32 for 7 yards (J.Laurinaitis).,17,31,2012 -20121125_STL@ARI,4,4,45,ARI,STL,1,10,68,(4:45) (Shotgun) R.Lindley pass to W.Powell to ARZ 37 for 5 yards (J.Laurinaitis).,17,31,2012 -20121125_STL@ARI,4,4,27,ARI,STL,2,5,63,(4:27) (Shotgun) R.Lindley pass short left to A.Roberts to SL 43 for 20 yards (Q.Mikell).,17,31,2012 -20121125_STL@ARI,4,4,3,ARI,STL,1,10,43,(4:03) (Shotgun) R.Lindley pass to M.Floyd to SL 28 for 15 yards (T.Johnson).,17,31,2012 -20121125_STL@ARI,4,3,56,ARI,STL,1,10,28,(3:56) (Shotgun) R.Lindley pass incomplete to L.Byrd. PENALTY on SL-J.Dunbar Unnecessary Roughness 14 yards enforced at SL 28.,17,31,2012 -20121125_STL@ARI,4,3,45,ARI,STL,1,10,14,(3:45) (Shotgun) R.Lindley pass incomplete to A.Roberts.,17,31,2012 -20121125_STL@ARI,4,3,40,ARI,STL,2,10,14,(3:40) (Shotgun) R.Lindley pass incomplete short middle to W.Powell.,17,31,2012 -20121125_STL@ARI,4,3,35,ARI,STL,3,10,14,(3:35) (Shotgun) R.Lindley pass to W.Powell to SL 10 for 4 yards (T.Johnson).,17,31,2012 -20121125_STL@ARI,4,3,0,ARI,STL,4,6,10,(3:00) (Shotgun) R.Lindley pass short right intended for L.Fitzgerald INTERCEPTED by J.Laurinaitis at SL 8. J.Laurinaitis to SL 26 for 18 yards (R.Lindley).,17,31,2012 -20121125_STL@ARI,4,2,49,STL,ARI,1,10,74,(2:49) S.Jackson up the middle to SL 27 for 1 yard (D.Williams; P.Peterson).,31,17,2012 -20121125_STL@ARI,4,2,44,STL,ARI,2,9,73,(2:44) S.Jackson up the middle to SL 26 for -1 yards (D.Williams).,31,17,2012 -20121125_STL@ARI,4,2,41,STL,ARI,3,10,74,(2:41) D.Richardson right tackle to SL 26 for no gain. PENALTY on SL-S.Wells Offensive Holding 10 yards enforced at SL 26 - No Play.,31,17,2012 -20121125_STL@ARI,4,2,33,STL,ARI,3,20,84,(2:33) D.Richardson left tackle to SL 18 for 2 yards (D.Williams).,31,17,2012 -20121125_STL@ARI,4,2,28,STL,ARI,4,18,82,(2:28) J.Hekker punts 36 yards to ARZ 46 Center-J.McQuaide. P.Peterson pushed ob at SL 33 for 21 yards (J.McQuaide).,31,17,2012 -20121125_STL@ARI,4,2,19,ARI,STL,1,10,33,(2:19) (Shotgun) R.Lindley pass short right to A.Roberts to SL 21 for 12 yards (J.Laurinaitis).,17,31,2012 -20121125_STL@ARI,4,2,0,ARI,STL,1,10,21,(2:00) R.Lindley pass incomplete deep right to L.Fitzgerald.,17,31,2012 -20121125_STL@ARI,4,1,55,ARI,STL,2,10,21,(1:55) (Shotgun) R.Lindley pass incomplete deep right to W.Powell.,17,31,2012 -20121125_STL@ARI,4,1,49,ARI,STL,3,10,21,(1:49) (Shotgun) R.Lindley pass short right to M.Floyd pushed ob at SL 11 for 10 yards (B.Fletcher).,17,31,2012 -20121125_STL@ARI,4,1,44,ARI,STL,1,10,11,(1:44) R.Lindley sacked at SL 21 for -10 yards (W.Hayes).,17,31,2012 -20121125_STL@ARI,4,2,0,ARI,STL,2,20,21,(2:00) R.Lindley pass incomplete short left to L.Fitzgerald.,17,31,2012 -20121125_STL@ARI,4,1,14,ARI,STL,3,20,21,(1:14) R.Lindley pass short right to W.Powell to SL 11 for 10 yards (B.Fletcher).,17,31,2012 -20121125_STL@ARI,4,2,0,ARI,STL,4,10,11,(2:00) R.Lindley pass short right to R.Housler to SL 3 for 8 yards (J.Dunbar).,17,31,2012 -20121125_STL@ARI,4,0,44,STL,ARI,1,10,97,(:44) S.Bradford kneels to SL 2 for -1 yards.,31,17,2012 -20121125_STL@ARI,4,0,3,STL,ARI,2,11,98,(:03) S.Bradford kneels to SL 2 for no gain.,31,17,2012 -20121125_STL@ARI,4,0,3,STL,ARI,,,98,                      ,31,17,2012 -20121125_SF@NO,1,0,0,SF,NO,,,98,D.Akers kicks 70 yards from SF 35 to NO -5. T.Cadet to NO 26 for 31 yards (B.Miller).,0,0,2012 -20121125_SF@NO,1,59,54,NO,SF,1,10,74,(14:54) D.Brees pass short right to D.Thomas pushed ob at NO 28 for 2 yards (D.Whitner). Pass 1 YAC 1,0,0,2012 -20121125_SF@NO,1,59,15,NO,SF,2,8,72,(14:15) M.Ingram left guard to NO 28 for no gain (Ald.Smith).,0,0,2012 -20121125_SF@NO,1,58,38,NO,SF,3,8,72,(13:38) (Shotgun) D.Brees pass incomplete short middle to D.Thomas.,0,0,2012 -20121125_SF@NO,1,58,33,NO,SF,4,8,72,(13:33) T.Morstead punts 56 yards to SF 16 Center-J.Drescher. T.Ginn to SF 29 for 13 yards (J.Casillas).,0,0,2012 -20121125_SF@NO,1,58,22,SF,NO,1,10,71,(13:22) F.Gore left guard to SF 31 for 2 yards (J.Vilma; R.Harper).,0,0,2012 -20121125_SF@NO,1,57,52,SF,NO,2,8,69,(12:52) K.Hunter left end to SF 35 for 4 yards (M.Jenkins; S.Ellis).,0,0,2012 -20121125_SF@NO,1,57,5,SF,NO,3,4,65,(12:05) (Shotgun) C.Kaepernick pass short right to M.Manningham to SF 38 for 3 yards (P.Robinson).,0,0,2012 -20121125_SF@NO,1,56,24,SF,NO,4,1,62,(11:24) A.Lee punts 52 yards to NO 10 Center-B.Jennings fair catch by D.Sproles.,0,0,2012 -20121125_SF@NO,1,56,16,NO,SF,1,10,90,(11:16) C.Ivory right guard to NO 12 for 2 yards (J.Smith).,0,0,2012 -20121125_SF@NO,1,55,42,NO,SF,2,8,88,(10:42) (Shotgun) D.Brees pass short right to D.Sproles to NO 16 for 4 yards (D.Whitner; C.Culliver). Pass -4 YAC 8,0,0,2012 -20121125_SF@NO,1,55,6,NO,SF,3,4,84,(10:06) (Shotgun) D.Brees pass short left to D.Sproles to NO 17 for 1 yard (D.Whitner). Pass 1 YAC 0,0,0,2012 -20121125_SF@NO,1,54,35,NO,SF,4,3,83,(9:35) T.Morstead punts 45 yards to SF 38 Center-J.Drescher out of bounds.,0,0,2012 -20121125_SF@NO,1,54,27,SF,NO,1,10,62,(9:27) F.Gore left tackle to SF 40 for 2 yards (W.Smith; D.Hawthorne).,0,0,2012 -20121125_SF@NO,1,53,45,SF,NO,2,8,60,(8:45) (Shotgun) C.Kaepernick pass short right to M.Manningham pushed ob at NO 20 for 40 yards (M.Jenkins). Pass 4 YAC 36,0,0,2012 -20121125_SF@NO,1,53,10,SF,NO,1,10,20,(8:10) C.Kaepernick pass short right to M.Manningham to NO 7 for 13 yards (J.Greer). Pass 13 YAC 0,0,0,2012 -20121125_SF@NO,1,52,28,SF,NO,1,7,7,(7:28) (Shotgun) C.Kaepernick left end for 7 yards TOUCHDOWN.,0,0,2012 -20121125_SF@NO,1,52,28,SF,NO,,,7,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121125_SF@NO,1,52,28,SF,NO,,,7,D.Akers kicks 70 yards from SF 35 to NO -5. T.Cadet to NO 21 for 26 yards (D.Walker).,7,0,2012 -20121125_SF@NO,1,52,17,NO,SF,1,10,79,(7:17) M.Ingram right guard to NO 24 for 3 yards (R.McDonald).,0,7,2012 -20121125_SF@NO,1,51,36,NO,SF,2,7,76,(6:36) D.Brees pass short left to M.Colston pushed ob at NO 37 for 13 yards (D.Goldson). Pass 9 YAC 4,0,7,2012 -20121125_SF@NO,1,51,5,NO,SF,1,10,63,(6:05) D.Brees pass deep left to J.Morgan to SF 30 for 33 yards (T.Brown). Pass 32 YAC 1,0,7,2012 -20121125_SF@NO,1,50,17,NO,SF,1,10,30,(5:17) (Shotgun) D.Brees pass short left to J.Collins pushed ob at SF 23 for 7 yards (Ald.Smith). Pass 4 YAC 3,0,7,2012 -20121125_SF@NO,1,49,48,NO,SF,2,3,23,(4:48) M.Ingram left guard to SF 17 for 6 yards (D.Whitner).,0,7,2012 -20121125_SF@NO,1,49,12,NO,SF,1,10,17,(4:12) M.Ingram right guard to SF 15 for 2 yards (P.Willis). NO-B.Harris was injured during the play. He is Out.,0,7,2012 -20121125_SF@NO,1,48,45,NO,SF,2,8,15,(3:45) (Shotgun) D.Brees pass short left to L.Moore to SF 8 for 7 yards (D.Goldson). Pass 5 YAC 2,0,7,2012 -20121125_SF@NO,1,48,10,NO,SF,3,1,8,(3:10) M.Ingram right guard to SF 6 for 2 yards (N.Bowman).,0,7,2012 -20121125_SF@NO,1,47,31,NO,SF,1,6,6,(2:31) P.Thomas left guard to SF 6 for no gain (N.Bowman; J.Smith).,0,7,2012 -20121125_SF@NO,1,46,56,NO,SF,2,6,6,(1:56) D.Brees pass short right to D.Thomas for 6 yards TOUCHDOWN. Pass 2 YAC 4,0,7,2012 -20121125_SF@NO,1,46,56,NO,SF,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,7,2012 -20121125_SF@NO,1,46,56,NO,SF,,,6,T.Morstead kicks 62 yards from NO 35 to SF 3. K.Williams to SF 26 for 23 yards (I.Abdul-Quddus).,7,7,2012 -20121125_SF@NO,1,46,40,SF,NO,1,10,79,(1:40) C.Kaepernick scrambles left end pushed ob at SF 29 for 8 yards (C.Jordan).,7,7,2012 -20121125_SF@NO,1,46,12,SF,NO,2,7,71,(1:12) C.Kaepernick pass short right to V.Davis to SF 38 for 9 yards (C.Jordan). PENALTY on SF-J.Goodwin Offensive Holding 10 yards enforced at SF 29 - No Play.,7,7,2012 -20121125_SF@NO,1,45,44,SF,NO,2,17,81,(:44) C.Kaepernick pass short right to B.Miller to SF 45 for 26 yards (C.Lofton; R.Harper). Pass 5 YAC 21,7,7,2012 -20121125_SF@NO,2,45,0,SF,NO,1,10,55,(15:00) C.Kaepernick scrambles right end to SF 46 for 1 yard (C.Jordan).,7,7,2012 -20121125_SF@NO,2,44,18,SF,NO,2,9,54,(14:18) C.Kaepernick pass incomplete short right to F.Gore.,7,7,2012 -20121125_SF@NO,2,44,18,SF,NO,3,9,54,(14:18) (Shotgun) PENALTY on SF Delay of Game 5 yards enforced at SF 46 - No Play.,7,7,2012 -20121125_SF@NO,2,44,12,SF,NO,3,14,59,(14:12) (Shotgun) C.Kaepernick pass incomplete short left to M.Crabtree.,7,7,2012 -20121125_SF@NO,2,44,4,SF,NO,4,14,59,(14:04) A.Lee punts 59 yards to end zone Center-B.Jennings Touchback.,7,7,2012 -20121125_SF@NO,2,43,55,NO,SF,1,10,80,(13:55) M.Ingram right guard to NO 22 for 2 yards (A.Brooks).,7,7,2012 -20121125_SF@NO,2,43,16,NO,SF,2,8,78,(13:16) (Shotgun) D.Brees pass short right to M.Colston to NO 27 for 5 yards (D.Whitner). Pass 4 YAC 1,7,7,2012 -20121125_SF@NO,2,43,16,NO,SF,3,3,73,(13:16) (Shotgun) PENALTY on SF-Ald.Smith Neutral Zone Infraction 5 yards enforced at NO 27 - No Play.,7,7,2012 -20121125_SF@NO,2,42,21,NO,SF,1,10,68,(12:21) C.Ivory right guard to NO 35 for 3 yards (R.McDonald).,7,7,2012 -20121125_SF@NO,2,41,37,NO,SF,2,7,65,(11:37) D.Brees pass incomplete short left to M.Ingram.,7,7,2012 -20121125_SF@NO,2,41,32,NO,SF,3,7,65,(11:32) (Shotgun) D.Brees pass short middle to J.Graham to NO 47 for 12 yards (P.Willis). Pass 8 YAC 4,7,7,2012 -20121125_SF@NO,2,40,48,NO,SF,1,10,53,(10:48) C.Ivory right guard to SF 46 for 7 yards (P.Willis; D.Goldson).,7,7,2012 -20121125_SF@NO,2,40,4,NO,SF,2,3,46,(10:04) D.Brees pass short middle to D.Thomas to SF 39 for 7 yards (A.Brooks). Penalty on SF-T.Brown Illegal Contact declined. Pass 5 YAC 2,7,7,2012 -20121125_SF@NO,2,39,41,NO,SF,1,10,39,(9:41) C.Ivory right guard to SF 39 for no gain (N.Bowman; D.Whitner).,7,7,2012 -20121125_SF@NO,2,39,3,NO,SF,2,10,39,(9:03) D.Brees pass incomplete deep right to L.Moore.,7,7,2012 -20121125_SF@NO,2,38,57,NO,SF,3,10,39,(8:57) (Shotgun) D.Brees pass incomplete short right. PENALTY on NO-D.Brees Intentional Grounding 20 yards enforced at SF 39.,7,7,2012 -20121125_SF@NO,2,38,50,NO,SF,4,30,59,(8:50) T.Morstead punts 47 yards to SF 12 Center-J.Drescher. T.Ginn MUFFS catch RECOVERED by NO-R.Bush at SF 11. R.Bush to SF 11 for no gain (T.Ginn).,7,7,2012 -20121125_SF@NO,2,38,41,NO,SF,1,10,11,(8:41) D.Brees pass short left to D.Sproles to SF 10 for 1 yard (Ald.Smith). Pass 1 YAC 0,7,7,2012 -20121125_SF@NO,2,37,58,NO,SF,2,9,10,(7:58) (Shotgun) D.Brees pass short middle to M.Colston for 10 yards TOUCHDOWN. Pass 10 YAC 0,7,7,2012 -20121125_SF@NO,2,37,58,NO,SF,,,10,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,7,2012 -20121125_SF@NO,2,37,58,NO,SF,,,10,T.Morstead kicks 74 yards from NO 35 to SF -9. K.Williams Touchback.,14,7,2012 -20121125_SF@NO,2,37,53,SF,NO,1,10,80,(7:53) F.Gore left guard to SF 24 for 4 yards (C.Jordan).,7,14,2012 -20121125_SF@NO,2,37,17,SF,NO,2,6,76,(7:17) C.Kaepernick pass incomplete short left to V.Davis.,7,14,2012 -20121125_SF@NO,2,37,12,SF,NO,3,6,76,(7:12) (Shotgun) C.Kaepernick scrambles up the middle to SF 39 for 15 yards (M.Jenkins).,7,14,2012 -20121125_SF@NO,2,36,27,SF,NO,1,10,61,(6:27) C.Kaepernick pass short right to D.Walker to 50 for 11 yards (M.Jenkins; T.Johnson). Pass 9 YAC 2,7,14,2012 -20121125_SF@NO,2,35,53,SF,NO,1,10,50,(5:53) C.Kaepernick pass short right to M.Crabtree to NO 14 for 36 yards (R.Harper). PENALTY on SF-A.Davis Offensive Holding 10 yards enforced at 50 - No Play.,7,14,2012 -20121125_SF@NO,2,35,19,SF,NO,1,20,60,(5:19) (Shotgun) K.Hunter left tackle to SF 41 for 1 yard (W.Smith).,7,14,2012 -20121125_SF@NO,2,34,37,SF,NO,2,19,59,(4:37) C.Kaepernick pass incomplete deep right (T.McBride).,7,14,2012 -20121125_SF@NO,2,34,31,SF,NO,3,19,59,(4:31) (Shotgun) C.Kaepernick pass short right to F.Gore to NO 47 for 12 yards (I.Abdul-Quddus). Pass 0 YAC 12,7,14,2012 -20121125_SF@NO,2,33,46,SF,NO,4,7,47,(3:46) A.Lee punts 36 yards to NO 11 Center-B.Jennings fair catch by D.Sproles.,7,14,2012 -20121125_SF@NO,2,33,38,NO,SF,1,10,89,(3:38) M.Ingram right guard to NO 16 for 5 yards (R.Jean Francois; N.Bowman).,14,7,2012 -20121125_SF@NO,2,32,59,NO,SF,2,5,84,(2:59) (Shotgun) D.Brees pass short left to J.Graham to NO 20 for 4 yards (P.Willis).,14,7,2012 -20121125_SF@NO,2,32,24,NO,SF,3,1,80,(2:24) M.Ingram left guard to NO 20 for no gain (I.Sopoaga). New Orleans challenged the first down ruling and the play was Upheld. (Timeout #1.),14,7,2012 -20121125_SF@NO,2,32,0,NO,SF,4,1,80,(2:00) T.Morstead punts 53 yards to SF 27 Center-J.Drescher fair catch by K.Williams.,14,7,2012 -20121125_SF@NO,2,31,53,SF,NO,1,10,73,(1:53) (Shotgun) C.Kaepernick pass short left to M.Manningham pushed ob at SF 34 for 7 yards (C.Lofton; P.Robinson). Pass 2 YAC 5,7,14,2012 -20121125_SF@NO,2,31,46,SF,NO,2,3,66,(1:46) (Shotgun) C.Kaepernick left tackle to SF 35 for 1 yard (W.Smith).,7,14,2012 -20121125_SF@NO,2,31,11,SF,NO,3,2,65,(1:11) (Shotgun) F.Gore right tackle to SF 39 for 4 yards (I.Abdul-Quddus; W.Smith).,7,14,2012 -20121125_SF@NO,2,30,43,SF,NO,1,10,61,(:43) (Shotgun) C.Kaepernick pass deep left intended for K.Williams INTERCEPTED by P.Robinson at NO 44. P.Robinson to NO 44 for no gain (K.Williams).,7,14,2012 -20121125_SF@NO,2,30,38,NO,SF,1,10,56,(:38) (Shotgun) D.Brees pass incomplete deep left to D.Henderson.,14,7,2012 -20121125_SF@NO,2,30,31,NO,SF,2,10,56,(:31) (Shotgun) D.Brees pass short middle intended for J.Graham INTERCEPTED by A.Brooks at 50. A.Brooks for 50 yards TOUCHDOWN.,14,7,2012 -20121125_SF@NO,2,30,31,SF,NO,,,56,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,14,2012 -20121125_SF@NO,2,30,31,SF,NO,,,56,D.Akers kicks 70 yards from SF 35 to NO -5. T.Cadet to NO 18 for 23 yards (T.Gooden).,14,14,2012 -20121125_SF@NO,2,30,17,NO,SF,1,10,82,(:17) D.Brees kneels to NO 17 for -1 yards.,14,14,2012 -20121125_SF@NO,3,30,0,NO,SF,,,82,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,14,14,2012 -20121125_SF@NO,3,30,0,SF,NO,1,10,80,(15:00) F.Gore left tackle to SF 24 for 4 yards (W.Smith; D.Hawthorne).,14,14,2012 -20121125_SF@NO,3,29,19,SF,NO,2,6,76,(14:19) F.Gore left tackle to SF 28 for 4 yards (S.Ellis).,14,14,2012 -20121125_SF@NO,3,28,40,SF,NO,3,2,72,(13:40) C.Kaepernick pass deep left to D.Walker pushed ob at NO 27 for 45 yards (M.Jenkins) [S.Ellis]. Pass 23 YAC 22,14,14,2012 -20121125_SF@NO,3,28,10,SF,NO,1,10,27,(13:10) C.Kaepernick pass incomplete short right to M.Crabtree (P.Robinson) [S.Ellis].,14,14,2012 -20121125_SF@NO,3,28,6,SF,NO,2,10,27,(13:06) K.Hunter left end to NO 6 for 21 yards (J.Greer).,14,14,2012 -20121125_SF@NO,3,27,24,SF,NO,1,6,6,(12:24) C.Kaepernick pass short right to F.Gore for 6 yards TOUCHDOWN. Pass 1 YAC 5,14,14,2012 -20121125_SF@NO,3,27,24,SF,NO,,,6,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,14,14,2012 -20121125_SF@NO,3,27,24,SF,NO,,,6,D.Akers kicks 71 yards from SF 35 to NO -6. T.Cadet to NO 30 for 36 yards (P.Cox).,21,14,2012 -20121125_SF@NO,3,27,10,NO,SF,1,10,70,(12:10) (Shotgun) D.Brees sacked at NO 22 for -8 yards (J.Smith).,14,21,2012 -20121125_SF@NO,3,26,42,NO,SF,2,18,78,(11:42) (Shotgun) D.Brees pass deep middle intended for M.Colston INTERCEPTED by D.Whitner at NO 42. D.Whitner for 42 yards TOUCHDOWN. NO-M.Colston was injured during the play. His return is Questionable.,14,21,2012 -20121125_SF@NO,3,26,42,SF,NO,,,78,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,21,14,2012 -20121125_SF@NO,3,26,42,SF,NO,,,78,D.Akers kicks 67 yards from SF 35 to NO -2. T.Cadet Touchback.,28,14,2012 -20121125_SF@NO,3,26,30,NO,SF,1,10,80,(11:30) C.Ivory right tackle to NO 27 for 7 yards (A.Brooks).,14,28,2012 -20121125_SF@NO,3,25,52,NO,SF,2,3,73,(10:52) C.Ivory right guard to NO 31 for 4 yards (P.Willis; I.Sopoaga).,14,28,2012 -20121125_SF@NO,3,25,14,NO,SF,1,10,69,(10:14) D.Brees pass short left to D.Thomas to NO 40 for 9 yards (P.Willis). Pass 8 YAC 1,14,28,2012 -20121125_SF@NO,3,24,36,NO,SF,2,1,60,(9:36) M.Ingram left guard to NO 47 for 7 yards (P.Willis).,14,28,2012 -20121125_SF@NO,3,23,56,NO,SF,1,10,53,(8:56) D.Brees pass deep middle to L.Moore to SF 10 for 43 yards (T.Brown). Penalty on SF-T.Brown Defensive Pass Interference declined. Pass 43 YAC 0,14,28,2012 -20121125_SF@NO,3,23,35,NO,SF,1,10,10,(8:35) C.Ivory right guard to SF 5 for 5 yards (D.Whitner).,14,28,2012 -20121125_SF@NO,3,22,54,NO,SF,2,5,5,(7:54) D.Brees pass short right to J.Graham to SF 3 for 2 yards (C.Rogers). PENALTY on SF-C.Culliver Defensive Holding 3 yards enforced at SF 5 - No Play.,14,28,2012 -20121125_SF@NO,3,22,28,NO,SF,1,2,2,(7:28) (Shotgun) D.Brees pass incomplete short left to L.Moore.,14,28,2012 -20121125_SF@NO,3,22,24,NO,SF,2,2,2,(7:24) D.Brees pass short right to J.Collins for 2 yards TOUCHDOWN. Pass 0 YAC 2,14,28,2012 -20121125_SF@NO,3,22,24,NO,SF,,,2,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,14,28,2012 -20121125_SF@NO,3,22,24,NO,SF,,,2,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,21,28,2012 -20121125_SF@NO,3,22,19,SF,NO,1,10,80,(7:19) C.Kaepernick pass short middle to M.Crabtree to SF 26 for 6 yards (D.Hawthorne). Pass 2 YAC 4,28,21,2012 -20121125_SF@NO,3,21,39,SF,NO,2,4,74,(6:39) B.Jacobs right tackle to SF 28 for 2 yards (M.Jenkins). PENALTY on SF-L.Davis Offensive Holding 10 yards enforced at SF 26 - No Play.,28,21,2012 -20121125_SF@NO,3,21,14,SF,NO,2,14,84,(6:14) (Shotgun) C.Kaepernick pass incomplete short left to K.Hunter.,28,21,2012 -20121125_SF@NO,3,21,9,SF,NO,3,14,84,(6:09) (Shotgun) PENALTY on SF Delay of Game 5 yards enforced at SF 16 - No Play.,28,21,2012 -20121125_SF@NO,3,21,3,SF,NO,3,19,89,(6:03) (Shotgun) F.Gore left guard to SF 22 for 11 yards (R.Harper; C.Lofton).,28,21,2012 -20121125_SF@NO,3,20,23,SF,NO,4,8,78,(5:23) A.Lee punts 40 yards to NO 38 Center-B.Jennings. D.Sproles to NO 41 for 3 yards (C.Spillman).,28,21,2012 -20121125_SF@NO,3,20,13,NO,SF,1,10,59,(5:13) C.Ivory left guard to NO 47 for 6 yards (T.Brown; D.Goldson).,21,28,2012 -20121125_SF@NO,3,19,29,NO,SF,2,4,53,(4:29) (Shotgun) D.Brees pass incomplete short left to J.Graham.,21,28,2012 -20121125_SF@NO,3,19,24,NO,SF,3,4,53,(4:24) (Shotgun) D.Brees pass short right to D.Sproles to SF 42 for 11 yards (C.Culliver). Pass 2 YAC 9,21,28,2012 -20121125_SF@NO,3,18,41,NO,SF,1,10,42,(3:41) M.Ingram left guard to SF 42 for no gain (R.Jean Francois).,21,28,2012 -20121125_SF@NO,3,18,6,NO,SF,2,10,42,(3:06) D.Brees pass incomplete deep left to J.Morgan (C.Rogers). PENALTY on NO-J.Morgan Offensive Pass Interference 10 yards enforced at SF 42 - No Play.,21,28,2012 -20121125_SF@NO,3,17,59,NO,SF,2,20,52,(2:59) (Shotgun) D.Brees pass incomplete short middle to P.Thomas.,21,28,2012 -20121125_SF@NO,3,17,55,NO,SF,3,20,52,(2:55) (Shotgun) D.Brees sacked at NO 44 for -4 yards (Ald.Smith).,21,28,2012 -20121125_SF@NO,3,17,25,NO,SF,4,24,56,(2:25) T.Morstead punts 50 yards to SF 6 Center-J.Drescher fair catch by K.Williams.,21,28,2012 -20121125_SF@NO,3,17,18,SF,NO,1,10,94,(2:18) F.Gore right guard to SF 8 for 2 yards (C.Jordan).,28,21,2012 -20121125_SF@NO,3,16,40,SF,NO,2,8,92,(1:40) C.Kaepernick pass short right to M.Crabtree to SF 23 for 15 yards (R.Harper; J.Greer). Pass 14 YAC 1,28,21,2012 -20121125_SF@NO,3,16,4,SF,NO,1,10,77,(1:04) K.Hunter left end to SF 25 for 2 yards (J.Vilma; B.Bunkley). SF-K.Hunter was injured during the play. His return is Probable. SF-K.Williams was injured during the play. His return is Probable.,28,21,2012 -20121125_SF@NO,3,15,37,SF,NO,2,8,75,(:37) C.Kaepernick pass short right to M.Manningham to SF 31 for 6 yards (J.Greer). Pass 2 YAC 4,28,21,2012 -20121125_SF@NO,4,15,0,SF,NO,3,2,69,(15:00) (Shotgun) C.Kaepernick pass short left to M.Crabtree to SF 36 for 5 yards (C.Lofton). Pass 2 YAC 3,28,21,2012 -20121125_SF@NO,4,14,23,SF,NO,1,10,64,(14:23) F.Gore right tackle to SF 35 for -1 yards (C.Jordan; S.Ellis).,28,21,2012 -20121125_SF@NO,4,13,45,SF,NO,2,11,65,(13:45) (Shotgun) C.Kaepernick left end to SF 35 for no gain (R.Harper).,28,21,2012 -20121125_SF@NO,4,13,0,SF,NO,3,11,65,(13:00) (Shotgun) C.Kaepernick pass deep middle to D.Walker to NO 40 for 25 yards (I.Abdul-Quddus). NO-I.Abdul-Quddus was injured during the play. His return is Questionable. Pass 25 YAC 0,28,21,2012 -20121125_SF@NO,4,12,38,SF,NO,1,10,40,(12:38) C.Kaepernick pass short right to B.Miller to NO 38 for 2 yards (J.Vilma). Pass -4 YAC 6,28,21,2012 -20121125_SF@NO,4,12,1,SF,NO,2,8,38,(12:01) A.Dixon left end to NO 33 for 5 yards (M.Jenkins).,28,21,2012 -20121125_SF@NO,4,11,17,SF,NO,3,3,33,(11:17) C.Kaepernick pass short right to B.Miller to NO 24 for 9 yards (D.Hawthorne; T.Johnson). Pass -1 YAC 10,28,21,2012 -20121125_SF@NO,4,10,32,SF,NO,1,10,24,(10:32) F.Gore left end to NO 10 for 14 yards (R.Harper; J.Greer).,28,21,2012 -20121125_SF@NO,4,9,50,SF,NO,1,10,10,(9:50) (Shotgun) PENALTY on SF False Start 5 yards enforced at NO 10 - No Play.,28,21,2012 -20121125_SF@NO,4,9,23,SF,NO,1,15,15,(9:23) F.Gore left guard to NO 5 for 10 yards (C.Lofton; T.Johnson).,28,21,2012 -20121125_SF@NO,4,8,38,SF,NO,2,5,5,(8:38) C.Kaepernick pass incomplete short right to R.Moss (M.Jenkins).,28,21,2012 -20121125_SF@NO,4,8,34,SF,NO,3,5,5,(8:34) (Shotgun) F.Gore left tackle to NO 9 for -4 yards (C.Lofton).,28,21,2012 -20121125_SF@NO,4,7,53,SF,NO,4,9,9,(7:53) D.Akers 27 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,28,21,2012 -20121125_SF@NO,4,7,53,SF,NO,,,9,D.Akers kicks 74 yards from SF 35 to NO -9. T.Cadet to NO 23 for 32 yards (T.Brock).,31,21,2012 -20121125_SF@NO,4,7,46,NO,SF,1,10,77,(7:46) D.Brees sacked at NO 15 for -8 yards (sack split by Ald.Smith and J.Smith).,21,31,2012 -20121125_SF@NO,4,7,9,NO,SF,2,18,85,(7:09) (Shotgun) D.Brees pass incomplete short right to D.Henderson. New Orleans challenged the pass completion ruling and the play was REVERSED. (Shotgun) D.Brees pass short right to D.Henderson to NO 21 for 6 yards (C.Culliver). Pass 6 YAC 0,21,31,2012 -20121125_SF@NO,4,6,51,NO,SF,3,12,79,(6:51) (Shotgun) D.Brees pass incomplete short right to L.Moore. PENALTY on SF-C.Culliver Defensive Holding 5 yards enforced at NO 21 - No Play.,21,31,2012 -20121125_SF@NO,4,6,44,NO,SF,1,10,74,(6:44) (Shotgun) D.Brees pass short right to L.Moore to NO 37 for 11 yards (D.Goldson; D.Whitner). NO-L.Moore was injured during the play. His return is Probable. Pass 8 YAC 3 San Francisco challenged the fumble ruling and the play was Upheld. (Timeout #1.),21,31,2012 -20121125_SF@NO,4,6,35,NO,SF,1,10,63,(6:35) (Shotgun) D.Brees pass incomplete short middle to D.Sproles.,21,31,2012 -20121125_SF@NO,4,6,31,NO,SF,2,10,63,(6:31) (Shotgun) D.Brees pass short middle to M.Colston to NO 45 for 8 yards (D.Goldson). Pass 8 YAC 0,21,31,2012 -20121125_SF@NO,4,5,53,NO,SF,3,2,55,(5:53) (Shotgun) D.Brees sacked at NO 36 for -9 yards (sack split by A.Brooks and P.Willis).,21,31,2012 -20121125_SF@NO,4,5,12,NO,SF,4,11,64,(5:12) (Shotgun) D.Brees pass incomplete short left to J.Morgan (T.Brown).,21,31,2012 -20121125_SF@NO,4,5,6,SF,NO,1,10,36,(5:06) F.Gore left tackle to NO 37 for -1 yards (R.Harper).,31,21,2012 -20121125_SF@NO,4,5,0,SF,NO,2,11,37,(5:00) F.Gore left end to NO 32 for 5 yards (C.Lofton).,31,21,2012 -20121125_SF@NO,4,4,53,SF,NO,3,6,32,(4:53) C.Kaepernick pass incomplete short right.,31,21,2012 -20121125_SF@NO,4,4,47,SF,NO,4,6,32,(4:47) D.Akers 50 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,31,21,2012 -20121125_SF@NO,4,4,42,NO,SF,1,10,60,(4:42) (Shotgun) D.Brees sacked at NO 33 for -7 yards (A.Brooks).,21,31,2012 -20121125_SF@NO,4,4,15,NO,SF,2,17,67,(4:15) (Shotgun) D.Brees pass short right to D.Sproles pushed ob at NO 40 for 7 yards (P.Willis). Pass 3 YAC 4,21,31,2012 -20121125_SF@NO,4,4,9,NO,SF,3,10,60,(4:09) (Shotgun) D.Brees pass short right to D.Sproles pushed ob at NO 46 for 6 yards (N.Bowman). Pass 3 YAC 3,21,31,2012 -20121125_SF@NO,4,4,4,NO,SF,4,4,54,(4:04) (Shotgun) D.Brees pass incomplete deep left to L.Moore.,21,31,2012 -20121125_SF@NO,4,3,58,SF,NO,1,10,45,(3:58) F.Gore right end to NO 34 for 11 yards (M.Jenkins; S.Ellis). Note that the line of scrimmage changed to the 45 on the change of possession.,31,21,2012 -20121125_SF@NO,4,3,49,SF,NO,1,10,34,(3:49) F.Gore left guard to NO 29 for 5 yards (D.Hawthorne; S.Ellis).,31,21,2012 -20121125_SF@NO,4,3,8,SF,NO,2,5,29,(3:08) F.Gore left tackle to NO 24 for 5 yards (W.Smith; A.Hicks). PENALTY on NO-C.Lofton Face Mask (15 Yards) 12 yards enforced at NO 24.,31,21,2012 -20121125_SF@NO,4,2,57,SF,NO,1,10,12,(2:57) F.Gore left tackle to NO 10 for 2 yards (C.Lofton).,31,21,2012 -20121125_SF@NO,4,2,20,SF,NO,2,8,10,(2:20) F.Gore left tackle for 10 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on SF-M.Iupati Offensive Holding 10 yards enforced at NO 10 - No Play.,31,21,2012 -20121125_SF@NO,4,2,14,SF,NO,2,18,20,(2:14) B.Jacobs left tackle to NO 19 for 1 yard (J.Vilma).,31,21,2012 -20121125_SF@NO,4,2,0,SF,NO,3,17,19,(2:00) F.Gore right tackle to NO 15 for 4 yards (D.Hawthorne; C.Lofton).,31,21,2012 -20121125_SF@NO,4,1,13,SF,NO,4,13,15,(1:13) D.Akers 33 yard field goal is BLOCKED (M.Jenkins) Center-B.Jennings Holder-A.Lee RECOVERED by NO-M.Jenkins at NO 22. PENALTY on NO-B.Bunkley Personal Foul 11 yards enforced at NO 22. NO #77 B.Bunkley was disqualified from the game.,31,21,2012 -20121125_SF@NO,4,1,5,NO,SF,1,10,89,(1:05) (Shotgun) D.Brees pass incomplete deep right to D.Henderson.,21,31,2012 -20121125_SF@NO,4,1,0,NO,SF,2,10,89,(1:00) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,21,31,2012 -20121125_SF@NO,4,0,56,NO,SF,3,10,89,(:56) (Shotgun) D.Brees pass short right to J.Graham to NO 19 for 8 yards (N.Bowman). Pass 8 YAC 0,21,31,2012 -20121125_SF@NO,4,0,31,NO,SF,4,2,81,(:31) (Shotgun) D.Brees pass short middle to J.Graham to NO 28 for 9 yards (P.Willis). Pass 6 YAC 3,21,31,2012 -20121125_SF@NO,4,0,13,NO,SF,1,10,72,(:13) (Shotgun) D.Brees pass short left to D.Sproles ran ob at SF 37 for 35 yards (T.Brown). Pass -1 YAC 36,21,31,2012 -20121125_SF@NO,4,0,4,NO,SF,1,10,37,(:04) D.Brees kneels to SF 38 for -1 yards.,21,31,2012 -20121125_SF@NO,4,0,4,NO,SF,,,37,                      ,21,31,2012 -20121125_GB@NYG,1,0,0,GB,NYG,,,37,M.Crosby kicks 67 yards from GB 35 to NYG -2. D.Wilson to NYG 26 for 28 yards (R.Francois J.Boykin).,0,0,2012 -20121125_GB@NYG,1,59,54,NYG,GB,1,10,74,(14:54) A.Bradshaw left tackle to NYG 30 for 4 yards (B.Jones C.Wilson).,0,0,2012 -20121125_GB@NYG,1,59,14,NYG,GB,2,6,70,(14:14) E.Manning pass short left to H.Nicks pushed ob at NYG 39 for 9 yards (D.House).,0,0,2012 -20121125_GB@NYG,1,58,44,NYG,GB,1,10,61,(13:44) E.Manning pass incomplete short middle to V.Cruz.,0,0,2012 -20121125_GB@NYG,1,58,39,NYG,GB,2,10,61,(13:39) E.Manning pass short right to A.Bradshaw to GB 2 for 59 yards (D.House).,0,0,2012 -20121125_GB@NYG,1,57,52,NYG,GB,1,2,2,(12:52) E.Manning pass incomplete short left to H.Hynoski.,0,0,2012 -20121125_GB@NYG,1,57,43,NYG,GB,2,2,2,(12:43) A.Brown left tackle for 2 yards TOUCHDOWN.,0,0,2012 -20121125_GB@NYG,1,57,43,NYG,GB,,,2,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20121125_GB@NYG,1,57,43,NYG,GB,,,2,L.Tynes kicks 67 yards from NYG 35 to GB -2. R.Cobb to GB 23 for 25 yards (T.Sash).,7,0,2012 -20121125_GB@NYG,1,57,33,GB,NYG,1,10,77,(12:33) J.Starks left tackle to GB 26 for 3 yards (K.Phillips).,0,7,2012 -20121125_GB@NYG,1,56,58,GB,NYG,2,7,74,(11:58) A.Green right tackle to GB 33 for 7 yards (L.Joseph).,0,7,2012 -20121125_GB@NYG,1,56,26,GB,NYG,1,10,67,(11:26) A.Rodgers pass short right to J.Kuhn pushed ob at GB 39 for 6 yards (M.Boley).,0,7,2012 -20121125_GB@NYG,1,55,58,GB,NYG,2,4,61,(10:58) A.Rodgers pass deep right to J.Nelson for 61 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,0,7,2012 -20121125_GB@NYG,1,55,58,GB,NYG,,,61,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,7,2012 -20121125_GB@NYG,1,55,58,GB,NYG,,,61,M.Crosby kicks 69 yards from GB 35 to NYG -4. D.Wilson to NYG 17 for 21 yards (J.Bush).,7,7,2012 -20121125_GB@NYG,1,55,40,NYG,GB,1,10,83,(10:40) (Shotgun) A.Brown left end to NYG 21 for 4 yards (B.Raji D.Moses).,7,7,2012 -20121125_GB@NYG,1,55,6,NYG,GB,2,6,79,(10:06) E.Manning pass incomplete short left to H.Hynoski.,7,7,2012 -20121125_GB@NYG,1,54,56,NYG,GB,3,6,79,(9:56) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (C.Hayward).,7,7,2012 -20121125_GB@NYG,1,54,52,NYG,GB,4,6,79,(9:52) S.Weatherford punts 48 yards to GB 31 Center-Z.DeOssie. R.Cobb to GB 46 for 15 yards (Z.DeOssie).,7,7,2012 -20121125_GB@NYG,1,54,39,GB,NYG,1,10,54,(9:39) (Shotgun) R.Cobb left end pushed ob at NYG 42 for 12 yards (P.Amukamara). End around.,7,7,2012 -20121125_GB@NYG,1,54,9,GB,NYG,1,10,42,(9:09) J.Starks left tackle to NYG 37 for 5 yards (C.Blackburn M.Boley).,7,7,2012 -20121125_GB@NYG,1,53,34,GB,NYG,2,5,37,(8:34) J.Kuhn up the middle to NYG 35 for 2 yards (C.Canty L.Joseph).,7,7,2012 -20121125_GB@NYG,1,52,51,GB,NYG,3,3,35,(7:51) (Shotgun) A.Rodgers sacked at NYG 37 for -2 yards (C.Canty).,7,7,2012 -20121125_GB@NYG,1,52,21,GB,NYG,4,5,37,(7:21) M.Crosby 55 yard field goal is No Good Wide Left Center-B.Goode Holder-T.Masthay.,7,7,2012 -20121125_GB@NYG,1,52,15,NYG,GB,1,10,55,(7:15) A.Bradshaw left end to 50 for 5 yards (A.Hawk).,7,7,2012 -20121125_GB@NYG,1,51,43,NYG,GB,2,5,50,(6:43) A.Bradshaw right end to GB 42 for 8 yards (B.Jones).,7,7,2012 -20121125_GB@NYG,1,51,5,NYG,GB,1,10,42,(6:05) E.Manning pass incomplete short right to A.Bradshaw. PENALTY on GB-A.Hawk Illegal Contact 5 yards enforced at GB 42 - No Play.,7,7,2012 -20121125_GB@NYG,1,50,58,NYG,GB,1,10,37,(5:58) A.Bradshaw right end to GB 31 for 6 yards (F.Zombo A.Hawk).,7,7,2012 -20121125_GB@NYG,1,50,15,NYG,GB,2,4,31,(5:15) A.Bradshaw left tackle to GB 29 for 2 yards (R.Pickett).,7,7,2012 -20121125_GB@NYG,1,49,33,NYG,GB,3,2,29,(4:33) (Shotgun) PENALTY on NYG-E.Manning False Start 5 yards enforced at GB 29 - No Play.,7,7,2012 -20121125_GB@NYG,1,49,8,NYG,GB,3,7,34,(4:08) (Shotgun) E.Manning scrambles up the middle to GB 21 for 13 yards (T.Williams).,7,7,2012 -20121125_GB@NYG,1,48,24,NYG,GB,1,10,21,(3:24) A.Brown right end pushed ob at GB 16 for 5 yards (A.Hawk).,7,7,2012 -20121125_GB@NYG,1,47,52,NYG,GB,2,5,16,(2:52) E.Manning pass incomplete short right to H.Nicks (T.Williams).,7,7,2012 -20121125_GB@NYG,1,47,44,NYG,GB,3,5,16,(2:44) (Shotgun) E.Manning pass deep middle to R.Randle for 16 yards TOUCHDOWN.,7,7,2012 -20121125_GB@NYG,1,47,44,NYG,GB,,,16,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,7,2012 -20121125_GB@NYG,1,47,44,NYG,GB,,,16,L.Tynes kicks 67 yards from NYG 35 to GB -2. R.Cobb to GB 28 for 30 yards (A.Rolle).,14,7,2012 -20121125_GB@NYG,1,47,29,GB,NYG,1,10,72,(2:29) (Shotgun) A.Rodgers pass short right intended for R.Cobb INTERCEPTED by C.Webster at GB 33. C.Webster pushed ob at GB 8 for 25 yards (A.Rodgers). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) A.Rodgers pass short right intended for R.Cobb INTERCEPTED by C.Webster at GB 33. C.Webster to GB 33 for no gain (R.Cobb).,7,14,2012 -20121125_GB@NYG,1,47,26,NYG,GB,1,10,33,(2:26) (Shotgun) E.Manning pass short middle to H.Nicks to GB 33 for no gain (M.Jennings).,14,7,2012 -20121125_GB@NYG,1,46,55,NYG,GB,2,10,33,(1:55) A.Bradshaw left guard to GB 24 for 9 yards (M.Jennings M.Burnett).,14,7,2012 -20121125_GB@NYG,1,46,13,NYG,GB,3,1,24,(1:13) A.Bradshaw up the middle to GB 25 for -1 yards (B.Jones M.Burnett).,14,7,2012 -20121125_GB@NYG,1,45,29,NYG,GB,4,2,25,(:29) L.Tynes 43 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,14,7,2012 -20121125_GB@NYG,1,45,29,NYG,GB,,,25,L.Tynes kicks 65 yards from NYG 35 to GB 0. R.Cobb to GB 21 for 21 yards (K.Rivers W.Hill).,17,7,2012 -20121125_GB@NYG,1,45,16,GB,NYG,1,10,79,(:16) (Shotgun) A.Rodgers sacked at GB 13 for -8 yards (C.Blackburn).,7,17,2012 -20121125_GB@NYG,2,45,0,GB,NYG,2,18,87,(15:00) (Shotgun) A.Rodgers scrambles up the middle to GB 18 for 5 yards (A.Rolle).,7,17,2012 -20121125_GB@NYG,2,44,25,GB,NYG,3,13,82,(14:25) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 24 for 6 yards (A.Rolle).,7,17,2012 -20121125_GB@NYG,2,43,51,GB,NYG,4,7,76,(13:51) T.Masthay punts 37 yards to NYG 39 Center-B.Goode downed by GB-J.Bush.,7,17,2012 -20121125_GB@NYG,2,43,35,NYG,GB,1,10,61,(13:35) (Shotgun) E.Manning pass incomplete deep middle to H.Nicks (D.House).,17,7,2012 -20121125_GB@NYG,2,43,29,NYG,GB,2,10,61,(13:29) A.Brown left tackle to NYG 40 for 1 yard (J.Worthy D.Moses).,17,7,2012 -20121125_GB@NYG,2,42,48,NYG,GB,3,9,60,(12:48) (Shotgun) E.Manning pass deep right to H.Nicks to GB 35 for 25 yards (M.Burnett).,17,7,2012 -20121125_GB@NYG,2,42,3,NYG,GB,1,10,35,(12:03) E.Manning pass short left to M.Bennett to GB 23 for 12 yards (A.Hawk) [E.Walden].,17,7,2012 -20121125_GB@NYG,2,41,18,NYG,GB,1,10,23,(11:18) A.Bradshaw left end to GB 13 for 10 yards (M.Burnett M.Jennings).,17,7,2012 -20121125_GB@NYG,2,40,34,NYG,GB,1,10,13,(10:34) A.Brown right guard to GB 9 for 4 yards (E.Walden).,17,7,2012 -20121125_GB@NYG,2,39,50,NYG,GB,2,6,9,(9:50) E.Manning pass incomplete short left to H.Nicks.,17,7,2012 -20121125_GB@NYG,2,39,43,NYG,GB,3,6,9,(9:43) (Shotgun) E.Manning pass short middle to V.Cruz for 9 yards TOUCHDOWN.,17,7,2012 -20121125_GB@NYG,2,39,43,NYG,GB,,,9,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,17,7,2012 -20121125_GB@NYG,2,39,43,NYG,GB,,,9,L.Tynes kicks 66 yards from NYG 35 to GB -1. R.Cobb to GB 27 for 28 yards (J.Tryon T.Sash).,24,7,2012 -20121125_GB@NYG,2,39,29,GB,NYG,1,10,73,(9:29) A.Green right tackle to GB 27 for no gain (J.Tuck L.Joseph).,7,24,2012 -20121125_GB@NYG,2,38,54,GB,NYG,2,10,73,(8:54) (Shotgun) A.Green right end to GB 28 for 1 yard (C.Blackburn).,7,24,2012 -20121125_GB@NYG,2,38,11,GB,NYG,3,9,72,(8:11) (Shotgun) PENALTY on NYG-J.Pierre-Paul Neutral Zone Infraction 4 yards enforced at GB 28 - No Play.,7,24,2012 -20121125_GB@NYG,2,37,52,GB,NYG,3,5,68,(7:52) (Shotgun) A.Rodgers pass short middle to J.Kuhn pushed ob at NYG 36 for 32 yards (K.Phillips).,7,24,2012 -20121125_GB@NYG,2,37,23,GB,NYG,1,10,36,(7:23) A.Green left guard to NYG 29 for 7 yards (M.Boley M.Kiwanuka). PENALTY on GB-E.Dietrich-Smith Offensive Holding 10 yards enforced at NYG 36 - No Play.,7,24,2012 -20121125_GB@NYG,2,37,1,GB,NYG,1,20,46,(7:01) (Shotgun) J.Starks up the middle to NYG 43 for 3 yards (M.Kiwanuka M.Boley).,7,24,2012 -20121125_GB@NYG,2,36,20,GB,NYG,2,17,43,(6:20) (Shotgun) A.Rodgers scrambles right end to NYG 37 for 6 yards (K.Phillips).,7,24,2012 -20121125_GB@NYG,2,35,35,GB,NYG,3,11,37,(5:35) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson. PENALTY on NYG-C.Webster Defensive Holding 5 yards enforced at NYG 37 - No Play.,7,24,2012 -20121125_GB@NYG,2,35,26,GB,NYG,1,10,32,(5:26) (Shotgun) A.Rodgers pass short right to R.Cobb ran ob at NYG 20 for 12 yards (C.Webster).,7,24,2012 -20121125_GB@NYG,2,34,56,GB,NYG,1,10,20,(4:56) (Shotgun) A.Rodgers pass incomplete short left to J.Finley.,7,24,2012 -20121125_GB@NYG,2,34,49,GB,NYG,2,10,20,(4:49) A.Rodgers pass short left to J.Finley to NYG 11 for 9 yards (P.Amukamara S.Brown).,7,24,2012 -20121125_GB@NYG,2,34,7,GB,NYG,3,1,11,(4:07) A.Green left tackle to NYG 11 for no gain (K.Phillips).,7,24,2012 -20121125_GB@NYG,2,33,44,GB,NYG,4,1,11,(3:44) M.Crosby 28 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,7,24,2012 -20121125_GB@NYG,2,33,44,GB,NYG,,,11,M.Crosby kicks 61 yards from GB 35 to NYG 4. D.Wilson to NYG 27 for 23 yards (M.Jennings).,10,24,2012 -20121125_GB@NYG,2,33,30,NYG,GB,1,10,73,(3:30) E.Manning sacked at NYG 21 for -6 yards (D.Moses). Penalty on NYG-W.Beatty Offensive Holding declined.,24,10,2012 -20121125_GB@NYG,2,33,8,NYG,GB,2,16,79,(3:08) (Shotgun) A.Brown up the middle to NYG 32 for 11 yards (A.Hawk).,24,10,2012 -20121125_GB@NYG,2,32,22,NYG,GB,3,5,68,(2:22) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 34 for 2 yards (D.House).,24,10,2012 -20121125_GB@NYG,2,32,0,NYG,GB,4,3,66,(2:00) S.Weatherford punts 47 yards to GB 19 Center-Z.DeOssie. R.Cobb to GB 24 for 5 yards (J.Tryon).,24,10,2012 -20121125_GB@NYG,2,31,50,GB,NYG,1,10,76,(1:50) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,10,24,2012 -20121125_GB@NYG,2,31,45,GB,NYG,2,10,76,(1:45) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 39 for 15 yards (K.Phillips).,10,24,2012 -20121125_GB@NYG,2,31,12,GB,NYG,1,10,61,(1:12) (No Huddle Shotgun) A.Rodgers sacked at GB 32 for -7 yards (O.Umenyiora). FUMBLES (O.Umenyiora) RECOVERED by NYG-J.Pierre-Paul at GB 33. J.Pierre-Paul to GB 23 for 10 yards (E.Dietrich-Smith). Officially a sack for 6 yards.,10,24,2012 -20121125_GB@NYG,2,31,3,NYG,GB,1,10,23,(1:03) (Shotgun) E.Manning pass short left to R.Randle to GB 13 for 10 yards (M.Jennings M.Burnett).,24,10,2012 -20121125_GB@NYG,2,30,50,NYG,GB,1,10,13,(:50) (Shotgun) A.Bradshaw right guard for 13 yards TOUCHDOWN.,24,10,2012 -20121125_GB@NYG,2,30,50,NYG,GB,,,13,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,24,10,2012 -20121125_GB@NYG,2,30,50,NYG,GB,,,13,L.Tynes kicks 48 yards from NYG 35 to GB 17. D.Williams pushed ob at GB 29 for 12 yards (J.Hosley).,31,10,2012 -20121125_GB@NYG,2,30,40,GB,NYG,1,10,71,(:40) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 35 for 6 yards (A.Rolle).,10,31,2012 -20121125_GB@NYG,2,30,20,GB,NYG,2,4,65,(:20) (No Huddle Shotgun) A.Rodgers pass incomplete short left [O.Umenyiora].,10,31,2012 -20121125_GB@NYG,2,30,12,GB,NYG,3,4,65,(:12) (Shotgun) J.Kuhn up the middle to GB 42 for 7 yards (M.Kiwanuka C.Blackburn).,10,31,2012 -20121125_GB@NYG,2,30,5,GB,NYG,1,10,58,(:05) (Shotgun) A.Rodgers pass incomplete deep right.,10,31,2012 -20121125_GB@NYG,3,30,0,NYG,GB,,,58,L.Tynes kicks 63 yards from NYG 35 to GB 2. R.Cobb ran ob at GB 28 for 26 yards (K.Rivers). PENALTY on GB-J.Lattimore Offensive Holding 10 yards enforced at GB 25. Officially a return for 23 yards.,31,10,2012 -20121125_GB@NYG,3,29,54,GB,NYG,1,10,85,(14:54) A.Rodgers pass deep left to J.Finley to GB 31 for 16 yards (S.Brown) [J.Tuck].,10,31,2012 -20121125_GB@NYG,3,29,16,GB,NYG,1,10,69,(14:16) (Shotgun) PENALTY on GB-T.Lang False Start 5 yards enforced at GB 31 - No Play.,10,31,2012 -20121125_GB@NYG,3,28,58,GB,NYG,1,15,74,(13:58) J.Kuhn right guard to GB 30 for 4 yards (M.Boley).,10,31,2012 -20121125_GB@NYG,3,28,17,GB,NYG,2,11,70,(13:17) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb.,10,31,2012 -20121125_GB@NYG,3,28,10,GB,NYG,3,11,70,(13:10) (Shotgun) A.Rodgers sacked at GB 21 for -9 yards (M.Kiwanuka).,10,31,2012 -20121125_GB@NYG,3,27,48,GB,NYG,4,20,79,(12:48) T.Masthay punts 49 yards to NYG 30 Center-B.Goode. R.Randle MUFFS catch and recovers at NYG 31. R.Randle to NYG 31 for no gain (J.Bush).,10,31,2012 -20121125_GB@NYG,3,27,40,NYG,GB,1,10,69,(12:40) A.Brown left tackle to NYG 32 for 1 yard (B.Raji B.Jones).,31,10,2012 -20121125_GB@NYG,3,27,0,NYG,GB,2,9,68,(12:00) E.Manning pass short middle to V.Cruz to NYG 42 for 10 yards (B.Jones).,31,10,2012 -20121125_GB@NYG,3,26,16,NYG,GB,1,10,58,(11:16) E.Manning pass incomplete deep right to H.Nicks.,31,10,2012 -20121125_GB@NYG,3,26,8,NYG,GB,2,10,58,(11:08) A.Brown left guard to GB 49 for 9 yards (D.Moses M.Burnett).,31,10,2012 -20121125_GB@NYG,3,25,28,NYG,GB,3,1,49,(10:28) A.Brown right end to GB 49 for no gain (A.Hawk D.Moses).,31,10,2012 -20121125_GB@NYG,3,24,48,NYG,GB,4,1,49,(9:48) S.Weatherford punts 40 yards to GB 9 Center-Z.DeOssie fair catch by R.Cobb.,31,10,2012 -20121125_GB@NYG,3,24,41,GB,NYG,1,10,91,(9:41) A.Green left tackle to GB 14 for 5 yards (J.Pierre-Paul).,10,31,2012 -20121125_GB@NYG,3,24,2,GB,NYG,2,5,86,(9:02) A.Green right end to GB 14 for no gain (C.Webster).,10,31,2012 -20121125_GB@NYG,3,23,23,GB,NYG,3,5,86,(8:23) (Shotgun) A.Rodgers scrambles left end to GB 25 for 11 yards (M.Boley).,10,31,2012 -20121125_GB@NYG,3,22,43,GB,NYG,1,10,75,(7:43) (Shotgun) A.Rodgers pass incomplete short middle to J.Starks.,10,31,2012 -20121125_GB@NYG,3,22,36,GB,NYG,2,10,75,(7:36) A.Green right end to GB 37 for 12 yards (A.Rolle). PENALTY on GB-T.Crabtree Offensive Holding 10 yards enforced at GB 25 - No Play.,10,31,2012 -20121125_GB@NYG,3,22,11,GB,NYG,2,20,85,(7:11) A.Green right tackle to GB 18 for 3 yards (C.Blackburn J.Pierre-Paul).,10,31,2012 -20121125_GB@NYG,3,21,25,GB,NYG,3,17,82,(6:25) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb (P.Amukamara).,10,31,2012 -20121125_GB@NYG,3,21,21,GB,NYG,4,17,82,(6:21) T.Masthay punts 35 yards to NYG 47 Center-B.Goode. R.Randle MUFFS catch recovered by NYG-J.Tryon at NYG 47. J.Tryon to NYG 47 for no gain (S.Richardson). Penalty on GB-J.Bush Interference with Opportunity to Catch declined.,10,31,2012 -20121125_GB@NYG,3,21,3,NYG,GB,1,10,53,(6:03) E.Manning pass short left to M.Bennett to GB 38 for 15 yards (T.Williams).,31,10,2012 -20121125_GB@NYG,3,20,31,NYG,GB,1,10,38,(5:31) E.Manning pass short middle to H.Nicks to GB 8 for 30 yards (D.House A.Hawk). Penalty on GB-D.House Illegal Contact declined.,31,10,2012 -20121125_GB@NYG,3,19,50,NYG,GB,1,8,8,(4:50) A.Bradshaw up the middle to GB 6 for 2 yards (B.Raji M.Burnett). PENALTY on GB-M.Daniels Illegal Use of Hands 3 yards enforced at GB 6.,31,10,2012 -20121125_GB@NYG,3,19,22,NYG,GB,1,3,3,(4:22) E.Manning pass incomplete short left to H.Nicks.,31,10,2012 -20121125_GB@NYG,3,19,17,NYG,GB,2,3,3,(4:17) A.Bradshaw left guard for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NYG-W.Beatty Offensive Holding 10 yards enforced at GB 3 - No Play.,31,10,2012 -20121125_GB@NYG,3,18,46,NYG,GB,2,13,13,(3:46) E.Manning pass incomplete short left to A.Bradshaw.,31,10,2012 -20121125_GB@NYG,3,18,41,NYG,GB,3,13,13,(3:41) (Shotgun) E.Manning pass short middle to H.Nicks to GB 1 for 12 yards (D.House). New York Giants challenged the runner broke the plane ruling and the play was REVERSED. (Shotgun) E.Manning pass short middle to H.Nicks for 13 yards TOUCHDOWN.,31,10,2012 -20121125_GB@NYG,3,18,41,NYG,GB,,,13,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,31,10,2012 -20121125_GB@NYG,3,18,41,NYG,GB,,,13,L.Tynes kicks 68 yards from NYG 35 to GB -3. R.Cobb to GB 26 for 29 yards (M.Herzlich T.Sash).,38,10,2012 -20121125_GB@NYG,3,18,29,GB,NYG,1,10,74,(3:29) A.Green right end to GB 26 for no gain (M.Boley R.Bernard).,10,38,2012 -20121125_GB@NYG,3,18,1,GB,NYG,2,10,74,(3:01) (No Huddle Shotgun) A.Rodgers pass short left to A.Green to GB 41 for 15 yards (A.Rolle C.Blackburn).,10,38,2012 -20121125_GB@NYG,3,17,40,GB,NYG,1,10,59,(2:40) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to A.Green.,10,38,2012 -20121125_GB@NYG,3,17,34,GB,NYG,2,10,59,(2:34) (Shotgun) A.Rodgers sacked at GB 37 for -4 yards (M.Kiwanuka).,10,38,2012 -20121125_GB@NYG,3,17,7,GB,NYG,3,14,63,(2:07) (No Huddle Shotgun) A.Rodgers pass deep middle to J.Finley to NYG 37 for 26 yards (S.Brown). NYG-J.Pierre-Paul was injured during the play. NYG-K.Phillips was injured during the play.,10,38,2012 -20121125_GB@NYG,3,16,39,GB,NYG,1,10,37,(1:39) (Shotgun) A.Green right guard to NYG 29 for 8 yards (C.Canty M.Boley).,10,38,2012 -20121125_GB@NYG,3,16,8,GB,NYG,2,2,29,(1:08) (No Huddle Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at NYG 19 for 10 yards (C.Webster).,10,38,2012 -20121125_GB@NYG,3,15,35,GB,NYG,1,10,19,(:35) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson.,10,38,2012 -20121125_GB@NYG,3,15,29,GB,NYG,2,10,19,(:29) (Shotgun) A.Rodgers pass short left to A.Green to NYG 18 for 1 yard (A.Rolle) [M.Kiwanuka].,10,38,2012 -20121125_GB@NYG,4,15,0,GB,NYG,3,9,18,(15:00) (Shotgun) A.Rodgers pass short left to A.Green to NYG 14 for 4 yards (O.Umenyiora T.Sash).,10,38,2012 -20121125_GB@NYG,4,14,23,GB,NYG,4,5,14,(14:23) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley (C.Blackburn).,10,38,2012 -20121125_GB@NYG,4,14,16,NYG,GB,1,10,86,(14:16) A.Brown right end pushed ob at NYG 23 for 9 yards (B.Jones).,38,10,2012 -20121125_GB@NYG,4,13,46,NYG,GB,2,1,77,(13:46) A.Brown right tackle to NYG 26 for 3 yards (A.Hawk).,38,10,2012 -20121125_GB@NYG,4,13,2,NYG,GB,1,10,74,(13:02) A.Brown left guard to NYG 25 for -1 yards (M.Daniels B.Jones).,38,10,2012 -20121125_GB@NYG,4,12,26,NYG,GB,2,11,75,(12:26) E.Manning pass incomplete short right to V.Cruz.,38,10,2012 -20121125_GB@NYG,4,12,16,NYG,GB,3,11,75,(12:16) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 42 for 17 yards (M.Burnett).,38,10,2012 -20121125_GB@NYG,4,11,41,NYG,GB,1,10,58,(11:41) E.Manning pass incomplete short right to H.Nicks.,38,10,2012 -20121125_GB@NYG,4,11,28,NYG,GB,2,10,58,(11:28) A.Brown left tackle to GB 42 for 16 yards (M.Jennings T.Williams). GB-M.Jennings was injured during the play.,38,10,2012 -20121125_GB@NYG,4,10,55,NYG,GB,1,10,42,(10:55) D.Wilson left tackle to GB 39 for 3 yards (M.Daniels D.Moses).,38,10,2012 -20121125_GB@NYG,4,10,12,NYG,GB,2,7,39,(10:12) E.Manning pass short right to D.Wilson to GB 34 for 5 yards (F.Zombo).,38,10,2012 -20121125_GB@NYG,4,9,26,NYG,GB,3,2,34,(9:26) (Shotgun) D.Wilson left tackle to GB 34 for no gain (R.Pickett).,38,10,2012 -20121125_GB@NYG,4,8,44,NYG,GB,4,2,34,(8:44) E.Manning pass short right to M.Bennett pushed ob at GB 17 for 17 yards (J.McMillian).,38,10,2012 -20121125_GB@NYG,4,8,12,NYG,GB,1,10,17,(8:12) D.Wilson up the middle to GB 15 for 2 yards (A.Hawk).,38,10,2012 -20121125_GB@NYG,4,7,28,NYG,GB,2,8,15,(7:28) D.Wilson left tackle to GB 12 for 3 yards (B.Jones D.Moses).,38,10,2012 -20121125_GB@NYG,4,6,39,NYG,GB,3,5,12,(6:39) E.Manning pass incomplete short middle to M.Bennett (C.Hayward). NYG-M.Bennett was injured during the play. PENALTY on GB-J.McMillian Unnecessary Roughness 6 yards enforced at GB 12 - No Play.,38,10,2012 -20121125_GB@NYG,4,6,34,NYG,GB,1,6,6,(6:34) E.Manning pass incomplete short left to H.Nicks.,38,10,2012 -20121125_GB@NYG,4,6,29,NYG,GB,2,6,6,(6:29) D.Wilson left tackle to GB 5 for 1 yard (D.Moses).,38,10,2012 -20121125_GB@NYG,4,5,46,NYG,GB,3,5,5,(5:46) D.Wilson right guard to GB 1 for 4 yards (A.Hawk).,38,10,2012 -20121125_GB@NYG,4,5,3,NYG,GB,4,1,1,(5:03) E.Manning pass incomplete short left to H.Nicks (D.Moses).,38,10,2012 -20121125_GB@NYG,4,4,53,GB,NYG,1,10,98,(4:53) J.Kuhn left guard to GB 6 for 4 yards (J.Hosley J.Pierre-Paul).,10,38,2012 -20121125_GB@NYG,4,4,21,GB,NYG,2,6,94,(4:21) J.Starks right guard to GB 11 for 5 yards (P.Amukamara).,10,38,2012 -20121125_GB@NYG,4,3,40,GB,NYG,3,1,89,(3:40) J.Starks left guard to GB 16 for 5 yards (M.Kiwanuka W.Hill).,10,38,2012 -20121125_GB@NYG,4,3,0,GB,NYG,1,10,84,(3:00) A.Green right tackle to GB 22 for 6 yards (J.Hosley M.Kiwanuka).,10,38,2012 -20121125_GB@NYG,4,2,21,GB,NYG,2,4,78,(2:21) J.Starks right tackle to GB 30 for 8 yards (W.Hill).,10,38,2012 -20121125_GB@NYG,4,2,0,GB,NYG,1,10,70,(2:00) G.Harrell pass short right to J.Kuhn pushed ob at GB 41 for 11 yards (S.Paysinger).,10,38,2012 -20121125_GB@NYG,4,1,51,GB,NYG,1,10,59,(1:51) J.Starks left guard to GB 45 for 4 yards (A.Tracy).,10,38,2012 -20121125_GB@NYG,4,1,14,GB,NYG,2,6,55,(1:14) J.Starks left guard to GB 47 for 2 yards (L.Joseph S.Paysinger).,10,38,2012 -20121125_GB@NYG,4,0,24,GB,NYG,3,4,53,(:24) (Shotgun) G.Harrell pass incomplete short right to D.Williams (J.Hosley).,10,38,2012 -20121125_GB@NYG,4,0,21,GB,NYG,4,4,53,(:21) T.Masthay punts 33 yards to NYG 20 Center-B.Goode out of bounds.,10,38,2012 -20121125_GB@NYG,4,0,13,NYG,GB,1,10,80,(:13) E.Manning kneels to NYG 19 for -1 yards.,38,10,2012 -20121125_GB@NYG,4,0,13,NYG,GB,,,80,                      ,38,10,2012 -20121126_CAR@PHI,1,0,0,CAR,PHI,,,80,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 -20121126_CAR@PHI,1,60,0,PHI,CAR,1,10,80,(15:00) N.Foles pass short left to D.Jackson to PHI 29 for 9 yards (C.Munnerlyn).,0,0,2012 -20121126_CAR@PHI,1,59,24,PHI,CAR,2,1,71,(14:24) (Shotgun) Direct snap to B.Brown. B.Brown right end to PHI 36 for 7 yards (S.Martin).,0,0,2012 -20121126_CAR@PHI,1,58,48,PHI,CAR,1,10,64,(13:48) B.Brown left tackle to CAR 45 for 19 yards (H.Nakamura; J.Norman).,0,0,2012 -20121126_CAR@PHI,1,58,8,PHI,CAR,1,10,45,(13:08) (Shotgun) N.Foles pass short left to J.Maclin to CAR 30 for 15 yards (J.Norman).,0,0,2012 -20121126_CAR@PHI,1,57,33,PHI,CAR,1,10,30,(12:33) N.Foles pass deep middle to B.Celek to CAR 14 for 16 yards (S.Martin).,0,0,2012 -20121126_CAR@PHI,1,56,55,PHI,CAR,1,10,14,(11:55) (Shotgun) N.Foles pass incomplete short right to J.Maclin (S.Martin).,0,0,2012 -20121126_CAR@PHI,1,56,51,PHI,CAR,2,10,18,(11:51) N.Foles FUMBLES (Aborted) at CAR 18 and recovers at CAR 18.,0,0,2012 -20121126_CAR@PHI,1,56,19,PHI,CAR,3,14,18,(11:19) (Shotgun) N.Foles pass incomplete deep left to J.Maclin (S.Martin).,0,0,2012 -20121126_CAR@PHI,1,56,15,PHI,CAR,4,14,18,(11:15) A.Henery 36 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20121126_CAR@PHI,1,56,15,PHI,CAR,,,18,A.Henery kicks 63 yards from PHI 35 to CAR 2. A.Edwards to CAR 28 for 26 yards (S.Havili; J.Chaney).,3,0,2012 -20121126_CAR@PHI,1,56,5,CAR,PHI,1,10,72,(11:05) J.Stewart up the middle to CAR 34 for 6 yards (F.Cox).,0,3,2012 -20121126_CAR@PHI,1,55,27,CAR,PHI,2,4,66,(10:27) (Shotgun) J.Stewart right end to CAR 39 for 5 yards (K.Coleman).,0,3,2012 -20121126_CAR@PHI,1,54,46,CAR,PHI,1,10,61,(9:46) C.Newton pass short right to S.Smith pushed ob at CAR 48 for 9 yards (D.Rodgers-Cromartie).,0,3,2012 -20121126_CAR@PHI,1,54,6,CAR,PHI,2,1,52,(9:06) M.Tolbert left guard to PHI 49 for 3 yards (V.Curry).,0,3,2012 -20121126_CAR@PHI,1,53,20,CAR,PHI,1,10,49,(8:20) (Shotgun) C.Newton pass short middle to S.Smith to PHI 35 for 14 yards (D.Rodgers-Cromartie).,0,3,2012 -20121126_CAR@PHI,1,52,44,CAR,PHI,1,10,35,(7:44) B.LaFell left end to PHI 29 for 6 yards (D.Ryans).,0,3,2012 -20121126_CAR@PHI,1,51,59,CAR,PHI,2,4,29,(6:59) (Shotgun) C.Newton left end to PHI 24 for 5 yards (T.Cole).,0,3,2012 -20121126_CAR@PHI,1,51,17,CAR,PHI,1,10,24,(6:17) C.Newton pass deep left to G.Barnidge for 24 yards TOUCHDOWN.,0,3,2012 -20121126_CAR@PHI,1,51,17,CAR,PHI,,,24,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,3,2012 -20121126_CAR@PHI,1,51,17,CAR,PHI,,,24,G.Gano kicks 71 yards from CAR 35 to PHI -6. B.Boykin to PHI 16 for 22 yards (C.Jones).,7,3,2012 -20121126_CAR@PHI,1,51,7,PHI,CAR,1,10,84,(6:07) B.Brown up the middle to PHI 19 for 3 yards (G.Hardy).,3,7,2012 -20121126_CAR@PHI,1,50,35,PHI,CAR,2,7,81,(5:35) (Shotgun) N.Foles sacked at PHI 7 for -12 yards (G.Hardy).,3,7,2012 -20121126_CAR@PHI,1,50,4,PHI,CAR,3,19,93,(5:04) (Shotgun) N.Foles pass short left to R.Cooper to PHI 14 for 7 yards (J.Norman).,3,7,2012 -20121126_CAR@PHI,1,49,26,PHI,CAR,4,12,86,(4:26) M.McBriar punts 41 yards to CAR 45 Center-J.Dorenbos fair catch by J.Adams.,3,7,2012 -20121126_CAR@PHI,1,49,19,CAR,PHI,1,10,55,(4:19) J.Stewart right tackle pushed ob at PHI 43 for 12 yards (D.Rodgers-Cromartie).,7,3,2012 -20121126_CAR@PHI,1,48,48,CAR,PHI,1,10,43,(3:48) C.Newton pass incomplete short right to J.Stewart.,7,3,2012 -20121126_CAR@PHI,1,48,42,CAR,PHI,2,10,43,(3:42) (Shotgun) C.Newton pass deep left to B.LaFell for 43 yards TOUCHDOWN.,7,3,2012 -20121126_CAR@PHI,1,48,42,CAR,PHI,,,43,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,3,2012 -20121126_CAR@PHI,1,48,42,CAR,PHI,,,43,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,14,3,2012 -20121126_CAR@PHI,1,48,35,PHI,CAR,1,10,80,(3:35) N.Foles pass short right to B.Celek to PHI 23 for 3 yards (G.Hardy). PENALTY on CAR-G.Hardy Unnecessary Roughness 15 yards enforced at PHI 23.,3,14,2012 -20121126_CAR@PHI,1,48,13,PHI,CAR,1,10,62,(3:13) D.Jackson left end to PHI 40 for 2 yards (L.Kuechly).,3,14,2012 -20121126_CAR@PHI,1,47,37,PHI,CAR,2,8,60,(2:37) (Shotgun) N.Foles pass short right to B.Brown to PHI 45 for 5 yards (G.Hardy; L.Kuechly).,3,14,2012 -20121126_CAR@PHI,1,46,50,PHI,CAR,3,3,55,(1:50) B.Brown up the middle to 50 for 5 yards (L.Kuechly).,3,14,2012 -20121126_CAR@PHI,1,46,11,PHI,CAR,1,10,50,(1:11) (Shotgun) Direct snap to B.Brown. B.Brown left end pushed ob at CAR 31 for 19 yards (L.Kuechly).,3,14,2012 -20121126_CAR@PHI,1,45,42,PHI,CAR,1,10,31,(:42) D.Lewis up the middle to CAR 29 for 2 yards (J.Anderson; L.Kuechly).,3,14,2012 -20121126_CAR@PHI,1,45,6,PHI,CAR,2,8,29,(:06) N.Foles pass incomplete deep right to B.Celek.,3,14,2012 -20121126_CAR@PHI,2,45,0,PHI,CAR,3,8,29,(15:00) (Shotgun) N.Foles pass short middle to J.Maclin to CAR 23 for 6 yards (C.Munnerlyn).,3,14,2012 -20121126_CAR@PHI,2,44,19,PHI,CAR,4,2,23,(14:19) A.Henery 41 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,3,14,2012 -20121126_CAR@PHI,2,44,19,PHI,CAR,,,23,A.Henery kicks 71 yards from PHI 35 to CAR -6. A.Edwards to CAR 14 for 20 yards (C.Anderson).,6,14,2012 -20121126_CAR@PHI,2,44,10,CAR,PHI,1,10,86,(14:10) J.Stewart left end to CAR 23 for 9 yards (D.Ryans).,14,6,2012 -20121126_CAR@PHI,2,43,29,CAR,PHI,2,1,77,(13:29) (Shotgun) C.Newton left end to CAR 26 for 3 yards (D.Ryans).,14,6,2012 -20121126_CAR@PHI,2,42,43,CAR,PHI,1,10,74,(12:43) (Shotgun) C.Newton pass incomplete short left to S.Smith.,14,6,2012 -20121126_CAR@PHI,2,42,38,CAR,PHI,2,10,74,(12:38) (Shotgun) D.Williams up the middle to CAR 28 for 2 yards (D.Ryans).,14,6,2012 -20121126_CAR@PHI,2,41,54,CAR,PHI,3,8,72,(11:54) (Shotgun) C.Newton pass incomplete short right to S.Smith (D.Rodgers-Cromartie) [J.Babin].,14,6,2012 -20121126_CAR@PHI,2,41,49,CAR,PHI,4,8,72,(11:49) B.Nortman punts 44 yards to PHI 28 Center-J.Jansen. D.Johnson to PHI 42 for 14 yards (J.Phillips; C.Jones). PENALTY on PHI Illegal Block Above the Waist 10 yards enforced at PHI 42.,14,6,2012 -20121126_CAR@PHI,2,41,38,PHI,CAR,1,10,68,(11:38) (Shotgun) PENALTY on PHI-J.Scott False Start 5 yards enforced at PHI 32 - No Play.,6,14,2012 -20121126_CAR@PHI,2,41,38,PHI,CAR,1,15,73,(11:38) (Shotgun) N.Foles pass short right to D.Johnson pushed ob at PHI 35 for 8 yards (C.Munnerlyn).,6,14,2012 -20121126_CAR@PHI,2,41,7,PHI,CAR,2,7,65,(11:07) B.Brown right end for 65 yards TOUCHDOWN.,6,14,2012 -20121126_CAR@PHI,2,41,7,PHI,CAR,,,65,(Pass formation) TWO-POINT CONVERSION ATTEMPT. N.Foles pass is incomplete. ATTEMPT FAILS. Penalty on PHI-K.Dunlap Offensive Holding declined.,6,14,2012 -20121126_CAR@PHI,2,41,7,PHI,CAR,,,65,A.Henery kicks 68 yards from PHI 35 to CAR -3. A.Edwards to CAR 20 for 23 yards (C.Marsh).,12,14,2012 -20121126_CAR@PHI,2,40,50,CAR,PHI,1,10,80,(10:50) C.Newton pass deep right to G.Olsen to CAR 43 for 23 yards (N.Allen).,14,12,2012 -20121126_CAR@PHI,2,40,14,CAR,PHI,1,10,57,(10:14) C.Newton pass incomplete short right to B.LaFell (D.Rodgers-Cromartie).,14,12,2012 -20121126_CAR@PHI,2,40,10,CAR,PHI,2,10,57,(10:10) J.Stewart left end to CAR 36 for -7 yards (D.Landri).,14,12,2012 -20121126_CAR@PHI,2,39,26,CAR,PHI,3,17,64,(9:26) (Shotgun) C.Newton pass short left to G.Olsen pushed ob at 50 for 14 yards (D.Rodgers-Cromartie N.Asomugha).,14,12,2012 -20121126_CAR@PHI,2,38,36,CAR,PHI,4,3,50,(8:36) B.Nortman punts 29 yards to PHI 21 Center-J.Jansen. D.Johnson to PHI 39 for 18 yards (J.Thomas).,14,12,2012 -20121126_CAR@PHI,2,38,23,PHI,CAR,1,10,61,(8:23) B.Brown left end to 50 for 11 yards (S.Martin).,12,14,2012 -20121126_CAR@PHI,2,37,43,PHI,CAR,1,10,50,(7:43) N.Foles pass short right to D.Johnson to CAR 45 for 5 yards (J.Thomas).,12,14,2012 -20121126_CAR@PHI,2,37,5,PHI,CAR,2,5,45,(7:05) D.Lewis left tackle to CAR 41 for 4 yards (R.Edwards; L.Kuechly).,12,14,2012 -20121126_CAR@PHI,2,36,30,PHI,CAR,3,1,41,(6:30) B.Brown up the middle to CAR 37 for 4 yards (G.Hardy).,12,14,2012 -20121126_CAR@PHI,2,35,47,PHI,CAR,1,10,37,(5:47) (Shotgun) D.Lewis left end to CAR 26 for 11 yards (J.Norman; S.Martin).,12,14,2012 -20121126_CAR@PHI,2,35,47,PHI,CAR,1,10,26,(5:47) D.Lewis left tackle to CAR 24 for 2 yards (S.Martin).,12,14,2012 -20121126_CAR@PHI,2,34,14,PHI,CAR,2,8,24,(4:14) (Shotgun) N.Foles pass short left to B.Brown to CAR 26 for -2 yards (D.Edwards).,12,14,2012 -20121126_CAR@PHI,2,33,31,PHI,CAR,3,10,26,(3:31) (Shotgun) N.Foles pass incomplete short left to B.Brown (J.Norman).,12,14,2012 -20121126_CAR@PHI,2,33,20,PHI,CAR,4,10,26,(3:20) A.Henery 45 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,12,14,2012 -20121126_CAR@PHI,2,33,20,PHI,CAR,,,26,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,15,14,2012 -20121126_CAR@PHI,2,33,20,CAR,PHI,1,10,80,(3:20) (Shotgun) J.Stewart up the middle to CAR 16 for -4 yards (T.Cole).,14,15,2012 -20121126_CAR@PHI,2,32,40,CAR,PHI,2,14,84,(2:40) (Shotgun) C.Newton pass short right to J.Stewart to CAR 23 for 7 yards (J.Babin) [T.Cole].,14,15,2012 -20121126_CAR@PHI,2,32,0,CAR,PHI,3,7,77,(2:00) (Shotgun) C.Newton scrambles right end ran ob at CAR 33 for 10 yards.,14,15,2012 -20121126_CAR@PHI,2,31,53,CAR,PHI,1,10,67,(1:53) (Shotgun) C.Newton pass incomplete deep right to B.LaFell.,14,15,2012 -20121126_CAR@PHI,2,31,49,CAR,PHI,2,10,67,(1:49) (Shotgun) C.Newton pass short right to J.Stewart to CAR 35 for 2 yards (D.Rodgers-Cromartie).,14,15,2012 -20121126_CAR@PHI,2,31,36,CAR,PHI,3,8,65,(1:36) (Shotgun) C.Newton pass incomplete short left to B.LaFell.,14,15,2012 -20121126_CAR@PHI,2,31,20,PHI,CAR,1,10,58,(1:20) B.Brown up the middle to PHI 38 for -4 yards (C.Johnson).,15,14,2012 -20121126_CAR@PHI,2,30,59,PHI,CAR,2,14,62,(:59) N.Foles pass short left to B.Brown to PHI 41 for 3 yards (T.Davis).,15,14,2012 -20121126_CAR@PHI,2,30,53,PHI,CAR,3,11,59,(:53) (Shotgun) N.Foles pass incomplete short middle to R.Cooper.,15,14,2012 -20121126_CAR@PHI,2,30,48,PHI,CAR,4,11,59,(:48) M.McBriar punts 41 yards to CAR 18 Center-J.Dorenbos fair catch by J.Adams.,15,14,2012 -20121126_CAR@PHI,2,30,41,CAR,PHI,1,10,82,(:41) (Shotgun) J.Stewart right end to CAR 22 for 4 yards (N.Allen).,14,15,2012 -20121126_CAR@PHI,3,30,0,PHI,CAR,,,82,A.Henery kicks 65 yards from PHI 35 to CAR 0. A.Edwards to CAR 10 for 10 yards (C.Anderson). PENALTY on CAR-M.Tolbert Clipping 5 yards enforced at CAR 10.,15,14,2012 -20121126_CAR@PHI,3,29,55,CAR,PHI,1,10,95,(14:55) C.Newton pass short right to B.LaFell ran ob at CAR 17 for 12 yards.,14,15,2012 -20121126_CAR@PHI,3,29,20,CAR,PHI,1,10,83,(14:20) D.Williams up the middle to CAR 16 for -1 yards (T.Cole).,14,15,2012 -20121126_CAR@PHI,3,28,37,CAR,PHI,2,11,84,(13:37) (Shotgun) C.Newton pass deep right to L.Murphy to PHI 29 for 55 yards (K.Coleman; D.Rodgers-Cromartie). Penalty on PHI-D.Rodgers-Cromartie Defensive Pass Interference declined.,14,15,2012 -20121126_CAR@PHI,3,28,7,CAR,PHI,1,10,29,(13:07) (Shotgun) C.Newton pass incomplete short right to D.Williams.,14,15,2012 -20121126_CAR@PHI,3,28,1,CAR,PHI,2,10,29,(13:01) (Shotgun) C.Newton left end to PHI 31 for -2 yards (A.Jordan).,14,15,2012 -20121126_CAR@PHI,3,27,21,CAR,PHI,3,12,31,(12:21) (Shotgun) C.Newton scrambles left end to PHI 17 for 14 yards (D.Rodgers-Cromartie).,14,15,2012 -20121126_CAR@PHI,3,26,32,CAR,PHI,1,10,17,(11:32) D.Williams up the middle to PHI 14 for 3 yards (D.Ryans).,14,15,2012 -20121126_CAR@PHI,3,25,47,CAR,PHI,2,7,14,(10:47) (Shotgun) C.Newton scrambles left end pushed ob at PHI 5 for 9 yards (N.Asomugha).,14,15,2012 -20121126_CAR@PHI,3,25,8,CAR,PHI,1,5,5,(10:08) (Shotgun) C.Newton pass incomplete short right to B.LaFell (B.Boykin).,14,15,2012 -20121126_CAR@PHI,3,25,3,CAR,PHI,2,5,5,(10:03) C.Newton up the middle to PHI 1 for 4 yards (M.Kendricks).,14,15,2012 -20121126_CAR@PHI,3,24,17,CAR,PHI,3,1,1,(9:17) (Shotgun) C.Newton left end for 1 yard TOUCHDOWN.,14,15,2012 -20121126_CAR@PHI,3,24,17,CAR,PHI,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,15,2012 -20121126_CAR@PHI,3,24,17,CAR,PHI,,,1,G.Gano kicks 60 yards from CAR 35 to PHI 5. B.Boykin to PHI 29 for 24 yards (R.Brockel).,21,15,2012 -20121126_CAR@PHI,3,24,8,PHI,CAR,1,10,71,(9:08) N.Foles pass short right to B.Brown to PHI 34 for 5 yards (T.Davis).,15,21,2012 -20121126_CAR@PHI,3,23,30,PHI,CAR,2,5,66,(8:30) (Shotgun) Direct snap to B.Brown. B.Brown right end to PHI 40 for 6 yards (L.Kuechly).,15,21,2012 -20121126_CAR@PHI,3,22,49,PHI,CAR,1,10,60,(7:49) B.Brown up the middle to PHI 42 for 2 yards (S.Martin).,15,21,2012 -20121126_CAR@PHI,3,22,13,PHI,CAR,2,8,58,(7:13) (Shotgun) N.Foles pass short left to J.Maclin to CAR 43 for 15 yards (S.Martin). Penalty on CAR-F.Alexander Defensive Offside declined.,15,21,2012 -20121126_CAR@PHI,3,21,50,PHI,CAR,1,10,43,(6:50) (Shotgun) PENALTY on CAR-C.Johnson Neutral Zone Infraction 5 yards enforced at CAR 43 - No Play.,15,21,2012 -20121126_CAR@PHI,3,21,29,PHI,CAR,1,5,38,(6:29) (Shotgun) B.Brown left end to CAR 32 for 6 yards (S.Fua). FUMBLES (S.Fua) RECOVERED by CAR-L.Kuechly at CAR 32. L.Kuechly to CAR 32 for no gain (R.Cooper).,15,21,2012 -20121126_CAR@PHI,3,21,21,CAR,PHI,1,10,68,(6:21) J.Stewart left end to CAR 34 for 2 yards (V.Curry).,21,15,2012 -20121126_CAR@PHI,3,20,41,CAR,PHI,2,8,66,(5:41) C.Newton scrambles left end to CAR 35 for 1 yard (V.Curry).,21,15,2012 -20121126_CAR@PHI,3,19,49,CAR,PHI,3,7,65,(4:49) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,21,15,2012 -20121126_CAR@PHI,3,19,43,CAR,PHI,4,7,65,(4:43) B.Nortman punts 34 yards to PHI 31 Center-J.Jansen fair catch by D.Johnson.,21,15,2012 -20121126_CAR@PHI,3,19,37,PHI,CAR,1,10,69,(4:37) B.Brown left tackle to PHI 32 for 1 yard (L.Kuechly). PHI-K.Dunlap was injured during the play.,15,21,2012 -20121126_CAR@PHI,3,19,11,PHI,CAR,2,9,68,(4:11) N.Foles pass short left to J.Maclin pushed ob at PHI 44 for 12 yards (J.Norman).,15,21,2012 -20121126_CAR@PHI,3,18,43,PHI,CAR,1,10,56,(3:43) N.Foles pass incomplete deep middle to J.Maclin. PENALTY on CAR-H.Nakamura Defensive Pass Interference 51 yards enforced at PHI 44 - No Play.,15,21,2012 -20121126_CAR@PHI,3,18,35,PHI,CAR,1,5,5,(3:35) (Shotgun) B.Brown right end for 5 yards TOUCHDOWN.,15,21,2012 -20121126_CAR@PHI,3,18,35,PHI,CAR,,,5,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,15,21,2012 -20121126_CAR@PHI,3,18,35,PHI,CAR,,,5,A.Henery kicks 67 yards from PHI 35 to CAR -2. A.Edwards to CAR 33 for 35 yards (C.Marsh).,22,21,2012 -20121126_CAR@PHI,3,18,24,CAR,PHI,1,10,67,(3:24) D.Williams left end to CAR 31 for -2 yards (D.Ryans).,21,22,2012 -20121126_CAR@PHI,3,17,43,CAR,PHI,2,12,69,(2:43) (Shotgun) C.Newton pass short right to G.Olsen to CAR 32 for 1 yard (J.Babin).,21,22,2012 -20121126_CAR@PHI,3,16,59,CAR,PHI,3,11,68,(1:59) (Shotgun) C.Newton sacked at CAR 15 for -17 yards (M.Patterson).,21,22,2012 -20121126_CAR@PHI,3,16,29,CAR,PHI,4,28,85,(1:29) B.Nortman punts 43 yards to PHI 42 Center-J.Jansen fair catch by D.Johnson.,21,22,2012 -20121126_CAR@PHI,3,16,23,PHI,CAR,1,10,58,(1:23) B.Brown right end to PHI 43 for 1 yard (C.Johnson). FUMBLES (C.Johnson) RECOVERED by CAR-T.Davis at PHI 43. T.Davis to PHI 45 for -2 yards (B.Brown).,22,21,2012 -20121126_CAR@PHI,3,16,16,CAR,PHI,1,10,45,(1:16) D.Williams right tackle to PHI 43 for 2 yards (B.Graham).,21,22,2012 -20121126_CAR@PHI,3,15,30,CAR,PHI,2,8,43,(:30) (Shotgun) C.Newton pass short left to B.LaFell pushed ob at PHI 24 for 19 yards (D.Rodgers-Cromartie).,21,22,2012 -20121126_CAR@PHI,4,15,0,CAR,PHI,1,10,24,(15:00) (Shotgun) C.Newton pass short middle to G.Olsen to PHI 12 for 12 yards (D.Ryans).,21,22,2012 -20121126_CAR@PHI,4,14,19,CAR,PHI,1,10,12,(14:19) (Shotgun) C.Newton left end to PHI 8 for 4 yards (D.Ryans).,21,22,2012 -20121126_CAR@PHI,4,13,37,CAR,PHI,2,6,8,(13:37) (Shotgun) C.Newton right end to PHI 5 for 3 yards (V.Curry).,21,22,2012 -20121126_CAR@PHI,4,12,48,CAR,PHI,3,3,5,(12:48) (Shotgun) C.Newton pass incomplete short right to S.Smith (M.Kendricks).,21,22,2012 -20121126_CAR@PHI,4,12,43,CAR,PHI,4,3,5,(12:43) G.Gano 23 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,21,22,2012 -20121126_CAR@PHI,4,12,43,CAR,PHI,,,5,G.Gano kicks 70 yards from CAR 35 to PHI -5. B.Boykin to PHI 15 for 20 yards (H.Nakamura).,24,22,2012 -20121126_CAR@PHI,4,12,33,PHI,CAR,1,10,85,(12:33) (Shotgun) B.Brown left end to PHI 39 for 24 yards (T.Davis).,22,24,2012 -20121126_CAR@PHI,4,11,53,PHI,CAR,1,10,61,(11:53) N.Foles pass short left to J.Maclin to PHI 46 for 7 yards (T.Davis; J.Norman).,22,24,2012 -20121126_CAR@PHI,4,11,10,PHI,CAR,2,3,54,(11:10) D.Lewis left end to CAR 49 for 5 yards (D.Edwards).,22,24,2012 -20121126_CAR@PHI,4,10,32,PHI,CAR,1,10,49,(10:32) (Shotgun) Direct snap to B.Brown. B.Brown right end to PHI 49 for -2 yards (C.Godfrey).,22,24,2012 -20121126_CAR@PHI,4,9,50,PHI,CAR,2,12,51,(9:50) (Shotgun) B.Brown left end to CAR 45 for 6 yards (J.Norman).,22,24,2012 -20121126_CAR@PHI,4,9,7,PHI,CAR,3,6,45,(9:07) (Shotgun) N.Foles pass short left to S.Havili to CAR 40 for 5 yards (F.Alexander).,22,24,2012 -20121126_CAR@PHI,4,8,42,PHI,CAR,4,1,40,(8:42) B.Brown right end to CAR 40 for no gain (F.Alexander).,22,24,2012 -20121126_CAR@PHI,4,8,35,CAR,PHI,1,10,60,(8:35) C.Newton pass deep left to S.Smith to PHI 29 for 31 yards (K.Coleman).,24,22,2012 -20121126_CAR@PHI,4,8,2,CAR,PHI,1,10,29,(8:02) (Shotgun) D.Williams right end to PHI 29 for no gain (M.Kendricks).,24,22,2012 -20121126_CAR@PHI,4,7,22,CAR,PHI,2,10,29,(7:22) (Shotgun) C.Newton sacked at PHI 29 for 0 yards (J.Babin).,24,22,2012 -20121126_CAR@PHI,4,6,47,CAR,PHI,3,10,29,(6:47) (Shotgun) C.Newton pass short middle to M.Tolbert to PHI 16 for 13 yards (N.Allen). Penalty on PHI-J.Babin Neutral Zone Infraction declined.,24,22,2012 -20121126_CAR@PHI,4,6,22,CAR,PHI,1,10,16,(6:22) D.Williams right tackle to PHI 16 for no gain (N.Allen; B.Graham). PENALTY on PHI-B.Graham Defensive Offside 5 yards enforced at PHI 16 - No Play.,24,22,2012 -20121126_CAR@PHI,4,5,54,CAR,PHI,1,5,11,(5:54) PENALTY on PHI-C.Thornton Encroachment 5 yards enforced at PHI 11 - No Play.,24,22,2012 -20121126_CAR@PHI,4,5,28,CAR,PHI,1,6,6,(5:28) D.Williams up the middle to PHI 2 for 4 yards (V.Curry).,24,22,2012 -20121126_CAR@PHI,4,4,46,CAR,PHI,2,2,2,(4:46) (Shotgun) C.Newton left tackle for 2 yards TOUCHDOWN.,24,22,2012 -20121126_CAR@PHI,4,4,46,CAR,PHI,,,2,G.Gano extra point is No Good Wide Right Center-J.Jansen Holder-B.Nortman.,24,22,2012 -20121126_CAR@PHI,4,4,46,CAR,PHI,,,2,G.Gano kicks 65 yards from CAR 35 to PHI 0. B.Boykin to PHI 44 for 44 yards (S.Martin). FUMBLES (S.Martin) RECOVERED by CAR-G.Barnidge at CAR 49. G.Barnidge to CAR 49 for no gain (D.Tapp).,30,22,2012 -20121126_CAR@PHI,4,4,29,CAR,PHI,1,10,51,(4:29) D.Williams left end pushed ob at CAR 34 for -15 yards (N.Asomugha). PENALTY on CAR-B.Hartsock Offensive Holding 10 yards enforced at CAR 49 - No Play.,30,22,2012 -20121126_CAR@PHI,4,4,25,CAR,PHI,1,20,61,(4:25) C.Newton pass short left to S.Smith to CAR 45 for 6 yards (N.Asomugha).,30,22,2012 -20121126_CAR@PHI,4,4,15,CAR,PHI,2,14,55,(4:15) (Shotgun) C.Newton scrambles right end to CAR 45 for no gain. PENALTY on PHI-M.Kendricks Defensive Holding 5 yards enforced at CAR 45.,30,22,2012 -20121126_CAR@PHI,4,4,6,CAR,PHI,1,10,50,(4:06) D.Williams right end to PHI 47 for 3 yards (J.Babin).,30,22,2012 -20121126_CAR@PHI,4,4,1,CAR,PHI,2,7,47,(4:01) D.Williams left end to PHI 44 for 3 yards (D.Ryans; M.Kendricks).,30,22,2012 -20121126_CAR@PHI,4,3,55,CAR,PHI,3,4,44,(3:55) (Shotgun) C.Newton pass short right to L.Murphy to PHI 34 for 10 yards (D.Rodgers-Cromartie).,30,22,2012 -20121126_CAR@PHI,4,3,8,CAR,PHI,1,10,34,(3:08) D.Williams up the middle to PHI 30 for 4 yards (A.Jordan).,30,22,2012 -20121126_CAR@PHI,4,2,21,CAR,PHI,2,6,30,(2:21) D.Williams right guard to PHI 27 for 3 yards (T.Cole).,30,22,2012 -20121126_CAR@PHI,4,1,59,CAR,PHI,3,3,27,(1:59) C.Newton pass short right to M.Tolbert to PHI 16 for 11 yards (D.Ryans).,30,22,2012 -20121126_CAR@PHI,4,1,13,CAR,PHI,1,10,16,(1:13) C.Newton kneels to PHI 17 for -1 yards.,30,22,2012 -20121126_CAR@PHI,4,0,37,CAR,PHI,2,11,17,(:37) C.Newton kneels to PHI 18 for -1 yards.,30,22,2012 -20121126_CAR@PHI,4,0,37,CAR,PHI,,,17,                      ,30,22,2012 -20121129_NO@ATL,1,0,0,NO,ATL,,,17,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,0,0,2012 -20121129_NO@ATL,1,60,0,ATL,NO,1,10,80,(15:00) M.Ryan pass short right to T.Gonzalez to ATL 29 for 9 yards (M.Jenkins) [S.Ellis].,0,0,2012 -20121129_NO@ATL,1,59,14,ATL,NO,2,1,71,(14:14) M.Turner right end to NO 36 for 35 yards (M.Jenkins).,0,0,2012 -20121129_NO@ATL,1,58,26,ATL,NO,1,10,36,(13:26) M.Turner left tackle to NO 31 for 5 yards (J.Vilma; P.Robinson).,0,0,2012 -20121129_NO@ATL,1,57,40,ATL,NO,2,5,31,(12:40) M.Johnson reported in as eligible. Jz. Rodgers left tackle to NO 17 for 14 yards (D.Hawthorne).,0,0,2012 -20121129_NO@ATL,1,56,56,ATL,NO,1,10,17,(11:56) M.Johnson reported in as eligible. Jz. Rodgers left end to NO 3 for 14 yards (M.Jenkins).,0,0,2012 -20121129_NO@ATL,1,56,14,ATL,NO,1,3,3,(11:14) M.Johnson reported in as eligible. M.Turner right guard for 3 yards TOUCHDOWN.,0,0,2012 -20121129_NO@ATL,1,56,14,ATL,NO,,,3,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121129_NO@ATL,1,56,14,ATL,NO,,,3,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,0,2012 -20121129_NO@ATL,1,56,9,NO,ATL,1,10,80,(11:09) E.Olsen reported in as eligible. D.Brees pass incomplete short left to M.Colston (J.Abraham).,0,7,2012 -20121129_NO@ATL,1,56,6,NO,ATL,2,10,80,(11:06) D.Brees pass short left to J.Collins to NO 22 for 2 yards (D.Robinson; S.Weatherspoon).,0,7,2012 -20121129_NO@ATL,1,55,17,NO,ATL,3,8,78,(10:17) (Shotgun) D.Brees pass deep middle to J.Morgan to ATL 40 for 38 yards (W.Moore).,0,7,2012 -20121129_NO@ATL,1,54,33,NO,ATL,1,10,40,(9:33) (Shotgun) P.Thomas left guard to ATL 37 for 3 yards (V.Walker).,0,7,2012 -20121129_NO@ATL,1,53,55,NO,ATL,2,7,37,(8:55) E.Olsen reported in as eligible. D.Brees pass deep left intended for M.Colston INTERCEPTED by T.DeCoud at ATL 0. Touchback.,0,7,2012 -20121129_NO@ATL,1,53,43,ATL,NO,1,10,80,(8:43) (Shotgun) Jz. Rodgers right end to ATL 23 for 3 yards (C.Jordan).,7,0,2012 -20121129_NO@ATL,1,53,10,ATL,NO,2,7,77,(8:10) M.Ryan pass incomplete short right.,7,0,2012 -20121129_NO@ATL,1,53,1,ATL,NO,3,7,77,(8:01) (Shotgun) M.Ryan pass incomplete deep right to R.White.,7,0,2012 -20121129_NO@ATL,1,52,56,ATL,NO,4,7,77,(7:56) M.Bosher punts 44 yards to NO 33 Center-J.Harris fair catch by D.Sproles.,7,0,2012 -20121129_NO@ATL,1,52,47,NO,ATL,1,10,67,(7:47) E.Olsen reported in as eligible. C.Ivory right end to NO 29 for -4 yards (S.Weatherspoon; W.Moore).,0,7,2012 -20121129_NO@ATL,1,52,3,NO,ATL,2,14,71,(7:03) (Shotgun) E.Olsen reported in as eligible. D.Brees pass incomplete short right to D.Henderson.,0,7,2012 -20121129_NO@ATL,1,52,0,NO,ATL,3,14,71,(7:00) (Shotgun) D.Brees pass short left to M.Colston pushed ob at NO 44 for 15 yards (T.DeCoud).,0,7,2012 -20121129_NO@ATL,1,51,30,NO,ATL,1,10,56,(6:30) (Shotgun) P.Thomas left guard to 50 for 6 yards (W.Moore).,0,7,2012 -20121129_NO@ATL,1,50,55,NO,ATL,2,4,50,(5:55) E.Olsen reported in as eligible. C.Ivory left guard to ATL 48 for 2 yards (D.Robinson; V.Walker).,0,7,2012 -20121129_NO@ATL,1,50,9,NO,ATL,3,2,48,(5:09) (Shotgun) D.Brees pass incomplete short right to L.Moore.,0,7,2012 -20121129_NO@ATL,1,50,6,NO,ATL,4,2,48,(5:06) T.Morstead punts 40 yards to ATL 8 Center-J.Drescher downed by NO-W.Herring.,0,7,2012 -20121129_NO@ATL,1,49,55,ATL,NO,1,10,92,(4:55) M.Turner right end to ATL 20 for 12 yards (C.Jordan).,7,0,2012 -20121129_NO@ATL,1,49,20,ATL,NO,1,10,80,(4:20) M.Turner left guard to ATL 32 for 12 yards (R.Harper).,7,0,2012 -20121129_NO@ATL,1,48,42,ATL,NO,1,10,68,(3:42) M.Ryan pass incomplete short right to J.Jones (B.Bunkley) [T.McBride].,7,0,2012 -20121129_NO@ATL,1,48,37,ATL,NO,2,10,68,(3:37) M.Ryan pass incomplete deep right to H.Douglas [C.Lofton].,7,0,2012 -20121129_NO@ATL,1,48,28,ATL,NO,3,10,68,(3:28) (Shotgun) M.Ryan pass incomplete short left to J.Jones.,7,0,2012 -20121129_NO@ATL,1,48,25,ATL,NO,4,10,68,(3:25) M.Bosher punts 56 yards to NO 12 Center-J.Harris fair catch by P.Robinson.,7,0,2012 -20121129_NO@ATL,1,48,9,NO,ATL,1,10,88,(3:09) E.Olsen reported in as eligible. M.Ingram left tackle to NO 17 for 5 yards (S.Nicholas).,0,7,2012 -20121129_NO@ATL,1,47,37,NO,ATL,2,5,83,(2:37) E.Olsen reported in as eligible. M.Ingram right tackle to NO 20 for 3 yards (C.Matthews).,0,7,2012 -20121129_NO@ATL,1,46,53,NO,ATL,3,2,80,(1:53) (Shotgun) D.Brees pass incomplete [K.Biermann].,0,7,2012 -20121129_NO@ATL,1,46,48,NO,ATL,4,2,80,(1:48) T.Morstead punts 47 yards to ATL 33 Center-J.Drescher. D.Franks to ATL 46 for 13 yards (R.Bush). PENALTY on NO-E.Mack Player Out of Bounds on Punt 5 yards enforced at ATL 46.,0,7,2012 -20121129_NO@ATL,1,46,36,ATL,NO,1,10,49,(1:36) M.Ryan pass short left to M.Cox to NO 41 for 8 yards (D.Hawthorne).,7,0,2012 -20121129_NO@ATL,1,46,28,ATL,NO,2,2,41,(1:28) M.Ryan pass short left to J.Jones to NO 34 for 7 yards (P.Robinson).,7,0,2012 -20121129_NO@ATL,1,45,24,ATL,NO,1,10,34,(:24) M.Ryan pass short middle to J.Jones to NO 16 for 18 yards (R.Harper).,7,0,2012 -20121129_NO@ATL,2,45,0,ATL,NO,1,10,16,(15:00) M.Johnson reported in as eligible. Jz. Rodgers right end to NO 17 for -1 yards (J.Vilma).,7,0,2012 -20121129_NO@ATL,2,44,14,ATL,NO,2,11,17,(14:14) (Shotgun) M.Ryan pass deep middle to T.Gonzalez for 17 yards TOUCHDOWN.,7,0,2012 -20121129_NO@ATL,2,44,14,ATL,NO,,,17,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 -20121129_NO@ATL,2,44,14,ATL,NO,,,17,M.Bryant kicks 71 yards from ATL 35 to NO -6. T.Cadet to NO 13 for 19 yards (A.Smith).,14,0,2012 -20121129_NO@ATL,2,44,4,NO,ATL,1,10,87,(14:04) D.Brees pass short right to J.Graham to NO 25 for 12 yards (K.Biermann).,0,14,2012 -20121129_NO@ATL,2,43,41,NO,ATL,1,10,75,(13:41) P.Thomas right tackle to NO 28 for 3 yards (T.DeCoud).,0,14,2012 -20121129_NO@ATL,2,43,11,NO,ATL,2,7,72,(13:11) (Shotgun) D.Brees pass short left to M.Higgins to NO 25 for -3 yards (D.Robinson).,0,14,2012 -20121129_NO@ATL,2,42,25,NO,ATL,3,10,75,(12:25) (Shotgun) PENALTY on NO-D.Brees Delay of Game 5 yards enforced at NO 25 - No Play.,0,14,2012 -20121129_NO@ATL,2,42,0,NO,ATL,3,15,80,(12:00) (Shotgun) D.Brees pass incomplete short left to M.Colston.,0,14,2012 -20121129_NO@ATL,2,41,53,NO,ATL,4,15,80,(11:53) T.Morstead punts 52 yards to ATL 28 Center-J.Drescher downed by NO-W.Herring.,0,14,2012 -20121129_NO@ATL,2,41,41,ATL,NO,1,10,72,(11:41) M.Turner right tackle to ATL 30 for 2 yards (J.Vilma; A.Hicks).,14,0,2012 -20121129_NO@ATL,2,40,56,ATL,NO,2,8,70,(10:56) M.Ryan pass incomplete short left to R.White.,14,0,2012 -20121129_NO@ATL,2,40,51,ATL,NO,3,8,70,(10:51) (Shotgun) M.Ryan pass short left to J.Snelling to ATL 37 for 7 yards (E.Mack; C.Lofton).,14,0,2012 -20121129_NO@ATL,2,40,6,ATL,NO,4,1,63,(10:06) M.Bosher punts 49 yards to NO 14 Center-J.Harris. D.Sproles ran ob at NO 35 for 21 yards (M.Bosher).,14,0,2012 -20121129_NO@ATL,2,39,52,NO,ATL,1,10,65,(9:52) D.Brees pass short left intended for C.Ivory INTERCEPTED by S.Weatherspoon at NO 35. S.Weatherspoon to NO 29 for 6 yards (C.Ivory).,0,14,2012 -20121129_NO@ATL,2,39,44,ATL,NO,1,10,29,(9:44) M.Turner right end to NO 27 for 2 yards (P.Robinson).,14,0,2012 -20121129_NO@ATL,2,39,7,ATL,NO,2,8,27,(9:07) M.Ryan pass incomplete short right to T.Gonzalez.,14,0,2012 -20121129_NO@ATL,2,39,3,ATL,NO,3,8,27,(9:03) (Shotgun) M.Ryan pass incomplete deep right to H.Douglas.,14,0,2012 -20121129_NO@ATL,2,38,58,ATL,NO,4,8,27,(8:58) M.Bryant 45 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,14,0,2012 -20121129_NO@ATL,2,38,58,ATL,NO,,,27,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,0,2012 -20121129_NO@ATL,2,38,53,NO,ATL,1,10,80,(8:53) E.Olsen reported in as eligible. M.Ingram right guard to NO 21 for 1 yard (D.Robinson).,0,17,2012 -20121129_NO@ATL,2,38,17,NO,ATL,2,9,79,(8:17) (Shotgun) D.Brees pass incomplete short left to M.Colston (R.McClain) [J.Abraham].,0,17,2012 -20121129_NO@ATL,2,38,12,NO,ATL,3,9,79,(8:12) (Shotgun) D.Brees pass deep middle to L.Moore to ATL 47 for 32 yards (W.Moore).,0,17,2012 -20121129_NO@ATL,2,37,31,NO,ATL,1,10,47,(7:31) E.Olsen reported in as eligible. M.Ingram right guard to ATL 45 for 2 yards (C.Matthews).,0,17,2012 -20121129_NO@ATL,2,36,51,NO,ATL,2,8,45,(6:51) D.Brees pass incomplete deep middle to J.Morgan (C.Owens).,0,17,2012 -20121129_NO@ATL,2,36,44,NO,ATL,3,8,45,(6:44) (Shotgun) D.Brees pass short left to M.Colston to ATL 33 for 12 yards (C.Owens) [J.Abraham].,0,17,2012 -20121129_NO@ATL,2,36,5,NO,ATL,1,10,33,(6:05) M.Ingram left guard to ATL 32 for 1 yard (A.Dent).,0,17,2012 -20121129_NO@ATL,2,35,31,NO,ATL,2,9,32,(5:31) E.Olsen reported in as eligible. C.Ivory left end to ATL 26 for 6 yards (D.Robinson).,0,17,2012 -20121129_NO@ATL,2,34,48,NO,ATL,3,3,26,(4:48) (Shotgun) D.Brees pass incomplete deep right to D.Henderson. PENALTY on ATL-K.Biermann Defensive Offside 5 yards enforced at ATL 26 - No Play.,0,17,2012 -20121129_NO@ATL,2,34,26,NO,ATL,1,10,21,(4:26) D.Brees pass short middle to M.Colston to ATL 10 for 11 yards (T.DeCoud) [T.Robertson].,0,17,2012 -20121129_NO@ATL,2,33,46,NO,ATL,1,10,10,(3:46) P.Thomas right guard for 10 yards TOUCHDOWN. PENALTY on ATL-W.Moore Face Mask (15 Yards) 15 yards enforced between downs. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. P.Thomas right guard to ATL 1 for 9 yards (W.Moore). PENALTY on ATL-W.Moore Face Mask (15 Yards) 0 yards enforced at ATL 1.,0,17,2012 -20121129_NO@ATL,2,33,25,NO,ATL,1,1,1,(3:25) M.Ingram right guard for 1 yard TOUCHDOWN.,0,17,2012 -20121129_NO@ATL,2,33,25,NO,ATL,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,17,2012 -20121129_NO@ATL,2,33,25,NO,ATL,,,1,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,7,17,2012 -20121129_NO@ATL,2,33,17,ATL,NO,1,10,80,(3:17) (Shotgun) M.Ryan pass short right to J.Snelling to ATL 20 for no gain (C.Lofton).,17,7,2012 -20121129_NO@ATL,2,32,39,ATL,NO,2,10,80,(2:39) (Shotgun) M.Ryan sacked at ATL 14 for -6 yards (C.Jordan).,17,7,2012 -20121129_NO@ATL,2,32,27,ATL,NO,3,16,86,(2:27) (Shotgun) M.Ryan pass short right to J.Snelling to ATL 29 for 15 yards (R.Harper).,17,7,2012 -20121129_NO@ATL,2,32,24,ATL,NO,4,1,71,(2:24) M.Bosher punts 57 yards to NO 14 Center-J.Harris. D.Sproles to NO 29 for 15 yards (C.Hope).,17,7,2012 -20121129_NO@ATL,2,32,13,NO,ATL,1,10,71,(2:13) (Shotgun) D.Brees pass deep right to L.Moore to ATL 42 for 29 yards (C.Owens).,7,17,2012 -20121129_NO@ATL,2,32,0,NO,ATL,1,10,42,(2:00) (Shotgun) D.Brees pass short middle to M.Colston to ATL 21 for 21 yards (T.DeCoud).,7,17,2012 -20121129_NO@ATL,2,31,38,NO,ATL,1,10,21,(1:38) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,7,17,2012 -20121129_NO@ATL,2,31,34,NO,ATL,2,10,21,(1:34) (Shotgun) D.Brees pass short right to D.Sproles to ATL 7 for 14 yards (S.Weatherspoon).,7,17,2012 -20121129_NO@ATL,2,30,51,NO,ATL,1,7,7,(:51) (Shotgun) D.Brees pass short right to D.Sproles for 7 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NO-J.Graham Offensive Pass Interference 10 yards enforced at ATL 7 - No Play.,7,17,2012 -20121129_NO@ATL,2,30,45,NO,ATL,1,17,17,(:45) (Shotgun) D.Brees pass short right to D.Sproles to ATL 5 for 12 yards (W.Moore).,7,17,2012 -20121129_NO@ATL,2,30,12,NO,ATL,2,5,5,(:12) (Shotgun) D.Brees pass short left to D.Sproles to ATL 3 for 2 yards (R.McClain; S.Weatherspoon).,7,17,2012 -20121129_NO@ATL,3,30,0,ATL,NO,,,5,M.Bosher kicks 73 yards from ATL 35 to NO -8. T.Cadet to NO 14 for 22 yards (R.McClain).,17,7,2012 -20121129_NO@ATL,3,29,55,NO,ATL,1,10,86,(14:55) P.Thomas left guard to NO 21 for 7 yards (W.Moore).,7,17,2012 -20121129_NO@ATL,3,29,25,NO,ATL,2,3,79,(14:25) (Shotgun) D.Brees pass short left to M.Colston to NO 28 for 7 yards (D.Robinson).,7,17,2012 -20121129_NO@ATL,3,28,45,NO,ATL,1,10,72,(13:45) P.Thomas right guard to NO 39 for 11 yards (R.McClain).,7,17,2012 -20121129_NO@ATL,3,28,14,NO,ATL,1,10,61,(13:14) (Shotgun) D.Brees pass incomplete short left to D.Sproles (J.Abraham).,7,17,2012 -20121129_NO@ATL,3,28,10,NO,ATL,2,10,61,(13:10) (Shotgun) D.Brees pass short left to L.Moore ran ob at ATL 49 for 12 yards (D.Robinson).,7,17,2012 -20121129_NO@ATL,3,27,40,NO,ATL,1,10,49,(12:40) (Shotgun) P.Thomas left guard to ATL 36 for 13 yards (T.DeCoud).,7,17,2012 -20121129_NO@ATL,3,27,8,NO,ATL,1,10,36,(12:08) P.Thomas right guard to ATL 30 for 6 yards (C.Peters).,7,17,2012 -20121129_NO@ATL,3,26,37,NO,ATL,2,4,30,(11:37) D.Brees pass incomplete short right to J.Graham (R.McClain).,7,17,2012 -20121129_NO@ATL,3,26,32,NO,ATL,3,4,30,(11:32) (Shotgun) PENALTY on NO-J.Bushrod False Start 5 yards enforced at ATL 30 - No Play.,7,17,2012 -20121129_NO@ATL,3,26,32,NO,ATL,3,9,35,(11:32) (Shotgun) D.Brees pass short right to D.Sproles ran ob at ATL 25 for 10 yards (R.McClain).,7,17,2012 -20121129_NO@ATL,3,26,4,NO,ATL,1,10,25,(11:04) P.Thomas right tackle to ATL 24 for 1 yard (T.Robertson).,7,17,2012 -20121129_NO@ATL,3,25,30,NO,ATL,2,9,24,(10:30) D.Brees pass short middle to J.Graham to ATL 7 for 17 yards (T.DeCoud).,7,17,2012 -20121129_NO@ATL,3,24,51,NO,ATL,1,7,7,(9:51) (Shotgun) D.Brees pass incomplete short middle to L.Moore.,7,17,2012 -20121129_NO@ATL,3,24,46,NO,ATL,2,7,7,(9:46) D.Brees pass short left to M.Ingram to ATL 8 for -1 yards (W.Moore).,7,17,2012 -20121129_NO@ATL,3,24,6,NO,ATL,3,8,8,(9:06) (Shotgun) D.Brees pass short middle to P.Thomas to ATL 3 for 5 yards (R.McClain).,7,17,2012 -20121129_NO@ATL,3,23,28,NO,ATL,4,3,3,(8:28) G.Hartley 21 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,17,2012 -20121129_NO@ATL,3,23,28,NO,ATL,,,3,T.Morstead kicks 70 yards from NO 35 to ATL -5. Jz. Rodgers to ATL 17 for 22 yards (R.Humber).,10,17,2012 -20121129_NO@ATL,3,23,19,ATL,NO,1,10,83,(8:19) M.Turner right guard to ATL 22 for 5 yards (B.Bunkley).,17,10,2012 -20121129_NO@ATL,3,22,49,ATL,NO,2,5,78,(7:49) M.Turner right tackle to ATL 24 for 2 yards. PENALTY on ATL-T.McClure Offensive Holding 10 yards enforced at ATL 22 - No Play.,17,10,2012 -20121129_NO@ATL,3,22,27,ATL,NO,2,15,88,(7:27) (Shotgun) M.Ryan pass short right to J.Jones pushed ob at ATL 20 for 8 yards (R.Harper).,17,10,2012 -20121129_NO@ATL,3,21,57,ATL,NO,3,7,80,(6:57) (Shotgun) M.Ryan pass incomplete short right to R.White (J.Greer).,17,10,2012 -20121129_NO@ATL,3,21,53,ATL,NO,4,7,80,(6:53) M.Bosher punts 56 yards to NO 24 Center-J.Harris. D.Sproles to NO 30 for 6 yards (A.Dent).,17,10,2012 -20121129_NO@ATL,3,21,42,NO,ATL,1,10,70,(6:42) E.Olsen reported in as eligible. D.Brees pass short right to L.Moore ran ob at NO 42 for 12 yards.,10,17,2012 -20121129_NO@ATL,3,21,14,NO,ATL,1,10,58,(6:14) P.Thomas left tackle to 50 for 8 yards (S.Nicholas).,10,17,2012 -20121129_NO@ATL,3,20,40,NO,ATL,2,2,50,(5:40) (Shotgun) D.Brees pass incomplete deep left to D.Sproles.,10,17,2012 -20121129_NO@ATL,3,20,33,NO,ATL,3,2,50,(5:33) P.Thomas left end pushed ob at ATL 42 for 8 yards (T.DeCoud).,10,17,2012 -20121129_NO@ATL,3,20,9,NO,ATL,1,10,42,(5:09) P.Thomas right guard to ATL 34 for 8 yards (W.Moore; S.Nicholas).,10,17,2012 -20121129_NO@ATL,3,19,36,NO,ATL,2,2,34,(4:36) E.Olsen reported in as eligible. D.Brees pass short right to J.Collins pushed ob at ATL 34 for no gain (S.Nicholas).,10,17,2012 -20121129_NO@ATL,3,19,3,NO,ATL,3,2,34,(4:03) (Shotgun) D.Brees pass incomplete deep middle to M.Colston.,10,17,2012 -20121129_NO@ATL,3,18,58,NO,ATL,4,2,34,(3:58) G.Hartley 52 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,10,17,2012 -20121129_NO@ATL,3,18,58,NO,ATL,,,34,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,13,17,2012 -20121129_NO@ATL,3,18,53,ATL,NO,1,10,80,(3:53) M.Ryan pass incomplete deep left to J.Jones [T.McBride].,17,13,2012 -20121129_NO@ATL,3,18,46,ATL,NO,2,10,80,(3:46) (Shotgun) M.Ryan pass incomplete short left [S.Ellis].,17,13,2012 -20121129_NO@ATL,3,18,41,ATL,NO,3,10,80,(3:41) (Shotgun) M.Ryan pass incomplete deep middle to R.White (C.Lofton).,17,13,2012 -20121129_NO@ATL,3,18,33,ATL,NO,4,10,80,(3:33) M.Bosher punts 57 yards to NO 23 Center-J.Harris. D.Sproles to NO 43 for 20 yards (A.Dent).,17,13,2012 -20121129_NO@ATL,3,18,20,NO,ATL,1,10,57,(3:20) (Shotgun) D.Brees pass short left to M.Colston to NO 48 for 5 yards (R.McClain).,13,17,2012 -20121129_NO@ATL,3,17,49,NO,ATL,2,5,52,(2:49) D.Brees pass short right intended for D.Henderson INTERCEPTED by W.Moore at ATL 43. W.Moore to NO 41 for 16 yards (J.Evans).,13,17,2012 -20121129_NO@ATL,3,17,38,ATL,NO,1,10,41,(2:38) (No Huddle Shotgun) Jz. Rodgers right end to NO 42 for -1 yards (C.Lofton; J.Casillas).,17,13,2012 -20121129_NO@ATL,3,17,0,ATL,NO,2,11,42,(2:00) (Shotgun) M.Ryan pass short middle to T.Gonzalez to NO 24 for 18 yards (R.Harper).,17,13,2012 -20121129_NO@ATL,3,16,38,ATL,NO,1,10,24,(1:38) (No Huddle) M.Ryan pass deep right to R.White ran ob at NO 4 for 20 yards.,17,13,2012 -20121129_NO@ATL,3,16,8,ATL,NO,1,4,4,(1:08) M.Turner left end to NO 6 for -2 yards (W.Smith; J.Greer).,17,13,2012 -20121129_NO@ATL,3,15,28,ATL,NO,2,6,6,(:28) (Shotgun) PENALTY on ATL-T.Gonzalez False Start 5 yards enforced at NO 6 - No Play.,17,13,2012 -20121129_NO@ATL,3,15,3,ATL,NO,2,11,11,(:03) (Shotgun) M.Ryan pass incomplete short middle to J.Snelling.,17,13,2012 -20121129_NO@ATL,4,15,0,ATL,NO,3,11,11,(15:00) (Shotgun) M.Ryan pass incomplete short left to R.White.,17,13,2012 -20121129_NO@ATL,4,14,53,ATL,NO,4,11,11,(14:53) M.Bryant 29 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,17,13,2012 -20121129_NO@ATL,4,14,53,ATL,NO,,,11,M.Bosher kicks 71 yards from ATL 35 to NO -6. T.Cadet to NO 20 for 26 yards (C.Matthews).,20,13,2012 -20121129_NO@ATL,4,14,43,NO,ATL,1,10,80,(14:43) P.Thomas right guard to NO 25 for 5 yards (K.Biermann).,13,20,2012 -20121129_NO@ATL,4,14,10,NO,ATL,2,5,75,(14:10) PENALTY on NO-J.Evans False Start 5 yards enforced at NO 25 - No Play.,13,20,2012 -20121129_NO@ATL,4,13,51,NO,ATL,2,10,80,(13:51) (Shotgun) D.Brees pass short left to J.Graham to NO 25 for 5 yards (S.Nicholas).,13,20,2012 -20121129_NO@ATL,4,13,9,NO,ATL,3,5,75,(13:09) (Shotgun) D.Brees pass short left to L.Moore to NO 34 for 9 yards (R.McClain).,13,20,2012 -20121129_NO@ATL,4,12,26,NO,ATL,1,10,66,(12:26) D.Brees pass deep middle to J.Graham to ATL 41 for 25 yards (J.Abraham).,13,20,2012 -20121129_NO@ATL,4,11,48,NO,ATL,1,10,41,(11:48) (Shotgun) D.Brees pass short right to D.Sproles ran ob at ATL 32 for 9 yards (W.Moore).,13,20,2012 -20121129_NO@ATL,4,11,26,NO,ATL,2,1,32,(11:26) P.Thomas left end to ATL 36 for -4 yards (W.Moore).,13,20,2012 -20121129_NO@ATL,4,10,40,NO,ATL,3,5,36,(10:40) (Shotgun) D.Brees sacked at ATL 42 for -6 yards (J.Abraham).,13,20,2012 -20121129_NO@ATL,4,10,14,NO,ATL,4,11,42,(10:14) T.Morstead punts 42 yards to end zone Center-J.Drescher Touchback.,13,20,2012 -20121129_NO@ATL,4,10,3,ATL,NO,1,10,80,(10:03) M.Ryan pass short left to J.Jones to ATL 24 for 4 yards (E.Mack).,20,13,2012 -20121129_NO@ATL,4,9,33,ATL,NO,2,6,76,(9:33) M.Ryan pass short left to T.Gonzalez pushed ob at ATL 38 for 14 yards (C.Lofton).,20,13,2012 -20121129_NO@ATL,4,9,5,ATL,NO,1,10,62,(9:05) M.Ryan pass short middle to M.Turner to ATL 45 for 7 yards (C.Lofton; J.Vilma).,20,13,2012 -20121129_NO@ATL,4,8,28,ATL,NO,2,3,55,(8:28) M.Turner left end to ATL 48 for 3 yards (D.Hawthorne).,20,13,2012 -20121129_NO@ATL,4,7,47,ATL,NO,1,10,52,(7:47) M.Ryan pass incomplete short right to R.White (A.Hicks).,20,13,2012 -20121129_NO@ATL,4,7,43,ATL,NO,2,10,52,(7:43) (Shotgun) Jz. Rodgers right tackle to 50 for 2 yards (C.Lofton).,20,13,2012 -20121129_NO@ATL,4,6,57,ATL,NO,3,8,50,(6:57) (Shotgun) M.Ryan pass short left to J.Jones ran ob at NO 39 for 11 yards (W.Smith).,20,13,2012 -20121129_NO@ATL,4,6,29,ATL,NO,1,10,39,(6:29) M.Ryan pass short middle to Jz. Rodgers to NO 37 for 2 yards (R.Bush).,20,13,2012 -20121129_NO@ATL,4,5,51,ATL,NO,2,8,37,(5:51) M.Ryan pass short right to Jz. Rodgers to NO 43 for -6 yards (C.Lofton).,20,13,2012 -20121129_NO@ATL,4,5,10,ATL,NO,3,14,43,(5:10) (Shotgun) M.Ryan pass short right to J.Snelling to NO 37 for 6 yards (J.Casillas).,20,13,2012 -20121129_NO@ATL,4,4,29,ATL,NO,4,8,37,(4:29) M.Bryant 55 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,20,13,2012 -20121129_NO@ATL,4,4,29,ATL,NO,,,37,M.Bosher kicks 71 yards from ATL 35 to NO -6. T.Cadet to NO 21 for 27 yards (R.James).,23,13,2012 -20121129_NO@ATL,4,4,19,NO,ATL,1,10,79,(4:19) (Shotgun) D.Brees pass incomplete short middle to D.Sproles.,13,23,2012 -20121129_NO@ATL,4,4,14,NO,ATL,2,10,79,(4:14) (Shotgun) D.Brees pass short right to L.Moore to NO 35 for 14 yards (C.Owens).,13,23,2012 -20121129_NO@ATL,4,3,46,NO,ATL,1,10,65,(3:46) (Shotgun) D.Brees pass incomplete short left to L.Moore. NO-Z.Strief was injured during the play. His return is Probable.,13,23,2012 -20121129_NO@ATL,4,3,42,NO,ATL,2,10,65,(3:42) (Shotgun) D.Brees pass incomplete deep right to D.Henderson (C.Owens).,13,23,2012 -20121129_NO@ATL,4,3,36,NO,ATL,3,10,65,(3:36) (Shotgun) D.Brees pass short middle INTERCEPTED by J.Babineaux [K.Biermann] at NO 33. J.Babineaux to NO 35 for -2 yards (B.De La Puente).,13,23,2012 -20121129_NO@ATL,4,3,29,ATL,NO,1,10,35,(3:29) M.Turner right tackle to NO 34 for 1 yard (R.Bush; C.Jordan).,23,13,2012 -20121129_NO@ATL,4,2,43,ATL,NO,2,9,34,(2:43) M.Johnson reported in as eligible. M.Turner left end to NO 28 for 6 yards (R.Bush). FUMBLES (R.Bush) RECOVERED by NO-R.Bush at NO 29. R.Bush for 71 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. M.Johnson and M.Johnson reported in as eligible. M.Turner left end to NO 28 for 6 yards (R.Bush). FUMBLES (R.Bush) RECOVERED by NO-R.Bush at NO 29. R.Bush to NO 30 for 1 yard (M.Johnson).,23,13,2012 -20121129_NO@ATL,4,2,33,NO,ATL,1,10,70,(2:33) (Shotgun) D.Brees pass short middle to L.Moore to NO 45 for 15 yards.,13,23,2012 -20121129_NO@ATL,4,2,11,NO,ATL,1,10,55,(2:11) (No Huddle Shotgun) D.Brees pass incomplete short middle to J.Graham (S.Nicholas).,13,23,2012 -20121129_NO@ATL,4,2,6,NO,ATL,2,10,55,(2:06) (Shotgun) D.Brees pass short left intended for D.Sproles INTERCEPTED by C.Peters at NO 36. C.Peters to NO 33 for 3 yards (W.Robinson). PENALTY on ATL-J.Abraham Defensive Offside 5 yards enforced at NO 45 - No Play.,13,23,2012 -20121129_NO@ATL,4,2,0,NO,ATL,2,5,50,(2:00) (Shotgun) D.Brees pass deep left intended for L.Moore INTERCEPTED by W.Moore at ATL 19. W.Moore ran ob at ATL 19 for no gain.,13,23,2012 -20121129_NO@ATL,4,1,52,ATL,NO,1,10,81,(1:52) Jz. Rodgers right end to ATL 23 for 4 yards (J.Greer; C.Lofton).,23,13,2012 -20121129_NO@ATL,4,1,44,ATL,NO,2,6,77,(1:44) M.Johnson reported in as eligible. Jz. Rodgers left tackle to ATL 31 for 8 yards (C.Jordan).,23,13,2012 -20121129_NO@ATL,4,1,32,ATL,NO,1,10,69,(1:32) M.Ryan kneels to ATL 30 for -1 yards.,23,13,2012 -20121129_NO@ATL,4,0,50,ATL,NO,2,11,70,(:50) M.Ryan kneels to ATL 30 for no gain.,23,13,2012 -20121129_NO@ATL,4,0,26,ATL,NO,3,11,70,(:26) M.Ryan kneels to ATL 29 for -1 yards.,23,13,2012 -20121129_NO@ATL,4,0,26,ATL,NO,,,70,                      ,23,13,2012 -20121202_JAC@BUF,1,0,0,BUF,JAC,,,70,R.Lindell kicks 64 yards from BUF 35 to JAX 1. Q.Cosby to JAX 22 for 21 yards (R.Brooks).,0,0,2012 -20121202_JAC@BUF,1,59,54,JAC,BUF,1,10,78,(14:54) R.Jennings left tackle to JAX 27 for 5 yards (N.Bradham; G.Wilson).,0,0,2012 -20121202_JAC@BUF,1,59,16,JAC,BUF,2,5,73,(14:16) C.Henne pass incomplete short right to C.Shorts (R.Brooks). Receiver and breakup near sideline at JAX 40.,0,0,2012 -20121202_JAC@BUF,1,59,16,JAC,BUF,3,5,73,(14:16) (Shotgun) C.Henne pass incomplete short right to J.Shipley. Through receiver's hands at JAX 31.,0,0,2012 -20121202_JAC@BUF,1,59,5,JAC,BUF,4,5,73,(14:05) B.Anger punts 51 yards to BUF 22 Center-J.Cain. L.McKelvin pushed ob at BUF 34 for 12 yards (M.Owens).,0,0,2012 -20121202_JAC@BUF,1,58,55,BUF,JAC,1,10,66,(13:55) (Shotgun) C.Spiller right guard to BUF 36 for 2 yards (P.Posluszny; T.Alualu).,0,0,2012 -20121202_JAC@BUF,1,58,10,BUF,JAC,2,8,64,(13:10) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson. Thrown wide of receiver. near sideline at BUF 43.,0,0,2012 -20121202_JAC@BUF,1,58,7,BUF,JAC,3,8,64,(13:07) (Shotgun) R.Fitzpatrick scrambles left tackle to BUF 47 for 11 yards (J.Babin).,0,0,2012 -20121202_JAC@BUF,1,57,24,BUF,JAC,1,10,53,(12:24) C.Spiller right guard to JAX 44 for 9 yards (M.Harris P.Posluszny).,0,0,2012 -20121202_JAC@BUF,1,56,43,BUF,JAC,2,1,44,(11:43) C.Spiller right guard to JAX 42 for 2 yards (A.Ross T.Alualu).,0,0,2012 -20121202_JAC@BUF,1,56,1,BUF,JAC,1,10,42,(11:01) C.Spiller right tackle to JAX 38 for 4 yards (C.Prosinski). PENALTY on BUF-C.Hairston Offensive Holding 10 yards enforced at JAX 42 - No Play.,0,0,2012 -20121202_JAC@BUF,1,55,42,BUF,JAC,1,20,52,(10:42) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Pass dropped in flat at JAX 48.,0,0,2012 -20121202_JAC@BUF,1,55,39,BUF,JAC,2,20,52,(10:39) (Shotgun) R.Fitzpatrick pass deep middle to T.Graham to JAX 1 for 51 yards (K.Rutland C.Prosinski). Caught at JAX 15 slanting from left.,0,0,2012 -20121202_JAC@BUF,1,54,51,BUF,JAC,1,1,1,(9:51) F.Jackson up the middle to JAX 1 for no gain (C.Prosinski T.Alualu).,0,0,2012 -20121202_JAC@BUF,1,54,14,BUF,JAC,2,1,1,(9:14) R.Fitzpatrick up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20121202_JAC@BUF,1,54,14,BUF,JAC,,,1,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,0,0,2012 -20121202_JAC@BUF,1,54,14,BUF,JAC,,,1,R.Lindell kicks 59 yards from BUF 35 to JAX 6. Q.Cosby to JAX 38 for 32 yards (R.Lindell; B.Smith).,7,0,2012 -20121202_JAC@BUF,1,54,3,JAC,BUF,1,10,62,(9:03) (Shotgun) C.Henne pass short right to M.Lewis ran ob at JAX 47 for 9 yards. Out-pattern caught at JAX 40.,0,7,2012 -20121202_JAC@BUF,1,53,44,JAC,BUF,2,1,53,(8:44) R.Jennings up the middle to JAX 48 for 1 yard (K.Williams N.Barnett).,0,7,2012 -20121202_JAC@BUF,1,52,59,JAC,BUF,1,10,52,(7:59) (Shotgun) C.Henne pass incomplete short middle to J.Shipley. Dropped receiver at BUF 46.,0,7,2012 -20121202_JAC@BUF,1,52,55,JAC,BUF,2,10,52,(7:55) R.Jennings up the middle to BUF 48 for 4 yards (K.Sheppard).,0,7,2012 -20121202_JAC@BUF,1,52,13,JAC,BUF,3,6,48,(7:13) (Shotgun) C.Henne pass incomplete short left to J.Blackmon. Overthrown receiver near sideline at BUF 35.,0,7,2012 -20121202_JAC@BUF,1,52,8,JAC,BUF,4,6,48,(7:08) B.Anger punts 36 yards to BUF 12 Center-J.Cain fair catch by L.McKelvin.,0,7,2012 -20121202_JAC@BUF,1,52,1,BUF,JAC,1,10,88,(7:01) (Shotgun) F.Jackson up the middle to BUF 12 for no gain (D.Lowery G.Selvie).,7,0,2012 -20121202_JAC@BUF,1,51,19,BUF,JAC,2,10,88,(6:19) (Shotgun) R.Fitzpatrick pass short left to T.Graham to BUF 15 for 3 yards (J.Mincey). Screen pass caught at BUF 10.,7,0,2012 -20121202_JAC@BUF,1,50,34,BUF,JAC,3,7,85,(5:34) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler [J.Chick]. Dropped receiver at BUF 26 crossing from middle.,7,0,2012 -20121202_JAC@BUF,1,50,29,BUF,JAC,4,7,85,(5:29) S.Powell punts 61 yards to JAX 24 Center-G.Sanborn. Q.Cosby to JAX 30 for 6 yards (B.Smith).,7,0,2012 -20121202_JAC@BUF,1,50,16,JAC,BUF,1,10,70,(5:16) R.Jennings up the middle to JAX 33 for 3 yards (K.Williams K.Sheppard). PENALTY on JAX-B.Meester Offensive Holding 10 yards enforced at JAX 30 - No Play.,0,7,2012 -20121202_JAC@BUF,1,49,49,JAC,BUF,1,20,80,(4:49) C.Henne pass deep middle to M.Lewis to JAX 43 for 23 yards (B.Scott). Caught in coverage at JAX 39. Penalty on BUF-B.Scott Illegal Contact declined.,0,7,2012 -20121202_JAC@BUF,1,49,26,JAC,BUF,1,10,57,(4:26) (Shotgun) R.Jennings right tackle to JAX 44 for 1 yard (A.Carrington S.Merriman).,0,7,2012 -20121202_JAC@BUF,1,48,50,JAC,BUF,2,9,56,(3:50) C.Henne pass incomplete short left to J.Blackmon. Underthrown receiver near sideline at BUF 45.,0,7,2012 -20121202_JAC@BUF,1,48,44,JAC,BUF,3,9,56,(3:44) (Shotgun) C.Henne pass short left to J.Blackmon to BUF 41 for 15 yards (S.Gilmore). FUMBLES (S.Gilmore) RECOVERED by BUF-D.Searcy at BUF 40. D.Searcy to BUF 49 for 9 yards (B.Meester). PENALTY on BUF-S.Gilmore Defensive Holding 5 yards enforced at JAX 44 - No Play.,0,7,2012 -20121202_JAC@BUF,1,48,32,JAC,BUF,1,10,51,(3:32) R.Jennings right tackle to JAX 47 for -2 yards (A.Carrington N.Barnett).,0,7,2012 -20121202_JAC@BUF,1,47,52,JAC,BUF,2,12,53,(2:52) C.Henne pass incomplete deep right to C.Shorts. Caught out of bounds at BUF 25.,0,7,2012 -20121202_JAC@BUF,1,47,45,JAC,BUF,3,12,53,(2:45) (Shotgun) PENALTY on JAX-C.Henne Delay of Game 5 yards enforced at JAX 47 - No Play.,0,7,2012 -20121202_JAC@BUF,1,47,45,JAC,BUF,3,17,58,(2:45) (Shotgun) C.Henne pass deep right to C.Shorts to BUF 40 for 18 yards (C.Butler). Caught along sideline at BUF 40.,0,7,2012 -20121202_JAC@BUF,1,47,10,JAC,BUF,1,10,40,(2:10) R.Jennings up the middle to BUF 40 for no gain (N.Bradham).,0,7,2012 -20121202_JAC@BUF,1,46,34,JAC,BUF,2,10,40,(1:34) (Shotgun) R.Jennings up the middle to BUF 39 for 1 yard (D.Searcy K.Moore). FUMBLES (D.Searcy) recovered by JAX-M.Lewis at BUF 41.,0,7,2012 -20121202_JAC@BUF,1,45,56,JAC,BUF,3,11,41,(:56) (Shotgun) C.Henne pass incomplete deep right to K.Elliott. Thrown wide of receiver at BUF 20 crossing from middle.,0,7,2012 -20121202_JAC@BUF,1,45,50,JAC,BUF,4,11,41,(:50) B.Anger punts 30 yards to BUF 11 Center-J.Cain fair catch by J.Rogers.,0,7,2012 -20121202_JAC@BUF,1,45,43,BUF,JAC,1,10,89,(:43) C.Spiller up the middle to BUF 12 for 1 yard (T.Knighton A.Branch).,7,0,2012 -20121202_JAC@BUF,2,45,0,BUF,JAC,2,9,88,(15:00) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 19 for 7 yards (M.Harris). Out-pattern caught in flat at BUF 17.,7,0,2012 -20121202_JAC@BUF,2,44,23,BUF,JAC,3,2,81,(14:23) C.Spiller right end pushed ob at BUF 22 for 3 yards (A.Ross).,7,0,2012 -20121202_JAC@BUF,2,43,49,BUF,JAC,1,10,78,(13:49) R.Fitzpatrick pass short middle intended for St.Johnson INTERCEPTED by P.Posluszny at BUF 37. P.Posluszny to BUF 32 for 5 yards (S.Chandler).,7,0,2012 -20121202_JAC@BUF,2,43,40,JAC,BUF,1,10,32,(13:40) R.Jennings right tackle to BUF 20 for 12 yards (N.Barnett S.Gilmore). FUMBLES (N.Barnett) recovered by JAX-E.Britton at BUF 17. E.Britton to BUF 17 for no gain (G.Wilson). JAX-R.Jennings was injured during the play. He is Out. R.Jennings assisted off.,0,7,2012 -20121202_JAC@BUF,2,43,15,JAC,BUF,1,10,17,(13:15) M.Owens up the middle to BUF 12 for 5 yards (K.Sheppard G.Wilson).,0,7,2012 -20121202_JAC@BUF,2,42,29,JAC,BUF,2,5,12,(12:29) (Shotgun) M.Owens right guard to BUF 3 for 9 yards (G.Wilson). PENALTY on JAX-C.Bradfield Unnecessary Roughness 15 yards enforced between downs.,0,7,2012 -20121202_JAC@BUF,2,42,4,JAC,BUF,1,10,18,(12:04) C.Henne pass incomplete short left to G.Jones [K.Williams]. Overthrown receiver near sideline at BUF 10.,0,7,2012 -20121202_JAC@BUF,2,41,59,JAC,BUF,2,10,18,(11:59) C.Henne pass incomplete short middle to C.Shorts (M.Williams). Pass batted at line.,0,7,2012 -20121202_JAC@BUF,2,41,55,JAC,BUF,3,10,18,(11:55) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon (G.Wilson). Receiver and coverage at BUF 3 receiver crossing from right.,0,7,2012 -20121202_JAC@BUF,2,41,51,JAC,BUF,4,10,18,(11:51) J.Scobee 36 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,7,2012 -20121202_JAC@BUF,2,41,51,JAC,BUF,,,18,J.Scobee kicks 74 yards from JAX 35 to BUF -9. B.Smith Touchback.,3,7,2012 -20121202_JAC@BUF,2,41,47,BUF,JAC,1,10,80,(11:47) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to BUF 31 for 11 yards (C.Mosley D.Lowery). Screen pass caught at BUF 21.,7,3,2012 -20121202_JAC@BUF,2,41,6,BUF,JAC,1,10,69,(11:06) F.Jackson right guard to BUF 36 for 5 yards (T.Alualu; R.Allen).,7,3,2012 -20121202_JAC@BUF,2,40,27,BUF,JAC,2,5,64,(10:27) F.Jackson left guard to BUF 46 for 10 yards (K.Rutland; D.Lowery).,7,3,2012 -20121202_JAC@BUF,2,39,40,BUF,JAC,1,10,54,(9:40) (Shotgun) F.Jackson up the middle to JAX 45 for 9 yards (J.Mincey).,7,3,2012 -20121202_JAC@BUF,2,38,59,BUF,JAC,2,1,45,(8:59) (Shotgun) C.Spiller up the middle to JAX 45 for no gain (C.Mosley T.Alualu). Measurement = third down.,7,3,2012 -20121202_JAC@BUF,2,38,25,BUF,JAC,3,1,45,(8:25) F.Jackson up the middle to JAX 42 for 3 yards (C.Mosley P.Posluszny).,7,3,2012 -20121202_JAC@BUF,2,37,39,BUF,JAC,1,10,42,(7:39) F.Jackson up the middle to JAX 45 for -3 yards (J.Babin).,7,3,2012 -20121202_JAC@BUF,2,37,0,BUF,JAC,2,13,45,(7:00) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at JAX 40 for 5 yards (K.Rutland). Screen pass caught at JAX 45.,7,3,2012 -20121202_JAC@BUF,2,36,25,BUF,JAC,3,8,40,(6:25) (Shotgun) R.Fitzpatrick scrambles right end to JAX 37 for 3 yards (A.Ross; P.Posluszny).,7,3,2012 -20121202_JAC@BUF,2,35,37,BUF,JAC,4,5,37,(5:37) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (R.Allen). Receiver and breakup at JAX 29 slanting from left.,7,3,2012 -20121202_JAC@BUF,2,35,33,JAC,BUF,1,10,63,(5:33) (Shotgun) C.Henne pass incomplete deep left to C.Shorts. Thrown behind receiver near sideline at BUF 39. PENALTY on BUF-R.Brooks Defensive Pass Interference 24 yards enforced at JAX 37 - No Play.,3,7,2012 -20121202_JAC@BUF,2,35,28,JAC,BUF,1,10,39,(5:28) C.Henne pass deep left to C.Shorts pushed ob at BUF 15 for 24 yards (R.Brooks). Caught along sideline at BUF 20.,3,7,2012 -20121202_JAC@BUF,2,34,58,JAC,BUF,1,10,15,(4:58) C.Henne pass short left to M.Lewis to BUF 3 for 12 yards (K.Williams). Out-pattern caught at BUF 18.,3,7,2012 -20121202_JAC@BUF,2,34,32,JAC,BUF,1,3,3,(4:32) M.Owens up the middle to BUF 1 for 2 yards (K.Sheppard R.Brooks).,3,7,2012 -20121202_JAC@BUF,2,33,52,JAC,BUF,2,1,1,(3:52) C.Henne right end for 1 yard TOUCHDOWN. Bootleg.,3,7,2012 -20121202_JAC@BUF,2,33,52,JAC,BUF,,,1,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,3,7,2012 -20121202_JAC@BUF,2,33,52,JAC,BUF,,,1,J.Scobee kicks 61 yards from JAX 35 to BUF 4. M.Easley pushed ob at JAX 41 for 55 yards (M.Harris). PENALTY on JAX-R.Murphy Unnecessary Roughness 15 yards enforced at JAX 41.,10,7,2012 -20121202_JAC@BUF,2,33,38,BUF,JAC,1,10,26,(3:38) Wildcat B.Smith at QB (R.Fitzpatrick at WR). (Shotgun) B.Smith right tackle to JAX 15 for 11 yards (D.Landry).,7,10,2012 -20121202_JAC@BUF,2,33,0,BUF,JAC,1,10,15,(3:00) C.Spiller right guard to JAX 11 for 4 yards (C.Mosley J.Babin).,7,10,2012 -20121202_JAC@BUF,2,32,19,BUF,JAC,2,6,11,(2:19) C.Spiller left tackle pushed ob at JAX 11 for no gain (D.Landry).,7,10,2012 -20121202_JAC@BUF,2,32,0,BUF,JAC,3,6,11,(2:00) R.Fitzpatrick pass short middle to S.Chandler for 11 yards TOUCHDOWN [J.Mincey]. Caught 6 yds. into end zone.,7,10,2012 -20121202_JAC@BUF,2,32,0,BUF,JAC,,,11,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell. PENALTY on JAX-A.Branch Defensive Offside 5 yards enforced between downs.,7,10,2012 -20121202_JAC@BUF,2,32,0,BUF,JAC,,,11,R.Lindell kicks 60 yards from BUF 40 to end zone Touchback. Kick through end zone.,14,10,2012 -20121202_JAC@BUF,2,31,56,JAC,BUF,1,10,80,(1:56) (Shotgun) C.Henne sacked at JAX 13 for -7 yards (M.Williams). FUMBLES (M.Williams) RECOVERED by BUF-M.Williams at JAX 14. M.Williams to JAX 14 for no gain (C.Bradfield).,10,14,2012 -20121202_JAC@BUF,2,31,51,BUF,JAC,1,10,14,(1:51) (Shotgun) F.Jackson up the middle to JAX 15 for -1 yards (J.Mincey).,14,10,2012 -20121202_JAC@BUF,2,31,15,BUF,JAC,2,11,15,(1:15) R.Fitzpatrick scrambles right guard to JAX 11 for 4 yards (R.Allen).,14,10,2012 -20121202_JAC@BUF,2,30,38,BUF,JAC,3,7,11,(:38) R.Fitzpatrick pass incomplete short left to B.Smith. Overthrown receiver 3 yds. into end zone slanting from sideline.,14,10,2012 -20121202_JAC@BUF,2,30,34,BUF,JAC,4,7,11,(:34) R.Lindell 29 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,14,10,2012 -20121202_JAC@BUF,2,30,34,BUF,JAC,,,11,R.Lindell kicks 62 yards from BUF 35 to JAX 3. Q.Cosby to JAX 12 for 9 yards (M.Easley).,17,10,2012 -20121202_JAC@BUF,2,30,22,JAC,BUF,1,10,88,(:22) C.Henne kneels to JAX 11 for -1 yards.,10,17,2012 -20121202_JAC@BUF,3,30,0,JAC,BUF,,,88,J.Scobee kicks 64 yards from JAX 35 to BUF 1. B.Smith to BUF 39 for 38 yards (M.Harris).,10,17,2012 -20121202_JAC@BUF,3,29,52,BUF,JAC,1,10,61,(14:52) C.Spiller up the middle to BUF 47 for 8 yards (D.Landry P.Posluszny).,17,10,2012 -20121202_JAC@BUF,3,29,15,BUF,JAC,2,2,53,(14:15) (Shotgun) C.Spiller up the middle to BUF 48 for 1 yard (T.Alualu R.Allen).,17,10,2012 -20121202_JAC@BUF,3,28,33,BUF,JAC,3,1,52,(13:33) C.Spiller left end pushed ob at JAX 49 for 3 yards (M.Harris).,17,10,2012 -20121202_JAC@BUF,3,27,56,BUF,JAC,1,10,49,(12:56) F.Jackson up the middle to JAX 34 for 15 yards (R.Allen).,17,10,2012 -20121202_JAC@BUF,3,27,13,BUF,JAC,1,10,34,(12:13) Wildcat B.Smith at QB (R.Fitzpatrick at WR). (Shotgun) B.Smith left tackle to JAX 17 for 17 yards (R.Allen).,17,10,2012 -20121202_JAC@BUF,3,26,27,BUF,JAC,1,10,17,(11:27) (Shotgun) R.Fitzpatrick pass incomplete short middle to F.Jackson (D.Landry). Screen pass broken up at JAX 20.,17,10,2012 -20121202_JAC@BUF,3,26,22,BUF,JAC,2,10,17,(11:22) (Shotgun) R.Fitzpatrick pass incomplete short middle to B.Smith [J.Babin]. Underthrown under pressure receiver at JAX 11. PENALTY on JAX-J.Babin Roughing the Passer 9 yards enforced at JAX 17 - No Play.,17,10,2012 -20121202_JAC@BUF,3,26,15,BUF,JAC,1,8,8,(11:15) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler. Overthrown receiver in back of end zone crossing from left.,17,10,2012 -20121202_JAC@BUF,3,26,11,BUF,JAC,2,8,8,(11:11) PENALTY on BUF-R.Fitzpatrick Delay of Game 5 yards enforced at JAX 8 - No Play.,17,10,2012 -20121202_JAC@BUF,3,26,11,BUF,JAC,2,13,13,(11:11) (Shotgun) R.Fitzpatrick pass short left to St.Johnson for 13 yards TOUCHDOWN. Caught 2 yds. into end zone near sideline.,17,10,2012 -20121202_JAC@BUF,3,26,11,BUF,JAC,,,13,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,17,10,2012 -20121202_JAC@BUF,3,26,11,BUF,JAC,,,13,R.Lindell kicks 59 yards from BUF 35 to JAX 6. Q.Cosby to JAX 27 for 21 yards (R.Martin M.Easley).,24,10,2012 -20121202_JAC@BUF,3,26,0,JAC,BUF,1,10,73,(11:00) M.Owens left guard to JAX 30 for 3 yards (N.Barnett K.Moore).,10,24,2012 -20121202_JAC@BUF,3,25,24,JAC,BUF,2,7,70,(10:24) C.Henne pass short right to C.Shorts to JAX 37 for 7 yards (B.Scott). Caught in flat at JAX 37.,10,24,2012 -20121202_JAC@BUF,3,24,51,JAC,BUF,1,10,63,(9:51) C.Henne pass incomplete deep middle to M.Lewis (J.Rogers). Receiver and coverage at BUF 40.,10,24,2012 -20121202_JAC@BUF,3,24,48,JAC,BUF,2,10,63,(9:48) C.Henne pass short right to J.Blackmon to JAX 46 for 9 yards (S.Gilmore). Caught in flat at JAX 44 slanting to middle.,10,24,2012 -20121202_JAC@BUF,3,24,5,JAC,BUF,3,1,54,(9:05) C.Henne FUMBLES (Aborted) at JAX 45 and recovers at JAX 45. C.Henne to JAX 45 for no gain (N.Barnett). PENALTY on BUF-Sp.Johnson Defensive Offside 5 yards enforced at JAX 46 - No Play.,10,24,2012 -20121202_JAC@BUF,3,23,45,JAC,BUF,1,10,49,(8:45) C.Henne pass incomplete deep right to M.Lewis. Thrown wide of receiver at BUF 25. PENALTY on BUF-R.Brooks Illegal Contact 5 yards enforced at BUF 49 - No Play.,10,24,2012 -20121202_JAC@BUF,3,23,39,JAC,BUF,1,10,44,(8:39) M.Owens left tackle to BUF 37 for 7 yards (S.Gilmore).,10,24,2012 -20121202_JAC@BUF,3,22,57,JAC,BUF,2,3,37,(7:57) C.Henne sacked at BUF 39 for -2 yards (K.Moore).,10,24,2012 -20121202_JAC@BUF,3,22,14,JAC,BUF,3,5,39,(7:14) (Shotgun) C.Henne pass incomplete deep left to C.Shorts. Thrown behind receiver at BUF 20.,10,24,2012 -20121202_JAC@BUF,3,22,9,JAC,BUF,4,5,39,(7:09) (Shotgun) C.Henne pass incomplete short left to M.Lewis. Underthrown receiver near sideline at BUF 31.,10,24,2012 -20121202_JAC@BUF,3,22,6,BUF,JAC,1,10,61,(7:06) F.Jackson right tackle to BUF 43 for 4 yards (C.Prosinski J.Babin).,24,10,2012 -20121202_JAC@BUF,3,21,30,BUF,JAC,2,6,57,(6:30) F.Jackson left guard to JAX 48 for 9 yards (R.Allen P.Posluszny).,24,10,2012 -20121202_JAC@BUF,3,20,48,BUF,JAC,1,10,48,(5:48) F.Jackson left guard to JAX 43 for 5 yards (R.Allen M.Harris).,24,10,2012 -20121202_JAC@BUF,3,20,7,BUF,JAC,2,5,43,(5:07) F.Jackson up the middle to JAX 37 for 6 yards (C.Mosley G.Selvie).,24,10,2012 -20121202_JAC@BUF,3,19,26,BUF,JAC,1,10,37,(4:26) F.Jackson right tackle to JAX 34 for 3 yards (D.Landry).,24,10,2012 -20121202_JAC@BUF,3,18,46,BUF,JAC,2,7,34,(3:46) F.Jackson right guard to JAX 31 for 3 yards (K.Rutland D.Landry).,24,10,2012 -20121202_JAC@BUF,3,18,4,BUF,JAC,3,4,31,(3:04) (Shotgun) R.Fitzpatrick pass short middle to F.Jackson to JAX 32 for -1 yards (P.Posluszny). Screen pass caught at JAX 32 crossing from left.,24,10,2012 -20121202_JAC@BUF,3,17,19,BUF,JAC,4,5,32,(2:19) R.Lindell 50 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,24,10,2012 -20121202_JAC@BUF,3,17,19,BUF,JAC,,,32,R.Lindell kicks 71 yards from BUF 35 to JAX -6. Q.Cosby Touchback.,27,10,2012 -20121202_JAC@BUF,3,17,14,JAC,BUF,1,10,80,(2:14) (Shotgun) C.Henne pass incomplete short middle to M.Lewis. Overthrown receiver at JAX 30 crossing to left.,10,27,2012 -20121202_JAC@BUF,3,17,9,JAC,BUF,2,10,80,(2:09) C.Henne pass short left to C.Shorts pushed ob at JAX 29 for 9 yards (R.Brooks). Caught near sideline at JAX 27.,10,27,2012 -20121202_JAC@BUF,3,16,36,JAC,BUF,3,1,71,(1:36) (Shotgun) M.Owens up the middle to JAX 28 for -1 yards (D.Searcy K.Williams).,10,27,2012 -20121202_JAC@BUF,3,16,36,JAC,BUF,4,2,72,(1:36) (Punt formation) PENALTY on JAX-J.Stanford False Start 5 yards enforced at JAX 28 - No Play.,10,27,2012 -20121202_JAC@BUF,3,15,43,JAC,BUF,4,7,77,(:43) B.Anger punts 39 yards to BUF 38 Center-J.Cain. J.Rogers to BUF 38 for no gain (A.Blake).,10,27,2012 -20121202_JAC@BUF,3,15,36,BUF,JAC,1,10,62,(:36) C.Spiller right guard to BUF 37 for -1 yards (R.Allen G.Selvie).,27,10,2012 -20121202_JAC@BUF,4,15,0,BUF,JAC,2,11,63,(15:00) (Shotgun) R.Fitzpatrick pass short left to B.Smith to BUF 49 for 12 yards (M.Harris). Caught in flat at BUF 48.,27,10,2012 -20121202_JAC@BUF,4,14,19,BUF,JAC,1,10,51,(14:19) (Shotgun) F.Jackson left tackle to JAX 44 for 7 yards (D.Landry).,27,10,2012 -20121202_JAC@BUF,4,13,38,BUF,JAC,2,3,44,(13:38) C.Spiller left tackle for 44 yards TOUCHDOWN. Key block: S.Chandler.,27,10,2012 -20121202_JAC@BUF,4,13,38,BUF,JAC,,,44,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,27,10,2012 -20121202_JAC@BUF,4,13,38,BUF,JAC,,,44,R.Lindell kicks 64 yards from BUF 35 to JAX 1. Q.Cosby to JAX 17 for 16 yards (C.McIntyre).,34,10,2012 -20121202_JAC@BUF,4,13,22,JAC,BUF,1,10,83,(13:22) (Shotgun) M.Owens left guard to JAX 21 for 4 yards (J.Byrd).,10,34,2012 -20121202_JAC@BUF,4,12,59,JAC,BUF,2,6,79,(12:59) (No Huddle Shotgun) C.Henne pass incomplete short middle to C.Shorts (C.Butler). Receiver and coverage at JAX 28 crossing from right. PENALTY on BUF-C.Butler Defensive Holding 5 yards enforced at JAX 21 - No Play.,10,34,2012 -20121202_JAC@BUF,4,12,55,JAC,BUF,1,10,74,(12:55) (Shotgun) C.Henne pass short middle to J.Shipley to JAX 32 for 6 yards (R.Brooks). Caught at JAX 32 crossing from right.,10,34,2012 -20121202_JAC@BUF,4,12,35,JAC,BUF,2,4,68,(12:35) (No Huddle Shotgun) C.Henne pass short right to J.Shipley to JAX 40 for 8 yards (R.Brooks). Caught at JAX 40 crossing from middle.,10,34,2012 -20121202_JAC@BUF,4,12,11,JAC,BUF,1,10,60,(12:11) (No Huddle Shotgun) C.Henne sacked at JAX 34 for -6 yards (sack split by S.Merriman and A.Carrington).,10,34,2012 -20121202_JAC@BUF,4,11,46,JAC,BUF,2,16,66,(11:46) (Shotgun) C.Henne pass incomplete deep right to J.Shipley [J.Byrd]. Underthrown receiver along sideline at BUF 45.,10,34,2012 -20121202_JAC@BUF,4,11,42,JAC,BUF,3,16,66,(11:42) (Shotgun) C.Henne pass short middle to C.Shorts to JAX 43 for 9 yards (G.Wilson). Caught at JAX 37 crossing from right.,10,34,2012 -20121202_JAC@BUF,4,11,0,JAC,BUF,4,7,57,(11:00) B.Anger punts 51 yards to BUF 6 Center-J.Cain. J.Rogers MUFFS catch RECOVERED by JAX-A.Blake at BUF 5.,10,34,2012 -20121202_JAC@BUF,4,10,51,JAC,BUF,1,5,5,(10:51) (Shotgun) C.Henne pass short middle to C.Shorts for 5 yards TOUCHDOWN. BUF-R.Brooks was injured during the play. Caught at goal line slanting from right. R.Brooks assisted off.,10,34,2012 -20121202_JAC@BUF,4,10,51,JAC,BUF,,,5,TWO-POINT CONVERSION ATTEMPT. M.Owens rushes up the middle. ATTEMPT SUCCEEDS.,10,34,2012 -20121202_JAC@BUF,4,10,51,JAC,BUF,,,5,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback. Kick through end zone.,18,34,2012 -20121202_JAC@BUF,4,10,47,BUF,JAC,1,10,80,(10:47) F.Jackson up the middle to BUF 24 for 4 yards (C.Mosley).,34,18,2012 -20121202_JAC@BUF,4,10,5,BUF,JAC,2,6,76,(10:05) F.Jackson up the middle to BUF 27 for 3 yards (C.Mosley T.Knighton).,34,18,2012 -20121202_JAC@BUF,4,9,22,BUF,JAC,3,3,73,(9:22) (Shotgun) C.Spiller left tackle to BUF 28 for 1 yard (R.Allen).,34,18,2012 -20121202_JAC@BUF,4,8,40,BUF,JAC,4,2,72,(8:40) S.Powell punts 46 yards to JAX 26 Center-G.Sanborn fair catch by Q.Cosby.,34,18,2012 -20121202_JAC@BUF,4,8,33,JAC,BUF,1,10,74,(8:33) (Shotgun) C.Henne pass incomplete deep left to C.Shorts. Underthrown receiver at BUF 35.,18,34,2012 -20121202_JAC@BUF,4,8,26,JAC,BUF,2,10,74,(8:26) (Shotgun) C.Henne pass short right to C.Shorts to JAX 31 for 5 yards (R.Brooks) [M.Dareus]. JAX-C.Shorts was injured during the play. He is Out. Caught near sideline at JAX 31 curling back to middle. PENALTY on BUF-R.Brooks Unnecessary Roughness 15 yards enforced at JAX 31.,18,34,2012 -20121202_JAC@BUF,4,7,55,JAC,BUF,1,10,54,(7:55) (Shotgun) C.Henne pass incomplete short left to J.Shipley. Thrown wide of receiver at BUF 45.,18,34,2012 -20121202_JAC@BUF,4,7,50,JAC,BUF,2,10,54,(7:50) (Shotgun) C.Henne pass short left to K.Elliott to BUF 41 for 13 yards (R.Brooks). Caught near sideline at BUF 45.,18,34,2012 -20121202_JAC@BUF,4,7,16,JAC,BUF,1,10,41,(7:16) (No Huddle Shotgun) C.Henne pass incomplete short right to J.Blackmon (S.Gilmore). Receiver and coverage at BUF 36 slanting to middle.,18,34,2012 -20121202_JAC@BUF,4,7,12,JAC,BUF,2,10,41,(7:12) (Shotgun) C.Henne pass incomplete short right to J.Shipley (J.Byrd). Receiver and coverage at BUF 35 crossing from middle. PENALTY on JAX-E.Monroe Offensive Holding 10 yards enforced at BUF 41 - No Play.,18,34,2012 -20121202_JAC@BUF,4,7,7,JAC,BUF,2,20,51,(7:07) (Shotgun) C.Henne scrambles left tackle to 50 for 1 yard (R.Brooks).,18,34,2012 -20121202_JAC@BUF,4,6,25,JAC,BUF,3,19,50,(6:25) (Shotgun) C.Henne pass short right to M.Owens to BUF 39 for 11 yards (J.Rogers). Caught in flat at BUF 40.,18,34,2012 -20121202_JAC@BUF,4,5,47,JAC,BUF,4,8,39,(5:47) (Shotgun) C.Henne pass incomplete deep left to J.Blackmon. Overthrown receiver near sideline at BUF 12.,18,34,2012 -20121202_JAC@BUF,4,5,41,BUF,JAC,1,10,61,(5:41) F.Jackson left guard to JAX 47 for 14 yards (K.Rutland).,34,18,2012 -20121202_JAC@BUF,4,4,54,BUF,JAC,1,10,47,(4:54) F.Jackson right guard to JAX 45 for 2 yards (P.Posluszny T.Knighton).,34,18,2012 -20121202_JAC@BUF,4,4,8,BUF,JAC,2,8,45,(4:08) F.Jackson right guard to JAX 47 for -2 yards (T.Knighton).,34,18,2012 -20121202_JAC@BUF,4,3,22,BUF,JAC,3,10,47,(3:22) F.Jackson left tackle pushed ob at JAX 42 for 5 yards (D.Landry).,34,18,2012 -20121202_JAC@BUF,4,3,15,BUF,JAC,4,5,42,(3:15) S.Powell punts 27 yards to JAX 15 Center-G.Sanborn fair catch by Q.Cosby.,34,18,2012 -20121202_JAC@BUF,4,3,8,JAC,BUF,1,10,85,(3:08) (Shotgun) C.Henne pass short right to K.Elliott pushed ob at JAX 26 for 11 yards (R.Brooks). Caught along sideline at JAX 26.,18,34,2012 -20121202_JAC@BUF,4,3,3,JAC,BUF,1,10,74,(3:03) (Shotgun) C.Henne pass incomplete deep right to J.Blackmon. Overthrown receiver along sideline at BUF 48. PENALTY on BUF-S.Gilmore Defensive Pass Interference 26 yards enforced at JAX 26 - No Play.,18,34,2012 -20121202_JAC@BUF,4,2,58,JAC,BUF,1,10,48,(2:58) (Shotgun) C.Henne sacked at JAX 44 for -8 yards (A.Carrington).,18,34,2012 -20121202_JAC@BUF,4,2,32,JAC,BUF,2,18,56,(2:32) (Shotgun) C.Henne pass short right to M.Lewis to BUF 32 for 24 yards (N.Barnett D.Searcy). Caught at BUF 48.,18,34,2012 -20121202_JAC@BUF,4,2,8,JAC,BUF,1,10,32,(2:08) (No Huddle Shotgun) C.Henne pass incomplete short left to K.Elliott (R.Brooks) [S.Merriman]. Receiver and coverage along sideline at BUF 24.,18,34,2012 -20121202_JAC@BUF,4,2,4,JAC,BUF,2,10,32,(2:04) (Shotgun) C.Henne pass short left to J.Shipley ran ob at BUF 27 for 5 yards. Caught near sideline at BUF 30.,18,34,2012 -20121202_JAC@BUF,4,1,59,JAC,BUF,3,5,27,(1:59) (Shotgun) C.Henne pass incomplete deep left to K.Elliott (R.Brooks). Receiver and coverage along sideline at BUF 9.,18,34,2012 -20121202_JAC@BUF,4,1,54,JAC,BUF,4,5,27,(1:54) (Shotgun) C.Henne pass incomplete short middle to J.Shipley (A.Carrington). Pass tipped at line receiver at BUF 20.,18,34,2012 -20121202_JAC@BUF,4,1,50,BUF,JAC,1,10,73,(1:50) F.Jackson up the middle to BUF 29 for 2 yards (J.Stanford J.Mincey).,34,18,2012 -20121202_JAC@BUF,4,1,42,BUF,JAC,2,8,71,(1:42) F.Jackson left guard to BUF 31 for 2 yards (M.Harris).,34,18,2012 -20121202_JAC@BUF,4,1,37,BUF,JAC,3,6,69,(1:37) F.Jackson up the middle to BUF 35 for 4 yards (J.Mincey P.Posluszny).,34,18,2012 -20121202_JAC@BUF,4,0,48,BUF,JAC,4,2,65,(:48) S.Powell punts 44 yards to JAX 21 Center-G.Sanborn. Q.Cosby to JAX 36 for 15 yards (C.McIntyre).,34,18,2012 -20121202_JAC@BUF,4,0,38,JAC,BUF,1,10,64,(:38) (Shotgun) C.Henne pass deep left intended for K.Elliott INTERCEPTED by J.Byrd at BUF 46. J.Byrd to JAX 9 for 45 yards (E.Monroe).,18,34,2012 -20121202_JAC@BUF,4,0,19,BUF,JAC,1,9,9,(:19) R.Fitzpatrick kneels to JAX 10 for -1 yards.,34,18,2012 -20121202_JAC@BUF,4,0,19,BUF,JAC,,,9,                      ,34,18,2012 -20121202_SEA@CHI,1,0,0,CHI,SEA,,,9,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121202_SEA@CHI,1,57,13,SEA,CHI,1,10,80,(12:13) M.Lynch left tackle to 50 for 5 yards (B.Urlacher). FUMBLES (B.Urlacher) RECOVERED by CHI-K.Hayden at SEA 49. K.Hayden to SEA 49 for no gain (M.Lynch).,0,0,2012 -20121202_SEA@CHI,1,57,59,SEA,CHI,1,10,68,(12:59) M.Lynch left end to SEA 45 for 13 yards (C.Conte).,0,0,2012 -20121202_SEA@CHI,1,53,40,SEA,CHI,1,10,45,(8:40) J.Cutler pass short left to E.Bennett for 12 yards TOUCHDOWN.,0,0,2012 -20121202_SEA@CHI,1,56,59,CHI,SEA,1,10,49,(11:59) M.Forte left end to SEA 49 for no gain (R.Bryant).,0,0,2012 -20121202_SEA@CHI,1,57,13,CHI,SEA,2,10,51,(12:13) M.Lynch left tackle to 50 for 5 yards (S.Paea). FUMBLES (S.Paea) recovered by SEA-B.Wagner at 50. B.Wagner to 50 for no gain (K.Hayden).,0,0,2012 -20121202_SEA@CHI,1,56,14,CHI,SEA,3,10,49,(11:14) (Shotgun) J.Cutler pass short right to B.Marshall to SEA 41 for 8 yards (K.Chancellor). PENALTY on SEA-E.Thomas Defensive Holding 5 yards enforced at SEA 49 - No Play.,0,0,2012 -20121202_SEA@CHI,1,45,.G,CHI,SEA,1,10,44,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121202_SEA@CHI,1,54,21,CHI,SEA,3,12,46,(9:21) (Shotgun) J.Cutler pass deep left to B.Marshall to SEA 23 for 23 yards (B.Browner). FUMBLES (B.Browner) and recovers at SEA 17. B.Marshall to SEA 17 for no gain (K.Chancellor). PENALTY on SEA-K.Wright Defensive Delay of Game 5 yards enforced at SEA 17.,0,0,2012 -20121202_SEA@CHI,1,54,21,CHI,SEA,,,46,*** play under review ***,0,0,2012 -20121202_SEA@CHI,1,54,21,CHI,SEA,,,46,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121202_SEA@CHI,1,53,33,SEA,CHI,1,10,80,(8:33) R.Wilson pass incomplete deep middle to B.Edwards (C.Tillman).,0,0,2012 -20121202_SEA@CHI,1,52,57,SEA,CHI,1,10,60,(7:57) R.Turbin left guard to SEA 46 for 6 yards (C.Tillman).,0,0,2012 -20121202_SEA@CHI,1,51,18,SEA,CHI,2,4,46,(6:18) J.Cutler pass short middle to B.Marshall to CHI 26 for 14 yards (B.Wagner).,0,0,2012 -20121202_SEA@CHI,1,51,33,SEA,CHI,3,4,54,(6:33) (Shotgun) R.Wilson pass incomplete short left to G.Tate (T.Jennings).,0,0,2012 -20121202_SEA@CHI,1,47,9,SEA,CHI,4,4,46,(2:09) J.Cutler pass short left to B.Marshall to SEA 39 for 8 yards (B.Browner).,0,0,2012 -20121202_SEA@CHI,1,50,42,CHI,SEA,1,10,74,(5:42) M.Forte right guard to CHI 26 for no gain (B.Mebane).,0,0,2012 -20121202_SEA@CHI,1,50,1,CHI,SEA,2,10,74,(5:01) J.Cutler pass incomplete short middle to B.Marshall.,0,0,2012 -20121202_SEA@CHI,1,49,11,,CHI,1,10,37,(4:11) M.Forte right guard to CHI 44 for 7 yards (B.Wagner).,0,0,2012 -20121202_SEA@CHI,1,47,9,,CHI,2,9,47,(2:09) J.Cutler pass short left to B.Marshall to SEA 39 for 8 yards (B.Browner).,0,0,2012 -20121202_SEA@CHI,1,47,9,,CHI,3,1,39,(2:09) J.Brown reported in as eligible. PENALTY on CHI-M.Spaeth False Start 5 yards enforced at SEA 39 - No Play.,0,0,2012 -20121202_SEA@CHI,1,45,58,,CHI,3,6,44,(:58) (Shotgun) J.Cutler scrambles right end to SEA 36 for 8 yards (K.Chancellor).,0,0,2012 -20121202_SEA@CHI,1,45,10,,CHI,1,10,36,(:10) J.Cutler pass short middle to B.Marshall to SEA 24 for 12 yards (B.Browner).,0,0,2012 -20121202_SEA@CHI,2,45,0,,CHI,1,10,24,(15:00) M.Forte right guard to SEA 19 for 5 yards (B.Wagner).,0,0,2012 -20121202_SEA@CHI,2,44,23,,CHI,2,5,19,(14:23) M.Forte right end to SEA 16 for 3 yards (B.Mebane).,0,0,2012 -20121202_SEA@CHI,2,43,37,,CHI,3,2,16,(13:37) (Shotgun) M.Forte right guard to SEA 15 for 1 yard (C.McDonald).,0,0,2012 -20121202_SEA@CHI,2,42,54,,CHI,4,1,15,(12:54) J.Brown reported in as eligible. M.Bush right guard to SEA 15 for no gain (B.Wagner).,0,0,2012 -20121202_SEA@CHI,2,42,48,SEA,CHI,1,10,85,(12:48) R.Wilson pass to S.Rice to SEA 43 for 28 yards (M.Wright).,0,0,2012 -20121202_SEA@CHI,2,42,10,SEA,CHI,1,10,57,(12:10) (Shotgun) R.Wilson left end to SEA 47 for 4 yards (L.Briggs).,0,0,2012 -20121202_SEA@CHI,2,40,33,SEA,CHI,4,2,49,(10:33) (Punt formation) J.Ryan punts 44 yards to CHI 5 Center-C.Gresham downed by SEA-J.Lane.,0,0,2012 -20121202_SEA@CHI,2,40,25,CHI,SEA,1,10,95,(10:25) M.Bush left tackle to CHI 7 for 2 yards (K.Wright).,0,0,2012 -20121202_SEA@CHI,2,39,51,CHI,SEA,2,8,93,(9:51) J.Cutler pass deep left to B.Marshall to CHI 26 for 19 yards (B.Browner).,0,0,2012 -20121202_SEA@CHI,2,39,17,CHI,SEA,1,10,74,(9:17) J.Cutler pass incomplete deep left to B.Marshall.,0,0,2012 -20121202_SEA@CHI,2,39,12,CHI,SEA,2,10,74,(9:12) M.Bush left end to CHI 38 for 12 yards (A.Branch).,0,0,2012 -20121202_SEA@CHI,2,38,31,CHI,SEA,1,10,62,(8:31) J.Cutler pass incomplete deep right to E.Bennett.,0,0,2012 -20121202_SEA@CHI,2,38,23,CHI,SEA,2,10,62,(8:23) J.Cutler pass short right to B.Marshall to CHI 45 for 7 yards (B.Browner).,0,0,2012 -20121202_SEA@CHI,2,34,4,CHI,SEA,3,3,45,(4:04) R.Wilson pass incomplete short left to M.Lynch.,0,0,2012 -20121202_SEA@CHI,2,37,31,CHI,SEA,4,3,55,(7:31) (Punt formation) A.Podlesh punts 44 yards to SEA 11 Center-P.Mannelly. L.Washington to SEA 18 for 7 yards (Z.Bowman). PENALTY on SEA-H.Farwell Low Block 5 yards enforced at SEA 11.,0,0,2012 -20121202_SEA@CHI,2,37,20,SEA,CHI,1,10,94,(7:20) M.Lynch right tackle to SEA 7 for 1 yard (N.Roach).,0,0,2012 -20121202_SEA@CHI,2,36,40,SEA,CHI,2,9,93,(6:40) M.Lynch left tackle to SEA 12 for 5 yards (N.Roach).,0,0,2012 -20121202_SEA@CHI,2,35,55,SEA,CHI,3,4,88,(5:55) (Shotgun) R.Wilson pass short middle to G.Tate to SEA 30 for 18 yards (C.Steltz).,0,0,2012 -20121202_SEA@CHI,2,35,21,SEA,CHI,1,10,70,(5:21) R.Wilson pass short left to G.Tate to SEA 35 for 5 yards (N.Roach).,0,0,2012 -20121202_SEA@CHI,2,34,44,SEA,CHI,2,5,65,(4:44) R.Wilson pass short right to S.Rice pushed ob at SEA 43 for 8 yards (C.Tillman).,0,0,2012 -20121202_SEA@CHI,2,33,10,,CHI,3,6,47,(3:10) (Shotgun) R.Wilson pass deep left to G.Tate to CHI 4 for 49 yards (B.Urlacher).,0,0,2012 -20121202_SEA@CHI,2,32,19,,CHI,1,4,4,(2:19) (Shotgun) M.Lynch left guard for 4 yards TOUCHDOWN.,0,0,2012 -20121202_SEA@CHI,2,32,19,,CHI,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121202_SEA@CHI,2,32,19,SEA,CHI,,,4,S.Hauschka kicks 71 yards from SEA 35 to CHI -6. E.Weems to CHI 15 for 21 yards (K.Chancellor).,7,6,2012 -20121202_SEA@CHI,2,32,9,CHI,SEA,1,10,85,(2:09) (Shotgun) J.Cutler pass incomplete deep left to E.Bennett (E.Thomas).,6,7,2012 -20121202_SEA@CHI,2,32,3,CHI,SEA,2,10,85,(2:03) (Shotgun) J.Cutler scrambles left end pushed ob at CHI 19 for 4 yards (E.Thomas).,6,7,2012 -20121202_SEA@CHI,2,31,9,SEA,CHI,1,10,40,(1:09) (No Huddle Shotgun) R.Wilson pass incomplete short middle to L.Washington.,7,6,2012 -20121202_SEA@CHI,2,30,35,SEA,CHI,3,4,34,(:35) (No Huddle Shotgun) R.Wilson pass deep left to D.Baldwin to CHI 14 for 20 yards (K.Hayden).,7,6,2012 -20121202_SEA@CHI,2,30,27,SEA,CHI,1,10,14,(:27) (Shotgun) R.Wilson pass incomplete short left to Z.Miller.,7,6,2012 -20121202_SEA@CHI,2,31,44,SEA,CHI,2,10,86,(1:44) (Punt formation) A.Podlesh punts 39 yards to SEA 37 Center-P.Mannelly out of bounds.,7,6,2012 -20121202_SEA@CHI,2,30,16,SEA,CHI,3,10,14,(:16) (Shotgun) R.Wilson pass short right to B.Edwards for 14 yards TOUCHDOWN. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) R.Wilson pass incomplete short right.,7,6,2012 -20121202_SEA@CHI,2,30,9,SEA,CHI,4,10,14,(:09) (Field Goal formation) S.Hauschka 31 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,7,6,2012 -20121202_SEA@CHI,2,30,9,SEA,CHI,,,14,S.Hauschka kicks 50 yards from SEA 35 to CHI 15. E.Bennett to CHI 21 for 6 yards (J.Johnson).,16,6,2012 -20121202_SEA@CHI,3,28,32,CHI,SEA,3,3,84,(13:32) (Shotgun) J.Cutler pass incomplete short right to B.Marshall [B.Irvin].,6,16,2012 -20121202_SEA@CHI,3,28,28,CHI,SEA,4,3,84,(13:28) (Punt formation) A.Podlesh punts 39 yards to SEA 45 Center-P.Mannelly out of bounds.,6,16,2012 -20121202_SEA@CHI,3,27,24,SEA,CHI,2,11,56,(12:24) (Shotgun) R.Wilson pass short left to S.Rice to CHI 42 for 14 yards (C.Tillman).,16,6,2012 -20121202_SEA@CHI,3,26,40,SEA,CHI,1,10,42,(11:40) (Shotgun) R.Wilson scrambles left end to CHI 41 for 1 yard (H.Melton).,16,6,2012 -20121202_SEA@CHI,3,25,52,SEA,CHI,2,9,41,(10:52) M.Lynch right tackle to CHI 42 for -1 yards (L.Briggs).,16,6,2012 -20121202_SEA@CHI,3,25,10,SEA,CHI,3,10,42,(10:10) (Shotgun) R.Wilson pass incomplete deep middle to S.Rice.,16,6,2012 -20121202_SEA@CHI,3,25,4,SEA,CHI,4,10,42,(10:04) (Punt formation) J.Ryan punts 36 yards to CHI 6 Center-C.Gresham out of bounds.,16,6,2012 -20121202_SEA@CHI,3,23,34,CHI,SEA,1,10,86,(8:34) M.Forte left guard to CHI 17 for 3 yards (J.Jones).,6,16,2012 -20121202_SEA@CHI,3,22,50,CHI,SEA,2,7,83,(7:50) J.Cutler scrambles up the middle to CHI 24 for 7 yards. PENALTY on SEA-A.Branch Unnecessary Roughness 15 yards enforced at CHI 24.,6,16,2012 -20121202_SEA@CHI,3,25,4,CHI,SEA,1,10,39,(10:04) (Punt formation) J.Ryan punts 37 yards to CHI 5 Center-C.Gresham out of bounds.,6,16,2012 -20121202_SEA@CHI,3,21,43,CHI,SEA,2,8,59,(6:43) J.Cutler pass deep middle to E.Weems to SEA 41 for 18 yards (R.Sherman) [B.Irvin].,6,16,2012 -20121202_SEA@CHI,3,21,1,CHI,SEA,1,10,41,(6:01) J.Cutler pass short right to B.Marshall pushed ob at SEA 28 for 13 yards (R.Sherman) [C.McDonald].,6,16,2012 -20121202_SEA@CHI,3,21,1,CHI,SEA,1,10,28,(6:01) J.Cutler pass short right to B.Marshall pushed ob at SEA 28 for 13 yards (R.Sherman) [C.McDonald].,6,16,2012 -20121202_SEA@CHI,3,19,40,CHI,SEA,1,10,18,(4:40) J.Cutler pass incomplete deep middle to E.Weems.,6,16,2012 -20121202_SEA@CHI,3,19,36,CHI,SEA,2,10,18,(4:36) M.Forte left tackle to SEA 12 for 6 yards (B.Wagner).,6,16,2012 -20121202_SEA@CHI,3,18,53,CHI,SEA,3,4,12,(3:53) (Shotgun) J.Cutler pass short left to M.Forte to SEA 1 for 11 yards (B.Wagner).,6,16,2012 -20121202_SEA@CHI,3,18,53,CHI,SEA,,,12,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,6,16,2012 -20121202_SEA@CHI,3,18,53,CHI,SEA,,,12,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,7,16,2012 -20121202_SEA@CHI,3,18,10,SEA,CHI,1,10,80,(3:10) R.Wilson pass short right to M.Robinson to SEA 24 for 4 yards (B.Urlacher).,16,7,2012 -20121202_SEA@CHI,3,16,58,SEA,CHI,3,9,79,(1:58) (Shotgun) R.Wilson pass incomplete to Z.Miller (C.Tillman).,16,7,2012 -20121202_SEA@CHI,3,16,53,SEA,CHI,4,9,79,(1:53) (Punt formation) J.Ryan punts 38 yards to CHI 41 Center-C.Gresham out of bounds.,16,7,2012 -20121202_SEA@CHI,3,16,46,CHI,SEA,1,10,59,(1:46) J.Cutler pass incomplete short middle to B.Marshall.,7,16,2012 -20121202_SEA@CHI,3,16,41,CHI,SEA,2,10,59,(1:41) M.Forte right tackle to CHI 44 for 3 yards (A.Branch).,7,16,2012 -20121202_SEA@CHI,3,15,56,CHI,SEA,3,7,56,(:56) (Shotgun) J.Cutler scrambles right tackle to SEA 46 for 10 yards (K.Wright).,7,16,2012 -20121202_SEA@CHI,4,0,6,,CHI,1,20,42,(:06) M.Forte right end to CHI 43 for 1 yard (C.McDonald).,16,7,2012 -20121202_SEA@CHI,4,15,0,,CHI,2,19,43,(15:00) J.Cutler pass short middle to M.Forte to 50 for 7 yards (K.Wright).,16,7,2012 -20121202_SEA@CHI,4,0,13,,CHI,3,12,50,(:13) J.Cutler pass incomplete deep right to B.Marshall. PENALTY on CHI-B.Marshall Offensive Pass Interference 11 yards enforced at SEA 46 - No Play.,16,7,2012 -20121202_SEA@CHI,4,13,46,,CHI,4,12,50,(13:46) (Punt formation) A.Podlesh punts 40 yards to SEA 10 Center-P.Mannelly. L.Washington to SEA 11 for 1 yard (S.McManis).,16,7,2012 -20121202_SEA@CHI,4,13,37,SEA,CHI,1,10,89,(13:37) M.Lynch right tackle to SEA 13 for 2 yards (C.Wootton).,16,7,2012 -20121202_SEA@CHI,4,10,46,SEA,CHI,2,8,87,(10:46) M.Robinson right guard to SEA 38 for 5 yards (I.Idonije).,16,7,2012 -20121202_SEA@CHI,4,11,43,SEA,CHI,2,2,68,(11:43) (Shotgun) M.Lynch right guard to SEA 33 for 1 yard (L.Briggs).,16,7,2012 -20121202_SEA@CHI,4,10,30,SEA,CHI,3,1,67,(10:30) M.Robinson right guard to SEA 37 for 4 yards (I.Idonije).,16,7,2012 -20121202_SEA@CHI,4,10,16,SEA,CHI,1,10,63,(10:16) M.Lynch left end to SEA 37 for no gain (S.McClellin; S.Paea).,16,7,2012 -20121202_SEA@CHI,4,9,53,SEA,CHI,2,10,63,(9:53) (Shotgun) R.Wilson pass short right to D.Baldwin to SEA 40 for 3 yards (C.Tillman).,16,7,2012 -20121202_SEA@CHI,4,9,6,SEA,CHI,3,7,60,(9:06) (Shotgun) R.Wilson pass incomplete deep right to D.Baldwin.,16,7,2012 -20121202_SEA@CHI,4,4,34,SEA,CHI,4,7,40,(4:34) M.Forte left end to SEA 48 for 7 yards (K.Chancellor).,16,7,2012 -20121202_SEA@CHI,4,8,11,CHI,SEA,1,10,62,(8:11) M.Bush right guard to CHI 42 for 4 yards (B.Wagner).,7,16,2012 -20121202_SEA@CHI,4,7,30,CHI,SEA,2,6,58,(7:30) M.Bush right tackle to CHI 47 for 5 yards (A.Branch).,7,16,2012 -20121202_SEA@CHI,4,6,41,CHI,SEA,3,1,53,(6:41) J.Brown reported in as eligible. M.Forte right end to SEA 44 for 9 yards (R.Sherman).,7,16,2012 -20121202_SEA@CHI,4,10,30,CHI,SEA,1,10,56,(10:30) M.Robinson right guard to SEA 37 for 4 yards (I.Idonije).,7,16,2012 -20121202_SEA@CHI,4,4,41,CHI,SEA,2,14,48,(4:41) J.Cutler to CHI 47 for -5 yards. FUMBLES and recovers at CHI 43. J.Cutler to CHI 45 for 2 yards (B.Wagner).,7,16,2012 -20121202_SEA@CHI,4,4,34,CHI,SEA,3,21,55,(4:34) M.Forte left end to SEA 48 for 7 yards (K.Chancellor).,7,16,2012 -20121202_SEA@CHI,4,2,45,CHI,SEA,4,14,52,(2:45) (Shotgun) M.Lynch left end to SEA 32 for 11 yards.,7,16,2012 -20121202_SEA@CHI,4,3,40,SEA,CHI,1,10,97,(3:40) R.Wilson pass incomplete deep middle to Z.Miller.,16,7,2012 -20121202_SEA@CHI,4,3,28,SEA,CHI,1,10,86,(3:28) R.Wilson pass short right to M.Lynch to SEA 24 for 10 yards (C.Tillman). FUMBLES (C.Tillman) recovered by SEA-R.Wilson at SEA 21. R.Wilson to SEA 21 for no gain (B.Urlacher).,16,7,2012 -20121202_SEA@CHI,4,2,45,SEA,CHI,2,3,79,(2:45) (Shotgun) M.Lynch left end to SEA 32 for 11 yards.,16,7,2012 -20121202_SEA@CHI,4,2,14,SEA,CHI,1,10,68,(2:14) R.Wilson pass incomplete deep middle to S.Rice (M.Wright).,16,7,2012 -20121202_SEA@CHI,4,2,11,SEA,CHI,2,10,68,(2:11) (Shotgun) R.Wilson scrambles right end pushed ob at SEA 45 for 13 yards (B.Urlacher).,16,7,2012 -20121202_SEA@CHI,4,0,43,SEA,CHI,1,10,55,(:43) (No Huddle Shotgun) R.Wilson pass deep middle to S.Rice to CHI 41 for no gain (K.Hayden).,16,7,2012 -20121202_SEA@CHI,4,2,14,SEA,CHI,2,4,49,(2:14) R.Wilson pass incomplete deep middle to S.Rice (M.Wright).,16,7,2012 -20121202_SEA@CHI,4,1,47,SEA,CHI,3,4,49,(1:47) (Shotgun) R.Wilson pass short middle to D.Baldwin to CHI 43 for 6 yards (L.Briggs). PENALTY on SEA-B.Giacomini Offensive Holding 10 yards enforced at CHI 49 - No Play.,16,7,2012 -20121202_SEA@CHI,4,1,41,SEA,CHI,3,14,59,(1:41) (Shotgun) R.Wilson pass short middle to D.Baldwin to CHI 48 for 11 yards (S.McClellin).,16,7,2012 -20121202_SEA@CHI,4,1,11,SEA,CHI,4,3,48,(1:11) (No Huddle Shotgun) R.Wilson pass short middle to Z.Miller to CHI 41 for 7 yards (B.Urlacher).,16,7,2012 -20121202_SEA@CHI,4,0,32,SEA,CHI,1,10,41,(:32) (Shotgun) R.Wilson pass short left to G.Tate for 14 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,16,7,2012 -20121202_SEA@CHI,4,0,32,SEA,CHI,1,10,14,(:32) (Shotgun) R.Wilson pass short left to G.Tate for 14 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was Upheld.,16,7,2012 -20121202_SEA@CHI,4,0,32,SEA,CHI,,,14,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,16,7,2012 -20121202_SEA@CHI,5,-2,44,CHI,SEA,1,10,14,(13:44) (Shotgun) M.Lynch right guard to SEA 45 for no gain (H.Melton).,7,29,2012 -20121202_SEA@CHI,5,-15,9,CHI,SEA,1,10,30,(:09) M.Forte left guard to SEA 27 for 3 yards (J.Jones).,7,29,2012 -20121202_SEA@CHI,5,-15,3,CHI,SEA,2,8,28,(:03) (Field Goal formation) R.Gould 46 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,29,2012 -20121202_SEA@CHI,5,0,0,SEA,CHI,1,10,80,(15:00) (Shotgun) R.Wilson right end to SEA 31 for 11 yards (C.Steltz).,29,10,2012 -20121202_SEA@CHI,5,-1,20,SEA,CHI,1,10,69,(14:20) (Shotgun) M.Lynch left guard to SEA 45 for 14 yards (M.Wright).,29,10,2012 -20121202_SEA@CHI,5,-2,44,SEA,CHI,1,10,55,(13:44) (Shotgun) M.Lynch right guard to SEA 45 for no gain (H.Melton).,29,10,2012 -20121202_SEA@CHI,5,-3,55,SEA,CHI,2,10,55,(12:55) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 45 - No Play.,29,10,2012 -20121202_SEA@CHI,5,-3,39,SEA,CHI,2,15,60,(12:39) R.Wilson pass short right to M.Robinson to CHI 47 for 13 yards (L.Briggs). CHI-T.Jennings was injured during the play. His return is Questionable.,29,10,2012 -20121202_SEA@CHI,5,-3,11,SEA,CHI,3,2,47,(12:11) (Shotgun) R.Wilson left end to CHI 42 for 5 yards (B.Urlacher).,29,10,2012 -20121202_SEA@CHI,5,-5,57,SEA,CHI,2,7,39,(10:57) (Shotgun) M.Lynch right guard to CHI 37 for 2 yards (J.Peppers; C.Steltz).,29,10,2012 -20121202_SEA@CHI,5,-5,12,SEA,CHI,3,5,37,(10:12) (Shotgun) R.Wilson scrambles right end to CHI 25 for 12 yards (L.Briggs).,29,10,2012 -20121202_SEA@CHI,5,-6,36,SEA,CHI,1,10,25,(9:36) M.Lynch left end to CHI 24 for 1 yard (H.Melton).,29,10,2012 -20121202_SEA@CHI,5,-6,0,SEA,CHI,2,9,24,(9:00) (Shotgun) M.Lynch right end to CHI 25 for -1 yards (H.Melton).,29,10,2012 -20121202_SEA@CHI,5,-1,20,SEA,CHI,3,10,25,(14:20) (Shotgun) M.Lynch left guard to SEA 45 for 14 yards (M.Wright).,29,10,2012 -20121202_SEA@CHI,5,-5,57,SEA,CHI,1,10,13,(10:57) (Shotgun) M.Lynch right guard to CHI 37 for 2 yards (J.Peppers; C.Steltz).,29,10,2012 -20121202_SEA@CHI,5,-5,57,SEA,CHI,,,13,                      ,29,10,2012 -20121202_IND@DET,1,-5,0,IND,DET,,,13,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,0,0,2012 -20121202_IND@DET,1,60,0,DET,IND,1,10,80,(15:00) (Shotgun) M.Stafford pass short right to C.Johnson to DET 31 for 11 yards (C.Vaughn).,0,0,2012 -20121202_IND@DET,1,59,22,DET,IND,1,10,69,(14:22) M.Leshoure right tackle to DET 34 for 3 yards (C.Redding).,0,0,2012 -20121202_IND@DET,1,58,49,DET,IND,2,7,66,(13:49) (Shotgun) M.Stafford pass incomplete short left to M.Leshoure.,0,0,2012 -20121202_IND@DET,1,58,44,DET,IND,3,7,66,(13:44) (Shotgun) M.Stafford pass incomplete short right to T.Scheffler (J.Freeman).,0,0,2012 -20121202_IND@DET,1,58,40,DET,IND,4,7,66,(13:40) N.Harris punts 50 yards to IND 16 Center-D.Muhlbach fair catch by T.Hilton.,0,0,2012 -20121202_IND@DET,1,58,32,IND,DET,1,10,84,(13:32) A.Luck sacked at IND 9 for -7 yards (N.Suh).,0,0,2012 -20121202_IND@DET,1,58,1,IND,DET,2,17,91,(13:01) (Shotgun) A.Luck pass incomplete short right to D.Avery.,0,0,2012 -20121202_IND@DET,1,57,55,IND,DET,3,17,91,(12:55) (Shotgun) A.Luck pass short left to V.Ballard pushed ob at IND 17 for 8 yards (C.Avril) [K.Vanden Bosch].,0,0,2012 -20121202_IND@DET,1,57,45,IND,DET,4,9,83,(12:45) P.McAfee punts 50 yards to DET 33 Center-M.Overton. S.Logan pushed ob at DET 42 for 9 yards (S.Brown).,0,0,2012 -20121202_IND@DET,1,57,34,DET,IND,1,10,58,(12:34) M.Leshoure right tackle to DET 43 for 1 yard (R.Mathews).,0,0,2012 -20121202_IND@DET,1,56,57,DET,IND,2,9,57,(11:57) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 45 for 2 yards (A.Bethea).,0,0,2012 -20121202_IND@DET,1,56,18,DET,IND,3,7,55,(11:18) (Shotgun) PENALTY on IND-R.Mathis Neutral Zone Infraction 5 yards enforced at DET 45 - No Play.,0,0,2012 -20121202_IND@DET,1,55,59,DET,IND,3,2,50,(10:59) (Shotgun) M.Stafford pass short right to C.Johnson to IND 36 for 14 yards (J.Lefeged).,0,0,2012 -20121202_IND@DET,1,55,22,DET,IND,1,10,36,(10:22) M.Stafford pass short left to R.Broyles to IND 33 for 3 yards (V.Davis).,0,0,2012 -20121202_IND@DET,1,54,42,DET,IND,2,7,33,(9:42) M.Leshoure up the middle to IND 29 for 4 yards (K.Conner).,0,0,2012 -20121202_IND@DET,1,53,59,DET,IND,3,3,29,(8:59) (Shotgun) M.Stafford pass incomplete short left to C.Johnson [R.Mathis].,0,0,2012 -20121202_IND@DET,1,53,54,DET,IND,4,3,29,(8:54) J.Hanson 48 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121202_IND@DET,1,53,54,DET,IND,,,29,J.Hanson kicks 72 yards from DET 35 to IND -7. C.Vaughn Touchback.,3,0,2012 -20121202_IND@DET,1,53,49,IND,DET,1,10,80,(8:49) V.Ballard right tackle to IND 24 for 4 yards (J.Durant).,0,3,2012 -20121202_IND@DET,1,53,19,IND,DET,2,6,76,(8:19) A.Luck pass incomplete short left to D.Avery (N.Suh).,0,3,2012 -20121202_IND@DET,1,53,14,IND,DET,3,6,76,(8:14) (Shotgun) A.Luck pass deep middle to T.Hilton to DET 16 for 60 yards (D.Levy).,0,3,2012 -20121202_IND@DET,1,52,23,IND,DET,1,10,16,(7:23) (Shotgun) A.Luck pass incomplete deep left to C.Fleener [K.Vanden Bosch].,0,3,2012 -20121202_IND@DET,1,52,18,IND,DET,2,10,16,(7:18) V.Ballard left end to DET 17 for -1 yards (S.Tulloch C.Williams).,0,3,2012 -20121202_IND@DET,1,51,35,IND,DET,3,11,17,(6:35) (Shotgun) A.Luck pass short middle to D.Avery for 17 yards TOUCHDOWN. Penalty on DET-D.Carey Defensive Pass Interference declined.,0,3,2012 -20121202_IND@DET,1,51,35,IND,DET,,,17,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,3,2012 -20121202_IND@DET,1,51,35,IND,DET,,,17,P.McAfee kicks 73 yards from IND 35 to DET -8. S.Logan to DET 13 for 21 yards (J.Hughes).,7,3,2012 -20121202_IND@DET,1,51,24,DET,IND,1,10,87,(6:24) M.Leshoure left end to DET 17 for 4 yards (V.Davis).,3,7,2012 -20121202_IND@DET,1,50,44,DET,IND,2,6,83,(5:44) (Shotgun) M.Stafford pass short right to J.Bell to DET 32 for 15 yards (M.Fokou).,3,7,2012 -20121202_IND@DET,1,49,52,DET,IND,1,10,68,(4:52) R.Reiff reported in as eligible. M.Stafford pass deep right to T.Scheffler ran ob at IND 29 for 39 yards (A.Bethea).,3,7,2012 -20121202_IND@DET,1,49,36,DET,IND,1,10,29,(4:36) (No Huddle) M.Leshoure right tackle to IND 32 for -3 yards (J.Hickman).,3,7,2012 -20121202_IND@DET,1,48,57,DET,IND,2,13,32,(3:57) (Shotgun) M.Stafford pass short right to C.Johnson to IND 25 for 7 yards (K.Conner; C.Vaughn).,3,7,2012 -20121202_IND@DET,1,48,16,DET,IND,3,6,25,(3:16) (Shotgun) M.Stafford pass short right to T.Scheffler to IND 19 for 6 yards (D.Butler).,3,7,2012 -20121202_IND@DET,1,47,35,DET,IND,1,10,19,(2:35) (Shotgun) M.Leshoure left tackle to IND 16 for 3 yards (A.Johnson J.Lefeged).,3,7,2012 -20121202_IND@DET,1,46,54,DET,IND,2,7,16,(1:54) (Shotgun) M.Stafford pass deep right to B.Pettigrew for 16 yards TOUCHDOWN.,3,7,2012 -20121202_IND@DET,1,46,54,DET,IND,,,16,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,3,7,2012 -20121202_IND@DET,1,46,54,DET,IND,,,16,J.Hanson kicks 68 yards from DET 35 to IND -3. C.Vaughn Touchback.,10,7,2012 -20121202_IND@DET,1,46,48,IND,DET,1,10,80,(1:48) A.Luck pass short right to R.Wayne pushed ob at IND 26 for 6 yards (C.Houston).,7,10,2012 -20121202_IND@DET,1,46,18,IND,DET,2,4,74,(1:18) D.Brown up the middle to IND 23 for -3 yards (K.Vanden Bosch).,7,10,2012 -20121202_IND@DET,1,45,35,IND,DET,3,7,77,(:35) (Shotgun) A.Luck pass incomplete deep middle to D.Avery (J.Durant) [C.Avril].,7,10,2012 -20121202_IND@DET,1,45,29,IND,DET,4,7,77,(:29) P.McAfee punts 61 yards to DET 16 Center-M.Overton. S.Logan pushed ob at DET 25 for 9 yards (K.Conner).,7,10,2012 -20121202_IND@DET,1,45,17,DET,IND,1,10,75,(:17) M.Stafford pass short right to B.Pettigrew to DET 35 for 10 yards (M.Fokou).,10,7,2012 -20121202_IND@DET,2,45,0,DET,IND,1,10,65,(15:00) M.Stafford pass short right to C.Johnson to DET 40 for 5 yards (C.Vaughn).,10,7,2012 -20121202_IND@DET,2,44,27,DET,IND,2,6,61,(14:27) (Shotgun) J.Bell left tackle to DET 44 for 5 yards (M.Fokou; A.Johnson).,10,7,2012 -20121202_IND@DET,2,43,45,DET,IND,3,1,56,(13:45) M.Leshoure up the middle to DET 45 for 1 yard (A.Johnson).,10,7,2012 -20121202_IND@DET,2,43,3,DET,IND,1,10,55,(13:03) (Shotgun) M.Stafford pass short right to B.Pettigrew to IND 38 for 17 yards (J.Lefeged).,10,7,2012 -20121202_IND@DET,2,42,19,DET,IND,1,10,38,(12:19) M.Stafford pass deep right to C.Johnson pushed ob at IND 6 for 32 yards (C.Vaughn).,10,7,2012 -20121202_IND@DET,2,41,38,DET,IND,1,6,6,(11:38) (Shotgun) M.Stafford pass incomplete short left to M.Thomas (V.Davis).,10,7,2012 -20121202_IND@DET,2,41,32,DET,IND,2,6,6,(11:32) (Shotgun) M.Leshoure up the middle for 6 yards TOUCHDOWN.,10,7,2012 -20121202_IND@DET,2,41,32,DET,IND,,,6,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,10,7,2012 -20121202_IND@DET,2,41,32,DET,IND,,,6,J.Hanson kicks 73 yards from DET 35 to IND -8. C.Vaughn Touchback.,17,7,2012 -20121202_IND@DET,2,41,27,IND,DET,1,10,80,(11:27) A.Luck pass short middle to D.Allen pushed ob at DET 40 for 40 yards (D.Carey).,7,17,2012 -20121202_IND@DET,2,41,8,IND,DET,1,10,40,(11:08) PENALTY on DET-C.Williams Encroachment 5 yards enforced at DET 40 - No Play.,7,17,2012 -20121202_IND@DET,2,40,39,IND,DET,1,5,35,(10:39) A.Luck pass incomplete short left to R.Wayne [C.Williams]. PENALTY on DET-D.Florence Defensive Holding 5 yards enforced at DET 35 - No Play.,7,17,2012 -20121202_IND@DET,2,40,33,IND,DET,1,10,30,(10:33) V.Ballard left tackle to DET 26 for 4 yards (SamL.Hill).,7,17,2012 -20121202_IND@DET,2,39,55,IND,DET,2,6,26,(9:55) A.Luck pass deep left to C.Fleener for 26 yards TOUCHDOWN.,7,17,2012 -20121202_IND@DET,2,39,55,IND,DET,,,26,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,17,2012 -20121202_IND@DET,2,39,55,IND,DET,,,26,P.McAfee kicks 71 yards from IND 35 to DET -6. S.Logan to DET 16 for 22 yards (J.Hughes).,14,17,2012 -20121202_IND@DET,2,39,42,DET,IND,1,10,84,(9:42) M.Leshoure left tackle to DET 17 for 1 yard (A.Johnson).,17,14,2012 -20121202_IND@DET,2,38,59,DET,IND,2,9,83,(8:59) (Shotgun) M.Stafford pass incomplete short right to M.Thomas (C.Vaughn).,17,14,2012 -20121202_IND@DET,2,38,55,DET,IND,3,9,83,(8:55) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson (D.Butler) [M.Fokou].,17,14,2012 -20121202_IND@DET,2,38,46,DET,IND,4,9,83,(8:46) N.Harris punts 56 yards to IND 27 Center-D.Muhlbach downed by DET-K.Osgood.,17,14,2012 -20121202_IND@DET,2,38,32,IND,DET,1,10,73,(8:32) A.Luck pass short left INTERCEPTED by S.Tulloch [C.Avril] at IND 23. S.Tulloch to IND 23 for no gain (W.Justice). PENALTY on DET-K.Vanden Bosch Defensive Offside 5 yards enforced at IND 27 - No Play.,14,17,2012 -20121202_IND@DET,2,38,25,IND,DET,1,5,68,(8:25) (Shotgun) A.Luck pass short middle intended for T.Hilton INTERCEPTED by D.Florence at IND 39. D.Florence pushed ob at IND 10 for 29 yards (A.Luck). PENALTY on DET-J.Lacey Illegal Block Above the Waist 10 yards enforced at IND 10.,14,17,2012 -20121202_IND@DET,2,38,16,DET,IND,1,10,20,(8:16) (Shotgun) M.Stafford pass incomplete short middle to B.Pettigrew (A.Bethea).,17,14,2012 -20121202_IND@DET,2,38,8,DET,IND,2,10,20,(8:08) (Shotgun) M.Leshoure up the middle to IND 15 for 5 yards (J.Freeman).,17,14,2012 -20121202_IND@DET,2,37,27,DET,IND,3,5,15,(7:27) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,17,14,2012 -20121202_IND@DET,2,37,22,DET,IND,4,5,15,(7:22) J.Hanson 33 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,17,14,2012 -20121202_IND@DET,2,37,22,DET,IND,,,15,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,20,14,2012 -20121202_IND@DET,2,37,17,IND,DET,1,10,80,(7:17) A.Luck pass incomplete short right to D.Avery.,14,20,2012 -20121202_IND@DET,2,37,14,IND,DET,2,10,80,(7:14) V.Ballard up the middle to IND 16 for -4 yards (N.Suh N.Fairley).,14,20,2012 -20121202_IND@DET,2,36,33,IND,DET,3,14,84,(6:33) (Shotgun) A.Luck pass incomplete short left to D.Allen.,14,20,2012 -20121202_IND@DET,2,36,21,IND,DET,4,14,84,(6:21) P.McAfee punts 48 yards to DET 36 Center-M.Overton fair catch by S.Logan.,14,20,2012 -20121202_IND@DET,2,36,15,DET,IND,1,10,64,(6:15) (Shotgun) M.Stafford pass short left to C.Johnson to DET 42 for 6 yards (V.Davis).,20,14,2012 -20121202_IND@DET,2,35,38,DET,IND,2,4,58,(5:38) (Shotgun) M.Stafford pass short left to C.Johnson to DET 49 for 7 yards (V.Davis). Penalty on IND-V.Davis Defensive Holding declined.,20,14,2012 -20121202_IND@DET,2,35,15,DET,IND,1,10,51,(5:15) M.Stafford pass short right to M.Leshoure ran ob at IND 38 for 13 yards (C.Vaughn) [A.Johnson].,20,14,2012 -20121202_IND@DET,2,34,38,DET,IND,1,10,38,(4:38) M.Leshoure up the middle to IND 33 for 5 yards (K.Conner).,20,14,2012 -20121202_IND@DET,2,34,0,DET,IND,2,5,33,(4:00) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson (D.Butler).,20,14,2012 -20121202_IND@DET,2,33,54,DET,IND,3,5,33,(3:54) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (A.Bethea).,20,14,2012 -20121202_IND@DET,2,33,50,DET,IND,4,5,33,(3:50) J.Hanson 52 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,20,14,2012 -20121202_IND@DET,2,33,50,DET,IND,,,33,J.Hanson kicks 70 yards from DET 35 to IND -5. C.Vaughn Touchback.,23,14,2012 -20121202_IND@DET,2,33,46,IND,DET,1,10,80,(3:46) A.Luck pass short left to T.Hilton ran ob at IND 24 for 4 yards (R.Silva) [N.Suh].,14,23,2012 -20121202_IND@DET,2,33,19,IND,DET,2,6,76,(3:19) (No Huddle) A.Luck pass short left to D.Brown to IND 29 for 5 yards (N.Fairley) [N.Suh].,14,23,2012 -20121202_IND@DET,2,32,55,IND,DET,3,1,71,(2:55) (No Huddle) A.Luck up the middle to IND 30 for 1 yard. PENALTY on DET-N.Fairley Defensive Offside 6 yards enforced at IND 29 - No Play.,14,23,2012 -20121202_IND@DET,2,32,44,IND,DET,1,10,65,(2:44) D.Brown left tackle to IND 42 for 7 yards (J.Lacey D.Carey).,14,23,2012 -20121202_IND@DET,2,32,20,IND,DET,2,3,58,(2:20) D.Brown left end to IND 49 for 7 yards (S.Tulloch).,14,23,2012 -20121202_IND@DET,2,32,0,IND,DET,1,10,51,(2:00) (Shotgun) A.Luck pass deep right intended for L.Brazill INTERCEPTED by D.Carey at DET 20. D.Carey pushed ob at DET 43 for 23 yards (D.Avery).,14,23,2012 -20121202_IND@DET,2,31,50,DET,IND,1,10,57,(1:50) (Shotgun) J.Bell up the middle to DET 49 for 6 yards (M.Fokou; A.Bethea).,23,14,2012 -20121202_IND@DET,2,31,27,DET,IND,2,4,51,(1:27) (No Huddle Shotgun) M.Stafford pass short middle to T.Scheffler to IND 41 for 10 yards (M.Fokou). DET-T.Scheffler was injured during the play.,23,14,2012 -20121202_IND@DET,2,31,10,DET,IND,1,10,41,(1:10) (Shotgun) M.Stafford pass short right intended for B.Pettigrew INTERCEPTED by R.Mathis at IND 36. R.Mathis to IND 37 for 1 yard (B.Pettigrew).,23,14,2012 -20121202_IND@DET,2,31,5,IND,DET,1,10,63,(1:05) (Shotgun) A.Luck pass incomplete short right to R.Wayne [N.Suh].,14,23,2012 -20121202_IND@DET,2,31,0,IND,DET,2,10,63,(1:00) (Shotgun) A.Luck pass short right to R.Wayne ran ob at IND 45 for 8 yards (J.Lacey).,14,23,2012 -20121202_IND@DET,2,30,55,IND,DET,3,2,55,(:55) (Shotgun) A.Luck pass incomplete short left to T.Hilton [N.Suh].,14,23,2012 -20121202_IND@DET,2,30,51,IND,DET,4,2,55,(:51) P.McAfee punts 45 yards to DET 10 Center-M.Overton fair catch by S.Logan.,14,23,2012 -20121202_IND@DET,2,30,44,DET,IND,1,10,90,(:44) J.Bell right tackle to DET 13 for 3 yards (R.Mathis).,23,14,2012 -20121202_IND@DET,3,30,0,DET,IND,,,90,J.Hanson kicks 69 yards from DET 35 to IND -4. C.Vaughn Touchback.,23,14,2012 -20121202_IND@DET,3,30,0,IND,DET,1,10,80,(15:00) V.Ballard right tackle to IND 23 for 3 yards (K.Vanden Bosch).,14,23,2012 -20121202_IND@DET,3,29,29,IND,DET,2,7,77,(14:29) V.Ballard right tackle to IND 36 for 13 yards (D.Carey).,14,23,2012 -20121202_IND@DET,3,28,49,IND,DET,1,10,64,(13:49) A.Luck pass deep right to D.Avery to DET 22 for 42 yards (C.Houston) [N.Fairley]. Penalty on DET-C.Houston Defensive Pass Interference declined.,14,23,2012 -20121202_IND@DET,3,28,26,IND,DET,1,10,22,(13:26) V.Ballard left tackle to DET 15 for 7 yards (D.Carey; L.Delmas).,14,23,2012 -20121202_IND@DET,3,27,55,IND,DET,2,3,15,(12:55) V.Ballard up the middle to DET 11 for 4 yards (N.Suh; D.Carey).,14,23,2012 -20121202_IND@DET,3,27,14,IND,DET,1,10,11,(12:14) A.Luck pass incomplete short left to D.Avery.,14,23,2012 -20121202_IND@DET,3,27,11,IND,DET,2,10,11,(12:11) V.Ballard left tackle for 11 yards TOUCHDOWN.,14,23,2012 -20121202_IND@DET,3,27,11,IND,DET,,,11,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,23,2012 -20121202_IND@DET,3,27,11,IND,DET,,,11,P.McAfee kicks 73 yards from IND 35 to DET -8. S.Logan Touchback.,21,23,2012 -20121202_IND@DET,3,27,5,DET,IND,1,10,80,(12:05) (Shotgun) M.Stafford pass short right to C.Johnson to DET 29 for 9 yards (A.Bethea).,23,21,2012 -20121202_IND@DET,3,26,29,DET,IND,2,1,71,(11:29) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 33 for 4 yards (R.Mathews).,23,21,2012 -20121202_IND@DET,3,25,49,DET,IND,1,10,67,(10:49) M.Stafford pass short left to M.Leshoure to DET 36 for 3 yards (J.Freeman).,23,21,2012 -20121202_IND@DET,3,25,5,DET,IND,2,7,64,(10:05) (Shotgun) M.Stafford pass short left to J.Bell to DET 39 for 3 yards (V.Davis).,23,21,2012 -20121202_IND@DET,3,24,21,DET,IND,3,4,61,(9:21) (Shotgun) M.Stafford pass short right to C.Johnson to IND 48 for 13 yards (C.Vaughn).,23,21,2012 -20121202_IND@DET,3,23,39,DET,IND,1,10,48,(8:39) (Shotgun) M.Leshoure left tackle to IND 46 for 2 yards (M.Fokou).,23,21,2012 -20121202_IND@DET,3,22,59,DET,IND,2,8,46,(7:59) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (K.Conner) [D.Freeney].,23,21,2012 -20121202_IND@DET,3,22,54,DET,IND,3,8,46,(7:54) (Shotgun) M.Stafford pass short left to M.Thomas to IND 47 for -1 yards (V.Davis).,23,21,2012 -20121202_IND@DET,3,22,26,DET,IND,4,9,47,(7:26) N.Harris punts 47 yards to end zone Center-D.Muhlbach Touchback.,23,21,2012 -20121202_IND@DET,3,22,17,IND,DET,1,10,80,(7:17) PENALTY on IND-A.Castonzo False Start 5 yards enforced at IND 20 - No Play.,21,23,2012 -20121202_IND@DET,3,22,17,IND,DET,1,15,85,(7:17) D.Brown left tackle to IND 13 for -2 yards (N.Suh).,21,23,2012 -20121202_IND@DET,3,21,41,IND,DET,2,17,87,(6:41) (Shotgun) A.Luck pass short right to T.Hilton to IND 25 for 12 yards (C.Houston).,21,23,2012 -20121202_IND@DET,3,21,7,IND,DET,3,5,75,(6:07) (Shotgun) A.Luck pass incomplete deep left to T.Hilton.,21,23,2012 -20121202_IND@DET,3,21,0,IND,DET,4,5,75,(6:00) P.McAfee punts 45 yards to DET 30 Center-M.Overton. S.Logan pushed ob at DET 42 for 12 yards (J.Lefeged).,21,23,2012 -20121202_IND@DET,3,20,50,DET,IND,1,10,58,(5:50) R.Reiff reported in as eligible. M.Stafford pass incomplete short right to M.Thomas.,23,21,2012 -20121202_IND@DET,3,20,45,DET,IND,2,10,58,(5:45) (Shotgun) M.Stafford pass short middle to J.Bell to DET 45 for 3 yards (A.Johnson M.Fokou).,23,21,2012 -20121202_IND@DET,3,20,4,DET,IND,3,7,55,(5:04) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,23,21,2012 -20121202_IND@DET,3,19,59,DET,IND,4,7,55,(4:59) N.Harris punts 43 yards to IND 12 Center-D.Muhlbach. T.Hilton to IND 14 for 2 yards (J.Wendling). IND-J.Hickman was injured during the play. He is Out.,23,21,2012 -20121202_IND@DET,3,19,50,IND,DET,1,10,86,(4:50) A.Luck pass short right to T.Hilton to IND 18 for 4 yards (C.Houston; D.Carey).,21,23,2012 -20121202_IND@DET,3,19,18,IND,DET,2,6,82,(4:18) (Shotgun) A.Luck pass incomplete short left to D.Avery (SamL.Hill) [N.Fairley].,21,23,2012 -20121202_IND@DET,3,19,13,IND,DET,3,6,82,(4:13) (Shotgun) A.Luck pass incomplete short right to V.Ballard.,21,23,2012 -20121202_IND@DET,3,19,7,IND,DET,4,6,82,(4:07) P.McAfee punts 49 yards to DET 33 Center-M.Overton. S.Logan pushed ob at DET 42 for 9 yards (J.Lefeged).,21,23,2012 -20121202_IND@DET,3,18,56,DET,IND,1,10,58,(3:56) R.Reiff reported in as eligible. M.Leshoure right end to DET 46 for 4 yards (A.Bethea).,23,21,2012 -20121202_IND@DET,3,18,15,DET,IND,2,6,54,(3:15) (Shotgun) M.Leshoure up the middle to DET 45 for -1 yards (P.Angerer M.Tevaseu).,23,21,2012 -20121202_IND@DET,3,17,34,DET,IND,3,7,55,(2:34) (Shotgun) M.Stafford pass short right to C.Johnson to IND 44 for 11 yards (C.Vaughn).,23,21,2012 -20121202_IND@DET,3,16,50,DET,IND,1,10,46,(1:50) R.Reiff reported in as eligible. M.Stafford FUMBLES (Aborted) at IND 45 and recovers at IND 46. M.Stafford to IND 46 for no gain (L.Guy).,23,21,2012 -20121202_IND@DET,3,16,15,DET,IND,2,12,46,(1:15) (Shotgun) PENALTY on DET-G.Cherilus False Start 5 yards enforced at IND 46 - No Play.,23,21,2012 -20121202_IND@DET,3,15,55,DET,IND,2,17,51,(:55) (Shotgun) M.Stafford pass short right to W.Heller to IND 46 for 5 yards (J.Freeman).,23,21,2012 -20121202_IND@DET,3,15,12,DET,IND,3,12,46,(:12) (Shotgun) M.Stafford pass deep right to C.Johnson for 46 yards TOUCHDOWN.,23,21,2012 -20121202_IND@DET,3,15,12,DET,IND,,,46,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris. PENALTY on IND-J.Lefeged Defensive Offside 5 yards enforced between downs.,23,21,2012 -20121202_IND@DET,3,15,12,DET,IND,,,46,J.Hanson kicks 60 yards from DET 40 to end zone Touchback.,30,21,2012 -20121202_IND@DET,3,15,2,IND,DET,1,10,80,(:02) (Shotgun) A.Luck pass short left to T.Hilton ran ob at IND 27 for 7 yards (R.Silva).,21,30,2012 -20121202_IND@DET,4,15,0,IND,DET,2,3,73,(15:00) D.Brown right tackle to IND 34 for 7 yards (D.Carey).,21,30,2012 -20121202_IND@DET,4,14,25,IND,DET,1,10,66,(14:25) A.Luck pass incomplete deep middle to T.Hilton.,21,30,2012 -20121202_IND@DET,4,14,20,IND,DET,2,10,66,(14:20) (Shotgun) D.Brown left end to IND 31 for -3 yards (D.Florence).,21,30,2012 -20121202_IND@DET,4,13,38,IND,DET,3,13,69,(13:38) (Shotgun) A.Luck pass incomplete short right to D.Allen.,21,30,2012 -20121202_IND@DET,4,13,33,IND,DET,4,13,69,(13:33) P.McAfee punts 44 yards to DET 25 Center-M.Overton fair catch by S.Logan.,21,30,2012 -20121202_IND@DET,4,13,25,DET,IND,1,10,75,(13:25) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 25 for no gain (K.Conner).,30,21,2012 -20121202_IND@DET,4,12,43,DET,IND,2,10,75,(12:43) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 33 for 8 yards (C.Vaughn).,30,21,2012 -20121202_IND@DET,4,11,57,DET,IND,3,2,67,(11:57) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson.,30,21,2012 -20121202_IND@DET,4,11,51,DET,IND,4,2,67,(11:51) N.Harris punts 43 yards to IND 24 Center-D.Muhlbach fair catch by T.Hilton.,30,21,2012 -20121202_IND@DET,4,11,44,IND,DET,1,10,76,(11:44) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Florence).,21,30,2012 -20121202_IND@DET,4,11,40,IND,DET,2,10,76,(11:40) (Shotgun) A.Luck sacked at IND 16 for -8 yards (C.Avril). FUMBLES (C.Avril) and recovers at IND 12. A.Luck to IND 12 for no gain (N.Suh).,21,30,2012 -20121202_IND@DET,4,11,4,IND,DET,3,22,88,(11:04) (Shotgun) A.Luck pass incomplete deep right to L.Brazill.,21,30,2012 -20121202_IND@DET,4,10,58,IND,DET,4,22,88,(10:58) P.McAfee punts 58 yards to DET 30 Center-M.Overton fair catch by S.Logan.,21,30,2012 -20121202_IND@DET,4,10,50,DET,IND,1,10,70,(10:50) (Shotgun) J.Bell left end to DET 28 for -2 yards (R.Mathis). PENALTY on DET-R.Sims Offensive Holding 10 yards enforced at DET 30 - No Play.,30,21,2012 -20121202_IND@DET,4,10,28,DET,IND,1,20,80,(10:28) (Shotgun) J.Bell right tackle to IND 13 for 67 yards (C.Vaughn).,30,21,2012 -20121202_IND@DET,4,9,36,DET,IND,1,10,13,(9:36) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (C.Vaughn).,30,21,2012 -20121202_IND@DET,4,9,31,DET,IND,2,10,13,(9:31) (Shotgun) J.Bell up the middle to IND 13 for no gain (C.Redding).,30,21,2012 -20121202_IND@DET,4,8,51,DET,IND,3,10,13,(8:51) (Shotgun) M.Stafford pass incomplete short right to K.Smith.,30,21,2012 -20121202_IND@DET,4,8,45,DET,IND,4,10,13,(8:45) J.Hanson 31 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,30,21,2012 -20121202_IND@DET,4,8,45,DET,IND,,,13,J.Hanson kicks 70 yards from DET 35 to IND -5. J.Lefeged Touchback.,33,21,2012 -20121202_IND@DET,4,8,41,IND,DET,1,10,80,(8:41) (Shotgun) A.Luck pass short left to R.Wayne to IND 31 for 11 yards (L.Delmas).,21,33,2012 -20121202_IND@DET,4,8,15,IND,DET,1,10,69,(8:15) (No Huddle Shotgun) A.Luck pass short right to T.Hilton to IND 44 for 13 yards (C.Houston).,21,33,2012 -20121202_IND@DET,4,7,50,IND,DET,1,10,56,(7:50) (No Huddle Shotgun) A.Luck pass short right to V.Ballard to 50 for 6 yards (J.Durant J.Lacey).,21,33,2012 -20121202_IND@DET,4,7,24,IND,DET,2,4,50,(7:24) (No Huddle Shotgun) A.Luck pass short left to D.Avery to DET 40 for 10 yards (D.Florence).,21,33,2012 -20121202_IND@DET,4,6,59,IND,DET,1,10,40,(6:59) (No Huddle Shotgun) A.Luck pass incomplete short left to D.Allen (D.Florence).,21,33,2012 -20121202_IND@DET,4,6,54,IND,DET,2,10,40,(6:54) (Shotgun) A.Luck pass incomplete short left to D.Avery [K.Vanden Bosch].,21,33,2012 -20121202_IND@DET,4,6,49,IND,DET,3,10,40,(6:49) (Shotgun) A.Luck pass deep right intended for T.Hilton INTERCEPTED by D.Carey at DET 17. D.Carey pushed ob at DET 45 for 28 yards (R.Wayne).,21,33,2012 -20121202_IND@DET,4,6,40,DET,IND,1,10,55,(6:40) R.Reiff reported in as eligible. M.Leshoure right end to IND 48 for 7 yards (L.Guy).,33,21,2012 -20121202_IND@DET,4,5,48,DET,IND,2,3,48,(5:48) M.Leshoure left tackle to IND 45 for 3 yards (L.Guy; J.Freeman).,33,21,2012 -20121202_IND@DET,4,5,6,DET,IND,1,10,45,(5:06) M.Leshoure left tackle to IND 45 for no gain (A.Johnson).,33,21,2012 -20121202_IND@DET,4,4,24,DET,IND,2,10,45,(4:24) M.Stafford pass incomplete short right to B.Pettigrew.,33,21,2012 -20121202_IND@DET,4,4,18,DET,IND,3,10,45,(4:18) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,33,21,2012 -20121202_IND@DET,4,4,13,DET,IND,4,10,45,(4:13) N.Harris punts 34 yards to IND 11 Center-D.Muhlbach. T.Hilton to IND 15 for 4 yards (K.Osgood).,33,21,2012 -20121202_IND@DET,4,4,2,IND,DET,1,10,85,(4:02) (Shotgun) A.Luck pass incomplete deep middle to L.Brazill.,21,33,2012 -20121202_IND@DET,4,3,58,IND,DET,2,10,85,(3:58) (Shotgun) A.Luck pass short right to D.Avery to IND 23 for 8 yards (C.Houston).,21,33,2012 -20121202_IND@DET,4,3,33,IND,DET,3,2,77,(3:33) (No Huddle Shotgun) A.Luck pass incomplete short middle to R.Wayne [N.Suh].,21,33,2012 -20121202_IND@DET,4,3,29,IND,DET,4,2,77,(3:29) (Shotgun) A.Luck scrambles up the middle to IND 31 for 8 yards (N.Fairley). PENALTY on DET-N.Fairley Horse Collar Tackle 15 yards enforced at IND 31.,21,33,2012 -20121202_IND@DET,4,3,22,IND,DET,1,10,54,(3:22) (No Huddle Shotgun) A.Luck pass short middle to D.Brown pushed ob at DET 49 for 5 yards (D.Levy).,21,33,2012 -20121202_IND@DET,4,3,16,IND,DET,2,5,49,(3:16) (Shotgun) A.Luck pass incomplete short left to T.Hilton (D.Florence).,21,33,2012 -20121202_IND@DET,4,3,12,IND,DET,3,5,49,(3:12) (Shotgun) A.Luck pass short right to V.Ballard to DET 42 for 7 yards (D.Levy; S.Tulloch).,21,33,2012 -20121202_IND@DET,4,2,47,IND,DET,1,10,42,(2:47) (No Huddle Shotgun) A.Luck pass deep left to L.Brazill for 42 yards TOUCHDOWN [W.Young]. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,21,33,2012 -20121202_IND@DET,4,2,47,IND,DET,,,42,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,21,33,2012 -20121202_IND@DET,4,2,47,IND,DET,,,42,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,28,33,2012 -20121202_IND@DET,4,2,39,DET,IND,1,10,80,(2:39) R.Reiff reported in as eligible. J.Bell left end to DET 23 for 3 yards (J.Freeman).,33,28,2012 -20121202_IND@DET,4,2,34,DET,IND,2,7,77,(2:34) M.Stafford pass incomplete deep right to C.Johnson. PENALTY on IND-C.Vaughn Defensive Pass Interference 21 yards enforced at DET 23 - No Play.,33,28,2012 -20121202_IND@DET,4,2,29,DET,IND,1,10,56,(2:29) R.Reiff reported in as eligible. J.Bell left tackle to DET 42 for -2 yards (C.Redding).,33,28,2012 -20121202_IND@DET,4,2,26,DET,IND,2,12,58,(2:26) R.Reiff reported in as eligible. M.Leshoure right end to DET 49 for 7 yards (A.Bethea).,33,28,2012 -20121202_IND@DET,4,2,0,DET,IND,3,5,51,(2:00) (Shotgun) M.Leshoure left end to 50 for 1 yard (R.Mathews; J.Freeman).,33,28,2012 -20121202_IND@DET,4,1,14,DET,IND,4,4,50,(1:14) N.Harris punts 25 yards to IND 25 Center-D.Muhlbach out of bounds.,33,28,2012 -20121202_IND@DET,4,1,7,IND,DET,1,10,75,(1:07) (Shotgun) A.Luck scrambles up the middle to IND 34 for 9 yards (N.Suh).,28,33,2012 -20121202_IND@DET,4,0,54,IND,DET,2,1,66,(:54) A.Luck spiked the ball to stop the clock.,28,33,2012 -20121202_IND@DET,4,0,52,IND,DET,3,1,66,(:52) (Shotgun) A.Luck pass deep left to R.Wayne to DET 40 for 26 yards (L.Delmas).,28,33,2012 -20121202_IND@DET,4,0,38,IND,DET,1,10,40,(:38) A.Luck spiked the ball to stop the clock.,28,33,2012 -20121202_IND@DET,4,0,37,IND,DET,2,10,40,(:37) (Shotgun) A.Luck scrambles right end ran ob at DET 24 for 16 yards (J.Lacey).,28,33,2012 -20121202_IND@DET,4,0,29,IND,DET,1,10,24,(:29) (Shotgun) A.Luck pass incomplete short right to D.Avery.,28,33,2012 -20121202_IND@DET,4,0,24,IND,DET,2,10,24,(:24) (Shotgun) A.Luck pass short left to D.Allen ran ob at DET 14 for 10 yards (J.Lacey).,28,33,2012 -20121202_IND@DET,4,0,18,IND,DET,1,10,14,(:18) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Carey).,28,33,2012 -20121202_IND@DET,4,0,14,IND,DET,2,10,14,(:14) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (J.Lacey).,28,33,2012 -20121202_IND@DET,4,0,8,IND,DET,3,10,14,(:08) (Shotgun) A.Luck pass incomplete short right to D.Avery.,28,33,2012 -20121202_IND@DET,4,0,3,IND,DET,4,10,14,(:03) (Shotgun) A.Luck pass short right to D.Avery for 14 yards TOUCHDOWN.,28,33,2012 -20121202_IND@DET,4,0,3,IND,DET,,,14,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,28,33,2012 -20121202_IND@DET,4,0,3,IND,DET,,,14,                      ,35,33,2012 -20121202_MIN@GB,1,0,0,MIN,GB,,,14,B.Walsh kicks 70 yards from MIN 35 to GB -5. R.Cobb to GB 25 for 30 yards (J.Robinson).,0,0,2012 -20121202_MIN@GB,1,59,54,GB,MIN,1,10,75,(14:54) (Shotgun) A.Rodgers pass short right to J.Finley to GB 30 for 5 yards (C.Greenway).,0,0,2012 -20121202_MIN@GB,1,59,30,GB,MIN,2,5,70,(14:30) (No Huddle Shotgun) A.Green left guard to GB 32 for 2 yards (C.Greenway A.Winfield).,0,0,2012 -20121202_MIN@GB,1,59,0,GB,MIN,3,3,68,(14:00) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to J.Nelson. PENALTY on MIN-K.Williams Defensive Offside 5 yards enforced at GB 32 - No Play.,0,0,2012 -20121202_MIN@GB,1,58,55,GB,MIN,1,10,63,(13:55) A.Rodgers scrambles right end pushed ob at GB 45 for 8 yards (C.Greenway).,0,0,2012 -20121202_MIN@GB,1,58,30,GB,MIN,2,2,55,(13:30) (No Huddle) A.Green right end to MIN 46 for 9 yards (C.Greenway).,0,0,2012 -20121202_MIN@GB,1,57,59,GB,MIN,1,10,46,(12:59) (No Huddle Shotgun) A.Green right tackle to MIN 41 for 5 yards (C.Greenway B.Robison).,0,0,2012 -20121202_MIN@GB,1,57,27,GB,MIN,2,5,41,(12:27) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to MIN 35 for 6 yards (J.Brinkley).,0,0,2012 -20121202_MIN@GB,1,56,53,GB,MIN,1,10,35,(11:53) (No Huddle) A.Rodgers pass short right to R.Cobb pushed ob at MIN 32 for 3 yards (J.Sanford).,0,0,2012 -20121202_MIN@GB,1,56,33,GB,MIN,2,7,32,(11:33) (No Huddle Shotgun) A.Rodgers pass deep left to Ja.Jones for 32 yards TOUCHDOWN. Penalty on MIN-L.Guion Defensive Offside declined.,0,0,2012 -20121202_MIN@GB,1,56,33,GB,MIN,,,32,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20121202_MIN@GB,1,56,33,GB,MIN,,,32,M.Crosby kicks 72 yards from GB 35 to MIN -7. M.Sherels Touchback.,7,0,2012 -20121202_MIN@GB,1,56,26,MIN,GB,1,10,80,(11:26) A.Peterson left guard to MIN 22 for 2 yards (B.Jones B.Raji).,0,7,2012 -20121202_MIN@GB,1,55,52,MIN,GB,2,8,78,(10:52) A.Peterson up the middle to MIN 25 for 3 yards (A.Hawk B.Raji).,0,7,2012 -20121202_MIN@GB,1,55,18,MIN,GB,3,5,75,(10:18) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph (M.Burnett).,0,7,2012 -20121202_MIN@GB,1,55,3,MIN,GB,4,5,75,(10:03) C.Kluwe punts 48 yards to GB 27 Center-C.Loeffler. R.Cobb to GB 36 for 9 yards (A.Sendejo).,0,7,2012 -20121202_MIN@GB,1,55,3,GB,MIN,1,10,64,(10:03) A.Rodgers pass short right to R.Cobb to GB 43 for 7 yards (A.Winfield).,7,0,2012 -20121202_MIN@GB,1,54,40,GB,MIN,2,3,57,(9:40) (No Huddle) J.Starks right end to GB 49 for 6 yards (C.Greenway).,7,0,2012 -20121202_MIN@GB,1,54,7,GB,MIN,1,10,51,(9:07) (No Huddle Shotgun) J.Kuhn left tackle to GB 49 for no gain (A.Winfield).,7,0,2012 -20121202_MIN@GB,1,53,35,GB,MIN,2,10,51,(8:35) (No Huddle Shotgun) A.Rodgers pass short left to J.Starks to MIN 42 for 9 yards (H.Smith).,7,0,2012 -20121202_MIN@GB,1,52,54,GB,MIN,3,1,42,(7:54) A.Rodgers pass short right to T.Crabtree to MIN 27 for 15 yards (A.Winfield J.Brinkley).,7,0,2012 -20121202_MIN@GB,1,52,12,GB,MIN,1,10,27,(7:12) (Shotgun) A.Rodgers pass incomplete deep left to G.Jennings.,7,0,2012 -20121202_MIN@GB,1,52,5,GB,MIN,2,10,27,(7:05) (Shotgun) A.Rodgers pass short middle to R.Cobb to MIN 29 for -2 yards (E.Griffen).,7,0,2012 -20121202_MIN@GB,1,51,28,GB,MIN,3,12,29,(6:28) (Shotgun) A.Rodgers sacked at MIN 45 for -16 yards (E.Griffen). PENALTY on MIN-C.Ballard Defensive Offside 5 yards enforced at MIN 29 - No Play.,7,0,2012 -20121202_MIN@GB,1,51,2,GB,MIN,3,7,24,(6:02) (Shotgun) A.Rodgers pass short left to J.Nelson pushed ob at MIN 14 for 10 yards (A.Jefferson).,7,0,2012 -20121202_MIN@GB,1,50,38,GB,MIN,1,10,14,(5:38) J.Starks left end to MIN 14 for no gain (H.Smith).,7,0,2012 -20121202_MIN@GB,1,50,2,GB,MIN,2,10,14,(5:02) (Shotgun) A.Rodgers pass short left to Ja.Jones for 14 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on GB-T.Lang Offensive Holding 10 yards enforced at MIN 14 - No Play.,7,0,2012 -20121202_MIN@GB,1,49,55,GB,MIN,2,20,24,(4:55) (Shotgun) A.Rodgers pass short left to A.Green to MIN 12 for 12 yards (A.Jefferson C.Greenway).,7,0,2012 -20121202_MIN@GB,1,49,16,GB,MIN,3,8,12,(4:16) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings [E.Griffen].,7,0,2012 -20121202_MIN@GB,1,49,11,GB,MIN,4,8,12,(4:11) M.Crosby 30 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,7,0,2012 -20121202_MIN@GB,1,49,11,GB,MIN,,,12,M.Crosby kicks 64 yards from GB 35 to MIN 1. M.Sherels to MIN 29 for 28 yards (J.Boykin F.Zombo).,10,0,2012 -20121202_MIN@GB,1,49,0,MIN,GB,1,10,71,(4:00) A.Peterson up the middle to MIN 32 for 3 yards (D.Moses).,0,10,2012 -20121202_MIN@GB,1,48,30,MIN,GB,2,7,68,(3:30) A.Peterson right guard to MIN 37 for 5 yards (B.Jones A.Hawk).,0,10,2012 -20121202_MIN@GB,1,47,52,MIN,GB,3,2,63,(2:52) A.Peterson right guard to MIN 45 for 8 yards (D.House B.Jones).,0,10,2012 -20121202_MIN@GB,1,47,18,MIN,GB,1,10,55,(2:18) A.Peterson right guard to MIN 48 for 3 yards (A.Hawk R.Pickett).,0,10,2012 -20121202_MIN@GB,1,46,43,MIN,GB,2,7,52,(1:43) C.Ponder pass short right to K.Rudolph pushed ob at GB 45 for 7 yards (M.Jennings).,0,10,2012 -20121202_MIN@GB,1,46,21,MIN,GB,1,10,45,(1:21) C.Ponder pass short left to K.Rudolph to GB 40 for 5 yards (A.Hawk).,0,10,2012 -20121202_MIN@GB,1,45,43,MIN,GB,2,5,40,(:43) C.Ponder pass short left to J.Felton to GB 27 for 13 yards (M.Burnett).,0,10,2012 -20121202_MIN@GB,1,45,7,MIN,GB,1,10,27,(:07) A.Peterson right end to GB 24 for 3 yards (T.Williams).,0,10,2012 -20121202_MIN@GB,2,45,0,MIN,GB,2,7,24,(15:00) C.Ponder left end to GB 18 for 6 yards (C.Hayward).,0,10,2012 -20121202_MIN@GB,2,44,23,MIN,GB,3,1,18,(14:23) A.Peterson right guard to GB 16 for 2 yards (R.Pickett; J.McMillian).,0,10,2012 -20121202_MIN@GB,2,43,50,MIN,GB,1,10,16,(13:50) A.Peterson right tackle to GB 7 for 9 yards (M.Burnett C.Hayward).,0,10,2012 -20121202_MIN@GB,2,43,15,MIN,GB,2,1,7,(13:15) C.Ponder pass short left to K.Rudolph pushed ob at GB 3 for 4 yards (T.Williams).,0,10,2012 -20121202_MIN@GB,2,42,52,MIN,GB,1,3,3,(12:52) C.Ponder to GB 8 for -5 yards. FUMBLES and recovers at GB 8. C.Ponder to GB 7 for 1 yard (B.Jones).,0,10,2012 -20121202_MIN@GB,2,42,23,MIN,GB,2,7,7,(12:23) (Shotgun) C.Ponder pass short middle to K.Rudolph for 7 yards TOUCHDOWN.,0,10,2012 -20121202_MIN@GB,2,42,23,MIN,GB,,,7,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,10,2012 -20121202_MIN@GB,2,42,23,MIN,GB,,,7,B.Walsh kicks 64 yards from MIN 35 to GB 1. R.Cobb to GB 16 for 15 yards (M.Mitchell).,7,10,2012 -20121202_MIN@GB,2,42,12,GB,MIN,1,10,84,(12:12) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings (A.Jefferson).,10,7,2012 -20121202_MIN@GB,2,42,6,GB,MIN,2,10,84,(12:06) (Shotgun) A.Rodgers pass short right to G.Jennings pushed ob at GB 25 for 9 yards (J.Robinson).,10,7,2012 -20121202_MIN@GB,2,41,37,GB,MIN,3,1,75,(11:37) (Shotgun) J.Kuhn up the middle to GB 25 for no gain (J.Allen).,10,7,2012 -20121202_MIN@GB,2,40,56,GB,MIN,4,1,75,(10:56) T.Masthay punts 44 yards to MIN 31 Center-B.Goode. M.Sherels to MIN 46 for 15 yards (R.Taylor). PENALTY on MIN-A.Sendejo Illegal Block Above the Waist 10 yards enforced at MIN 31.,10,7,2012 -20121202_MIN@GB,2,40,45,MIN,GB,1,10,79,(10:45) A.Peterson left end to MIN 25 for 4 yards (A.Hawk).,7,10,2012 -20121202_MIN@GB,2,40,6,MIN,GB,2,6,75,(10:06) A.Peterson up the middle to MIN 27 for 2 yards (B.Jones).,7,10,2012 -20121202_MIN@GB,2,39,25,MIN,GB,3,4,73,(9:25) (Shotgun) C.Ponder pass incomplete short left to D.Aromashodu.,7,10,2012 -20121202_MIN@GB,2,39,20,MIN,GB,4,4,73,(9:20) C.Kluwe punts 58 yards to GB 15 Center-C.Loeffler. R.Cobb to GB 24 for 9 yards (J.Robinson).,7,10,2012 -20121202_MIN@GB,2,39,8,GB,MIN,1,10,76,(9:08) J.Starks right end to GB 32 for 8 yards (H.Smith).,10,7,2012 -20121202_MIN@GB,2,38,29,GB,MIN,2,2,68,(8:29) J.Starks left guard to GB 35 for 3 yards (C.Greenway). PENALTY on GB-M.Newhouse Offensive Holding 10 yards enforced at GB 32 - No Play.,10,7,2012 -20121202_MIN@GB,2,38,15,GB,MIN,2,12,78,(8:15) (Shotgun) A.Rodgers pass incomplete deep middle to R.Cobb. Penalty on MIN-E.Griffen Defensive Offside declined. PENALTY on MIN-M.Raymond Defensive Pass Interference 23 yards enforced at GB 22 - No Play.,10,7,2012 -20121202_MIN@GB,2,38,8,GB,MIN,1,10,55,(8:08) (Shotgun) R.Cobb left end to 50 for 5 yards (E.Griffen; E.Henderson).,10,7,2012 -20121202_MIN@GB,2,37,33,GB,MIN,2,5,50,(7:33) A.Green up the middle to MIN 47 for 3 yards (J.Brinkley L.Guion).,10,7,2012 -20121202_MIN@GB,2,36,50,GB,MIN,3,2,47,(6:50) A.Rodgers pass incomplete deep left to J.Finley.,10,7,2012 -20121202_MIN@GB,2,36,42,GB,MIN,4,2,47,(6:42) T.Masthay punts 38 yards to MIN 9 Center-B.Goode fair catch by M.Sherels.,10,7,2012 -20121202_MIN@GB,2,36,35,MIN,GB,1,10,91,(6:35) (Shotgun) C.Ponder right end to MIN 18 for 9 yards (A.Hawk).,7,10,2012 -20121202_MIN@GB,2,35,59,MIN,GB,2,1,82,(5:59) (Shotgun) A.Peterson right tackle to MIN 18 for no gain (A.Hawk M.Burnett).,7,10,2012 -20121202_MIN@GB,2,35,21,MIN,GB,3,1,82,(5:21) A.Peterson right end for 82 yards TOUCHDOWN.,7,10,2012 -20121202_MIN@GB,2,35,21,MIN,GB,,,82,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,10,2012 -20121202_MIN@GB,2,35,21,MIN,GB,,,82,B.Walsh kicks 68 yards from MIN 35 to GB -3. R.Cobb to GB 20 for 23 yards (R.Blanton).,14,10,2012 -20121202_MIN@GB,2,35,3,GB,MIN,1,10,80,(5:03) A.Green right end to GB 23 for 3 yards (B.Robison).,10,14,2012 -20121202_MIN@GB,2,34,23,GB,MIN,2,7,77,(4:23) A.Green left end to GB 26 for 3 yards (F.Evans).,10,14,2012 -20121202_MIN@GB,2,33,44,GB,MIN,3,4,74,(3:44) (Shotgun) A.Rodgers pass short middle INTERCEPTED by J.Allen at GB 18. J.Allen to GB 16 for 2 yards (M.Newhouse). Penalty on MIN-K.Williams Roughing the Passer offsetting enforced at GB 26 - No Play. Penalty on GB-D.Barclay Offensive Holding offsetting.,10,14,2012 -20121202_MIN@GB,2,33,44,GB,MIN,3,4,74,(3:44) PENALTY on GB-J.Finley False Start 5 yards enforced at GB 26 - No Play.,10,14,2012 -20121202_MIN@GB,2,33,34,GB,MIN,3,9,79,(3:34) (Shotgun) A.Rodgers pass short right to J.Kuhn to GB 29 for 8 yards (A.Winfield).,10,14,2012 -20121202_MIN@GB,2,33,10,GB,MIN,4,1,71,(3:10) T.Masthay punts 43 yards to MIN 28 Center-B.Goode. M.Sherels to MIN 29 for 1 yard (D.Williams; T.Crabtree).,10,14,2012 -20121202_MIN@GB,2,32,58,MIN,GB,1,10,71,(2:58) T.Gerhart left tackle to MIN 31 for 2 yards (D.Moses).,14,10,2012 -20121202_MIN@GB,2,32,25,MIN,GB,2,8,69,(2:25) (Shotgun) C.Ponder up the middle to MIN 34 for 3 yards (R.Pickett).,14,10,2012 -20121202_MIN@GB,2,32,0,MIN,GB,3,5,66,(2:00) (Shotgun) C.Ponder pass incomplete short middle to J.Simpson [M.Neal].,14,10,2012 -20121202_MIN@GB,2,31,56,MIN,GB,4,5,66,(1:56) C.Kluwe punts 52 yards to GB 14 Center-C.Loeffler. R.Cobb to GB 7 for -7 yards (T.McKenzie). PENALTY on GB-J.Bush Illegal Block Above the Waist 3 yards enforced at GB 7.,14,10,2012 -20121202_MIN@GB,2,31,42,GB,MIN,1,10,96,(1:42) A.Rodgers pass short right to T.Crabtree to GB 9 for 5 yards (C.Greenway J.Sanford).,10,14,2012 -20121202_MIN@GB,2,31,5,GB,MIN,2,5,91,(1:05) A.Rodgers pass incomplete deep right.,10,14,2012 -20121202_MIN@GB,2,30,57,GB,MIN,3,5,91,(:57) (Shotgun) A.Rodgers pass short right to J.Finley to GB 21 for 12 yards (E.Henderson).,10,14,2012 -20121202_MIN@GB,2,30,40,GB,MIN,1,10,79,(:40) (Shotgun) A.Rodgers pass short left to Ja.Jones to GB 29 for 8 yards (E.Henderson A.Winfield).,10,14,2012 -20121202_MIN@GB,2,30,32,GB,MIN,2,2,71,(:32) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 44 for 15 yards (E.Henderson H.Smith).,10,14,2012 -20121202_MIN@GB,2,30,24,GB,MIN,1,10,56,(:24) (Shotgun) A.Rodgers pass short left to J.Kuhn ran ob at 50 for 6 yards (A.Jefferson).,10,14,2012 -20121202_MIN@GB,2,30,18,GB,MIN,2,4,50,(:18) (Shotgun) A.Rodgers pass short middle to J.Finley to MIN 40 for 10 yards (C.Greenway E.Henderson).,10,14,2012 -20121202_MIN@GB,2,30,3,GB,MIN,1,10,40,(:03) PENALTY on MIN-J.Allen Defensive Offside 5 yards enforced at MIN 40 - No Play.,10,14,2012 -20121202_MIN@GB,2,30,3,GB,MIN,1,5,35,(:03) M.Crosby 53 yard field goal is No Good Wide Right Center-B.Goode Holder-T.Masthay.,10,14,2012 -20121202_MIN@GB,3,30,0,GB,MIN,,,35,M.Crosby kicks 25 yards from GB 35 to MIN 40 out of bounds.,10,14,2012 -20121202_MIN@GB,3,30,0,MIN,GB,1,10,60,(15:00) A.Peterson left end pushed ob at GB 12 for 48 yards (T.Williams).,14,10,2012 -20121202_MIN@GB,3,29,35,MIN,GB,1,10,12,(14:35) A.Peterson up the middle to GB 8 for 4 yards (A.Hawk).,14,10,2012 -20121202_MIN@GB,3,29,0,MIN,GB,2,6,8,(14:00) C.Ponder pass short right intended for M.Jenkins INTERCEPTED by M.Burnett at GB -7. Touchback.,14,10,2012 -20121202_MIN@GB,3,28,51,GB,MIN,1,10,80,(13:51) A.Rodgers scrambles right end pushed ob at GB 21 for 1 yard (C.Greenway).,10,14,2012 -20121202_MIN@GB,3,28,16,GB,MIN,2,9,79,(13:16) (Shotgun) A.Rodgers pass incomplete short right to J.Kuhn.,10,14,2012 -20121202_MIN@GB,3,28,11,GB,MIN,3,9,79,(13:11) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 42 for 21 yards (H.Smith C.Greenway).,10,14,2012 -20121202_MIN@GB,3,27,35,GB,MIN,1,10,58,(12:35) A.Green right end to GB 48 for 6 yards (H.Smith).,10,14,2012 -20121202_MIN@GB,3,27,5,GB,MIN,2,4,52,(12:05) J.Starks right end to GB 49 for 1 yard (C.Greenway).,10,14,2012 -20121202_MIN@GB,3,26,22,GB,MIN,3,3,51,(11:22) (Shotgun) A.Rodgers pass short right to J.Kuhn to MIN 45 for 6 yards (H.Smith) [J.Allen].,10,14,2012 -20121202_MIN@GB,3,25,39,GB,MIN,1,10,45,(10:39) A.Rodgers pass incomplete short right. PENALTY on GB-E.Dietrich-Smith Offensive Holding 10 yards enforced at MIN 45 - No Play.,10,14,2012 -20121202_MIN@GB,3,25,33,GB,MIN,1,20,55,(10:33) (Shotgun) J.Kuhn right tackle to 50 for 5 yards (J.Brinkley).,10,14,2012 -20121202_MIN@GB,3,24,53,GB,MIN,2,15,50,(9:53) (Shotgun) A.Rodgers pass short middle to G.Jennings to MIN 32 for 18 yards (A.Jefferson).,10,14,2012 -20121202_MIN@GB,3,24,18,GB,MIN,1,10,32,(9:18) J.Starks left end to MIN 28 for 4 yards (H.Smith E.Henderson).,10,14,2012 -20121202_MIN@GB,3,23,41,GB,MIN,2,6,28,(8:41) J.Starks left tackle to MIN 29 for -1 yards (J.Brinkley).,10,14,2012 -20121202_MIN@GB,3,22,59,GB,MIN,3,7,29,(7:59) (Shotgun) A.Rodgers pass incomplete deep right to J.Boykin.,10,14,2012 -20121202_MIN@GB,3,22,51,GB,MIN,4,7,29,(7:51) M.Crosby 47 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,10,14,2012 -20121202_MIN@GB,3,22,51,GB,MIN,,,29,M.Crosby kicks 74 yards from GB 35 to MIN -9. M.Sherels Touchback.,13,14,2012 -20121202_MIN@GB,3,22,47,MIN,GB,1,10,80,(7:47) C.Ponder pass incomplete short left to J.Simpson (C.Hayward).,14,13,2012 -20121202_MIN@GB,3,22,42,MIN,GB,2,10,80,(7:42) A.Peterson left tackle to MIN 19 for -1 yards (M.Burnett B.Raji).,14,13,2012 -20121202_MIN@GB,3,22,7,MIN,GB,3,11,81,(7:07) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson.,14,13,2012 -20121202_MIN@GB,3,22,2,MIN,GB,4,11,81,(7:02) C.Kluwe punts 41 yards to GB 40 Center-C.Loeffler fair catch by R.Cobb.,14,13,2012 -20121202_MIN@GB,3,21,55,GB,MIN,1,10,60,(6:55) A.Green right end to GB 44 for 4 yards (E.Griffen).,13,14,2012 -20121202_MIN@GB,3,21,15,GB,MIN,2,6,56,(6:15) A.Rodgers pass deep middle intended for G.Jennings INTERCEPTED by H.Smith at MIN 6. H.Smith to MIN 6 for no gain (G.Jennings).,13,14,2012 -20121202_MIN@GB,3,21,3,MIN,GB,1,10,94,(6:03) A.Peterson right guard to MIN 12 for 6 yards (M.Burnett).,14,13,2012 -20121202_MIN@GB,3,20,35,MIN,GB,2,4,88,(5:35) A.Peterson left end to MIN 15 for 3 yards (C.Hayward A.Hawk).,14,13,2012 -20121202_MIN@GB,3,20,35,MIN,GB,3,1,85,(5:35) A.Peterson right tackle to MIN 15 for no gain (B.Jones).,14,13,2012 -20121202_MIN@GB,3,19,14,MIN,GB,4,1,85,(4:14) C.Kluwe punts 36 yards to GB 49 Center-C.Loeffler downed by MIN-E.Griffen.,14,13,2012 -20121202_MIN@GB,3,19,5,GB,MIN,1,10,51,(4:05) A.Green right end to MIN 40 for 11 yards (E.Henderson).,13,14,2012 -20121202_MIN@GB,3,18,28,GB,MIN,1,10,40,(3:28) A.Green left tackle to MIN 33 for 7 yards (C.Greenway; E.Henderson).,13,14,2012 -20121202_MIN@GB,3,17,47,GB,MIN,2,3,33,(2:47) A.Rodgers pass short right to G.Jennings pushed ob at MIN 22 for 11 yards (J.Robinson).,13,14,2012 -20121202_MIN@GB,3,17,19,GB,MIN,1,10,22,(2:19) J.Starks right end for 22 yards TOUCHDOWN.,13,14,2012 -20121202_MIN@GB,3,17,19,GB,MIN,,,22,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,13,14,2012 -20121202_MIN@GB,3,17,19,GB,MIN,,,22,M.Crosby kicks 74 yards from GB 35 to MIN -9. M.Sherels Touchback.,20,14,2012 -20121202_MIN@GB,3,17,12,MIN,GB,1,10,80,(2:12) A.Peterson left end to MIN 21 for 1 yard (A.Hawk M.Neal).,14,20,2012 -20121202_MIN@GB,3,16,39,MIN,GB,2,9,79,(1:39) C.Ponder pass incomplete short left to J.Wright. PENALTY on GB-D.Moses Defensive Offside 5 yards enforced at MIN 21 - No Play.,14,20,2012 -20121202_MIN@GB,3,16,33,MIN,GB,2,4,74,(1:33) C.Ponder pass incomplete deep left to A.Peterson (B.Jones).,14,20,2012 -20121202_MIN@GB,3,16,26,MIN,GB,3,4,74,(1:26) (Shotgun) C.Ponder left end ran ob at MIN 37 for 11 yards (M.Jennings).,14,20,2012 -20121202_MIN@GB,3,15,59,MIN,GB,1,10,63,(:59) A.Peterson left tackle to GB 40 for 23 yards (M.Burnett).,14,20,2012 -20121202_MIN@GB,3,15,14,MIN,GB,1,10,40,(:14) C.Ponder pass incomplete deep right to T.Gerhart. PENALTY on GB-T.Williams Unnecessary Roughness 15 yards enforced at GB 40 - No Play.,14,20,2012 -20121202_MIN@GB,3,15,4,MIN,GB,1,10,25,(:04) (Shotgun) C.Ponder pass short left intended for K.Rudolph INTERCEPTED by M.Burnett at GB 13. M.Burnett to GB 14 for 1 yard (K.Rudolph).,14,20,2012 -20121202_MIN@GB,4,15,0,GB,MIN,1,10,86,(15:00) A.Rodgers right end ran ob at GB 17 for 3 yards (C.Greenway).,20,14,2012 -20121202_MIN@GB,4,14,30,GB,MIN,2,7,83,(14:30) J.Starks up the middle to GB 26 for 9 yards (M.Raymond).,20,14,2012 -20121202_MIN@GB,4,13,52,GB,MIN,1,10,74,(13:52) J.Starks right end to GB 33 for 7 yards (C.Greenway B.Robison). PENALTY on GB-J.Kuhn Offensive Holding 10 yards enforced at GB 26 - No Play.,20,14,2012 -20121202_MIN@GB,4,13,22,GB,MIN,1,20,84,(13:22) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 21 for 5 yards (A.Winfield).,20,14,2012 -20121202_MIN@GB,4,12,44,GB,MIN,2,15,79,(12:44) (Shotgun) A.Rodgers pass short middle to J.Starks to GB 28 for 7 yards (C.Greenway H.Smith).,20,14,2012 -20121202_MIN@GB,4,11,59,GB,MIN,3,8,72,(11:59) (Shotgun) A.Rodgers pass short middle to G.Jennings to GB 36 for 8 yards (A.Jefferson).,20,14,2012 -20121202_MIN@GB,4,11,21,GB,MIN,1,10,64,(11:21) J.Starks left guard to GB 41 for 5 yards (J.Brinkley A.Winfield).,20,14,2012 -20121202_MIN@GB,4,10,52,GB,MIN,2,5,59,(10:52) J.Starks right tackle to GB 44 for 3 yards (J.Allen).,20,14,2012 -20121202_MIN@GB,4,10,9,GB,MIN,3,2,56,(10:09) (Shotgun) A.Rodgers right end ran ob at GB 47 for 3 yards (H.Smith).,20,14,2012 -20121202_MIN@GB,4,9,39,GB,MIN,1,10,53,(9:39) A.Green left guard to 50 for 3 yards (C.Greenway).,20,14,2012 -20121202_MIN@GB,4,8,58,GB,MIN,2,7,50,(8:58) (Shotgun) A.Green up the middle to MIN 48 for 2 yards (E.Griffen).,20,14,2012 -20121202_MIN@GB,4,8,16,GB,MIN,3,5,48,(8:16) (Shotgun) A.Rodgers pass short left to J.Finley to MIN 41 for 7 yards (A.Jefferson H.Smith).,20,14,2012 -20121202_MIN@GB,4,7,32,GB,MIN,1,10,41,(7:32) A.Rodgers sacked at MIN 42 for -1 yards (sack split by K.Williams and J.Allen).,20,14,2012 -20121202_MIN@GB,4,6,58,GB,MIN,2,11,42,(6:58) (Shotgun) J.Starks up the middle to MIN 43 for -1 yards (F.Evans).,20,14,2012 -20121202_MIN@GB,4,6,17,GB,MIN,3,12,43,(6:17) (Shotgun) A.Rodgers pass deep right to R.Cobb to MIN 10 for 33 yards (M.Raymond).,20,14,2012 -20121202_MIN@GB,4,5,28,GB,MIN,1,10,10,(5:28) J.Starks right end to MIN 9 for 1 yard (J.Robinson).,20,14,2012 -20121202_MIN@GB,4,4,48,GB,MIN,2,9,9,(4:48) (Shotgun) A.Rodgers sacked ob at MIN 11 for -2 yards (J.Allen). Penalty on GB-D.Barclay Offensive Holding declined.,20,14,2012 -20121202_MIN@GB,4,4,48,GB,MIN,3,11,11,(4:48) (Shotgun) PENALTY on GB-E.Dietrich-Smith False Start 5 yards enforced at MIN 11 - No Play.,20,14,2012 -20121202_MIN@GB,4,4,41,GB,MIN,3,16,16,(4:41) (Shotgun) J.Kuhn up the middle to MIN 13 for 3 yards (J.Allen; J.Brinkley).,20,14,2012 -20121202_MIN@GB,4,4,4,GB,MIN,4,13,13,(4:04) M.Crosby 31 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,20,14,2012 -20121202_MIN@GB,4,4,4,GB,MIN,,,13,M.Crosby kicks 73 yards from GB 35 to MIN -8. M.Sherels to MIN 17 for 25 yards (J.Bush).,23,14,2012 -20121202_MIN@GB,4,3,56,MIN,GB,1,10,83,(3:56) (Shotgun) C.Ponder up the middle to MIN 20 for 3 yards (M.Burnett).,14,23,2012 -20121202_MIN@GB,4,3,37,MIN,GB,2,7,80,(3:37) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins (T.Williams).,14,23,2012 -20121202_MIN@GB,4,3,32,MIN,GB,3,7,80,(3:32) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 41 for 21 yards (M.Jennings).,14,23,2012 -20121202_MIN@GB,4,3,6,MIN,GB,1,10,59,(3:06) (Shotgun) C.Ponder pass incomplete deep left to M.Jenkins (D.House).,14,23,2012 -20121202_MIN@GB,4,3,1,MIN,GB,2,10,59,(3:01) (Shotgun) C.Ponder pass short left to A.Peterson pushed ob at GB 49 for 10 yards (C.Hayward).,14,23,2012 -20121202_MIN@GB,4,2,55,MIN,GB,1,10,49,(2:55) (Shotgun) C.Ponder pass short middle to J.Simpson to GB 31 for 18 yards (M.Jennings).,14,23,2012 -20121202_MIN@GB,4,2,32,MIN,GB,1,10,31,(2:32) (Shotgun) C.Ponder pass incomplete short left to J.Simpson.,14,23,2012 -20121202_MIN@GB,4,2,27,MIN,GB,2,10,31,(2:27) (Shotgun) C.Ponder pass short left to J.Simpson pushed ob at GB 24 for 7 yards (D.House).,14,23,2012 -20121202_MIN@GB,4,2,5,MIN,GB,3,3,24,(2:05) (Shotgun) C.Ponder pass incomplete short left to S.Burton.,14,23,2012 -20121202_MIN@GB,4,2,1,MIN,GB,4,3,24,(2:01) B.Walsh 42 yard field goal is No Good Wide Right Center-C.Loeffler Holder-C.Kluwe.,14,23,2012 -20121202_MIN@GB,4,1,56,GB,MIN,1,10,68,(1:56) J.Starks left guard to GB 35 for 3 yards (K.Williams; A.Winfield).,23,14,2012 -20121202_MIN@GB,4,1,51,GB,MIN,2,7,65,(1:51) J.Starks left tackle to GB 38 for 3 yards (J.Allen).,23,14,2012 -20121202_MIN@GB,4,1,45,GB,MIN,3,4,62,(1:45) J.Starks right tackle to GB 41 for 3 yards (J.Brinkley).,23,14,2012 -20121202_MIN@GB,4,1,1,GB,MIN,4,1,59,(1:01) T.Masthay punts 33 yards to MIN 26 Center-B.Goode downed by GB-J.Bush. PENALTY on GB-J.Bush Illegal Touch Kick 5 yards enforced at GB 41 - No Play.,23,14,2012 -20121202_MIN@GB,4,0,49,GB,MIN,4,6,64,(:49) T.Masthay punts 41 yards to MIN 23 Center-B.Goode fair catch by M.Sherels.,23,14,2012 -20121202_MIN@GB,4,0,43,MIN,GB,1,10,77,(:43) (Shotgun) C.Ponder pass short middle to K.Rudolph to MIN 30 for 7 yards (B.Jones).,14,23,2012 -20121202_MIN@GB,4,0,24,MIN,GB,2,3,70,(:24) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson.,14,23,2012 -20121202_MIN@GB,4,0,20,MIN,GB,3,3,70,(:20) (Shotgun) C.Ponder pass short left to T.Gerhart ran ob at MIN 37 for 7 yards (D.Moses).,14,23,2012 -20121202_MIN@GB,4,0,15,MIN,GB,1,10,63,(:15) (Shotgun) C.Ponder pass short middle to J.Wright to 50 for 13 yards (J.McMillian).,14,23,2012 -20121202_MIN@GB,4,0,15,MIN,GB,,,63,                      ,14,23,2012 -20121202_CAR@KC,1,0,0,CAR,KC,,,63,G.Gano kicks 70 yards from CAR 35 to KC -5. S.Draughn to KC 26 for 31 yards (G.Barnidge).,0,0,2012 -20121202_CAR@KC,1,59,55,KC,CAR,1,10,74,(14:55) J.Charles left end to KC 31 for 5 yards (T.Davis).,0,0,2012 -20121202_CAR@KC,1,59,34,KC,CAR,2,5,69,(14:34) J.Charles right guard to KC 41 for 10 yards (H.Nakamura).,0,0,2012 -20121202_CAR@KC,1,59,2,KC,CAR,1,10,59,(14:02) B.Quinn pass deep left to D.Bowe to CAR 38 for 21 yards (H.Nakamura).,0,0,2012 -20121202_CAR@KC,1,58,23,KC,CAR,1,10,38,(13:23) J.Charles right end to CAR 36 for 2 yards (S.Fua).,0,0,2012 -20121202_CAR@KC,1,57,40,KC,CAR,2,8,36,(12:40) (Shotgun) B.Quinn pass deep left to J.Baldwin to CAR 2 for 34 yards (C.Godfrey).,0,0,2012 -20121202_CAR@KC,1,56,53,KC,CAR,1,2,2,(11:53) P.Hillis right guard for 2 yards TOUCHDOWN.,0,0,2012 -20121202_CAR@KC,1,56,53,KC,CAR,,,2,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,0,0,2012 -20121202_CAR@KC,1,56,53,KC,CAR,,,2,R.Succop kicks 61 yards from KC 35 to CAR 4. A.Edwards to CAR 25 for 21 yards (A.Studebaker).,7,0,2012 -20121202_CAR@KC,1,56,43,CAR,KC,1,10,75,(11:43) (Shotgun) C.Newton pass short middle to B.LaFell to CAR 35 for 10 yards (D.Johnson).,0,7,2012 -20121202_CAR@KC,1,56,0,CAR,KC,1,10,65,(11:00) (Shotgun) D.Williams up the middle to CAR 41 for 6 yards (D.Johnson).,0,7,2012 -20121202_CAR@KC,1,55,22,CAR,KC,2,4,59,(10:22) D.Williams right guard to CAR 44 for 3 yards (T.Jackson).,0,7,2012 -20121202_CAR@KC,1,54,40,CAR,KC,3,1,56,(9:40) M.Tolbert left guard to KC 47 for 9 yards (T.Hali).,0,7,2012 -20121202_CAR@KC,1,54,0,CAR,KC,1,10,47,(9:00) C.Newton pass incomplete short left to S.Smith (J.Arenas).,0,7,2012 -20121202_CAR@KC,1,53,55,CAR,KC,2,10,47,(8:55) (Shotgun) C.Newton pass short right to G.Olsen for 47 yards TOUCHDOWN.,0,7,2012 -20121202_CAR@KC,1,53,55,CAR,KC,,,47,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,7,2012 -20121202_CAR@KC,1,53,55,CAR,KC,,,47,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,7,7,2012 -20121202_CAR@KC,1,53,46,KC,CAR,1,10,80,(8:46) B.Quinn pass short middle to J.Charles to KC 24 for 4 yards (T.Davis).,7,7,2012 -20121202_CAR@KC,1,53,11,KC,CAR,2,6,76,(8:11) J.Charles right end pushed ob at KC 40 for 16 yards (L.Kuechly).,7,7,2012 -20121202_CAR@KC,1,52,43,KC,CAR,1,10,60,(7:43) B.Quinn pass incomplete short left to D.Bowe.,7,7,2012 -20121202_CAR@KC,1,52,38,KC,CAR,2,10,60,(7:38) J.Charles right guard to CAR 44 for 16 yards (H.Nakamura).,7,7,2012 -20121202_CAR@KC,1,51,55,KC,CAR,1,10,44,(6:55) (Pass formation) B.Quinn scrambles left end to CAR 39 for 5 yards (D.Edwards).,7,7,2012 -20121202_CAR@KC,1,51,19,KC,CAR,2,5,39,(6:19) J.Charles left end to CAR 35 for 4 yards (L.Kuechly).,7,7,2012 -20121202_CAR@KC,1,50,54,KC,CAR,3,1,35,(5:54) P.Hillis up the middle to CAR 32 for 3 yards (J.Anderson).,7,7,2012 -20121202_CAR@KC,1,50,20,KC,CAR,1,10,32,(5:20) P.Hillis left guard to CAR 30 for 2 yards (T.Davis).,7,7,2012 -20121202_CAR@KC,1,49,47,KC,CAR,2,8,30,(4:47) D.McCluster left end to CAR 30 for no gain (T.Davis).,7,7,2012 -20121202_CAR@KC,1,49,7,KC,CAR,3,8,30,(4:07) (Shotgun) B.Quinn pass short middle to C.Gray to CAR 24 for 6 yards (D.Edwards). CAR-J.Anderson was injured during the play. His return is Questionable. Injury is to his eye.,7,7,2012 -20121202_CAR@KC,1,48,25,KC,CAR,4,2,24,(3:25) R.Succop 42 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,7,7,2012 -20121202_CAR@KC,1,48,25,KC,CAR,,,24,R.Succop kicks 74 yards from KC 35 to CAR -9. A.Edwards Touchback.,10,7,2012 -20121202_CAR@KC,1,48,20,CAR,KC,1,10,80,(3:20) (Shotgun) C.Newton pass incomplete short left to S.Smith.,7,10,2012 -20121202_CAR@KC,1,48,17,CAR,KC,2,10,80,(3:17) (Shotgun) M.Tolbert up the middle to CAR 26 for 6 yards (D.Johnson).,7,10,2012 -20121202_CAR@KC,1,47,33,CAR,KC,3,4,74,(2:33) (Shotgun) C.Newton pass short left to M.Tolbert pushed ob at CAR 36 for 10 yards (D.Johnson).,7,10,2012 -20121202_CAR@KC,1,47,1,CAR,KC,1,10,64,(2:01) D.Williams up the middle to CAR 38 for 2 yards (T.Jackson).,7,10,2012 -20121202_CAR@KC,1,46,19,CAR,KC,2,8,62,(1:19) (Shotgun) C.Newton sacked at CAR 35 for -3 yards (T.Jackson).,7,10,2012 -20121202_CAR@KC,1,45,42,CAR,KC,3,11,65,(:42) (Shotgun) C.Newton pass deep right to S.Smith ran ob at KC 46 for 19 yards (B.Flowers).,7,10,2012 -20121202_CAR@KC,1,45,8,CAR,KC,1,10,46,(:08) (Shotgun) J.Adams right end pushed ob at KC 41 for 5 yards (B.Flowers).,7,10,2012 -20121202_CAR@KC,2,45,0,CAR,KC,2,5,41,(15:00) (Shotgun) D.Williams right guard to KC 30 for 11 yards (S.Smith).,7,10,2012 -20121202_CAR@KC,2,44,15,CAR,KC,1,10,30,(14:15) (Shotgun) C.Newton pass incomplete deep right to B.LaFell.,7,10,2012 -20121202_CAR@KC,2,44,10,CAR,KC,2,10,30,(14:10) (Shotgun) C.Newton pass short right to J.Adams to KC 23 for 7 yards (T.Daniels). KC-B.Flowers was injured during the play. His return is Questionable. Injury to hamstring.,7,10,2012 -20121202_CAR@KC,2,43,34,CAR,KC,3,3,23,(13:34) C.Newton pass deep left to S.Smith for 23 yards TOUCHDOWN.,7,10,2012 -20121202_CAR@KC,2,43,34,CAR,KC,,,23,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,10,2012 -20121202_CAR@KC,2,43,34,CAR,KC,,,23,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,14,10,2012 -20121202_CAR@KC,2,43,27,KC,CAR,1,10,80,(13:27) J.Charles left guard to KC 22 for 2 yards (G.Hardy).,10,14,2012 -20121202_CAR@KC,2,42,53,KC,CAR,2,8,78,(12:53) J.Charles right tackle to KC 23 for 1 yard (D.Edwards).,10,14,2012 -20121202_CAR@KC,2,42,16,KC,CAR,3,7,77,(12:16) (Shotgun) B.Quinn pass short left to D.Bowe pushed ob at KC 38 for 15 yards (J.Norman).,10,14,2012 -20121202_CAR@KC,2,41,46,KC,CAR,1,10,62,(11:46) B.Quinn pass incomplete deep right to D.Bowe.,10,14,2012 -20121202_CAR@KC,2,41,41,KC,CAR,2,10,62,(11:41) J.Charles up the middle to KC 40 for 2 yards (G.Hardy).,10,14,2012 -20121202_CAR@KC,2,41,3,KC,CAR,3,8,60,(11:03) (Shotgun) B.Quinn pass short left to J.Charles to KC 42 for 2 yards (J.Norman).,10,14,2012 -20121202_CAR@KC,2,40,42,KC,CAR,4,6,58,(10:42) D.Colquitt punts 24 yards to CAR 34 Center-T.Gafford out of bounds.,10,14,2012 -20121202_CAR@KC,2,40,35,CAR,KC,1,10,66,(10:35) D.Williams up the middle to CAR 40 for 6 yards (T.Jackson).,14,10,2012 -20121202_CAR@KC,2,39,54,CAR,KC,2,4,60,(9:54) (Shotgun) D.Williams up the middle to CAR 47 for 7 yards (T.Hartman).,14,10,2012 -20121202_CAR@KC,2,39,17,CAR,KC,1,10,53,(9:17) C.Newton left end to KC 45 for 8 yards (T.Hartman).,14,10,2012 -20121202_CAR@KC,2,38,39,CAR,KC,2,2,45,(8:39) (Run formation) PENALTY on CAR-J.Bridges False Start 5 yards enforced at KC 45 - No Play.,14,10,2012 -20121202_CAR@KC,2,38,39,CAR,KC,2,7,50,(8:39) (Shotgun) C.Newton pass incomplete deep left to G.Olsen.,14,10,2012 -20121202_CAR@KC,2,38,34,CAR,KC,3,7,50,(8:34) (Shotgun) C.Newton right end to KC 46 for 4 yards (J.Houston).,14,10,2012 -20121202_CAR@KC,2,37,51,CAR,KC,4,3,46,(7:51) (Punt formation) PENALTY on CAR-N.Chandler False Start 5 yards enforced at KC 46 - No Play.,14,10,2012 -20121202_CAR@KC,2,37,36,CAR,KC,4,8,51,(7:36) B.Nortman punts 51 yards to end zone Center-J.Jansen Touchback.,14,10,2012 -20121202_CAR@KC,2,37,25,KC,CAR,1,10,80,(7:25) J.Charles right tackle to KC 22 for 2 yards (L.Kuechly).,10,14,2012 -20121202_CAR@KC,2,36,52,KC,CAR,2,8,78,(6:52) B.Quinn pass short middle to J.Charles to KC 28 for 6 yards (J.Phillips).,10,14,2012 -20121202_CAR@KC,2,36,8,KC,CAR,3,2,72,(6:08) (Shotgun) C.Gray right end to KC 29 for 1 yard (C.Johnson). PENALTY on CAR-G.Hardy Illegal Use of Hands 5 yards enforced at KC 28 - No Play.,10,14,2012 -20121202_CAR@KC,2,35,31,KC,CAR,1,10,67,(5:31) (No Huddle Shotgun) B.Quinn pass short left to J.Newsome to KC 37 for 4 yards (J.Phillips).,10,14,2012 -20121202_CAR@KC,2,34,54,KC,CAR,2,6,63,(4:54) J.Charles right tackle to KC 37 for no gain (A.Neblett).,10,14,2012 -20121202_CAR@KC,2,34,15,KC,CAR,3,6,63,(4:15) (Shotgun) B.Quinn pass deep middle to D.Bowe to CAR 45 for 18 yards (J.Thomas).,10,14,2012 -20121202_CAR@KC,2,33,35,KC,CAR,1,10,45,(3:35) B.Quinn pass short left to J.Charles to CAR 46 for -1 yards (T.Davis).,10,14,2012 -20121202_CAR@KC,2,32,50,KC,CAR,2,11,46,(2:50) P.Hillis right end to CAR 41 for 5 yards (A.Neblett).,10,14,2012 -20121202_CAR@KC,2,32,50,KC,CAR,3,6,41,(2:50) (Shotgun) PENALTY on CAR-C.Johnson Neutral Zone Infraction 5 yards enforced at CAR 41 - No Play.,10,14,2012 -20121202_CAR@KC,2,32,0,KC,CAR,3,1,36,(2:00) B.Quinn pass short middle to D.McCluster to CAR 24 for 12 yards (T.Davis). CAR-S.Martin was injured during the play.,10,14,2012 -20121202_CAR@KC,2,31,47,KC,CAR,1,10,24,(1:47) (Run formation) PENALTY on CAR-A.Neblett Encroachment 5 yards enforced at CAR 24 - No Play.,10,14,2012 -20121202_CAR@KC,2,31,47,KC,CAR,1,5,19,(1:47) J.Charles up the middle to CAR 10 for 9 yards (H.Nakamura). CAR-F.Alexander was injured during the play.,10,14,2012 -20121202_CAR@KC,2,31,30,KC,CAR,1,10,10,(1:30) J.Charles left guard to CAR 6 for 4 yards (T.Davis).,10,14,2012 -20121202_CAR@KC,2,30,47,KC,CAR,2,6,6,(:47) (Shotgun) P.Hillis left end pushed ob at CAR 1 for 5 yards (C.Godfrey).,10,14,2012 -20121202_CAR@KC,2,30,42,KC,CAR,3,1,1,(:42) P.Hillis up the middle to CAR 1 for no gain (A.Neblett).,10,14,2012 -20121202_CAR@KC,2,30,2,KC,CAR,4,1,1,(:02) B.Quinn pass short middle to T.Moeaki for 1 yard TOUCHDOWN.,10,14,2012 -20121202_CAR@KC,2,30,2,KC,CAR,,,1,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,14,2012 -20121202_CAR@KC,3,30,0,KC,CAR,,,1,R.Succop kicks 74 yards from KC 35 to CAR -9. A.Edwards Touchback.,17,14,2012 -20121202_CAR@KC,3,30,0,CAR,KC,1,10,80,(15:00) (Shotgun) C.Newton pass short left to S.Smith to CAR 31 for 11 yards (J.Arenas).,14,17,2012 -20121202_CAR@KC,3,29,25,CAR,KC,1,10,69,(14:25) D.Williams up the middle to CAR 44 for 13 yards (T.Hartman).,14,17,2012 -20121202_CAR@KC,3,28,41,CAR,KC,1,10,56,(13:41) (Shotgun) C.Newton pass incomplete deep right to L.Murphy.,14,17,2012 -20121202_CAR@KC,3,28,34,CAR,KC,2,10,56,(13:34) (Shotgun) C.Newton pass short right to B.LaFell to CAR 48 for 4 yards (C.Greenwood). FUMBLES (C.Greenwood) ball out of bounds at CAR 48.,14,17,2012 -20121202_CAR@KC,3,28,2,CAR,KC,3,6,52,(13:02) (Shotgun) C.Newton pass incomplete deep middle to B.LaFell [T.Hali]. KC-J.Arenas was injured during the play.,14,17,2012 -20121202_CAR@KC,3,27,56,CAR,KC,4,6,52,(12:56) B.Nortman punts 39 yards to KC 13 Center-J.Jansen fair catch by D.McCluster.,14,17,2012 -20121202_CAR@KC,3,27,48,KC,CAR,1,10,87,(12:48) J.Charles up the middle to KC 22 for 9 yards (C.Godfrey).,17,14,2012 -20121202_CAR@KC,3,27,16,KC,CAR,2,1,78,(12:16) J.Charles up the middle to KC 24 for 2 yards (C.Johnson).,17,14,2012 -20121202_CAR@KC,3,26,39,KC,CAR,1,10,76,(11:39) B.Quinn sacked at KC 20 for -4 yards (L.Kuechly).,17,14,2012 -20121202_CAR@KC,3,26,4,KC,CAR,2,14,80,(11:04) J.Charles right tackle to KC 27 for 7 yards (D.Edwards).,17,14,2012 -20121202_CAR@KC,3,25,23,KC,CAR,3,7,73,(10:23) (Shotgun) B.Quinn pass short right to P.Hillis to KC 36 for 9 yards (L.Kuechly).,17,14,2012 -20121202_CAR@KC,3,25,23,KC,CAR,1,10,64,(10:23) (Run formation) PENALTY on CAR Defensive 12 On-field 5 yards enforced at KC 36 - No Play.,17,14,2012 -20121202_CAR@KC,3,24,26,KC,CAR,1,5,59,(9:26) P.Hillis up the middle to KC 39 for -2 yards (G.Hardy).,17,14,2012 -20121202_CAR@KC,3,23,48,KC,CAR,2,7,61,(8:48) B.Quinn pass deep middle to T.Moeaki to CAR 36 for 25 yards (H.Nakamura).,17,14,2012 -20121202_CAR@KC,3,23,7,KC,CAR,1,10,36,(8:07) J.Charles right tackle to CAR 31 for 5 yards (D.Campbell).,17,14,2012 -20121202_CAR@KC,3,22,30,KC,CAR,2,5,31,(7:30) P.Hillis right tackle to CAR 36 for -5 yards (L.Kuechly).,17,14,2012 -20121202_CAR@KC,3,21,49,KC,CAR,3,10,36,(6:49) (Shotgun) B.Quinn pass short middle to T.Moeaki to CAR 27 for 9 yards (L.Kuechly).,17,14,2012 -20121202_CAR@KC,3,21,8,KC,CAR,4,1,27,(6:08) P.Hillis up the middle to CAR 22 for 5 yards (J.Anderson).,17,14,2012 -20121202_CAR@KC,3,20,23,KC,CAR,1,10,22,(5:23) J.Charles right guard to CAR 14 for 8 yards (T.Davis).,17,14,2012 -20121202_CAR@KC,3,19,44,KC,CAR,2,2,14,(4:44) B.Quinn pass incomplete short right to P.DiMarco.,17,14,2012 -20121202_CAR@KC,3,19,39,KC,CAR,3,2,14,(4:39) B.Quinn up the middle to CAR 13 for 1 yard (D.Edwards).,17,14,2012 -20121202_CAR@KC,3,19,3,KC,CAR,4,1,13,(4:03) P.Hillis right guard to CAR 12 for 1 yard (J.Anderson).,17,14,2012 -20121202_CAR@KC,3,18,32,KC,CAR,1,10,12,(3:32) J.Charles left end to CAR 3 for 9 yards (T.Davis).,17,14,2012 -20121202_CAR@KC,3,17,56,KC,CAR,2,1,3,(2:56) B.Quinn pass short left to J.Baldwin for 3 yards TOUCHDOWN.,17,14,2012 -20121202_CAR@KC,3,17,56,KC,CAR,,,3,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,17,14,2012 -20121202_CAR@KC,3,17,56,KC,CAR,,,3,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,24,14,2012 -20121202_CAR@KC,3,17,52,CAR,KC,1,10,80,(2:52) C.Newton pass short middle to D.Williams to CAR 21 for 1 yard (B.Siler).,14,24,2012 -20121202_CAR@KC,3,17,11,CAR,KC,2,9,79,(2:11) (Shotgun) C.Newton left guard to CAR 29 for 8 yards (D.Johnson).,14,24,2012 -20121202_CAR@KC,3,16,26,CAR,KC,3,1,71,(1:26) (Shotgun) C.Newton left guard to CAR 32 for 3 yards (E.Berry).,14,24,2012 -20121202_CAR@KC,3,15,46,CAR,KC,1,10,68,(:46) (Shotgun) C.Newton pass incomplete short right to S.Smith.,14,24,2012 -20121202_CAR@KC,3,15,41,CAR,KC,2,10,68,(:41) (Shotgun) C.Newton up the middle pushed ob at KC 40 for 28 yards (T.Hartman).,14,24,2012 -20121202_CAR@KC,3,15,9,CAR,KC,1,10,40,(:09) D.Williams left guard to KC 32 for 8 yards (J.Arenas).,14,24,2012 -20121202_CAR@KC,4,15,0,CAR,KC,2,2,32,(15:00) D.Williams right tackle to KC 28 for 4 yards (T.Jackson).,14,24,2012 -20121202_CAR@KC,4,14,22,CAR,KC,1,10,28,(14:22) C.Newton pass incomplete deep left to G.Olsen.,14,24,2012 -20121202_CAR@KC,4,14,15,CAR,KC,2,10,28,(14:15) (Shotgun) C.Newton left end to KC 8 for 20 yards (T.Hartman).,14,24,2012 -20121202_CAR@KC,4,13,31,CAR,KC,1,8,8,(13:31) C.Newton pass incomplete short right to S.Smith.,14,24,2012 -20121202_CAR@KC,4,13,26,CAR,KC,2,8,8,(13:26) C.Newton pass short right to L.Murphy for 8 yards TOUCHDOWN.,14,24,2012 -20121202_CAR@KC,4,13,26,CAR,KC,,,8,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,24,2012 -20121202_CAR@KC,4,13,26,CAR,KC,,,8,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,21,24,2012 -20121202_CAR@KC,4,13,21,KC,CAR,1,10,80,(13:21) B.Quinn pass short right to D.Bowe pushed ob at KC 30 for 10 yards (C.Munnerlyn).,24,21,2012 -20121202_CAR@KC,4,12,56,KC,CAR,1,10,70,(12:56) P.Hillis up the middle to KC 31 for 1 yard (G.Hardy).,24,21,2012 -20121202_CAR@KC,4,12,21,KC,CAR,2,9,69,(12:21) J.Charles up the middle to KC 30 for -1 yards (L.Kuechly).,24,21,2012 -20121202_CAR@KC,4,11,44,KC,CAR,3,10,70,(11:44) (Shotgun) B.Quinn pass short left to D.McCluster to KC 34 for 4 yards (C.Munnerlyn) [G.Hardy].,24,21,2012 -20121202_CAR@KC,4,11,11,KC,CAR,4,6,66,(11:11) D.Colquitt punts 49 yards to CAR 17 Center-T.Gafford fair catch by J.Adams.,24,21,2012 -20121202_CAR@KC,4,11,3,CAR,KC,1,10,83,(11:03) D.Williams left end pushed ob at CAR 23 for 6 yards (T.Hali).,21,24,2012 -20121202_CAR@KC,4,10,29,CAR,KC,2,4,77,(10:29) (Shotgun) D.Williams up the middle to CAR 25 for 2 yards (D.Poe).,21,24,2012 -20121202_CAR@KC,4,9,43,CAR,KC,3,2,75,(9:43) (Shotgun) C.Newton pass short left to M.Tolbert pushed ob at CAR 40 for 15 yards (T.Hartman).,21,24,2012 -20121202_CAR@KC,4,9,8,CAR,KC,1,10,60,(9:08) (Shotgun) C.Newton sacked at CAR 31 for -9 yards (J.Houston).,21,24,2012 -20121202_CAR@KC,4,8,30,CAR,KC,2,19,69,(8:30) (Shotgun) D.Williams right end to CAR 30 for -1 yards (J.Houston).,21,24,2012 -20121202_CAR@KC,4,7,46,CAR,KC,3,20,70,(7:46) (Shotgun) C.Newton pass incomplete short middle to L.Murphy (T.Jackson).,21,24,2012 -20121202_CAR@KC,4,7,39,CAR,KC,4,20,70,(7:39) B.Nortman punts 49 yards to KC 21 Center-J.Jansen. D.McCluster pushed ob at KC 27 for 6 yards (J.Phillips).,21,24,2012 -20121202_CAR@KC,4,7,30,KC,CAR,1,10,73,(7:30) B.Quinn pass deep left to T.Moeaki to KC 46 for 19 yards (L.Kuechly) [C.Johnson].,24,21,2012 -20121202_CAR@KC,4,6,51,KC,CAR,1,10,54,(6:51) J.Charles up the middle to KC 45 for -1 yards (T.Davis). PENALTY on CAR-J.Thomas Personal Foul 15 yards enforced at KC 45.,24,21,2012 -20121202_CAR@KC,4,6,21,KC,CAR,1,10,40,(6:21) J.Charles up the middle to CAR 37 for 3 yards (D.Edwards).,24,21,2012 -20121202_CAR@KC,4,5,41,KC,CAR,2,7,37,(5:41) J.Charles right guard to CAR 34 for 3 yards (S.Fua).,24,21,2012 -20121202_CAR@KC,4,5,3,KC,CAR,3,4,34,(5:03) B.Quinn pass incomplete short right to D.Bowe (J.Thomas).,24,21,2012 -20121202_CAR@KC,4,4,59,KC,CAR,4,4,34,(4:59) R.Succop 52 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,24,21,2012 -20121202_CAR@KC,4,4,59,KC,CAR,,,34,R.Succop kicks 66 yards from KC 35 to CAR -1. A.Edwards to CAR 19 for 20 yards (T.Copper; C.Gray).,27,21,2012 -20121202_CAR@KC,4,4,49,CAR,KC,1,10,81,(4:49) (Shotgun) C.Newton pass short right to M.Tolbert to CAR 18 for -1 yards (T.Hali).,21,27,2012 -20121202_CAR@KC,4,4,10,CAR,KC,2,11,82,(4:10) (Shotgun) C.Newton scrambles left end ran ob at CAR 25 for 7 yards (B.Siler).,21,27,2012 -20121202_CAR@KC,4,4,0,CAR,KC,3,4,75,(4:00) (Shotgun) C.Newton pass incomplete short right to M.Tolbert [D.Poe].,21,27,2012 -20121202_CAR@KC,4,3,55,CAR,KC,4,4,75,(3:55) B.Nortman punts 45 yards to KC 30 Center-J.Jansen fair catch by D.McCluster.,21,27,2012 -20121202_CAR@KC,4,3,47,KC,CAR,1,10,70,(3:47) J.Charles up the middle to KC 32 for 2 yards (D.Edwards).,27,21,2012 -20121202_CAR@KC,4,3,41,KC,CAR,2,8,68,(3:41) J.Charles left tackle to KC 34 for 2 yards (C.Munnerlyn).,27,21,2012 -20121202_CAR@KC,4,3,36,KC,CAR,3,6,66,(3:36) (Shotgun) B.Quinn right tackle to KC 40 for 6 yards (T.Davis).,27,21,2012 -20121202_CAR@KC,4,3,36,KC,CAR,1,10,60,(3:36) PENALTY on KC-B.Quinn Delay of Game 5 yards enforced at KC 40 - No Play.,27,21,2012 -20121202_CAR@KC,4,2,45,KC,CAR,1,15,65,(2:45) J.Charles up the middle to KC 39 for 4 yards (G.Hardy).,27,21,2012 -20121202_CAR@KC,4,2,0,KC,CAR,2,11,61,(2:00) J.Charles up the middle to KC 41 for 2 yards (F.Kearse).,27,21,2012 -20121202_CAR@KC,4,1,16,KC,CAR,3,9,59,(1:16) P.Hillis right guard to KC 43 for 2 yards (F.Kearse).,27,21,2012 -20121202_CAR@KC,4,0,30,KC,CAR,4,7,57,(:30) D.Colquitt punts 55 yards to CAR 2 Center-T.Gafford. J.Adams pushed ob at CAR 14 for 12 yards (E.Jones). KC-A.Bailey was injured during the play.,27,21,2012 -20121202_CAR@KC,4,0,18,CAR,KC,1,10,86,(:18) (Shotgun) C.Newton pass short left to S.Smith pushed ob at CAR 28 for 14 yards (N.Thorpe).,21,27,2012 -20121202_CAR@KC,4,0,13,CAR,KC,1,10,72,(:13) (Shotgun) C.Newton pass short right to A.Edwards ran ob at CAR 39 for 11 yards.,21,27,2012 -20121202_CAR@KC,4,0,7,CAR,KC,1,10,61,(:07) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,21,27,2012 -20121202_CAR@KC,4,0,3,CAR,KC,2,10,61,(:03) (Shotgun) C.Newton pass deep middle to S.Smith to KC 8 for 53 yards (N.Thorpe) [T.Hali].,21,27,2012 -20121202_CAR@KC,4,0,3,CAR,KC,,,61,                      ,21,27,2012 -20121202_NE@MIA,1,0,0,NE,MIA,,,61,S.Gostkowski kicks 66 yards from NE 35 to MIA -1. M.Thigpen to MIA 16 for 17 yards (N.Koutouvides).,0,0,2012 -20121202_NE@MIA,1,59,53,MIA,NE,1,10,84,(14:53) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 -20121202_NE@MIA,1,59,49,MIA,NE,2,10,84,(14:49) R.Bush left guard to MIA 22 for 6 yards (V.Wilfork).,0,0,2012 -20121202_NE@MIA,1,59,10,MIA,NE,3,4,78,(14:10) (Shotgun) R.Tannehill pass incomplete short left to R.Matthews.,0,0,2012 -20121202_NE@MIA,1,59,4,MIA,NE,4,4,92,(14:04) (Punt formation) B.Fields FUMBLES (Aborted) at MIA 8 and recovers at MIA 8. B.Fields to MIA 12 for 4 yards (M.Slater).,0,0,2012 -20121202_NE@MIA,1,58,57,NE,MIA,1,10,12,(13:57) S.Ridley left guard to MIA 8 for 4 yards. PENALTY on NE-D.Thomas Offensive Holding 10 yards enforced at MIA 12 - No Play.,0,0,2012 -20121202_NE@MIA,1,58,33,NE,MIA,1,20,22,(13:33) (Shotgun) T.Brady pass incomplete deep right to A.Hernandez.,0,0,2012 -20121202_NE@MIA,1,58,26,NE,MIA,2,20,22,(13:26) (Shotgun) T.Brady pass short middle to W.Welker to MIA 10 for 12 yards (K.Burnett) [C.Wake].,0,0,2012 -20121202_NE@MIA,1,57,53,NE,MIA,3,8,10,(12:53) (Shotgun) T.Brady pass short right to A.Hernandez to MIA 2 for 8 yards (K.Burnett).,0,0,2012 -20121202_NE@MIA,1,57,5,NE,MIA,1,2,2,(12:05) N.Solder reported in as eligible. T.Brady pass incomplete short right to A.Hernandez.,0,0,2012 -20121202_NE@MIA,1,56,59,NE,MIA,2,2,2,(11:59) S.Ridley left tackle for 2 yards TOUCHDOWN.,0,0,2012 -20121202_NE@MIA,1,56,59,NE,MIA,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121202_NE@MIA,1,56,59,NE,MIA,,,2,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,7,0,2012 -20121202_NE@MIA,1,56,53,MIA,NE,1,10,80,(11:53) R.Bush up the middle to MIA 17 for -3 yards (V.Wilfork).,0,7,2012 -20121202_NE@MIA,1,56,18,MIA,NE,2,13,83,(11:18) (Shotgun) R.Tannehill pass short right to B.Hartline pushed ob at MIA 26 for 9 yards (A.Talib).,0,7,2012 -20121202_NE@MIA,1,55,46,MIA,NE,3,4,74,(10:46) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,0,7,2012 -20121202_NE@MIA,1,55,40,MIA,NE,4,4,74,(10:40) (Punt formation) B.Fields punts 58 yards to NE 16 Center-J.Denney. J.Edelman to NE 26 for 10 yards (A.Spitler).,0,7,2012 -20121202_NE@MIA,1,55,28,NE,MIA,1,10,74,(10:28) T.Brady pass incomplete short left to A.Hernandez.,7,0,2012 -20121202_NE@MIA,1,55,22,NE,MIA,2,10,74,(10:22) (Shotgun) T.Brady pass incomplete deep middle to D.Fells.,7,0,2012 -20121202_NE@MIA,1,55,14,NE,MIA,3,10,74,(10:14) (Shotgun) T.Brady pass short left to J.Edelman to NE 39 for 13 yards (R.Jones).,7,0,2012 -20121202_NE@MIA,1,54,52,NE,MIA,1,10,61,(9:52) (No Huddle Shotgun) D.Woodhead up the middle to NE 44 for 5 yards (R.Starks).,7,0,2012 -20121202_NE@MIA,1,54,33,NE,MIA,2,5,56,(9:33) T.Brady pass short right to D.Woodhead to MIA 45 for 11 yards (K.Dansby).,7,0,2012 -20121202_NE@MIA,1,54,3,NE,MIA,1,10,45,(9:03) (Shotgun) T.Brady pass incomplete deep middle to J.Edelman.,7,0,2012 -20121202_NE@MIA,1,53,54,NE,MIA,2,10,45,(8:54) (Shotgun) T.Brady pass short left to W.Welker to MIA 35 for 10 yards (K.Burnett).,7,0,2012 -20121202_NE@MIA,1,53,36,NE,MIA,1,10,35,(8:36) (No Huddle) S.Ridley right tackle to MIA 28 for 7 yards (O.Vernon). PENALTY on NE-S.Vollmer Offensive Holding 10 yards enforced at MIA 35 - No Play.,7,0,2012 -20121202_NE@MIA,1,53,4,NE,MIA,1,20,45,(8:04) (Shotgun) T.Brady pass short middle to W.Welker to MIA 32 for 13 yards (J.Wilson).,7,0,2012 -20121202_NE@MIA,1,52,34,NE,MIA,2,7,32,(7:34) (No Huddle) D.Woodhead left guard to MIA 31 for 1 yard (K.Dansby C.Clemons).,7,0,2012 -20121202_NE@MIA,1,51,57,NE,MIA,3,6,31,(6:57) (Shotgun) T.Brady pass incomplete short left to D.Woodhead [J.Odrick].,7,0,2012 -20121202_NE@MIA,1,51,50,NE,MIA,4,6,31,(6:50) (Field Goal formation) S.Gostkowski 49 yard field goal is No Good Wide Right Center-D.Aiken Holder-Z.Mesko.,7,0,2012 -20121202_NE@MIA,1,51,45,MIA,NE,1,10,61,(6:45) R.Bush left end pushed ob at MIA 43 for 4 yards (A.Dennard).,0,7,2012 -20121202_NE@MIA,1,51,12,MIA,NE,2,6,57,(6:12) R.Tannehill pass short right to B.Hartline to NE 49 for 8 yards (B.Spikes).,0,7,2012 -20121202_NE@MIA,1,50,38,MIA,NE,1,10,49,(5:38) R.Tannehill pass incomplete deep right to B.Hartline.,0,7,2012 -20121202_NE@MIA,1,50,32,MIA,NE,2,10,49,(5:32) R.Bush right tackle to NE 45 for 4 yards (J.Francis).,0,7,2012 -20121202_NE@MIA,1,49,48,MIA,NE,3,6,45,(4:48) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,0,7,2012 -20121202_NE@MIA,1,49,41,MIA,NE,4,6,45,(4:41) (Punt formation) B.Fields punts 42 yards to NE 3 Center-J.Denney downed by MIA-J.Wilson.,0,7,2012 -20121202_NE@MIA,1,49,30,NE,MIA,1,10,97,(4:30) S.Ridley up the middle to NE 5 for 2 yards (K.Misi).,7,0,2012 -20121202_NE@MIA,1,48,54,NE,MIA,2,8,95,(3:54) (Shotgun) T.Brady pass short right to A.Hernandez to NE 25 for 20 yards (K.Burnett).,7,0,2012 -20121202_NE@MIA,1,48,22,NE,MIA,1,10,75,(3:22) T.Brady pass deep right intended for A.Hernandez INTERCEPTED by R.Jones at NE 49. R.Jones to NE 19 for 30 yards. PENALTY on MIA-R.Bush Low Block 15 yards enforced at NE 19. Penalty on MIA Low Block declined.,7,0,2012 -20121202_NE@MIA,1,48,3,MIA,NE,1,10,34,(3:03) D.Thomas right tackle to NE 31 for 3 yards (B.Spikes).,0,7,2012 -20121202_NE@MIA,1,47,30,MIA,NE,2,7,31,(2:30) M.Thigpen left tackle to NE 23 for 8 yards (D.Hightower).,0,7,2012 -20121202_NE@MIA,1,46,52,MIA,NE,1,10,23,(1:52) D.Thomas right tackle to NE 23 for no gain (J.Francis). PENALTY on MIA-J.Jerry Offensive Holding 10 yards enforced at NE 23 - No Play.,0,7,2012 -20121202_NE@MIA,1,46,34,MIA,NE,1,20,33,(1:34) R.Tannehill pass incomplete short right to C.Clay.,0,7,2012 -20121202_NE@MIA,1,46,25,MIA,NE,2,20,33,(1:25) (Shotgun) D.Thomas up the middle to NE 31 for 2 yards (B.Deaderick). FUMBLES (B.Deaderick) recovered by MIA-R.Incognito at NE 32. R.Incognito to NE 32 for no gain (B.Deaderick).,0,7,2012 -20121202_NE@MIA,1,45,37,MIA,NE,3,19,32,(:37) (Shotgun) R.Tannehill scrambles up the middle to NE 26 for 6 yards (K.Arrington).,0,7,2012 -20121202_NE@MIA,1,45,6,MIA,NE,4,13,26,(:06) D.Carpenter 44 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,7,2012 -20121202_NE@MIA,1,45,6,MIA,NE,,,26,D.Carpenter kicks 69 yards from MIA 35 to NE -4. D.McCourty to NE 25 for 29 yards (J.Freeny). NE-M.Slater was injured during the play.,3,7,2012 -20121202_NE@MIA,2,45,0,NE,MIA,1,10,75,(15:00) T.Brady pass short left to W.Welker to NE 33 for 8 yards (N.Carroll).,7,3,2012 -20121202_NE@MIA,2,44,34,NE,MIA,2,2,67,(14:34) (No Huddle) S.Ridley right end to NE 31 for -2 yards (K.Dansby).,7,3,2012 -20121202_NE@MIA,2,44,3,NE,MIA,3,4,69,(14:03) (Shotgun) T.Brady pass short right to W.Welker to NE 34 for 3 yards (J.Wilson).,7,3,2012 -20121202_NE@MIA,2,43,21,NE,MIA,4,1,66,(13:21) (Punt formation) PENALTY on NE-N.Ebner False Start 5 yards enforced at NE 34 - No Play.,7,3,2012 -20121202_NE@MIA,2,43,13,NE,MIA,4,6,71,(13:13) (Punt formation) Z.Mesko punts 49 yards to MIA 22 Center-D.Aiken fair catch by M.Thigpen. MIA-J.Wilson was injured during the play. His return is Probable. PENALTY on MIA-J.Wilson Roughing the Kicker 15 yards enforced at NE 29 - No Play.,7,3,2012 -20121202_NE@MIA,2,43,2,NE,MIA,1,10,56,(13:02) (Shotgun) T.Brady pass incomplete short right to W.Welker.,7,3,2012 -20121202_NE@MIA,2,42,59,NE,MIA,2,10,56,(12:59) (Shotgun) T.Brady pass short right to W.Welker to MIA 42 for 14 yards (R.Jones).,7,3,2012 -20121202_NE@MIA,2,42,30,NE,MIA,1,10,42,(12:30) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to MIA 35 for 7 yards (R.Jones).,7,3,2012 -20121202_NE@MIA,2,41,57,NE,MIA,2,3,35,(11:57) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Fells. PENALTY on MIA-R.Jones Defensive Pass Interference 4 yards enforced at MIA 35 - No Play.,7,3,2012 -20121202_NE@MIA,2,41,49,NE,MIA,1,10,31,(11:49) T.Brady pass incomplete deep right to W.Welker (K.Dansby).,7,3,2012 -20121202_NE@MIA,2,41,44,NE,MIA,2,10,31,(11:44) (Shotgun) T.Brady pass short left to A.Hernandez to MIA 18 for 13 yards (K.Dansby).,7,3,2012 -20121202_NE@MIA,2,41,1,NE,MIA,1,10,18,(11:01) (Shotgun) T.Brady pass short middle to W.Welker to MIA 10 for 8 yards (C.Clemons).,7,3,2012 -20121202_NE@MIA,2,40,33,NE,MIA,2,2,10,(10:33) (No Huddle) D.Woodhead left guard to MIA 9 for 1 yard (C.Clemons).,7,3,2012 -20121202_NE@MIA,2,40,12,NE,MIA,3,1,9,(10:12) S.Ridley left guard to MIA 7 for 2 yards (J.Odrick).,7,3,2012 -20121202_NE@MIA,2,39,35,NE,MIA,1,7,7,(9:35) T.Brady pass incomplete short right to W.Welker.,7,3,2012 -20121202_NE@MIA,2,39,26,NE,MIA,2,7,7,(9:26) (Shotgun) T.Brady pass short right to W.Welker for 7 yards TOUCHDOWN.,7,3,2012 -20121202_NE@MIA,2,39,26,NE,MIA,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,3,2012 -20121202_NE@MIA,2,39,26,NE,MIA,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,14,3,2012 -20121202_NE@MIA,2,39,21,MIA,NE,1,10,80,(9:21) R.Bush up the middle to MIA 24 for 4 yards (J.Mayo).,3,14,2012 -20121202_NE@MIA,2,38,43,MIA,NE,2,6,76,(8:43) R.Tannehill pass short left to J.Lane to MIA 26 for 2 yards (J.Mayo). FUMBLES (J.Mayo) and recovers at MIA 26. J.Lane to MIA 26 for no gain (D.Hightower).,3,14,2012 -20121202_NE@MIA,2,38,4,MIA,NE,3,4,74,(8:04) (Shotgun) R.Tannehill sacked at MIA 19 for -7 yards (T.Scott). FUMBLES (T.Scott) RECOVERED by NE-V.Wilfork at MIA 25. V.Wilfork to MIA 25 for no gain (R.Matthews).,3,14,2012 -20121202_NE@MIA,2,37,54,NE,MIA,1,10,25,(7:54) (Shotgun) T.Brady sacked at MIA 32 for -7 yards (P.Soliai).,14,3,2012 -20121202_NE@MIA,2,37,20,NE,MIA,2,17,32,(7:20) (Shotgun) T.Brady pass incomplete short right to S.Vereen (T.McDaniel).,14,3,2012 -20121202_NE@MIA,2,37,12,NE,MIA,3,17,32,(7:12) (Shotgun) T.Brady pass short left to W.Welker to MIA 25 for 7 yards (P.Soliai; J.Wilson).,14,3,2012 -20121202_NE@MIA,2,36,58,NE,MIA,4,10,25,(6:58) (Field Goal formation) S.Gostkowski 43 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,14,3,2012 -20121202_NE@MIA,2,36,58,NE,MIA,,,25,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,17,3,2012 -20121202_NE@MIA,2,36,53,MIA,NE,1,10,80,(6:53) R.Bush right tackle to MIA 26 for 6 yards (B.Spikes). PENALTY on MIA-A.Fasano Offensive Holding 10 yards enforced at MIA 20 - No Play.,3,17,2012 -20121202_NE@MIA,2,36,47,MIA,NE,1,20,90,(6:47) PENALTY on MIA-B.Hartline False Start 5 yards enforced at MIA 10 - No Play.,3,17,2012 -20121202_NE@MIA,2,36,23,MIA,NE,1,25,95,(6:23) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 19 for 14 yards (K.Arrington).,3,17,2012 -20121202_NE@MIA,2,35,59,MIA,NE,2,11,81,(5:59) R.Bush right end to MIA 35 for 16 yards (A.Talib; D.McCourty).,3,17,2012 -20121202_NE@MIA,2,35,28,MIA,NE,1,10,65,(5:28) (No Huddle) R.Bush left guard to MIA 38 for 3 yards (R.Ninkovich). PENALTY on NE Defensive 12 On-field 5 yards enforced at MIA 35 - No Play.,3,17,2012 -20121202_NE@MIA,2,35,13,MIA,NE,1,5,60,(5:13) (Shotgun) R.Tannehill scrambles right end ran ob at MIA 49 for 9 yards (K.Arrington).,3,17,2012 -20121202_NE@MIA,2,34,53,MIA,NE,1,10,51,(4:53) R.Bush left tackle to NE 43 for 8 yards (J.Mayo).,3,17,2012 -20121202_NE@MIA,2,34,11,MIA,NE,2,2,43,(4:11) R.Bush left guard to NE 37 for 6 yards (B.Spikes).,3,17,2012 -20121202_NE@MIA,2,33,34,MIA,NE,1,10,37,(3:34) R.Tannehill pass incomplete short left to D.Bess (B.Spikes).,3,17,2012 -20121202_NE@MIA,2,33,26,MIA,NE,2,10,37,(3:26) R.Tannehill pass short middle to D.Thomas to NE 30 for 7 yards (K.Arrington).,3,17,2012 -20121202_NE@MIA,2,32,52,MIA,NE,3,3,30,(2:52) (Shotgun) R.Tannehill pass short middle to B.Hartline to NE 13 for 17 yards (A.Talib).,3,17,2012 -20121202_NE@MIA,2,32,5,MIA,NE,1,10,13,(2:05) (Shotgun) R.Tannehill up the middle to NE 15 for -2 yards (K.Love).,3,17,2012 -20121202_NE@MIA,2,31,59,MIA,NE,2,12,15,(1:59) (Shotgun) R.Tannehill pass short left to D.Thomas to NE 3 for 12 yards (A.Dennard).,3,17,2012 -20121202_NE@MIA,2,31,12,MIA,NE,1,3,3,(1:12) D.Thomas up the middle to NE 2 for 1 yard (R.Ninkovich).,3,17,2012 -20121202_NE@MIA,2,30,34,MIA,NE,2,2,2,(:34) (Shotgun) R.Tannehill left end for 2 yards TOUCHDOWN.,3,17,2012 -20121202_NE@MIA,2,30,34,MIA,NE,,,2,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,17,2012 -20121202_NE@MIA,2,30,34,MIA,NE,,,2,D.Carpenter kicks 74 yards from MIA 35 to NE -9. D.McCourty Touchback.,10,17,2012 -20121202_NE@MIA,2,30,25,NE,MIA,1,10,80,(:25) T.Brady kneels to NE 19 for -1 yards.,17,10,2012 -20121202_NE@MIA,3,30,0,MIA,NE,,,80,D.Carpenter kicks 74 yards from MIA 35 to NE -9. D.McCourty Touchback.,10,17,2012 -20121202_NE@MIA,3,30,0,NE,MIA,1,10,80,(15:00) T.Brady pass incomplete short right to J.Edelman.,17,10,2012 -20121202_NE@MIA,3,29,56,NE,MIA,2,10,80,(14:56) S.Ridley right end to NE 27 for 7 yards (K.Misi).,17,10,2012 -20121202_NE@MIA,3,29,19,NE,MIA,3,3,73,(14:19) S.Ridley left end to NE 29 for 2 yards (K.Burnett).,17,10,2012 -20121202_NE@MIA,3,28,37,NE,MIA,4,1,71,(13:37) (Punt formation) Z.Mesko punts 54 yards to MIA 17 Center-D.Aiken. M.Thigpen to MIA 23 for 6 yards (M.Slater).,17,10,2012 -20121202_NE@MIA,3,28,27,MIA,NE,1,10,77,(13:27) R.Bush left tackle to MIA 24 for 1 yard (B.Spikes).,10,17,2012 -20121202_NE@MIA,3,27,57,MIA,NE,2,9,76,(12:57) R.Tannehill pass incomplete short middle to A.Fasano (B.Spikes).,10,17,2012 -20121202_NE@MIA,3,27,50,MIA,NE,3,9,76,(12:50) (Shotgun) R.Tannehill pass incomplete short left to R.Bush.,10,17,2012 -20121202_NE@MIA,3,27,46,MIA,NE,4,9,76,(12:46) (Punt formation) B.Fields punts 60 yards to NE 16 Center-J.Denney. J.Edelman to NE 31 for 15 yards (C.Clemons).,10,17,2012 -20121202_NE@MIA,3,27,34,NE,MIA,1,10,69,(12:34) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez [D.Shelby].,17,10,2012 -20121202_NE@MIA,3,27,29,NE,MIA,2,10,69,(12:29) (Shotgun) T.Brady pass incomplete deep right to S.Vereen. PENALTY on MIA-K.Dansby Defensive Pass Interference 31 yards enforced at NE 31 - No Play.,17,10,2012 -20121202_NE@MIA,3,27,22,NE,MIA,1,10,38,(12:22) S.Ridley left end to MIA 35 for 3 yards (J.Wilson).,17,10,2012 -20121202_NE@MIA,3,26,42,NE,MIA,2,7,35,(11:42) (Shotgun) T.Brady pass short right to A.Hernandez to MIA 33 for 2 yards (R.Jones).,17,10,2012 -20121202_NE@MIA,3,25,56,NE,MIA,3,5,33,(10:56) (Shotgun) T.Brady sacked at MIA 39 for -6 yards (C.Wake).,17,10,2012 -20121202_NE@MIA,3,25,40,NE,MIA,4,11,39,(10:40) (Punt formation) Z.Mesko punts 39 yards to end zone Center-D.Aiken Touchback.,17,10,2012 -20121202_NE@MIA,3,25,30,MIA,NE,1,10,80,(10:30) R.Bush up the middle to MIA 21 for 1 yard (R.Ninkovich).,10,17,2012 -20121202_NE@MIA,3,24,56,MIA,NE,2,9,79,(9:56) R.Bush left tackle to MIA 22 for 1 yard (B.Deaderick).,10,17,2012 -20121202_NE@MIA,3,24,15,MIA,NE,3,8,78,(9:15) (Shotgun) R.Tannehill pass deep right to C.Clay to MIA 42 for 20 yards (T.Wilson).,10,17,2012 -20121202_NE@MIA,3,23,41,MIA,NE,1,10,58,(8:41) R.Tannehill pass incomplete short left to A.Fasano [K.Arrington].,10,17,2012 -20121202_NE@MIA,3,23,32,MIA,NE,2,10,58,(8:32) (Shotgun) D.Thomas left guard to MIA 38 for -4 yards (V.Wilfork; J.Mayo).,10,17,2012 -20121202_NE@MIA,3,22,55,MIA,NE,3,14,62,(7:55) (Shotgun) R.Tannehill pass short left to D.Bess to NE 49 for 13 yards (K.Arrington).,10,17,2012 -20121202_NE@MIA,3,22,10,MIA,NE,4,1,49,(7:10) (Punt formation) B.Fields punts 47 yards to NE 2 Center-J.Denney out of bounds.,10,17,2012 -20121202_NE@MIA,3,21,55,NE,MIA,1,10,98,(6:55) S.Ridley left guard to NE 7 for 5 yards (C.Wake).,17,10,2012 -20121202_NE@MIA,3,21,36,NE,MIA,2,5,93,(6:36) (No Huddle) S.Ridley left tackle to NE 11 for 4 yards (K.Burnett).,17,10,2012 -20121202_NE@MIA,3,21,7,NE,MIA,3,1,89,(6:07) T.Brady left guard to NE 13 for 2 yards (J.Wilson).,17,10,2012 -20121202_NE@MIA,3,20,45,NE,MIA,1,10,87,(5:45) S.Ridley up the middle to NE 17 for 4 yards (K.Misi). PENALTY on NE-D.Fells Offensive Holding 6 yards enforced at NE 13 - No Play.,17,10,2012 -20121202_NE@MIA,3,20,33,NE,MIA,1,16,93,(5:33) T.Brady pass incomplete short right to W.Welker.,17,10,2012 -20121202_NE@MIA,3,20,25,NE,MIA,2,16,93,(5:25) (Shotgun) D.Woodhead up the middle to NE 8 for 1 yard (K.Misi).,17,10,2012 -20121202_NE@MIA,3,19,43,NE,MIA,3,15,92,(4:43) (Shotgun) T.Brady pass short left to D.Woodhead to NE 12 for 4 yards (K.Misi; R.Stanford).,17,10,2012 -20121202_NE@MIA,3,19,2,NE,MIA,4,11,88,(4:02) (Punt formation) Z.Mesko punts 38 yards to NE 50 Center-D.Aiken. M.Thigpen to NE 49 for 1 yard (M.Slater).,17,10,2012 -20121202_NE@MIA,3,18,53,MIA,NE,1,10,49,(3:53) R.Tannehill pass incomplete short right to D.Bess.,10,17,2012 -20121202_NE@MIA,3,18,45,MIA,NE,2,10,49,(3:45) R.Bush up the middle to MIA 48 for -3 yards (R.Ninkovich).,10,17,2012 -20121202_NE@MIA,3,18,8,MIA,NE,3,13,52,(3:08) (No Huddle Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,10,17,2012 -20121202_NE@MIA,3,18,0,MIA,NE,4,13,52,(3:00) (Punt formation) B.Fields punts 52 yards to end zone Center-J.Denney Touchback.,10,17,2012 -20121202_NE@MIA,3,17,52,NE,MIA,1,10,80,(2:52) S.Vereen right tackle to NE 24 for 4 yards (O.Vernon).,17,10,2012 -20121202_NE@MIA,3,17,28,NE,MIA,2,6,76,(2:28) (No Huddle) T.Brady pass incomplete deep left to W.Welker.,17,10,2012 -20121202_NE@MIA,3,17,24,NE,MIA,3,6,76,(2:24) (Shotgun) T.Brady pass short right to A.Hernandez to NE 32 for 8 yards (R.Jones).,17,10,2012 -20121202_NE@MIA,3,16,59,NE,MIA,1,10,68,(1:59) (No Huddle) D.Woodhead left tackle to NE 45 for 13 yards (C.Clemons).,17,10,2012 -20121202_NE@MIA,3,16,36,NE,MIA,1,10,55,(1:36) (Shotgun) D.Woodhead up the middle to NE 48 for 3 yards (K.Burnett).,17,10,2012 -20121202_NE@MIA,3,16,13,NE,MIA,2,7,52,(1:13) (Shotgun) T.Brady pass short right to W.Welker pushed ob at MIA 44 for 8 yards (C.Clemons).,17,10,2012 -20121202_NE@MIA,3,15,53,NE,MIA,1,10,44,(:53) (No Huddle) S.Vereen left guard to MIA 42 for 2 yards (C.Clemons). MIA-J.Odrick was injured during the play. His return is Probable.,17,10,2012 -20121202_NE@MIA,3,15,37,NE,MIA,2,8,42,(:37) T.Brady pass short right to A.Hernandez to MIA 35 for 7 yards (K.Dansby).,17,10,2012 -20121202_NE@MIA,4,15,0,NE,MIA,3,1,35,(15:00) T.Brady pass short right to A.Hernandez ran ob at MIA 4 for 31 yards. PENALTY on MIA-C.Clemons Face Mask (15 Yards) 2 yards enforced at MIA 4.,17,10,2012 -20121202_NE@MIA,4,14,28,NE,MIA,1,2,2,(14:28) N.Solder reported in as eligible. T.Brady sacked at MIA 7 for -5 yards (R.Jones).,17,10,2012 -20121202_NE@MIA,4,13,57,NE,MIA,2,7,7,(13:57) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,17,10,2012 -20121202_NE@MIA,4,13,49,NE,MIA,3,7,7,(13:49) (Shotgun) T.Brady sacked at MIA 14 for -7 yards (K.Misi).,17,10,2012 -20121202_NE@MIA,4,13,21,NE,MIA,4,14,14,(13:21) (Field Goal formation) S.Gostkowski 32 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,17,10,2012 -20121202_NE@MIA,4,13,21,NE,MIA,,,14,S.Gostkowski kicks 72 yards from NE 35 to MIA -7. M.Thigpen Touchback.,20,10,2012 -20121202_NE@MIA,4,13,16,MIA,NE,1,10,80,(13:16) R.Bush right guard to MIA 34 for 14 yards (A.Dennard).,10,20,2012 -20121202_NE@MIA,4,12,47,MIA,NE,1,10,66,(12:47) (Shotgun) R.Tannehill sacked at MIA 33 for -1 yards (T.Scott).,10,20,2012 -20121202_NE@MIA,4,12,8,MIA,NE,2,11,67,(12:08) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,10,20,2012 -20121202_NE@MIA,4,12,1,MIA,NE,3,11,67,(12:01) (Shotgun) R.Tannehill pass deep middle to B.Hartline to NE 45 for 22 yards (D.McCourty).,10,20,2012 -20121202_NE@MIA,4,11,40,MIA,NE,1,10,45,(11:40) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on NE-A.Talib Defensive Pass Interference 14 yards enforced at NE 45 - No Play.,10,20,2012 -20121202_NE@MIA,4,11,22,MIA,NE,1,10,31,(11:22) R.Bush right tackle to NE 25 for 6 yards (T.Scott).,10,20,2012 -20121202_NE@MIA,4,10,49,MIA,NE,2,4,25,(10:49) R.Bush left end to NE 26 for -1 yards (A.Dennard).,10,20,2012 -20121202_NE@MIA,4,10,28,MIA,NE,3,5,26,(10:28) (Shotgun) R.Tannehill scrambles left end to NE 22 for 4 yards (K.Arrington).,10,20,2012 -20121202_NE@MIA,4,10,12,MIA,NE,4,1,22,(10:12) D.Thomas left tackle to NE 13 for 9 yards (D.McCourty).,10,20,2012 -20121202_NE@MIA,4,9,39,MIA,NE,1,10,13,(9:39) R.Tannehill pass short left to C.Clay to NE 7 for 6 yards (J.Mayo).,10,20,2012 -20121202_NE@MIA,4,9,0,MIA,NE,2,4,7,(9:00) (Shotgun) R.Tannehill pass incomplete short middle to B.Hartline.,10,20,2012 -20121202_NE@MIA,4,8,53,MIA,NE,3,4,7,(8:53) (Shotgun) R.Tannehill sacked at NE 15 for -8 yards (J.Mayo).,10,20,2012 -20121202_NE@MIA,4,8,50,MIA,NE,4,12,15,(8:50) (Field Goal formation) D.Carpenter 33 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,10,20,2012 -20121202_NE@MIA,4,8,50,MIA,NE,,,15,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,13,20,2012 -20121202_NE@MIA,4,8,28,NE,MIA,1,10,80,(8:28) S.Ridley right end to NE 23 for 3 yards (K.Dansby; K.Burnett).,20,13,2012 -20121202_NE@MIA,4,7,55,NE,MIA,2,7,77,(7:55) (Shotgun) T.Brady pass short left to A.Hernandez to NE 31 for 8 yards (K.Dansby).,20,13,2012 -20121202_NE@MIA,4,7,22,NE,MIA,1,10,69,(7:22) S.Ridley up the middle to NE 39 for 8 yards (K.Burnett).,20,13,2012 -20121202_NE@MIA,4,7,0,NE,MIA,2,2,61,(7:00) S.Ridley left guard to NE 48 for 9 yards (R.Jones).,20,13,2012 -20121202_NE@MIA,4,6,16,NE,MIA,1,10,52,(6:16) S.Ridley left guard to MIA 47 for 5 yards (R.Jones).,20,13,2012 -20121202_NE@MIA,4,5,24,NE,MIA,2,5,47,(5:24) T.Brady pass short left to W.Welker pushed ob at MIA 41 for 6 yards (R.Stanford).,20,13,2012 -20121202_NE@MIA,4,5,12,NE,MIA,1,10,41,(5:12) S.Ridley right tackle to MIA 30 for 11 yards (K.Burnett).,20,13,2012 -20121202_NE@MIA,4,4,34,NE,MIA,1,10,30,(4:34) S.Ridley left guard to MIA 28 for 2 yards (R.Jones).,20,13,2012 -20121202_NE@MIA,4,4,15,NE,MIA,2,8,28,(4:15) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at MIA 18 for 10 yards.,20,13,2012 -20121202_NE@MIA,4,4,10,NE,MIA,1,10,18,(4:10) S.Ridley up the middle to MIA 18 for no gain (T.McDaniel).,20,13,2012 -20121202_NE@MIA,4,4,5,NE,MIA,2,10,18,(4:05) S.Vereen left guard to MIA 10 for 8 yards (K.Dansby).,20,13,2012 -20121202_NE@MIA,4,4,0,NE,MIA,3,2,10,(4:00) S.Ridley left tackle to MIA 8 for 2 yards (K.Dansby).,20,13,2012 -20121202_NE@MIA,4,3,37,NE,MIA,1,8,8,(3:37) S.Ridley left guard to MIA 5 for 3 yards (K.Dansby).,20,13,2012 -20121202_NE@MIA,4,2,38,NE,MIA,2,5,5,(2:38) S.Ridley right end to MIA 2 for 3 yards (R.Jones).,20,13,2012 -20121202_NE@MIA,4,2,0,NE,MIA,3,2,2,(2:00) T.Brady left guard to MIA 3 for -1 yards (K.Burnett).,20,13,2012 -20121202_NE@MIA,4,1,15,NE,MIA,4,3,3,(1:15) (Field Goal formation) S.Gostkowski 20 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,20,13,2012 -20121202_NE@MIA,4,1,15,NE,MIA,,,3,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,23,13,2012 -20121202_NE@MIA,4,1,10,MIA,NE,1,10,80,(1:10) (Shotgun) R.Tannehill pass deep left to R.Matthews to MIA 48 for 28 yards (A.Dennard).,13,23,2012 -20121202_NE@MIA,4,0,48,MIA,NE,1,10,52,(:48) (No Huddle) R.Tannehill spiked the ball to stop the clock.,13,23,2012 -20121202_NE@MIA,4,0,41,MIA,NE,2,10,52,(:41) (Shotgun) R.Tannehill pass deep right to B.Hartline ran ob at NE 24 for 28 yards.,13,23,2012 -20121202_NE@MIA,4,0,41,MIA,NE,1,10,24,(:41) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,13,23,2012 -20121202_NE@MIA,4,0,36,MIA,NE,2,10,24,(:36) (Field Goal formation) D.Carpenter 42 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,13,23,2012 -20121202_NE@MIA,4,0,36,MIA,NE,,,24,(Onside Kick formation) D.Carpenter kicks 14 yards from MIA 35 to MIA 49. B.Lloyd (didn't try to advance) to MIA 49 for no gain (J.Wilson).,16,23,2012 -20121202_NE@MIA,4,0,30,NE,MIA,1,10,49,(:30) T.Brady kneels to 50 for -1 yards.,23,16,2012 -20121202_NE@MIA,4,0,30,NE,MIA,,,49,                      ,23,16,2012 -20121202_ARI@NYJ,1,0,0,NYJ,ARI,,,49,N.Folk kicks 58 yards from NYJ 35 to ARZ 7. W.Powell to ARZ 21 for 14 yards (L.Hilliard).,0,0,2012 -20121202_ARI@NYJ,1,59,54,ARI,NYJ,1,10,79,(14:54) (Shotgun) C.Wells left tackle to ARZ 22 for 1 yard (A.Cromartie).,0,0,2012 -20121202_ARI@NYJ,1,59,21,ARI,NYJ,2,9,78,(14:21) (Shotgun) R.Lindley pass deep left to L.Fitzgerald to ARZ 45 for 23 yards (A.Cromartie).,0,0,2012 -20121202_ARI@NYJ,1,58,46,ARI,NYJ,1,10,55,(13:46) (Shotgun) L.Stephens-Howling up the middle to ARZ 46 for 1 yard (K.Wilson).,0,0,2012 -20121202_ARI@NYJ,1,58,11,ARI,NYJ,2,9,54,(13:11) R.Lindley pass incomplete deep right to M.Floyd. PENALTY on NYJ-K.Wilson Defensive Holding 5 yards enforced at ARZ 46 - No Play.,0,0,2012 -20121202_ARI@NYJ,1,58,5,ARI,NYJ,1,10,49,(13:05) (Shotgun) R.Lindley pass incomplete short left to L.Stephens-Howling.,0,0,2012 -20121202_ARI@NYJ,1,58,1,ARI,NYJ,2,10,49,(13:01) C.Wells right tackle to NYJ 46 for 3 yards (C.Pace).,0,0,2012 -20121202_ARI@NYJ,1,57,17,ARI,NYJ,3,7,46,(12:17) (Shotgun) R.Lindley pass incomplete short middle to R.Housler (E.Smith).,0,0,2012 -20121202_ARI@NYJ,1,57,13,ARI,NYJ,4,7,46,(12:13) D.Zastudil punts 33 yards to NYJ 13 Center-M.Leach fair catch by J.Kerley.,0,0,2012 -20121202_ARI@NYJ,1,57,6,NYJ,ARI,1,10,87,(12:06) M.Sanchez pass short middle intended for J.Kerley INTERCEPTED by K.Rhodes [P.Lenon] at NYJ 28. K.Rhodes to NYJ 26 for 2 yards (D.Keller). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,0,0,2012 -20121202_ARI@NYJ,1,56,58,ARI,NYJ,1,10,26,(11:58) W.Powell up the middle to NYJ 18 for 8 yards (C.Pace; D.Harris).,0,0,2012 -20121202_ARI@NYJ,1,56,20,ARI,NYJ,2,2,18,(11:20) C.Wells left tackle to NYJ 17 for 1 yard (M.Wilkerson; B.Thomas).,0,0,2012 -20121202_ARI@NYJ,1,55,46,ARI,NYJ,3,1,17,(10:46) C.Wells right guard to NYJ 17 for no gain (S.Pouha).,0,0,2012 -20121202_ARI@NYJ,1,55,11,ARI,NYJ,4,1,17,(10:11) C.Wells left tackle to NYJ 18 for -1 yards (B.Thomas).,0,0,2012 -20121202_ARI@NYJ,1,55,7,NYJ,ARI,1,10,82,(10:07) B.Powell left tackle to NYJ 21 for 3 yards (D.Williams; P.Lenon).,0,0,2012 -20121202_ARI@NYJ,1,54,29,NYJ,ARI,2,7,79,(9:29) M.Sanchez pass short right to S.Hill to NYJ 26 for 5 yards (W.Gay).,0,0,2012 -20121202_ARI@NYJ,1,53,52,NYJ,ARI,3,2,74,(8:52) M.Sanchez scrambles right guard to NYJ 28 for 2 yards (D.Williams).,0,0,2012 -20121202_ARI@NYJ,1,53,3,NYJ,ARI,1,10,72,(8:03) M.Sanchez pass deep left to J.Cumberland to ARZ 48 for 24 yards (A.Wilson).,0,0,2012 -20121202_ARI@NYJ,1,52,29,NYJ,ARI,1,10,48,(7:29) B.Powell up the middle to ARZ 41 for 7 yards (Q.Groves).,0,0,2012 -20121202_ARI@NYJ,1,51,54,NYJ,ARI,2,3,41,(6:54) J.Smith reported in as eligible. B.Powell left tackle to ARZ 35 for 6 yards (D.Carter; P.Lenon). Penalty on ARZ-D.Williams Defensive Offside declined.,0,0,2012 -20121202_ARI@NYJ,1,51,28,NYJ,ARI,1,10,35,(6:28) (Shotgun) M.Sanchez pass incomplete deep left to C.Schilens (G.Toler).,0,0,2012 -20121202_ARI@NYJ,1,51,24,NYJ,ARI,2,10,35,(6:24) B.Powell up the middle to ARZ 34 for 1 yard (D.Williams).,0,0,2012 -20121202_ARI@NYJ,1,50,42,NYJ,ARI,3,9,34,(5:42) (Shotgun) M.Sanchez pass short right to S.Hill pushed ob at ARZ 28 for 6 yards (Q.Groves).,0,0,2012 -20121202_ARI@NYJ,1,50,20,NYJ,ARI,4,3,28,(5:20) N.Folk 46 yard field goal is No Good Wide Left Center-T.Purdum Holder-R.Malone.,0,0,2012 -20121202_ARI@NYJ,1,50,15,ARI,NYJ,1,10,64,(5:15) R.Lindley pass incomplete deep left to L.Stephens-Howling.,0,0,2012 -20121202_ARI@NYJ,1,50,12,ARI,NYJ,2,10,64,(5:12) C.Wells left tackle to ARZ 39 for 3 yards (S.Pouha; D.Harris).,0,0,2012 -20121202_ARI@NYJ,1,49,31,ARI,NYJ,3,7,61,(4:31) (Shotgun) R.Lindley pass short middle to R.Housler to ARZ 43 for 4 yards (D.Harris).,0,0,2012 -20121202_ARI@NYJ,1,48,55,ARI,NYJ,4,3,57,(3:55) D.Zastudil punts 38 yards to NYJ 19 Center-M.Leach downed by ARZ-S.Acho.,0,0,2012 -20121202_ARI@NYJ,1,48,44,NYJ,ARI,1,10,81,(3:44) S.Greene up the middle to NYJ 19 for no gain (A.Wilson).,0,0,2012 -20121202_ARI@NYJ,1,48,5,NYJ,ARI,2,10,81,(3:05) (Shotgun) M.Sanchez pass short middle to D.Keller to NYJ 31 for 12 yards (D.Washington).,0,0,2012 -20121202_ARI@NYJ,1,47,27,NYJ,ARI,1,10,69,(2:27) M.Sanchez pass deep right to J.Kerley pushed ob at 50 for 19 yards (P.Peterson).,0,0,2012 -20121202_ARI@NYJ,1,46,57,NYJ,ARI,1,10,50,(1:57) S.Greene right tackle to ARZ 45 for 5 yards (N.Eason).,0,0,2012 -20121202_ARI@NYJ,1,46,19,NYJ,ARI,2,5,45,(1:19) J.Smith reported in as eligible. S.Greene up the middle to ARZ 40 for 5 yards (K.Rhodes).,0,0,2012 -20121202_ARI@NYJ,1,45,38,NYJ,ARI,1,10,40,(:38) M.Sanchez pass deep right intended for J.Cumberland INTERCEPTED by K.Rhodes at ARZ 22. K.Rhodes to NYJ 48 for 30 yards (M.Sanchez).,0,0,2012 -20121202_ARI@NYJ,1,45,28,ARI,NYJ,1,10,48,(:28) R.Lindley pass incomplete short right to M.Floyd.,0,0,2012 -20121202_ARI@NYJ,1,45,20,ARI,NYJ,2,10,48,(:20) W.Powell left guard to NYJ 45 for 3 yards (M.Wilkerson; Y.Bell).,0,0,2012 -20121202_ARI@NYJ,2,45,0,ARI,NYJ,3,7,45,(15:00) (Shotgun) R.Lindley pass incomplete short left to M.Floyd (A.Cromartie).,0,0,2012 -20121202_ARI@NYJ,2,45,0,ARI,NYJ,4,7,45,(15:00) D.Zastudil punts 25 yards to NYJ 20 Center-M.Leach fair catch by J.Kerley.,0,0,2012 -20121202_ARI@NYJ,2,44,48,NYJ,ARI,1,10,80,(14:48) (Shotgun) J.McKnight right end to NYJ 27 for 7 yards (A.Wilson; D.Washington).,0,0,2012 -20121202_ARI@NYJ,2,44,12,NYJ,ARI,2,3,73,(14:12) J.McKnight left tackle to NYJ 28 for 1 yard (R.Talley).,0,0,2012 -20121202_ARI@NYJ,2,43,34,NYJ,ARI,3,2,72,(13:34) M.Sanchez sacked at NYJ 26 for -2 yards (sack split by D.Dockett and S.Acho).,0,0,2012 -20121202_ARI@NYJ,2,43,5,NYJ,ARI,4,4,74,(13:05) R.Malone punts 42 yards to ARZ 32 Center-T.Purdum out of bounds.,0,0,2012 -20121202_ARI@NYJ,2,42,58,ARI,NYJ,1,10,68,(12:58) C.Wells left end pushed ob at ARZ 26 for -6 yards (B.Thomas).,0,0,2012 -20121202_ARI@NYJ,2,42,30,ARI,NYJ,2,16,74,(12:30) R.Lindley pass short middle to E.Doucet to ARZ 34 for 8 yards (K.Wilson).,0,0,2012 -20121202_ARI@NYJ,2,41,53,ARI,NYJ,3,8,66,(11:53) (Shotgun) R.Lindley pass incomplete short left to L.Fitzgerald.,0,0,2012 -20121202_ARI@NYJ,2,41,50,ARI,NYJ,4,8,66,(11:50) D.Zastudil punts 56 yards to NYJ 10 Center-M.Leach fair catch by J.Kerley.,0,0,2012 -20121202_ARI@NYJ,2,41,42,NYJ,ARI,1,10,90,(11:42) S.Greene left tackle to NYJ 14 for 4 yards (S.Acho).,0,0,2012 -20121202_ARI@NYJ,2,41,4,NYJ,ARI,2,6,86,(11:04) M.Sanchez pass deep middle intended for C.Schilens INTERCEPTED by P.Peterson at ARZ 31. P.Peterson to ARZ 31 for no gain (C.Schilens).,0,0,2012 -20121202_ARI@NYJ,2,40,53,ARI,NYJ,1,10,69,(10:53) R.Lindley pass incomplete short right to M.Floyd.,0,0,2012 -20121202_ARI@NYJ,2,40,47,ARI,NYJ,2,10,69,(10:47) C.Wells left end to ARZ 32 for 1 yard (D.Harris).,0,0,2012 -20121202_ARI@NYJ,2,40,1,ARI,NYJ,3,9,68,(10:01) R.Lindley pass deep middle intended for M.Floyd INTERCEPTED by L.Landry at NYJ 39. L.Landry to ARZ 37 for 24 yards (R.Housler).,0,0,2012 -20121202_ARI@NYJ,2,39,47,NYJ,ARI,1,10,37,(9:47) S.Greene left tackle to ARZ 37 for no gain (P.Lenon; N.Eason).,0,0,2012 -20121202_ARI@NYJ,2,39,10,NYJ,ARI,2,10,37,(9:10) M.Sanchez pass incomplete short right to J.Kerley.,0,0,2012 -20121202_ARI@NYJ,2,39,7,NYJ,ARI,3,10,37,(9:07) (Shotgun) M.Sanchez pass short left to C.Schilens to ARZ 34 for 3 yards (K.Rhodes).,0,0,2012 -20121202_ARI@NYJ,2,38,25,NYJ,ARI,4,7,34,(8:25) N.Folk 52 yard field goal is No Good Hit Right Upright Center-T.Purdum Holder-R.Malone.,0,0,2012 -20121202_ARI@NYJ,2,38,20,ARI,NYJ,1,10,58,(8:20) (Shotgun) R.Lindley pass incomplete short middle to L.Fitzgerald [M.Wilkerson].,0,0,2012 -20121202_ARI@NYJ,2,38,17,ARI,NYJ,2,10,58,(8:17) (Shotgun) R.Lindley pass short left to E.Doucet to ARZ 47 for 5 yards (K.Wilson).,0,0,2012 -20121202_ARI@NYJ,2,37,35,ARI,NYJ,3,5,53,(7:35) (Shotgun) R.Lindley pass incomplete short right to L.Fitzgerald (Q.Coples).,0,0,2012 -20121202_ARI@NYJ,2,37,31,ARI,NYJ,4,5,53,(7:31) D.Zastudil punts 53 yards to end zone Center-M.Leach Touchback.,0,0,2012 -20121202_ARI@NYJ,2,37,23,NYJ,ARI,1,10,80,(7:23) M.Sanchez pass incomplete short right to S.Hill.,0,0,2012 -20121202_ARI@NYJ,2,37,21,NYJ,ARI,2,10,80,(7:21) M.Sanchez pass short right to S.Hill pushed ob at NYJ 35 for 15 yards (P.Peterson). Arizona challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20121202_ARI@NYJ,2,36,54,NYJ,ARI,1,10,65,(6:54) Direct snap to S.Greene. S.Greene up the middle to NYJ 40 for 5 yards (R.Talley).,0,0,2012 -20121202_ARI@NYJ,2,36,8,NYJ,ARI,1,10,55,(6:08) (Shotgun) M.Sanchez pass short left to S.Hill to NYJ 46 for 1 yard (W.Gay).,0,0,2012 -20121202_ARI@NYJ,2,35,33,NYJ,ARI,1,10,54,(5:33) S.Greene left end to ARZ 49 for 5 yards (D.Dockett).,0,0,2012 -20121202_ARI@NYJ,2,34,59,NYJ,ARI,2,5,49,(4:59) S.Greene left end to ARZ 49 for no gain (D.Washington).,0,0,2012 -20121202_ARI@NYJ,2,34,21,NYJ,ARI,3,5,49,(4:21) M.Sanchez pass short right to D.Keller pushed ob at ARZ 45 for 4 yards (D.Washington). New York Jets challenged the first down ruling and the play was REVERSED. M.Sanchez pass short right to D.Keller pushed ob at ARZ 44 for 5 yards (D.Washington).,0,0,2012 -20121202_ARI@NYJ,2,34,2,NYJ,ARI,1,10,44,(4:02) S.Greene right guard to ARZ 39 for 5 yards (P.Lenon).,0,0,2012 -20121202_ARI@NYJ,2,33,22,NYJ,ARI,2,5,39,(3:22) (Shotgun) M.Sanchez sacked at ARZ 42 for -3 yards (sack split by A.Wilson and D.Carter).,0,0,2012 -20121202_ARI@NYJ,2,32,44,NYJ,ARI,3,8,42,(2:44) (Shotgun) M.Sanchez pass incomplete short left to J.Cumberland (K.Rhodes).,0,0,2012 -20121202_ARI@NYJ,2,32,38,NYJ,ARI,4,8,42,(2:38) R.Malone punts 33 yards to ARZ 9 Center-T.Purdum fair catch by P.Peterson.,0,0,2012 -20121202_ARI@NYJ,2,32,31,ARI,NYJ,1,10,91,(2:31) C.Wells up the middle to ARZ 18 for 9 yards (L.Landry).,0,0,2012 -20121202_ARI@NYJ,2,32,0,ARI,NYJ,2,1,82,(2:00) C.Wells left tackle to ARZ 22 for 4 yards (K.Wilson).,0,0,2012 -20121202_ARI@NYJ,2,31,26,ARI,NYJ,1,10,78,(1:26) (Shotgun) R.Lindley pass short left to R.Housler pushed ob at ARZ 25 for 3 yards (L.Landry).,0,0,2012 -20121202_ARI@NYJ,2,31,23,ARI,NYJ,2,7,75,(1:23) (Shotgun) R.Lindley pass incomplete deep right to M.Floyd.,0,0,2012 -20121202_ARI@NYJ,2,31,17,ARI,NYJ,3,7,75,(1:17) (Shotgun) R.Lindley pass incomplete short right to M.Floyd.,0,0,2012 -20121202_ARI@NYJ,2,31,11,ARI,NYJ,4,7,75,(1:11) (Punt formation) R.Johnson right end to NYJ 35 for 40 yards (K.Wilson).,0,0,2012 -20121202_ARI@NYJ,2,30,36,ARI,NYJ,1,10,35,(:36) (Shotgun) R.Lindley pass incomplete short left to E.Doucet.,0,0,2012 -20121202_ARI@NYJ,2,30,33,ARI,NYJ,2,10,35,(:33) (Shotgun) R.Lindley pass incomplete short right to L.Fitzgerald.,0,0,2012 -20121202_ARI@NYJ,2,30,29,ARI,NYJ,3,10,35,(:29) (Shotgun) R.Lindley pass short right to R.Housler to NYJ 30 for 5 yards (E.Lankster).,0,0,2012 -20121202_ARI@NYJ,2,30,3,ARI,NYJ,4,5,30,(:03) J.Feely 48 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20121202_ARI@NYJ,3,30,0,ARI,NYJ,,,30,J.Feely kicks 69 yards from ARZ 35 to NYJ -4. J.McKnight to NYJ 23 for 27 yards (J.Sanders).,3,0,2012 -20121202_ARI@NYJ,3,29,56,NYJ,ARI,1,10,77,(14:56) M.Sanchez pass incomplete.,0,3,2012 -20121202_ARI@NYJ,3,29,48,NYJ,ARI,2,10,77,(14:48) S.Greene left end to NYJ 28 for 5 yards (D.Washington).,0,3,2012 -20121202_ARI@NYJ,3,29,4,NYJ,ARI,3,5,72,(14:04) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley (W.Gay).,0,3,2012 -20121202_ARI@NYJ,3,28,57,NYJ,ARI,4,5,72,(13:57) R.Malone punts 49 yards to ARZ 23 Center-T.Purdum out of bounds.,0,3,2012 -20121202_ARI@NYJ,3,28,53,ARI,NYJ,1,10,77,(13:53) C.Wells left end to ARZ 25 for 2 yards (B.Scott).,3,0,2012 -20121202_ARI@NYJ,3,28,19,ARI,NYJ,2,8,75,(13:19) C.Wells right tackle to ARZ 26 for 1 yard (B.Scott; L.Landry).,3,0,2012 -20121202_ARI@NYJ,3,27,38,ARI,NYJ,3,7,74,(12:38) (Shotgun) R.Lindley pass incomplete deep right to M.Floyd.,3,0,2012 -20121202_ARI@NYJ,3,27,32,ARI,NYJ,4,7,74,(12:32) D.Zastudil punts 57 yards to NYJ 17 Center-M.Leach. J.Kerley ran ob at NYJ 31 for 14 yards.,3,0,2012 -20121202_ARI@NYJ,3,27,20,NYJ,ARI,1,10,69,(12:20) S.Greene up the middle to NYJ 36 for 5 yards (D.Williams; P.Lenon).,0,3,2012 -20121202_ARI@NYJ,3,26,47,NYJ,ARI,2,5,64,(11:47) S.Greene right tackle to NYJ 44 for 8 yards (R.Talley).,0,3,2012 -20121202_ARI@NYJ,3,26,8,NYJ,ARI,1,10,56,(11:08) S.Greene up the middle to NYJ 48 for 4 yards (Q.Groves).,0,3,2012 -20121202_ARI@NYJ,3,25,32,NYJ,ARI,2,6,52,(10:32) M.Sanchez pass incomplete short middle to B.Powell.,0,3,2012 -20121202_ARI@NYJ,3,25,27,NYJ,ARI,3,6,52,(10:27) (Shotgun) M.Sanchez sacked at NYJ 39 for -9 yards (W.Gay).,0,3,2012 -20121202_ARI@NYJ,3,25,1,NYJ,ARI,4,15,61,(10:01) R.Malone punts 60 yards to ARZ 1 Center-T.Purdum. P.Peterson to ARZ 10 for 9 yards (D.Ferguson).,0,3,2012 -20121202_ARI@NYJ,3,24,48,ARI,NYJ,1,10,90,(9:48) (Shotgun) W.Powell left end to ARZ 15 for 5 yards (E.Lankster). New York Jets challenged the fumble ruling and the play was Upheld. (Timeout #1.),3,0,2012 -20121202_ARI@NYJ,3,24,13,ARI,NYJ,2,5,85,(9:13) W.Powell right guard to ARZ 17 for 2 yards (D.Harris).,3,0,2012 -20121202_ARI@NYJ,3,23,34,ARI,NYJ,3,3,83,(8:34) (Shotgun) R.Lindley pass incomplete short middle to R.Housler.,3,0,2012 -20121202_ARI@NYJ,3,23,31,ARI,NYJ,4,3,83,(8:31) D.Zastudil punts 53 yards to NYJ 30 Center-M.Leach. J.Kerley pushed ob at NYJ 33 for 3 yards (M.Leach). PENALTY on NYJ-K.Wilson Illegal Block Above the Waist 10 yards enforced at NYJ 33.,3,0,2012 -20121202_ARI@NYJ,3,23,20,NYJ,ARI,1,10,77,(8:20) S.Greene up the middle to NYJ 26 for 3 yards (D.Washington).,0,3,2012 -20121202_ARI@NYJ,3,22,42,NYJ,ARI,2,7,74,(7:42) (Shotgun) M.Sanchez pass short right to C.Schilens to NYJ 28 for 2 yards (G.Toler).,0,3,2012 -20121202_ARI@NYJ,3,21,59,NYJ,ARI,3,5,72,(6:59) (Shotgun) M.Sanchez pass incomplete short left to S.Hill (R.Talley).,0,3,2012 -20121202_ARI@NYJ,3,21,59,NYJ,ARI,4,5,72,(6:59) R.Malone punts 39 yards to ARZ 33 Center-T.Purdum out of bounds.,0,3,2012 -20121202_ARI@NYJ,3,21,49,ARI,NYJ,1,10,67,(6:49) R.Lindley sacked at ARZ 24 for -9 yards (sack split by D.Harris and B.Scott).,3,0,2012 -20121202_ARI@NYJ,3,21,16,ARI,NYJ,2,19,76,(6:16) (Shotgun) R.Lindley pass short right to L.Stephens-Howling to ARZ 23 for -1 yards (B.Scott).,3,0,2012 -20121202_ARI@NYJ,3,20,37,ARI,NYJ,3,20,77,(5:37) (Shotgun) R.Lindley pass short left to M.Floyd to ARZ 29 for 6 yards (K.Wilson; E.Lankster).,3,0,2012 -20121202_ARI@NYJ,3,19,55,ARI,NYJ,4,14,71,(4:55) D.Zastudil punts 40 yards to NYJ 31 Center-M.Leach fair catch by J.Kerley.,3,0,2012 -20121202_ARI@NYJ,3,19,48,NYJ,ARI,1,10,69,(4:48) #14 McElroy in at QB B.Powell right tackle to NYJ 31 for no gain. PENALTY on ARZ-A.Wilson Defensive Offside 5 yards enforced at NYJ 31 - No Play.,0,3,2012 -20121202_ARI@NYJ,3,19,31,NYJ,ARI,1,5,64,(4:31) B.Powell right tackle to ARZ 47 for 17 yards (D.Washington).,0,3,2012 -20121202_ARI@NYJ,3,18,53,NYJ,ARI,1,10,47,(3:53) B.Powell right tackle to ARZ 43 for 4 yards (S.Acho).,0,3,2012 -20121202_ARI@NYJ,3,18,15,NYJ,ARI,2,6,43,(3:15) (Shotgun) G.McElroy pass incomplete deep left to S.Hill.,0,3,2012 -20121202_ARI@NYJ,3,18,9,NYJ,ARI,3,6,43,(3:09) (Shotgun) G.McElroy pass short left to S.Hill to ARZ 35 for 8 yards (G.Toler).,0,3,2012 -20121202_ARI@NYJ,3,17,28,NYJ,ARI,1,10,35,(2:28) B.Powell up the middle to ARZ 32 for 3 yards (D.Williams).,0,3,2012 -20121202_ARI@NYJ,3,16,53,NYJ,ARI,2,7,32,(1:53) G.McElroy scrambles right end to ARZ 29 for 3 yards (D.Williams). PENALTY on ARZ-D.Williams Unnecessary Roughness 15 yards enforced at ARZ 29.,0,3,2012 -20121202_ARI@NYJ,3,16,31,NYJ,ARI,1,10,14,(1:31) B.Powell right tackle to ARZ 4 for 10 yards (K.Rhodes).,0,3,2012 -20121202_ARI@NYJ,3,15,53,NYJ,ARI,1,4,4,(:53) B.Powell left guard to ARZ 2 for 2 yards (D.Williams).,0,3,2012 -20121202_ARI@NYJ,3,15,13,NYJ,ARI,2,2,2,(:13) S.Greene up the middle to ARZ 1 for 1 yard (Q.Groves; D.Dockett).,0,3,2012 -20121202_ARI@NYJ,4,15,0,NYJ,ARI,3,1,1,(15:00) G.McElroy pass short right to J.Cumberland for 1 yard TOUCHDOWN.,0,3,2012 -20121202_ARI@NYJ,4,15,0,NYJ,ARI,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,3,2012 -20121202_ARI@NYJ,4,15,0,NYJ,ARI,,,1,N.Folk kicks 68 yards from NYJ 35 to ARZ -3. W.Powell to ARZ 22 for 25 yards (N.Bellore).,7,3,2012 -20121202_ARI@NYJ,4,14,49,ARI,NYJ,1,10,78,(14:49) (Shotgun) R.Lindley pass incomplete short middle to E.Doucet (B.Thomas).,3,7,2012 -20121202_ARI@NYJ,4,14,46,ARI,NYJ,2,10,78,(14:46) (Shotgun) R.Lindley pass incomplete deep right to E.Doucet.,3,7,2012 -20121202_ARI@NYJ,4,14,41,ARI,NYJ,3,10,78,(14:41) (Shotgun) R.Lindley pass short middle to R.Housler to ARZ 25 for 3 yards (C.Pace).,3,7,2012 -20121202_ARI@NYJ,4,14,7,ARI,NYJ,4,7,75,(14:07) D.Zastudil punts 44 yards to NYJ 31 Center-M.Leach fair catch by J.Kerley.,3,7,2012 -20121202_ARI@NYJ,4,14,1,NYJ,ARI,1,10,69,(14:01) S.Greene left guard to NYJ 34 for 3 yards (D.Washington).,7,3,2012 -20121202_ARI@NYJ,4,13,25,NYJ,ARI,2,7,66,(13:25) S.Greene right tackle to NYJ 35 for 1 yard (Q.Groves).,7,3,2012 -20121202_ARI@NYJ,4,12,32,NYJ,ARI,3,6,65,(12:32) (Shotgun) G.McElroy pass short right to K.Bell to NYJ 37 for 2 yards (K.Rhodes). FUMBLES (K.Rhodes) RECOVERED by ARZ-D.Washington at NYJ 38. D.Washington to NYJ 35 for 3 yards (V.Ducasse).,7,3,2012 -20121202_ARI@NYJ,4,12,32,ARI,NYJ,1,10,35,(12:32) C.Wells right guard to NYJ 35 for no gain (B.Thomas).,3,7,2012 -20121202_ARI@NYJ,4,12,32,ARI,NYJ,2,10,35,(12:32) R.Lindley pass deep right to M.Floyd ran ob at NYJ 19 for 16 yards.,3,7,2012 -20121202_ARI@NYJ,4,11,34,ARI,NYJ,1,10,19,(11:34) C.Wells right tackle to NYJ 17 for 2 yards.,3,7,2012 -20121202_ARI@NYJ,4,10,51,ARI,NYJ,2,8,17,(10:51) R.Lindley pass incomplete deep right to L.Fitzgerald.,3,7,2012 -20121202_ARI@NYJ,4,10,47,ARI,NYJ,3,8,17,(10:47) R.Lindley pass incomplete short right to L.Fitzgerald.,3,7,2012 -20121202_ARI@NYJ,4,10,39,ARI,NYJ,4,8,17,(10:39) J.Feely 35 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,3,7,2012 -20121202_ARI@NYJ,4,10,39,ARI,NYJ,,,17,J.Feely kicks 61 yards from ARZ 35 to NYJ 4. A.Cromartie to NYJ 26 for 22 yards (R.Johnson).,6,7,2012 -20121202_ARI@NYJ,4,10,31,NYJ,ARI,1,10,74,(10:31) B.Powell right tackle to NYJ 25 for -1 yards (D.Williams; R.Talley).,7,6,2012 -20121202_ARI@NYJ,4,9,56,NYJ,ARI,2,11,75,(9:56) G.McElroy pass short right to J.Kerley pushed ob at NYJ 30 for 5 yards (P.Peterson).,7,6,2012 -20121202_ARI@NYJ,4,9,25,NYJ,ARI,3,6,70,(9:25) G.McElroy pass incomplete.,7,6,2012 -20121202_ARI@NYJ,4,9,20,NYJ,ARI,4,6,70,(9:20) R.Malone punts 40 yards to ARZ 30 Center-T.Purdum out of bounds.,7,6,2012 -20121202_ARI@NYJ,4,9,12,ARI,NYJ,1,10,70,(9:12) C.Wells left tackle to ARZ 32 for 2 yards (S.Pouha; M.Devito).,6,7,2012 -20121202_ARI@NYJ,4,8,39,ARI,NYJ,2,8,68,(8:39) R.Lindley pass incomplete short right to M.Floyd.,6,7,2012 -20121202_ARI@NYJ,4,8,31,ARI,NYJ,3,8,68,(8:31) (Shotgun) R.Lindley sacked at ARZ 25 for -7 yards (sack split by M.Wilkerson and B.Scott).,6,7,2012 -20121202_ARI@NYJ,4,8,2,ARI,NYJ,4,15,75,(8:02) D.Zastudil punts 49 yards to NYJ 26 Center-M.Leach fair catch by J.Kerley.,6,7,2012 -20121202_ARI@NYJ,4,7,55,NYJ,ARI,1,10,74,(7:55) S.Greene right tackle to NYJ 31 for 5 yards (W.Gay; P.Lenon).,7,6,2012 -20121202_ARI@NYJ,4,7,17,NYJ,ARI,2,5,69,(7:17) S.Greene left end to 50 for 19 yards (K.Rhodes).,7,6,2012 -20121202_ARI@NYJ,4,6,32,NYJ,ARI,1,10,50,(6:32) B.Powell left guard to ARZ 47 for 3 yards (D.Williams; D.Dockett).,7,6,2012 -20121202_ARI@NYJ,4,5,49,NYJ,ARI,2,7,47,(5:49) G.McElroy right end to ARZ 43 for 4 yards (P.Lenon).,7,6,2012 -20121202_ARI@NYJ,4,5,2,NYJ,ARI,3,3,43,(5:02) (Shotgun) PENALTY on ARZ-G.Toler Illegal Contact 5 yards enforced at ARZ 43 - No Play.,7,6,2012 -20121202_ARI@NYJ,4,4,56,NYJ,ARI,1,10,38,(4:56) S.Greene up the middle to ARZ 33 for 5 yards (A.Wilson).,7,6,2012 -20121202_ARI@NYJ,4,4,56,NYJ,ARI,2,5,33,(4:56) PENALTY on NYJ-C.Schilens False Start 5 yards enforced at ARZ 33 - No Play.,7,6,2012 -20121202_ARI@NYJ,4,4,56,NYJ,ARI,2,10,38,(4:56) S.Greene right tackle to ARZ 37 for 1 yard (Q.Groves).,7,6,2012 -20121202_ARI@NYJ,4,3,31,NYJ,ARI,3,9,37,(3:31) (Shotgun) G.McElroy pass short right to J.Kerley to ARZ 24 for 13 yards (P.Peterson).,7,6,2012 -20121202_ARI@NYJ,4,2,49,NYJ,ARI,1,10,24,(2:49) B.Powell right tackle to ARZ 21 for 3 yards (K.Rhodes).,7,6,2012 -20121202_ARI@NYJ,4,2,44,NYJ,ARI,2,7,21,(2:44) S.Greene up the middle to ARZ 18 for 3 yards (D.Williams).,7,6,2012 -20121202_ARI@NYJ,4,2,39,NYJ,ARI,3,4,18,(2:39) S.Greene left tackle to ARZ 18 for no gain. PENALTY on ARZ-A.Wilson Defensive Offside 5 yards enforced at ARZ 18 - No Play.,7,6,2012 -20121202_ARI@NYJ,4,2,35,NYJ,ARI,1,10,13,(2:35) S.Greene right guard to ARZ 6 for 7 yards (W.Gay).,7,6,2012 -20121202_ARI@NYJ,4,2,0,NYJ,ARI,2,3,6,(2:00) S.Greene up the middle to ARZ 1 for 5 yards (D.Washington).,7,6,2012 -20121202_ARI@NYJ,4,2,0,NYJ,ARI,1,1,1,(2:00) G.McElroy up the middle to ARZ 2 for -1 yards.,7,6,2012 -20121202_ARI@NYJ,4,0,38,NYJ,ARI,2,2,2,(:38) G.McElroy up the middle to ARZ 3 for -1 yards.,7,6,2012 -20121202_ARI@NYJ,4,0,38,NYJ,ARI,,,2,                      ,7,6,2012 -20121202_SF@STL,1,0,0,SF,STL,,,2,D.Akers kicks 73 yards from SF 35 to SL -8. C.Givens Touchback.,0,0,2012 -20121202_SF@STL,1,60,0,STL,SF,1,10,80,(15:00) S.Bradford pass incomplete short right to C.Givens (A.Brooks).,0,0,2012 -20121202_SF@STL,1,59,58,STL,SF,2,10,80,(14:58) S.Jackson left end to SL 24 for 4 yards (P.Willis). PENALTY on SF-N.Bowman Unnecessary Roughness 15 yards enforced at SL 24.,0,0,2012 -20121202_SF@STL,1,59,32,STL,SF,1,10,61,(14:32) S.Jackson right tackle to SL 42 for 3 yards (J.Smith).,0,0,2012 -20121202_SF@STL,1,58,58,STL,SF,2,7,58,(13:58) S.Jackson right guard to SL 48 for 6 yards (D.Whitner).,0,0,2012 -20121202_SF@STL,1,58,17,STL,SF,3,1,52,(13:17) S.Jackson right tackle to SL 48 for no gain (P.Willis).,0,0,2012 -20121202_SF@STL,1,57,35,STL,SF,4,1,52,(12:35) J.Hekker punts 37 yards to SF 15 Center-J.McQuaide fair catch by T.Ginn. PENALTY on SL-C.Dahl Illegal Block Above the Waist 10 yards enforced at SF 15.,0,0,2012 -20121202_SF@STL,1,57,28,SF,STL,1,10,75,(12:28) C.Kaepernick pass incomplete short right to F.Gore.,0,0,2012 -20121202_SF@STL,1,57,23,SF,STL,2,10,75,(12:23) F.Gore left guard to SF 29 for 4 yards (J.Laurinaitis).,0,0,2012 -20121202_SF@STL,1,56,41,SF,STL,3,6,71,(11:41) (Shotgun) C.Kaepernick scrambles left end ran ob at SF 31 for 2 yards (J.Laurinaitis).,0,0,2012 -20121202_SF@STL,1,56,18,SF,STL,4,4,69,(11:18) A.Lee punts 61 yards to SL 8 Center-B.Jennings. A.Pettis to SL 10 for 2 yards (C.Spillman). PENALTY on SL-J.Jenkins Offensive Holding 5 yards enforced at SL 10.,0,0,2012 -20121202_SF@STL,1,56,3,STL,SF,1,10,95,(11:03) S.Bradford pass short right to C.Givens to SL 11 for 6 yards (C.Rogers).,0,0,2012 -20121202_SF@STL,1,55,27,STL,SF,2,4,89,(10:27) S.Jackson left tackle to SL 10 for -1 yards (I.Sopoaga).,0,0,2012 -20121202_SF@STL,1,54,48,STL,SF,3,5,90,(9:48) S.Bradford pass incomplete short right to S.Jackson.,0,0,2012 -20121202_SF@STL,1,54,39,STL,SF,4,5,90,(9:39) J.Hekker punts 50 yards to SF 40 Center-J.McQuaide out of bounds.,0,0,2012 -20121202_SF@STL,1,54,31,SF,STL,1,10,60,(9:31) F.Gore left tackle to SL 37 for 23 yards (C.Dahl).,0,0,2012 -20121202_SF@STL,1,53,46,SF,STL,1,10,37,(8:46) (Shotgun) C.Kaepernick sacked at SL 44 for -7 yards (sack split by J.Dunbar and W.Hayes).,0,0,2012 -20121202_SF@STL,1,53,8,SF,STL,2,17,44,(8:08) C.Kaepernick pass short left to B.Miller to SL 33 for 11 yards (J.Dunbar).,0,0,2012 -20121202_SF@STL,1,52,26,SF,STL,3,6,33,(7:26) (Shotgun) C.Kaepernick left end ran ob at SL 26 for 7 yards (J.Dunbar).,0,0,2012 -20121202_SF@STL,1,51,54,SF,STL,1,10,26,(6:54) F.Gore left tackle to SL 19 for 7 yards (Q.Mikell).,0,0,2012 -20121202_SF@STL,1,51,19,SF,STL,2,3,19,(6:19) F.Gore right guard to SL 17 for 2 yards (J.Cudjo).,0,0,2012 -20121202_SF@STL,1,50,34,SF,STL,3,1,17,(5:34) B.Jacobs right guard to SL 14 for 3 yards (J.Cudjo).,0,0,2012 -20121202_SF@STL,1,49,53,SF,STL,1,10,14,(4:53) C.Kaepernick pass short left to B.Miller to SL 8 for 6 yards (J.Dunbar).,0,0,2012 -20121202_SF@STL,1,49,18,SF,STL,2,4,8,(4:18) F.Gore right guard to SL 8 for no gain (Q.Mikell).,0,0,2012 -20121202_SF@STL,1,48,40,SF,STL,3,4,8,(3:40) C.Kaepernick pass short left to M.Manningham to SL 1 for 7 yards (J.Jenkins; C.Dahl).,0,0,2012 -20121202_SF@STL,1,48,1,SF,STL,1,1,1,(3:01) F.Gore right guard for 1 yard TOUCHDOWN.,0,0,2012 -20121202_SF@STL,1,48,1,SF,STL,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121202_SF@STL,1,48,1,SF,STL,,,1,D.Akers kicks 74 yards from SF 35 to SL -9. C.Givens Touchback.,7,0,2012 -20121202_SF@STL,1,47,58,STL,SF,1,10,80,(2:58) S.Jackson up the middle to SL 20 for no gain (J.Smith).,0,7,2012 -20121202_SF@STL,1,47,21,STL,SF,2,10,80,(2:21) (Shotgun) S.Bradford pass short left to C.Givens to SL 28 for 8 yards (D.Whitner).,0,7,2012 -20121202_SF@STL,1,46,36,STL,SF,3,2,72,(1:36) (Shotgun) S.Bradford pass incomplete deep right to C.Givens.,0,7,2012 -20121202_SF@STL,1,46,29,STL,SF,4,2,72,(1:29) J.Hekker punts 32 yards to SF 40 Center-J.McQuaide out of bounds.,0,7,2012 -20121202_SF@STL,1,46,22,SF,STL,1,10,60,(1:22) B.Jacobs left tackle to SF 42 for 2 yards (K.Langford).,7,0,2012 -20121202_SF@STL,1,45,45,SF,STL,2,8,58,(:45) C.Kaepernick pass short right to R.Moss to SL 42 for 16 yards (C.Finnegan).,7,0,2012 -20121202_SF@STL,2,45,0,SF,STL,1,10,42,(15:00) F.Gore up the middle to SL 26 for 16 yards (C.Finnegan). PENALTY on SF-J.Staley Offensive Holding 10 yards enforced at SL 42 - No Play.,7,0,2012 -20121202_SF@STL,2,44,26,SF,STL,1,20,52,(14:26) C.Kaepernick pass short middle to M.Crabtree to SL 47 for 5 yards (R.McIntosh).,7,0,2012 -20121202_SF@STL,2,43,45,SF,STL,2,15,47,(13:45) C.Kaepernick pass short right to M.Manningham to SL 42 for 5 yards (J.Dunbar).,7,0,2012 -20121202_SF@STL,2,43,3,SF,STL,3,10,42,(13:03) (Shotgun) C.Kaepernick scrambles left end ran ob at SL 41 for 1 yard (J.Laurinaitis).,7,0,2012 -20121202_SF@STL,2,42,32,SF,STL,4,9,41,(12:32) A.Lee punts 31 yards to SL 10 Center-B.Jennings fair catch by A.Pettis.,7,0,2012 -20121202_SF@STL,2,42,24,STL,SF,1,10,90,(12:24) D.Richardson left tackle to SL 12 for 2 yards (N.Bowman).,0,7,2012 -20121202_SF@STL,2,41,47,STL,SF,2,8,88,(11:47) S.Bradford pass short left to L.Kendricks pushed ob at SL 21 for 9 yards (P.Willis). Penalty on SF-N.Bowman Defensive Holding declined.,0,7,2012 -20121202_SF@STL,2,41,18,STL,SF,1,10,79,(11:18) S.Bradford pass short left to D.Richardson pushed ob at SL 22 for 1 yard (A.Brooks).,0,7,2012 -20121202_SF@STL,2,40,45,STL,SF,2,9,78,(10:45) D.Richardson left end to SL 23 for 1 yard. PENALTY on SL-S.Wells Offensive Holding 10 yards enforced at SL 22 - No Play.,0,7,2012 -20121202_SF@STL,2,40,20,STL,SF,2,19,88,(10:20) S.Bradford pass short middle to D.Richardson to SL 16 for 4 yards (N.Bowman).,0,7,2012 -20121202_SF@STL,2,39,44,STL,SF,3,15,84,(9:44) (Shotgun) S.Bradford pass short left to L.Kendricks to SL 19 for 3 yards (C.Rogers).,0,7,2012 -20121202_SF@STL,2,39,6,STL,SF,4,12,81,(9:06) J.Hekker punts 63 yards to SF 18 Center-J.McQuaide. T.Ginn to SF 24 for 6 yards (R.McLeod).,0,7,2012 -20121202_SF@STL,2,38,55,SF,STL,1,10,76,(8:55) C.Kaepernick pass short left to V.Davis to SF 30 for 6 yards (R.McIntosh).,7,0,2012 -20121202_SF@STL,2,38,11,SF,STL,2,4,70,(8:11) F.Gore left end to SF 31 for 1 yard (J.Laurinaitis).,7,0,2012 -20121202_SF@STL,2,37,26,SF,STL,3,3,69,(7:26) (Shotgun) C.Kaepernick pass short left to D.Walker to SF 38 for 7 yards (J.Jenkins).,7,0,2012 -20121202_SF@STL,2,36,45,SF,STL,1,10,62,(6:45) C.Kaepernick pass short right to M.Crabtree to SF 49 for 11 yards (J.Dunbar; C.Finnegan).,7,0,2012 -20121202_SF@STL,2,36,2,SF,STL,1,10,51,(6:02) F.Gore left tackle to SL 49 for 2 yards (J.Laurinaitis).,7,0,2012 -20121202_SF@STL,2,35,25,SF,STL,2,8,49,(5:25) F.Gore right end to SF 48 for -3 yards (W.Hayes).,7,0,2012 -20121202_SF@STL,2,34,37,SF,STL,3,11,52,(4:37) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree.,7,0,2012 -20121202_SF@STL,2,34,33,SF,STL,4,11,52,(4:33) (Punt formation) PENALTY on SF-C.Spillman False Start 5 yards enforced at SF 48 - No Play.,7,0,2012 -20121202_SF@STL,2,34,33,SF,STL,4,16,57,(4:33) A.Lee punts 53 yards to SL 4 Center-B.Jennings. A.Pettis to SL 18 for 14 yards (M.Wilhoite).,7,0,2012 -20121202_SF@STL,2,34,21,STL,SF,1,10,82,(4:21) S.Jackson up the middle to SL 16 for -2 yards (J.Smith).,0,7,2012 -20121202_SF@STL,2,33,47,STL,SF,2,12,84,(3:47) (Shotgun) S.Bradford sacked at SL 10 for -6 yards (Ald.Smith).,0,7,2012 -20121202_SF@STL,2,33,11,STL,SF,3,18,90,(3:11) (Shotgun) S.Jackson right tackle to SL 11 for 1 yard (D.Whitner).,0,7,2012 -20121202_SF@STL,2,32,31,STL,SF,4,17,89,(2:31) J.Hekker punts 50 yards to SF 39 Center-J.McQuaide. T.Ginn to SF 39 for no gain (C.Harkey).,0,7,2012 -20121202_SF@STL,2,32,16,SF,STL,1,10,61,(2:16) C.Kaepernick pass incomplete short right to M.Crabtree [J.Dunbar].,7,0,2012 -20121202_SF@STL,2,32,10,SF,STL,2,10,61,(2:10) F.Gore up the middle to SF 42 for 3 yards (J.Cudjo).,7,0,2012 -20121202_SF@STL,2,32,0,SF,STL,3,7,58,(2:00) (Shotgun) C.Kaepernick pass incomplete short right to M.Manningham.,7,0,2012 -20121202_SF@STL,2,31,54,SF,STL,4,7,58,(1:54) A.Lee punts 50 yards to SL 8 Center-B.Jennings. A.Pettis to SL 13 for 5 yards (T.Brock).,7,0,2012 -20121202_SF@STL,2,31,43,STL,SF,1,10,87,(1:43) (Shotgun) S.Bradford pass short right to C.Givens to SL 20 for 7 yards (C.Culliver).,0,7,2012 -20121202_SF@STL,2,31,22,STL,SF,2,3,80,(1:22) (Shotgun) S.Bradford pass short middle to S.Jackson to SL 25 for 5 yards (N.Bowman).,0,7,2012 -20121202_SF@STL,2,31,15,STL,SF,1,10,75,(1:15) (Shotgun) S.Bradford pass short right to C.Givens pushed ob at SL 32 for 7 yards (C.Culliver).,0,7,2012 -20121202_SF@STL,2,31,11,STL,SF,2,3,68,(1:11) (Shotgun) S.Bradford pass deep middle to L.Kendricks to SF 48 for 20 yards (D.Whitner).,0,7,2012 -20121202_SF@STL,2,30,58,STL,SF,1,10,48,(:58) S.Bradford spiked the ball to stop the clock.,0,7,2012 -20121202_SF@STL,2,30,56,STL,SF,2,10,48,(:56) (Shotgun) S.Bradford pass short right to S.Jackson to SF 40 for 8 yards (N.Bowman).,0,7,2012 -20121202_SF@STL,2,30,35,STL,SF,3,2,40,(:35) (Shotgun) S.Bradford pass incomplete short right to S.Smith.,0,7,2012 -20121202_SF@STL,2,30,30,STL,SF,4,2,40,(:30) G.Zuerlein 58 yard field goal is No Good Wide Right Center-J.McQuaide Holder-J.Hekker.,0,7,2012 -20121202_SF@STL,2,30,25,SF,STL,1,10,52,(:25) (Shotgun) C.Kaepernick pass short right to T.Ginn ran ob at SF 49 for 1 yard (T.Johnson).,7,0,2012 -20121202_SF@STL,2,30,21,SF,STL,2,9,51,(:21) (Shotgun) C.Kaepernick sacked at SF 40 for -9 yards (E.Sims).,7,0,2012 -20121202_SF@STL,2,30,12,SF,STL,3,18,60,(:12) (Shotgun) C.Kaepernick sacked at SF 39 for -1 yards (W.Hayes).,7,0,2012 -20121202_SF@STL,2,30,2,SF,STL,4,19,61,(:02) C.Kaepernick pass incomplete deep left to R.Moss.,7,0,2012 -20121202_SF@STL,3,30,0,STL,SF,,,61,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,0,7,2012 -20121202_SF@STL,3,30,0,SF,STL,1,10,80,(15:00) (Shotgun) C.Kaepernick scrambles right end to SF 26 for 6 yards (R.McIntosh).,7,0,2012 -20121202_SF@STL,3,29,19,SF,STL,2,4,74,(14:19) F.Gore left end to SF 27 for 1 yard (C.Long).,7,0,2012 -20121202_SF@STL,3,28,34,SF,STL,3,3,73,(13:34) C.Kaepernick pass incomplete short right to M.Crabtree.,7,0,2012 -20121202_SF@STL,3,28,28,SF,STL,4,3,73,(13:28) A.Lee punts 51 yards to SL 22 Center-B.Jennings fair catch by A.Pettis.,7,0,2012 -20121202_SF@STL,3,28,22,STL,SF,1,10,78,(13:22) S.Bradford pass short left to C.Givens pushed ob at SL 33 for 11 yards (D.Goldson).,0,7,2012 -20121202_SF@STL,3,27,57,STL,SF,1,10,67,(12:57) S.Jackson up the middle to SL 35 for 2 yards (R.McDonald).,0,7,2012 -20121202_SF@STL,3,27,15,STL,SF,2,8,65,(12:15) S.Bradford pass short left to C.Givens to SL 43 for 8 yards (T.Brown).,0,7,2012 -20121202_SF@STL,3,26,32,STL,SF,1,10,57,(11:32) S.Bradford pass short right to S.Jackson pushed ob at SF 37 for 20 yards (A.Brooks) [Ald.Smith].,0,7,2012 -20121202_SF@STL,3,26,0,STL,SF,1,10,37,(11:00) S.Jackson right tackle to SF 35 for 2 yards (C.Culliver; N.Bowman).,0,7,2012 -20121202_SF@STL,3,25,18,STL,SF,2,8,35,(10:18) (Shotgun) S.Bradford pass incomplete deep left to I.Pead.,0,7,2012 -20121202_SF@STL,3,25,12,STL,SF,3,8,35,(10:12) (Shotgun) S.Bradford pass short left to S.Jackson to SF 13 for 22 yards (C.Rogers).,0,7,2012 -20121202_SF@STL,3,24,27,STL,SF,1,10,13,(9:27) D.Richardson up the middle to SF 12 for 1 yard (W.Tukuafu).,0,7,2012 -20121202_SF@STL,3,23,48,STL,SF,2,9,12,(8:48) PENALTY on SL-R.Saffold False Start 5 yards enforced at SF 12 - No Play.,0,7,2012 -20121202_SF@STL,3,23,22,STL,SF,2,14,17,(8:22) (Shotgun) S.Bradford scrambles right end to SF 11 for 6 yards (C.Rogers).,0,7,2012 -20121202_SF@STL,3,22,34,STL,SF,3,8,11,(7:34) (Shotgun) S.Bradford pass short left to A.Pettis to SF 4 for 7 yards (C.Rogers).,0,7,2012 -20121202_SF@STL,3,21,51,STL,SF,4,1,4,(6:51) S.Bradford pass incomplete short right to A.Pettis (T.Brown).,0,7,2012 -20121202_SF@STL,3,21,45,SF,STL,1,10,96,(6:45) F.Gore up the middle to SF 4 for no gain (J.Laurinaitis).,7,0,2012 -20121202_SF@STL,3,21,6,SF,STL,2,10,96,(6:06) F.Gore left guard to SF 3 for -1 yards (M.Brockers).,7,0,2012 -20121202_SF@STL,3,20,23,SF,STL,3,11,97,(5:23) (Shotgun) C.Kaepernick pass short left to M.Manningham to SF 17 for 14 yards (C.Dahl).,7,0,2012 -20121202_SF@STL,3,19,36,SF,STL,1,10,83,(4:36) C.Kaepernick pass incomplete short right. PENALTY on SF-C.Kaepernick Intentional Grounding 17 yards enforced in End Zone SAFETY.,7,0,2012 -20121202_SF@STL,3,19,36,SF,STL,,,83,A.Lee kicks 63 yards from SF 20 to SL 17. A.Pettis to SL 30 for 13 yards (W.Tukuafu).,7,2,2012 -20121202_SF@STL,3,19,20,STL,SF,1,10,70,(4:20) S.Bradford pass short middle to S.Jackson to SL 35 for 5 yards (Ald.Smith). PENALTY on SF-J.Smith Defensive Holding 5 yards enforced at SL 30 - No Play.,2,7,2012 -20121202_SF@STL,3,18,57,STL,SF,1,10,65,(3:57) S.Jackson right tackle to SL 35 for no gain (A.Brooks).,2,7,2012 -20121202_SF@STL,3,18,19,STL,SF,2,10,65,(3:19) S.Jackson right tackle to SL 35 for no gain (J.Smith).,2,7,2012 -20121202_SF@STL,3,17,41,STL,SF,3,10,65,(2:41) (Shotgun) S.Bradford pass short middle to C.Givens to SL 44 for 9 yards (C.Culliver).,2,7,2012 -20121202_SF@STL,3,17,2,STL,SF,4,1,56,(2:02) J.Hekker punts 55 yards to SF 1 Center-J.McQuaide out of bounds.,2,7,2012 -20121202_SF@STL,3,16,56,SF,STL,1,10,99,(1:56) B.Miller right guard to SF 5 for 4 yards (C.Finnegan). PENALTY on SF-M.Iupati Offensive Holding 0 yards enforced at SF 1 - No Play.,7,2,2012 -20121202_SF@STL,3,16,26,SF,STL,1,10,99,(1:26) C.Kaepernick pass short left to M.Crabtree to SF 11 for 10 yards (J.Jenkins).,7,2,2012 -20121202_SF@STL,3,15,43,SF,STL,1,10,89,(:43) F.Gore up the middle to SF 17 for 6 yards (J.Laurinaitis). PENALTY on SF-W.Tukuafu Illegal Motion 5 yards enforced at SF 11 - No Play.,7,2,2012 -20121202_SF@STL,3,15,16,SF,STL,1,15,94,(:16) C.Kaepernick pass short left to M.Crabtree pushed ob at SF 28 for 22 yards (C.Finnegan).,7,2,2012 -20121202_SF@STL,4,15,0,SF,STL,1,10,72,(15:00) F.Gore left tackle to SF 30 for 2 yards (K.Langford).,7,2,2012 -20121202_SF@STL,4,14,18,SF,STL,2,8,70,(14:18) C.Kaepernick pass incomplete deep right to D.Walker (Q.Mikell). PENALTY on SL-R.Quinn Roughing the Passer 15 yards enforced at SF 30 - No Play.,7,2,2012 -20121202_SF@STL,4,14,10,SF,STL,1,10,55,(14:10) (Shotgun) F.Gore up the middle to SF 45 for no gain (J.Cudjo).,7,2,2012 -20121202_SF@STL,4,13,29,SF,STL,2,10,55,(13:29) F.Gore right end to SF 47 for 2 yards (R.McIntosh).,7,2,2012 -20121202_SF@STL,4,12,47,SF,STL,3,8,53,(12:47) (Shotgun) C.Kaepernick pass deep left to M.Crabtree pushed ob at SL 23 for 30 yards (Q.Mikell). Penalty on SL-R.Quinn Neutral Zone Infraction declined.,7,2,2012 -20121202_SF@STL,4,12,16,SF,STL,1,10,23,(12:16) C.Kaepernick pass short right to M.Crabtree to SL 16 for 7 yards (C.Finnegan).,7,2,2012 -20121202_SF@STL,4,11,34,SF,STL,2,3,16,(11:34) (Shotgun) C.Kaepernick pass incomplete short left to V.Davis.,7,2,2012 -20121202_SF@STL,4,11,27,SF,STL,3,3,16,(11:27) C.Kaepernick pass short left to M.Manningham to SL 9 for 7 yards (J.Dunbar).,7,2,2012 -20121202_SF@STL,4,10,53,SF,STL,1,9,9,(10:53) F.Gore right tackle to SL 10 for -1 yards (J.Dunbar).,7,2,2012 -20121202_SF@STL,4,10,14,SF,STL,2,10,10,(10:14) (Shotgun) C.Kaepernick up the middle to SL 9 for 1 yard (E.Sims).,7,2,2012 -20121202_SF@STL,4,9,26,SF,STL,3,9,9,(9:26) (Shotgun) C.Kaepernick pass short right to M.Manningham to SL 5 for 4 yards (J.Dunbar).,7,2,2012 -20121202_SF@STL,4,8,47,SF,STL,4,5,5,(8:47) D.Akers 23 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,7,2,2012 -20121202_SF@STL,4,8,47,SF,STL,,,5,D.Akers kicks 68 yards from SF 35 to SL -3. C.Givens to SL 19 for 22 yards (D.McBath).,10,2,2012 -20121202_SF@STL,4,8,36,STL,SF,1,10,81,(8:36) S.Jackson left tackle to SL 25 for 6 yards (J.Smith).,2,10,2012 -20121202_SF@STL,4,8,2,STL,SF,2,4,75,(8:02) S.Bradford sacked at SL 18 for -7 yards (J.Smith).,2,10,2012 -20121202_SF@STL,4,7,28,STL,SF,3,11,82,(7:28) (Shotgun) S.Bradford pass short right to S.Jackson pushed ob at SL 32 for 14 yards (C.Culliver).,2,10,2012 -20121202_SF@STL,4,6,57,STL,SF,1,10,68,(6:57) (Shotgun) S.Bradford pass short left to C.Givens to SL 41 for 9 yards (C.Rogers).,2,10,2012 -20121202_SF@STL,4,6,20,STL,SF,2,1,59,(6:20) S.Jackson right guard to SL 44 for 3 yards (N.Bowman).,2,10,2012 -20121202_SF@STL,4,5,40,STL,SF,1,10,56,(5:40) S.Bradford pass incomplete short left to L.Kendricks.,2,10,2012 -20121202_SF@STL,4,5,34,STL,SF,2,10,56,(5:34) (Shotgun) S.Bradford pass short left to S.Smith to 50 for 6 yards (P.Cox; D.Whitner).,2,10,2012 -20121202_SF@STL,4,4,54,STL,SF,3,4,50,(4:54) S.Bradford pass incomplete short right to B.Quick (C.Culliver).,2,10,2012 -20121202_SF@STL,4,4,48,STL,SF,4,4,50,(4:48) J.Hekker punts 40 yards to SF 10 Center-J.McQuaide out of bounds.,2,10,2012 -20121202_SF@STL,4,4,41,SF,STL,1,10,90,(4:41) B.Jacobs left tackle to SF 10 for no gain (M.Brockers).,10,2,2012 -20121202_SF@STL,4,3,54,SF,STL,2,10,90,(3:54) C.Kaepernick right end to SF 17 for 7 yards (R.McIntosh).,10,2,2012 -20121202_SF@STL,4,3,11,STL,SF,3,3,98,(3:11) (Shotgun) C.Kaepernick FUMBLES (Aborted) at SF 12 RECOVERED by SL-J.Jenkins at SF 2. J.Jenkins for 2 yards TOUCHDOWN. Play Challenged by Replay Assistant and Upheld.,2,10,2012 -20121202_SF@STL,4,3,11,STL,SF,,,98,(Pass formation) PENALTY on SL-R.Saffold False Start 5 yards enforced at SF 2 - No Play.,2,10,2012 -20121202_SF@STL,4,3,11,STL,SF,,,98,(Pass formation) TWO-POINT CONVERSION ATTEMPT. S.Bradford pass to L.Kendricks is complete. ATTEMPT SUCCEEDS.,2,10,2012 -20121202_SF@STL,4,3,11,STL,SF,,,98,G.Zuerlein kicks 73 yards from SL 35 to SF -8. T.Ginn Touchback.,10,10,2012 -20121202_SF@STL,4,3,4,SF,STL,1,10,80,(3:04) C.Kaepernick pass short right to M.Crabtree to SF 36 for 16 yards (Q.Mikell).,10,10,2012 -20121202_SF@STL,4,2,28,SF,STL,1,10,64,(2:28) C.Kaepernick scrambles right end to SL 14 for 50 yards (J.Jenkins).,10,10,2012 -20121202_SF@STL,4,2,0,SF,STL,1,10,14,(2:00) C.Kaepernick pass incomplete short right to D.Walker.,10,10,2012 -20121202_SF@STL,4,1,54,SF,STL,2,10,14,(1:54) F.Gore left tackle to SL 12 for 2 yards. PENALTY on SF-D.Walker Offensive Holding 10 yards enforced at SL 14 - No Play.,10,10,2012 -20121202_SF@STL,4,1,47,SF,STL,2,20,24,(1:47) F.Gore right guard to SL 25 for -1 yards (J.Dunbar).,10,10,2012 -20121202_SF@STL,4,1,44,SF,STL,3,21,25,(1:44) C.Kaepernick right end ran ob at SL 15 for 10 yards (Q.Mikell).,10,10,2012 -20121202_SF@STL,4,1,38,SF,STL,4,11,15,(1:38) D.Akers 33 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,10,10,2012 -20121202_SF@STL,4,1,38,SF,STL,,,15,D.Akers kicks 73 yards from SF 35 to SL -8. C.Givens Touchback.,13,10,2012 -20121202_SF@STL,4,1,34,STL,SF,1,10,80,(1:34) (Shotgun) S.Bradford pass incomplete short right to L.Kendricks.,10,13,2012 -20121202_SF@STL,4,1,30,STL,SF,2,10,80,(1:30) (Shotgun) S.Bradford scrambles left end to SL 34 for 14 yards (D.Goldson).,10,13,2012 -20121202_SF@STL,4,1,7,STL,SF,1,10,66,(1:07) (Shotgun) S.Bradford left end to SL 45 for 11 yards (D.Goldson). PENALTY on SF-D.Goldson Unnecessary Roughness 15 yards enforced at SL 45.,10,13,2012 -20121202_SF@STL,4,0,59,STL,SF,1,10,40,(:59) (Shotgun) S.Bradford pass incomplete deep left to C.Givens. PENALTY on SL Illegal Formation 5 yards enforced at SF 40 - No Play.,10,13,2012 -20121202_SF@STL,4,0,54,STL,SF,1,15,45,(:54) (Shotgun) S.Bradford pass incomplete short middle to A.Pettis (D.Goldson).,10,13,2012 -20121202_SF@STL,4,0,43,STL,SF,2,15,45,(:43) (Shotgun) S.Bradford pass short right to A.Pettis to SF 40 for 5 yards (C.Rogers).,10,13,2012 -20121202_SF@STL,4,0,21,STL,SF,3,10,40,(:21) (Shotgun) S.Bradford pass short right to C.Givens to SF 35 for 5 yards (C.Culliver).,10,13,2012 -20121202_SF@STL,4,0,2,STL,SF,4,5,35,(:02) G.Zuerlein 53 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,10,13,2012 -20121202_SF@STL,5,0,0,SF,STL,,,35,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,13,2012 -20121202_SF@STL,5,0,0,STL,SF,1,10,80,(15:00) S.Jackson right end to SL 22 for 2 yards (I.Sopoaga).,13,13,2012 -20121202_SF@STL,5,-1,21,STL,SF,2,8,78,(14:21) S.Bradford pass deep left to C.Givens pushed ob at SL 38 for 16 yards (D.Whitner).,13,13,2012 -20121202_SF@STL,5,-1,7,STL,SF,1,10,62,(14:07) S.Jackson right end pushed ob at SF 45 for 17 yards (N.Bowman). PENALTY on SL-M.Mulligan Offensive Holding 10 yards enforced at SL 38 - No Play.,13,13,2012 -20121202_SF@STL,5,-2,36,STL,SF,1,20,72,(13:36) D.Richardson left end to SL 31 for 3 yards (J.Smith).,13,13,2012 -20121202_SF@STL,5,-3,57,STL,SF,2,17,69,(12:57) (Shotgun) S.Bradford pass short middle to D.Richardson to SL 33 for 2 yards (N.Bowman).,13,13,2012 -20121202_SF@STL,5,-3,13,STL,SF,3,15,67,(12:13) (Shotgun) S.Bradford pass incomplete short left to S.Jackson.,13,13,2012 -20121202_SF@STL,5,-3,10,STL,SF,4,15,67,(12:10) J.Hekker punts 47 yards to SF 20 Center-J.McQuaide out of bounds.,13,13,2012 -20121202_SF@STL,5,-3,0,SF,STL,1,10,80,(12:00) C.Kaepernick pass short left to V.Davis to SF 29 for 9 yards (M.Brockers).,13,13,2012 -20121202_SF@STL,5,-4,31,SF,STL,2,1,71,(11:31) F.Gore right tackle to SF 35 for 6 yards (C.Dahl).,13,13,2012 -20121202_SF@STL,5,-5,51,SF,STL,1,10,65,(10:51) C.Kaepernick pass incomplete deep left to V.Davis. PENALTY on SF-D.Kilgore Offensive Holding 10 yards enforced at SF 35 - No Play.,13,13,2012 -20121202_SF@STL,5,-5,44,SF,STL,1,20,75,(10:44) C.Kaepernick pass incomplete short left to R.Moss.,13,13,2012 -20121202_SF@STL,5,-5,41,SF,STL,2,20,75,(10:41) (Shotgun) F.Gore right tackle to SF 26 for 1 yard (J.Dunbar).,13,13,2012 -20121202_SF@STL,5,-5,4,SF,STL,3,19,74,(10:04) (Shotgun) C.Kaepernick pass short left to R.Moss to SF 33 for 7 yards (J.Laurinaitis).,13,13,2012 -20121202_SF@STL,5,-6,30,SF,STL,4,12,67,(9:30) (Punt formation) PENALTY on SF-T.Brock False Start 5 yards enforced at SF 33 - No Play.,13,13,2012 -20121202_SF@STL,5,-6,20,SF,STL,4,17,72,(9:20) A.Lee punts 60 yards to SL 12 Center-B.Jennings. A.Pettis to SL 27 for 15 yards (B.Jennings).,13,13,2012 -20121202_SF@STL,5,-6,8,STL,SF,1,10,73,(9:08) S.Bradford pass incomplete deep right to C.Givens.,13,13,2012 -20121202_SF@STL,5,-6,2,STL,SF,2,10,73,(9:02) S.Jackson to SL 33 for 6 yards (D.Goldson; Ald.Smith).,13,13,2012 -20121202_SF@STL,5,-7,21,STL,SF,3,4,67,(8:21) (Shotgun) S.Bradford pass short left to B.Quick to SL 36 for 3 yards (T.Brown).,13,13,2012 -20121202_SF@STL,5,-8,35,STL,SF,4,1,64,(7:35) J.Hekker punts 14 yards to 50 Center-J.McQuaide out of bounds.,13,13,2012 -20121202_SF@STL,5,-8,29,SF,STL,1,10,50,(7:29) F.Gore up the middle to SL 45 for 5 yards (J.Laurinaitis).,13,13,2012 -20121202_SF@STL,5,-9,58,SF,STL,2,5,45,(6:58) B.Jacobs right guard to SL 44 for 1 yard (R.McIntosh).,13,13,2012 -20121202_SF@STL,5,-9,14,SF,STL,3,4,44,(6:14) (Shotgun) C.Kaepernick pass short left to R.Moss to SL 37 for 7 yards (J.Jenkins).,13,13,2012 -20121202_SF@STL,5,-10,42,SF,STL,1,10,37,(5:42) F.Gore right tackle to SL 35 for 2 yards (J.Laurinaitis).,13,13,2012 -20121202_SF@STL,5,-10,6,SF,STL,2,8,35,(5:06) F.Gore right guard to SL 33 for 2 yards (J.Laurinaitis).,13,13,2012 -20121202_SF@STL,5,-11,21,SF,STL,3,6,33,(4:21) C.Kaepernick pass incomplete short left to M.Crabtree.,13,13,2012 -20121202_SF@STL,5,-11,16,SF,STL,4,6,33,(4:16) D.Akers 51 yard field goal is No Good Wide Right Center-B.Jennings Holder-A.Lee.,13,13,2012 -20121202_SF@STL,5,-11,11,STL,SF,1,10,59,(4:11) S.Jackson left tackle to SL 44 for 3 yards (P.Willis).,13,13,2012 -20121202_SF@STL,5,-12,33,STL,SF,2,7,56,(3:33) S.Jackson up the middle to SL 48 for 4 yards (Ald.Smith).,13,13,2012 -20121202_SF@STL,5,-13,56,STL,SF,3,3,52,(2:56) S.Bradford pass short left to C.Givens to SF 46 for 6 yards (T.Brown).,13,13,2012 -20121202_SF@STL,5,-13,18,STL,SF,1,10,46,(2:18) S.Jackson right tackle to SF 37 for 9 yards (D.Whitner).,13,13,2012 -20121202_SF@STL,5,-13,0,STL,SF,2,1,37,(2:00) S.Jackson right tackle to SF 39 for -2 yards (J.Smith).,13,13,2012 -20121202_SF@STL,5,-14,21,STL,SF,3,3,39,(1:21) S.Jackson right tackle to SF 37 for 2 yards (N.Bowman).,13,13,2012 -20121202_SF@STL,5,-15,30,STL,SF,4,1,37,(:30) G.Zuerlein 54 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,13,13,2012 -20121202_SF@STL,5,-15,30,STL,SF,,,37,                      ,16,13,2012 -20121202_HOU@TEN,1,-15,0,TEN,HOU,,,37,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,0,0,2012 -20121202_HOU@TEN,1,60,0,HOU,TEN,1,10,80,(15:00) M.Schaub pass short right to O.Daniels to HST 34 for 14 yards (J.Babineaux).,0,0,2012 -20121202_HOU@TEN,1,59,26,HOU,TEN,1,10,66,(14:26) M.Schaub pass short left to K.Walter ran ob at HST 38 for 4 yards.,0,0,2012 -20121202_HOU@TEN,1,58,53,HOU,TEN,2,6,62,(13:53) M.Schaub pass short left to K.Walter to HST 44 for 6 yards (A.Verner).,0,0,2012 -20121202_HOU@TEN,1,58,21,HOU,TEN,1,10,56,(13:21) M.Schaub pass incomplete short right to O.Daniels (A.Ayers).,0,0,2012 -20121202_HOU@TEN,1,58,17,HOU,TEN,2,10,56,(13:17) A.Foster left tackle to HST 46 for 2 yards (W.Witherspoon).,0,0,2012 -20121202_HOU@TEN,1,57,39,HOU,TEN,3,8,54,(12:39) (Shotgun) M.Schaub pass short left to L.Jean for 54 yards TOUCHDOWN. Penalty on TEN-D.Morgan Defensive Offside declined.,0,0,2012 -20121202_HOU@TEN,1,57,39,HOU,TEN,,,54,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121202_HOU@TEN,1,57,39,HOU,TEN,,,54,S.Graham kicks 64 yards from HST 35 to TEN 1. D.Reynaud to TEN 22 for 21 yards (R.Carmichael).,7,0,2012 -20121202_HOU@TEN,1,57,23,TEN,HOU,1,10,78,(12:23) C.Johnson up the middle to TEN 25 for 3 yards (S.Cody).,0,7,2012 -20121202_HOU@TEN,1,56,50,TEN,HOU,2,7,75,(11:50) J.Locker pass deep left to J.Cook to 50 for 25 yards (D.Manning).,0,7,2012 -20121202_HOU@TEN,1,56,8,TEN,HOU,1,10,50,(11:08) (Shotgun) C.Johnson up the middle pushed ob at HST 24 for 26 yards (K.Jackson). TEN-D.Stewart was injured during the play.,0,7,2012 -20121202_HOU@TEN,1,55,50,TEN,HOU,1,10,24,(10:50) C.Johnson right guard to HST 24 for no gain (T.Dobbins).,0,7,2012 -20121202_HOU@TEN,1,55,17,TEN,HOU,2,10,24,(10:17) J.Locker pass short right to C.Johnson to HST 19 for 5 yards (D.Sharpton).,0,7,2012 -20121202_HOU@TEN,1,54,40,TEN,HOU,3,5,19,(9:40) (Shotgun) J.Locker pass incomplete deep left to K.Britt.,0,7,2012 -20121202_HOU@TEN,1,54,35,TEN,HOU,4,5,19,(9:35) (Field Goal formation) R.Bironas 37 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,7,2012 -20121202_HOU@TEN,1,54,35,TEN,HOU,,,19,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,3,7,2012 -20121202_HOU@TEN,1,54,30,HOU,TEN,1,10,80,(9:30) J.Forsett left tackle to HST 22 for 2 yards (D.Morgan; T.Shaw).,7,3,2012 -20121202_HOU@TEN,1,53,51,HOU,TEN,2,8,78,(8:51) J.Forsett right tackle to HST 33 for 11 yards (Z.Brown; R.Johnson).,7,3,2012 -20121202_HOU@TEN,1,53,11,HOU,TEN,1,10,67,(8:11) M.Schaub pass short right to A.Foster to HST 35 for 2 yards (J.McCourty).,7,3,2012 -20121202_HOU@TEN,1,52,31,HOU,TEN,2,8,65,(7:31) M.Schaub pass incomplete deep right to K.Walter (J.McCourty).,7,3,2012 -20121202_HOU@TEN,1,52,26,HOU,TEN,3,8,65,(7:26) (Shotgun) M.Schaub pass short right to O.Daniels to HST 45 for 10 yards (M.Martin).,7,3,2012 -20121202_HOU@TEN,1,51,55,HOU,TEN,1,10,55,(6:55) J.Forsett right tackle to TEN 49 for 6 yards (T.Shaw).,7,3,2012 -20121202_HOU@TEN,1,51,26,HOU,TEN,2,4,49,(6:26) J.Forsett left guard to TEN 49 for no gain (Z.Brown).,7,3,2012 -20121202_HOU@TEN,1,50,49,HOU,TEN,3,4,49,(5:49) (Shotgun) M.Schaub pass incomplete short left to K.Martin.,7,3,2012 -20121202_HOU@TEN,1,50,46,HOU,TEN,4,4,49,(5:46) (Punt formation) D.Jones punts 44 yards to TEN 5 Center-J.Weeks fair catch by D.Reynaud.,7,3,2012 -20121202_HOU@TEN,1,50,39,TEN,HOU,1,10,95,(5:39) J.Locker pass incomplete short right to N.Washington (B.McCain).,3,7,2012 -20121202_HOU@TEN,1,50,33,TEN,HOU,2,10,95,(5:33) C.Johnson right guard to TEN 7 for 2 yards (D.Sharpton).,3,7,2012 -20121202_HOU@TEN,1,49,51,TEN,HOU,3,8,93,(4:51) (Shotgun) J.Locker pass incomplete short right to N.Washington (B.Harris).,3,7,2012 -20121202_HOU@TEN,1,49,44,TEN,HOU,4,8,93,(4:44) (Punt formation) B.Kern punts 70 yards to HST 23 Center-B.Brinkley. K.Martin to HST 41 for 18 yards (T.Shaw). PENALTY on HST-B.Harris Illegal Block Above the Waist 10 yards enforced at HST 35.,3,7,2012 -20121202_HOU@TEN,1,49,28,HOU,TEN,1,10,75,(4:28) M.Schaub pass incomplete short right to J.Casey.,7,3,2012 -20121202_HOU@TEN,1,49,26,HOU,TEN,2,10,75,(4:26) M.Schaub pass short middle to A.Johnson to HST 40 for 15 yards (J.McCourty).,7,3,2012 -20121202_HOU@TEN,1,48,53,HOU,TEN,1,10,60,(3:53) A.Foster left guard to HST 41 for 1 yard (Z.Brown).,7,3,2012 -20121202_HOU@TEN,1,48,24,HOU,TEN,2,9,59,(3:24) M.Schaub pass incomplete short right to O.Daniels (J.Babineaux).,7,3,2012 -20121202_HOU@TEN,1,48,19,HOU,TEN,3,9,59,(3:19) (Shotgun) M.Schaub pass short right to A.Johnson to HST 44 for 3 yards (S.Marks).,7,3,2012 -20121202_HOU@TEN,1,47,47,HOU,TEN,4,6,56,(2:47) (Punt formation) D.Jones punts 50 yards to TEN 6 Center-J.Weeks. D.Reynaud to TEN 10 for 4 yards (D.Posey; T.Dobbins).,7,3,2012 -20121202_HOU@TEN,1,47,34,TEN,HOU,1,10,90,(2:34) J.Locker pass incomplete short right to K.Wright (B.Harris).,3,7,2012 -20121202_HOU@TEN,1,47,28,TEN,HOU,2,10,90,(2:28) (Shotgun) J.Locker pass incomplete short left to K.Britt (K.Jackson).,3,7,2012 -20121202_HOU@TEN,1,47,25,TEN,HOU,3,10,90,(2:25) (Shotgun) J.Locker pass incomplete short middle to J.Cook (G.Quin).,3,7,2012 -20121202_HOU@TEN,1,47,21,TEN,HOU,4,10,90,(2:21) (Punt formation) B.Kern punts 52 yards to HST 38 Center-B.Brinkley. K.Martin pushed ob at TEN 20 for 42 yards (B.Kern).,3,7,2012 -20121202_HOU@TEN,1,47,7,HOU,TEN,1,10,20,(2:07) A.Foster left tackle to TEN 17 for 3 yards (Z.Brown). HST-D.Brown was injured during the play.,7,3,2012 -20121202_HOU@TEN,1,46,29,HOU,TEN,2,7,17,(1:29) M.Schaub pass incomplete deep middle to O.Daniels.,7,3,2012 -20121202_HOU@TEN,1,46,25,HOU,TEN,3,7,17,(1:25) (Shotgun) M.Schaub pass short left to A.Foster pushed ob at TEN 11 for 6 yards (M.Griffin).,7,3,2012 -20121202_HOU@TEN,1,46,4,HOU,TEN,4,1,11,(1:04) A.Foster left end to TEN 5 for 6 yards (Z.Brown).,7,3,2012 -20121202_HOU@TEN,1,45,24,HOU,TEN,1,5,5,(:24) M.Schaub pass short right to J.Casey for 5 yards TOUCHDOWN.,7,3,2012 -20121202_HOU@TEN,1,45,24,HOU,TEN,,,5,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,3,2012 -20121202_HOU@TEN,1,45,24,HOU,TEN,,,5,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,14,3,2012 -20121202_HOU@TEN,1,45,19,TEN,HOU,1,10,80,(:19) J.Locker pass incomplete short right to T.Thompson.,3,14,2012 -20121202_HOU@TEN,1,45,15,TEN,HOU,2,10,80,(:15) C.Johnson left guard to TEN 24 for 4 yards (J.Crick).,3,14,2012 -20121202_HOU@TEN,2,45,0,TEN,HOU,3,6,76,(15:00) (Shotgun) J.Locker pass short right to J.Cook to TEN 31 for 7 yards (G.Quin).,3,14,2012 -20121202_HOU@TEN,2,44,25,TEN,HOU,1,10,69,(14:25) C.Johnson up the middle to TEN 29 for -2 yards (J.Watt).,3,14,2012 -20121202_HOU@TEN,2,43,51,TEN,HOU,2,12,71,(13:51) (Shotgun) J.Locker pass incomplete short left to C.Johnson.,3,14,2012 -20121202_HOU@TEN,2,43,47,TEN,HOU,3,12,71,(13:47) (Shotgun) J.Locker pass incomplete short left to J.Cook.,3,14,2012 -20121202_HOU@TEN,2,43,41,TEN,HOU,4,12,71,(13:41) (Punt formation) B.Kern punts 52 yards to HST 19 Center-B.Brinkley out of bounds.,3,14,2012 -20121202_HOU@TEN,2,43,35,HOU,TEN,1,10,81,(13:35) J.Forsett right tackle to HST 22 for 3 yards (T.Shaw).,14,3,2012 -20121202_HOU@TEN,2,42,56,HOU,TEN,2,7,78,(12:56) J.Forsett right tackle to HST 25 for 3 yards (J.Casey; D.Morgan).,14,3,2012 -20121202_HOU@TEN,2,42,15,HOU,TEN,3,4,75,(12:15) M.Schaub pass incomplete short middle to A.Johnson (A.Verner).,14,3,2012 -20121202_HOU@TEN,2,42,9,HOU,TEN,4,4,75,(12:09) (Punt formation) D.Jones punts 55 yards to TEN 20 Center-J.Weeks. D.Reynaud to TEN 30 for 10 yards (T.Dobbins).,14,3,2012 -20121202_HOU@TEN,2,41,57,TEN,HOU,1,10,70,(11:57) (Shotgun) J.Locker pass short left to D.Williams to TEN 48 for 18 yards (D.Manning).,3,14,2012 -20121202_HOU@TEN,2,41,34,TEN,HOU,1,10,52,(11:34) (No Huddle Shotgun) J.Locker pass incomplete short middle to J.Cook (E.Mitchell).,3,14,2012 -20121202_HOU@TEN,2,41,30,TEN,HOU,2,10,52,(11:30) J.Locker pass deep middle to N.Washington to HST 33 for 19 yards (K.Jackson).,3,14,2012 -20121202_HOU@TEN,2,40,56,TEN,HOU,1,10,33,(10:56) C.Johnson right end to HST 37 for -4 yards (J.Watt). FUMBLES (J.Watt) RECOVERED by HST-A.Smith at HST 37.,3,14,2012 -20121202_HOU@TEN,2,40,46,HOU,TEN,1,10,63,(10:46) B.Tate right end to HST 44 for 7 yards (T.Shaw).,14,3,2012 -20121202_HOU@TEN,2,40,8,HOU,TEN,2,3,56,(10:08) B.Tate right tackle to 50 for 6 yards (A.Ayers). PENALTY on HST-B.Jones Offensive Holding 10 yards enforced at HST 44 - No Play.,14,3,2012 -20121202_HOU@TEN,2,39,37,HOU,TEN,2,13,66,(9:37) M.Schaub pass short right to A.Johnson to HST 40 for 6 yards (J.McCourty).,14,3,2012 -20121202_HOU@TEN,2,38,54,HOU,TEN,3,7,60,(8:54) (Shotgun) M.Schaub pass incomplete short left to O.Daniels [A.Ayers]. Penalty on HST-R.Harris Offensive Holding declined.,14,3,2012 -20121202_HOU@TEN,2,38,50,HOU,TEN,4,7,60,(8:50) (Punt formation) D.Jones punts 50 yards to TEN 10 Center-J.Weeks fair catch by D.Reynaud.,14,3,2012 -20121202_HOU@TEN,2,38,42,TEN,HOU,1,10,90,(8:42) J.Locker pass short middle intended for J.Cook INTERCEPTED by T.Dobbins (S.Cody) at TEN 10. T.Dobbins to TEN 3 for 7 yards (J.Locker).,3,14,2012 -20121202_HOU@TEN,2,38,35,HOU,TEN,1,3,3,(8:35) A.Foster left guard to TEN 2 for 1 yard (T.Shaw; K.Wimbley).,14,3,2012 -20121202_HOU@TEN,2,37,53,HOU,TEN,2,2,2,(7:53) A.Foster left end for 2 yards TOUCHDOWN.,14,3,2012 -20121202_HOU@TEN,2,37,53,HOU,TEN,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,14,3,2012 -20121202_HOU@TEN,2,37,53,HOU,TEN,,,2,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,21,3,2012 -20121202_HOU@TEN,2,37,48,TEN,HOU,1,10,80,(7:48) (Shotgun) C.Johnson up the middle to TEN 23 for 3 yards (J.Watt).,3,21,2012 -20121202_HOU@TEN,2,37,15,TEN,HOU,2,7,77,(7:15) (Shotgun) J.Locker pass short left to K.Wright to TEN 36 for 13 yards (B.Ruud).,3,21,2012 -20121202_HOU@TEN,2,36,39,TEN,HOU,1,10,64,(6:39) J.Locker sacked at TEN 30 for -6 yards (J.Watt).,3,21,2012 -20121202_HOU@TEN,2,35,40,TEN,HOU,2,16,70,(5:40) (Shotgun) J.Locker pass short left to D.Williams to TEN 36 for 6 yards (B.Harris).,3,21,2012 -20121202_HOU@TEN,2,35,1,TEN,HOU,3,10,64,(5:01) (Shotgun) J.Locker scrambles right tackle pushed ob at HST 49 for 15 yards (B.Harris).,3,21,2012 -20121202_HOU@TEN,2,34,29,TEN,HOU,1,10,49,(4:29) (Shotgun) C.Johnson up the middle to HST 48 for 1 yard (B.Ruud).,3,21,2012 -20121202_HOU@TEN,2,33,50,TEN,HOU,2,9,48,(3:50) (Shotgun) J.Locker scrambles right end pushed ob at HST 45 for 3 yards (J.Crick).,3,21,2012 -20121202_HOU@TEN,2,33,18,TEN,HOU,3,6,45,(3:18) (Shotgun) J.Locker pass incomplete short right to K.Wright. PENALTY on HST-B.Harris Illegal Contact 5 yards enforced at HST 45 - No Play.,3,21,2012 -20121202_HOU@TEN,2,33,14,TEN,HOU,1,10,40,(3:14) C.Johnson up the middle to HST 36 for 4 yards (T.Dobbins).,3,21,2012 -20121202_HOU@TEN,2,32,36,TEN,HOU,2,6,36,(2:36) J.Locker pass incomplete short left to J.Cook (D.Manning) [J.Watt].,3,21,2012 -20121202_HOU@TEN,2,32,31,TEN,HOU,3,6,36,(2:31) (Shotgun) J.Locker pass incomplete short right to D.Williams.,3,21,2012 -20121202_HOU@TEN,2,32,31,TEN,HOU,4,6,36,(2:31) (Shotgun) PENALTY on TEN-J.Locker Delay of Game 5 yards enforced at HST 36 - No Play.,3,21,2012 -20121202_HOU@TEN,2,32,27,TEN,HOU,4,11,41,(2:27) (Punt formation) B.Kern punts 40 yards to HST 1 Center-B.Brinkley downed by TEN-T.Wilson.,3,21,2012 -20121202_HOU@TEN,2,32,17,HOU,TEN,1,10,99,(2:17) M.Schaub pass short middle to G.Graham to HST 8 for 7 yards (J.Casey; A.Ayers).,21,3,2012 -20121202_HOU@TEN,2,32,0,HOU,TEN,2,3,92,(2:00) M.Schaub pass short middle to A.Johnson to HST 29 for 21 yards (T.Shaw).,21,3,2012 -20121202_HOU@TEN,2,31,32,HOU,TEN,1,10,71,(1:32) (Shotgun) M.Schaub pass short left to A.Johnson to HST 40 for 11 yards (A.Verner).,21,3,2012 -20121202_HOU@TEN,2,31,24,HOU,TEN,1,10,60,(1:24) M.Schaub pass incomplete short middle to J.Casey.,21,3,2012 -20121202_HOU@TEN,2,31,19,HOU,TEN,2,10,60,(1:19) (Shotgun) PENALTY on HST-M.Schaub Delay of Game 5 yards enforced at HST 40 - No Play.,21,3,2012 -20121202_HOU@TEN,2,31,19,HOU,TEN,2,15,65,(1:19) M.Schaub scrambles up the middle to HST 43 for 8 yards (W.Witherspoon).,21,3,2012 -20121202_HOU@TEN,2,30,45,HOU,TEN,3,7,57,(:45) (Shotgun) M.Schaub pass short right to A.Foster pushed ob at HST 46 for 3 yards (J.Babineaux).,21,3,2012 -20121202_HOU@TEN,2,30,39,HOU,TEN,4,4,54,(:39) (Punt formation) D.Jones punts 39 yards to TEN 15 Center-J.Weeks. D.Reynaud to TEN 22 for 7 yards (J.Nading).,21,3,2012 -20121202_HOU@TEN,2,30,28,TEN,HOU,1,10,78,(:28) (Shotgun) J.Locker pass short middle to J.Cook to TEN 29 for 7 yards (G.Quin). PENALTY on HST-J.Watt Illegal Use of Hands 5 yards enforced at TEN 22 - No Play.,3,21,2012 -20121202_HOU@TEN,2,30,22,TEN,HOU,1,10,73,(:22) J.Locker sacked at TEN 26 for -1 yards (W.Mercilus).,3,21,2012 -20121202_HOU@TEN,2,30,16,TEN,HOU,2,11,74,(:16) (Shotgun) J.Locker pass short right to C.Johnson ran ob at TEN 29 for 3 yards (B.Harris).,3,21,2012 -20121202_HOU@TEN,2,30,10,TEN,HOU,3,8,71,(:10) (Shotgun) J.Locker pass short right intended for K.Wright INTERCEPTED by G.Quin (J.Watt) [C.Barwin] at TEN 41. G.Quin to TEN 19 for 22 yards (K.Britt).,3,21,2012 -20121202_HOU@TEN,3,30,0,HOU,TEN,,,71,S.Graham kicks 64 yards from HST 35 to TEN 1. D.Reynaud to TEN 36 for 35 yards (B.Braman).,21,3,2012 -20121202_HOU@TEN,3,29,50,TEN,HOU,1,10,64,(14:50) C.Johnson right tackle to TEN 34 for -2 yards (J.Watt).,3,21,2012 -20121202_HOU@TEN,3,29,15,TEN,HOU,2,12,66,(14:15) J.Locker sacked at TEN 25 for -9 yards (A.Smith).,3,21,2012 -20121202_HOU@TEN,3,28,48,TEN,HOU,3,21,75,(13:48) (Shotgun) C.Johnson up the middle to TEN 37 for 12 yards (G.Quin).,3,21,2012 -20121202_HOU@TEN,3,28,7,TEN,HOU,4,9,63,(13:07) (Punt formation) B.Kern punts 47 yards to HST 16 Center-B.Brinkley. K.Martin to HST 29 for 13 yards (T.Thompson; C.Stevens).,3,21,2012 -20121202_HOU@TEN,3,27,55,HOU,TEN,1,10,71,(12:55) M.Schaub pass incomplete short middle to O.Daniels (A.Ayers).,21,3,2012 -20121202_HOU@TEN,3,27,52,HOU,TEN,2,10,71,(12:52) A.Foster left guard to HST 36 for 7 yards (D.Morgan).,21,3,2012 -20121202_HOU@TEN,3,27,17,HOU,TEN,3,3,64,(12:17) (Shotgun) M.Schaub pass short right to A.Foster to HST 44 for 8 yards (J.Casey; J.Babineaux).,21,3,2012 -20121202_HOU@TEN,3,26,34,HOU,TEN,1,10,56,(11:34) J.Forsett right tackle to HST 46 for 2 yards (T.Shaw).,21,3,2012 -20121202_HOU@TEN,3,26,0,HOU,TEN,2,8,54,(11:00) M.Schaub pass short left to L.Jean ran ob at TEN 41 for 13 yards. PENALTY on HST-L.Jean Offensive Pass Interference 10 yards enforced at HST 46 - No Play.,21,3,2012 -20121202_HOU@TEN,3,25,38,HOU,TEN,2,18,64,(10:38) A.Foster left guard to HST 46 for 10 yards (W.Witherspoon). PENALTY on HST-W.Smith Offensive Holding 10 yards enforced at HST 36 - No Play.,21,3,2012 -20121202_HOU@TEN,3,25,13,HOU,TEN,2,28,74,(10:13) J.Forsett left end to HST 40 for 14 yards (M.Griffin).,21,3,2012 -20121202_HOU@TEN,3,24,39,HOU,TEN,3,14,60,(9:39) M.Schaub pass incomplete short right to O.Daniels.,21,3,2012 -20121202_HOU@TEN,3,24,32,HOU,TEN,4,14,60,(9:32) (Punt formation) D.Jones punts 46 yards to TEN 14 Center-J.Weeks. D.Reynaud to TEN 35 for 21 yards (B.Ruud). PENALTY on TEN-M.Griffin Illegal Block Above the Waist 10 yards enforced at TEN 29.,21,3,2012 -20121202_HOU@TEN,3,24,20,TEN,HOU,1,10,81,(9:20) J.Locker pass incomplete short right to J.Cook (J.Watt).,3,21,2012 -20121202_HOU@TEN,3,24,17,TEN,HOU,2,10,81,(9:17) J.Locker pass incomplete short right to K.Britt. TEN-M.Roos was injured during the play.,3,21,2012 -20121202_HOU@TEN,3,24,13,TEN,HOU,3,10,81,(9:13) (Shotgun) J.Locker scrambles left guard to TEN 34 for 15 yards (A.Smith). FUMBLES (A.Smith) RECOVERED by HST-W.Mercilus at TEN 36. The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,21,2012 -20121202_HOU@TEN,3,24,1,HOU,TEN,1,10,36,(9:01) A.Foster left guard to TEN 30 for 6 yards (W.Witherspoon).,21,3,2012 -20121202_HOU@TEN,3,23,23,HOU,TEN,2,4,30,(8:23) A.Foster left guard to TEN 28 for 2 yards (J.Casey). FUMBLES (J.Casey) and recovers at TEN 28. A.Foster to TEN 28 for no gain (S.Marks).,21,3,2012 -20121202_HOU@TEN,3,22,42,HOU,TEN,3,2,28,(7:42) M.Schaub pass short right to A.Foster to TEN 32 for -4 yards (J.McCourty).,21,3,2012 -20121202_HOU@TEN,3,22,0,HOU,TEN,4,6,32,(7:00) (Field Goal formation) S.Graham 50 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,21,3,2012 -20121202_HOU@TEN,3,22,0,HOU,TEN,,,32,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,24,3,2012 -20121202_HOU@TEN,3,21,54,TEN,HOU,1,10,80,(6:54) (Shotgun) J.Locker sacked at TEN 12 for -8 yards (B.Ruud). Penalty on TEN-D.Lutui Offensive Holding declined.,3,24,2012 -20121202_HOU@TEN,3,21,29,TEN,HOU,2,18,88,(6:29) (Shotgun) J.Locker pass short left to K.Wright to TEN 18 for 6 yards (G.Quin).,3,24,2012 -20121202_HOU@TEN,3,20,49,TEN,HOU,3,12,82,(5:49) J.Locker sacked at TEN 13 for -5 yards (W.Mercilus).,3,24,2012 -20121202_HOU@TEN,3,20,8,TEN,HOU,4,17,87,(5:08) (Punt formation) B.Kern punts 42 yards to HST 45 Center-B.Brinkley. K.Martin pushed ob at TEN 47 for 8 yards (C.Stevens). PENALTY on HST-R.Carmichael Personal Foul 15 yards enforced at HST 40.,3,24,2012 -20121202_HOU@TEN,3,19,56,HOU,TEN,1,10,75,(4:56) J.Forsett right end to HST 36 for 11 yards (M.Griffin).,24,3,2012 -20121202_HOU@TEN,3,19,22,HOU,TEN,1,10,64,(4:22) J.Forsett left end to HST 36 for no gain (S.Marks).,24,3,2012 -20121202_HOU@TEN,3,18,40,HOU,TEN,2,10,64,(3:40) M.Schaub pass incomplete short right to A.Johnson.,24,3,2012 -20121202_HOU@TEN,3,18,33,HOU,TEN,3,10,64,(3:33) (Shotgun) M.Schaub pass incomplete short left to O.Daniels.,24,3,2012 -20121202_HOU@TEN,3,18,27,HOU,TEN,4,10,64,(3:27) (Punt formation) D.Jones punts 64 yards to end zone Center-J.Weeks Touchback.,24,3,2012 -20121202_HOU@TEN,3,18,19,TEN,HOU,1,10,80,(3:19) J.Locker pass short left to K.Britt to TEN 26 for 6 yards (G.Quin; D.Sharpton).,3,24,2012 -20121202_HOU@TEN,3,17,54,TEN,HOU,2,4,74,(2:54) (No Huddle Shotgun) J.Locker pass short right to J.Cook to TEN 38 for 12 yards (B.Harris; D.Manning).,3,24,2012 -20121202_HOU@TEN,3,17,30,TEN,HOU,1,10,62,(2:30) (No Huddle Shotgun) J.Locker pass deep right to K.Wright to HST 24 for 38 yards (B.Harris).,3,24,2012 -20121202_HOU@TEN,3,17,1,TEN,HOU,1,10,24,(2:01) (No Huddle Shotgun) J.Locker pass short middle to J.Cook to HST 3 for 21 yards (G.Quin; K.Jackson). PENALTY on TEN-K.Matthews Offensive Holding 10 yards enforced at HST 24 - No Play.,3,24,2012 -20121202_HOU@TEN,3,16,40,TEN,HOU,1,20,34,(1:40) (Shotgun) J.Locker pass deep right to K.Britt for 34 yards TOUCHDOWN.,3,24,2012 -20121202_HOU@TEN,3,16,40,TEN,HOU,,,34,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,24,2012 -20121202_HOU@TEN,3,16,40,TEN,HOU,,,34,R.Bironas kicks 60 yards from TEN 35 to HST 5. K.Martin to HST 19 for 14 yards (T.Wilson).,10,24,2012 -20121202_HOU@TEN,3,16,28,HOU,TEN,1,10,81,(1:28) A.Foster left guard to HST 21 for 2 yards (A.Ayers).,24,10,2012 -20121202_HOU@TEN,3,15,52,HOU,TEN,2,8,79,(:52) M.Schaub pass deep middle to O.Daniels to HST 40 for 19 yards (J.Babineaux).,24,10,2012 -20121202_HOU@TEN,3,15,13,HOU,TEN,1,10,60,(:13) A.Foster left end to HST 40 for no gain (A.Verner).,24,10,2012 -20121202_HOU@TEN,4,15,0,HOU,TEN,2,10,60,(15:00) M.Schaub pass short middle to M.Schaub to HST 34 for -6 yards (S.Marks).,24,10,2012 -20121202_HOU@TEN,4,14,22,HOU,TEN,3,16,66,(14:22) (Shotgun) M.Schaub pass short middle to K.Walter to HST 39 for 5 yards (W.Witherspoon).,24,10,2012 -20121202_HOU@TEN,4,13,45,HOU,TEN,4,11,61,(13:45) (Punt formation) D.Jones punts 55 yards to TEN 6 Center-J.Weeks. D.Reynaud to TEN 19 for 13 yards (S.Keo).,24,10,2012 -20121202_HOU@TEN,4,13,34,TEN,HOU,1,10,81,(13:34) (Shotgun) J.Locker pass incomplete short left to N.Washington.,10,24,2012 -20121202_HOU@TEN,4,13,29,TEN,HOU,2,10,81,(13:29) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 26 for 7 yards (Q.Demps).,10,24,2012 -20121202_HOU@TEN,4,12,47,TEN,HOU,3,3,74,(12:47) (Shotgun) J.Locker pass deep right to N.Washington pushed ob at HST 25 for 49 yards (Q.Demps) [D.Sharpton].,10,24,2012 -20121202_HOU@TEN,4,12,21,TEN,HOU,1,10,25,(12:21) (Shotgun) C.Johnson right guard to HST 21 for 4 yards (S.Cody).,10,24,2012 -20121202_HOU@TEN,4,11,57,TEN,HOU,2,6,21,(11:57) J.Locker pass short right to K.Wright to HST 14 for 7 yards (R.Carmichael).,10,24,2012 -20121202_HOU@TEN,4,11,30,TEN,HOU,1,10,14,(11:30) (No Huddle Shotgun) J.Locker pass short right to J.Cook to HST 7 for 7 yards (R.Carmichael).,10,24,2012 -20121202_HOU@TEN,4,10,49,TEN,HOU,2,3,7,(10:49) (Shotgun) J.Locker pass incomplete short left to K.Britt (K.Jackson).,10,24,2012 -20121202_HOU@TEN,4,10,46,TEN,HOU,3,3,7,(10:46) (Shotgun) J.Locker pass incomplete short left to J.Cook.,10,24,2012 -20121202_HOU@TEN,4,10,42,TEN,HOU,4,3,7,(10:42) (Shotgun) J.Locker sacked at HST 19 for -12 yards. FUMBLES RECOVERED by HST-T.Dobbins at HST 22. T.Dobbins to HST 22 for no gain (D.Lutui).,10,24,2012 -20121202_HOU@TEN,4,10,33,HOU,TEN,1,10,78,(10:33) B.Tate right end to HST 30 for 8 yards (S.Marks).,24,10,2012 -20121202_HOU@TEN,4,9,50,HOU,TEN,2,2,70,(9:50) B.Tate left tackle to HST 33 for 3 yards (J.Wynn).,24,10,2012 -20121202_HOU@TEN,4,9,5,HOU,TEN,1,10,67,(9:05) J.Forsett right guard to HST 35 for 2 yards (A.Ayers).,24,10,2012 -20121202_HOU@TEN,4,8,26,HOU,TEN,2,8,65,(8:26) J.Forsett left tackle to HST 40 for 5 yards (S.Solomon).,24,10,2012 -20121202_HOU@TEN,4,7,41,HOU,TEN,3,3,60,(7:41) (Shotgun) M.Schaub pass incomplete short right to K.Martin.,24,10,2012 -20121202_HOU@TEN,4,7,38,HOU,TEN,4,3,60,(7:38) (Punt formation) D.Jones punts 53 yards to TEN 7 Center-J.Weeks. D.Reynaud to TEN 23 for 16 yards (B.Ruud).,24,10,2012 -20121202_HOU@TEN,4,7,26,TEN,HOU,1,10,77,(7:26) (Shotgun) J.Locker scrambles up the middle to HST 49 for 28 yards (K.Jackson). PENALTY on TEN-K.Matthews Offensive Holding 10 yards enforced at TEN 23 - No Play.,10,24,2012 -20121202_HOU@TEN,4,6,58,TEN,HOU,1,20,87,(6:58) (Shotgun) J.Locker pass short middle to C.Johnson pushed ob at TEN 18 for 5 yards (T.Dobbins).,10,24,2012 -20121202_HOU@TEN,4,6,37,TEN,HOU,2,15,82,(6:37) (No Huddle Shotgun) J.Locker pass short right to K.Wright to TEN 22 for 4 yards (R.Carmichael).,10,24,2012 -20121202_HOU@TEN,4,6,9,TEN,HOU,3,11,78,(6:09) (No Huddle Shotgun) J.Locker pass deep middle to N.Washington to 50 for 28 yards (B.Harris).,10,24,2012 -20121202_HOU@TEN,4,5,42,TEN,HOU,1,10,50,(5:42) (No Huddle Shotgun) J.Locker pass short right to J.Cook to HST 47 for 3 yards (G.Quin). PENALTY on HST Defensive 12 On-field 5 yards enforced at 50 - No Play.,10,24,2012 -20121202_HOU@TEN,4,5,18,TEN,HOU,1,5,45,(5:18) (Shotgun) J.Locker pass incomplete deep left to K.Britt.,10,24,2012 -20121202_HOU@TEN,4,5,12,TEN,HOU,2,5,45,(5:12) (No Huddle Shotgun) J.Locker pass incomplete short left to N.Washington. PENALTY on HST-B.Harris Defensive Pass Interference 7 yards enforced at HST 45 - No Play.,10,24,2012 -20121202_HOU@TEN,4,5,9,TEN,HOU,1,10,38,(5:09) (No Huddle Shotgun) J.Locker pass incomplete deep middle to J.Cook.,10,24,2012 -20121202_HOU@TEN,4,5,5,TEN,HOU,2,10,38,(5:05) (Shotgun) J.Locker scrambles up the middle to HST 33 for 5 yards (C.Barwin).,10,24,2012 -20121202_HOU@TEN,4,4,35,TEN,HOU,3,5,33,(4:35) (No Huddle Shotgun) J.Locker pass incomplete short right to K.Wright.,10,24,2012 -20121202_HOU@TEN,4,4,31,TEN,HOU,4,5,33,(4:31) J.Locker pass incomplete short right to K.Wright (R.Carmichael).,10,24,2012 -20121202_HOU@TEN,4,4,28,HOU,TEN,1,10,67,(4:28) A.Foster right guard to HST 35 for 2 yards (J.Casey).,24,10,2012 -20121202_HOU@TEN,4,4,20,HOU,TEN,2,8,65,(4:20) A.Foster up the middle to HST 37 for 2 yards (D.Morgan).,24,10,2012 -20121202_HOU@TEN,4,4,16,HOU,TEN,3,6,63,(4:16) (Shotgun) M.Schaub pass deep right to K.Walter to TEN 45 for 18 yards (J.McCourty).,24,10,2012 -20121202_HOU@TEN,4,4,8,HOU,TEN,1,10,45,(4:08) J.Forsett right guard to TEN 40 for 5 yards (J.Babineaux).,24,10,2012 -20121202_HOU@TEN,4,4,1,HOU,TEN,2,5,40,(4:01) J.Forsett left end to TEN 40 for no gain (J.Babineaux).,24,10,2012 -20121202_HOU@TEN,4,3,20,HOU,TEN,3,5,40,(3:20) (Shotgun) A.Foster up the middle to TEN 38 for 2 yards (M.Martin).,24,10,2012 -20121202_HOU@TEN,4,2,35,HOU,TEN,4,3,38,(2:35) (Punt formation) D.Jones punts 32 yards to TEN 6 Center-J.Weeks downed by HST-D.Posey.,24,10,2012 -20121202_HOU@TEN,4,2,25,TEN,HOU,1,10,94,(2:25) (Shotgun) J.Locker pass short left to K.Wright to TEN 16 for 10 yards (R.Carmichael; D.Sharpton).,10,24,2012 -20121202_HOU@TEN,4,2,5,TEN,HOU,1,10,84,(2:05) (No Huddle Shotgun) J.Locker pass short right intended for K.Britt INTERCEPTED by D.Sharpton (Q.Demps) at TEN 29. D.Sharpton to TEN 31 for -2 yards (K.Britt). PENALTY on HST-A.Smith Personal Foul 15 yards enforced at TEN 31. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,10,24,2012 -20121202_HOU@TEN,4,1,57,HOU,TEN,1,10,46,(1:57) M.Schaub kneels to TEN 47 for -1 yards.,24,10,2012 -20121202_HOU@TEN,4,1,16,HOU,TEN,2,11,47,(1:16) M.Schaub kneels to TEN 48 for -1 yards.,24,10,2012 -20121202_HOU@TEN,4,0,37,HOU,TEN,3,12,48,(:37) M.Schaub kneels to TEN 49 for -1 yards.,24,10,2012 -20121202_HOU@TEN,4,0,37,HOU,TEN,,,48,                      ,24,10,2012 -20121202_TB@DEN,1,0,0,DEN,TB,,,48,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20121202_TB@DEN,1,60,0,TB,DEN,1,10,80,(15:00) J.Freeman pass short right to M.Williams to TB 25 for 5 yards (C.Bailey).,0,0,2012 -20121202_TB@DEN,1,59,18,TB,DEN,2,5,75,(14:18) D.Martin right tackle to TB 28 for 3 yards (V.Miller).,0,0,2012 -20121202_TB@DEN,1,58,31,TB,DEN,3,2,72,(13:31) D.Martin left tackle to TB 29 for 1 yard (K.Vickerson).,0,0,2012 -20121202_TB@DEN,1,57,59,TB,DEN,4,1,71,(12:59) M.Koenen punts 53 yards to DEN 18 Center-A.Economos. T.Holliday pushed ob at DEN 35 for 17 yards (D.Ware).,0,0,2012 -20121202_TB@DEN,1,57,47,DEN,TB,1,10,65,(12:47) (Shotgun) P.Manning pass short left to D.Thomas to DEN 43 for 8 yards (R.Barber).,0,0,2012 -20121202_TB@DEN,1,57,21,DEN,TB,2,2,57,(12:21) (Shotgun) P.Manning pass short left to J.Tamme pushed ob at DEN 49 for 6 yards (E.Biggers).,0,0,2012 -20121202_TB@DEN,1,57,7,DEN,TB,1,10,51,(12:07) PENALTY on TB-L.Johnson Illegal Contact 5 yards enforced at DEN 49 - No Play.,0,0,2012 -20121202_TB@DEN,1,57,2,DEN,TB,1,10,46,(12:02) K.Moreno right tackle to TB 47 for -1 yards (L.David).,0,0,2012 -20121202_TB@DEN,1,56,40,DEN,TB,2,11,47,(11:40) (Shotgun) P.Manning pass short middle to J.Tamme to TB 37 for 10 yards (L.David).,0,0,2012 -20121202_TB@DEN,1,56,3,DEN,TB,3,1,37,(11:03) (Shotgun) P.Manning pass short middle to E.Decker to TB 25 for 12 yards (E.Biggers).,0,0,2012 -20121202_TB@DEN,1,55,31,DEN,TB,1,10,25,(10:31) (Shotgun) P.Manning pass incomplete deep left to D.Thomas.,0,0,2012 -20121202_TB@DEN,1,55,26,DEN,TB,2,10,25,(10:26) K.Moreno left guard to TB 23 for 2 yards (G.McCoy).,0,0,2012 -20121202_TB@DEN,1,54,46,DEN,TB,3,8,23,(9:46) (Shotgun) P.Manning pass incomplete short right to M.Willis (R.Barber). PENALTY on TB-R.Barber Defensive Pass Interference 5 yards enforced at TB 23 - No Play.,0,0,2012 -20121202_TB@DEN,1,54,42,DEN,TB,1,10,18,(9:42) (Shotgun) PENALTY on TB Defensive 12 On-field 5 yards enforced at TB 18 - No Play.,0,0,2012 -20121202_TB@DEN,1,54,42,DEN,TB,1,5,13,(9:42) (Shotgun) P.Manning pass incomplete short right to J.Dreessen.,0,0,2012 -20121202_TB@DEN,1,54,37,DEN,TB,2,5,13,(9:37) K.Moreno left tackle to TB 1 for 12 yards (M.Barron; L.David).,0,0,2012 -20121202_TB@DEN,1,53,53,DEN,TB,1,1,1,(8:53) P.Manning pass short left to M.Unrein for 1 yard TOUCHDOWN.,0,0,2012 -20121202_TB@DEN,1,53,53,DEN,TB,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121202_TB@DEN,1,53,53,DEN,TB,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,0,2012 -20121202_TB@DEN,1,53,47,TB,DEN,1,10,80,(8:47) D.Martin left guard to TB 25 for 5 yards (J.Bannan). PENALTY on DEN-J.Bannan Face Mask (15 Yards) 15 yards enforced at TB 25.,0,7,2012 -20121202_TB@DEN,1,53,18,TB,DEN,1,10,60,(8:18) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson.,0,7,2012 -20121202_TB@DEN,1,53,14,TB,DEN,2,10,60,(8:14) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at DEN 34 for 26 yards (C.Bailey).,0,7,2012 -20121202_TB@DEN,1,52,36,TB,DEN,1,10,34,(7:36) D.Martin left tackle to DEN 25 for 9 yards (K.Brooking).,0,7,2012 -20121202_TB@DEN,1,51,55,TB,DEN,2,1,25,(6:55) J.Freeman pass short left to L.Stocker to DEN 14 for 11 yards (V.Miller).,0,7,2012 -20121202_TB@DEN,1,51,19,TB,DEN,1,10,14,(6:19) D.Martin right tackle to DEN 15 for -1 yards (M.Adams; D.Wolfe).,0,7,2012 -20121202_TB@DEN,1,50,33,TB,DEN,2,11,15,(5:33) (Shotgun) J.Freeman pass incomplete short middle to T.Underwood.,0,7,2012 -20121202_TB@DEN,1,50,28,TB,DEN,3,11,15,(5:28) (Shotgun) J.Freeman pass short middle to M.Williams to DEN 14 for 1 yard (C.Harris).,0,7,2012 -20121202_TB@DEN,1,49,46,TB,DEN,4,10,14,(4:46) C.Barth 31 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,7,2012 -20121202_TB@DEN,1,49,46,TB,DEN,,,14,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,3,7,2012 -20121202_TB@DEN,1,49,41,DEN,TB,1,10,80,(4:41) (Shotgun) P.Manning pass short left to K.Moreno to DEN 20 for no gain (L.David). PENALTY on DEN-O.Franklin Face Mask (15 Yards) 10 yards enforced at DEN 20 - No Play.,7,3,2012 -20121202_TB@DEN,1,49,41,DEN,TB,1,20,90,(4:41) K.Moreno up the middle to DEN 14 for 4 yards (A.Black).,7,3,2012 -20121202_TB@DEN,1,48,36,DEN,TB,2,16,86,(3:36) (Shotgun) P.Manning pass short middle to J.Tamme to DEN 24 for 10 yards (D.Te'o-Nesheim; R.Barber).,7,3,2012 -20121202_TB@DEN,1,48,1,DEN,TB,3,6,80,(3:01) (Shotgun) P.Manning Aborted. D.Koppen FUMBLES at DEN 20 recovered by DEN-P.Manning at DEN 20. P.Manning pass incomplete deep left to M.Willis.,7,3,2012 -20121202_TB@DEN,1,47,52,DEN,TB,4,6,76,(2:52) B.Colquitt punts 46 yards to TB 30 Center-A.Brewer out of bounds.,7,3,2012 -20121202_TB@DEN,1,47,45,TB,DEN,1,10,70,(2:45) D.Martin left tackle to TB 32 for 2 yards (E.Dumervil). DEN-M.Unrein was injured during the play. PENALTY on DEN-M.Unrein Illegal Use of Hands 5 yards enforced at TB 32.,3,7,2012 -20121202_TB@DEN,1,47,24,TB,DEN,1,10,63,(2:24) J.Freeman pass deep middle to M.Williams to DEN 23 for 40 yards (C.Harris).,3,7,2012 -20121202_TB@DEN,1,46,40,TB,DEN,1,10,23,(1:40) D.Martin left tackle to DEN 16 for 7 yards (C.Bailey; R.Moore).,3,7,2012 -20121202_TB@DEN,1,45,58,TB,DEN,2,3,16,(:58) (Shotgun) D.Martin up the middle to DEN 11 for 5 yards (W.Woodyard; D.Williams).,3,7,2012 -20121202_TB@DEN,1,45,20,TB,DEN,1,10,11,(:20) J.Freeman pass short right to D.Clark for 11 yards TOUCHDOWN.,3,7,2012 -20121202_TB@DEN,1,45,20,TB,DEN,,,11,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,3,7,2012 -20121202_TB@DEN,1,45,20,TB,DEN,,,11,M.Koenen kicks 72 yards from TB 35 to DEN -7. T.Holliday to DEN 19 for 26 yards (A.Black).,10,7,2012 -20121202_TB@DEN,1,45,7,DEN,TB,1,10,81,(:07) K.Moreno left tackle to DEN 28 for 9 yards (D.Bowers; L.David).,7,10,2012 -20121202_TB@DEN,2,45,0,DEN,TB,2,1,72,(15:00) K.Moreno up the middle to DEN 25 for -3 yards (D.Bowers).,7,10,2012 -20121202_TB@DEN,2,44,45,DEN,TB,3,4,75,(14:45) K.Moreno up the middle to DEN 25 for no gain (A.Morgan; M.Bennett). Denver challenged the too many players on field ruling and the play was REVERSED. K.Moreno up the middle to DEN 25 for no gain (A.Morgan; M.Bennett). PENALTY on TB Defensive 12 On-field 5 yards enforced at DEN 25 - No Play.,7,10,2012 -20121202_TB@DEN,2,44,7,DEN,TB,1,10,70,(14:07) (Shotgun) P.Manning pass short left to K.Moreno to DEN 32 for 2 yards (M.Foster).,7,10,2012 -20121202_TB@DEN,2,43,40,DEN,TB,2,8,68,(13:40) (Shotgun) P.Manning pass deep right to D.Thomas to TB 40 for 28 yards (A.Black).,7,10,2012 -20121202_TB@DEN,2,43,7,DEN,TB,1,10,40,(13:07) (Shotgun) K.Moreno left guard to TB 34 for 6 yards (G.McCoy).,7,10,2012 -20121202_TB@DEN,2,42,37,DEN,TB,2,4,34,(12:37) (Shotgun) P.Manning pass short middle to J.Tamme to TB 20 for 14 yards (R.Barber). PENALTY on DEN-C.Kuper Offensive Holding 10 yards enforced at TB 34 - No Play.,7,10,2012 -20121202_TB@DEN,2,42,14,DEN,TB,2,14,44,(12:14) (Shotgun) L.Ball left end to TB 46 for -2 yards (M.Bennett).,7,10,2012 -20121202_TB@DEN,2,41,27,DEN,TB,3,16,46,(11:27) L.Ball up the middle to TB 46 for no gain (D.Watson).,7,10,2012 -20121202_TB@DEN,2,40,46,DEN,TB,4,16,46,(10:46) B.Colquitt punts 38 yards to TB 8 Center-A.Brewer fair catch by R.Parrish.,7,10,2012 -20121202_TB@DEN,2,40,37,TB,DEN,1,10,92,(10:37) D.Martin left guard to TB 9 for 1 yard (S.Siliga).,10,7,2012 -20121202_TB@DEN,2,39,58,TB,DEN,2,9,91,(9:58) J.Freeman pass short right to L.Stocker to TB 17 for 8 yards (D.Williams; C.Harris).,10,7,2012 -20121202_TB@DEN,2,39,33,TB,DEN,3,1,83,(9:33) J.Freeman up the middle to TB 19 for 2 yards (M.Unrein).,10,7,2012 -20121202_TB@DEN,2,38,52,TB,DEN,1,10,81,(8:52) D.Martin up the middle to TB 19 for no gain (J.Leonhard W.Woodyard).,10,7,2012 -20121202_TB@DEN,2,38,11,TB,DEN,2,10,81,(8:11) D.Martin up the middle to TB 21 for 2 yards (C.Harris V.Miller).,10,7,2012 -20121202_TB@DEN,2,37,28,TB,DEN,3,8,79,(7:28) (Shotgun) J.Freeman pass deep left to V.Jackson to TB 40 for 19 yards (R.Moore).,10,7,2012 -20121202_TB@DEN,2,36,52,TB,DEN,1,10,60,(6:52) D.Martin right guard to TB 41 for 1 yard (K.Vickerson; W.Woodyard).,10,7,2012 -20121202_TB@DEN,2,36,12,TB,DEN,2,9,59,(6:12) J.Freeman pass short middle to D.Martin to TB 45 for 4 yards (W.Woodyard; D.Williams) [E.Dumervil]. PENALTY on TB-D.Dotson Offensive Holding 10 yards enforced at TB 41 - No Play.,10,7,2012 -20121202_TB@DEN,2,35,40,TB,DEN,2,19,69,(5:40) (Shotgun) D.Martin left tackle to TB 36 for 5 yards (C.Harris). PENALTY on DEN-E.Dumervil Defensive Offside 5 yards enforced at TB 31 - No Play.,10,7,2012 -20121202_TB@DEN,2,35,13,TB,DEN,2,14,64,(5:13) (Shotgun) J.Freeman pass incomplete short left to D.Clark (D.Williams).,10,7,2012 -20121202_TB@DEN,2,35,8,TB,DEN,3,14,64,(5:08) (Shotgun) J.Freeman pass deep left intended for V.Jackson INTERCEPTED by C.Harris [V.Miller] at DEN 46. C.Harris to DEN 46 for no gain (V.Jackson). PENALTY on DEN-V.Miller Roughing the Passer 15 yards enforced at TB 36 - No Play.,10,7,2012 -20121202_TB@DEN,2,35,0,TB,DEN,1,10,49,(5:00) J.Freeman pass incomplete short left to E.Lorig.,10,7,2012 -20121202_TB@DEN,2,34,52,TB,DEN,2,10,49,(4:52) J.Freeman pass incomplete short right to V.Jackson [V.Miller].,10,7,2012 -20121202_TB@DEN,2,34,47,TB,DEN,3,10,49,(4:47) (Shotgun) J.Freeman pass incomplete short left to D.Ware. Penalty on TB-J.Zuttah Offensive Holding declined.,10,7,2012 -20121202_TB@DEN,2,34,44,TB,DEN,4,10,49,(4:44) M.Koenen punts 39 yards to DEN 10 Center-A.Economos fair catch by J.Leonhard.,10,7,2012 -20121202_TB@DEN,2,34,35,DEN,TB,1,10,90,(4:35) (Shotgun) P.Manning pass short left to K.Moreno to DEN 13 for 3 yards (E.Biggers).,7,10,2012 -20121202_TB@DEN,2,33,56,DEN,TB,2,7,87,(3:56) K.Moreno left tackle to DEN 29 for 16 yards (A.Black).,7,10,2012 -20121202_TB@DEN,2,33,16,DEN,TB,1,10,71,(3:16) P.Manning pass short left to D.Thomas to DEN 48 for 19 yards (M.Barron).,7,10,2012 -20121202_TB@DEN,2,33,16,DEN,TB,1,10,52,(3:16) (Shotgun) P.Manning pass short left to M.Willis to TB 43 for 9 yards (L.David).,7,10,2012 -20121202_TB@DEN,2,32,12,DEN,TB,2,1,43,(2:12) R.Hillman right guard to TB 44 for -1 yards (G.Gibson).,7,10,2012 -20121202_TB@DEN,2,32,0,DEN,TB,3,2,44,(2:00) (Shotgun) P.Manning pass incomplete short left to K.Moreno (L.David).,7,10,2012 -20121202_TB@DEN,2,31,56,DEN,TB,4,2,44,(1:56) B.Colquitt punts 40 yards to TB 4 Center-A.Brewer downed by DEN-N.Irving.,7,10,2012 -20121202_TB@DEN,2,31,45,TB,DEN,1,10,96,(1:45) D.Martin up the middle to TB 7 for 3 yards (J.Leonhard; J.Bannan).,10,7,2012 -20121202_TB@DEN,2,31,0,TB,DEN,2,7,93,(1:00) D.Martin right guard to TB 10 for 3 yards (E.Dumervil).,10,7,2012 -20121202_TB@DEN,2,30,15,TB,DEN,3,4,90,(:15) (Shotgun) D.Martin up the middle to TB 17 for 7 yards (C.Harris).,10,7,2012 -20121202_TB@DEN,3,30,0,TB,DEN,,,90,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,10,7,2012 -20121202_TB@DEN,3,30,0,DEN,TB,1,10,80,(15:00) P.Manning pass short middle to M.Willis to DEN 29 for 9 yards (M.Barron).,7,10,2012 -20121202_TB@DEN,3,29,32,DEN,TB,2,1,71,(14:32) K.Moreno right tackle to DEN 29 for no gain (D.Te'o-Nesheim; L.David). PENALTY on DEN-Z.Beadles Offensive Holding 10 yards enforced at DEN 29 - No Play.,7,10,2012 -20121202_TB@DEN,3,29,5,DEN,TB,2,11,81,(14:05) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 24 for 5 yards (R.Barber).,7,10,2012 -20121202_TB@DEN,3,28,35,DEN,TB,3,6,76,(13:35) (Shotgun) PENALTY on TB-M.Bennett Neutral Zone Infraction 5 yards enforced at DEN 24 - No Play.,7,10,2012 -20121202_TB@DEN,3,28,20,DEN,TB,3,1,71,(13:20) (Shotgun) P.Manning pass short right to K.Moreno to DEN 33 for 4 yards (M.Bennett).,7,10,2012 -20121202_TB@DEN,3,27,39,DEN,TB,1,10,67,(12:39) P.Manning pass incomplete short right to M.Willis.,7,10,2012 -20121202_TB@DEN,3,27,33,DEN,TB,2,10,67,(12:33) (Shotgun) P.Manning pass short middle to M.Willis to DEN 37 for 4 yards (R.Barber E.Biggers).,7,10,2012 -20121202_TB@DEN,3,27,0,DEN,TB,3,6,63,(12:00) (Shotgun) P.Manning pass incomplete short right to J.Tamme.,7,10,2012 -20121202_TB@DEN,3,26,55,DEN,TB,4,6,63,(11:55) B.Colquitt punts 55 yards to TB 8 Center-A.Brewer fair catch by R.Parrish.,7,10,2012 -20121202_TB@DEN,3,26,45,TB,DEN,1,10,92,(11:45) D.Martin left guard to TB 10 for 2 yards (V.Miller).,10,7,2012 -20121202_TB@DEN,3,26,4,TB,DEN,2,8,90,(11:04) J.Freeman pass incomplete short right to M.Williams (C.Harris).,10,7,2012 -20121202_TB@DEN,3,26,0,TB,DEN,3,8,90,(11:00) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,10,7,2012 -20121202_TB@DEN,3,25,55,TB,DEN,4,8,90,(10:55) M.Koenen punts 63 yards to DEN 27 Center-A.Economos. T.Holliday pushed ob at DEN 48 for 21 yards (A.Economos).,10,7,2012 -20121202_TB@DEN,3,25,43,DEN,TB,1,10,52,(10:43) (Shotgun) P.Manning pass short right to D.Thomas to TB 39 for 13 yards (L.Johnson).,7,10,2012 -20121202_TB@DEN,3,25,11,DEN,TB,1,10,39,(10:11) P.Manning pass short right to J.Tamme to TB 24 for 15 yards (M.Barron).,7,10,2012 -20121202_TB@DEN,3,24,37,DEN,TB,1,10,24,(9:37) (Shotgun) P.Manning pass incomplete short left to J.Tamme.,7,10,2012 -20121202_TB@DEN,3,24,32,DEN,TB,2,10,24,(9:32) (Shotgun) P.Manning pass incomplete deep right to D.Thomas (L.Johnson). PENALTY on TB-L.Johnson Defensive Pass Interference 16 yards enforced at TB 24 - No Play.,7,10,2012 -20121202_TB@DEN,3,24,27,DEN,TB,1,8,8,(9:27) (Shotgun) P.Manning pass short middle to D.Thomas for 8 yards TOUCHDOWN.,7,10,2012 -20121202_TB@DEN,3,24,27,DEN,TB,,,8,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,10,2012 -20121202_TB@DEN,3,24,27,DEN,TB,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,10,2012 -20121202_TB@DEN,3,24,21,TB,DEN,1,10,80,(9:21) J.Freeman pass incomplete short left to D.Martin.,10,14,2012 -20121202_TB@DEN,3,24,14,TB,DEN,2,10,80,(9:14) (Shotgun) D.Martin up the middle to TB 26 for 6 yards (D.Williams). PENALTY on TB-D.Dotson Offensive Holding 10 yards enforced at TB 20 - No Play.,10,14,2012 -20121202_TB@DEN,3,23,56,TB,DEN,2,20,90,(8:56) J.Freeman pass incomplete deep right to M.Williams (C.Harris).,10,14,2012 -20121202_TB@DEN,3,23,50,TB,DEN,3,20,90,(8:50) (Shotgun) D.Ware right guard to TB 18 for 8 yards (J.Leonhard).,10,14,2012 -20121202_TB@DEN,3,23,13,TB,DEN,4,12,82,(8:13) M.Koenen punts 51 yards to DEN 31 Center-A.Economos. T.Holliday to DEN 43 for 12 yards (D.Gorrer).,10,14,2012 -20121202_TB@DEN,3,23,2,DEN,TB,1,10,57,(8:02) (Shotgun) P.Manning pass short left to J.Tamme to TB 43 for 14 yards (M.Foster).,14,10,2012 -20121202_TB@DEN,3,22,34,DEN,TB,1,10,43,(7:34) (Shotgun) P.Manning pass short middle to K.Moreno to TB 38 for 5 yards (L.David).,14,10,2012 -20121202_TB@DEN,3,21,54,DEN,TB,2,5,38,(6:54) R.Hillman right tackle to TB 32 for 6 yards (L.David).,14,10,2012 -20121202_TB@DEN,3,21,19,DEN,TB,1,10,32,(6:19) (Shotgun) P.Manning pass short left to J.Tamme to TB 23 for 9 yards (E.Biggers).,14,10,2012 -20121202_TB@DEN,3,20,55,DEN,TB,2,1,23,(5:55) R.Hillman left tackle to TB 14 for 9 yards (A.Black). PENALTY on TB-M.Bennett Illegal Use of Hands 5 yards enforced at TB 14.,14,10,2012 -20121202_TB@DEN,3,20,27,DEN,TB,1,9,9,(5:27) K.Moreno left end to TB 10 for -1 yards (L.David).,14,10,2012 -20121202_TB@DEN,3,19,45,DEN,TB,2,10,10,(4:45) (Shotgun) P.Manning pass short middle to D.Thomas for 10 yards TOUCHDOWN.,14,10,2012 -20121202_TB@DEN,3,19,45,DEN,TB,,,10,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,10,2012 -20121202_TB@DEN,3,19,45,DEN,TB,,,10,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,21,10,2012 -20121202_TB@DEN,3,19,39,TB,DEN,1,10,80,(4:39) D.Martin right guard to TB 22 for 2 yards (K.Vickerson).,10,21,2012 -20121202_TB@DEN,3,19,4,TB,DEN,2,8,78,(4:04) J.Freeman pass short right intended for V.Jackson INTERCEPTED by V.Miller [M.Unrein] at TB 26. V.Miller for 26 yards TOUCHDOWN.,10,21,2012 -20121202_TB@DEN,3,19,4,DEN,TB,,,78,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,21,10,2012 -20121202_TB@DEN,3,19,4,DEN,TB,,,78,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,28,10,2012 -20121202_TB@DEN,3,18,56,TB,DEN,1,10,80,(3:56) (Shotgun) J.Freeman pass short right to T.Underwood to TB 32 for 12 yards (C.Bailey).,10,28,2012 -20121202_TB@DEN,3,18,27,TB,DEN,1,10,68,(3:27) (Shotgun) J.Freeman pass short left to D.Martin to TB 34 for 2 yards (D.Trevathan).,10,28,2012 -20121202_TB@DEN,3,17,45,TB,DEN,2,8,66,(2:45) (Shotgun) J.Freeman pass incomplete deep middle to V.Jackson.,10,28,2012 -20121202_TB@DEN,3,17,40,TB,DEN,3,8,66,(2:40) (Shotgun) J.Freeman pass incomplete deep left to M.Williams (J.Leonhard).,10,28,2012 -20121202_TB@DEN,3,17,34,TB,DEN,4,8,66,(2:34) M.Koenen punts 51 yards to DEN 15 Center-A.Economos. T.Holliday to TB 40 for 45 yards (J.Cutrera).,10,28,2012 -20121202_TB@DEN,3,17,16,DEN,TB,1,10,40,(2:16) (Shotgun) P.Manning pass short middle intended for J.Tamme INTERCEPTED by L.David at TB 25. L.David pushed ob at DEN 48 for 27 yards (C.Kuper).,28,10,2012 -20121202_TB@DEN,3,17,6,TB,DEN,1,10,48,(2:06) (Shotgun) J.Freeman pass incomplete short right to D.Clark [E.Dumervil].,10,28,2012 -20121202_TB@DEN,3,17,0,TB,DEN,2,10,48,(2:00) J.Freeman pass short left to V.Jackson to DEN 36 for 12 yards (D.Trevathan).,10,28,2012 -20121202_TB@DEN,3,16,26,TB,DEN,1,10,36,(1:26) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,10,28,2012 -20121202_TB@DEN,3,16,21,TB,DEN,2,10,36,(1:21) (Shotgun) D.Martin up the middle to DEN 32 for 4 yards (D.Wolfe).,10,28,2012 -20121202_TB@DEN,3,15,49,TB,DEN,3,6,32,(:49) (Shotgun) J.Freeman pass short right to M.Williams to DEN 20 for 12 yards (T.Carter). PENALTY on TB-D.Penn Illegal Use of Hands 10 yards enforced at DEN 32 - No Play.,10,28,2012 -20121202_TB@DEN,3,15,19,TB,DEN,3,16,42,(:19) (Shotgun) J.Freeman pass incomplete short right to T.Underwood (J.Leonhard). PENALTY on DEN-E.Dumervil Defensive Offside 5 yards enforced at DEN 42 - No Play.,10,28,2012 -20121202_TB@DEN,3,15,13,TB,DEN,3,11,37,(:13) (Shotgun) J.Freeman scrambles left tackle to DEN 32 for 5 yards (M.Adams).,10,28,2012 -20121202_TB@DEN,4,15,0,TB,DEN,4,6,32,(15:00) C.Barth 50 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,28,2012 -20121202_TB@DEN,4,15,0,TB,DEN,,,32,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,28,2012 -20121202_TB@DEN,4,14,55,DEN,TB,1,10,80,(14:55) (Shotgun) P.Manning pass short left to D.Thomas to DEN 28 for 8 yards (R.Barber; L.Lewis).,28,13,2012 -20121202_TB@DEN,4,14,27,DEN,TB,2,2,72,(14:27) (Shotgun) P.Manning pass short left to J.Tamme to DEN 34 for 6 yards (A.Black).,28,13,2012 -20121202_TB@DEN,4,13,45,DEN,TB,1,10,66,(13:45) K.Moreno right guard to DEN 34 for no gain (G.McCoy).,28,13,2012 -20121202_TB@DEN,4,13,1,DEN,TB,2,10,66,(13:01) (Shotgun) R.Hillman up the middle to DEN 41 for 7 yards (G.McCoy).,28,13,2012 -20121202_TB@DEN,4,12,24,DEN,TB,3,3,59,(12:24) (Shotgun) P.Manning pass short middle to E.Decker to DEN 46 for 5 yards (D.Gorrer).,28,13,2012 -20121202_TB@DEN,4,11,44,DEN,TB,1,10,54,(11:44) K.Moreno up the middle to TB 49 for 5 yards (M.Foster).,28,13,2012 -20121202_TB@DEN,4,11,12,DEN,TB,2,5,49,(11:12) (Shotgun) P.Manning pass short right to J.Tamme to TB 45 for 4 yards (D.Bowers).,28,13,2012 -20121202_TB@DEN,4,10,32,DEN,TB,3,1,45,(10:32) (Shotgun) P.Manning pass short middle to J.Tamme to TB 30 for 15 yards (A.Black).,28,13,2012 -20121202_TB@DEN,4,9,49,DEN,TB,1,10,30,(9:49) R.Hillman right end pushed ob at TB 22 for 8 yards (M.Foster).,28,13,2012 -20121202_TB@DEN,4,9,14,DEN,TB,2,2,22,(9:14) K.Moreno left guard to TB 16 for 6 yards (R.Barber). TB-M.Foster was injured during the play.,28,13,2012 -20121202_TB@DEN,4,8,30,DEN,TB,1,10,16,(8:30) K.Moreno up the middle to TB 12 for 4 yards (A.Hayward).,28,13,2012 -20121202_TB@DEN,4,7,49,DEN,TB,2,6,12,(7:49) P.Manning pass incomplete short right to D.Thomas (A.Black).,28,13,2012 -20121202_TB@DEN,4,7,45,DEN,TB,3,6,12,(7:45) (Shotgun) P.Manning pass incomplete short middle to J.Dreessen.,28,13,2012 -20121202_TB@DEN,4,7,41,DEN,TB,4,6,12,(7:41) M.Prater 31 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,28,13,2012 -20121202_TB@DEN,4,7,41,DEN,TB,,,12,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,13,2012 -20121202_TB@DEN,4,7,36,TB,DEN,1,10,80,(7:36) (Shotgun) J.Freeman pass incomplete short middle to T.Underwood (D.Trevathan).,13,31,2012 -20121202_TB@DEN,4,7,31,TB,DEN,2,10,80,(7:31) (Shotgun) J.Freeman pass short left to D.Martin to TB 34 for 14 yards (V.Miller).,13,31,2012 -20121202_TB@DEN,4,6,58,TB,DEN,1,10,66,(6:58) (Shotgun) J.Freeman pass short right to D.Clark to TB 35 for 1 yard (C.Harris).,13,31,2012 -20121202_TB@DEN,4,6,30,TB,DEN,2,9,65,(6:30) (Shotgun) J.Freeman pass incomplete short right to T.Underwood (C.Bailey).,13,31,2012 -20121202_TB@DEN,4,6,25,TB,DEN,3,9,65,(6:25) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,13,31,2012 -20121202_TB@DEN,4,6,19,TB,DEN,4,9,65,(6:19) (Shotgun) J.Freeman pass incomplete short left to T.Underwood (T.Carter).,13,31,2012 -20121202_TB@DEN,4,6,13,DEN,TB,1,10,35,(6:13) K.Moreno right tackle to TB 35 for no gain (G.Gibson).,31,13,2012 -20121202_TB@DEN,4,5,29,DEN,TB,2,10,35,(5:29) (Shotgun) K.Moreno right tackle to TB 29 for 6 yards (L.Johnson).,31,13,2012 -20121202_TB@DEN,4,4,46,DEN,TB,3,4,29,(4:46) P.Manning pass incomplete short right to J.Tamme (D.Bowers).,31,13,2012 -20121202_TB@DEN,4,4,42,DEN,TB,4,4,29,(4:42) M.Prater 47 yard field goal is No Good Wide Right Center-A.Brewer Holder-B.Colquitt.,31,13,2012 -20121202_TB@DEN,4,4,37,TB,DEN,1,10,63,(4:37) (Shotgun) J.Freeman pass deep right to V.Jackson to DEN 39 for 24 yards (K.Brooking). DEN-V.Miller was injured during the play.,13,31,2012 -20121202_TB@DEN,4,4,10,TB,DEN,1,10,39,(4:10) (Shotgun) J.Freeman sacked at DEN 46 for -7 yards (V.Miller). FUMBLES (V.Miller) and recovers at DEN 46. J.Freeman to DEN 46 for no gain (D.Wolfe).,13,31,2012 -20121202_TB@DEN,4,3,42,TB,DEN,2,17,46,(3:42) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (R.Moore).,13,31,2012 -20121202_TB@DEN,4,3,33,TB,DEN,3,17,46,(3:33) (Shotgun) J.Freeman pass short left to D.Clark pushed ob at DEN 37 for 9 yards (D.Trevathan).,13,31,2012 -20121202_TB@DEN,4,3,28,TB,DEN,4,8,37,(3:28) C.Barth 55 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,13,31,2012 -20121202_TB@DEN,4,3,28,TB,DEN,,,37,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,16,31,2012 -20121202_TB@DEN,4,3,23,DEN,TB,1,10,80,(3:23) K.Moreno up the middle to DEN 17 for -3 yards (G.Gibson).,31,16,2012 -20121202_TB@DEN,4,3,16,DEN,TB,2,13,83,(3:16) K.Moreno right tackle to DEN 15 for -2 yards (L.David).,31,16,2012 -20121202_TB@DEN,4,3,14,DEN,TB,3,15,85,(3:14) K.Moreno left end to DEN 17 for 2 yards (D.Te'o-Nesheim).,31,16,2012 -20121202_TB@DEN,4,3,9,DEN,TB,4,13,83,(3:09) B.Colquitt punts 45 yards to TB 38 Center-A.Brewer. R.Parrish to DEN 47 for 15 yards (S.Johnson). TB-L.Lewis was injured during the play.,31,16,2012 -20121202_TB@DEN,4,2,57,TB,DEN,1,10,47,(2:57) (Shotgun) J.Freeman pass incomplete deep right to M.Williams (T.Carter).,16,31,2012 -20121202_TB@DEN,4,2,50,TB,DEN,2,10,47,(2:50) (Shotgun) J.Freeman pass short right to M.Williams ran ob at DEN 33 for 14 yards.,16,31,2012 -20121202_TB@DEN,4,2,44,TB,DEN,1,10,33,(2:44) (Shotgun) J.Freeman pass deep right to M.Williams ran ob at DEN 5 for 28 yards.,16,31,2012 -20121202_TB@DEN,4,2,39,TB,DEN,1,5,5,(2:39) (Shotgun) J.Freeman pass short left to M.Williams for 5 yards TOUCHDOWN.,16,31,2012 -20121202_TB@DEN,4,2,39,TB,DEN,,,5,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,16,31,2012 -20121202_TB@DEN,4,2,39,TB,DEN,,,5,M.Koenen kicks onside 16 yards from TB 35 to DEN 49. E.Decker (didn't try to advance) to DEN 49 for no gain (V.Jackson).,23,31,2012 -20121202_TB@DEN,4,2,32,DEN,TB,1,10,51,(2:32) K.Moreno up the middle to TB 46 for 5 yards (M.Foster).,31,23,2012 -20121202_TB@DEN,4,2,0,DEN,TB,2,5,46,(2:00) PENALTY on TB-G.Gibson Neutral Zone Infraction 4 yards enforced at TB 46 - No Play.,31,23,2012 -20121202_TB@DEN,4,2,0,DEN,TB,2,1,42,(2:00) K.Moreno right guard to TB 40 for 2 yards (L.David; M.Bennett).,31,23,2012 -20121202_TB@DEN,4,1,16,DEN,TB,1,10,40,(1:16) P.Manning kneels to TB 42 for -2 yards.,31,23,2012 -20121202_TB@DEN,4,0,37,DEN,TB,2,12,42,(:37) P.Manning kneels to TB 45 for -3 yards.,31,23,2012 -20121202_TB@DEN,4,0,37,DEN,TB,,,42,                      ,31,23,2012 -20121202_PIT@BAL,1,0,0,PIT,BAL,,,42,S.Suisham kicks 70 yards from PIT 35 to BLT -5. J.Jones Touchback.,0,0,2012 -20121202_PIT@BAL,1,60,0,BAL,PIT,1,10,80,(15:00) J.Flacco pass short right to A.Boldin to BLT 30 for 10 yards (K.Lewis L.Foote).,0,0,2012 -20121202_PIT@BAL,1,59,22,BAL,PIT,1,10,70,(14:22) J.Flacco pass incomplete deep middle to T.Smith (I.Taylor).,0,0,2012 -20121202_PIT@BAL,1,59,14,BAL,PIT,2,10,70,(14:14) J.Flacco pass short right to T.Smith to BLT 42 for 12 yards (K.Lewis).,0,0,2012 -20121202_PIT@BAL,1,58,41,BAL,PIT,1,10,58,(13:41) J.Flacco pass incomplete short left to A.Boldin.,0,0,2012 -20121202_PIT@BAL,1,58,37,BAL,PIT,2,10,58,(13:37) J.Flacco pass short left to T.Smith to PIT 50 for 8 yards (C.Allen).,0,0,2012 -20121202_PIT@BAL,1,58,0,BAL,PIT,3,2,50,(13:00) (Shotgun) J.Flacco pass incomplete short left to A.Boldin (C.Brown). PENALTY on BLT-M.Oher Unnecessary Roughness 15 yards enforced at PIT 50.,0,0,2012 -20121202_PIT@BAL,1,57,49,BAL,PIT,4,17,65,(12:49) (Punt formation) S.Koch punts 43 yards to PIT 22 Center-M.Cox. A.Brown ran ob at PIT 24 for 2 yards.,0,0,2012 -20121202_PIT@BAL,1,57,42,PIT,BAL,1,10,76,(12:42) J.Dwyer right tackle to PIT 29 for 5 yards (B.Ayanbadejo).,0,0,2012 -20121202_PIT@BAL,1,57,41,PIT,BAL,2,5,71,(12:41) J.Dwyer right end to PIT 34 for 5 yards (B.Ayanbadejo).,0,0,2012 -20121202_PIT@BAL,1,57,13,PIT,BAL,2,5,71,(12:13) C.Batch pass incomplete short right to M.Wallace.,0,0,2012 -20121202_PIT@BAL,1,56,22,PIT,BAL,3,5,71,(11:22) (Shotgun) C.Batch pass deep middle to E.Sanders to PIT 41 for 12 yards (C.Graham).,0,0,2012 -20121202_PIT@BAL,1,56,22,PIT,BAL,1,10,59,(11:22) J.Dwyer left guard to PIT 45 for 4 yards (C.Upshaw).,0,0,2012 -20121202_PIT@BAL,1,55,46,PIT,BAL,2,6,55,(10:46) J.Dwyer left tackle to PIT 49 for 4 yards (C.Upshaw).,0,0,2012 -20121202_PIT@BAL,1,55,5,PIT,BAL,3,2,51,(10:05) C.Batch pass short right to W.Johnson to BLT 48 for 3 yards (B.Pollard).,0,0,2012 -20121202_PIT@BAL,1,54,25,PIT,BAL,1,10,48,(9:25) J.Dwyer right guard to BLT 34 for 14 yards (C.Graham).,0,0,2012 -20121202_PIT@BAL,1,53,40,PIT,BAL,1,10,34,(8:40) J.Dwyer left guard to BLT 36 for -2 yards (T.Suggs).,0,0,2012 -20121202_PIT@BAL,1,52,58,PIT,BAL,2,12,36,(7:58) (Shotgun) C.Batch pass incomplete short left to A.Brown.,0,0,2012 -20121202_PIT@BAL,1,52,52,PIT,BAL,3,12,36,(7:52) (Shotgun) C.Batch pass short right to A.Brown to BLT 28 for 8 yards (C.Brown).,0,0,2012 -20121202_PIT@BAL,1,52,52,PIT,BAL,4,4,28,(7:52) (Field Goal formation) S.Suisham 46 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121202_PIT@BAL,1,52,52,PIT,BAL,,,28,S.Suisham kicks 69 yards from PIT 35 to BLT -4. J.Jones to BLT 18 for 22 yards (C.Brown).,3,0,2012 -20121202_PIT@BAL,1,52,6,BAL,PIT,1,10,82,(7:06) R.Rice left guard to BLT 22 for 4 yards (E.Hood).,0,3,2012 -20121202_PIT@BAL,1,51,32,BAL,PIT,2,6,78,(6:32) R.Rice right tackle to BLT 29 for 7 yards (T.Polamalu).,0,3,2012 -20121202_PIT@BAL,1,50,54,BAL,PIT,1,10,71,(5:54) J.Flacco pass incomplete deep middle to A.Boldin.,0,3,2012 -20121202_PIT@BAL,1,50,48,BAL,PIT,2,10,71,(5:48) J.Flacco pass short middle to R.Rice to BLT 34 for 5 yards (L.Timmons).,0,3,2012 -20121202_PIT@BAL,1,50,17,BAL,PIT,3,5,66,(5:17) (No Huddle Shotgun) J.Flacco pass incomplete short middle to A.Boldin (C.Allen).,0,3,2012 -20121202_PIT@BAL,1,50,12,BAL,PIT,4,5,66,(5:12) (Punt formation) S.Koch punts 50 yards to PIT 16 Center-M.Cox. A.Brown to PIT 13 for -3 yards (D.Reed).,0,3,2012 -20121202_PIT@BAL,1,50,2,PIT,BAL,1,10,87,(5:02) C.Batch pass short left to J.Dwyer to PIT 14 for 1 yard (B.Pollard).,3,0,2012 -20121202_PIT@BAL,1,49,22,PIT,BAL,2,9,86,(4:22) C.Batch pass short middle to M.Wallace to PIT 20 for 6 yards (A.McClellan).,3,0,2012 -20121202_PIT@BAL,1,48,37,PIT,BAL,3,3,80,(3:37) (Shotgun) C.Batch pass incomplete deep right to A.Brown.,3,0,2012 -20121202_PIT@BAL,1,48,30,PIT,BAL,4,3,80,(3:30) (Punt formation) D.Butler punts 46 yards to BLT 34 Center-G.Warren fair catch by J.Jones.,3,0,2012 -20121202_PIT@BAL,1,48,22,BAL,PIT,1,10,66,(3:22) B.Pierce right tackle to BLT 38 for 4 yards (J.Harrison W.Allen).,0,3,2012 -20121202_PIT@BAL,1,47,43,BAL,PIT,2,6,62,(2:43) B.Pierce left guard to BLT 40 for 2 yards (J.Worilds R.Clark).,0,3,2012 -20121202_PIT@BAL,1,47,6,BAL,PIT,3,4,60,(2:06) (Shotgun) J.Flacco pass short left to B.Pierce to BLT 45 for 5 yards (R.Clark).,0,3,2012 -20121202_PIT@BAL,1,46,24,BAL,PIT,1,10,55,(1:24) B.Pierce left guard to PIT 50 for 5 yards (B.Keisel J.Harrison).,0,3,2012 -20121202_PIT@BAL,1,45,45,BAL,PIT,2,5,50,(:45) J.Flacco pass short left to A.Boldin to PIT 44 for 6 yards (C.Allen).,0,3,2012 -20121202_PIT@BAL,1,45,4,BAL,PIT,1,10,44,(:04) J.Flacco pass short left to V.Leach pushed ob at PIT 33 for 11 yards (L.Foote).,0,3,2012 -20121202_PIT@BAL,2,45,0,BAL,PIT,1,10,33,(15:00) R.Rice right tackle to PIT 31 for 2 yards (J.Worilds).,0,3,2012 -20121202_PIT@BAL,2,44,26,BAL,PIT,2,8,31,(14:26) J.Flacco pass short right to V.Leach pushed ob at PIT 26 for 5 yards (J.Worilds).,0,3,2012 -20121202_PIT@BAL,2,44,2,BAL,PIT,3,3,26,(14:02) J.Flacco pass incomplete short left to T.Smith.,0,3,2012 -20121202_PIT@BAL,2,43,57,BAL,PIT,4,3,26,(13:57) (Field Goal formation) J.Tucker 45 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,3,2012 -20121202_PIT@BAL,2,43,57,BAL,PIT,,,26,J.Tucker kicks 74 yards from BLT 35 to PIT -9. C.Rainey Touchback.,3,3,2012 -20121202_PIT@BAL,2,43,52,PIT,BAL,1,10,80,(13:52) I.Redman right tackle to PIT 21 for 1 yard (C.Graham).,3,3,2012 -20121202_PIT@BAL,2,43,14,PIT,BAL,2,9,79,(13:14) I.Redman up the middle to PIT 26 for 5 yards (C.Williams M.Kemoeatu).,3,3,2012 -20121202_PIT@BAL,2,42,27,PIT,BAL,3,4,74,(12:27) (Shotgun) C.Batch sacked at PIT 23 for -3 yards (P.Kruger).,3,3,2012 -20121202_PIT@BAL,2,42,20,PIT,BAL,4,7,77,(12:20) (Punt formation) D.Butler punts 35 yards to BLT 42 Center-G.Warren downed by PIT-R.Golden. #50 Baltimore Albert McClelland tipped the punt,3,3,2012 -20121202_PIT@BAL,2,42,3,BAL,PIT,1,10,58,(12:03) R.Rice right tackle pushed ob at PIT 48 for 10 yards (K.Lewis).,3,3,2012 -20121202_PIT@BAL,2,41,24,BAL,PIT,1,10,48,(11:24) J.Flacco pass incomplete short left to A.Boldin (C.Allen).,3,3,2012 -20121202_PIT@BAL,2,41,19,BAL,PIT,2,10,48,(11:19) J.Flacco pass incomplete deep middle to T.Smith (C.Allen).,3,3,2012 -20121202_PIT@BAL,2,41,10,BAL,PIT,3,10,48,(11:10) (Shotgun) J.Flacco pass short right to T.Smith pushed ob at PIT 35 for 13 yards (K.Lewis).,3,3,2012 -20121202_PIT@BAL,2,40,55,BAL,PIT,1,10,35,(10:55) PENALTY on BLT-A.Boldin Offensive 12 On-field 5 yards enforced at PIT 35 - No Play.,3,3,2012 -20121202_PIT@BAL,2,40,38,BAL,PIT,1,15,40,(10:38) J.Flacco pass incomplete deep middle to T.Smith. PENALTY on PIT-C.Allen Defensive Pass Interference 30 yards enforced at PIT 40 - No Play.,3,3,2012 -20121202_PIT@BAL,2,40,29,BAL,PIT,1,10,10,(10:29) R.Rice up the middle to PIT 4 for 6 yards (T.Polamalu C.Allen).,3,3,2012 -20121202_PIT@BAL,2,39,49,BAL,PIT,2,4,4,(9:49) J.Flacco pass incomplete short left to A.Boldin.,3,3,2012 -20121202_PIT@BAL,2,39,42,BAL,PIT,3,4,4,(9:42) J.Flacco pass incomplete short left to A.Boldin.,3,3,2012 -20121202_PIT@BAL,2,39,38,BAL,PIT,4,4,4,(9:38) (Field Goal formation) J.Tucker 23 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,3,3,2012 -20121202_PIT@BAL,2,39,38,BAL,PIT,,,4,J.Tucker kicks 74 yards from BLT 35 to PIT -9. C.Rainey Touchback.,6,3,2012 -20121202_PIT@BAL,2,39,34,PIT,BAL,1,10,80,(9:34) A.Brown right end to PIT 24 for 4 yards (B.Pollard). PIT QB Charlie Batch lateraled to #84 Brown on a flanker screen,3,6,2012 -20121202_PIT@BAL,2,38,53,PIT,BAL,2,6,76,(8:53) J.Dwyer left guard to PIT 25 for 1 yard (B.Pollard).,3,6,2012 -20121202_PIT@BAL,2,38,9,PIT,BAL,3,5,75,(8:09) (Shotgun) C.Batch pass incomplete short left to A.Brown.,3,6,2012 -20121202_PIT@BAL,2,38,2,PIT,BAL,4,5,75,(8:02) (Punt formation) D.Butler punts 46 yards to BLT 29 Center-G.Warren fair catch by J.Jones. PENALTY on BLT-A.McClellan Offensive Holding 10 yards enforced at BLT 29.,3,6,2012 -20121202_PIT@BAL,2,37,56,BAL,PIT,1,10,81,(7:56) B.Pierce up the middle to BLT 23 for 4 yards (B.Keisel E.Hood).,6,3,2012 -20121202_PIT@BAL,2,37,25,BAL,PIT,2,6,77,(7:25) B.Pierce right end to BLT 32 for 9 yards (R.Clark W.Allen).,6,3,2012 -20121202_PIT@BAL,2,36,48,BAL,PIT,1,10,68,(6:48) B.Pierce right tackle to BLT 32 for no gain (L.Foote L.Timmons).,6,3,2012 -20121202_PIT@BAL,2,36,13,BAL,PIT,2,10,68,(6:13) J.Flacco pass deep right intended for D.Pitta INTERCEPTED by R.Clark at PIT 49. R.Clark to PIT 49 for no gain (D.Pitta).,6,3,2012 -20121202_PIT@BAL,2,36,3,PIT,BAL,1,10,51,(6:03) J.Dwyer right guard to PIT 47 for -2 yards (J.Bynes).,3,6,2012 -20121202_PIT@BAL,2,35,26,PIT,BAL,2,12,53,(5:26) A.Brown pass deep right intended for J.Dwyer INTERCEPTED by C.Graham at BLT 31. C.Graham pushed ob at BLT 31 for no gain (J.Dwyer). PIT QB Batch handed on a reverse to PIT #84 Brown on the play,3,6,2012 -20121202_PIT@BAL,2,35,16,BAL,PIT,1,10,69,(5:16) R.Rice left tackle to BLT 33 for 2 yards (J.Harrison).,6,3,2012 -20121202_PIT@BAL,2,34,44,BAL,PIT,2,8,67,(4:44) R.Rice right tackle to BLT 36 for 3 yards (L.Foote).,6,3,2012 -20121202_PIT@BAL,2,34,6,BAL,PIT,3,5,64,(4:06) (Shotgun) J.Flacco pass incomplete short left to A.Boldin [J.Worilds]. PENALTY on PIT-K.Lewis Defensive Holding 5 yards enforced at BLT 36 - No Play.,6,3,2012 -20121202_PIT@BAL,2,34,1,BAL,PIT,1,10,59,(4:01) J.Flacco pass deep left to A.Boldin to PIT 28 for 31 yards (R.Clark).,6,3,2012 -20121202_PIT@BAL,2,33,23,BAL,PIT,1,10,28,(3:23) (No Huddle) J.Flacco pass deep left to A.Boldin for 28 yards TOUCHDOWN.,6,3,2012 -20121202_PIT@BAL,2,33,23,BAL,PIT,,,28,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,6,3,2012 -20121202_PIT@BAL,2,33,23,BAL,PIT,,,28,J.Tucker kicks 67 yards from BLT 35 to PIT -2. C.Rainey to PIT 40 for 42 yards (B.Ayanbadejo).,13,3,2012 -20121202_PIT@BAL,2,33,7,PIT,BAL,1,10,60,(3:07) C.Batch pass short left to W.Johnson to PIT 46 for 6 yards (J.McClain) [A.Jones].,3,13,2012 -20121202_PIT@BAL,2,32,30,PIT,BAL,2,4,54,(2:30) J.Dwyer right tackle to BLT 49 for 5 yards (T.Suggs).,3,13,2012 -20121202_PIT@BAL,2,32,0,PIT,BAL,1,10,49,(2:00) C.Batch pass incomplete deep right to M.Wallace.,3,13,2012 -20121202_PIT@BAL,2,31,52,PIT,BAL,2,10,49,(1:52) (Shotgun) C.Batch pass short left to J.Dwyer to PIT 48 for -3 yards (B.Ayanbadejo).,3,13,2012 -20121202_PIT@BAL,2,31,10,PIT,BAL,3,13,52,(1:10) (Shotgun) C.Batch pass incomplete deep right to M.Wallace. PENALTY on BLT-H.Ngata Defensive Offside 5 yards enforced at PIT 48 - No Play.,3,13,2012 -20121202_PIT@BAL,2,31,3,PIT,BAL,3,8,47,(1:03) (Shotgun) C.Batch pass short right to H.Miller to BLT 30 for 17 yards (C.Graham).,3,13,2012 -20121202_PIT@BAL,2,30,56,PIT,BAL,1,10,30,(:56) (Shotgun) C.Batch pass incomplete short middle to A.Brown (C.Williams).,3,13,2012 -20121202_PIT@BAL,2,30,51,PIT,BAL,2,10,30,(:51) (Shotgun) C.Batch to BLT 30 for no gain. FUMBLES and recovers at BLT 30. C.Batch pass short left to H.Miller to BLT 23 for 7 yards (J.McClain C.Graham).,3,13,2012 -20121202_PIT@BAL,2,30,43,PIT,BAL,3,3,23,(:43) (Shotgun) C.Batch pass incomplete deep middle to M.Wallace.,3,13,2012 -20121202_PIT@BAL,2,30,37,PIT,BAL,4,3,23,(:37) (Field Goal formation) S.Suisham 41 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,3,13,2012 -20121202_PIT@BAL,2,30,37,PIT,BAL,,,23,S.Suisham kicks 71 yards from PIT 35 to BLT -6. J.Jones to BLT 24 for 30 yards (B.Johnson).,6,13,2012 -20121202_PIT@BAL,2,30,26,BAL,PIT,1,10,76,(:26) J.Flacco kneels to BLT 23 for -1 yards.,13,6,2012 -20121202_PIT@BAL,3,30,0,BAL,PIT,,,76,J.Tucker kicks 62 yards from BLT 35 to PIT 3. C.Rainey to PIT 22 for 19 yards (J.Ihedigbo).,13,6,2012 -20121202_PIT@BAL,3,29,54,PIT,BAL,1,10,78,(14:54) C.Batch pass incomplete short left to A.Brown (T.Cody).,6,13,2012 -20121202_PIT@BAL,3,29,51,PIT,BAL,2,10,78,(14:51) C.Batch pass short left to E.Sanders to PIT 29 for 7 yards (C.Graham).,6,13,2012 -20121202_PIT@BAL,3,29,7,PIT,BAL,3,3,71,(14:07) I.Redman left tackle to PIT 37 for 8 yards (B.Pollard).,6,13,2012 -20121202_PIT@BAL,3,28,25,PIT,BAL,1,10,63,(13:25) J.Dwyer left guard to PIT 38 for 1 yard (A.McClellan).,6,13,2012 -20121202_PIT@BAL,3,27,44,PIT,BAL,2,9,62,(12:44) C.Batch pass deep middle to H.Miller to BLT 19 for 43 yards (C.Williams).,6,13,2012 -20121202_PIT@BAL,3,26,55,PIT,BAL,1,10,19,(11:55) (Shotgun) C.Batch pass short left to E.Sanders to BLT 16 for 3 yards (A.McClellan).,6,13,2012 -20121202_PIT@BAL,3,26,14,PIT,BAL,2,7,16,(11:14) (Shotgun) J.Dwyer left end for 16 yards TOUCHDOWN. Dwyer gets great block from Batch on his way to touchdown.,6,13,2012 -20121202_PIT@BAL,3,26,14,PIT,BAL,,,16,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,6,13,2012 -20121202_PIT@BAL,3,26,14,PIT,BAL,,,16,S.Suisham kicks 61 yards from PIT 35 to BLT 4. J.Jones to BLT 26 for 22 yards (R.Mundy).,13,13,2012 -20121202_PIT@BAL,3,25,59,BAL,PIT,1,10,74,(10:59) R.Rice right guard to BLT 27 for 1 yard (J.Harrison).,13,13,2012 -20121202_PIT@BAL,3,25,23,BAL,PIT,2,9,73,(10:23) J.Flacco pass short right to V.Leach to BLT 39 for 12 yards (L.Timmons).,13,13,2012 -20121202_PIT@BAL,3,24,46,BAL,PIT,1,10,61,(9:46) R.Rice right tackle to BLT 38 for -1 yards (S.McLendon).,13,13,2012 -20121202_PIT@BAL,3,24,7,BAL,PIT,2,11,62,(9:07) J.Flacco pass incomplete short right to R.Rice.,13,13,2012 -20121202_PIT@BAL,3,24,2,BAL,PIT,3,11,62,(9:02) (Shotgun) J.Flacco pass deep left to A.Boldin to PIT 45 for 17 yards. PENALTY on BLT-A.Boldin Offensive Pass Interference 10 yards enforced at BLT 38 - No Play.,13,13,2012 -20121202_PIT@BAL,3,23,43,BAL,PIT,3,21,72,(8:43) (Shotgun) PENALTY on BLT-A.Boldin False Start 5 yards enforced at BLT 28 - No Play.,13,13,2012 -20121202_PIT@BAL,3,23,24,BAL,PIT,3,26,77,(8:24) (Shotgun) J.Flacco pass incomplete deep right to J.Jones.,13,13,2012 -20121202_PIT@BAL,3,23,16,BAL,PIT,4,26,77,(8:16) (Punt formation) S.Koch punts 54 yards to PIT 23 Center-M.Cox. A.Brown to PIT 29 for 6 yards (C.Upshaw).,13,13,2012 -20121202_PIT@BAL,3,23,6,PIT,BAL,1,10,71,(8:06) C.Batch pass incomplete short left to I.Redman [M.Kemoeatu]. Baltimore challenged the fumble ruling and the play was Upheld. (Timeout #2.),13,13,2012 -20121202_PIT@BAL,3,22,57,PIT,BAL,2,10,71,(7:57) I.Redman right guard to PIT 28 for -1 yards (J.McClain).,13,13,2012 -20121202_PIT@BAL,3,22,11,PIT,BAL,3,11,72,(7:11) (Shotgun) C.Batch pass deep middle to E.Sanders to PIT 49 for 21 yards. FUMBLES RECOVERED by BLT-E.Reed at BLT 37. E.Reed to BLT 37 for no gain (H.Miller). The Replay Assistant challenged the fumble ruling and the play was Upheld.,13,13,2012 -20121202_PIT@BAL,3,22,0,BAL,PIT,1,10,63,(7:00) B.Pierce right guard to BLT 48 for 11 yards (L.Foote).,13,13,2012 -20121202_PIT@BAL,3,21,19,BAL,PIT,1,10,52,(6:19) R.Rice left guard to BLT 48 for no gain (B.Keisel).,13,13,2012 -20121202_PIT@BAL,3,21,9,BAL,PIT,2,10,52,(6:09) J.Flacco sacked at BLT 47 for -1 yards (E.Hood).,13,13,2012 -20121202_PIT@BAL,3,20,33,BAL,PIT,3,11,53,(5:33) (Shotgun) J.Flacco pass short middle to D.Pitta to PIT 34 for 19 yards (C.Brown).,13,13,2012 -20121202_PIT@BAL,3,20,8,BAL,PIT,1,10,34,(5:08) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Smith.,13,13,2012 -20121202_PIT@BAL,3,20,0,BAL,PIT,2,10,34,(5:00) R.Rice left end for 34 yards TOUCHDOWN. Ray Rice reverses field and runs around left end for touchdown.,13,13,2012 -20121202_PIT@BAL,3,20,0,BAL,PIT,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,13,13,2012 -20121202_PIT@BAL,3,20,0,BAL,PIT,,,34,J.Tucker kicks 73 yards from BLT 35 to PIT -8. C.Rainey Touchback.,20,13,2012 -20121202_PIT@BAL,3,19,50,PIT,BAL,1,10,80,(4:50) J.Dwyer right guard to PIT 17 for -3 yards (B.Pollard).,13,20,2012 -20121202_PIT@BAL,3,19,6,PIT,BAL,2,13,83,(4:06) C.Batch pass deep left to A.Brown ran ob at BLT 49 for 34 yards.,13,20,2012 -20121202_PIT@BAL,3,18,28,PIT,BAL,1,10,49,(3:28) C.Batch pass short right to M.Wallace to BLT 43 for 6 yards (C.Graham).,13,20,2012 -20121202_PIT@BAL,3,17,48,PIT,BAL,2,4,43,(2:48) J.Dwyer left guard to BLT 43 for no gain (T.Cody).,13,20,2012 -20121202_PIT@BAL,3,17,5,PIT,BAL,3,4,43,(2:05) (Shotgun) C.Batch pass incomplete deep middle to E.Sanders (B.Pollard).,13,20,2012 -20121202_PIT@BAL,3,16,59,PIT,BAL,4,4,43,(1:59) (Punt formation) D.Butler punts 27 yards to BLT 16 Center-G.Warren fair catch by T.Doss.,13,20,2012 -20121202_PIT@BAL,3,16,52,BAL,PIT,1,10,84,(1:52) R.Rice right end to BLT 26 for 10 yards (E.Hood).,20,13,2012 -20121202_PIT@BAL,3,16,8,BAL,PIT,1,10,74,(1:08) PENALTY on BLT-V.Leach False Start 5 yards enforced at BLT 26 - No Play.,20,13,2012 -20121202_PIT@BAL,3,15,44,BAL,PIT,1,15,79,(:44) J.Flacco sacked at BLT 16 for -5 yards (L.Foote).,20,13,2012 -20121202_PIT@BAL,3,15,18,BAL,PIT,2,20,84,(:18) (Shotgun) J.Flacco pass short left to J.Jones to BLT 21 for 5 yards (J.Harrison C.Allen).,20,13,2012 -20121202_PIT@BAL,4,15,0,BAL,PIT,3,15,79,(15:00) (Shotgun) J.Flacco pass incomplete deep right to J.Jones (K.Lewis).,20,13,2012 -20121202_PIT@BAL,4,14,52,BAL,PIT,4,15,79,(14:52) (Punt formation) S.Koch punts 49 yards to PIT 30 Center-M.Cox. A.Brown to PIT 30 for no gain (D.Reed). PENALTY on PIT-W.Allen Offensive Holding 10 yards enforced at PIT 30.,20,13,2012 -20121202_PIT@BAL,4,14,42,PIT,BAL,1,10,80,(14:42) J.Dwyer left guard to PIT 26 for 6 yards (A.Jones H.Ngata).,13,20,2012 -20121202_PIT@BAL,4,14,3,PIT,BAL,2,4,74,(14:03) C.Batch pass short middle to J.Dwyer to PIT 36 for 10 yards (B.Pollard).,13,20,2012 -20121202_PIT@BAL,4,13,30,PIT,BAL,1,10,64,(13:30) I.Redman left end to BLT 40 for 24 yards (C.Graham A.McClellan).,13,20,2012 -20121202_PIT@BAL,4,12,50,PIT,BAL,1,10,40,(12:50) C.Batch sacked at BLT 43 for -3 yards (A.Jones).,13,20,2012 -20121202_PIT@BAL,4,11,59,PIT,BAL,2,13,43,(11:59) C.Batch pass short middle to H.Miller to BLT 20 for 23 yards (B.Pollard).,13,20,2012 -20121202_PIT@BAL,4,11,17,PIT,BAL,1,10,20,(11:17) (Shotgun) C.Batch pass deep right intended for H.Miller INTERCEPTED by E.Reed at BLT -7. E.Reed to BLT 27 for 34 yards (J.Dwyer).,13,20,2012 -20121202_PIT@BAL,4,10,59,BAL,PIT,1,10,73,(10:59) J.Flacco pass short left to A.Boldin to BLT 33 for 6 yards (J.Harrison C.Allen).,20,13,2012 -20121202_PIT@BAL,4,10,25,BAL,PIT,2,4,67,(10:25) B.Pierce right guard to BLT 32 for -1 yards (E.Hood).,20,13,2012 -20121202_PIT@BAL,4,9,50,BAL,PIT,3,5,68,(9:50) (Shotgun) J.Flacco sacked at BLT 27 for -5 yards (J.Harrison). FUMBLES (J.Harrison) RECOVERED by PIT-E.Hood at BLT 27. E.Hood to BLT 27 for no gain (M.Birk).,20,13,2012 -20121202_PIT@BAL,4,9,41,PIT,BAL,1,10,27,(9:41) C.Batch pass short right to A.Brown to BLT 24 for 3 yards (C.Graham).,13,20,2012 -20121202_PIT@BAL,4,9,1,PIT,BAL,2,7,24,(9:01) C.Batch pass deep middle to E.Sanders to BLT 7 for 17 yards (C.Williams).,13,20,2012 -20121202_PIT@BAL,4,8,16,PIT,BAL,1,7,7,(8:16) J.Dwyer left guard to BLT 7 for no gain (A.McClellan J.McClain).,13,20,2012 -20121202_PIT@BAL,4,7,37,PIT,BAL,2,7,7,(7:37) (Shotgun) C.Batch pass short right to H.Miller for 7 yards TOUCHDOWN [A.Jones]. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,13,20,2012 -20121202_PIT@BAL,4,7,37,PIT,BAL,,,7,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,13,20,2012 -20121202_PIT@BAL,4,7,37,PIT,BAL,,,7,S.Suisham kicks 66 yards from PIT 35 to BLT -1. J.Jones Touchback.,20,20,2012 -20121202_PIT@BAL,4,7,24,BAL,PIT,1,10,80,(7:24) J.Flacco pass short left to V.Leach to BLT 32 for 12 yards (L.Timmons).,20,20,2012 -20121202_PIT@BAL,4,6,43,BAL,PIT,1,10,68,(6:43) J.Flacco pass incomplete deep middle to T.Smith.,20,20,2012 -20121202_PIT@BAL,4,6,34,BAL,PIT,2,10,68,(6:34) (Shotgun) J.Flacco pass incomplete short middle to T.Doss.,20,20,2012 -20121202_PIT@BAL,4,6,30,BAL,PIT,3,10,68,(6:30) (Shotgun) J.Flacco pass incomplete short right to D.Pitta [L.Foote].,20,20,2012 -20121202_PIT@BAL,4,6,23,BAL,PIT,4,10,68,(6:23) (Punt formation) S.Koch punts 57 yards to PIT 11 Center-M.Cox. A.Brown to PIT 15 for 4 yards (J.Bynes).,20,20,2012 -20121202_PIT@BAL,4,6,14,PIT,BAL,1,10,85,(6:14) I.Redman right guard to PIT 17 for 2 yards (C.Upshaw A.Jones).,20,20,2012 -20121202_PIT@BAL,4,5,34,PIT,BAL,2,8,83,(5:34) I.Redman up the middle to PIT 18 for 1 yard (P.McPhee).,20,20,2012 -20121202_PIT@BAL,4,4,52,PIT,BAL,3,7,82,(4:52) (Shotgun) C.Batch pass short right to M.Wallace to PIT 33 for 15 yards (C.Brown) [H.Ngata].,20,20,2012 -20121202_PIT@BAL,4,4,9,PIT,BAL,1,10,67,(4:09) C.Batch pass short left to M.Wallace to PIT 40 for 7 yards (C.Williams C.Graham). No. 17 - Wallace injured on play (PIT).,20,20,2012 -20121202_PIT@BAL,4,3,27,PIT,BAL,2,3,60,(3:27) I.Redman right guard to PIT 43 for 3 yards (A.Jones J.Bynes).,20,20,2012 -20121202_PIT@BAL,4,2,47,PIT,BAL,1,10,57,(2:47) C.Batch pass short right to A.Brown to PIT 47 for 4 yards (C.Brown).,20,20,2012 -20121202_PIT@BAL,4,2,42,PIT,BAL,2,6,53,(2:42) C.Batch pass short right to A.Brown to BLT 44 for 9 yards (C.Graham).,20,20,2012 -20121202_PIT@BAL,4,2,0,PIT,BAL,1,10,44,(2:00) (Shotgun) C.Batch pass short left to M.Wallace to BLT 34 for 10 yards (C.Williams). PENALTY on BLT-P.Kruger Roughing the Passer 15 yards enforced at BLT 34. No. 23 Brown injured for BLT. BLT charged with time out.,20,20,2012 -20121202_PIT@BAL,4,1,46,PIT,BAL,1,10,19,(1:46) PENALTY on PIT-M.Pouncey False Start 5 yards enforced at BLT 19 - No Play.,20,20,2012 -20121202_PIT@BAL,4,1,46,PIT,BAL,1,15,24,(1:46) J.Dwyer right guard to BLT 23 for 1 yard (C.Upshaw T.Cody).,20,20,2012 -20121202_PIT@BAL,4,1,3,PIT,BAL,2,14,23,(1:03) J.Dwyer left guard to BLT 24 for -1 yards (J.McClain).,20,20,2012 -20121202_PIT@BAL,4,0,20,PIT,BAL,3,15,24,(:20) I.Redman right guard to BLT 24 for no gain (E.Reed).,20,20,2012 -20121202_PIT@BAL,4,0,3,PIT,BAL,4,15,24,(:03) S.Suisham 42 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,20,20,2012 -20121202_PIT@BAL,4,0,3,PIT,BAL,,,24,                      ,23,20,2012 -20121202_CLE@OAK,1,0,0,CLE,OAK,,,24,P.Dawson kicks 68 yards from CLV 35 to OAK -3. C.Francies to OAK 14 for 17 yards (C.Ogbonnaya).,0,0,2012 -20121202_CLE@OAK,1,59,55,OAK,CLE,1,10,86,(14:55) M.Reece right end to OAK 18 for 4 yards (T.Gipson; A.Rubin).,0,0,2012 -20121202_CLE@OAK,1,59,26,OAK,CLE,2,6,82,(14:26) T.Bergstrom reported in as eligible. C.Palmer pass deep left to B.Myers to OAK 39 for 21 yards (T.Ward).,0,0,2012 -20121202_CLE@OAK,1,58,50,OAK,CLE,1,10,61,(13:50) M.Reece right end to OAK 47 for 8 yards (T.Gipson).,0,0,2012 -20121202_CLE@OAK,1,58,11,OAK,CLE,2,2,53,(13:11) J.Stewart right tackle to OAK 48 for 1 yard (J.Sheard).,0,0,2012 -20121202_CLE@OAK,1,58,1,OAK,CLE,3,1,52,(13:01) C.Palmer up the middle to CLV 49 for 3 yards (Team).,0,0,2012 -20121202_CLE@OAK,1,57,31,OAK,CLE,1,10,49,(12:31) C.Palmer pass short right to J.Criner to CLV 41 for 8 yards (J.Haden).,0,0,2012 -20121202_CLE@OAK,1,57,31,OAK,CLE,2,2,41,(12:31) M.Reece right tackle to CLV 40 for 1 yard (F.Rucker).,0,0,2012 -20121202_CLE@OAK,1,56,35,OAK,CLE,3,1,40,(11:35) T.Bergstrom reported in as eligible. J.Stewart right tackle to CLV 42 for -2 yards (F.Rucker).,0,0,2012 -20121202_CLE@OAK,1,55,20,OAK,CLE,4,3,42,(10:20) S.Lechler punts 28 yards to CLV 14 Center-J.Condo downed by OAK-J.Condo.,0,0,2012 -20121202_CLE@OAK,1,55,15,CLE,OAK,1,10,86,(10:15) (Shotgun) B.Weeden scrambles up the middle to CLV 21 for 7 yards (L.Houston).,0,0,2012 -20121202_CLE@OAK,1,54,31,CLE,OAK,2,3,79,(9:31) T.Richardson right tackle to CLV 25 for 4 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,54,10,CLE,OAK,1,10,75,(9:10) B.Weeden pass short middle to J.Gordon to CLV 39 for 14 yards (R.Bartell).,0,0,2012 -20121202_CLE@OAK,1,53,35,CLE,OAK,1,10,61,(8:35) T.Richardson left guard to CLV 48 for 9 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,52,50,CLE,OAK,2,1,52,(7:50) M.Hardesty left end to OAK 33 for 19 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,52,33,CLE,OAK,1,10,33,(7:33) B.Weeden pass incomplete deep middle to B.Watson.,0,0,2012 -20121202_CLE@OAK,1,52,23,CLE,OAK,2,10,33,(7:23) B.Weeden pass deep middle intended for B.Watson INTERCEPTED by M.Giordano at OAK 3. M.Giordano to OAK 27 for 24 yards (J.Greco).,0,0,2012 -20121202_CLE@OAK,1,52,12,OAK,CLE,1,10,73,(7:12) C.Palmer pass incomplete short left to D.Heyward-Bey (F.Rucker).,0,0,2012 -20121202_CLE@OAK,1,52,8,OAK,CLE,2,10,73,(7:08) M.Reece up the middle to OAK 31 for 4 yards (T.Ward; D.Jackson).,0,0,2012 -20121202_CLE@OAK,1,51,25,OAK,CLE,3,6,69,(6:25) (Shotgun) C.Palmer pass short left to B.Myers to OAK 38 for 7 yards (E.Hagg).,0,0,2012 -20121202_CLE@OAK,1,50,47,OAK,CLE,1,10,62,(5:47) T.Bergstrom reported in as eligible. M.Reece left end to 50 for 12 yards (T.Gipson).,0,0,2012 -20121202_CLE@OAK,1,50,28,OAK,CLE,1,10,50,(5:28) C.Palmer pass incomplete deep left to D.Moore (B.Skrine).,0,0,2012 -20121202_CLE@OAK,1,50,20,OAK,CLE,2,10,50,(5:20) M.Reece left end to 50 for no gain (T.Gipson).,0,0,2012 -20121202_CLE@OAK,1,50,12,OAK,CLE,3,10,50,(5:12) (Shotgun) C.Palmer pass incomplete short middle to J.Criner.,0,0,2012 -20121202_CLE@OAK,1,49,30,OAK,CLE,4,10,50,(4:30) S.Lechler punts 50 yards to end zone Center-J.Condo Touchback.,0,0,2012 -20121202_CLE@OAK,1,49,26,CLE,OAK,1,10,80,(4:26) T.Richardson left tackle to CLV 21 for 1 yard (C.Bilukidi).,0,0,2012 -20121202_CLE@OAK,1,49,16,CLE,OAK,2,9,79,(4:16) B.Weeden pass short right to B.Watson to CLV 30 for 9 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,48,13,CLE,OAK,1,10,70,(3:13) (Shotgun) B.Weeden pass short left to J.Gordon to CLV 35 for 5 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,47,38,CLE,OAK,2,5,65,(2:38) (Shotgun) B.Weeden pass short middle to T.Richardson to CLV 39 for 4 yards (T.Kelly P.Wheeler) [M.Shaughnessy].,0,0,2012 -20121202_CLE@OAK,1,46,58,CLE,OAK,3,1,61,(1:58) B.Weeden up the middle to CLV 41 for 2 yards (Team).,0,0,2012 -20121202_CLE@OAK,1,46,29,CLE,OAK,1,10,59,(1:29) T.Richardson up the middle to CLV 47 for 6 yards (T.Branch).,0,0,2012 -20121202_CLE@OAK,1,45,57,CLE,OAK,2,4,53,(:57) T.Richardson right end to OAK 48 for 5 yards (A.Carter).,0,0,2012 -20121202_CLE@OAK,1,45,18,CLE,OAK,1,10,48,(:18) B.Weeden pass incomplete short middle to J.Cameron (C.Bilukidi).,0,0,2012 -20121202_CLE@OAK,1,45,13,CLE,OAK,2,10,48,(:13) B.Weeden pass short left to B.Watson pushed ob at OAK 28 for 20 yards (M.Giordano). OAK-M.Giordano was injured during the play. He is Out.,0,0,2012 -20121202_CLE@OAK,2,45,0,CLE,OAK,1,10,28,(15:00) T.Richardson left tackle to OAK 22 for 6 yards (O.Gaither T.Branch).,0,0,2012 -20121202_CLE@OAK,2,44,19,CLE,OAK,2,4,22,(14:19) T.Richardson up the middle to OAK 21 for 1 yard (T.Branch; L.Houston).,0,0,2012 -20121202_CLE@OAK,2,43,45,CLE,OAK,3,3,21,(13:45) B.Weeden pass short left to T.Richardson to OAK 23 for -2 yards (L.Houston).,0,0,2012 -20121202_CLE@OAK,2,43,5,CLE,OAK,4,5,23,(13:05) P.Dawson 41 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20121202_CLE@OAK,2,43,5,CLE,OAK,,,23,P.Dawson kicks 56 yards from CLV 35 to OAK 9. C.Francies to OAK 25 for 16 yards (C.Robertson).,3,0,2012 -20121202_CLE@OAK,2,42,54,OAK,CLE,1,10,75,(12:54) C.Palmer pass short right to B.Myers to OAK 25 for no gain (D.Jackson).,0,3,2012 -20121202_CLE@OAK,2,42,15,OAK,CLE,2,10,75,(12:15) C.Palmer pass short left to J.Criner to OAK 32 for 7 yards (K.Maiava). FUMBLES (K.Maiava) and recovers at OAK 33. J.Criner to OAK 33 for no gain (K.Maiava).,0,3,2012 -20121202_CLE@OAK,2,41,28,OAK,CLE,3,2,67,(11:28) C.Palmer pass incomplete short left to J.Criner.,0,3,2012 -20121202_CLE@OAK,2,41,26,OAK,CLE,4,2,67,(11:26) S.Lechler punts 51 yards to CLV 16 Center-J.Condo. J.Cribbs to CLV 23 for 7 yards (M.Mitchell). PENALTY on OAK-C.Francies Face Mask (15 Yards) 15 yards enforced at CLV 23.,0,3,2012 -20121202_CLE@OAK,2,41,14,CLE,OAK,1,10,62,(11:14) B.Weeden pass short middle to G.Little to OAK 44 for 18 yards (T.Branch; M.Burris) [R.Bartell].,3,0,2012 -20121202_CLE@OAK,2,40,33,CLE,OAK,1,10,44,(10:33) B.Weeden pass deep left to J.Gordon for 44 yards TOUCHDOWN.,3,0,2012 -20121202_CLE@OAK,2,40,33,CLE,OAK,,,44,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,0,2012 -20121202_CLE@OAK,2,40,33,CLE,OAK,,,44,P.Dawson kicks 69 yards from CLV 35 to OAK -4. C.Francies to OAK 28 for 32 yards (K.Maiava).,10,0,2012 -20121202_CLE@OAK,2,40,19,OAK,CLE,1,10,72,(10:19) (Shotgun) C.Palmer pass incomplete deep right to D.Moore (S.Brown).,0,10,2012 -20121202_CLE@OAK,2,40,13,OAK,CLE,2,10,72,(10:13) M.Reece right tackle to OAK 35 for 7 yards (A.Rubin).,0,10,2012 -20121202_CLE@OAK,2,39,37,OAK,CLE,3,3,65,(9:37) (Shotgun) C.Palmer pass short left to J.Stewart to OAK 37 for 2 yards (S.Brown).,0,10,2012 -20121202_CLE@OAK,2,38,57,OAK,CLE,4,1,63,(8:57) S.Lechler punts 56 yards to CLV 7 Center-J.Condo. J.Cribbs to CLV 16 for 9 yards (T.Jones). PENALTY on OAK Ineligible Downfield Kick 5 yards enforced at OAK 37 - No Play.,0,10,2012 -20121202_CLE@OAK,2,38,44,OAK,CLE,4,6,68,(8:44) S.Lechler punts 41 yards to CLV 27 Center-J.Condo. J.Cribbs to CLV 36 for 9 yards (K.Clayton).,0,10,2012 -20121202_CLE@OAK,2,38,32,CLE,OAK,1,10,64,(8:32) T.Richardson right guard to CLV 36 for no gain (M.Burris).,10,0,2012 -20121202_CLE@OAK,2,37,59,CLE,OAK,2,10,64,(7:59) B.Weeden pass incomplete short right to J.Cameron.,10,0,2012 -20121202_CLE@OAK,2,37,52,CLE,OAK,3,10,64,(7:52) (Shotgun) B.Weeden pass short right to B.Watson to CLV 44 for 8 yards (M.Huff).,10,0,2012 -20121202_CLE@OAK,2,37,44,CLE,OAK,4,2,56,(7:44) R.Hodges punts 26 yards to OAK 30 Center-C.Yount downed by CLV-L.Fort.,10,0,2012 -20121202_CLE@OAK,2,37,12,OAK,CLE,1,10,70,(7:12) J.Stewart left tackle to OAK 41 for 11 yards (P.Taylor).,0,10,2012 -20121202_CLE@OAK,2,36,22,OAK,CLE,1,10,59,(6:22) (No Huddle) J.Stewart right guard to CLV 45 for 14 yards (T.Gipson).,0,10,2012 -20121202_CLE@OAK,2,35,49,OAK,CLE,1,10,45,(5:49) (No Huddle Shotgun) J.Stewart right tackle to CLV 44 for 1 yard (T.Ward).,0,10,2012 -20121202_CLE@OAK,2,35,19,OAK,CLE,2,9,44,(5:19) (No Huddle Shotgun) C.Palmer pass short right to D.Moore to CLV 33 for 11 yards (S.Brown).,0,10,2012 -20121202_CLE@OAK,2,35,12,OAK,CLE,1,10,33,(5:12) (No Huddle Shotgun) C.Palmer pass incomplete short right to D.Moore.,0,10,2012 -20121202_CLE@OAK,2,34,45,OAK,CLE,2,10,33,(4:45) (No Huddle) C.Palmer pass incomplete deep right to D.Moore.,0,10,2012 -20121202_CLE@OAK,2,34,39,OAK,CLE,3,10,33,(4:39) (No Huddle Shotgun) C.Palmer pass incomplete deep middle to M.Reece (B.Skrine).,0,10,2012 -20121202_CLE@OAK,2,34,33,OAK,CLE,4,10,33,(4:33) S.Janikowski 51 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,10,2012 -20121202_CLE@OAK,2,34,33,OAK,CLE,,,33,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,3,10,2012 -20121202_CLE@OAK,2,34,28,CLE,OAK,1,10,80,(4:28) T.Richardson up the middle to CLV 25 for 5 yards (T.Kelly).,10,3,2012 -20121202_CLE@OAK,2,33,50,CLE,OAK,2,5,75,(3:50) B.Weeden pass short middle to G.Little to CLV 33 for 8 yards (M.Huff).,10,3,2012 -20121202_CLE@OAK,2,33,14,CLE,OAK,1,10,67,(3:14) B.Weeden pass deep right to J.Gordon to OAK 45 for 22 yards (M.Huff; M.Mitchell).,10,3,2012 -20121202_CLE@OAK,2,32,29,CLE,OAK,1,10,45,(2:29) T.Richardson left end to OAK 46 for -1 yards (P.Wheeler).,10,3,2012 -20121202_CLE@OAK,2,32,0,CLE,OAK,2,11,46,(2:00) PENALTY on OAK-D.Bryant Neutral Zone Infraction 5 yards enforced at OAK 46 - No Play.,10,3,2012 -20121202_CLE@OAK,2,32,0,CLE,OAK,2,6,41,(2:00) T.Richardson up the middle to OAK 37 for 4 yards (Team).,10,3,2012 -20121202_CLE@OAK,2,31,18,CLE,OAK,3,2,37,(1:18) B.Weeden pass deep middle intended for J.Gordon INTERCEPTED by P.Adams at OAK 8. P.Adams to OAK 8 for no gain (J.Gordon). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,3,2012 -20121202_CLE@OAK,2,31,10,OAK,CLE,1,10,92,(1:10) (Shotgun) C.Palmer pass incomplete short right to B.Myers.,3,10,2012 -20121202_CLE@OAK,2,31,6,OAK,CLE,2,10,92,(1:06) (Shotgun) C.Palmer pass short middle to M.Reece to OAK 11 for 3 yards (C.Robertson).,3,10,2012 -20121202_CLE@OAK,2,30,58,OAK,CLE,3,7,89,(:58) (Shotgun) C.Palmer pass short middle to D.Moore to OAK 31 for 20 yards (S.Brown).,3,10,2012 -20121202_CLE@OAK,2,30,51,OAK,CLE,1,10,69,(:51) (Shotgun) PENALTY on OAK-K.Barnes False Start 5 yards enforced at OAK 31 - No Play.,3,10,2012 -20121202_CLE@OAK,2,30,51,OAK,CLE,1,15,74,(:51) (Shotgun) C.Palmer pass short left to D.Heyward-Bey to OAK 36 for 10 yards (S.Brown).,3,10,2012 -20121202_CLE@OAK,2,30,28,OAK,CLE,2,5,64,(:28) (No Huddle Shotgun) C.Palmer pass short left to B.Myers to OAK 46 for 10 yards (T.Gipson).,3,10,2012 -20121202_CLE@OAK,2,30,21,OAK,CLE,1,10,54,(:21) (Shotgun) C.Palmer pass short right to B.Myers to OAK 49 for 3 yards (E.Hagg).,3,10,2012 -20121202_CLE@OAK,2,30,14,OAK,CLE,2,7,51,(:14) (Shotgun) C.Palmer pass short right to M.Reece ran ob at CLV 47 for 4 yards.,3,10,2012 -20121202_CLE@OAK,2,30,10,OAK,CLE,3,3,47,(:10) (Shotgun) C.Palmer pass short right to M.Reece ran ob at CLV 43 for 4 yards.,3,10,2012 -20121202_CLE@OAK,2,30,5,OAK,CLE,1,10,43,(:05) S.Janikowski 61 yard field goal is No Good Wide Right Center-J.Condo Holder-S.Lechler.,3,10,2012 -20121202_CLE@OAK,3,30,0,CLE,OAK,1,10,65,(15:00) B.Weeden pass short right to A.Smith to CLV 36 for 1 yard (P.Wheeler M.Mitchell).,10,3,2012 -20121202_CLE@OAK,3,29,48,CLE,OAK,2,9,64,(14:48) PENALTY on OAK-T.Kelly Encroachment 5 yards enforced at CLV 36 - No Play.,10,3,2012 -20121202_CLE@OAK,3,29,11,CLE,OAK,2,4,59,(14:11) T.Richardson left tackle to 50 for 9 yards (T.Kelly).,10,3,2012 -20121202_CLE@OAK,3,28,36,CLE,OAK,1,10,50,(13:36) T.Richardson right tackle to 50 for no gain (M.Huff). PENALTY on CLV-B.Watson Offensive Holding 10 yards enforced at 50 - No Play.,10,3,2012 -20121202_CLE@OAK,3,28,31,CLE,OAK,1,20,60,(13:31) (Shotgun) B.Weeden pass short left to G.Little to CLV 49 for 9 yards (B.Ross).,10,3,2012 -20121202_CLE@OAK,3,27,27,CLE,OAK,2,11,51,(12:27) T.Richardson left guard to OAK 48 for 3 yards (A.Carter). OAK-D.Bryant was injured during the play. His return is Probable.,10,3,2012 -20121202_CLE@OAK,3,26,57,CLE,OAK,3,8,48,(11:57) (Shotgun) B.Weeden pass short left to M.Massaquoi to OAK 42 for 6 yards (J.Hanson) [M.Burris].,10,3,2012 -20121202_CLE@OAK,3,26,18,CLE,OAK,4,2,42,(11:18) B.Weeden pass short left to T.Richardson to OAK 21 for 21 yards (M.Mitchell). OAK-M.Mitchell was injured during the play. His return is Questionable.,10,3,2012 -20121202_CLE@OAK,3,25,44,CLE,OAK,1,10,21,(10:44) T.Richardson right guard to OAK 17 for 4 yards (J.Hanson).,10,3,2012 -20121202_CLE@OAK,3,25,5,CLE,OAK,2,6,17,(10:05) (Shotgun) B.Weeden pass incomplete short right to G.Little [D.Bryant].,10,3,2012 -20121202_CLE@OAK,3,25,2,CLE,OAK,3,6,17,(10:02) B.Weeden pass incomplete short right to T.Richardson (P.Wheeler).,10,3,2012 -20121202_CLE@OAK,3,24,56,CLE,OAK,4,6,17,(9:56) P.Dawson 35 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,10,3,2012 -20121202_CLE@OAK,3,24,56,CLE,OAK,,,17,P.Dawson kicks 63 yards from CLV 35 to OAK 2. J.Stewart to OAK 18 for 16 yards (J.Bademosi).,13,3,2012 -20121202_CLE@OAK,3,24,46,OAK,CLE,1,10,82,(9:46) J.Stewart left tackle to OAK 28 for 10 yards (T.Gipson).,3,13,2012 -20121202_CLE@OAK,3,24,6,OAK,CLE,1,10,72,(9:06) (No Huddle Shotgun) C.Palmer pass short left to B.Myers pushed ob at OAK 34 for 6 yards (D.Jackson).,3,13,2012 -20121202_CLE@OAK,3,24,1,OAK,CLE,2,4,66,(9:01) (No Huddle) C.Palmer pass to D.Heyward-Bey ran ob at OAK 42 for 8 yards.,3,13,2012 -20121202_CLE@OAK,3,23,0,OAK,CLE,1,10,58,(8:00) (No Huddle) C.Palmer pass short middle to D.Heyward-Bey to CLV 47 for 11 yards (J.Haden).,3,13,2012 -20121202_CLE@OAK,3,22,28,OAK,CLE,1,10,47,(7:28) (No Huddle) J.Stewart left tackle to CLV 41 for 6 yards (K.Maiava; A.Rubin).,3,13,2012 -20121202_CLE@OAK,3,21,51,OAK,CLE,2,4,41,(6:51) (No Huddle) C.Palmer pass incomplete short left to D.Moore (S.Brown).,3,13,2012 -20121202_CLE@OAK,3,21,46,OAK,CLE,3,4,41,(6:46) (No Huddle) C.Palmer pass short left to B.Myers to CLV 35 for 6 yards (C.Robertson).,3,13,2012 -20121202_CLE@OAK,3,21,11,OAK,CLE,1,10,35,(6:11) (No Huddle) C.Palmer pass incomplete short left to D.Heyward-Bey.,3,13,2012 -20121202_CLE@OAK,3,21,7,OAK,CLE,2,10,35,(6:07) (No Huddle) J.Stewart left tackle to CLV 35 for no gain (J.Hughes).,3,13,2012 -20121202_CLE@OAK,3,20,23,OAK,CLE,3,10,35,(5:23) (No Huddle) C.Palmer sacked at CLV 42 for -7 yards (J.Parker).,3,13,2012 -20121202_CLE@OAK,3,19,55,OAK,CLE,4,17,42,(4:55) S.Lechler punts 32 yards to CLV 10 Center-J.Condo downed by OAK-O.Schmitt.,3,13,2012 -20121202_CLE@OAK,3,19,47,CLE,OAK,1,10,90,(4:47) B.Weeden pass deep left to J.Gordon to CLV 30 for 20 yards (M.Mitchell).,13,3,2012 -20121202_CLE@OAK,3,19,13,CLE,OAK,1,10,70,(4:13) B.Weeden pass short left to M.Massaquoi to OAK 16 for 54 yards (J.Hanson).,13,3,2012 -20121202_CLE@OAK,3,18,27,CLE,OAK,1,10,16,(3:27) T.Richardson up the middle to OAK 16 for no gain (M.Burris).,13,3,2012 -20121202_CLE@OAK,3,17,50,CLE,OAK,2,10,16,(2:50) (Shotgun) B.Weeden pass short right to T.Benjamin to OAK 10 for 6 yards (M.Huff).,13,3,2012 -20121202_CLE@OAK,3,17,6,CLE,OAK,3,4,10,(2:06) (Shotgun) B.Weeden pass incomplete short right to T.Richardson [B.Ross].,13,3,2012 -20121202_CLE@OAK,3,17,2,CLE,OAK,4,4,10,(2:02) P.Dawson 28 yard field goal is BLOCKED (D.Bryant) Center-C.Yount Holder-R.Hodges.,13,3,2012 -20121202_CLE@OAK,3,16,58,OAK,CLE,1,10,80,(1:58) C.Palmer pass incomplete deep middle to D.Moore.,3,13,2012 -20121202_CLE@OAK,3,16,53,OAK,CLE,2,10,80,(1:53) (No Huddle) J.Stewart up the middle to OAK 25 for 5 yards (C.Robertson).,3,13,2012 -20121202_CLE@OAK,3,16,10,OAK,CLE,3,5,75,(1:10) (Shotgun) C.Palmer pass short left to D.Heyward-Bey to OAK 36 for 11 yards (S.Brown).,3,13,2012 -20121202_CLE@OAK,3,15,26,OAK,CLE,1,10,64,(:26) (No Huddle) C.Palmer pass deep middle to R.Streater for 64 yards TOUCHDOWN.,3,13,2012 -20121202_CLE@OAK,3,15,26,OAK,CLE,,,64,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,3,13,2012 -20121202_CLE@OAK,3,15,26,OAK,CLE,,,64,S.Janikowski kicks 74 yards from OAK 35 to CLV -9. J.Cribbs to CLV 9 for 18 yards (K.Clayton).,10,13,2012 -20121202_CLE@OAK,3,15,12,CLE,OAK,1,10,91,(:12) B.Weeden pass incomplete short right to J.Cameron (T.Kelly).,13,10,2012 -20121202_CLE@OAK,3,15,9,CLE,OAK,2,10,91,(:09) B.Weeden pass incomplete short middle to M.Hardesty (L.Houston) [D.Bryant].,13,10,2012 -20121202_CLE@OAK,3,15,4,CLE,OAK,3,10,91,(:04) (Shotgun) B.Weeden pass short middle to G.Little to CLV 22 for 13 yards (J.Hanson) [M.Burris].,13,10,2012 -20121202_CLE@OAK,4,15,0,CLE,OAK,1,10,78,(15:00) M.Hardesty up the middle to CLV 26 for 4 yards (T.Branch).,13,10,2012 -20121202_CLE@OAK,4,14,23,CLE,OAK,2,6,74,(14:23) M.Hardesty right end to CLV 39 for 13 yards (M.Burris).,13,10,2012 -20121202_CLE@OAK,4,13,44,CLE,OAK,1,10,61,(13:44) M.Hardesty left tackle to CLV 42 for 3 yards (T.Branch).,13,10,2012 -20121202_CLE@OAK,4,13,10,CLE,OAK,2,7,58,(13:10) B.Weeden sacked at CLV 31 for -11 yards (L.Houston).,13,10,2012 -20121202_CLE@OAK,4,12,38,CLE,OAK,3,18,69,(12:38) (Shotgun) B.Weeden pass short middle to B.Watson to CLV 45 for 14 yards (J.Hanson).,13,10,2012 -20121202_CLE@OAK,4,12,1,CLE,OAK,4,4,55,(12:01) R.Hodges punts 43 yards to OAK 12 Center-C.Yount fair catch by D.Moore. PENALTY on CLV-B.Skrine Fair Catch Interference 15 yards enforced at OAK 12.,13,10,2012 -20121202_CLE@OAK,4,11,47,OAK,CLE,1,10,73,(11:47) (Shotgun) C.Palmer pass incomplete short right to J.Criner.,10,13,2012 -20121202_CLE@OAK,4,11,43,OAK,CLE,2,10,73,(11:43) (No Huddle Shotgun) C.Palmer pass short left to M.Reece to OAK 38 for 11 yards (T.Gipson).,10,13,2012 -20121202_CLE@OAK,4,11,19,OAK,CLE,1,10,62,(11:19) (No Huddle) C.Palmer pass short right to R.Streater to CLV 43 for 19 yards (B.Skrine).,10,13,2012 -20121202_CLE@OAK,4,10,47,OAK,CLE,1,10,43,(10:47) (No Huddle) C.Palmer pass short right to D.Hagan to CLV 37 for 6 yards (J.Haden).,10,13,2012 -20121202_CLE@OAK,4,10,7,OAK,CLE,2,4,37,(10:07) (No Huddle) C.Palmer pass incomplete short left to J.Criner (S.Brown).,10,13,2012 -20121202_CLE@OAK,4,10,3,OAK,CLE,3,4,37,(10:03) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to CLV 33 for 4 yards (E.Hagg). Measurement for 1st down.,10,13,2012 -20121202_CLE@OAK,4,9,38,OAK,CLE,1,10,33,(9:38) (No Huddle Shotgun) C.Palmer pass deep left intended for J.Criner INTERCEPTED by S.Brown at CLV 6. S.Brown to CLV 6 for no gain (J.Criner).,10,13,2012 -20121202_CLE@OAK,4,9,31,CLE,OAK,1,10,94,(9:31) B.Weeden pass short left to J.Cameron to CLV 13 for 7 yards (M.Burris).,13,10,2012 -20121202_CLE@OAK,4,8,56,CLE,OAK,2,3,87,(8:56) B.Weeden pass incomplete deep left to B.Watson [L.Houston].,13,10,2012 -20121202_CLE@OAK,4,8,52,CLE,OAK,3,3,87,(8:52) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 24 for 11 yards (B.Ross) [D.Bryant].,13,10,2012 -20121202_CLE@OAK,4,8,8,CLE,OAK,1,10,76,(8:08) M.Hardesty left tackle to CLV 24 for no gain (O.Gaither).,13,10,2012 -20121202_CLE@OAK,4,7,31,CLE,OAK,2,10,76,(7:31) B.Weeden pass short left to B.Watson to CLV 46 for 22 yards (R.Bartell).,13,10,2012 -20121202_CLE@OAK,4,7,4,CLE,OAK,1,10,54,(7:04) T.Richardson up the middle to CLV 48 for 2 yards (D.Bryant; M.Burris).,13,10,2012 -20121202_CLE@OAK,4,6,27,CLE,OAK,2,8,52,(6:27) B.Weeden pass short middle to B.Watson to OAK 45 for 7 yards (M.Burris T.Branch). OAK-T.Branch was injured during the play.,13,10,2012 -20121202_CLE@OAK,4,5,50,CLE,OAK,3,1,45,(5:50) B.Weeden up the middle to OAK 45 for no gain (Team).,13,10,2012 -20121202_CLE@OAK,4,4,57,CLE,OAK,4,1,45,(4:57) B.Weeden up the middle to OAK 42 for 3 yards (Team).,13,10,2012 -20121202_CLE@OAK,4,4,44,CLE,OAK,1,10,42,(4:44) B.Weeden pass short right to J.Cameron to OAK 19 for 23 yards (B.Ross).,13,10,2012 -20121202_CLE@OAK,4,4,36,CLE,OAK,1,10,19,(4:36) T.Richardson right tackle to OAK 18 for 1 yard (L.Houston; D.Bryant).,13,10,2012 -20121202_CLE@OAK,4,3,50,CLE,OAK,2,9,18,(3:50) T.Richardson left tackle to OAK 10 for 8 yards (Team).,13,10,2012 -20121202_CLE@OAK,4,3,38,CLE,OAK,3,1,10,(3:38) O.Cousins reported in as eligible. PENALTY on OAK-D.Bryant Neutral Zone Infraction 5 yards enforced at OAK 10 - No Play.,13,10,2012 -20121202_CLE@OAK,4,3,38,CLE,OAK,1,5,5,(3:38) T.Richardson left tackle to OAK 3 for 2 yards (M.Burris).,13,10,2012 -20121202_CLE@OAK,4,3,31,CLE,OAK,2,3,3,(3:31) T.Richardson up the middle for 3 yards TOUCHDOWN.,13,10,2012 -20121202_CLE@OAK,4,3,31,CLE,OAK,,,3,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,13,10,2012 -20121202_CLE@OAK,4,3,31,CLE,OAK,,,3,P.Dawson kicks 69 yards from CLV 35 to OAK -4. C.Francies to OAK 16 for 20 yards (T.Carder).,20,10,2012 -20121202_CLE@OAK,4,3,21,OAK,CLE,1,10,84,(3:21) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 25 for 9 yards (D.Jackson).,10,20,2012 -20121202_CLE@OAK,4,2,55,OAK,CLE,2,1,75,(2:55) (No Huddle Shotgun) C.Palmer pass short middle to J.Criner to OAK 32 for 7 yards (J.Haden).,10,20,2012 -20121202_CLE@OAK,4,2,27,OAK,CLE,1,10,68,(2:27) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to OAK 43 for 11 yards (E.Hagg).,10,20,2012 -20121202_CLE@OAK,4,2,2,OAK,CLE,1,10,57,(2:02) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to CLV 49 for 8 yards (E.Hagg).,10,20,2012 -20121202_CLE@OAK,4,1,57,OAK,CLE,2,2,49,(1:57) (Shotgun) C.Palmer pass short middle to M.Reece to OAK 49 for -2 yards (B.Skrine).,10,20,2012 -20121202_CLE@OAK,4,1,29,OAK,CLE,3,4,51,(1:29) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to CLV 37 for 14 yards (D.Jackson).,10,20,2012 -20121202_CLE@OAK,4,1,16,OAK,CLE,1,10,37,(1:16) C.Palmer spiked the ball to stop the clock.,10,20,2012 -20121202_CLE@OAK,4,1,13,OAK,CLE,2,10,37,(1:13) (Shotgun) C.Palmer pass incomplete short middle to J.Criner.,10,20,2012 -20121202_CLE@OAK,4,1,12,OAK,CLE,3,10,37,(1:12) (Shotgun) C.Palmer pass short middle to R.Streater to CLV 24 for 13 yards (E.Hagg).,10,20,2012 -20121202_CLE@OAK,4,1,0,OAK,CLE,1,10,24,(1:00) C.Palmer spiked the ball to stop the clock.,10,20,2012 -20121202_CLE@OAK,4,0,57,OAK,CLE,2,10,24,(:57) (Shotgun) C.Palmer pass short left to M.Reece to CLV 9 for 15 yards (E.Hagg). PENALTY on OAK-R.Streater Illegal Formation 5 yards enforced at CLV 24 - No Play.,10,20,2012 -20121202_CLE@OAK,4,0,48,OAK,CLE,2,15,29,(:48) (Shotgun) C.Palmer pass short middle to B.Myers to CLV 15 for 14 yards (B.Skrine).,10,20,2012 -20121202_CLE@OAK,4,0,32,OAK,CLE,3,1,15,(:32) C.Palmer spiked the ball to stop the clock.,10,20,2012 -20121202_CLE@OAK,4,0,32,OAK,CLE,4,1,15,(:32) (Shotgun) C.Palmer pass short middle to J.Criner to CLV 12 for 3 yards (E.Hagg).,10,20,2012 -20121202_CLE@OAK,4,0,14,OAK,CLE,1,10,12,(:14) C.Palmer pass incomplete short right to R.Streater (J.Haden).,10,20,2012 -20121202_CLE@OAK,4,0,6,OAK,CLE,2,10,12,(:06) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 5 yards enforced at CLV 12 - No Play.,10,20,2012 -20121202_CLE@OAK,4,0,6,OAK,CLE,2,15,17,(:06) (Shotgun) C.Palmer pass deep middle to B.Myers for 17 yards TOUCHDOWN.,10,20,2012 -20121202_CLE@OAK,4,0,6,OAK,CLE,,,17,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,10,20,2012 -20121202_CLE@OAK,4,0,6,OAK,CLE,,,17,S.Janikowski kicks onside 21 yards from OAK 35 to CLV 44 out of bounds. PENALTY on OAK-S.Janikowski Kickoff Out of Bounds 0 yards enforced between downs.,17,20,2012 -20121202_CLE@OAK,4,0,1,CLE,OAK,1,10,56,(:01) B.Weeden kneels to CLV 43 for -1 yards.,20,17,2012 -20121202_CLE@OAK,4,0,1,CLE,OAK,,,56,                      ,20,17,2012 -20121202_CIN@SD,1,0,0,SD,CIN,,,56,N.Novak kicks 70 yards from SD 35 to CIN -5. B.Tate to CIN -5 for no gain. FUMBLES and recovers at CIN -1. B.Tate to CIN 9 for 10 yards (C.Lynch S.Ajirotutu).,0,0,2012 -20121202_CIN@SD,1,59,56,CIN,SD,1,10,91,(14:56) (Shotgun) A.Dalton pass short right to A.Green to CIN 13 for 4 yards (Q.Jammer).,0,0,2012 -20121202_CIN@SD,1,59,16,CIN,SD,2,6,87,(14:16) B.Green-Ellis left end to CIN 20 for 7 yards (C.Lynch).,0,0,2012 -20121202_CIN@SD,1,58,41,CIN,SD,1,10,80,(13:41) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 29 for 9 yards (M.Gilchrist D.Williams).,0,0,2012 -20121202_CIN@SD,1,58,15,CIN,SD,2,1,71,(13:15) B.Green-Ellis up the middle to CIN 29 for no gain (V.Martin).,0,0,2012 -20121202_CIN@SD,1,57,40,CIN,SD,3,1,71,(12:40) B.Green-Ellis up the middle to CIN 35 for 6 yards (C.Lynch).,0,0,2012 -20121202_CIN@SD,1,57,3,CIN,SD,1,10,65,(12:03) A.Dalton pass incomplete short right to A.Hawkins.,0,0,2012 -20121202_CIN@SD,1,56,56,CIN,SD,2,10,65,(11:56) (Shotgun) A.Dalton pass short right to R.Whalen to CIN 45 for 10 yards (T.Spikes).,0,0,2012 -20121202_CIN@SD,1,56,30,CIN,SD,1,10,55,(11:30) B.Green-Ellis right end to CIN 47 for 2 yards (K.Reyes C.Lynch).,0,0,2012 -20121202_CIN@SD,1,55,47,CIN,SD,2,8,53,(10:47) A.Dalton pass incomplete short right.,0,0,2012 -20121202_CIN@SD,1,55,41,CIN,SD,3,8,53,(10:41) (Shotgun) A.Dalton pass short right to A.Hawkins to SD 36 for 17 yards (E.Weddle) [M.Gilchrist].,0,0,2012 -20121202_CIN@SD,1,55,0,CIN,SD,1,10,36,(10:00) B.Leonard right end to SD 35 for 1 yard (E.Weddle M.Gilchrist).,0,0,2012 -20121202_CIN@SD,1,54,24,CIN,SD,2,9,35,(9:24) A.Dalton pass incomplete short left to J.Gresham [D.Williams].,0,0,2012 -20121202_CIN@SD,1,54,18,CIN,SD,3,9,35,(9:18) (Shotgun) A.Dalton pass incomplete short left to J.Gresham.,0,0,2012 -20121202_CIN@SD,1,54,12,CIN,SD,4,9,35,(9:12) (Shotgun) A.Dalton pass incomplete short left. PENALTY on SD-S.Wright Defensive Holding 5 yards enforced at SD 35 - No Play.,0,0,2012 -20121202_CIN@SD,1,54,4,CIN,SD,1,10,30,(9:04) PENALTY on SD-A.Barnes Neutral Zone Infraction 5 yards enforced at SD 30 - No Play.,0,0,2012 -20121202_CIN@SD,1,54,4,CIN,SD,1,5,25,(9:04) B.Green-Ellis up the middle to SD 20 for 5 yards (C.Lynch A.Garay).,0,0,2012 -20121202_CIN@SD,1,53,26,CIN,SD,1,10,20,(8:26) B.Green-Ellis right end to SD 19 for 1 yard (D.Williams L.English).,0,0,2012 -20121202_CIN@SD,1,52,45,CIN,SD,2,9,19,(7:45) (Shotgun) A.Dalton pass deep right to J.Gresham for 19 yards TOUCHDOWN.,0,0,2012 -20121202_CIN@SD,1,52,45,CIN,SD,,,19,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121202_CIN@SD,1,52,45,CIN,SD,,,19,M.Nugent kicks 59 yards from CIN 35 to SD 6. C.Carr to SD 19 for 13 yards (C.Peerman).,7,0,2012 -20121202_CIN@SD,1,52,32,SD,CIN,1,10,81,(7:32) P.Rivers pass short right to R.Mathews to SD 28 for 9 yards (M.Lawson).,0,7,2012 -20121202_CIN@SD,1,51,56,SD,CIN,2,1,72,(6:56) R.Mathews right tackle to SD 30 for 2 yards (G.Atkins V.Burfict). SD-J.Clary was injured during the play.,0,7,2012 -20121202_CIN@SD,1,51,14,SD,CIN,1,10,70,(6:14) (Shotgun) P.Rivers pass short left to M.Floyd to SD 36 for 6 yards (R.Maualuga).,0,7,2012 -20121202_CIN@SD,1,50,39,SD,CIN,2,4,64,(5:39) P.Rivers pass short left to L.McClain to SD 41 for 5 yards (M.Johnson).,0,7,2012 -20121202_CIN@SD,1,49,53,SD,CIN,1,10,59,(4:53) P.Rivers pass short left to M.Floyd ran ob at CIN 44 for 15 yards.,0,7,2012 -20121202_CIN@SD,1,49,27,SD,CIN,1,10,44,(4:27) P.Rivers pass short right to A.Gates to CIN 35 for 9 yards (M.Lawson).,0,7,2012 -20121202_CIN@SD,1,48,47,SD,CIN,2,1,35,(3:47) R.Mathews up the middle to CIN 29 for 6 yards (V.Burfict).,0,7,2012 -20121202_CIN@SD,1,48,3,SD,CIN,1,10,29,(3:03) R.Mathews right tackle to CIN 26 for 3 yards (D.Peko G.Atkins).,0,7,2012 -20121202_CIN@SD,1,47,23,SD,CIN,2,7,26,(2:23) (Shotgun) P.Rivers pass deep middle to A.Gates to CIN 7 for 19 yards (R.Nelson V.Burfict).,0,7,2012 -20121202_CIN@SD,1,46,40,SD,CIN,1,7,7,(1:40) (Shotgun) P.Rivers sacked at CIN 14 for -7 yards (C.Dunlap). FUMBLES (C.Dunlap) recovered by SD-A.Gates at CIN 16. A.Gates to CIN 16 for no gain (C.Dunlap).,0,7,2012 -20121202_CIN@SD,1,45,54,SD,CIN,2,16,16,(:54) (Shotgun) P.Rivers pass short right to R.Mathews to CIN 10 for 6 yards (D.Peko).,0,7,2012 -20121202_CIN@SD,1,45,11,SD,CIN,3,10,10,(:11) (Shotgun) P.Rivers pass short middle to R.Brown to CIN 2 for 8 yards (V.Burfict R.Maualuga).,0,7,2012 -20121202_CIN@SD,2,45,0,SD,CIN,4,2,2,(15:00) N.Novak 20 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,0,7,2012 -20121202_CIN@SD,2,45,0,SD,CIN,,,2,N.Novak kicks 59 yards from SD 35 to CIN 6. B.Tate to CIN 23 for 17 yards (J.Mouton).,3,7,2012 -20121202_CIN@SD,2,44,52,CIN,SD,1,10,77,(14:52) B.Green-Ellis up the middle to CIN 23 for no gain (M.Gilchrist).,7,3,2012 -20121202_CIN@SD,2,44,19,CIN,SD,2,10,77,(14:19) (Shotgun) A.Dalton pass short right intended for A.Green INTERCEPTED by D.Williams at CIN 31. D.Williams for 31 yards TOUCHDOWN.,7,3,2012 -20121202_CIN@SD,2,44,19,SD,CIN,,,77,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,3,7,2012 -20121202_CIN@SD,2,44,19,SD,CIN,,,77,N.Novak kicks 73 yards from SD 35 to CIN -8. B.Tate to CIN 17 for 25 yards (S.Ajirotutu).,10,7,2012 -20121202_CIN@SD,2,44,4,CIN,SD,1,10,83,(14:04) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 24 for 7 yards (Q.Jammer S.Phillips).,7,10,2012 -20121202_CIN@SD,2,43,25,CIN,SD,2,3,76,(13:25) B.Green-Ellis right tackle ran ob at SD 35 for 41 yards.,7,10,2012 -20121202_CIN@SD,2,42,44,CIN,SD,1,10,35,(12:44) (Shotgun) A.Dalton pass deep middle to A.Green to SD 19 for 16 yards (T.Spikes).,7,10,2012 -20121202_CIN@SD,2,42,12,CIN,SD,1,10,19,(12:12) C.Peerman right tackle to SD 17 for 2 yards (C.Lynch).,7,10,2012 -20121202_CIN@SD,2,41,39,CIN,SD,2,8,17,(11:39) (Shotgun) A.Dalton pass incomplete deep right to A.Green. PENALTY on CIN-A.Green Offensive Pass Interference 10 yards enforced at SD 17 - No Play.,7,10,2012 -20121202_CIN@SD,2,41,32,CIN,SD,2,18,27,(11:32) (Shotgun) A.Dalton pass short left to A.Green to SD 12 for 15 yards (A.Cason).,7,10,2012 -20121202_CIN@SD,2,40,48,CIN,SD,3,3,12,(10:48) (Shotgun) A.Dalton pass short left to J.Gresham pushed ob at SD 5 for 7 yards (C.Lynch). Penalty on SD-M.Gilchrist Illegal Use of Hands declined.,7,10,2012 -20121202_CIN@SD,2,40,33,CIN,SD,1,5,5,(10:33) (Shotgun) A.Dalton pass incomplete short right to A.Green.,7,10,2012 -20121202_CIN@SD,2,40,27,CIN,SD,2,5,5,(10:27) (Shotgun) B.Green-Ellis right guard to SD 1 for 4 yards (C.Lynch T.Spikes).,7,10,2012 -20121202_CIN@SD,2,39,49,CIN,SD,3,1,1,(9:49) A.Dalton pass incomplete short right to A.Green (C.Lynch).,7,10,2012 -20121202_CIN@SD,2,39,41,CIN,SD,4,1,1,(9:41) M.Nugent 19 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,10,2012 -20121202_CIN@SD,2,39,41,CIN,SD,,,1,M.Nugent kicks 74 yards from CIN 35 to SD -9. C.Carr Touchback.,10,10,2012 -20121202_CIN@SD,2,39,38,SD,CIN,1,10,80,(9:38) (Shotgun) P.Rivers pass short right to D.Alexander to SD 36 for 16 yards (C.Crocker R.Nelson).,10,10,2012 -20121202_CIN@SD,2,38,55,SD,CIN,1,10,64,(8:55) P.Rivers pass short left to L.McClain to SD 35 for -1 yards (C.Dunlap).,10,10,2012 -20121202_CIN@SD,2,38,11,SD,CIN,2,11,65,(8:11) P.Rivers pass incomplete short right to R.Mathews.,10,10,2012 -20121202_CIN@SD,2,38,6,SD,CIN,3,11,65,(8:06) (Shotgun) P.Rivers pass deep middle to D.Alexander to CIN 47 for 18 yards (R.Nelson).,10,10,2012 -20121202_CIN@SD,2,37,22,SD,CIN,1,10,47,(7:22) R.Mathews left end pushed ob at CIN 35 for 12 yards. PENALTY on SD-R.McMichael Offensive Holding 10 yards enforced at CIN 47 - No Play.,10,10,2012 -20121202_CIN@SD,2,36,54,SD,CIN,1,20,57,(6:54) (Shotgun) P.Rivers pass incomplete deep right.,10,10,2012 -20121202_CIN@SD,2,36,48,SD,CIN,2,20,57,(6:48) R.Mathews left guard to SD 46 for 3 yards (R.Maualuga).,10,10,2012 -20121202_CIN@SD,2,36,2,SD,CIN,3,17,54,(6:02) (Shotgun) P.Rivers pass incomplete short right to R.Brown (C.Dunlap).,10,10,2012 -20121202_CIN@SD,2,35,58,SD,CIN,4,17,54,(5:58) M.Scifres punts 43 yards to CIN 11 Center-K.Nelson fair catch by B.Tate.,10,10,2012 -20121202_CIN@SD,2,35,50,CIN,SD,1,10,89,(5:50) A.Dalton pass short right to A.Green pushed ob at CIN 17 for 6 yards (Q.Jammer).,10,10,2012 -20121202_CIN@SD,2,35,22,CIN,SD,2,4,83,(5:22) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 19 for 2 yards (E.Weddle).,10,10,2012 -20121202_CIN@SD,2,34,49,CIN,SD,3,2,81,(4:49) B.Green-Ellis right tackle to CIN 28 for 9 yards (Q.Jammer).,10,10,2012 -20121202_CIN@SD,2,34,18,CIN,SD,1,10,72,(4:18) B.Green-Ellis up the middle to CIN 30 for 2 yards (M.Ingram).,10,10,2012 -20121202_CIN@SD,2,33,44,CIN,SD,2,8,70,(3:44) (Shotgun) A.Dalton pass short left to A.Green to CIN 39 for 9 yards (A.Cason).,10,10,2012 -20121202_CIN@SD,2,33,9,CIN,SD,1,10,61,(3:09) A.Dalton pass short left to M.Jones pushed ob at SD 45 for 16 yards (M.Gilchrist).,10,10,2012 -20121202_CIN@SD,2,32,43,CIN,SD,1,10,45,(2:43) C.Peerman right tackle to SD 43 for 2 yards (M.Gilchrist T.Spikes).,10,10,2012 -20121202_CIN@SD,2,32,43,CIN,SD,2,8,43,(2:43) A.Dalton pass short left to A.Green to SD 39 for 4 yards (K.Reyes).,10,10,2012 -20121202_CIN@SD,2,32,0,CIN,SD,3,4,39,(2:00) (Shotgun) PENALTY on CIN-A.Whitworth False Start 5 yards enforced at SD 39 - No Play.,10,10,2012 -20121202_CIN@SD,2,32,0,CIN,SD,3,9,44,(2:00) (Shotgun) A.Dalton pass incomplete short right to B.Leonard.,10,10,2012 -20121202_CIN@SD,2,31,54,CIN,SD,4,9,44,(1:54) K.Huber punts 30 yards to SD 14 Center-C.Harris fair catch by C.Carr.,10,10,2012 -20121202_CIN@SD,2,31,45,SD,CIN,1,10,86,(1:45) P.Rivers pass incomplete short right. Penalty on SD Illegal Formation declined.,10,10,2012 -20121202_CIN@SD,2,31,37,SD,CIN,2,10,86,(1:37) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,10,10,2012 -20121202_CIN@SD,2,31,34,SD,CIN,3,10,86,(1:34) (Shotgun) P.Rivers pass short left to S.Ajirotutu to SD 19 for 5 yards (A.Jones V.Burfict). PENALTY on CIN-M.Johnson Defensive Offside 5 yards enforced at SD 14 - No Play.,10,10,2012 -20121202_CIN@SD,2,31,28,SD,CIN,3,5,81,(1:28) (Shotgun) P.Rivers pass short middle to D.Alexander to SD 47 for 28 yards (C.Crocker).,10,10,2012 -20121202_CIN@SD,2,30,53,SD,CIN,1,10,53,(:53) (Shotgun) P.Rivers pass incomplete short right to D.Alexander.,10,10,2012 -20121202_CIN@SD,2,30,48,SD,CIN,2,10,53,(:48) (Shotgun) P.Rivers pass short middle to A.Gates to CIN 46 for 7 yards (V.Burfict).,10,10,2012 -20121202_CIN@SD,2,30,42,SD,CIN,3,3,46,(:42) (Shotgun) PENALTY on SD-A.Gates False Start 5 yards enforced at CIN 46 - No Play.,10,10,2012 -20121202_CIN@SD,2,30,42,SD,CIN,3,8,51,(:42) (Shotgun) PENALTY on SD-M.Harris False Start 5 yards enforced at SD 49 - No Play.,10,10,2012 -20121202_CIN@SD,2,30,42,SD,CIN,3,13,56,(:42) (Shotgun) P.Rivers pass deep left to M.Floyd to CIN 32 for 24 yards (R.Nelson).,10,10,2012 -20121202_CIN@SD,2,30,36,SD,CIN,1,10,32,(:36) (Shotgun) P.Rivers pass short right to D.Alexander to CIN 20 for 12 yards (C.Crocker).,10,10,2012 -20121202_CIN@SD,2,30,18,SD,CIN,1,10,20,(:18) P.Rivers spiked the ball to stop the clock.,10,10,2012 -20121202_CIN@SD,2,30,17,SD,CIN,2,10,20,(:17) (Shotgun) P.Rivers scrambles right end ran ob at CIN 9 for 11 yards (R.Maualuga).,10,10,2012 -20121202_CIN@SD,2,30,9,SD,CIN,1,9,9,(:09) (Shotgun) P.Rivers pass short right to R.Brown to CIN 1 for 8 yards (T.Newman V.Burfict).,10,10,2012 -20121202_CIN@SD,2,30,1,SD,CIN,2,1,1,(:01) N.Novak 19 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,10,10,2012 -20121202_CIN@SD,3,30,0,CIN,SD,,,1,M.Nugent kicks 63 yards from CIN 35 to SD 2. C.Carr to SD 26 for 24 yards (D.Skuta).,10,13,2012 -20121202_CIN@SD,3,29,46,SD,CIN,1,10,74,(14:46) R.Mathews up the middle to SD 26 for no gain (R.Maualuga).,13,10,2012 -20121202_CIN@SD,3,29,16,SD,CIN,2,10,74,(14:16) P.Rivers pass short left to A.Gates to SD 29 for 3 yards (L.Hall). CIN-L.Hall was injured during the play.,13,10,2012 -20121202_CIN@SD,3,28,31,SD,CIN,3,7,71,(13:31) (Shotgun) P.Rivers pass incomplete short right to A.Gates.,13,10,2012 -20121202_CIN@SD,3,28,24,SD,CIN,4,7,71,(13:24) M.Scifres punts 55 yards to CIN 16 Center-K.Nelson. A.Jones to CIN 40 for 24 yards (B.Bird).,13,10,2012 -20121202_CIN@SD,3,28,10,CIN,SD,1,10,60,(13:10) A.Dalton pass incomplete deep left to A.Hawkins (M.Ingram).,10,13,2012 -20121202_CIN@SD,3,28,2,CIN,SD,2,10,60,(13:02) (Shotgun) A.Dalton pass short middle to A.Green to SD 44 for 16 yards (Q.Jammer).,10,13,2012 -20121202_CIN@SD,3,27,37,CIN,SD,1,10,44,(12:37) B.Green-Ellis right tackle to SD 35 for 9 yards (Q.Jammer).,10,13,2012 -20121202_CIN@SD,3,27,14,CIN,SD,2,1,35,(12:14) B.Green-Ellis up the middle to SD 33 for 2 yards (C.Liuget).,10,13,2012 -20121202_CIN@SD,3,26,40,CIN,SD,1,10,33,(11:40) A.Dalton pass incomplete short right.,10,13,2012 -20121202_CIN@SD,3,26,32,CIN,SD,2,10,33,(11:32) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins.,10,13,2012 -20121202_CIN@SD,3,26,28,CIN,SD,3,10,33,(11:28) (Shotgun) A.Dalton pass deep middle intended for M.Jones INTERCEPTED by C.Lynch at SD 12. C.Lynch to SD 32 for 20 yards (M.Jones).,10,13,2012 -20121202_CIN@SD,3,26,15,SD,CIN,1,10,68,(11:15) P.Rivers pass short left to R.Mathews to SD 42 for 10 yards (P.Sims W.Gilberry).,13,10,2012 -20121202_CIN@SD,3,25,30,SD,CIN,1,10,58,(10:30) P.Rivers pass incomplete short left to D.Alexander.,13,10,2012 -20121202_CIN@SD,3,25,25,SD,CIN,2,10,58,(10:25) P.Rivers sacked at SD 40 for -2 yards (W.Gilberry).,13,10,2012 -20121202_CIN@SD,3,24,45,SD,CIN,3,12,60,(9:45) (Shotgun) P.Rivers pass incomplete short left to D.Alexander.,13,10,2012 -20121202_CIN@SD,3,24,41,SD,CIN,4,12,60,(9:41) M.Scifres punts 39 yards to CIN 21 Center-K.Nelson. B.Tate pushed ob at CIN 37 for 16 yards (C.Carr).,13,10,2012 -20121202_CIN@SD,3,24,30,CIN,SD,1,10,63,(9:30) B.Green-Ellis right end to CIN 35 for -2 yards (M.Ingram).,10,13,2012 -20121202_CIN@SD,3,23,54,CIN,SD,2,12,65,(8:54) (Shotgun) A.Dalton pass incomplete short middle to B.Green-Ellis. PENALTY on SD-T.Spikes Personal Foul 15 yards enforced at CIN 35.,10,13,2012 -20121202_CIN@SD,3,23,44,CIN,SD,1,10,50,(8:44) (Shotgun) A.Dalton pass short left to B.Green-Ellis to SD 48 for 2 yards (M.Gilchrist).,10,13,2012 -20121202_CIN@SD,3,23,5,CIN,SD,2,8,48,(8:05) B.Green-Ellis left end to SD 45 for 3 yards (D.Williams). PENALTY on SD-M.Ingram Defensive Offside 5 yards enforced at SD 48 - No Play.,10,13,2012 -20121202_CIN@SD,3,22,42,CIN,SD,2,3,43,(7:42) (Shotgun) A.Dalton pass short right to J.Gresham to SD 42 for 1 yard (T.Spikes D.Williams). FUMBLES (T.Spikes) RECOVERED by SD-Q.Jammer at SD 39. Q.Jammer to SD 39 for no gain (C.Boling).,10,13,2012 -20121202_CIN@SD,3,22,34,SD,CIN,1,10,61,(7:34) R.Mathews left end to SD 43 for 4 yards (M.Johnson).,13,10,2012 -20121202_CIN@SD,3,21,54,SD,CIN,2,6,57,(6:54) (Shotgun) P.Rivers up the middle to CIN 48 for 9 yards (C.Crocker).,13,10,2012 -20121202_CIN@SD,3,21,8,SD,CIN,1,10,48,(6:08) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,13,10,2012 -20121202_CIN@SD,3,21,3,SD,CIN,2,10,48,(6:03) P.Rivers pass short left to L.McClain to CIN 36 for 12 yards (M.Johnson V.Burfict).,13,10,2012 -20121202_CIN@SD,3,20,17,SD,CIN,1,10,36,(5:17) (Shotgun) P.Rivers pass incomplete short right to R.McMichael.,13,10,2012 -20121202_CIN@SD,3,20,10,SD,CIN,2,10,36,(5:10) (Shotgun) P.Rivers pass incomplete short left to A.Gates. PENALTY on CIN-P.Sims Defensive Offside 5 yards enforced at CIN 36 - No Play.,13,10,2012 -20121202_CIN@SD,3,20,6,SD,CIN,2,5,31,(5:06) (Shotgun) P.Rivers pass short left to A.Gates to CIN 25 for 6 yards (V.Burfict).,13,10,2012 -20121202_CIN@SD,3,19,26,SD,CIN,1,10,25,(4:26) R.Mathews right tackle to CIN 23 for 2 yards (D.Peko C.Dunlap).,13,10,2012 -20121202_CIN@SD,3,18,42,SD,CIN,2,8,23,(3:42) (Shotgun) P.Rivers sacked at CIN 31 for -8 yards (sack split by G.Atkins and D.Peko).,13,10,2012 -20121202_CIN@SD,3,18,10,SD,CIN,3,16,31,(3:10) (Shotgun) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at CIN 31 - No Play.,13,10,2012 -20121202_CIN@SD,3,17,50,SD,CIN,3,21,36,(2:50) (Shotgun) P.Rivers pass incomplete short right.,13,10,2012 -20121202_CIN@SD,3,17,41,SD,CIN,4,21,36,(2:41) N.Novak 54 yard field goal is No Good Hit Right Upright Center-K.Nelson Holder-M.Scifres.,13,10,2012 -20121202_CIN@SD,3,17,36,CIN,SD,1,10,56,(2:36) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 45 for 1 yard (M.Ingram).,10,13,2012 -20121202_CIN@SD,3,17,0,CIN,SD,2,9,55,(2:00) (Shotgun) A.Dalton pass short middle to A.Hawkins to SD 48 for 7 yards (D.Williams).,10,13,2012 -20121202_CIN@SD,3,16,32,CIN,SD,3,2,48,(1:32) B.Green-Ellis right tackle to SD 49 for -1 yards (Q.Jammer C.Lynch).,10,13,2012 -20121202_CIN@SD,3,15,57,CIN,SD,4,3,49,(:57) K.Huber punts 45 yards to SD 4 Center-C.Harris downed by CIN-C.Harris.,10,13,2012 -20121202_CIN@SD,3,15,45,SD,CIN,1,10,96,(:45) R.Mathews left tackle to SD 5 for 1 yard (P.Sims R.Maualuga).,13,10,2012 -20121202_CIN@SD,3,15,4,SD,CIN,2,9,95,(:04) (Shotgun) P.Rivers pass short right to A.Gates to SD 10 for 5 yards (R.Maualuga).,13,10,2012 -20121202_CIN@SD,4,15,0,SD,CIN,3,4,90,(15:00) (Shotgun) P.Rivers pass short right to R.Brown to SD 7 for -3 yards (R.Nelson).,13,10,2012 -20121202_CIN@SD,4,14,26,SD,CIN,4,7,93,(14:26) M.Scifres punts 53 yards to CIN 40 Center-K.Nelson. A.Jones pushed ob at SD 45 for 15 yards (M.Ingram). CIN-D.Kirkpatrick was injured during the play. PENALTY on CIN-M.Lawson Illegal Block Above the Waist 10 yards enforced at SD 45.,13,10,2012 -20121202_CIN@SD,4,14,12,CIN,SD,1,10,55,(14:12) (Shotgun) B.Green-Ellis up the middle to SD 49 for 6 yards (M.Ingram).,10,13,2012 -20121202_CIN@SD,4,13,53,CIN,SD,2,4,49,(13:53) A.Dalton pass incomplete deep right to A.Green.,10,13,2012 -20121202_CIN@SD,4,13,46,CIN,SD,3,4,49,(13:46) (Shotgun) A.Dalton sacked at SD 49 for 0 yards (S.Wright C.Liuget).,10,13,2012 -20121202_CIN@SD,4,13,4,CIN,SD,4,4,49,(13:04) K.Huber punts 39 yards to SD 10 Center-C.Harris fair catch by C.Carr.,10,13,2012 -20121202_CIN@SD,4,12,59,SD,CIN,1,10,90,(12:59) (Shotgun) R.Mathews up the middle to SD 15 for 5 yards (P.Sims V.Burfict).,13,10,2012 -20121202_CIN@SD,4,12,18,SD,CIN,2,5,85,(12:18) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,13,10,2012 -20121202_CIN@SD,4,12,12,SD,CIN,3,5,85,(12:12) (Shotgun) P.Rivers pass incomplete short right to R.Brown.,13,10,2012 -20121202_CIN@SD,4,12,6,SD,CIN,4,5,85,(12:06) M.Scifres punts 40 yards to CIN 45 Center-K.Nelson downed by SD-K.Nelson.,13,10,2012 -20121202_CIN@SD,4,11,53,CIN,SD,1,10,55,(11:53) (Shotgun) A.Dalton pass short left to A.Green pushed ob at SD 47 for 8 yards (A.Cason).,10,13,2012 -20121202_CIN@SD,4,11,29,CIN,SD,2,2,47,(11:29) (Shotgun) B.Green-Ellis up the middle to SD 46 for 1 yard (T.Spikes C.Liuget).,10,13,2012 -20121202_CIN@SD,4,10,50,CIN,SD,3,1,46,(10:50) B.Green-Ellis up the middle to SD 44 for 2 yards (C.Liuget).,10,13,2012 -20121202_CIN@SD,4,10,10,CIN,SD,1,10,44,(10:10) B.Green-Ellis right end pushed ob at SD 40 for 4 yards (Q.Jammer; M.Ingram). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at SD 40.,10,13,2012 -20121202_CIN@SD,4,9,46,CIN,SD,1,16,50,(9:46) (Shotgun) A.Dalton pass short right to J.Gresham to SD 42 for 8 yards (M.Gilchrist).,10,13,2012 -20121202_CIN@SD,4,9,13,CIN,SD,2,8,42,(9:13) A.Dalton pass to A.Green to SD 35 for 7 yards (D.Williams).,10,13,2012 -20121202_CIN@SD,4,8,44,CIN,SD,3,1,35,(8:44) A.Dalton up the middle to SD 34 for 1 yard (L.English).,10,13,2012 -20121202_CIN@SD,4,8,1,CIN,SD,1,10,34,(8:01) B.Green-Ellis right end to SD 27 for 7 yards (A.Garay D.Williams).,10,13,2012 -20121202_CIN@SD,4,7,27,CIN,SD,2,3,27,(7:27) B.Green-Ellis right end to SD 20 for 7 yards (C.Lynch K.Reyes).,10,13,2012 -20121202_CIN@SD,4,6,58,CIN,SD,1,10,20,(6:58) B.Green-Ellis up the middle to SD 19 for 1 yard (L.English).,10,13,2012 -20121202_CIN@SD,4,6,22,CIN,SD,2,9,19,(6:22) (Shotgun) A.Dalton pass short left to M.Jones to SD 15 for 4 yards (M.Gilchrist).,10,13,2012 -20121202_CIN@SD,4,5,42,CIN,SD,3,5,15,(5:42) (Shotgun) A.Dalton pass short middle to A.Hawkins to SD 6 for 9 yards (A.Cason).,10,13,2012 -20121202_CIN@SD,4,4,56,CIN,SD,1,6,6,(4:56) B.Green-Ellis left end to SD 6 for no gain (J.Mouton). PENALTY on CIN-D.Roland Illegal Formation 5 yards enforced at SD 6 - No Play.,10,13,2012 -20121202_CIN@SD,4,4,52,CIN,SD,1,11,11,(4:52) (Shotgun) B.Green-Ellis up the middle to SD 6 for 5 yards (C.Liuget T.Spikes).,10,13,2012 -20121202_CIN@SD,4,4,17,CIN,SD,2,6,6,(4:17) (Shotgun) A.Dalton up the middle for 6 yards TOUCHDOWN.,10,13,2012 -20121202_CIN@SD,4,4,17,CIN,SD,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,10,13,2012 -20121202_CIN@SD,4,4,17,CIN,SD,,,6,M.Nugent kicks 66 yards from CIN 35 to SD -1. C.Carr to SD 25 for 26 yards (R.Nelson).,17,13,2012 -20121202_CIN@SD,4,4,5,SD,CIN,1,10,75,(4:05) (Shotgun) P.Rivers pass incomplete short left to R.Mathews.,13,17,2012 -20121202_CIN@SD,4,4,1,SD,CIN,2,10,75,(4:01) (Shotgun) P.Rivers sacked at SD 15 for -10 yards (C.Dunlap). FUMBLES (C.Dunlap) RECOVERED by CIN-C.Dunlap at SD 15. C.Dunlap to SD 13 for 2 yards (R.Hadnot).,13,17,2012 -20121202_CIN@SD,4,3,54,CIN,SD,1,10,13,(3:54) B.Green-Ellis right end to SD 12 for 1 yard (B.Taylor).,17,13,2012 -20121202_CIN@SD,4,3,14,CIN,SD,2,9,12,(3:14) B.Green-Ellis right end to SD 13 for -1 yards (C.Lynch).,17,13,2012 -20121202_CIN@SD,4,3,8,CIN,SD,3,10,13,(3:08) (Shotgun) A.Dalton pass short left to A.Hawkins to SD 6 for 7 yards (S.Wright). FUMBLES (S.Wright) ball out of bounds at SD 6.,17,13,2012 -20121202_CIN@SD,4,2,50,CIN,SD,4,3,6,(2:50) M.Nugent 24 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,17,13,2012 -20121202_CIN@SD,4,2,50,CIN,SD,,,6,M.Nugent kicks 64 yards from CIN 35 to SD 1. C.Carr Touchback.,20,13,2012 -20121202_CIN@SD,4,2,47,SD,CIN,1,10,80,(2:47) (Shotgun) P.Rivers pass short middle to R.Brown to SD 34 for 14 yards (M.Johnson).,13,20,2012 -20121202_CIN@SD,4,2,22,SD,CIN,1,10,66,(2:22) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,13,20,2012 -20121202_CIN@SD,4,2,18,SD,CIN,2,10,66,(2:18) (Shotgun) P.Rivers pass incomplete short middle to R.Brown.,13,20,2012 -20121202_CIN@SD,4,2,12,SD,CIN,3,10,66,(2:12) (Shotgun) P.Rivers pass short right to D.Alexander to CIN 49 for 17 yards (T.Newman C.Crocker).,13,20,2012 -20121202_CIN@SD,4,2,0,SD,CIN,1,10,49,(2:00) (Shotgun) P.Rivers pass short left to R.Brown to CIN 46 for 3 yards (V.Burfict). PENALTY on CIN-A.Jones Defensive Holding 5 yards enforced at CIN 49 - No Play.,13,20,2012 -20121202_CIN@SD,4,1,53,SD,CIN,1,10,44,(1:53) (Shotgun) P.Rivers pass short right to D.Alexander to CIN 33 for 11 yards (R.Maualuga).,13,20,2012 -20121202_CIN@SD,4,1,16,SD,CIN,1,10,33,(1:16) (Shotgun) P.Rivers pass deep right to M.Floyd ran ob at CIN 17 for 16 yards.,13,20,2012 -20121202_CIN@SD,4,1,11,SD,CIN,1,10,17,(1:11) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,13,20,2012 -20121202_CIN@SD,4,1,5,SD,CIN,2,10,17,(1:05) (Shotgun) P.Rivers pass incomplete deep left to D.Alexander.,13,20,2012 -20121202_CIN@SD,4,1,1,SD,CIN,3,10,17,(1:01) (Shotgun) P.Rivers pass incomplete deep right to R.Brown.,13,20,2012 -20121202_CIN@SD,4,0,55,SD,CIN,4,10,17,(:55) (Shotgun) P.Rivers pass deep right intended for M.Floyd INTERCEPTED by R.Nelson at CIN 0. Touchback.,13,20,2012 -20121202_CIN@SD,4,0,49,CIN,SD,1,10,80,(:49) A.Dalton kneels dead ball declared at CIN 19 for -1 yards.,20,13,2012 -20121202_CIN@SD,4,0,9,CIN,SD,2,11,81,(:09) A.Dalton kneels dead ball declared at CIN 18 for -1 yards.,20,13,2012 -20121202_CIN@SD,4,0,9,CIN,SD,,,81,                      ,20,13,2012 -20121202_PHI@DAL,1,0,0,DAL,PHI,,,81,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone.,0,0,2012 -20121202_PHI@DAL,1,60,0,PHI,DAL,1,10,80,(15:00) N.Foles pass incomplete short right [D.Ware]. Foles was hit while passing.,0,0,2012 -20121202_PHI@DAL,1,59,53,PHI,DAL,2,10,80,(14:53) (Shotgun) B.Brown right end pushed ob at PHI 18 for -2 yards (D.McCray).,0,0,2012 -20121202_PHI@DAL,1,59,22,PHI,DAL,3,12,82,(14:22) (Shotgun) N.Foles pass short middle to R.Cooper to PHI 34 for 16 yards (M.Claiborne). Pass complete on a slant.,0,0,2012 -20121202_PHI@DAL,1,58,46,PHI,DAL,1,10,66,(13:46) (Shotgun) N.Foles pass incomplete short middle to R.Cooper. Pass thrown on a curl; Sims closest defender.,0,0,2012 -20121202_PHI@DAL,1,58,40,PHI,DAL,2,10,66,(13:40) (Shotgun) B.Brown left end pushed ob at PHI 34 for no gain (A.Spencer).,0,0,2012 -20121202_PHI@DAL,1,58,11,PHI,DAL,3,10,66,(13:11) (Shotgun) N.Foles pass short left to B.Celek to PHI 44 for 10 yards (D.McCray). Pass complete on a curl.,0,0,2012 -20121202_PHI@DAL,1,57,28,PHI,DAL,1,10,56,(12:28) B.Brown right tackle to PHI 49 for 5 yards (E.Sims).,0,0,2012 -20121202_PHI@DAL,1,56,50,PHI,DAL,2,5,51,(11:50) B.Brown left end pushed ob at PHI 43 for -6 yards (A.Spencer).,0,0,2012 -20121202_PHI@DAL,1,56,19,PHI,DAL,3,11,57,(11:19) (Shotgun) N.Foles pass short left to B.Brown to DAL 49 for 8 yards (D.McCray). Pass complete in the flat.,0,0,2012 -20121202_PHI@DAL,1,55,37,PHI,DAL,4,3,49,(10:37) (Punt formation) M.McBriar punts 35 yards to DAL 14 Center-J.Dorenbos fair catch by D.Harris.,0,0,2012 -20121202_PHI@DAL,1,55,29,DAL,PHI,1,10,86,(10:29) D.Murray left end pushed ob at DAL 28 for 14 yards (K.Coleman).,0,0,2012 -20121202_PHI@DAL,1,55,3,DAL,PHI,1,10,72,(10:03) D.Murray left tackle to DAL 36 for 8 yards (N.Asomugha).,0,0,2012 -20121202_PHI@DAL,1,54,27,DAL,PHI,2,2,64,(9:27) D.Murray right guard to DAL 35 for -1 yards (C.Jenkins).,0,0,2012 -20121202_PHI@DAL,1,53,48,DAL,PHI,3,3,65,(8:48) (Shotgun) T.Romo sacked at DAL 29 for -6 yards (B.Graham).,0,0,2012 -20121202_PHI@DAL,1,53,21,DAL,PHI,4,9,71,(8:21) (Punt formation) B.Moorman punts 37 yards to PHI 34 Center-L.Ladouceur out of bounds.,0,0,2012 -20121202_PHI@DAL,1,53,13,PHI,DAL,1,10,66,(8:13) B.Brown left guard pushed ob at DAL 42 for 24 yards (M.Jenkins).,0,0,2012 -20121202_PHI@DAL,1,52,47,PHI,DAL,1,10,42,(7:47) B.Brown left guard to DAL 39 for 3 yards (S.Lissemore).,0,0,2012 -20121202_PHI@DAL,1,52,10,PHI,DAL,2,7,39,(7:10) (Shotgun) N.Foles pass short right to B.Celek to DAL 23 for 16 yards (D.McCray K.Wilber). Pass complete off play action and toss in the flat.,0,0,2012 -20121202_PHI@DAL,1,51,29,PHI,DAL,1,10,23,"(6:29) (Shotgun) N.Foles pass short left to D.Johnson to DAL 10 for 13 yards (G.Sensabaugh; A.Spencer). Pass complete on a ""bubble"" screen.",0,0,2012 -20121202_PHI@DAL,1,50,44,PHI,DAL,1,10,10,(5:44) (Shotgun) B.Brown left end for 10 yards TOUCHDOWN.,0,0,2012 -20121202_PHI@DAL,1,50,44,PHI,DAL,,,10,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20121202_PHI@DAL,1,50,44,PHI,DAL,,,10,A.Henery kicks 72 yards from PHI 35 to DAL -7. D.Harris Touchback.,7,0,2012 -20121202_PHI@DAL,1,50,38,DAL,PHI,1,10,80,(5:38) T.Romo pass short middle to D.Murray to DAL 26 for 6 yards (D.Ryans).,0,7,2012 -20121202_PHI@DAL,1,50,0,DAL,PHI,2,4,74,(5:00) (Shotgun) D.Murray up the middle to DAL 33 for 7 yards (B.Boykin).,0,7,2012 -20121202_PHI@DAL,1,49,22,DAL,PHI,1,10,67,"(4:22) T.Romo pass incomplete deep middle to K.Ogletree (D.Rodgers-Cromartie). Pass incomplete on a deep ""post"" pattern; incomplete at the Philadelphia 30.",0,7,2012 -20121202_PHI@DAL,1,49,15,DAL,PHI,2,10,67,(4:15) T.Romo pass incomplete short left to F.Jones [M.Patterson]. Screen pass: Tapp closest defender.,0,7,2012 -20121202_PHI@DAL,1,49,7,DAL,PHI,3,10,67,"(4:07) (Shotgun) T.Romo pass short right to J.Witten to DAL 44 for 11 yards (M.Kendricks). Pass complete on a ""curl.""",0,7,2012 -20121202_PHI@DAL,1,48,28,DAL,PHI,1,10,56,(3:28) F.Jones right guard to DAL 46 for 2 yards (D.Ryans).,0,7,2012 -20121202_PHI@DAL,1,47,50,DAL,PHI,2,8,54,(2:50) (Shotgun) T.Romo pass short right to C.Beasley to PHI 41 for 13 yards (C.Marsh) [B.Graham]. Pass complete after escaping a sack and roll right.,0,7,2012 -20121202_PHI@DAL,1,47,3,DAL,PHI,1,10,41,(2:03) T.Romo pass short right to D.Murray pushed ob at PHI 42 for -1 yards (N.Asomugha).,0,7,2012 -20121202_PHI@DAL,1,46,31,DAL,PHI,2,11,42,(1:31) (Shotgun) D.Murray up the middle to PHI 39 for 3 yards (K.Coleman).,0,7,2012 -20121202_PHI@DAL,1,45,47,DAL,PHI,3,8,39,(:47) (Shotgun) T.Romo scrambles up the middle to PHI 24 for 15 yards (K.Coleman).,0,7,2012 -20121202_PHI@DAL,1,45,2,DAL,PHI,1,10,24,(:02) T.Romo pass short left to D.Murray pushed ob at PHI 13 for 11 yards (D.Rodgers-Cromartie).,0,7,2012 -20121202_PHI@DAL,2,44,48,DAL,PHI,1,10,13,(14:48) D.Murray up the middle to PHI 8 for 5 yards (M.Patterson; D.Landri).,0,7,2012 -20121202_PHI@DAL,2,44,16,DAL,PHI,2,5,8,(14:16) D.Murray up the middle to PHI 5 for 3 yards (D.Tapp). PHI-D.Ryans was injured during the play. PENALTY on DAL-M.Bernadeau Offensive Holding 10 yards enforced at PHI 8 - No Play.,0,7,2012 -20121202_PHI@DAL,2,43,57,DAL,PHI,2,15,18,(13:57) (Shotgun) T.Romo pass incomplete short left to C.Beasley [B.Graham]. Pass incomplete at the Philadelphia 15; Matthews closest defender.,0,7,2012 -20121202_PHI@DAL,2,43,52,DAL,PHI,3,15,18,(13:52) (Shotgun) T.Romo sacked at PHI 21 for -3 yards (sack split by B.Graham and T.Cole).,0,7,2012 -20121202_PHI@DAL,2,43,39,DAL,PHI,4,18,21,(13:39) (Field Goal formation) D.Bailey 39 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,7,2012 -20121202_PHI@DAL,2,43,39,DAL,PHI,,,21,D.Bailey kicks 70 yards from DAL 35 to PHI -5. B.Boykin to PHI 16 for 21 yards (P.Tanner; A.Albright). Return right side inside the yardline numbers.,3,7,2012 -20121202_PHI@DAL,2,43,28,PHI,DAL,1,10,84,"(13:28) N.Foles pass short middle to B.Celek to PHI 35 for 19 yards (D.McCray) [E.Sims]. Pass complete on a ""seam"" route.",7,3,2012 -20121202_PHI@DAL,2,42,50,PHI,DAL,1,10,65,(12:50) (Shotgun) N.Foles pass incomplete short right. Pass incomplete out of bounds at the Philadelphia 45.,7,3,2012 -20121202_PHI@DAL,2,42,45,PHI,DAL,2,10,65,(12:45) B.Brown left end to PHI 34 for -1 yards (D.Connor M.Spears).,7,3,2012 -20121202_PHI@DAL,2,42,3,PHI,DAL,3,11,66,(12:03) (Shotgun) N.Foles pass incomplete short right to B.Brown. Pass incomplete; Brown out of the backfield.,7,3,2012 -20121202_PHI@DAL,2,41,57,PHI,DAL,4,11,66,(11:57) (Punt formation) M.McBriar punts 43 yards to DAL 23 Center-J.Dorenbos out of bounds.,7,3,2012 -20121202_PHI@DAL,2,41,50,DAL,PHI,1,10,77,(11:50) T.Romo pass short right to J.Phillips to DAL 23 for no gain (D.Tapp). Pass complete in the flat.,3,7,2012 -20121202_PHI@DAL,2,41,15,DAL,PHI,2,10,77,(11:15) F.Jones up the middle to DAL 28 for 5 yards (N.Allen).,3,7,2012 -20121202_PHI@DAL,2,40,34,DAL,PHI,3,5,72,(10:34) (Shotgun) PENALTY on DAL-R.Cook False Start 5 yards enforced at DAL 28 - No Play.,3,7,2012 -20121202_PHI@DAL,2,40,10,DAL,PHI,3,10,77,(10:10) (Shotgun) T.Romo pass short right to J.Witten to DAL 35 for 12 yards (M.Kendricks). Philadelphia challenged the pass completion ruling and the play was REVERSED. (Shotgun) T.Romo pass incomplete short right to J.Witten.,3,7,2012 -20121202_PHI@DAL,2,40,6,DAL,PHI,4,10,77,(10:06) (Punt formation) B.Moorman punts 56 yards to PHI 21 Center-L.Ladouceur. D.Johnson to PHI 27 for 6 yards (P.Tanner). PHI-D.Johnson was injured during the play.,3,7,2012 -20121202_PHI@DAL,2,39,54,PHI,DAL,1,10,73,(9:54) (Shotgun) N.Foles pass short right to B.Brown to PHI 24 for -3 yards (D.Ware).,7,3,2012 -20121202_PHI@DAL,2,39,17,PHI,DAL,2,13,76,(9:17) (Shotgun) B.Brown right end to DAL 37 for 39 yards (G.Sensabaugh).,7,3,2012 -20121202_PHI@DAL,2,38,41,PHI,DAL,1,10,37,(8:41) D.Lewis right guard to DAL 34 for 3 yards (D.Connor M.Spears).,7,3,2012 -20121202_PHI@DAL,2,38,0,PHI,DAL,2,7,34,(8:00) (Shotgun) B.Brown right guard to DAL 33 for 1 yard (A.Spencer).,7,3,2012 -20121202_PHI@DAL,2,37,20,PHI,DAL,3,6,33,"(7:20) N.Foles pass short middle to J.Maclin to DAL 12 for 21 yards (G.Sensabaugh). Pass complete on ""slant"" pattern.",7,3,2012 -20121202_PHI@DAL,2,36,38,PHI,DAL,1,10,12,(6:38) (Shotgun) N.Foles pass short left to B.Celek pushed ob at DAL 5 for 7 yards (D.McCray).,7,3,2012 -20121202_PHI@DAL,2,36,11,PHI,DAL,2,3,5,(6:11) (Shotgun) B.Brown right guard for 5 yards TOUCHDOWN.,7,3,2012 -20121202_PHI@DAL,2,36,11,PHI,DAL,,,5,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,3,2012 -20121202_PHI@DAL,2,36,7,DAL,PHI,1,10,75,(6:07) D.Murray right tackle to DAL 26 for 1 yard (P.Hunt).,3,14,2012 -20121202_PHI@DAL,2,35,31,DAL,PHI,2,9,74,(5:31) T.Romo pass short right to L.Vickers pushed ob at DAL 27 for 1 yard (M.Kendricks). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at DAL 26 - No Play.,3,14,2012 -20121202_PHI@DAL,2,35,1,DAL,PHI,2,19,84,(5:01) (Shotgun) T.Romo pass short left to J.Witten to DAL 31 for 15 yards (M.Kendricks).,3,14,2012 -20121202_PHI@DAL,2,34,20,DAL,PHI,3,4,69,(4:20) (Shotgun) T.Romo pass short right to J.Witten to DAL 36 for 5 yards (N.Allen).,3,14,2012 -20121202_PHI@DAL,2,33,38,DAL,PHI,1,10,74,(3:38) T.Romo FUMBLES (Aborted) at DAL 28 recovered by DAL-K.Ogletree at DAL 26. K.Ogletree to DAL 28 for 2 yards (B.Graham).,3,14,2012 -20121202_PHI@DAL,2,32,58,DAL,PHI,2,18,72,(2:58) (Shotgun) T.Romo pass short right to J.Witten to DAL 41 for 13 yards (N.Allen).,3,14,2012 -20121202_PHI@DAL,2,32,14,DAL,PHI,3,5,59,(2:14) (Shotgun) T.Romo pass short left to D.Bryant to PHI 45 for 14 yards (D.Rodgers-Cromartie).,3,14,2012 -20121202_PHI@DAL,2,32,2,DAL,PHI,1,10,45,(2:02) T.Romo pass incomplete short right to J.Witten.,3,14,2012 -20121202_PHI@DAL,2,31,56,DAL,PHI,2,10,45,(1:56) D.Murray left end to PHI 48 for -3 yards (D.Ryans).,3,14,2012 -20121202_PHI@DAL,2,31,11,DAL,PHI,3,13,48,"(1:11) (Shotgun) T.Romo pass short left to M.Austin pushed ob at PHI 29 for 19 yards (K.Coleman). Pass complete on a ""crossing"" pattern.",3,14,2012 -20121202_PHI@DAL,2,31,4,DAL,PHI,1,10,29,"(1:04) (Shotgun) T.Romo pass deep middle to J.Witten to PHI 1 for 28 yards (N.Asomugha). Pass complete on a ""seam"" route.",3,14,2012 -20121202_PHI@DAL,2,30,45,DAL,PHI,1,1,1,(:45) D.Murray up the middle for 1 yard TOUCHDOWN.,3,14,2012 -20121202_PHI@DAL,2,30,45,DAL,PHI,,,1,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,14,2012 -20121202_PHI@DAL,2,30,45,DAL,PHI,,,1,D.Bailey kicks 70 yards from DAL 35 to PHI -5. B.Boykin to PHI 17 for 22 yards (A.Albright). Return right side inside the yardline markers.,10,14,2012 -20121202_PHI@DAL,2,30,35,PHI,DAL,1,10,83,(:35) (Shotgun) B.Brown left end to PHI 37 for 20 yards (G.Sensabaugh).,14,10,2012 -20121202_PHI@DAL,2,30,28,PHI,DAL,1,10,63,"(:28) (Shotgun) N.Foles pass incomplete deep right to J.Maclin. Pass incomplete on a ""fly"" pattern at the Dallas 10; Frampton closest defender.",14,10,2012 -20121202_PHI@DAL,2,30,20,PHI,DAL,2,10,63,(:20) (Shotgun) N.Foles pass deep left to J.Avant ran ob at DAL 34 for 29 yards (E.Frampton).,14,10,2012 -20121202_PHI@DAL,2,30,14,PHI,DAL,1,10,34,(:14) (Shotgun) B.Brown up the middle to DAL 31 for 3 yards (J.Hatcher).,14,10,2012 -20121202_PHI@DAL,2,30,10,PHI,DAL,2,7,31,(:10) (Shotgun) B.Brown right guard to DAL 25 for 6 yards (S.Lissemore D.Ware).,14,10,2012 -20121202_PHI@DAL,2,30,3,PHI,DAL,3,1,25,(:03) (Field Goal formation) A.Henery 43 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,14,10,2012 -20121202_PHI@DAL,2,30,3,PHI,DAL,3,1,25,(:03) (Field Goal formation) A.Henery 43 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,17,10,2012 -20121202_PHI@DAL,3,30,0,PHI,DAL,,,25,A.Henery kicks 65 yards from PHI 35 to end zone Touchback. Ball was kicked out of the end zone.,17,10,2012 -20121202_PHI@DAL,3,30,0,DAL,PHI,1,10,80,(15:00) D.Murray up the middle to DAL 33 for 13 yards (M.Kendricks).,10,17,2012 -20121202_PHI@DAL,3,29,25,DAL,PHI,1,10,67,(14:25) D.Murray left guard to DAL 37 for 4 yards (A.Jordan).,10,17,2012 -20121202_PHI@DAL,3,28,38,DAL,PHI,2,6,63,(13:38) (Shotgun) T.Romo pass short left to D.Bryant pushed ob at DAL 42 for 5 yards (N.Asomugha).,10,17,2012 -20121202_PHI@DAL,3,28,11,DAL,PHI,3,1,58,(13:11) D.Murray right end ran ob at PHI 31 for 27 yards (C.Matthews).,10,17,2012 -20121202_PHI@DAL,3,27,42,DAL,PHI,1,10,31,(12:42) F.Jones up the middle to PHI 24 for 7 yards (N.Allen).,10,17,2012 -20121202_PHI@DAL,3,27,10,DAL,PHI,2,3,24,(12:10) F.Jones right guard to PHI 23 for 1 yard (C.Thornton).,10,17,2012 -20121202_PHI@DAL,3,26,30,DAL,PHI,3,2,23,(11:30) T.Romo pass short middle to D.Bryant for 23 yards TOUCHDOWN. Romo escapes pocket pressure before throwing back left. With the touchdown pass Tony Romo becomes the team's all-time leader in touchdown passes with 166. The previous mark was held by Troy Aikman.,10,17,2012 -20121202_PHI@DAL,3,26,30,DAL,PHI,,,23,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,17,2012 -20121202_PHI@DAL,3,26,30,DAL,PHI,,,23,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball rolled out of bounds 2 yards deep end zone.,17,17,2012 -20121202_PHI@DAL,3,26,18,PHI,DAL,1,10,80,(11:18) (Shotgun) N.Foles pass short right to C.Harbor to PHI 23 for 3 yards (A.Spencer). Check off pass.,17,17,2012 -20121202_PHI@DAL,3,25,43,PHI,DAL,2,7,77,"(10:43) N.Foles pass short left to J.Maclin pushed ob at PHI 37 for 14 yards (M.Claiborne). Pass complete on a sideline ""curl.""",17,17,2012 -20121202_PHI@DAL,3,25,17,PHI,DAL,1,10,63,(10:17) B.Brown left guard to PHI 41 for 4 yards (D.McCray; A.Spencer).,17,17,2012 -20121202_PHI@DAL,3,24,41,PHI,DAL,2,6,59,(9:41) (Shotgun) N.Foles pass short right to B.Celek to PHI 45 for 4 yards (E.Sims). PHI-B.Celek was injured during the play.,17,17,2012 -20121202_PHI@DAL,3,24,7,PHI,DAL,3,2,55,(9:07) B.Brown right tackle to PHI 47 for 2 yards (T.Crawford; D.Ware).,17,17,2012 -20121202_PHI@DAL,3,23,30,PHI,DAL,1,10,53,(8:30) (Shotgun) B.Brown right guard to DAL 50 for 3 yards (D.Connor; A.Spencer). DAL-A.Spencer was injured during the play.,17,17,2012 -20121202_PHI@DAL,3,22,51,PHI,DAL,2,7,50,(7:51) (Shotgun) B.Brown up the middle to DAL 33 for 17 yards (E.Sims).,17,17,2012 -20121202_PHI@DAL,3,22,8,PHI,DAL,1,10,33,(7:08) (Shotgun) D.Lewis left end to DAL 22 for 11 yards (S.Lissemore).,17,17,2012 -20121202_PHI@DAL,3,21,24,PHI,DAL,1,10,22,(6:24) N.Foles pass incomplete short left to R.Cooper. Pass incomplete sideline at the Dallas 12.,17,17,2012 -20121202_PHI@DAL,3,21,19,PHI,DAL,2,10,22,(6:19) (Shotgun) N.Foles pass short middle to B.Brown to DAL 15 for 7 yards (B.Carr). Shovel pass,17,17,2012 -20121202_PHI@DAL,3,20,34,PHI,DAL,3,3,15,(5:34) (Shotgun) N.Foles pass short right to R.Cooper for 15 yards TOUCHDOWN. Pass caught right corner of the end zone.,17,17,2012 -20121202_PHI@DAL,3,20,34,PHI,DAL,,,15,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,17,17,2012 -20121202_PHI@DAL,3,20,34,PHI,DAL,,,15,A.Henery kicks 74 yards from PHI 35 to DAL -9. D.Harris Touchback.,24,17,2012 -20121202_PHI@DAL,3,20,27,DAL,PHI,1,10,80,"(5:27) (Shotgun) T.Romo pass short right to K.Ogletree to DAL 28 for 8 yards (B.Graham). Pass complete on a ""curl"" route.",17,24,2012 -20121202_PHI@DAL,3,19,54,DAL,PHI,2,2,72,(4:54) D.Murray up the middle to DAL 30 for 2 yards (N.Asomugha).,17,24,2012 -20121202_PHI@DAL,3,19,8,DAL,PHI,1,10,70,(4:08) D.Murray up the middle to DAL 34 for 4 yards (V.Curry).,17,24,2012 -20121202_PHI@DAL,3,18,29,DAL,PHI,2,6,66,(3:29) T.Romo pass short middle to D.Murray to DAL 37 for 3 yards (M.Kendricks).,17,24,2012 -20121202_PHI@DAL,3,17,46,DAL,PHI,3,3,63,"(2:46) (Shotgun) T.Romo pass short left to D.Bryant to PHI 48 for 15 yards (N.Asomugha). Pass complete on a ""slant"" pattern.",17,24,2012 -20121202_PHI@DAL,3,17,13,DAL,PHI,1,10,48,(2:13) D.Murray left tackle to PHI 41 for 7 yards (N.Asomugha).,17,24,2012 -20121202_PHI@DAL,3,16,40,DAL,PHI,2,3,41,(1:40) D.Murray left guard to PHI 40 for 1 yard (N.Asomugha; T.Cole).,17,24,2012 -20121202_PHI@DAL,3,15,56,DAL,PHI,3,2,40,(:56) (Shotgun) D.Murray up the middle to PHI 39 for 1 yard (M.Kendricks).,17,24,2012 -20121202_PHI@DAL,3,15,29,DAL,PHI,4,1,39,(:29) D.Murray up the middle to PHI 39 for no gain (C.Thornton; D.Ryans). Dallas challenged the first down ruling and the play was REVERSED. D.Murray up the middle to PHI 38 for 1 yard (C.Thornton; D.Ryans).,17,24,2012 -20121202_PHI@DAL,4,15,0,DAL,PHI,1,10,38,(15:00) D.Murray left tackle to PHI 38 for no gain (B.Graham).,17,24,2012 -20121202_PHI@DAL,4,14,26,DAL,PHI,2,10,38,"(14:26) (Shotgun) T.Romo pass short left to D.Harris to PHI 27 for 11 yards (N.Allen). Pass complete on a ""curl"" route.",17,24,2012 -20121202_PHI@DAL,4,13,48,DAL,PHI,1,10,27,"(13:48) T.Romo pass short middle to M.Austin for 27 yards TOUCHDOWN. Pass complete on a ""crossing"" pattern.",17,24,2012 -20121202_PHI@DAL,4,13,48,DAL,PHI,,,27,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,24,2012 -20121202_PHI@DAL,4,13,48,DAL,PHI,,,27,D.Bailey kicks 65 yards from DAL 35 to PHI 0. B.Boykin to PHI 22 for 22 yards (G.Sensabaugh; J.Hanna). Return middle inside the yardline marker.,24,24,2012 -20121202_PHI@DAL,4,13,35,PHI,DAL,1,10,78,"(13:35) (Shotgun) N.Foles pass short right to J.Avant to PHI 30 for 8 yards (D.Connor). Pass complete on a ""bubble"" screen.",24,24,2012 -20121202_PHI@DAL,4,12,58,PHI,DAL,2,2,70,(12:58) B.Brown right tackle to PHI 36 for 6 yards (E.Sims; D.Connor).,24,24,2012 -20121202_PHI@DAL,4,12,21,PHI,DAL,1,10,64,"(12:21) (Shotgun) N.Foles pass incomplete deep middle to R.Cooper. Pass incomplete on a ""crossing"" pattern; Claiborne closest defender.",24,24,2012 -20121202_PHI@DAL,4,12,16,PHI,DAL,2,10,64,(12:16) B.Brown right end pushed ob at PHI 46 for 10 yards (D.Connor).,24,24,2012 -20121202_PHI@DAL,4,11,44,PHI,DAL,1,10,54,(11:44) (Shotgun) N.Foles pass incomplete short middle to B.Celek (A.Spencer). Pass knocked down at the line of scrimmage.,24,24,2012 -20121202_PHI@DAL,4,11,40,PHI,DAL,2,10,54,"(11:40) (Shotgun) N.Foles pass short middle to J.Avant to DAL 31 for 23 yards (G.Sensabaugh; D.McCray). Pass complete on a ""curl"" route.",24,24,2012 -20121202_PHI@DAL,4,10,51,PHI,DAL,1,10,31,(10:51) N.Foles pass incomplete deep right to J.Avant. Pass incomplete sideline at the Dallas 10.,24,24,2012 -20121202_PHI@DAL,4,10,44,PHI,DAL,2,10,31,(10:44) (Shotgun) N.Foles pass short right to B.Celek to DAL 24 for 7 yards (V.Butler).,24,24,2012 -20121202_PHI@DAL,4,10,4,PHI,DAL,3,3,24,(10:04) N.Foles pass incomplete deep left to C.Harbor. Pass incomplete left corner of the end zone.,24,24,2012 -20121202_PHI@DAL,4,9,56,PHI,DAL,4,3,24,(9:56) (Field Goal formation) A.Henery 43 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,24,24,2012 -20121202_PHI@DAL,4,9,56,PHI,DAL,,,24,A.Henery kicks 63 yards from PHI 35 to DAL 2. D.Harris to DAL 24 for 22 yards (B.Hughes). PENALTY on DAL-E.Frampton Offensive Holding 10 yards enforced at DAL 24. Penalty on DAL-P.Tanner Offensive Holding declined.,27,24,2012 -20121202_PHI@DAL,4,9,41,DAL,PHI,1,10,86,(9:41) F.Jones right tackle to DAL 16 for 2 yards (B.Graham; A.Jordan).,24,27,2012 -20121202_PHI@DAL,4,9,2,DAL,PHI,2,8,84,(9:02) (Shotgun) F.Jones right guard to DAL 22 for 6 yards (C.Jenkins).,24,27,2012 -20121202_PHI@DAL,4,8,22,DAL,PHI,3,2,78,"(8:22) (Shotgun) T.Romo pass deep right to D.Bryant to PHI 43 for 35 yards (D.Rodgers-Cromartie). Pass complete on a ""pump and go"" route.",24,27,2012 -20121202_PHI@DAL,4,7,37,DAL,PHI,1,10,43,(7:37) F.Jones right tackle to PHI 40 for 3 yards (D.Tapp).,24,27,2012 -20121202_PHI@DAL,4,6,59,DAL,PHI,2,7,40,"(6:59) T.Romo pass deep middle to J.Witten to PHI 4 for 36 yards (K.Coleman; N.Allen). PHI-K.Coleman was injured during the play. Pass complete on a ""seam"" route.",24,27,2012 -20121202_PHI@DAL,4,6,23,DAL,PHI,1,4,4,(6:23) D.Murray up the middle to PHI 6 for -2 yards (D.Landri).,24,27,2012 -20121202_PHI@DAL,4,5,40,DAL,PHI,2,6,6,(5:40) T.Romo pass short right to D.Bryant for 6 yards TOUCHDOWN.,24,27,2012 -20121202_PHI@DAL,4,5,40,,DAL,,,6,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,27,24,2012 -20121202_PHI@DAL,4,5,40,DAL,PHI,,,6,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball hit the crossbar.,31,27,2012 -20121202_PHI@DAL,4,5,35,PHI,DAL,1,10,80,(5:35) B.Brown up the middle to PHI 22 for 2 yards (J.Price-Brent).,27,31,2012 -20121202_PHI@DAL,4,4,59,PHI,DAL,2,8,78,(4:59) (Shotgun) N.Foles pass incomplete short right. Pass was thrown out of bounds; Foles was flushed out of the pocket; pass thrown out of the tackle box; forced by Spears.,27,31,2012 -20121202_PHI@DAL,4,4,51,PHI,DAL,3,8,78,(4:51) (Shotgun) N.Foles pass deep left to J.Avant to PHI 41 for 19 yards (D.McCray).,27,31,2012 -20121202_PHI@DAL,4,4,9,PHI,DAL,1,10,59,(4:09) (Shotgun) N.Foles pass short right to J.Maclin ran ob at PHI 44 for 3 yards.,27,31,2012 -20121202_PHI@DAL,4,4,3,PHI,DAL,2,7,56,(4:03) (Shotgun) B.Brown left tackle to PHI 48 for 4 yards (J.Price-Brent). FUMBLES (J.Price-Brent) RECOVERED by DAL-M.Claiborne at PHI 50. M.Claiborne for 50 yards TOUCHDOWN.,27,31,2012 -20121202_PHI@DAL,4,4,3,DAL,PHI,,,56,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,31,27,2012 -20121202_PHI@DAL,4,4,3,DAL,PHI,,,56,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone. Injury update for Philadelphia: Nate Allen has a shoulder injury and will return. Kurt Coleman has a sternum bruise and has been taken to the locker room for further evaluation.,38,27,2012 -20121202_PHI@DAL,4,3,50,PHI,DAL,1,10,80,(3:50) (Shotgun) N.Foles pass incomplete short right to J.Maclin (D.McCray). McCray almost intercepted the pass at the Philadelphia 30.,27,38,2012 -20121202_PHI@DAL,4,3,44,PHI,DAL,2,10,80,(3:44) (Shotgun) B.Brown left end to PHI 33 for 13 yards (E.Frampton; D.McCray).,27,38,2012 -20121202_PHI@DAL,4,3,17,PHI,DAL,1,10,67,(3:17) (Shotgun) N.Foles pass incomplete to B.Brown. PENALTY on DAL-A.Spencer Roughing the Passer 15 yards enforced at PHI 33 - No Play.,27,38,2012 -20121202_PHI@DAL,4,3,15,PHI,DAL,1,10,52,(3:15) (Shotgun) N.Foles pass short right to B.Brown ran ob at DAL 50 for 2 yards.,27,38,2012 -20121202_PHI@DAL,4,3,8,PHI,DAL,2,8,50,(3:08) (Shotgun) N.Foles sacked at PHI 40 for -10 yards (V.Butler). FUMBLES (V.Butler) [V.Butler] recovered by PHI-K.Dunlap at PHI 39. K.Dunlap to PHI 39 for no gain (T.Crawford).,27,38,2012 -20121202_PHI@DAL,4,2,33,PHI,DAL,3,19,61,(2:33) (Shotgun) B.Brown up the middle to PHI 40 for 1 yard (A.Spencer).,27,38,2012 -20121202_PHI@DAL,4,2,0,PHI,DAL,4,18,60,(2:00) (Shotgun) PENALTY on DAL-D.Ware Defensive Offside 5 yards enforced at PHI 40 - No Play.,27,38,2012 -20121202_PHI@DAL,4,2,0,PHI,DAL,4,13,55,(2:00) (Shotgun) N.Foles pass short right to B.Celek to DAL 45 for 10 yards (M.Claiborne; S.Moore).,27,38,2012 -20121202_PHI@DAL,4,1,52,DAL,PHI,1,10,55,(1:52) D.Murray right tackle to DAL 46 for 1 yard (A.Jordan).,38,27,2012 -20121202_PHI@DAL,4,1,47,DAL,PHI,2,9,54,(1:47) D.Murray left guard to DAL 46 for no gain (M.Kendricks).,38,27,2012 -20121202_PHI@DAL,4,1,42,DAL,PHI,3,9,54,(1:42) D.Murray right end to DAL 35 for -11 yards (A.Jordan).,38,27,2012 -20121202_PHI@DAL,4,0,53,DAL,PHI,4,20,65,(:53) (Punt formation) B.Moorman punts 63 yards to PHI 2 Center-L.Ladouceur. D.Johnson for 98 yards TOUCHDOWN. Johnson returned punt down right sideline.,38,27,2012 -20121202_PHI@DAL,4,0,53,PHI,DAL,,,65,TWO-POINT CONVERSION ATTEMPT. N.Foles pass to J.Avant is incomplete. ATTEMPT FAILS.,27,38,2012 -20121202_PHI@DAL,4,0,53,PHI,DAL,,,65,A.Henery kicks onside 9 yards from PHI 35 to PHI 44. J.Witten (didn't try to advance) to PHI 44 for no gain (R.Cooper).,33,38,2012 -20121202_PHI@DAL,4,0,31,DAL,PHI,1,10,44,(:31) T.Romo kneels to PHI 45 for -1 yards.,38,33,2012 -20121202_PHI@DAL,4,0,31,DAL,PHI,,,44,                      ,38,33,2012 -20121203_NYG@WAS,1,0,0,NYG,WAS,,,44,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,0,0,2012 -20121203_NYG@WAS,1,60,0,WAS,NYG,1,10,80,(15:00) (Shotgun) R.Griffin pass incomplete deep left to P.Garcon.,0,0,2012 -20121203_NYG@WAS,1,59,54,WAS,NYG,2,10,80,(14:54) (Shotgun) R.Griffin pass incomplete short right to L.Paulsen.,0,0,2012 -20121203_NYG@WAS,1,59,50,WAS,NYG,3,10,80,(14:50) (Shotgun) R.Griffin pass short left to L.Paulsen pushed ob at WAS 29 for 9 yards (P.Amukamara) [O.Umenyiora]. Washington challenged the runner was in bounds ruling and the play was REVERSED. (Shotgun) R.Griffin pass short left to L.Paulsen pushed ob at WAS 31 for 11 yards (P.Amukamara) [O.Umenyiora].,0,0,2012 -20121203_NYG@WAS,1,59,29,WAS,NYG,1,10,69,(14:29) (Shotgun) A.Morris left end to WAS 31 for no gain (J.Tuck).,0,0,2012 -20121203_NYG@WAS,1,58,49,WAS,NYG,2,10,69,(13:49) (Shotgun) A.Morris left end to WAS 37 for 6 yards (K.Rivers; A.Rolle).,0,0,2012 -20121203_NYG@WAS,1,58,9,WAS,NYG,3,4,63,(13:09) (Shotgun) R.Griffin pass incomplete short left to P.Garcon.,0,0,2012 -20121203_NYG@WAS,1,58,5,WAS,NYG,4,4,63,(13:05) S.Rocca punts 51 yards to NYG 12 Center-N.Sundberg. R.Randle to NYG 20 for 8 yards (P.Riley R.Jackson). PENALTY on NYG-T.Sash Illegal Block Above the Waist 10 yards enforced at NYG 20.,0,0,2012 -20121203_NYG@WAS,1,57,54,NYG,WAS,1,10,90,(12:54) E.Manning pass short middle to B.Pascoe to NYG 26 for 16 yards (L.Fletcher D.Hall).,0,0,2012 -20121203_NYG@WAS,1,57,18,NYG,WAS,1,10,74,(12:18) A.Bradshaw right guard to NYG 28 for 2 yards (R.Kerrigan L.Fletcher).,0,0,2012 -20121203_NYG@WAS,1,56,39,NYG,WAS,2,8,72,(11:39) A.Bradshaw left end to NYG 31 for 3 yards (L.Alexander).,0,0,2012 -20121203_NYG@WAS,1,55,54,NYG,WAS,3,5,69,(10:54) (Shotgun) E.Manning pass short left to J.Jernigan pushed ob at NYG 40 for 9 yards (J.Wilson).,0,0,2012 -20121203_NYG@WAS,1,55,26,NYG,WAS,1,10,60,(10:26) E.Manning pass short middle to M.Bennett to WAS 38 for 22 yards (R.Doughty).,0,0,2012 -20121203_NYG@WAS,1,54,40,NYG,WAS,1,10,38,(9:40) D.Wilson left end to WAS 33 for 5 yards (L.Fletcher).,0,0,2012 -20121203_NYG@WAS,1,54,2,NYG,WAS,2,5,33,(9:02) A.Bradshaw right guard to WAS 23 for 10 yards (Mad.Williams).,0,0,2012 -20121203_NYG@WAS,1,54,2,NYG,WAS,1,10,23,(9:02) PENALTY on NYG-S.Locklear False Start 5 yards enforced at WAS 23 - No Play.,0,0,2012 -20121203_NYG@WAS,1,53,3,NYG,WAS,1,15,28,(8:03) A.Bradshaw left guard to WAS 28 for no gain (S.Bowen; K.Golston).,0,0,2012 -20121203_NYG@WAS,1,52,18,NYG,WAS,2,15,28,(7:18) (Shotgun) E.Manning pass short middle to V.Cruz to WAS 21 for 7 yards (B.Cofield R.Kerrigan).,0,0,2012 -20121203_NYG@WAS,1,51,33,NYG,WAS,3,8,21,(6:33) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,0,0,2012 -20121203_NYG@WAS,1,51,27,NYG,WAS,4,8,21,(6:27) L.Tynes 39 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20121203_NYG@WAS,1,51,27,NYG,WAS,,,21,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,3,0,2012 -20121203_NYG@WAS,1,51,22,WAS,NYG,1,10,80,(6:22) (Shotgun) R.Griffin pass deep right to P.Garcon pushed ob at WAS 45 for 25 yards (C.Webster) [C.Canty].,0,3,2012 -20121203_NYG@WAS,1,50,52,WAS,NYG,1,10,55,(5:52) (Shotgun) A.Morris left end to NYG 36 for 19 yards (M.Herzlich).,0,3,2012 -20121203_NYG@WAS,1,50,11,WAS,NYG,1,10,36,(5:11) (Shotgun) A.Morris right end to NYG 28 for 8 yards (K.Rivers; M.Herzlich).,0,3,2012 -20121203_NYG@WAS,1,49,27,WAS,NYG,2,2,28,(4:27) (Shotgun) R.Griffin left end to NYG 16 for 12 yards (S.Brown). FUMBLES (S.Brown) recovered by WAS-J.Morgan at NYG 13. J.Morgan for 13 yards TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,3,2012 -20121203_NYG@WAS,1,49,27,WAS,NYG,,,28,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,3,2012 -20121203_NYG@WAS,1,49,27,WAS,NYG,,,28,K.Forbath kicks 65 yards from WAS 35 to NYG 0. D.Wilson to NYG 24 for 24 yards (L.Alexander; D.Gomes).,7,3,2012 -20121203_NYG@WAS,1,49,10,NYG,WAS,1,10,76,(4:10) (Shotgun) E.Manning pass incomplete deep left to H.Nicks.,3,7,2012 -20121203_NYG@WAS,1,49,3,NYG,WAS,2,10,76,(4:03) E.Manning pass short right to H.Nicks pushed ob at NYG 33 for 9 yards (D.Hall).,3,7,2012 -20121203_NYG@WAS,1,48,54,NYG,WAS,3,1,67,(3:54) (Shotgun) A.Bradshaw right end to NYG 36 for 3 yards (C.Griffin).,3,7,2012 -20121203_NYG@WAS,1,48,14,NYG,WAS,1,10,64,(3:14) E.Manning pass incomplete deep left to V.Cruz.,3,7,2012 -20121203_NYG@WAS,1,48,6,NYG,WAS,2,10,64,(3:06) A.Bradshaw left tackle to NYG 44 for 8 yards (J.Wilson L.Fletcher).,3,7,2012 -20121203_NYG@WAS,1,47,28,NYG,WAS,3,2,56,(2:28) (Shotgun) Direct snap to A.Bradshaw. A.Bradshaw left end to WAS 42 for 14 yards (J.Pugh).,3,7,2012 -20121203_NYG@WAS,1,46,46,NYG,WAS,1,10,42,(1:46) (Shotgun) E.Manning pass short right to M.Bennett to WAS 38 for 4 yards (L.Fletcher).,3,7,2012 -20121203_NYG@WAS,1,46,9,NYG,WAS,2,6,38,(1:09) D.Wilson left guard to WAS 33 for 5 yards (K.Golston).,3,7,2012 -20121203_NYG@WAS,1,45,30,NYG,WAS,3,1,33,(:30) A.Bradshaw left guard to WAS 30 for 3 yards (K.Golston).,3,7,2012 -20121203_NYG@WAS,2,45,0,NYG,WAS,1,10,30,(15:00) E.Manning pass incomplete deep left. PENALTY on NYG-E.Manning Intentional Grounding 10 yards enforced at WAS 30.,3,7,2012 -20121203_NYG@WAS,2,44,55,NYG,WAS,2,20,40,(14:55) E.Manning pass short middle to A.Bradshaw to WAS 31 for 9 yards (L.Fletcher B.Cofield).,3,7,2012 -20121203_NYG@WAS,2,44,4,NYG,WAS,3,11,31,(14:04) (Shotgun) E.Manning pass short middle to V.Cruz to WAS 25 for 6 yards (J.Wilson).,3,7,2012 -20121203_NYG@WAS,2,43,26,NYG,WAS,4,5,25,(13:26) L.Tynes 43 yard field goal is No Good Wide Left Center-Z.DeOssie Holder-S.Weatherford.,3,7,2012 -20121203_NYG@WAS,2,43,20,WAS,NYG,1,10,67,(13:20) (Shotgun) A.Morris left end pushed ob at WAS 33 for no gain (K.Rivers; A.Rolle). PENALTY on WAS-L.Paulsen Offensive Holding 10 yards enforced at WAS 33 - No Play.,7,3,2012 -20121203_NYG@WAS,2,42,56,WAS,NYG,1,20,77,(12:56) R.Griffin pass short left to D.Young to WAS 38 for 15 yards (L.Joseph K.Rivers).,7,3,2012 -20121203_NYG@WAS,2,42,11,WAS,NYG,2,5,62,(12:11) (Shotgun) A.Morris right end to WAS 48 for 10 yards (A.Rolle K.Rivers).,7,3,2012 -20121203_NYG@WAS,2,41,32,WAS,NYG,1,10,52,(11:32) (Shotgun) S.Moss left end to WAS 48 for no gain (P.Amukamara).,7,3,2012 -20121203_NYG@WAS,2,40,50,WAS,NYG,2,10,52,(10:50) (Shotgun) R.Griffin pass short right to P.Garcon to WAS 47 for -1 yards (C.Webster; M.Kiwanuka).,7,3,2012 -20121203_NYG@WAS,2,40,7,WAS,NYG,3,11,53,(10:07) (Shotgun) R.Griffin pass incomplete short middle to L.Paulsen.,7,3,2012 -20121203_NYG@WAS,2,40,2,WAS,NYG,4,11,53,(10:02) S.Rocca punts 38 yards to NYG 15 Center-N.Sundberg fair catch by R.Randle.,7,3,2012 -20121203_NYG@WAS,2,39,55,NYG,WAS,1,10,85,(9:55) A.Bradshaw left guard to NYG 21 for 6 yards (P.Riley; C.Baker).,3,7,2012 -20121203_NYG@WAS,2,39,15,NYG,WAS,2,4,79,(9:15) E.Manning pass incomplete deep left to M.Bennett.,3,7,2012 -20121203_NYG@WAS,2,39,9,NYG,WAS,3,4,79,(9:09) E.Manning pass short left to H.Nicks pushed ob at NYG 27 for 6 yards (C.Griffin).,3,7,2012 -20121203_NYG@WAS,2,38,41,NYG,WAS,1,10,73,(8:41) A.Bradshaw right end to NYG 32 for 5 yards (J.Wilson R.Doughty).,3,7,2012 -20121203_NYG@WAS,2,38,3,NYG,WAS,2,5,68,(8:03) A.Bradshaw left end to NYG 32 for no gain (L.Fletcher; J.Jenkins).,3,7,2012 -20121203_NYG@WAS,2,37,18,NYG,WAS,3,5,68,(7:18) (Shotgun) PENALTY on NYG-H.Nicks False Start 5 yards enforced at NYG 32 - No Play.,3,7,2012 -20121203_NYG@WAS,2,36,55,NYG,WAS,3,10,73,(6:55) (Shotgun) E.Manning pass deep middle to V.Cruz to WAS 43 for 30 yards (J.Pugh).,3,7,2012 -20121203_NYG@WAS,2,36,6,NYG,WAS,1,10,43,(6:06) D.Wilson up the middle to WAS 44 for -1 yards (C.Baker; K.Golston).,3,7,2012 -20121203_NYG@WAS,2,35,20,NYG,WAS,2,11,44,(5:20) (Shotgun) PENALTY on NYG-E.Manning Delay of Game 5 yards enforced at WAS 44 - No Play.,3,7,2012 -20121203_NYG@WAS,2,34,58,NYG,WAS,2,16,49,(4:58) (Shotgun) E.Manning pass incomplete deep middle to H.Nicks (C.Griffin). PENALTY on WAS-C.Griffin Defensive Pass Interference 21 yards enforced at WAS 49 - No Play.,3,7,2012 -20121203_NYG@WAS,2,34,51,NYG,WAS,1,10,28,(4:51) E.Manning pass incomplete deep right to M.Bennett. PENALTY on NYG-S.Locklear Offensive Holding 10 yards enforced at WAS 28 - No Play.,3,7,2012 -20121203_NYG@WAS,2,34,44,NYG,WAS,1,20,38,(4:44) (Shotgun) E.Manning pass incomplete short right to K.Lumpkin.,3,7,2012 -20121203_NYG@WAS,2,34,41,NYG,WAS,2,20,38,(4:41) (Shotgun) E.Manning pass deep left to M.Bennett pushed ob at WAS 14 for 24 yards (D.Gomes).,3,7,2012 -20121203_NYG@WAS,2,34,25,NYG,WAS,1,10,14,(4:25) A.Bradshaw right guard to WAS 9 for 5 yards (R.Kerrigan).,3,7,2012 -20121203_NYG@WAS,2,33,48,NYG,WAS,2,5,9,(3:48) A.Bradshaw right guard to WAS 5 for 4 yards (R.Doughty; Mad.Williams).,3,7,2012 -20121203_NYG@WAS,2,33,10,NYG,WAS,3,1,5,(3:10) A.Bradshaw up the middle to WAS 4 for 1 yard (R.Doughty; S.Bowen).,3,7,2012 -20121203_NYG@WAS,2,32,36,NYG,WAS,1,4,4,(2:36) (Shotgun) E.Manning pass short middle to M.Bennett for 4 yards TOUCHDOWN.,3,7,2012 -20121203_NYG@WAS,2,32,36,NYG,WAS,,,4,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,7,2012 -20121203_NYG@WAS,2,32,36,NYG,WAS,,,4,L.Tynes kicks 70 yards from NYG 35 to WAS -5. N.Paul to WAS 34 for 39 yards (A.Rolle; S.Paysinger).,10,7,2012 -20121203_NYG@WAS,2,32,27,WAS,NYG,1,10,66,(2:27) (Shotgun) R.Griffin pass deep middle to P.Garcon to NYG 48 for 18 yards (S.Brown).,7,10,2012 -20121203_NYG@WAS,2,32,0,WAS,NYG,1,10,48,(2:00) R.Griffin pass deep middle to P.Garcon to NYG 13 for 35 yards (C.Webster; A.Rolle).,7,10,2012 -20121203_NYG@WAS,2,31,16,WAS,NYG,1,10,13,(1:16) A.Morris right tackle to NYG 12 for 1 yard (M.Boley; O.Umenyiora).,7,10,2012 -20121203_NYG@WAS,2,31,1,WAS,NYG,2,9,12,(1:01) (Shotgun) R.Griffin pass short right to P.Garcon pushed ob at NYG 15 for -3 yards (R.Bernard).,7,10,2012 -20121203_NYG@WAS,2,30,54,WAS,NYG,3,12,15,(:54) (Shotgun) R.Griffin pass incomplete short right to P.Garcon.,7,10,2012 -20121203_NYG@WAS,2,30,46,WAS,NYG,4,12,15,(:46) K.Forbath 33 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,7,10,2012 -20121203_NYG@WAS,2,30,46,WAS,NYG,,,15,K.Forbath kicks 67 yards from WAS 35 to NYG -2. D.Wilson to NYG 24 for 26 yards (J.Murphy).,10,10,2012 -20121203_NYG@WAS,2,30,35,NYG,WAS,1,10,76,(:35) (Shotgun) A.Bradshaw right guard to NYG 37 for 13 yards (Mad.Williams L.Fletcher).,10,10,2012 -20121203_NYG@WAS,2,30,29,NYG,WAS,1,10,63,(:29) (Shotgun) E.Manning pass short left to R.Randle to 50 for 13 yards (P.Riley) [B.Cofield].,10,10,2012 -20121203_NYG@WAS,2,30,22,NYG,WAS,1,10,50,(:22) (Shotgun) E.Manning pass incomplete deep middle to M.Bennett.,10,10,2012 -20121203_NYG@WAS,2,30,17,NYG,WAS,2,10,50,(:17) (Shotgun) E.Manning pass incomplete deep left to H.Nicks.,10,10,2012 -20121203_NYG@WAS,2,30,12,NYG,WAS,3,10,50,(:12) (Shotgun) E.Manning pass deep middle to M.Bennett to WAS 22 for 28 yards (J.Pugh Mad.Williams).,10,10,2012 -20121203_NYG@WAS,2,30,4,NYG,WAS,1,10,22,(:04) L.Tynes 40 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,10,2012 -20121203_NYG@WAS,3,30,0,WAS,NYG,,,22,K.Forbath kicks 64 yards from WAS 35 to NYG 1. D.Wilson to NYG 19 for 18 yards (B.Kehl). PENALTY on NYG-J.Cordle Offensive Holding 10 yards enforced at NYG 19.,10,13,2012 -20121203_NYG@WAS,3,29,55,NYG,WAS,1,10,91,(14:55) E.Manning pass incomplete deep middle to H.Nicks.,13,10,2012 -20121203_NYG@WAS,3,29,51,NYG,WAS,2,10,91,(14:51) A.Bradshaw left end to NYG 9 for no gain (R.Kerrigan; S.Bowen).,13,10,2012 -20121203_NYG@WAS,3,29,6,NYG,WAS,3,10,91,(14:06) (Shotgun) E.Manning pass short middle to V.Cruz to NYG 21 for 12 yards (L.Fletcher; D.Gomes).,13,10,2012 -20121203_NYG@WAS,3,28,27,NYG,WAS,1,10,79,(13:27) E.Manning pass short left to H.Nicks pushed ob at NYG 30 for 9 yards (D.Hall).,13,10,2012 -20121203_NYG@WAS,3,27,58,NYG,WAS,2,1,70,(12:58) A.Bradshaw right tackle to NYG 32 for 2 yards (P.Riley J.Jenkins).,13,10,2012 -20121203_NYG@WAS,3,27,11,NYG,WAS,1,10,68,(12:11) E.Manning scrambles right end pushed ob at NYG 37 for 5 yards (J.Jenkins).,13,10,2012 -20121203_NYG@WAS,3,26,37,NYG,WAS,2,5,63,(11:37) D.Wilson right tackle to NYG 37 for no gain (C.Baker).,13,10,2012 -20121203_NYG@WAS,3,25,54,NYG,WAS,3,5,63,(10:54) (Shotgun) E.Manning pass short middle to H.Nicks to NYG 40 for 3 yards (C.Griffin).,13,10,2012 -20121203_NYG@WAS,3,25,24,NYG,WAS,4,2,60,(10:24) S.Weatherford punts 52 yards to WAS 8 Center-Z.DeOssie. B.Banks pushed ob at WAS 18 for 10 yards (M.Kiwanuka).,13,10,2012 -20121203_NYG@WAS,3,25,13,WAS,NYG,1,10,82,(10:13) (Shotgun) A.Morris left end to WAS 18 for no gain (L.Joseph).,10,13,2012 -20121203_NYG@WAS,3,24,36,WAS,NYG,2,10,82,(9:36) (Shotgun) A.Morris right end pushed ob at WAS 30 for 12 yards (C.Blackburn; J.Pierre-Paul).,10,13,2012 -20121203_NYG@WAS,3,23,59,WAS,NYG,1,10,70,(8:59) (Shotgun) R.Griffin pass short left to J.Morgan pushed ob at WAS 38 for 8 yards (A.Rolle).,10,13,2012 -20121203_NYG@WAS,3,23,25,WAS,NYG,2,2,62,(8:25) A.Morris right end to WAS 39 for 1 yard (M.Boley C.Canty).,10,13,2012 -20121203_NYG@WAS,3,22,43,WAS,NYG,3,1,61,(7:43) (Shotgun) R.Griffin left end to NYG 15 for 46 yards (S.Brown).,10,13,2012 -20121203_NYG@WAS,3,21,56,WAS,NYG,1,10,15,(6:56) (Shotgun) A.Morris left end to NYG 9 for 6 yards (C.Blackburn). FUMBLES (C.Blackburn) RECOVERED by NYG-K.Rivers at NYG 9. K.Rivers to NYG 9 for no gain (P.Garcon). Penalty on NYG-L.Joseph Unnecessary Roughness offsetting. Penalty on WAS-K.Lichtensteiger Unnecessary Roughness offsetting. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,10,13,2012 -20121203_NYG@WAS,3,21,45,NYG,WAS,1,10,91,(6:45) (Shotgun) A.Bradshaw left tackle to NYG 11 for 2 yards (P.Riley).,13,10,2012 -20121203_NYG@WAS,3,21,4,NYG,WAS,2,8,89,(6:04) (Shotgun) E.Manning pass deep right to V.Cruz pushed ob at WAS 40 for 49 yards (D.Hall).,13,10,2012 -20121203_NYG@WAS,3,20,37,NYG,WAS,1,10,40,(5:37) A.Bradshaw right guard to WAS 33 for 7 yards (Mad.Williams L.Fletcher).,13,10,2012 -20121203_NYG@WAS,3,19,53,NYG,WAS,2,3,33,(4:53) (Shotgun) E.Manning pass short middle to H.Nicks to WAS 17 for 16 yards (C.Griffin D.Gomes).,13,10,2012 -20121203_NYG@WAS,3,19,9,NYG,WAS,1,10,17,(4:09) (Shotgun) E.Manning pass incomplete short middle to H.Nicks.,13,10,2012 -20121203_NYG@WAS,3,19,3,NYG,WAS,2,10,17,(4:03) (Shotgun) A.Bradshaw up the middle to WAS 16 for 1 yard (P.Riley).,13,10,2012 -20121203_NYG@WAS,3,18,18,NYG,WAS,3,9,16,(3:18) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,13,10,2012 -20121203_NYG@WAS,3,18,14,NYG,WAS,4,9,16,(3:14) L.Tynes 35 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,13,10,2012 -20121203_NYG@WAS,3,18,14,NYG,WAS,,,16,L.Tynes kicks 71 yards from NYG 35 to WAS -6. B.Banks to WAS 14 for 20 yards (A.Tracy; R.Barden).,16,10,2012 -20121203_NYG@WAS,3,18,4,WAS,NYG,1,10,86,(3:04) (Shotgun) A.Morris right tackle to WAS 24 for 10 yards (A.Rolle).,10,16,2012 -20121203_NYG@WAS,3,17,23,WAS,NYG,1,10,76,(2:23) (Shotgun) R.Griffin pass incomplete short left to N.Paul.,10,16,2012 -20121203_NYG@WAS,3,17,16,WAS,NYG,2,10,76,(2:16) (Shotgun) A.Morris left tackle to WAS 40 for 16 yards (A.Rolle).,10,16,2012 -20121203_NYG@WAS,3,16,34,WAS,NYG,1,10,60,(1:34) (Shotgun) E.Royster up the middle to WAS 43 for 3 yards (L.Joseph; M.Boley).,10,16,2012 -20121203_NYG@WAS,3,15,54,WAS,NYG,2,7,57,(:54) (Shotgun) R.Griffin left end to 50 for 7 yards (M.Boley).,10,16,2012 -20121203_NYG@WAS,3,15,25,WAS,NYG,1,10,50,(:25) (Shotgun) R.Griffin pass short left to J.Morgan pushed ob at NYG 41 for 9 yards (P.Amukamara).,10,16,2012 -20121203_NYG@WAS,4,15,0,WAS,NYG,2,1,41,(15:00) D.Young left guard to NYG 37 for 4 yards (L.Joseph; A.Rolle).,10,16,2012 -20121203_NYG@WAS,4,14,20,WAS,NYG,1,10,37,(14:20) (Shotgun) A.Morris right tackle to NYG 30 for 7 yards (C.Blackburn).,10,16,2012 -20121203_NYG@WAS,4,13,41,WAS,NYG,2,3,30,(13:41) (Shotgun) A.Morris left end to NYG 25 for 5 yards (C.Blackburn).,10,16,2012 -20121203_NYG@WAS,4,12,54,WAS,NYG,1,10,25,(12:54) (Shotgun) A.Morris right guard to NYG 22 for 3 yards (T.Sash; R.Bernard).,10,16,2012 -20121203_NYG@WAS,4,12,17,WAS,NYG,2,7,22,(12:17) (Shotgun) R.Griffin pass short right to L.Hankerson to NYG 8 for 14 yards (S.Brown).,10,16,2012 -20121203_NYG@WAS,4,11,37,WAS,NYG,1,8,8,(11:37) (Shotgun) R.Griffin pass short right to P.Garcon for 8 yards TOUCHDOWN.,10,16,2012 -20121203_NYG@WAS,4,11,37,WAS,NYG,,,8,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,10,16,2012 -20121203_NYG@WAS,4,11,37,WAS,NYG,,,8,K.Forbath kicks 64 yards from WAS 35 to NYG 1. D.Wilson to 50 for 49 yards (L.Alexander). PENALTY on NYG-J.Cordle Offensive Holding 8 yards enforced at NYG 16.,17,16,2012 -20121203_NYG@WAS,4,11,21,NYG,WAS,1,10,92,(11:21) (Shotgun) A.Bradshaw right guard to NYG 12 for 4 yards (P.Riley; L.Fletcher).,16,17,2012 -20121203_NYG@WAS,4,10,42,NYG,WAS,2,6,88,(10:42) A.Bradshaw left guard to NYG 14 for 2 yards (S.Bowen L.Fletcher).,16,17,2012 -20121203_NYG@WAS,4,9,57,NYG,WAS,3,4,86,(9:57) (Shotgun) E.Manning sacked at NYG 7 for -7 yards (R.Jackson).,16,17,2012 -20121203_NYG@WAS,4,9,38,NYG,WAS,4,11,93,(9:38) S.Weatherford punts 54 yards to WAS 39 Center-Z.DeOssie. B.Banks to WAS 44 for 5 yards (C.Blackburn; W.Hill).,16,17,2012 -20121203_NYG@WAS,4,9,28,WAS,NYG,1,10,56,(9:28) (Shotgun) A.Morris right tackle to WAS 46 for 2 yards (C.Blackburn; L.Joseph).,17,16,2012 -20121203_NYG@WAS,4,8,51,WAS,NYG,2,8,54,(8:51) (Shotgun) R.Griffin pass short left to P.Garcon to NYG 47 for 7 yards (P.Amukamara; A.Rolle).,17,16,2012 -20121203_NYG@WAS,4,8,11,WAS,NYG,3,1,47,(8:11) A.Morris left tackle to NYG 44 for 3 yards (C.Blackburn; L.Joseph).,17,16,2012 -20121203_NYG@WAS,4,7,33,WAS,NYG,1,10,44,(7:33) (Shotgun) A.Morris left end to NYG 44 for no gain (J.Pierre-Paul M.Boley).,17,16,2012 -20121203_NYG@WAS,4,6,56,WAS,NYG,2,10,44,(6:56) (Shotgun) R.Griffin pass short right to L.Paulsen to NYG 38 for 6 yards (M.Boley). PENALTY on WAS-L.Paulsen Offensive Pass Interference 10 yards enforced at NYG 44 - No Play.,17,16,2012 -20121203_NYG@WAS,4,6,33,WAS,NYG,2,20,54,(6:33) (Shotgun) R.Griffin pass incomplete short right to J.Morgan.,17,16,2012 -20121203_NYG@WAS,4,6,23,WAS,NYG,3,20,54,(6:23) (Shotgun) R.Griffin pass incomplete deep right to J.Morgan.,17,16,2012 -20121203_NYG@WAS,4,6,17,WAS,NYG,4,20,54,(6:17) S.Rocca punts 37 yards to NYG 17 Center-N.Sundberg. R.Randle to NYG 20 for 3 yards (R.Doughty; N.Paul).,17,16,2012 -20121203_NYG@WAS,4,6,6,NYG,WAS,1,10,80,(6:06) A.Bradshaw left guard to NYG 25 for 5 yards (Mad.Williams; B.Cofield).,16,17,2012 -20121203_NYG@WAS,4,5,22,NYG,WAS,2,5,75,(5:22) (Shotgun) A.Bradshaw right tackle to NYG 28 for 3 yards (Mad.Williams C.Griffin). PENALTY on WAS-Mad.Williams Horse Collar Tackle 15 yards enforced at NYG 28.,16,17,2012 -20121203_NYG@WAS,4,4,56,NYG,WAS,1,10,57,(4:56) (Shotgun) E.Manning pass incomplete deep right to R.Randle.,16,17,2012 -20121203_NYG@WAS,4,4,50,NYG,WAS,2,10,57,(4:50) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,16,17,2012 -20121203_NYG@WAS,4,4,42,NYG,WAS,3,10,57,(4:42) (Shotgun) E.Manning pass short left to M.Bennett to WAS 46 for 11 yards (L.Fletcher). PENALTY on NYG-W.Beatty Offensive Holding 10 yards enforced at NYG 43 - No Play.,16,17,2012 -20121203_NYG@WAS,4,4,32,NYG,WAS,3,20,67,(4:32) (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 37 for 4 yards (R.Jackson).,16,17,2012 -20121203_NYG@WAS,4,4,3,NYG,WAS,4,16,63,(4:03) S.Weatherford punts 42 yards to WAS 21 Center-Z.DeOssie. B.Banks to WAS 27 for 6 yards (C.Blackburn). Penalty on WAS-B.Kehl Running Into the Kicker declined.,16,17,2012 -20121203_NYG@WAS,4,3,51,WAS,NYG,1,10,73,(3:51) (Shotgun) R.Griffin right end to WAS 35 for 8 yards (M.Boley).,17,16,2012 -20121203_NYG@WAS,4,3,6,WAS,NYG,2,2,65,(3:06) D.Young up the middle to WAS 39 for 4 yards (J.Tuck).,17,16,2012 -20121203_NYG@WAS,4,2,25,WAS,NYG,1,10,61,(2:25) (Shotgun) A.Morris right tackle to WAS 41 for 2 yards (R.Bernard; C.Canty).,17,16,2012 -20121203_NYG@WAS,4,2,19,WAS,NYG,2,8,59,(2:19) (Shotgun) R.Griffin pass deep middle to P.Garcon to NYG 42 for 17 yards (P.Amukamara).,17,16,2012 -20121203_NYG@WAS,4,2,0,WAS,NYG,1,10,42,(2:00) A.Morris up the middle to NYG 38 for 4 yards (J.Pierre-Paul; A.Rolle).,17,16,2012 -20121203_NYG@WAS,4,1,53,WAS,NYG,2,6,38,(1:53) A.Morris left tackle to NYG 35 for 3 yards (L.Joseph; M.Herzlich).,17,16,2012 -20121203_NYG@WAS,4,1,7,WAS,NYG,3,3,35,(1:07) A.Morris left tackle to NYG 29 for 6 yards (A.Rolle).,17,16,2012 -20121203_NYG@WAS,4,0,25,WAS,NYG,1,10,29,(:25) R.Griffin kneels to NYG 30 for -1 yards.,17,16,2012 -20121203_NYG@WAS,4,0,25,WAS,NYG,,,29,                      ,17,16,2012 -20121206_DEN@OAK,1,0,0,OAK,DEN,,,29,S.Janikowski kicks 66 yards from OAK 35 to DEN -1. T.Holliday to DEN 32 for 33 yards (T.Jones).,0,0,2012 -20121206_DEN@OAK,1,59,54,DEN,OAK,1,10,68,(14:54) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 37 for 5 yards (J.Hanson).,0,0,2012 -20121206_DEN@OAK,1,59,22,DEN,OAK,2,5,63,(14:22) (No Huddle) K.Moreno right guard to DEN 37 for no gain (D.Bryant).,0,0,2012 -20121206_DEN@OAK,1,58,50,DEN,OAK,3,5,63,(13:50) (Shotgun) P.Manning pass incomplete short middle to J.Tamme (P.Wheeler). PENALTY on OAK-P.Wheeler Defensive Holding 5 yards enforced at DEN 37 - No Play.,0,0,2012 -20121206_DEN@OAK,1,58,46,DEN,OAK,1,10,58,(13:46) (No Huddle) K.Moreno left guard to DEN 46 for 4 yards (D.Bryant T.Kelly).,0,0,2012 -20121206_DEN@OAK,1,58,14,DEN,OAK,2,6,54,(13:14) (No Huddle Shotgun) P.Manning pass incomplete short right to D.Thomas.,0,0,2012 -20121206_DEN@OAK,1,58,10,DEN,OAK,3,6,54,(13:10) (No Huddle Shotgun) P.Manning pass short middle to E.Decker to OAK 38 for 16 yards (T.Branch).,0,0,2012 -20121206_DEN@OAK,1,57,36,DEN,OAK,1,10,38,(12:36) (No Huddle) R.Hillman right tackle to OAK 38 for no gain (C.Bilukidi M.Burris).,0,0,2012 -20121206_DEN@OAK,1,56,53,DEN,OAK,2,10,38,(11:53) P.Manning pass incomplete deep right to J.Tamme [A.Carter].,0,0,2012 -20121206_DEN@OAK,1,56,47,DEN,OAK,3,10,38,(11:47) (Shotgun) P.Manning pass short right to K.Moreno to OAK 12 for 26 yards (M.Giordano T.Branch).,0,0,2012 -20121206_DEN@OAK,1,56,10,DEN,OAK,1,10,12,(11:10) R.Hillman up the middle to OAK 6 for 6 yards (M.Huff P.Wheeler).,0,0,2012 -20121206_DEN@OAK,1,55,35,DEN,OAK,2,4,6,(10:35) (Shotgun) P.Manning pass short middle to J.Dreessen for 6 yards TOUCHDOWN.,0,0,2012 -20121206_DEN@OAK,1,55,35,DEN,OAK,,,6,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121206_DEN@OAK,1,55,35,DEN,OAK,,,6,M.Prater kicks 74 yards from DEN 35 to OAK -9. M.Goodson Touchback.,7,0,2012 -20121206_DEN@OAK,1,55,30,OAK,DEN,1,10,80,(10:30) C.Palmer pass incomplete short middle to D.McFadden.,0,7,2012 -20121206_DEN@OAK,1,55,26,OAK,DEN,2,10,80,(10:26) (Shotgun) C.Palmer pass incomplete short right to D.McFadden.,0,7,2012 -20121206_DEN@OAK,1,55,22,OAK,DEN,3,10,80,(10:22) (Shotgun) C.Palmer pass short right to D.Heyward-Bey pushed ob at OAK 24 for 4 yards (T.Carter).,0,7,2012 -20121206_DEN@OAK,1,55,2,OAK,DEN,4,6,76,(10:02) S.Lechler punts 51 yards to DEN 25 Center-J.Condo. T.Holliday MUFFS catch touched at DEN 25 recovered by DEN-T.Carter at DEN 25. T.Carter to DEN 25 for no gain (M.Giordano).,0,7,2012 -20121206_DEN@OAK,1,54,51,DEN,OAK,1,10,75,(9:51) (Shotgun) K.Moreno up the middle to DEN 26 for 1 yard (M.Burris; P.Wheeler).,7,0,2012 -20121206_DEN@OAK,1,54,23,DEN,OAK,2,9,74,(9:23) (No Huddle Shotgun) P.Manning pass short middle to J.Dreessen to DEN 30 for 4 yards (L.Houston).,7,0,2012 -20121206_DEN@OAK,1,53,51,DEN,OAK,3,5,70,(8:51) (No Huddle Shotgun) P.Manning pass deep middle to E.Decker to DEN 49 for 19 yards (T.Branch M.Giordano).,7,0,2012 -20121206_DEN@OAK,1,53,23,DEN,OAK,1,10,51,(8:23) (No Huddle) K.Moreno right tackle to OAK 43 for 8 yards (C.Bilukidi).,7,0,2012 -20121206_DEN@OAK,1,52,55,DEN,OAK,2,2,43,(7:55) K.Moreno up the middle to OAK 43 for no gain. PENALTY on OAK-T.Kelly Defensive Offside 5 yards enforced at OAK 43 - No Play.,7,0,2012 -20121206_DEN@OAK,1,52,35,DEN,OAK,1,10,38,(7:35) (No Huddle Shotgun) P.Manning pass short middle to K.Moreno to OAK 34 for 4 yards (J.Hanson).,7,0,2012 -20121206_DEN@OAK,1,52,5,DEN,OAK,2,6,34,(7:05) (No Huddle Shotgun) P.Manning pass short left to J.Tamme to OAK 16 for 18 yards (T.Branch). OAK-T.Branch was injured during the play. His return is Questionable.,7,0,2012 -20121206_DEN@OAK,1,51,31,DEN,OAK,1,10,16,(6:31) P.Manning pass incomplete deep left to D.Thomas (R.Bartell).,7,0,2012 -20121206_DEN@OAK,1,51,25,DEN,OAK,2,10,16,(6:25) (No Huddle) K.Moreno right tackle to OAK 14 for 2 yards (P.Wheeler).,7,0,2012 -20121206_DEN@OAK,1,50,45,DEN,OAK,3,8,14,(5:45) (No Huddle Shotgun) P.Manning sacked at OAK 25 for -11 yards (L.Houston).,7,0,2012 -20121206_DEN@OAK,1,50,15,DEN,OAK,4,19,25,(5:15) M.Prater 43 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,7,0,2012 -20121206_DEN@OAK,1,50,15,DEN,OAK,,,25,M.Prater kicks 64 yards from DEN 35 to OAK 1. M.Goodson to OAK 19 for 18 yards (S.Johnson).,10,0,2012 -20121206_DEN@OAK,1,50,4,OAK,DEN,1,10,81,(5:04) T.Bergstrom reported in as eligible. D.McFadden left tackle to OAK 20 for 1 yard (Team).,0,10,2012 -20121206_DEN@OAK,1,49,30,OAK,DEN,2,9,80,(4:30) D.McFadden right tackle to OAK 20 for no gain (D.Williams).,0,10,2012 -20121206_DEN@OAK,1,48,49,OAK,DEN,3,9,80,(3:49) (Shotgun) C.Palmer pass deep middle to R.Streater to DEN 22 for 58 yards (T.Carter).,0,10,2012 -20121206_DEN@OAK,1,48,6,OAK,DEN,1,10,22,(3:06) C.Palmer pass deep middle intended for B.Myers INTERCEPTED by C.Bailey at DEN 3. C.Bailey to DEN 21 for 18 yards (D.Heyward-Bey).,0,10,2012 -20121206_DEN@OAK,1,47,53,DEN,OAK,1,10,79,(2:53) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 34 for 13 yards (J.Hanson).,10,0,2012 -20121206_DEN@OAK,1,47,28,DEN,OAK,1,10,66,(2:28) (No Huddle) K.Moreno up the middle to DEN 41 for 7 yards (M.Mitchell).,10,0,2012 -20121206_DEN@OAK,1,47,4,DEN,OAK,2,3,59,(2:04) (No Huddle) K.Moreno left guard to DEN 46 for 5 yards (M.Mitchell).,10,0,2012 -20121206_DEN@OAK,1,46,38,DEN,OAK,1,10,54,(1:38) (No Huddle) P.Manning pass short left to D.Thomas pushed ob at OAK 39 for 15 yards (R.Bartell).,10,0,2012 -20121206_DEN@OAK,1,46,11,DEN,OAK,1,10,39,(1:11) (No Huddle) R.Hillman up the middle to OAK 27 for 12 yards (M.Mitchell).,10,0,2012 -20121206_DEN@OAK,1,45,28,DEN,OAK,1,10,27,(:28) (No Huddle) P.Manning pass short left to D.Thomas to OAK 11 for 16 yards (M.Giordano P.Wheeler).,10,0,2012 -20121206_DEN@OAK,2,45,0,DEN,OAK,1,10,11,(15:00) (Shotgun) K.Moreno up the middle to OAK 10 for 1 yard (P.Wheeler T.Kelly).,10,0,2012 -20121206_DEN@OAK,2,44,25,DEN,OAK,2,9,10,(14:25) (Shotgun) P.Manning sacked at OAK 15 for -5 yards (D.Bryant).,10,0,2012 -20121206_DEN@OAK,2,43,47,DEN,OAK,3,14,15,(13:47) (No Huddle Shotgun) P.Manning pass incomplete short middle to J.Tamme.,10,0,2012 -20121206_DEN@OAK,2,43,42,DEN,OAK,4,14,15,(13:42) M.Prater 34 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,10,0,2012 -20121206_DEN@OAK,2,43,42,DEN,OAK,,,15,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,13,0,2012 -20121206_DEN@OAK,2,43,39,OAK,DEN,1,10,80,(13:39) C.Palmer pass incomplete short left to D.Moore (R.Moore). OAK-D.Moore was injured during the play. His return is Probable.,0,13,2012 -20121206_DEN@OAK,2,43,33,OAK,DEN,2,10,80,(13:33) D.McFadden right end to OAK 19 for -1 yards (R.Ayers).,0,13,2012 -20121206_DEN@OAK,2,42,50,OAK,DEN,3,11,81,(12:50) (No Huddle Shotgun) C.Palmer pass short middle to D.Heyward-Bey to OAK 25 for 6 yards (D.Williams).,0,13,2012 -20121206_DEN@OAK,2,42,8,OAK,DEN,4,5,75,(12:08) S.Lechler punts 58 yards to DEN 17 Center-J.Condo fair catch by T.Holliday.,0,13,2012 -20121206_DEN@OAK,2,41,59,DEN,OAK,1,10,83,(11:59) (Shotgun) P.Manning pass short right to E.Decker to DEN 26 for 9 yards (P.Wheeler).,13,0,2012 -20121206_DEN@OAK,2,41,33,DEN,OAK,2,1,74,(11:33) (No Huddle) K.Moreno up the middle to DEN 28 for 2 yards (M.Huff P.Wheeler).,13,0,2012 -20121206_DEN@OAK,2,41,2,DEN,OAK,1,10,72,(11:02) (No Huddle) P.Manning pass deep right to A.Caldwell to DEN 46 for 18 yards (J.Hanson).,13,0,2012 -20121206_DEN@OAK,2,40,39,DEN,OAK,1,10,54,(10:39) K.Moreno up the middle to DEN 49 for 3 yards (M.Mitchell). OAK-M.Mitchell was injured during the play. His return is Questionable.,13,0,2012 -20121206_DEN@OAK,2,40,7,DEN,OAK,2,7,51,(10:07) K.Moreno up the middle to OAK 42 for 9 yards (M.Burris).,13,0,2012 -20121206_DEN@OAK,2,39,38,DEN,OAK,1,10,42,(9:38) (No Huddle Shotgun) K.Moreno right end to OAK 34 for 8 yards (M.Burris).,13,0,2012 -20121206_DEN@OAK,2,39,9,DEN,OAK,2,2,34,(9:09) (No Huddle) R.Hillman left tackle to OAK 28 for 6 yards (T.Kelly).,13,0,2012 -20121206_DEN@OAK,2,38,42,DEN,OAK,1,10,28,(8:42) (No Huddle) P.Manning pass deep right intended for M.Willis INTERCEPTED by P.Adams at OAK 0. Touchback.,13,0,2012 -20121206_DEN@OAK,2,38,32,OAK,DEN,1,10,80,(8:32) (Shotgun) D.McFadden left end to OAK 29 for 9 yards (D.Williams). PENALTY on OAK-M.Brisiel Offensive Holding 10 yards enforced at OAK 21.,0,13,2012 -20121206_DEN@OAK,2,38,10,OAK,DEN,1,19,89,(8:10) C.Palmer pass short right to D.Heyward-Bey to OAK 26 for 15 yards (V.Miller).,0,13,2012 -20121206_DEN@OAK,2,37,29,OAK,DEN,2,4,74,(7:29) (No Huddle) D.McFadden up the middle to OAK 32 for 6 yards (M.Unrein).,0,13,2012 -20121206_DEN@OAK,2,36,56,OAK,DEN,1,10,68,(6:56) C.Palmer pass incomplete short left to R.Streater.,0,13,2012 -20121206_DEN@OAK,2,36,51,OAK,DEN,2,10,68,(6:51) C.Palmer pass short left to R.Streater to OAK 45 for 13 yards (T.Carter M.Adams).,0,13,2012 -20121206_DEN@OAK,2,36,20,OAK,DEN,1,10,55,(6:20) (No Huddle) M.Reece up the middle to OAK 48 for 3 yards (D.Trevathan V.Miller).,0,13,2012 -20121206_DEN@OAK,2,35,47,OAK,DEN,2,7,52,(5:47) (No Huddle Shotgun) C.Palmer pass short right to D.Moore to DEN 41 for 11 yards (C.Bailey).,0,13,2012 -20121206_DEN@OAK,2,35,14,OAK,DEN,1,10,41,(5:14) (No Huddle) C.Palmer pass incomplete short middle to R.Streater.,0,13,2012 -20121206_DEN@OAK,2,35,10,OAK,DEN,2,10,41,(5:10) (No Huddle) C.Palmer pass short right to R.Streater to DEN 26 for 15 yards (C.Bailey).,0,13,2012 -20121206_DEN@OAK,2,34,37,OAK,DEN,1,10,26,(4:37) (No Huddle Shotgun) C.Palmer pass short middle to D.Moore to DEN 20 for 6 yards (D.Williams).,0,13,2012 -20121206_DEN@OAK,2,34,0,OAK,DEN,2,4,20,(4:00) (No Huddle Shotgun) C.Palmer pass short left to D.McFadden to DEN 14 for 6 yards (D.Trevathan).,0,13,2012 -20121206_DEN@OAK,2,33,19,OAK,DEN,1,10,14,(3:19) (No Huddle Shotgun) C.Palmer pass short middle to B.Myers to DEN 7 for 7 yards (R.Moore D.Williams).,0,13,2012 -20121206_DEN@OAK,2,32,52,OAK,DEN,2,3,7,(2:52) (No Huddle) C.Palmer pass short left to D.Heyward-Bey to DEN 6 for 1 yard (D.Trevathan; T.Carter).,0,13,2012 -20121206_DEN@OAK,2,32,6,OAK,DEN,3,2,6,(2:06) (Shotgun) C.Palmer pass short left to D.McFadden for 6 yards TOUCHDOWN.,0,13,2012 -20121206_DEN@OAK,2,32,6,OAK,DEN,,,6,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,13,2012 -20121206_DEN@OAK,2,32,6,OAK,DEN,,,6,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,7,13,2012 -20121206_DEN@OAK,2,31,59,DEN,OAK,1,10,80,(1:59) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at DEN 26 for 6 yards (P.Adams).,13,7,2012 -20121206_DEN@OAK,2,31,53,DEN,OAK,2,4,74,(1:53) (No Huddle Shotgun) P.Manning pass incomplete short middle to J.Tamme (P.Wheeler). PENALTY on OAK-P.Adams Illegal Use of Hands 5 yards enforced at DEN 26 - No Play.,13,7,2012 -20121206_DEN@OAK,2,31,48,DEN,OAK,1,10,69,(1:48) (No Huddle) K.Moreno up the middle to DEN 31 for no gain (M.Shaughnessy).,13,7,2012 -20121206_DEN@OAK,2,31,30,DEN,OAK,2,10,69,(1:30) (No Huddle Shotgun) P.Manning pass deep middle to M.Willis to 50 for 19 yards (P.Wheeler M.Giordano).,13,7,2012 -20121206_DEN@OAK,2,30,54,DEN,OAK,1,10,50,(:54) (No Huddle Shotgun) P.Manning sacked at DEN 44 for -6 yards (M.Mitchell).,13,7,2012 -20121206_DEN@OAK,2,30,47,DEN,OAK,2,16,56,(:47) (Shotgun) P.Manning pass short middle to E.Decker to OAK 49 for 7 yards (J.Hanson).,13,7,2012 -20121206_DEN@OAK,2,30,25,DEN,OAK,3,9,49,(:25) (No Huddle Shotgun) P.Manning pass incomplete short right to M.Willis (P.Adams).,13,7,2012 -20121206_DEN@OAK,2,30,20,DEN,OAK,4,9,49,(:20) B.Colquitt punts 36 yards to OAK 13 Center-A.Brewer fair catch by D.Moore.,13,7,2012 -20121206_DEN@OAK,2,30,13,OAK,DEN,1,10,87,(:13) C.Palmer kneels to OAK 12 for -1 yards.,7,13,2012 -20121206_DEN@OAK,3,30,0,DEN,OAK,,,87,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,13,7,2012 -20121206_DEN@OAK,3,30,0,OAK,DEN,1,10,80,(15:00) D.McFadden right end to DEN 44 for 36 yards (R.Moore).,7,13,2012 -20121206_DEN@OAK,3,29,32,OAK,DEN,1,10,44,(14:32) (No Huddle) M.Reece right tackle to DEN 42 for 2 yards (K.Brooking M.Unrein).,7,13,2012 -20121206_DEN@OAK,3,28,47,OAK,DEN,2,8,42,(13:47) (No Huddle) M.Reece up the middle to DEN 42 for no gain (M.Unrein).,7,13,2012 -20121206_DEN@OAK,3,28,39,OAK,DEN,3,8,42,(13:39) (Shotgun) PENALTY on OAK-K.Barnes False Start 5 yards enforced at DEN 42 - No Play.,7,13,2012 -20121206_DEN@OAK,3,27,46,OAK,DEN,3,13,47,(12:46) (Shotgun) C.Palmer pass incomplete deep right to D.Moore.,7,13,2012 -20121206_DEN@OAK,3,27,40,OAK,DEN,4,13,47,(12:40) S.Lechler punts 38 yards to DEN 9 Center-J.Condo fair catch by J.Leonhard.,7,13,2012 -20121206_DEN@OAK,3,27,33,DEN,OAK,1,10,91,(12:33) K.Moreno left guard to DEN 10 for 1 yard (M.Burris).,13,7,2012 -20121206_DEN@OAK,3,26,57,DEN,OAK,2,9,90,(11:57) (Shotgun) P.Manning pass incomplete short right to D.Thomas. PENALTY on OAK-R.Bartell Defensive Pass Interference 11 yards enforced at DEN 10 - No Play.,13,7,2012 -20121206_DEN@OAK,3,26,53,DEN,OAK,1,10,79,(11:53) (No Huddle) P.Manning pass short left to K.Moreno to DEN 24 for 3 yards (M.Burris).,13,7,2012 -20121206_DEN@OAK,3,26,10,DEN,OAK,2,7,76,(11:10) (Shotgun) K.Moreno up the middle to DEN 20 for -4 yards (T.Kelly).,13,7,2012 -20121206_DEN@OAK,3,25,27,DEN,OAK,3,11,80,(10:27) (Shotgun) P.Manning pass short left to D.Thomas pushed ob at DEN 42 for 22 yards (R.Bartell).,13,7,2012 -20121206_DEN@OAK,3,24,53,DEN,OAK,1,10,58,(9:53) (No Huddle Shotgun) P.Manning pass deep right to E.Decker to OAK 29 for 29 yards (J.Hanson).,13,7,2012 -20121206_DEN@OAK,3,24,13,DEN,OAK,1,10,29,(9:13) (Shotgun) K.Moreno left end to OAK 24 for 5 yards (M.Burris).,13,7,2012 -20121206_DEN@OAK,3,23,30,DEN,OAK,2,5,24,(8:30) (Shotgun) P.Manning pass incomplete deep middle to D.Thomas. PENALTY on OAK-M.Giordano Defensive Pass Interference 23 yards enforced at OAK 24 - No Play.,13,7,2012 -20121206_DEN@OAK,3,23,28,DEN,OAK,1,1,1,(8:28) C.Clark and M.Unrein reported in as eligible. P.Manning pass incomplete short left to V.Green.,13,7,2012 -20121206_DEN@OAK,3,23,22,DEN,OAK,2,1,1,(8:22) K.Moreno right tackle to OAK 2 for -1 yards (D.Bryant).,13,7,2012 -20121206_DEN@OAK,3,22,37,DEN,OAK,3,2,2,(7:37) P.Manning pass incomplete short right to E.Decker.,13,7,2012 -20121206_DEN@OAK,3,22,33,DEN,OAK,4,2,2,(7:33) M.Prater 20 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,13,7,2012 -20121206_DEN@OAK,3,22,33,DEN,OAK,,,2,M.Prater kicks 73 yards from DEN 35 to OAK -8. M.Goodson to OAK 8 for 16 yards (C.Gronkowski).,16,7,2012 -20121206_DEN@OAK,3,22,22,OAK,DEN,1,10,92,(7:22) D.McFadden left end to OAK 12 for 4 yards (C.Harris).,7,16,2012 -20121206_DEN@OAK,3,22,16,OAK,DEN,2,6,88,(7:16) (No Huddle Shotgun) PENALTY on OAK-M.Reece False Start 5 yards enforced at OAK 12 - No Play.,7,16,2012 -20121206_DEN@OAK,3,21,22,OAK,DEN,2,11,93,(6:22) (Shotgun) C.Palmer pass short left to M.Reece to OAK 12 for 5 yards (R.Moore).,7,16,2012 -20121206_DEN@OAK,3,20,50,OAK,DEN,3,6,88,(5:50) C.Palmer sacked at OAK 3 for -9 yards (V.Miller). FUMBLES (V.Miller) RECOVERED by DEN-M.Unrein at OAK 2. M.Unrein to OAK 2 for no gain (C.Palmer).,7,16,2012 -20121206_DEN@OAK,3,20,45,DEN,OAK,1,2,2,(5:45) (Shotgun) K.Moreno left guard to OAK 1 for 1 yard (J.Hanson).,16,7,2012 -20121206_DEN@OAK,3,20,14,DEN,OAK,2,1,1,(5:14) (No Huddle Shotgun) K.Moreno left tackle for 1 yard TOUCHDOWN.,16,7,2012 -20121206_DEN@OAK,3,20,14,DEN,OAK,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,16,7,2012 -20121206_DEN@OAK,3,20,14,DEN,OAK,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,23,7,2012 -20121206_DEN@OAK,3,20,7,OAK,DEN,1,10,80,(5:07) D.McFadden right guard to OAK 20 for no gain (D.Trevathan K.Brooking).,7,23,2012 -20121206_DEN@OAK,3,19,27,OAK,DEN,2,10,80,(4:27) D.McFadden right tackle to OAK 22 for 2 yards (V.Miller).,7,23,2012 -20121206_DEN@OAK,3,18,50,OAK,DEN,3,8,78,(3:50) (No Huddle Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey.,7,23,2012 -20121206_DEN@OAK,3,18,46,OAK,DEN,4,8,78,(3:46) S.Lechler punts 32 yards to DEN 46 Center-J.Condo downed by OAK-K.Clayton. PENALTY on DEN-O.Bolden Offensive Holding 10 yards enforced at DEN 46.,7,23,2012 -20121206_DEN@OAK,3,18,37,DEN,OAK,1,10,64,(3:37) (Shotgun) P.Manning pass short middle to D.Thomas to OAK 45 for 19 yards (M.Giordano). OAK-M.Giordano was injured during the play. His return is Probable.,23,7,2012 -20121206_DEN@OAK,3,18,5,DEN,OAK,1,10,45,(3:05) K.Moreno up the middle to OAK 38 for 7 yards (A.Carter P.Wheeler).,23,7,2012 -20121206_DEN@OAK,3,17,37,DEN,OAK,2,3,38,(2:37) (No Huddle Shotgun) P.Manning pass short right to J.Dreessen to OAK 36 for 2 yards (T.Branch).,23,7,2012 -20121206_DEN@OAK,3,17,7,DEN,OAK,3,1,36,(2:07) C.Clark reported in as eligible. P.Manning pass short right to K.Moreno to OAK 21 for 15 yards (L.Houston).,23,7,2012 -20121206_DEN@OAK,3,16,32,DEN,OAK,1,10,21,(1:32) (No Huddle Shotgun) P.Manning pass incomplete short left to R.Hillman.,23,7,2012 -20121206_DEN@OAK,3,16,28,DEN,OAK,2,10,21,(1:28) (Shotgun) P.Manning pass short left to E.Decker to OAK 16 for 5 yards (P.Adams).,23,7,2012 -20121206_DEN@OAK,3,16,3,DEN,OAK,3,5,16,(1:03) (Shotgun) P.Manning pass short right to E.Decker to OAK 15 for 1 yard (P.Adams).,23,7,2012 -20121206_DEN@OAK,3,15,23,DEN,OAK,4,4,15,(:23) M.Prater 33 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,23,7,2012 -20121206_DEN@OAK,3,15,23,DEN,OAK,,,15,M.Prater kicks 69 yards from DEN 35 to OAK -4. M.Goodson Touchback.,26,7,2012 -20121206_DEN@OAK,3,15,19,OAK,DEN,1,10,80,(:19) C.Palmer pass incomplete short left to D.McFadden. Penalty on OAK Illegal Motion declined. PENALTY on OAK-K.Barnes Offensive Holding 10 yards enforced at OAK 20 - No Play.,7,26,2012 -20121206_DEN@OAK,3,15,13,OAK,DEN,1,20,90,(:13) C.Palmer pass short left to R.Streater to OAK 24 for 14 yards (K.Brooking; T.Carter).,7,26,2012 -20121206_DEN@OAK,4,15,0,OAK,DEN,2,6,76,(15:00) (Shotgun) C.Palmer pass incomplete short left to D.Ausberry.,7,26,2012 -20121206_DEN@OAK,4,14,56,OAK,DEN,3,6,76,(14:56) (Shotgun) C.Palmer sacked at OAK 18 for -6 yards (M.Adams). PENALTY on DEN-C.Bailey Defensive Holding 5 yards enforced at OAK 24 - No Play.,7,26,2012 -20121206_DEN@OAK,4,14,29,OAK,DEN,1,10,71,(14:29) D.McFadden up the middle to OAK 26 for -3 yards (J.Bannan). Penalty on OAK-C.Carlisle Offensive Holding declined.,7,26,2012 -20121206_DEN@OAK,4,14,6,OAK,DEN,2,13,74,(14:06) (Shotgun) C.Palmer pass short right to D.Moore to OAK 41 for 15 yards (M.Adams K.Brooking).,7,26,2012 -20121206_DEN@OAK,4,13,31,OAK,DEN,1,10,59,(13:31) C.Palmer pass short left to D.Moore to DEN 48 for 11 yards (M.Adams).,7,26,2012 -20121206_DEN@OAK,4,12,53,OAK,DEN,1,10,48,(12:53) C.Palmer pass short left to D.Moore to DEN 38 for 10 yards (T.Carter). PENALTY on OAK-K.Barnes Offensive Holding 10 yards enforced at DEN 48 - No Play.,7,26,2012 -20121206_DEN@OAK,4,12,24,OAK,DEN,1,20,58,(12:24) (Shotgun) M.Reece right tackle to OAK 47 for 5 yards (K.Brooking; M.Adams).,7,26,2012 -20121206_DEN@OAK,4,11,49,OAK,DEN,2,15,53,(11:49) (Shotgun) C.Palmer pass incomplete deep right to J.Criner.,7,26,2012 -20121206_DEN@OAK,4,11,44,OAK,DEN,3,15,53,(11:44) (Shotgun) C.Palmer pass incomplete short left to R.Streater (T.Carter).,7,26,2012 -20121206_DEN@OAK,4,11,39,OAK,DEN,4,15,53,(11:39) S.Lechler punts 38 yards to DEN 15 Center-J.Condo fair catch by J.Leonhard.,7,26,2012 -20121206_DEN@OAK,4,11,31,DEN,OAK,1,10,85,(11:31) K.Moreno up the middle to DEN 33 for 18 yards (P.Adams J.Hanson).,26,7,2012 -20121206_DEN@OAK,4,10,41,DEN,OAK,1,10,67,(10:41) (No Huddle) K.Moreno left tackle to DEN 35 for 2 yards (Team).,26,7,2012 -20121206_DEN@OAK,4,10,2,DEN,OAK,2,8,65,(10:02) (Shotgun) P.Manning pass short right to E.Decker to DEN 37 for 2 yards (J.Hanson).,26,7,2012 -20121206_DEN@OAK,4,9,22,DEN,OAK,3,6,63,(9:22) (Shotgun) P.Manning pass incomplete deep left to J.Tamme. PENALTY on OAK-T.Branch Illegal Contact 5 yards enforced at DEN 37 - No Play.,26,7,2012 -20121206_DEN@OAK,4,9,16,DEN,OAK,1,10,58,(9:16) K.Moreno up the middle to DEN 39 for -3 yards (M.Mitchell A.Carter).,26,7,2012 -20121206_DEN@OAK,4,8,30,DEN,OAK,2,13,61,(8:30) K.Moreno up the middle to DEN 41 for 2 yards (L.Houston).,26,7,2012 -20121206_DEN@OAK,4,7,43,DEN,OAK,3,11,59,(7:43) (Shotgun) P.Manning pass incomplete short middle to K.Moreno. Penalty on DEN-O.Franklin Offensive Holding declined.,26,7,2012 -20121206_DEN@OAK,4,7,39,DEN,OAK,4,11,59,(7:39) B.Colquitt punts 53 yards to OAK 6 Center-A.Brewer. D.Moore to OAK 14 for 8 yards (S.Johnson).,26,7,2012 -20121206_DEN@OAK,4,7,26,OAK,DEN,1,10,86,(7:26) C.Palmer pass short left to J.Criner to OAK 31 for 17 yards (R.Moore).,7,26,2012 -20121206_DEN@OAK,4,6,56,OAK,DEN,1,10,69,(6:56) (Shotgun) D.McFadden left guard to OAK 37 for 6 yards (M.Adams).,7,26,2012 -20121206_DEN@OAK,4,6,22,OAK,DEN,2,4,63,(6:22) C.Palmer pass short left to J.Criner to OAK 44 for 7 yards (T.Carter).,7,26,2012 -20121206_DEN@OAK,4,5,47,OAK,DEN,1,10,56,(5:47) (No Huddle Shotgun) C.Palmer pass deep left to D.Heyward-Bey for 56 yards TOUCHDOWN.,7,26,2012 -20121206_DEN@OAK,4,5,47,OAK,DEN,,,56,TWO-POINT CONVERSION ATTEMPT. C.Palmer pass to D.Moore is incomplete. ATTEMPT FAILS.,7,26,2012 -20121206_DEN@OAK,4,5,47,OAK,DEN,,,56,S.Janikowski kicks onside 14 yards from OAK 35 to OAK 49. J.Tamme (didn't try to advance) to OAK 49 for no gain.,13,26,2012 -20121206_DEN@OAK,4,5,35,DEN,OAK,1,10,49,(5:35) K.Moreno left tackle to OAK 45 for 4 yards (R.Bartell).,26,13,2012 -20121206_DEN@OAK,4,4,53,DEN,OAK,2,6,45,(4:53) K.Moreno right guard to OAK 37 for 8 yards (P.Adams T.Kelly).,26,13,2012 -20121206_DEN@OAK,4,4,8,DEN,OAK,1,10,37,(4:08) K.Moreno left guard to OAK 37 for no gain (Team).,26,13,2012 -20121206_DEN@OAK,4,4,3,DEN,OAK,2,10,37,(4:03) K.Moreno right tackle to OAK 36 for 1 yard (T.Kelly; O.Gaither). PENALTY on DEN-E.Decker Offensive Holding 10 yards enforced at OAK 36.,26,13,2012 -20121206_DEN@OAK,4,3,57,DEN,OAK,2,19,46,(3:57) K.Moreno left tackle to OAK 31 for 15 yards (T.Branch).,26,13,2012 -20121206_DEN@OAK,4,3,50,DEN,OAK,3,4,31,(3:50) P.Manning pass short left to D.Thomas to OAK 20 for 11 yards (R.Bartell).,26,13,2012 -20121206_DEN@OAK,4,3,8,DEN,OAK,1,10,20,(3:08) K.Moreno up the middle to OAK 16 for 4 yards (P.Wheeler).,26,13,2012 -20121206_DEN@OAK,4,3,3,DEN,OAK,2,6,16,(3:03) K.Moreno right tackle to OAK 11 for 5 yards (Team).,26,13,2012 -20121206_DEN@OAK,4,2,13,DEN,OAK,3,1,11,(2:13) K.Moreno up the middle to OAK 8 for 3 yards (A.Carter).,26,13,2012 -20121206_DEN@OAK,4,2,0,DEN,OAK,1,8,8,(2:00) P.Manning kneels to OAK 9 for -1 yards.,26,13,2012 -20121206_DEN@OAK,4,1,11,DEN,OAK,2,9,9,(1:11) P.Manning kneels to OAK 10 for -1 yards.,26,13,2012 -20121206_DEN@OAK,4,0,36,DEN,OAK,3,10,10,(:36) P.Manning kneels to OAK 11 for -1 yards.,26,13,2012 -20121206_DEN@OAK,4,0,36,DEN,OAK,,,10,                      ,26,13,2012 -20121209_STL@BUF,1,0,0,STL,BUF,,,10,G.Zuerlein kicks 70 yards from SL 35 to BUF -5. L.McKelvin to BUF 25 for 30 yards (C.Dahl).,0,0,2012 -20121209_STL@BUF,1,59,55,BUF,STL,1,10,75,(14:55) C.Spiller left tackle to BUF 27 for 2 yards (J.Laurinaitis).,0,0,2012 -20121209_STL@BUF,1,59,14,BUF,STL,2,8,73,(14:14) (Shotgun) R.Fitzpatrick sacked at BUF 26 for -1 yards (sack split by K.Langford and M.Brockers).,0,0,2012 -20121209_STL@BUF,1,58,37,BUF,STL,3,9,74,(13:37) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Jones (J.Laurinaitis). Nearly intercepted at BUF 35 receiver slanting to flat at BUF 40.,0,0,2012 -20121209_STL@BUF,1,58,32,BUF,STL,4,9,74,(13:32) S.Powell punts 55 yards to SL 19 Center-G.Sanborn. A.Pettis to SL 42 for 23 yards (B.Smith).,0,0,2012 -20121209_STL@BUF,1,58,19,STL,BUF,1,10,58,(13:19) S.Jackson right guard to SL 43 for 1 yard (Ky.Williams N.Bradham).,0,0,2012 -20121209_STL@BUF,1,57,40,STL,BUF,2,9,57,(12:40) (Shotgun) S.Bradford pass short right to A.Pettis to SL 49 for 6 yards (J.Byrd N.Barnett). Caught in flat at SL 49.,0,0,2012 -20121209_STL@BUF,1,57,1,STL,BUF,3,3,51,(12:01) (Shotgun) S.Bradford pass incomplete short middle to C.Givens. Thrown wide of receiver at BUF 49 crossing from right.,0,0,2012 -20121209_STL@BUF,1,56,58,STL,BUF,4,3,51,(11:58) J.Hekker punts 33 yards to BUF 18 Center-J.McQuaide out of bounds.,0,0,2012 -20121209_STL@BUF,1,56,51,BUF,STL,1,10,82,(11:51) R.Fitzpatrick pass short left to St.Johnson to BUF 22 for 4 yards (J.Jenkins). Screen pass caught at BUF 18.,0,0,2012 -20121209_STL@BUF,1,56,19,BUF,STL,2,6,78,(11:19) F.Jackson up the middle to BUF 24 for 2 yards (M.Brockers K.Langford).,0,0,2012 -20121209_STL@BUF,1,55,34,BUF,STL,3,4,76,(10:34) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to BUF 27 for 3 yards (J.Jenkins) [C.Long]. Caught in flat at BUF 27 thrown under pressure.,0,0,2012 -20121209_STL@BUF,1,54,57,BUF,STL,4,1,73,(9:57) S.Powell punts 37 yards to SL 36 Center-G.Sanborn out of bounds.,0,0,2012 -20121209_STL@BUF,1,54,50,STL,BUF,1,10,64,(9:50) S.Jackson left guard to SL 37 for 1 yard (M.Dareus N.Barnett).,0,0,2012 -20121209_STL@BUF,1,54,16,STL,BUF,2,9,63,(9:16) C.Givens left end to SL 34 for -3 yards (N.Barnett D.Searcy). End-around handoff from S.Bradford.,0,0,2012 -20121209_STL@BUF,1,53,32,STL,BUF,3,12,66,(8:32) (Shotgun) S.Bradford sacked at SL 32 for -2 yards (M.Williams A.Carrington). M.Williams credited with full sack. A.Carrington slowed down QB prior to sack.,0,0,2012 -20121209_STL@BUF,1,53,1,STL,BUF,4,14,68,(8:01) J.Hekker punts 45 yards to BUF 23 Center-J.McQuaide. L.McKelvin to BUF 27 for 4 yards (B.Fletcher).,0,0,2012 -20121209_STL@BUF,1,52,51,BUF,STL,1,10,73,(7:51) R.Fitzpatrick pass deep right to D.Jones to BUF 46 for 19 yards (J.Laurinaitis). Caught at BUF 43.,0,0,2012 -20121209_STL@BUF,1,52,11,BUF,STL,1,10,54,(7:11) R.Fitzpatrick sacked at BUF 40 for -6 yards (M.Brockers E.Sims). M.Brockers credited with full sack.,0,0,2012 -20121209_STL@BUF,1,51,34,BUF,STL,2,16,60,(6:34) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 43 for 3 yards (J.Dunbar C.Finnegan). Caught at BUF 42.,0,0,2012 -20121209_STL@BUF,1,50,50,BUF,STL,3,13,57,(5:50) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at SL 42 for 15 yards (Q.Mikell). Screen pass caught at BUF 37.,0,0,2012 -20121209_STL@BUF,1,50,11,BUF,STL,1,10,42,(5:11) F.Jackson right guard to SL 39 for 3 yards (J.Dunbar; K.Langford).,0,0,2012 -20121209_STL@BUF,1,49,29,BUF,STL,2,7,39,(4:29) R.Fitzpatrick pass short right to S.Chandler to SL 24 for 15 yards (C.Finnegan). Out pass caught at SL 37.,0,0,2012 -20121209_STL@BUF,1,48,42,BUF,STL,1,10,24,(3:42) F.Jackson right guard to SL 27 for -3 yards (Q.Mikell).,0,0,2012 -20121209_STL@BUF,1,47,59,BUF,STL,2,13,27,(2:59) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at SL 17 for 10 yards (C.Finnegan) [M.Brockers]. Caught in flat at SL 22 thrown under pressure.,0,0,2012 -20121209_STL@BUF,1,47,21,BUF,STL,3,3,17,(2:21) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Jones [W.Hayes]. Underthrown receiver at SL 13.,0,0,2012 -20121209_STL@BUF,1,47,17,BUF,STL,4,3,17,(2:17) R.Lindell 35 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,0,2012 -20121209_STL@BUF,1,47,17,BUF,STL,,,17,R.Lindell kicks 52 yards from BUF 35 to SL 13. C.Givens to SL 29 for 16 yards (R.Brooks).,3,0,2012 -20121209_STL@BUF,1,47,9,STL,BUF,1,10,71,(2:09) S.Bradford pass incomplete short right to S.Jackson [A.Carrington]. Underthrown under pressure.,0,3,2012 -20121209_STL@BUF,1,47,3,STL,BUF,2,10,71,(2:03) S.Bradford pass incomplete short middle to S.Jackson. Underthrown recever crossing to left at SL 25. Pressure on QB: K.Moore.,0,3,2012 -20121209_STL@BUF,1,46,59,STL,BUF,3,10,71,(1:59) (Shotgun) S.Bradford pass incomplete short right to C.Givens [L.McKelvin]. Bobbled along sideline at SL 41.,0,3,2012 -20121209_STL@BUF,1,46,54,STL,BUF,4,10,71,(1:54) J.Hekker punts 46 yards to BUF 25 Center-J.McQuaide. L.McKelvin to BUF 29 for 4 yards (C.Harkey R.McLeod).,0,3,2012 -20121209_STL@BUF,1,46,41,BUF,STL,1,10,71,(1:41) R.Fitzpatrick pass incomplete deep left to St.Johnson [C.Long]. Overthrown receiver along sideline at 50.,3,0,2012 -20121209_STL@BUF,1,46,36,BUF,STL,2,10,71,(1:36) R.Fitzpatrick pass short right to S.Chandler to SL 48 for 23 yards (C.Dahl). Up-pattern caught at BUF 40.,3,0,2012 -20121209_STL@BUF,1,45,51,BUF,STL,1,10,48,(:51) R.Fitzpatrick pass deep right to St.Johnson to SL 14 for 34 yards (C.Finnegan). Caught along sideline at SL 20.,3,0,2012 -20121209_STL@BUF,1,45,4,BUF,STL,1,10,14,(:04) F.Jackson up the middle to SL 14 for no gain (M.Brockers). FUMBLES (M.Brockers) RECOVERED by SL-J.Laurinaitis at SL 15. J.Laurinaitis to SL 19 for 4 yards (D.Snow).,3,0,2012 -20121209_STL@BUF,2,45,0,STL,BUF,1,10,81,(15:00) S.Jackson up the middle to SL 31 for 12 yards (D.Searcy K.Sheppard).,0,3,2012 -20121209_STL@BUF,2,44,29,STL,BUF,1,10,69,(14:29) S.Jackson up the middle to SL 38 for 7 yards (N.Barnett D.Searcy).,0,3,2012 -20121209_STL@BUF,2,43,58,STL,BUF,2,3,62,(13:58) S.Jackson left guard to SL 37 for -1 yards (D.Searcy K.Moore).,0,3,2012 -20121209_STL@BUF,2,43,21,STL,BUF,3,4,63,(13:21) S.Bradford pass incomplete short middle to S.Smith. Overthrown receiver at SL 45.,0,3,2012 -20121209_STL@BUF,2,43,17,STL,BUF,4,4,63,(13:17) J.Hekker punts 41 yards to BUF 22 Center-J.McQuaide fair catch by L.McKelvin.,0,3,2012 -20121209_STL@BUF,2,43,9,BUF,STL,1,10,78,(13:09) C.Spiller up the middle to BUF 23 for 1 yard (R.McIntosh; J.Dunbar).,3,0,2012 -20121209_STL@BUF,2,42,24,BUF,STL,2,9,77,(12:24) R.Fitzpatrick pass short left to F.Jackson to BUF 21 for -2 yards (C.Dahl). Screen caught at BUF 19.,3,0,2012 -20121209_STL@BUF,2,41,39,BUF,STL,3,11,79,(11:39) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to BUF 27 for 6 yards (C.Long). Caught at BUF 22 crossing from left.,3,0,2012 -20121209_STL@BUF,2,41,1,BUF,STL,4,5,73,(11:01) S.Powell punts 34 yards to SL 39 Center-G.Sanborn downed by BUF-C.White.,3,0,2012 -20121209_STL@BUF,2,40,50,STL,BUF,1,10,61,(10:50) S.Bradford pass short right to L.Kendricks pushed ob at SL 42 for 3 yards (J.Byrd). Out-pattern caught at SL 42 crossing to sideline.,0,3,2012 -20121209_STL@BUF,2,40,23,STL,BUF,2,7,58,(10:23) D.Richardson up the middle to SL 44 for 2 yards (N.Bradham; S.Merriman).,0,3,2012 -20121209_STL@BUF,2,39,42,STL,BUF,3,5,56,(9:42) (Shotgun) S.Bradford up the middle to SL 42 for -2 yards (M.Williams). FUMBLES (M.Williams) and recovers at SL 43. S.Bradford to SL 46 for 3 yards (N.Barnett).,0,3,2012 -20121209_STL@BUF,2,39,4,STL,BUF,4,3,54,(9:04) J.Hekker punts 41 yards to BUF 13 Center-J.McQuaide fair catch by L.McKelvin.,0,3,2012 -20121209_STL@BUF,2,38,56,BUF,STL,1,10,87,(8:56) (Shotgun) C.Spiller right guard to BUF 19 for 6 yards (T.Johnson C.Finnegan).,3,0,2012 -20121209_STL@BUF,2,38,10,BUF,STL,2,4,81,(8:10) R.Fitzpatrick pass incomplete short right to T.Graham. Thrown wide of receiver along sideine at BUF 30.,3,0,2012 -20121209_STL@BUF,2,38,6,BUF,STL,3,4,81,(8:06) (Shotgun) R.Fitzpatrick pass short left to D.Jones to BUF 30 for 11 yards (C.Finnegan). Caught at BUF 30 slanting to middle.,3,0,2012 -20121209_STL@BUF,2,37,22,BUF,STL,1,10,70,(7:22) C.Spiller left guard to BUF 31 for 1 yard (Q.Mikell). PENALTY on SL-C.Finnegan Face Mask (15 Yards) 15 yards enforced at BUF 31.,3,0,2012 -20121209_STL@BUF,2,36,56,BUF,STL,1,10,54,(6:56) (Shotgun) T.Graham left tackle to SL 49 for 5 yards (J.Jenkins). Reverse handoff from C.Spiller.,3,0,2012 -20121209_STL@BUF,2,36,10,BUF,STL,2,5,49,(6:10) R.Fitzpatrick scrambles right tackle to SL 48 for 1 yard (J.Jenkins).,3,0,2012 -20121209_STL@BUF,2,35,26,BUF,STL,3,4,48,(5:26) (Shotgun) R.Fitzpatrick sacked at BUF 48 for -4 yards (sack split by C.Long and K.Langford).,3,0,2012 -20121209_STL@BUF,2,35,1,BUF,STL,4,8,52,(5:01) S.Powell punts 39 yards to SL 13 Center-G.Sanborn fair catch by A.Pettis.,3,0,2012 -20121209_STL@BUF,2,34,53,STL,BUF,1,10,87,(4:53) S.Jackson up the middle to SL 21 for 8 yards (G.Wilson Sp.Johnson).,0,3,2012 -20121209_STL@BUF,2,34,17,STL,BUF,2,2,79,(4:17) S.Jackson left tackle to SL 22 for 1 yard (Ky.Williams K.Moore).,0,3,2012 -20121209_STL@BUF,2,33,39,STL,BUF,3,1,78,(3:39) S.Jackson up the middle to SL 24 for 2 yards (Sp.Johnson).,0,3,2012 -20121209_STL@BUF,2,32,57,STL,BUF,1,10,76,(2:57) S.Jackson up the middle to SL 28 for 4 yards (K.Sheppard).,0,3,2012 -20121209_STL@BUF,2,32,18,STL,BUF,2,6,72,(2:18) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson (R.Brooks). Receiver and coverage along sideline at BUF 43. Pressure on QB: G.Wilson.,0,3,2012 -20121209_STL@BUF,2,32,12,STL,BUF,3,6,72,(2:12) (Shotgun) S.Bradford pass short left to C.Givens to SL 41 for 13 yards (S.Gilmore). Caught in flat at SL 41.,0,3,2012 -20121209_STL@BUF,2,32,0,STL,BUF,1,10,59,(2:00) (Shotgun) S.Bradford pass short left to B.Gibson pushed ob at BUF 49 for 10 yards (J.Byrd). Caught at SL 46 slanting to sideline.,0,3,2012 -20121209_STL@BUF,2,31,55,STL,BUF,1,10,49,(1:55) (Shotgun) S.Bradford pass incomplete short middle to S.Jackson. Dropped receiver at BUF 46 crossing from left.,0,3,2012 -20121209_STL@BUF,2,31,51,STL,BUF,2,10,49,(1:51) (Shotgun) S.Bradford pass short right to A.Pettis to BUF 44 for 5 yards (B.Scott). Caught at BUF 44.,0,3,2012 -20121209_STL@BUF,2,31,27,STL,BUF,3,5,44,(1:27) (No Huddle Shotgun) S.Bradford pass intended for L.Kendricks INTERCEPTED by S.Gilmore (B.Scott) at BUF 38. S.Gilmore for 62 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on BUF-K.Moore Offensive Holding 10 yards enforced at SL 39.,0,3,2012 -20121209_STL@BUF,2,31,15,BUF,STL,1,10,49,(1:15) R.Fitzpatrick pass to F.Jackson to SL 40 for 9 yards (E.Sims).,3,0,2012 -20121209_STL@BUF,2,31,6,BUF,STL,2,1,40,(1:06) R.Fitzpatrick pass to T.Graham pushed ob at SL 34 for 6 yards (T.Johnson).,3,0,2012 -20121209_STL@BUF,2,31,2,BUF,STL,1,10,34,(1:02) (No Huddle Shotgun) R.Fitzpatrick pass short middle to F.Jackson to SL 34 for no gain (J.Laurinaitis).,3,0,2012 -20121209_STL@BUF,2,30,38,BUF,STL,2,10,34,(:38) R.Fitzpatrick pass short middle to S.Chandler to SL 23 for 11 yards.,3,0,2012 -20121209_STL@BUF,2,30,32,BUF,STL,1,10,23,(:32) F.Jackson up the middle to SL 24 for -1 yards (T.Johnson).,3,0,2012 -20121209_STL@BUF,2,30,27,BUF,STL,2,11,24,(:27) (Shotgun) R.Fitzpatrick pass short left to F.Jackson to SL 22 for 2 yards (Q.Mikell; J.Dunbar). Screen caught at SL 27.,3,0,2012 -20121209_STL@BUF,2,30,10,BUF,STL,3,9,22,(:10) R.Lindell 40 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,3,0,2012 -20121209_STL@BUF,2,30,10,BUF,STL,,,22,R.Lindell kicks 61 yards from BUF 35 to SL 4. C.Givens to SL 29 for 25 yards (A.Moats).,6,0,2012 -20121209_STL@BUF,3,30,0,BUF,STL,,,22,R.Lindell kicks 63 yards from BUF 35 to SL 2. C.Givens to SL 30 for 28 yards (A.Moats).,6,0,2012 -20121209_STL@BUF,3,29,52,STL,BUF,1,10,70,(14:52) S.Bradford pass short right to A.Pettis pushed ob at SL 34 for 4 yards (L.McKelvin). Caught near sideline at SL 32.,0,6,2012 -20121209_STL@BUF,3,29,22,STL,BUF,2,6,66,(14:22) S.Bradford pass incomplete short right to B.Gibson. Overthrown receiver along sideline at SL 47.,0,6,2012 -20121209_STL@BUF,3,29,16,STL,BUF,3,6,66,(14:16) (Shotgun) S.Bradford pass short middle to B.Gibson to SL 39 for 5 yards (R.Brooks). Caught at SL 39 crossing from left. PENALTY on BUF-S.Gilmore Illegal Use of Hands 5 yards enforced at SL 34 - No Play.,0,6,2012 -20121209_STL@BUF,3,28,52,STL,BUF,1,10,61,(13:52) S.Jackson up the middle to SL 41 for 2 yards (Ky.Williams K.Moore).,0,6,2012 -20121209_STL@BUF,3,28,7,STL,BUF,2,8,59,(13:07) S.Jackson right tackle to SL 44 for 3 yards (K.Moore N.Barnett).,0,6,2012 -20121209_STL@BUF,3,27,25,STL,BUF,3,5,56,(12:25) (Shotgun) S.Bradford pass short right to B.Quick to 50 for 6 yards (J.Rogers). Caught at SL 49 crossing from middle.,0,6,2012 -20121209_STL@BUF,3,26,49,STL,BUF,1,10,50,(11:49) D.Richardson right tackle to BUF 48 for 2 yards (N.Barnett). BUF-M.Dareus was injured during the play. M.Dareus walks off.,0,6,2012 -20121209_STL@BUF,3,26,17,STL,BUF,2,8,48,(11:17) S.Bradford scrambles left guard to BUF 47 for 1 yard (A.Carrington).,0,6,2012 -20121209_STL@BUF,3,25,28,STL,BUF,3,7,47,(10:28) (Shotgun) S.Bradford pass short right to B.Gibson to BUF 25 for 22 yards (B.Scott). Caught at BUF 39 crossing to middle.,0,6,2012 -20121209_STL@BUF,3,24,44,STL,BUF,1,10,25,(9:44) S.Bradford pass short left to B.Gibson to BUF 9 for 16 yards (R.Brooks). Caught near sideline at BUF 12.,0,6,2012 -20121209_STL@BUF,3,24,44,STL,BUF,1,9,9,(9:44) S.Bradford pass short right to C.Givens pushed ob at BUF 1 for 8 yards (S.Gilmore). Swing pass caught at BUF 11.,0,6,2012 -20121209_STL@BUF,3,23,41,STL,BUF,2,1,1,(8:41) S.Jackson right guard for 1 yard TOUCHDOWN.,0,6,2012 -20121209_STL@BUF,3,23,41,STL,BUF,,,1,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,6,2012 -20121209_STL@BUF,3,23,41,STL,BUF,,,1,G.Zuerlein kicks 67 yards from SL 35 to BUF -2. L.McKelvin to BUF 25 for 27 yards (Q.Mikell).,7,6,2012 -20121209_STL@BUF,3,23,30,BUF,STL,1,10,75,(8:30) C.Spiller up the middle to BUF 38 for 13 yards (C.Dahl J.Dunbar).,6,7,2012 -20121209_STL@BUF,3,22,48,BUF,STL,1,10,62,(7:48) R.Fitzpatrick pass short right to St.Johnson pushed ob at BUF 49 for 11 yards (Q.Mikell). Screen pass caught at BUF 37.,6,7,2012 -20121209_STL@BUF,3,22,22,BUF,STL,1,10,51,(7:22) C.Spiller left tackle pushed ob at SL 38 for 13 yards (D.Stewart).,6,7,2012 -20121209_STL@BUF,3,21,47,BUF,STL,1,10,38,(6:47) R.Fitzpatrick sacked at 50 for -12 yards. FUMBLES and recovers at SL 45. R.Fitzpatrick to SL 45 for no gain (Q.Mikell).,6,7,2012 -20121209_STL@BUF,3,21,0,BUF,STL,2,17,45,(6:00) (Shotgun) R.Fitzpatrick pass short left to T.Graham pushed ob at SL 34 for 11 yards (C.Finnegan). Caught along sideline at SL 40.,6,7,2012 -20121209_STL@BUF,3,20,26,BUF,STL,3,6,34,(5:26) (Shotgun) R.Fitzpatrick pass short right to F.Jackson to SL 27 for 7 yards (Q.Mikell). Out-pattern caught at SL 35.,6,7,2012 -20121209_STL@BUF,3,19,42,BUF,STL,1,10,27,(4:42) (Shotgun) R.Fitzpatrick pass short left to T.Graham to SL 11 for 16 yards (Q.Mikell J.Jenkins). Caught near sideline at SL 22.,6,7,2012 -20121209_STL@BUF,3,18,58,BUF,STL,1,10,11,(3:58) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to SL 2 for 9 yards (J.Dunbar M.Brockers). WR screen caught at SL 11. Penalty on SL-J.Dunbar Defensive Offside declined.,6,7,2012 -20121209_STL@BUF,3,18,31,BUF,STL,2,1,2,(3:31) R.Fitzpatrick pass short right to L.Smith for 2 yards TOUCHDOWN. Caught 5 yds. into end zone.,6,7,2012 -20121209_STL@BUF,3,18,31,BUF,STL,,,2,(Kick formation) TWO-POINT CONVERSION ATTEMPT. R.Lindell pass is incomplete. ATTEMPT FAILS. Bobbled snap kicker picked up ball to throw. Penalty on BUF-C.Glenn Illegal Touch Pass declined.,6,7,2012 -20121209_STL@BUF,3,18,31,BUF,STL,,,2,R.Lindell kicks 61 yards from BUF 35 to SL 4. C.Givens to SL 23 for 19 yards (K.Sheppard).,12,7,2012 -20121209_STL@BUF,3,18,20,STL,BUF,1,10,77,(3:20) S.Bradford pass short left to L.Kendricks to SL 34 for 11 yards (N.Barnett). Caught near sideline at SL 27.,7,12,2012 -20121209_STL@BUF,3,17,44,STL,BUF,1,10,66,(2:44) S.Jackson left guard to SL 36 for 2 yards (K.Sheppard Ky.Williams). SL-R.Saffold was injured during the play. R.Saffold walks off.,7,12,2012 -20121209_STL@BUF,3,17,26,STL,BUF,2,8,64,(2:26) S.Bradford pass incomplete short right to L.Kendricks. Underthrown receiver near sideline at SL 35. Pressure on QB: M.Williams.,7,12,2012 -20121209_STL@BUF,3,17,8,STL,BUF,3,8,64,(2:08) (Shotgun) S.Bradford scrambles left tackle to SL 47 for 11 yards (L.McKelvin).,7,12,2012 -20121209_STL@BUF,3,16,20,STL,BUF,1,10,53,(1:20) S.Bradford pass incomplete deep left to L.Kendricks. Overthrown receiver near sideline at BUF 27.,7,12,2012 -20121209_STL@BUF,3,16,14,STL,BUF,2,10,53,(1:14) S.Jackson up the middle to SL 47 for no gain (Sp.Johnson; M.Dareus).,7,12,2012 -20121209_STL@BUF,3,15,27,STL,BUF,3,10,53,(:27) (Shotgun) S.Bradford pass short middle to C.Givens to BUF 49 for 4 yards (L.McKelvin J.Byrd). Screen pass caught at SL 47 crossing from left.,7,12,2012 -20121209_STL@BUF,4,15,0,STL,BUF,4,6,64,(15:00) (Punt formation) J.Hekker FUMBLES (Aborted) at SL 36 and recovers at SL 36. J.Hekker punts 0 yards to BUF 49 downed by SL.,7,12,2012 -20121209_STL@BUF,4,14,46,BUF,STL,1,10,51,(14:46) F.Jackson left guard to SL 37 for 14 yards (D.Stewart).,12,7,2012 -20121209_STL@BUF,4,14,0,BUF,STL,1,10,37,(14:00) F.Jackson up the middle to SL 38 for -1 yards (R.Quinn C.Long).,12,7,2012 -20121209_STL@BUF,4,13,16,BUF,STL,2,11,38,(13:16) R.Fitzpatrick scrambles up the middle to SL 37 for 1 yard (M.Brockers; C.Long).,12,7,2012 -20121209_STL@BUF,4,12,34,BUF,STL,3,10,37,(12:34) R.Fitzpatrick scrambles up the middle to SL 34 for 3 yards (E.Sims).,12,7,2012 -20121209_STL@BUF,4,11,52,BUF,STL,4,7,34,(11:52) S.Powell punts 29 yards to SL 5 Center-G.Sanborn downed by BUF-M.Silva. Kept in play by R.Martin. PENALTY on SL-J.Jenkins Defensive Holding 2 yards enforced between downs.,12,7,2012 -20121209_STL@BUF,4,11,41,STL,BUF,1,12,97,(11:41) S.Jackson up the middle to SL 4 for 1 yard (K.Sheppard; M.Williams).,7,12,2012 -20121209_STL@BUF,4,10,57,STL,BUF,2,11,96,(10:57) (Shotgun) S.Bradford pass deep left to B.Gibson ran ob at SL 28 for 24 yards. Caught along sideline at SL 24.,7,12,2012 -20121209_STL@BUF,4,10,34,STL,BUF,1,10,72,(10:34) D.Richardson up the middle to SL 28 for no gain (J.Byrd).,7,12,2012 -20121209_STL@BUF,4,9,59,STL,BUF,2,10,72,(9:59) (Shotgun) S.Bradford pass incomplete short left to C.Givens. Overthrown receiver in flat at SL 38.,7,12,2012 -20121209_STL@BUF,4,9,55,STL,BUF,3,10,72,(9:55) (Shotgun) S.Bradford pass short middle to A.Pettis to SL 37 for 9 yards (G.Wilson). Post-pattern caught at SL 37.,7,12,2012 -20121209_STL@BUF,4,9,19,STL,BUF,4,1,63,(9:19) J.Hekker punts 50 yards to BUF 13 Center-J.McQuaide. L.McKelvin to BUF 30 for 17 yards (C.Harkey).,7,12,2012 -20121209_STL@BUF,4,9,5,BUF,STL,1,10,70,(9:05) C.Spiller left tackle to BUF 31 for 1 yard (J.Jenkins).,12,7,2012 -20121209_STL@BUF,4,8,18,BUF,STL,2,9,69,(8:18) R.Fitzpatrick pass short right to S.Chandler to BUF 34 for 3 yards (C.Finnegan). Out-pattern caught at BUF 28.,12,7,2012 -20121209_STL@BUF,4,7,32,BUF,STL,3,6,66,(7:32) (Shotgun) R.Fitzpatrick pass incomplete short middle to St.Johnson. Thrown wide of receiver at BUF 40.,12,7,2012 -20121209_STL@BUF,4,7,28,BUF,STL,4,6,66,(7:28) S.Powell punts 40 yards to SL 26 Center-G.Sanborn. A.Pettis to SL 26 for no gain (G.Sanborn).,12,7,2012 -20121209_STL@BUF,4,7,17,STL,BUF,1,10,74,(7:17) S.Jackson left tackle to SL 30 for 4 yards (K.Moore; D.Searcy). SL-R.Saffold was injured during the play. R.Saffold assisted off.,7,12,2012 -20121209_STL@BUF,4,6,46,STL,BUF,2,6,70,(6:46) S.Bradford pass incomplete deep middle to C.Givens (S.Gilmore). Receiver and coverage at BUF 25.,7,12,2012 -20121209_STL@BUF,4,6,39,STL,BUF,3,6,70,(6:39) (Shotgun) S.Bradford pass incomplete deep left to C.Givens [M.Dareus]. Overthrown receiver along sideline at 50.,7,12,2012 -20121209_STL@BUF,4,6,34,STL,BUF,4,6,70,(6:34) J.Hekker punts 46 yards to BUF 24 Center-J.McQuaide. L.McKelvin to BUF 43 for 19 yards (J.Dunbar).,7,12,2012 -20121209_STL@BUF,4,6,21,BUF,STL,1,10,57,(6:21) F.Jackson up the middle to BUF 42 for -1 yards (J.Cudjo).,12,7,2012 -20121209_STL@BUF,4,5,38,BUF,STL,2,11,58,(5:38) F.Jackson up the middle to BUF 44 for 2 yards (M.Brockers). BUF-F.Jackson was injured during the play. F.Jackson assisted off.,12,7,2012 -20121209_STL@BUF,4,5,10,BUF,STL,3,9,56,(5:10) (Shotgun) R.Fitzpatrick pass incomplete deep middle to T.Graham. Overthrown receiver at SL 10.,12,7,2012 -20121209_STL@BUF,4,5,3,BUF,STL,4,9,56,(5:03) S.Powell punts 40 yards to SL 16 Center-G.Sanborn fair catch by A.Pettis.,12,7,2012 -20121209_STL@BUF,4,4,55,STL,BUF,1,10,84,(4:55) (Shotgun) S.Bradford pass incomplete short middle to M.Mulligan (K.Sheppard). Receiver and coverage at SL 22.,7,12,2012 -20121209_STL@BUF,4,4,51,STL,BUF,2,10,84,(4:51) S.Jackson left tackle to SL 25 for 9 yards (N.Barnett).,7,12,2012 -20121209_STL@BUF,4,4,7,STL,BUF,3,1,75,(4:07) S.Jackson left tackle to SL 32 for 7 yards (L.McKelvin; K.Sheppard).,7,12,2012 -20121209_STL@BUF,4,3,23,STL,BUF,1,10,68,(3:23) S.Bradford pass incomplete deep left to B.Gibson. Off receiver's hands along sideline at 50.,7,12,2012 -20121209_STL@BUF,4,3,17,STL,BUF,2,10,68,(3:17) (Shotgun) S.Bradford pass deep middle to L.Kendricks to BUF 46 for 22 yards (B.Scott). Post-pattern caught at BUF 49.,7,12,2012 -20121209_STL@BUF,4,2,41,STL,BUF,1,10,46,(2:41) S.Jackson up the middle to BUF 46 for no gain (G.Wilson; S.Merriman).,7,12,2012 -20121209_STL@BUF,4,2,4,STL,BUF,2,10,46,(2:04) (Shotgun) S.Bradford pass short right to S.Jackson to BUF 37 for 9 yards (N.Barnett). Caught at BUF 42 crossing from middle.,7,12,2012 -20121209_STL@BUF,4,1,56,STL,BUF,3,1,37,(1:56) S.Bradford pass incomplete short middle to C.Givens (G.Wilson). Nearly intercepted at BUF 33.,7,12,2012 -20121209_STL@BUF,4,1,53,STL,BUF,4,1,37,(1:53) S.Bradford pass short middle to A.Pettis to BUF 28 for 9 yards (J.Rogers). Caught at BUF 29 slanting from left.,7,12,2012 -20121209_STL@BUF,4,1,17,STL,BUF,1,10,28,(1:17) (Shotgun) S.Bradford pass incomplete deep right to C.Givens. Overthrown receiver in front corner of end zone.,7,12,2012 -20121209_STL@BUF,4,1,11,STL,BUF,2,10,28,(1:11) (Shotgun) S.Bradford pass incomplete short left to L.Kendricks (G.Wilson). Receiver and coverage near sideline at BUF 17.,7,12,2012 -20121209_STL@BUF,4,1,7,STL,BUF,3,10,28,(1:07) (Shotgun) S.Bradford pass short left to B.Gibson ran ob at BUF 13 for 15 yards. Caught along sideline at BUF 13.,7,12,2012 -20121209_STL@BUF,4,0,58,STL,BUF,1,10,13,(:58) (Shotgun) S.Bradford pass incomplete short middle to L.Kendricks (M.Dareus). Pass batted at line.,7,12,2012 -20121209_STL@BUF,4,0,54,STL,BUF,2,10,13,(:54) (Shotgun) S.Bradford pass short middle to B.Gibson for 13 yards TOUCHDOWN. Caught 8 yds. into end zone slanting from left.,7,12,2012 -20121209_STL@BUF,4,0,54,STL,BUF,,,13,(Pass formation) TWO-POINT CONVERSION ATTEMPT. S.Bradford pass to C.Givens is complete. ATTEMPT SUCCEEDS.,7,12,2012 -20121209_STL@BUF,4,0,54,STL,BUF,,,13,G.Zuerlein kicks 64 yards from SL 35 to BUF 1. B.Smith to BUF 23 for 22 yards (D.Stewart).,15,12,2012 -20121209_STL@BUF,4,0,42,BUF,STL,1,10,77,(:42) (Shotgun) R.Fitzpatrick pass deep right to S.Chandler to BUF 42 for 19 yards (D.Stewart). Caught at BUF 41 slanting from middle.,12,15,2012 -20121209_STL@BUF,4,0,34,BUF,STL,1,10,58,(:34) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham (J.Jenkins). Receiver and coverage at SL 20.,12,15,2012 -20121209_STL@BUF,4,0,28,BUF,STL,2,10,58,(:28) (Shotgun) R.Fitzpatrick sacked at BUF 33 for -9 yards (R.Quinn).,12,15,2012 -20121209_STL@BUF,4,0,21,BUF,STL,3,19,67,(:21) (Shotgun) R.Fitzpatrick pass short right intended for T.Graham INTERCEPTED by J.Dunbar [W.Hayes] at BUF 48. J.Dunbar to BUF 27 for 21 yards (S.Chandler).,12,15,2012 -20121209_STL@BUF,4,0,12,STL,BUF,1,10,27,(:12) S.Bradford kneels to BUF 28 for -1 yards.,15,12,2012 -20121209_STL@BUF,4,0,12,STL,BUF,,,27,                      ,15,12,2012 -20121209_ATL@CAR,1,0,0,ATL,CAR,,,27,M.Bosher kicks 68 yards from ATL 35 to CAR -3. A.Smith to CAR 23 for 26 yards (K.Cone).,0,0,2012 -20121209_ATL@CAR,1,59,53,CAR,ATL,1,10,77,(14:53) (Shotgun) C.Newton pass short right to G.Olsen to CAR 27 for 4 yards (R.McClain).,0,0,2012 -20121209_ATL@CAR,1,59,14,CAR,ATL,2,6,73,(14:14) (Shotgun) D.Williams right tackle to CAR 31 for 4 yards (A.Dent).,0,0,2012 -20121209_ATL@CAR,1,58,33,CAR,ATL,3,2,69,(13:33) (Shotgun) C.Newton pass short right to S.Smith to CAR 41 for 10 yards (R.McClain).,0,0,2012 -20121209_ATL@CAR,1,57,59,CAR,ATL,1,10,59,(12:59) C.Newton pass short right to G.Barnidge to CAR 47 for 6 yards (R.McClain).,0,0,2012 -20121209_ATL@CAR,1,57,16,CAR,ATL,2,4,53,(12:16) D.Williams left tackle to ATL 47 for 6 yards (S.Weatherspoon).,0,0,2012 -20121209_ATL@CAR,1,56,35,CAR,ATL,1,10,47,(11:35) (Shotgun) C.Newton scrambles up the middle to ATL 41 for 6 yards (S.Nicholas).,0,0,2012 -20121209_ATL@CAR,1,55,50,CAR,ATL,2,4,41,(10:50) J.Adams left end to ATL 38 for 3 yards (J.Abraham).,0,0,2012 -20121209_ATL@CAR,1,55,8,CAR,ATL,3,1,38,(10:08) M.Tolbert left guard to ATL 31 for 7 yards (C.Hope; S.Weatherspoon).,0,0,2012 -20121209_ATL@CAR,1,54,25,CAR,ATL,1,10,31,(9:25) (Shotgun) D.Williams up the middle to ATL 28 for 3 yards (C.Peters).,0,0,2012 -20121209_ATL@CAR,1,53,44,CAR,ATL,2,7,28,(8:44) (Shotgun) C.Newton pass short left to M.Tolbert to ATL 25 for 3 yards (K.Biermann).,0,0,2012 -20121209_ATL@CAR,1,52,55,CAR,ATL,3,4,25,(7:55) (Shotgun) C.Newton pass deep left to G.Olsen for 25 yards TOUCHDOWN.,0,0,2012 -20121209_ATL@CAR,1,52,55,CAR,ATL,,,25,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20121209_ATL@CAR,1,52,55,CAR,ATL,,,25,G.Gano kicks 69 yards from CAR 35 to ATL -4. Jz. Rodgers to ATL 17 for 21 yards (J.Williams; G.Barnidge).,7,0,2012 -20121209_ATL@CAR,1,52,41,ATL,CAR,1,10,83,(7:41) M.Turner up the middle to ATL 20 for 3 yards (G.Hardy; L.Kuechly).,0,7,2012 -20121209_ATL@CAR,1,52,6,ATL,CAR,2,7,80,(7:06) M.Ryan pass short left to T.Gonzalez to ATL 28 for 8 yards (G.Hardy; J.Phillips).,0,7,2012 -20121209_ATL@CAR,1,51,32,ATL,CAR,1,10,72,(6:32) M.Ryan sacked at ATL 20 for -8 yards (F.Kearse).,0,7,2012 -20121209_ATL@CAR,1,50,57,ATL,CAR,2,18,80,(5:57) (Shotgun) M.Ryan pass incomplete short left to A.Smith.,0,7,2012 -20121209_ATL@CAR,1,50,52,ATL,CAR,3,18,80,(5:52) (Shotgun) M.Ryan pass short right to DJ.Davis to ATL 26 for 6 yards (C.Munnerlyn).,0,7,2012 -20121209_ATL@CAR,1,50,52,ATL,CAR,4,12,74,(5:52) M.Bosher punts 52 yards to CAR 22 Center-J.Harris out of bounds.,0,7,2012 -20121209_ATL@CAR,1,50,12,CAR,ATL,1,10,78,(5:12) (Shotgun) C.Newton pass short left to L.Murphy to CAR 30 for 8 yards (D.Robinson).,7,0,2012 -20121209_ATL@CAR,1,49,33,CAR,ATL,2,2,70,(4:33) (Shotgun) D.Williams up the middle to CAR 35 for 5 yards (S.Nicholas; S.Weatherspoon).,7,0,2012 -20121209_ATL@CAR,1,48,53,CAR,ATL,1,10,65,(3:53) D.Williams left guard to CAR 40 for 5 yards (C.Peters).,7,0,2012 -20121209_ATL@CAR,1,48,12,CAR,ATL,2,5,60,(3:12) (Shotgun) D.Williams up the middle to ATL 47 for 13 yards (A.Dent; S.Weatherspoon).,7,0,2012 -20121209_ATL@CAR,1,47,28,CAR,ATL,1,10,47,(2:28) M.Tolbert left tackle to ATL 47 for no gain (P.Jerry; A.Dent).,7,0,2012 -20121209_ATL@CAR,1,46,45,CAR,ATL,2,10,47,(1:45) (Shotgun) C.Newton pass short right to M.Tolbert to ATL 40 for 7 yards (C.Owens; S.Nicholas).,7,0,2012 -20121209_ATL@CAR,1,45,58,CAR,ATL,3,3,40,(:58) (Shotgun) C.Newton up the middle to ATL 38 for 2 yards (T.DeCoud).,7,0,2012 -20121209_ATL@CAR,1,45,58,CAR,ATL,4,1,38,(:58) (Shotgun) C.Newton left guard to ATL 36 for 2 yards (A.Dent).,7,0,2012 -20121209_ATL@CAR,2,45,0,CAR,ATL,1,10,36,(15:00) (Shotgun) C.Newton pass short right to L.Murphy to ATL 37 for -1 yards (R.McClain).,7,0,2012 -20121209_ATL@CAR,2,44,15,CAR,ATL,2,11,37,(14:15) (Shotgun) C.Newton pass incomplete short right to L.Murphy.,7,0,2012 -20121209_ATL@CAR,2,44,11,CAR,ATL,3,11,37,(14:11) (Shotgun) C.Newton scrambles right end to ATL 23 for 14 yards (R.McClain).,7,0,2012 -20121209_ATL@CAR,2,43,17,CAR,ATL,1,10,23,(13:17) D.Williams left end to ATL 23 for no gain (A.Dent).,7,0,2012 -20121209_ATL@CAR,2,42,33,CAR,ATL,2,10,23,(12:33) (Shotgun) C.Newton pass short right to L.Murphy to ATL 7 for 16 yards (S.Nicholas; S.Weatherspoon).,7,0,2012 -20121209_ATL@CAR,2,41,52,CAR,ATL,1,7,7,(11:52) D.Williams right guard to ATL 6 for 1 yard (S.Weatherspoon).,7,0,2012 -20121209_ATL@CAR,2,41,9,CAR,ATL,2,6,6,(11:09) (Shotgun) C.Newton pass incomplete short left to L.Murphy.,7,0,2012 -20121209_ATL@CAR,2,41,3,CAR,ATL,3,6,6,(11:03) (Shotgun) C.Newton pass incomplete short left to S.Smith.,7,0,2012 -20121209_ATL@CAR,2,40,58,CAR,ATL,4,6,6,(10:58) G.Gano 24 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,7,0,2012 -20121209_ATL@CAR,2,40,58,CAR,ATL,,,6,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,10,0,2012 -20121209_ATL@CAR,2,40,55,ATL,CAR,1,10,80,(10:55) M.Turner up the middle to ATL 20 for no gain (L.Kuechly).,0,10,2012 -20121209_ATL@CAR,2,40,18,ATL,CAR,2,10,80,(10:18) (Shotgun) M.Ryan pass short left to Jz. Rodgers to ATL 25 for 5 yards (L.Kuechly).,0,10,2012 -20121209_ATL@CAR,2,39,33,ATL,CAR,3,5,75,(9:33) M.Ryan pass short right to M.Palmer to ATL 29 for 4 yards (T.Davis).,0,10,2012 -20121209_ATL@CAR,2,38,52,ATL,CAR,4,1,71,(8:52) M.Bosher punts 46 yards to CAR 25 Center-J.Harris fair catch by J.Adams.,0,10,2012 -20121209_ATL@CAR,2,38,43,CAR,ATL,1,10,75,(8:43) C.Newton pass deep middle to S.Smith to CAR 45 for 20 yards (D.Robinson; A.Dent).,10,0,2012 -20121209_ATL@CAR,2,38,2,CAR,ATL,1,10,55,(8:02) C.Newton pass short left to S.Smith to ATL 40 for 15 yards (D.Robinson). ATL-J.Babineaux was injured during the play.,10,0,2012 -20121209_ATL@CAR,2,37,18,CAR,ATL,1,10,40,(7:18) PENALTY on CAR-G.Olsen False Start 5 yards enforced at ATL 40 - No Play.,10,0,2012 -20121209_ATL@CAR,2,36,52,CAR,ATL,1,15,45,(6:52) (Shotgun) C.Newton pass short right to S.Smith to ATL 23 for 22 yards (R.McClain).,10,0,2012 -20121209_ATL@CAR,2,36,17,CAR,ATL,1,10,23,(6:17) C.Newton sacked at ATL 30 for -7 yards (V.Walker).,10,0,2012 -20121209_ATL@CAR,2,35,47,CAR,ATL,2,17,30,(5:47) (Shotgun) C.Newton pass short left to A.Edwards to ATL 23 for 7 yards (R.McClain) [J.Abraham].,10,0,2012 -20121209_ATL@CAR,2,35,6,CAR,ATL,3,10,23,(5:06) (Shotgun) C.Newton pass incomplete deep right to S.Smith [S.Nicholas].,10,0,2012 -20121209_ATL@CAR,2,35,2,CAR,ATL,4,10,23,(5:02) G.Gano 41 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,10,0,2012 -20121209_ATL@CAR,2,35,2,CAR,ATL,,,23,G.Gano kicks 66 yards from CAR 35 to ATL -1. Jz. Rodgers to ATL 20 for 21 yards (J.Williams).,13,0,2012 -20121209_ATL@CAR,2,34,52,ATL,CAR,1,10,80,(4:52) (Shotgun) M.Ryan pass short left to Jz. Rodgers to ATL 29 for 9 yards (H.Nakamura; F.Kearse).,0,13,2012 -20121209_ATL@CAR,2,34,28,ATL,CAR,2,1,71,(4:28) M.Ryan pass short left to J.Jones to ATL 37 for 8 yards (J.Norman).,0,13,2012 -20121209_ATL@CAR,2,34,11,ATL,CAR,1,10,63,(4:11) (No Huddle) M.Ryan pass incomplete short left to J.Jones.,0,13,2012 -20121209_ATL@CAR,2,34,7,ATL,CAR,2,10,63,(4:07) (No Huddle) M.Ryan pass incomplete short middle to Jz. Rodgers.,0,13,2012 -20121209_ATL@CAR,2,34,2,ATL,CAR,3,10,63,(4:02) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 37 for no gain (D.Campbell).,0,13,2012 -20121209_ATL@CAR,2,33,44,ATL,CAR,4,10,63,(3:44) M.Bosher punts 35 yards to CAR 28 Center-J.Harris out of bounds.,0,13,2012 -20121209_ATL@CAR,2,33,35,CAR,ATL,1,10,72,(3:35) D.Williams left end to CAR 29 for 1 yard (D.Robinson).,13,0,2012 -20121209_ATL@CAR,2,32,56,CAR,ATL,2,9,71,(2:56) C.Newton pass short middle to D.Williams to CAR 32 for 3 yards (S.Nicholas).,13,0,2012 -20121209_ATL@CAR,2,32,13,CAR,ATL,3,6,68,(2:13) (Shotgun) C.Newton scrambles right end to ATL 47 for 21 yards (D.Robinson).,13,0,2012 -20121209_ATL@CAR,2,32,0,CAR,ATL,1,10,47,(2:00) (Shotgun) C.Newton pass incomplete deep left to L.Murphy.,13,0,2012 -20121209_ATL@CAR,2,31,53,CAR,ATL,2,10,47,(1:53) (Shotgun) C.Newton pass incomplete deep right to S.Smith (C.Owens).,13,0,2012 -20121209_ATL@CAR,2,31,45,CAR,ATL,3,10,47,(1:45) (Shotgun) C.Newton pass deep right to S.Smith pushed ob at ATL 28 for 19 yards (C.Owens).,13,0,2012 -20121209_ATL@CAR,2,31,37,CAR,ATL,1,10,28,(1:37) (No Huddle) M.Tolbert right guard to ATL 27 for 1 yard (S.Weatherspoon; S.Nicholas).,13,0,2012 -20121209_ATL@CAR,2,31,2,CAR,ATL,2,9,27,(1:02) (Shotgun) C.Newton pass short right to G.Olsen to ATL 19 for 8 yards.,13,0,2012 -20121209_ATL@CAR,2,30,57,CAR,ATL,3,1,19,(:57) (No Huddle Shotgun) D.Williams up the middle to ATL 14 for 5 yards (T.DeCoud; C.Owens).,13,0,2012 -20121209_ATL@CAR,2,30,36,CAR,ATL,1,10,14,(:36) (No Huddle Shotgun) PENALTY on CAR-B.Bell False Start 5 yards enforced at ATL 14 - No Play.,13,0,2012 -20121209_ATL@CAR,2,30,36,CAR,ATL,1,15,19,(:36) (Shotgun) C.Newton pass incomplete deep right to L.Murphy.,13,0,2012 -20121209_ATL@CAR,2,30,33,CAR,ATL,2,15,19,(:33) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,13,0,2012 -20121209_ATL@CAR,2,30,24,CAR,ATL,3,15,19,(:24) (Shotgun) C.Newton pass short left to L.Murphy to ATL 13 for 6 yards (D.Robinson; R.McClain).,13,0,2012 -20121209_ATL@CAR,2,30,3,CAR,ATL,4,9,13,(:03) G.Gano 31 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,13,0,2012 -20121209_ATL@CAR,3,30,0,CAR,ATL,,,13,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,16,0,2012 -20121209_ATL@CAR,3,30,0,ATL,CAR,1,10,80,(15:00) (Shotgun) M.Ryan pass short middle to R.White to ATL 36 for 16 yards (L.Kuechly).,0,16,2012 -20121209_ATL@CAR,3,29,33,ATL,CAR,1,10,64,(14:33) (No Huddle Shotgun) M.Ryan pass short right to R.White to ATL 48 for 12 yards (J.Dockery).,0,16,2012 -20121209_ATL@CAR,3,29,13,ATL,CAR,1,10,52,(14:13) (No Huddle) M.Turner up the middle to CAR 49 for 3 yards (C.Johnson; G.Hardy).,0,16,2012 -20121209_ATL@CAR,3,28,25,ATL,CAR,2,7,49,(13:25) (No Huddle Shotgun) M.Ryan pass incomplete short left to J.Jones.,0,16,2012 -20121209_ATL@CAR,3,28,22,ATL,CAR,3,7,49,(13:22) (No Huddle Shotgun) M.Ryan pass incomplete deep left to H.Douglas [G.Hardy].,0,16,2012 -20121209_ATL@CAR,3,28,16,ATL,CAR,4,7,49,(13:16) M.Bosher punts 35 yards to CAR 14 Center-J.Harris fair catch by J.Adams.,0,16,2012 -20121209_ATL@CAR,3,28,9,CAR,ATL,1,10,86,(13:09) C.Newton pass short right to M.Tolbert pushed ob at CAR 22 for 8 yards (A.Dent).,16,0,2012 -20121209_ATL@CAR,3,27,38,CAR,ATL,2,2,78,(12:38) D.Williams left tackle to CAR 23 for 1 yard (S.Nicholas).,16,0,2012 -20121209_ATL@CAR,3,26,56,CAR,ATL,3,1,77,(11:56) M.Tolbert left guard to CAR 28 for 5 yards (T.DeCoud; A.Dent).,16,0,2012 -20121209_ATL@CAR,3,26,13,CAR,ATL,1,10,72,(11:13) (Shotgun) C.Newton left end for 72 yards TOUCHDOWN.,16,0,2012 -20121209_ATL@CAR,3,26,13,CAR,ATL,,,72,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,16,0,2012 -20121209_ATL@CAR,3,26,13,CAR,ATL,,,72,G.Gano kicks 56 yards from CAR 35 to ATL 9. J.Snelling to ATL 16 for 7 yards (A.Smith).,23,0,2012 -20121209_ATL@CAR,3,25,55,ATL,CAR,1,10,84,(10:55) (Shotgun) Jz. Rodgers right tackle to ATL 22 for 6 yards (S.Fua).,0,23,2012 -20121209_ATL@CAR,3,25,27,ATL,CAR,2,4,78,(10:27) (No Huddle Shotgun) M.Ryan pass short left to J.Jones to ATL 31 for 9 yards (J.Thomas).,0,23,2012 -20121209_ATL@CAR,3,24,46,ATL,CAR,1,10,69,(9:46) (No Huddle Shotgun) Jz. Rodgers right end to ATL 36 for 5 yards (J.Dockery; T.Davis).,0,23,2012 -20121209_ATL@CAR,3,24,8,ATL,CAR,2,5,64,(9:08) (No Huddle) M.Ryan pass short middle to T.Gonzalez to CAR 48 for 16 yards (L.Kuechly; T.Davis).,0,23,2012 -20121209_ATL@CAR,3,23,22,ATL,CAR,1,10,48,(8:22) (No Huddle Shotgun) M.Ryan pass short middle to R.White to CAR 33 for 15 yards (J.Dockery).,0,23,2012 -20121209_ATL@CAR,3,22,49,ATL,CAR,1,10,33,(7:49) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to CAR 25 for 8 yards (L.Kuechly).,0,23,2012 -20121209_ATL@CAR,3,22,24,ATL,CAR,2,2,25,(7:24) (No Huddle) Jz. Rodgers up the middle to CAR 19 for 6 yards (L.Kuechly).,0,23,2012 -20121209_ATL@CAR,3,21,55,ATL,CAR,1,10,19,(6:55) (No Huddle Shotgun) M.Ryan pass short middle to T.Gonzalez to CAR 13 for 6 yards (T.Davis).,0,23,2012 -20121209_ATL@CAR,3,21,17,ATL,CAR,2,4,13,(6:17) (No Huddle Shotgun) M.Ryan pass incomplete short right to J.Snelling.,0,23,2012 -20121209_ATL@CAR,3,21,12,ATL,CAR,3,4,13,(6:12) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez.,0,23,2012 -20121209_ATL@CAR,3,21,7,ATL,CAR,4,4,13,(6:07) (Shotgun) M.Ryan pass short right to J.Snelling to CAR 8 for 5 yards (L.Kuechly).,0,23,2012 -20121209_ATL@CAR,3,20,26,ATL,CAR,1,8,8,(5:26) Jz. Rodgers up the middle to CAR 4 for 4 yards (L.Kuechly).,0,23,2012 -20121209_ATL@CAR,3,19,53,ATL,CAR,2,4,4,(4:53) M.Ryan pass left to R.White for 4 yards TOUCHDOWN.,0,23,2012 -20121209_ATL@CAR,3,19,53,ATL,CAR,,,4,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,23,2012 -20121209_ATL@CAR,3,19,53,ATL,CAR,,,4,M.Bosher kicks 67 yards from ATL 35 to CAR -2. A.Smith to CAR 20 for 22 yards (J.Massaquoi).,7,23,2012 -20121209_ATL@CAR,3,19,35,CAR,ATL,1,10,80,(4:35) (Shotgun) C.Newton pass deep left to S.Smith to CAR 36 for 16 yards.,23,7,2012 -20121209_ATL@CAR,3,19,11,CAR,ATL,1,10,64,(4:11) D.Williams up the middle to CAR 34 for -2 yards (T.DeCoud). CAR-G.Hangartner was injured during the play. His return is Questionable.,23,7,2012 -20121209_ATL@CAR,3,18,29,CAR,ATL,2,12,66,(3:29) D.Williams left guard to CAR 42 for 8 yards (K.Biermann).,23,7,2012 -20121209_ATL@CAR,3,17,49,CAR,ATL,3,4,58,(2:49) (Shotgun) C.Newton pass incomplete short left to S.Smith.,23,7,2012 -20121209_ATL@CAR,3,17,45,CAR,ATL,4,4,58,(2:45) B.Nortman punts 58 yards to end zone Center-J.Jansen Touchback.,23,7,2012 -20121209_ATL@CAR,3,17,38,ATL,CAR,1,10,80,(2:38) (Shotgun) M.Ryan pass short right to Jz. Rodgers to ATL 28 for 8 yards (C.Munnerlyn).,7,23,2012 -20121209_ATL@CAR,3,17,5,ATL,CAR,2,2,72,(2:05) (No Huddle Shotgun) PENALTY on ATL-T.Clabo False Start 5 yards enforced at ATL 28 - No Play.,7,23,2012 -20121209_ATL@CAR,3,16,48,ATL,CAR,2,7,77,(1:48) (Shotgun) M.Ryan pass short right to R.White to ATL 37 for 14 yards (D.Campbell).,7,23,2012 -20121209_ATL@CAR,3,16,22,ATL,CAR,1,10,63,(1:22) (No Huddle) M.Ryan pass incomplete deep right to R.White.,7,23,2012 -20121209_ATL@CAR,3,16,18,ATL,CAR,2,10,63,(1:18) (No Huddle Shotgun) M.Turner up the middle to ATL 39 for 2 yards (T.Davis; L.Kuechly).,7,23,2012 -20121209_ATL@CAR,3,15,37,ATL,CAR,3,8,61,(:37) (Shotgun) M.Ryan pass short left to R.White pushed ob at CAR 43 for 18 yards (L.Kuechly).,7,23,2012 -20121209_ATL@CAR,3,15,12,ATL,CAR,1,10,43,(:12) (No Huddle Shotgun) M.Ryan pass incomplete deep left to J.Jones [N.Chandler].,7,23,2012 -20121209_ATL@CAR,3,15,7,ATL,CAR,2,10,43,(:07) (Shotgun) M.Ryan pass deep middle to J.Jones to CAR 22 for 21 yards (H.Nakamura).,7,23,2012 -20121209_ATL@CAR,4,15,0,ATL,CAR,1,10,22,(15:00) M.Ryan pass incomplete deep right to J.Jones.,7,23,2012 -20121209_ATL@CAR,4,14,54,ATL,CAR,2,10,22,(14:54) M.Ryan pass incomplete short left to DJ.Davis.,7,23,2012 -20121209_ATL@CAR,4,14,50,ATL,CAR,3,10,22,(14:50) (Shotgun) M.Ryan pass short middle to T.Gonzalez to CAR 11 for 11 yards (H.Nakamura; L.Kuechly).,7,23,2012 -20121209_ATL@CAR,4,14,4,ATL,CAR,1,10,11,(14:04) (Shotgun) M.Ryan pass short left to J.Jones for 11 yards TOUCHDOWN.,7,23,2012 -20121209_ATL@CAR,4,14,4,ATL,CAR,,,11,TWO-POINT CONVERSION ATTEMPT. M.Ryan pass to R.White is incomplete. ATTEMPT FAILS. Atlanta challenged the incomplete pass ruling and the play was Upheld. (Timeout #2 at 13:57.),7,23,2012 -20121209_ATL@CAR,4,14,4,ATL,CAR,,,11,M.Bosher kicks 55 yards from ATL 35 to CAR 10. A.Smith to CAR 16 for 6 yards (J.Massaquoi).,13,23,2012 -20121209_ATL@CAR,4,13,52,CAR,ATL,1,10,84,(13:52) D.Williams left tackle to CAR 17 for 1 yard (D.Robinson).,23,13,2012 -20121209_ATL@CAR,4,13,10,CAR,ATL,2,9,83,(13:10) M.Tolbert left guard to CAR 24 for 7 yards (S.Nicholas).,23,13,2012 -20121209_ATL@CAR,4,12,29,CAR,ATL,3,2,76,(12:29) (Shotgun) C.Newton pass short right to S.Smith to CAR 31 for 7 yards (C.Owens).,23,13,2012 -20121209_ATL@CAR,4,11,59,CAR,ATL,1,10,69,(11:59) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 49 for 18 yards (C.Hope).,23,13,2012 -20121209_ATL@CAR,4,11,17,CAR,ATL,1,10,51,(11:17) (Shotgun) D.Williams up the middle to ATL 48 for 3 yards (K.Biermann; S.Nicholas).,23,13,2012 -20121209_ATL@CAR,4,10,39,CAR,ATL,2,7,48,(10:39) (Shotgun) C.Newton pass incomplete short right to L.Murphy (C.Owens). Carolina challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) C.Newton pass short right to L.Murphy to ATL 41 for 7 yards (C.Owens). FUMBLES (C.Owens) ball out of bounds at ATL 41.,23,13,2012 -20121209_ATL@CAR,4,10,15,CAR,ATL,1,10,41,(10:15) C.Newton pass incomplete deep left to A.Edwards.,23,13,2012 -20121209_ATL@CAR,4,10,11,CAR,ATL,2,10,41,(10:11) (Shotgun) C.Newton left guard to ATL 40 for 1 yard (K.Biermann).,23,13,2012 -20121209_ATL@CAR,4,9,29,CAR,ATL,3,9,40,(9:29) (Shotgun) C.Newton pass incomplete deep left to S.Smith (D.Robinson).,23,13,2012 -20121209_ATL@CAR,4,9,24,CAR,ATL,4,9,40,(9:24) B.Nortman punts 30 yards to ATL 10 Center-J.Jansen fair catch by D.Franks.,23,13,2012 -20121209_ATL@CAR,4,9,17,ATL,CAR,1,10,90,(9:17) M.Ryan pass short right to R.White to ATL 20 for 10 yards (J.Dockery).,13,23,2012 -20121209_ATL@CAR,4,8,54,ATL,CAR,1,10,80,(8:54) (No Huddle) M.Ryan pass short right to R.White to ATL 31 for 11 yards (T.Davis; J.Dockery).,13,23,2012 -20121209_ATL@CAR,4,8,30,ATL,CAR,1,10,69,(8:30) (No Huddle) M.Ryan pass deep middle to H.Douglas to 50 for 19 yards (C.Jones).,13,23,2012 -20121209_ATL@CAR,4,7,59,ATL,CAR,1,10,50,(7:59) (No Huddle) M.Turner left tackle to CAR 45 for 5 yards (L.Kuechly; C.Jones).,13,23,2012 -20121209_ATL@CAR,4,7,30,ATL,CAR,2,5,45,(7:30) (No Huddle Shotgun) M.Ryan sacked at ATL 48 for -7 yards (G.Hardy).,13,23,2012 -20121209_ATL@CAR,4,7,2,ATL,CAR,3,12,52,(7:02) (No Huddle Shotgun) M.Ryan pass short middle to Jz. Rodgers to CAR 48 for 4 yards (C.Munnerlyn) [G.Hardy].,13,23,2012 -20121209_ATL@CAR,4,6,25,ATL,CAR,4,8,48,(6:25) (No Huddle Shotgun) M.Ryan pass short right intended for R.White INTERCEPTED by T.Davis at CAR 40. T.Davis to CAR 40 for no gain (R.White).,13,23,2012 -20121209_ATL@CAR,4,6,19,CAR,ATL,1,10,60,(6:19) (Shotgun) C.Newton pass incomplete short right to D.Williams.,23,13,2012 -20121209_ATL@CAR,4,6,13,CAR,ATL,2,10,60,(6:13) (Shotgun) D.Williams up the middle to CAR 41 for 1 yard (V.Walker).,23,13,2012 -20121209_ATL@CAR,4,5,34,CAR,ATL,3,9,59,(5:34) (Shotgun) C.Newton pass short left to A.Edwards to CAR 45 for 4 yards (D.Robinson). PENALTY on ATL-D.Robinson Defensive Holding 5 yards enforced at CAR 41 - No Play.,23,13,2012 -20121209_ATL@CAR,4,5,10,CAR,ATL,1,10,54,(5:10) D.Williams left tackle to CAR 47 for 1 yard (D.Robinson).,23,13,2012 -20121209_ATL@CAR,4,4,24,CAR,ATL,2,9,53,(4:24) C.Newton pass short right to D.Williams for 53 yards TOUCHDOWN.,23,13,2012 -20121209_ATL@CAR,4,4,24,CAR,ATL,,,53,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,23,13,2012 -20121209_ATL@CAR,4,4,24,CAR,ATL,,,53,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,30,13,2012 -20121209_ATL@CAR,4,4,11,ATL,CAR,1,10,80,(4:11) (Shotgun) M.Ryan pass incomplete deep left to J.Jones.,13,30,2012 -20121209_ATL@CAR,4,4,4,ATL,CAR,2,10,80,(4:04) (Shotgun) M.Ryan pass deep right to J.Jones to ATL 37 for 17 yards (J.Dockery).,13,30,2012 -20121209_ATL@CAR,4,3,35,ATL,CAR,1,10,63,(3:35) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 43 for 6 yards (T.Davis).,13,30,2012 -20121209_ATL@CAR,4,3,12,ATL,CAR,2,4,57,(3:12) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 49 for 6 yards (L.Kuechly).,13,30,2012 -20121209_ATL@CAR,4,2,51,ATL,CAR,1,10,51,(2:51) (No Huddle Shotgun) M.Ryan pass short left to H.Douglas to CAR 41 for 10 yards (C.Munnerlyn).,13,30,2012 -20121209_ATL@CAR,4,2,45,ATL,CAR,1,10,41,(2:45) (Shotgun) M.Ryan pass short left to C.Coffman pushed ob at CAR 30 for 11 yards (D.Campbell).,13,30,2012 -20121209_ATL@CAR,4,2,39,ATL,CAR,1,10,30,(2:39) M.Ryan pass short right to Jz. Rodgers to CAR 21 for 9 yards (C.Munnerlyn).,13,30,2012 -20121209_ATL@CAR,4,2,16,ATL,CAR,2,1,21,(2:16) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to CAR 9 for 12 yards (T.Davis; L.Kuechly). PENALTY on ATL-T.Clabo Illegal Formation 5 yards enforced at CAR 21 - No Play.,13,30,2012 -20121209_ATL@CAR,4,2,11,ATL,CAR,2,6,26,(2:11) (No Huddle Shotgun) M.Ryan pass short middle to Jz. Rodgers to CAR 18 for 8 yards (L.Kuechly) [F.Alexander].,13,30,2012 -20121209_ATL@CAR,4,2,0,ATL,CAR,1,10,18,(2:00) (Shotgun) M.Ryan pass short left to R.White to CAR 1 for 17 yards (L.Kuechly).,13,30,2012 -20121209_ATL@CAR,4,1,28,ATL,CAR,1,1,1,(1:28) M.Ryan pass incomplete short left to J.Jones (J.Thomas).,13,30,2012 -20121209_ATL@CAR,4,1,26,ATL,CAR,2,1,1,(1:26) (Shotgun) M.Ryan pass incomplete short middle to K.Cone (N.Chandler).,13,30,2012 -20121209_ATL@CAR,4,1,21,ATL,CAR,3,1,1,(1:21) (No Huddle) M.Ryan pass incomplete short left to T.Gonzalez. PENALTY on CAR-C.Munnerlyn Defensive Pass Interference 0 yards enforced at CAR 1 - No Play.,13,30,2012 -20121209_ATL@CAR,4,1,18,ATL,CAR,1,1,1,(1:18) M.Turner left tackle to CAR 1 for no gain (J.Thomas).,13,30,2012 -20121209_ATL@CAR,4,0,56,ATL,CAR,2,1,1,(:56) (No Huddle) M.Turner right guard for 1 yard TOUCHDOWN.,13,30,2012 -20121209_ATL@CAR,4,0,56,ATL,CAR,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,30,2012 -20121209_ATL@CAR,4,0,56,ATL,CAR,,,1,M.Bosher kicks onside 10 yards from ATL 35 to ATL 45. J.Senn (didn't try to advance) to ATL 45 for no gain (S.Weatherspoon).,20,30,2012 -20121209_ATL@CAR,4,0,52,CAR,ATL,1,10,45,(:52) C.Newton kneels to ATL 46 for -1 yards.,30,20,2012 -20121209_ATL@CAR,4,0,30,CAR,ATL,2,11,46,(:30) C.Newton kneels to ATL 47 for -1 yards.,30,20,2012 -20121209_ATL@CAR,4,0,30,CAR,ATL,,,46,                      ,30,20,2012 -20121209_DAL@CIN,1,0,0,CIN,DAL,,,46,J.Brown kicks 72 yards from CIN 35 to DAL -7. D.Harris Touchback.,0,0,2012 -20121209_DAL@CIN,1,60,0,DAL,CIN,1,10,80,(15:00) T.Romo pass short right to J.Hanna to DAL 23 for 3 yards (R.Maualuga).,0,0,2012 -20121209_DAL@CIN,1,59,27,DAL,CIN,2,7,77,(14:27) D.Murray right tackle to DAL 24 for 1 yard (R.Nelson).,0,0,2012 -20121209_DAL@CIN,1,58,45,DAL,CIN,3,6,76,(13:45) (Shotgun) T.Romo pass short left to D.Harris to DAL 45 for 21 yards (V.Burfict).,0,0,2012 -20121209_DAL@CIN,1,58,12,DAL,CIN,1,10,55,(13:12) (Shotgun) D.Murray right end to DAL 48 for 3 yards (V.Burfict).,0,0,2012 -20121209_DAL@CIN,1,57,33,DAL,CIN,2,7,52,(12:33) T.Romo pass short right to L.Vickers to CIN 41 for 11 yards (T.Newman; M.Johnson).,0,0,2012 -20121209_DAL@CIN,1,56,54,DAL,CIN,1,10,41,(11:54) F.Jones right guard to CIN 37 for 4 yards (V.Burfict).,0,0,2012 -20121209_DAL@CIN,1,56,19,DAL,CIN,2,6,37,(11:19) (Shotgun) T.Romo pass short middle to J.Witten to CIN 32 for 5 yards (R.Maualuga).,0,0,2012 -20121209_DAL@CIN,1,55,32,DAL,CIN,3,1,32,(10:32) D.Murray left guard to CIN 28 for 4 yards (L.Hall; R.Maualuga).,0,0,2012 -20121209_DAL@CIN,1,54,58,DAL,CIN,1,10,28,(9:58) T.Romo pass short left to L.Vickers pushed ob at CIN 21 for 7 yards (M.Lawson).,0,0,2012 -20121209_DAL@CIN,1,54,30,DAL,CIN,2,3,21,(9:30) D.Murray right end to CIN 19 for 2 yards (R.Geathers; D.Peko).,0,0,2012 -20121209_DAL@CIN,1,53,45,DAL,CIN,3,1,19,(8:45) T.Romo pass incomplete short middle to J.Hanna (C.Crocker).,0,0,2012 -20121209_DAL@CIN,1,53,40,DAL,CIN,4,1,19,(8:40) D.Bailey 37 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121209_DAL@CIN,1,53,40,DAL,CIN,,,19,D.Bailey kicks 70 yards from DAL 35 to CIN -5. B.Tate to CIN 30 for 35 yards (G.Sensabaugh; A.Albright).,3,0,2012 -20121209_DAL@CIN,1,53,28,CIN,DAL,1,10,70,(8:28) A.Dalton pass incomplete deep left to A.Green.,0,3,2012 -20121209_DAL@CIN,1,53,22,CIN,DAL,2,10,70,(8:22) B.Green-Ellis right guard to CIN 49 for 19 yards (D.McCray).,0,3,2012 -20121209_DAL@CIN,1,52,45,CIN,DAL,1,10,51,(7:45) M.Jones left end pushed ob at DAL 14 for 37 yards (D.McCray). {End around},0,3,2012 -20121209_DAL@CIN,1,52,5,CIN,DAL,1,10,14,(7:05) A.Dalton pass short left to A.Hawkins pushed ob at DAL 8 for 6 yards (M.Jenkins; M.Claiborne).,0,3,2012 -20121209_DAL@CIN,1,51,49,CIN,DAL,2,4,8,(6:49) (Shotgun) A.Dalton pass short middle to A.Hawkins for 8 yards TOUCHDOWN. {shovel pass},0,3,2012 -20121209_DAL@CIN,1,51,49,CIN,DAL,,,8,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,0,3,2012 -20121209_DAL@CIN,1,51,49,CIN,DAL,,,8,J.Brown kicks 73 yards from CIN 35 to DAL -8. D.Harris Touchback.,7,3,2012 -20121209_DAL@CIN,1,51,41,DAL,CIN,1,10,80,(6:41) D.Murray up the middle to DAL 24 for 4 yards (M.Lawson).,3,7,2012 -20121209_DAL@CIN,1,50,56,DAL,CIN,2,6,76,(5:56) (Shotgun) T.Romo pass incomplete short left to M.Austin.,3,7,2012 -20121209_DAL@CIN,1,50,51,DAL,CIN,3,6,76,(5:51) (Shotgun) T.Romo pass incomplete short left to D.Bryant.,3,7,2012 -20121209_DAL@CIN,1,50,47,DAL,CIN,4,6,76,(5:47) B.Moorman punts 23 yards to DAL 47 Center-L.Ladouceur out of bounds.,3,7,2012 -20121209_DAL@CIN,1,50,37,CIN,DAL,1,10,47,(5:37) A.Dalton pass deep middle to M.Jones to DAL 30 for 17 yards (M.Claiborne).,7,3,2012 -20121209_DAL@CIN,1,50,5,CIN,DAL,1,10,30,(5:05) B.Green-Ellis right guard to DAL 27 for 3 yards (A.Spencer; D.Connor).,7,3,2012 -20121209_DAL@CIN,1,49,27,CIN,DAL,2,7,27,(4:27) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,7,3,2012 -20121209_DAL@CIN,1,49,18,CIN,DAL,3,7,27,(4:18) (Shotgun) A.Dalton pass short middle to A.Green to DAL 11 for 16 yards (G.Sensabaugh; M.Claiborne).,7,3,2012 -20121209_DAL@CIN,1,48,47,CIN,DAL,1,10,11,(3:47) B.Green-Ellis right guard to DAL 9 for 2 yards (E.Frampton; A.Spencer).,7,3,2012 -20121209_DAL@CIN,1,48,3,CIN,DAL,2,8,9,(3:03) (Shotgun) A.Dalton pass short middle to A.Hawkins to DAL 5 for 4 yards (E.Sims; E.Frampton).,7,3,2012 -20121209_DAL@CIN,1,47,19,CIN,DAL,3,4,5,(2:19) (Shotgun) A.Dalton sacked at DAL 7 for -2 yards (J.Hatcher).,7,3,2012 -20121209_DAL@CIN,1,46,43,CIN,DAL,4,6,7,(1:43) J.Brown 25 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,3,2012 -20121209_DAL@CIN,1,46,43,CIN,DAL,,,7,J.Brown kicks 73 yards from CIN 35 to DAL -8. D.Harris Touchback.,10,3,2012 -20121209_DAL@CIN,1,46,39,DAL,CIN,1,10,80,(1:39) D.Murray right guard to DAL 27 for 7 yards (V.Burfict).,3,10,2012 -20121209_DAL@CIN,1,46,1,DAL,CIN,2,3,73,(1:01) (Shotgun) D.Murray left end to DAL 29 for 2 yards (L.Hall).,3,10,2012 -20121209_DAL@CIN,1,45,19,DAL,CIN,3,1,71,(:19) (Shotgun) T.Romo pass short middle to D.Murray to DAL 33 for 4 yards (M.Lawson).,3,10,2012 -20121209_DAL@CIN,2,45,0,DAL,CIN,1,10,67,(15:00) T.Romo pass incomplete deep left to M.Austin.,3,10,2012 -20121209_DAL@CIN,2,44,53,DAL,CIN,2,10,67,(14:53) F.Jones right guard to DAL 36 for 3 yards (R.Maualuga; G.Atkins).,3,10,2012 -20121209_DAL@CIN,2,44,9,DAL,CIN,3,7,64,(14:09) (Shotgun) T.Romo pass incomplete short left to D.Bryant.,3,10,2012 -20121209_DAL@CIN,2,44,4,DAL,CIN,4,7,64,(14:04) B.Moorman punts 39 yards to CIN 25 Center-L.Ladouceur downed by DAL-L.Ladouceur. {Punt tipped by CIN#34 Herron},3,10,2012 -20121209_DAL@CIN,2,43,49,CIN,DAL,1,10,75,(13:49) PENALTY on DAL-R.Callaway Encroachment 5 yards enforced at CIN 25 - No Play.,10,3,2012 -20121209_DAL@CIN,2,43,49,CIN,DAL,1,5,70,(13:49) B.Green-Ellis left guard to CIN 38 for 8 yards (D.McCray).,10,3,2012 -20121209_DAL@CIN,2,43,27,CIN,DAL,1,10,62,(13:27) B.Green-Ellis left guard to CIN 39 for 1 yard (A.Spencer).,10,3,2012 -20121209_DAL@CIN,2,42,54,CIN,DAL,2,9,61,(12:54) (Shotgun) A.Dalton pass short right to A.Green to 50 for 11 yards (B.Carr).,10,3,2012 -20121209_DAL@CIN,2,42,16,CIN,DAL,1,10,50,(12:16) A.Dalton pass short right intended for A.Green INTERCEPTED by B.Carr at DAL 36. B.Carr pushed ob at CIN 27 for 37 yards (K.Zeitler).,10,3,2012 -20121209_DAL@CIN,2,42,0,DAL,CIN,1,10,27,(12:00) (Shotgun) T.Romo pass deep middle to J.Witten to CIN 2 for 25 yards (R.Nelson).,3,10,2012 -20121209_DAL@CIN,2,41,21,DAL,CIN,1,2,2,(11:21) T.Romo pass short right to M.Austin for 2 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was REVERSED. T.Romo pass incomplete short right to M.Austin.,3,10,2012 -20121209_DAL@CIN,2,41,15,DAL,CIN,2,2,2,(11:15) D.Murray left guard to CIN 1 for 1 yard (D.Skuta; R.Maualuga). CIN-R.Maualuga was injured during the play.,3,10,2012 -20121209_DAL@CIN,2,40,39,DAL,CIN,3,1,1,(10:39) D.Murray up the middle for 1 yard TOUCHDOWN.,3,10,2012 -20121209_DAL@CIN,2,40,39,DAL,CIN,,,1,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,10,2012 -20121209_DAL@CIN,2,40,39,DAL,CIN,,,1,D.Bailey kicks 66 yards from DAL 35 to CIN -1. B.Tate to CIN 19 for 20 yards (B.Poppinga).,10,10,2012 -20121209_DAL@CIN,2,40,27,CIN,DAL,1,10,81,(10:27) B.Leonard up the middle to CIN 21 for 2 yards (A.Spencer; M.Spears).,10,10,2012 -20121209_DAL@CIN,2,39,53,CIN,DAL,2,8,79,(9:53) (Shotgun) B.Leonard right tackle to CIN 24 for 3 yards (A.Albright).,10,10,2012 -20121209_DAL@CIN,2,39,9,CIN,DAL,3,5,76,(9:09) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 35 for 11 yards (E.Frampton; B.Carr).,10,10,2012 -20121209_DAL@CIN,2,38,28,CIN,DAL,1,10,65,(8:28) PENALTY on CIN-K.Cook False Start 5 yards enforced at CIN 35 - No Play.,10,10,2012 -20121209_DAL@CIN,2,38,12,CIN,DAL,1,15,70,(8:12) B.Leonard up the middle to CIN 33 for 3 yards (A.Spencer).,10,10,2012 -20121209_DAL@CIN,2,37,34,CIN,DAL,2,12,67,(7:34) (Shotgun) A.Dalton pass deep middle to M.Jones to 50 for 17 yards (E.Frampton).,10,10,2012 -20121209_DAL@CIN,2,36,48,CIN,DAL,1,10,50,(6:48) A.Dalton sacked ob at 50 for 0 yards (E.Sims).,10,10,2012 -20121209_DAL@CIN,2,36,18,CIN,DAL,2,10,50,(6:18) (Shotgun) B.Leonard left guard to DAL 47 for 3 yards (E.Sims).,10,10,2012 -20121209_DAL@CIN,2,35,34,CIN,DAL,3,7,47,(5:34) (Shotgun) A.Dalton pass deep middle to J.Gresham to DAL 22 for 25 yards (S.Moore; E.Frampton).,10,10,2012 -20121209_DAL@CIN,2,34,56,CIN,DAL,1,10,22,(4:56) B.Leonard right guard to DAL 18 for 4 yards (E.Sims; D.Connor).,10,10,2012 -20121209_DAL@CIN,2,34,16,CIN,DAL,2,6,18,(4:16) (Shotgun) A.Dalton pass short left to B.Green-Ellis to DAL 15 for 3 yards (E.Sims).,10,10,2012 -20121209_DAL@CIN,2,33,33,CIN,DAL,3,3,15,(3:33) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins.,10,10,2012 -20121209_DAL@CIN,2,33,29,CIN,DAL,4,3,15,(3:29) J.Brown 33 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,10,2012 -20121209_DAL@CIN,2,33,29,CIN,DAL,,,15,J.Brown kicks 66 yards from CIN 35 to DAL -1. D.Harris to DAL 13 for 14 yards (D.Skuta; N.Clements). PENALTY on CIN-T.Mays Illegal Use of Hands 5 yards enforced at DAL 13.,13,10,2012 -20121209_DAL@CIN,2,33,18,DAL,CIN,1,10,82,(3:18) D.Murray right tackle to DAL 14 for -4 yards (G.Atkins).,10,13,2012 -20121209_DAL@CIN,2,32,37,DAL,CIN,2,14,86,(2:37) (Shotgun) T.Romo pass short left to M.Austin to DAL 19 for 5 yards (L.Hall).,10,13,2012 -20121209_DAL@CIN,2,32,0,DAL,CIN,3,9,81,(2:00) (Shotgun) T.Romo pass short right to M.Austin to DAL 30 for 11 yards (L.Hall; T.Newman) [W.Gilberry]. CIN-L.Hall was injured during the play.,10,13,2012 -20121209_DAL@CIN,2,31,41,DAL,CIN,1,10,70,(1:41) (Shotgun) T.Romo pass incomplete short middle to K.Ogletree (T.Newman) [M.Johnson].,10,13,2012 -20121209_DAL@CIN,2,31,36,DAL,CIN,2,10,70,(1:36) (Shotgun) T.Romo pass incomplete short middle to D.Harris.,10,13,2012 -20121209_DAL@CIN,2,31,31,DAL,CIN,3,10,70,(1:31) (Shotgun) T.Romo sacked at DAL 16 for -14 yards (sack split by M.Johnson and C.Dunlap). CIN-M.Johnson was injured during the play. PENALTY on CIN-C.Dunlap Face Mask (15 Yards) 15 yards enforced at DAL 16.,10,13,2012 -20121209_DAL@CIN,2,31,19,DAL,CIN,1,10,69,(1:19) (Shotgun) T.Romo pass short right to D.Harris to DAL 36 for 5 yards (T.Newman).,10,13,2012 -20121209_DAL@CIN,2,30,54,DAL,CIN,2,5,64,(:54) (Shotgun) T.Romo pass incomplete short left to M.Austin.,10,13,2012 -20121209_DAL@CIN,2,30,52,DAL,CIN,3,5,64,(:52) PENALTY on DAL Delay of Game 5 yards enforced at DAL 36 - No Play.,10,13,2012 -20121209_DAL@CIN,2,30,52,DAL,CIN,3,10,69,(:52) (Shotgun) T.Romo pass deep right intended for D.Harris INTERCEPTED by R.Nelson at CIN 14. R.Nelson to CIN 14 for no gain (D.Harris).,10,13,2012 -20121209_DAL@CIN,2,30,38,CIN,DAL,1,10,86,(:38) A.Dalton kneels to CIN 14 for no gain.,13,10,2012 -20121209_DAL@CIN,3,30,0,DAL,CIN,,,86,D.Bailey kicks 52 yards from DAL 35 to CIN 13. O.Charles to CIN 23 for 10 yards (L.Dunbar; B.Poppinga).,10,13,2012 -20121209_DAL@CIN,3,29,55,CIN,DAL,1,10,77,(14:55) A.Dalton pass short middle to J.Gresham to CIN 30 for 7 yards (A.Spencer).,13,10,2012 -20121209_DAL@CIN,3,29,21,CIN,DAL,2,3,70,(14:21) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 34 for 4 yards (M.Claiborne).,13,10,2012 -20121209_DAL@CIN,3,28,56,CIN,DAL,1,10,66,(13:56) A.Dalton pass short right to A.Green to DAL 49 for 17 yards (D.Ware).,13,10,2012 -20121209_DAL@CIN,3,28,18,CIN,DAL,1,10,49,(13:18) B.Green-Ellis up the middle to DAL 43 for 6 yards (E.Sims).,13,10,2012 -20121209_DAL@CIN,3,27,41,CIN,DAL,2,4,43,(12:41) B.Green-Ellis right tackle to DAL 40 for 3 yards (S.Lissemore; E.Sims).,13,10,2012 -20121209_DAL@CIN,3,27,5,CIN,DAL,3,1,40,(12:05) A.Dalton pass short left to O.Charles pushed ob at DAL 23 for 17 yards (E.Sims; M.Claiborne). DAL-M.Claiborne was injured during the play.,13,10,2012 -20121209_DAL@CIN,3,26,44,CIN,DAL,1,10,23,(11:44) (Shotgun) A.Dalton pass short right to M.Jones to DAL 12 for 11 yards (B.Carr).,13,10,2012 -20121209_DAL@CIN,3,25,55,CIN,DAL,1,10,12,(10:55) PENALTY on CIN-A.Whitworth False Start 5 yards enforced at DAL 12 - No Play.,13,10,2012 -20121209_DAL@CIN,3,25,43,CIN,DAL,1,15,17,(10:43) (Shotgun) A.Dalton sacked ob at DAL 18 for -1 yards (A.Spencer). PENALTY on DAL Unsportsmanlike Conduct 9 yards enforced at DAL 18. {Penalty called against the Dallas bench},13,10,2012 -20121209_DAL@CIN,3,25,17,CIN,DAL,1,9,9,(10:17) B.Green-Ellis right tackle to DAL 7 for 2 yards (D.Connor; D.McCray).,13,10,2012 -20121209_DAL@CIN,3,24,43,CIN,DAL,2,7,7,(9:43) A.Dalton pass short right to M.Jones for 7 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CIN-M.Jones Illegal Touch Pass 5 yards enforced at DAL 7 - No Play.,13,10,2012 -20121209_DAL@CIN,3,24,34,CIN,DAL,2,12,12,(9:34) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (G.Sensabaugh).,13,10,2012 -20121209_DAL@CIN,3,24,29,CIN,DAL,3,12,12,(9:29) (Shotgun) PENALTY on DAL Defensive 12 On-field 5 yards enforced at DAL 12 - No Play.,13,10,2012 -20121209_DAL@CIN,3,24,29,CIN,DAL,3,7,7,(9:29) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,13,10,2012 -20121209_DAL@CIN,3,24,26,CIN,DAL,4,7,7,(9:26) J.Brown 25 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,13,10,2012 -20121209_DAL@CIN,3,24,26,CIN,DAL,,,7,J.Brown kicks 70 yards from CIN 35 to DAL -5. D.Harris Touchback.,16,10,2012 -20121209_DAL@CIN,3,24,22,DAL,CIN,1,10,80,(9:22) T.Romo pass incomplete short left to M.Austin [G.Atkins].,10,16,2012 -20121209_DAL@CIN,3,24,17,DAL,CIN,2,10,80,(9:17) D.Murray up the middle to DAL 17 for -3 yards (G.Atkins).,10,16,2012 -20121209_DAL@CIN,3,23,33,DAL,CIN,3,13,83,(8:33) (Shotgun) T.Romo pass short left to D.Bryant to DAL 25 for 8 yards (A.Jones).,10,16,2012 -20121209_DAL@CIN,3,23,3,DAL,CIN,4,5,75,(8:03) B.Moorman punts 27 yards to CIN 48 Center-L.Ladouceur out of bounds.,10,16,2012 -20121209_DAL@CIN,3,22,54,CIN,DAL,1,10,52,(7:54) A.Dalton pass incomplete short middle to C.Pressley.,16,10,2012 -20121209_DAL@CIN,3,22,50,CIN,DAL,2,10,52,(7:50) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,16,10,2012 -20121209_DAL@CIN,3,22,43,CIN,DAL,3,10,52,(7:43) (Shotgun) A.Dalton pass incomplete short right to M.Jones. DAL-E.Frampton was injured during the play. PENALTY on DAL-E.Sims Personal Foul 15 yards enforced at CIN 48 - No Play.,16,10,2012 -20121209_DAL@CIN,3,22,36,CIN,DAL,1,10,37,(7:36) B.Green-Ellis up the middle to DAL 34 for 3 yards (D.Connor; D.Ware).,16,10,2012 -20121209_DAL@CIN,3,22,1,CIN,DAL,2,7,34,(7:01) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham.,16,10,2012 -20121209_DAL@CIN,3,21,57,CIN,DAL,3,7,34,(6:57) (Shotgun) A.Dalton pass incomplete deep left to A.Green [A.Spencer].,16,10,2012 -20121209_DAL@CIN,3,21,50,CIN,DAL,4,7,34,(6:50) J.Brown 52 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,16,10,2012 -20121209_DAL@CIN,3,21,50,CIN,DAL,,,34,J.Brown kicks 71 yards from CIN 35 to DAL -6. D.Harris Touchback.,19,10,2012 -20121209_DAL@CIN,3,21,45,DAL,CIN,1,10,80,(6:45) T.Romo pass short right to J.Witten to DAL 43 for 23 yards (V.Burfict).,10,19,2012 -20121209_DAL@CIN,3,21,8,DAL,CIN,1,10,57,(6:08) D.Bryant right end ran ob at DAL 32 for -11 yards (T.Newman). {end around},10,19,2012 -20121209_DAL@CIN,3,20,35,DAL,CIN,2,21,68,(5:35) (Shotgun) T.Romo pass incomplete deep right to D.Harris [D.Peko].,10,19,2012 -20121209_DAL@CIN,3,20,29,DAL,CIN,3,21,68,(5:29) (Shotgun) T.Romo pass incomplete deep right to D.Bryant (R.Nelson). PENALTY on CIN-R.Nelson Personal Foul 15 yards enforced at DAL 32 - No Play.,10,19,2012 -20121209_DAL@CIN,3,20,25,DAL,CIN,1,10,53,(5:25) T.Romo pass incomplete short right to D.Murray.,10,19,2012 -20121209_DAL@CIN,3,20,19,DAL,CIN,2,10,53,(5:19) T.Romo pass incomplete short middle to L.Vickers (R.Maualuga).,10,19,2012 -20121209_DAL@CIN,3,20,11,DAL,CIN,3,10,53,(5:11) (Shotgun) T.Romo sacked at DAL 39 for -8 yards (R.Nelson).,10,19,2012 -20121209_DAL@CIN,3,19,46,DAL,CIN,4,18,61,(4:46) B.Moorman punts 27 yards to CIN 34 Center-L.Ladouceur out of bounds.,10,19,2012 -20121209_DAL@CIN,3,19,38,CIN,DAL,1,10,66,(4:38) A.Dalton pass incomplete short middle to B.Green-Ellis (M.Spears). {tipped at the line of scrimmage},19,10,2012 -20121209_DAL@CIN,3,19,34,CIN,DAL,2,10,66,(4:34) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 45 for 11 yards (S.Moore).,19,10,2012 -20121209_DAL@CIN,3,18,57,CIN,DAL,1,10,55,(3:57) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to 50 for 5 yards (T.Crawford; A.Spencer).,19,10,2012 -20121209_DAL@CIN,3,18,31,CIN,DAL,2,5,50,(3:31) B.Green-Ellis left guard to DAL 49 for 1 yard (M.Jenkins; A.Spencer).,19,10,2012 -20121209_DAL@CIN,3,17,52,CIN,DAL,3,4,49,(2:52) (Shotgun) A.Dalton pass incomplete short middle to A.Hawkins.,19,10,2012 -20121209_DAL@CIN,3,17,47,CIN,DAL,4,4,49,(2:47) K.Huber punts 47 yards to DAL 2 Center-C.Harris downed by CIN-J.Miles.,19,10,2012 -20121209_DAL@CIN,3,17,37,DAL,CIN,1,10,98,(2:37) D.Murray right guard to DAL 7 for 5 yards (C.Crocker; V.Burfict).,10,19,2012 -20121209_DAL@CIN,3,16,58,DAL,CIN,2,5,93,(1:58) T.Romo pass short right to D.Murray pushed ob at DAL 13 for 6 yards (R.Maualuga).,10,19,2012 -20121209_DAL@CIN,3,16,30,DAL,CIN,1,10,87,(1:30) D.Murray left tackle to DAL 14 for 1 yard (T.Newman; V.Burfict).,10,19,2012 -20121209_DAL@CIN,3,15,46,DAL,CIN,2,9,86,(:46) (Shotgun) T.Romo pass short right to L.Dunbar to DAL 20 for 6 yards (R.Nelson; W.Gilberry).,10,19,2012 -20121209_DAL@CIN,4,15,0,DAL,CIN,3,3,80,(15:00) (Shotgun) T.Romo pass short right to M.Austin to DAL 35 for 15 yards (T.Newman).,10,19,2012 -20121209_DAL@CIN,4,14,29,DAL,CIN,1,10,65,(14:29) T.Romo sacked at DAL 28 for -7 yards (G.Atkins). Penalty on DAL-N.Livings Offensive Holding declined.,10,19,2012 -20121209_DAL@CIN,4,13,58,DAL,CIN,2,17,72,(13:58) (Shotgun) D.Murray right tackle to DAL 35 for 7 yards (C.Crocker).,10,19,2012 -20121209_DAL@CIN,4,13,14,DAL,CIN,3,10,65,(13:14) (Shotgun) T.Romo pass short left to D.Harris to DAL 42 for 7 yards (A.Jones).,10,19,2012 -20121209_DAL@CIN,4,12,40,DAL,CIN,4,3,58,(12:40) B.Moorman punts 49 yards to CIN 9 Center-L.Ladouceur. A.Jones to CIN 6 for -3 yards (A.Albright).,10,19,2012 -20121209_DAL@CIN,4,12,28,CIN,DAL,1,10,94,(12:28) B.Green-Ellis right guard pushed ob at CIN 49 for 43 yards (G.Sensabaugh; E.Sims). PENALTY on CIN-A.Green Illegal Block Above the Waist 10 yards enforced at CIN 44. {Green-Ellis credited with 38 yards rushing due to penalty},19,10,2012 -20121209_DAL@CIN,4,11,59,CIN,DAL,1,10,66,(11:59) B.Green-Ellis right guard to CIN 37 for 3 yards (B.Carr; A.Spencer).,19,10,2012 -20121209_DAL@CIN,4,11,20,CIN,DAL,2,7,63,(11:20) A.Dalton pass incomplete deep left to M.Jones. PENALTY on CIN-K.Cook Offensive Holding 10 yards enforced at CIN 37 - No Play.,19,10,2012 -20121209_DAL@CIN,4,11,11,CIN,DAL,2,17,73,(11:11) (Shotgun) B.Leonard left guard to CIN 32 for 5 yards (J.Hatcher).,19,10,2012 -20121209_DAL@CIN,4,10,28,CIN,DAL,3,12,68,(10:28) (Shotgun) A.Dalton sacked at CIN 29 for -3 yards (D.Ware).,19,10,2012 -20121209_DAL@CIN,4,9,57,CIN,DAL,4,15,71,(9:57) K.Huber punts 39 yards to DAL 32 Center-C.Harris. D.Harris to DAL 32 for no gain (J.Miles).,19,10,2012 -20121209_DAL@CIN,4,9,47,DAL,CIN,1,10,68,(9:47) (Shotgun) T.Romo pass short left to D.Bryant to DAL 38 for 6 yards (A.Jones).,10,19,2012 -20121209_DAL@CIN,4,9,22,DAL,CIN,2,4,62,(9:22) (Shotgun) D.Murray left guard to DAL 40 for 2 yards (D.Peko).,10,19,2012 -20121209_DAL@CIN,4,8,49,DAL,CIN,3,2,60,(8:49) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 45 for 5 yards (A.Jones).,10,19,2012 -20121209_DAL@CIN,4,8,21,DAL,CIN,1,10,55,(8:21) (Shotgun) T.Romo pass short right to D.Murray to DAL 48 for 3 yards (L.Hall). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at DAL 45 - No Play.,10,19,2012 -20121209_DAL@CIN,4,8,2,DAL,CIN,1,20,65,(8:02) (Shotgun) T.Romo pass deep middle to K.Ogletree to CIN 42 for 23 yards (C.Crocker).,10,19,2012 -20121209_DAL@CIN,4,7,31,DAL,CIN,1,10,42,(7:31) (Shotgun) T.Romo pass incomplete deep right to D.Harris.,10,19,2012 -20121209_DAL@CIN,4,7,24,DAL,CIN,2,10,42,(7:24) (Shotgun) T.Romo pass incomplete short right to M.Austin (N.Clements) [G.Atkins].,10,19,2012 -20121209_DAL@CIN,4,7,15,DAL,CIN,3,10,42,(7:15) (Shotgun) T.Romo pass short middle to M.Austin to CIN 27 for 15 yards (E.Lamur).,10,19,2012 -20121209_DAL@CIN,4,6,44,DAL,CIN,1,10,27,(6:44) (Shotgun) T.Romo pass deep middle to D.Bryant for 27 yards TOUCHDOWN.,10,19,2012 -20121209_DAL@CIN,4,6,44,DAL,CIN,,,27,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,19,2012 -20121209_DAL@CIN,4,6,44,DAL,CIN,,,27,D.Bailey kicks 72 yards from DAL 35 to CIN -7. B.Tate Touchback.,17,19,2012 -20121209_DAL@CIN,4,6,35,CIN,DAL,1,10,80,(6:35) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 25 for 5 yards (D.McCray; E.Sims). DAL-E.Sims was injured during the play.,19,17,2012 -20121209_DAL@CIN,4,6,3,CIN,DAL,2,5,75,(6:03) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 30 for 5 yards (D.Ware).,19,17,2012 -20121209_DAL@CIN,4,5,32,CIN,DAL,1,10,70,(5:32) A.Dalton pass incomplete deep left to M.Jones.,19,17,2012 -20121209_DAL@CIN,4,5,24,CIN,DAL,2,10,70,(5:24) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 36 for 6 yards (A.Albright).,19,17,2012 -20121209_DAL@CIN,4,4,40,CIN,DAL,3,4,64,(4:40) (Shotgun) A.Dalton sacked at CIN 26 for -10 yards (A.Spencer).,19,17,2012 -20121209_DAL@CIN,4,3,57,CIN,DAL,4,14,74,(3:57) K.Huber punts 50 yards to DAL 24 Center-C.Harris. D.Harris to DAL 28 for 4 yards (J.Allen).,19,17,2012 -20121209_DAL@CIN,4,3,44,DAL,CIN,1,10,72,(3:44) (Shotgun) D.Murray right guard to DAL 33 for 5 yards (C.Dunlap).,17,19,2012 -20121209_DAL@CIN,4,3,17,DAL,CIN,2,5,67,(3:17) (Shotgun) T.Romo pass incomplete short right to D.Harris (T.Newman).,17,19,2012 -20121209_DAL@CIN,4,3,12,DAL,CIN,3,5,67,(3:12) (Shotgun) T.Romo pass short middle to J.Witten to DAL 42 for 9 yards (V.Burfict; R.Maualuga). Penalty on CIN-L.Hall Illegal Use of Hands declined.,17,19,2012 -20121209_DAL@CIN,4,3,6,DAL,CIN,1,10,58,(3:06) (Shotgun) T.Romo pass short middle to D.Bryant to CIN 49 for 9 yards (A.Jones).,17,19,2012 -20121209_DAL@CIN,4,2,43,DAL,CIN,2,1,49,(2:43) (Shotgun) D.Murray right tackle to CIN 47 for 2 yards (M.Johnson).,17,19,2012 -20121209_DAL@CIN,4,2,16,DAL,CIN,1,10,47,(2:16) (Shotgun) T.Romo pass short left to D.Murray pushed ob at CIN 40 for 7 yards (A.Jones).,17,19,2012 -20121209_DAL@CIN,4,2,11,DAL,CIN,2,3,40,(2:11) (Shotgun) D.Murray right tackle to CIN 38 for 2 yards (R.Maualuga; V.Burfict). DAL-N.Livings was injured during the play.,17,19,2012 -20121209_DAL@CIN,4,1,59,DAL,CIN,3,1,38,(1:59) D.Murray left end to CIN 35 for 3 yards (V.Burfict).,17,19,2012 -20121209_DAL@CIN,4,1,28,DAL,CIN,1,10,35,(1:28) (Shotgun) T.Romo pass incomplete short middle to D.Murray.,17,19,2012 -20121209_DAL@CIN,4,1,24,DAL,CIN,2,10,35,(1:24) (Shotgun) T.Romo pass short right to D.Murray pushed ob at CIN 30 for 5 yards (A.Jones; R.Maualuga).,17,19,2012 -20121209_DAL@CIN,4,1,17,DAL,CIN,3,5,30,(1:17) (Shotgun) D.Murray right end to CIN 24 for 6 yards (C.Dunlap). CIN-V.Burfict was injured during the play.,17,19,2012 -20121209_DAL@CIN,4,0,24,DAL,CIN,1,10,24,(:24) D.Murray up the middle to CIN 22 for 2 yards (R.Nelson; M.Lawson).,17,19,2012 -20121209_DAL@CIN,4,0,4,DAL,CIN,2,8,22,(:04) D.Bailey 40 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,19,2012 -20121209_DAL@CIN,4,0,4,DAL,CIN,,,22,                      ,20,19,2012 -20121209_KC@CLE,1,0,0,CLE,KC,,,22,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,0,0,2012 -20121209_KC@CLE,1,60,0,KC,CLE,1,10,80,(15:00) J.Charles right guard for 80 yards TOUCHDOWN.,0,0,2012 -20121209_KC@CLE,1,60,0,KC,CLE,,,80,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,0,0,2012 -20121209_KC@CLE,1,60,0,KC,CLE,,,80,R.Succop kicks 54 yards from KC 35 to CLV 11. J.Cribbs to CLV 26 for 15 yards (J.Bellamy).,7,0,2012 -20121209_KC@CLE,1,59,45,CLE,KC,1,10,74,(14:45) B.Weeden scrambles left guard to CLV 41 for 15 yards. Weeden slid down at 41 no tackle,0,7,2012 -20121209_KC@CLE,1,59,9,CLE,KC,1,10,59,(14:09) T.Richardson right guard to CLV 45 for 4 yards (D.Johnson; R.Pitoitua).,0,7,2012 -20121209_KC@CLE,1,58,34,CLE,KC,2,6,55,(13:34) B.Weeden sacked at CLV 40 for -5 yards (T.Hali).,0,7,2012 -20121209_KC@CLE,1,57,58,CLE,KC,3,11,60,(12:58) (Shotgun) PENALTY on CLV-A.Mack False Start 5 yards enforced at CLV 40 - No Play.,0,7,2012 -20121209_KC@CLE,1,57,49,CLE,KC,3,16,65,(12:49) (Shotgun) B.Weeden pass short left to J.Gordon to CLV 41 for 6 yards (J.Brown).,0,7,2012 -20121209_KC@CLE,1,57,13,CLE,KC,4,10,59,(12:13) R.Hodges punts 38 yards to KC 21 Center-C.Yount out of bounds.,0,7,2012 -20121209_KC@CLE,1,57,5,KC,CLE,1,10,79,(12:05) J.Charles left tackle to KC 26 for 5 yards (U.Young).,7,0,2012 -20121209_KC@CLE,1,56,34,KC,CLE,2,5,74,(11:34) J.Charles right tackle to KC 23 for -3 yards (A.Rubin).,7,0,2012 -20121209_KC@CLE,1,55,51,KC,CLE,3,8,77,(10:51) (Shotgun) B.Quinn pass short middle to D.Bowe to KC 46 for 23 yards (D.Jackson; C.Robertson).,7,0,2012 -20121209_KC@CLE,1,55,51,KC,CLE,1,10,54,(10:51) P.Hillis left guard to KC 49 for 3 yards (J.Johnson; J.Hughes).,7,0,2012 -20121209_KC@CLE,1,54,36,KC,CLE,2,7,51,(9:36) B.Quinn pass deep right to D.Bowe to CLV 4 for 47 yards (J.Haden).,7,0,2012 -20121209_KC@CLE,1,53,46,KC,CLE,1,4,4,(8:46) P.Hillis right tackle to CLV 3 for 1 yard (B.Winn; J.Johnson).,7,0,2012 -20121209_KC@CLE,1,53,7,KC,CLE,2,3,3,(8:07) B.Quinn pass incomplete short middle to S.Maneri [D.Jackson].,7,0,2012 -20121209_KC@CLE,1,53,2,KC,CLE,3,3,3,(8:02) (Shotgun) B.Quinn pass incomplete short middle to T.Moeaki (T.Ward).,7,0,2012 -20121209_KC@CLE,1,53,2,KC,CLE,4,3,3,(8:02) (Field Goal formation) PENALTY on KC-R.Hochstein False Start 5 yards enforced at CLV 3 - No Play.,7,0,2012 -20121209_KC@CLE,1,52,57,KC,CLE,4,8,8,(7:57) (Field Goal formation) R.Succop 27 yard field goal is No Good Hit Left Upright Center-T.Gafford Holder-D.Colquitt.,7,0,2012 -20121209_KC@CLE,1,52,53,CLE,KC,1,10,80,(7:53) T.Richardson left guard to CLV 24 for 4 yards (B.Flowers; R.Pitoitua).,0,7,2012 -20121209_KC@CLE,1,52,15,CLE,KC,2,6,76,(7:15) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 39 for 15 yards (B.Flowers).,0,7,2012 -20121209_KC@CLE,1,51,55,CLE,KC,1,10,61,(6:55) (Shotgun) T.Richardson left guard to CLV 46 for 7 yards (R.Pitoitua; T.Hartman).,0,7,2012 -20121209_KC@CLE,1,51,16,CLE,KC,2,3,54,(6:16) B.Weeden pass short middle to G.Little to KC 20 for 34 yards (T.Hartman).,0,7,2012 -20121209_KC@CLE,1,50,55,CLE,KC,1,10,20,(5:55) T.Richardson right guard to KC 20 for no gain (D.Johnson).,0,7,2012 -20121209_KC@CLE,1,50,20,CLE,KC,2,10,20,(5:20) (Shotgun) B.Weeden pass incomplete short left to M.Massaquoi (T.Hali). Pass Deflected by 91 Hali,0,7,2012 -20121209_KC@CLE,1,50,16,CLE,KC,3,10,20,(5:16) B.Weeden pass short right to J.Gordon to KC 2 for 18 yards (J.Arenas).,0,7,2012 -20121209_KC@CLE,1,49,43,CLE,KC,1,2,2,(4:43) T.Richardson right tackle to KC 4 for -2 yards (D.Johnson).,0,7,2012 -20121209_KC@CLE,1,49,6,CLE,KC,2,4,4,(4:06) B.Weeden pass incomplete short right to B.Watson [J.Houston].,0,7,2012 -20121209_KC@CLE,1,49,0,CLE,KC,3,4,4,(4:00) B.Weeden pass incomplete short right to J.Gordon (B.Flowers).,0,7,2012 -20121209_KC@CLE,1,48,56,CLE,KC,4,4,4,(3:56) (Field Goal formation) P.Dawson 23 yard field goal is GOOD Center-C.Yount Holder-R.Hodges. Phil Dawson's 300th Career Field Goal,0,7,2012 -20121209_KC@CLE,1,48,56,CLE,KC,,,4,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,3,7,2012 -20121209_KC@CLE,1,48,53,KC,CLE,1,10,80,(3:53) J.Charles right guard to KC 23 for 3 yards (F.Rucker). KC-D.Bowe was injured during the play.,7,3,2012 -20121209_KC@CLE,1,48,19,KC,CLE,2,7,77,(3:19) J.Charles left guard to KC 34 for 11 yards (F.Rucker).,7,3,2012 -20121209_KC@CLE,1,47,38,KC,CLE,1,10,66,(2:38) J.Charles right guard to KC 35 for 1 yard (F.Rucker; J.Sheard).,7,3,2012 -20121209_KC@CLE,1,47,0,KC,CLE,2,9,65,(2:00) J.Charles right guard to KC 40 for 5 yards (D.Jackson).,7,3,2012 -20121209_KC@CLE,1,46,18,KC,CLE,3,4,60,(1:18) (Shotgun) B.Quinn right guard to KC 37 for -3 yards (J.Sheard). PENALTY on CLV-J.Parker Defensive Offside 5 yards enforced at KC 40 - No Play.,7,3,2012 -20121209_KC@CLE,1,45,55,KC,CLE,1,10,55,(:55) J.Charles right tackle to KC 46 for 1 yard (K.Maiava).,7,3,2012 -20121209_KC@CLE,1,45,15,KC,CLE,2,9,54,(:15) B.Quinn pass incomplete short right to J.Newsome.,7,3,2012 -20121209_KC@CLE,1,45,10,KC,CLE,3,9,54,(:10) (Shotgun) B.Quinn pass short right to P.Hillis to CLV 48 for 6 yards (C.Robertson; T.Gipson) [J.Sheard].,7,3,2012 -20121209_KC@CLE,2,45,0,KC,CLE,4,3,48,(15:00) (Punt formation) D.Colquitt punts 41 yards to CLV 7 Center-T.Gafford. T.Benjamin for 93 yards TOUCHDOWN. Longest Punt Return in Cleveland Franchise History,7,3,2012 -20121209_KC@CLE,2,45,0,CLE,KC,,,48,(Kick formation) P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,7,2012 -20121209_KC@CLE,2,45,0,CLE,KC,,,48,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,10,7,2012 -20121209_KC@CLE,2,44,40,KC,CLE,1,10,80,(14:40) J.Charles left tackle to KC 25 for 5 yards (T.Ward).,7,10,2012 -20121209_KC@CLE,2,44,7,KC,CLE,2,5,75,(14:07) J.Charles left end to KC 40 for 15 yards (T.Ward; J.Sheard).,7,10,2012 -20121209_KC@CLE,2,43,27,KC,CLE,1,10,60,(13:27) P.Hillis left tackle to KC 40 for no gain (J.Hughes).,7,10,2012 -20121209_KC@CLE,2,43,27,KC,CLE,2,10,60,(13:27) PENALTY on KC Offensive 12 On-field 5 yards enforced at KC 40 - No Play.,7,10,2012 -20121209_KC@CLE,2,42,45,KC,CLE,2,15,65,(12:45) D.McCluster right end to KC 35 for no gain (J.Haden; J.Sheard). Pitch out to the right,7,10,2012 -20121209_KC@CLE,2,42,2,KC,CLE,3,15,65,(12:02) (Shotgun) B.Quinn pass short right to S.Draughn to KC 43 for 8 yards (J.Haden).,7,10,2012 -20121209_KC@CLE,2,41,34,KC,CLE,4,7,57,(11:34) (Punt formation) D.Colquitt punts 48 yards to CLV 9 Center-T.Gafford fair catch by J.Cribbs.,7,10,2012 -20121209_KC@CLE,2,41,27,CLE,KC,1,10,91,(11:27) B.Weeden pass incomplete short left to J.Gordon.,10,7,2012 -20121209_KC@CLE,2,41,24,CLE,KC,2,10,91,(11:24) M.Hardesty left tackle to CLV 13 for 4 yards (D.Poe).,10,7,2012 -20121209_KC@CLE,2,40,44,CLE,KC,3,6,87,(10:44) (Shotgun) B.Weeden pass incomplete deep right to G.Little.,10,7,2012 -20121209_KC@CLE,2,40,39,CLE,KC,4,6,87,(10:39) (Punt formation) R.Hodges punts 50 yards to KC 37 Center-C.Yount. J.Arenas to KC 42 for 5 yards (J.Johnson; C.Robertson).,10,7,2012 -20121209_KC@CLE,2,40,27,KC,CLE,1,10,58,(10:27) P.Hillis left tackle to KC 46 for 4 yards (D.Jackson).,7,10,2012 -20121209_KC@CLE,2,39,54,KC,CLE,2,6,54,(9:54) PENALTY on KC-B.Albert False Start 5 yards enforced at KC 46 - No Play.,7,10,2012 -20121209_KC@CLE,2,39,29,KC,CLE,2,11,59,(9:29) P.Hillis left tackle to KC 44 for 3 yards (I.Kitchen).,7,10,2012 -20121209_KC@CLE,2,38,45,KC,CLE,3,8,56,(8:45) (Shotgun) B.Quinn pass incomplete short right to D.McCluster. Pressure by B. Winn forced Quinn out of pocket,7,10,2012 -20121209_KC@CLE,2,38,40,KC,CLE,4,8,56,(8:40) (Punt formation) D.Colquitt punts 42 yards to CLV 14 Center-T.Gafford downed by KC-N.Thorpe.,7,10,2012 -20121209_KC@CLE,2,38,28,CLE,KC,1,10,86,(8:28) B.Weeden pass incomplete short right to G.Little. Pass was caught out of bounds,10,7,2012 -20121209_KC@CLE,2,38,20,CLE,KC,2,10,86,(8:20) (Shotgun) J.Cribbs up the middle to CLV 17 for 3 yards (D.Poe). J. Cribbs took direct snap from QB position,10,7,2012 -20121209_KC@CLE,2,37,39,CLE,KC,3,7,83,(7:39) (Shotgun) B.Weeden pass short left to G.Little to CLV 28 for 11 yards (J.Arenas).,10,7,2012 -20121209_KC@CLE,2,37,11,CLE,KC,1,10,72,(7:11) M.Hardesty left end to CLV 31 for 3 yards (J.Arenas).,10,7,2012 -20121209_KC@CLE,2,36,33,CLE,KC,2,7,69,(6:33) B.Weeden sacked at CLV 25 for -6 yards (T.Jackson).,10,7,2012 -20121209_KC@CLE,2,35,58,CLE,KC,3,13,75,(5:58) (Shotgun) B.Weeden pass short right to G.Little to CLV 32 for 7 yards (B.Flowers). PENALTY on KC-B.Flowers Horse Collar Tackle 15 yards enforced at CLV 32.,10,7,2012 -20121209_KC@CLE,2,35,31,CLE,KC,1,10,53,(5:31) (Shotgun) B.Weeden pass incomplete short left to T.Richardson.,10,7,2012 -20121209_KC@CLE,2,35,26,CLE,KC,2,10,53,(5:26) T.Richardson left tackle to 50 for 3 yards (S.Smith). PENALTY on CLV-G.Little Illegal Block Above the Waist 10 yards enforced at 50.,10,7,2012 -20121209_KC@CLE,2,34,55,CLE,KC,2,17,60,(4:55) B.Weeden pass short middle to T.Richardson to CLV 49 for 9 yards (J.Houston).,10,7,2012 -20121209_KC@CLE,2,34,16,CLE,KC,3,8,51,(4:16) (Shotgun) B.Weeden pass incomplete short middle to J.Cameron (T.Jackson). Jackson batted pass at line,10,7,2012 -20121209_KC@CLE,2,34,11,CLE,KC,4,8,51,(4:11) (Punt formation) R.Hodges punts 30 yards to KC 21 Center-C.Yount fair catch by J.Arenas.,10,7,2012 -20121209_KC@CLE,2,34,3,KC,CLE,1,10,79,(4:03) B.Quinn pass short right to T.Copper to KC 38 for 17 yards (J.Haden).,7,10,2012 -20121209_KC@CLE,2,33,26,KC,CLE,1,10,62,(3:26) B.Quinn sacked at KC 35 for -3 yards (F.Rucker).,7,10,2012 -20121209_KC@CLE,2,32,52,KC,CLE,2,13,65,(2:52) J.Charles right guard to KC 40 for 5 yards (F.Rucker; D.Jackson).,7,10,2012 -20121209_KC@CLE,2,32,9,KC,CLE,3,8,60,(2:09) (Shotgun) B.Quinn pass incomplete deep right to J.Baldwin.,7,10,2012 -20121209_KC@CLE,2,32,4,KC,CLE,4,8,60,(2:04) (Punt formation) D.Colquitt punts 57 yards to CLV 3 Center-T.Gafford out of bounds.,7,10,2012 -20121209_KC@CLE,2,31,57,CLE,KC,1,10,97,(1:57) T.Richardson left guard to CLV 5 for 2 yards (S.Smith; R.Pitoitua).,10,7,2012 -20121209_KC@CLE,2,31,52,CLE,KC,2,8,95,(1:52) B.Weeden pass short left to J.Gordon to CLV 23 for 18 yards (T.Hartman; D.Johnson).,10,7,2012 -20121209_KC@CLE,2,31,16,CLE,KC,1,10,77,(1:16) B.Weeden sacked at CLV 15 for -8 yards (T.Hali).,10,7,2012 -20121209_KC@CLE,2,30,35,CLE,KC,2,18,85,(:35) T.Richardson right guard to CLV 18 for 3 yards (D.Poe; J.Houston).,10,7,2012 -20121209_KC@CLE,2,30,29,CLE,KC,3,15,82,(:29) (Shotgun) T.Richardson right guard to CLV 21 for 3 yards (T.Jackson).,10,7,2012 -20121209_KC@CLE,2,30,23,CLE,KC,4,12,79,(:23) (Punt formation) R.Hodges punts 33 yards to KC 46 Center-C.Yount. J.Arenas to KC 46 for no gain (B.Skrine; C.Robertson).,10,7,2012 -20121209_KC@CLE,2,30,15,KC,CLE,1,10,54,(:15) (Shotgun) S.Draughn right guard to KC 46 for no gain (B.Winn).,7,10,2012 -20121209_KC@CLE,3,30,0,KC,CLE,,,54,R.Succop kicks 48 yards from KC 35 to CLV 17 out of bounds.,7,10,2012 -20121209_KC@CLE,3,30,0,CLE,KC,1,10,60,(15:00) T.Benjamin left end to KC 45 for 15 yards (B.Flowers). Play was double reverse Weeden to Gordon to Benjamin left end,10,7,2012 -20121209_KC@CLE,3,29,30,CLE,KC,1,10,45,(14:30) B.Weeden pass short left to J.Gordon to KC 34 for 11 yards (J.Arenas).,10,7,2012 -20121209_KC@CLE,3,28,54,CLE,KC,1,10,34,(13:54) B.Weeden pass incomplete short left to B.Watson (E.Berry).,10,7,2012 -20121209_KC@CLE,3,28,47,CLE,KC,2,10,34,(13:47) B.Weeden pass short right to G.Little to KC 17 for 17 yards (T.Hali; R.Pitoitua).,10,7,2012 -20121209_KC@CLE,3,28,10,CLE,KC,1,10,17,(13:10) T.Richardson right guard to KC 13 for 4 yards (T.Hartman; R.Pitoitua).,10,7,2012 -20121209_KC@CLE,3,27,37,CLE,KC,2,6,13,(12:37) J.Cribbs left end to KC 1 for 12 yards (C.Greenwood). J. Cribbs took direct snap from QB position Cleveland challenged the runner broke the plane ruling and the play was Upheld. (Timeout #1.),10,7,2012 -20121209_KC@CLE,3,27,28,CLE,KC,1,1,1,(12:28) T.Richardson up the middle for 1 yard TOUCHDOWN.,10,7,2012 -20121209_KC@CLE,3,27,28,CLE,KC,,,1,(Kick formation) P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,10,7,2012 -20121209_KC@CLE,3,27,28,CLE,KC,,,1,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,17,7,2012 -20121209_KC@CLE,3,27,28,KC,CLE,1,10,80,(12:28) B.Quinn sacked at KC 19 for -1 yards (sack split by K.Maiava and D.Jackson).,7,17,2012 -20121209_KC@CLE,3,26,55,KC,CLE,2,11,81,(11:55) B.Quinn scrambles right guard to KC 23 for 4 yards (F.Rucker; A.Rubin).,7,17,2012 -20121209_KC@CLE,3,26,15,KC,CLE,3,7,77,(11:15) (Shotgun) B.Quinn pass short left intended for J.Baldwin INTERCEPTED by T.Gipson (S.Brown) at KC 36. T.Gipson to KC 13 for 23 yards (J.Baldwin). KC-B.Albert was injured during the play. S. Brown deflected pass at the 29 and Gipson intercepted pass at the 36,7,17,2012 -20121209_KC@CLE,3,26,5,CLE,KC,1,10,13,(11:05) B.Weeden pass short middle to J.Gordon to KC 2 for 11 yards (J.Arenas; B.Siler).,17,7,2012 -20121209_KC@CLE,3,25,25,CLE,KC,1,2,2,(10:25) B.Weeden pass incomplete short middle to G.Little. Pass thrown out of back of endzone,17,7,2012 -20121209_KC@CLE,3,25,20,CLE,KC,2,2,2,(10:20) T.Richardson left guard to KC 4 for -2 yards (T.Hartman).,17,7,2012 -20121209_KC@CLE,3,24,36,CLE,KC,3,4,4,(9:36) B.Weeden pass short right to B.Watson for 4 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CLV-B.Watson Illegal Shift 5 yards enforced at KC 4 - No Play.,17,7,2012 -20121209_KC@CLE,3,24,30,CLE,KC,3,9,9,(9:30) (Shotgun) B.Weeden pass short right to T.Richardson for 9 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CLV-T.Richardson Offensive Pass Interference 10 yards enforced at KC 9 - No Play.,17,7,2012 -20121209_KC@CLE,3,24,25,CLE,KC,3,19,19,(9:25) (Shotgun) B.Weeden pass short right to B.Watson to KC 6 for 13 yards (J.Arenas).,17,7,2012 -20121209_KC@CLE,3,23,45,CLE,KC,4,6,6,(8:45) (Field Goal formation) P.Dawson 24 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,17,7,2012 -20121209_KC@CLE,3,23,45,CLE,KC,,,6,P.Dawson kicks 70 yards from CLV 35 to KC -5. S.Draughn to KC 15 for 20 yards (L.Fort).,20,7,2012 -20121209_KC@CLE,3,23,39,KC,CLE,1,10,85,(8:39) J.Charles right guard to KC 19 for 4 yards (F.Rucker).,7,20,2012 -20121209_KC@CLE,3,23,10,KC,CLE,2,6,81,(8:10) J.Charles left end to KC 31 for 12 yards (U.Young).,7,20,2012 -20121209_KC@CLE,3,22,38,KC,CLE,1,10,69,(7:38) J.Charles right guard to KC 30 for -1 yards (P.Taylor).,7,20,2012 -20121209_KC@CLE,3,22,6,KC,CLE,2,11,70,(7:06) J.Charles right tackle to KC 32 for 2 yards (D.Jackson).,7,20,2012 -20121209_KC@CLE,3,21,26,KC,CLE,3,9,68,(6:26) (Shotgun) B.Quinn pass short middle to D.McCluster to KC 40 for 8 yards (D.Patterson; C.Robertson).,7,20,2012 -20121209_KC@CLE,3,20,54,KC,CLE,4,1,60,(5:54) (Punt formation) D.Colquitt punts 54 yards to CLV 6 Center-T.Gafford. J.Cribbs to CLV 18 for 12 yards (T.Copper).,7,20,2012 -20121209_KC@CLE,3,20,42,CLE,KC,1,10,82,(5:42) M.Hardesty right guard to CLV 26 for 8 yards (D.Poe). pitch out,20,7,2012 -20121209_KC@CLE,3,20,7,CLE,KC,2,2,74,(5:07) M.Hardesty left guard to CLV 27 for 1 yard (B.Siler).,20,7,2012 -20121209_KC@CLE,3,19,31,CLE,KC,3,1,73,(4:31) B.Weeden pass short right to B.Watson to CLV 34 for 7 yards (E.Berry).,20,7,2012 -20121209_KC@CLE,3,18,55,CLE,KC,1,10,66,(3:55) M.Hardesty right guard to KC 41 for 25 yards (J.Arenas).,20,7,2012 -20121209_KC@CLE,3,18,13,CLE,KC,1,10,41,(3:13) B.Weeden pass incomplete short left to M.Hardesty.,20,7,2012 -20121209_KC@CLE,3,18,7,CLE,KC,2,10,41,(3:07) PENALTY on CLV-S.Lauvao False Start 5 yards enforced at KC 41 - No Play.,20,7,2012 -20121209_KC@CLE,3,18,7,CLE,KC,2,15,46,(3:07) (Shotgun) B.Weeden pass short left to J.Gordon to KC 42 for 4 yards (J.Arenas).,20,7,2012 -20121209_KC@CLE,3,17,26,CLE,KC,3,11,42,(2:26) (Shotgun) B.Weeden pass short right to B.Watson to KC 19 for 23 yards (B.Flowers). B. Weeden scrambled to right before pass,20,7,2012 -20121209_KC@CLE,3,16,38,CLE,KC,1,10,19,(1:38) B.Weeden pass incomplete short middle to J.Gordon (T.Hartman).,20,7,2012 -20121209_KC@CLE,3,16,31,CLE,KC,2,10,19,(1:31) M.Hardesty right guard to KC 18 for 1 yard (T.Jackson).,20,7,2012 -20121209_KC@CLE,3,15,49,CLE,KC,3,9,18,(:49) G.Little left end to KC 1 for 17 yards (D.Johnson). G. Little lined up in backfield and took pitchout,20,7,2012 -20121209_KC@CLE,4,15,0,CLE,KC,1,1,1,(15:00) M.Hardesty right guard to KC 1 for no gain (D.Johnson). FUMBLES (D.Johnson) and recovers at KC 1.,20,7,2012 -20121209_KC@CLE,4,14,21,CLE,KC,2,1,1,(14:21) T.Richardson right guard for 1 yard TOUCHDOWN. T. Richardson's 9th rushing TD of season ties Jim Brown for most by a Browns rookie Running Back,20,7,2012 -20121209_KC@CLE,4,14,21,CLE,KC,,,1,(Kick formation) P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,20,7,2012 -20121209_KC@CLE,4,14,21,CLE,KC,,,1,P.Dawson kicks 54 yards from CLV 35 to KC 11. J.Bellamy to KC 20 for 9 yards (R.Ventrone).,27,7,2012 -20121209_KC@CLE,4,14,14,KC,CLE,1,10,80,(14:14) B.Quinn pass short right to T.Copper to KC 28 for 8 yards (C.Robertson).,7,27,2012 -20121209_KC@CLE,4,14,14,KC,CLE,2,2,72,(14:14) (No Huddle) J.Charles right tackle to KC 31 for 3 yards (B.Winn).,7,27,2012 -20121209_KC@CLE,4,13,22,KC,CLE,1,10,69,(13:22) B.Quinn sacked at KC 23 for -8 yards (J.Hughes).,7,27,2012 -20121209_KC@CLE,4,12,50,KC,CLE,2,18,77,(12:50) (Shotgun) B.Quinn pass short middle to T.Moeaki to KC 33 for 10 yards (D.Jackson).,7,27,2012 -20121209_KC@CLE,4,12,12,KC,CLE,3,8,67,(12:12) (Shotgun) B.Quinn pass incomplete short middle to J.Charles.,7,27,2012 -20121209_KC@CLE,4,12,12,KC,CLE,4,8,67,(12:12) (Punt formation) D.Colquitt punts 40 yards to CLV 27 Center-T.Gafford. J.Cribbs to KC 35 for 38 yards (B.Siler).,7,27,2012 -20121209_KC@CLE,4,11,54,CLE,KC,1,10,35,(11:54) T.Richardson left end to KC 29 for 6 yards (B.Siler).,27,7,2012 -20121209_KC@CLE,4,11,15,CLE,KC,2,4,29,(11:15) T.Richardson left guard to KC 21 for 8 yards (T.Hartman; E.Berry).,27,7,2012 -20121209_KC@CLE,4,10,33,CLE,KC,1,10,21,(10:33) T.Richardson left end to KC 27 for -6 yards (D.Johnson).,27,7,2012 -20121209_KC@CLE,4,9,55,CLE,KC,2,16,27,(9:55) (Shotgun) B.Weeden pass incomplete short left to J.Gordon.,27,7,2012 -20121209_KC@CLE,4,9,49,CLE,KC,3,16,27,(9:49) (Shotgun) B.Weeden pass short middle to J.Cameron to KC 17 for 10 yards (E.Berry).,27,7,2012 -20121209_KC@CLE,4,9,8,CLE,KC,4,6,17,(9:08) (Field Goal formation) P.Dawson 34 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,27,7,2012 -20121209_KC@CLE,4,9,8,CLE,KC,,,17,P.Dawson kicks 62 yards from CLV 35 to KC 3. J.Bellamy to KC 25 for 22 yards (J.Johnson).,30,7,2012 -20121209_KC@CLE,4,8,58,KC,CLE,1,10,75,(8:58) B.Quinn pass short left to J.Charles to KC 25 for no gain (C.Robertson). PENALTY on CLV-J.Parker Roughing the Passer 15 yards enforced at KC 25 - No Play.,7,30,2012 -20121209_KC@CLE,4,8,38,KC,CLE,1,10,60,(8:38) J.Charles left tackle to CLV 47 for 13 yards (T.Ward).,7,30,2012 -20121209_KC@CLE,4,8,15,KC,CLE,1,10,47,(8:15) (No Huddle) J.Charles right tackle to CLV 43 for 4 yards (C.Robertson; T.Ward).,7,30,2012 -20121209_KC@CLE,4,7,50,KC,CLE,2,6,43,(7:50) (Shotgun) B.Quinn pass short right to J.Newsome to CLV 18 for 25 yards (T.Gipson).,7,30,2012 -20121209_KC@CLE,4,7,16,KC,CLE,1,10,18,(7:16) (Shotgun) B.Quinn pass incomplete deep left to J.Newsome.,7,30,2012 -20121209_KC@CLE,4,7,11,KC,CLE,2,10,18,(7:11) (Shotgun) B.Quinn pass incomplete deep right to J.Newsome.,7,30,2012 -20121209_KC@CLE,4,7,11,KC,CLE,3,10,18,(7:11) PENALTY on KC Offensive 12 On-field 5 yards enforced at CLV 18 - No Play.,7,30,2012 -20121209_KC@CLE,4,7,6,KC,CLE,3,15,23,(7:06) (Shotgun) B.Quinn pass short left to T.Copper to CLV 16 for 7 yards (B.Skrine).,7,30,2012 -20121209_KC@CLE,4,6,27,KC,CLE,4,8,16,(6:27) (Shotgun) B.Quinn sacked at CLV 24 for -8 yards (J.Parker).,7,30,2012 -20121209_KC@CLE,4,6,20,CLE,KC,1,10,76,(6:20) T.Richardson left tackle to CLV 30 for 6 yards (T.Hali; R.Pitoitua).,30,7,2012 -20121209_KC@CLE,4,5,35,CLE,KC,2,4,70,(5:35) T.Richardson right guard to CLV 30 for no gain (R.Pitoitua).,30,7,2012 -20121209_KC@CLE,4,4,53,CLE,KC,3,4,70,(4:53) B.Weeden pass short right to J.Gordon to CLV 33 for 3 yards (J.Brown).,30,7,2012 -20121209_KC@CLE,4,4,10,CLE,KC,4,1,67,(4:10) (Punt formation) R.Hodges punts 53 yards to KC 14 Center-C.Yount. J.Arenas MUFFS catch touched at KC 14 and recovers at KC 14. J.Arenas to KC 14 for no gain (J.Bademosi).,30,7,2012 -20121209_KC@CLE,4,3,58,KC,CLE,1,10,86,(3:58) (Shotgun) B.Quinn pass incomplete deep right to J.Newsome.,7,30,2012 -20121209_KC@CLE,4,3,53,KC,CLE,2,10,86,(3:53) (Shotgun) B.Quinn pass incomplete short left to S.Draughn [B.Winn].,7,30,2012 -20121209_KC@CLE,4,3,48,KC,CLE,3,10,86,(3:48) (Shotgun) B.Quinn sacked at KC 5 for -9 yards (J.Sheard).,7,30,2012 -20121209_KC@CLE,4,3,18,KC,CLE,4,19,95,(3:18) (Punt formation) D.Colquitt punts 54 yards to CLV 41 Center-T.Gafford. J.Cribbs to CLV 42 for 1 yard (J.Bellamy).,7,30,2012 -20121209_KC@CLE,4,3,7,CLE,KC,1,10,58,(3:07) C. McCoy in at Quarterback M.Hardesty left guard to CLV 45 for 3 yards (E.Berry).,30,7,2012 -20121209_KC@CLE,4,2,23,CLE,KC,2,7,55,(2:23) M.Hardesty right guard to KC 47 for 8 yards (A.Studebaker).,30,7,2012 -20121209_KC@CLE,4,2,0,CLE,KC,1,10,47,(2:00) M.Hardesty left tackle to KC 48 for -1 yards (R.Pitoitua).,30,7,2012 -20121209_KC@CLE,4,1,15,CLE,KC,2,11,48,(1:15) C.McCoy kneels to KC 49 for -1 yards.,30,7,2012 -20121209_KC@CLE,4,0,33,CLE,KC,3,12,49,(:33) C.McCoy kneels to 50 for -1 yards.,30,7,2012 -20121209_KC@CLE,4,0,33,CLE,KC,,,49,                      ,30,7,2012 -20121209_TEN@IND,1,0,0,IND,TEN,,,49,P.McAfee kicks 74 yards from IND 35 to TEN -9. D.Reynaud Touchback.,0,0,2012 -20121209_TEN@IND,1,60,0,TEN,IND,1,10,80,(15:00) J.Locker pass short right to K.Britt pushed ob at TEN 29 for 9 yards (C.Vaughn).,0,0,2012 -20121209_TEN@IND,1,59,24,TEN,IND,2,1,71,(14:24) (Shotgun) J.Locker pass short left to K.Wright to TEN 31 for 2 yards (V.Davis).,0,0,2012 -20121209_TEN@IND,1,58,48,TEN,IND,1,10,69,(13:48) (Run formation) C.Johnson right tackle to TEN 33 for 2 yards (K.Conner).,0,0,2012 -20121209_TEN@IND,1,58,16,TEN,IND,2,8,67,(13:16) (Run formation) J.Locker scrambles right end ran ob at IND 35 for 32 yards (A.Bethea).,0,0,2012 -20121209_TEN@IND,1,57,41,TEN,IND,1,10,35,(12:41) (Run formation) C.Johnson left tackle to IND 32 for 3 yards (J.Lefeged).,0,0,2012 -20121209_TEN@IND,1,57,7,TEN,IND,2,7,32,(12:07) (Run formation) J.Locker pass short right to K.Britt ran ob at IND 22 for 10 yards.,0,0,2012 -20121209_TEN@IND,1,56,35,TEN,IND,1,10,22,(11:35) (Run formation) C.Johnson right end to IND 17 for 5 yards (C.Vaughn). PENALTY on TEN-C.Stevens Offensive Holding 10 yards enforced at IND 22 - No Play.,0,0,2012 -20121209_TEN@IND,1,56,14,TEN,IND,1,20,32,(11:14) (Shotgun) J.Locker pass short middle to K.Wright to IND 24 for 8 yards (V.Davis). Indianapolis challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20121209_TEN@IND,1,55,48,TEN,IND,2,12,24,(10:48) (Shotgun) J.Locker pass short right to C.Johnson pushed ob at IND 18 for 6 yards (D.Butler).,0,0,2012 -20121209_TEN@IND,1,55,16,TEN,IND,3,6,18,(10:16) (Shotgun) J.Locker pass deep middle to J.Cook for 18 yards TOUCHDOWN.,0,0,2012 -20121209_TEN@IND,1,55,16,TEN,IND,,,18,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121209_TEN@IND,1,55,16,TEN,IND,,,18,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,7,0,2012 -20121209_TEN@IND,1,55,10,IND,TEN,1,10,80,(10:10) (Run formation) V.Ballard up the middle to IND 20 for no gain (S.Marks).,0,7,2012 -20121209_TEN@IND,1,54,35,IND,TEN,2,10,80,(9:35) (Run formation) A.Luck pass incomplete deep right to C.Fleener [D.Morgan].,0,7,2012 -20121209_TEN@IND,1,54,28,IND,TEN,3,10,80,(9:28) (Shotgun) A.Luck pass incomplete deep right to T.Hilton.,0,7,2012 -20121209_TEN@IND,1,54,22,IND,TEN,4,10,80,(9:22) P.McAfee punts 54 yards to TEN 26 Center-M.Overton fair catch by D.Reynaud.,0,7,2012 -20121209_TEN@IND,1,54,14,TEN,IND,1,10,74,(9:14) (Run formation) C.Johnson right guard to TEN 31 for 5 yards (J.Lefeged).,7,0,2012 -20121209_TEN@IND,1,53,44,TEN,IND,2,5,69,(8:44) (Run formation) C.Johnson right tackle to TEN 36 for 5 yards (A.Bethea).,7,0,2012 -20121209_TEN@IND,1,53,1,TEN,IND,1,10,64,(8:01) (Run formation) C.Johnson up the middle to TEN 39 for 3 yards (K.Conner; R.Mathis).,7,0,2012 -20121209_TEN@IND,1,52,25,TEN,IND,2,7,61,(7:25) J.Locker pass short right to K.Britt to IND 45 for 16 yards (A.Bethea; C.Redding).,7,0,2012 -20121209_TEN@IND,1,51,49,TEN,IND,1,10,45,(6:49) (Run formation) C.Johnson left tackle to IND 41 for 4 yards (J.Freeman; V.Davis).,7,0,2012 -20121209_TEN@IND,1,51,3,TEN,IND,2,6,41,(6:03) (Run formation) D.Reynaud up the middle to IND 39 for 2 yards (J.Freeman).,7,0,2012 -20121209_TEN@IND,1,50,23,TEN,IND,3,4,39,(5:23) (Shotgun) J.Locker pass incomplete short right to K.Wright (C.Redding).,7,0,2012 -20121209_TEN@IND,1,50,17,TEN,IND,4,4,39,(5:17) R.Bironas 57 yard field goal is No Good Wide Right Center-B.Brinkley Holder-B.Kern.,7,0,2012 -20121209_TEN@IND,1,50,12,IND,TEN,1,10,53,(5:12) V.Ballard up the middle to IND 47 for no gain (S.Marks; J.Babineaux).,0,7,2012 -20121209_TEN@IND,1,49,33,IND,TEN,2,10,53,(4:33) (Shotgun) A.Luck pass short middle to T.Hilton to TEN 17 for 36 yards (R.Mouton).,0,7,2012 -20121209_TEN@IND,1,48,46,IND,TEN,1,10,17,(3:46) V.Ballard right tackle to TEN 10 for 7 yards (J.Casey; W.Witherspoon).,0,7,2012 -20121209_TEN@IND,1,48,15,IND,TEN,2,3,10,(3:15) (Run formation) V.Ballard left end to TEN 11 for -1 yards (M.Griffin).,0,7,2012 -20121209_TEN@IND,1,47,33,IND,TEN,3,4,11,(2:33) (Shotgun) A.Luck pass short middle to V.Ballard to TEN 1 for 10 yards (W.Witherspoon; C.Sensabaugh).,0,7,2012 -20121209_TEN@IND,1,46,51,IND,TEN,1,1,1,(1:51) (Run formation) A.Shipley reported in as eligible. D.Carter left end to TEN 4 for -3 yards (M.Martin).,0,7,2012 -20121209_TEN@IND,1,46,6,IND,TEN,2,4,4,(1:06) A.Luck pass short middle to R.Wayne for 4 yards TOUCHDOWN.,0,7,2012 -20121209_TEN@IND,1,46,6,IND,TEN,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,7,2012 -20121209_TEN@IND,1,46,6,IND,TEN,,,4,P.McAfee kicks 74 yards from IND 35 to TEN -9. D.Reynaud Touchback.,7,7,2012 -20121209_TEN@IND,1,46,1,TEN,IND,1,10,80,(1:01) (Run formation) C.Johnson right end pushed ob at TEN 22 for 2 yards (C.Vaughn).,7,7,2012 -20121209_TEN@IND,1,45,23,TEN,IND,2,8,78,(:23) (Shotgun) J.Locker pass incomplete short left to J.Cook. PENALTY on IND-C.Redding Defensive Holding 5 yards enforced at TEN 22 - No Play.,7,7,2012 -20121209_TEN@IND,1,45,17,TEN,IND,1,10,73,(:17) (Run formation) J.Locker pass incomplete deep left to K.Britt. PENALTY on TEN-K.Britt Offensive Pass Interference 10 yards enforced at TEN 27 - No Play.,7,7,2012 -20121209_TEN@IND,1,45,11,TEN,IND,1,20,83,(:11) (Shotgun) C.Johnson up the middle to TEN 15 for -2 yards (R.Mathis; A.Bethea).,7,7,2012 -20121209_TEN@IND,2,45,0,TEN,IND,2,22,85,(15:00) (Shotgun) J.Locker pass short right to K.Wright to TEN 29 for 14 yards (J.Freeman; J.Lefeged).,7,7,2012 -20121209_TEN@IND,2,44,15,TEN,IND,3,8,71,(14:15) (Shotgun) J.Locker pass deep right to K.Britt pushed ob at IND 25 for 46 yards (C.Vaughn).,7,7,2012 -20121209_TEN@IND,2,43,53,TEN,IND,1,10,25,(13:53) (Run formation) C.Johnson right tackle to IND 22 for 3 yards (J.Freeman).,7,7,2012 -20121209_TEN@IND,2,43,20,TEN,IND,2,7,22,(13:20) (Run formation) C.Johnson right tackle to IND 22 for no gain (L.Guy; J.Freeman).,7,7,2012 -20121209_TEN@IND,2,42,38,TEN,IND,3,7,22,(12:38) (Shotgun) J.Locker pass incomplete deep left to N.Washington.,7,7,2012 -20121209_TEN@IND,2,42,32,TEN,IND,4,7,22,(12:32) R.Bironas 40 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,7,7,2012 -20121209_TEN@IND,2,42,32,TEN,IND,,,22,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,10,7,2012 -20121209_TEN@IND,2,42,27,IND,TEN,1,10,80,(12:27) A.Luck pass incomplete deep middle to C.Fleener.,7,10,2012 -20121209_TEN@IND,2,42,21,IND,TEN,2,10,80,(12:21) (Pass formation) A.Luck pass short right to T.Hilton to IND 34 for 14 yards (J.Babineaux).,7,10,2012 -20121209_TEN@IND,2,41,42,IND,TEN,1,10,66,(11:42) (Run formation) A.Luck pass incomplete deep left to C.Fleener.,7,10,2012 -20121209_TEN@IND,2,41,37,IND,TEN,2,10,66,(11:37) (Run formation) D.Carter right tackle to IND 37 for 3 yards (J.McCourty).,7,10,2012 -20121209_TEN@IND,2,40,56,IND,TEN,3,7,63,(10:56) (Shotgun) A.Luck sacked at IND 29 for -8 yards (D.Morgan).,7,10,2012 -20121209_TEN@IND,2,40,20,IND,TEN,4,15,71,(10:20) P.McAfee punts 54 yards to TEN 17 Center-M.Overton. D.Reynaud to TEN 31 for 14 yards (K.Conner).,7,10,2012 -20121209_TEN@IND,2,40,7,TEN,IND,1,10,69,(10:07) (Run formation) J.Locker pass incomplete short right [A.Bethea]. PENALTY on TEN-J.Locker Intentional Grounding 10 yards enforced at TEN 31.,10,7,2012 -20121209_TEN@IND,2,40,2,TEN,IND,2,20,79,(10:02) (Run formation) C.Johnson up the middle to TEN 22 for 1 yard (K.Conner).,10,7,2012 -20121209_TEN@IND,2,39,8,TEN,IND,3,19,78,(9:08) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 31 for 9 yards (J.Hughes).,10,7,2012 -20121209_TEN@IND,2,38,29,TEN,IND,4,10,69,(8:29) B.Kern punts 53 yards to IND 16 Center-B.Brinkley out of bounds. PENALTY on IND-J.Hughes Unsportsmanlike Conduct 8 yards enforced at IND 16.,10,7,2012 -20121209_TEN@IND,2,38,21,IND,TEN,1,10,92,(8:21) A.Luck pass short right to R.Wayne to IND 17 for 9 yards (W.Witherspoon).,7,10,2012 -20121209_TEN@IND,2,37,47,IND,TEN,2,1,83,(7:47) (Run formation) V.Ballard right tackle to IND 21 for 4 yards (J.Babineaux).,7,10,2012 -20121209_TEN@IND,2,37,11,IND,TEN,1,10,79,(7:11) R.Wayne right end to IND 16 for -5 yards (J.McCourty).,7,10,2012 -20121209_TEN@IND,2,36,32,IND,TEN,2,15,84,(6:32) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 32 for 16 yards (J.McCourty). Penalty on TEN-J.Casey Defensive Offside declined.,7,10,2012 -20121209_TEN@IND,2,36,9,IND,TEN,1,10,68,(6:09) V.Ballard left guard to IND 40 for 8 yards (W.Witherspoon).,7,10,2012 -20121209_TEN@IND,2,35,32,IND,TEN,2,2,60,(5:32) (Run formation) V.Ballard up the middle to IND 39 for -1 yards (A.Ayers).,7,10,2012 -20121209_TEN@IND,2,34,51,IND,TEN,3,3,61,(4:51) (Shotgun) A.Luck pass short middle intended for R.Wayne INTERCEPTED by W.Witherspoon [D.Morgan] at IND 40. W.Witherspoon for 40 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,7,10,2012 -20121209_TEN@IND,2,34,51,TEN,IND,,,61,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,10,7,2012 -20121209_TEN@IND,2,34,51,TEN,IND,,,61,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,17,7,2012 -20121209_TEN@IND,2,34,40,IND,TEN,1,10,80,(4:40) (Run formation) A.Luck pass short right to D.Carter to IND 33 for 13 yards (T.Shaw) [K.Klug]. FUMBLES (T.Shaw) touched at IND 36 recovered by IND-R.Wayne at IND 39. R.Wayne to IND 39 for no gain (A.Verner).,7,17,2012 -20121209_TEN@IND,2,33,47,IND,TEN,1,10,61,(3:47) (Run formation) A.Luck sacked at IND 33 for -6 yards (K.Klug).,7,17,2012 -20121209_TEN@IND,2,33,6,IND,TEN,2,16,67,(3:06) (Shotgun) A.Luck pass short left to C.Fleener to IND 42 for 9 yards (Z.Brown). IND-C.Fleener was injured during the play.,7,17,2012 -20121209_TEN@IND,2,32,32,IND,TEN,3,7,58,(2:32) (Shotgun) A.Luck sacked at IND 32 for -10 yards (K.Klug).,7,17,2012 -20121209_TEN@IND,2,32,0,IND,TEN,4,17,68,(2:00) P.McAfee punts 53 yards to TEN 15 Center-M.Overton out of bounds.,7,17,2012 -20121209_TEN@IND,2,31,51,TEN,IND,1,10,85,(1:51) (Shotgun) J.Locker pass short right to K.Wright pushed ob at TEN 21 for 6 yards (C.Vaughn).,17,7,2012 -20121209_TEN@IND,2,31,46,TEN,IND,2,4,79,(1:46) (Shotgun) J.Locker pass short right to K.Wright pushed ob at TEN 30 for 9 yards (C.Vaughn).,17,7,2012 -20121209_TEN@IND,2,31,42,TEN,IND,1,10,70,(1:42) (No Huddle Shotgun) J.Locker pass incomplete short middle to C.Johnson [C.Redding].,17,7,2012 -20121209_TEN@IND,2,31,37,TEN,IND,2,10,70,(1:37) (Shotgun) J.Locker pass short right to M.Preston to TEN 41 for 11 yards (C.Vaughn).,17,7,2012 -20121209_TEN@IND,2,31,14,TEN,IND,1,10,59,(1:14) (No Huddle Shotgun) J.Locker pass deep left to K.Britt to IND 13 for 46 yards (V.Davis). Penalty on IND-V.Davis Defensive Pass Interference declined.,17,7,2012 -20121209_TEN@IND,2,31,6,TEN,IND,1,10,13,(1:06) (Shotgun) J.Locker pass incomplete short right to K.Wright.,17,7,2012 -20121209_TEN@IND,2,31,2,TEN,IND,2,10,13,(1:02) (Shotgun) J.Locker pass short right to J.Cook pushed ob at IND 10 for 3 yards (M.Fokou).,17,7,2012 -20121209_TEN@IND,2,30,56,TEN,IND,3,7,10,(:56) (Shotgun) J.Locker sacked at IND 13 for -3 yards (V.Davis).,17,7,2012 -20121209_TEN@IND,2,30,40,TEN,IND,4,10,13,(:40) R.Bironas 31 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,17,7,2012 -20121209_TEN@IND,2,30,40,TEN,IND,,,13,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,20,7,2012 -20121209_TEN@IND,2,30,37,IND,TEN,1,10,80,(:37) (Shotgun) A.Luck pass incomplete short left to D.Avery (A.Verner) [D.Morgan].,7,20,2012 -20121209_TEN@IND,2,30,33,IND,TEN,2,10,80,(:33) (Shotgun) A.Luck pass short left to D.Avery ran ob at IND 32 for 12 yards.,7,20,2012 -20121209_TEN@IND,2,30,29,IND,TEN,1,10,68,(:29) (Shotgun) A.Luck pass incomplete deep left to D.Avery [Z.Brown].,7,20,2012 -20121209_TEN@IND,2,30,22,IND,TEN,2,10,68,(:22) (Shotgun) A.Luck pass incomplete short right to D.Allen (C.Sensabaugh).,7,20,2012 -20121209_TEN@IND,2,30,17,IND,TEN,3,10,68,(:17) (Shotgun) A.Luck pass incomplete short middle to R.Wayne. IND-S.Satele was injured during the play. His return is Questionable. PENALTY on TEN-J.Babineaux Defensive Pass Interference 15 yards enforced at IND 32 - No Play.,7,20,2012 -20121209_TEN@IND,2,30,12,IND,TEN,1,10,53,(:12) (Shotgun) A.Luck pass incomplete short left to D.Avery.,7,20,2012 -20121209_TEN@IND,2,30,5,IND,TEN,2,10,53,(:05) (Shotgun) A.Luck pass deep middle intended for T.Hilton INTERCEPTED by A.Afalava at TEN 0. Touchback.,7,20,2012 -20121209_TEN@IND,3,30,0,TEN,IND,,,53,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,20,7,2012 -20121209_TEN@IND,3,30,0,IND,TEN,1,10,80,(15:00) A.Luck scrambles right end ran ob at IND 29 for 9 yards (J.Casey).,7,20,2012 -20121209_TEN@IND,3,29,31,IND,TEN,2,1,71,(14:31) V.Ballard left tackle to IND 37 for 8 yards (C.Sensabaugh).,7,20,2012 -20121209_TEN@IND,3,28,54,IND,TEN,1,10,63,(13:54) V.Ballard up the middle to IND 40 for 3 yards (M.Griffin; J.Casey).,7,20,2012 -20121209_TEN@IND,3,28,21,IND,TEN,2,7,60,(13:21) (Run formation) T.Hilton left end pushed ob at IND 38 for -2 yards (A.Verner).,7,20,2012 -20121209_TEN@IND,3,27,44,IND,TEN,3,9,62,(12:44) (Shotgun) A.Luck pass short middle to R.Wayne to 50 for 12 yards (R.Mouton).,7,20,2012 -20121209_TEN@IND,3,27,8,IND,TEN,1,10,50,(12:08) V.Ballard left end to TEN 37 for 13 yards (M.Martin; M.Griffin).,7,20,2012 -20121209_TEN@IND,3,26,37,IND,TEN,1,10,37,(11:37) A.Luck pass incomplete short middle to R.Wayne.,7,20,2012 -20121209_TEN@IND,3,26,31,IND,TEN,2,10,37,(11:31) A.Luck sacked at TEN 38 for -1 yards (J.Wynn).,7,20,2012 -20121209_TEN@IND,3,25,49,IND,TEN,3,11,38,(10:49) (Shotgun) A.Luck pass deep right to R.Wayne to TEN 18 for 20 yards (J.Babineaux).,7,20,2012 -20121209_TEN@IND,3,25,1,IND,TEN,1,10,18,(10:01) (Run formation) A.Luck pass incomplete short left to R.Wayne.,7,20,2012 -20121209_TEN@IND,3,24,55,IND,TEN,2,10,18,(9:55) V.Ballard up the middle to TEN 7 for 11 yards (J.Babineaux).,7,20,2012 -20121209_TEN@IND,3,24,14,IND,TEN,1,7,7,(9:14) V.Ballard up the middle to TEN 1 for 6 yards (J.Babineaux).,7,20,2012 -20121209_TEN@IND,3,23,43,IND,TEN,2,1,1,(8:43) (No Huddle) A.Luck pass incomplete short left to D.Avery (A.Verner).,7,20,2012 -20121209_TEN@IND,3,23,39,IND,TEN,3,1,1,(8:39) (Run formation) T.Hills reported in as eligible. D.Carter up the middle for 1 yard TOUCHDOWN.,7,20,2012 -20121209_TEN@IND,3,23,39,IND,TEN,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,20,2012 -20121209_TEN@IND,3,23,39,IND,TEN,,,1,P.McAfee kicks 74 yards from IND 35 to TEN -9. D.Reynaud Touchback.,14,20,2012 -20121209_TEN@IND,3,23,36,TEN,IND,1,10,80,(8:36) (Run formation) J.Locker pass incomplete short right to N.Washington (R.Mathis).,20,14,2012 -20121209_TEN@IND,3,23,32,TEN,IND,2,10,80,(8:32) (Run formation) PENALTY on TEN-C.Stevens False Start 5 yards enforced at TEN 20 - No Play.,20,14,2012 -20121209_TEN@IND,3,23,32,TEN,IND,2,15,85,(8:32) (Run formation) J.Locker pass short left to K.Britt to TEN 21 for 6 yards (V.Davis).,20,14,2012 -20121209_TEN@IND,3,22,54,TEN,IND,3,9,79,(7:54) (Shotgun) J.Locker pass incomplete deep right to N.Washington (C.Vaughn).,20,14,2012 -20121209_TEN@IND,3,22,48,TEN,IND,4,9,79,(7:48) B.Kern punts 55 yards to IND 24 Center-B.Brinkley. T.Hilton to IND 41 for 17 yards (B.Brinkley).,20,14,2012 -20121209_TEN@IND,3,22,34,IND,TEN,1,10,59,(7:34) V.Ballard up the middle to IND 41 for no gain (S.Marks).,14,20,2012 -20121209_TEN@IND,3,21,58,IND,TEN,2,10,59,(6:58) (Shotgun) A.Luck pass short right to D.Avery to IND 42 for 1 yard (W.Witherspoon).,14,20,2012 -20121209_TEN@IND,3,21,17,IND,TEN,3,9,58,(6:17) (Shotgun) PENALTY on TEN-D.Morgan Neutral Zone Infraction 5 yards enforced at IND 42 - No Play.,14,20,2012 -20121209_TEN@IND,3,20,54,IND,TEN,3,4,53,(5:54) (Shotgun) A.Luck pass incomplete short middle to D.Allen (W.Witherspoon).,14,20,2012 -20121209_TEN@IND,3,20,48,IND,TEN,4,4,53,(5:48) P.McAfee punts 52 yards to TEN 1 Center-M.Overton out of bounds.,14,20,2012 -20121209_TEN@IND,3,20,40,TEN,IND,1,10,99,(5:40) (Run formation) J.Locker pass short right intended for N.Washington INTERCEPTED by C.Vaughn at TEN 3. C.Vaughn for 3 yards TOUCHDOWN.,20,14,2012 -20121209_TEN@IND,3,20,40,IND,TEN,,,99,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,20,2012 -20121209_TEN@IND,3,20,40,IND,TEN,,,99,P.McAfee kicks 74 yards from IND 35 to TEN -9. M.Griffin Touchback.,21,20,2012 -20121209_TEN@IND,3,20,36,TEN,IND,1,10,80,(5:36) (Run formation) J.Locker pass short right to C.Johnson to TEN 20 for no gain (C.Vaughn).,20,21,2012 -20121209_TEN@IND,3,19,56,TEN,IND,2,10,80,(4:56) J.Locker pass short left to J.Cook to TEN 19 for -1 yards (V.Davis).,20,21,2012 -20121209_TEN@IND,3,19,15,TEN,IND,3,11,81,(4:15) (Shotgun) J.Locker pass short right to C.Stevens to TEN 38 for 19 yards (C.Vaughn).,20,21,2012 -20121209_TEN@IND,3,18,35,TEN,IND,1,10,62,(3:35) (Run formation) C.Johnson up the middle to TEN 39 for 1 yard (J.Lefeged).,20,21,2012 -20121209_TEN@IND,3,17,55,TEN,IND,2,9,61,(2:55) (Run formation) C.Johnson right end to TEN 40 for 1 yard (L.Guy).,20,21,2012 -20121209_TEN@IND,3,17,8,TEN,IND,3,8,60,(2:08) (Shotgun) J.Locker sacked at TEN 33 for -7 yards (R.Mathis). PENALTY on IND-M.Fokou Defensive Holding 5 yards enforced at TEN 40 - No Play.,20,21,2012 -20121209_TEN@IND,3,16,42,TEN,IND,1,10,55,(1:42) (Run formation) C.Johnson up the middle to TEN 49 for 4 yards (P.Angerer).,20,21,2012 -20121209_TEN@IND,3,16,9,TEN,IND,2,6,51,(1:09) (Run formation) PENALTY on TEN-F.Velasco False Start 5 yards enforced at TEN 49 - No Play.,20,21,2012 -20121209_TEN@IND,3,15,43,TEN,IND,2,11,56,(:43) (Shotgun) J.Locker pass short left to K.Britt to 50 for 6 yards (P.Angerer; D.Butler).,20,21,2012 -20121209_TEN@IND,4,15,0,TEN,IND,3,5,50,(15:00) (Shotgun) J.Locker pass incomplete short middle to C.Stevens (A.Bethea). PENALTY on IND-A.Bethea Defensive Pass Interference 10 yards enforced at 50 - No Play.,20,21,2012 -20121209_TEN@IND,4,14,53,TEN,IND,1,10,40,(14:53) (Shotgun) J.Locker pass incomplete short left to K.Wright.,20,21,2012 -20121209_TEN@IND,4,14,50,TEN,IND,2,10,40,(14:50) (Run formation) C.Johnson up the middle to IND 32 for 8 yards (M.Fokou).,20,21,2012 -20121209_TEN@IND,4,14,10,TEN,IND,3,2,32,(14:10) (Shotgun) J.Locker up the middle to IND 21 for 11 yards (J.Freeman).,20,21,2012 -20121209_TEN@IND,4,13,28,TEN,IND,1,10,21,(13:28) C.Johnson up the middle to IND 20 for 1 yard (P.Angerer).,20,21,2012 -20121209_TEN@IND,4,12,53,TEN,IND,2,9,20,(12:53) (Run formation) J.Locker pass short right to N.Washington pushed ob at IND 5 for 15 yards (J.Hughes).,20,21,2012 -20121209_TEN@IND,4,12,24,TEN,IND,1,5,5,(12:24) (Run formation) C.Johnson left end to IND 10 for -5 yards (V.Davis).,20,21,2012 -20121209_TEN@IND,4,11,45,TEN,IND,2,10,10,(11:45) (Run formation) J.Locker scrambles right end to IND 2 for 8 yards (J.Freeman; D.Freeney).,20,21,2012 -20121209_TEN@IND,4,10,59,TEN,IND,3,2,2,(10:59) PENALTY on TEN-F.Velasco False Start 5 yards enforced at IND 2 - No Play.,20,21,2012 -20121209_TEN@IND,4,10,37,TEN,IND,3,7,7,(10:37) (Shotgun) J.Locker pass incomplete short left to N.Washington (V.Davis).,20,21,2012 -20121209_TEN@IND,4,10,33,TEN,IND,4,7,7,(10:33) R.Bironas 25 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,20,21,2012 -20121209_TEN@IND,4,10,33,TEN,IND,,,7,R.Bironas kicks 74 yards from TEN 35 to IND -9. C.Vaughn Touchback.,23,21,2012 -20121209_TEN@IND,4,10,28,IND,TEN,1,10,80,(10:28) V.Ballard up the middle to IND 25 for 5 yards (Z.Brown).,21,23,2012 -20121209_TEN@IND,4,9,52,IND,TEN,2,5,75,(9:52) (Shotgun) A.Luck pass short right to R.Wayne pushed ob at IND 28 for 3 yards (C.Sensabaugh).,21,23,2012 -20121209_TEN@IND,4,9,27,IND,TEN,3,2,72,(9:27) A.Luck FUMBLES (Aborted) at IND 27 RECOVERED by TEN-Z.Brown at IND 23. Z.Brown to IND 23 for no gain (V.Ballard). PENALTY on TEN-W.Witherspoon Defensive Offside 5 yards enforced at IND 28 - No Play.,21,23,2012 -20121209_TEN@IND,4,9,27,IND,TEN,1,10,67,(9:27) PENALTY on IND-A.Luck Delay of Game 5 yards enforced at IND 33 - No Play.,21,23,2012 -20121209_TEN@IND,4,9,22,IND,TEN,1,15,72,(9:22) (Shotgun) A.Luck pass incomplete short right to D.Avery.,21,23,2012 -20121209_TEN@IND,4,9,18,IND,TEN,2,15,72,(9:18) (Shotgun) A.Luck pass deep right to D.Avery to IND 46 for 18 yards (M.Griffin; J.McCourty).,21,23,2012 -20121209_TEN@IND,4,8,36,IND,TEN,1,10,54,(8:36) A.Luck pass incomplete deep left to T.Hilton (K.Klug).,21,23,2012 -20121209_TEN@IND,4,8,32,IND,TEN,2,10,54,(8:32) V.Ballard left end to TEN 40 for 14 yards (J.Babineaux).,21,23,2012 -20121209_TEN@IND,4,7,50,IND,TEN,1,10,43,(7:50) (Run formation) A.Luck FUMBLES (Aborted) at TEN 41 and recovers at TEN 43. A.Luck to TEN 43 for no gain (J.Wynn).,21,23,2012 -20121209_TEN@IND,4,7,16,IND,TEN,2,13,43,(7:16) (Shotgun) A.Luck pass short right to L.Brazill to TEN 35 for 8 yards (J.McCourty).,21,23,2012 -20121209_TEN@IND,4,6,38,IND,TEN,3,5,35,(6:38) (Shotgun) A.Luck pass incomplete deep right to D.Avery.,21,23,2012 -20121209_TEN@IND,4,6,28,IND,TEN,4,5,35,(6:28) A.Vinatieri 53 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,21,23,2012 -20121209_TEN@IND,4,6,28,IND,TEN,,,35,P.McAfee kicks 74 yards from IND 35 to TEN -9. D.Reynaud Touchback.,24,23,2012 -20121209_TEN@IND,4,6,23,TEN,IND,1,10,80,(6:23) C.Johnson up the middle to TEN 22 for 2 yards (A.Bethea).,23,24,2012 -20121209_TEN@IND,4,5,42,TEN,IND,2,8,78,(5:42) (Shotgun) J.Locker pass short right intended for N.Washington INTERCEPTED by D.Butler at TEN 35. D.Butler to TEN 28 for 7 yards (M.Roos).,23,24,2012 -20121209_TEN@IND,4,5,32,IND,TEN,1,10,28,(5:32) (Run formation) V.Ballard up the middle to TEN 25 for 3 yards (S.Marks).,24,23,2012 -20121209_TEN@IND,4,4,44,IND,TEN,2,7,25,(4:44) (Run formation) D.Avery right end to TEN 22 for 3 yards (J.McCourty).,24,23,2012 -20121209_TEN@IND,4,3,59,IND,TEN,3,4,22,(3:59) (Shotgun) A.Luck pass incomplete deep left to R.Wayne.,24,23,2012 -20121209_TEN@IND,4,3,53,IND,TEN,4,4,22,(3:53) A.Vinatieri 40 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,24,23,2012 -20121209_TEN@IND,4,3,53,IND,TEN,,,22,P.McAfee kicks 74 yards from IND 35 to TEN -9. D.Reynaud Touchback.,27,23,2012 -20121209_TEN@IND,4,3,48,TEN,IND,1,10,80,(3:48) (Shotgun) J.Locker pass short left to K.Britt pushed ob at TEN 24 for 4 yards (M.Fokou).,23,27,2012 -20121209_TEN@IND,4,3,41,TEN,IND,2,6,76,(3:41) (Shotgun) C.Johnson right tackle to TEN 30 for 6 yards (A.Bethea; J.Freeman).,23,27,2012 -20121209_TEN@IND,4,3,22,TEN,IND,1,10,70,(3:22) J.Locker up the middle to TEN 30 for no gain (C.Redding).,23,27,2012 -20121209_TEN@IND,4,3,1,TEN,IND,2,10,70,(3:01) (Shotgun) J.Locker pass incomplete short right to K.Wright (C.Vaughn) [R.Mathis].,23,27,2012 -20121209_TEN@IND,4,2,57,TEN,IND,3,10,70,(2:57) (Shotgun) J.Locker pass incomplete deep left to K.Britt.,23,27,2012 -20121209_TEN@IND,4,2,52,TEN,IND,4,10,70,(2:52) B.Kern punts 57 yards to IND 13 Center-B.Brinkley. T.Hilton pushed ob at IND 20 for 7 yards (P.Bailey). PENALTY on IND-C.Vaughn Personal Foul 10 yards enforced at IND 20.,23,27,2012 -20121209_TEN@IND,4,2,42,IND,TEN,1,10,90,(2:42) (Run formation) V.Ballard up the middle to IND 11 for 1 yard (D.Morgan).,27,23,2012 -20121209_TEN@IND,4,2,37,IND,TEN,2,9,89,(2:37) (Run formation) V.Ballard left end to IND 24 for 13 yards (D.Morgan).,27,23,2012 -20121209_TEN@IND,4,2,30,IND,TEN,1,10,76,(2:30) (Run formation) V.Ballard up the middle to IND 24 for no gain (J.Babineaux; A.Ayers).,27,23,2012 -20121209_TEN@IND,4,2,25,IND,TEN,2,10,76,(2:25) (Run formation) A.Luck pass short middle to D.Allen to IND 35 for 11 yards (Z.Brown).,27,23,2012 -20121209_TEN@IND,4,2,0,IND,TEN,1,10,65,(2:00) A.Luck kneels to IND 34 for -1 yards.,27,23,2012 -20121209_TEN@IND,4,1,19,IND,TEN,2,11,66,(1:19) A.Luck kneels to IND 34 for no gain.,27,23,2012 -20121209_TEN@IND,4,0,39,IND,TEN,3,11,66,(:39) A.Luck kneels to IND 33 for -1 yards.,27,23,2012 -20121209_TEN@IND,4,0,39,IND,TEN,,,66,                      ,27,23,2012 -20121209_NYJ@JAC,1,0,0,JAC,NYJ,,,66,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,0,0,2012 -20121209_NYJ@JAC,1,60,0,NYJ,JAC,1,10,80,(15:00) S.Greene right guard to NYJ 23 for 3 yards (R.Allen).,0,0,2012 -20121209_NYJ@JAC,1,59,26,NYJ,JAC,2,7,77,(14:26) S.Greene up the middle to NYJ 25 for 2 yards (C.Mosley).,0,0,2012 -20121209_NYJ@JAC,1,58,46,NYJ,JAC,3,5,75,(13:46) (Shotgun) M.Sanchez pass short right to M.Gilyard to NYJ 29 for 4 yards (D.Landry).,0,0,2012 -20121209_NYJ@JAC,1,57,59,NYJ,JAC,4,1,71,(12:59) (Punt formation) R.Malone punts 38 yards to JAX 33 Center-T.Purdum fair catch by Q.Cosby.,0,0,2012 -20121209_NYJ@JAC,1,57,52,JAC,NYJ,1,10,67,(12:52) M.Owens up the middle to JAX 41 for 8 yards (D.Harris).,0,0,2012 -20121209_NYJ@JAC,1,57,20,JAC,NYJ,2,2,59,(12:20) M.Owens up the middle to JAX 44 for 3 yards (B.Thomas).,0,0,2012 -20121209_NYJ@JAC,1,56,35,JAC,NYJ,1,10,56,(11:35) R.Murphy up the middle to JAX 47 for 3 yards (D.Harris).,0,0,2012 -20121209_NYJ@JAC,1,55,59,JAC,NYJ,2,7,53,(10:59) C.Henne pass short right to G.Whimper to NYJ 43 for 10 yards (Y.Bell).,0,0,2012 -20121209_NYJ@JAC,1,55,18,JAC,NYJ,1,10,43,(10:18) M.Owens left end to NYJ 39 for 4 yards (L.Landry).,0,0,2012 -20121209_NYJ@JAC,1,54,42,JAC,NYJ,2,6,39,(9:42) C.Henne pass short right to Z.Potter to NYJ 37 for 2 yards (D.Harris; Y.Bell).,0,0,2012 -20121209_NYJ@JAC,1,53,59,JAC,NYJ,3,4,37,(8:59) (Shotgun) C.Henne pass short left to J.Blackmon to NYJ 33 for 4 yards (K.Wilson).,0,0,2012 -20121209_NYJ@JAC,1,53,20,JAC,NYJ,1,10,33,(8:20) (Shotgun) C.Henne pass short left to J.Blackmon ran ob at NYJ 27 for 6 yards.,0,0,2012 -20121209_NYJ@JAC,1,52,51,JAC,NYJ,2,4,27,(7:51) J.Todman left end to NYJ 25 for 2 yards (M.Wilkerson).,0,0,2012 -20121209_NYJ@JAC,1,52,18,JAC,NYJ,3,2,25,(7:18) (Shotgun) Direct snap to M.Owens. M.Owens up the middle to NYJ 24 for 1 yard (K.Ellis).,0,0,2012 -20121209_NYJ@JAC,1,51,39,JAC,NYJ,4,1,24,(6:39) G.Jones up the middle to NYJ 20 for 4 yards (D.Harris; S.Pouha).,0,0,2012 -20121209_NYJ@JAC,1,51,4,JAC,NYJ,1,10,20,(6:04) M.Owens up the middle to NYJ 16 for 4 yards (K.Wilson).,0,0,2012 -20121209_NYJ@JAC,1,50,28,JAC,NYJ,2,6,16,(5:28) C.Henne pass short right to G.Jones to NYJ 11 for 5 yards (K.Wilson).,0,0,2012 -20121209_NYJ@JAC,1,49,48,JAC,NYJ,3,1,11,(4:48) C.Henne pass short middle intended for M.Lewis INTERCEPTED by B.Scott [G.McIntyre] at NYJ 6. B.Scott to NYJ 17 for 11 yards (G.Whimper).,0,0,2012 -20121209_NYJ@JAC,1,49,38,NYJ,JAC,1,10,83,(4:38) (Shotgun) M.Sanchez pass short right to A.Cromartie to NYJ 15 for -2 yards (J.Babin).,0,0,2012 -20121209_NYJ@JAC,1,49,2,NYJ,JAC,2,12,85,(4:02) (Shotgun) M.Sanchez pass short right to M.Gilyard ran ob at NYJ 26 for 11 yards.,0,0,2012 -20121209_NYJ@JAC,1,48,42,NYJ,JAC,3,1,74,(3:42) S.Greene up the middle to NYJ 30 for 4 yards (R.Allen).,0,0,2012 -20121209_NYJ@JAC,1,48,7,NYJ,JAC,1,10,70,(3:07) S.Greene up the middle to NYJ 36 for 6 yards (D.Landry).,0,0,2012 -20121209_NYJ@JAC,1,47,31,NYJ,JAC,2,4,64,(2:31) S.Greene right end to NYJ 37 for 1 yard (M.Harris).,0,0,2012 -20121209_NYJ@JAC,1,46,51,NYJ,JAC,3,3,63,(1:51) (Shotgun) M.Sanchez pass incomplete short left to S.Hill.,0,0,2012 -20121209_NYJ@JAC,1,46,46,NYJ,JAC,4,3,63,(1:46) R.Malone punts 50 yards to JAX 13 Center-T.Purdum. Q.Cosby to JAX 14 for 1 yard (E.Lankster).,0,0,2012 -20121209_NYJ@JAC,1,46,36,JAC,NYJ,1,10,86,(1:36) C.Henne pass short left to M.Owens to JAX 25 for 11 yards (D.Harris; B.Scott).,0,0,2012 -20121209_NYJ@JAC,1,45,59,JAC,NYJ,1,10,75,(:59) PENALTY on JAX-E.Britton False Start 5 yards enforced at JAX 25 - No Play.,0,0,2012 -20121209_NYJ@JAC,1,45,37,JAC,NYJ,1,15,80,(:37) (Shotgun) C.Henne pass short right to J.Blackmon to JAX 29 for 9 yards (K.Wilson).,0,0,2012 -20121209_NYJ@JAC,1,45,4,JAC,NYJ,2,6,71,(:04) J.Todman left end to JAX 29 for no gain (Y.Bell).,0,0,2012 -20121209_NYJ@JAC,2,45,0,JAC,NYJ,3,6,71,(15:00) (Shotgun) C.Henne pass incomplete deep middle to K.Elliott.,0,0,2012 -20121209_NYJ@JAC,2,44,54,JAC,NYJ,4,6,71,(14:54) (Punt formation) B.Anger punts 53 yards to NYJ 18 Center-J.Cain fair catch by J.Kerley.,0,0,2012 -20121209_NYJ@JAC,2,44,47,NYJ,JAC,1,10,82,(14:47) M.Sanchez scrambles left end to NYJ 22 for 4 yards (R.Allen).,0,0,2012 -20121209_NYJ@JAC,2,44,11,NYJ,JAC,2,6,78,(14:11) B.Powell up the middle to NYJ 25 for 3 yards (P.Posluszny).,0,0,2012 -20121209_NYJ@JAC,2,43,28,NYJ,JAC,3,3,75,(13:28) (Shotgun) M.Sanchez pass short middle to J.Kerley to NYJ 37 for 12 yards (D.Landry).,0,0,2012 -20121209_NYJ@JAC,2,42,49,NYJ,JAC,1,10,63,(12:49) B.Powell up the middle to NYJ 41 for 4 yards (J.Mincey).,0,0,2012 -20121209_NYJ@JAC,2,42,13,NYJ,JAC,2,6,59,(12:13) B.Powell up the middle to NYJ 42 for 1 yard (P.Posluszny).,0,0,2012 -20121209_NYJ@JAC,2,41,37,NYJ,JAC,3,5,58,(11:37) M.Sanchez pass incomplete short left to S.Hill. NYJ-S.Hill was injured during the play. His return is Questionable. PENALTY on JAX-D.Cox Defensive Pass Interference 14 yards enforced at NYJ 42 - No Play.,0,0,2012 -20121209_NYJ@JAC,2,41,32,NYJ,JAC,1,10,44,(11:32) M.Sanchez pass incomplete short left to J.Kerley. PENALTY on JAX-D.Cox Defensive Pass Interference 5 yards enforced at JAX 44 - No Play.,0,0,2012 -20121209_NYJ@JAC,2,41,28,NYJ,JAC,1,10,39,(11:28) B.Powell up the middle to JAX 36 for 3 yards (T.Knighton).,0,0,2012 -20121209_NYJ@JAC,2,40,53,NYJ,JAC,2,7,36,(10:53) M.Sanchez pass incomplete short left to J.Kerley.,0,0,2012 -20121209_NYJ@JAC,2,40,47,NYJ,JAC,3,7,36,(10:47) (Shotgun) M.Sanchez sacked at JAX 44 for -8 yards (J.Babin). FUMBLES (J.Babin) RECOVERED by JAX-J.Babin at JAX 43. J.Babin to JAX 43 for no gain (M.Sanchez).,0,0,2012 -20121209_NYJ@JAC,2,40,42,JAC,NYJ,1,10,57,(10:42) M.Owens up the middle to JAX 46 for 3 yards (M.Wilkerson).,0,0,2012 -20121209_NYJ@JAC,2,40,7,JAC,NYJ,2,7,54,(10:07) C.Henne pass deep middle to K.Elliott to NYJ 32 for 22 yards (A.Cromartie).,0,0,2012 -20121209_NYJ@JAC,2,39,30,JAC,NYJ,1,10,32,(9:30) M.Owens up the middle to NYJ 22 for 10 yards (Y.Bell).,0,0,2012 -20121209_NYJ@JAC,2,38,54,JAC,NYJ,1,10,22,(8:54) J.Todman up the middle to NYJ 16 for 6 yards (L.Landry).,0,0,2012 -20121209_NYJ@JAC,2,38,14,JAC,NYJ,2,4,16,(8:14) C.Henne pass short left to G.Jones to NYJ 13 for 3 yards (B.Thomas).,0,0,2012 -20121209_NYJ@JAC,2,38,14,JAC,NYJ,3,1,13,(8:14) G.Jones up the middle to NYJ 13 for no gain (S.Pouha).,0,0,2012 -20121209_NYJ@JAC,2,36,47,JAC,NYJ,4,1,13,(6:47) (Field Goal formation) J.Scobee 31 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20121209_NYJ@JAC,2,36,47,JAC,NYJ,,,13,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,3,0,2012 -20121209_NYJ@JAC,2,36,44,NYJ,JAC,1,10,80,(6:44) M.Sanchez pass deep right to C.Schilens ran ob at NYJ 37 for 17 yards.,0,3,2012 -20121209_NYJ@JAC,2,36,16,NYJ,JAC,1,10,63,(6:16) S.Greene up the middle to NYJ 42 for 5 yards (P.Posluszny).,0,3,2012 -20121209_NYJ@JAC,2,35,39,NYJ,JAC,2,5,58,(5:39) M.Sanchez scrambles up the middle to 50 for 8 yards.,0,3,2012 -20121209_NYJ@JAC,2,34,56,NYJ,JAC,1,10,50,(4:56) S.Greene up the middle to JAX 49 for 1 yard (A.Lane).,0,3,2012 -20121209_NYJ@JAC,2,34,21,NYJ,JAC,2,9,49,(4:21) M.Sanchez pass short left to J.Kerley to JAX 42 for 7 yards (D.Cox). FUMBLES (D.Cox) RECOVERED by JAX-D.Lowery at JAX 38. D.Lowery for 62 yards TOUCHDOWN. Play Challenged by Replay Assistant and REVERSED. M.Sanchez pass short left to J.Kerley to JAX 42 for 7 yards (D.Cox). FUMBLES (D.Cox) RECOVERED by JAX-D.Lowery at JAX 39. D.Lowery to JAX 39 for no gain (J.Kerley).,0,3,2012 -20121209_NYJ@JAC,2,34,17,JAC,NYJ,1,10,61,(4:17) C.Henne pass short left to J.Blackmon pushed ob at 50 for 11 yards (L.Landry).,3,0,2012 -20121209_NYJ@JAC,2,33,54,JAC,NYJ,1,10,50,(3:54) M.Owens up the middle to NYJ 45 for 5 yards (L.Landry).,3,0,2012 -20121209_NYJ@JAC,2,33,16,JAC,NYJ,2,5,45,(3:16) (Shotgun) C.Henne pass incomplete short middle to K.Elliott.,3,0,2012 -20121209_NYJ@JAC,2,33,11,JAC,NYJ,3,5,45,(3:11) (Shotgun) C.Henne pass short left to J.Todman to NYJ 45 for no gain (C.Pace).,3,0,2012 -20121209_NYJ@JAC,2,32,49,JAC,NYJ,4,5,45,(2:49) (Punt formation) B.Anger punts 30 yards to NYJ 15 Center-J.Cain fair catch by J.Kerley.,3,0,2012 -20121209_NYJ@JAC,2,32,43,NYJ,JAC,1,10,85,(2:43) M.Sanchez pass incomplete short left to L.Hilliard.,0,3,2012 -20121209_NYJ@JAC,2,32,38,NYJ,JAC,2,10,85,(2:38) (Shotgun) M.Sanchez pass incomplete short right to M.Gilyard.,0,3,2012 -20121209_NYJ@JAC,2,32,32,NYJ,JAC,3,10,85,(2:32) (Shotgun) M.Sanchez pass short left to K.Reuland to NYJ 17 for 2 yards (D.Landry).,0,3,2012 -20121209_NYJ@JAC,2,32,22,NYJ,JAC,4,8,83,(2:22) (Punt formation) R.Malone punts 40 yards to JAX 43 Center-T.Purdum out of bounds.,0,3,2012 -20121209_NYJ@JAC,2,32,17,JAC,NYJ,1,10,57,(2:17) (Shotgun) C.Henne pass incomplete short left to J.Shipley.,3,0,2012 -20121209_NYJ@JAC,2,32,12,JAC,NYJ,2,10,57,(2:12) (Shotgun) C.Henne pass incomplete short right to J.Blackmon [E.Smith].,3,0,2012 -20121209_NYJ@JAC,2,32,7,JAC,NYJ,3,10,57,(2:07) (Shotgun) C.Henne pass incomplete deep right to J.Blackmon.,3,0,2012 -20121209_NYJ@JAC,2,32,2,JAC,NYJ,4,10,57,(2:02) (Punt formation) B.Anger punts 48 yards to NYJ 9 Center-J.Cain downed by JAX-A.Blake.,3,0,2012 -20121209_NYJ@JAC,2,31,49,NYJ,JAC,1,10,91,(1:49) B.Powell up the middle to NYJ 14 for 5 yards (P.Posluszny).,0,3,2012 -20121209_NYJ@JAC,2,31,11,NYJ,JAC,2,5,86,(1:11) B.Powell up the middle to NYJ 14 for no gain (C.Mosley).,0,3,2012 -20121209_NYJ@JAC,2,30,29,NYJ,JAC,3,5,86,(:29) B.Powell up the middle to NYJ 14 for no gain (T.Knighton).,0,3,2012 -20121209_NYJ@JAC,2,30,25,NYJ,JAC,4,5,86,(:25) (Punt formation) R.Malone punts 44 yards to JAX 42 Center-T.Purdum. Q.Cosby to NYJ 44 for 14 yards (R.Malone).,0,3,2012 -20121209_NYJ@JAC,2,30,12,JAC,NYJ,1,10,44,(:12) (Shotgun) C.Henne pass short right to J.Shipley pushed ob at NYJ 37 for 7 yards (A.Cromartie).,3,0,2012 -20121209_NYJ@JAC,2,30,8,JAC,NYJ,2,3,37,(:08) (Shotgun) C.Henne pass incomplete short right to M.Lewis.,3,0,2012 -20121209_NYJ@JAC,2,30,3,JAC,NYJ,3,3,37,(:03) (Field Goal formation) J.Scobee 55 yard field goal is No Good Wide Left Center-J.Cain Holder-B.Anger.,3,0,2012 -20121209_NYJ@JAC,3,30,0,NYJ,JAC,,,37,N.Folk kicks 67 yards from NYJ 35 to JAX -2. J.Todman to JAX 11 for 13 yards (J.Bush).,0,3,2012 -20121209_NYJ@JAC,3,29,56,JAC,NYJ,1,10,89,(14:56) C.Henne pass incomplete deep right to J.Blackmon.,3,0,2012 -20121209_NYJ@JAC,3,29,49,JAC,NYJ,2,10,89,(14:49) R.Murphy up the middle to JAX 20 for 9 yards (D.Harris).,3,0,2012 -20121209_NYJ@JAC,3,29,9,JAC,NYJ,3,1,80,(14:09) C.Henne pass incomplete short right to J.Blackmon.,3,0,2012 -20121209_NYJ@JAC,3,29,3,JAC,NYJ,4,1,80,(14:03) (Punt formation) B.Anger punts 42 yards to NYJ 38 Center-J.Cain fair catch by J.Kerley. PENALTY on JAX-J.Todman Illegal Motion 5 yards enforced at NYJ 38.,3,0,2012 -20121209_NYJ@JAC,3,28,56,NYJ,JAC,1,10,57,(13:56) M.Sanchez pass short right to C.Schilens to JAX 47 for 10 yards (M.Harris; R.Allen).,0,3,2012 -20121209_NYJ@JAC,3,28,18,NYJ,JAC,1,10,47,(13:18) S.Greene up the middle to JAX 39 for 8 yards (D.Cox).,0,3,2012 -20121209_NYJ@JAC,3,27,42,NYJ,JAC,2,2,39,(12:42) S.Greene left end to JAX 36 for 3 yards (P.Posluszny).,0,3,2012 -20121209_NYJ@JAC,3,27,7,NYJ,JAC,1,10,36,(12:07) S.Greene up the middle to JAX 27 for 9 yards (D.Lowery).,0,3,2012 -20121209_NYJ@JAC,3,26,32,NYJ,JAC,2,1,27,(11:32) S.Greene up the middle to JAX 22 for 5 yards (J.Stanford).,0,3,2012 -20121209_NYJ@JAC,3,25,56,NYJ,JAC,1,10,22,(10:56) M.Sanchez pass short left to J.Kerley pushed ob at JAX 16 for 6 yards (M.Harris).,0,3,2012 -20121209_NYJ@JAC,3,25,33,NYJ,JAC,2,4,16,(10:33) B.Powell up the middle to JAX 4 for 12 yards (M.Harris).,0,3,2012 -20121209_NYJ@JAC,3,24,59,NYJ,JAC,1,4,4,(9:59) S.Greene up the middle to JAX 1 for 3 yards (T.Alualu).,0,3,2012 -20121209_NYJ@JAC,3,24,19,NYJ,JAC,2,1,1,(9:19) S.Greene up the middle for 1 yard TOUCHDOWN.,0,3,2012 -20121209_NYJ@JAC,3,24,19,NYJ,JAC,,,1,(Kick formation) N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,3,2012 -20121209_NYJ@JAC,3,24,19,NYJ,JAC,,,1,N.Folk kicks 62 yards from NYJ 35 to JAX 3. J.Todman to JAX 26 for 23 yards (E.Lankster).,7,3,2012 -20121209_NYJ@JAC,3,24,5,JAC,NYJ,1,10,74,(9:05) R.Murphy up the middle to JAX 30 for 4 yards (S.Pouha).,3,7,2012 -20121209_NYJ@JAC,3,23,29,JAC,NYJ,2,6,70,(8:29) R.Murphy left end to JAX 33 for 3 yards (C.Pace). JAX-M.Lewis was injured during the play.,3,7,2012 -20121209_NYJ@JAC,3,23,6,JAC,NYJ,3,3,67,(8:06) (Shotgun) C.Henne pass short right to J.Shipley to JAX 34 for 1 yard (A.Cromartie).,3,7,2012 -20121209_NYJ@JAC,3,22,34,JAC,NYJ,4,2,66,(7:34) (Punt formation) B.Anger punts 55 yards to NYJ 11 Center-J.Cain fair catch by J.Kerley.,3,7,2012 -20121209_NYJ@JAC,3,22,27,NYJ,JAC,1,10,89,(7:27) S.Greene up the middle to NYJ 15 for 4 yards (C.Mosley).,7,3,2012 -20121209_NYJ@JAC,3,21,44,NYJ,JAC,2,6,85,(6:44) S.Greene up the middle to NYJ 18 for 3 yards (D.Lowery).,7,3,2012 -20121209_NYJ@JAC,3,20,59,NYJ,JAC,3,3,82,(5:59) (Shotgun) M.Sanchez pass incomplete deep left to C.Schilens.,7,3,2012 -20121209_NYJ@JAC,3,20,54,NYJ,JAC,4,3,82,(5:54) (Punt formation) R.Malone punts 59 yards to JAX 23 Center-T.Purdum fair catch by Q.Cosby.,7,3,2012 -20121209_NYJ@JAC,3,20,45,JAC,NYJ,1,10,77,(5:45) (Shotgun) C.Henne pass incomplete short left to M.Lewis [M.Wilkerson].,3,7,2012 -20121209_NYJ@JAC,3,20,41,JAC,NYJ,2,10,77,(5:41) (Shotgun) C.Henne pass incomplete short left to K.Elliott [M.Wilkerson].,3,7,2012 -20121209_NYJ@JAC,3,20,36,JAC,NYJ,3,10,77,(5:36) (Shotgun) C.Henne sacked at JAX 15 for -8 yards (M.Wilkerson).,3,7,2012 -20121209_NYJ@JAC,3,20,8,JAC,NYJ,4,18,85,(5:08) (Punt formation) B.Anger punts 43 yards to NYJ 42 Center-J.Cain. J.Kerley to JAX 47 for 11 yards (Gr.Jones).,3,7,2012 -20121209_NYJ@JAC,3,19,58,NYJ,JAC,1,10,47,(4:58) M.Sanchez pass short right to K.Reuland to JAX 42 for 5 yards (P.Posluszny).,7,3,2012 -20121209_NYJ@JAC,3,19,22,NYJ,JAC,2,5,42,(4:22) S.Greene left end to JAX 28 for 14 yards (P.Posluszny).,7,3,2012 -20121209_NYJ@JAC,3,18,38,NYJ,JAC,1,10,28,(3:38) B.Powell left end pushed ob at JAX 26 for 2 yards (D.Cox).,7,3,2012 -20121209_NYJ@JAC,3,18,7,NYJ,JAC,2,8,26,(3:07) M.Sanchez pass incomplete short left to J.Kerley (D.Cox).,7,3,2012 -20121209_NYJ@JAC,3,18,3,NYJ,JAC,3,8,26,(3:03) (Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland [J.Mincey].,7,3,2012 -20121209_NYJ@JAC,3,17,57,NYJ,JAC,4,8,26,(2:57) (Field Goal formation) N.Folk 44 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,7,3,2012 -20121209_NYJ@JAC,3,17,57,NYJ,JAC,,,26,N.Folk kicks 68 yards from NYJ 35 to JAX -3. J.Todman to JAX 21 for 24 yards (D.Davis). PENALTY on JAX-Z.Potter Offensive Holding 10 yards enforced at JAX 21.,10,3,2012 -20121209_NYJ@JAC,3,17,47,JAC,NYJ,1,10,89,(2:47) M.Owens right end to JAX 10 for -1 yards (L.Landry).,3,10,2012 -20121209_NYJ@JAC,3,17,8,JAC,NYJ,2,11,90,(2:08) C.Henne pass incomplete short left to Z.Potter.,3,10,2012 -20121209_NYJ@JAC,3,17,1,JAC,NYJ,3,11,90,(2:01) (Shotgun) C.Henne sacked at JAX 8 for -2 yards (D.Harris).,3,10,2012 -20121209_NYJ@JAC,3,16,29,JAC,NYJ,4,13,92,(1:29) (Punt formation) B.Anger punts 45 yards to NYJ 47 Center-J.Cain. J.Kerley pushed ob at JAX 46 for 7 yards (C.Prosinski).,3,10,2012 -20121209_NYJ@JAC,3,16,19,NYJ,JAC,1,10,46,(1:19) B.Powell up the middle to JAX 39 for 7 yards (D.Landry).,10,3,2012 -20121209_NYJ@JAC,3,15,38,NYJ,JAC,2,3,39,(:38) B.Powell right end to JAX 32 for 7 yards (M.Harris).,10,3,2012 -20121209_NYJ@JAC,4,15,0,NYJ,JAC,1,10,32,(15:00) B.Powell up the middle to JAX 19 for 13 yards (A.Lane).,10,3,2012 -20121209_NYJ@JAC,4,14,26,NYJ,JAC,1,10,19,(14:26) B.Powell up the middle to JAX 19 for no gain (T.Alualu).,10,3,2012 -20121209_NYJ@JAC,4,13,44,NYJ,JAC,2,10,19,(13:44) B.Powell up the middle to JAX 14 for 5 yards (D.Landry).,10,3,2012 -20121209_NYJ@JAC,4,13,7,NYJ,JAC,3,5,14,(13:07) B.Powell up the middle to JAX 4 for 10 yards (P.Posluszny).,10,3,2012 -20121209_NYJ@JAC,4,12,25,NYJ,JAC,1,4,4,(12:25) B.Powell up the middle for 4 yards TOUCHDOWN.,10,3,2012 -20121209_NYJ@JAC,4,12,25,NYJ,JAC,,,4,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,10,3,2012 -20121209_NYJ@JAC,4,12,25,NYJ,JAC,,,4,N.Folk kicks 69 yards from NYJ 35 to JAX -4. J.Todman to JAX 14 for 18 yards (E.Lankster).,17,3,2012 -20121209_NYJ@JAC,4,12,15,JAC,NYJ,1,10,86,(12:15) M.Owens up the middle to JAX 29 for 15 yards (L.Landry).,3,17,2012 -20121209_NYJ@JAC,4,11,46,JAC,NYJ,1,10,71,(11:46) (No Huddle) M.Owens up the middle to JAX 32 for 3 yards (L.Landry; D.Harris).,3,17,2012 -20121209_NYJ@JAC,4,11,12,JAC,NYJ,2,7,68,(11:12) (No Huddle) C.Henne pass incomplete short left to J.Shipley.,3,17,2012 -20121209_NYJ@JAC,4,11,7,JAC,NYJ,3,7,68,(11:07) (Shotgun) C.Henne pass short left to K.Elliott to JAX 41 for 9 yards (E.Lankster).,3,17,2012 -20121209_NYJ@JAC,4,10,26,JAC,NYJ,1,10,59,(10:26) (No Huddle) M.Owens right end to JAX 48 for 7 yards (Y.Bell). PENALTY on JAX-M.Lewis Offensive Holding 10 yards enforced at JAX 41 - No Play.,3,17,2012 -20121209_NYJ@JAC,4,10,3,JAC,NYJ,1,20,69,(10:03) (Shotgun) C.Henne pass short right to J.Blackmon to JAX 44 for 13 yards (D.Harris). FUMBLES (D.Harris) RECOVERED by NYJ-E.Smith at NYJ 43. E.Smith to JAX 42 for 15 yards (B.Meester). Play Challenged by Replay Assistant and REVERSED. (Shotgun) C.Henne pass short right to J.Blackmon to JAX 44 for 13 yards (D.Harris).,3,17,2012 -20121209_NYJ@JAC,4,9,32,JAC,NYJ,2,7,56,(9:32) (Shotgun) C.Henne pass short middle to M.Lewis to JAX 48 for 4 yards (L.Landry).,3,17,2012 -20121209_NYJ@JAC,4,8,51,JAC,NYJ,3,3,52,(8:51) (Shotgun) C.Henne scrambles up the middle to JAX 49 for 1 yard (Q.Coples). PENALTY on NYJ-Q.Coples Face Mask (15 Yards) 15 yards enforced at JAX 49.,3,17,2012 -20121209_NYJ@JAC,4,8,17,JAC,NYJ,1,10,36,(8:17) (Shotgun) C.Henne pass incomplete deep right to J.Blackmon. NYJ-A.Cromartie was injured during the play.,3,17,2012 -20121209_NYJ@JAC,4,8,10,JAC,NYJ,2,10,36,(8:10) (Shotgun) C.Henne pass short middle to J.Shipley to NYJ 25 for 11 yards (L.Landry).,3,17,2012 -20121209_NYJ@JAC,4,7,36,JAC,NYJ,1,10,25,(7:36) (No Huddle Shotgun) C.Henne sacked at NYJ 32 for -7 yards (Q.Coples).,3,17,2012 -20121209_NYJ@JAC,4,7,15,JAC,NYJ,2,17,32,(7:15) (No Huddle) M.Owens left end for 32 yards TOUCHDOWN.,3,17,2012 -20121209_NYJ@JAC,4,7,15,JAC,NYJ,,,32,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,3,17,2012 -20121209_NYJ@JAC,4,7,15,JAC,NYJ,,,32,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,10,17,2012 -20121209_NYJ@JAC,4,7,6,NYJ,JAC,1,10,80,(7:06) S.Greene up the middle to NYJ 23 for 3 yards (P.Posluszny).,17,10,2012 -20121209_NYJ@JAC,4,6,32,NYJ,JAC,2,7,77,(6:32) S.Greene left end to NYJ 23 for no gain (A.Lane).,17,10,2012 -20121209_NYJ@JAC,4,5,51,NYJ,JAC,3,7,77,(5:51) (Shotgun) M.Sanchez pass short right to J.Kerley to NYJ 25 for 2 yards (D.Lowery).,17,10,2012 -20121209_NYJ@JAC,4,5,17,NYJ,JAC,4,5,75,(5:17) R.Malone punts 47 yards to JAX 28 Center-T.Purdum. Q.Cosby pushed ob at JAX 38 for 10 yards (B.Powell).,17,10,2012 -20121209_NYJ@JAC,4,5,5,JAC,NYJ,1,10,62,(5:05) M.Owens up the middle to JAX 41 for 3 yards (D.Harris).,10,17,2012 -20121209_NYJ@JAC,4,4,37,JAC,NYJ,2,7,59,(4:37) (No Huddle) M.Owens up the middle to JAX 42 for 1 yard (L.Landry).,10,17,2012 -20121209_NYJ@JAC,4,3,56,JAC,NYJ,3,6,58,(3:56) (Shotgun) C.Henne pass incomplete short left to K.Elliott [E.Smith].,10,17,2012 -20121209_NYJ@JAC,4,3,47,JAC,NYJ,4,6,58,(3:47) B.Anger punts 47 yards to NYJ 11 Center-J.Cain fair catch by J.Kerley.,10,17,2012 -20121209_NYJ@JAC,4,3,42,NYJ,JAC,1,10,89,(3:42) S.Greene up the middle to NYJ 12 for 1 yard (T.Alualu).,17,10,2012 -20121209_NYJ@JAC,4,3,2,NYJ,JAC,2,9,88,(3:02) S.Greene up the middle to NYJ 13 for 1 yard (T.Knighton; A.Lane).,17,10,2012 -20121209_NYJ@JAC,4,2,56,NYJ,JAC,3,8,87,(2:56) M.Sanchez pass deep middle to J.Cumberland to 50 for 37 yards (D.Lowery).,17,10,2012 -20121209_NYJ@JAC,4,2,8,NYJ,JAC,1,10,50,(2:08) B.Powell up the middle to JAX 44 for 6 yards (P.Posluszny).,17,10,2012 -20121209_NYJ@JAC,4,2,0,NYJ,JAC,2,4,44,(2:00) B.Powell up the middle to JAX 48 for -4 yards (R.Allen).,17,10,2012 -20121209_NYJ@JAC,4,1,56,NYJ,JAC,3,8,48,(1:56) B.Powell up the middle to JAX 48 for no gain (R.Allen; P.Posluszny).,17,10,2012 -20121209_NYJ@JAC,4,1,52,NYJ,JAC,4,8,48,(1:52) (Punt formation) R.Malone punts 48 yards to end zone Center-T.Purdum Touchback.,17,10,2012 -20121209_NYJ@JAC,4,1,43,JAC,NYJ,1,10,80,(1:43) (Shotgun) C.Henne pass short right to J.Blackmon to JAX 34 for 14 yards (Y.Bell).,10,17,2012 -20121209_NYJ@JAC,4,1,21,JAC,NYJ,1,10,66,(1:21) (No Huddle Shotgun) C.Henne pass incomplete short right to T.Clemons [D.Harris].,10,17,2012 -20121209_NYJ@JAC,4,1,17,JAC,NYJ,2,10,66,(1:17) (Shotgun) C.Henne pass incomplete short left to J.Blackmon (A.Cromartie).,10,17,2012 -20121209_NYJ@JAC,4,1,12,JAC,NYJ,3,10,66,(1:12) (Shotgun) C.Henne pass deep left to K.Elliott ran ob at 50 for 16 yards. PENALTY on JAX-K.Elliott Illegal Touch Pass 5 yards enforced at JAX 34 - No Play. Play Challenged by Replay Assistant and Upheld.,10,17,2012 -20121209_NYJ@JAC,4,1,6,JAC,NYJ,3,15,71,(1:06) (Shotgun) C.Henne pass incomplete deep right to T.Clemons.,10,17,2012 -20121209_NYJ@JAC,4,0,58,JAC,NYJ,4,15,71,(:58) (Shotgun) C.Henne pass deep middle to J.Shipley to NYJ 43 for 28 yards (Y.Bell).,10,17,2012 -20121209_NYJ@JAC,4,0,44,JAC,NYJ,1,10,43,(:44) C.Henne spiked the ball to stop the clock.,10,17,2012 -20121209_NYJ@JAC,4,0,44,JAC,NYJ,2,10,43,(:44) (Shotgun) C.Henne pass short right to J.Shipley ran ob at NYJ 35 for 8 yards.,10,17,2012 -20121209_NYJ@JAC,4,0,39,JAC,NYJ,3,2,35,(:39) (Shotgun) C.Henne pass incomplete short middle to K.Elliott (D.Harris).,10,17,2012 -20121209_NYJ@JAC,4,0,35,JAC,NYJ,4,2,35,(:35) (Shotgun) C.Henne pass short left to K.Elliott to NYJ 28 for 7 yards (E.Smith).,10,17,2012 -20121209_NYJ@JAC,4,0,27,JAC,NYJ,1,10,28,(:27) (Shotgun) C.Henne pass incomplete short left to K.Elliott [Q.Coples].,10,17,2012 -20121209_NYJ@JAC,4,0,22,JAC,NYJ,2,10,28,(:22) (Shotgun) C.Henne pass deep left intended for K.Elliott INTERCEPTED by E.Lankster at NYJ 4. E.Lankster to NYJ 4 for no gain.,10,17,2012 -20121209_NYJ@JAC,4,0,15,NYJ,JAC,1,10,96,(:15) M.Sanchez kneels to NYJ 3 for -1 yards.,17,10,2012 -20121209_NYJ@JAC,4,0,15,NYJ,JAC,,,96,                      ,17,10,2012 -20121209_CHI@MIN,1,0,0,CHI,MIN,,,96,A.Podlesh kicks 65 yards from CHI 35 to end zone Touchback.,0,0,2012 -20121209_CHI@MIN,1,60,0,MIN,CHI,1,10,80,(15:00) A.Peterson right guard to CHI 29 for 51 yards (L.Briggs; C.Tillman).,0,0,2012 -20121209_CHI@MIN,1,59,13,MIN,CHI,1,10,29,(14:13) A.Peterson up the middle to CHI 29 for no gain (L.Briggs).,0,0,2012 -20121209_CHI@MIN,1,58,40,MIN,CHI,2,10,29,(13:40) A.Peterson right tackle to CHI 28 for 1 yard (M.Toeaina).,0,0,2012 -20121209_CHI@MIN,1,58,4,MIN,CHI,3,9,28,(13:04) (Shotgun) C.Ponder pass short middle to M.Jenkins to CHI 17 for 11 yards (K.Hayden; L.Briggs).,0,0,2012 -20121209_CHI@MIN,1,57,25,MIN,CHI,1,10,17,(12:25) A.Peterson left end pushed ob at CHI 1 for 16 yards (C.Conte; M.Wright).,0,0,2012 -20121209_CHI@MIN,1,56,56,MIN,CHI,1,1,1,(11:56) A.Peterson left guard for 1 yard TOUCHDOWN.,0,0,2012 -20121209_CHI@MIN,1,56,56,MIN,CHI,,,1,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121209_CHI@MIN,1,56,56,MIN,CHI,,,1,B.Walsh kicks 63 yards from MIN 35 to CHI 2. E.Weems pushed ob at CHI 17 for 15 yards (A.Sendejo).,7,0,2012 -20121209_CHI@MIN,1,56,49,CHI,MIN,1,10,83,(11:49) J.Cutler pass incomplete short middle to K.Davis (J.Brinkley).,0,7,2012 -20121209_CHI@MIN,1,56,44,CHI,MIN,2,10,83,(11:44) J.Cutler pass short right to D.Hester pushed ob at CHI 27 for 10 yards (J.Sanford).,0,7,2012 -20121209_CHI@MIN,1,56,16,CHI,MIN,1,10,73,(11:16) M.Forte left guard to CHI 26 for -1 yards (J.Allen).,0,7,2012 -20121209_CHI@MIN,1,55,43,CHI,MIN,2,11,74,(10:43) M.Forte right end to CHI 33 for 7 yards (H.Smith).,0,7,2012 -20121209_CHI@MIN,1,55,0,CHI,MIN,3,4,67,(10:00) (Shotgun) J.Cutler pass deep middle intended for A.Jeffery INTERCEPTED by J.Robinson at CHI 49. J.Robinson for 49 yards TOUCHDOWN. Play Challenged by Replay Assistant and REVERSED. (Shotgun) J.Cutler pass deep middle intended for A.Jeffery INTERCEPTED by J.Robinson at CHI 49. J.Robinson pushed ob at CHI 5 for 44 yards (J.Cutler).,0,7,2012 -20121209_CHI@MIN,1,54,49,MIN,CHI,1,5,5,(9:49) A.Peterson left guard to CHI 2 for 3 yards (M.Wright).,7,0,2012 -20121209_CHI@MIN,1,54,15,MIN,CHI,2,2,2,(9:15) A.Peterson right end to CHI 1 for 1 yard (I.Idonije).,7,0,2012 -20121209_CHI@MIN,1,53,46,MIN,CHI,3,1,1,(8:46) A.Peterson left tackle for 1 yard TOUCHDOWN.,7,0,2012 -20121209_CHI@MIN,1,53,46,MIN,CHI,,,1,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,0,2012 -20121209_CHI@MIN,1,53,46,MIN,CHI,,,1,B.Walsh kicks 69 yards from MIN 35 to CHI -4. E.Weems to CHI 11 for 15 yards (M.Mitchell; L.Dean).,14,0,2012 -20121209_CHI@MIN,1,53,38,CHI,MIN,1,10,89,(8:38) J.Cutler pass incomplete short right to K.Davis.,0,14,2012 -20121209_CHI@MIN,1,53,31,CHI,MIN,2,10,89,(8:31) J.Cutler pass incomplete short right to B.Marshall (F.Evans).,0,14,2012 -20121209_CHI@MIN,1,53,27,CHI,MIN,3,10,89,(8:27) (Shotgun) J.Cutler scrambles up the middle to CHI 22 for 11 yards (B.Robison).,0,14,2012 -20121209_CHI@MIN,1,52,49,CHI,MIN,1,10,78,(7:49) M.Forte left end to CHI 26 for 4 yards (E.Henderson; J.Brinkley).,0,14,2012 -20121209_CHI@MIN,1,52,10,CHI,MIN,2,6,74,(7:10) (Shotgun) J.Cutler pass short left to D.Hester pushed ob at CHI 27 for 1 yard (E.Henderson).,0,14,2012 -20121209_CHI@MIN,1,51,35,CHI,MIN,3,5,73,(6:35) (Shotgun) J.Cutler pass short right to M.Forte to CHI 26 for -1 yards (A.Winfield).,0,14,2012 -20121209_CHI@MIN,1,50,57,CHI,MIN,4,6,74,(5:57) A.Podlesh punts 48 yards to MIN 26 Center-P.Mannelly fair catch by M.Sherels. PENALTY on MIN-R.Ellison Offensive Holding 10 yards enforced at MIN 26.,0,14,2012 -20121209_CHI@MIN,1,50,49,MIN,CHI,1,10,84,(5:49) C.Ponder pass short middle to J.Simpson to MIN 29 for 13 yards (M.Wright).,14,0,2012 -20121209_CHI@MIN,1,50,16,MIN,CHI,1,10,71,(5:16) A.Peterson up the middle to MIN 31 for 2 yards (L.Briggs).,14,0,2012 -20121209_CHI@MIN,1,49,38,MIN,CHI,2,8,69,(4:38) C.Ponder sacked at MIN 17 for -14 yards (C.Wootton).,14,0,2012 -20121209_CHI@MIN,1,49,10,MIN,CHI,3,22,83,(4:10) A.Peterson up the middle to MIN 16 for -1 yards (N.Roach).,14,0,2012 -20121209_CHI@MIN,1,48,32,MIN,CHI,4,23,84,(3:32) C.Kluwe punts 50 yards to CHI 34 Center-C.Loeffler. D.Hester to CHI 46 for 12 yards (H.Smith).,14,0,2012 -20121209_CHI@MIN,1,48,20,CHI,MIN,1,10,54,(3:20) J.Cutler pass incomplete short middle to B.Marshall.,0,14,2012 -20121209_CHI@MIN,1,48,11,CHI,MIN,2,10,54,(3:11) M.Bush left end pushed ob at MIN 48 for 6 yards (J.Brinkley).,0,14,2012 -20121209_CHI@MIN,1,47,28,CHI,MIN,3,4,48,(2:28) J.Cutler pass short middle to B.Marshall to MIN 36 for 12 yards (J.Brinkley).,0,14,2012 -20121209_CHI@MIN,1,46,52,CHI,MIN,1,10,36,(1:52) M.Forte up the middle to MIN 35 for 1 yard (E.Henderson; H.Smith).,0,14,2012 -20121209_CHI@MIN,1,46,18,CHI,MIN,2,9,35,(1:18) J.Cutler pass incomplete short middle to K.Davis.,0,14,2012 -20121209_CHI@MIN,1,46,12,CHI,MIN,3,9,35,(1:12) (Shotgun) J.Cutler pass incomplete deep middle to B.Marshall.,0,14,2012 -20121209_CHI@MIN,1,46,12,CHI,MIN,4,9,35,(1:12) (Shotgun) PENALTY on CHI-P.Mannelly False Start 5 yards enforced at MIN 35 - No Play.,0,14,2012 -20121209_CHI@MIN,1,46,7,CHI,MIN,4,14,40,(1:07) A.Podlesh punts 31 yards to MIN 9 Center-P.Mannelly fair catch by M.Sherels.,0,14,2012 -20121209_CHI@MIN,1,46,2,MIN,CHI,1,10,91,(1:02) A.Peterson right guard pushed ob at MIN 23 for 14 yards (C.Conte).,14,0,2012 -20121209_CHI@MIN,1,45,32,MIN,CHI,1,10,77,(:32) A.Peterson right tackle to MIN 38 for 15 yards (C.Conte).,14,0,2012 -20121209_CHI@MIN,2,45,0,MIN,CHI,1,10,62,(15:00) C.Ponder pass incomplete short right to J.Wright.,14,0,2012 -20121209_CHI@MIN,2,44,54,MIN,CHI,2,10,62,(14:54) A.Peterson left guard to MIN 40 for 2 yards (M.Wright).,14,0,2012 -20121209_CHI@MIN,2,44,18,MIN,CHI,3,8,60,(14:18) (Shotgun) C.Ponder scrambles left end pushed ob at MIN 43 for 3 yards (J.Peppers).,14,0,2012 -20121209_CHI@MIN,2,43,55,MIN,CHI,4,5,57,(13:55) C.Kluwe punts 54 yards to CHI 3 Center-C.Loeffler out of bounds.,14,0,2012 -20121209_CHI@MIN,2,43,44,CHI,MIN,1,10,97,(13:44) M.Forte right guard to CHI 5 for 2 yards (B.Robison; J.Brinkley).,0,14,2012 -20121209_CHI@MIN,2,43,4,CHI,MIN,2,8,95,(13:04) J.Cutler pass deep left to B.Marshall to CHI 44 for 39 yards (H.Smith; A.Jefferson).,0,14,2012 -20121209_CHI@MIN,2,42,18,CHI,MIN,1,10,56,(12:18) M.Forte left guard to MIN 41 for 15 yards (H.Smith).,0,14,2012 -20121209_CHI@MIN,2,41,36,CHI,MIN,1,10,41,(11:36) (Shotgun) J.Cutler pass incomplete deep middle to D.Hester.,0,14,2012 -20121209_CHI@MIN,2,41,30,CHI,MIN,2,10,41,(11:30) (Shotgun) J.Cutler pass short middle to B.Marshall to MIN 18 for 23 yards (M.Raymond). PENALTY on CHI-J.Webb Offensive Holding 10 yards enforced at MIN 41 - No Play.,0,14,2012 -20121209_CHI@MIN,2,40,52,CHI,MIN,2,20,51,(10:52) (Shotgun) J.Cutler sacked at CHI 45 for -4 yards (E.Griffen).,0,14,2012 -20121209_CHI@MIN,2,40,17,CHI,MIN,3,24,55,(10:17) (Shotgun) J.Cutler pass short middle to K.Davis to MIN 44 for 11 yards (E.Henderson; C.Greenway).,0,14,2012 -20121209_CHI@MIN,2,39,38,CHI,MIN,4,13,44,(9:38) A.Podlesh punts 31 yards to MIN 13 Center-P.Mannelly fair catch by M.Sherels.,0,14,2012 -20121209_CHI@MIN,2,39,31,MIN,CHI,1,10,87,(9:31) A.Peterson right tackle to MIN 18 for 5 yards (N.Roach).,14,0,2012 -20121209_CHI@MIN,2,38,52,MIN,CHI,2,5,82,(8:52) C.Ponder pass short left to J.Wright pushed ob at MIN 31 for 13 yards (G.Hayes).,14,0,2012 -20121209_CHI@MIN,2,38,22,MIN,CHI,1,10,69,(8:22) A.Peterson left end to MIN 36 for 5 yards (I.Idonije; C.Conte).,14,0,2012 -20121209_CHI@MIN,2,37,43,MIN,CHI,2,5,64,(7:43) A.Peterson left guard to MIN 39 for 3 yards (G.Hayes).,14,0,2012 -20121209_CHI@MIN,2,37,5,MIN,CHI,3,2,61,(7:05) C.Ponder pass short right to J.Wright pushed ob at CHI 45 for 16 yards (L.Briggs).,14,0,2012 -20121209_CHI@MIN,2,36,39,MIN,CHI,1,10,45,(6:39) C.Ponder pass incomplete deep middle to D.Aromashodu.,14,0,2012 -20121209_CHI@MIN,2,36,31,MIN,CHI,2,10,45,(6:31) PENALTY on MIN-P.Loadholt False Start 5 yards enforced at CHI 45 - No Play.,14,0,2012 -20121209_CHI@MIN,2,36,31,MIN,CHI,2,15,50,(6:31) A.Peterson right guard to CHI 47 for 3 yards (L.Briggs).,14,0,2012 -20121209_CHI@MIN,2,35,55,MIN,CHI,3,12,47,(5:55) (Shotgun) C.Ponder pass short right to T.Gerhart ran ob at CHI 48 for -1 yards. Penalty on MIN-M.Kalil Offensive Holding declined.,14,0,2012 -20121209_CHI@MIN,2,35,44,MIN,CHI,4,13,48,(5:44) C.Kluwe punts 33 yards to CHI 15 Center-C.Loeffler. D.Hester to CHI 31 for 16 yards (M.Mitchell).,14,0,2012 -20121209_CHI@MIN,2,35,33,CHI,MIN,1,10,69,(5:33) M.Forte right end to CHI 34 for 3 yards (J.Brinkley).,0,14,2012 -20121209_CHI@MIN,2,34,57,CHI,MIN,2,7,66,(4:57) J.Cutler pass short right to D.Hester to CHI 42 for 8 yards (M.Raymond).,0,14,2012 -20121209_CHI@MIN,2,34,7,CHI,MIN,1,10,58,(4:07) J.Cutler pass incomplete deep middle to A.Jeffery. PENALTY on MIN-B.Robison Defensive Offside 5 yards enforced at CHI 42 - No Play.,0,14,2012 -20121209_CHI@MIN,2,34,1,CHI,MIN,1,5,53,(4:01) J.Cutler pass short left to B.Marshall to MIN 42 for 11 yards (H.Smith).,0,14,2012 -20121209_CHI@MIN,2,33,18,CHI,MIN,1,10,42,(3:18) J.Cutler sacked at MIN 46 for -4 yards (B.Robison). FUMBLES (B.Robison) recovered by CHI-J.Scott at MIN 34. J.Scott to MIN 34 for no gain (Team).,0,14,2012 -20121209_CHI@MIN,2,32,41,CHI,MIN,2,2,34,(2:41) (Shotgun) M.Forte left guard to MIN 35 for -1 yards (C.Greenway; J.Brinkley).,0,14,2012 -20121209_CHI@MIN,2,32,3,CHI,MIN,3,3,35,(2:03) J.Cutler pass short right to B.Marshall to MIN 23 for 12 yards (E.Henderson).,0,14,2012 -20121209_CHI@MIN,2,31,57,CHI,MIN,1,10,23,(1:57) (Shotgun) J.Cutler pass deep right to A.Jeffery for 23 yards TOUCHDOWN.,0,14,2012 -20121209_CHI@MIN,2,31,57,CHI,MIN,,,23,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,14,2012 -20121209_CHI@MIN,2,31,57,CHI,MIN,,,23,A.Podlesh kicks 62 yards from CHI 35 to MIN 3. A.Jefferson to MIN 24 for 21 yards (C.Steltz). FUMBLES (C.Steltz) recovered by MIN-C.Ballard at MIN 23. C.Ballard to MIN 23 for no gain (C.Steltz).,7,14,2012 -20121209_CHI@MIN,2,31,35,MIN,CHI,1,10,77,(1:35) A.Peterson right guard to MIN 26 for 3 yards (H.Melton; K.Hayden).,14,7,2012 -20121209_CHI@MIN,2,31,9,MIN,CHI,2,7,74,(1:09) (Shotgun) C.Ponder pass short middle to A.Peterson to MIN 28 for 2 yards (C.Tillman). FUMBLES (C.Tillman) ball out of bounds at MIN 28.,14,7,2012 -20121209_CHI@MIN,2,30,50,MIN,CHI,3,5,72,(:50) (Shotgun) T.Gerhart left guard to MIN 34 for 6 yards (I.Idonije; L.Briggs).,14,7,2012 -20121209_CHI@MIN,2,30,42,MIN,CHI,1,10,66,(:42) (Shotgun) PENALTY on CHI-J.Peppers Neutral Zone Infraction 5 yards enforced at MIN 34 - No Play.,14,7,2012 -20121209_CHI@MIN,2,30,42,MIN,CHI,1,5,61,(:42) (Shotgun) C.Ponder pass intended for J.Wright INTERCEPTED by M.Wright at CHI 20. M.Wright to CHI 20 for no gain (Team).,14,7,2012 -20121209_CHI@MIN,2,30,32,CHI,MIN,1,10,80,(:32) J.Cutler pass short right to M.Forte to CHI 28 for 8 yards (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,2,30,3,CHI,MIN,2,2,72,(:03) (Shotgun) J.Cutler pass deep left to B.Marshall pushed ob at CHI 48 for 20 yards (A.Jefferson).,7,14,2012 -20121209_CHI@MIN,3,30,0,MIN,CHI,,,72,B.Walsh kicks 62 yards from MIN 35 to CHI 3. E.Weems to CHI 14 for 11 yards (L.Dean).,14,7,2012 -20121209_CHI@MIN,3,29,55,CHI,MIN,1,10,86,(14:55) M.Forte left tackle to CHI 21 for 7 yards (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,3,29,17,CHI,MIN,2,3,79,(14:17) J.Cutler pass incomplete deep right to B.Marshall (A.Winfield).,7,14,2012 -20121209_CHI@MIN,3,29,11,CHI,MIN,3,3,79,(14:11) (Shotgun) J.Cutler pass short right to M.Forte pushed ob at CHI 27 for 6 yards (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,3,28,41,CHI,MIN,1,10,73,(13:41) M.Forte left tackle to CHI 37 for 10 yards (J.Sanford).,7,14,2012 -20121209_CHI@MIN,3,28,8,CHI,MIN,1,10,63,(13:08) J.Cutler pass deep right to B.Marshall to MIN 47 for 16 yards (H.Smith).,7,14,2012 -20121209_CHI@MIN,3,27,27,CHI,MIN,1,10,47,(12:27) M.Forte right tackle to MIN 47 for no gain (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,3,26,47,CHI,MIN,2,10,47,(11:47) (Shotgun) J.Cutler pass short middle to M.Forte to MIN 45 for 2 yards (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,3,26,5,CHI,MIN,3,8,45,(11:05) (Shotgun) J.Cutler pass incomplete deep left to A.Jeffery.,7,14,2012 -20121209_CHI@MIN,3,25,59,CHI,MIN,4,8,45,(10:59) A.Podlesh punts 34 yards to MIN 11 Center-P.Mannelly fair catch by M.Sherels.,7,14,2012 -20121209_CHI@MIN,3,25,52,MIN,CHI,1,10,89,(10:52) A.Peterson right tackle to MIN 15 for 4 yards (N.Roach; J.Peppers).,14,7,2012 -20121209_CHI@MIN,3,25,14,MIN,CHI,2,6,85,(10:14) (Shotgun) C.Ponder pass incomplete deep right to J.Carlson. PENALTY on CHI-C.Conte Defensive Holding 5 yards enforced at MIN 15 - No Play.,14,7,2012 -20121209_CHI@MIN,3,25,9,MIN,CHI,1,10,80,(10:09) PENALTY on MIN-P.Loadholt False Start 5 yards enforced at MIN 20 - No Play.,14,7,2012 -20121209_CHI@MIN,3,25,9,MIN,CHI,1,15,85,(10:09) A.Peterson right guard to MIN 20 for 5 yards (L.Briggs).,14,7,2012 -20121209_CHI@MIN,3,24,35,MIN,CHI,2,10,80,(9:35) A.Peterson right guard to MIN 24 for 4 yards (N.Roach).,14,7,2012 -20121209_CHI@MIN,3,23,59,MIN,CHI,3,6,76,(8:59) PENALTY on MIN-P.Loadholt False Start 5 yards enforced at MIN 24 - No Play.,14,7,2012 -20121209_CHI@MIN,3,23,47,MIN,CHI,3,11,81,(8:47) (Shotgun) C.Ponder pass incomplete deep left to M.Jenkins.,14,7,2012 -20121209_CHI@MIN,3,23,41,MIN,CHI,4,11,81,(8:41) C.Kluwe punts 55 yards to CHI 26 Center-C.Loeffler. D.Hester to CHI 35 for 9 yards (R.Ellison).,14,7,2012 -20121209_CHI@MIN,3,23,28,CHI,MIN,1,10,65,(8:28) M.Forte right tackle to CHI 37 for 2 yards (J.Allen).,7,14,2012 -20121209_CHI@MIN,3,22,48,CHI,MIN,2,8,63,(7:48) J.Cutler pass incomplete deep right to K.Davis.,7,14,2012 -20121209_CHI@MIN,3,22,43,CHI,MIN,3,8,63,(7:43) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall (A.Jefferson).,7,14,2012 -20121209_CHI@MIN,3,22,37,CHI,MIN,4,8,63,(7:37) A.Podlesh punts 43 yards to MIN 20 Center-P.Mannelly fair catch by M.Sherels.,7,14,2012 -20121209_CHI@MIN,3,22,30,MIN,CHI,1,10,80,(7:30) C.Ponder pass short middle to A.Peterson to MIN 34 for 14 yards (N.Roach).,14,7,2012 -20121209_CHI@MIN,3,21,56,MIN,CHI,1,10,66,(6:56) A.Peterson right end to MIN 28 for -6 yards (L.Briggs).,14,7,2012 -20121209_CHI@MIN,3,21,20,MIN,CHI,2,16,72,(6:20) (Shotgun) A.Peterson up the middle to MIN 27 for -1 yards (J.Peppers).,14,7,2012 -20121209_CHI@MIN,3,20,47,MIN,CHI,3,17,73,(5:47) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 34 for 7 yards (K.Hayden; L.Briggs).,14,7,2012 -20121209_CHI@MIN,3,20,10,MIN,CHI,4,10,66,(5:10) C.Kluwe punts 56 yards to CHI 10 Center-C.Loeffler. D.Hester to CHI 31 for 21 yards (R.Ellison; R.Blanton).,14,7,2012 -20121209_CHI@MIN,3,19,55,CHI,MIN,1,10,69,(4:55) J.Cutler scrambles left end pushed ob at CHI 36 for 5 yards (C.Greenway).,7,14,2012 -20121209_CHI@MIN,3,19,26,CHI,MIN,2,5,64,(4:26) A.Allen up the middle to CHI 39 for 3 yards (J.Brinkley).,7,14,2012 -20121209_CHI@MIN,3,18,40,CHI,MIN,3,2,61,(3:40) (Shotgun) J.Cutler pass deep middle intended for B.Marshall INTERCEPTED by H.Smith at MIN 44. H.Smith for 56 yards TOUCHDOWN.,7,14,2012 -20121209_CHI@MIN,3,18,40,MIN,CHI,,,61,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,7,2012 -20121209_CHI@MIN,3,18,40,MIN,CHI,,,61,B.Walsh kicks 58 yards from MIN 35 to CHI 7. E.Weems pushed ob at CHI 25 for 18 yards (E.Griffen). PENALTY on CHI-M.Spaeth Offensive Holding 10 yards enforced at CHI 25.,21,7,2012 -20121209_CHI@MIN,3,18,21,CHI,MIN,1,10,85,(3:21) M.Forte right end to MIN 49 for 36 yards (J.Allen). PENALTY on MIN-J.Allen Unnecessary Roughness 15 yards enforced at MIN 49.,7,21,2012 -20121209_CHI@MIN,3,18,21,CHI,MIN,1,10,34,(3:21) PENALTY on CHI-G.Carimi False Start 5 yards enforced at MIN 34 - No Play.,7,21,2012 -20121209_CHI@MIN,3,17,33,CHI,MIN,1,15,39,(2:33) M.Forte left end to MIN 39 for no gain (E.Henderson). PENALTY on CHI-J.Brown Offensive Holding 10 yards enforced at MIN 39 - No Play.,7,21,2012 -20121209_CHI@MIN,3,17,4,CHI,MIN,1,25,49,(2:04) J.Cutler pass short right to K.Davis to MIN 39 for 10 yards (J.Sanford; L.Guion).,7,21,2012 -20121209_CHI@MIN,3,16,15,CHI,MIN,2,15,39,(1:15) J.Cutler pass incomplete deep left to A.Jeffery.,7,21,2012 -20121209_CHI@MIN,3,16,5,CHI,MIN,3,15,39,(1:05) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall [H.Smith].,7,21,2012 -20121209_CHI@MIN,3,15,58,CHI,MIN,4,15,39,(:58) A.Podlesh punts 38 yards to MIN 1 Center-P.Mannelly downed by CHI-E.Weems.,7,21,2012 -20121209_CHI@MIN,3,15,48,MIN,CHI,1,10,99,(:48) A.Peterson up the middle to MIN 5 for 4 yards (M.Wright).,21,7,2012 -20121209_CHI@MIN,3,15,9,MIN,CHI,2,6,95,(:09) A.Peterson up the middle to MIN 4 for -1 yards (C.Wootton).,21,7,2012 -20121209_CHI@MIN,4,15,0,MIN,CHI,3,7,96,(15:00) (Shotgun) C.Ponder pass short middle to M.Jenkins to MIN 12 for 8 yards (C.Tillman).,21,7,2012 -20121209_CHI@MIN,4,14,22,MIN,CHI,1,10,88,(14:22) T.Gerhart right guard to MIN 17 for 5 yards (H.Melton). PENALTY on CHI-C.Tillman Unnecessary Roughness 15 yards enforced at MIN 17.,21,7,2012 -20121209_CHI@MIN,4,13,58,MIN,CHI,1,10,68,(13:58) C.Ponder pass incomplete short middle to K.Rudolph.,21,7,2012 -20121209_CHI@MIN,4,13,53,MIN,CHI,2,10,68,(13:53) A.Peterson left end pushed ob at MIN 42 for 10 yards (J.Peppers).,21,7,2012 -20121209_CHI@MIN,4,13,7,MIN,CHI,1,10,58,(13:07) A.Peterson left guard to MIN 48 for 6 yards (N.Roach; L.Briggs).,21,7,2012 -20121209_CHI@MIN,4,12,23,MIN,CHI,2,4,52,(12:23) C.Ponder pass short right to R.Ellison to MIN 46 for -2 yards (G.Hayes).,21,7,2012 -20121209_CHI@MIN,4,11,35,MIN,CHI,3,6,54,(11:35) (Shotgun) C.Ponder pass short right to M.Jenkins to CHI 44 for 10 yards (N.Roach; K.Hayden).,21,7,2012 -20121209_CHI@MIN,4,10,52,MIN,CHI,1,10,44,(10:52) A.Peterson right end to CHI 47 for -3 yards (N.Roach).,21,7,2012 -20121209_CHI@MIN,4,10,10,MIN,CHI,2,13,47,(10:10) C.Ponder pass incomplete deep right to K.Rudolph.,21,7,2012 -20121209_CHI@MIN,4,10,4,MIN,CHI,3,13,47,(10:04) (Shotgun) T.Gerhart left guard to CHI 41 for 6 yards (Team).,21,7,2012 -20121209_CHI@MIN,4,9,23,MIN,CHI,4,7,41,(9:23) C.Kluwe punts 36 yards to CHI 5 Center-C.Loeffler downed by MIN-C.Loeffler.,21,7,2012 -20121209_CHI@MIN,4,9,13,CHI,MIN,1,10,95,(9:13) J.Cutler pass short middle to K.Davis to CHI 9 for 4 yards (A.Winfield).,7,21,2012 -20121209_CHI@MIN,4,8,29,CHI,MIN,2,6,91,(8:29) (Shotgun) J.Cutler pass incomplete deep middle to B.Marshall.,7,21,2012 -20121209_CHI@MIN,4,8,22,CHI,MIN,3,6,91,(8:22) (Shotgun) J.Cutler pass deep right to A.Jeffery to CHI 39 for 30 yards (J.Robinson).,7,21,2012 -20121209_CHI@MIN,4,7,44,CHI,MIN,1,10,61,(7:44) J.Cutler pass incomplete deep middle to K.Davis.,7,21,2012 -20121209_CHI@MIN,4,7,27,CHI,MIN,2,10,61,(7:27) J.Cutler pass deep left to B.Marshall to MIN 39 for 22 yards (A.Jefferson).,7,21,2012 -20121209_CHI@MIN,4,6,57,CHI,MIN,1,10,39,(6:57) (Shotgun) J.Cutler pass incomplete short middle (K.Williams).,7,21,2012 -20121209_CHI@MIN,4,6,52,CHI,MIN,2,10,39,(6:52) J.Cutler pass incomplete deep middle to K.Adams.,7,21,2012 -20121209_CHI@MIN,4,6,46,CHI,MIN,3,10,39,(6:46) (Shotgun) J.Cutler pass short middle to B.Marshall to MIN 32 for 7 yards (A.Winfield) [B.Robison].,7,21,2012 -20121209_CHI@MIN,4,6,2,CHI,MIN,4,3,32,(6:02) (Shotgun) J.Cutler pass short middle to B.Marshall to MIN 27 for 5 yards (J.Robinson).,7,21,2012 -20121209_CHI@MIN,4,5,19,CHI,MIN,1,10,27,(5:19) (Shotgun) J.Cutler pass short right to A.Jeffery to MIN 23 for 4 yards (J.Robinson).,7,21,2012 -20121209_CHI@MIN,4,4,40,CHI,MIN,2,6,23,(4:40) (Shotgun) J.Cutler pass incomplete short middle to D.Hester (A.Winfield).,7,21,2012 -20121209_CHI@MIN,4,4,37,CHI,MIN,3,6,23,(4:37) (Shotgun) J.Cutler pass incomplete short middle to D.Hester.,7,21,2012 -20121209_CHI@MIN,4,4,31,CHI,MIN,4,6,23,(4:31) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall.,7,21,2012 -20121209_CHI@MIN,4,4,27,MIN,CHI,1,10,77,(4:27) A.Peterson up the middle to MIN 24 for 1 yard (Team).,21,7,2012 -20121209_CHI@MIN,4,4,18,MIN,CHI,2,9,76,(4:18) A.Peterson right end to MIN 29 for 5 yards (C.Conte).,21,7,2012 -20121209_CHI@MIN,4,4,8,MIN,CHI,3,4,71,(4:08) A.Peterson left guard to MIN 30 for 1 yard (I.Idonije; N.Roach).,21,7,2012 -20121209_CHI@MIN,4,3,59,MIN,CHI,4,3,70,(3:59) C.Kluwe punts 36 yards to CHI 34 Center-C.Loeffler. D.Hester to CHI 34 for no gain (T.McKenzie). PENALTY on CHI-Z.Bowman Illegal Block Above the Waist 10 yards enforced at CHI 34.,21,7,2012 -20121209_CHI@MIN,4,3,50,CHI,MIN,1,10,76,(3:50) (Shotgun) J.Campbell pass short middle to M.Forte to CHI 25 for 1 yard (E.Griffen).,7,21,2012 -20121209_CHI@MIN,4,3,22,CHI,MIN,2,9,75,(3:22) (Shotgun) J.Campbell pass short middle to D.Hester to CHI 31 for 6 yards (J.Robinson).,7,21,2012 -20121209_CHI@MIN,4,2,59,CHI,MIN,3,3,69,(2:59) (Shotgun) J.Campbell pass incomplete short right to D.Hester. PENALTY on MIN-J.Robinson Defensive Pass Interference 9 yards enforced at CHI 31 - No Play.,7,21,2012 -20121209_CHI@MIN,4,2,55,CHI,MIN,1,10,60,(2:55) (Shotgun) J.Campbell scrambles left end ran ob at CHI 48 for 8 yards.,7,21,2012 -20121209_CHI@MIN,4,2,47,CHI,MIN,2,2,52,(2:47) (Shotgun) J.Campbell pass short middle to M.Forte to MIN 34 for 18 yards (A.Jefferson). MIN-A.Jefferson was injured during the play. His return is Questionable.,7,21,2012 -20121209_CHI@MIN,4,2,28,CHI,MIN,1,10,34,(2:28) (Shotgun) J.Campbell pass short right to K.Adams ran ob at MIN 25 for 9 yards.,7,21,2012 -20121209_CHI@MIN,4,2,21,CHI,MIN,2,1,25,(2:21) (Shotgun) J.Campbell pass incomplete short right to Unidentified.,7,21,2012 -20121209_CHI@MIN,4,2,15,CHI,MIN,3,1,25,(2:15) (Shotgun) J.Campbell pass short middle to D.Hester pushed ob at MIN 11 for 14 yards (J.Robinson).,7,21,2012 -20121209_CHI@MIN,4,2,15,CHI,MIN,1,10,11,(2:15) (Shotgun) PENALTY on CHI-J.Campbell Delay of Game 5 yards enforced at MIN 11 - No Play.,7,21,2012 -20121209_CHI@MIN,4,2,8,CHI,MIN,1,15,16,(2:08) (Shotgun) J.Campbell pass incomplete short middle to M.Forte [J.Allen].,7,21,2012 -20121209_CHI@MIN,4,2,3,CHI,MIN,2,15,16,(2:03) (Shotgun) J.Campbell pass incomplete short right to K.Adams. Penalty on CHI-K.Adams Illegal Touch Pass declined.,7,21,2012 -20121209_CHI@MIN,4,1,53,CHI,MIN,3,15,16,(1:53) (Shotgun) J.Campbell pass deep right to B.Marshall for 16 yards TOUCHDOWN.,7,21,2012 -20121209_CHI@MIN,4,1,53,CHI,MIN,,,16,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,21,2012 -20121209_CHI@MIN,4,1,53,CHI,MIN,,,16,(Onside Kick formation) R.Gould kicks onside 14 yards from CHI 35 to CHI 49. K.Rudolph to CHI 48 for 1 yard (C.Conte).,14,21,2012 -20121209_CHI@MIN,4,1,47,MIN,CHI,1,10,48,(1:47) C.Ponder kneels to CHI 49 for -1 yards.,21,14,2012 -20121209_CHI@MIN,4,1,7,MIN,CHI,2,11,49,(1:07) C.Ponder kneels to 50 for -1 yards.,21,14,2012 -20121209_CHI@MIN,4,0,38,MIN,CHI,3,12,50,(:38) C.Ponder kneels to MIN 49 for -1 yards.,21,14,2012 -20121209_CHI@MIN,4,0,38,MIN,CHI,,,50,                      ,21,14,2012 -20121209_SD@PIT,1,0,0,SD,PIT,,,50,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,0,0,2012 -20121209_SD@PIT,1,60,0,PIT,SD,1,10,80,(15:00) (Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 30 for 10 yards (K.Reyes).,0,0,2012 -20121209_SD@PIT,1,59,15,PIT,SD,1,10,70,(14:15) J.Dwyer up the middle to PIT 30 for no gain (E.Weddle).,0,0,2012 -20121209_SD@PIT,1,58,35,PIT,SD,2,10,70,(13:35) B.Roethlisberger pass incomplete short right to J.Dwyer. Pressure by #96 Johnson.,0,0,2012 -20121209_SD@PIT,1,58,29,PIT,SD,3,10,70,(13:29) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,0,0,2012 -20121209_SD@PIT,1,58,22,PIT,SD,4,10,70,(13:22) (Punt formation) D.Butler punts 37 yards to SD 33 Center-G.Warren. M.Spurlock to SD 40 for 7 yards (J.Victorian D.Van Dyke).,0,0,2012 -20121209_SD@PIT,1,58,11,SD,PIT,1,10,60,(13:11) R.Mathews right tackle to SD 49 for 9 yards (E.Hood).,0,0,2012 -20121209_SD@PIT,1,57,30,SD,PIT,2,1,51,(12:30) R.Mathews up the middle to PIT 48 for 3 yards (T.Polamalu; E.Hood).,0,0,2012 -20121209_SD@PIT,1,56,48,SD,PIT,1,10,48,(11:48) P.Rivers pass incomplete short middle to R.Mathews (E.Hood).,0,0,2012 -20121209_SD@PIT,1,56,42,SD,PIT,2,10,48,(11:42) (Shotgun) P.Rivers pass incomplete short right to A.Gates. Pressure by #92 Harrison Coverage by #96 Hood.,0,0,2012 -20121209_SD@PIT,1,56,37,SD,PIT,3,10,48,(11:37) (Shotgun) P.Rivers pass incomplete short right to R.Brown. Pressure by #99 Keisel.,0,0,2012 -20121209_SD@PIT,1,56,32,SD,PIT,4,10,48,(11:32) (Punt formation) M.Scifres punts 40 yards to PIT 8 Center-K.Nelson fair catch by A.Brown.,0,0,2012 -20121209_SD@PIT,1,56,23,PIT,SD,1,10,92,(11:23) J.Dwyer right guard to PIT 12 for 4 yards (C.Thomas).,0,0,2012 -20121209_SD@PIT,1,55,41,PIT,SD,2,6,88,(10:41) B.Roethlisberger pass short middle to J.Dwyer to PIT 17 for 5 yards (J.Johnson).,0,0,2012 -20121209_SD@PIT,1,54,53,PIT,SD,3,1,83,(9:53) I.Redman right guard to PIT 17 for no gain (D.Williams).,0,0,2012 -20121209_SD@PIT,1,54,20,PIT,SD,4,1,83,(9:20) (Punt formation) D.Butler punts 52 yards to SD 31 Center-G.Warren fair catch by M.Spurlock.,0,0,2012 -20121209_SD@PIT,1,54,15,SD,PIT,1,10,69,(9:15) R.Mathews right guard to SD 33 for 2 yards (J.Harrison).,0,0,2012 -20121209_SD@PIT,1,53,42,SD,PIT,2,8,67,(8:42) (Shotgun) R.Mathews right guard to SD 37 for 4 yards (T.Polamalu; J.Worilds).,0,0,2012 -20121209_SD@PIT,1,53,3,SD,PIT,3,4,63,(8:03) (Shotgun) P.Rivers pass short middle to A.Gates to SD 43 for 6 yards (L.Timmons).,0,0,2012 -20121209_SD@PIT,1,52,29,SD,PIT,1,10,57,(7:29) R.Mathews right guard to SD 44 for 1 yard (T.Polamalu; L.Foote).,0,0,2012 -20121209_SD@PIT,1,51,47,SD,PIT,2,9,56,(6:47) R.Mathews left tackle to SD 45 for 1 yard (L.Timmons).,0,0,2012 -20121209_SD@PIT,1,51,5,SD,PIT,3,8,55,(6:05) (Shotgun) P.Rivers pass short right to M.Spurlock to PIT 44 for 11 yards (C.Allen).,0,0,2012 -20121209_SD@PIT,1,50,36,SD,PIT,1,10,44,(5:36) R.Mathews right tackle to PIT 45 for -1 yards (L.Timmons).,0,0,2012 -20121209_SD@PIT,1,49,53,SD,PIT,2,11,45,(4:53) R.Mathews up the middle to PIT 44 for 1 yard (J.Worilds E.Hood).,0,0,2012 -20121209_SD@PIT,1,49,10,SD,PIT,3,10,44,(4:10) (Shotgun) P.Rivers pass incomplete short right to A.Gates. Coverage by #25 Clark. PENALTY on PIT-T.Polamalu Defensive Offside 5 yards enforced at PIT 44 - No Play.,0,0,2012 -20121209_SD@PIT,1,49,4,SD,PIT,3,5,39,(4:04) (Shotgun) PENALTY on PIT-J.Harrison Neutral Zone Infraction 5 yards enforced at PIT 39 - No Play.,0,0,2012 -20121209_SD@PIT,1,49,4,SD,PIT,1,10,34,(4:04) R.Mathews right guard to PIT 33 for 1 yard (J.Harrison).,0,0,2012 -20121209_SD@PIT,1,48,23,SD,PIT,2,9,33,(3:23) (Shotgun) P.Rivers pass incomplete short left to A.Gates.,0,0,2012 -20121209_SD@PIT,1,48,14,SD,PIT,3,9,33,(3:14) (Shotgun) P.Rivers pass incomplete deep middle to A.Gates.,0,0,2012 -20121209_SD@PIT,1,48,10,SD,PIT,4,9,33,(3:10) (Field Goal formation) N.Novak 51 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,0,0,2012 -20121209_SD@PIT,1,48,10,SD,PIT,,,33,N.Novak kicks 73 yards from SD 35 to PIT -8. C.Rainey to PIT 21 for 29 yards (C.Carr).,3,0,2012 -20121209_SD@PIT,1,48,0,PIT,SD,1,10,79,(3:00) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at PIT 21 - No Play.,0,3,2012 -20121209_SD@PIT,1,48,0,PIT,SD,1,15,84,(3:00) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 20 for 4 yards (D.Williams).,0,3,2012 -20121209_SD@PIT,1,47,21,PIT,SD,2,11,80,(2:21) M.Wallace right end to PIT 20 for no gain (E.Weddle).,0,3,2012 -20121209_SD@PIT,1,46,37,PIT,SD,3,11,80,(1:37) (Shotgun) B.Roethlisberger pass short middle to P.Burress to PIT 38 for 18 yards (Q.Jammer). SD-Q.Jammer was injured during the play.,0,3,2012 -20121209_SD@PIT,1,45,59,PIT,SD,1,10,62,(:59) J.Dwyer right guard to PIT 43 for 5 yards (M.Gilchrist; K.Reyes).,0,3,2012 -20121209_SD@PIT,1,45,18,PIT,SD,2,5,57,(:18) J.Dwyer right guard to PIT 44 for 1 yard (D.Williams).,0,3,2012 -20121209_SD@PIT,2,45,0,PIT,SD,3,4,62,(15:00) (Shotgun) B.Roethlisberger Aborted. M.Pouncey FUMBLES at PIT 44 recovered by PIT-B.Roethlisberger at PIT 38. B.Roethlisberger pass incomplete short middle to H.Miller. Coverage by #29 Wright.,0,3,2012 -20121209_SD@PIT,2,44,52,PIT,SD,4,4,56,(14:52) (Punt formation) D.Butler punts 38 yards to SD 18 Center-G.Warren fair catch by M.Spurlock.,0,3,2012 -20121209_SD@PIT,2,44,45,SD,PIT,1,10,82,(14:45) R.Mathews left guard to SD 24 for 6 yards (L.Foote).,3,0,2012 -20121209_SD@PIT,2,44,7,SD,PIT,2,4,76,(14:07) (Shotgun) P.Rivers pass incomplete short left to D.Alexander.,3,0,2012 -20121209_SD@PIT,2,44,2,SD,PIT,3,4,76,(14:02) (Shotgun) P.Rivers pass short right to M.Spurlock pushed ob at SD 30 for 6 yards (C.Brown). SD-N.Hardwick was injured during the play.,3,0,2012 -20121209_SD@PIT,2,43,36,SD,PIT,1,10,70,(13:36) (Shotgun) P.Rivers pass incomplete deep left to A.Gates. Coverage by #43 Polamalu.,3,0,2012 -20121209_SD@PIT,2,43,29,SD,PIT,2,10,70,(13:29) (Shotgun) P.Rivers pass incomplete short left to A.Gates. Coverage by #50 Foote.,3,0,2012 -20121209_SD@PIT,2,43,25,SD,PIT,3,10,70,(13:25) (Shotgun) P.Rivers pass short left to M.Spurlock to SD 40 for 10 yards (C.Brown).,3,0,2012 -20121209_SD@PIT,2,43,3,SD,PIT,1,10,60,(13:03) P.Rivers pass short left to D.Alexander to SD 46 for 6 yards (R.Clark).,3,0,2012 -20121209_SD@PIT,2,42,24,SD,PIT,2,4,54,(12:24) P.Rivers pass short left to M.Floyd to SD 49 for 3 yards (K.Lewis).,3,0,2012 -20121209_SD@PIT,2,41,47,SD,PIT,3,1,51,(11:47) J.Battle up the middle to SD 48 for -1 yards (C.Hampton; C.Allen).,3,0,2012 -20121209_SD@PIT,2,41,7,SD,PIT,4,2,52,(11:07) (Punt formation) M.Scifres punts 43 yards to PIT 9 Center-K.Nelson out of bounds.,3,0,2012 -20121209_SD@PIT,2,40,56,PIT,SD,1,10,91,(10:56) (Shotgun) B.Roethlisberger pass short right to E.Sanders to PIT 14 for 5 yards (D.Williams; S.Phillips).,0,3,2012 -20121209_SD@PIT,2,40,19,PIT,SD,2,5,86,(10:19) (No Huddle Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace (A.Cason).,0,3,2012 -20121209_SD@PIT,2,40,13,PIT,SD,3,5,86,(10:13) (Shotgun) B.Roethlisberger pass incomplete short middle to A.Brown (C.Liuget).,0,3,2012 -20121209_SD@PIT,2,40,5,PIT,SD,4,5,86,(10:05) (Punt formation) D.Butler punts 32 yards to PIT 46 Center-G.Warren downed by PIT-R.Mundy.,0,3,2012 -20121209_SD@PIT,2,39,59,SD,PIT,1,10,46,(9:59) R.Mathews up the middle to PIT 45 for 1 yard (E.Hood J.Harrison).,3,0,2012 -20121209_SD@PIT,2,39,20,SD,PIT,2,9,45,(9:20) P.Rivers pass incomplete short right to M.Floyd.,3,0,2012 -20121209_SD@PIT,2,39,16,SD,PIT,3,9,45,(9:16) (Shotgun) P.Rivers pass incomplete short middle to D.Alexander.,3,0,2012 -20121209_SD@PIT,2,39,10,SD,PIT,4,9,45,(9:10) (Punt formation) M.Scifres punts 38 yards to PIT 7 Center-K.Nelson fair catch by A.Brown.,3,0,2012 -20121209_SD@PIT,2,39,1,PIT,SD,1,10,93,(9:01) I.Redman left guard to PIT 8 for 1 yard (T.Spikes). PENALTY on PIT-M.Wallace Offensive Holding 3 yards enforced at PIT 7 - No Play.,0,3,2012 -20121209_SD@PIT,2,38,38,PIT,SD,1,13,96,(8:38) B.Roethlisberger scrambles left guard to PIT 12 for 8 yards (T.Spikes).,0,3,2012 -20121209_SD@PIT,2,37,51,PIT,SD,2,5,88,(7:51) B.Roethlisberger pass incomplete deep right to M.Wallace.,0,3,2012 -20121209_SD@PIT,2,37,43,PIT,SD,3,5,88,(7:43) (Shotgun) B.Roethlisberger pass incomplete short right to H.Miller [D.Williams]. Pressure by #58 Williams.,0,3,2012 -20121209_SD@PIT,2,37,40,PIT,SD,4,5,88,(7:40) (Punt formation) D.Butler punts 45 yards to SD 43 Center-G.Warren. M.Spurlock to PIT 36 for 21 yards (W.Allen).,0,3,2012 -20121209_SD@PIT,2,37,28,SD,PIT,1,10,36,(7:28) P.Rivers sacked ob at PIT 36 for 0 yards (E.Hood).,3,0,2012 -20121209_SD@PIT,2,36,57,SD,PIT,2,10,36,(6:57) D.Alexander pass incomplete short right to P.Rivers. Rivers lateraled to Alexander on the left side before Alexander attempted the pass.,3,0,2012 -20121209_SD@PIT,2,36,49,SD,PIT,3,10,36,(6:49) (Shotgun) P.Rivers pass incomplete deep middle to D.Alexander (K.Lewis).,3,0,2012 -20121209_SD@PIT,2,36,42,SD,PIT,4,10,36,(6:42) (Punt formation) M.Scifres punts 25 yards to PIT 11 Center-K.Nelson downed by SD-M.Spurlock.,3,0,2012 -20121209_SD@PIT,2,36,35,PIT,SD,1,10,89,(6:35) J.Dwyer up the middle to PIT 13 for 2 yards (E.Weddle K.Reyes).,0,3,2012 -20121209_SD@PIT,2,35,54,PIT,SD,2,8,87,(5:54) B.Roethlisberger pass incomplete deep left to A.Brown (E.Weddle).,0,3,2012 -20121209_SD@PIT,2,35,45,PIT,SD,3,8,87,(5:45) (Shotgun) B.Roethlisberger sacked at PIT 6 for -7 yards (M.Gilchrist).,0,3,2012 -20121209_SD@PIT,2,35,27,PIT,SD,4,15,94,(5:27) (Punt formation) D.Butler punts 49 yards to SD 45 Center-G.Warren. M.Spurlock ran ob at PIT 48 for 7 yards.,0,3,2012 -20121209_SD@PIT,2,35,18,SD,PIT,1,10,48,(5:18) R.Mathews right tackle to PIT 46 for 2 yards (L.Timmons).,3,0,2012 -20121209_SD@PIT,2,34,34,SD,PIT,2,8,46,(4:34) (Shotgun) P.Rivers pass short left to R.Brown to PIT 39 for 7 yards (C.Allen).,3,0,2012 -20121209_SD@PIT,2,33,48,SD,PIT,3,1,39,(3:48) (Shotgun) P.Rivers pass deep left to D.Alexander for 39 yards TOUCHDOWN. Penalty on PIT-C.Brown Illegal Contact declined.,3,0,2012 -20121209_SD@PIT,2,33,48,SD,PIT,,,39,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,3,0,2012 -20121209_SD@PIT,2,33,48,SD,PIT,,,39,N.Novak kicks 61 yards from SD 35 to PIT 4. C.Rainey ran ob at PIT 38 for 34 yards (S.Wright).,10,0,2012 -20121209_SD@PIT,2,33,31,PIT,SD,1,10,62,(3:31) (Shotgun) B.Roethlisberger scrambles right tackle to PIT 43 for 5 yards (T.Spikes).,0,10,2012 -20121209_SD@PIT,2,32,56,PIT,SD,2,5,57,(2:56) (No Huddle Shotgun) B.Roethlisberger pass short right to J.Dwyer pushed ob at PIT 47 for 4 yards (Q.Jammer).,0,10,2012 -20121209_SD@PIT,2,32,22,PIT,SD,3,1,53,(2:22) (No Huddle Shotgun) J.Dwyer up the middle to PIT 47 for no gain (A.Franklin). Official measurement.,0,10,2012 -20121209_SD@PIT,2,32,0,PIT,SD,4,1,53,(2:00) I.Redman up the middle to PIT 47 for no gain (C.Thomas; D.Williams).,0,10,2012 -20121209_SD@PIT,2,31,58,SD,PIT,1,10,47,(1:58) (Shotgun) R.Brown right guard to PIT 47 for no gain (C.Allen).,10,0,2012 -20121209_SD@PIT,2,31,29,SD,PIT,2,10,47,(1:29) (No Huddle Shotgun) P.Rivers pass incomplete short right to M.Floyd. Coverage by #23 Lewis.,10,0,2012 -20121209_SD@PIT,2,31,24,SD,PIT,3,10,47,(1:24) (Shotgun) P.Rivers pass short left to M.Spurlock to PIT 35 for 12 yards (C.Allen).,10,0,2012 -20121209_SD@PIT,2,31,16,SD,PIT,1,10,35,(1:16) (Shotgun) P.Rivers pass short left to A.Gates to PIT 21 for 14 yards (C.Brown) [L.Foote].,10,0,2012 -20121209_SD@PIT,2,31,9,SD,PIT,1,10,21,(1:09) (Shotgun) P.Rivers pass incomplete short right to R.Brown [J.Harrison]. Pressure by #92 Harrison Coverage by #50 Foote.,10,0,2012 -20121209_SD@PIT,2,31,5,SD,PIT,2,10,21,(1:05) (Shotgun) P.Rivers pass incomplete deep right to M.Floyd.,10,0,2012 -20121209_SD@PIT,2,30,59,SD,PIT,3,10,21,(:59) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd. Pressure by #99 Keisel.,10,0,2012 -20121209_SD@PIT,2,30,54,SD,PIT,4,10,21,(:54) (Field Goal formation) N.Novak 39 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,10,0,2012 -20121209_SD@PIT,2,30,54,SD,PIT,,,21,N.Novak kicks 65 yards from SD 35 to PIT 0. C.Rainey to PIT 10 for 10 yards (J.Battle).,13,0,2012 -20121209_SD@PIT,2,30,45,PIT,SD,1,10,90,(:45) (Shotgun) B.Roethlisberger pass short right to A.Brown ran ob at PIT 21 for 11 yards.,0,13,2012 -20121209_SD@PIT,2,30,40,PIT,SD,1,10,79,(:40) B.Roethlisberger pass deep middle to E.Sanders to SD 48 for 31 yards (C.Lynch).,0,13,2012 -20121209_SD@PIT,2,30,28,PIT,SD,1,10,48,(:28) B.Roethlisberger pass incomplete deep right to M.Wallace. Coverage by #23 Jammer.,0,13,2012 -20121209_SD@PIT,2,30,22,PIT,SD,2,10,48,(:22) (Shotgun) B.Roethlisberger pass incomplete short middle to H.Miller (C.Liuget).,0,13,2012 -20121209_SD@PIT,2,30,19,PIT,SD,3,10,48,(:19) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to SD 31 for 17 yards (S.Wright).,0,13,2012 -20121209_SD@PIT,2,30,4,PIT,SD,1,10,31,(:04) B.Roethlisberger spiked the ball to stop the clock.,0,13,2012 -20121209_SD@PIT,2,30,4,PIT,SD,2,10,31,(:04) (Field Goal formation) S.Suisham 49 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,13,2012 -20121209_SD@PIT,3,30,0,PIT,SD,,,31,S.Suisham kicks 68 yards from PIT 35 to SD -3. M.Spurlock pushed ob at SD 22 for 25 yards (C.Brown).,3,13,2012 -20121209_SD@PIT,3,29,55,SD,PIT,1,10,78,(14:55) R.Mathews right tackle to SD 23 for 1 yard (L.Timmons).,13,3,2012 -20121209_SD@PIT,3,29,16,SD,PIT,2,9,77,(14:16) (Shotgun) P.Rivers pass short left to D.Alexander to SD 31 for 8 yards (L.Timmons B.Keisel).,13,3,2012 -20121209_SD@PIT,3,28,33,SD,PIT,3,1,69,(13:33) (Shotgun) P.Rivers pass short left to D.Alexander to SD 39 for 8 yards (L.Timmons).,13,3,2012 -20121209_SD@PIT,3,27,52,SD,PIT,1,10,61,(12:52) P.Rivers pass incomplete short left to D.Rosario. Pressure by #99 Keisel.,13,3,2012 -20121209_SD@PIT,3,27,48,SD,PIT,2,10,61,(12:48) R.Mathews right tackle to SD 46 for 7 yards (B.Keisel R.Clark).,13,3,2012 -20121209_SD@PIT,3,27,2,SD,PIT,3,3,54,(12:02) (Shotgun) P.Rivers pass short left to M.Spurlock to PIT 49 for 5 yards (C.Allen).,13,3,2012 -20121209_SD@PIT,3,26,25,SD,PIT,1,10,49,(11:25) J.Battle right guard to PIT 47 for 2 yards (L.Timmons).,13,3,2012 -20121209_SD@PIT,3,25,41,SD,PIT,2,8,47,(10:41) R.Mathews right tackle pushed ob at PIT 38 for 9 yards (C.Allen).,13,3,2012 -20121209_SD@PIT,3,25,8,SD,PIT,1,10,38,(10:08) P.Rivers pass incomplete short right to L.McClain.,13,3,2012 -20121209_SD@PIT,3,25,2,SD,PIT,2,10,38,(10:02) P.Rivers scrambles left end pushed ob at PIT 33 for 5 yards (L.Timmons).,13,3,2012 -20121209_SD@PIT,3,24,35,SD,PIT,3,5,33,(9:35) (Shotgun) P.Rivers pass short left to D.Alexander to PIT 26 for 7 yards (C.Brown).,13,3,2012 -20121209_SD@PIT,3,23,47,SD,PIT,1,10,26,(8:47) R.Mathews left end pushed ob at PIT 24 for 2 yards (J.Harrison).,13,3,2012 -20121209_SD@PIT,3,23,14,SD,PIT,2,8,24,(8:14) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at PIT 24 - No Play.,13,3,2012 -20121209_SD@PIT,3,22,48,SD,PIT,2,13,29,(7:48) (Shotgun) P.Rivers pass incomplete deep left to M.Floyd [C.Heyward]. Pressure by #97 Heyward Coverage by #23.,13,3,2012 -20121209_SD@PIT,3,22,43,SD,PIT,3,13,29,(7:43) (Shotgun) R.Brown right guard to PIT 12 for 17 yards (T.Polamalu).,13,3,2012 -20121209_SD@PIT,3,22,0,SD,PIT,1,10,12,(7:00) R.Mathews right guard to PIT 10 for 2 yards (L.Foote).,13,3,2012 -20121209_SD@PIT,3,21,17,SD,PIT,2,8,10,(6:17) (Shotgun) R.Mathews right guard to PIT 3 for 7 yards (T.Polamalu C.Brown).,13,3,2012 -20121209_SD@PIT,3,20,33,SD,PIT,3,1,3,(5:33) P.Rivers pass short right to M.Floyd for 3 yards TOUCHDOWN.,13,3,2012 -20121209_SD@PIT,3,20,33,SD,PIT,,,3,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,13,3,2012 -20121209_SD@PIT,3,20,33,SD,PIT,,,3,N.Novak kicks 70 yards from SD 35 to PIT -5. C.Rainey to PIT 24 for 29 yards (B.Bird). PENALTY on PIT-C.Heyward Offensive Holding 8 yards enforced at PIT 16.,20,3,2012 -20121209_SD@PIT,3,20,20,SD,PIT,1,10,100,(5:20) B.Roethlisberger FUMBLES (Aborted) at PIT 3 RECOVERED by SD-Q.Jammer at PIT 0. TOUCHDOWN. The Replay Assistant challenged the fumble ruling and the play was Upheld.,20,3,2012 -20121209_SD@PIT,3,20,20,SD,PIT,,,100,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,20,3,2012 -20121209_SD@PIT,3,20,20,SD,PIT,,,100,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,27,3,2012 -20121209_SD@PIT,3,20,16,PIT,SD,1,10,80,(5:16) (Shotgun) B.Roethlisberger pass short right to H.Miller to PIT 23 for 3 yards (B.Bird).,3,27,2012 -20121209_SD@PIT,3,19,50,PIT,SD,2,7,77,(4:50) (No Huddle) J.Dwyer up the middle to PIT 37 for 14 yards (B.Bird E.Weddle).,3,27,2012 -20121209_SD@PIT,3,19,30,PIT,SD,1,10,63,(4:30) (No Huddle) J.Dwyer up the middle to PIT 43 for 6 yards (M.Gilchrist B.Bird).,3,27,2012 -20121209_SD@PIT,3,18,58,PIT,SD,2,4,57,(3:58) (No Huddle Shotgun) B.Roethlisberger pass incomplete short left to I.Redman. Coverage by # 97 Bront.,3,27,2012 -20121209_SD@PIT,3,18,54,PIT,SD,3,4,57,(3:54) (Shotgun) B.Roethlisberger scrambles left end to SD 49 for 8 yards.,3,27,2012 -20121209_SD@PIT,3,18,14,PIT,SD,1,10,49,(3:14) (No Huddle Shotgun) B.Roethlisberger pass short left to A.Brown to SD 40 for 9 yards (A.Cason M.Ingram).,3,27,2012 -20121209_SD@PIT,3,17,40,PIT,SD,2,1,40,(2:40) (No Huddle Shotgun) B.Roethlisberger pass deep right to M.Wallace for 40 yards TOUCHDOWN.,3,27,2012 -20121209_SD@PIT,3,17,40,PIT,SD,,,40,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler. PENALTY on SD Defensive 12 On-field 5 yards enforced between downs.,3,27,2012 -20121209_SD@PIT,3,17,40,PIT,SD,,,40,S.Suisham kicks 60 yards from PIT 40 to end zone Touchback.,10,27,2012 -20121209_SD@PIT,3,17,33,SD,PIT,1,10,80,(2:33) R.Mathews right guard to SD 21 for 1 yard (L.Foote; E.Hood).,27,10,2012 -20121209_SD@PIT,3,16,51,SD,PIT,2,9,79,(1:51) (Shotgun) P.Rivers pass short right to M.Spurlock ran ob at SD 28 for 7 yards.,27,10,2012 -20121209_SD@PIT,3,16,20,SD,PIT,3,2,72,(1:20) (Shotgun) P.Rivers pass incomplete short left to D.Alexander [L.Foote]. Pressure by #50 Foote Coverage by #35 Victorian.,27,10,2012 -20121209_SD@PIT,3,16,14,SD,PIT,4,2,72,(1:14) (Punt formation) Direct snap to E.Weddle. E.Weddle left end to SD 32 for 4 yards (R.Golden).,27,10,2012 -20121209_SD@PIT,3,15,27,SD,PIT,1,10,68,(:27) R.Mathews up the middle to SD 32 for no gain (L.Foote).,27,10,2012 -20121209_SD@PIT,4,15,0,SD,PIT,2,10,68,(15:00) (Shotgun) P.Rivers pass short right to M.Floyd pushed ob at SD 36 for 4 yards (K.Lewis).,27,10,2012 -20121209_SD@PIT,4,14,19,SD,PIT,3,6,64,(14:19) (Shotgun) P.Rivers pass short right to A.Gates to SD 47 for 11 yards (L.Timmons).,27,10,2012 -20121209_SD@PIT,4,13,39,SD,PIT,1,10,53,(13:39) (Shotgun) P.Rivers pass short left to M.Spurlock to PIT 40 for 13 yards (T.Polamalu).,27,10,2012 -20121209_SD@PIT,4,13,9,SD,PIT,1,10,40,(13:09) R.Mathews left end to PIT 39 for 1 yard (L.Timmons).,27,10,2012 -20121209_SD@PIT,4,12,26,SD,PIT,2,9,39,(12:26) P.Rivers pass short left to D.Alexander to PIT 34 for 5 yards (C.Allen).,27,10,2012 -20121209_SD@PIT,4,11,39,SD,PIT,3,4,34,(11:39) (Shotgun) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at PIT 34 - No Play.,27,10,2012 -20121209_SD@PIT,4,11,17,SD,PIT,3,9,39,(11:17) (Shotgun) P.Rivers pass incomplete short left to R.Brown. Pressure by #99 Keisel. PENALTY on SD-P.Rivers Intentional Grounding 14 yards enforced at PIT 39.,27,10,2012 -20121209_SD@PIT,4,11,12,SD,PIT,4,23,53,(11:12) (Punt formation) M.Scifres punts 41 yards to PIT 12 Center-K.Nelson. A.Brown to PIT 33 for 21 yards (J.Battle). PENALTY on PIT-B.Johnson Defensive Holding 6 yards enforced at PIT 12.,27,10,2012 -20121209_SD@PIT,4,11,1,PIT,SD,1,10,94,(11:01) C.Rainey right guard to PIT 12 for 6 yards (B.Bird).,10,27,2012 -20121209_SD@PIT,4,10,35,PIT,SD,2,4,88,(10:35) (No Huddle Shotgun) B.Roethlisberger pass short middle intended for E.Sanders INTERCEPTED by B.Bird at PIT 17. B.Bird to PIT 17 for no gain (H.Miller).,10,27,2012 -20121209_SD@PIT,4,10,25,SD,PIT,1,10,17,(10:25) R.Mathews left guard to PIT 15 for 2 yards (L.Foote). SD-L.McClain was injured during the play.,27,10,2012 -20121209_SD@PIT,4,9,52,SD,PIT,2,8,15,(9:52) (Shotgun) P.Rivers pass short left to D.Alexander for 15 yards TOUCHDOWN.,27,10,2012 -20121209_SD@PIT,4,9,52,SD,PIT,,,15,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,27,10,2012 -20121209_SD@PIT,4,9,52,SD,PIT,,,15,N.Novak kicks 65 yards from SD 35 to PIT 0. C.Rainey to PIT 19 for 19 yards (L.English).,34,10,2012 -20121209_SD@PIT,4,9,40,PIT,SD,1,10,81,(9:40) (Shotgun) B.Roethlisberger pass incomplete deep left to A.Brown. Coverage by #20 Cason.,10,34,2012 -20121209_SD@PIT,4,9,31,PIT,SD,2,10,81,(9:31) (Shotgun) B.Roethlisberger pass short middle to J.Dwyer to PIT 28 for 9 yards (B.Bird).,10,34,2012 -20121209_SD@PIT,4,8,59,PIT,SD,3,1,72,(8:59) (No Huddle Shotgun) B.Roethlisberger pass short right to M.Wallace to PIT 33 for 5 yards (M.Gilchrist).,10,34,2012 -20121209_SD@PIT,4,8,35,PIT,SD,1,10,67,(8:35) (No Huddle Shotgun) B.Roethlisberger pass incomplete deep right to M.Wallace. PENALTY on PIT-H.Miller Offensive Holding 10 yards enforced at PIT 33 - No Play. Coverage by #41 Lynch.,10,34,2012 -20121209_SD@PIT,4,8,28,PIT,SD,1,20,77,(8:28) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown. Coverage by #41 Lynch.,10,34,2012 -20121209_SD@PIT,4,8,20,PIT,SD,2,20,77,(8:20) (Shotgun) B.Roethlisberger pass deep right to M.Wallace pushed ob at PIT 42 for 19 yards (C.Lynch).,10,34,2012 -20121209_SD@PIT,4,7,49,PIT,SD,3,1,58,(7:49) (Shotgun) B.Roethlisberger pass short right to M.Wallace to SD 48 for 10 yards (Q.Jammer).,10,34,2012 -20121209_SD@PIT,4,7,21,PIT,SD,1,10,48,(7:21) (No Huddle Shotgun) B.Roethlisberger pass short right to H.Miller to SD 28 for 20 yards (C.Lynch).,10,34,2012 -20121209_SD@PIT,4,6,51,PIT,SD,1,10,28,(6:51) (No Huddle Shotgun) B.Roethlisberger pass deep middle to J.Cotchery to SD 12 for 16 yards (E.Weddle). San Diego challenged the pass completion ruling and the play was REVERSED. (No Huddle Shotgun) B.Roethlisberger pass incomplete deep middle to J.Cotchery (E.Weddle).,10,34,2012 -20121209_SD@PIT,4,6,47,PIT,SD,2,10,28,(6:47) (Shotgun) B.Roethlisberger pass incomplete short left to A.Brown. PENALTY on SD-A.Cason Defensive Pass Interference 7 yards enforced at SD 28 - No Play.,10,34,2012 -20121209_SD@PIT,4,6,43,PIT,SD,1,10,21,(6:43) (Shotgun) B.Roethlisberger scrambles left end ran ob at SD 11 for 10 yards (A.Cason).,10,34,2012 -20121209_SD@PIT,4,6,17,PIT,SD,1,10,11,(6:17) (Shotgun) B.Roethlisberger pass short middle to M.Wallace for 11 yards TOUCHDOWN.,10,34,2012 -20121209_SD@PIT,4,6,17,PIT,SD,,,11,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,10,34,2012 -20121209_SD@PIT,4,6,17,PIT,SD,,,11,S.Suisham kicks 30 yards from PIT 35 to SD 35. M.Ingram (didn't try to advance) to SD 34 for -1 yards (S.Sylvester).,17,34,2012 -20121209_SD@PIT,4,6,5,SD,PIT,1,10,66,(6:05) R.Mathews left tackle to SD 36 for 2 yards (T.Polamalu C.Hampton).,34,17,2012 -20121209_SD@PIT,4,5,22,SD,PIT,2,8,64,(5:22) R.Mathews up the middle to SD 39 for 3 yards (E.Hood).,34,17,2012 -20121209_SD@PIT,4,4,38,SD,PIT,3,5,61,(4:38) R.Mathews left guard to SD 37 for -2 yards (E.Hood).,34,17,2012 -20121209_SD@PIT,4,4,34,SD,PIT,4,7,63,(4:34) (Punt formation) M.Scifres punts 36 yards to PIT 27 Center-K.Nelson fair catch by A.Brown.,34,17,2012 -20121209_SD@PIT,4,4,27,PIT,SD,1,10,73,(4:27) (Shotgun) B.Roethlisberger sacked at PIT 20 for -7 yards (C.Liuget).,17,34,2012 -20121209_SD@PIT,4,4,1,PIT,SD,2,17,80,(4:01) (Shotgun) B.Roethlisberger pass incomplete short left to A.Brown (A.Cason) [J.Johnson].,17,34,2012 -20121209_SD@PIT,4,3,55,PIT,SD,3,17,80,(3:55) (Shotgun) B.Roethlisberger pass incomplete short middle to E.Sanders (C.Lynch).,17,34,2012 -20121209_SD@PIT,4,3,47,PIT,SD,4,17,80,(3:47) (Punt formation) D.Butler punts 79 yards to SD 1 Center-G.Warren downed by PIT-D.Van Dyke.,17,34,2012 -20121209_SD@PIT,4,3,35,SD,PIT,1,10,99,(3:35) L.McClain up the middle to SD 2 for 1 yard (C.Hampton).,34,17,2012 -20121209_SD@PIT,4,2,53,SD,PIT,2,9,98,(2:53) L.McClain up the middle to SD 4 for 2 yards (C.Heyward).,34,17,2012 -20121209_SD@PIT,4,2,42,SD,PIT,3,7,96,(2:42) L.McClain right guard to SD 5 for 1 yard (R.Clark; L.Foote).,34,17,2012 -20121209_SD@PIT,4,2,42,SD,PIT,4,6,95,(2:42) (Punt formation) M.Scifres punts 39 yards to SD 44 Center-K.Nelson downed by SD-M.Ingram.,34,17,2012 -20121209_SD@PIT,4,2,33,PIT,SD,1,10,44,(2:33) (Shotgun) B.Roethlisberger pass short middle to H.Miller to SD 31 for 13 yards (M.Gilchrist).,17,34,2012 -20121209_SD@PIT,4,2,8,PIT,SD,1,10,31,(2:08) (No Huddle Shotgun) B.Roethlisberger pass short left to A.Brown to SD 17 for 14 yards (A.Cason).,17,34,2012 -20121209_SD@PIT,4,2,0,PIT,SD,1,10,17,(2:00) (Shotgun) B.Roethlisberger pass incomplete deep left to P.Burress.,17,34,2012 -20121209_SD@PIT,4,1,55,PIT,SD,2,10,17,(1:55) (Shotgun) B.Roethlisberger pass short left to C.Rainey to SD 12 for 5 yards (T.Spikes). PENALTY on PIT-M.Starks Illegal Use of Hands 10 yards enforced at SD 17 - No Play.,17,34,2012 -20121209_SD@PIT,4,1,41,PIT,SD,2,20,27,(1:41) (Shotgun) B.Roethlisberger pass deep middle to H.Miller to SD 1 for 26 yards (E.Weddle). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,17,34,2012 -20121209_SD@PIT,4,1,8,PIT,SD,1,1,1,(1:08) B.Roethlisberger pass incomplete short middle to H.Miller. Coverage by #23 Jammer.,17,34,2012 -20121209_SD@PIT,4,1,2,PIT,SD,2,1,1,(1:02) B.Roethlisberger pass short right to A.Brown for 1 yard TOUCHDOWN.,17,34,2012 -20121209_SD@PIT,4,1,2,PIT,SD,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,34,2012 -20121209_SD@PIT,4,1,2,PIT,SD,,,1,S.Suisham kicks onside 13 yards from PIT 35 to PIT 48. A.Gachkar (didn't try to advance) to SD 48 for -4 yards (S.Sylvester). PENALTY on SD Low Block 15 yards enforced at PIT 35 - No Play.,24,34,2012 -20121209_SD@PIT,4,0,55,SD,PIT,1,10,96,(:55) P.Rivers kneels to SD 3 for -1 yards.,34,24,2012 -20121209_SD@PIT,4,0,28,SD,PIT,2,11,97,(:28) P.Rivers kneels to SD 2 for -1 yards.,34,24,2012 -20121209_SD@PIT,4,0,28,SD,PIT,,,97,                      ,34,24,2012 -20121209_PHI@TB,1,0,0,TB,PHI,,,97,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20121209_PHI@TB,1,60,0,PHI,TB,1,10,80,(15:00) (Shotgun) N.Foles pass short right to B.Celek to PHI 21 for 1 yard (L.Johnson L.David).,0,0,2012 -20121209_PHI@TB,1,59,33,PHI,TB,2,9,79,(14:33) (Shotgun) N.Foles pass short left to D.Johnson to PHI 27 for 6 yards (E.Biggers).,0,0,2012 -20121209_PHI@TB,1,58,53,PHI,TB,3,3,73,(13:53) (Shotgun) N.Foles sacked at PHI 17 for -10 yards (G.McCoy).,0,0,2012 -20121209_PHI@TB,1,58,32,PHI,TB,4,13,83,(13:32) (Punt formation) M.McBriar punts 66 yards to TB 17 Center-J.Dorenbos. R.Parrish to TB 35 for 18 yards (A.Jordan).,0,0,2012 -20121209_PHI@TB,1,58,18,TB,PHI,1,10,69,(13:18) J.Freeman FUMBLES (Aborted) at TB 31 recovered by TB-D.Martin at TB 31. D.Martin to TB 31 for no gain (B.Graham).,0,0,2012 -20121209_PHI@TB,1,57,45,TB,PHI,2,14,69,(12:45) D.Martin right tackle to TB 32 for 1 yard (N.Asomugha).,0,0,2012 -20121209_PHI@TB,1,57,2,TB,PHI,3,13,68,(12:02) (Shotgun) D.Ware right end to TB 25 for -7 yards (M.Kendricks).,0,0,2012 -20121209_PHI@TB,1,56,21,TB,PHI,4,20,75,(11:21) (Punt formation) M.Koenen punts 44 yards to PHI 31 Center-A.Economos fair catch by D.Johnson.,0,0,2012 -20121209_PHI@TB,1,56,11,PHI,TB,1,10,69,(11:11) B.Brown right tackle to PHI 27 for -4 yards (M.Bennett).,0,0,2012 -20121209_PHI@TB,1,55,36,PHI,TB,2,14,73,(10:36) (Shotgun) B.Brown left end to PHI 27 for no gain (R.Barber).,0,0,2012 -20121209_PHI@TB,1,55,16,PHI,TB,3,14,73,(10:16) (Shotgun) N.Foles pass incomplete short left to J.Maclin.,0,0,2012 -20121209_PHI@TB,1,55,11,PHI,TB,4,14,73,(10:11) (Punt formation) M.McBriar punts 45 yards to TB 28 Center-J.Dorenbos. R.Parrish ran ob at TB 35 for 7 yards (N.Allen).,0,0,2012 -20121209_PHI@TB,1,55,5,TB,PHI,1,10,65,(10:05) J.Freeman pass incomplete short right to V.Jackson (D.Rodgers-Cromartie).,0,0,2012 -20121209_PHI@TB,1,55,1,TB,PHI,2,10,65,(10:01) J.Freeman pass incomplete deep middle to V.Jackson [C.Jenkins].,0,0,2012 -20121209_PHI@TB,1,54,53,TB,PHI,3,10,65,(9:53) (Shotgun) J.Freeman pass short left to V.Jackson pushed ob at PHI 46 for 19 yards (N.Asomugha).,0,0,2012 -20121209_PHI@TB,1,54,24,TB,PHI,1,10,46,(9:24) D.Martin left guard to PHI 42 for 4 yards (D.Landri T.Cole).,0,0,2012 -20121209_PHI@TB,1,53,45,TB,PHI,2,6,42,(8:45) D.Martin left guard to PHI 39 for 3 yards (D.Ryans J.Chaney).,0,0,2012 -20121209_PHI@TB,1,53,2,TB,PHI,3,3,39,(8:02) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,0,0,2012 -20121209_PHI@TB,1,52,57,TB,PHI,4,3,39,(7:57) (Punt formation) M.Koenen punts 25 yards to PHI 14 Center-A.Economos fair catch by D.Johnson.,0,0,2012 -20121209_PHI@TB,1,52,49,PHI,TB,1,10,86,(7:49) (Shotgun) N.Foles pass short left to R.Cooper to PHI 24 for 10 yards (E.Biggers).,0,0,2012 -20121209_PHI@TB,1,52,11,PHI,TB,1,10,76,(7:11) (Shotgun) N.Foles pass incomplete short left to R.Cooper (E.Biggers) [L.David].,0,0,2012 -20121209_PHI@TB,1,52,5,PHI,TB,2,10,76,(7:05) (Shotgun) B.Brown left tackle to PHI 25 for 1 yard (G.McCoy).,0,0,2012 -20121209_PHI@TB,1,51,26,PHI,TB,3,9,75,(6:26) (Shotgun) N.Foles sacked at PHI 15 for -10 yards (M.Bennett).,0,0,2012 -20121209_PHI@TB,1,51,10,PHI,TB,4,19,85,(6:10) (Punt formation) M.McBriar punts 46 yards to TB 39 Center-J.Dorenbos downed by PHI-N.Allen.,0,0,2012 -20121209_PHI@TB,1,50,55,TB,PHI,1,10,61,(5:55) (Shotgun) J.Freeman pass short right to D.Martin to TB 43 for 4 yards (B.Graham).,0,0,2012 -20121209_PHI@TB,1,50,26,TB,PHI,2,6,57,(5:26) D.Martin up the middle to 50 for 7 yards (D.Ryans).,0,0,2012 -20121209_PHI@TB,1,49,44,TB,PHI,1,10,50,(4:44) PENALTY on TB-D.Penn False Start 5 yards enforced at 50 - No Play.,0,0,2012 -20121209_PHI@TB,1,49,24,TB,PHI,1,15,55,(4:24) (Shotgun) D.Martin right guard to PHI 49 for 6 yards (C.Anderson).,0,0,2012 -20121209_PHI@TB,1,48,51,TB,PHI,2,9,49,(3:51) J.Freeman pass incomplete short left to L.Stocker (J.Chaney).,0,0,2012 -20121209_PHI@TB,1,48,45,TB,PHI,3,9,49,(3:45) (Shotgun) J.Freeman pass incomplete short middle to D.Clark.,0,0,2012 -20121209_PHI@TB,1,48,40,TB,PHI,4,9,49,(3:40) (Punt formation) M.Koenen punts 49 yards to end zone Center-A.Economos Touchback.,0,0,2012 -20121209_PHI@TB,1,48,30,PHI,TB,1,10,80,(3:30) B.Brown left end to PHI 21 for 1 yard (G.Gibson).,0,0,2012 -20121209_PHI@TB,1,47,54,PHI,TB,2,9,79,(2:54) (Shotgun) N.Foles pass short right to J.Maclin to PHI 25 for 4 yards (L.David).,0,0,2012 -20121209_PHI@TB,1,47,17,PHI,TB,3,5,75,(2:17) (Shotgun) N.Foles pass short middle to R.Cooper to PHI 41 for 16 yards (A.Black).,0,0,2012 -20121209_PHI@TB,1,46,41,PHI,TB,1,10,59,(1:41) B.Brown left end pushed ob at PHI 41 for no gain (R.Barber).,0,0,2012 -20121209_PHI@TB,1,46,11,PHI,TB,2,10,59,(1:11) (Shotgun) N.Foles pass incomplete deep right to M.McNutt [D.Te'o-Nesheim].,0,0,2012 -20121209_PHI@TB,1,46,3,PHI,TB,3,10,59,(1:03) (Shotgun) N.Foles pass short right to J.Avant to PHI 48 for 7 yards (A.Gaitor).,0,0,2012 -20121209_PHI@TB,1,45,26,PHI,TB,4,3,52,(:26) (Punt formation) M.McBriar punts 29 yards to TB 23 Center-J.Dorenbos out of bounds.,0,0,2012 -20121209_PHI@TB,1,45,17,TB,PHI,1,10,77,(:17) D.Martin right tackle to TB 30 for 7 yards (C.Thornton C.Anderson).,0,0,2012 -20121209_PHI@TB,2,45,0,TB,PHI,2,3,70,(15:00) L.Blount left guard to TB 32 for 2 yards (M.Kendricks).,0,0,2012 -20121209_PHI@TB,2,44,21,TB,PHI,3,1,68,(14:21) D.Martin right end to TB 31 for -1 yards (V.Curry).,0,0,2012 -20121209_PHI@TB,2,43,44,TB,PHI,4,2,69,(13:44) (Punt formation) M.Koenen punts 48 yards to PHI 21 Center-A.Economos. D.Johnson to PHI 23 for 2 yards (D.Gorrer).,0,0,2012 -20121209_PHI@TB,2,43,31,PHI,TB,1,10,77,(13:31) B.Brown up the middle to PHI 23 for no gain (A.Gaitor).,0,0,2012 -20121209_PHI@TB,2,42,59,PHI,TB,2,10,77,(12:59) N.Foles sacked at PHI 16 for -7 yards (D.Te'o-Nesheim).,0,0,2012 -20121209_PHI@TB,2,42,29,PHI,TB,3,17,84,(12:29) (Shotgun) N.Foles pass short middle to J.Maclin to PHI 30 for 14 yards (R.Barber).,0,0,2012 -20121209_PHI@TB,2,41,53,PHI,TB,4,3,70,(11:53) (Punt formation) M.McBriar punts 52 yards to TB 18 Center-J.Dorenbos. R.Parrish ran ob at TB 48 for 30 yards (J.Avant).,0,0,2012 -20121209_PHI@TB,2,41,36,TB,PHI,1,10,52,(11:36) (Shotgun) J.Freeman pass short left to D.Martin to TB 49 for 1 yard (D.Ryans). PENALTY on TB-D.Dotson Offensive Holding 10 yards enforced at TB 48 - No Play.,0,0,2012 -20121209_PHI@TB,2,41,9,TB,PHI,1,20,62,(11:09) (Shotgun) J.Freeman pass short left to D.Martin to TB 32 for -6 yards (F.Cox).,0,0,2012 -20121209_PHI@TB,2,40,29,TB,PHI,2,26,68,(10:29) J.Freeman pass incomplete deep right to M.Williams (D.Rodgers-Cromartie).,0,0,2012 -20121209_PHI@TB,2,40,20,TB,PHI,3,26,68,(10:20) (Shotgun) J.Freeman pass incomplete deep left to D.Clark (N.Asomugha). PHI-N.Asomugha was injured during the play.,0,0,2012 -20121209_PHI@TB,2,40,14,TB,PHI,4,26,68,(10:14) (Punt formation) M.Koenen punts 48 yards to PHI 20 Center-A.Economos. D.Johnson to PHI 38 for 18 yards (A.Economos). PENALTY on TB-A.Hayward Face Mask (15 Yards) 15 yards enforced at PHI 42.,0,0,2012 -20121209_PHI@TB,2,40,2,PHI,TB,1,10,43,(10:02) N.Foles pass short middle to C.Harbor to TB 33 for 10 yards (L.David A.Hayward).,0,0,2012 -20121209_PHI@TB,2,39,28,PHI,TB,1,10,33,(9:28) (Shotgun) N.Foles pass incomplete short left to J.Maclin.,0,0,2012 -20121209_PHI@TB,2,39,23,PHI,TB,2,10,33,(9:23) (Shotgun) B.Brown left end to TB 40 for -7 yards (R.Barber).,0,0,2012 -20121209_PHI@TB,2,38,53,PHI,TB,3,17,40,(8:53) (Shotgun) N.Foles pass deep left to J.Avant ran ob at TB 20 for 20 yards.,0,0,2012 -20121209_PHI@TB,2,38,41,PHI,TB,1,10,20,(8:41) B.Brown left end to TB 9 for 11 yards (C.Irvin).,0,0,2012 -20121209_PHI@TB,2,38,1,PHI,TB,1,9,9,(8:01) B.Brown right tackle to TB 10 for -1 yards (M.Bennett A.Gaitor).,0,0,2012 -20121209_PHI@TB,2,37,27,PHI,TB,2,10,10,(7:27) (Shotgun) N.Foles pass incomplete short right to J.Avant [G.Gibson].,0,0,2012 -20121209_PHI@TB,2,37,20,PHI,TB,3,10,10,(7:20) N.Foles pass incomplete short middle to B.Brown [M.Bennett].,0,0,2012 -20121209_PHI@TB,2,37,16,PHI,TB,4,10,10,(7:16) (Field Goal formation) A.Henery 28 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20121209_PHI@TB,2,37,16,PHI,TB,,,10,A.Henery kicks 72 yards from PHI 35 to TB -7. T.Underwood to TB 15 for 22 yards (R.Rau).,3,0,2012 -20121209_PHI@TB,2,37,7,TB,PHI,1,10,85,(7:07) D.Martin left tackle to TB 20 for 5 yards (D.Ryans V.Curry).,0,3,2012 -20121209_PHI@TB,2,36,27,TB,PHI,2,5,80,(6:27) J.Freeman pass deep left to D.Clark to TB 39 for 19 yards (D.Rodgers-Cromartie).,0,3,2012 -20121209_PHI@TB,2,35,49,TB,PHI,1,10,61,(5:49) J.Freeman pass incomplete short left to V.Jackson (M.Kendricks).,0,3,2012 -20121209_PHI@TB,2,35,39,TB,PHI,2,10,61,(5:39) D.Martin left tackle to TB 41 for 2 yards (D.Rodgers-Cromartie).,0,3,2012 -20121209_PHI@TB,2,34,55,TB,PHI,3,8,59,(4:55) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,0,3,2012 -20121209_PHI@TB,2,34,48,TB,PHI,4,8,59,(4:48) (Punt formation) M.Koenen punts 50 yards to PHI 9 Center-A.Economos. D.Johnson ran ob at PHI 20 for 11 yards (K.Tandy).,0,3,2012 -20121209_PHI@TB,2,34,37,PHI,TB,1,10,80,(4:37) N.Foles pass short left to R.Cooper to PHI 26 for 6 yards (E.Biggers).,3,0,2012 -20121209_PHI@TB,2,34,2,PHI,TB,2,4,74,(4:02) (Shotgun) N.Foles pass short left to R.Cooper pushed ob at PHI 31 for 5 yards (E.Biggers).,3,0,2012 -20121209_PHI@TB,2,33,40,PHI,TB,1,10,69,(3:40) (Shotgun) N.Foles pass short right to D.Johnson to PHI 45 for 14 yards (A.Black).,3,0,2012 -20121209_PHI@TB,2,33,2,PHI,TB,1,10,55,(3:02) N.Foles pass short left to B.Brown to PHI 47 for 2 yards (L.David M.Foster).,3,0,2012 -20121209_PHI@TB,2,32,25,PHI,TB,2,8,53,(2:25) (Shotgun) B.Brown right tackle to TB 49 for 4 yards (L.David).,3,0,2012 -20121209_PHI@TB,2,32,0,PHI,TB,3,4,49,(2:00) (Shotgun) N.Foles pass deep right to J.Avant ran ob at TB 10 for 39 yards.,3,0,2012 -20121209_PHI@TB,2,31,51,PHI,TB,1,10,10,(1:51) (Shotgun) N.Foles scrambles right end for 10 yards TOUCHDOWN.,3,0,2012 -20121209_PHI@TB,2,31,51,PHI,TB,,,10,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,3,0,2012 -20121209_PHI@TB,2,31,51,PHI,TB,,,10,A.Henery kicks 67 yards from PHI 35 to TB -2. T.Underwood to TB 23 for 25 yards (C.Marsh A.Jordan).,10,0,2012 -20121209_PHI@TB,2,31,35,TB,PHI,1,10,77,(1:35) J.Freeman pass incomplete short left to D.Clark (M.Kendricks).,0,10,2012 -20121209_PHI@TB,2,31,30,TB,PHI,2,10,77,(1:30) (Shotgun) J.Freeman pass deep right to V.Jackson to TB 48 for 25 yards (N.Allen).,0,10,2012 -20121209_PHI@TB,2,31,5,TB,PHI,1,10,52,(1:05) (Shotgun) J.Freeman sacked at TB 40 for -8 yards (F.Cox). Penalty on TB-D.Dotson Offensive Holding declined.,0,10,2012 -20121209_PHI@TB,2,30,58,TB,PHI,2,18,60,(:58) (Shotgun) J.Freeman pass incomplete deep left to M.Williams (C.Marsh).,0,10,2012 -20121209_PHI@TB,2,30,52,TB,PHI,3,18,60,(:52) (Shotgun) J.Freeman sacked at TB 37 for -3 yards (C.Jenkins).,0,10,2012 -20121209_PHI@TB,2,30,38,TB,PHI,4,21,63,(:38) (Punt formation) M.Koenen punts 41 yards to PHI 22 Center-A.Economos. D.Johnson to PHI 26 for 4 yards (M.Lewis).,0,10,2012 -20121209_PHI@TB,2,30,28,PHI,TB,1,10,74,(:28) (Shotgun) N.Foles pass short right to D.Lewis to TB 46 for 28 yards (A.Black).,10,0,2012 -20121209_PHI@TB,2,30,18,PHI,TB,1,10,46,(:18) (Shotgun) N.Foles pass incomplete deep left to R.Cooper.,10,0,2012 -20121209_PHI@TB,2,30,11,PHI,TB,2,10,46,(:11) (Shotgun) N.Foles pass short right to C.Harbor to TB 35 for 11 yards (M.Barron).,10,0,2012 -20121209_PHI@TB,2,30,5,PHI,TB,1,10,35,(:05) (Field Goal formation) PENALTY on PHI False Start 5 yards enforced at TB 35 - No Play.,10,0,2012 -20121209_PHI@TB,2,30,5,PHI,TB,1,15,40,(:05) (Field Goal formation) A.Henery 58 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-M.McBriar.,10,0,2012 -20121209_PHI@TB,3,30,0,PHI,TB,,,40,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,10,0,2012 -20121209_PHI@TB,3,30,0,TB,PHI,1,10,80,(15:00) (Shotgun) J.Freeman pass short right to T.Underwood to TB 37 for 17 yards (B.Boykin).,0,10,2012 -20121209_PHI@TB,3,29,25,TB,PHI,1,10,63,(14:25) D.Martin right tackle to TB 41 for 4 yards (J.Chaney).,0,10,2012 -20121209_PHI@TB,3,28,53,TB,PHI,2,6,59,(13:53) J.Freeman pass short left to M.Williams to PHI 46 for 13 yards (N.Asomugha).,0,10,2012 -20121209_PHI@TB,3,28,15,TB,PHI,1,10,46,(13:15) J.Freeman pass short middle to D.Martin to PHI 40 for 6 yards (M.Kendricks).,0,10,2012 -20121209_PHI@TB,3,27,38,TB,PHI,2,4,40,(12:38) J.Freeman pass incomplete deep left to D.Martin.,0,10,2012 -20121209_PHI@TB,3,27,30,TB,PHI,3,4,40,(12:30) (Shotgun) J.Freeman pass incomplete deep left to T.Underwood.,0,10,2012 -20121209_PHI@TB,3,27,25,TB,PHI,4,4,40,(12:25) (Punt formation) M.Koenen punts 27 yards to PHI 13 Center-A.Economos. D.Johnson MUFFS catch touched at PHI 13 RECOVERED by TB-D.Watson at PHI 5. D.Watson dead ball declared at PHI 5 for no gain.,0,10,2012 -20121209_PHI@TB,3,27,14,TB,PHI,1,5,5,(12:14) D.Martin right guard to PHI 1 for 4 yards (F.Cox).,0,10,2012 -20121209_PHI@TB,3,26,47,TB,PHI,2,1,1,(11:47) J.Freeman pass incomplete short right to D.Clark [C.Jenkins].,0,10,2012 -20121209_PHI@TB,3,26,41,TB,PHI,3,1,1,(11:41) (Shotgun) J.Freeman pass short left to M.Williams for 1 yard TOUCHDOWN.,0,10,2012 -20121209_PHI@TB,3,26,41,TB,PHI,,,1,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,10,2012 -20121209_PHI@TB,3,26,41,TB,PHI,,,1,M.Koenen kicks 58 yards from TB 35 to PHI 7. D.Lewis to PHI 40 for 33 yards (L.Johnson).,7,10,2012 -20121209_PHI@TB,3,26,27,PHI,TB,1,10,60,(11:27) (Shotgun) N.Foles sacked at PHI 32 for -8 yards (G.McCoy).,10,7,2012 -20121209_PHI@TB,3,26,1,PHI,TB,2,18,68,(11:01) (Shotgun) N.Foles pass short right to J.Avant to PHI 42 for 10 yards (R.Barber G.McCoy).,10,7,2012 -20121209_PHI@TB,3,25,16,PHI,TB,3,8,58,(10:16) (Shotgun) N.Foles scrambles left end to TB 44 for 14 yards (A.Black).,10,7,2012 -20121209_PHI@TB,3,24,32,PHI,TB,1,10,44,(9:32) (Shotgun) N.Foles pass short middle to J.Avant to TB 21 for 23 yards (L.Johnson).,10,7,2012 -20121209_PHI@TB,3,23,47,PHI,TB,1,10,21,(8:47) (Shotgun) B.Brown right end pushed ob at TB 22 for -1 yards (L.Johnson).,10,7,2012 -20121209_PHI@TB,3,23,18,PHI,TB,2,11,22,(8:18) N.Foles pass incomplete short right to B.Brown.,10,7,2012 -20121209_PHI@TB,3,23,10,PHI,TB,3,11,22,(8:10) (Shotgun) N.Foles pass short middle to C.Harbor to TB 13 for 9 yards (R.Barber L.David).,10,7,2012 -20121209_PHI@TB,3,22,33,PHI,TB,4,2,13,(7:33) (Field Goal formation) A.Henery 31 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-M.McBriar.,10,7,2012 -20121209_PHI@TB,3,22,29,TB,PHI,1,10,79,(7:29) J.Freeman pass incomplete deep right to V.Jackson.,7,10,2012 -20121209_PHI@TB,3,22,22,TB,PHI,2,10,79,(7:22) (Shotgun) D.Martin left guard to TB 35 for 14 yards (N.Allen).,7,10,2012 -20121209_PHI@TB,3,21,43,TB,PHI,1,10,65,(6:43) J.Freeman pass incomplete short right to E.Lorig (M.Kendricks) [C.Thornton].,7,10,2012 -20121209_PHI@TB,3,21,34,TB,PHI,2,10,65,(6:34) J.Freeman pass short right to M.Williams to TB 39 for 4 yards (C.Marsh).,7,10,2012 -20121209_PHI@TB,3,20,54,TB,PHI,3,6,61,(5:54) (Shotgun) J.Freeman pass incomplete deep left to T.Underwood.,7,10,2012 -20121209_PHI@TB,3,20,47,TB,PHI,4,6,61,(5:47) (Punt formation) M.Koenen punts 61 yards to end zone Center-A.Economos Touchback.,7,10,2012 -20121209_PHI@TB,3,20,37,PHI,TB,1,10,80,(5:37) N.Foles pass short middle to C.Harbor to PHI 27 for 7 yards (M.Foster).,10,7,2012 -20121209_PHI@TB,3,20,2,PHI,TB,2,3,73,(5:02) (Shotgun) N.Foles pass short middle to B.Brown to PHI 31 for 4 yards (L.David) [C.Irvin].,10,7,2012 -20121209_PHI@TB,3,19,26,PHI,TB,1,10,69,(4:26) (Shotgun) N.Foles pass incomplete short right to J.Maclin (A.Gaitor).,10,7,2012 -20121209_PHI@TB,3,19,17,PHI,TB,2,10,69,(4:17) (Shotgun) N.Foles sacked at PHI 31 for 0 yards (L.David).,10,7,2012 -20121209_PHI@TB,3,18,33,PHI,TB,3,10,69,(3:33) (Shotgun) N.Foles pass incomplete short right to J.Avant (A.Gaitor) [G.McCoy].,10,7,2012 -20121209_PHI@TB,3,18,26,PHI,TB,4,10,69,(3:26) (Punt formation) M.McBriar punts 54 yards to TB 15 Center-J.Dorenbos. R.Parrish to TB 23 for 8 yards (N.Allen).,10,7,2012 -20121209_PHI@TB,3,18,14,TB,PHI,1,10,77,(3:14) D.Martin left tackle to TB 27 for 4 yards (M.Kendricks N.Allen).,7,10,2012 -20121209_PHI@TB,3,17,41,TB,PHI,2,6,73,(2:41) J.Freeman pass short right to V.Jackson to TB 33 for 6 yards (D.Rodgers-Cromartie J.Chaney).,7,10,2012 -20121209_PHI@TB,3,16,57,TB,PHI,1,10,67,(1:57) (Shotgun) D.Martin up the middle to TB 33 for no gain (C.Anderson).,7,10,2012 -20121209_PHI@TB,3,16,22,TB,PHI,2,10,67,(1:22) J.Freeman pass deep left to V.Jackson to PHI 27 for 40 yards (N.Asomugha).,7,10,2012 -20121209_PHI@TB,3,15,50,TB,PHI,1,10,27,(:50) J.Freeman pass incomplete short left to D.Martin.,7,10,2012 -20121209_PHI@TB,3,15,48,TB,PHI,2,10,27,(:48) (Shotgun) D.Martin left end pushed ob at PHI 18 for 9 yards (N.Asomugha).,7,10,2012 -20121209_PHI@TB,3,15,11,TB,PHI,3,1,18,(:11) D.Martin left guard to PHI 16 for 2 yards (D.Ryans). PENALTY on PHI Face Mask (15 Yards) 8 yards enforced at PHI 16.,7,10,2012 -20121209_PHI@TB,4,15,0,TB,PHI,1,8,8,(15:00) D.Martin left end to PHI 8 for no gain (D.Ryans). PENALTY on TB Illegal Shift 5 yards enforced at PHI 8 - No Play.,7,10,2012 -20121209_PHI@TB,4,14,40,TB,PHI,1,13,13,(14:40) J.Freeman pass incomplete short left to M.Williams.,7,10,2012 -20121209_PHI@TB,4,14,34,TB,PHI,2,13,13,(14:34) (Shotgun) J.Freeman pass short middle to V.Jackson for 13 yards TOUCHDOWN.,7,10,2012 -20121209_PHI@TB,4,14,34,TB,PHI,,,13,(Kick formation) PENALTY on TB False Start 5 yards enforced at PHI 2 - No Play.,7,10,2012 -20121209_PHI@TB,4,14,34,TB,PHI,,,13,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,7,10,2012 -20121209_PHI@TB,4,14,34,TB,PHI,,,13,M.Koenen kicks 66 yards from TB 35 to PHI -1. B.Boykin to PHI 22 for 23 yards (A.Black).,14,10,2012 -20121209_PHI@TB,4,14,19,PHI,TB,1,10,78,(14:19) (Shotgun) N.Foles pass incomplete deep left to J.Avant.,10,14,2012 -20121209_PHI@TB,4,14,12,PHI,TB,2,10,78,(14:12) (Shotgun) B.Brown left guard to PHI 24 for 2 yards (M.Foster).,10,14,2012 -20121209_PHI@TB,4,13,33,PHI,TB,3,8,76,(13:33) (Shotgun) N.Foles pass incomplete short left to J.Maclin (E.Biggers).,10,14,2012 -20121209_PHI@TB,4,13,27,PHI,TB,4,8,76,(13:27) (Punt formation) M.McBriar punts 51 yards to TB 25 Center-J.Dorenbos fair catch by R.Parrish.,10,14,2012 -20121209_PHI@TB,4,13,18,TB,PHI,1,10,75,(13:18) D.Martin left end to TB 32 for 7 yards (D.Ryans M.Kendricks).,14,10,2012 -20121209_PHI@TB,4,12,41,TB,PHI,2,3,68,(12:41) D.Martin left end ran ob at TB 43 for 11 yards (C.Anderson).,14,10,2012 -20121209_PHI@TB,4,12,15,TB,PHI,1,10,57,(12:15) J.Freeman pass incomplete short right to L.Stocker (D.Rodgers-Cromartie).,14,10,2012 -20121209_PHI@TB,4,12,10,TB,PHI,2,10,57,(12:10) D.Martin up the middle to TB 44 for 1 yard (A.Jordan; D.Ryans).,14,10,2012 -20121209_PHI@TB,4,11,33,TB,PHI,3,9,56,(11:33) (Shotgun) J.Freeman scrambles right tackle to PHI 43 for 13 yards (C.Anderson).,14,10,2012 -20121209_PHI@TB,4,10,52,TB,PHI,1,10,43,(10:52) D.Martin right guard to PHI 40 for 3 yards (J.Chaney).,14,10,2012 -20121209_PHI@TB,4,10,12,TB,PHI,2,7,40,(10:12) D.Martin up the middle to PHI 40 for no gain (C.Anderson).,14,10,2012 -20121209_PHI@TB,4,9,32,TB,PHI,3,7,40,(9:32) J.Freeman pass short right to V.Jackson to PHI 12 for 28 yards (N.Asomugha).,14,10,2012 -20121209_PHI@TB,4,8,47,TB,PHI,1,10,12,(8:47) (Shotgun) D.Martin right guard to PHI 7 for 5 yards (C.Thornton).,14,10,2012 -20121209_PHI@TB,4,8,9,TB,PHI,2,5,7,(8:09) D.Martin left tackle to PHI 4 for 3 yards (M.Kendricks).,14,10,2012 -20121209_PHI@TB,4,7,26,TB,PHI,3,2,4,(7:26) D.Martin left tackle for 4 yards TOUCHDOWN.,14,10,2012 -20121209_PHI@TB,4,7,26,TB,PHI,,,4,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,14,10,2012 -20121209_PHI@TB,4,7,26,TB,PHI,,,4,M.Koenen kicks 69 yards from TB 35 to PHI -4. B.Boykin to PHI 28 for 32 yards (E.Biggers).,21,10,2012 -20121209_PHI@TB,4,7,15,PHI,TB,1,10,72,(7:15) (Shotgun) N.Foles pass short left to J.Maclin pushed ob at TB 48 for 24 yards (L.David).,10,21,2012 -20121209_PHI@TB,4,6,57,PHI,TB,1,10,48,(6:57) (Shotgun) N.Foles pass short right to C.Harbor to TB 44 for 4 yards (E.Biggers).,10,21,2012 -20121209_PHI@TB,4,6,32,PHI,TB,2,6,44,(6:32) (Shotgun) D.Lewis left tackle to TB 48 for -4 yards (G.McCoy).,10,21,2012 -20121209_PHI@TB,4,5,49,PHI,TB,3,10,48,(5:49) (Shotgun) N.Foles pass deep left to J.Maclin ran ob at TB 26 for 22 yards.,10,21,2012 -20121209_PHI@TB,4,5,21,PHI,TB,1,10,26,(5:21) (Shotgun) N.Foles pass short middle to J.Avant to TB 14 for 12 yards (A.Black E.Biggers).,10,21,2012 -20121209_PHI@TB,4,4,48,PHI,TB,1,10,14,(4:48) (Shotgun) N.Foles pass incomplete short right to J.Avant.,10,21,2012 -20121209_PHI@TB,4,4,40,PHI,TB,2,10,14,(4:40) (Shotgun) N.Foles pass short left to J.Maclin to TB 11 for 3 yards (R.Barber).,10,21,2012 -20121209_PHI@TB,4,4,3,PHI,TB,3,7,11,(4:03) (Shotgun) N.Foles pass short right to C.Harbor for 11 yards TOUCHDOWN.,10,21,2012 -20121209_PHI@TB,4,4,3,PHI,TB,,,11,(Pass formation) TWO-POINT CONVERSION ATTEMPT. N.Foles pass to D.Lewis is incomplete. ATTEMPT FAILS.,10,21,2012 -20121209_PHI@TB,4,4,3,PHI,TB,,,11,A.Henery kicks 66 yards from PHI 35 to TB -1. T.Underwood Touchback.,16,21,2012 -20121209_PHI@TB,4,3,55,TB,PHI,1,10,80,(3:55) D.Martin left tackle to TB 31 for 11 yards (N.Allen).,21,16,2012 -20121209_PHI@TB,4,3,14,TB,PHI,1,10,69,(3:14) D.Martin right guard to TB 34 for 3 yards (D.Ryans M.Kendricks).,21,16,2012 -20121209_PHI@TB,4,3,8,TB,PHI,2,7,66,(3:08) D.Martin left tackle to TB 36 for 2 yards (T.Cole M.Kendricks). PENALTY on TB-T.Larsen Offensive Holding 10 yards enforced at TB 34 - No Play.,21,16,2012 -20121209_PHI@TB,4,3,1,TB,PHI,2,17,76,(3:01) D.Martin left guard to TB 33 for 9 yards (N.Allen).,21,16,2012 -20121209_PHI@TB,4,2,55,TB,PHI,3,8,67,(2:55) D.Martin up the middle to TB 33 for no gain (F.Cox).,21,16,2012 -20121209_PHI@TB,4,2,51,TB,PHI,4,8,67,(2:51) (Punt formation) M.Koenen punts 31 yards to PHI 36 Center-A.Economos out of bounds.,21,16,2012 -20121209_PHI@TB,4,2,44,PHI,TB,1,10,64,(2:44) (Shotgun) N.Foles pass short right to J.Maclin to PHI 40 for 4 yards (R.Barber).,16,21,2012 -20121209_PHI@TB,4,2,19,PHI,TB,2,6,60,(2:19) (Shotgun) N.Foles sacked at PHI 32 for -8 yards (M.Bennett).,16,21,2012 -20121209_PHI@TB,4,2,0,PHI,TB,3,14,68,(2:00) (Shotgun) N.Foles pass deep middle to J.Maclin to TB 45 for 23 yards (A.Black). Penalty on TB Defensive Holding declined.,16,21,2012 -20121209_PHI@TB,4,1,51,PHI,TB,1,10,45,(1:51) (Shotgun) N.Foles pass incomplete short left to M.McNutt. PENALTY on TB-D.Gorrer Defensive Holding 5 yards enforced at TB 45 - No Play.,16,21,2012 -20121209_PHI@TB,4,1,47,PHI,TB,1,10,40,(1:47) (Shotgun) N.Foles pass incomplete deep right to R.Cooper.,16,21,2012 -20121209_PHI@TB,4,1,40,PHI,TB,2,10,40,(1:40) N.Foles pass incomplete short middle to J.Avant [M.Bennett].,16,21,2012 -20121209_PHI@TB,4,1,35,PHI,TB,3,10,40,(1:35) (Shotgun) N.Foles pass short left to J.Maclin to TB 31 for 9 yards (R.Barber M.Barron).,16,21,2012 -20121209_PHI@TB,4,0,54,PHI,TB,4,1,31,(:54) (Shotgun) N.Foles scrambles left guard to TB 28 for 3 yards (D.Te'o-Nesheim).,16,21,2012 -20121209_PHI@TB,4,0,35,PHI,TB,1,10,28,(:35) N.Foles spiked the ball to stop the clock. PENALTY on TB Defensive 12 On-field 5 yards enforced at TB 28 - No Play. The Replay Assistant challenged the too many players on field ruling and the play was Upheld.,16,21,2012 -20121209_PHI@TB,4,0,35,PHI,TB,1,5,23,(:35) (Shotgun) N.Foles pass incomplete short left to R.Cooper.,16,21,2012 -20121209_PHI@TB,4,0,30,PHI,TB,2,5,23,(:30) (Shotgun) N.Foles pass incomplete deep left to R.Cooper.,16,21,2012 -20121209_PHI@TB,4,0,22,PHI,TB,3,5,23,(:22) (Shotgun) N.Foles pass incomplete short middle to M.McNutt (D.Gorrer).,16,21,2012 -20121209_PHI@TB,4,0,16,PHI,TB,4,5,23,(:16) (Shotgun) N.Foles pass deep middle to J.Avant to TB 1 for 22 yards (M.Barron).,16,21,2012 -20121209_PHI@TB,4,0,2,PHI,TB,1,1,1,(:02) N.Foles spiked the ball to stop the clock.,16,21,2012 -20121209_PHI@TB,4,0,2,PHI,TB,2,1,1,(:02) (Shotgun) N.Foles pass short right to J.Maclin for 1 yard TOUCHDOWN.,16,21,2012 -20121209_PHI@TB,4,0,2,PHI,TB,,,1,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,16,21,2012 -20121209_PHI@TB,4,0,2,PHI,TB,,,1,                      ,23,21,2012 -20121209_BAL@WAS,1,0,0,BAL,WAS,,,1,J.Tucker kicks 74 yards from BLT 35 to WAS -9. N.Paul Touchback.,0,0,2012 -20121209_BAL@WAS,1,60,0,WAS,BAL,1,10,80,(15:00) (Shotgun) A.Morris up the middle pushed ob at WAS 49 for 29 yards (C.Graham J.McClain).,0,0,2012 -20121209_BAL@WAS,1,59,22,WAS,BAL,1,10,51,(14:22) A.Morris right end to BLT 30 for 21 yards (E.Reed C.Williams). PENALTY on WAS-P.Garcon Offensive Holding 10 yards enforced at BLT 42.,0,0,2012 -20121209_BAL@WAS,1,58,46,WAS,BAL,1,11,52,(13:46) (Shotgun) R.Griffin pass short left to P.Garcon pushed ob at BLT 38 for 14 yards (C.Williams).,0,0,2012 -20121209_BAL@WAS,1,58,17,WAS,BAL,1,10,38,(13:17) (Shotgun) E.Royster right end to BLT 35 for 3 yards (B.Ayanbadejo P.Kruger).,0,0,2012 -20121209_BAL@WAS,1,57,32,WAS,BAL,2,7,35,(12:32) (Shotgun) A.Morris right guard to BLT 30 for 5 yards (B.Pollard; H.Ngata).,0,0,2012 -20121209_BAL@WAS,1,56,50,WAS,BAL,3,2,30,(11:50) (Shotgun) A.Morris left guard to BLT 24 for 6 yards (J.McClain).,0,0,2012 -20121209_BAL@WAS,1,56,12,WAS,BAL,1,10,24,(11:12) (Shotgun) R.Griffin pass short right to P.Garcon pushed ob at BLT 1 for 23 yards (B.Pollard) [H.Ngata].,0,0,2012 -20121209_BAL@WAS,1,55,34,WAS,BAL,1,1,1,(10:34) A.Morris right end to BLT 4 for -3 yards (P.McPhee).,0,0,2012 -20121209_BAL@WAS,1,54,51,WAS,BAL,2,4,4,(9:51) (Shotgun) R.Griffin pass incomplete short left to L.Hankerson.,0,0,2012 -20121209_BAL@WAS,1,54,45,WAS,BAL,3,4,4,(9:45) (Shotgun) R.Griffin pass short middle to J.Morgan for 4 yards TOUCHDOWN.,0,0,2012 -20121209_BAL@WAS,1,54,45,WAS,BAL,,,4,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20121209_BAL@WAS,1,54,45,WAS,BAL,,,4,K.Forbath kicks 64 yards from WAS 35 to BLT 1. J.Jones pushed ob at BLT 19 for 18 yards (D.Johnson).,7,0,2012 -20121209_BAL@WAS,1,54,35,BAL,WAS,1,10,81,(9:35) R.Rice right tackle to BLT 24 for 5 yards (J.Wilson; Mad.Williams).,0,7,2012 -20121209_BAL@WAS,1,54,6,BAL,WAS,2,5,76,(9:06) R.Rice left end to WAS 30 for 46 yards (Mad.Williams; D.Hall).,0,7,2012 -20121209_BAL@WAS,1,53,22,BAL,WAS,1,10,30,(8:22) R.Rice right guard to WAS 18 for 12 yards (Mad.Williams; J.Wilson).,0,7,2012 -20121209_BAL@WAS,1,52,46,BAL,WAS,1,10,18,(7:46) B.Pierce right tackle to WAS 19 for -1 yards (B.Cofield R.Doughty).,0,7,2012 -20121209_BAL@WAS,1,52,12,BAL,WAS,2,11,19,(7:12) J.Flacco pass deep right to A.Boldin for 19 yards TOUCHDOWN.,0,7,2012 -20121209_BAL@WAS,1,52,12,BAL,WAS,,,19,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,7,2012 -20121209_BAL@WAS,1,52,12,BAL,WAS,,,19,J.Tucker kicks 67 yards from BLT 35 to WAS -2. N.Paul to WAS 17 for 19 yards (S.Considine L.Williams).,7,7,2012 -20121209_BAL@WAS,1,51,59,WAS,BAL,1,10,83,(6:59) R.Griffin pass incomplete deep left to N.Paul (C.Williams).,7,7,2012 -20121209_BAL@WAS,1,51,52,WAS,BAL,2,10,83,(6:52) (Shotgun) R.Griffin pass deep left to S.Moss pushed ob at WAS 48 for 31 yards (C.Graham).,7,7,2012 -20121209_BAL@WAS,1,51,16,WAS,BAL,1,10,52,(6:16) (Shotgun) A.Morris right end to BLT 48 for 4 yards (C.Graham; B.Ayanbadejo).,7,7,2012 -20121209_BAL@WAS,1,50,35,WAS,BAL,2,6,48,(5:35) (Shotgun) L.Hankerson right end pushed ob at BLT 45 for 3 yards (C.Johnson). PENALTY on WAS-J.Morgan Illegal Block Above the Waist 10 yards enforced at BLT 45.,7,7,2012 -20121209_BAL@WAS,1,49,56,WAS,BAL,2,13,55,(4:56) R.Griffin pass deep middle to L.Hankerson to BLT 26 for 29 yards (E.Reed).,7,7,2012 -20121209_BAL@WAS,1,49,12,WAS,BAL,1,10,26,(4:12) (Shotgun) A.Morris right tackle to BLT 22 for 4 yards (B.Ayanbadejo J.McClain).,7,7,2012 -20121209_BAL@WAS,1,48,33,WAS,BAL,2,6,22,(3:33) (Shotgun) R.Griffin pass short left to J.Morgan pushed ob at BLT 1 for 21 yards (C.Williams; C.Graham).,7,7,2012 -20121209_BAL@WAS,1,47,59,WAS,BAL,1,1,1,(2:59) A.Morris right tackle for 1 yard TOUCHDOWN.,7,7,2012 -20121209_BAL@WAS,1,47,59,WAS,BAL,,,1,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,7,7,2012 -20121209_BAL@WAS,1,47,59,WAS,BAL,,,1,K.Forbath kicks 70 yards from WAS 35 to BLT -5. J.Jones pushed ob at BLT 33 for 38 yards (D.Hall).,14,7,2012 -20121209_BAL@WAS,1,47,55,BAL,WAS,1,10,67,(2:55) PENALTY on BLT-J.Reid False Start 5 yards enforced at BLT 33 - No Play.,7,14,2012 -20121209_BAL@WAS,1,47,47,BAL,WAS,1,15,72,(2:47) J.Flacco pass incomplete deep right to T.Smith (J.Wilson).,7,14,2012 -20121209_BAL@WAS,1,47,40,BAL,WAS,2,15,72,(2:40) R.Rice left end to BLT 31 for 3 yards (D.Johnson).,7,14,2012 -20121209_BAL@WAS,1,46,53,BAL,WAS,3,12,69,(1:53) (Shotgun) J.Flacco pass short right to D.Pitta to BLT 40 for 9 yards (D.Hall D.Johnson).,7,14,2012 -20121209_BAL@WAS,1,46,12,BAL,WAS,4,3,60,(1:12) S.Koch punts 53 yards to WAS 7 Center-M.Cox. R.Crawford to WAS 27 for 20 yards (S.Considine C.Brown).,7,14,2012 -20121209_BAL@WAS,1,45,58,WAS,BAL,1,10,73,(:58) (Shotgun) R.Griffin sacked at WAS 19 for -8 yards (P.Kruger).,14,7,2012 -20121209_BAL@WAS,1,45,26,WAS,BAL,2,18,81,(:26) (Shotgun) A.Morris left guard to WAS 30 for 11 yards (J.McClain J.Ihedigbo).,14,7,2012 -20121209_BAL@WAS,2,45,0,WAS,BAL,3,7,70,(15:00) (Shotgun) R.Griffin pass incomplete short right to P.Garcon.,14,7,2012 -20121209_BAL@WAS,2,44,56,WAS,BAL,4,7,70,(14:56) S.Rocca punts 57 yards to BLT 13 Center-N.Sundberg. J.Jones to BLT 23 for 10 yards (N.Paul).,14,7,2012 -20121209_BAL@WAS,2,44,45,BAL,WAS,1,10,77,(14:45) B.Pierce left end to BLT 26 for 3 yards (R.Jackson; L.Fletcher).,7,14,2012 -20121209_BAL@WAS,2,44,14,BAL,WAS,2,7,74,(14:14) B.Pierce right end to BLT 30 for 4 yards (P.Riley; L.Fletcher). PENALTY on BLT-A.Boldin Offensive Holding 10 yards enforced at BLT 30.,7,14,2012 -20121209_BAL@WAS,2,43,44,BAL,WAS,2,13,80,(13:44) (Shotgun) J.Flacco pass incomplete short right to T.Smith.,7,14,2012 -20121209_BAL@WAS,2,43,44,BAL,WAS,3,13,80,(13:44) (Shotgun) PENALTY on WAS-L.Alexander Neutral Zone Infraction 5 yards enforced at BLT 20 - No Play.,7,14,2012 -20121209_BAL@WAS,2,43,39,BAL,WAS,3,8,75,(13:39) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 34 for 9 yards (P.Riley; L.Fletcher).,7,14,2012 -20121209_BAL@WAS,2,42,57,BAL,WAS,1,10,66,(12:57) J.Flacco pass short left to B.Pierce to BLT 34 for no gain (D.Hall).,7,14,2012 -20121209_BAL@WAS,2,42,21,BAL,WAS,2,10,66,(12:21) J.Flacco pass short right to T.Smith to WAS 45 for 21 yards (D.Hall).,7,14,2012 -20121209_BAL@WAS,2,41,52,BAL,WAS,1,10,45,(11:52) (No Huddle) B.Pierce right end to WAS 38 for 7 yards (R.Doughty K.Golston).,7,14,2012 -20121209_BAL@WAS,2,41,17,BAL,WAS,2,3,38,(11:17) (No Huddle) V.Leach left guard to WAS 36 for 2 yards (J.Jenkins C.Baker).,7,14,2012 -20121209_BAL@WAS,2,41,17,BAL,WAS,3,1,36,(11:17) (No Huddle) PENALTY on WAS-J.Jenkins Encroachment 5 yards enforced at WAS 36 - No Play.,7,14,2012 -20121209_BAL@WAS,2,40,23,BAL,WAS,1,10,31,(10:23) J.Flacco pass deep right to A.Boldin for 31 yards TOUCHDOWN.,7,14,2012 -20121209_BAL@WAS,2,40,23,BAL,WAS,,,31,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,14,2012 -20121209_BAL@WAS,2,40,23,BAL,WAS,,,31,J.Tucker kicks 71 yards from BLT 35 to WAS -6. N.Paul Touchback.,14,14,2012 -20121209_BAL@WAS,2,40,16,WAS,BAL,1,10,80,(10:16) (Shotgun) A.Morris left tackle to WAS 24 for 4 yards (A.Jones A.McClellan).,14,14,2012 -20121209_BAL@WAS,2,39,39,WAS,BAL,2,6,76,(9:39) (Shotgun) A.Morris left end to WAS 27 for 3 yards (M.Kemoeatu). FUMBLES (M.Kemoeatu) RECOVERED by BLT-P.Kruger at WAS 23. P.Kruger to WAS 14 for 9 yards (C.Chester).,14,14,2012 -20121209_BAL@WAS,2,39,30,BAL,WAS,1,10,14,(9:30) J.Flacco pass incomplete short middle to J.Jones [R.Kerrigan].,14,14,2012 -20121209_BAL@WAS,2,39,25,BAL,WAS,2,10,14,(9:25) (Shotgun) J.Flacco FUMBLES (Aborted) at WAS 17 recovered by BLT-B.Pierce at WAS 14. B.Pierce to WAS 14 for no gain (Mad.Williams).,14,14,2012 -20121209_BAL@WAS,2,38,46,BAL,WAS,3,10,14,(8:46) (Shotgun) J.Flacco pass short left to D.Pitta for 14 yards TOUCHDOWN.,14,14,2012 -20121209_BAL@WAS,2,38,46,BAL,WAS,,,14,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,14,2012 -20121209_BAL@WAS,2,38,46,BAL,WAS,,,14,J.Tucker kicks 73 yards from BLT 35 to WAS -8. N.Paul Touchback.,21,14,2012 -20121209_BAL@WAS,2,38,39,WAS,BAL,1,10,80,(8:39) (Shotgun) A.Morris left tackle to WAS 25 for 5 yards (J.McClain).,14,21,2012 -20121209_BAL@WAS,2,38,5,WAS,BAL,2,5,75,(8:05) (Shotgun) R.Griffin pass short right to J.Morgan to WAS 30 for 5 yards (A.McClellan).,14,21,2012 -20121209_BAL@WAS,2,37,24,WAS,BAL,1,10,70,(7:24) R.Griffin pass deep middle to D.Young to BLT 42 for 28 yards (E.Reed J.Bynes).,14,21,2012 -20121209_BAL@WAS,2,36,36,WAS,BAL,1,10,42,(6:36) (Shotgun) P.Garcon up the middle to BLT 40 for 2 yards (C.Graham). end around,14,21,2012 -20121209_BAL@WAS,2,35,53,WAS,BAL,2,8,40,(5:53) (Shotgun) A.Morris left tackle to BLT 30 for 10 yards (J.McClain). PENALTY on WAS-L.Paulsen Offensive Holding 10 yards enforced at BLT 40 - No Play.,14,21,2012 -20121209_BAL@WAS,2,35,26,WAS,BAL,2,18,50,(5:26) (Shotgun) R.Griffin pass short left to P.Garcon to BLT 33 for 17 yards (B.Pollard).,14,21,2012 -20121209_BAL@WAS,2,34,39,WAS,BAL,3,1,43,(4:39) (Shotgun) R.Griffin FUMBLES (Aborted) at BLT 42 recovered by WAS-A.Morris at BLT 43. A.Morris to BLT 42 for 1 yard (C.Williams; P.Kruger).,14,21,2012 -20121209_BAL@WAS,2,33,56,WAS,BAL,4,10,42,(3:56) S.Rocca punts 42 yards to end zone Center-N.Sundberg Touchback.,14,21,2012 -20121209_BAL@WAS,2,33,44,BAL,WAS,1,10,80,(3:44) PENALTY on BLT-K.Osemele False Start 5 yards enforced at BLT 20 - No Play.,21,14,2012 -20121209_BAL@WAS,2,33,44,BAL,WAS,1,15,85,(3:44) R.Rice right end to BLT 22 for 7 yards (R.Doughty). PENALTY on BLT-B.Bajema Offensive Holding 7 yards enforced at BLT 15 - No Play.,21,14,2012 -20121209_BAL@WAS,2,33,17,BAL,WAS,1,22,92,(3:17) R.Rice left guard to BLT 13 for 5 yards (P.Riley).,21,14,2012 -20121209_BAL@WAS,2,32,39,BAL,WAS,2,17,87,(2:39) R.Rice right end to BLT 13 for no gain (B.Cofield).,21,14,2012 -20121209_BAL@WAS,2,32,31,BAL,WAS,3,17,87,(2:31) (Shotgun) J.Flacco pass short middle to D.Pitta to BLT 24 for 11 yards (P.Riley).,21,14,2012 -20121209_BAL@WAS,2,32,0,BAL,WAS,4,6,76,(2:00) S.Koch punts 59 yards to WAS 17 Center-M.Cox. R.Crawford to WAS 33 for 16 yards (D.Reed; M.Cox).,21,14,2012 -20121209_BAL@WAS,2,31,46,WAS,BAL,1,10,67,(1:46) R.Griffin pass incomplete deep left to S.Moss.,14,21,2012 -20121209_BAL@WAS,2,31,38,WAS,BAL,2,10,67,(1:38) (Shotgun) R.Griffin pass incomplete short middle to S.Moss (J.McClain). PENALTY on BLT-J.McClain Defensive Pass Interference 7 yards enforced at WAS 33 - No Play.,14,21,2012 -20121209_BAL@WAS,2,31,33,WAS,BAL,1,10,60,(1:33) (Shotgun) R.Griffin pass incomplete short right to E.Royster [P.McPhee].,14,21,2012 -20121209_BAL@WAS,2,31,30,WAS,BAL,2,10,60,(1:30) (Shotgun) R.Griffin pass short right to L.Paulsen to WAS 48 for 8 yards (B.Ayanbadejo; J.McClain).,14,21,2012 -20121209_BAL@WAS,2,31,6,WAS,BAL,3,2,52,(1:06) (No Huddle Shotgun) PENALTY on WAS-L.Hankerson False Start 5 yards enforced at WAS 48 - No Play.,14,21,2012 -20121209_BAL@WAS,2,31,3,WAS,BAL,3,7,57,(1:03) (Shotgun) R.Griffin scrambles right end pushed ob at WAS 48 for 5 yards (C.Johnson).,14,21,2012 -20121209_BAL@WAS,2,30,51,WAS,BAL,4,2,52,(:51) S.Rocca punts 39 yards to BLT 13 Center-N.Sundberg fair catch by T.Doss.,14,21,2012 -20121209_BAL@WAS,2,30,44,BAL,WAS,1,10,87,(:44) (Shotgun) R.Rice right guard to BLT 13 for no gain (R.Kerrigan).,21,14,2012 -20121209_BAL@WAS,2,30,37,BAL,WAS,2,10,87,(:37) (Shotgun) J.Flacco pass short right to D.Pitta to BLT 22 for 9 yards (L.Fletcher).,21,14,2012 -20121209_BAL@WAS,2,30,18,BAL,WAS,3,1,78,(:18) (No Huddle) J.Flacco up the middle to BLT 27 for 5 yards (R.Kerrigan). QB sneak,21,14,2012 -20121209_BAL@WAS,2,30,16,BAL,WAS,1,10,73,(:16) (Shotgun) J.Flacco pass short right to R.Rice to BLT 31 for 4 yards (P.Riley; J.Wilson).,21,14,2012 -20121209_BAL@WAS,3,30,0,WAS,BAL,,,73,K.Forbath kicks 67 yards from WAS 35 to BLT -2. J.Jones pushed ob at BLT 24 for 26 yards (D.Gomes). PENALTY on BLT-L.Williams Offensive Holding 10 yards enforced at BLT 24.,14,21,2012 -20121209_BAL@WAS,3,29,52,BAL,WAS,1,10,86,(14:52) R.Rice left tackle to BLT 23 for 9 yards (J.Jenkins).,21,14,2012 -20121209_BAL@WAS,3,29,26,BAL,WAS,2,1,77,(14:26) R.Rice left guard to BLT 25 for 2 yards (L.Fletcher; P.Riley).,21,14,2012 -20121209_BAL@WAS,3,28,48,BAL,WAS,1,10,75,(13:48) R.Rice left end to BLT 31 for 6 yards (J.Wilson; P.Riley).,21,14,2012 -20121209_BAL@WAS,3,28,8,BAL,WAS,2,4,69,(13:08) J.Flacco pass incomplete short right to T.Smith. PENALTY on WAS-D.Hall Personal Foul 15 yards enforced at BLT 31 - No Play. Contact that was high on a defenseless receiver,21,14,2012 -20121209_BAL@WAS,3,27,59,BAL,WAS,1,10,54,(12:59) J.Flacco sacked at BLT 38 for -8 yards (R.Jackson). FUMBLES (R.Jackson) RECOVERED by WAS-R.Jackson at BLT 46. R.Jackson to BLT 46 for no gain (K.Osemele).,21,14,2012 -20121209_BAL@WAS,3,27,52,WAS,BAL,1,10,46,(12:52) A.Morris to BLT 46 for no gain (J.McClain).,14,21,2012 -20121209_BAL@WAS,3,27,11,WAS,BAL,2,10,46,(12:11) (Shotgun) A.Morris right end to BLT 36 for 10 yards (B.Pollard; J.McClain).,14,21,2012 -20121209_BAL@WAS,3,26,27,WAS,BAL,1,10,36,(11:27) (Shotgun) R.Griffin pass incomplete short left to P.Garcon [H.Ngata].,14,21,2012 -20121209_BAL@WAS,3,26,20,WAS,BAL,2,10,36,(11:20) (Shotgun) A.Morris right tackle to BLT 30 for 6 yards (B.Ayanbadejo; E.Reed).,14,21,2012 -20121209_BAL@WAS,3,25,36,WAS,BAL,3,4,30,(10:36) (Shotgun) R.Griffin pass incomplete short left to J.Morgan.,14,21,2012 -20121209_BAL@WAS,3,25,31,WAS,BAL,4,4,30,(10:31) K.Forbath 48 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,14,21,2012 -20121209_BAL@WAS,3,25,31,WAS,BAL,,,30,K.Forbath kicks 66 yards from WAS 35 to BLT -1. J.Jones pushed ob at BLT 35 for 36 yards (J.Pugh).,17,21,2012 -20121209_BAL@WAS,3,25,20,BAL,WAS,1,10,65,(10:20) B.Pierce left end pushed ob at BLT 46 for 11 yards (J.Wilson).,21,17,2012 -20121209_BAL@WAS,3,24,48,BAL,WAS,1,10,54,(9:48) B.Pierce up the middle to WAS 47 for 7 yards (P.Riley Mad.Williams).,21,17,2012 -20121209_BAL@WAS,3,24,14,BAL,WAS,2,3,47,(9:14) B.Pierce right guard to WAS 26 for 21 yards (D.Hall; P.Riley).,21,17,2012 -20121209_BAL@WAS,3,23,49,BAL,WAS,1,10,26,(8:49) R.Rice left end to WAS 18 for 8 yards (P.Riley; L.Fletcher).,21,17,2012 -20121209_BAL@WAS,3,23,18,BAL,WAS,2,2,18,(8:18) R.Rice up the middle to WAS 17 for 1 yard (J.Jenkins; B.Cofield).,21,17,2012 -20121209_BAL@WAS,3,22,37,BAL,WAS,3,1,17,(7:37) J.Flacco up the middle to WAS 15 for 2 yards (L.Fletcher; B.Cofield). QB sneak,21,17,2012 -20121209_BAL@WAS,3,21,58,BAL,WAS,1,10,15,(6:58) R.Rice left guard to WAS 9 for 6 yards (P.Riley).,21,17,2012 -20121209_BAL@WAS,3,21,24,BAL,WAS,2,4,9,(6:24) R.Rice left tackle to WAS 11 for -2 yards (J.Jenkins).,21,17,2012 -20121209_BAL@WAS,3,20,42,BAL,WAS,3,6,11,(5:42) (Shotgun) J.Flacco pass short middle intended for R.Rice INTERCEPTED by L.Fletcher (B.Cofield) [R.Kerrigan] at WAS 13. L.Fletcher to WAS 15 for 2 yards (J.Reid).,21,17,2012 -20121209_BAL@WAS,3,20,35,WAS,BAL,1,10,85,(5:35) R.Griffin pass short middle to L.Hankerson to WAS 32 for 17 yards (E.Reed; J.Bynes).,17,21,2012 -20121209_BAL@WAS,3,20,0,WAS,BAL,1,10,68,(5:00) (Shotgun) A.Morris left end to WAS 49 for 17 yards (B.Pollard; C.Upshaw).,17,21,2012 -20121209_BAL@WAS,3,19,15,WAS,BAL,1,10,51,(4:15) (Shotgun) R.Griffin scrambles right end pushed ob at BLT 47 for 4 yards (H.Ngata).,17,21,2012 -20121209_BAL@WAS,3,18,39,WAS,BAL,2,6,47,(3:39) (Shotgun) A.Morris left tackle to BLT 39 for 8 yards (C.Graham; M.Kemoeatu). BLT-J.McClain was injured during the play.,17,21,2012 -20121209_BAL@WAS,3,18,9,WAS,BAL,1,10,39,(3:09) (Shotgun) A.Morris right guard to BLT 38 for 1 yard (P.Kruger H.Ngata).,17,21,2012 -20121209_BAL@WAS,3,17,34,WAS,BAL,2,9,38,(2:34) (Shotgun) A.Morris right end pushed ob at BLT 36 for 2 yards (C.Upshaw; C.Graham).,17,21,2012 -20121209_BAL@WAS,3,17,2,WAS,BAL,3,7,36,(2:02) (Shotgun) R.Griffin scrambles left end pushed ob at BLT 31 for 5 yards (C.Williams).,17,21,2012 -20121209_BAL@WAS,3,16,28,WAS,BAL,4,2,31,(1:28) K.Forbath 49 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,17,21,2012 -20121209_BAL@WAS,3,16,28,WAS,BAL,,,31,K.Forbath kicks 62 yards from WAS 35 to BLT 3 out of bounds.,20,21,2012 -20121209_BAL@WAS,3,16,21,BAL,WAS,1,10,60,(1:21) J.Flacco pass short middle to V.Leach to BLT 43 for 3 yards (P.Riley).,21,20,2012 -20121209_BAL@WAS,3,15,44,BAL,WAS,2,7,57,(:44) R.Rice right tackle to BLT 44 for 1 yard (J.Jenkins; C.Baker).,21,20,2012 -20121209_BAL@WAS,4,15,0,BAL,WAS,3,6,56,(15:00) (Shotgun) J.Flacco sacked at BLT 35 for -9 yards (J.Pugh).,21,20,2012 -20121209_BAL@WAS,4,14,47,BAL,WAS,4,15,65,(14:47) S.Koch punts 51 yards to WAS 14 Center-M.Cox ball declared dead.,21,20,2012 -20121209_BAL@WAS,4,14,35,WAS,BAL,1,10,86,(14:35) (Shotgun) A.Morris right tackle to WAS 11 for -3 yards (A.Jones; P.Kruger).,20,21,2012 -20121209_BAL@WAS,4,13,52,WAS,BAL,2,13,89,(13:52) (Shotgun) R.Griffin sacked at WAS 4 for -7 yards (A.Jones).,20,21,2012 -20121209_BAL@WAS,4,13,12,WAS,BAL,3,20,96,(13:12) (Shotgun) E.Royster up the middle to WAS 7 for 3 yards (H.Ngata; P.Kruger).,20,21,2012 -20121209_BAL@WAS,4,12,19,WAS,BAL,4,17,93,(12:19) S.Rocca punts 51 yards to BLT 42 Center-N.Sundberg. J.Jones to WAS 47 for 11 yards.,20,21,2012 -20121209_BAL@WAS,4,12,19,BAL,WAS,1,10,47,(12:19) R.Rice right end to WAS 45 for 2 yards (K.Golston).,21,20,2012 -20121209_BAL@WAS,4,11,47,BAL,WAS,2,8,45,(11:47) R.Rice right guard to WAS 43 for 2 yards (R.Kerrigan P.Riley).,21,20,2012 -20121209_BAL@WAS,4,11,11,BAL,WAS,3,6,43,(11:11) (Shotgun) J.Flacco pass short left to D.Pitta to WAS 40 for 3 yards (L.Alexander).,21,20,2012 -20121209_BAL@WAS,4,10,30,BAL,WAS,4,3,40,(10:30) S.Koch punts 32 yards to WAS 8 Center-M.Cox fair catch by R.Crawford.,21,20,2012 -20121209_BAL@WAS,4,10,21,WAS,BAL,1,10,92,(10:21) A.Morris left end to WAS 12 for 4 yards (J.Bynes).,20,21,2012 -20121209_BAL@WAS,4,9,42,WAS,BAL,2,6,88,(9:42) (Shotgun) R.Griffin scrambles left end pushed ob at WAS 15 for 3 yards (A.McClellan).,20,21,2012 -20121209_BAL@WAS,4,9,5,WAS,BAL,3,3,85,(9:05) (Shotgun) R.Griffin pass incomplete short middle to P.Garcon.,20,21,2012 -20121209_BAL@WAS,4,8,59,WAS,BAL,4,3,85,(8:59) S.Rocca punts 51 yards to BLT 34 Center-N.Sundberg. J.Jones to BLT 38 for 4 yards (L.Alexander).,20,21,2012 -20121209_BAL@WAS,4,8,47,BAL,WAS,1,10,62,(8:47) J.Flacco pass short right to V.Leach pushed ob at BLT 46 for 8 yards (P.Riley).,21,20,2012 -20121209_BAL@WAS,4,8,22,BAL,WAS,2,2,54,(8:22) B.Pierce left guard to BLT 47 for 1 yard (C.Baker).,21,20,2012 -20121209_BAL@WAS,4,7,41,BAL,WAS,3,1,53,(7:41) V.Leach left end to BLT 48 for 1 yard (R.Doughty).,21,20,2012 -20121209_BAL@WAS,4,7,0,BAL,WAS,1,10,52,(7:00) J.Flacco pass short middle to B.Pierce to WAS 41 for 11 yards (L.Fletcher).,21,20,2012 -20121209_BAL@WAS,4,6,19,BAL,WAS,1,10,41,(6:19) R.Rice left end to WAS 37 for 4 yards (R.Doughty; P.Riley).,21,20,2012 -20121209_BAL@WAS,4,5,34,BAL,WAS,2,6,37,(5:34) (Shotgun) J.Flacco pass short right to R.Rice to WAS 35 for 2 yards (D.Gomes; L.Fletcher).,21,20,2012 -20121209_BAL@WAS,4,5,0,BAL,WAS,3,4,35,(5:00) (Shotgun) J.Flacco pass short left to A.Boldin pushed ob at WAS 7 for 28 yards (D.Hall).,21,20,2012 -20121209_BAL@WAS,4,4,52,BAL,WAS,1,7,7,(4:52) R.Rice left guard for 7 yards TOUCHDOWN.,21,20,2012 -20121209_BAL@WAS,4,4,52,BAL,WAS,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,20,2012 -20121209_BAL@WAS,4,4,52,BAL,WAS,,,7,J.Tucker kicks 68 yards from BLT 35 to WAS -3. N.Paul to WAS 16 for 19 yards (C.Upshaw). FUMBLES (C.Upshaw) RECOVERED by BLT-D.Reed at WAS 14. D.Reed to WAS 15 for -1 yards (L.Alexander). Play Challenged by Replay Assistant and REVERSED. J.Tucker kicks 68 yards from BLT 35 to WAS -3. N.Paul to WAS 16 for 19 yards (C.Upshaw). FUMBLES (C.Upshaw) ball out of bounds at WAS 15.,28,20,2012 -20121209_BAL@WAS,4,4,39,WAS,BAL,1,10,85,(4:39) R.Griffin pass incomplete short middle to A.Morris (M.Kemoeatu) [A.Jones].,20,28,2012 -20121209_BAL@WAS,4,4,33,WAS,BAL,2,10,85,(4:33) (Shotgun) R.Griffin left end to WAS 19 for 4 yards (B.Pollard; B.Ayanbadejo).,20,28,2012 -20121209_BAL@WAS,4,3,47,WAS,BAL,3,6,81,(3:47) (Shotgun) R.Griffin pass short left to L.Hankerson to WAS 25 for 6 yards (B.Ayanbadejo).,20,28,2012 -20121209_BAL@WAS,4,3,7,WAS,BAL,1,10,75,(3:07) (Shotgun) R.Griffin pass short middle to S.Moss to WAS 31 for 6 yards (J.Bynes; C.Graham).,20,28,2012 -20121209_BAL@WAS,4,2,32,WAS,BAL,2,4,69,(2:32) (Shotgun) E.Royster up the middle to WAS 36 for 5 yards (P.McPhee; J.Bynes).,20,28,2012 -20121209_BAL@WAS,4,2,1,WAS,BAL,1,10,64,(2:01) (Shotgun) R.Griffin sacked at WAS 27 for -9 yards (sack split by P.Kruger and A.Jones).,20,28,2012 -20121209_BAL@WAS,4,1,56,WAS,BAL,2,19,73,(1:56) (Shotgun) R.Griffin scrambles left end to WAS 40 for 13 yards (H.Ngata). WAS-R.Griffin was injured during the play.,20,28,2012 -20121209_BAL@WAS,4,1,42,WAS,BAL,3,6,60,(1:42) (Shotgun) K.Cousins pass incomplete short right to P.Garcon (C.Johnson). PENALTY on BLT-C.Johnson Defensive Pass Interference 7 yards enforced at WAS 40 - No Play.,20,28,2012 -20121209_BAL@WAS,4,1,37,WAS,BAL,1,10,53,(1:37) (Shotgun) R.Griffin pass short middle to S.Moss pushed ob at BLT 38 for 15 yards (C.Johnson).,20,28,2012 -20121209_BAL@WAS,4,1,29,WAS,BAL,1,10,38,(1:29) (Shotgun) R.Griffin pass incomplete short left to P.Garcon.,20,28,2012 -20121209_BAL@WAS,4,1,23,WAS,BAL,2,10,38,(1:23) (Shotgun) R.Griffin pass deep middle to P.Garcon to BLT 16 for 22 yards (E.Reed).,20,28,2012 -20121209_BAL@WAS,4,0,49,WAS,BAL,1,10,16,(:49) (No Huddle Shotgun) R.Griffin pass incomplete. WAS-R.Griffin was injured during the play. His return is Doubtful. PENALTY on WAS-R.Griffin Intentional Grounding 10 yards enforced at BLT 16.,20,28,2012 -20121209_BAL@WAS,4,0,45,WAS,BAL,2,20,26,(:45) (Shotgun) K.Cousins pass short middle to L.Hankerson to BLT 11 for 15 yards (B.Pollard).,20,28,2012 -20121209_BAL@WAS,4,0,36,WAS,BAL,3,5,11,(:36) K.Cousins pass short right to P.Garcon for 11 yards TOUCHDOWN.,20,28,2012 -20121209_BAL@WAS,4,0,36,WAS,BAL,,,11,(Pass formation) TWO-POINT CONVERSION ATTEMPT. K.Cousins rushes left guard. ATTEMPT SUCCEEDS.,20,28,2012 -20121209_BAL@WAS,4,0,36,WAS,BAL,,,11,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,28,28,2012 -20121209_BAL@WAS,4,0,24,BAL,WAS,1,10,80,(:24) J.Flacco kneels to BLT 19 for -1 yards.,28,28,2012 -20121209_BAL@WAS,5,0,0,WAS,BAL,,,80,K.Forbath kicks 67 yards from WAS 35 to BLT -2. J.Jones to BLT 25 for 27 yards (C.Wilson).,28,28,2012 -20121209_BAL@WAS,5,-1,55,BAL,WAS,1,10,75,(14:55) J.Flacco pass incomplete deep middle to D.Pitta.,28,28,2012 -20121209_BAL@WAS,5,-1,49,BAL,WAS,2,10,75,(14:49) R.Rice right end to BLT 29 for 4 yards (R.Kerrigan). BLT-M.Yanda was injured during the play.,28,28,2012 -20121209_BAL@WAS,5,-1,19,BAL,WAS,3,6,71,(14:19) (Shotgun) J.Flacco scrambles right end to BLT 32 for 3 yards (L.Alexander; D.Hall).,28,28,2012 -20121209_BAL@WAS,5,-2,42,BAL,WAS,4,3,68,(13:42) S.Koch punts 56 yards to WAS 12 Center-M.Cox. R.Crawford to BLT 24 for 64 yards (S.Koch; C.Upshaw).,28,28,2012 -20121209_BAL@WAS,5,-2,23,WAS,BAL,1,10,24,(13:23) A.Morris right guard to BLT 22 for 2 yards (J.Bynes; C.Upshaw). PENALTY on BLT-A.McClellan Defensive Offside 5 yards enforced at BLT 24 - No Play.,28,28,2012 -20121209_BAL@WAS,5,-2,5,WAS,BAL,1,5,19,(13:05) A.Morris left guard to BLT 17 for 2 yards (B.Pollard; C.Upshaw).,28,28,2012 -20121209_BAL@WAS,5,-3,28,WAS,BAL,2,3,17,(12:28) A.Morris left tackle to BLT 16 for 1 yard (C.Upshaw; T.Cody).,28,28,2012 -20121209_BAL@WAS,5,-4,47,WAS,BAL,3,2,16,(11:47) K.Forbath 34 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,28,28,2012 -20121209_BAL@WAS,5,-4,47,WAS,BAL,,,16,                      ,31,28,2012 -20121209_MIA@SF,1,-4,0,MIA,SF,,,16,D.Carpenter kicks 73 yards from MIA 35 to SF -8. L.James to SF 26 for 34 yards (N.Carroll).,0,0,2012 -20121209_MIA@SF,1,59,55,SF,MIA,1,10,74,(14:55) (Shotgun) C.Kaepernick pass deep right to D.Walker pushed ob at SF 46 for 20 yards (S.Smith). Caught at SF 43. 3-yds YAC,0,0,2012 -20121209_MIA@SF,1,59,28,SF,MIA,1,10,54,(14:28) C.Kaepernick pass short left to M.Crabtree to SF 49 for 3 yards (K.Misi). Caught at SF 49. 0-yds YAC,0,0,2012 -20121209_MIA@SF,1,58,49,SF,MIA,2,7,51,(13:49) (Shotgun) F.Gore left guard to MIA 47 for 4 yards (K.Misi C.Clemons).,0,0,2012 -20121209_MIA@SF,1,58,7,SF,MIA,3,3,47,(13:07) (Shotgun) C.Kaepernick sacked at SF 49 for -4 yards (C.Wake). FUMBLES (C.Wake) recovered by SF-A.Davis at 50. A.Davis to 50 for no gain (K.Dansby). C.Kaepernick charged with loss of 3-yards on sack.,0,0,2012 -20121209_MIA@SF,1,57,25,SF,MIA,4,6,50,(12:25) A.Lee punts 50 yards to end zone Center-B.Jennings Touchback.,0,0,2012 -20121209_MIA@SF,1,57,17,MIA,SF,1,10,80,(12:17) R.Tannehill pass short left to D.Bess to MIA 28 for 8 yards (T.Brown). Caught at MIA 25. 3-yds YAC,0,0,2012 -20121209_MIA@SF,1,56,45,MIA,SF,2,2,72,(11:45) R.Tannehill pass deep right to B.Hartline to SF 44 for 28 yards (D.Goldson). Caught at SF48. 4-yds YAC,0,0,2012 -20121209_MIA@SF,1,55,58,MIA,SF,1,10,44,(10:58) (Shotgun) R.Tannehill right end to SF 42 for 2 yards (P.Willis).,0,0,2012 -20121209_MIA@SF,1,55,20,MIA,SF,2,8,42,(10:20) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,0,0,2012 -20121209_MIA@SF,1,55,15,MIA,SF,3,8,42,(10:15) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush.,0,0,2012 -20121209_MIA@SF,1,55,11,MIA,SF,4,8,42,(10:11) B.Fields punts 36 yards to SF 6 Center-J.Denney downed by MIA-Mar.Moore.,0,0,2012 -20121209_MIA@SF,1,55,0,SF,MIA,1,10,94,(10:00) C.Kaepernick pass short left to M.Crabtree to SF 15 for 9 yards (K.Dansby). Caught at SF11. 4-yds YAC,0,0,2012 -20121209_MIA@SF,1,54,23,SF,MIA,2,1,85,(9:23) F.Gore left end to SF 26 for 11 yards (R.Jones).,0,0,2012 -20121209_MIA@SF,1,53,45,SF,MIA,1,10,74,(8:45) C.Kaepernick pass short middle to V.Davis to SF 30 for 4 yards (K.Dansby). Caught at SF 30. 0-yds YAC,0,0,2012 -20121209_MIA@SF,1,53,20,SF,MIA,2,6,70,(8:20) (Shotgun) PENALTY on SF-A.Boone False Start 5 yards enforced at SF 30 - No Play.,0,0,2012 -20121209_MIA@SF,1,52,36,SF,MIA,2,11,75,(7:36) C.Kaepernick sacked at SF 21 for -4 yards (C.Wake).,0,0,2012 -20121209_MIA@SF,1,52,1,SF,MIA,3,15,79,(7:01) (Shotgun) C.Kaepernick pass incomplete short left to V.Davis.,0,0,2012 -20121209_MIA@SF,1,51,56,SF,MIA,4,15,79,(6:56) A.Lee punts 51 yards to MIA 28 Center-B.Jennings. M.Thigpen to MIA 38 for 10 yards (T.Brock).,0,0,2012 -20121209_MIA@SF,1,51,44,MIA,SF,1,10,62,(6:44) L.Miller right end to MIA 37 for -1 yards (A.Brooks).,0,0,2012 -20121209_MIA@SF,1,51,4,MIA,SF,2,11,63,(6:04) (Shotgun) R.Bush up the middle to MIA 41 for 4 yards (D.Goldson J.Smith).,0,0,2012 -20121209_MIA@SF,1,50,17,MIA,SF,3,7,59,(5:17) (Shotgun) R.Tannehill pass short middle to D.Bess to SF 49 for 10 yards (D.Goldson). Caught at SF 49. 0-yds YAC,0,0,2012 -20121209_MIA@SF,1,49,40,MIA,SF,1,10,49,(4:40) (No Huddle) R.Tannehill pass deep middle to D.Bess to SF 28 for 21 yards (T.Brown). Caught at SF31. 3-yds YAC,0,0,2012 -20121209_MIA@SF,1,49,5,MIA,SF,1,10,28,(4:05) (Shotgun) R.Bush right guard to SF 24 for 4 yards (R.McDonald).,0,0,2012 -20121209_MIA@SF,1,48,27,MIA,SF,2,6,24,(3:27) (Shotgun) R.Tannehill pass short right to B.Hartline to SF 18 for 6 yards (C.Rogers). Caught at SF 20. 2-yds YAC,0,0,2012 -20121209_MIA@SF,1,47,43,MIA,SF,1,10,18,(2:43) R.Bush up the middle to SF 15 for 3 yards (P.Willis).,0,0,2012 -20121209_MIA@SF,1,47,6,MIA,SF,2,7,15,(2:06) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano (D.Whitner).,0,0,2012 -20121209_MIA@SF,1,47,1,MIA,SF,3,7,15,(2:01) (Shotgun) R.Tannehill pass short right to L.Miller to SF 7 for 8 yards (N.Bowman C.Culliver). Caught at SF20. 13-yds YAC,0,0,2012 -20121209_MIA@SF,1,46,14,MIA,SF,1,7,7,(1:14) (Shotgun) PENALTY on MIA-J.Martin False Start 5 yards enforced at SF 7 - No Play.,0,0,2012 -20121209_MIA@SF,1,46,3,MIA,SF,1,12,12,(1:03) (Shotgun) PENALTY on MIA-N.Garner False Start 5 yards enforced at SF 12 - No Play.,0,0,2012 -20121209_MIA@SF,1,45,26,MIA,SF,1,17,17,(:26) (Shotgun) R.Bush left guard to SF 9 for 8 yards (Ald.Smith).,0,0,2012 -20121209_MIA@SF,2,45,0,MIA,SF,2,9,9,(15:00) (Shotgun) R.Tannehill sacked at SF 17 for -8 yards (Ald.Smith).,0,0,2012 -20121209_MIA@SF,2,44,23,MIA,SF,3,17,17,(14:23) (Shotgun) R.Tannehill pass short middle to R.Bush to SF 10 for 7 yards (P.Cox D.Whitner). Caught at SF18. 8-yds YAC,0,0,2012 -20121209_MIA@SF,2,43,35,MIA,SF,4,10,10,(13:35) D.Carpenter 28 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20121209_MIA@SF,2,43,35,MIA,SF,,,10,D.Carpenter kicks 74 yards from MIA 35 to SF -9. L.James Touchback.,3,0,2012 -20121209_MIA@SF,2,43,31,SF,MIA,1,10,80,(13:31) (Shotgun) C.Kaepernick pass short middle to F.Gore to SF 23 for 3 yards (K.Misi) [D.Shelby]. Caught at SF23. 0-yds YAC,0,3,2012 -20121209_MIA@SF,2,42,52,SF,MIA,2,7,77,(12:52) (Shotgun) L.James left end to SF 33 for 10 yards (T.McDaniel).,0,3,2012 -20121209_MIA@SF,2,42,11,SF,MIA,1,10,67,(12:11) C.Kaepernick pass short right to M.Crabtree to SF 49 for 16 yards (R.Jones C.Clemons). Caught at SF36. 13-yds YAC,0,3,2012 -20121209_MIA@SF,2,41,26,SF,MIA,1,10,51,(11:26) L.James left end to MIA 47 for 4 yards (C.Wake). PENALTY on MIA-C.Clemons Unnecessary Roughness 15 yards enforced at MIA 47.,0,3,2012 -20121209_MIA@SF,2,40,51,SF,MIA,1,10,32,(10:51) F.Gore left tackle to MIA 29 for 3 yards (K.Misi).,0,3,2012 -20121209_MIA@SF,2,40,15,SF,MIA,2,7,29,(10:15) (Shotgun) C.Kaepernick pass short left to M.Crabtree to MIA 20 for 9 yards (N.Carroll). Caught at MIA 30. 10-yds YAC,0,3,2012 -20121209_MIA@SF,2,39,32,SF,MIA,1,10,20,(9:32) (Shotgun) C.Kaepernick pass incomplete deep right to M.Crabtree.,0,3,2012 -20121209_MIA@SF,2,39,27,SF,MIA,2,10,20,(9:27) F.Gore up the middle to MIA 11 for 9 yards (K.Dansby J.Odrick).,0,3,2012 -20121209_MIA@SF,2,38,44,SF,MIA,3,1,11,(8:44) L.Davis and D.Kilgore reported in as eligible. F.Gore right guard to MIA 12 for -1 yards (K.Dansby).,0,3,2012 -20121209_MIA@SF,2,38,4,SF,MIA,4,2,12,(8:04) D.Akers 30 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,3,2012 -20121209_MIA@SF,2,38,4,SF,MIA,,,12,D.Akers kicks 68 yards from SF 35 to MIA -3. M.Thigpen to MIA 20 for 23 yards (T.Gooden).,3,3,2012 -20121209_MIA@SF,2,37,48,MIA,SF,1,10,80,(7:48) (Shotgun) R.Bush up the middle to MIA 28 for 8 yards (D.Goldson).,3,3,2012 -20121209_MIA@SF,2,37,14,MIA,SF,2,2,72,(7:14) (Shotgun) R.Bush left guard to MIA 31 for 3 yards (R.McDonald N.Bowman).,3,3,2012 -20121209_MIA@SF,2,36,40,MIA,SF,1,10,69,(6:40) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 37 for 6 yards (P.Willis). Caught at MIA 36. 1-yd YAC,3,3,2012 -20121209_MIA@SF,2,36,4,MIA,SF,2,4,63,(6:04) R.Bush right tackle to MIA 38 for 1 yard (J.Smith A.Brooks).,3,3,2012 -20121209_MIA@SF,2,35,24,MIA,SF,3,3,62,(5:24) (Shotgun) R.Tannehill pass short right to R.Bush pushed ob at MIA 45 for 7 yards (N.Bowman). Caught at MIA 41. 4-yds YAC,3,3,2012 -20121209_MIA@SF,2,34,49,MIA,SF,1,10,55,(4:49) L.Miller left end to MIA 46 for 1 yard (A.Brooks). SF-D.Dobbs was injured during the play. He is Out.,3,3,2012 -20121209_MIA@SF,2,34,15,MIA,SF,2,9,54,(4:15) R.Tannehill pass short right to C.Clay to MIA 49 for 3 yards (N.Bowman). Caught at MIA 47. 2-yds YAC,3,3,2012 -20121209_MIA@SF,2,33,30,MIA,SF,3,6,51,(3:30) (Shotgun) R.Tannehill pass incomplete deep left to R.Bush [J.Smith].,3,3,2012 -20121209_MIA@SF,2,33,24,MIA,SF,4,6,51,(3:24) B.Fields punts 51 yards to end zone Center-J.Denney Touchback. J.Freeny attempted to down punt at SF 3 but carried the ball into end zone for touchback. Miami challenged the touchback ruling and the play was Upheld. (Timeout #1 at 03:15.),3,3,2012 -20121209_MIA@SF,2,33,15,SF,MIA,1,10,80,(3:15) C.Kaepernick pass deep left to M.Crabtree to SF 45 for 25 yards (R.Jones). Caught at SF 38. 7-yds YAC,3,3,2012 -20121209_MIA@SF,2,32,35,SF,MIA,1,10,55,(2:35) (Shotgun) C.Kaepernick pass short left to B.Miller to SF 44 for -1 yards (J.Odrick) [R.Starks]. Caught at SF44. 0-yds YAC,3,3,2012 -20121209_MIA@SF,2,32,0,SF,MIA,2,11,56,(2:00) (Shotgun) C.Kaepernick pass short right to R.Moss to MIA 43 for 13 yards (C.Clemons). Caught at SF 48. 9-yds YAC,3,3,2012 -20121209_MIA@SF,2,31,34,SF,MIA,1,10,43,(1:34) (Shotgun) C.Kaepernick pass deep right to R.Moss to MIA 26 for 17 yards (R.Jones) [C.Wake]. Caught at MIA 27. 1-yd YAC,3,3,2012 -20121209_MIA@SF,2,31,8,SF,MIA,1,10,26,(1:08) (Shotgun) C.Kaepernick pass short right to L.James pushed ob at MIA 11 for 15 yards (R.Jones). Caught at MIA 26. 15-yds YAC,3,3,2012 -20121209_MIA@SF,2,31,2,SF,MIA,1,10,11,(1:02) (Shotgun) C.Kaepernick sacked at MIA 17 for -6 yards (C.Wake).,3,3,2012 -20121209_MIA@SF,2,30,33,SF,MIA,2,16,17,(:33) (Shotgun) L.James left end to MIA 19 for -2 yards (R.Stanford).,3,3,2012 -20121209_MIA@SF,2,30,8,SF,MIA,3,18,19,(:08) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree.,3,3,2012 -20121209_MIA@SF,2,30,3,SF,MIA,4,18,19,(:03) D.Akers 37 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,3,3,2012 -20121209_MIA@SF,3,30,0,SF,MIA,,,19,D.Akers kicks 67 yards from SF 35 to MIA -2. M.Thigpen to MIA 18 for 20 yards (M.Wilhoite).,6,3,2012 -20121209_MIA@SF,3,29,54,MIA,SF,1,10,82,(14:54) R.Bush left guard to MIA 21 for 3 yards (Ald.Smith N.Bowman).,3,6,2012 -20121209_MIA@SF,3,29,16,MIA,SF,2,7,79,(14:16) R.Tannehill pass incomplete short left to C.Clay (J.Smith).,3,6,2012 -20121209_MIA@SF,3,29,12,MIA,SF,3,7,79,(14:12) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,3,6,2012 -20121209_MIA@SF,3,29,4,MIA,SF,4,7,79,(14:04) B.Fields punts 55 yards to SF 24 Center-J.Denney. T.Ginn to SF 36 for 12 yards (J.Trusnik K.Misi).,3,6,2012 -20121209_MIA@SF,3,28,53,SF,MIA,1,10,64,(13:53) (Shotgun) C.Kaepernick left end to SF 41 for 5 yards (C.Clemons).,6,3,2012 -20121209_MIA@SF,3,28,23,SF,MIA,2,5,59,(13:23) (Shotgun) L.James right end to SF 42 for 1 yard (C.Clemons K.Dansby). MIA-K.Misi was injured during the play. His return is Questionable.,6,3,2012 -20121209_MIA@SF,3,27,54,SF,MIA,3,4,58,(12:54) (Shotgun) C.Kaepernick sacked at SF 36 for -6 yards (J.Odrick).,6,3,2012 -20121209_MIA@SF,3,27,15,SF,MIA,4,10,64,(12:15) A.Lee punts 55 yards to MIA 9 Center-B.Jennings. M.Thigpen MUFFS catch RECOVERED by SF-C.Spillman at MIA 9. C.Spillman to MIA 9 for no gain (M.Thigpen).,6,3,2012 -20121209_MIA@SF,3,27,5,SF,MIA,1,9,9,(12:05) A.Dixon left end to MIA 1 for 8 yards (C.Clemons K.Dansby).,6,3,2012 -20121209_MIA@SF,3,26,21,SF,MIA,2,1,1,(11:21) L.Davis reported in as eligible. F.Gore left guard for 1 yard TOUCHDOWN.,6,3,2012 -20121209_MIA@SF,3,26,21,SF,MIA,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,6,3,2012 -20121209_MIA@SF,3,26,21,SF,MIA,,,1,D.Akers kicks 70 yards from SF 35 to MIA -5. M.Thigpen to SF 49 for 56 yards (C.Culliver P.Cox).,13,3,2012 -20121209_MIA@SF,3,26,6,MIA,SF,1,10,49,(11:06) (Shotgun) R.Tannehill pass short middle to D.Bess to SF 41 for 8 yards (P.Willis). FUMBLES (P.Willis) recovered by MIA-R.Incognito at SF 46. R.Incognito to SF 46 for no gain (I.Sopoaga). D.Bess credited with 3-yd reception.,3,13,2012 -20121209_MIA@SF,3,25,6,MIA,SF,2,7,46,(10:06) (Shotgun) R.Tannehill pass short right to R.Bush to SF 35 for 11 yards (D.Whitner). Caught at SF 44. 9-yds YAC,3,13,2012 -20121209_MIA@SF,3,24,32,MIA,SF,1,10,35,(9:32) R.Tannehill scrambles left end pushed ob at SF 33 for 2 yards. PENALTY on MIA-R.Bush Offensive Holding 10 yards enforced at SF 35 - No Play.,3,13,2012 -20121209_MIA@SF,3,23,59,MIA,SF,1,20,45,(8:59) (Shotgun) R.Tannehill pass short left to B.Hartline to SF 39 for 6 yards (T.Brown). PENALTY on SF-T.Brown Defensive Holding 5 yards enforced at SF 45 - No Play.,3,13,2012 -20121209_MIA@SF,3,23,27,MIA,SF,1,10,40,(8:27) L.Miller up the middle to SF 39 for 1 yard (W.Tukuafu).,3,13,2012 -20121209_MIA@SF,3,22,45,MIA,SF,2,9,39,(7:45) (Shotgun) R.Tannehill pass incomplete short middle to B.Hartline (C.Culliver).,3,13,2012 -20121209_MIA@SF,3,22,40,MIA,SF,3,9,39,(7:40) (Shotgun) R.Tannehill pass short left to R.Bush to SF 35 for 4 yards (P.Willis). Caught at SF35. 0-yds YAC,3,13,2012 -20121209_MIA@SF,3,21,57,MIA,SF,4,5,35,(6:57) D.Carpenter 53 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,3,13,2012 -20121209_MIA@SF,3,21,57,MIA,SF,,,35,D.Carpenter kicks 69 yards from MIA 35 to SF -4. L.James to SF 17 for 21 yards (O.Vernon A.Spitler).,6,13,2012 -20121209_MIA@SF,3,21,46,SF,MIA,1,10,83,(6:46) (Shotgun) C.Kaepernick pass short right to M.Crabtree to SF 30 for 13 yards (S.Smith). Caught at SF26. 4-yds YAC,13,6,2012 -20121209_MIA@SF,3,21,9,SF,MIA,1,10,70,(6:09) (Shotgun) F.Gore up the middle to SF 28 for -2 yards (J.Odrick K.Dansby).,13,6,2012 -20121209_MIA@SF,3,20,32,SF,MIA,2,12,72,(5:32) C.Kaepernick pass short right to M.Crabtree to SF 38 for 10 yards (K.Dansby J.Trusnik). Caught at SF25. 13-yds YAC,13,6,2012 -20121209_MIA@SF,3,19,52,SF,MIA,3,2,62,(4:52) C.Kaepernick pass short left to B.Miller to SF 40 for 2 yards (R.Stanford K.Burnett). Caught at SF 38. 2-yds YAC,13,6,2012 -20121209_MIA@SF,3,19,6,SF,MIA,1,10,60,(4:06) (Shotgun) L.James right guard to MIA 47 for 13 yards (R.Jones).,13,6,2012 -20121209_MIA@SF,3,18,16,SF,MIA,1,10,47,(3:16) C.Kaepernick pass incomplete deep middle to R.Moss. Flea-Flicker - F.Gore lateralled ball back to C.Kaepernick who passed deep into end zone.,13,6,2012 -20121209_MIA@SF,3,18,6,SF,MIA,2,10,47,(3:06) L.James left end pushed ob at MIA 32 for 15 yards (C.Clemons). PENALTY on SF-M.Iupati Offensive Holding 10 yards enforced at MIA 47 - No Play.,13,6,2012 -20121209_MIA@SF,3,17,46,SF,MIA,2,20,57,(2:46) C.Kaepernick pass short left to F.Gore to MIA 38 for 19 yards (R.Jones K.Dansby).,13,6,2012 -20121209_MIA@SF,3,16,52,SF,MIA,3,1,38,(1:52) (Shotgun) C.Kaepernick pass incomplete short left to R.Moss.,13,6,2012 -20121209_MIA@SF,3,16,45,SF,MIA,4,1,38,(1:45) C.Kaepernick pass incomplete short right to M.Crabtree (S.Smith). PENALTY on MIA-S.Smith Defensive Pass Interference 8 yards enforced at MIA 38 - No Play.,13,6,2012 -20121209_MIA@SF,3,16,40,SF,MIA,1,10,30,(1:40) F.Gore up the middle to MIA 21 for 9 yards (R.Jones C.Clemons).,13,6,2012 -20121209_MIA@SF,3,16,1,SF,MIA,2,1,21,(1:01) F.Gore right tackle to MIA 18 for 3 yards (C.Wake).,13,6,2012 -20121209_MIA@SF,3,15,16,SF,MIA,1,10,18,(:16) L.James left end to MIA 20 for -2 yards (J.Trusnik).,13,6,2012 -20121209_MIA@SF,4,15,0,SF,MIA,2,12,20,(15:00) (Shotgun) F.Gore up the middle to MIA 1 for 19 yards (S.Smith).,13,6,2012 -20121209_MIA@SF,4,14,30,SF,MIA,1,1,1,(14:30) D.Kilgore and L.Davis reported in as eligible. A.Dixon left tackle for 1 yard TOUCHDOWN.,13,6,2012 -20121209_MIA@SF,4,14,30,SF,MIA,,,1,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,13,6,2012 -20121209_MIA@SF,4,14,30,SF,MIA,,,1,D.Akers kicks 70 yards from SF 35 to MIA -5. M.Thigpen to MIA 25 for 30 yards (P.Cox A.Dixon).,20,6,2012 -20121209_MIA@SF,4,14,19,MIA,SF,1,10,75,(14:19) R.Tannehill pass short right to D.Bess to MIA 33 for 8 yards (N.Bowman). Caught at MIA 33. 0-yds YAC San Francisco challenged the pass completion ruling and the play was Upheld. (Timeout #3 at 14:00.),6,20,2012 -20121209_MIA@SF,4,14,0,MIA,SF,2,2,67,(14:00) (Shotgun) R.Bush up the middle to MIA 35 for 2 yards (J.Smith; Ald.Smith).,6,20,2012 -20121209_MIA@SF,4,13,24,MIA,SF,1,10,65,(13:24) (Shotgun) R.Tannehill pass incomplete deep left to Mar.Moore. PENALTY on SF-T.Brown Illegal Contact 5 yards enforced at MIA 35 - No Play.,6,20,2012 -20121209_MIA@SF,4,13,15,MIA,SF,1,10,60,(13:15) (Shotgun) R.Tannehill left end pushed ob at SF 40 for 20 yards (D.Whitner).,6,20,2012 -20121209_MIA@SF,4,12,47,MIA,SF,1,10,40,(12:47) R.Bush right tackle to SF 38 for 2 yards (I.Sopoaga).,6,20,2012 -20121209_MIA@SF,4,12,5,MIA,SF,2,8,38,(12:05) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline (C.Culliver).,6,20,2012 -20121209_MIA@SF,4,11,58,MIA,SF,3,8,38,(11:58) (Shotgun) R.Tannehill pass short right to R.Bush to SF 29 for 9 yards (J.Smith). Caught at SF 42. 13-yds YAC,6,20,2012 -20121209_MIA@SF,4,11,20,MIA,SF,1,10,29,(11:20) R.Bush up the middle to SF 27 for 2 yards (I.Sopoaga).,6,20,2012 -20121209_MIA@SF,4,10,46,MIA,SF,2,8,27,(10:46) (Shotgun) R.Bush up the middle to SF 23 for 4 yards (N.Bowman).,6,20,2012 -20121209_MIA@SF,4,10,10,MIA,SF,3,4,23,(10:10) (Shotgun) R.Bush up the middle to SF 6 for 17 yards (P.Willis).,6,20,2012 -20121209_MIA@SF,4,9,28,MIA,SF,1,6,6,(9:28) D.Thomas left tackle to SF 4 for 2 yards (Ald.Smith).,6,20,2012 -20121209_MIA@SF,4,8,49,MIA,SF,2,4,4,(8:49) (Shotgun) D.Thomas up the middle to SF 3 for 1 yard (N.Bowman D.Whitner).,6,20,2012 -20121209_MIA@SF,4,8,6,MIA,SF,3,3,3,(8:06) (Shotgun) R.Tannehill pass incomplete short right to D.Bess.,6,20,2012 -20121209_MIA@SF,4,8,1,MIA,SF,4,3,3,(8:01) (Shotgun) R.Tannehill pass short left to A.Fasano for 3 yards TOUCHDOWN.,6,20,2012 -20121209_MIA@SF,4,8,1,MIA,SF,,,3,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,6,20,2012 -20121209_MIA@SF,4,8,1,MIA,SF,,,3,D.Carpenter kicks 72 yards from MIA 35 to SF -7. L.James to SF 17 for 24 yards (O.Vernon).,13,20,2012 -20121209_MIA@SF,4,7,49,SF,MIA,1,10,83,(7:49) (Shotgun) C.Kaepernick pass short right to M.Crabtree to SF 22 for 5 yards (S.Smith). Caught at SF 21. 1-yd YAC,20,13,2012 -20121209_MIA@SF,4,7,10,SF,MIA,2,5,78,(7:10) (Shotgun) L.James left end to SF 22 for no gain (C.Clemons).,20,13,2012 -20121209_MIA@SF,4,6,29,SF,MIA,3,5,78,(6:29) (Shotgun) C.Kaepernick pass short right to M.Crabtree to SF 25 for 3 yards (C.Wake). Caught at SF25. 0-yds YAC,20,13,2012 -20121209_MIA@SF,4,5,45,SF,MIA,4,2,75,(5:45) A.Lee punts 37 yards to MIA 38 Center-B.Jennings downed by SF-D.Goldson.,20,13,2012 -20121209_MIA@SF,4,5,35,MIA,SF,1,10,62,(5:35) (Shotgun) PENALTY on SF-Ald.Smith Neutral Zone Infraction 5 yards enforced at MIA 38 - No Play.,13,20,2012 -20121209_MIA@SF,4,5,35,MIA,SF,1,5,57,(5:35) (Shotgun) R.Bush left end pushed ob at MIA 47 for 4 yards (D.Goldson).,13,20,2012 -20121209_MIA@SF,4,5,20,MIA,SF,2,1,53,(5:20) R.Tannehill up the middle to 50 for 3 yards (J.Smith).,13,20,2012 -20121209_MIA@SF,4,4,45,MIA,SF,1,10,50,(4:45) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline [P.Willis].,13,20,2012 -20121209_MIA@SF,4,4,40,MIA,SF,2,10,50,(4:40) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline [N.Bowman]. PENALTY on SF-N.Bowman Roughing the Passer 15 yards enforced at 50 - No Play. Penalty on SF-C.Culliver Defensive Pass Interference declined.,13,20,2012 -20121209_MIA@SF,4,4,35,MIA,SF,1,10,35,(4:35) (Shotgun) R.Tannehill pass incomplete deep left to R.Matthews.,13,20,2012 -20121209_MIA@SF,4,4,29,MIA,SF,2,10,35,(4:29) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,13,20,2012 -20121209_MIA@SF,4,4,22,MIA,SF,3,10,35,(4:22) (Shotgun) R.Tannehill pass incomplete deep middle to D.Bess.,13,20,2012 -20121209_MIA@SF,4,4,16,MIA,SF,4,10,35,(4:16) (Shotgun) R.Tannehill pass incomplete deep left to Mar.Moore.,13,20,2012 -20121209_MIA@SF,4,4,10,SF,MIA,1,10,65,(4:10) (Shotgun) F.Gore left guard to SF 39 for 4 yards (K.Burnett J.Trusnik).,20,13,2012 -20121209_MIA@SF,4,4,5,SF,MIA,2,6,61,(4:05) (Shotgun) L.James up the middle to SF 45 for 6 yards (K.Dansby).,20,13,2012 -20121209_MIA@SF,4,3,8,SF,MIA,1,10,55,(3:08) F.Gore left tackle to SF 48 for 3 yards (K.Dansby K.Burnett).,20,13,2012 -20121209_MIA@SF,4,3,1,SF,MIA,2,7,52,(3:01) (Shotgun) C.Kaepernick left end to 50 for 2 yards (J.Trusnik).,20,13,2012 -20121209_MIA@SF,4,2,19,SF,MIA,3,5,50,(2:19) (Shotgun) C.Kaepernick left end for 50 yards TOUCHDOWN.,20,13,2012 -20121209_MIA@SF,4,2,19,SF,MIA,,,50,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,20,13,2012 -20121209_MIA@SF,4,2,19,SF,MIA,,,50,D.Akers kicks 50 yards from SF 35 to MIA 15. J.Lane to MIA 39 for 24 yards (A.Dixon). FUMBLES (A.Dixon) and recovers at MIA 39. J.Lane to MIA 39 for no gain (A.Dixon).,27,13,2012 -20121209_MIA@SF,4,2,4,MIA,SF,1,10,61,(2:04) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline (C.Culliver).,13,27,2012 -20121209_MIA@SF,4,1,59,MIA,SF,2,10,61,(1:59) (Shotgun) R.Tannehill sacked at MIA 30 for -9 yards (Ald.Smith).,13,27,2012 -20121209_MIA@SF,4,1,37,MIA,SF,3,19,70,(1:37) (No Huddle Shotgun) R.Tannehill pass short left to R.Matthews pushed ob at MIA 38 for 8 yards (C.Rogers). Caught at MIA 35. 3-yds YAC,13,27,2012 -20121209_MIA@SF,4,1,33,MIA,SF,4,11,62,(1:33) (Shotgun) R.Tannehill pass incomplete deep left to A.Fasano.,13,27,2012 -20121209_MIA@SF,4,1,25,SF,MIA,1,10,38,(1:25) C.Kaepernick kneels to MIA 39 for -1 yards.,27,13,2012 -20121209_MIA@SF,4,0,44,SF,MIA,2,11,39,(:44) C.Kaepernick kneels to MIA 41 for -2 yards.,27,13,2012 -20121209_MIA@SF,4,0,18,SF,MIA,3,13,41,(:18) C.Kaepernick kneels to MIA 42 for -1 yards.,27,13,2012 -20121209_MIA@SF,4,0,18,SF,MIA,,,41,                      ,27,13,2012 -20121209_NO@NYG,1,0,0,NO,NYG,,,41,T.Morstead kicks 67 yards from NO 35 to NYG -2. D.Wilson to NO 44 for 58 yards (E.Mack I.Abdul-Quddus).,0,0,2012 -20121209_NO@NYG,1,59,48,NYG,NO,1,10,44,(14:48) PENALTY on NYG-D.Baas False Start 5 yards enforced at NO 44 - No Play.,0,0,2012 -20121209_NO@NYG,1,59,48,NYG,NO,1,15,49,(14:48) E.Manning pass short middle to V.Cruz to NO 38 for 11 yards (R.Harper).,0,0,2012 -20121209_NO@NYG,1,59,18,NYG,NO,2,4,38,(14:18) A.Bradshaw right guard to NO 37 for 1 yard (C.Lofton).,0,0,2012 -20121209_NO@NYG,1,58,39,NYG,NO,3,3,37,(13:39) (Shotgun) E.Manning pass incomplete deep right to D.Hixon (J.Greer).,0,0,2012 -20121209_NO@NYG,1,58,30,NYG,NO,4,3,37,(13:30) S.Weatherford punts 25 yards to NO 12 Center-Z.DeOssie fair catch by D.Sproles.,0,0,2012 -20121209_NO@NYG,1,58,23,NO,NYG,1,10,88,(13:23) M.Ingram up the middle to NO 18 for 6 yards (J.Tuck).,0,0,2012 -20121209_NO@NYG,1,57,54,NO,NYG,2,4,82,(12:54) (Shotgun) D.Brees pass incomplete short left to J.Graham.,0,0,2012 -20121209_NO@NYG,1,57,46,NO,NYG,3,4,82,(12:46) (Shotgun) D.Brees pass deep middle to M.Colston to NO 48 for 30 yards (S.Brown W.Hill). FUMBLES (S.Brown) touched at 50 RECOVERED by NYG-A.Rolle at NO 45. A.Rolle to NO 45 for no gain (D.Henderson). Penalty on NO-Z.Strief Offensive Holding declined.,0,0,2012 -20121209_NO@NYG,1,57,32,NYG,NO,1,10,45,(12:32) E.Manning pass short left to H.Hynoski to NO 37 for 8 yards (J.Vilma).,0,0,2012 -20121209_NO@NYG,1,56,56,NYG,NO,2,2,37,(11:56) D.Wilson right end to NO 33 for 4 yards (W.Smith C.Jordan).,0,0,2012 -20121209_NO@NYG,1,56,21,NYG,NO,1,10,33,(11:21) A.Bradshaw left tackle to NO 30 for 3 yards (S.Ellis).,0,0,2012 -20121209_NO@NYG,1,55,36,NYG,NO,2,7,30,(10:36) E.Manning pass short right to H.Hynoski to NO 29 for 1 yard (R.Harper).,0,0,2012 -20121209_NO@NYG,1,54,54,NYG,NO,3,6,29,(9:54) (Shotgun) E.Manning pass short left intended for J.Jernigan INTERCEPTED by E.Mack at NO 27. E.Mack for 73 yards TOUCHDOWN.,0,0,2012 -20121209_NO@NYG,1,54,54,NO,NYG,,,29,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121209_NO@NYG,1,54,54,NO,NYG,,,29,T.Morstead kicks 62 yards from NO 35 to NYG 3. D.Wilson for 97 yards TOUCHDOWN.,7,0,2012 -20121209_NO@NYG,1,54,54,NYG,NO,,,29,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,7,2012 -20121209_NO@NYG,1,54,54,NYG,NO,,,29,L.Tynes kicks 50 yards from NYG 35 to NO 15. P.Thomas to NO 27 for 12 yards (S.Paysinger K.Rivers).,7,7,2012 -20121209_NO@NYG,1,54,18,NO,NYG,1,10,73,(9:18) M.Ingram up the middle to NO 33 for 6 yards (J.Williams).,7,7,2012 -20121209_NO@NYG,1,53,47,NO,NYG,2,4,67,(8:47) P.Thomas up the middle to NO 34 for 1 yard (J.Pierre-Paul A.Rolle).,7,7,2012 -20121209_NO@NYG,1,53,9,NO,NYG,3,3,66,(8:09) (Shotgun) D.Brees pass short right to J.Graham to NO 41 for 7 yards (W.Hill).,7,7,2012 -20121209_NO@NYG,1,52,35,NO,NYG,1,10,59,(7:35) (Shotgun) D.Brees pass short left to D.Henderson to NYG 48 for 11 yards (P.Amukamara).,7,7,2012 -20121209_NO@NYG,1,51,57,NO,NYG,1,10,48,(6:57) D.Brees pass short right to J.Collins to NYG 46 for 2 yards (A.Rolle). FUMBLES (A.Rolle) touched at NYG 43 RECOVERED by NYG-L.Joseph at NYG 49. L.Joseph pushed ob at NO 35 for 16 yards (B.De La Puente).,7,7,2012 -20121209_NO@NYG,1,51,43,NYG,NO,1,10,35,(6:43) (Shotgun) E.Manning pass short right to D.Hixon to NO 19 for 16 yards (J.Greer).,7,7,2012 -20121209_NO@NYG,1,51,16,NYG,NO,1,10,19,(6:16) E.Manning pass incomplete short right to H.Nicks (P.Robinson). PENALTY on NO-P.Robinson Defensive Pass Interference 7 yards enforced at NO 19 - No Play.,7,7,2012 -20121209_NO@NYG,1,51,4,NYG,NO,1,10,12,(6:04) A.Bradshaw left guard to NO 10 for 2 yards (C.Jordan).,7,7,2012 -20121209_NO@NYG,1,50,38,NYG,NO,2,8,10,(5:38) (Shotgun) E.Manning pass short left to M.Bennett to NO 6 for 4 yards (E.Mack J.Greer). PENALTY on NO-C.Lofton Defensive Holding 5 yards enforced at NO 10 - No Play.,7,7,2012 -20121209_NO@NYG,1,50,11,NYG,NO,1,5,5,(5:11) D.Wilson left end to NO 6 for -1 yards (D.Hawthorne).,7,7,2012 -20121209_NO@NYG,1,49,28,NYG,NO,2,6,6,(4:28) (Shotgun) E.Manning pass short middle to M.Bennett for 6 yards TOUCHDOWN.,7,7,2012 -20121209_NO@NYG,1,49,28,NYG,NO,,,6,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,7,2012 -20121209_NO@NYG,1,49,28,NYG,NO,,,6,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,14,7,2012 -20121209_NO@NYG,1,49,19,NO,NYG,1,10,80,(4:19) P.Thomas left guard to NO 26 for 6 yards (C.Blackburn O.Umenyiora).,7,14,2012 -20121209_NO@NYG,1,48,53,NO,NYG,2,4,74,(3:53) D.Sproles left end to NO 35 for 9 yards (S.Brown).,7,14,2012 -20121209_NO@NYG,1,48,18,NO,NYG,1,10,65,(3:18) J.Morgan left end pushed ob at NYG 49 for 16 yards (C.Webster). End around. PENALTY on NO-J.Collins Offensive Holding 10 yards enforced at NO 35 - No Play.,7,14,2012 -20121209_NO@NYG,1,47,54,NO,NYG,1,20,75,(2:54) (Shotgun) D.Brees pass incomplete short right to D.Henderson (C.Webster).,7,14,2012 -20121209_NO@NYG,1,47,46,NO,NYG,2,20,75,(2:46) (Shotgun) D.Brees pass short right to P.Thomas pushed ob at NO 27 for 2 yards (M.Boley J.Tuck).,7,14,2012 -20121209_NO@NYG,1,47,15,NO,NYG,3,18,73,(2:15) (Shotgun) D.Brees pass incomplete short right. PENALTY on NO-D.Brees Intentional Grounding 19 yards enforced at NO 27.,7,14,2012 -20121209_NO@NYG,1,47,4,NO,NYG,4,37,92,(2:04) T.Morstead punts 47 yards to NYG 45 Center-J.Drescher out of bounds.,7,14,2012 -20121209_NO@NYG,1,46,58,NYG,NO,1,10,55,(1:58) E.Manning pass deep left to D.Wilson to NO 32 for 23 yards (J.Galette). PENALTY on NYG-R.Barden Offensive Pass Interference 10 yards enforced at NYG 45 - No Play.,14,7,2012 -20121209_NO@NYG,1,46,29,NYG,NO,1,20,65,(1:29) D.Wilson right tackle to NYG 35 for no gain (C.Lofton).,14,7,2012 -20121209_NO@NYG,1,45,55,NYG,NO,2,20,65,(:55) (Shotgun) E.Manning pass incomplete short right to R.Barden (J.Casillas).,14,7,2012 -20121209_NO@NYG,1,45,49,NYG,NO,3,20,65,(:49) (Shotgun) E.Manning pass incomplete short right [M.Wilson].,14,7,2012 -20121209_NO@NYG,1,45,38,NYG,NO,4,20,65,(:38) S.Weatherford punts 56 yards to NO 9 Center-Z.DeOssie. D.Sproles to NO 15 for 6 yards (S.Paysinger). NO-D.Sproles was injured during the play. PENALTY on NO-W.Herring Offensive Holding 4 yards enforced at NO 9. Officially a penalty for 4 yards.,14,7,2012 -20121209_NO@NYG,1,45,30,NO,NYG,1,10,95,(:30) M.Ingram left guard to NO 7 for 2 yards (M.Boley J.Williams).,7,14,2012 -20121209_NO@NYG,2,45,0,NO,NYG,2,8,93,(15:00) P.Thomas up the middle to NO 13 for 6 yards (C.Blackburn).,7,14,2012 -20121209_NO@NYG,2,44,41,NO,NYG,3,2,87,(14:41) P.Thomas up the middle to NO 15 for 2 yards (J.Pierre-Paul).,7,14,2012 -20121209_NO@NYG,2,44,8,NO,NYG,1,10,85,(14:08) D.Brees pass short middle to L.Moore pushed ob at NO 41 for 26 yards (S.Brown).,7,14,2012 -20121209_NO@NYG,2,43,42,NO,NYG,1,10,59,(13:42) D.Brees pass short middle to P.Thomas to NYG 48 for 11 yards (J.Pierre-Paul).,7,14,2012 -20121209_NO@NYG,2,43,8,NO,NYG,1,10,48,(13:08) M.Ingram right tackle to NYG 44 for 4 yards (C.Canty C.Blackburn).,7,14,2012 -20121209_NO@NYG,2,42,27,NO,NYG,2,6,44,(12:27) (Shotgun) D.Brees pass short middle to P.Thomas to NYG 32 for 12 yards (M.Boley J.Williams).,7,14,2012 -20121209_NO@NYG,2,41,52,NO,NYG,1,10,32,(11:52) M.Ingram right guard to NYG 30 for 2 yards (M.Boley).,7,14,2012 -20121209_NO@NYG,2,41,15,NO,NYG,2,8,30,(11:15) (Shotgun) D.Brees pass incomplete short left to D.Sproles (J.Williams).,7,14,2012 -20121209_NO@NYG,2,41,9,NO,NYG,3,8,30,(11:09) (Shotgun) D.Brees pass short middle to M.Colston to NYG 18 for 12 yards (C.Blackburn).,7,14,2012 -20121209_NO@NYG,2,40,36,NO,NYG,1,10,18,(10:36) P.Thomas left guard to NYG 14 for 4 yards (L.Joseph C.Blackburn).,7,14,2012 -20121209_NO@NYG,2,40,1,NO,NYG,2,6,14,(10:01) (Shotgun) D.Brees pass incomplete short left to J.Graham (J.Williams).,7,14,2012 -20121209_NO@NYG,2,39,55,NO,NYG,3,6,14,(9:55) (Shotgun) D.Brees pass incomplete short left to L.Moore.,7,14,2012 -20121209_NO@NYG,2,39,47,NO,NYG,4,6,14,(9:47) G.Hartley 32 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,14,2012 -20121209_NO@NYG,2,39,47,NO,NYG,,,14,T.Morstead kicks 63 yards from NO 35 to NYG 2. D.Wilson pushed ob at NO 46 for 52 yards (T.Morstead).,10,14,2012 -20121209_NO@NYG,2,39,36,NYG,NO,1,10,46,(9:36) E.Manning pass short right to V.Cruz to NO 33 for 13 yards (J.Greer).,14,10,2012 -20121209_NO@NYG,2,39,1,NYG,NO,1,10,33,(9:01) E.Manning pass short right to H.Nicks to NO 26 for 7 yards (P.Robinson).,14,10,2012 -20121209_NO@NYG,2,38,26,NYG,NO,2,3,26,(8:26) E.Manning pass short left to V.Cruz pushed ob at NO 17 for 9 yards (J.Greer).,14,10,2012 -20121209_NO@NYG,2,37,59,NYG,NO,1,10,17,(7:59) A.Bradshaw left tackle to NO 16 for 1 yard (J.Vilma). PENALTY on NYG Illegal Shift 5 yards enforced at NO 17 - No Play.,14,10,2012 -20121209_NO@NYG,2,37,32,NYG,NO,1,15,22,(7:32) (Shotgun) E.Manning pass incomplete short left to D.Hixon. PENALTY on NO-S.Ellis Illegal Use of Hands 5 yards enforced at NO 22 - No Play.,14,10,2012 -20121209_NO@NYG,2,37,25,NYG,NO,1,10,17,(7:25) (Shotgun) A.Bradshaw left end to NO 17 for no gain (C.Lofton R.Harper).,14,10,2012 -20121209_NO@NYG,2,36,50,NYG,NO,2,10,17,(6:50) E.Manning pass short right to M.Bennett pushed ob at NO 17 for no gain (I.Abdul-Quddus).,14,10,2012 -20121209_NO@NYG,2,36,15,NYG,NO,3,10,17,(6:15) (Shotgun) E.Manning pass incomplete deep right to H.Nicks (P.Robinson).,14,10,2012 -20121209_NO@NYG,2,36,7,NYG,NO,4,10,17,(6:07) L.Tynes 36 yard field goal is No Good Wide Left Center-Z.DeOssie Holder-S.Weatherford.,14,10,2012 -20121209_NO@NYG,2,36,3,NO,NYG,1,10,74,(6:03) M.Ingram right tackle to NO 32 for 6 yards (J.Tuck S.Brown).,10,14,2012 -20121209_NO@NYG,2,35,34,NO,NYG,2,4,68,(5:34) M.Ingram left tackle to NO 40 for 8 yards (J.Pierre-Paul J.Williams).,10,14,2012 -20121209_NO@NYG,2,35,1,NO,NYG,1,10,60,(5:01) D.Brees pass short middle to P.Thomas to NYG 49 for 11 yards (A.Rolle J.Pierre-Paul).,10,14,2012 -20121209_NO@NYG,2,34,25,NO,NYG,1,10,49,(4:25) D.Sproles left end pushed ob at NYG 15 for 34 yards (S.Brown).,10,14,2012 -20121209_NO@NYG,2,34,3,NO,NYG,1,10,15,(4:03) M.Ingram right tackle to NYG 8 for 7 yards (A.Rolle).,10,14,2012 -20121209_NO@NYG,2,33,28,NO,NYG,2,3,8,(3:28) D.Brees pass short right to J.Graham to NYG 6 for 2 yards (M.Boley).,10,14,2012 -20121209_NO@NYG,2,32,48,NO,NYG,3,1,6,(2:48) D.Sproles left end to NYG 7 for -1 yards (A.Rolle M.Boley).,10,14,2012 -20121209_NO@NYG,2,32,0,NO,NYG,4,2,7,(2:00) G.Hartley 25 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,10,14,2012 -20121209_NO@NYG,2,32,0,NO,NYG,,,7,T.Morstead kicks 54 yards from NO 35 to NYG 11. D.Wilson to NYG 31 for 20 yards (C.Roby).,13,14,2012 -20121209_NO@NYG,2,31,52,NYG,NO,1,10,69,(1:52) (Shotgun) E.Manning pass short left to M.Bennett pushed ob at NYG 42 for 11 yards (C.Lofton).,14,13,2012 -20121209_NO@NYG,2,31,35,NYG,NO,1,10,58,(1:35) E.Manning pass short left to M.Bennett pushed ob at NYG 49 for 7 yards (P.Robinson).,14,13,2012 -20121209_NO@NYG,2,31,29,NYG,NO,2,3,51,(1:29) E.Manning pass short middle to M.Bennett to NO 43 for 8 yards (C.Lofton R.Bush).,14,13,2012 -20121209_NO@NYG,2,31,23,NYG,NO,1,10,43,(1:23) E.Manning pass short left to M.Bennett pushed ob at NO 27 for 16 yards (R.Bush). PENALTY on NYG-A.Bradshaw Offensive Holding 10 yards enforced at NO 43 - No Play.,14,13,2012 -20121209_NO@NYG,2,31,14,NYG,NO,1,20,53,(1:14) (Shotgun) E.Manning pass deep right to V.Cruz pushed ob at NO 18 for 35 yards (J.Greer).,14,13,2012 -20121209_NO@NYG,2,31,8,NYG,NO,1,10,18,(1:08) (Shotgun) E.Manning pass incomplete deep right to M.Bennett.,14,13,2012 -20121209_NO@NYG,2,31,3,NYG,NO,2,10,18,(1:03) (Shotgun) E.Manning pass short left to D.Hixon to NO 9 for 9 yards (P.Robinson).,14,13,2012 -20121209_NO@NYG,2,30,34,NYG,NO,3,1,9,(:34) (Shotgun) A.Bradshaw left tackle to NO 5 for 4 yards (S.Ellis).,14,13,2012 -20121209_NO@NYG,2,30,29,NYG,NO,1,5,5,(:29) (Shotgun) E.Manning pass incomplete short left to H.Nicks.,14,13,2012 -20121209_NO@NYG,2,30,25,NYG,NO,2,5,5,(:25) E.Manning pass short right to D.Hixon for 5 yards TOUCHDOWN.,14,13,2012 -20121209_NO@NYG,2,30,25,NYG,NO,,,5,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,14,13,2012 -20121209_NO@NYG,2,30,25,NYG,NO,,,5,L.Tynes kicks 51 yards from NYG 35 to NO 14. P.Thomas to NO 28 for 14 yards (W.Hill).,21,13,2012 -20121209_NO@NYG,2,30,16,NO,NYG,1,10,72,(:16) D.Brees kneels to NO 27 for -1 yards.,13,21,2012 -20121209_NO@NYG,3,30,0,NYG,NO,,,72,L.Tynes kicks 67 yards from NYG 35 to NO -2. T.Cadet to NO 22 for 24 yards (S.Paysinger).,21,13,2012 -20121209_NO@NYG,3,29,56,NO,NYG,1,10,78,(14:56) D.Brees pass deep middle intended for J.Graham INTERCEPTED by S.Brown (A.Rolle) at NO 41. S.Brown pushed ob at NO 20 for 21 yards (J.Morgan).,13,21,2012 -20121209_NO@NYG,3,29,44,NYG,NO,1,10,20,(14:44) D.Wilson right tackle to NO 18 for 2 yards (P.Robinson C.Jordan).,21,13,2012 -20121209_NO@NYG,3,29,11,NYG,NO,2,8,18,(14:11) E.Manning pass incomplete deep left to M.Bennett [W.Smith].,21,13,2012 -20121209_NO@NYG,3,29,1,NYG,NO,3,8,18,(14:01) (Shotgun) E.Manning pass short right to H.Nicks to NO 6 for 12 yards (P.Robinson).,21,13,2012 -20121209_NO@NYG,3,28,18,NYG,NO,1,6,6,(13:18) D.Wilson left tackle for 6 yards TOUCHDOWN.,21,13,2012 -20121209_NO@NYG,3,28,18,NYG,NO,,,6,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,21,13,2012 -20121209_NO@NYG,3,28,18,NYG,NO,,,6,L.Tynes kicks 70 yards from NYG 35 to NO -5. T.Cadet to NO 12 for 17 yards (M.Herzlich W.Hill).,28,13,2012 -20121209_NO@NYG,3,27,59,NO,NYG,1,10,88,(12:59) M.Ingram right guard to NO 13 for 1 yard (J.Pierre-Paul L.Joseph).,13,28,2012 -20121209_NO@NYG,3,27,27,NO,NYG,2,9,87,(12:27) D.Brees pass short left to P.Thomas to NO 18 for 5 yards (K.Rivers C.Blackburn).,13,28,2012 -20121209_NO@NYG,3,26,42,NO,NYG,3,4,82,(11:42) (Shotgun) D.Brees pass incomplete short left to J.Graham (W.Hill).,13,28,2012 -20121209_NO@NYG,3,26,35,NO,NYG,4,4,82,(11:35) T.Morstead punts 54 yards to NYG 28 Center-J.Drescher. D.Hixon to NYG 38 for 10 yards (M.Wilson).,13,28,2012 -20121209_NO@NYG,3,26,22,NYG,NO,1,10,62,(11:22) D.Wilson up the middle to NYG 41 for 3 yards (R.Harper T.Johnson).,28,13,2012 -20121209_NO@NYG,3,25,45,NYG,NO,2,7,59,(10:45) (Shotgun) E.Manning pass short middle to H.Nicks pushed ob at NO 36 for 23 yards (P.Robinson).,28,13,2012 -20121209_NO@NYG,3,25,14,NYG,NO,1,10,36,(10:14) D.Wilson left end to NO 34 for 2 yards (C.Lofton).,28,13,2012 -20121209_NO@NYG,3,24,37,NYG,NO,2,8,34,(9:37) E.Manning pass short right to V.Cruz to NO 28 for 6 yards (D.Hawthorne).,28,13,2012 -20121209_NO@NYG,3,23,57,NYG,NO,3,2,28,(8:57) E.Manning pass short right to V.Cruz to NO 25 for 3 yards (J.Greer).,28,13,2012 -20121209_NO@NYG,3,23,21,NYG,NO,1,10,25,(8:21) E.Manning pass deep right to H.Nicks for 25 yards TOUCHDOWN.,28,13,2012 -20121209_NO@NYG,3,23,21,NYG,NO,,,25,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,28,13,2012 -20121209_NO@NYG,3,23,21,NYG,NO,,,25,L.Tynes kicks 66 yards from NYG 35 to NO -1. T.Cadet to NO 25 for 26 yards (J.Hosley).,35,13,2012 -20121209_NO@NYG,3,23,7,NO,NYG,1,10,75,(8:07) D.Brees pass deep middle to J.Morgan pushed ob at NYG 13 for 62 yards (C.Webster).,13,35,2012 -20121209_NO@NYG,3,22,37,NO,NYG,1,10,13,(7:37) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,13,35,2012 -20121209_NO@NYG,3,22,28,NO,NYG,2,10,13,(7:28) D.Sproles left end for 13 yards TOUCHDOWN.,13,35,2012 -20121209_NO@NYG,3,22,28,NO,NYG,,,13,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,13,35,2012 -20121209_NO@NYG,3,22,28,NO,NYG,,,13,T.Morstead kicks 45 yards from NO 35 to NYG 20. J.Jernigan MUFFS catch recovered by NYG-J.Cordle at NYG 23. J.Cordle to NYG 23 for no gain (R.Humber).,20,35,2012 -20121209_NO@NYG,3,22,20,NYG,NO,1,10,77,(7:20) E.Manning pass incomplete short right to A.Bradshaw (C.Jordan).,35,20,2012 -20121209_NO@NYG,3,22,16,NYG,NO,2,10,77,(7:16) (Shotgun) A.Bradshaw right tackle to NYG 28 for 5 yards (C.Jordan C.Lofton).,35,20,2012 -20121209_NO@NYG,3,21,36,NYG,NO,3,5,72,(6:36) (Shotgun) E.Manning pass deep middle to V.Cruz to NO 38 for 34 yards (R.Bush).,35,20,2012 -20121209_NO@NYG,3,20,49,NYG,NO,1,10,38,(5:49) A.Bradshaw right tackle to NO 35 for 3 yards (P.Robinson D.Hawthorne).,35,20,2012 -20121209_NO@NYG,3,20,10,NYG,NO,2,7,35,(5:10) E.Manning pass short left intended for M.Bennett INTERCEPTED by I.Abdul-Quddus at NO 20. I.Abdul-Quddus pushed ob at NO 32 for 12 yards (H.Hynoski).,35,20,2012 -20121209_NO@NYG,3,20,0,NO,NYG,1,10,68,(5:00) M.Ingram right tackle to NYG 49 for 19 yards (K.Rivers).,20,35,2012 -20121209_NO@NYG,3,19,27,NO,NYG,1,10,49,(4:27) M.Ingram left guard to NYG 44 for 5 yards (L.Joseph R.Bernard).,20,35,2012 -20121209_NO@NYG,3,18,47,NO,NYG,2,5,44,(3:47) (Shotgun) D.Brees pass short right to J.Graham pushed ob at NYG 17 for 27 yards (C.Blackburn).,20,35,2012 -20121209_NO@NYG,3,18,17,NO,NYG,1,10,17,(3:17) D.Brees pass short left to J.Collins to NYG 10 for 7 yards (P.Amukamara).,20,35,2012 -20121209_NO@NYG,3,17,38,NO,NYG,2,3,10,(2:38) M.Ingram right tackle to NYG 9 for 1 yard (K.Rivers).,20,35,2012 -20121209_NO@NYG,3,17,0,NO,NYG,3,2,9,(2:00) D.Brees pass short right to D.Sproles for 9 yards TOUCHDOWN.,20,35,2012 -20121209_NO@NYG,3,17,0,NO,NYG,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,20,35,2012 -20121209_NO@NYG,3,17,0,NO,NYG,,,9,T.Morstead kicks 50 yards from NO 35 to NYG 15. J.Jernigan pushed ob at NO 25 for 60 yards (T.Morstead).,27,35,2012 -20121209_NO@NYG,3,16,42,NYG,NO,1,10,25,(1:42) A.Bradshaw left tackle to NO 19 for 6 yards (R.Harper).,35,27,2012 -20121209_NO@NYG,3,16,7,NYG,NO,2,4,19,(1:07) A.Bradshaw right guard to NO 16 for 3 yards (J.Vilma C.Lofton).,35,27,2012 -20121209_NO@NYG,3,15,26,NYG,NO,3,1,16,(:26) A.Bradshaw left guard to NO 13 for 3 yards (D.Hawthorne J.Vilma).,35,27,2012 -20121209_NO@NYG,4,15,0,NYG,NO,1,10,13,(15:00) (Shotgun) A.Bradshaw left guard to NO 10 for 3 yards (R.Harper S.Ellis).,35,27,2012 -20121209_NO@NYG,4,14,27,NYG,NO,2,7,10,(14:27) E.Manning pass short middle to V.Cruz for 10 yards TOUCHDOWN.,35,27,2012 -20121209_NO@NYG,4,14,27,NYG,NO,,,10,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,35,27,2012 -20121209_NO@NYG,4,14,27,NYG,NO,,,10,L.Tynes kicks 64 yards from NYG 35 to NO 1. T.Cadet to NO 19 for 18 yards (K.Lumpkin M.Herzlich).,42,27,2012 -20121209_NO@NYG,4,14,13,NO,NYG,1,10,81,(14:13) (Shotgun) D.Brees pass incomplete short right to P.Thomas.,27,42,2012 -20121209_NO@NYG,4,14,9,NO,NYG,2,10,81,(14:09) M.Ingram right tackle to NO 20 for 1 yard (C.Blackburn J.Tuck).,27,42,2012 -20121209_NO@NYG,4,13,32,NO,NYG,3,9,80,(13:32) (Shotgun) D.Brees pass deep middle to J.Morgan to NYG 36 for 44 yards (S.Brown). New York Giants challenged the pass completion ruling and the play was Upheld. (Timeout #2.),27,42,2012 -20121209_NO@NYG,4,12,51,NO,NYG,1,10,36,(12:51) P.Thomas left end to NYG 36 for no gain (P.Amukamara). PENALTY on NYG-P.Amukamara Horse Collar Tackle 15 yards enforced at NYG 36 - No Play.,27,42,2012 -20121209_NO@NYG,4,12,28,NO,NYG,1,10,21,(12:28) P.Robinson left end to NYG 16 for 5 yards (C.Blackburn). PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at NYG 21 - No Play.,27,42,2012 -20121209_NO@NYG,4,12,7,NO,NYG,1,20,31,(12:07) D.Brees pass deep middle intended for J.Graham INTERCEPTED by S.Brown at NYG 8. S.Brown pushed ob at NO 22 for 70 yards (J.Bushrod).,27,42,2012 -20121209_NO@NYG,4,11,50,NYG,NO,1,10,22,(11:50) D.Wilson right tackle to NO 25 for -3 yards (W.Smith C.Jordan).,42,27,2012 -20121209_NO@NYG,4,11,11,NYG,NO,2,13,25,(11:11) (Shotgun) H.Hynoski left guard to NO 20 for 5 yards (I.Abdul-Quddus S.Ellis).,42,27,2012 -20121209_NO@NYG,4,10,31,NYG,NO,3,8,20,(10:31) (Shotgun) E.Manning pass incomplete deep middle to V.Cruz (I.Abdul-Quddus).,42,27,2012 -20121209_NO@NYG,4,10,23,NYG,NO,4,8,20,(10:23) L.Tynes 39 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,42,27,2012 -20121209_NO@NYG,4,10,23,NYG,NO,,,20,L.Tynes kicks 67 yards from NYG 35 to NO -2. T.Cadet to NO 21 for 23 yards (J.Hosley M.Herzlich).,45,27,2012 -20121209_NO@NYG,4,10,11,NO,NYG,1,10,79,(10:11) (Shotgun) D.Brees pass incomplete short right.,27,45,2012 -20121209_NO@NYG,4,10,5,NO,NYG,2,10,79,(10:05) (Shotgun) D.Brees pass short middle to D.Sproles to NO 24 for 3 yards (J.Tuck).,27,45,2012 -20121209_NO@NYG,4,9,28,NO,NYG,3,7,76,(9:28) (Shotgun) D.Brees pass incomplete short middle to L.Moore.,27,45,2012 -20121209_NO@NYG,4,9,22,NO,NYG,4,7,76,(9:22) T.Morstead punts 55 yards to NYG 21 Center-J.Drescher. D.Hixon pushed ob at NYG 30 for 9 yards (I.Abdul-Quddus).,27,45,2012 -20121209_NO@NYG,4,9,11,NYG,NO,1,10,70,(9:11) D.Wilson up the middle to NO 49 for 21 yards (R.Harper).,45,27,2012 -20121209_NO@NYG,4,8,32,NYG,NO,1,10,49,(8:32) D.Wilson right end to NO 41 for 8 yards (D.Hawthorne). NO-C.Lofton was injured during the play.,45,27,2012 -20121209_NO@NYG,4,7,50,NYG,NO,2,2,41,(7:50) D.Wilson right end to NO 35 for 6 yards (I.Abdul-Quddus).,45,27,2012 -20121209_NO@NYG,4,7,13,NYG,NO,1,10,35,(7:13) D.Wilson left tackle to NO 35 for no gain (C.Lofton J.Vilma).,45,27,2012 -20121209_NO@NYG,4,6,32,NYG,NO,2,10,35,(6:32) E.Manning pass incomplete short left. PENALTY on NYG-E.Manning Intentional Grounding 10 yards enforced at NO 35.,45,27,2012 -20121209_NO@NYG,4,6,24,NYG,NO,3,20,45,(6:24) (Shotgun) E.Manning pass incomplete short left to H.Hynoski.,45,27,2012 -20121209_NO@NYG,4,6,19,NYG,NO,4,20,45,(6:19) S.Weatherford punts 35 yards to NO 10 Center-Z.DeOssie. D.Sproles pushed ob at NO 15 for 5 yards (Z.DeOssie).,45,27,2012 -20121209_NO@NYG,4,6,10,NO,NYG,1,10,85,(6:10) (Shotgun) D.Brees sacked at NO 6 for -9 yards (O.Umenyiora).,27,45,2012 -20121209_NO@NYG,4,5,42,NO,NYG,2,19,94,(5:42) (Shotgun) D.Brees pass incomplete deep left to D.Henderson.,27,45,2012 -20121209_NO@NYG,4,5,34,NO,NYG,3,19,94,(5:34) (Shotgun) D.Brees pass incomplete deep middle to L.Moore (J.Hosley).,27,45,2012 -20121209_NO@NYG,4,5,28,NO,NYG,4,19,94,(5:28) T.Morstead punts 46 yards to NYG 48 Center-J.Drescher fair catch by D.Hixon.,27,45,2012 -20121209_NO@NYG,4,5,20,NYG,NO,1,10,52,(5:20) D.Wilson left end for 52 yards TOUCHDOWN.,45,27,2012 -20121209_NO@NYG,4,5,20,NYG,NO,,,52,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,45,27,2012 -20121209_NO@NYG,4,5,20,NYG,NO,,,52,L.Tynes kicks 68 yards from NYG 35 to NO -3. T.Cadet to NO 22 for 25 yards (M.Herzlich A.Rolle). PENALTY on NO-E.Olsen Illegal Block Above the Waist 6 yards enforced at NO 12. Officially a return for 15 yards.,52,27,2012 -20121209_NO@NYG,4,5,3,NO,NYG,1,10,94,(5:03) (Shotgun) D.Brees pass short middle to M.Colston to NO 20 for 14 yards (W.Hill).,27,52,2012 -20121209_NO@NYG,4,4,38,NO,NYG,1,10,80,(4:38) (No Huddle Shotgun) D.Brees pass incomplete short middle to D.Henderson. PENALTY on NO-B.De La Puente Offensive Holding 10 yards enforced at NO 20 - No Play.,27,52,2012 -20121209_NO@NYG,4,4,32,NO,NYG,1,20,90,(4:32) (Shotgun) D.Brees pass short right to D.Sproles to NO 20 for 10 yards (W.Hill).,27,52,2012 -20121209_NO@NYG,4,4,4,NO,NYG,2,10,80,(4:04) (No Huddle Shotgun) D.Brees pass short middle to J.Graham to NO 33 for 13 yards (W.Hill).,27,52,2012 -20121209_NO@NYG,4,3,38,NO,NYG,1,10,67,(3:38) (No Huddle Shotgun) PENALTY on NO-J.Bushrod False Start 5 yards enforced at NO 33 - No Play.,27,52,2012 -20121209_NO@NYG,4,3,34,NO,NYG,1,15,72,(3:34) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at NO 34 for 6 yards (M.Boley).,27,52,2012 -20121209_NO@NYG,4,3,28,NO,NYG,2,9,66,(3:28) (Shotgun) D.Brees pass short middle to P.Thomas to NO 46 for 12 yards (S.Brown M.Boley).,27,52,2012 -20121209_NO@NYG,4,3,6,NO,NYG,1,10,54,(3:06) (No Huddle Shotgun) D.Brees pass short middle to J.Graham to NYG 47 for 7 yards (A.Rolle M.Boley).,27,52,2012 -20121209_NO@NYG,4,2,43,NO,NYG,2,3,47,(2:43) (No Huddle Shotgun) D.Brees pass short left to M.Colston to NYG 42 for 5 yards (J.Williams).,27,52,2012 -20121209_NO@NYG,4,2,18,NO,NYG,1,10,42,(2:18) (No Huddle Shotgun) D.Brees pass short left to P.Thomas to NYG 38 for 4 yards (M.Boley).,27,52,2012 -20121209_NO@NYG,4,2,0,NO,NYG,2,6,38,(2:00) (Shotgun) D.Sproles left tackle to NYG 37 for 1 yard (S.Brown J.Hosley).,27,52,2012 -20121209_NO@NYG,4,1,34,NO,NYG,3,5,37,(1:34) (No Huddle Shotgun) D.Brees pass incomplete deep left to D.Henderson.,27,52,2012 -20121209_NO@NYG,4,1,27,NO,NYG,4,5,37,(1:27) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,27,52,2012 -20121209_NO@NYG,4,1,23,NYG,NO,1,10,63,(1:23) E.Manning kneels to NYG 36 for -1 yards.,52,27,2012 -20121209_NO@NYG,4,0,41,NYG,NO,2,11,64,(:41) E.Manning kneels to NYG 34 for -2 yards.,52,27,2012 -20121209_NO@NYG,4,0,41,NYG,NO,,,64,                      ,52,27,2012 -20121209_ARI@SEA,1,0,0,SEA,ARI,,,64,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. W.Powell to ARZ 22 for 22 yards (H.Farwell; K.Chancellor).,0,0,2012 -20121209_ARI@SEA,1,59,53,ARI,SEA,1,10,78,(14:53) J.Skelton pass short right to A.Roberts ran ob at ARZ 31 for 9 yards.,0,0,2012 -20121209_ARI@SEA,1,59,20,ARI,SEA,2,1,69,(14:20) (Shotgun) J.Skelton pass short right to A.Roberts to SEA 45 for 24 yards (K.Wright).,0,0,2012 -20121209_ARI@SEA,1,58,37,ARI,SEA,1,10,45,(13:37) C.Wells left tackle to SEA 39 for 6 yards (B.Mebane).,0,0,2012 -20121209_ARI@SEA,1,57,53,ARI,SEA,2,4,39,(12:53) (Shotgun) J.Skelton pass short right to L.Stephens-Howling to SEA 37 for 2 yards (B.Mebane; B.Wagner).,0,0,2012 -20121209_ARI@SEA,1,57,12,ARI,SEA,3,2,37,(12:12) (Shotgun) J.Skelton pass short left intended for L.Fitzgerald INTERCEPTED by B.Wagner (K.Wright) at SEA 31. B.Wagner to ARZ 24 for 45 yards (J.Skelton). PENALTY on ARZ-J.Skelton Tripping 10 yards enforced at ARZ 24.,0,0,2012 -20121209_ARI@SEA,1,57,0,SEA,ARI,1,10,14,(12:00) M.Lynch left tackle to ARZ 12 for 2 yards (C.Campbell; P.Lenon).,0,0,2012 -20121209_ARI@SEA,1,56,19,SEA,ARI,2,8,12,(11:19) (Shotgun) R.Wilson left end to ARZ 6 for 6 yards (S.Acho).,0,0,2012 -20121209_ARI@SEA,1,55,36,SEA,ARI,3,2,6,(10:36) (Shotgun) R.Wilson sacked at ARZ 13 for -7 yards (Q.Groves).,0,0,2012 -20121209_ARI@SEA,1,55,4,SEA,ARI,4,9,13,(10:04) S.Hauschka 31 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121209_ARI@SEA,1,55,4,SEA,ARI,,,13,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. W.Powell to ARZ 19 for 19 yards (K.Chancellor).,3,0,2012 -20121209_ARI@SEA,1,54,53,ARI,SEA,1,10,81,(9:53) (Shotgun) J.Skelton pass short left to P.Peterson pushed ob at ARZ 26 for 7 yards (C.Clemons).,0,3,2012 -20121209_ARI@SEA,1,54,34,ARI,SEA,2,3,74,(9:34) W.Powell left tackle to ARZ 30 for 4 yards (E.Thomas B.Wagner). PENALTY on SEA-B.Mebane Unnecessary Roughness 15 yards enforced at ARZ 30.,0,3,2012 -20121209_ARI@SEA,1,54,14,ARI,SEA,1,10,55,(9:14) (Shotgun) L.Stephens-Howling left tackle to ARZ 46 for 1 yard (K.Chancellor; B.Mebane).,0,3,2012 -20121209_ARI@SEA,1,53,38,ARI,SEA,2,9,54,(8:38) J.Skelton pass incomplete deep left to L.Fitzgerald.,0,3,2012 -20121209_ARI@SEA,1,53,32,ARI,SEA,3,9,54,(8:32) (Shotgun) J.Skelton pass incomplete short right to R.Housler [C.Clemons].,0,3,2012 -20121209_ARI@SEA,1,53,27,ARI,SEA,4,9,54,(8:27) D.Zastudil punts 42 yards to SEA 12 Center-M.Leach. L.Washington to SEA 15 for 3 yards (J.Bethel; M.Adams).,0,3,2012 -20121209_ARI@SEA,1,53,18,SEA,ARI,1,10,85,(8:18) R.Wilson pass short left to A.McCoy to SEA 30 for 15 yards (P.Peterson; K.Rhodes). PENALTY on SEA-G.Tate Offensive Pass Interference 7 yards enforced at SEA 15 - No Play.,3,0,2012 -20121209_ARI@SEA,1,52,55,SEA,ARI,1,17,92,(7:55) (Shotgun) R.Wilson scrambles right end ran ob at SEA 9 for 1 yard. PENALTY on ARZ-Q.Groves Defensive Offside 5 yards enforced at SEA 8 - No Play.,3,0,2012 -20121209_ARI@SEA,1,52,24,SEA,ARI,1,12,87,(7:24) R.Wilson pass incomplete short left to M.Lynch (P.Lenon).,3,0,2012 -20121209_ARI@SEA,1,52,19,SEA,ARI,2,12,87,(7:19) M.Lynch left end to SEA 14 for 1 yard (P.Lenon; N.Eason).,3,0,2012 -20121209_ARI@SEA,1,51,34,SEA,ARI,3,11,86,(6:34) (Shotgun) R.Wilson pass short left to S.Rice to SEA 31 for 17 yards (G.Toler).,3,0,2012 -20121209_ARI@SEA,1,50,51,SEA,ARI,1,10,69,(5:51) R.Wilson scrambles right end to SEA 35 for 4 yards (Q.Groves).,3,0,2012 -20121209_ARI@SEA,1,50,5,SEA,ARI,2,6,65,(5:05) M.Lynch right tackle to SEA 45 for 10 yards (P.Lenon).,3,0,2012 -20121209_ARI@SEA,1,49,22,SEA,ARI,1,10,55,(4:22) M.Lynch left guard to SEA 47 for 2 yards (P.Lenon).,3,0,2012 -20121209_ARI@SEA,1,48,41,SEA,ARI,2,8,53,(3:41) R.Wilson pass short right to A.McCoy to ARZ 32 for 21 yards (S.Acho; P.Lenon). ARZ-P.Lenon was injured during the play. His return is Probable.,3,0,2012 -20121209_ARI@SEA,1,48,12,SEA,ARI,1,10,32,(3:12) R.Wilson pass incomplete deep right to R.Turbin (R.Walker).,3,0,2012 -20121209_ARI@SEA,1,48,3,SEA,ARI,2,10,32,(3:03) R.Wilson pass short right to M.Robinson pushed ob at ARZ 20 for 12 yards (D.Washington).,3,0,2012 -20121209_ARI@SEA,1,47,34,SEA,ARI,1,10,20,(2:34) (Shotgun) M.Lynch right tackle to ARZ 5 for 15 yards (Q.Groves J.Sanders). PENALTY on SEA-B.Giacomini Unnecessary Roughness 15 yards enforced between downs.,3,0,2012 -20121209_ARI@SEA,1,47,13,SEA,ARI,1,10,20,(2:13) (Shotgun) M.Lynch left end for 20 yards TOUCHDOWN.,3,0,2012 -20121209_ARI@SEA,1,47,13,SEA,ARI,,,20,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,0,2012 -20121209_ARI@SEA,1,47,13,SEA,ARI,,,20,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,0,2012 -20121209_ARI@SEA,1,47,4,ARI,SEA,1,10,80,(2:04) (Shotgun) J.Skelton pass incomplete deep left to M.Floyd.,0,10,2012 -20121209_ARI@SEA,1,46,58,ARI,SEA,2,10,80,(1:58) C.Wells right tackle to ARZ 21 for 1 yard (C.McDonald).,0,10,2012 -20121209_ARI@SEA,1,46,17,ARI,SEA,3,9,79,(1:17) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald.,0,10,2012 -20121209_ARI@SEA,1,46,12,ARI,SEA,4,9,79,(1:12) D.Zastudil punts 52 yards to SEA 27 Center-M.Leach. L.Washington to SEA 27 for no gain (J.Bethel).,0,10,2012 -20121209_ARI@SEA,1,46,4,SEA,ARI,1,10,73,(1:04) (Shotgun) R.Wilson up the middle to SEA 29 for 2 yards (C.Campbell). Broken play.,10,0,2012 -20121209_ARI@SEA,1,45,24,SEA,ARI,2,8,71,(:24) (Shotgun) R.Wilson pass deep left to A.McCoy to ARZ 4 for 67 yards (W.Gay).,10,0,2012 -20121209_ARI@SEA,2,45,0,SEA,ARI,1,4,4,(15:00) M.Lynch right end for 4 yards TOUCHDOWN.,10,0,2012 -20121209_ARI@SEA,2,45,0,SEA,ARI,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,10,0,2012 -20121209_ARI@SEA,2,45,0,SEA,ARI,,,4,S.Hauschka kicks 61 yards from SEA 35 to ARZ 4. W.Powell to ARZ 25 for 21 yards (E.Thomas).,17,0,2012 -20121209_ARI@SEA,2,44,48,ARI,SEA,1,10,75,(14:48) W.Powell left end to ARZ 34 for 9 yards (K.Chancellor).,0,17,2012 -20121209_ARI@SEA,2,44,11,ARI,SEA,2,1,66,(14:11) (No Huddle Shotgun) J.Skelton left guard to ARZ 36 for 2 yards (A.Branch). Broken play.,0,17,2012 -20121209_ARI@SEA,2,43,44,ARI,SEA,1,10,64,(13:44) (No Huddle) W.Powell left end to ARZ 38 for 2 yards (A.Branch).,0,17,2012 -20121209_ARI@SEA,2,43,9,ARI,SEA,2,8,62,(13:09) (No Huddle Shotgun) J.Skelton pass short right to R.Housler to ARZ 41 for 3 yards (B.Wagner).,0,17,2012 -20121209_ARI@SEA,2,42,30,ARI,SEA,3,5,59,(12:30) (Shotgun) PENALTY on SEA-B.Mebane Neutral Zone Infraction 5 yards enforced at ARZ 41 - No Play.,0,17,2012 -20121209_ARI@SEA,2,42,2,ARI,SEA,1,10,54,(12:02) J.Skelton pass short right to R.Housler to SEA 48 for 6 yards (M.Smith).,0,17,2012 -20121209_ARI@SEA,2,41,34,ARI,SEA,2,4,48,(11:34) (No Huddle Shotgun) J.Skelton sacked at ARZ 43 for -9 yards (C.Clemons). FUMBLES (C.Clemons) RECOVERED by SEA-C.Clemons at ARZ 43. C.Clemons to ARZ 43 for no gain (J.Skelton).,0,17,2012 -20121209_ARI@SEA,2,41,25,SEA,ARI,1,10,43,(11:25) R.Wilson pass incomplete deep middle to Z.Miller (K.Rhodes).,17,0,2012 -20121209_ARI@SEA,2,41,20,SEA,ARI,2,10,43,(11:20) (Shotgun) R.Turbin left end to ARZ 38 for 5 yards (D.Washington; K.Rhodes).,17,0,2012 -20121209_ARI@SEA,2,40,35,SEA,ARI,3,5,38,(10:35) (Shotgun) R.Wilson pass incomplete deep right to S.Rice.,17,0,2012 -20121209_ARI@SEA,2,40,28,SEA,ARI,4,5,38,(10:28) J.Ryan punts 29 yards to ARZ 9 Center-C.Gresham fair catch by P.Peterson.,17,0,2012 -20121209_ARI@SEA,2,40,20,ARI,SEA,1,10,91,(10:20) PENALTY on ARZ-D.Colledge False Start 4 yards enforced at ARZ 9 - No Play.,0,17,2012 -20121209_ARI@SEA,2,40,20,ARI,SEA,1,14,95,(10:20) J.Skelton pass short right intended for L.Fitzgerald INTERCEPTED by R.Sherman at ARZ 19. R.Sherman for 19 yards TOUCHDOWN.,0,17,2012 -20121209_ARI@SEA,2,40,20,SEA,ARI,,,95,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,17,0,2012 -20121209_ARI@SEA,2,40,20,SEA,ARI,,,95,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. L.Stephens-Howling to ARZ 17 for 17 yards (R.Turbin M.Morgan).,24,0,2012 -20121209_ARI@SEA,2,40,7,ARI,SEA,1,10,83,(10:07) L.Stephens-Howling up the middle to ARZ 21 for 4 yards (B.Wagner). ARZ-R.Ohrnberger was injured during the play. His return is Questionable.,0,24,2012 -20121209_ARI@SEA,2,39,38,ARI,SEA,2,6,79,(9:38) J.Skelton FUMBLES (Aborted) at ARZ 21 and recovers at ARZ 21. J.Skelton to ARZ 20 for -1 yards (M.Smith).,0,24,2012 -20121209_ARI@SEA,2,38,55,ARI,SEA,3,7,80,(8:55) (Shotgun) J.Skelton pass incomplete short right to R.Housler.,0,24,2012 -20121209_ARI@SEA,2,38,50,ARI,SEA,4,7,80,(8:50) D.Zastudil punts 39 yards to SEA 41 Center-M.Leach. L.Washington to ARZ 44 for 15 yards (M.Adams). PENALTY on SEA-B.Maxwell Illegal Block Above the Waist 10 yards enforced at SEA 44. Penalty on SEA-M.Robinson Illegal Blindside Block declined.,0,24,2012 -20121209_ARI@SEA,2,38,40,SEA,ARI,1,10,66,(8:40) R.Turbin up the middle to SEA 38 for 4 yards (S.Acho).,24,0,2012 -20121209_ARI@SEA,2,38,3,SEA,ARI,2,6,62,(8:03) (Shotgun) R.Turbin right guard to SEA 41 for 3 yards (D.Dockett; D.Washington).,24,0,2012 -20121209_ARI@SEA,2,37,24,SEA,ARI,3,3,59,(7:24) (Shotgun) R.Wilson pass short left to D.Baldwin to SEA 43 for 2 yards (R.Johnson; S.Acho).,24,0,2012 -20121209_ARI@SEA,2,36,43,SEA,ARI,4,1,57,(6:43) J.Ryan punts 45 yards to ARZ 12 Center-C.Gresham. P.Peterson MUFFS catch touched at ARZ 6 RECOVERED by SEA-M.Smith at ARZ 0. TOUCHDOWN.,24,0,2012 -20121209_ARI@SEA,2,36,43,SEA,ARI,,,57,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,24,0,2012 -20121209_ARI@SEA,2,36,43,SEA,ARI,,,57,S.Hauschka kicks 69 yards from SEA 35 to ARZ -4. L.Stephens-Howling to ARZ 18 for 22 yards (H.Farwell).,31,0,2012 -20121209_ARI@SEA,2,36,25,ARI,SEA,1,10,82,(6:25) J.Skelton pass short left to R.Housler to ARZ 22 for 4 yards (W.Thurmond).,0,31,2012 -20121209_ARI@SEA,2,35,57,ARI,SEA,2,6,78,(5:57) (No Huddle Shotgun) J.Skelton pass short middle to E.Doucet to ARZ 28 for 6 yards (J.Jones E.Thomas).,0,31,2012 -20121209_ARI@SEA,2,35,24,ARI,SEA,1,10,72,(5:24) PENALTY on ARZ-D.Colledge False Start 5 yards enforced at ARZ 28 - No Play.,0,31,2012 -20121209_ARI@SEA,2,35,6,ARI,SEA,1,15,77,(5:06) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald.,0,31,2012 -20121209_ARI@SEA,2,35,0,ARI,SEA,2,15,77,(5:00) (Shotgun) J.Skelton pass incomplete short left to A.Roberts (R.Sherman).,0,31,2012 -20121209_ARI@SEA,2,34,56,ARI,SEA,3,15,77,(4:56) (Shotgun) J.Skelton pass short middle to R.Housler to ARZ 32 for 9 yards (E.Thomas; J.Lane).,0,31,2012 -20121209_ARI@SEA,2,34,21,ARI,SEA,4,6,68,(4:21) (Punt formation) PENALTY on ARZ-R.Walker False Start 5 yards enforced at ARZ 32 - No Play.,0,31,2012 -20121209_ARI@SEA,2,34,7,ARI,SEA,4,11,73,(4:07) D.Zastudil punts 59 yards to SEA 14 Center-M.Leach. L.Washington pushed ob at SEA 21 for 7 yards (A.Sherman).,0,31,2012 -20121209_ARI@SEA,2,33,55,SEA,ARI,1,10,79,(3:55) R.Wilson pass deep right intended for G.Tate INTERCEPTED by P.Peterson at SEA 49. P.Peterson to SEA 49 for no gain (G.Tate).,31,0,2012 -20121209_ARI@SEA,2,33,42,ARI,SEA,1,10,49,(3:42) (Shotgun) J.Skelton pass short right to E.Doucet to SEA 48 for 1 yard (K.Chancellor).,0,31,2012 -20121209_ARI@SEA,2,33,11,ARI,SEA,2,9,48,(3:11) (No Huddle Shotgun) J.Skelton pass short left to A.Roberts to SEA 45 for 3 yards (B.Wagner).,0,31,2012 -20121209_ARI@SEA,2,32,40,ARI,SEA,3,6,45,(2:40) (Shotgun) J.Skelton pass deep right intended for L.Fitzgerald INTERCEPTED by R.Sherman at SEA 11. R.Sherman pushed ob at SEA 11 for no gain (L.Fitzgerald). PENALTY on SEA Unsportsmanlike Conduct 5 yards enforced at SEA 11.,0,31,2012 -20121209_ARI@SEA,2,32,33,SEA,ARI,1,10,94,(2:33) M.Lynch right end to SEA 21 for 15 yards (Q.Groves; K.Rhodes).,31,0,2012 -20121209_ARI@SEA,2,32,0,SEA,ARI,1,10,79,(2:00) R.Turbin right guard to SEA 24 for 3 yards (C.Campbell).,31,0,2012 -20121209_ARI@SEA,2,31,50,SEA,ARI,2,7,76,(1:50) (Shotgun) R.Turbin left tackle to SEA 30 for 6 yards (P.Lenon).,31,0,2012 -20121209_ARI@SEA,2,31,18,SEA,ARI,3,1,70,(1:18) (Shotgun) R.Turbin left guard to SEA 30 for no gain (Q.Groves).,31,0,2012 -20121209_ARI@SEA,2,30,36,SEA,ARI,4,1,70,(:36) J.Ryan punts 46 yards to ARZ 24 Center-C.Gresham. P.Peterson to ARZ 35 for 11 yards (B.Maxwell). FUMBLES (B.Maxwell) RECOVERED by SEA-B.Maxwell at ARZ 35. B.Maxwell to ARZ 24 for 11 yards (J.Dray).,31,0,2012 -20121209_ARI@SEA,2,30,19,SEA,ARI,1,10,24,(:19) (Shotgun) R.Wilson pass incomplete deep right to S.Rice (G.Toler).,31,0,2012 -20121209_ARI@SEA,2,30,11,SEA,ARI,2,10,24,(:11) (Shotgun) R.Wilson pass deep middle to Z.Miller for 24 yards TOUCHDOWN.,31,0,2012 -20121209_ARI@SEA,2,30,11,SEA,ARI,,,24,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,31,0,2012 -20121209_ARI@SEA,2,30,11,SEA,ARI,,,24,S.Hauschka kicks 67 yards from SEA 35 to ARZ -2. L.Stephens-Howling to ARZ 17 for 19 yards (H.Farwell).,38,0,2012 -20121209_ARI@SEA,3,30,0,ARI,SEA,,,24,J.Feely kicks 69 yards from ARZ 35 to SEA -4. L.Washington to SEA 14 for 18 yards (R.Walker).,0,38,2012 -20121209_ARI@SEA,3,29,54,SEA,ARI,1,10,86,(14:54) (Shotgun) R.Wilson pass short right to Z.Miller pushed ob at SEA 19 for 5 yards (Q.Groves).,38,0,2012 -20121209_ARI@SEA,3,29,24,SEA,ARI,2,5,81,(14:24) M.Lynch right tackle pushed ob at SEA 37 for 18 yards (P.Peterson).,38,0,2012 -20121209_ARI@SEA,3,28,56,SEA,ARI,1,10,63,(13:56) M.Lynch left tackle to SEA 45 for 8 yards (A.Wilson; K.Rhodes).,38,0,2012 -20121209_ARI@SEA,3,28,16,SEA,ARI,2,2,55,(13:16) R.Turbin left tackle to ARZ 39 for 16 yards (P.Lenon).,38,0,2012 -20121209_ARI@SEA,3,27,34,SEA,ARI,1,10,39,(12:34) R.Turbin right tackle to ARZ 34 for 5 yards (C.Campbell).,38,0,2012 -20121209_ARI@SEA,3,26,56,SEA,ARI,2,5,34,(11:56) (Shotgun) R.Turbin right tackle to ARZ 33 for 1 yard (P.Lenon).,38,0,2012 -20121209_ARI@SEA,3,26,17,SEA,ARI,3,4,33,(11:17) M.Lynch left tackle for 33 yards TOUCHDOWN.,38,0,2012 -20121209_ARI@SEA,3,26,17,SEA,ARI,,,33,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,38,0,2012 -20121209_ARI@SEA,3,26,17,SEA,ARI,,,33,S.Hauschka kicks 62 yards from SEA 35 to ARZ 3. L.Stephens-Howling to ARZ 20 for 17 yards (B.Maxwell). PENALTY on ARZ-R.Walker Offensive Holding 10 yards enforced at ARZ 20.,45,0,2012 -20121209_ARI@SEA,3,26,2,ARI,SEA,1,10,90,(11:02) C.Wells left tackle to ARZ 15 for 5 yards (E.Thomas).,0,45,2012 -20121209_ARI@SEA,3,25,28,ARI,SEA,2,5,85,(10:28) (Shotgun) J.Skelton pass short middle intended for A.Roberts INTERCEPTED by B.Wagner at ARZ 25. B.Wagner to ARZ 25 for no gain (W.Powell).,0,45,2012 -20121209_ARI@SEA,3,25,19,SEA,ARI,1,10,25,(10:19) SEA #15 Flynn in at QB. R.Turbin right tackle to ARZ 20 for 5 yards (C.Campbell).,45,0,2012 -20121209_ARI@SEA,3,24,44,SEA,ARI,2,5,20,(9:44) R.Turbin left tackle to ARZ 10 for 10 yards (Q.Groves).,45,0,2012 -20121209_ARI@SEA,3,24,1,SEA,ARI,1,10,10,(9:01) R.Turbin up the middle to ARZ 10 for no gain (S.Acho).,45,0,2012 -20121209_ARI@SEA,3,23,21,SEA,ARI,2,10,10,(8:21) (Shotgun) M.Flynn pass incomplete short middle to S.Rice (R.Walker).,45,0,2012 -20121209_ARI@SEA,3,23,15,SEA,ARI,3,10,10,(8:15) M.Flynn pass short left to G.Tate pushed ob at ARZ 10 for no gain (S.Acho).,45,0,2012 -20121209_ARI@SEA,3,22,47,SEA,ARI,4,10,10,(7:47) S.Hauschka 28 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,45,0,2012 -20121209_ARI@SEA,3,22,47,SEA,ARI,,,10,S.Hauschka kicks 64 yards from SEA 35 to ARZ 1. L.Stephens-Howling to ARZ 26 for 25 yards (M.Robinson).,48,0,2012 -20121209_ARI@SEA,3,22,35,ARI,SEA,1,10,74,(7:35) ARZ #14 Lindley in at QB. C.Wells right tackle to ARZ 28 for 2 yards (K.Wright; E.Thomas).,0,48,2012 -20121209_ARI@SEA,3,22,3,ARI,SEA,2,8,72,(7:03) R.Lindley left tackle to ARZ 26 for -2 yards (C.McDonald). Broken play.,0,48,2012 -20121209_ARI@SEA,3,21,29,ARI,SEA,3,10,74,(6:29) (Shotgun) R.Lindley pass short right to R.Housler to ARZ 38 for 12 yards (K.Wright; R.Sherman) [B.Irvin].,0,48,2012 -20121209_ARI@SEA,3,20,44,ARI,SEA,1,10,62,(5:44) R.Lindley pass incomplete short left to L.Fitzgerald.,0,48,2012 -20121209_ARI@SEA,3,20,39,ARI,SEA,2,10,62,(5:39) (Shotgun) W.Powell right tackle to ARZ 42 for 4 yards (B.Wagner; M.Smith).,0,48,2012 -20121209_ARI@SEA,3,20,0,ARI,SEA,3,6,58,(5:00) (Shotgun) R.Lindley sacked at ARZ 36 for -6 yards (J.Johnson). FUMBLES (J.Johnson) [J.Johnson] RECOVERED by SEA-R.Sherman at ARZ 40. R.Sherman to ARZ 40 for no gain (R.Ohrnberger).,0,48,2012 -20121209_ARI@SEA,3,19,49,SEA,ARI,1,10,40,(4:49) L.Washington right tackle to ARZ 31 for 9 yards (D.Carter; J.Sanders).,48,0,2012 -20121209_ARI@SEA,3,19,14,SEA,ARI,2,1,31,(4:14) L.Washington right tackle to ARZ 18 for 13 yards (K.Rhodes).,48,0,2012 -20121209_ARI@SEA,3,18,33,SEA,ARI,1,10,18,(3:33) L.Washington up the middle to ARZ 17 for 1 yard (C.Campbell).,48,0,2012 -20121209_ARI@SEA,3,17,57,SEA,ARI,2,9,17,(2:57) (Shotgun) R.Turbin right tackle to ARZ 14 for 3 yards (D.Carter C.Campbell).,48,0,2012 -20121209_ARI@SEA,3,17,15,SEA,ARI,3,6,14,(2:15) (Shotgun) M.Flynn pass incomplete short left to D.Baldwin.,48,0,2012 -20121209_ARI@SEA,3,17,10,SEA,ARI,4,6,14,(2:10) S.Hauschka 32 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,48,0,2012 -20121209_ARI@SEA,3,17,10,SEA,ARI,,,14,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. L.Stephens-Howling to ARZ 38 for 38 yards (J.Johnson).,51,0,2012 -20121209_ARI@SEA,3,16,57,ARI,SEA,1,10,62,(1:57) R.Lindley pass incomplete short left to L.Fitzgerald. Penalty on SEA-Unidentified Taunting offsetting. Penalty on ARZ-D.Colledge Unnecessary Roughness offsetting.,0,51,2012 -20121209_ARI@SEA,3,16,54,ARI,SEA,2,10,62,(1:54) (Shotgun) W.Powell up the middle to ARZ 39 for 1 yard (B.Irvin; B.Wagner).,0,51,2012 -20121209_ARI@SEA,3,16,15,ARI,SEA,3,9,61,(1:15) (Shotgun) R.Lindley pass short left to M.Floyd pushed ob at SEA 43 for 18 yards (B.Maxwell) [K.Wright].,0,51,2012 -20121209_ARI@SEA,3,15,45,ARI,SEA,1,10,43,(:45) C.Wells right end to SEA 41 for 2 yards (R.Sherman).,0,51,2012 -20121209_ARI@SEA,4,15,0,ARI,SEA,2,8,41,(15:00) C.Wells left tackle to SEA 39 for 2 yards (B.Wagner).,0,51,2012 -20121209_ARI@SEA,4,14,21,ARI,SEA,3,6,39,(14:21) (Shotgun) R.Lindley pass incomplete deep left to M.Floyd.,0,51,2012 -20121209_ARI@SEA,4,14,16,ARI,SEA,4,6,39,(14:16) D.Zastudil punts 30 yards to SEA 9 Center-M.Leach fair catch by L.Washington.,0,51,2012 -20121209_ARI@SEA,4,14,8,SEA,ARI,1,10,91,(14:08) L.Washington left end pushed ob at SEA 23 for 14 yards (P.Lenon).,51,0,2012 -20121209_ARI@SEA,4,13,38,SEA,ARI,1,10,77,(13:38) M.Flynn pass short right to A.McCoy to SEA 40 for 17 yards (D.Carter; D.Washington) [Q.Groves].,51,0,2012 -20121209_ARI@SEA,4,12,52,SEA,ARI,1,10,60,(12:52) L.Washington right tackle to SEA 39 for -1 yards (V.Holliday). PENALTY on SEA-J.Sweezy Unnecessary Roughness 15 yards enforced at SEA 39.,51,0,2012 -20121209_ARI@SEA,4,12,21,SEA,ARI,2,26,76,(12:21) (Shotgun) M.Flynn pass short left to G.Tate to SEA 30 for 6 yards (G.Toler).,51,0,2012 -20121209_ARI@SEA,4,11,35,SEA,ARI,3,20,70,(11:35) (Shotgun) M.Flynn pass deep middle to S.Rice to SEA 48 for 18 yards (R.Johnson). PENALTY on ARZ-R.Johnson Unnecessary Roughness 15 yards enforced at SEA 48.,51,0,2012 -20121209_ARI@SEA,4,11,7,SEA,ARI,1,10,37,(11:07) R.Turbin left tackle to ARZ 35 for 2 yards (D.Colledge).,51,0,2012 -20121209_ARI@SEA,4,10,6,SEA,ARI,2,8,35,(10:06) (Shotgun) M.Flynn pass incomplete short right to D.Baldwin.,51,0,2012 -20121209_ARI@SEA,4,10,0,SEA,ARI,3,8,35,(10:00) PENALTY on ARZ-D.Washington Unsportsmanlike Conduct 15 yards enforced at ARZ 35 - No Play.,51,0,2012 -20121209_ARI@SEA,4,10,0,SEA,ARI,1,10,20,(10:00) L.Washington right tackle to ARZ 21 for -1 yards (D.Carter P.Lenon).,51,0,2012 -20121209_ARI@SEA,4,9,23,SEA,ARI,2,11,21,(9:23) L.Washington left tackle to ARZ 11 for 10 yards (K.Rhodes). PENALTY on SEA-J.Moffitt Offensive Holding 10 yards enforced at ARZ 21 - No Play.,51,0,2012 -20121209_ARI@SEA,4,8,56,SEA,ARI,2,21,31,(8:56) M.Flynn pass incomplete deep right to E.Moore. PENALTY on SEA-E.Moore Offensive Pass Interference 10 yards enforced at ARZ 31 - No Play.,51,0,2012 -20121209_ARI@SEA,4,8,49,SEA,ARI,2,31,41,(8:49) (Shotgun) R.Turbin right guard to ARZ 38 for 3 yards (P.Lenon; A.Wilson).,51,0,2012 -20121209_ARI@SEA,4,8,7,SEA,ARI,3,28,38,(8:07) (Shotgun) R.Turbin right tackle to ARZ 33 for 5 yards (V.Holliday; D.Dockett).,51,0,2012 -20121209_ARI@SEA,4,7,21,SEA,ARI,4,23,33,(7:21) (Shotgun) M.Flynn pass incomplete deep left to J.Kearse [D.Dockett].,51,0,2012 -20121209_ARI@SEA,4,7,13,ARI,SEA,1,10,67,(7:13) (Shotgun) R.Lindley pass short left to L.Fitzgerald ran ob at ARZ 35 for 2 yards.,0,51,2012 -20121209_ARI@SEA,4,6,51,ARI,SEA,2,8,65,(6:51) C.Wells left guard to ARZ 49 for 14 yards (J.Johnson). PENALTY on ARZ-J.King Offensive Holding 10 yards enforced at ARZ 35 - No Play.,0,51,2012 -20121209_ARI@SEA,4,6,26,ARI,SEA,2,18,75,(6:26) R.Lindley pass incomplete short right to A.Sherman [G.Scruggs].,0,51,2012 -20121209_ARI@SEA,4,6,20,ARI,SEA,3,18,75,(6:20) (Shotgun) R.Lindley pass short left to W.Powell to ARZ 30 for 5 yards (H.Farwell).,0,51,2012 -20121209_ARI@SEA,4,5,43,ARI,SEA,4,13,70,(5:43) D.Zastudil punts 58 yards to SEA 12 Center-M.Leach. L.Washington to SEA 38 for 26 yards (S.Acho).,0,51,2012 -20121209_ARI@SEA,4,5,23,SEA,ARI,1,10,62,(5:23) R.Turbin right tackle to SEA 45 for 7 yards (D.Carter).,51,0,2012 -20121209_ARI@SEA,4,4,54,SEA,ARI,2,3,55,(4:54) PENALTY on SEA-E.Moore False Start 5 yards enforced at SEA 45 - No Play.,51,0,2012 -20121209_ARI@SEA,4,4,54,SEA,ARI,2,8,60,(4:54) R.Turbin up the middle to ARZ 34 for 26 yards (J.Bethel).,51,0,2012 -20121209_ARI@SEA,4,4,12,SEA,ARI,1,10,34,(4:12) R.Turbin left end to ARZ 33 for 1 yard (P.Lenon).,51,0,2012 -20121209_ARI@SEA,4,3,30,SEA,ARI,2,9,33,(3:30) R.Turbin left tackle to ARZ 30 for 3 yards (P.Lenon; C.Campbell).,51,0,2012 -20121209_ARI@SEA,4,2,46,SEA,ARI,3,6,30,(2:46) M.Flynn pass short left to D.Baldwin pushed ob at ARZ 3 for 27 yards (A.Wilson).,51,0,2012 -20121209_ARI@SEA,4,2,37,SEA,ARI,1,3,3,(2:37) L.Washington left tackle for 3 yards TOUCHDOWN.,51,0,2012 -20121209_ARI@SEA,4,2,37,SEA,ARI,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,51,0,2012 -20121209_ARI@SEA,4,2,37,SEA,ARI,,,3,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,58,0,2012 -20121209_ARI@SEA,4,2,32,ARI,SEA,1,10,80,(2:32) (Shotgun) R.Lindley pass incomplete short left to R.Housler (J.Jones).,0,58,2012 -20121209_ARI@SEA,4,2,27,ARI,SEA,2,10,80,(2:27) (Shotgun) R.Lindley pass short right to R.Housler to ARZ 19 for -1 yards (W.Thurmond).,0,58,2012 -20121209_ARI@SEA,4,2,0,ARI,SEA,3,11,81,(2:00) (Shotgun) R.Lindley pass short right to M.Floyd ran ob at ARZ 31 for 12 yards.,0,58,2012 -20121209_ARI@SEA,4,1,55,ARI,SEA,1,10,69,(1:55) (Shotgun) R.Lindley pass incomplete short left to L.Fitzgerald (B.Maxwell).,0,58,2012 -20121209_ARI@SEA,4,1,51,ARI,SEA,2,10,69,(1:51) (No Huddle Shotgun) R.Lindley pass short middle to W.Powell to ARZ 39 for 8 yards (M.Morgan; H.Farwell).,0,58,2012 -20121209_ARI@SEA,4,1,30,ARI,SEA,3,2,61,(1:30) (No Huddle Shotgun) R.Lindley pass short middle to R.Housler to ARZ 42 for 3 yards (W.Thurmond).,0,58,2012 -20121209_ARI@SEA,4,1,6,ARI,SEA,1,10,58,(1:06) (No Huddle Shotgun) R.Lindley pass incomplete deep left to L.Fitzgerald.,0,58,2012 -20121209_ARI@SEA,4,1,0,ARI,SEA,2,10,58,(1:00) (Shotgun) R.Lindley pass incomplete short right to M.Floyd (K.Chancellor).,0,58,2012 -20121209_ARI@SEA,4,0,56,ARI,SEA,3,10,58,(:56) (Shotgun) R.Lindley sacked at ARZ 31 for -11 yards (B.Irvin).,0,58,2012 -20121209_ARI@SEA,4,0,15,ARI,SEA,4,21,69,(:15) (Shotgun) R.Lindley pass incomplete short middle to W.Powell.,0,58,2012 -20121209_ARI@SEA,4,0,10,SEA,ARI,1,10,30,(:10) Ball spotted on the 30 for the start of the drive. M.Flynn kneels to ARZ 32 for -2 yards.,58,0,2012 -20121209_ARI@SEA,4,0,10,SEA,ARI,,,30,                      ,58,0,2012 -20121209_DET@GB,1,0,0,GB,DET,,,30,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,0,0,2012 -20121209_DET@GB,1,60,0,DET,GB,1,10,80,(15:00) (Shotgun) M.Leshoure right tackle to DET 24 for 4 yards (B.Jones).,0,0,2012 -20121209_DET@GB,1,59,24,DET,GB,2,6,76,(14:24) (Shotgun) R.Reiff reported in as eligible. M.Leshoure right guard to DET 26 for 2 yards (B.Raji).,0,0,2012 -20121209_DET@GB,1,58,42,DET,GB,3,4,74,(13:42) (Shotgun) M.Stafford pass short left to C.Johnson to DET 35 for 9 yards (M.Burnett).,0,0,2012 -20121209_DET@GB,1,58,5,DET,GB,1,10,65,(13:05) (Shotgun) M.Stafford pass short left to K.Durham to DET 39 for 4 yards (D.House).,0,0,2012 -20121209_DET@GB,1,57,25,DET,GB,2,6,61,(12:25) R.Reiff reported in as eligible. M.Leshoure right end to DET 48 for 9 yards (M.Burnett).,0,0,2012 -20121209_DET@GB,1,56,47,DET,GB,1,10,52,(11:47) (Shotgun) M.Leshoure up the middle to DET 49 for 1 yard (R.Pickett).,0,0,2012 -20121209_DET@GB,1,56,10,DET,GB,2,9,51,(11:10) (Shotgun) M.Stafford pass short middle to M.Leshoure to GB 44 for 7 yards (A.Hawk). PENALTY on GB-D.Moses Defensive Offside 5 yards enforced at DET 49 - No Play.,0,0,2012 -20121209_DET@GB,1,55,40,DET,GB,2,4,46,(10:40) R.Reiff reported in as eligible. J.Bell left tackle to GB 35 for 11 yards (D.House; B.Jones).,0,0,2012 -20121209_DET@GB,1,54,33,DET,GB,1,10,35,(9:33) M.Thomas left end to GB 13 for 22 yards (M.Jennings).,0,0,2012 -20121209_DET@GB,1,53,46,DET,GB,1,10,13,(8:46) (Shotgun) M.Leshoure left tackle to GB 8 for 5 yards (F.Zombo).,0,0,2012 -20121209_DET@GB,1,53,5,DET,GB,2,5,8,(8:05) (Shotgun) M.Stafford pass short left to S.Logan pushed ob at GB 4 for 4 yards (A.Hawk).,0,0,2012 -20121209_DET@GB,1,52,44,DET,GB,3,1,4,(7:44) M.Leshoure up the middle to GB 4 for no gain (E.Walden; R.Pickett).,0,0,2012 -20121209_DET@GB,1,52,19,DET,GB,4,1,4,(7:19) M.Stafford left end for 4 yards TOUCHDOWN.,0,0,2012 -20121209_DET@GB,1,52,19,DET,GB,,,4,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121209_DET@GB,1,52,19,DET,GB,,,4,J.Hanson kicks 44 yards from DET 35 to GB 21. D.Williams to GB 33 for 12 yards (T.Whitehead).,7,0,2012 -20121209_DET@GB,1,52,11,GB,DET,1,10,67,(7:11) D.Harris right end to GB 44 for 11 yards (R.Silva).,0,7,2012 -20121209_DET@GB,1,51,33,GB,DET,1,10,56,(6:33) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to GB 49 for 5 yards (D.Levy D.Carey).,0,7,2012 -20121209_DET@GB,1,50,57,GB,DET,2,5,51,(5:57) (No Huddle) A.Green up the middle to DET 48 for 3 yards (S.Tulloch; D.Levy).,0,7,2012 -20121209_DET@GB,1,50,18,GB,DET,3,2,48,(5:18) (No Huddle Shotgun) A.Rodgers left end to DET 42 for 6 yards (N.Fairley).,0,7,2012 -20121209_DET@GB,1,49,45,GB,DET,1,10,42,(4:45) (No Huddle) A.Green left guard to DET 33 for 9 yards (J.Lacey; S.Tulloch).,0,7,2012 -20121209_DET@GB,1,49,13,GB,DET,2,1,33,(4:13) (No Huddle) A.Rodgers pass deep left to R.Cobb pushed ob at DET 12 for 21 yards (R.Silva).,0,7,2012 -20121209_DET@GB,1,48,47,GB,DET,1,10,12,(3:47) (Shotgun) A.Rodgers pass incomplete short right to J.Finley.,0,7,2012 -20121209_DET@GB,1,48,42,GB,DET,2,10,12,(3:42) A.Rodgers sacked at DET 18 for -6 yards (L.Jackson). FUMBLES (L.Jackson) [L.Jackson] RECOVERED by DET-S.Tulloch at DET 21. S.Tulloch to DET 21 for no gain (M.Newhouse).,0,7,2012 -20121209_DET@GB,1,48,35,DET,GB,1,10,79,(3:35) R.Reiff reported in as eligible. J.Bell left tackle to DET 22 for 1 yard (D.Moses; M.Burnett).,7,0,2012 -20121209_DET@GB,1,47,52,DET,GB,2,9,78,(2:52) (Shotgun) M.Stafford pass short left to T.Scheffler pushed ob at DET 35 for 13 yards (M.Jennings).,7,0,2012 -20121209_DET@GB,1,47,23,DET,GB,1,10,65,(2:23) J.Bell left guard to DET 38 for 3 yards (E.Walden).,7,0,2012 -20121209_DET@GB,1,46,45,DET,GB,2,7,62,(1:45) (Shotgun) J.Bell left end pushed ob at GB 49 for 13 yards (A.Hawk).,7,0,2012 -20121209_DET@GB,1,46,21,DET,GB,1,10,49,(1:21) M.Stafford pass incomplete deep right to C.Johnson. PENALTY on GB-B.Raji Neutral Zone Infraction 5 yards enforced at GB 49 - No Play.,7,0,2012 -20121209_DET@GB,1,46,16,DET,GB,1,5,44,(1:16) M.Stafford pass incomplete deep right to C.Johnson.,7,0,2012 -20121209_DET@GB,1,46,10,DET,GB,2,5,44,(1:10) (Shotgun) S.Logan up the middle to GB 41 for 3 yards (R.Pickett E.Walden).,7,0,2012 -20121209_DET@GB,1,45,32,DET,GB,3,2,41,(:32) (Shotgun) M.Stafford pass short left to T.Scheffler to GB 37 for 4 yards (C.Hayward).,7,0,2012 -20121209_DET@GB,2,45,0,DET,GB,1,10,37,(15:00) (Shotgun) J.Bell right tackle to GB 33 for 4 yards (D.Moses).,7,0,2012 -20121209_DET@GB,2,44,14,DET,GB,2,6,33,(14:14) (Shotgun) M.Stafford pass deep right to K.Durham to GB 6 for 27 yards (M.Burnett).,7,0,2012 -20121209_DET@GB,2,43,28,DET,GB,1,6,6,(13:28) (Shotgun) J.Bell up the middle to GB 3 for 3 yards (B.Jones A.Hawk).,7,0,2012 -20121209_DET@GB,2,42,47,DET,GB,2,3,3,(12:47) (Shotgun) M.Stafford pass short right to T.Scheffler for 3 yards TOUCHDOWN. PENALTY on DET Unsportsmanlike Conduct 15 yards enforced between downs. Excessive demonstration by DET #85 (Scheffler) and DET #35 (Bell),7,0,2012 -20121209_DET@GB,2,42,47,DET,GB,,,3,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,7,0,2012 -20121209_DET@GB,2,42,47,DET,GB,,,3,J.Hanson kicks 71 yards from DET 20 to GB 9. R.Cobb to GB 38 for 29 yards (J.Wendling; D.Carey).,14,0,2012 -20121209_DET@GB,2,42,41,GB,DET,1,10,62,(12:41) (Shotgun) A.Rodgers pass deep right to G.Jennings to DET 35 for 27 yards (D.Carey).,0,14,2012 -20121209_DET@GB,2,42,10,GB,DET,1,10,35,(12:10) (No Huddle) A.Green right end to DET 33 for 2 yards (C.Houston). PENALTY on GB-J.Sitton Offensive Holding 10 yards enforced at DET 33.,0,14,2012 -20121209_DET@GB,2,42,10,GB,DET,1,18,43,(12:10) A.Rodgers pass incomplete short right to Ja.Jones.,0,14,2012 -20121209_DET@GB,2,41,44,GB,DET,2,18,43,(11:44) (Shotgun) A.Green right end to DET 31 for 12 yards (D.Carey).,0,14,2012 -20121209_DET@GB,2,41,2,GB,DET,3,6,31,(11:02) (Shotgun) A.Rodgers pass incomplete short right to J.Kuhn [C.Avril].,0,14,2012 -20121209_DET@GB,2,40,56,GB,DET,4,6,31,(10:56) M.Crosby 49 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,14,2012 -20121209_DET@GB,2,40,56,GB,DET,,,31,M.Crosby kicks 58 yards from GB 35 to DET 7. S.Logan to DET 27 for 20 yards (S.Shields).,3,14,2012 -20121209_DET@GB,2,40,43,DET,GB,1,10,73,(10:43) (Shotgun) M.Stafford pass short middle to W.Heller to DET 32 for 5 yards (A.Hawk).,14,3,2012 -20121209_DET@GB,2,40,7,DET,GB,2,5,68,(10:07) (Shotgun) R.Reiff reported in as eligible. M.Leshoure right guard to DET 36 for 4 yards (B.Jones; A.Hawk).,14,3,2012 -20121209_DET@GB,2,39,27,DET,GB,3,1,64,(9:27) (Shotgun) M.Stafford pass short right to W.Heller to DET 39 for 3 yards (J.McMillian).,14,3,2012 -20121209_DET@GB,2,38,46,DET,GB,1,10,61,(8:46) (Shotgun) M.Stafford up the middle to DET 45 for 6 yards (E.Walden).,14,3,2012 -20121209_DET@GB,2,37,54,DET,GB,2,4,55,(7:54) (Shotgun) M.Leshoure up the middle to DET 48 for 3 yards (F.Zombo D.Moses).,14,3,2012 -20121209_DET@GB,2,37,9,DET,GB,3,1,52,(7:09) (Shotgun) M.Stafford pass short left to K.Durham to GB 42 for 10 yards (S.Shields).,14,3,2012 -20121209_DET@GB,2,36,26,DET,GB,1,10,42,(6:26) (Shotgun) M.Stafford sacked at DET 49 for -9 yards. FUMBLES touched at DET 45 RECOVERED by GB-M.Daniels at DET 43. M.Daniels for 43 yards TOUCHDOWN.,14,3,2012 -20121209_DET@GB,2,36,26,GB,DET,,,42,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,3,14,2012 -20121209_DET@GB,2,36,26,GB,DET,,,42,M.Crosby kicks 72 yards from GB 35 to DET -7. S.Logan Touchback.,10,14,2012 -20121209_DET@GB,2,36,15,DET,GB,1,10,80,(6:15) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 34 for 14 yards (A.Hawk).,14,10,2012 -20121209_DET@GB,2,35,39,DET,GB,1,10,66,(5:39) M.Leshoure right end to DET 38 for 4 yards (A.Hawk; F.Zombo).,14,10,2012 -20121209_DET@GB,2,35,1,DET,GB,2,6,62,(5:01) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson (T.Williams).,14,10,2012 -20121209_DET@GB,2,34,54,DET,GB,3,6,62,(4:54) (Shotgun) M.Stafford pass short middle to J.Bell to DET 48 for 10 yards (M.Burnett).,14,10,2012 -20121209_DET@GB,2,34,14,DET,GB,1,10,52,(4:14) (Shotgun) M.Leshoure right tackle to GB 49 for 3 yards (M.Daniels).,14,10,2012 -20121209_DET@GB,2,33,31,DET,GB,2,7,49,(3:31) (Shotgun) M.Leshoure left end to GB 41 for 8 yards (M.Burnett).,14,10,2012 -20121209_DET@GB,2,32,53,DET,GB,1,10,41,(2:53) (Shotgun) M.Stafford pass deep middle intended for K.Durham INTERCEPTED by S.Shields at GB 13. S.Shields to GB 45 for 32 yards (W.Heller).,14,10,2012 -20121209_DET@GB,2,32,42,GB,DET,1,10,55,(2:42) (Shotgun) D.Harris right guard to GB 44 for -1 yards (N.Fairley).,10,14,2012 -20121209_DET@GB,2,32,0,GB,DET,2,11,56,(2:00) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 45 for 1 yard (L.Jackson; J.Lacey).,10,14,2012 -20121209_DET@GB,2,32,0,GB,DET,3,10,55,(2:00) (Shotgun) PENALTY on GB-J.Sitton False Start 5 yards enforced at GB 45 - No Play.,10,14,2012 -20121209_DET@GB,2,31,18,GB,DET,3,15,60,(1:18) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 47 for 7 yards (D.Carey).,10,14,2012 -20121209_DET@GB,2,31,8,GB,DET,4,8,53,(1:08) T.Masthay punts 53 yards to end zone Center-B.Goode Touchback. PENALTY on DET-P.Lee Offensive Holding 10 yards enforced at DET 20.,10,14,2012 -20121209_DET@GB,2,30,59,DET,GB,1,10,90,(:59) (Shotgun) J.Bell right end to DET 13 for 3 yards (B.Raji).,14,10,2012 -20121209_DET@GB,2,30,54,DET,GB,2,7,87,(:54) R.Reiff reported in as eligible. J.Bell left end to DET 15 for 2 yards (B.Jones).,14,10,2012 -20121209_DET@GB,2,30,47,DET,GB,3,5,85,(:47) (Shotgun) M.Stafford pass short right to C.Johnson to DET 23 for 8 yards (T.Williams).,14,10,2012 -20121209_DET@GB,2,30,4,DET,GB,1,10,77,(:04) M.Stafford kneels to DET 22 for -1 yards.,14,10,2012 -20121209_DET@GB,3,30,0,DET,GB,,,77,J.Hanson kicks 64 yards from DET 35 to GB 1. R.Cobb pushed ob at GB 26 for 25 yards (R.Silva).,14,10,2012 -20121209_DET@GB,3,29,54,GB,DET,1,10,74,(14:54) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at GB 37 for 11 yards (J.Green).,10,14,2012 -20121209_DET@GB,3,29,40,GB,DET,1,10,63,(14:40) (No Huddle Shotgun) A.Rodgers pass short middle to A.Green to GB 36 for -1 yards (N.Fairley). FUMBLES (N.Fairley) recovered by GB-M.Daniels at GB 34. M.Daniels to GB 34 for no gain (C.Avril).,10,14,2012 -20121209_DET@GB,3,29,4,GB,DET,2,13,66,(14:04) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to GB 41 for 7 yards (J.Durant).,10,14,2012 -20121209_DET@GB,3,28,35,GB,DET,3,6,59,(13:35) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to R.Cobb (D.Carey) [N.Suh]. Penalty on DET-N.Fairley Defensive Offside declined. PENALTY on DET-N.Suh Roughing the Passer 15 yards enforced at GB 41 - No Play.,10,14,2012 -20121209_DET@GB,3,28,28,GB,DET,1,10,44,(13:28) A.Rodgers pass short right to J.Finley to DET 35 for 9 yards (J.Durant).,10,14,2012 -20121209_DET@GB,3,27,56,GB,DET,2,1,35,(12:56) (No Huddle) A.Green right end to DET 33 for 2 yards (S.Tulloch).,10,14,2012 -20121209_DET@GB,3,27,23,GB,DET,1,10,33,(12:23) (No Huddle) A.Rodgers pass short left to R.Cobb ran ob at DET 27 for 6 yards (J.Lacey).,10,14,2012 -20121209_DET@GB,3,27,9,GB,DET,2,4,27,(12:09) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones.,10,14,2012 -20121209_DET@GB,3,27,4,GB,DET,3,4,27,(12:04) (No Huddle Shotgun) A.Rodgers scrambles right end for 27 yards TOUCHDOWN.,10,14,2012 -20121209_DET@GB,3,27,4,GB,DET,,,27,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,10,14,2012 -20121209_DET@GB,3,27,4,GB,DET,,,27,M.Crosby kicks 65 yards from GB 35 to DET 0. S.Logan to DET 27 for 27 yards (D.House).,17,14,2012 -20121209_DET@GB,3,26,48,DET,GB,1,10,73,(11:48) R.Reiff reported in as eligible. M.Thomas right end to DET 30 for 3 yards (S.Shields; E.Walden).,14,17,2012 -20121209_DET@GB,3,26,6,DET,GB,2,7,70,(11:06) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,14,17,2012 -20121209_DET@GB,3,26,0,DET,GB,3,7,70,(11:00) (Shotgun) M.Stafford pass deep middle to C.Johnson to DET 49 for 19 yards (M.Burnett). PENALTY on GB-M.Burnett Unnecessary Roughness 15 yards enforced at DET 49.,14,17,2012 -20121209_DET@GB,3,25,32,DET,GB,1,10,36,(10:32) M.Leshoure left guard to GB 34 for 2 yards (M.Burnett R.Pickett).,14,17,2012 -20121209_DET@GB,3,24,49,DET,GB,2,8,34,(9:49) (Shotgun) M.Stafford pass short middle to C.Johnson to GB 28 for 6 yards (C.Hayward).,14,17,2012 -20121209_DET@GB,3,24,5,DET,GB,3,2,28,(9:05) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,14,17,2012 -20121209_DET@GB,3,24,2,DET,GB,4,2,28,(9:02) J.Hanson 46 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,14,17,2012 -20121209_DET@GB,3,24,2,DET,GB,,,28,J.Hanson kicks 63 yards from DET 35 to GB 2. R.Cobb to GB 24 for 22 yards (P.Lee; T.Whitehead).,17,17,2012 -20121209_DET@GB,3,23,51,GB,DET,1,10,76,(8:51) A.Green left tackle to GB 25 for 1 yard (N.Suh; S.Tulloch).,17,17,2012 -20121209_DET@GB,3,23,19,GB,DET,2,9,75,(8:19) (No Huddle) A.Rodgers pass incomplete deep right to Ja.Jones.,17,17,2012 -20121209_DET@GB,3,23,12,GB,DET,3,9,75,(8:12) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 41 for 16 yards (J.Lacey S.Tulloch).,17,17,2012 -20121209_DET@GB,3,22,26,GB,DET,1,10,59,(7:26) (No Huddle) A.Green right end to DET 48 for 11 yards (R.Silva).,17,17,2012 -20121209_DET@GB,3,21,47,GB,DET,1,10,48,(6:47) (No Huddle) A.Rodgers pass short right to J.Boykin to DET 44 for 4 yards (D.Levy).,17,17,2012 -20121209_DET@GB,3,21,15,GB,DET,2,6,44,(6:15) (No Huddle Shotgun) A.Green up the middle to DET 44 for no gain (S.Tulloch).,17,17,2012 -20121209_DET@GB,3,20,36,GB,DET,3,6,44,(5:36) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings.,17,17,2012 -20121209_DET@GB,3,20,32,GB,DET,4,6,44,(5:32) T.Masthay punts 34 yards to DET 10 Center-B.Goode fair catch by S.Logan.,17,17,2012 -20121209_DET@GB,3,20,25,DET,GB,1,10,90,(5:25) (Shotgun) J.Bell left tackle to DET 11 for 1 yard (B.Raji).,17,17,2012 -20121209_DET@GB,3,19,42,DET,GB,2,9,89,(4:42) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler.,17,17,2012 -20121209_DET@GB,3,19,38,DET,GB,3,9,89,(4:38) (Shotgun) M.Stafford pass incomplete deep right to K.Durham.,17,17,2012 -20121209_DET@GB,3,19,33,DET,GB,4,9,89,(4:33) N.Harris punts 39 yards to 50 Center-D.Muhlbach fair catch by R.Cobb.,17,17,2012 -20121209_DET@GB,3,19,26,GB,DET,1,10,50,(4:26) (Shotgun) A.Rodgers pass deep right to R.Cobb pushed ob at DET 26 for 24 yards (R.Silva).,17,17,2012 -20121209_DET@GB,3,19,19,GB,DET,1,10,26,(4:19) (No Huddle) A.Rodgers pass incomplete short right to T.Crabtree.,17,17,2012 -20121209_DET@GB,3,19,13,GB,DET,2,10,26,(4:13) (No Huddle Shotgun) A.Rodgers pass incomplete short right to A.Green.,17,17,2012 -20121209_DET@GB,3,19,9,GB,DET,3,10,26,(4:09) (Shotgun) A.Rodgers sacked at DET 33 for -7 yards (N.Fairley).,17,17,2012 -20121209_DET@GB,3,18,30,GB,DET,4,17,33,(3:30) M.Crosby 51 yard field goal is No Good Wide Left Center-B.Goode Holder-T.Masthay. Yard marker changed due to change of possession.,17,17,2012 -20121209_DET@GB,3,18,24,DET,GB,1,10,58,(3:24) M.Leshoure right tackle to DET 45 for 3 yards (B.Raji).,17,17,2012 -20121209_DET@GB,3,17,44,DET,GB,2,7,55,(2:44) (Shotgun) M.Leshoure left guard to GB 49 for 6 yards (F.Zombo B.Jones). PENALTY on DET-R.Sims Offensive Holding 10 yards enforced at DET 45 - No Play.,17,17,2012 -20121209_DET@GB,3,17,20,DET,GB,2,17,65,(2:20) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 46 for 11 yards (M.Jennings; B.Jones).,17,17,2012 -20121209_DET@GB,3,16,34,DET,GB,3,6,54,(1:34) (Shotgun) M.Stafford pass short left to J.Bell to GB 39 for 15 yards (C.Hayward).,17,17,2012 -20121209_DET@GB,3,15,51,DET,GB,1,10,39,(:51) (Shotgun) M.Stafford pass short middle to C.Johnson to GB 34 for 5 yards (M.Burnett).,17,17,2012 -20121209_DET@GB,3,15,10,DET,GB,2,5,34,(:10) (Shotgun) M.Leshoure right end to GB 33 for 1 yard (R.Pickett).,17,17,2012 -20121209_DET@GB,4,15,0,DET,GB,3,4,33,(15:00) (Shotgun) M.Stafford pass incomplete deep right to K.Durham.,17,17,2012 -20121209_DET@GB,4,14,54,DET,GB,4,4,33,(14:54) J.Hanson 51 yard field goal is No Good Short Center-D.Muhlbach Holder-N.Harris. Yard marker changed due to change of possession.,17,17,2012 -20121209_DET@GB,4,14,49,GB,DET,1,10,59,(14:49) A.Green left end to GB 47 for 6 yards (S.Tulloch; D.Levy).,17,17,2012 -20121209_DET@GB,4,14,13,GB,DET,2,4,53,(14:13) G.Van Roten reported in as eligible. A.Green right end ran ob at GB 49 for 2 yards (J.Durant).,17,17,2012 -20121209_DET@GB,4,13,37,GB,DET,3,2,51,(13:37) (Shotgun) A.Green right guard to DET 41 for 10 yards (R.Silva; K.Vanden Bosch).,17,17,2012 -20121209_DET@GB,4,12,58,GB,DET,1,10,41,(12:58) G.Van Roten reported in as eligible. A.Green right end to DET 32 for 9 yards (S.Tulloch R.Silva).,17,17,2012 -20121209_DET@GB,4,12,14,GB,DET,2,1,32,(12:14) R.Grant left tackle to DET 19 for 13 yards (D.Carey R.Silva).,17,17,2012 -20121209_DET@GB,4,11,33,GB,DET,1,10,19,(11:33) D.Harris right tackle to DET 14 for 5 yards (R.Silva).,17,17,2012 -20121209_DET@GB,4,10,49,GB,DET,2,5,14,(10:49) D.Harris right guard for 14 yards TOUCHDOWN.,17,17,2012 -20121209_DET@GB,4,10,49,GB,DET,,,14,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,17,17,2012 -20121209_DET@GB,4,10,49,GB,DET,,,14,M.Crosby kicks 62 yards from GB 35 to DET 3. S.Logan to DET 27 for 24 yards (R.Taylor J.Lattimore).,24,17,2012 -20121209_DET@GB,4,10,40,DET,GB,1,10,73,(10:40) M.Stafford pass short middle to W.Heller to DET 35 for 8 yards (A.Hawk). PENALTY on GB-B.Raji Illegal Use of Hands 5 yards enforced at DET 27 - No Play.,17,24,2012 -20121209_DET@GB,4,10,9,DET,GB,1,10,68,(10:09) (Shotgun) M.Stafford pass short left to W.Heller pushed ob at DET 37 for 5 yards (B.Jones).,17,24,2012 -20121209_DET@GB,4,9,38,DET,GB,2,5,63,(9:38) (Shotgun) R.Reiff reported in as eligible. J.Bell left end to DET 41 for 4 yards (B.Jones).,17,24,2012 -20121209_DET@GB,4,8,57,DET,GB,3,1,59,(8:57) (Shotgun) J.Bell up the middle to DET 43 for 2 yards (R.Pickett; B.Jones).,17,24,2012 -20121209_DET@GB,4,8,14,DET,GB,1,10,57,(8:14) (Shotgun) M.Stafford pass incomplete short right to K.Durham.,17,24,2012 -20121209_DET@GB,4,8,9,DET,GB,2,10,57,(8:09) (Shotgun) J.Bell right guard to DET 45 for 2 yards (E.Walden; A.Hawk).,17,24,2012 -20121209_DET@GB,4,7,26,DET,GB,3,8,55,(7:26) (Shotgun) M.Stafford pass incomplete deep middle to T.Scheffler [D.Moses].,17,24,2012 -20121209_DET@GB,4,7,20,DET,GB,4,8,55,(7:20) N.Harris punts 31 yards to GB 24 Center-D.Muhlbach. R.Cobb ran ob at GB 37 for 13 yards (N.Harris).,17,24,2012 -20121209_DET@GB,4,7,11,GB,DET,1,10,63,(7:11) G.Van Roten reported in as eligible. A.Rodgers pass incomplete deep middle to G.Jennings.,24,17,2012 -20121209_DET@GB,4,7,4,GB,DET,2,10,63,(7:04) D.Harris right end to GB 36 for -1 yards (S.Tulloch; J.Durant). DET-J.Lacey was injured during the play.,24,17,2012 -20121209_DET@GB,4,6,24,GB,DET,3,11,64,(6:24) (Shotgun) A.Rodgers pass deep right to R.Cobb to DET 26 for 38 yards (P.Lee).,24,17,2012 -20121209_DET@GB,4,5,37,GB,DET,1,10,26,(5:37) D.Harris left tackle to DET 25 for 1 yard (R.Silva S.Tulloch).,24,17,2012 -20121209_DET@GB,4,4,56,GB,DET,2,9,25,(4:56) D.Harris left end to DET 23 for 2 yards (L.Jackson; D.Levy).,24,17,2012 -20121209_DET@GB,4,4,56,GB,DET,3,7,23,(4:56) (Shotgun) A.Rodgers pass incomplete deep right to G.Jennings [N.Fairley].,24,17,2012 -20121209_DET@GB,4,4,6,GB,DET,4,7,23,(4:06) M.Crosby 41 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,24,17,2012 -20121209_DET@GB,4,4,6,GB,DET,,,23,M.Crosby kicks 45 yards from GB 35 to DET 20. R.Reiff to DET 30 for 10 yards (R.Taylor).,27,17,2012 -20121209_DET@GB,4,3,58,DET,GB,1,10,70,(3:58) (Shotgun) M.Stafford pass incomplete deep left to K.Durham (S.Shields).,17,27,2012 -20121209_DET@GB,4,3,53,DET,GB,2,10,70,(3:53) (Shotgun) M.Stafford pass incomplete short right to J.Bell (M.Daniels).,17,27,2012 -20121209_DET@GB,4,3,48,DET,GB,3,10,70,(3:48) (Shotgun) M.Stafford pass short right to C.Johnson pushed ob at DET 43 for 13 yards (M.Burnett).,17,27,2012 -20121209_DET@GB,4,3,41,DET,GB,1,10,57,(3:41) (Shotgun) PENALTY on DET-G.Cherilus False Start 5 yards enforced at DET 43 - No Play.,17,27,2012 -20121209_DET@GB,4,3,41,DET,GB,1,15,62,(3:41) (Shotgun) M.Stafford pass short left to J.Bell to DET 43 for 5 yards (C.Hayward).,17,27,2012 -20121209_DET@GB,4,3,14,DET,GB,2,10,57,(3:14) (No Huddle Shotgun) M.Stafford pass short left to C.Johnson to GB 44 for 13 yards (B.Jones).,17,27,2012 -20121209_DET@GB,4,2,46,DET,GB,1,10,44,(2:46) (No Huddle Shotgun) M.Stafford pass incomplete short middle to J.Bell.,17,27,2012 -20121209_DET@GB,4,2,41,DET,GB,2,10,44,(2:41) (Shotgun) M.Stafford pass incomplete short right to T.Scheffler (C.Hayward).,17,27,2012 -20121209_DET@GB,4,2,36,DET,GB,3,10,44,(2:36) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (C.Hayward) [J.Worthy].,17,27,2012 -20121209_DET@GB,4,2,32,DET,GB,4,10,44,(2:32) (Shotgun) M.Stafford pass deep middle intended for T.Scheffler INTERCEPTED by J.McMillian at GB 18. J.McMillian to GB 18 for no gain (T.Scheffler). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) M.Stafford pass incomplete deep middle to T.Scheffler.,17,27,2012 -20121209_DET@GB,4,2,26,GB,DET,1,10,56,(2:26) A.Green right guard to GB 46 for 2 yards (A.Palmer).,27,17,2012 -20121209_DET@GB,4,2,22,GB,DET,2,8,54,(2:22) J.Kuhn left tackle to GB 41 for -5 yards (A.Palmer).,27,17,2012 -20121209_DET@GB,4,2,18,GB,DET,3,13,59,(2:18) A.Rodgers sacked at GB 32 for -9 yards (C.Avril).,27,17,2012 -20121209_DET@GB,4,2,10,GB,DET,4,22,68,(2:10) T.Masthay punts 46 yards to DET 22 Center-B.Goode downed by GB-J.Lattimore.,27,17,2012 -20121209_DET@GB,4,1,59,DET,GB,1,10,78,(1:59) (Shotgun) M.Stafford pass short right to K.Durham to DET 35 for 13 yards (S.Shields).,17,27,2012 -20121209_DET@GB,4,1,36,DET,GB,1,10,65,(1:36) (No Huddle Shotgun) M.Stafford pass short middle to W.Heller to DET 43 for 8 yards (M.Jennings).,17,27,2012 -20121209_DET@GB,4,1,13,DET,GB,2,2,57,(1:13) (No Huddle Shotgun) M.Stafford pass incomplete deep left to C.Johnson. PENALTY on GB-T.Williams Illegal Contact 5 yards enforced at DET 43 - No Play.,17,27,2012 -20121209_DET@GB,4,1,6,DET,GB,1,10,52,(1:06) (Shotgun) M.Stafford pass short middle to J.Bell to GB 43 for 9 yards (B.Jones M.Burnett).,17,27,2012 -20121209_DET@GB,4,0,44,DET,GB,2,1,43,(:44) (No Huddle Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (T.Williams).,17,27,2012 -20121209_DET@GB,4,0,35,DET,GB,3,1,43,(:35) (Shotgun) M.Stafford pass short middle to J.Bell to GB 35 for 8 yards (B.Jones).,17,27,2012 -20121209_DET@GB,4,0,18,DET,GB,1,10,35,(:18) M.Stafford spiked the ball to stop the clock.,17,27,2012 -20121209_DET@GB,4,0,17,DET,GB,2,10,35,(:17) (Shotgun) M.Stafford pass deep left to C.Johnson ran ob at GB 15 for 20 yards (D.House).,17,27,2012 -20121209_DET@GB,4,0,12,DET,GB,1,10,15,(:12) J.Hanson 34 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,17,27,2012 -20121209_DET@GB,4,0,12,DET,GB,,,15,(Onside Kick formation) J.Hanson kicks 34 yards from DET 35 to GB 31 out of bounds.,20,27,2012 -20121209_DET@GB,4,0,7,GB,DET,1,10,60,(:07) A.Rodgers kneels to GB 39 for -1 yards.,27,20,2012 -20121209_DET@GB,4,0,7,GB,DET,,,60,                      ,27,20,2012 -20121210_HOU@NE,1,0,0,NE,HOU,,,60,S.Gostkowski kicks 73 yards from NE 35 to HST -8. K.Martin Touchback.,0,0,2012 -20121210_HOU@NE,1,60,0,HOU,NE,1,10,80,(15:00) A.Foster right tackle to HST 32 for 12 yards (R.Ninkovich). PENALTY on HST-K.Walter Illegal Formation 5 yards enforced at HST 20 - No Play.,0,0,2012 -20121210_HOU@NE,1,59,36,HOU,NE,1,15,85,(14:36) A.Foster left end pushed ob at HST 30 for 15 yards (D.McCourty).,0,0,2012 -20121210_HOU@NE,1,59,14,HOU,NE,1,10,70,(14:14) A.Foster up the middle to HST 29 for -1 yards (V.Wilfork).,0,0,2012 -20121210_HOU@NE,1,58,41,HOU,NE,2,11,71,(13:41) (Shotgun) A.Foster up the middle to HST 34 for 5 yards (T.Scott; B.Deaderick).,0,0,2012 -20121210_HOU@NE,1,57,59,HOU,NE,3,6,66,(12:59) (Shotgun) M.Schaub pass incomplete deep right to L.Jean.,0,0,2012 -20121210_HOU@NE,1,57,53,HOU,NE,4,6,66,(12:53) D.Jones punts 53 yards to NE 13 Center-J.Weeks. W.Welker to NE 44 for 31 yards (D.Jones; D.Posey).,0,0,2012 -20121210_HOU@NE,1,57,39,NE,HOU,1,10,56,(12:39) S.Ridley left guard to NE 48 for 4 yards (S.Cody; B.James).,0,0,2012 -20121210_HOU@NE,1,57,10,NE,HOU,2,6,52,(12:10) S.Ridley right guard to HST 38 for 14 yards (G.Quin).,0,0,2012 -20121210_HOU@NE,1,56,41,NE,HOU,1,10,38,(11:41) S.Ridley up the middle to HST 34 for 4 yards (J.Watt).,0,0,2012 -20121210_HOU@NE,1,56,9,NE,HOU,2,6,34,(11:09) (No Huddle Shotgun) T.Brady pass incomplete deep middle to A.Hernandez.,0,0,2012 -20121210_HOU@NE,1,56,5,NE,HOU,3,6,34,(11:05) (Shotgun) T.Brady pass incomplete deep left to M.Slater. PENALTY on HST-B.Harris Defensive Holding 5 yards enforced at HST 34 - No Play.,0,0,2012 -20121210_HOU@NE,1,56,0,NE,HOU,1,10,29,(11:00) T.Brady pass deep left to W.Welker dead ball declared at HST 4 for 25 yards. NE 83-Welker 107th consecutive game with a reception.,0,0,2012 -20121210_HOU@NE,1,55,20,NE,HOU,1,4,4,(10:20) S.Ridley up the middle to HST 4 for no gain (E.Mitchell; D.Manning). FUMBLES (E.Mitchell) recovered by NE-A.Hernandez at HST 7.,0,0,2012 -20121210_HOU@NE,1,54,31,NE,HOU,2,7,7,(9:31) (Shotgun) T.Brady pass short left to A.Hernandez for 7 yards TOUCHDOWN. NE 12-Brady 45th straight regular season game with a TD pass 3rd longest all-time.,0,0,2012 -20121210_HOU@NE,1,54,31,NE,HOU,,,7,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121210_HOU@NE,1,54,31,NE,HOU,,,7,S.Gostkowski kicks 74 yards from NE 35 to HST -9. K.Martin Touchback.,7,0,2012 -20121210_HOU@NE,1,54,27,HOU,NE,1,10,80,(9:27) M.Schaub pass short middle to A.Johnson to HST 28 for 8 yards (A.Talib).,0,7,2012 -20121210_HOU@NE,1,53,59,HOU,NE,2,2,72,(8:59) M.Schaub pass short left to J.Forsett pushed ob at HST 42 for 14 yards (J.Mayo).,0,7,2012 -20121210_HOU@NE,1,53,30,HOU,NE,1,10,58,(8:30) M.Schaub pass short middle to O.Daniels to NE 45 for 13 yards (B.Spikes).,0,7,2012 -20121210_HOU@NE,1,52,53,HOU,NE,1,10,45,(7:53) A.Gardner reported in as eligible. M.Schaub sacked at NE 49 for -4 yards (sack split by T.Scott and R.Ninkovich).,0,7,2012 -20121210_HOU@NE,1,52,21,HOU,NE,2,14,49,(7:21) A.Foster left tackle to NE 47 for 2 yards (R.Ninkovich).,0,7,2012 -20121210_HOU@NE,1,51,41,HOU,NE,3,12,47,(6:41) (Shotgun) M.Schaub pass deep right to L.Jean to NE 23 for 24 yards (D.McCourty). Penalty on NE-J.Francis Defensive Offside declined.,0,7,2012 -20121210_HOU@NE,1,51,17,HOU,NE,1,10,23,(6:17) A.Foster left guard to NE 21 for 2 yards (V.Wilfork).,0,7,2012 -20121210_HOU@NE,1,50,41,HOU,NE,2,8,21,(5:41) M.Schaub pass deep middle intended for K.Walter INTERCEPTED by D.McCourty at NE -1. D.McCourty to NE 18 for 19 yards (A.Foster).,0,7,2012 -20121210_HOU@NE,1,50,30,NE,HOU,1,10,82,(5:30) (Shotgun) T.Brady pass incomplete short middle to W.Welker [C.Barwin].,7,0,2012 -20121210_HOU@NE,1,50,23,NE,HOU,2,10,82,(5:23) S.Ridley left tackle to NE 18 for no gain (E.Mitchell; J.Watt).,7,0,2012 -20121210_HOU@NE,1,49,43,NE,HOU,3,10,82,(4:43) (Shotgun) T.Brady pass short left to B.Lloyd pushed ob at NE 32 for 14 yards (J.Joseph).,7,0,2012 -20121210_HOU@NE,1,49,14,NE,HOU,1,10,68,(4:14) (Shotgun) T.Brady pass short middle to D.Woodhead to 50 for 18 yards (G.Quin; B.James).,7,0,2012 -20121210_HOU@NE,1,48,32,NE,HOU,1,10,50,(3:32) T.Brady pass short middle to A.Hernandez to HST 37 for 13 yards (K.Jackson; G.Quin).,7,0,2012 -20121210_HOU@NE,1,47,55,NE,HOU,1,10,37,(2:55) T.Brady pass deep middle to B.Lloyd for 37 yards TOUCHDOWN.,7,0,2012 -20121210_HOU@NE,1,47,55,NE,HOU,,,37,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,0,2012 -20121210_HOU@NE,1,47,55,NE,HOU,,,37,S.Gostkowski kicks 67 yards from NE 35 to HST -2. K.Martin to HST 25 for 27 yards (K.Arrington).,14,0,2012 -20121210_HOU@NE,1,47,45,HOU,NE,1,10,75,(2:45) M.Schaub pass deep middle to A.Johnson to HST 41 for 16 yards (A.Dennard).,0,14,2012 -20121210_HOU@NE,1,47,6,HOU,NE,1,10,59,(2:06) A.Foster left tackle to HST 38 for -3 yards (D.Hightower).,0,14,2012 -20121210_HOU@NE,1,46,28,HOU,NE,2,13,62,(1:28) A.Foster right guard to HST 39 for 1 yard (R.Ninkovich).,0,14,2012 -20121210_HOU@NE,1,45,48,HOU,NE,3,12,61,(:48) (Shotgun) M.Schaub sacked at HST 30 for -9 yards (V.Wilfork). FUMBLES (V.Wilfork) recovered by HST-C.Myers at HST 19. C.Myers to HST 19 for no gain (C.Jones).,0,14,2012 -20121210_HOU@NE,1,45,5,HOU,NE,4,32,81,(:05) D.Jones punts 56 yards to NE 25 Center-J.Weeks. W.Welker to NE 30 for 5 yards (W.Mercilus; S.Keo).,0,14,2012 -20121210_HOU@NE,2,45,0,NE,HOU,1,10,70,(15:00) (Shotgun) D.Woodhead up the middle to NE 34 for 4 yards (T.Dobbins).,14,0,2012 -20121210_HOU@NE,2,44,32,NE,HOU,2,6,66,(14:32) S.Ridley up the middle to NE 32 for -2 yards (G.Quin).,14,0,2012 -20121210_HOU@NE,2,43,57,NE,HOU,3,8,68,(13:57) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 43 for 11 yards (D.Manning; Q.Demps).,14,0,2012 -20121210_HOU@NE,2,43,28,NE,HOU,1,10,57,(13:28) S.Ridley up the middle to NE 45 for 2 yards (D.Manning; G.Quin).,14,0,2012 -20121210_HOU@NE,2,43,3,NE,HOU,2,8,55,(13:03) (Shotgun) T.Brady pass short right to A.Hernandez to NE 43 for -2 yards (K.Jackson).,14,0,2012 -20121210_HOU@NE,2,42,22,NE,HOU,3,10,57,(12:22) (Shotgun) T.Brady pass incomplete deep left to W.Welker. PENALTY on HST-D.Manning Defensive Pass Interference 26 yards enforced at NE 43 - No Play.,14,0,2012 -20121210_HOU@NE,2,42,17,NE,HOU,1,10,31,(12:17) (Shotgun) T.Brady pass short left to W.Welker to HST 16 for 15 yards (B.Harris).,14,0,2012 -20121210_HOU@NE,2,41,37,NE,HOU,1,10,16,(11:37) (Shotgun) T.Brady pass short middle to W.Welker to HST 4 for 12 yards (D.Sharpton).,14,0,2012 -20121210_HOU@NE,2,41,4,NE,HOU,1,4,4,(11:04) T.Brady pass short left to A.Hernandez for 4 yards TOUCHDOWN.,14,0,2012 -20121210_HOU@NE,2,41,4,NE,HOU,,,4,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,0,2012 -20121210_HOU@NE,2,41,4,NE,HOU,,,4,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,21,0,2012 -20121210_HOU@NE,2,41,1,HOU,NE,1,10,80,(11:01) M.Schaub pass short right to A.Foster pushed ob at HST 26 for 6 yards (A.Talib).,0,21,2012 -20121210_HOU@NE,2,40,38,HOU,NE,2,4,74,(10:38) A.Foster up the middle to HST 26 for no gain (J.Mayo).,0,21,2012 -20121210_HOU@NE,2,40,1,HOU,NE,3,4,74,(10:01) (Shotgun) M.Schaub pass incomplete short middle to L.Jean (V.Wilfork).,0,21,2012 -20121210_HOU@NE,2,39,57,HOU,NE,4,4,74,(9:57) D.Jones punts 40 yards to NE 34 Center-J.Weeks fair catch by W.Welker.,0,21,2012 -20121210_HOU@NE,2,39,51,NE,HOU,1,10,66,(9:51) S.Ridley right guard to NE 37 for 3 yards (D.Sharpton; G.Quin).,21,0,2012 -20121210_HOU@NE,2,39,23,NE,HOU,2,7,63,(9:23) (Shotgun) T.Brady pass short left to A.Hernandez to NE 42 for 5 yards (D.Manning; D.Sharpton).,21,0,2012 -20121210_HOU@NE,2,38,42,NE,HOU,3,2,58,(8:42) (Shotgun) T.Brady pass incomplete short right to B.Lloyd [B.James].,21,0,2012 -20121210_HOU@NE,2,38,38,NE,HOU,4,2,58,(8:38) Z.Mesko punts 47 yards to HST 11 Center-D.Aiken fair catch by K.Martin.,21,0,2012 -20121210_HOU@NE,2,38,32,HOU,NE,1,10,89,(8:32) M.Schaub pass short middle to A.Johnson to HST 36 for 25 yards (S.Gregory).,0,21,2012 -20121210_HOU@NE,2,37,59,HOU,NE,1,10,64,(7:59) M.Schaub pass incomplete short left to A.Foster.,0,21,2012 -20121210_HOU@NE,2,37,56,HOU,NE,2,10,64,(7:56) M.Schaub pass short left to A.Johnson pushed ob at HST 45 for 9 yards (A.Talib).,0,21,2012 -20121210_HOU@NE,2,37,29,HOU,NE,3,1,55,(7:29) A.Foster right tackle to 50 for 5 yards (S.Gregory).,0,21,2012 -20121210_HOU@NE,2,36,52,HOU,NE,1,10,50,(6:52) M.Schaub pass short right to A.Foster pushed ob at NE 47 for 3 yards (D.Hightower).,0,21,2012 -20121210_HOU@NE,2,36,24,HOU,NE,2,7,47,(6:24) A.Foster right end pushed ob at NE 38 for 9 yards (D.Hightower).,0,21,2012 -20121210_HOU@NE,2,35,58,HOU,NE,1,10,38,(5:58) M.Schaub pass incomplete short left to O.Daniels (C.Jones).,0,21,2012 -20121210_HOU@NE,2,35,54,HOU,NE,2,10,38,(5:54) (Shotgun) J.Forsett up the middle to NE 40 for -2 yards (V.Wilfork; J.Mayo).,0,21,2012 -20121210_HOU@NE,2,35,13,HOU,NE,3,12,40,(5:13) (Shotgun) M.Schaub pass short middle to L.Jean to NE 33 for 7 yards (A.Dennard).,0,21,2012 -20121210_HOU@NE,2,34,49,HOU,NE,4,5,33,(4:49) (Shotgun) M.Schaub pass incomplete short left to K.Walter (K.Arrington).,0,21,2012 -20121210_HOU@NE,2,34,44,NE,HOU,1,10,67,(4:44) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,21,0,2012 -20121210_HOU@NE,2,34,39,NE,HOU,2,10,67,(4:39) (Shotgun) S.Vereen up the middle to NE 37 for 4 yards (Q.Demps; T.Dobbins).,21,0,2012 -20121210_HOU@NE,2,33,58,NE,HOU,3,6,63,(3:58) (Shotgun) T.Brady pass short left to B.Lloyd to NE 47 for 10 yards (D.Manning). PENALTY on NE-A.Hernandez Offensive Pass Interference 10 yards enforced at NE 37 - No Play.,21,0,2012 -20121210_HOU@NE,2,33,36,NE,HOU,3,16,73,(3:36) (Shotgun) T.Brady pass incomplete short right to D.Woodhead.,21,0,2012 -20121210_HOU@NE,2,33,33,NE,HOU,4,16,73,(3:33) Z.Mesko punts 39 yards to HST 34 Center-D.Aiken out of bounds.,21,0,2012 -20121210_HOU@NE,2,33,26,HOU,NE,1,10,66,(3:26) M.Schaub pass short middle to A.Foster to NE 43 for 23 yards (D.McCourty).,0,21,2012 -20121210_HOU@NE,2,32,42,HOU,NE,1,10,43,(2:42) M.Schaub pass incomplete short right to A.Foster.,0,21,2012 -20121210_HOU@NE,2,32,38,HOU,NE,2,10,43,(2:38) A.Foster right tackle to NE 43 for no gain (J.Mayo).,0,21,2012 -20121210_HOU@NE,2,32,0,HOU,NE,3,10,43,(2:00) (Shotgun) PENALTY on NE-T.Scott Neutral Zone Infraction 5 yards enforced at NE 43 - No Play.,0,21,2012 -20121210_HOU@NE,2,32,0,HOU,NE,3,5,38,(2:00) (Shotgun) M.Schaub pass incomplete deep middle to A.Johnson (A.Talib). NE-A.Talib was injured during the play.,0,21,2012 -20121210_HOU@NE,2,31,55,HOU,NE,4,5,38,(1:55) (Shotgun) M.Schaub pass incomplete short left to K.Walter [J.Mayo].,0,21,2012 -20121210_HOU@NE,2,31,52,NE,HOU,1,10,62,(1:52) S.Vereen left tackle to NE 39 for 1 yard (C.Barwin; D.Sharpton).,21,0,2012 -20121210_HOU@NE,2,31,24,NE,HOU,2,9,61,(1:24) (Shotgun) T.Brady pass short left to B.Lloyd to NE 45 for 6 yards (J.Joseph).,21,0,2012 -20121210_HOU@NE,2,30,55,NE,HOU,3,3,55,(:55) (No Huddle Shotgun) T.Brady pass incomplete deep left to A.Hernandez (G.Quin).,21,0,2012 -20121210_HOU@NE,2,30,50,NE,HOU,4,3,55,(:50) Z.Mesko punts 55 yards to end zone Center-D.Aiken Touchback.,21,0,2012 -20121210_HOU@NE,2,30,41,HOU,NE,1,10,80,(:41) (Shotgun) M.Schaub pass short left to O.Daniels to HST 31 for 11 yards (J.Mayo).,0,21,2012 -20121210_HOU@NE,2,30,21,HOU,NE,1,10,69,(:21) (No Huddle Shotgun) M.Schaub pass incomplete short middle to A.Johnson (A.Dennard).,0,21,2012 -20121210_HOU@NE,2,30,16,HOU,NE,2,10,69,(:16) (Shotgun) M.Schaub pass incomplete deep right to L.Jean [D.Hightower].,0,21,2012 -20121210_HOU@NE,2,30,10,HOU,NE,3,10,69,(:10) A.Foster left guard to HST 40 for 9 yards (M.Cole; T.Wilson).,0,21,2012 -20121210_HOU@NE,3,30,0,HOU,NE,,,69,S.Graham kicks 71 yards from HST 35 to NE -6. D.McCourty Touchback.,0,21,2012 -20121210_HOU@NE,3,30,0,NE,HOU,1,10,80,(15:00) (Shotgun) T.Brady pass incomplete deep right to W.Welker.,21,0,2012 -20121210_HOU@NE,3,29,56,NE,HOU,2,10,80,(14:56) S.Vereen left guard to NE 29 for 9 yards (Q.Demps; J.Joseph).,21,0,2012 -20121210_HOU@NE,3,29,21,NE,HOU,3,1,71,(14:21) S.Vereen left tackle to NE 33 for 4 yards (C.Barwin).,21,0,2012 -20121210_HOU@NE,3,28,54,NE,HOU,1,10,67,(13:54) (Shotgun) T.Brady pass incomplete deep middle to A.Hernandez [J.Watt].,21,0,2012 -20121210_HOU@NE,3,28,50,NE,HOU,2,10,67,(13:50) (Shotgun) S.Vereen left guard to NE 35 for 2 yards (W.Mercilus).,21,0,2012 -20121210_HOU@NE,3,28,18,NE,HOU,3,8,65,(13:18) (Shotgun) T.Brady pass incomplete deep right to D.Stallworth [J.Watt].,21,0,2012 -20121210_HOU@NE,3,28,13,NE,HOU,4,8,65,(13:13) Z.Mesko punts 48 yards to HST 17 Center-D.Aiken. K.Martin to HST 18 for 1 yard (M.Cole). PENALTY on HST-G.Quin Offensive Holding 9 yards enforced at HST 18.,21,0,2012 -20121210_HOU@NE,3,28,3,HOU,NE,1,10,91,(13:03) A.Foster left guard to HST 12 for 3 yards (R.Ninkovich; B.Deaderick).,0,21,2012 -20121210_HOU@NE,3,27,23,HOU,NE,2,7,88,(12:23) A.Gardner reported in as eligible. A.Foster up the middle to HST 10 for -2 yards (B.Deaderick).,0,21,2012 -20121210_HOU@NE,3,26,41,HOU,NE,3,9,90,(11:41) (Shotgun) M.Schaub pass short left to A.Johnson to HST 18 for 8 yards (A.Dennard).,0,21,2012 -20121210_HOU@NE,3,26,3,HOU,NE,4,1,82,(11:03) D.Jones punts 59 yards to NE 23 Center-J.Weeks. W.Welker to NE 26 for 3 yards (B.Braman).,0,21,2012 -20121210_HOU@NE,3,25,54,NE,HOU,1,10,74,(10:54) (Shotgun) T.Brady pass incomplete deep left to S.Vereen [J.Watt].,21,0,2012 -20121210_HOU@NE,3,25,49,NE,HOU,2,10,74,(10:49) T.Brady pass short middle to A.Hernandez to NE 37 for 11 yards (D.Manning).,21,0,2012 -20121210_HOU@NE,3,25,7,NE,HOU,1,10,63,(10:07) (Shotgun) T.Brady pass incomplete short right to W.Welker.,21,0,2012 -20121210_HOU@NE,3,25,4,NE,HOU,2,10,63,(10:04) (Shotgun) T.Brady pass incomplete short left to W.Welker.,21,0,2012 -20121210_HOU@NE,3,25,0,NE,HOU,3,10,63,(10:00) (Shotgun) T.Brady pass deep middle to D.Stallworth for 63 yards TOUCHDOWN. NE 12-Brady 18th career game with 4+ TD passes passing Johnny Unitas for 4th most all-time.,21,0,2012 -20121210_HOU@NE,3,25,0,NE,HOU,,,63,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,0,2012 -20121210_HOU@NE,3,25,0,NE,HOU,,,63,S.Gostkowski kicks 65 yards from NE 35 to HST 0. K.Martin to HST 12 for 12 yards (K.Arrington).,28,0,2012 -20121210_HOU@NE,3,24,41,HOU,NE,1,10,88,(9:41) M.Schaub pass short left to A.Johnson to HST 28 for 16 yards (K.Arrington). Penalty on NE-D.Hightower Illegal Use of Hands declined.,0,28,2012 -20121210_HOU@NE,3,24,9,HOU,NE,1,10,72,(9:09) M.Schaub pass short right to A.Johnson to HST 33 for 5 yards (S.Gregory).,0,28,2012 -20121210_HOU@NE,3,23,28,HOU,NE,2,5,67,(8:28) M.Schaub pass incomplete deep left to A.Johnson [J.Mayo]. PENALTY on NE-K.Arrington Defensive Pass Interference 15 yards enforced at HST 33 - No Play.,0,28,2012 -20121210_HOU@NE,3,23,23,HOU,NE,1,10,52,(8:23) B.Tate left guard to NE 29 for 23 yards (A.Dennard).,0,28,2012 -20121210_HOU@NE,3,22,49,HOU,NE,1,10,29,(7:49) M.Schaub pass incomplete deep left to L.Jean. PENALTY on HST-L.Jean Offensive Pass Interference 10 yards enforced at NE 29 - No Play.,0,28,2012 -20121210_HOU@NE,3,22,42,HOU,NE,1,20,39,(7:42) M.Schaub pass short left to A.Foster ran ob at NE 32 for 7 yards.,0,28,2012 -20121210_HOU@NE,3,22,12,HOU,NE,2,13,32,(7:12) M.Schaub pass deep left to J.Casey to NE 2 for 30 yards (D.McCourty).,0,28,2012 -20121210_HOU@NE,3,21,42,HOU,NE,1,2,2,(6:42) A.Gardner reported in as eligible. PENALTY on NE Defensive 12 On-field 1 yard enforced at NE 2 - No Play.,0,28,2012 -20121210_HOU@NE,3,21,21,HOU,NE,1,1,1,(6:21) A.Gardner reported in as eligible. M.Schaub pass incomplete short left to A.Gardner [J.Francis].,0,28,2012 -20121210_HOU@NE,3,21,15,HOU,NE,2,1,1,(6:15) A.Gardner reported in as eligible. A.Foster left tackle for 1 yard TOUCHDOWN.,0,28,2012 -20121210_HOU@NE,3,21,15,HOU,NE,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,0,28,2012 -20121210_HOU@NE,3,21,15,HOU,NE,,,1,S.Graham kicks 70 yards from HST 35 to NE -5. D.McCourty Touchback.,7,28,2012 -20121210_HOU@NE,3,21,12,NE,HOU,1,10,80,(6:12) (Shotgun) T.Brady pass incomplete short left to W.Welker.,28,7,2012 -20121210_HOU@NE,3,21,7,NE,HOU,2,10,80,(6:07) T.Brady pass short middle to B.Lloyd to NE 27 for 7 yards (J.Joseph).,28,7,2012 -20121210_HOU@NE,3,20,29,NE,HOU,3,3,73,(5:29) (Shotgun) T.Brady sacked at NE 20 for -7 yards (W.Mercilus).,28,7,2012 -20121210_HOU@NE,3,20,0,NE,HOU,4,10,80,(5:00) Z.Mesko punts 51 yards to HST 29 Center-D.Aiken. K.Martin pushed ob at HST 39 for 10 yards (M.Rivera). PENALTY on HST-S.Routt Illegal Block Above the Waist 10 yards enforced at HST 29.,28,7,2012 -20121210_HOU@NE,3,19,50,HOU,NE,1,10,81,(4:50) M.Schaub pass short right to A.Johnson to HST 27 for 8 yards (S.Gregory).,7,28,2012 -20121210_HOU@NE,3,19,23,HOU,NE,2,2,73,(4:23) (No Huddle) M.Schaub pass short left to B.Tate to HST 26 for -1 yards (D.Hightower) [J.Mayo].,7,28,2012 -20121210_HOU@NE,3,18,42,HOU,NE,3,3,74,(3:42) (Shotgun) M.Schaub pass incomplete short left to K.Martin (K.Arrington).,7,28,2012 -20121210_HOU@NE,3,18,37,HOU,NE,4,3,74,(3:37) D.Jones punts 57 yards to NE 17 Center-J.Weeks. W.Welker to NE 28 for 11 yards (D.Sharpton).,7,28,2012 -20121210_HOU@NE,3,18,28,NE,HOU,1,10,72,(3:28) S.Ridley right guard to NE 30 for 2 yards (B.James).,28,7,2012 -20121210_HOU@NE,3,17,51,NE,HOU,2,8,70,(2:51) (No Huddle Shotgun) T.Brady pass incomplete deep right to M.Hoomanawanui. PENALTY on HST-B.James Illegal Contact 5 yards enforced at NE 30 - No Play.,28,7,2012 -20121210_HOU@NE,3,17,46,NE,HOU,1,10,65,(2:46) (Shotgun) T.Brady pass short right to A.Hernandez to NE 44 for 9 yards (B.James; C.Barwin).,28,7,2012 -20121210_HOU@NE,3,17,18,NE,HOU,2,1,56,(2:18) S.Ridley left guard to NE 48 for 4 yards (G.Quin; B.James).,28,7,2012 -20121210_HOU@NE,3,16,54,NE,HOU,1,10,52,(1:54) T.Brady pass short left to B.Lloyd to HST 38 for 14 yards (J.Joseph).,28,7,2012 -20121210_HOU@NE,3,16,26,NE,HOU,1,10,38,(1:26) (No Huddle) S.Ridley left guard to HST 33 for 5 yards (B.James; E.Mitchell).,28,7,2012 -20121210_HOU@NE,3,16,1,NE,HOU,2,5,33,(1:01) (No Huddle) S.Ridley up the middle to HST 33 for no gain (J.Crick; J.Watt).,28,7,2012 -20121210_HOU@NE,3,15,19,NE,HOU,3,5,33,(:19) (Shotgun) T.Brady scrambles up the middle to HST 27 for 6 yards (D.Manning).,28,7,2012 -20121210_HOU@NE,4,14,29,NE,HOU,1,10,27,(14:29) (Shotgun) T.Brady pass incomplete short left to W.Welker.,28,7,2012 -20121210_HOU@NE,4,14,26,NE,HOU,2,10,27,(14:26) (Shotgun) T.Brady pass short right to D.Woodhead to HST 11 for 16 yards (J.Watt). FUMBLES (J.Watt) recovered by NE-B.Lloyd at HST -2. TOUCHDOWN.,28,7,2012 -20121210_HOU@NE,4,14,26,NE,HOU,,,27,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,28,7,2012 -20121210_HOU@NE,4,14,26,NE,HOU,,,27,S.Gostkowski kicks 73 yards from NE 35 to HST -8. K.Martin Touchback.,35,7,2012 -20121210_HOU@NE,4,14,15,HOU,NE,1,10,80,(14:15) B.Tate up the middle to HST 30 for 10 yards (P.Chung; D.Hightower).,7,35,2012 -20121210_HOU@NE,4,13,48,HOU,NE,1,10,70,(13:48) B.Tate left tackle to HST 38 for 8 yards (J.Mayo).,7,35,2012 -20121210_HOU@NE,4,13,14,HOU,NE,2,2,62,(13:14) B.Tate left tackle to HST 39 for 1 yard (D.Hightower).,7,35,2012 -20121210_HOU@NE,4,12,35,HOU,NE,3,1,61,(12:35) B.Tate left tackle to HST 39 for no gain (B.Deaderick; R.Ninkovich).,7,35,2012 -20121210_HOU@NE,4,11,55,HOU,NE,4,1,61,(11:55) D.Jones punts 29 yards to NE 32 Center-J.Weeks out of bounds.,7,35,2012 -20121210_HOU@NE,4,11,47,NE,HOU,1,10,68,(11:47) S.Ridley right end to NE 38 for 6 yards (B.Ruud).,35,7,2012 -20121210_HOU@NE,4,11,23,NE,HOU,2,4,62,(11:23) (No Huddle) T.Brady pass short right to B.Lloyd ran ob at NE 46 for 8 yards.,35,7,2012 -20121210_HOU@NE,4,10,53,NE,HOU,1,10,54,(10:53) S.Ridley up the middle to 50 for 4 yards (T.Dobbins).,35,7,2012 -20121210_HOU@NE,4,10,31,NE,HOU,2,6,50,(10:31) S.Ridley right end pushed ob at HST 41 for 9 yards (B.Ruud).,35,7,2012 -20121210_HOU@NE,4,10,9,NE,HOU,1,10,41,(10:09) S.Vereen right guard to HST 30 for 11 yards (D.Manning).,35,7,2012 -20121210_HOU@NE,4,9,41,NE,HOU,1,10,30,(9:41) (No Huddle) T.Brady pass short left to B.Lloyd to HST 27 for 3 yards (J.Joseph).,35,7,2012 -20121210_HOU@NE,4,9,8,NE,HOU,2,7,27,(9:08) S.Vereen right guard to HST 20 for 7 yards (J.Crick; B.Ruud).,35,7,2012 -20121210_HOU@NE,4,8,36,NE,HOU,1,10,20,(8:36) S.Ridley left guard to HST 16 for 4 yards (J.Crick; B.Ruud).,35,7,2012 -20121210_HOU@NE,4,8,1,NE,HOU,2,6,16,(8:01) S.Ridley right tackle to HST 14 for 2 yards (A.Smith; J.Crick).,35,7,2012 -20121210_HOU@NE,4,7,28,NE,HOU,3,4,14,(7:28) S.Ridley left guard for 14 yards TOUCHDOWN.,35,7,2012 -20121210_HOU@NE,4,7,28,NE,HOU,,,14,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,35,7,2012 -20121210_HOU@NE,4,7,28,NE,HOU,,,14,S.Gostkowski kicks 71 yards from NE 35 to HST -6. K.Martin Touchback.,42,7,2012 -20121210_HOU@NE,4,7,23,HOU,NE,1,10,80,(7:23) HOU 13-Yates now at QB. B.Tate right end to HST 25 for 5 yards (P.Chung). PENALTY on NE-P.Chung Face Mask (15 Yards) 15 yards enforced at HST 25.,7,42,2012 -20121210_HOU@NE,4,7,4,HOU,NE,1,10,60,(7:04) B.Tate up the middle to HST 38 for -2 yards (J.Mayo).,7,42,2012 -20121210_HOU@NE,4,6,34,HOU,NE,2,12,62,(6:34) T.Yates pass short left to K.Martin to HST 34 for -4 yards (D.McCourty) [D.Hightower].,7,42,2012 -20121210_HOU@NE,4,5,51,HOU,NE,3,16,66,(5:51) J.Forsett left end to HST 39 for 5 yards (C.Jones; B.Deaderick).,7,42,2012 -20121210_HOU@NE,4,5,16,HOU,NE,4,11,61,(5:16) D.Jones punts 51 yards to NE 10 Center-J.Weeks fair catch by W.Welker.,7,42,2012 -20121210_HOU@NE,4,5,9,NE,HOU,1,10,90,(5:09) NE 15-Mallett now at QB. B.Bolden left tackle to NE 15 for 5 yards (D.Sharpton; E.Mitchell).,42,7,2012 -20121210_HOU@NE,4,4,31,NE,HOU,2,5,85,(4:31) B.Bolden right tackle to NE 21 for 6 yards (E.Mitchell; B.Braman).,42,7,2012 -20121210_HOU@NE,4,3,54,NE,HOU,1,10,79,(3:54) B.Bolden left tackle to NE 36 for 15 yards. PENALTY on NE-D.Connolly Offensive Holding 10 yards enforced at NE 21 - No Play.,42,7,2012 -20121210_HOU@NE,4,3,47,NE,HOU,1,20,89,(3:47) S.Vereen right guard to NE 13 for 2 yards (B.Harris; S.Cody).,42,7,2012 -20121210_HOU@NE,4,3,10,NE,HOU,2,18,87,(3:10) R.Mallett pass short middle intended for V.Shiancoe INTERCEPTED by S.Keo at NE 26. S.Keo to NE 25 for 1 yard (M.Slater).,42,7,2012 -20121210_HOU@NE,4,3,1,HOU,NE,1,10,25,(3:01) J.Forsett left tackle to NE 21 for 4 yards (T.Scott; M.Rivera).,7,42,2012 -20121210_HOU@NE,4,2,27,HOU,NE,2,6,21,(2:27) T.Yates pass incomplete short left to D.Posey.,7,42,2012 -20121210_HOU@NE,4,2,23,HOU,NE,3,6,21,(2:23) (Shotgun) T.Yates pass short middle to D.Posey ran ob at NE 2 for 19 yards [J.Francis].,7,42,2012 -20121210_HOU@NE,4,2,14,HOU,NE,1,2,2,(2:14) T.Yates pass incomplete short right to K.Martin.,7,42,2012 -20121210_HOU@NE,4,2,9,HOU,NE,2,2,2,(2:09) B.Tate left end pushed ob at NE 1 for 1 yard (M.Cole).,7,42,2012 -20121210_HOU@NE,4,2,4,HOU,NE,3,1,1,(2:04) T.Yates up the middle for 1 yard TOUCHDOWN.,7,42,2012 -20121210_HOU@NE,4,2,4,HOU,NE,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,7,42,2012 -20121210_HOU@NE,4,2,4,HOU,NE,,,1,(Onside Kick formation) S.Graham kicks 63 yards from HST 35 to NE 2. W.Welker to NE 9 for 7 yards (S.Keo).,14,42,2012 -20121210_HOU@NE,4,1,57,NE,HOU,1,10,91,(1:57) R.Mallett kneels dead ball declared at NE 8 for -1 yards.,42,14,2012 -20121210_HOU@NE,4,1,18,NE,HOU,2,11,92,(1:18) R.Mallett kneels dead ball declared at NE 7 for -1 yards.,42,14,2012 -20121210_HOU@NE,4,0,40,NE,HOU,3,12,93,(:40) R.Mallett kneels dead ball declared at NE 6 for -1 yards.,42,14,2012 -20121210_HOU@NE,4,0,40,NE,HOU,,,93,                      ,42,14,2012 -20121213_CIN@PHI,1,0,0,CIN,PHI,,,93,J.Brown kicks 68 yards from CIN 35 to PHI -3. B.Boykin to PHI 19 for 22 yards (A.Jones; D.Skuta).,0,0,2012 -20121213_CIN@PHI,1,59,53,PHI,CIN,1,10,81,(14:53) (Shotgun) N.Foles pass short left to R.Cooper to PHI 28 for 9 yards (A.Jones).,0,0,2012 -20121213_CIN@PHI,1,59,21,PHI,CIN,2,1,72,(14:21) (Shotgun) N.Foles pass short right to J.Maclin to PHI 34 for 6 yards (C.Dunlap). FUMBLES (C.Dunlap) RECOVERED by CIN-D.Peko at PHI 44. D.Peko to PHI 44 for no gain (R.Cooper). Penalty on PHI-J.Scott Illegal Block Above the Waist declined.,0,0,2012 -20121213_CIN@PHI,1,59,11,CIN,PHI,1,10,44,(14:11) B.Green-Ellis right end to PHI 15 for 29 yards (C.Anderson).,0,0,2012 -20121213_CIN@PHI,1,58,30,CIN,PHI,1,10,15,(13:30) A.Dalton pass short right to A.Green pushed ob at PHI 7 for 8 yards (J.Chaney).,0,0,2012 -20121213_CIN@PHI,1,58,1,CIN,PHI,2,2,7,(13:01) B.Green-Ellis up the middle to PHI 2 for 5 yards (D.Ryans).,0,0,2012 -20121213_CIN@PHI,1,57,14,CIN,PHI,1,2,2,(12:14) B.Green-Ellis up the middle to PHI 2 for no gain (C.Anderson).,0,0,2012 -20121213_CIN@PHI,1,56,48,CIN,PHI,2,2,2,(11:48) B.Green-Ellis right guard to PHI 1 for 1 yard (J.Chaney).,0,0,2012 -20121213_CIN@PHI,1,56,13,CIN,PHI,3,1,1,(11:13) B.Green-Ellis up the middle for 1 yard TOUCHDOWN.,0,0,2012 -20121213_CIN@PHI,1,56,13,CIN,PHI,,,1,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121213_CIN@PHI,1,56,13,CIN,PHI,,,1,J.Brown kicks 70 yards from CIN 35 to PHI -5. B.Boykin to PHI 25 for 30 yards (R.Whalen).,7,0,2012 -20121213_CIN@PHI,1,56,4,PHI,CIN,1,10,75,(11:04) B.Brown up the middle to PHI 28 for 3 yards (R.Geathers).,0,7,2012 -20121213_CIN@PHI,1,55,31,PHI,CIN,2,7,72,(10:31) (Shotgun) N.Foles pass short left to J.Maclin ran ob at PHI 32 for 4 yards.,0,7,2012 -20121213_CIN@PHI,1,55,5,PHI,CIN,3,3,68,(10:05) (Shotgun) N.Foles pass incomplete deep left to C.Harbor.,0,7,2012 -20121213_CIN@PHI,1,54,59,PHI,CIN,4,3,68,(9:59) M.McBriar punt is BLOCKED Center-J.Dorenbos RECOVERED by CIN-D.Herron at PHI 14. D.Herron ran ob at PHI 11 for 3 yards (M.McNutt).,0,7,2012 -20121213_CIN@PHI,1,54,50,CIN,PHI,1,10,11,(9:50) B.Green-Ellis left tackle to PHI 7 for 4 yards (J.Chaney).,7,0,2012 -20121213_CIN@PHI,1,54,13,CIN,PHI,2,6,7,(9:13) (Shotgun) A.Dalton sacked at PHI 12 for -5 yards (B.Graham).,7,0,2012 -20121213_CIN@PHI,1,53,36,CIN,PHI,3,11,12,(8:36) (Shotgun) A.Dalton pass short right to J.Gresham to PHI 6 for 6 yards (M.Kendricks; N.Allen).,7,0,2012 -20121213_CIN@PHI,1,52,55,CIN,PHI,4,5,6,(7:55) J.Brown 24 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,0,2012 -20121213_CIN@PHI,1,52,55,CIN,PHI,,,6,J.Brown kicks 60 yards from CIN 35 to PHI 5. B.Boykin to PHI 21 for 16 yards (N.Clements).,10,0,2012 -20121213_CIN@PHI,1,52,44,PHI,CIN,1,10,79,(7:44) (Shotgun) B.Brown right end ran ob at PHI 24 for 3 yards (W.Gilberry).,0,10,2012 -20121213_CIN@PHI,1,52,15,PHI,CIN,2,7,76,(7:15) B.Brown left end to PHI 26 for 2 yards (M.Lawson).,0,10,2012 -20121213_CIN@PHI,1,51,34,PHI,CIN,3,5,74,(6:34) (Shotgun) N.Foles pass deep left to J.Avant to CIN 49 for 25 yards (L.Hall). Penalty on CIN-M.Johnson Defensive Offside declined.,0,10,2012 -20121213_CIN@PHI,1,51,12,PHI,CIN,1,10,49,(6:12) B.Brown left end to CIN 45 for 4 yards (R.Geathers).,0,10,2012 -20121213_CIN@PHI,1,50,38,PHI,CIN,2,6,45,(5:38) N.Foles pass incomplete short right.,0,10,2012 -20121213_CIN@PHI,1,50,31,PHI,CIN,3,6,45,(5:31) (Shotgun) N.Foles pass incomplete short left to R.Cooper (A.Jones).,0,10,2012 -20121213_CIN@PHI,1,50,26,PHI,CIN,4,6,45,(5:26) M.McBriar punts 32 yards to CIN 13 Center-J.Dorenbos fair catch by B.Tate.,0,10,2012 -20121213_CIN@PHI,1,50,18,CIN,PHI,1,10,87,(5:18) A.Dalton pass short right to A.Green ran ob at CIN 21 for 8 yards.,10,0,2012 -20121213_CIN@PHI,1,49,47,CIN,PHI,2,2,79,(4:47) B.Green-Ellis right end to CIN 26 for 5 yards (D.Ryans).,10,0,2012 -20121213_CIN@PHI,1,49,6,CIN,PHI,1,10,74,(4:06) A.Dalton pass incomplete deep right to M.Jones.,10,0,2012 -20121213_CIN@PHI,1,48,59,CIN,PHI,2,10,74,(3:59) (Shotgun) A.Dalton pass short left to J.Gresham pushed ob at CIN 45 for 19 yards (N.Allen).,10,0,2012 -20121213_CIN@PHI,1,48,24,CIN,PHI,1,10,55,(3:24) B.Green-Ellis left guard to CIN 46 for 1 yard (C.Anderson).,10,0,2012 -20121213_CIN@PHI,1,47,57,CIN,PHI,2,9,54,(2:57) (Shotgun) PENALTY on PHI-B.Graham Neutral Zone Infraction 5 yards enforced at CIN 46 - No Play.,10,0,2012 -20121213_CIN@PHI,1,47,39,CIN,PHI,2,4,49,(2:39) M.Jones right end to PHI 39 for 10 yards (C.Anderson; D.Ryans).,10,0,2012 -20121213_CIN@PHI,1,46,55,CIN,PHI,1,10,39,(1:55) A.Dalton pass incomplete deep left to A.Green (C.Anderson).,10,0,2012 -20121213_CIN@PHI,1,46,46,CIN,PHI,2,10,39,(1:46) (Shotgun) A.Dalton pass incomplete short left to M.Jones.,10,0,2012 -20121213_CIN@PHI,1,46,39,CIN,PHI,3,10,39,(1:39) (Shotgun) A.Dalton pass incomplete short left to M.Jones (D.Ryans).,10,0,2012 -20121213_CIN@PHI,1,46,34,CIN,PHI,4,10,39,(1:34) K.Huber punts 39 yards to end zone Center-C.Harris Touchback.,10,0,2012 -20121213_CIN@PHI,1,46,25,PHI,CIN,1,10,80,(1:25) (Shotgun) N.Foles pass incomplete deep left to R.Cooper.,0,10,2012 -20121213_CIN@PHI,1,46,20,PHI,CIN,2,10,80,(1:20) B.Brown left end pushed ob at PHI 21 for 1 yard (M.Lawson).,0,10,2012 -20121213_CIN@PHI,1,45,51,PHI,CIN,3,9,79,(:51) (Shotgun) N.Foles pass short left to J.Avant ran ob at PHI 37 for 16 yards. Penalty on CIN-C.Dunlap Defensive Offside declined.,0,10,2012 -20121213_CIN@PHI,1,45,27,PHI,CIN,1,10,63,(:27) (Shotgun) N.Foles pass incomplete deep left to J.Maclin.,0,10,2012 -20121213_CIN@PHI,1,45,21,PHI,CIN,2,10,63,(:21) B.Brown right end to PHI 36 for -1 yards (C.Dunlap).,0,10,2012 -20121213_CIN@PHI,2,45,0,PHI,CIN,3,11,64,(15:00) (Shotgun) N.Foles pass short left to R.Cooper to PHI 36 for no gain (M.Johnson).,0,10,2012 -20121213_CIN@PHI,2,44,29,PHI,CIN,4,11,64,(14:29) M.McBriar punts 44 yards to CIN 20 Center-J.Dorenbos. A.Jones to CIN 37 for 17 yards (C.Marsh).,0,10,2012 -20121213_CIN@PHI,2,44,15,CIN,PHI,1,10,63,(14:15) B.Green-Ellis left tackle to CIN 41 for 4 yards (D.Ryans; B.Graham).,10,0,2012 -20121213_CIN@PHI,2,43,38,CIN,PHI,2,6,59,(13:38) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,10,0,2012 -20121213_CIN@PHI,2,43,34,CIN,PHI,3,6,59,(13:34) (Shotgun) A.Dalton pass incomplete short right to M.Jones (N.Asomugha).,10,0,2012 -20121213_CIN@PHI,2,43,27,CIN,PHI,4,6,59,(13:27) K.Huber punts 23 yards to PHI 36 Center-C.Harris downed by CIN-C.Crocker.,10,0,2012 -20121213_CIN@PHI,2,43,18,PHI,CIN,1,10,64,(13:18) B.Brown up the middle to PHI 38 for 2 yards (R.Maualuga).,0,10,2012 -20121213_CIN@PHI,2,42,43,PHI,CIN,2,8,62,(12:43) (Shotgun) N.Foles pass incomplete short middle (M.Lawson). PENALTY on CIN-M.Lawson Defensive Offside 5 yards enforced at PHI 38 - No Play.,0,10,2012 -20121213_CIN@PHI,2,42,39,PHI,CIN,2,3,57,(12:39) N.Foles pass deep right to J.Maclin to CIN 11 for 46 yards (C.Crocker).,0,10,2012 -20121213_CIN@PHI,2,41,50,PHI,CIN,1,10,11,(11:50) (Shotgun) N.Foles pass incomplete short right to J.Maclin.,0,10,2012 -20121213_CIN@PHI,2,41,46,PHI,CIN,2,10,11,(11:46) (Shotgun) N.Foles pass short middle to R.Cooper for 11 yards TOUCHDOWN.,0,10,2012 -20121213_CIN@PHI,2,41,46,PHI,CIN,,,11,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,10,2012 -20121213_CIN@PHI,2,41,31,CIN,PHI,1,10,65,(11:31) B.Green-Ellis left tackle to CIN 34 for -1 yards (C.Thornton).,10,7,2012 -20121213_CIN@PHI,2,40,58,CIN,PHI,2,11,66,(10:58) (Shotgun) A.Dalton pass short middle to B.Leonard to CIN 41 for 7 yards (T.Cole).,10,7,2012 -20121213_CIN@PHI,2,40,18,CIN,PHI,3,4,59,(10:18) (Shotgun) PENALTY on CIN-M.Jones False Start 5 yards enforced at CIN 41 - No Play.,10,7,2012 -20121213_CIN@PHI,2,39,50,CIN,PHI,3,9,64,(9:50) (Shotgun) A.Dalton sacked at CIN 27 for -9 yards (B.Graham). FUMBLES (B.Graham) [B.Graham] RECOVERED by PHI-T.Cole at CIN 29. T.Cole to CIN 29 for no gain (A.Whitworth). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,7,2012 -20121213_CIN@PHI,2,39,41,PHI,CIN,1,10,29,(9:41) N.Foles pass short right to B.Brown ran ob at CIN 18 for 11 yards (D.Peko).,7,10,2012 -20121213_CIN@PHI,2,39,18,PHI,CIN,1,10,18,(9:18) B.Brown left end pushed ob at CIN 20 for -2 yards (E.Lamur).,7,10,2012 -20121213_CIN@PHI,2,38,51,PHI,CIN,2,12,20,(8:51) (Shotgun) N.Foles scrambles left end ran ob at CIN 15 for 5 yards. PENALTY on CIN-V.Burfict Defensive Holding 5 yards enforced at CIN 15.,7,10,2012 -20121213_CIN@PHI,2,38,25,PHI,CIN,1,10,10,(8:25) (Shotgun) D.Lewis right guard to CIN 7 for 3 yards (V.Burfict). PENALTY on CIN-A.Jones Unnecessary Roughness 4 yards enforced at CIN 7.,7,10,2012 -20121213_CIN@PHI,2,37,53,PHI,CIN,1,3,3,(7:53) N.Foles pass incomplete short right to B.Brown.,7,10,2012 -20121213_CIN@PHI,2,37,48,PHI,CIN,2,3,3,(7:48) (Shotgun) N.Foles pass incomplete short right to C.Harbor.,7,10,2012 -20121213_CIN@PHI,2,37,45,PHI,CIN,3,3,3,(7:45) N.Foles pass incomplete short left to C.Harbor.,7,10,2012 -20121213_CIN@PHI,2,37,40,PHI,CIN,4,3,3,(7:40) A.Henery 22 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,10,2012 -20121213_CIN@PHI,2,37,40,PHI,CIN,,,3,A.Henery kicks 60 yards from PHI 35 to CIN 5. B.Tate pushed ob at CIN 20 for 15 yards (B.Boykin).,10,10,2012 -20121213_CIN@PHI,2,37,30,CIN,PHI,1,10,80,(7:30) B.Green-Ellis right end ran ob at CIN 23 for 3 yards (D.Rodgers-Cromartie). PENALTY on CIN-J.Gresham Offensive Holding 10 yards enforced at CIN 20 - No Play.,10,10,2012 -20121213_CIN@PHI,2,37,6,CIN,PHI,1,20,90,(7:06) (Shotgun) A.Dalton pass short right to A.Green to CIN 23 for 13 yards (M.Kendricks).,10,10,2012 -20121213_CIN@PHI,2,36,36,CIN,PHI,2,7,77,(6:36) (Shotgun) A.Dalton pass incomplete short left to A.Green.,10,10,2012 -20121213_CIN@PHI,2,36,32,CIN,PHI,3,7,77,(6:32) (Shotgun) A.Dalton sacked at CIN 14 for -9 yards (T.Cole).,10,10,2012 -20121213_CIN@PHI,2,36,0,CIN,PHI,4,16,86,(6:00) K.Huber punts 41 yards to PHI 45 Center-C.Harris fair catch by D.Johnson.,10,10,2012 -20121213_CIN@PHI,2,35,51,PHI,CIN,1,10,55,(5:51) N.Foles pass incomplete short left [C.Crocker]. PENALTY on PHI-N.Foles Intentional Grounding 10 yards enforced at PHI 45.,10,10,2012 -20121213_CIN@PHI,2,35,45,PHI,CIN,2,20,65,(5:45) B.Brown right end to PHI 38 for 3 yards (E.Lamur).,10,10,2012 -20121213_CIN@PHI,2,35,5,PHI,CIN,3,17,62,(5:05) (Shotgun) N.Foles pass short middle to S.Havili to PHI 46 for 8 yards (T.Newman).,10,10,2012 -20121213_CIN@PHI,2,34,28,PHI,CIN,4,9,54,(4:28) M.McBriar punts 53 yards to CIN 1 Center-J.Dorenbos. B.Tate pushed ob at CIN 10 for 9 yards (C.Matthews).,10,10,2012 -20121213_CIN@PHI,2,34,18,CIN,PHI,1,10,90,(4:18) (Shotgun) A.Dalton pass short left to A.Green to CIN 22 for 12 yards (D.Rodgers-Cromartie).,10,10,2012 -20121213_CIN@PHI,2,33,44,CIN,PHI,1,10,78,(3:44) (No Huddle Shotgun) B.Green-Ellis up the middle to CIN 28 for 6 yards (D.Ryans).,10,10,2012 -20121213_CIN@PHI,2,33,0,CIN,PHI,2,4,72,(3:00) A.Dalton pass short right to J.Gresham to CIN 31 for 3 yards (C.Anderson).,10,10,2012 -20121213_CIN@PHI,2,32,40,CIN,PHI,3,1,69,(2:40) A.Dalton up the middle to CIN 32 for 1 yard (D.Ryans).,10,10,2012 -20121213_CIN@PHI,2,32,8,CIN,PHI,1,10,68,(2:08) (Shotgun) A.Dalton scrambles left end to CIN 41 for 9 yards (D.Ryans). PENALTY on CIN-A.Smith Offensive Holding 10 yards enforced at CIN 32 - No Play.,10,10,2012 -20121213_CIN@PHI,2,32,0,CIN,PHI,1,20,78,(2:00) (Shotgun) A.Dalton sacked at CIN 14 for -8 yards (C.Jenkins). FUMBLES (C.Jenkins) RECOVERED by PHI-D.Tapp at CIN 16. D.Tapp to CIN 12 for 4 yards (A.Smith). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,10,2012 -20121213_CIN@PHI,2,31,52,PHI,CIN,1,10,12,(1:52) (Shotgun) N.Foles pass short right to J.Avant to CIN 9 for 3 yards (C.Dunlap).,10,10,2012 -20121213_CIN@PHI,2,31,17,PHI,CIN,2,7,9,(1:17) B.Brown left tackle to CIN 3 for 6 yards (C.Crocker).,10,10,2012 -20121213_CIN@PHI,2,30,42,PHI,CIN,3,1,3,(:42) B.Brown left tackle to CIN 2 for 1 yard (C.Crocker).,10,10,2012 -20121213_CIN@PHI,2,30,39,PHI,CIN,1,2,2,(:39) PENALTY on PHI-D.Reynolds False Start 5 yards enforced at CIN 2 - No Play.,10,10,2012 -20121213_CIN@PHI,2,30,28,PHI,CIN,1,7,7,(:28) N.Foles pass short right to C.Harbor to CIN 1 for 6 yards (T.Newman).,10,10,2012 -20121213_CIN@PHI,2,30,28,PHI,CIN,2,1,1,(:28) M.Tennant reported in as eligible. N.Foles pass incomplete short right to M.Tennant (R.Maualuga).,10,10,2012 -20121213_CIN@PHI,2,30,23,PHI,CIN,3,1,1,(:23) (Shotgun) N.Foles pass incomplete short right to J.Maclin.,10,10,2012 -20121213_CIN@PHI,2,30,20,PHI,CIN,4,1,1,(:20) A.Henery 20 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,10,2012 -20121213_CIN@PHI,2,30,20,PHI,CIN,,,1,A.Henery kicks 53 yards from PHI 35 to CIN 12. O.Charles to CIN 19 for 7 yards (D.Sims).,13,10,2012 -20121213_CIN@PHI,2,30,13,CIN,PHI,1,10,81,(:13) A.Dalton kneels to CIN 18 for -1 yards.,10,13,2012 -20121213_CIN@PHI,3,30,0,PHI,CIN,,,81,A.Henery kicks 56 yards from PHI 35 to CIN 9. B.Tate to CIN 23 for 14 yards (B.Hughes).,13,10,2012 -20121213_CIN@PHI,3,29,55,CIN,PHI,1,10,77,(14:55) B.Green-Ellis left end to CIN 25 for 2 yards (T.Cole).,10,13,2012 -20121213_CIN@PHI,3,29,15,CIN,PHI,2,8,75,(14:15) A.Dalton scrambles left end to CIN 27 for 2 yards (B.Graham).,10,13,2012 -20121213_CIN@PHI,3,28,33,CIN,PHI,3,6,73,(13:33) (Shotgun) A.Dalton pass incomplete deep middle to J.Gresham (M.Kendricks).,10,13,2012 -20121213_CIN@PHI,3,28,27,CIN,PHI,4,6,73,(13:27) K.Huber punts 42 yards to PHI 31 Center-C.Harris fair catch by D.Johnson.,10,13,2012 -20121213_CIN@PHI,3,28,20,PHI,CIN,1,10,69,(13:20) B.Brown right end to PHI 30 for -1 yards (V.Burfict).,13,10,2012 -20121213_CIN@PHI,3,27,42,PHI,CIN,2,11,70,(12:42) (Shotgun) PENALTY on CIN-C.Dunlap Unnecessary Roughness 15 yards enforced at PHI 30 - No Play. Penalty on CIN Neutral Zone Infraction declined.,13,10,2012 -20121213_CIN@PHI,3,27,19,PHI,CIN,1,10,55,(12:19) PENALTY on PHI-J.Scott Offensive Holding 10 yards enforced at PHI 45 - No Play.,13,10,2012 -20121213_CIN@PHI,3,26,49,PHI,CIN,1,20,65,(11:49) (Shotgun) B.Brown right tackle to PHI 41 for 6 yards (R.Maualuga).,13,10,2012 -20121213_CIN@PHI,3,26,10,PHI,CIN,2,14,59,(11:10) (Shotgun) N.Foles pass short right to J.Maclin to CIN 42 for 17 yards (V.Burfict).,13,10,2012 -20121213_CIN@PHI,3,25,25,PHI,CIN,1,10,42,(10:25) B.Brown left end to CIN 34 for 8 yards (C.Crocker).,13,10,2012 -20121213_CIN@PHI,3,24,46,PHI,CIN,2,2,34,(9:46) D.Lewis up the middle to CIN 26 for 8 yards (C.Crocker). PENALTY on PHI-E.Igwenagu Offensive Holding 10 yards enforced at CIN 34 - No Play.,13,10,2012 -20121213_CIN@PHI,3,24,17,PHI,CIN,2,12,44,(9:17) (Shotgun) N.Foles pass short left to D.Lewis to CIN 48 for -4 yards (V.Burfict).,13,10,2012 -20121213_CIN@PHI,3,23,29,PHI,CIN,3,16,48,(8:29) (Shotgun) PENALTY on PHI-J.Avant False Start 5 yards enforced at CIN 48 - No Play.,13,10,2012 -20121213_CIN@PHI,3,23,29,PHI,CIN,3,21,53,(8:29) (Shotgun) B.Brown left end to PHI 45 for -2 yards (V.Burfict).,13,10,2012 -20121213_CIN@PHI,3,22,57,PHI,CIN,4,23,55,(7:57) M.McBriar punts 40 yards to CIN 15 Center-J.Dorenbos fair catch by B.Tate.,13,10,2012 -20121213_CIN@PHI,3,22,49,CIN,PHI,1,10,85,(7:49) (Shotgun) B.Green-Ellis up the middle to CIN 18 for 3 yards (T.Cole).,10,13,2012 -20121213_CIN@PHI,3,22,13,CIN,PHI,2,7,82,(7:13) (Shotgun) A.Dalton sacked at CIN 11 for -7 yards (F.Cox).,10,13,2012 -20121213_CIN@PHI,3,21,39,CIN,PHI,3,14,89,(6:39) (Shotgun) A.Dalton sacked at CIN 10 for -1 yards (sack split by F.Cox and B.Graham).,10,13,2012 -20121213_CIN@PHI,3,21,9,CIN,PHI,4,15,90,(6:09) K.Huber punts 49 yards to PHI 41 Center-C.Harris. D.Johnson to PHI 47 for 6 yards (J.Miles).,10,13,2012 -20121213_CIN@PHI,3,20,58,PHI,CIN,1,10,53,(5:58) (Shotgun) N.Foles pass deep left intended for J.Maclin INTERCEPTED by L.Hall at CIN 16. L.Hall to PHI 40 for 44 yards (N.Foles).,13,10,2012 -20121213_CIN@PHI,3,20,44,CIN,PHI,1,10,40,(5:44) (Shotgun) A.Dalton pass incomplete short right to J.Gresham [C.Thornton]. PENALTY on CIN-D.Roland Offensive Holding 10 yards enforced at PHI 40 - No Play.,10,13,2012 -20121213_CIN@PHI,3,20,37,CIN,PHI,1,20,50,(5:37) B.Green-Ellis left tackle to PHI 34 for 16 yards (N.Allen).,10,13,2012 -20121213_CIN@PHI,3,20,11,CIN,PHI,2,4,34,(5:11) B.Green-Ellis right guard to PHI 30 for 4 yards (C.Thornton).,10,13,2012 -20121213_CIN@PHI,3,19,30,CIN,PHI,1,10,30,(4:30) B.Green-Ellis left end to PHI 29 for 1 yard (F.Cox).,10,13,2012 -20121213_CIN@PHI,3,18,51,CIN,PHI,2,9,29,(3:51) (Shotgun) A.Dalton pass incomplete short left to B.Leonard.,10,13,2012 -20121213_CIN@PHI,3,18,46,CIN,PHI,3,9,29,(3:46) (Shotgun) A.Dalton pass short right to A.Green to PHI 18 for 11 yards (D.Rodgers-Cromartie).,10,13,2012 -20121213_CIN@PHI,3,18,11,CIN,PHI,1,10,18,(3:11) B.Green-Ellis right guard to PHI 14 for 4 yards (T.Cole).,10,13,2012 -20121213_CIN@PHI,3,17,31,CIN,PHI,2,6,14,(2:31) (Shotgun) A.Dalton scrambles left end ran ob at PHI 6 for 8 yards.,10,13,2012 -20121213_CIN@PHI,3,16,45,CIN,PHI,1,6,6,(1:45) PENALTY on CIN-A.Dalton Delay of Game 5 yards enforced at PHI 6 - No Play.,10,13,2012 -20121213_CIN@PHI,3,16,16,CIN,PHI,1,11,11,(1:16) (Shotgun) A.Dalton scrambles up the middle for 11 yards TOUCHDOWN.,10,13,2012 -20121213_CIN@PHI,3,16,16,CIN,PHI,,,11,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,10,13,2012 -20121213_CIN@PHI,3,16,16,CIN,PHI,,,11,J.Brown kicks 67 yards from CIN 35 to PHI -2. B.Boykin to PHI 23 for 25 yards (A.Jones).,17,13,2012 -20121213_CIN@PHI,3,16,5,PHI,CIN,1,10,77,(1:05) (Shotgun) N.Foles pass short middle to C.Harbor to PHI 31 for 8 yards (V.Burfict).,13,17,2012 -20121213_CIN@PHI,3,15,30,CIN,PHI,2,2,75,(:30) N.Foles FUMBLES (Aborted) at PHI 27 RECOVERED by CIN-W.Gilberry at PHI 25. W.Gilberry for 25 yards TOUCHDOWN.,17,13,2012 -20121213_CIN@PHI,3,15,30,CIN,PHI,,,75,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,17,13,2012 -20121213_CIN@PHI,3,15,30,CIN,PHI,,,75,J.Brown kicks 68 yards from CIN 35 to PHI -3. B.Boykin to PHI 18 for 21 yards (D.Herron). PENALTY on PHI-C.Matthews Offensive Holding 9 yards enforced at PHI 18.,24,13,2012 -20121213_CIN@PHI,3,15,21,PHI,CIN,1,10,91,(:21) N.Foles pass to C.Harbor to PHI 25 for 16 yards. FUMBLES RECOVERED by CIN-C.Crocker at PHI 25. C.Crocker to PHI 13 for 12 yards (R.Cooper).,13,24,2012 -20121213_CIN@PHI,3,15,5,CIN,PHI,1,10,13,(:05) B.Green-Ellis to PHI 13 for no gain. PENALTY on CIN-K.Zeitler Offensive Holding 10 yards enforced at PHI 13 - No Play.,24,13,2012 -20121213_CIN@PHI,4,15,0,CIN,PHI,1,20,23,(15:00) (Shotgun) A.Dalton pass incomplete short left (T.Cole).,24,13,2012 -20121213_CIN@PHI,4,14,54,CIN,PHI,2,20,23,(14:54) A.Hawkins left end ran ob at PHI 14 for 9 yards (D.Ryans).,24,13,2012 -20121213_CIN@PHI,4,14,22,CIN,PHI,3,11,14,(14:22) (Shotgun) A.Dalton pass incomplete short right to A.Green (D.Rodgers-Cromartie).,24,13,2012 -20121213_CIN@PHI,4,14,16,CIN,PHI,4,11,14,(14:16) J.Brown 32 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,24,13,2012 -20121213_CIN@PHI,4,14,16,CIN,PHI,,,14,J.Brown kicks 39 yards from CIN 35 to PHI 26. C.Thornton MUFFS catch RECOVERED by CIN-T.Mays at PHI 33. T.Mays to PHI 33 for no gain (C.Matthews).,27,13,2012 -20121213_CIN@PHI,4,14,5,CIN,PHI,1,10,33,(14:05) A.Dalton pass incomplete to A.Hawkins.,27,13,2012 -20121213_CIN@PHI,4,14,5,CIN,PHI,2,10,33,(14:05) B.Green-Ellis left tackle to PHI 26 for 7 yards (D.Ryans).,27,13,2012 -20121213_CIN@PHI,4,13,34,CIN,PHI,3,3,26,(13:34) A.Dalton pass incomplete short left to A.Green.,27,13,2012 -20121213_CIN@PHI,4,13,30,CIN,PHI,4,3,26,(13:30) (Field Goal formation) PENALTY on PHI Unsportsmanlike Conduct 13 yards enforced at PHI 26 - No Play. Defense simulated the snap count.,27,13,2012 -20121213_CIN@PHI,4,13,30,CIN,PHI,1,10,13,(13:30) B.Green-Ellis right end to PHI 5 for 8 yards (D.Ryans; J.Chaney).,27,13,2012 -20121213_CIN@PHI,4,12,50,CIN,PHI,2,2,5,(12:50) A.Dalton pass short right to A.Green for 5 yards TOUCHDOWN.,27,13,2012 -20121213_CIN@PHI,4,12,50,CIN,PHI,,,5,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,27,13,2012 -20121213_CIN@PHI,4,12,12,PHI,CIN,1,10,91,(12:12) N.Foles sacked at PHI 6 for -3 yards (W.Gilberry).,13,34,2012 -20121213_CIN@PHI,4,11,48,PHI,CIN,2,13,94,(11:48) (Shotgun) B.Brown left tackle to PHI 7 for 1 yard (T.Newman).,13,34,2012 -20121213_CIN@PHI,4,11,48,PHI,CIN,3,12,93,(11:48) N.Foles pass incomplete deep right to J.Maclin (T.Newman).,13,34,2012 -20121213_CIN@PHI,4,11,35,PHI,CIN,4,12,93,(11:35) M.McBriar punts 47 yards to CIN 46 Center-J.Dorenbos. A.Jones to PHI 47 for 7 yards (C.Matthews).,13,34,2012 -20121213_CIN@PHI,4,11,32,CIN,PHI,1,10,47,(11:32) B.Green-Ellis left tackle to PHI 48 for -1 yards (C.Thornton).,34,13,2012 -20121213_CIN@PHI,4,10,48,CIN,PHI,2,11,48,(10:48) B.Green-Ellis left end to PHI 48 for no gain (V.Curry).,34,13,2012 -20121213_CIN@PHI,4,10,6,CIN,PHI,3,12,48,(10:06) (Shotgun) A.Dalton pass short right to J.Gresham to PHI 34 for 14 yards (C.Jenkins).,34,13,2012 -20121213_CIN@PHI,4,9,18,CIN,PHI,1,10,34,(9:18) B.Green-Ellis right guard to PHI 32 for 2 yards (C.Thornton).,34,13,2012 -20121213_CIN@PHI,4,8,36,CIN,PHI,2,8,32,(8:36) B.Green-Ellis up the middle to PHI 29 for 3 yards (P.Hunt).,34,13,2012 -20121213_CIN@PHI,4,7,55,CIN,PHI,3,5,29,(7:55) B.Leonard left guard to PHI 22 for 7 yards (N.Allen).,34,13,2012 -20121213_CIN@PHI,4,7,7,CIN,PHI,1,10,22,(7:07) B.Green-Ellis right tackle to PHI 21 for 1 yard (B.Graham).,34,13,2012 -20121213_CIN@PHI,4,6,26,CIN,PHI,2,9,21,(6:26) A.Dalton pass short right to J.Gresham to PHI 13 for 8 yards (N.Allen).,34,13,2012 -20121213_CIN@PHI,4,5,51,CIN,PHI,3,1,13,(5:51) B.Green-Ellis up the middle to PHI 11 for 2 yards (F.Cox).,34,13,2012 -20121213_CIN@PHI,4,5,5,CIN,PHI,1,10,11,(5:05) B.Leonard right end to PHI 12 for -1 yards (M.Kendricks).,34,13,2012 -20121213_CIN@PHI,4,5,1,CIN,PHI,2,11,12,(5:01) B.Tate right end to PHI 12 for no gain (J.Chaney).,34,13,2012 -20121213_CIN@PHI,4,4,54,CIN,PHI,3,11,12,(4:54) D.Herron right end to PHI 6 for 6 yards (J.Chaney).,34,13,2012 -20121213_CIN@PHI,4,4,7,CIN,PHI,4,5,6,(4:07) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (N.Allen).,34,13,2012 -20121213_CIN@PHI,4,4,3,PHI,CIN,1,10,94,(4:03) (Shotgun) N.Foles pass incomplete short left to R.Cooper.,13,34,2012 -20121213_CIN@PHI,4,3,59,PHI,CIN,2,10,94,(3:59) (Shotgun) N.Foles pass incomplete deep left to R.Cooper.,13,34,2012 -20121213_CIN@PHI,4,3,50,PHI,CIN,3,10,94,(3:50) (Shotgun) N.Foles pass incomplete deep middle to J.Avant.,13,34,2012 -20121213_CIN@PHI,4,3,44,PHI,CIN,4,10,94,(3:44) M.McBriar punts 42 yards to PHI 48 Center-J.Dorenbos. B.Tate ran ob at PHI 28 for 20 yards. PHI-B.Hughes was injured during the play. PENALTY on CIN-E.Lamur Illegal Blindside Block 15 yards enforced at PHI 40. Penalty on CIN-D.Herron Illegal Blindside Block declined.,13,34,2012 -20121213_CIN@PHI,4,3,30,CIN,PHI,1,10,55,(3:30) D.Herron right tackle to CIN 47 for 2 yards (M.Kendricks).,34,13,2012 -20121213_CIN@PHI,4,2,51,CIN,PHI,2,8,53,(2:51) D.Herron right end to CIN 47 for no gain (J.Chaney).,34,13,2012 -20121213_CIN@PHI,4,2,7,CIN,PHI,3,8,53,(2:07) A.Dalton pass short right to J.Gresham to PHI 40 for 13 yards (J.Chaney).,34,13,2012 -20121213_CIN@PHI,4,1,59,CIN,PHI,1,10,40,(1:59) A.Dalton kneels to PHI 41 for -1 yards.,34,13,2012 -20121213_CIN@PHI,4,1,19,CIN,PHI,2,11,41,(1:19) A.Dalton kneels to PHI 42 for -1 yards.,34,13,2012 -20121213_CIN@PHI,4,0,38,CIN,PHI,3,12,42,(:38) A.Dalton kneels to PHI 43 for -1 yards.,34,13,2012 -20121213_CIN@PHI,4,0,38,CIN,PHI,,,42,                      ,34,13,2012 -20121216_NYG@ATL,1,0,0,ATL,NYG,,,42,M.Bosher kicks 71 yards from ATL 35 to NYG -6. D.Wilson to NYG 13 for 19 yards (C.Matthews).,0,0,2012 -20121216_NYG@ATL,1,59,56,NYG,ATL,1,10,87,(14:56) D.Wilson left tackle to NYG 16 for 3 yards (V.Walker; T.DeCoud).,0,0,2012 -20121216_NYG@ATL,1,59,16,NYG,ATL,2,7,84,(14:16) E.Manning pass short right intended for H.Nicks INTERCEPTED by A.Samuel at NYG 22. A.Samuel to NYG 16 for 6 yards (B.Pascoe).,0,0,2012 -20121216_NYG@ATL,1,59,3,ATL,NYG,1,10,16,(14:03) M.Turner right guard to NYG 13 for 3 yards (K.Rivers).,0,0,2012 -20121216_NYG@ATL,1,58,28,ATL,NYG,2,7,13,(13:28) M.Turner left end pushed ob at NYG 5 for 8 yards (S.Paysinger).,0,0,2012 -20121216_NYG@ATL,1,57,53,ATL,NYG,1,5,5,(12:53) M.Turner right guard to NYG 1 for 4 yards (L.Joseph).,0,0,2012 -20121216_NYG@ATL,1,57,14,ATL,NYG,2,1,1,(12:14) M.Johnson reported in as eligible. M.Turner right guard for 1 yard TOUCHDOWN.,0,0,2012 -20121216_NYG@ATL,1,57,14,ATL,NYG,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121216_NYG@ATL,1,57,14,ATL,NYG,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,7,0,2012 -20121216_NYG@ATL,1,57,12,NYG,ATL,1,10,80,(12:12) E.Manning pass short right to V.Cruz to NYG 24 for 4 yards (S.Weatherspoon). Pass tipped by 99-V. Walker.,0,7,2012 -20121216_NYG@ATL,1,56,41,NYG,ATL,2,6,76,(11:41) D.Wilson left tackle to NYG 28 for 4 yards (C.Hope).,0,7,2012 -20121216_NYG@ATL,1,55,59,NYG,ATL,3,2,72,(10:59) (Shotgun) D.Wilson left end to ATL 47 for 25 yards (S.Weatherspoon).,0,7,2012 -20121216_NYG@ATL,1,55,15,NYG,ATL,1,10,47,(10:15) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,0,7,2012 -20121216_NYG@ATL,1,55,11,NYG,ATL,2,10,47,(10:11) D.Wilson left end pushed ob at ATL 38 for 9 yards (D.Robinson).,0,7,2012 -20121216_NYG@ATL,1,54,41,NYG,ATL,3,1,38,(9:41) (Shotgun) E.Manning pass short middle to D.Hixon to ATL 19 for 19 yards (R.McClain).,0,7,2012 -20121216_NYG@ATL,1,53,54,NYG,ATL,1,10,19,(8:54) D.Wilson right guard to ATL 16 for 3 yards (A.Dent; T.DeCoud).,0,7,2012 -20121216_NYG@ATL,1,53,17,NYG,ATL,2,7,16,(8:17) E.Manning pass short middle to V.Cruz to ATL 12 for 4 yards (C.Hope).,0,7,2012 -20121216_NYG@ATL,1,52,34,NYG,ATL,3,3,12,(7:34) (Shotgun) E.Manning pass incomplete short left to D.Hixon [S.Weatherspoon].,0,7,2012 -20121216_NYG@ATL,1,52,29,NYG,ATL,4,3,12,(7:29) L.Tynes 30 yard field goal is No Good Wide Left Center-Z.DeOssie Holder-S.Weatherford.,0,7,2012 -20121216_NYG@ATL,1,52,25,ATL,NYG,1,10,80,(7:25) (Shotgun) M.Ryan pass short left to J.Jones to ATL 24 for 4 yards (J.Hosley).,7,0,2012 -20121216_NYG@ATL,1,51,41,ATL,NYG,2,6,76,(6:41) M.Turner left end to ATL 27 for 3 yards (J.Williams).,7,0,2012 -20121216_NYG@ATL,1,51,2,ATL,NYG,3,3,73,(6:02) (Shotgun) M.Ryan pass short right to R.White to ATL 32 for 5 yards (C.Webster). Penalty on NYG-C.Webster Defensive Holding declined.,7,0,2012 -20121216_NYG@ATL,1,50,42,ATL,NYG,1,10,68,(5:42) Jz. Rodgers left tackle to ATL 35 for 3 yards (C.Canty).,7,0,2012 -20121216_NYG@ATL,1,50,5,ATL,NYG,2,7,65,(5:05) M.Ryan pass short right to M.Cox to ATL 46 for 11 yards (S.Brown).,7,0,2012 -20121216_NYG@ATL,1,49,28,ATL,NYG,1,10,54,(4:28) Jz. Rodgers right guard to NYG 48 for 6 yards (J.Williams).,7,0,2012 -20121216_NYG@ATL,1,48,50,ATL,NYG,2,4,48,(3:50) (Shotgun) M.Ryan pass deep left to H.Douglas pushed ob at NYG 11 for 37 yards (W.Hill).,7,0,2012 -20121216_NYG@ATL,1,48,13,ATL,NYG,1,10,11,(3:13) M.Turner left tackle to NYG 9 for 2 yards (C.Blackburn).,7,0,2012 -20121216_NYG@ATL,1,47,31,ATL,NYG,2,8,9,(2:31) (Shotgun) M.Ryan pass short left to J.Snelling to NYG 12 for -3 yards (C.Blackburn).,7,0,2012 -20121216_NYG@ATL,1,46,50,ATL,NYG,3,11,12,(1:50) (Shotgun) M.Ryan pass short middle to T.Gonzalez for 12 yards TOUCHDOWN [O.Umenyiora].,7,0,2012 -20121216_NYG@ATL,1,46,50,ATL,NYG,,,12,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,7,0,2012 -20121216_NYG@ATL,1,46,50,ATL,NYG,,,12,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,14,0,2012 -20121216_NYG@ATL,1,46,43,NYG,ATL,1,10,80,(1:43) E.Manning pass incomplete deep middle to H.Nicks.,0,14,2012 -20121216_NYG@ATL,1,46,36,NYG,ATL,2,10,80,(1:36) D.Wilson right guard to NYG 23 for 3 yards (J.Babineaux; C.Hope).,0,14,2012 -20121216_NYG@ATL,1,45,54,NYG,ATL,3,7,77,(:54) (Shotgun) E.Manning sacked at NYG 21 for -2 yards (K.Biermann).,0,14,2012 -20121216_NYG@ATL,1,45,34,NYG,ATL,4,9,79,(:34) S.Weatherford punts 58 yards to ATL 21 Center-Z.DeOssie. D.Franks to ATL 25 for 4 yards (M.Kiwanuka).,0,14,2012 -20121216_NYG@ATL,1,45,22,ATL,NYG,1,10,75,(:22) M.Turner right end to ATL 26 for 1 yard (O.Umenyiora; R.Bernard).,14,0,2012 -20121216_NYG@ATL,2,45,0,ATL,NYG,2,9,74,(15:00) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 35 for 9 yards (C.Webster).,14,0,2012 -20121216_NYG@ATL,2,44,23,ATL,NYG,1,10,65,(14:23) (Shotgun) M.Ryan pass short right to T.Gonzalez pushed ob at ATL 40 for 5 yards (M.Boley).,14,0,2012 -20121216_NYG@ATL,2,43,41,ATL,NYG,2,5,60,(13:41) (Shotgun) Jz. Rodgers left end to ATL 41 for 1 yard (J.Pierre-Paul).,14,0,2012 -20121216_NYG@ATL,2,42,59,ATL,NYG,3,4,59,(12:59) M.Ryan pass incomplete short right to T.Gonzalez (C.Blackburn).,14,0,2012 -20121216_NYG@ATL,2,42,55,ATL,NYG,4,4,59,(12:55) M.Bosher punts 39 yards to NYG 20 Center-J.Harris fair catch by D.Hixon.,14,0,2012 -20121216_NYG@ATL,2,42,47,NYG,ATL,1,10,80,(12:47) D.Wilson right guard to NYG 19 for -1 yards (J.Abraham). NYG-C.Snee was injured during the play. His return is Questionable.,0,14,2012 -20121216_NYG@ATL,2,42,18,NYG,ATL,2,11,81,(12:18) E.Manning pass short right intended for H.Nicks INTERCEPTED by T.DeCoud at NYG 32. T.DeCoud to NYG 27 for 5 yards (J.Cordle).,0,14,2012 -20121216_NYG@ATL,2,42,8,ATL,NYG,1,10,27,(12:08) M.Johnson reported in as eligible. M.Turner left tackle to NYG 18 for 9 yards (A.Rolle; S.Brown).,14,0,2012 -20121216_NYG@ATL,2,41,30,ATL,NYG,2,1,18,(11:30) M.Turner right guard to NYG 18 for no gain (L.Joseph).,14,0,2012 -20121216_NYG@ATL,2,40,51,ATL,NYG,3,1,18,(10:51) H.Douglas left end pushed ob at NYG 19 for -1 yards (C.Blackburn; J.Hosley).,14,0,2012 -20121216_NYG@ATL,2,40,26,ATL,NYG,4,2,19,(10:26) M.Bryant 38 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,14,0,2012 -20121216_NYG@ATL,2,40,26,ATL,NYG,,,19,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,0,2012 -20121216_NYG@ATL,2,40,22,NYG,ATL,1,10,80,(10:22) E.Manning pass incomplete short right to D.Wilson.,0,17,2012 -20121216_NYG@ATL,2,40,17,NYG,ATL,2,10,80,(10:17) (Shotgun) K.Lumpkin right tackle to NYG 29 for 9 yards (C.Hope). ATL-C.Hope was injured during the play. His return is Questionable.,0,17,2012 -20121216_NYG@ATL,2,39,34,NYG,ATL,3,1,71,(9:34) (Shotgun) K.Lumpkin right tackle to NYG 37 for 8 yards (D.Franks).,0,17,2012 -20121216_NYG@ATL,2,38,59,NYG,ATL,1,10,63,(8:59) (Shotgun) E.Manning pass incomplete deep right to J.Jernigan (D.Franks).,0,17,2012 -20121216_NYG@ATL,2,38,54,NYG,ATL,2,10,63,(8:54) (Shotgun) K.Lumpkin left end to ATL 41 for 22 yards (D.Franks).,0,17,2012 -20121216_NYG@ATL,2,38,12,NYG,ATL,1,10,41,(8:12) (Shotgun) E.Manning pass short left to H.Nicks to ATL 33 for 8 yards (T.DeCoud).,0,17,2012 -20121216_NYG@ATL,2,37,27,NYG,ATL,2,2,33,(7:27) (Shotgun) K.Lumpkin right tackle to ATL 33 for no gain (S.Nicholas).,0,17,2012 -20121216_NYG@ATL,2,36,48,NYG,ATL,3,2,33,(6:48) (Shotgun) K.Lumpkin right guard to ATL 32 for 1 yard (S.Weatherspoon).,0,17,2012 -20121216_NYG@ATL,2,36,8,NYG,ATL,4,1,32,(6:08) D.Wilson left tackle to ATL 32 for no gain (S.Weatherspoon).,0,17,2012 -20121216_NYG@ATL,2,36,3,ATL,NYG,1,10,68,(6:03) (Shotgun) M.Ryan pass short right to J.Snelling pushed ob at ATL 46 for 14 yards (W.Hill).,17,0,2012 -20121216_NYG@ATL,2,35,33,ATL,NYG,1,10,54,(5:33) (Shotgun) M.Ryan pass incomplete short left to R.White [O.Umenyiora].,17,0,2012 -20121216_NYG@ATL,2,35,28,ATL,NYG,2,10,54,(5:28) (Shotgun) M.Ryan sacked at ATL 41 for -5 yards (C.Canty).,17,0,2012 -20121216_NYG@ATL,2,35,23,ATL,NYG,3,15,59,(5:23) (Shotgun) PENALTY on ATL-J.Blalock False Start 5 yards enforced at ATL 41 - No Play.,17,0,2012 -20121216_NYG@ATL,2,34,33,ATL,NYG,3,20,64,(4:33) (Shotgun) M.Ryan pass short right to J.Snelling to ATL 39 for 3 yards (J.Williams; W.Hill).,17,0,2012 -20121216_NYG@ATL,2,33,50,ATL,NYG,4,17,61,(3:50) M.Bosher punts 61 yards to NYG 0 Center-J.Harris penalty enforced. PENALTY on NYG-J.Tryon Offensive Holding 10 yards enforced at NYG 20.,17,0,2012 -20121216_NYG@ATL,2,33,42,NYG,ATL,1,10,90,(3:42) (Shotgun) E.Manning pass short left to D.Hixon to NYG 19 for 9 yards (D.Robinson).,0,17,2012 -20121216_NYG@ATL,2,33,4,NYG,ATL,2,1,81,(3:04) (Shotgun) E.Manning pass incomplete short left to D.Wilson.,0,17,2012 -20121216_NYG@ATL,2,33,0,NYG,ATL,3,1,81,(3:00) (Shotgun) E.Manning pass short left to H.Nicks to NYG 43 for 24 yards (T.DeCoud).,0,17,2012 -20121216_NYG@ATL,2,32,52,NYG,ATL,1,10,57,(2:52) (Shotgun) E.Manning pass short right to D.Hixon pushed ob at ATL 20 for 37 yards (C.Hope).,0,17,2012 -20121216_NYG@ATL,2,32,25,NYG,ATL,1,10,20,(2:25) (Shotgun) K.Lumpkin right guard to ATL 18 for 2 yards (S.Nicholas).,0,17,2012 -20121216_NYG@ATL,2,32,0,NYG,ATL,2,8,18,(2:00) (Shotgun) E.Manning pass short middle to D.Hixon to ATL 11 for 7 yards (R.McClain).,0,17,2012 -20121216_NYG@ATL,2,31,23,NYG,ATL,3,1,11,(1:23) K.Lumpkin left end to ATL 11 for no gain (S.Weatherspoon; S.Nicholas).,0,17,2012 -20121216_NYG@ATL,2,31,14,NYG,ATL,4,1,11,(1:14) (Shotgun) E.Manning pass incomplete short right to V.Cruz (A.Samuel).,0,17,2012 -20121216_NYG@ATL,2,31,10,ATL,NYG,1,10,89,(1:10) Jz. Rodgers left end to ATL 14 for 3 yards (J.Pierre-Paul).,17,0,2012 -20121216_NYG@ATL,2,30,23,ATL,NYG,2,7,86,(:23) M.Ryan kneels to ATL 13 for -1 yards.,17,0,2012 -20121216_NYG@ATL,3,30,0,NYG,ATL,,,86,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,0,17,2012 -20121216_NYG@ATL,3,29,56,ATL,NYG,1,10,80,(14:56) M.Turner right tackle to ATL 23 for 3 yards (C.Blackburn).,17,0,2012 -20121216_NYG@ATL,3,29,20,ATL,NYG,2,7,77,(14:20) (Shotgun) M.Ryan pass incomplete short right to R.White.,17,0,2012 -20121216_NYG@ATL,3,29,16,ATL,NYG,3,7,77,(14:16) (Shotgun) M.Ryan pass short middle to H.Douglas pushed ob at ATL 33 for 10 yards (W.Hill).,17,0,2012 -20121216_NYG@ATL,3,28,50,ATL,NYG,1,10,67,(13:50) M.Ryan pass incomplete deep left to R.White (J.Hosley).,17,0,2012 -20121216_NYG@ATL,3,28,42,ATL,NYG,2,10,67,(13:42) M.Turner left guard to ATL 47 for 14 yards (W.Hill; S.Brown).,17,0,2012 -20121216_NYG@ATL,3,27,56,ATL,NYG,1,10,53,(12:56) Jz. Rodgers right guard to 50 for 3 yards (C.Canty).,17,0,2012 -20121216_NYG@ATL,3,27,15,ATL,NYG,2,7,50,(12:15) (Shotgun) M.Ryan pass short left to J.Jones to NYG 40 for 10 yards (J.Hosley).,17,0,2012 -20121216_NYG@ATL,3,26,39,ATL,NYG,1,10,40,(11:39) M.Ryan pass deep left to J.Jones for 40 yards TOUCHDOWN.,17,0,2012 -20121216_NYG@ATL,3,26,39,ATL,NYG,,,40,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,17,0,2012 -20121216_NYG@ATL,3,26,39,ATL,NYG,,,40,M.Bosher kicks 70 yards from ATL 35 to NYG -5. D.Wilson to NYG 20 for 25 yards (J.Snelling).,24,0,2012 -20121216_NYG@ATL,3,26,26,NYG,ATL,1,10,80,(11:26) D.Wilson left tackle to NYG 22 for 2 yards (S.Weatherspoon).,0,24,2012 -20121216_NYG@ATL,3,25,49,NYG,ATL,2,8,78,(10:49) (Shotgun) D.Wilson right end to NYG 26 for 4 yards (S.Nicholas). Penalty on NYG Illegal Shift declined.,0,24,2012 -20121216_NYG@ATL,3,25,17,NYG,ATL,3,4,74,(10:17) (Shotgun) E.Manning pass incomplete deep left to V.Cruz. PENALTY on ATL-C.Hope Unnecessary Roughness 15 yards enforced at NYG 26 - No Play. Blow to the head.,0,24,2012 -20121216_NYG@ATL,3,25,11,NYG,ATL,1,10,59,(10:11) (Shotgun) E.Manning pass short middle to M.Bennett to ATL 44 for 15 yards (A.Dent; A.Samuel).,0,24,2012 -20121216_NYG@ATL,3,24,31,NYG,ATL,1,10,44,(9:31) E.Manning pass short right to H.Nicks to ATL 36 for 8 yards (A.Dent; T.DeCoud).,0,24,2012 -20121216_NYG@ATL,3,23,55,NYG,ATL,2,2,36,(8:55) D.Wilson left guard to ATL 33 for 3 yards (S.Weatherspoon).,0,24,2012 -20121216_NYG@ATL,3,23,19,NYG,ATL,1,10,33,(8:19) D.Wilson left tackle to ATL 33 for no gain (S.Nicholas).,0,24,2012 -20121216_NYG@ATL,3,22,39,NYG,ATL,2,10,33,(7:39) E.Manning pass incomplete short left to H.Nicks.,0,24,2012 -20121216_NYG@ATL,3,22,34,NYG,ATL,3,10,33,(7:34) (Shotgun) E.Manning pass short middle to D.Hixon to ATL 25 for 8 yards (R.McClain).,0,24,2012 -20121216_NYG@ATL,3,21,57,NYG,ATL,4,2,25,(6:57) (Shotgun) E.Manning pass incomplete short right to K.Lumpkin (J.Babineaux).,0,24,2012 -20121216_NYG@ATL,3,21,53,ATL,NYG,1,10,74,(6:53) M.Ryan pass incomplete short left to M.Turner.,24,0,2012 -20121216_NYG@ATL,3,21,46,ATL,NYG,2,10,74,(6:46) Jz. Rodgers left end to ATL 27 for 1 yard (J.Tuck).,24,0,2012 -20121216_NYG@ATL,3,21,4,ATL,NYG,3,9,73,(6:04) (Shotgun) M.Ryan pass deep right to H.Douglas to NYG 37 for 36 yards (S.Brown). Penalty on ATL-R.White Personal Foul offsetting enforced at NYG 37. Penalty on NYG-C.Webster Personal Foul offsetting.,24,0,2012 -20121216_NYG@ATL,3,20,31,ATL,NYG,1,10,37,(5:31) M.Turner left tackle to NYG 33 for 4 yards (C.Canty).,24,0,2012 -20121216_NYG@ATL,3,20,0,ATL,NYG,2,6,33,(5:00) M.Ryan pass short left to J.Jones to NYG 35 for -2 yards (O.Umenyiora).,24,0,2012 -20121216_NYG@ATL,3,19,17,ATL,NYG,3,8,35,(4:17) M.Ryan pass short right to T.Gonzalez to NYG 25 for 10 yards (C.Webster).,24,0,2012 -20121216_NYG@ATL,3,18,30,ATL,NYG,1,10,25,(3:30) M.Turner left guard to NYG 24 for 1 yard (C.Blackburn; M.Boley).,24,0,2012 -20121216_NYG@ATL,3,17,51,ATL,NYG,2,9,24,(2:51) J.Jones left end pushed ob at NYG 6 for 18 yards (S.Brown).,24,0,2012 -20121216_NYG@ATL,3,17,19,ATL,NYG,1,6,6,(2:19) M.Johnson reported in as eligible. Jz. Rodgers right tackle to NYG 6 for no gain (R.Bernard).,24,0,2012 -20121216_NYG@ATL,3,16,36,ATL,NYG,2,6,6,(1:36) Jz. Rodgers left tackle to NYG 1 for 5 yards (M.Kiwanuka).,24,0,2012 -20121216_NYG@ATL,3,15,59,ATL,NYG,3,1,1,(:59) M.Johnson reported in as eligible. M.Turner left end to NYG 1 for no gain (J.Tuck).,24,0,2012 -20121216_NYG@ATL,3,15,14,ATL,NYG,4,1,1,(:14) M.Bryant 19 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,24,0,2012 -20121216_NYG@ATL,3,15,14,ATL,NYG,,,1,M.Bosher kicks 71 yards from ATL 35 to NYG -6. D.Wilson to NYG 16 for 22 yards (K.Biermann).,27,0,2012 -20121216_NYG@ATL,3,15,5,NYG,ATL,1,10,84,(:05) (Shotgun) K.Lumpkin left tackle to NYG 16 for no gain (P.Jerry).,0,27,2012 -20121216_NYG@ATL,4,15,0,NYG,ATL,2,10,84,(15:00) (Shotgun) E.Manning pass short right to M.Bennett to NYG 25 for 9 yards (S.Weatherspoon).,0,27,2012 -20121216_NYG@ATL,4,14,57,NYG,ATL,3,10,84,(14:57) (Shotgun) E.Manning pass short right to V.Cruz to NYG 23 for 7 yards (R.McClain; S.Weatherspoon).,0,27,2012 -20121216_NYG@ATL,4,14,25,NYG,ATL,4,3,77,(14:25) S.Weatherford punts 52 yards to ATL 25 Center-Z.DeOssie. D.Franks to ATL 31 for 6 yards (Z.DeOssie). New York Giants challenged the fumble ruling and the play was Upheld. (Timeout #3 at 14:12.),0,27,2012 -20121216_NYG@ATL,4,14,11,ATL,NYG,1,10,69,(14:11) Jz. Rodgers right tackle to ATL 33 for 2 yards (C.Canty).,27,0,2012 -20121216_NYG@ATL,4,13,30,ATL,NYG,2,8,67,(13:30) M.Ryan pass short left to T.Gonzalez to ATL 41 for 8 yards (C.Blackburn).,27,0,2012 -20121216_NYG@ATL,4,12,44,ATL,NYG,1,10,59,(12:44) Jz. Rodgers left guard to ATL 39 for -2 yards (S.Paysinger).,27,0,2012 -20121216_NYG@ATL,4,12,3,ATL,NYG,2,12,61,(12:03) M.Ryan pass short right to M.Turner to ATL 48 for 9 yards (O.Umenyiora; S.Paysinger).,27,0,2012 -20121216_NYG@ATL,4,11,24,ATL,NYG,3,3,52,(11:24) (Shotgun) M.Ryan pass short right to T.Gonzalez to NYG 47 for 5 yards (W.Hill).,27,0,2012 -20121216_NYG@ATL,4,10,35,ATL,NYG,1,10,47,(10:35) M.Turner left guard to NYG 48 for -1 yards (W.Hill).,27,0,2012 -20121216_NYG@ATL,4,9,50,ATL,NYG,2,11,48,(9:50) M.Johnson reported in as eligible. J.Snelling left guard to NYG 40 for 8 yards (M.Kiwanuka).,27,0,2012 -20121216_NYG@ATL,4,9,4,ATL,NYG,3,3,40,(9:04) (Shotgun) M.Ryan pass short middle to R.White to NYG 29 for 11 yards (J.Hosley). Penalty on NYG-O.Umenyiora Defensive Offside declined.,27,0,2012 -20121216_NYG@ATL,4,8,26,ATL,NYG,1,10,29,(8:26) Jz. Rodgers right tackle to NYG 26 for 3 yards (S.Paysinger).,27,0,2012 -20121216_NYG@ATL,4,7,42,ATL,NYG,2,7,26,(7:42) A.Smith left end to NYG 25 for 1 yard (A.Rolle). PENALTY on ATL-T.Gonzalez Offensive Holding 10 yards enforced at NYG 26 - No Play.,27,0,2012 -20121216_NYG@ATL,4,7,12,ATL,NYG,2,17,36,(7:12) M.Ryan pass short right to Jz. Rodgers to NYG 22 for 14 yards (W.Hill).,27,0,2012 -20121216_NYG@ATL,4,6,26,ATL,NYG,3,3,22,(6:26) (Shotgun) M.Ryan pass short left to J.Jones pushed ob at NYG 3 for 19 yards (S.Brown).,27,0,2012 -20121216_NYG@ATL,4,5,50,ATL,NYG,1,3,3,(5:50) M.Johnson reported in as eligible. M.Turner right tackle to NYG 3 for no gain (W.Hill; M.Kiwanuka).,27,0,2012 -20121216_NYG@ATL,4,5,4,ATL,NYG,2,3,3,(5:04) M.Ryan pass short right to J.Jones for 3 yards TOUCHDOWN.,27,0,2012 -20121216_NYG@ATL,4,5,4,ATL,NYG,,,3,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,27,0,2012 -20121216_NYG@ATL,4,5,4,ATL,NYG,,,3,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,34,0,2012 -20121216_NYG@ATL,4,4,57,NYG,ATL,1,10,80,(4:57) (Shotgun) E.Manning pass short left to D.Wilson to NYG 31 for 11 yards (D.Franks; S.Weatherspoon).,0,34,2012 -20121216_NYG@ATL,4,4,18,NYG,ATL,1,10,69,(4:18) (Shotgun) K.Lumpkin left end to NYG 28 for -3 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-C.Hope at 50. C.Hope to 50 for no gain (M.Bennett). PENALTY on NYG-W.Beatty Personal Foul 15 yards enforced at 50. Backward pass from the NYG21 to the NYG20.,0,34,2012 -20121216_NYG@ATL,4,4,6,ATL,NYG,1,10,35,(4:06) J.Snelling right tackle to NYG 28 for 7 yards (M.Boley; R.Torain).,34,0,2012 -20121216_NYG@ATL,4,3,58,ATL,NYG,2,3,28,(3:58) J.Snelling right guard to NYG 17 for 11 yards (S.Brown).,34,0,2012 -20121216_NYG@ATL,4,3,7,ATL,NYG,1,10,17,(3:07) J.Snelling right guard to NYG 17 for no gain (C.Blackburn).,34,0,2012 -20121216_NYG@ATL,4,2,21,ATL,NYG,2,10,17,(2:21) J.Snelling right guard to NYG 13 for 4 yards (R.Bernard).,34,0,2012 -20121216_NYG@ATL,4,2,0,ATL,NYG,3,6,13,(2:00) J.Snelling right end to NYG 4 for 9 yards (S.Brown).,34,0,2012 -20121216_NYG@ATL,4,1,11,ATL,NYG,1,4,4,(1:11) L.McCown kneels to NYG 6 for -2 yards.,34,0,2012 -20121216_NYG@ATL,4,1,11,ATL,NYG,2,6,6,(1:11) L.McCown kneels to NYG 7 for -1 yards.,34,0,2012 -20121216_NYG@ATL,4,1,11,ATL,NYG,,,6,                      ,34,0,2012 -20121216_DEN@BAL,1,1,0,BAL,DEN,,,6,J.Tucker kicks 74 yards from BLT 35 to DEN -9. T.Holliday Touchback.,0,0,2012 -20121216_DEN@BAL,1,60,0,DEN,BAL,1,10,80,(15:00) P.Manning pass incomplete deep left to D.Thomas.,0,0,2012 -20121216_DEN@BAL,1,59,55,DEN,BAL,2,10,80,(14:55) K.Moreno left tackle to DEN 19 for -1 yards (C.Williams).,0,0,2012 -20121216_DEN@BAL,1,59,10,DEN,BAL,3,11,81,(14:10) (No Huddle Shotgun) P.Manning pass short right to K.Moreno to DEN 25 for 6 yards (J.Bynes).,0,0,2012 -20121216_DEN@BAL,1,58,35,DEN,BAL,4,5,75,(13:35) (Punt formation) B.Colquitt punts 40 yards to BLT 35 Center-A.Brewer. J.Jones to BLT 45 for 10 yards (A.Brewer).,0,0,2012 -20121216_DEN@BAL,1,58,22,BAL,DEN,1,10,55,(13:22) J.Flacco pass short left to V.Leach to DEN 47 for 8 yards (C.Bailey).,0,0,2012 -20121216_DEN@BAL,1,57,52,BAL,DEN,2,2,47,(12:52) R.Rice right guard to DEN 46 for 1 yard (C.Bailey).,0,0,2012 -20121216_DEN@BAL,1,57,17,BAL,DEN,3,1,46,(12:17) J.Flacco up the middle to DEN 45 for 1 yard (J.Bannan). FUMBLES (J.Bannan) RECOVERED by DEN-R.Moore at DEN 47. R.Moore to DEN 47 for no gain (T.Smith).,0,0,2012 -20121216_DEN@BAL,1,57,9,DEN,BAL,1,10,53,(12:09) (Shotgun) P.Manning pass short left to E.Decker to BLT 48 for 5 yards (B.Ayanbadejo).,0,0,2012 -20121216_DEN@BAL,1,56,40,DEN,BAL,2,5,48,(11:40) (Shotgun) R.Hillman right end to BLT 42 for 6 yards (J.Bynes).,0,0,2012 -20121216_DEN@BAL,1,56,7,DEN,BAL,1,10,42,(11:07) P.Manning pass short left to E.Decker to BLT 33 for 9 yards (C.Williams).,0,0,2012 -20121216_DEN@BAL,1,55,39,DEN,BAL,2,1,33,(10:39) (No Huddle) R.Hillman right guard to BLT 31 for 2 yards (T.Suggs).,0,0,2012 -20121216_DEN@BAL,1,55,3,DEN,BAL,1,10,31,(10:03) (Shotgun) P.Manning pass incomplete deep right to D.Thomas.,0,0,2012 -20121216_DEN@BAL,1,54,56,DEN,BAL,2,10,31,(9:56) (No Huddle Shotgun) P.Manning pass incomplete deep right to D.Thomas.,0,0,2012 -20121216_DEN@BAL,1,54,52,DEN,BAL,3,10,31,(9:52) (No Huddle Shotgun) P.Manning pass short left to B.Stokley to BLT 17 for 14 yards.,0,0,2012 -20121216_DEN@BAL,1,54,32,DEN,BAL,1,10,17,(9:32) (No Huddle Shotgun) K.Moreno left guard to BLT 10 for 7 yards (H.Ngata). PENALTY on DEN-J.Dreessen Illegal Motion 5 yards enforced at BLT 17 - No Play.,0,0,2012 -20121216_DEN@BAL,1,54,11,DEN,BAL,1,15,22,(9:11) (No Huddle Shotgun) P.Manning pass short left to J.Dreessen to BLT 14 for 8 yards (B.Ayanbadejo).,0,0,2012 -20121216_DEN@BAL,1,53,32,DEN,BAL,2,7,14,(8:32) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to BLT 14 for no gain (C.Johnson).,0,0,2012 -20121216_DEN@BAL,1,52,54,DEN,BAL,3,7,14,(7:54) (No Huddle Shotgun) P.Manning pass short middle to D.Thomas to BLT 9 for 5 yards (C.Williams).,0,0,2012 -20121216_DEN@BAL,1,52,16,DEN,BAL,4,2,9,(7:16) (Field Goal formation) M.Prater 27 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121216_DEN@BAL,1,52,16,DEN,BAL,,,9,M.Prater kicks 73 yards from DEN 35 to BLT -8. J.Jones to BLT 33 for 41 yards (M.Prater). PENALTY on BLT-L.Williams Illegal Block Above the Waist 6 yards enforced at BLT 12.,3,0,2012 -20121216_DEN@BAL,1,52,6,BAL,DEN,1,10,94,(7:06) R.Rice right guard to BLT 8 for 2 yards (K.Brooking).,0,3,2012 -20121216_DEN@BAL,1,51,38,BAL,DEN,2,8,92,(6:38) J.Flacco pass incomplete short middle to R.Rice [E.Dumervil].,0,3,2012 -20121216_DEN@BAL,1,51,33,BAL,DEN,3,8,92,(6:33) (Shotgun) J.Flacco pass incomplete short right to T.Doss [R.Ayers].,0,3,2012 -20121216_DEN@BAL,1,51,28,BAL,DEN,4,8,92,(6:28) (Punt formation) S.Koch punts 45 yards to DEN 47 Center-M.Cox. T.Holliday ran ob at DEN 48 for 1 yard.,0,3,2012 -20121216_DEN@BAL,1,51,20,DEN,BAL,1,10,52,(6:20) K.Moreno left guard to BLT 47 for 5 yards (J.Ihedigbo).,3,0,2012 -20121216_DEN@BAL,1,50,57,DEN,BAL,2,5,47,(5:57) (No Huddle) K.Moreno up the middle to BLT 43 for 4 yards (A.Jones).,3,0,2012 -20121216_DEN@BAL,1,50,20,DEN,BAL,3,1,43,(5:20) (No Huddle Shotgun) P.Manning pass incomplete short left to J.Dreessen.,3,0,2012 -20121216_DEN@BAL,1,50,16,DEN,BAL,4,1,43,(5:16) (Punt formation) B.Colquitt punts 29 yards to BLT 14 Center-A.Brewer fair catch by T.Doss.,3,0,2012 -20121216_DEN@BAL,1,50,9,BAL,DEN,1,10,86,(5:09) B.Pierce left end to BLT 14 for no gain (K.Brooking).,0,3,2012 -20121216_DEN@BAL,1,49,42,BAL,DEN,2,10,86,(4:42) (No Huddle) B.Pierce right guard to BLT 14 for no gain (D.Wolfe).,0,3,2012 -20121216_DEN@BAL,1,49,11,BAL,DEN,3,10,86,(4:11) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to BLT 23 for 9 yards (M.Adams).,0,3,2012 -20121216_DEN@BAL,1,48,34,BAL,DEN,4,1,77,(3:34) (Punt formation) S.Koch punts 46 yards to DEN 31 Center-M.Cox. T.Holliday ran ob at DEN 31 for no gain.,0,3,2012 -20121216_DEN@BAL,1,48,27,DEN,BAL,1,10,69,(3:27) (No Huddle) P.Manning pass incomplete short middle to K.Moreno (J.Bynes) [P.Kruger].,3,0,2012 -20121216_DEN@BAL,1,48,21,DEN,BAL,2,10,69,(3:21) (No Huddle Shotgun) P.Manning pass incomplete short right to B.Stokley (C.Upshaw).,3,0,2012 -20121216_DEN@BAL,1,48,16,DEN,BAL,3,10,69,(3:16) (No Huddle Shotgun) P.Manning sacked at DEN 25 for -6 yards (P.McPhee).,3,0,2012 -20121216_DEN@BAL,1,47,39,DEN,BAL,4,16,75,(2:39) (Punt formation) B.Colquitt punts 43 yards to BLT 32 Center-A.Brewer. J.Jones MUFFS catch touched at BLT 32 and recovers at BLT 32.,3,0,2012 -20121216_DEN@BAL,1,47,30,BAL,DEN,1,10,68,(2:30) J.Flacco pass short right to V.Leach to BLT 35 for 3 yards (C.Bailey W.Woodyard).,0,3,2012 -20121216_DEN@BAL,1,46,58,BAL,DEN,2,7,65,(1:58) J.Flacco pass short right to R.Rice to BLT 34 for -1 yards (V.Miller).,0,3,2012 -20121216_DEN@BAL,1,46,18,BAL,DEN,3,8,66,(1:18) (Shotgun) J.Flacco pass incomplete short left to T.Doss [M.Adams].,0,3,2012 -20121216_DEN@BAL,1,46,13,BAL,DEN,4,8,66,(1:13) (Punt formation) S.Koch punts 50 yards to DEN 16 Center-M.Cox. T.Holliday to DEN 22 for 6 yards (A.McClellan).,0,3,2012 -20121216_DEN@BAL,1,46,3,DEN,BAL,1,10,78,(1:03) (No Huddle) K.Moreno right guard to DEN 42 for 20 yards (J.Ihedigbo C.Graham).,3,0,2012 -20121216_DEN@BAL,1,45,39,DEN,BAL,1,10,58,(:39) (No Huddle) K.Moreno left guard to DEN 45 for 3 yards (J.Bynes P.Kruger).,3,0,2012 -20121216_DEN@BAL,1,45,10,DEN,BAL,2,7,55,(:10) P.Manning pass short right to E.Decker pushed ob at BLT 41 for 14 yards (J.Smith).,3,0,2012 -20121216_DEN@BAL,2,45,0,DEN,BAL,1,10,41,(15:00) K.Moreno left guard to BLT 32 for 9 yards (E.Reed B.Ayanbadejo).,3,0,2012 -20121216_DEN@BAL,2,44,39,DEN,BAL,2,1,32,(14:39) (No Huddle) K.Moreno left guard to BLT 29 for 3 yards (J.Bynes).,3,0,2012 -20121216_DEN@BAL,2,44,1,DEN,BAL,1,10,29,(14:01) P.Manning pass incomplete deep middle to D.Thomas (C.Williams).,3,0,2012 -20121216_DEN@BAL,2,43,54,DEN,BAL,2,10,29,(13:54) K.Moreno up the middle to BLT 20 for 9 yards (J.Bynes T.Cody).,3,0,2012 -20121216_DEN@BAL,2,43,17,DEN,BAL,3,1,20,(13:17) (No Huddle) K.Moreno right guard to BLT 18 for 2 yards (B.Ayanbadejo).,3,0,2012 -20121216_DEN@BAL,2,42,45,DEN,BAL,1,10,18,(12:45) J.Hester left guard to BLT 15 for 3 yards (J.Ihedigbo).,3,0,2012 -20121216_DEN@BAL,2,42,12,DEN,BAL,2,7,15,(12:12) (No Huddle Shotgun) P.Manning pass short right to E.Decker for 15 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (No Huddle Shotgun) P.Manning pass short right to E.Decker ran ob at BLT 1 for 14 yards (J.Smith).,3,0,2012 -20121216_DEN@BAL,2,41,59,DEN,BAL,1,1,1,(11:59) J.Hester left guard for 1 yard TOUCHDOWN.,3,0,2012 -20121216_DEN@BAL,2,41,59,DEN,BAL,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,3,0,2012 -20121216_DEN@BAL,2,41,59,DEN,BAL,,,1,M.Prater kicks 57 yards from DEN 35 to BLT 8. A.Allen to BLT 28 for 20 yards (S.Johnson).,10,0,2012 -20121216_DEN@BAL,2,41,44,BAL,DEN,1,10,72,(11:44) R.Rice right guard to BLT 30 for 2 yards (D.Wolfe V.Miller).,0,10,2012 -20121216_DEN@BAL,2,41,5,BAL,DEN,2,8,70,(11:05) J.Flacco pass incomplete deep middle to A.Boldin.,0,10,2012 -20121216_DEN@BAL,2,40,59,BAL,DEN,3,8,70,(10:59) (No Huddle Shotgun) J.Flacco pass incomplete short middle to D.Pitta.,0,10,2012 -20121216_DEN@BAL,2,40,54,BAL,DEN,4,8,70,(10:54) (Punt formation) S.Koch punts 54 yards to DEN 16 Center-M.Cox. T.Holliday to DEN 15 for -1 yards (J.Ihedigbo).,0,10,2012 -20121216_DEN@BAL,2,40,41,DEN,BAL,1,10,85,(10:41) K.Moreno right guard to DEN 18 for 3 yards (J.Bynes).,10,0,2012 -20121216_DEN@BAL,2,40,14,DEN,BAL,2,7,82,(10:14) (No Huddle Shotgun) P.Manning pass short right to K.Moreno to DEN 20 for 2 yards (P.Kruger).,10,0,2012 -20121216_DEN@BAL,2,39,38,DEN,BAL,3,5,80,(9:38) (No Huddle Shotgun) P.Manning pass short middle to D.Thomas to DEN 24 for 4 yards (E.Reed).,10,0,2012 -20121216_DEN@BAL,2,38,55,DEN,BAL,4,1,76,(8:55) (Punt formation) B.Colquitt punts 49 yards to BLT 27 Center-A.Brewer fair catch by J.Jones.,10,0,2012 -20121216_DEN@BAL,2,38,47,BAL,DEN,1,10,73,(8:47) B.Pierce right guard to BLT 31 for 4 yards (K.Brooking D.Wolfe).,0,10,2012 -20121216_DEN@BAL,2,38,12,BAL,DEN,2,6,69,(8:12) (No Huddle) B.Pierce left tackle to BLT 45 for 14 yards (C.Harris).,0,10,2012 -20121216_DEN@BAL,2,37,38,BAL,DEN,1,10,55,(7:38) (No Huddle) B.Pierce left guard to DEN 40 for 15 yards (R.Moore). PENALTY on BLT-M.Birk Offensive Holding 10 yards enforced at BLT 47.,0,10,2012 -20121216_DEN@BAL,2,37,38,BAL,DEN,1,18,63,(7:38) J.Flacco pass incomplete deep middle to T.Smith.,0,10,2012 -20121216_DEN@BAL,2,37,14,BAL,DEN,2,18,63,(7:14) R.Rice left end to BLT 38 for 1 yard (E.Dumervil).,0,10,2012 -20121216_DEN@BAL,2,36,38,BAL,DEN,3,17,62,(6:38) (Shotgun) J.Flacco pass incomplete short right to D.Pitta.,0,10,2012 -20121216_DEN@BAL,2,36,30,BAL,DEN,4,17,62,(6:30) (Punt formation) S.Koch punts 57 yards to DEN 5 Center-M.Cox downed by BLT-L.Williams.,0,10,2012 -20121216_DEN@BAL,2,36,20,DEN,BAL,1,10,95,(6:20) K.Moreno left tackle to DEN 10 for 5 yards (A.McClellan D.Tyson).,10,0,2012 -20121216_DEN@BAL,2,35,50,DEN,BAL,2,5,90,(5:50) P.Manning pass short right to E.Decker to DEN 22 for 12 yards (C.Williams).,10,0,2012 -20121216_DEN@BAL,2,35,18,DEN,BAL,1,10,78,(5:18) (No Huddle) K.Moreno right guard to DEN 29 for 7 yards (J.Bynes C.Upshaw).,10,0,2012 -20121216_DEN@BAL,2,34,47,DEN,BAL,2,3,71,(4:47) (No Huddle) K.Moreno right guard to DEN 34 for 5 yards (C.Graham).,10,0,2012 -20121216_DEN@BAL,2,34,15,DEN,BAL,1,10,66,(4:15) (No Huddle) P.Manning sacked at DEN 23 for -11 yards (A.McClellan).,10,0,2012 -20121216_DEN@BAL,2,33,38,DEN,BAL,2,21,77,(3:38) (No Huddle) J.Hester left tackle to DEN 30 for 7 yards (B.Ayanbadejo J.Ihedigbo).,10,0,2012 -20121216_DEN@BAL,2,32,59,DEN,BAL,3,14,70,(2:59) (No Huddle Shotgun) P.Manning pass short right to D.Thomas to DEN 34 for 4 yards (C.Brown E.Reed) [P.McPhee].,10,0,2012 -20121216_DEN@BAL,2,32,22,DEN,BAL,4,10,66,(2:22) (Punt formation) B.Colquitt punts 48 yards to BLT 18 Center-A.Brewer. J.Jones to BLT 20 for 2 yards (D.Bruton).,10,0,2012 -20121216_DEN@BAL,2,32,9,BAL,DEN,1,10,80,(2:09) (Shotgun) R.Rice left guard to BLT 23 for 3 yards (W.Woodyard). Ray Rice (BLT) reaches 1000-yard mark.,0,10,2012 -20121216_DEN@BAL,2,32,0,BAL,DEN,2,7,77,(2:00) J.Flacco pass deep right to J.Jones to DEN 34 for 43 yards (T.Carter).,0,10,2012 -20121216_DEN@BAL,2,31,52,BAL,DEN,1,10,34,(1:52) (No Huddle) R.Rice left tackle to DEN 31 for 3 yards (D.Trevathan).,0,10,2012 -20121216_DEN@BAL,2,31,23,BAL,DEN,2,7,31,(1:23) (No Huddle Shotgun) R.Rice left guard to DEN 20 for 11 yards (D.Trevathan J.Leonhard).,0,10,2012 -20121216_DEN@BAL,2,30,55,BAL,DEN,1,10,20,(:55) (No Huddle) J.Flacco pass short right to D.Pitta pushed ob at DEN 18 for 2 yards (D.Trevathan).,0,10,2012 -20121216_DEN@BAL,2,30,50,BAL,DEN,2,8,18,(:50) (No Huddle Shotgun) J.Flacco pass short left to T.Smith to DEN 4 for 14 yards (C.Bailey).,0,10,2012 -20121216_DEN@BAL,2,30,30,BAL,DEN,1,4,4,(:30) (No Huddle) J.Flacco pass short left intended for A.Boldin INTERCEPTED by C.Harris at DEN 2. C.Harris for 98 yards TOUCHDOWN. Chris Harris' 98-yd INT return for TD is the longest INT return in Denver history. Breaks record of 93 by Randy Gradishar in 1980.,0,10,2012 -20121216_DEN@BAL,2,30,30,DEN,BAL,,,4,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,10,0,2012 -20121216_DEN@BAL,2,30,30,DEN,BAL,,,4,M.Prater kicks 57 yards from DEN 35 to BLT 8. J.Jones to BLT 20 for 12 yards (S.Johnson).,17,0,2012 -20121216_DEN@BAL,2,30,15,BAL,DEN,1,10,80,(:15) J.Flacco kneels to BLT 19 for -1 yards.,0,17,2012 -20121216_DEN@BAL,3,30,0,DEN,BAL,,,80,M.Prater kicks 71 yards from DEN 35 to BLT -6. J.Jones to BLT 44 for 50 yards (M.Prater).,17,0,2012 -20121216_DEN@BAL,3,29,52,BAL,DEN,1,10,56,(14:52) (No Huddle Shotgun) R.Rice left tackle to BLT 46 for 2 yards (M.Unrein E.Dumervil).,0,17,2012 -20121216_DEN@BAL,3,29,28,BAL,DEN,2,8,54,(14:28) (No Huddle Shotgun) J.Flacco pass short right to T.Doss to DEN 39 for 15 yards (M.Adams).,0,17,2012 -20121216_DEN@BAL,3,28,59,BAL,DEN,1,10,39,(13:59) (No Huddle) R.Rice right guard to DEN 32 for 7 yards (M.Adams).,0,17,2012 -20121216_DEN@BAL,3,28,30,BAL,DEN,2,3,32,(13:30) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to DEN 27 for 5 yards (W.Woodyard).,0,17,2012 -20121216_DEN@BAL,3,27,59,BAL,DEN,1,10,27,(12:59) (No Huddle Shotgun) R.Rice left guard to DEN 27 for no gain (V.Miller).,0,17,2012 -20121216_DEN@BAL,3,27,36,BAL,DEN,2,10,27,(12:36) (No Huddle Shotgun) J.Flacco pass incomplete deep left to A.Allen.,0,17,2012 -20121216_DEN@BAL,3,27,30,BAL,DEN,3,10,27,(12:30) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Smith. Baltimore challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,17,2012 -20121216_DEN@BAL,3,27,22,BAL,DEN,4,10,27,(12:22) (Field Goal formation) J.Tucker 45 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,17,2012 -20121216_DEN@BAL,3,27,22,BAL,DEN,,,27,J.Tucker kicks 68 yards from BLT 35 to DEN -3. T.Holliday to DEN 17 for 20 yards (A.McClellan). FUMBLES (A.McClellan) ball out of bounds at DEN 17.,3,17,2012 -20121216_DEN@BAL,3,27,10,DEN,BAL,1,10,83,(12:10) K.Moreno left guard to DEN 21 for 4 yards (C.Upshaw).,17,3,2012 -20121216_DEN@BAL,3,26,37,DEN,BAL,2,6,79,(11:37) (No Huddle) P.Manning pass short left to E.Decker to DEN 36 for 15 yards (C.Williams).,17,3,2012 -20121216_DEN@BAL,3,26,13,DEN,BAL,1,10,64,(11:13) (No Huddle) K.Moreno right guard to DEN 44 for 8 yards (E.Reed).,17,3,2012 -20121216_DEN@BAL,3,25,41,DEN,BAL,2,2,56,(10:41) (No Huddle) K.Moreno right guard to DEN 49 for 5 yards (J.Bynes A.McClellan).,17,3,2012 -20121216_DEN@BAL,3,25,2,DEN,BAL,1,10,51,(10:02) (No Huddle) P.Manning pass deep left to E.Decker for 51 yards TOUCHDOWN.,17,3,2012 -20121216_DEN@BAL,3,25,2,DEN,BAL,,,51,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,17,3,2012 -20121216_DEN@BAL,3,25,2,DEN,BAL,,,51,M.Prater kicks 74 yards from DEN 35 to BLT -9. J.Jones to BLT 21 for 30 yards (J.Leonhard).,24,3,2012 -20121216_DEN@BAL,3,24,46,BAL,DEN,1,10,79,(9:46) J.Flacco pass incomplete short right to A.Boldin.,3,24,2012 -20121216_DEN@BAL,3,24,43,BAL,DEN,2,10,79,(9:43) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to BLT 20 for -1 yards (D.Williams).,3,24,2012 -20121216_DEN@BAL,3,24,15,BAL,DEN,3,11,80,(9:15) (No Huddle Shotgun) J.Flacco pass incomplete short middle to J.Jones [V.Miller].,3,24,2012 -20121216_DEN@BAL,3,24,9,BAL,DEN,4,11,80,(9:09) (Punt formation) S.Koch punts 46 yards to DEN 34 Center-M.Cox. T.Holliday to BLT 39 for 27 yards (S.Koch).,3,24,2012 -20121216_DEN@BAL,3,23,56,DEN,BAL,1,10,39,(8:56) K.Moreno right guard to BLT 34 for 5 yards (J.Ihedigbo).,24,3,2012 -20121216_DEN@BAL,3,23,19,DEN,BAL,2,5,34,(8:19) (No Huddle) P.Manning pass deep middle to J.Dreessen to BLT 6 for 28 yards (E.Reed J.Ihedigbo).,24,3,2012 -20121216_DEN@BAL,3,22,47,DEN,BAL,1,6,6,(7:47) (No Huddle) P.Manning pass incomplete short left to D.Thomas.,24,3,2012 -20121216_DEN@BAL,3,22,44,DEN,BAL,2,6,6,(7:44) K.Moreno right guard for 6 yards TOUCHDOWN.,24,3,2012 -20121216_DEN@BAL,3,22,44,DEN,BAL,,,6,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,3,2012 -20121216_DEN@BAL,3,22,44,DEN,BAL,,,6,M.Prater kicks 74 yards from DEN 35 to BLT -9. J.Jones Touchback.,31,3,2012 -20121216_DEN@BAL,3,22,40,BAL,DEN,1,10,80,(7:40) (Shotgun) J.Flacco pass incomplete short middle to R.Rice.,3,31,2012 -20121216_DEN@BAL,3,22,35,BAL,DEN,2,10,80,(7:35) (No Huddle) R.Rice left guard to BLT 24 for 4 yards (W.Woodyard).,3,31,2012 -20121216_DEN@BAL,3,22,7,BAL,DEN,3,6,76,(7:07) (No Huddle Shotgun) J.Flacco pass incomplete short middle to A.Boldin (C.Bailey).,3,31,2012 -20121216_DEN@BAL,3,22,4,BAL,DEN,4,6,76,(7:04) (Punt formation) S.Koch punts 55 yards to DEN 21 Center-M.Cox. T.Holliday to DEN 21 for no gain (L.Williams).,3,31,2012 -20121216_DEN@BAL,3,21,54,DEN,BAL,1,10,79,(6:54) K.Moreno left guard to DEN 23 for 2 yards (C.Upshaw). PENALTY on DEN-R.Clady Offensive Holding 10 yards enforced at DEN 21 - No Play.,31,3,2012 -20121216_DEN@BAL,3,21,24,DEN,BAL,1,20,89,(6:24) J.Hester left tackle to DEN 14 for 3 yards (M.Kemoeatu).,31,3,2012 -20121216_DEN@BAL,3,20,49,DEN,BAL,2,17,86,(5:49) (No Huddle Shotgun) P.Manning pass incomplete deep middle to E.Decker (C.Williams).,31,3,2012 -20121216_DEN@BAL,3,20,41,DEN,BAL,3,17,86,(5:41) (No Huddle Shotgun) J.Hester right tackle to DEN 18 for 4 yards (J.Bynes B.Ayanbadejo).,31,3,2012 -20121216_DEN@BAL,3,20,4,DEN,BAL,4,13,82,(5:04) (Punt formation) B.Colquitt punts 49 yards to BLT 33 Center-A.Brewer downed by DEN-O.Bolden.,31,3,2012 -20121216_DEN@BAL,3,19,50,BAL,DEN,1,10,67,(4:50) (Shotgun) J.Flacco pass short left to D.Pitta to BLT 42 for 9 yards (R.Moore).,3,31,2012 -20121216_DEN@BAL,3,19,24,BAL,DEN,2,1,58,(4:24) (No Huddle Shotgun) J.Flacco pass short middle to T.Doss to DEN 45 for 13 yards (D.Williams).,3,31,2012 -20121216_DEN@BAL,3,19,0,BAL,DEN,1,10,45,(4:00) (No Huddle Shotgun) J.Flacco pass incomplete deep left to A.Boldin.,3,31,2012 -20121216_DEN@BAL,3,18,54,BAL,DEN,2,10,45,(3:54) (No Huddle Shotgun) J.Flacco pass incomplete short left to R.Rice.,3,31,2012 -20121216_DEN@BAL,3,18,50,BAL,DEN,3,10,45,(3:50) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to DEN 35 for 10 yards (M.Adams).,3,31,2012 -20121216_DEN@BAL,3,18,21,BAL,DEN,1,10,35,(3:21) (No Huddle Shotgun) J.Flacco pass incomplete short left to A.Boldin. PENALTY on DEN-T.Carter Defensive Pass Interference 6 yards enforced at DEN 35 - No Play.,3,31,2012 -20121216_DEN@BAL,3,18,17,BAL,DEN,1,10,29,(3:17) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to DEN 19 for 10 yards (W.Woodyard). PENALTY on BLT-B.Williams Offensive Holding 10 yards enforced at DEN 29 - No Play.,3,31,2012 -20121216_DEN@BAL,3,18,4,BAL,DEN,1,20,39,(3:04) (No Huddle Shotgun) J.Flacco pass short right to J.Jones to DEN 35 for 4 yards (C.Bailey). Jacoby Jones (#12) injured.,3,31,2012 -20121216_DEN@BAL,3,17,27,BAL,DEN,2,16,35,(2:27) (No Huddle Shotgun) J.Flacco pass short right to D.Reed pushed ob at DEN 23 for 12 yards (M.Adams).,3,31,2012 -20121216_DEN@BAL,3,17,8,BAL,DEN,3,4,23,(2:08) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,3,31,2012 -20121216_DEN@BAL,3,17,4,BAL,DEN,4,4,23,(2:04) (No Huddle Shotgun) J.Flacco pass incomplete short right to R.Rice (W.Woodyard) [K.Vickerson].,3,31,2012 -20121216_DEN@BAL,3,16,57,DEN,BAL,1,10,77,(1:57) P.Manning pass incomplete deep middle to E.Decker (C.Graham E.Reed).,31,3,2012 -20121216_DEN@BAL,3,16,50,DEN,BAL,2,10,77,(1:50) (No Huddle) K.Moreno right tackle to DEN 28 for 5 yards (J.Bynes).,31,3,2012 -20121216_DEN@BAL,3,16,11,DEN,BAL,3,5,72,(1:11) (No Huddle Shotgun) P.Manning pass incomplete deep middle to E.Decker [J.Bynes].,31,3,2012 -20121216_DEN@BAL,3,16,4,DEN,BAL,4,5,72,(1:04) (Punt formation) B.Colquitt punts 48 yards to BLT 24 Center-A.Brewer. T.Doss to DEN 36 for 40 yards (B.Colquitt).,31,3,2012 -20121216_DEN@BAL,3,15,48,BAL,DEN,1,10,36,(:48) (No Huddle Shotgun) R.Rice left guard to DEN 34 for 2 yards (W.Woodyard).,3,31,2012 -20121216_DEN@BAL,3,15,22,BAL,DEN,2,8,34,(:22) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to DEN 31 for 3 yards (T.Carter).,3,31,2012 -20121216_DEN@BAL,4,15,0,BAL,DEN,3,5,31,(15:00) (Shotgun) J.Flacco pass incomplete short right to R.Rice. PENALTY on DEN-D.Bruton Roughing the Passer 15 yards enforced at DEN 31 - No Play.,3,31,2012 -20121216_DEN@BAL,4,14,56,BAL,DEN,1,10,16,(14:56) (No Huddle Shotgun) J.Flacco pass incomplete short left [V.Miller]. PENALTY on BLT-A.Boldin Unnecessary Roughness 15 yards enforced at DEN 16. QB outside the tackle box threw the ball away,3,31,2012 -20121216_DEN@BAL,4,14,47,BAL,DEN,2,25,31,(14:47) (No Huddle Shotgun) J.Flacco pass deep middle to D.Pitta for 31 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,3,31,2012 -20121216_DEN@BAL,4,14,47,BAL,DEN,,,31,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,31,2012 -20121216_DEN@BAL,4,14,47,BAL,DEN,,,31,J.Tucker kicks 74 yards from BLT 35 to DEN -9. T.Holliday Touchback.,10,31,2012 -20121216_DEN@BAL,4,14,31,DEN,BAL,1,10,80,(14:31) K.Moreno left end to DEN 23 for 3 yards (M.Kemoeatu D.Tyson).,31,10,2012 -20121216_DEN@BAL,4,13,48,DEN,BAL,2,7,77,(13:48) K.Moreno right guard to DEN 28 for 5 yards (C.Upshaw H.Ngata).,31,10,2012 -20121216_DEN@BAL,4,13,1,DEN,BAL,3,2,72,(13:01) R.Hillman left end to DEN 31 for 3 yards (C.Williams M.Kemoeatu).,31,10,2012 -20121216_DEN@BAL,4,12,15,DEN,BAL,1,10,69,(12:15) K.Moreno up the middle to DEN 34 for 3 yards (A.McClellan).,31,10,2012 -20121216_DEN@BAL,4,11,33,DEN,BAL,2,7,66,(11:33) R.Hillman right tackle to DEN 42 for 8 yards (C.Graham).,31,10,2012 -20121216_DEN@BAL,4,10,52,DEN,BAL,1,10,58,(10:52) R.Hillman left end to DEN 45 for 3 yards (J.Bynes).,31,10,2012 -20121216_DEN@BAL,4,10,8,DEN,BAL,2,7,55,(10:08) R.Hillman right guard to DEN 50 for 5 yards (T.Cody B.Ayanbadejo).,31,10,2012 -20121216_DEN@BAL,4,9,24,DEN,BAL,3,2,50,(9:24) R.Hillman right guard to BLT 47 for 3 yards (C.Graham J.Bynes).,31,10,2012 -20121216_DEN@BAL,4,8,37,DEN,BAL,1,10,47,(8:37) J.Hester right end to BLT 47 for no gain (B.Ayanbadejo J.Bynes).,31,10,2012 -20121216_DEN@BAL,4,7,53,DEN,BAL,2,10,47,(7:53) J.Hester left tackle to BLT 45 for 2 yards (E.Reed T.Cody).,31,10,2012 -20121216_DEN@BAL,4,7,14,DEN,BAL,3,8,45,(7:14) (Shotgun) P.Manning pass short left to E.Decker to BLT 32 for 13 yards (C.Williams). PENALTY on BLT-C.Williams Unnecessary Roughness 15 yards enforced at BLT 32.,31,10,2012 -20121216_DEN@BAL,4,6,46,DEN,BAL,1,10,17,(6:46) R.Hillman right guard to BLT 12 for 5 yards (C.Graham).,31,10,2012 -20121216_DEN@BAL,4,6,0,DEN,BAL,2,5,12,(6:00) R.Hillman right guard to BLT 14 for -2 yards (C.Upshaw).,31,10,2012 -20121216_DEN@BAL,4,5,16,DEN,BAL,3,7,14,(5:16) R.Hillman right end to BLT 18 for -4 yards (C.Graham).,31,10,2012 -20121216_DEN@BAL,4,5,16,DEN,BAL,4,11,18,(5:16) (Field Goal formation) M.Prater 36 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,31,10,2012 -20121216_DEN@BAL,4,5,16,DEN,BAL,,,18,M.Prater kicks 45 yards from DEN 35 to BLT 20. G.Gradkowski to BLT 34 for 14 yards (D.Williams). FUMBLES (D.Williams) recovered by BLT-O.Brown at BLT 32. O.Brown to DEN 30 for 38 yards (N.Irving). PENALTY on BLT Illegal Substitution 5 yards enforced at BLT 44.,34,10,2012 -20121216_DEN@BAL,4,4,32,BAL,DEN,1,10,61,(4:32) (Shotgun) J.Flacco pass short right to D.Pitta for 61 yards TOUCHDOWN.,10,34,2012 -20121216_DEN@BAL,4,4,32,BAL,DEN,,,61,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,34,2012 -20121216_DEN@BAL,4,4,32,BAL,DEN,,,61,J.Tucker kicks onside 10 yards from BLT 35 to BLT 45. M.Willis to BLT 44 for 1 yard (A.Allen).,17,34,2012 -20121216_DEN@BAL,4,4,7,DEN,BAL,1,10,44,(4:07) R.Hillman left tackle to BLT 43 for 1 yard (A.Jones).,34,17,2012 -20121216_DEN@BAL,4,4,1,DEN,BAL,2,9,43,(4:01) R.Hillman left guard to BLT 44 for -1 yards (C.Upshaw).,34,17,2012 -20121216_DEN@BAL,4,3,57,DEN,BAL,3,10,44,(3:57) R.Hillman right guard to BLT 44 for no gain (C.Graham B.Ayanbadejo).,34,17,2012 -20121216_DEN@BAL,4,3,9,DEN,BAL,4,10,44,(3:09) (Punt formation) PENALTY on DEN-B.Colquitt Delay of Game 5 yards enforced at BLT 44 - No Play.,34,17,2012 -20121216_DEN@BAL,4,3,9,DEN,BAL,4,15,49,(3:09) (Punt formation) PENALTY on DEN-M.Willis False Start 5 yards enforced at BLT 49 - No Play.,34,17,2012 -20121216_DEN@BAL,4,3,9,DEN,BAL,4,20,54,(3:09) (Punt formation) B.Colquitt punts 38 yards to BLT 16 Center-A.Brewer. J.Jones to BLT 16 for no gain (M.Willis).,34,17,2012 -20121216_DEN@BAL,4,2,57,BAL,DEN,1,10,84,(2:57) PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at BLT 16 - No Play.,17,34,2012 -20121216_DEN@BAL,4,2,57,BAL,DEN,1,5,79,(2:57) (Shotgun) J.Flacco pass short right to J.Jones to BLT 25 for 4 yards (O.Bolden).,17,34,2012 -20121216_DEN@BAL,4,2,36,BAL,DEN,2,1,75,(2:36) J.Flacco sacked at BLT 13 for -12 yards (D.Wolfe).,17,34,2012 -20121216_DEN@BAL,4,2,13,BAL,DEN,3,13,87,(2:13) (Shotgun) J.Flacco pass short left to D.Reed to BLT 23 for 10 yards (C.Bailey).,17,34,2012 -20121216_DEN@BAL,4,2,8,BAL,DEN,4,3,77,(2:08) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,17,34,2012 -20121216_DEN@BAL,4,2,4,DEN,BAL,1,10,23,(2:04) New QB for Denver - No. 6 - Brock Osweiler R.Hillman right guard to BLT 23 for no gain (A.Jones).,34,17,2012 -20121216_DEN@BAL,4,1,57,DEN,BAL,2,10,23,(1:57) B.Osweiler kneels to BLT 25 for -2 yards.,34,17,2012 -20121216_DEN@BAL,4,1,20,DEN,BAL,3,12,25,(1:20) B.Osweiler kneels to BLT 27 for -2 yards.,34,17,2012 -20121216_DEN@BAL,4,0,38,DEN,BAL,4,14,27,(:38) (Field Goal formation) M.Prater 45 yard field goal is No Good Wide Left Center-A.Brewer Holder-B.Colquitt.,34,17,2012 -20121216_DEN@BAL,4,0,33,BAL,DEN,1,10,65,(:33) (Shotgun) J.Flacco sacked at BLT 29 for -6 yards (R.Ayers).,17,34,2012 -20121216_DEN@BAL,4,0,5,BAL,DEN,2,16,71,(:05) (No Huddle Shotgun) J.Flacco sacked at BLT 15 for -14 yards (E.Dumervil).,17,34,2012 -20121216_DEN@BAL,4,0,5,BAL,DEN,,,71,                      ,17,34,2012 -20121216_GB@CHI,1,0,0,GB,CHI,,,71,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,0,0,2012 -20121216_GB@CHI,1,60,0,CHI,GB,1,10,80,(15:00) M.Forte left tackle to CHI 22 for 2 yards (C.Matthews; R.Pickett).,0,0,2012 -20121216_GB@CHI,1,59,26,CHI,GB,2,8,78,(14:26) M.Forte right guard to CHI 36 for 14 yards (M.Burnett).,0,0,2012 -20121216_GB@CHI,1,58,49,CHI,GB,1,10,64,(13:49) M.Forte left end to CHI 40 for 4 yards (B.Jones).,0,0,2012 -20121216_GB@CHI,1,58,11,CHI,GB,2,6,60,(13:11) M.Forte right end to CHI 48 for 8 yards (B.Jones).,0,0,2012 -20121216_GB@CHI,1,57,27,CHI,GB,1,10,52,(12:27) A.Allen right guard to GB 49 for 3 yards (R.Pickett).,0,0,2012 -20121216_GB@CHI,1,56,44,CHI,GB,2,7,49,(11:44) J.Cutler pass short right to B.Marshall to GB 40 for 9 yards (T.Williams).,0,0,2012 -20121216_GB@CHI,1,56,6,CHI,GB,1,10,40,(11:06) M.Forte right end to GB 31 for 9 yards (A.Hawk).,0,0,2012 -20121216_GB@CHI,1,55,27,CHI,GB,2,1,31,(10:27) M.Forte right guard to GB 31 for no gain (M.Daniels).,0,0,2012 -20121216_GB@CHI,1,54,49,CHI,GB,3,1,31,(9:49) PENALTY on CHI-R.Garza False Start 5 yards enforced at GB 31 - No Play.,0,0,2012 -20121216_GB@CHI,1,54,27,CHI,GB,3,6,36,(9:27) (Shotgun) J.Cutler pass incomplete short middle to A.Jeffery (S.Shields).,0,0,2012 -20121216_GB@CHI,1,54,24,CHI,GB,4,6,36,(9:24) (Punt formation) A.Podlesh punts 34 yards to GB 2 Center-P.Mannelly downed by CHI-K.Adams.,0,0,2012 -20121216_GB@CHI,1,54,13,GB,CHI,1,10,98,(9:13) PENALTY on GB-D.Barclay False Start 1 yard enforced at GB 2 - No Play.,0,0,2012 -20121216_GB@CHI,1,54,13,GB,CHI,1,11,99,(9:13) A.Rodgers pass short right to Ja.Jones to GB 7 for 6 yards (K.Hayden).,0,0,2012 -20121216_GB@CHI,1,53,37,GB,CHI,2,5,93,(8:37) J.Kuhn left guard to GB 11 for 4 yards (C.Wootton).,0,0,2012 -20121216_GB@CHI,1,53,1,GB,CHI,3,1,89,(8:01) A.Rodgers scrambles right end pushed ob at GB 17 for 6 yards (B.Costanzo).,0,0,2012 -20121216_GB@CHI,1,52,30,GB,CHI,1,10,83,(7:30) A.Green right guard to GB 23 for 6 yards (C.Wootton).,0,0,2012 -20121216_GB@CHI,1,52,0,GB,CHI,2,4,77,(7:00) (No Huddle Shotgun) A.Rodgers pass incomplete short left to R.Cobb (N.Roach D.Moore).,0,0,2012 -20121216_GB@CHI,1,51,56,GB,CHI,3,4,77,(6:56) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings.,0,0,2012 -20121216_GB@CHI,1,51,50,GB,CHI,4,4,77,(6:50) (Punt formation) T.Masthay punts 44 yards to CHI 33 Center-B.Goode. D.Hester to CHI 41 for 8 yards (R.Taylor). PENALTY on CHI Defensive 12 On-field 5 yards enforced at GB 23 - No Play. Penalty on CHI-K.Adams Illegal Block Above the Waist declined.,0,0,2012 -20121216_GB@CHI,1,51,39,GB,CHI,1,10,72,(6:39) A.Rodgers sacked at GB 25 for -3 yards (C.Wootton).,0,0,2012 -20121216_GB@CHI,1,51,4,GB,CHI,2,13,75,(6:04) (Shotgun) A.Rodgers pass incomplete deep left to J.Finley.,0,0,2012 -20121216_GB@CHI,1,51,0,GB,CHI,3,13,75,(6:00) (Shotgun) A.Rodgers pass incomplete short right.,0,0,2012 -20121216_GB@CHI,1,50,55,GB,CHI,4,13,75,(5:55) (Punt formation) T.Masthay punts 51 yards to CHI 24 Center-B.Goode. D.Hester to CHI 48 for 24 yards (T.Masthay).,0,0,2012 -20121216_GB@CHI,1,50,40,CHI,GB,1,10,52,(5:40) M.Forte right tackle to CHI 49 for 1 yard (E.Walden).,0,0,2012 -20121216_GB@CHI,1,50,7,CHI,GB,2,9,51,(5:07) M.Forte left guard to CHI 46 for -3 yards (C.Matthews).,0,0,2012 -20121216_GB@CHI,1,49,34,CHI,GB,3,12,54,(4:34) (Shotgun) J.Cutler right guard to GB 45 for 9 yards (B.Jones).,0,0,2012 -20121216_GB@CHI,1,48,53,CHI,GB,4,3,45,(3:53) (Punt formation) A.Podlesh punts 31 yards to GB 14 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 -20121216_GB@CHI,1,48,45,GB,CHI,1,10,86,(3:45) A.Green left end to GB 22 for 8 yards (C.Ozougwu).,0,0,2012 -20121216_GB@CHI,1,48,23,GB,CHI,2,2,78,(3:23) (No Huddle) A.Green left end to GB 28 for 6 yards (N.Roach).,0,0,2012 -20121216_GB@CHI,1,47,46,GB,CHI,1,10,72,(2:46) (No Huddle Shotgun) A.Green left tackle to GB 31 for 3 yards (I.Idonije).,0,0,2012 -20121216_GB@CHI,1,47,15,GB,CHI,2,7,69,(2:15) (No Huddle Shotgun) A.Rodgers pass short right to A.Green to GB 30 for -1 yards (D.Moore; K.Hayden).,0,0,2012 -20121216_GB@CHI,1,46,35,GB,CHI,3,8,70,(1:35) (Shotgun) A.Rodgers sacked at GB 25 for -5 yards (sack split by C.Wootton and J.Peppers).,0,0,2012 -20121216_GB@CHI,1,46,19,GB,CHI,4,13,75,(1:19) (Punt formation) T.Masthay punts 44 yards to CHI 31 Center-B.Goode out of bounds.,0,0,2012 -20121216_GB@CHI,1,46,8,CHI,GB,1,10,69,(1:08) (Shotgun) J.Cutler pass incomplete deep right to M.Forte (B.Jones).,0,0,2012 -20121216_GB@CHI,1,46,2,CHI,GB,2,10,69,(1:02) M.Forte left end to CHI 38 for 7 yards (M.Burnett). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at CHI 31 - No Play.,0,0,2012 -20121216_GB@CHI,1,45,34,CHI,GB,2,20,79,(:34) (Shotgun) J.Cutler pass short right to A.Allen to CHI 36 for 15 yards (M.Jennings; C.Hayward).,0,0,2012 -20121216_GB@CHI,2,45,0,CHI,GB,3,5,64,(15:00) (Shotgun) J.Cutler sacked at CHI 29 for -7 yards (C.Matthews).,0,0,2012 -20121216_GB@CHI,2,44,36,CHI,GB,4,12,71,(14:36) (Punt formation) A.Podlesh punts 40 yards to GB 31 Center-P.Mannelly. R.Cobb to GB 38 for 7 yards (K.Adams). PENALTY on GB-J.Bush Offensive Holding 10 yards enforced at GB 36.,0,0,2012 -20121216_GB@CHI,2,44,25,GB,CHI,1,10,74,(14:25) A.Rodgers pass deep middle to R.Cobb to CHI 45 for 29 yards (C.Conte; M.Wright).,0,0,2012 -20121216_GB@CHI,2,43,57,GB,CHI,1,10,45,(13:57) A.Green right end to CHI 43 for 2 yards (J.Peppers).,0,0,2012 -20121216_GB@CHI,2,43,33,GB,CHI,2,8,43,(13:33) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to CHI 36 for 7 yards (L.Briggs).,0,0,2012 -20121216_GB@CHI,2,43,14,GB,CHI,3,1,36,(13:14) (No Huddle) A.Rodgers pass short middle to A.Rodgers to CHI 37 for -1 yards (C.Ozougwu). Penalty on GB-J.Kuhn Offensive 12 On-field declined.,0,0,2012 -20121216_GB@CHI,2,42,53,GB,CHI,4,2,37,(12:53) (Shotgun) A.Rodgers pass short middle to J.Finley to CHI 29 for 8 yards (M.Wright).,0,0,2012 -20121216_GB@CHI,2,42,15,GB,CHI,1,10,29,(12:15) A.Green right end to CHI 25 for 4 yards (S.Paea).,0,0,2012 -20121216_GB@CHI,2,41,36,GB,CHI,2,6,25,(11:36) (Shotgun) A.Rodgers pass incomplete short right to A.Green (D.Moore).,0,0,2012 -20121216_GB@CHI,2,41,32,GB,CHI,3,6,25,(11:32) (Shotgun) A.Rodgers pass incomplete deep left to R.Cobb.,0,0,2012 -20121216_GB@CHI,2,41,27,GB,CHI,4,6,25,(11:27) (Field Goal formation) M.Crosby 43 yard field goal is No Good Wide Right Center-B.Goode Holder-T.Masthay.,0,0,2012 -20121216_GB@CHI,2,41,22,CHI,GB,1,10,67,(11:22) M.Forte right guard to CHI 33 for no gain (M.Burnett).,0,0,2012 -20121216_GB@CHI,2,40,43,CHI,GB,2,10,67,(10:43) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 43 for 10 yards (A.Hawk) [B.Raji]. Measurement.,0,0,2012 -20121216_GB@CHI,2,40,8,CHI,GB,1,10,57,(10:08) M.Forte left guard to CHI 46 for 3 yards (A.Hawk).,0,0,2012 -20121216_GB@CHI,2,39,27,CHI,GB,2,7,54,(9:27) M.Forte left guard to GB 32 for 22 yards (M.Jennings). PENALTY on GB-E.Walden Face Mask (15 Yards) 15 yards enforced at GB 32.,0,0,2012 -20121216_GB@CHI,2,38,53,CHI,GB,1,10,17,(8:53) A.Allen left guard to GB 15 for 2 yards (C.Matthews).,0,0,2012 -20121216_GB@CHI,2,38,11,CHI,GB,2,8,15,(8:11) (Shotgun) J.Cutler pass short middle to B.Marshall for 15 yards TOUCHDOWN.,0,0,2012 -20121216_GB@CHI,2,38,11,CHI,GB,,,15,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121216_GB@CHI,2,38,11,CHI,GB,,,15,O.Mare kicks 65 yards from CHI 35 to GB 0. R.Cobb to GB 11 for 11 yards (J.Anderson).,7,0,2012 -20121216_GB@CHI,2,37,59,GB,CHI,1,10,89,(7:59) (Shotgun) A.Rodgers pass short right to G.Jennings pushed ob at GB 30 for 19 yards (N.Roach).,0,7,2012 -20121216_GB@CHI,2,37,34,GB,CHI,1,10,70,(7:34) R.Grant left end to GB 32 for 2 yards (N.Roach).,0,7,2012 -20121216_GB@CHI,2,37,4,GB,CHI,2,8,68,(7:04) (No Huddle Shotgun) R.Grant left tackle to GB 34 for 2 yards (A.Okoye).,0,7,2012 -20121216_GB@CHI,2,36,25,GB,CHI,3,6,66,(6:25) (Shotgun) A.Rodgers pass deep right to R.Cobb pushed ob at CHI 35 for 31 yards (M.Wright).,0,7,2012 -20121216_GB@CHI,2,35,47,GB,CHI,1,10,35,(5:47) R.Grant left end to CHI 35 for no gain (L.Briggs; D.Moore).,0,7,2012 -20121216_GB@CHI,2,35,7,GB,CHI,2,10,35,(5:07) A.Rodgers pass short left to J.Finley to CHI 29 for 6 yards (C.Tillman; L.Briggs).,0,7,2012 -20121216_GB@CHI,2,34,25,GB,CHI,3,4,29,(4:25) (Shotgun) A.Rodgers pass deep right to Ja.Jones for 29 yards TOUCHDOWN.,0,7,2012 -20121216_GB@CHI,2,34,25,GB,CHI,,,29,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,7,2012 -20121216_GB@CHI,2,34,25,GB,CHI,,,29,M.Crosby kicks 73 yards from GB 35 to CHI -8. D.Hester pushed ob at CHI 32 for 40 yards (M.Jennings).,7,7,2012 -20121216_GB@CHI,2,34,13,CHI,GB,1,10,68,(4:13) M.Forte left end to CHI 32 for no gain (A.Hawk; B.Jones).,7,7,2012 -20121216_GB@CHI,2,33,42,CHI,GB,2,10,68,(3:42) M.Forte left end to CHI 30 for -2 yards (C.Matthews).,7,7,2012 -20121216_GB@CHI,2,32,59,CHI,GB,3,12,70,(2:59) (Shotgun) J.Cutler pass short right to B.Marshall to CHI 30 for no gain (M.Burnett). FUMBLES (M.Burnett) recovered by CHI-J.Scott at CHI 32. J.Scott to CHI 32 for no gain (J.Worthy).,7,7,2012 -20121216_GB@CHI,2,32,19,CHI,GB,4,10,68,(2:19) (Punt formation) A.Podlesh punts 42 yards to GB 26 Center-P.Mannelly fair catch by R.Cobb.,7,7,2012 -20121216_GB@CHI,2,32,11,GB,CHI,1,10,74,(2:11) (Shotgun) A.Rodgers pass short right to A.Green pushed ob at GB 33 for 7 yards (L.Briggs).,7,7,2012 -20121216_GB@CHI,2,32,0,GB,CHI,2,3,67,(2:00) A.Rodgers pass incomplete short right.,7,7,2012 -20121216_GB@CHI,2,31,54,GB,CHI,3,3,67,(1:54) (Shotgun) A.Rodgers sacked at GB 28 for -5 yards (J.Peppers).,7,7,2012 -20121216_GB@CHI,2,31,46,GB,CHI,4,8,72,(1:46) (Punt formation) T.Masthay punts 36 yards to CHI 36 Center-B.Goode. D.Hester to CHI 37 for 1 yard (J.Bush).,7,7,2012 -20121216_GB@CHI,2,31,36,CHI,GB,1,10,63,(1:36) (Shotgun) J.Cutler pass short left intended for D.Hester INTERCEPTED by C.Hayward at 50. C.Hayward pushed ob at CHI 26 for 24 yards (D.Hester).,7,7,2012 -20121216_GB@CHI,2,31,25,GB,CHI,1,10,26,(1:25) (Shotgun) A.Rodgers pass short right to R.Cobb pushed ob at CHI 23 for 3 yards (K.Hayden).,7,7,2012 -20121216_GB@CHI,2,31,19,GB,CHI,2,7,23,(1:19) (Shotgun) A.Rodgers pass incomplete short right to A.Green.,7,7,2012 -20121216_GB@CHI,2,31,14,GB,CHI,3,7,23,(1:14) (Shotgun) A.Rodgers pass short middle to R.Cobb to CHI 10 for 13 yards (D.Moore).,7,7,2012 -20121216_GB@CHI,2,30,40,GB,CHI,1,10,10,(:40) (Shotgun) A.Green left guard to CHI 8 for 2 yards (C.Conte).,7,7,2012 -20121216_GB@CHI,2,30,34,GB,CHI,2,8,8,(:34) (Shotgun) A.Rodgers pass short middle to Ja.Jones for 8 yards TOUCHDOWN.,7,7,2012 -20121216_GB@CHI,2,30,34,GB,CHI,,,8,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay. PENALTY on CHI-A.Okoye Defensive Offside 5 yards enforced between downs.,7,7,2012 -20121216_GB@CHI,2,30,34,GB,CHI,,,8,M.Crosby kicks 60 yards from GB 40 to end zone Touchback.,14,7,2012 -20121216_GB@CHI,2,30,28,CHI,GB,1,10,80,(:28) (Shotgun) J.Cutler pass short left to M.Forte to CHI 29 for 9 yards (B.Jones).,7,14,2012 -20121216_GB@CHI,3,30,0,CHI,GB,,,80,O.Mare kicks 70 yards from CHI 35 to GB -5. R.Cobb to GB 21 for 26 yards (J.Anderson; J.Thomas).,7,14,2012 -20121216_GB@CHI,3,29,54,GB,CHI,1,10,79,(14:54) D.Harris right guard to GB 42 for 21 yards (M.Wright; L.Briggs).,14,7,2012 -20121216_GB@CHI,3,29,15,GB,CHI,1,10,58,(14:15) D.Harris right end to GB 42 for no gain (N.Roach; K.Hayden).,14,7,2012 -20121216_GB@CHI,3,28,39,GB,CHI,2,10,58,(13:39) (Shotgun) A.Rodgers pass short right to G.Jennings to 50 for 8 yards (K.Hayden).,14,7,2012 -20121216_GB@CHI,3,27,59,GB,CHI,3,2,50,(12:59) (Shotgun) A.Rodgers pass short right to J.Finley to CHI 41 for 9 yards (C.Conte).,14,7,2012 -20121216_GB@CHI,3,27,17,GB,CHI,1,10,41,(12:17) D.Harris right guard to CHI 39 for 2 yards (L.Briggs; I.Idonije).,14,7,2012 -20121216_GB@CHI,3,26,39,GB,CHI,2,8,39,(11:39) (Shotgun) A.Rodgers pass short left to G.Jennings to CHI 30 for 9 yards (L.Briggs).,14,7,2012 -20121216_GB@CHI,3,26,14,GB,CHI,1,10,30,(11:14) (No Huddle) D.Harris left tackle to CHI 27 for 3 yards (C.Ozougwu).,14,7,2012 -20121216_GB@CHI,3,25,32,GB,CHI,2,7,27,(10:32) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones.,14,7,2012 -20121216_GB@CHI,3,25,25,GB,CHI,3,7,27,(10:25) (Shotgun) J.Kuhn right guard to CHI 26 for 1 yard (J.Peppers).,14,7,2012 -20121216_GB@CHI,3,24,44,GB,CHI,4,6,26,(9:44) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to CHI 14 for 12 yards (C.Conte).,14,7,2012 -20121216_GB@CHI,3,24,4,GB,CHI,1,10,14,(9:04) A.Green left guard to CHI 17 for -3 yards (D.Moore).,14,7,2012 -20121216_GB@CHI,3,23,20,GB,CHI,2,13,17,(8:20) (No Huddle Shotgun) A.Rodgers pass incomplete short right to Ja.Jones.,14,7,2012 -20121216_GB@CHI,3,23,16,GB,CHI,3,13,17,(8:16) (Shotgun) A.Rodgers pass incomplete deep right to J.Finley. PENALTY on CHI-C.Conte Defensive Pass Interference 16 yards enforced at CHI 17 - No Play.,14,7,2012 -20121216_GB@CHI,3,23,16,GB,CHI,1,1,1,(8:16) (Shotgun) PENALTY on GB-A.Rodgers Delay of Game 5 yards enforced at CHI 1 - No Play.,14,7,2012 -20121216_GB@CHI,3,23,12,GB,CHI,1,6,6,(8:12) A.Rodgers pass short left to Ja.Jones for 6 yards TOUCHDOWN.,14,7,2012 -20121216_GB@CHI,3,23,12,GB,CHI,,,6,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,7,2012 -20121216_GB@CHI,3,23,12,GB,CHI,,,6,M.Crosby kicks 68 yards from GB 35 to CHI -3. D.Hester to CHI 20 for 23 yards (R.Francois).,21,7,2012 -20121216_GB@CHI,3,23,2,CHI,GB,1,10,80,(8:02) M.Forte left tackle to CHI 25 for 5 yards (R.Pickett).,7,21,2012 -20121216_GB@CHI,3,22,23,CHI,GB,2,5,75,(7:23) (Shotgun) J.Cutler pass short left to M.Forte to CHI 41 for 16 yards (A.Hawk).,7,21,2012 -20121216_GB@CHI,3,21,46,CHI,GB,1,10,59,(6:46) M.Forte left guard to CHI 40 for -1 yards (M.Burnett).,7,21,2012 -20121216_GB@CHI,3,21,3,CHI,GB,2,11,60,(6:03) (Shotgun) J.Cutler pass incomplete deep right to A.Jeffery.,7,21,2012 -20121216_GB@CHI,3,20,58,CHI,GB,3,11,60,(5:58) (Shotgun) J.Cutler sacked at CHI 35 for -5 yards (M.Neal).,7,21,2012 -20121216_GB@CHI,3,20,24,CHI,GB,4,16,65,(5:24) (Punt formation) A.Podlesh punts 45 yards to GB 20 Center-P.Mannelly. R.Cobb to GB 20 for no gain (Z.Bowman).,7,21,2012 -20121216_GB@CHI,3,20,14,GB,CHI,1,10,79,(5:14) A.Green right end to GB 21 for no gain (I.Idonije).,21,7,2012 -20121216_GB@CHI,3,19,33,GB,CHI,2,10,79,(4:33) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings (C.Tillman).,21,7,2012 -20121216_GB@CHI,3,19,26,GB,CHI,3,10,79,(4:26) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 48 for 27 yards (C.Conte).,21,7,2012 -20121216_GB@CHI,3,18,34,GB,CHI,1,10,52,(3:34) E.Dietrich-Smith and G.Van Roten reported in as eligible. D.Harris left end to GB 49 for 1 yard (L.Briggs).,21,7,2012 -20121216_GB@CHI,3,17,51,GB,CHI,2,9,51,(2:51) R.Grant right tackle to CHI 37 for 14 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-N.Roach at CHI 37. N.Roach to CHI 37 for no gain (D.Barclay).,21,7,2012 -20121216_GB@CHI,3,17,42,CHI,GB,1,10,63,(2:42) J.Cutler pass incomplete deep right to A.Jeffery. PENALTY on GB-S.Shields Illegal Contact 5 yards enforced at CHI 37 - No Play.,7,21,2012 -20121216_GB@CHI,3,17,36,CHI,GB,1,10,58,(2:36) J.Cutler pass incomplete deep left to A.Jeffery. PENALTY on GB-M.Burnett Defensive Pass Interference 53 yards enforced at CHI 42 - No Play.,7,21,2012 -20121216_GB@CHI,3,17,27,CHI,GB,1,5,5,(2:27) M.Forte left guard to GB 1 for 4 yards (R.Pickett).,7,21,2012 -20121216_GB@CHI,3,16,48,CHI,GB,2,1,1,(1:48) J.Brown reported in as eligible. M.Forte right tackle to GB 1 for no gain (D.Moses).,7,21,2012 -20121216_GB@CHI,3,16,7,CHI,GB,3,1,1,(1:07) M.Forte right guard to GB 1 for no gain (M.Daniels).,7,21,2012 -20121216_GB@CHI,3,15,22,CHI,GB,4,1,1,(:22) (Shotgun) J.Cutler pass short right to A.Jeffery for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on CHI-A.Jeffery Offensive Pass Interference 10 yards enforced at GB 1 - No Play.,7,21,2012 -20121216_GB@CHI,3,15,17,CHI,GB,4,11,11,(:17) (Field Goal formation) PENALTY on CHI Delay of Game 5 yards enforced at GB 11 - No Play.,7,21,2012 -20121216_GB@CHI,3,15,17,CHI,GB,4,16,16,(:17) (Field Goal formation) O.Mare 34 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,21,2012 -20121216_GB@CHI,3,15,17,CHI,GB,,,16,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,10,21,2012 -20121216_GB@CHI,3,15,12,GB,CHI,1,10,80,(:12) A.Green left guard to GB 21 for 1 yard (J.Peppers).,21,10,2012 -20121216_GB@CHI,4,15,0,GB,CHI,2,9,79,(15:00) A.Rodgers scrambles right guard to GB 22 for 1 yard (L.Briggs).,21,10,2012 -20121216_GB@CHI,4,14,21,GB,CHI,3,8,78,(14:21) (Shotgun) A.Rodgers pass short middle to Ja.Jones to GB 33 for 11 yards (C.Tillman).,21,10,2012 -20121216_GB@CHI,4,13,38,GB,CHI,1,10,67,(13:38) A.Green left guard to GB 36 for 3 yards (I.Idonije).,21,10,2012 -20121216_GB@CHI,4,12,59,GB,CHI,2,7,64,(12:59) A.Rodgers pass deep middle to J.Finley to CHI 33 for 31 yards (C.Conte).,21,10,2012 -20121216_GB@CHI,4,12,16,GB,CHI,1,10,33,(12:16) A.Green left tackle to CHI 33 for no gain (J.Peppers). PENALTY on GB-J.Sitton Offensive Holding 10 yards enforced at CHI 33 - No Play.,21,10,2012 -20121216_GB@CHI,4,11,50,GB,CHI,1,20,43,(11:50) (Shotgun) A.Rodgers pass incomplete short middle to A.Green.,21,10,2012 -20121216_GB@CHI,4,11,45,GB,CHI,2,20,43,(11:45) A.Rodgers pass short right to G.Jennings to CHI 29 for 14 yards (K.Hayden).,21,10,2012 -20121216_GB@CHI,4,11,0,GB,CHI,3,6,29,(11:00) (Shotgun) A.Rodgers scrambles right end to CHI 24 for 5 yards (C.Wootton).,21,10,2012 -20121216_GB@CHI,4,10,16,GB,CHI,4,1,24,(10:16) (Field Goal formation) M.Crosby 42 yard field goal is No Good Hit Left Upright Center-B.Goode Holder-T.Masthay.,21,10,2012 -20121216_GB@CHI,4,10,10,CHI,GB,1,10,67,(10:10) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 40 for 7 yards (S.Shields). PENALTY on CHI-A.Jeffery Offensive Pass Interference 10 yards enforced at CHI 33 - No Play.,10,21,2012 -20121216_GB@CHI,4,9,45,CHI,GB,1,20,77,(9:45) M.Forte right guard to CHI 26 for 3 yards (B.Raji).,10,21,2012 -20121216_GB@CHI,4,9,4,CHI,GB,2,17,74,(9:04) (Shotgun) J.Cutler sacked at CHI 19 for -7 yards (C.Matthews).,10,21,2012 -20121216_GB@CHI,4,8,31,CHI,GB,3,24,81,(8:31) (Shotgun) J.Cutler pass short left to M.Forte to CHI 30 for 11 yards (J.Worthy; D.Moses). Penalty on CHI-J.Brown Ineligible Downfield Pass declined.,10,21,2012 -20121216_GB@CHI,4,8,11,CHI,GB,4,13,70,(8:11) (Punt formation) A.Podlesh punts 47 yards to GB 23 Center-P.Mannelly. R.Cobb to GB 20 for -3 yards. FUMBLES RECOVERED by CHI-A.Walters at GB 16. A.Walters to GB 16 for no gain (J.Bush). Penalty on GB-J.Bush Offensive Holding declined. #18 Cobb attempted a backwards pass to #10 Ross. Ross did not complete the reception and thus the fumble is charged to #18 Cobb.,10,21,2012 -20121216_GB@CHI,4,7,54,CHI,GB,1,10,16,(7:54) J.Cutler pass incomplete deep left to A.Jeffery (S.Shields).,10,21,2012 -20121216_GB@CHI,4,7,48,CHI,GB,2,10,16,(7:48) M.Forte right end to GB 16 for no gain (B.Jones).,10,21,2012 -20121216_GB@CHI,4,7,14,CHI,GB,3,10,16,(7:14) (Shotgun) J.Cutler pass incomplete short middle to M.Forte (B.Jones).,10,21,2012 -20121216_GB@CHI,4,7,9,CHI,GB,4,10,16,(7:09) (Field Goal formation) O.Mare 34 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,21,2012 -20121216_GB@CHI,4,7,9,CHI,GB,,,16,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,13,21,2012 -20121216_GB@CHI,4,7,4,GB,CHI,1,10,80,(7:04) A.Green left end to GB 23 for 3 yards (N.Roach).,21,13,2012 -20121216_GB@CHI,4,6,20,GB,CHI,2,7,77,(6:20) A.Green right guard to GB 23 for no gain (B.Costanzo; A.Okoye).,21,13,2012 -20121216_GB@CHI,4,5,39,GB,CHI,3,7,77,(5:39) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings. CHI-J.Peppers was injured during the play. PENALTY on CHI-J.Peppers Roughing the Passer 15 yards enforced at GB 23 - No Play.,21,13,2012 -20121216_GB@CHI,4,5,35,GB,CHI,1,10,62,(5:35) R.Grant left guard to GB 43 for 5 yards (N.Roach).,21,13,2012 -20121216_GB@CHI,4,4,51,GB,CHI,2,5,57,(4:51) G.Van Roten reported in as eligible. R.Grant left end to GB 45 for 2 yards (S.Paea).,21,13,2012 -20121216_GB@CHI,4,4,7,GB,CHI,3,3,55,(4:07) A.Rodgers pass incomplete deep right to G.Jennings.,21,13,2012 -20121216_GB@CHI,4,4,1,GB,CHI,4,3,55,(4:01) (Punt formation) T.Masthay punts 39 yards to CHI 16 Center-B.Goode. D.Hester pushed ob at CHI 33 for 17 yards (R.Francois).,21,13,2012 -20121216_GB@CHI,4,3,47,CHI,GB,1,10,67,(3:47) J.Cutler pass short left to B.Marshall to CHI 44 for 11 yards (M.Burnett).,13,21,2012 -20121216_GB@CHI,4,3,8,CHI,GB,1,10,56,(3:08) (Shotgun) J.Cutler pass incomplete deep middle to B.Marshall.,13,21,2012 -20121216_GB@CHI,4,3,2,CHI,GB,2,10,56,(3:02) (Shotgun) J.Cutler pass incomplete short middle to M.Forte (C.Matthews).,13,21,2012 -20121216_GB@CHI,4,2,58,CHI,GB,3,10,56,(2:58) (Shotgun) J.Cutler pass deep left to A.Jeffery pushed ob at GB 20 for 36 yards. PENALTY on CHI-A.Jeffery Offensive Pass Interference 10 yards enforced at CHI 44 - No Play.,13,21,2012 -20121216_GB@CHI,4,2,51,CHI,GB,3,20,66,(2:51) (Shotgun) J.Cutler pass short middle to B.Marshall to CHI 45 for 11 yards (M.Burnett).,13,21,2012 -20121216_GB@CHI,4,2,12,CHI,GB,4,9,55,(2:12) (Shotgun) J.Cutler pass incomplete short left to A.Jeffery (S.Shields).,13,21,2012 -20121216_GB@CHI,4,2,7,GB,CHI,1,10,45,(2:07) G.Van Roten reported in as eligible. R.Grant right guard to CHI 43 for 2 yards (C.Tillman).,21,13,2012 -20121216_GB@CHI,4,2,0,GB,CHI,2,8,43,(2:00) A.Rodgers scrambles right end to CHI 41 for 2 yards.,21,13,2012 -20121216_GB@CHI,4,1,50,GB,CHI,3,6,41,(1:50) G.Van Roten reported in as eligible. R.Grant left guard to CHI 36 for 5 yards (M.Wright; C.Conte).,21,13,2012 -20121216_GB@CHI,4,1,50,GB,CHI,4,1,36,(1:50) (Punt formation) PENALTY on GB-T.Masthay Delay of Game 5 yards enforced at CHI 36 - No Play.,21,13,2012 -20121216_GB@CHI,4,1,2,GB,CHI,4,6,41,(1:02) (Punt formation) T.Masthay punts 38 yards to CHI 3 Center-B.Goode out of bounds.,21,13,2012 -20121216_GB@CHI,4,0,56,CHI,GB,1,10,97,(:56) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 13 for 10 yards (B.Jones; D.Moses).,13,21,2012 -20121216_GB@CHI,4,0,37,CHI,GB,1,10,87,(:37) (No Huddle Shotgun) J.Cutler sacked at CHI 4 for -9 yards (sack split by J.Worthy and M.Neal).,13,21,2012 -20121216_GB@CHI,4,0,2,CHI,GB,2,19,96,(:02) J.Cutler pass short middle to M.Forte to CHI 22 for 18 yards (B.Jones).,13,21,2012 -20121216_GB@CHI,4,0,2,CHI,GB,,,96,                      ,13,21,2012 -20121216_WAS@CLE,1,0,0,CLE,WAS,,,96,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,0,0,2012 -20121216_WAS@CLE,1,60,0,WAS,CLE,1,10,80,(15:00) A.Morris right tackle to WAS 25 for 5 yards (K.Maiava).,0,0,2012 -20121216_WAS@CLE,1,59,24,WAS,CLE,2,5,75,(14:24) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at WAS 25 - No Play.,0,0,2012 -20121216_WAS@CLE,1,59,13,WAS,CLE,2,10,80,(14:13) A.Morris right tackle to WAS 25 for 5 yards (P.Taylor).,0,0,2012 -20121216_WAS@CLE,1,58,34,WAS,CLE,3,5,75,(13:34) (Shotgun) K.Cousins pass incomplete to E.Royster.,0,0,2012 -20121216_WAS@CLE,1,58,30,WAS,CLE,4,5,75,(13:30) (Punt formation) S.Rocca punts 50 yards to CLV 25 Center-N.Sundberg. J.Cribbs to CLV 30 for 5 yards (R.Doughty). PENALTY on CLV-J.Haden Illegal Block Above the Waist 10 yards enforced at CLV 30.,0,0,2012 -20121216_WAS@CLE,1,58,20,CLE,WAS,1,10,80,(13:20) B.Weeden pass to B.Watson to CLV 28 for 8 yards (L.Fletcher).,0,0,2012 -20121216_WAS@CLE,1,57,43,CLE,WAS,2,2,72,(12:43) T.Richardson left guard to CLV 32 for 4 yards (P.Riley; L.Fletcher).,0,0,2012 -20121216_WAS@CLE,1,57,1,CLE,WAS,1,10,68,(12:01) (Shotgun) B.Weeden pass incomplete to J.Cribbs (R.Kerrigan).,0,0,2012 -20121216_WAS@CLE,1,56,57,CLE,WAS,2,10,68,(11:57) T.Richardson left guard to CLV 46 for 14 yards (J.Wilson; Mad.Williams).,0,0,2012 -20121216_WAS@CLE,1,56,21,CLE,WAS,1,10,54,(11:21) B.Weeden pass incomplete to J.Gordon.,0,0,2012 -20121216_WAS@CLE,1,56,17,CLE,WAS,2,10,54,(11:17) T.Richardson left guard to CLV 46 for no gain (J.Jenkins; L.Fletcher).,0,0,2012 -20121216_WAS@CLE,1,55,37,CLE,WAS,3,10,54,(10:37) (Shotgun) PENALTY on CLV-A.Mack False Start 5 yards enforced at CLV 46 - No Play.,0,0,2012 -20121216_WAS@CLE,1,55,23,CLE,WAS,3,15,59,(10:23) (Shotgun) B.Weeden scrambles left end ran ob at 50 for 9 yards (L.Fletcher).,0,0,2012 -20121216_WAS@CLE,1,54,55,CLE,WAS,4,6,50,(9:55) (Punt formation) R.Hodges punts 40 yards to WAS 10 Center-C.Yount. R.Crawford to WAS 23 for 13 yards (J.Cribbs).,0,0,2012 -20121216_WAS@CLE,1,54,45,WAS,CLE,1,10,77,(9:45) K.Cousins pass incomplete to P.Garcon (J.Haden).,0,0,2012 -20121216_WAS@CLE,1,54,41,WAS,CLE,2,10,77,(9:41) A.Morris right tackle to WAS 23 for no gain (P.Taylor; D.Jackson).,0,0,2012 -20121216_WAS@CLE,1,54,2,WAS,CLE,3,10,77,(9:02) (Shotgun) K.Cousins pass deep left intended for P.Garcon INTERCEPTED by T.Ward at WAS 42. T.Ward to WAS 6 for 36 yards (K.Cousins). Tipped ball by 24 S. Brown,0,0,2012 -20121216_WAS@CLE,1,53,50,CLE,WAS,1,6,6,(8:50) T.Richardson left guard for 6 yards TOUCHDOWN. Most rushing touchdowns by a Browns rookie running back,0,0,2012 -20121216_WAS@CLE,1,53,50,CLE,WAS,,,6,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20121216_WAS@CLE,1,53,50,CLE,WAS,,,6,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,7,0,2012 -20121216_WAS@CLE,1,53,41,WAS,CLE,1,10,80,(8:41) A.Morris right tackle to WAS 20 for no gain (J.Johnson; A.Rubin).,0,7,2012 -20121216_WAS@CLE,1,53,3,WAS,CLE,2,10,80,(8:03) (Shotgun) K.Cousins pass short right to A.Morris to WAS 24 for 4 yards (D.Jackson).,0,7,2012 -20121216_WAS@CLE,1,52,25,WAS,CLE,3,6,76,(7:25) (Shotgun) K.Cousins sacked at WAS 15 for -9 yards (J.Sheard).,0,7,2012 -20121216_WAS@CLE,1,52,7,WAS,CLE,4,15,85,(7:07) (Punt formation) S.Rocca punts 57 yards to CLV 28 Center-N.Sundberg. J.Cribbs ran ob at CLV 38 for 10 yards (B.Kehl).,0,7,2012 -20121216_WAS@CLE,1,51,58,CLE,WAS,1,10,62,(6:58) PENALTY on CLV-J.Thomas False Start 5 yards enforced at CLV 38 - No Play.,7,0,2012 -20121216_WAS@CLE,1,51,58,CLE,WAS,1,15,67,(6:58) B.Weeden pass short right to J.Cameron to CLV 35 for 2 yards (P.Riley) [R.Doughty].,7,0,2012 -20121216_WAS@CLE,1,51,18,CLE,WAS,2,13,65,(6:18) M.Hardesty right tackle to CLV 37 for 2 yards (D.Hall; P.Riley).,7,0,2012 -20121216_WAS@CLE,1,50,38,CLE,WAS,3,11,63,(5:38) (Shotgun) B.Weeden pass short right to G.Little to CLV 42 for 5 yards (D.Hall).,7,0,2012 -20121216_WAS@CLE,1,50,7,CLE,WAS,4,6,58,(5:07) (Punt formation) R.Hodges punts 58 yards to end zone Center-C.Yount Touchback.,7,0,2012 -20121216_WAS@CLE,1,49,59,WAS,CLE,1,10,80,(4:59) A.Morris left tackle to WAS 22 for 2 yards (P.Taylor). pitchout,0,7,2012 -20121216_WAS@CLE,1,49,17,WAS,CLE,2,8,78,(4:17) K.Cousins pass incomplete deep right to P.Garcon [K.Maiava].,0,7,2012 -20121216_WAS@CLE,1,49,10,WAS,CLE,3,8,78,(4:10) (Shotgun) K.Cousins pass incomplete to E.Royster.,0,7,2012 -20121216_WAS@CLE,1,49,6,WAS,CLE,4,8,78,(4:06) (Punt formation) S.Rocca punts 53 yards to CLV 25 Center-N.Sundberg fair catch by J.Cribbs.,0,7,2012 -20121216_WAS@CLE,1,48,59,CLE,WAS,1,10,75,(3:59) T.Richardson left tackle to CLV 26 for 1 yard (Mad.Williams; R.Jackson).,7,0,2012 -20121216_WAS@CLE,1,48,21,CLE,WAS,2,9,74,(3:21) B.Weeden pass short right to T.Richardson to CLV 20 for -6 yards (L.Fletcher).,7,0,2012 -20121216_WAS@CLE,1,47,38,CLE,WAS,3,15,80,(2:38) (Shotgun) B.Weeden pass incomplete deep left to M.Massaquoi.,7,0,2012 -20121216_WAS@CLE,1,47,33,CLE,WAS,4,15,80,(2:33) (Punt formation) R.Hodges punts 34 yards to WAS 46 Center-C.Yount out of bounds.,7,0,2012 -20121216_WAS@CLE,1,47,26,WAS,CLE,1,10,54,(2:26) K.Cousins pass deep right to L.Hankerson for 54 yards TOUCHDOWN.,0,7,2012 -20121216_WAS@CLE,1,47,26,WAS,CLE,,,54,(Kick formation) K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,7,2012 -20121216_WAS@CLE,1,47,26,WAS,CLE,,,54,K.Forbath kicks 67 yards from WAS 35 to CLV -2. J.Cribbs to CLV 23 for 25 yards (L.Alexander).,7,7,2012 -20121216_WAS@CLE,1,47,11,CLE,WAS,1,10,77,(2:11) B.Weeden pass incomplete short left to J.Gordon (R.Jackson).,7,7,2012 -20121216_WAS@CLE,1,47,9,CLE,WAS,2,10,77,(2:09) B.Weeden pass short left to T.Richardson to CLV 24 for 1 yard (R.Jackson).,7,7,2012 -20121216_WAS@CLE,1,46,26,CLE,WAS,3,9,76,(1:26) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 34 for 10 yards (J.Wilson). Penalty on WAS-J.Jenkins Illegal Use of Hands declined.,7,7,2012 -20121216_WAS@CLE,1,45,59,CLE,WAS,1,10,66,(:59) T.Richardson right tackle to CLV 35 for 1 yard (R.Kerrigan).,7,7,2012 -20121216_WAS@CLE,1,45,21,CLE,WAS,2,9,65,(:21) B.Weeden pass incomplete short right to B.Watson.,7,7,2012 -20121216_WAS@CLE,1,45,16,CLE,WAS,3,9,65,(:16) (Shotgun) B.Weeden pass short left to A.Smith to CLV 42 for 7 yards (D.Hall).,7,7,2012 -20121216_WAS@CLE,2,45,0,CLE,WAS,4,2,58,(15:00) (Punt formation) R.Hodges punts 37 yards to WAS 21 Center-C.Yount fair catch by R.Crawford.,7,7,2012 -20121216_WAS@CLE,2,44,53,WAS,CLE,1,10,79,(14:53) K.Cousins pass short right to P.Garcon to WAS 25 for 4 yards (J.Haden).,7,7,2012 -20121216_WAS@CLE,2,44,18,WAS,CLE,2,6,75,(14:18) K.Cousins pass short left to D.Young to WAS 33 for 8 yards (K.Maiava).,7,7,2012 -20121216_WAS@CLE,2,43,49,WAS,CLE,1,10,67,(13:49) A.Morris left end to WAS 37 for 4 yards (J.Johnson).,7,7,2012 -20121216_WAS@CLE,2,43,17,WAS,CLE,2,6,63,(13:17) K.Cousins pass short middle to P.Garcon to CLV 47 for 16 yards (S.Brown).,7,7,2012 -20121216_WAS@CLE,2,42,35,WAS,CLE,1,10,47,(12:35) A.Morris left guard to CLV 48 for -1 yards (T.Ward).,7,7,2012 -20121216_WAS@CLE,2,41,57,WAS,CLE,2,11,48,(11:57) K.Cousins pass short right to L.Paulsen to CLV 45 for 3 yards (T.Ward) [C.Robertson].,7,7,2012 -20121216_WAS@CLE,2,41,17,WAS,CLE,3,8,45,(11:17) (Shotgun) K.Cousins pass short left to P.Garcon to CLV 38 for 7 yards (S.Brown).,7,7,2012 -20121216_WAS@CLE,2,40,26,WAS,CLE,4,1,38,(10:26) (Run formation) PENALTY on WAS-K.Lichtensteiger False Start 5 yards enforced at CLV 38 - No Play.,7,7,2012 -20121216_WAS@CLE,2,40,26,WAS,CLE,4,6,43,(10:26) (Punt formation) S.Rocca punts 21 yards to CLV 22 Center-N.Sundberg fair catch by J.Cribbs.,7,7,2012 -20121216_WAS@CLE,2,40,19,CLE,WAS,1,10,78,(10:19) B.Weeden pass incomplete short left to J.Gordon.,7,7,2012 -20121216_WAS@CLE,2,40,15,CLE,WAS,2,10,78,(10:15) B.Weeden pass incomplete short middle to G.Little (D.Worthington).,7,7,2012 -20121216_WAS@CLE,2,40,11,CLE,WAS,3,10,78,(10:11) (Shotgun) B.Weeden pass short left to M.Massaquoi to CLV 31 for 9 yards (J.Wilson).,7,7,2012 -20121216_WAS@CLE,2,39,34,CLE,WAS,4,1,69,(9:34) (Punt formation) R.Hodges punts 51 yards to WAS 18 Center-C.Yount. R.Crawford to WAS 23 for 5 yards (J.Bademosi).,7,7,2012 -20121216_WAS@CLE,2,39,22,WAS,CLE,1,10,77,(9:22) K.Cousins pass short left to J.Morgan to WAS 29 for 6 yards (S.Brown; I.Kitchen).,7,7,2012 -20121216_WAS@CLE,2,38,38,WAS,CLE,2,4,71,(8:38) K.Cousins scrambles right end to WAS 46 for 17 yards (J.Haden).,7,7,2012 -20121216_WAS@CLE,2,38,2,WAS,CLE,1,10,54,(8:02) A.Morris right tackle to WAS 47 for 1 yard (C.Robertson; B.Winn).,7,7,2012 -20121216_WAS@CLE,2,37,23,WAS,CLE,2,9,53,(7:23) K.Cousins pass incomplete deep left to P.Garcon. Washington challenged the pass completion ruling and the play was Upheld. (Timeout #2.),7,7,2012 -20121216_WAS@CLE,2,37,11,WAS,CLE,3,9,53,(7:11) (Shotgun) K.Cousins pass short right to E.Royster to CLV 28 for 25 yards (T.Ward).,7,7,2012 -20121216_WAS@CLE,2,36,33,WAS,CLE,1,10,28,(6:33) K.Cousins pass incomplete short middle to S.Moss.,7,7,2012 -20121216_WAS@CLE,2,36,31,WAS,CLE,2,10,28,(6:31) A.Morris left guard to CLV 26 for 2 yards (B.Winn; F.Rucker).,7,7,2012 -20121216_WAS@CLE,2,35,53,WAS,CLE,3,8,26,(5:53) (Shotgun) K.Cousins pass incomplete short right to L.Hankerson.,7,7,2012 -20121216_WAS@CLE,2,35,50,WAS,CLE,4,8,26,(5:50) (Field Goal formation) K.Forbath 44 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,7,7,2012 -20121216_WAS@CLE,2,35,50,WAS,CLE,,,26,K.Forbath kicks 71 yards from WAS 35 to CLV -6. J.Cribbs to CLV 25 for 31 yards (N.Paul).,10,7,2012 -20121216_WAS@CLE,2,35,41,CLE,WAS,1,10,75,(5:41) (Shotgun) B.Weeden pass incomplete short left to M.Massaquoi (J.Wilson). PENALTY on WAS-P.Riley Defensive Offside 5 yards enforced at CLV 25 - No Play.,7,10,2012 -20121216_WAS@CLE,2,35,38,CLE,WAS,1,5,70,(5:38) T.Richardson right guard to CLV 29 for -1 yards (B.Cofield; R.Jackson).,7,10,2012 -20121216_WAS@CLE,2,34,59,CLE,WAS,2,6,71,(4:59) B.Weeden pass short right to A.Smith to CLV 30 for 1 yard (R.Kerrigan).,7,10,2012 -20121216_WAS@CLE,2,34,15,CLE,WAS,3,5,70,(4:15) (Shotgun) B.Weeden pass short right to J.Gordon to CLV 35 for 5 yards (L.Alexander). WAS-L.Alexander was injured during the play. His return is Questionable.,7,10,2012 -20121216_WAS@CLE,2,33,42,CLE,WAS,1,10,65,(3:42) B.Weeden pass short right to J.Gordon to CLV 47 for 12 yards (D.Hall).,7,10,2012 -20121216_WAS@CLE,2,33,18,CLE,WAS,1,10,53,(3:18) B.Weeden pass deep left to G.Little to WAS 23 for 30 yards (J.Wilson).,7,10,2012 -20121216_WAS@CLE,2,32,42,CLE,WAS,1,10,23,(2:42) (Shotgun) J.Cribbs right end to WAS 7 for 16 yards (P.Riley). direct snap to 16 Cribbs,7,10,2012 -20121216_WAS@CLE,2,32,0,CLE,WAS,1,7,7,(2:00) B.Weeden pass short right to J.Cameron to WAS 3 for 4 yards (D.Hall).,7,10,2012 -20121216_WAS@CLE,2,31,20,CLE,WAS,2,3,3,(1:20) T.Richardson right guard for 3 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. T.Richardson right guard to WAS 1 for 2 yards (L.Fletcher; Mad.Williams).,7,10,2012 -20121216_WAS@CLE,2,31,14,CLE,WAS,3,1,1,(1:14) T.Richardson left tackle for 1 yard TOUCHDOWN.,7,10,2012 -20121216_WAS@CLE,2,31,14,CLE,WAS,,,1,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,7,10,2012 -20121216_WAS@CLE,2,31,14,CLE,WAS,,,1,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,14,10,2012 -20121216_WAS@CLE,2,31,11,WAS,CLE,1,10,80,(1:11) (Shotgun) K.Cousins pass short middle to S.Moss to WAS 29 for 9 yards (C.Robertson).,10,14,2012 -20121216_WAS@CLE,2,30,51,WAS,CLE,2,1,71,(:51) (No Huddle Shotgun) K.Cousins pass to J.Morgan to WAS 39 for 10 yards (S.Brown).,10,14,2012 -20121216_WAS@CLE,2,30,33,WAS,CLE,1,10,61,(:33) (No Huddle Shotgun) K.Cousins sacked at WAS 27 for -12 yards (J.Parker). FUMBLES (J.Parker) and recovers at WAS 27. K.Cousins to WAS 27 for no gain (J.Parker).,10,14,2012 -20121216_WAS@CLE,2,30,8,WAS,CLE,2,22,73,(:08) E.Royster left tackle to WAS 26 for -1 yards (B.Winn; C.Robertson).,10,14,2012 -20121216_WAS@CLE,3,30,0,WAS,CLE,,,73,K.Forbath kicks 59 yards from WAS 35 to CLV 6. J.Cribbs to CLV 26 for 20 yards (J.Pugh).,10,14,2012 -20121216_WAS@CLE,3,29,56,CLE,WAS,1,10,74,(14:56) T.Richardson left guard to CLV 27 for 1 yard (R.Doughty).,14,10,2012 -20121216_WAS@CLE,3,29,21,CLE,WAS,2,9,73,(14:21) B.Weeden pass short middle intended for G.Little INTERCEPTED by R.Jackson at CLV 32. R.Jackson to CLV 15 for 17 yards (S.Lauvao).,14,10,2012 -20121216_WAS@CLE,3,29,12,WAS,CLE,1,10,15,(14:12) K.Cousins pass short left to J.Morgan to CLV 3 for 12 yards (T.Ward).,10,14,2012 -20121216_WAS@CLE,3,28,27,WAS,CLE,1,3,3,(13:27) K.Cousins pass incomplete short right to P.Garcon (J.Haden).,10,14,2012 -20121216_WAS@CLE,3,28,20,WAS,CLE,2,3,3,(13:20) A.Morris left guard for 3 yards TOUCHDOWN.,10,14,2012 -20121216_WAS@CLE,3,28,20,WAS,CLE,,,3,(Kick formation) K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,10,14,2012 -20121216_WAS@CLE,3,28,20,WAS,CLE,,,3,K.Forbath kicks 64 yards from WAS 35 to CLV 1. J.Cribbs to CLV 27 for 26 yards (B.Kehl; D.Hall).,17,14,2012 -20121216_WAS@CLE,3,28,8,CLE,WAS,1,10,73,(13:08) B.Weeden pass short right to G.Little to CLV 34 for 7 yards (R.Kerrigan).,14,17,2012 -20121216_WAS@CLE,3,28,8,CLE,WAS,2,3,66,(13:08) PENALTY on CLV-M.Schwartz False Start 5 yards enforced at CLV 34 - No Play.,14,17,2012 -20121216_WAS@CLE,3,27,13,CLE,WAS,2,8,71,(12:13) T.Richardson left guard to CLV 28 for -1 yards (R.Doughty).,14,17,2012 -20121216_WAS@CLE,3,26,36,CLE,WAS,3,9,72,(11:36) (Shotgun) B.Weeden pass incomplete short right to T.Richardson (R.Kerrigan).,14,17,2012 -20121216_WAS@CLE,3,26,32,CLE,WAS,4,9,72,(11:32) (Punt formation) R.Hodges punts 32 yards to WAS 40 Center-C.Yount out of bounds.,14,17,2012 -20121216_WAS@CLE,3,26,24,WAS,CLE,1,10,60,(11:24) K.Cousins pass short middle to S.Moss to CLV 43 for 17 yards (D.Patterson).,17,14,2012 -20121216_WAS@CLE,3,25,51,WAS,CLE,1,10,43,(10:51) A.Morris right end to CLV 37 for 6 yards (D.Jackson). pitchout,17,14,2012 -20121216_WAS@CLE,3,25,24,WAS,CLE,2,4,37,(10:24) K.Cousins pass short right to S.Moss to CLV 17 for 20 yards (C.Robertson).,17,14,2012 -20121216_WAS@CLE,3,24,40,WAS,CLE,1,10,17,(9:40) A.Morris left tackle to CLV 6 for 11 yards (K.Maiava). pitchout,17,14,2012 -20121216_WAS@CLE,3,24,2,WAS,CLE,1,6,6,(9:02) A.Morris left tackle to CLV 4 for 2 yards (P.Taylor).,17,14,2012 -20121216_WAS@CLE,3,23,25,WAS,CLE,2,4,4,(8:25) K.Cousins pass short middle to A.Morris to CLV 2 for 2 yards (J.Sheard).,17,14,2012 -20121216_WAS@CLE,3,22,45,WAS,CLE,3,2,2,(7:45) K.Cousins pass short right to L.Hankerson for 2 yards TOUCHDOWN.,17,14,2012 -20121216_WAS@CLE,3,22,45,WAS,CLE,,,2,(Kick formation) K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,17,14,2012 -20121216_WAS@CLE,3,22,45,WAS,CLE,,,2,K.Forbath kicks 65 yards from WAS 35 to CLV 0. J.Cribbs to CLV 32 for 32 yards (N.Paul).,24,14,2012 -20121216_WAS@CLE,3,22,35,CLE,WAS,1,10,68,(7:35) B.Weeden pass short left to G.Little to WAS 48 for 20 yards (Mad.Williams; R.Doughty).,14,24,2012 -20121216_WAS@CLE,3,22,2,CLE,WAS,1,10,48,(7:02) B.Weeden pass short right to B.Watson to WAS 44 for 4 yards (L.Fletcher; D.Hall).,14,24,2012 -20121216_WAS@CLE,3,21,27,CLE,WAS,2,6,44,(6:27) M.Hardesty left tackle to WAS 41 for 3 yards (C.Baker). pitchout,14,24,2012 -20121216_WAS@CLE,3,20,52,CLE,WAS,3,3,41,(5:52) B.Weeden pass incomplete short right to J.Gordon.,14,24,2012 -20121216_WAS@CLE,3,20,48,CLE,WAS,4,3,41,(5:48) (Shotgun) B.Weeden pass incomplete short left to B.Watson.,14,24,2012 -20121216_WAS@CLE,3,20,40,WAS,CLE,1,10,59,(5:40) K.Cousins pass deep middle to P.Garcon to CLV 42 for 17 yards (J.Haden). PENALTY on WAS-P.Garcon Taunting 15 yards enforced between downs.,24,14,2012 -20121216_WAS@CLE,3,20,19,WAS,CLE,1,10,57,(5:19) A.Morris left end to WAS 47 for 4 yards (P.Taylor).,24,14,2012 -20121216_WAS@CLE,3,19,38,WAS,CLE,2,6,53,(4:38) A.Morris left end to 50 for 3 yards (J.Johnson).,24,14,2012 -20121216_WAS@CLE,3,19,1,WAS,CLE,3,3,50,(4:01) K.Cousins pass incomplete short left to P.Garcon. PENALTY on CLV-S.Brown Illegal Contact 5 yards enforced at 50 - No Play.,24,14,2012 -20121216_WAS@CLE,3,18,57,WAS,CLE,1,10,45,(3:57) A.Morris right tackle to CLV 44 for 1 yard (T.Ward).,24,14,2012 -20121216_WAS@CLE,3,18,14,WAS,CLE,2,9,44,(3:14) K.Cousins pass incomplete short left to L.Paulsen. PENALTY on WAS-K.Cousins Intentional Grounding 10 yards enforced at CLV 44.,24,14,2012 -20121216_WAS@CLE,3,18,5,WAS,CLE,3,19,54,(3:05) (Shotgun) K.Cousins pass short left to E.Royster to CLV 49 for 5 yards (D.Patterson).,24,14,2012 -20121216_WAS@CLE,3,17,26,WAS,CLE,4,14,49,(2:26) (Punt formation) S.Rocca punts 32 yards to CLV 17 Center-N.Sundberg fair catch by J.Cribbs.,24,14,2012 -20121216_WAS@CLE,3,17,21,CLE,WAS,1,10,83,(2:21) (Shotgun) B.Weeden pass short middle to G.Little to CLV 29 for 12 yards (J.Wilson).,14,24,2012 -20121216_WAS@CLE,3,16,44,CLE,WAS,1,10,71,(1:44) B.Weeden pass short left to J.Cameron to WAS 43 for 28 yards (R.Doughty).,14,24,2012 -20121216_WAS@CLE,3,16,10,CLE,WAS,1,10,43,(1:10) B.Weeden pass deep left intended for G.Little INTERCEPTED by L.Fletcher at WAS 25. L.Fletcher to WAS 33 for 8 yards (G.Little).,14,24,2012 -20121216_WAS@CLE,3,16,1,WAS,CLE,1,10,67,(1:01) A.Morris right guard to WAS 37 for 4 yards (J.Hughes; D.Jackson).,24,14,2012 -20121216_WAS@CLE,3,15,19,WAS,CLE,2,6,63,(:19) (Shotgun) K.Cousins pass incomplete short right to P.Garcon.,24,14,2012 -20121216_WAS@CLE,3,15,13,WAS,CLE,3,6,63,(:13) (Shotgun) K.Cousins pass short right to L.Paulsen to CLV 44 for 19 yards (C.Robertson).,24,14,2012 -20121216_WAS@CLE,4,15,0,WAS,CLE,1,10,44,(15:00) K.Cousins pass short middle to P.Garcon to CLV 29 for 15 yards (D.Jackson).,24,14,2012 -20121216_WAS@CLE,4,14,26,WAS,CLE,1,10,29,(14:26) A.Morris right guard to CLV 24 for 5 yards (J.Johnson; D.Jackson).,24,14,2012 -20121216_WAS@CLE,4,13,47,WAS,CLE,2,5,24,(13:47) (Shotgun) A.Morris right guard to CLV 21 for 3 yards (D.Jackson).,24,14,2012 -20121216_WAS@CLE,4,13,3,WAS,CLE,3,2,21,(13:03) K.Cousins pass short left to P.Garcon to CLV 15 for 6 yards (S.Brown).,24,14,2012 -20121216_WAS@CLE,4,12,28,WAS,CLE,1,10,15,(12:28) K.Cousins scrambles left end to CLV 9 for 6 yards (U.Young).,24,14,2012 -20121216_WAS@CLE,4,11,55,WAS,CLE,2,4,9,(11:55) A.Morris left tackle to CLV 4 for 5 yards (S.Brown).,24,14,2012 -20121216_WAS@CLE,4,11,23,WAS,CLE,1,4,4,(11:23) E.Royster left tackle for 4 yards TOUCHDOWN.,24,14,2012 -20121216_WAS@CLE,4,11,23,WAS,CLE,,,4,(Kick formation) K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,24,14,2012 -20121216_WAS@CLE,4,11,23,WAS,CLE,,,4,K.Forbath kicks 66 yards from WAS 35 to CLV -1. J.Cribbs to CLV 28 for 29 yards (L.Alexander).,31,14,2012 -20121216_WAS@CLE,4,11,14,CLE,WAS,1,10,72,(11:14) (Shotgun) B.Weeden pass short middle to M.Massaquoi to CLV 35 for 7 yards (R.Jackson).,14,31,2012 -20121216_WAS@CLE,4,10,52,CLE,WAS,2,3,65,(10:52) (No Huddle Shotgun) B.Weeden sacked at CLV 31 for -4 yards (R.Jackson). FUMBLES (R.Jackson) and recovers at CLV 31. B.Weeden to CLV 31 for no gain (R.Jackson).,14,31,2012 -20121216_WAS@CLE,4,10,11,CLE,WAS,3,7,69,(10:11) B.Weeden pass deep middle to T.Benjamin for 69 yards TOUCHDOWN.,14,31,2012 -20121216_WAS@CLE,4,10,11,CLE,WAS,,,69,(Kick formation) P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,14,31,2012 -20121216_WAS@CLE,4,10,11,CLE,WAS,,,69,P.Dawson kicks 63 yards from CLV 35 to WAS 2. E.Royster to WAS 24 for 22 yards (J.Cribbs).,21,31,2012 -20121216_WAS@CLE,4,10,5,WAS,CLE,1,10,76,(10:05) K.Cousins pass short middle to J.Morgan to CLV 44 for 32 yards (T.Gipson).,31,21,2012 -20121216_WAS@CLE,4,9,23,WAS,CLE,1,10,44,(9:23) A.Morris right end to CLV 40 for 4 yards (U.Young).,31,21,2012 -20121216_WAS@CLE,4,8,50,WAS,CLE,2,6,40,(8:50) A.Morris left tackle to CLV 38 for 2 yards (B.Winn).,31,21,2012 -20121216_WAS@CLE,4,8,7,WAS,CLE,3,4,38,(8:07) (Shotgun) K.Cousins pass short left to L.Paulsen to CLV 28 for 10 yards (U.Young).,31,21,2012 -20121216_WAS@CLE,4,7,38,WAS,CLE,1,10,28,(7:38) A.Morris left tackle to CLV 25 for 3 yards (J.Hughes; C.Robertson). pitchout,31,21,2012 -20121216_WAS@CLE,4,6,54,WAS,CLE,2,7,25,(6:54) PENALTY on WAS-C.Chester False Start 5 yards enforced at CLV 25 - No Play.,31,21,2012 -20121216_WAS@CLE,4,6,31,WAS,CLE,2,12,30,(6:31) (Shotgun) K.Cousins pass short middle to S.Moss to CLV 26 for 4 yards (D.Jackson).,31,21,2012 -20121216_WAS@CLE,4,5,50,WAS,CLE,3,8,26,(5:50) (Shotgun) K.Cousins pass short right to S.Moss to CLV 19 for 7 yards (J.Sheard). FUMBLES (J.Sheard) recovered by WAS-P.Garcon at CLV 8. P.Garcon to CLV 8 for no gain (U.Young).,31,21,2012 -20121216_WAS@CLE,4,5,5,WAS,CLE,1,8,8,(5:05) A.Morris left guard for 8 yards TOUCHDOWN.,31,21,2012 -20121216_WAS@CLE,4,5,5,WAS,CLE,,,8,(Kick formation) K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,31,21,2012 -20121216_WAS@CLE,4,5,5,WAS,CLE,,,8,K.Forbath kicks 62 yards from WAS 35 to CLV 3. J.Cribbs to CLV 31 for 28 yards (D.Johnson).,38,21,2012 -20121216_WAS@CLE,4,4,54,CLE,WAS,1,10,69,(4:54) (Shotgun) B.Weeden pass incomplete short left to J.Gordon.,21,38,2012 -20121216_WAS@CLE,4,4,50,CLE,WAS,2,10,69,(4:50) (Shotgun) B.Weeden pass short right to T.Richardson to CLV 40 for 9 yards (J.Wilson; P.Riley).,21,38,2012 -20121216_WAS@CLE,4,4,18,CLE,WAS,3,1,60,(4:18) (No Huddle Shotgun) B.Weeden sacked at CLV 33 for -7 yards (B.Cofield).,21,38,2012 -20121216_WAS@CLE,4,3,41,CLE,WAS,4,8,67,(3:41) (Shotgun) B.Weeden pass incomplete short right to G.Little.,21,38,2012 -20121216_WAS@CLE,4,3,34,WAS,CLE,1,10,33,(3:34) A.Morris left guard to CLV 30 for 3 yards (B.Winn).,38,21,2012 -20121216_WAS@CLE,4,3,21,WAS,CLE,2,7,30,(3:21) A.Morris right tackle to CLV 29 for 1 yard (T.Gipson).,38,21,2012 -20121216_WAS@CLE,4,3,15,WAS,CLE,3,6,29,(3:15) K.Cousins pass short left to L.Paulsen to CLV 14 for 15 yards (K.Maiava).,38,21,2012 -20121216_WAS@CLE,4,3,3,WAS,CLE,1,10,14,(3:03) D.Young left guard to CLV 12 for 2 yards (K.Maiava; J.Hughes).,38,21,2012 -20121216_WAS@CLE,4,2,18,WAS,CLE,2,8,12,(2:18) A.Morris left guard to CLV 11 for 1 yard (J.Hughes; J.Parker).,38,21,2012 -20121216_WAS@CLE,4,2,0,WAS,CLE,3,7,11,(2:00) D.Young right guard to CLV 5 for 6 yards (D.Jackson).,38,21,2012 -20121216_WAS@CLE,4,1,20,WAS,CLE,4,1,5,(1:20) D.Young left guard to CLV 3 for 2 yards (T.Gipson).,38,21,2012 -20121216_WAS@CLE,4,1,20,WAS,CLE,1,3,3,(1:20) K.Cousins kneels to CLV 4 for -1 yards.,38,21,2012 -20121216_WAS@CLE,4,1,20,WAS,CLE,,,3,                      ,38,21,2012 -20121216_IND@HOU,1,1,0,IND,HOU,,,3,P.McAfee kicks 72 yards from IND 35 to HST -7. K.Martin Touchback.,0,0,2012 -20121216_IND@HOU,1,60,0,HOU,IND,1,10,80,(15:00) M.Schaub pass short left to A.Johnson to HST 29 for 9 yards (V.Davis).,0,0,2012 -20121216_IND@HOU,1,59,34,HOU,IND,2,1,71,(14:34) M.Schaub pass deep middle to A.Johnson to IND 19 for 52 yards (V.Davis).,0,0,2012 -20121216_IND@HOU,1,58,54,HOU,IND,1,10,19,(13:54) A.Foster right guard to IND 14 for 5 yards (A.Bethea).,0,0,2012 -20121216_IND@HOU,1,58,16,HOU,IND,2,5,14,(13:16) A.Foster right end to IND 13 for 1 yard (J.Hughes).,0,0,2012 -20121216_IND@HOU,1,57,35,HOU,IND,3,4,13,(12:35) A.Foster right tackle to IND 11 for 2 yards (C.Vaughn).,0,0,2012 -20121216_IND@HOU,1,56,50,HOU,IND,4,2,11,(11:50) S.Graham 29 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121216_IND@HOU,1,56,50,HOU,IND,,,11,S.Graham kicks 66 yards from HST 35 to IND -1. D.Karim to IND 15 for 16 yards (J.Forsett). PENALTY on IND-M.Moore Offensive Holding 7 yards enforced at IND 15.,3,0,2012 -20121216_IND@HOU,1,56,41,IND,HOU,1,10,92,(11:41) V.Ballard right guard to IND 13 for 5 yards (D.Manning).,0,3,2012 -20121216_IND@HOU,1,55,57,IND,HOU,2,5,87,(10:57) A.Luck pass incomplete short left to D.Avery.,0,3,2012 -20121216_IND@HOU,1,55,51,IND,HOU,3,5,87,(10:51) (Shotgun) A.Luck pass incomplete short left to R.Wayne (G.Quin).,0,3,2012 -20121216_IND@HOU,1,55,44,IND,HOU,4,5,87,(10:44) P.McAfee punts 49 yards to HST 38 Center-M.Overton out of bounds. PENALTY on IND-T.Williams Player Out of Bounds on Punt 5 yards enforced between downs. (The punt hang time was 5.0 seconds.),0,3,2012 -20121216_IND@HOU,1,55,35,HOU,IND,1,5,57,(10:35) A.Foster right guard to HST 47 for 4 yards (A.Johnson).,3,0,2012 -20121216_IND@HOU,1,55,5,HOU,IND,2,1,53,(10:05) M.Schaub pass short left to O.Daniels to IND 45 for 8 yards (V.Davis). IND-V.Davis was injured during the play. His return is Probable.,3,0,2012 -20121216_IND@HOU,1,54,51,HOU,IND,1,10,45,(9:51) A.Foster right tackle to IND 40 for 5 yards (P.Angerer).,3,0,2012 -20121216_IND@HOU,1,54,20,HOU,IND,2,5,40,(9:20) M.Schaub pass incomplete deep right to L.Jean.,3,0,2012 -20121216_IND@HOU,1,54,13,HOU,IND,3,5,40,(9:13) (Shotgun) M.Schaub pass short middle to O.Daniels to IND 32 for 8 yards (D.Butler).,3,0,2012 -20121216_IND@HOU,1,53,35,HOU,IND,1,10,32,(8:35) A.Foster right guard to IND 29 for 3 yards (P.Angerer).,3,0,2012 -20121216_IND@HOU,1,53,2,HOU,IND,2,7,29,(8:02) M.Schaub pass short left to J.Casey to IND 20 for 9 yards (J.Freeman). Penalty on IND-K.Heard Illegal Use of Hands declined.,3,0,2012 -20121216_IND@HOU,1,52,42,HOU,IND,1,10,20,(7:42) M.Schaub pass incomplete short right to G.Graham.,3,0,2012 -20121216_IND@HOU,1,52,37,HOU,IND,2,10,20,(7:37) A.Foster right guard to IND 19 for 1 yard (P.Angerer).,3,0,2012 -20121216_IND@HOU,1,51,56,HOU,IND,3,9,19,(6:56) (Shotgun) M.Schaub pass short middle to A.Johnson to IND 9 for 10 yards (D.Butler).,3,0,2012 -20121216_IND@HOU,1,51,16,HOU,IND,1,9,9,(6:16) A.Foster up the middle to IND 5 for 4 yards (J.Freeman).,3,0,2012 -20121216_IND@HOU,1,50,36,HOU,IND,2,5,5,(5:36) A.Foster left tackle to IND 3 for 2 yards (C.Redding).,3,0,2012 -20121216_IND@HOU,1,49,55,HOU,IND,3,3,3,(4:55) (Shotgun) M.Schaub pass short middle to A.Johnson for 3 yards TOUCHDOWN.,3,0,2012 -20121216_IND@HOU,1,49,55,HOU,IND,,,3,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,0,2012 -20121216_IND@HOU,1,49,55,HOU,IND,,,3,S.Graham kicks 71 yards from HST 35 to IND -6. D.Karim to IND 20 for 26 yards (Q.Demps).,10,0,2012 -20121216_IND@HOU,1,49,43,IND,HOU,1,10,80,(4:43) V.Ballard right guard to IND 22 for 2 yards (D.Manning).,0,10,2012 -20121216_IND@HOU,1,48,59,IND,HOU,2,8,78,(3:59) PENALTY on HST-A.Smith Neutral Zone Infraction 5 yards enforced at IND 22 - No Play.,0,10,2012 -20121216_IND@HOU,1,48,55,IND,HOU,2,3,73,(3:55) V.Ballard right tackle to IND 27 for no gain (J.Watt). PENALTY on HST-J.Watt Illegal Use of Hands 5 yards enforced at IND 27.,0,10,2012 -20121216_IND@HOU,1,48,25,IND,HOU,1,10,68,(3:25) A.Luck sacked at IND 23 for -9 yards (A.Smith).,0,10,2012 -20121216_IND@HOU,1,47,45,IND,HOU,2,19,77,(2:45) (Shotgun) A.Luck pass short middle to D.Avery to IND 38 for 15 yards (D.Sharpton).,0,10,2012 -20121216_IND@HOU,1,47,6,IND,HOU,3,4,62,(2:06) (Shotgun) A.Luck pass incomplete short right to R.Wayne. PENALTY on HST-K.Jackson Personal Foul 15 yards enforced at IND 38 - No Play.,0,10,2012 -20121216_IND@HOU,1,47,0,IND,HOU,1,10,47,(2:00) V.Ballard left guard to HST 39 for 8 yards (D.Manning T.Dobbins).,0,10,2012 -20121216_IND@HOU,1,46,28,IND,HOU,2,2,39,(1:28) V.Ballard left guard to HST 34 for 5 yards (J.Crick).,0,10,2012 -20121216_IND@HOU,1,45,51,IND,HOU,1,10,34,(:51) (Shotgun) A.Luck sacked at HST 49 for -15 yards (J.Watt).,0,10,2012 -20121216_IND@HOU,1,45,13,IND,HOU,2,25,49,(:13) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,0,10,2012 -20121216_IND@HOU,1,45,6,IND,HOU,3,25,49,(:06) (Shotgun) A.Luck pass incomplete deep left to T.Hilton. Penalty on IND-J.Linkenbach Offensive Holding declined.,0,10,2012 -20121216_IND@HOU,2,45,0,IND,HOU,4,25,49,(15:00) P.McAfee punts 37 yards to HST 12 Center-M.Overton fair catch by K.Martin. (The punt hang time was 4.5 seconds.),0,10,2012 -20121216_IND@HOU,2,44,52,HOU,IND,1,10,88,(14:52) M.Schaub sacked at HST 4 for -8 yards (R.Mathis).,10,0,2012 -20121216_IND@HOU,2,44,22,HOU,IND,2,18,96,(14:22) B.Tate up the middle to HST 9 for 5 yards (J.Freeman).,10,0,2012 -20121216_IND@HOU,2,43,40,HOU,IND,3,13,91,(13:40) (Shotgun) B.Tate up the middle to HST 9 for no gain (J.Hughes). Penalty on HST-A.Johnson Unsportsmanlike Conduct declined.,10,0,2012 -20121216_IND@HOU,2,43,25,HOU,IND,4,13,91,(13:25) D.Jones punts 29 yards to HST 38 Center-J.Weeks out of bounds. (The punt hang time was 3.2 seconds.),10,0,2012 -20121216_IND@HOU,2,43,17,IND,HOU,1,10,38,(13:17) M.Moore right guard to HST 36 for 2 yards (D.Manning).,0,10,2012 -20121216_IND@HOU,2,42,38,IND,HOU,2,8,36,(12:38) (Shotgun) A.Luck pass short left to T.Hilton pushed ob at HST 19 for 17 yards (K.Jackson).,0,10,2012 -20121216_IND@HOU,2,42,7,IND,HOU,1,10,19,(12:07) M.Moore up the middle to HST 13 for 6 yards (G.Quin).,0,10,2012 -20121216_IND@HOU,2,41,33,IND,HOU,2,4,13,(11:33) M.Moore left tackle to HST 15 for -2 yards (J.Watt).,0,10,2012 -20121216_IND@HOU,2,40,51,IND,HOU,3,6,15,(10:51) (Shotgun) A.Luck pass incomplete short right to R.Wayne. PENALTY on HST-B.Harris Defensive Holding 5 yards enforced at HST 15 - No Play.,0,10,2012 -20121216_IND@HOU,2,40,45,IND,HOU,1,10,10,(10:45) A.Luck pass short right to D.Avery to HST 1 for 9 yards (E.Mitchell). HST-J.Joseph was injured during the play. His return is Probable.,0,10,2012 -20121216_IND@HOU,2,40,9,IND,HOU,2,1,1,(10:09) M.Moore right guard to HST 1 for no gain (J.Watt). FUMBLES (J.Watt) RECOVERED by HST-T.Dobbins at HST 1. T.Dobbins to HST 1 for no gain (M.Moore).,0,10,2012 -20121216_IND@HOU,2,40,2,HOU,IND,1,10,99,(10:02) M.Schaub pass incomplete short right to G.Graham.,10,0,2012 -20121216_IND@HOU,2,39,55,HOU,IND,2,10,99,(9:55) A.Foster left guard to HST 5 for 4 yards (C.Redding).,10,0,2012 -20121216_IND@HOU,2,39,12,HOU,IND,3,6,95,(9:12) (Shotgun) M.Schaub pass short middle to A.Foster to HST 7 for 2 yards (C.Redding).,10,0,2012 -20121216_IND@HOU,2,38,35,HOU,IND,4,4,93,(8:35) D.Jones punts 52 yards to IND 41 Center-J.Weeks. T.Hilton to HST 44 for 15 yards (Q.Demps). PENALTY on HST Offensive Holding 10 yards enforced between downs.,10,0,2012 -20121216_IND@HOU,2,38,22,IND,HOU,1,1,34,(8:22) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,0,10,2012 -20121216_IND@HOU,2,38,17,IND,HOU,2,1,34,(8:17) V.Ballard left guard pushed ob at HST 15 for 19 yards (D.Manning).,0,10,2012 -20121216_IND@HOU,2,37,42,IND,HOU,1,10,15,(7:42) V.Ballard left end pushed ob at HST 5 for 10 yards (T.Dobbins).,0,10,2012 -20121216_IND@HOU,2,37,15,IND,HOU,1,5,5,(7:15) V.Ballard left guard to HST 8 for -3 yards (J.Watt).,0,10,2012 -20121216_IND@HOU,2,36,32,IND,HOU,2,8,8,(6:32) (Shotgun) A.Luck pass incomplete short left to V.Ballard [J.Watt].,0,10,2012 -20121216_IND@HOU,2,36,20,IND,HOU,3,8,8,(6:20) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,0,10,2012 -20121216_IND@HOU,2,36,15,IND,HOU,4,8,8,(6:15) A.Vinatieri 26 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,0,10,2012 -20121216_IND@HOU,2,36,15,IND,HOU,,,8,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,3,10,2012 -20121216_IND@HOU,2,36,12,HOU,IND,1,10,80,(6:12) M.Schaub pass incomplete short right to A.Johnson.,10,3,2012 -20121216_IND@HOU,2,36,7,HOU,IND,2,10,80,(6:07) A.Foster left tackle to HST 23 for 3 yards (J.Freeman).,10,3,2012 -20121216_IND@HOU,2,35,26,HOU,IND,3,7,77,(5:26) (Shotgun) M.Schaub pass incomplete short middle to K.Walter. PENALTY on IND-M.Fokou Roughing the Passer 15 yards enforced at HST 23 - No Play.,10,3,2012 -20121216_IND@HOU,2,35,20,HOU,IND,1,10,62,(5:20) M.Schaub pass deep middle to D.Posey to IND 26 for 36 yards (J.Lefeged). PENALTY on IND Personal Foul 13 yards enforced at IND 26.,10,3,2012 -20121216_IND@HOU,2,34,53,HOU,IND,1,10,13,(4:53) M.Schaub pass incomplete short left to O.Daniels.,10,3,2012 -20121216_IND@HOU,2,34,47,HOU,IND,2,10,13,(4:47) B.Tate left end dead ball declared at IND 17 for -4 yards. (The runners helmet came off ending the play.),10,3,2012 -20121216_IND@HOU,2,34,0,HOU,IND,3,14,17,(4:00) (Shotgun) M.Schaub pass incomplete short right to O.Daniels.,10,3,2012 -20121216_IND@HOU,2,33,54,HOU,IND,4,5,17,(3:54) S.Graham 35 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,10,3,2012 -20121216_IND@HOU,2,33,54,HOU,IND,,,17,S.Graham kicks 71 yards from HST 35 to IND -6. D.Karim Touchback.,13,3,2012 -20121216_IND@HOU,2,33,50,IND,HOU,1,10,80,(3:50) A.Luck pass short right to R.Wayne to IND 23 for 3 yards (K.Jackson).,3,13,2012 -20121216_IND@HOU,2,33,17,IND,HOU,2,7,77,(3:17) A.Luck pass short left to D.Allen pushed ob at IND 35 for 12 yards (J.Joseph) [A.Smith].,3,13,2012 -20121216_IND@HOU,2,32,50,IND,HOU,1,10,65,(2:50) (Shotgun) A.Luck sacked at IND 32 for -3 yards (J.Watt).,3,13,2012 -20121216_IND@HOU,2,32,17,IND,HOU,2,13,68,(2:17) (Shotgun) V.Ballard left end to IND 29 for -3 yards (C.Barwin).,3,13,2012 -20121216_IND@HOU,2,32,0,IND,HOU,3,16,71,(2:00) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (Q.Demps).,3,13,2012 -20121216_IND@HOU,2,31,54,IND,HOU,4,16,71,(1:54) P.McAfee punt is BLOCKED by B.Braman Center-M.Overton RECOVERED by HST-B.Braman at IND 8. B.Braman for 8 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,3,13,2012 -20121216_IND@HOU,2,31,54,HOU,IND,,,71,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,13,3,2012 -20121216_IND@HOU,2,31,54,HOU,IND,,,71,S.Graham kicks 69 yards from HST 35 to IND -4. D.Karim to IND 26 for 30 yards (B.Ruud).,20,3,2012 -20121216_IND@HOU,2,31,38,IND,HOU,1,10,74,(1:38) (Shotgun) A.Luck pass short left to D.Avery to IND 39 for 13 yards (W.Mercilus).,3,20,2012 -20121216_IND@HOU,2,31,15,IND,HOU,1,10,61,(1:15) (Shotgun) A.Luck pass deep middle to T.Hilton for 61 yards TOUCHDOWN.,3,20,2012 -20121216_IND@HOU,2,31,15,IND,HOU,,,61,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,3,20,2012 -20121216_IND@HOU,2,31,15,IND,HOU,,,61,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,10,20,2012 -20121216_IND@HOU,2,31,7,HOU,IND,1,10,80,(1:07) (Shotgun) M.Schaub pass short left to K.Walter to HST 27 for 7 yards (V.Davis).,20,10,2012 -20121216_IND@HOU,2,30,49,HOU,IND,2,3,73,(:49) (Shotgun) M.Schaub pass short left to A.Johnson to HST 32 for 5 yards (D.Butler).,20,10,2012 -20121216_IND@HOU,2,30,44,HOU,IND,1,10,68,(:44) (Shotgun) M.Schaub pass short middle to K.Walter to HST 36 for 4 yards (D.Butler).,20,10,2012 -20121216_IND@HOU,2,30,37,HOU,IND,2,6,64,(:37) (Shotgun) M.Schaub pass deep middle to A.Johnson to IND 42 for 22 yards (D.Butler J.Freeman).,20,10,2012 -20121216_IND@HOU,2,30,37,HOU,IND,1,10,42,(:37) M.Schaub spiked the ball to stop the clock. PENALTY on IND Defensive Offside 5 yards enforced at IND 42 - No Play. Penalty on IND Defensive 12 On-field declined.,20,10,2012 -20121216_IND@HOU,2,30,37,HOU,IND,1,5,37,(:37) (Shotgun) M.Schaub pass short middle to A.Johnson to IND 31 for 6 yards (V.Davis).,20,10,2012 -20121216_IND@HOU,2,30,2,HOU,IND,1,10,31,(:02) S.Graham 50 yard field goal is No Good Wide Left Center-J.Weeks Holder-D.Jones.,20,10,2012 -20121216_IND@HOU,3,30,0,HOU,IND,,,31,S.Graham kicks 65 yards from HST 35 to IND 0. D.Karim pushed ob at IND 39 for 39 yards (S.Graham).,20,10,2012 -20121216_IND@HOU,3,29,50,IND,HOU,1,10,61,(14:50) A.Luck pass incomplete short right to V.Ballard (C.Barwin).,10,20,2012 -20121216_IND@HOU,3,29,45,IND,HOU,2,10,61,(14:45) A.Luck pass short right to R.Wayne to IND 43 for 4 yards (K.Jackson).,10,20,2012 -20121216_IND@HOU,3,29,8,IND,HOU,3,6,57,(14:08) (Shotgun) A.Luck pass incomplete short middle to T.Hilton.,10,20,2012 -20121216_IND@HOU,3,29,2,IND,HOU,4,6,57,(14:02) P.McAfee punts 44 yards to HST 13 Center-M.Overton out of bounds. (The punt hang time was 4.5 seconds.),10,20,2012 -20121216_IND@HOU,3,28,53,HOU,IND,1,10,87,(13:53) A.Foster right tackle pushed ob at HST 44 for 31 yards (J.Freeman).,20,10,2012 -20121216_IND@HOU,3,28,20,HOU,IND,1,10,56,(13:20) M.Schaub pass short left to A.Johnson pushed ob at IND 42 for 14 yards (V.Davis).,20,10,2012 -20121216_IND@HOU,3,27,52,HOU,IND,1,10,42,(12:52) A.Foster left tackle to IND 32 for 10 yards (V.Davis).,20,10,2012 -20121216_IND@HOU,3,27,11,HOU,IND,1,10,32,(12:11) B.Tate right guard pushed ob at IND 23 for 9 yards (C.Vaughn).,20,10,2012 -20121216_IND@HOU,3,26,36,HOU,IND,2,1,23,(11:36) B.Tate up the middle to IND 20 for 3 yards (J.Hughes; J.Freeman).,20,10,2012 -20121216_IND@HOU,3,25,57,HOU,IND,1,10,20,(10:57) A.Foster left end to IND 14 for 6 yards (J.Freeman).,20,10,2012 -20121216_IND@HOU,3,25,14,HOU,IND,2,4,14,(10:14) A.Foster up the middle to IND 8 for 6 yards (V.Davis).,20,10,2012 -20121216_IND@HOU,3,24,32,HOU,IND,1,8,8,(9:32) A.Foster left tackle to IND 8 for no gain (D.Freeney).,20,10,2012 -20121216_IND@HOU,3,23,53,HOU,IND,2,8,8,(8:53) M.Schaub sacked at IND 15 for -7 yards (D.Freeney).,20,10,2012 -20121216_IND@HOU,3,23,19,HOU,IND,3,15,15,(8:19) (Shotgun) A.Foster left guard to IND 9 for 6 yards (J.Freeman).,20,10,2012 -20121216_IND@HOU,3,22,36,HOU,IND,4,9,9,(7:36) S.Graham 27 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,20,10,2012 -20121216_IND@HOU,3,22,36,HOU,IND,,,9,S.Graham kicks 70 yards from HST 35 to IND -5. D.Karim Touchback.,23,10,2012 -20121216_IND@HOU,3,22,33,IND,HOU,1,10,80,(7:33) V.Ballard right guard to IND 35 for 15 yards (B.James; D.Manning).,10,23,2012 -20121216_IND@HOU,3,21,51,IND,HOU,1,10,65,(6:51) A.Luck scrambles right end to IND 42 for 7 yards (B.James).,10,23,2012 -20121216_IND@HOU,3,21,13,IND,HOU,2,3,58,(6:13) V.Ballard right tackle to HST 49 for 9 yards (D.Sharpton).,10,23,2012 -20121216_IND@HOU,3,20,37,IND,HOU,1,10,49,(5:37) V.Ballard up the middle to HST 48 for 1 yard (J.Watt).,10,23,2012 -20121216_IND@HOU,3,19,55,IND,HOU,2,9,48,(4:55) V.Ballard up the middle to HST 36 for 12 yards (G.Quin).,10,23,2012 -20121216_IND@HOU,3,19,11,IND,HOU,1,10,36,(4:11) A.Luck pass short left to T.Hilton to HST 36 for no gain (D.Manning).,10,23,2012 -20121216_IND@HOU,3,18,30,IND,HOU,2,10,36,(3:30) (Shotgun) A.Luck pass incomplete short right to D.Allen. PENALTY on HST-T.Dobbins Illegal Contact 5 yards enforced at HST 36 - No Play.,10,23,2012 -20121216_IND@HOU,3,18,20,IND,HOU,1,10,31,(3:20) V.Ballard up the middle to HST 8 for 23 yards (J.Joseph).,10,23,2012 -20121216_IND@HOU,3,17,37,IND,HOU,1,8,8,(2:37) A.Luck pass short middle to D.Allen for 8 yards TOUCHDOWN.,10,23,2012 -20121216_IND@HOU,3,17,37,IND,HOU,,,8,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,10,23,2012 -20121216_IND@HOU,3,17,37,IND,HOU,,,8,P.McAfee kicks 69 yards from IND 35 to HST -4. K.Martin to HST 14 for 18 yards (M.Harvey).,17,23,2012 -20121216_IND@HOU,3,17,25,HOU,IND,1,10,86,(2:25) M.Schaub pass short middle to O.Daniels to HST 31 for 17 yards (P.Angerer).,23,17,2012 -20121216_IND@HOU,3,16,42,HOU,IND,1,10,69,(1:42) M.Schaub pass short right to D.Posey pushed ob at HST 33 for 2 yards (C.Vaughn).,23,17,2012 -20121216_IND@HOU,3,16,5,HOU,IND,2,8,67,(1:05) A.Foster left tackle to HST 26 for -7 yards (C.Redding).,23,17,2012 -20121216_IND@HOU,3,15,22,HOU,IND,3,15,74,(:22) (Shotgun) M.Schaub pass deep left to A.Johnson to HST 42 for 16 yards (M.Fokou).,23,17,2012 -20121216_IND@HOU,4,15,0,HOU,IND,1,10,58,(15:00) M.Schaub sacked at HST 35 for -7 yards (A.Bethea).,23,17,2012 -20121216_IND@HOU,4,14,31,HOU,IND,2,17,65,(14:31) M.Schaub pass short left to A.Johnson to HST 41 for 6 yards (V.Davis).,23,17,2012 -20121216_IND@HOU,4,13,49,HOU,IND,3,11,59,(13:49) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels.,23,17,2012 -20121216_IND@HOU,4,13,44,HOU,IND,4,11,59,(13:44) D.Jones punts 46 yards to IND 13 Center-J.Weeks. T.Hilton pushed ob at IND 16 for 3 yards (J.Nading). PENALTY on IND-M.Moore Illegal Block Above the Waist 8 yards enforced at IND 16.,23,17,2012 -20121216_IND@HOU,4,13,31,IND,HOU,1,10,92,(13:31) V.Ballard right guard to IND 8 for no gain (A.Smith).,17,23,2012 -20121216_IND@HOU,4,12,53,IND,HOU,2,10,92,(12:53) V.Ballard up the middle to IND 3 for -5 yards (J.Watt).,17,23,2012 -20121216_IND@HOU,4,12,13,IND,HOU,3,15,97,(12:13) (Shotgun) A.Luck pass incomplete short right to T.Hilton (K.Jackson) [D.Sharpton]. Penalty on IND-L.Brazill Offensive Pass Interference declined.,17,23,2012 -20121216_IND@HOU,4,12,7,IND,HOU,4,15,97,(12:07) P.McAfee punts 63 yards to HST 34 Center-M.Overton. K.Martin to HST 46 for 12 yards (J.Lefeged). PENALTY on IND Unsportsmanlike Conduct 15 yards enforced at HST 46. (The Penalty was called on the visiting coach.),17,23,2012 -20121216_IND@HOU,4,11,54,HOU,IND,1,10,39,(11:54) A.Foster left tackle to IND 38 for 1 yard (R.Mathis).,23,17,2012 -20121216_IND@HOU,4,11,15,HOU,IND,2,9,38,(11:15) M.Schaub pass short right to D.Posey to IND 30 for 8 yards (A.Bethea).,23,17,2012 -20121216_IND@HOU,4,10,32,HOU,IND,3,1,30,(10:32) A.Foster left guard to IND 27 for 3 yards (A.Johnson).,23,17,2012 -20121216_IND@HOU,4,9,55,HOU,IND,1,10,27,(9:55) A.Foster left tackle for 27 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on HST-W.Smith Offensive Holding 10 yards enforced at IND 27 - No Play.,23,17,2012 -20121216_IND@HOU,4,9,48,HOU,IND,1,20,37,(9:48) M.Schaub pass short left to O.Daniels pushed ob at IND 30 for 7 yards (P.Angerer).,23,17,2012 -20121216_IND@HOU,4,9,23,HOU,IND,2,13,30,(9:23) M.Schaub pass incomplete deep left to A.Johnson.,23,17,2012 -20121216_IND@HOU,4,9,16,HOU,IND,3,13,30,(9:16) (Shotgun) M.Schaub pass short left to A.Foster to IND 28 for 2 yards (M.Fokou).,23,17,2012 -20121216_IND@HOU,4,8,35,HOU,IND,4,11,28,(8:35) S.Graham 46 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,23,17,2012 -20121216_IND@HOU,4,8,35,HOU,IND,,,28,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,26,17,2012 -20121216_IND@HOU,4,8,30,IND,HOU,1,10,80,(8:30) A.Luck scrambles up the middle to IND 23 for 3 yards (J.Watt).,17,26,2012 -20121216_IND@HOU,4,7,54,IND,HOU,2,7,77,(7:54) V.Ballard left guard to IND 29 for 6 yards (B.Harris; T.Dobbins).,17,26,2012 -20121216_IND@HOU,4,7,20,IND,HOU,3,1,71,(7:20) D.Allen up the middle to IND 32 for 3 yards (B.James).,17,26,2012 -20121216_IND@HOU,4,6,46,IND,HOU,1,10,68,(6:46) (Shotgun) A.Luck sacked at IND 28 for -4 yards (J.Watt).,17,26,2012 -20121216_IND@HOU,4,6,12,IND,HOU,2,14,72,(6:12) (Shotgun) A.Luck pass short right to D.Allen to IND 44 for 16 yards (G.Quin).,17,26,2012 -20121216_IND@HOU,4,5,39,IND,HOU,1,10,56,(5:39) V.Ballard left tackle to IND 45 for 1 yard (C.Barwin).,17,26,2012 -20121216_IND@HOU,4,5,13,IND,HOU,2,9,55,(5:13) (Shotgun) A.Luck pass incomplete [A.Smith]. PENALTY on IND-A.Luck Intentional Grounding 11 yards enforced at IND 45.,17,26,2012 -20121216_IND@HOU,4,5,5,IND,HOU,3,20,66,(5:05) (Shotgun) A.Luck pass incomplete deep left to R.Wayne (B.Harris) [W.Mercilus].,17,26,2012 -20121216_IND@HOU,4,4,58,IND,HOU,4,20,66,(4:58) P.McAfee punts 49 yards to HST 17 Center-M.Overton. K.Martin to HST 17 for no gain (M.Harvey). PENALTY on HST-R.Carmichael Offensive Holding 9 yards enforced at HST 17. (The punt hang time was 4.5 seconds.),17,26,2012 -20121216_IND@HOU,4,4,45,HOU,IND,1,10,92,(4:45) M.Schaub pass short right to A.Johnson to HST 16 for 8 yards (C.Vaughn).,26,17,2012 -20121216_IND@HOU,4,4,1,HOU,IND,2,2,84,(4:01) A.Foster right tackle to HST 19 for 3 yards (J.Hughes).,26,17,2012 -20121216_IND@HOU,4,3,16,HOU,IND,1,10,81,(3:16) A.Foster right tackle to HST 45 for 26 yards (A.Bethea).,26,17,2012 -20121216_IND@HOU,4,2,28,HOU,IND,1,10,55,(2:28) A.Foster left guard to IND 46 for 9 yards (J.Lefeged).,26,17,2012 -20121216_IND@HOU,4,2,20,HOU,IND,2,1,46,(2:20) A.Foster right tackle to IND 21 for 25 yards (A.Bethea).,26,17,2012 -20121216_IND@HOU,4,2,5,HOU,IND,1,10,21,(2:05) PENALTY on HST-G.Graham False Start 5 yards enforced at IND 21 - No Play.,26,17,2012 -20121216_IND@HOU,4,2,5,HOU,IND,1,15,26,(2:05) A.Foster up the middle to IND 24 for 2 yards (J.Lefeged).,26,17,2012 -20121216_IND@HOU,4,2,2,HOU,IND,2,13,24,(2:02) A.Foster up the middle to IND 22 for 2 yards (K.Heard).,26,17,2012 -20121216_IND@HOU,4,1,56,HOU,IND,3,11,22,(1:56) A.Foster left end to IND 14 for 8 yards (J.Freeman).,26,17,2012 -20121216_IND@HOU,4,1,9,HOU,IND,4,3,14,(1:09) S.Graham 33 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,26,17,2012 -20121216_IND@HOU,4,1,9,HOU,IND,,,14,S.Graham kicks 65 yards from HST 35 to end zone Touchback.,29,17,2012 -20121216_IND@HOU,4,1,5,IND,HOU,1,10,80,(1:05) (Shotgun) A.Luck sacked at IND 13 for -7 yards (C.Barwin). IND-A.Shipley was injured during the play. (There was was a 10 second runoff on the play.),17,29,2012 -20121216_IND@HOU,4,0,16,IND,HOU,2,17,87,(:16) (Shotgun) A.Luck pass short middle to C.Fleener to IND 34 for 21 yards (G.Quin).,17,29,2012 -20121216_IND@HOU,4,0,2,IND,HOU,1,10,66,(:02) A.Luck spiked the ball to stop the clock.,17,29,2012 -20121216_IND@HOU,4,0,1,IND,HOU,2,10,66,(:01) (Shotgun) A.Luck pass short right to R.Wayne to IND 41 for 7 yards (S.Keo).,17,29,2012 -20121216_IND@HOU,4,0,1,IND,HOU,,,66,                      ,17,29,2012 -20121216_JAC@MIA,1,0,0,MIA,JAC,,,66,D.Carpenter kicks 74 yards from MIA 35 to JAX -9. R.Murphy Touchback.,0,0,2012 -20121216_JAC@MIA,1,60,0,JAC,MIA,1,10,80,(15:00) M.Owens left end to JAX 21 for 1 yard (C.Clemons).,0,0,2012 -20121216_JAC@MIA,1,59,23,JAC,MIA,2,9,79,(14:23) (Shotgun) C.Henne pass short left to M.Owens pushed ob at JAX 27 for 6 yards (N.Carroll).,0,0,2012 -20121216_JAC@MIA,1,58,52,JAC,MIA,3,3,73,(13:52) (Shotgun) C.Henne pass short right to J.Blackmon ran ob at MIA 35 for 38 yards (C.Clemons).,0,0,2012 -20121216_JAC@MIA,1,58,21,JAC,MIA,1,10,35,(13:21) R.Murphy left end to MIA 31 for 4 yards (K.Burnett).,0,0,2012 -20121216_JAC@MIA,1,57,50,JAC,MIA,2,6,31,(12:50) G.Whimper reported in as eligible. R.Murphy right guard to MIA 26 for 5 yards (K.Dansby).,0,0,2012 -20121216_JAC@MIA,1,57,15,JAC,MIA,3,1,26,(12:15) M.Owens left tackle to MIA 15 for 11 yards (C.Clemons).,0,0,2012 -20121216_JAC@MIA,1,56,35,JAC,MIA,1,10,15,(11:35) R.Murphy up the middle to MIA 13 for 2 yards (K.Burnett; C.Clemons). Henne charged with a fumble for mishandling the snap.,0,0,2012 -20121216_JAC@MIA,1,55,43,JAC,MIA,2,8,13,(10:43) G.Whimper reported in as eligible. C.Henne pass incomplete short right to G.Whimper.,0,0,2012 -20121216_JAC@MIA,1,55,43,JAC,MIA,3,8,13,(10:43) (Shotgun) C.Henne sacked at MIA 19 for -6 yards (J.Odrick).,0,0,2012 -20121216_JAC@MIA,1,55,3,JAC,MIA,4,14,19,(10:03) J.Scobee 37 yard field goal is GOOD Holder-B.Anger.,0,0,2012 -20121216_JAC@MIA,1,55,3,JAC,MIA,,,19,J.Scobee kicks 67 yards from JAX 35 to MIA -2. M.Thigpen to MIA 22 for 24 yards (K.Rutland).,3,0,2012 -20121216_JAC@MIA,1,54,57,MIA,JAC,1,10,78,(9:57) R.Bush right tackle to MIA 29 for 7 yards (P.Posluszny). PENALTY on JAX-J.Babin Defensive Offside 5 yards enforced at MIA 22 - No Play.,0,3,2012 -20121216_JAC@MIA,1,54,26,MIA,JAC,1,5,73,(9:26) (No Huddle) R.Bush right tackle to MIA 32 for 5 yards (R.Allen).,0,3,2012 -20121216_JAC@MIA,1,54,2,MIA,JAC,1,10,68,(9:02) (No Huddle Shotgun) R.Tannehill pass short left to Mar.Moore to MIA 45 for 13 yards (M.Harris).,0,3,2012 -20121216_JAC@MIA,1,53,27,MIA,JAC,1,10,55,(8:27) R.Tannehill pass short middle to A.Fasano to JAX 41 for 14 yards (P.Posluszny).,0,3,2012 -20121216_JAC@MIA,1,53,5,MIA,JAC,1,10,41,(8:05) R.Bush left end to JAX 37 for 4 yards (P.Posluszny).,0,3,2012 -20121216_JAC@MIA,1,52,28,MIA,JAC,2,6,37,(7:28) (Shotgun) R.Tannehill pass short right to C.Clay to JAX 35 for 2 yards (P.Posluszny).,0,3,2012 -20121216_JAC@MIA,1,51,39,MIA,JAC,3,4,35,(6:39) (Shotgun) R.Tannehill pass incomplete deep middle to R.Matthews.,0,3,2012 -20121216_JAC@MIA,1,51,31,MIA,JAC,4,4,35,(6:31) (Field Goal formation) D.Carpenter 53 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,3,2012 -20121216_JAC@MIA,1,51,31,MIA,JAC,,,35,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,3,3,2012 -20121216_JAC@MIA,1,51,26,JAC,MIA,1,10,80,(6:26) C.Henne pass short right to M.Lewis to JAX 20 for no gain (C.Clemons).,3,3,2012 -20121216_JAC@MIA,1,50,52,JAC,MIA,2,10,80,(5:52) (Shotgun) C.Henne pass short right to M.Owens to JAX 22 for 2 yards (S.Smith). PENALTY on JAX-B.Meester Face Mask (15 Yards) 10 yards enforced at JAX 20 - No Play.,3,3,2012 -20121216_JAC@MIA,1,50,20,JAC,MIA,2,20,90,(5:20) M.Owens right guard to JAX 15 for 5 yards (K.Burnett).,3,3,2012 -20121216_JAC@MIA,1,49,48,JAC,MIA,3,15,85,(4:48) (Shotgun) C.Henne sacked at JAX 13 for -2 yards (K.Burnett). Penalty on JAX-C.Bradfield Offensive Holding declined.,3,3,2012 -20121216_JAC@MIA,1,49,26,JAC,MIA,4,17,87,(4:26) (Punt formation) B.Anger punts 51 yards to MIA 36 Center-J.Cain fair catch by M.Thigpen.,3,3,2012 -20121216_JAC@MIA,1,49,20,MIA,JAC,1,10,64,(4:20) R.Bush right guard to MIA 36 for no gain (R.Allen).,3,3,2012 -20121216_JAC@MIA,1,48,55,MIA,JAC,2,10,64,(3:55) (Shotgun) R.Tannehill pass incomplete short right to R.Bush.,3,3,2012 -20121216_JAC@MIA,1,48,42,MIA,JAC,3,10,64,(3:42) (Shotgun) PENALTY on MIA-N.Garner False Start 5 yards enforced at MIA 36 - No Play.,3,3,2012 -20121216_JAC@MIA,1,48,42,MIA,JAC,3,15,69,(3:42) (Shotgun) R.Tannehill pass incomplete deep left to R.Matthews.,3,3,2012 -20121216_JAC@MIA,1,48,37,MIA,JAC,4,15,69,(3:37) (Punt formation) B.Fields punts 63 yards to JAX 6 Center-J.Denney. J.Shipley to JAX 15 for 9 yards (N.Carroll).,3,3,2012 -20121216_JAC@MIA,1,48,27,JAC,MIA,1,10,85,(3:27) G.Whimper reported in as eligible. R.Murphy right tackle to JAX 19 for 4 yards (J.Trusnik). MIA-C.Clemons was injured during the play.,3,3,2012 -20121216_JAC@MIA,1,48,0,JAC,MIA,2,6,81,(3:00) G.Whimper reported in as eligible. M.Owens left end to JAX 22 for 3 yards (K.Burnett).,3,3,2012 -20121216_JAC@MIA,1,47,19,JAC,MIA,3,3,78,(2:19) (Shotgun) C.Henne pass short right to C.Shorts to JAX 29 for 7 yards (R.Jones).,3,3,2012 -20121216_JAC@MIA,1,46,45,JAC,MIA,1,10,71,(1:45) C.Henne pass incomplete deep right to C.Shorts. PENALTY on MIA-S.Smith Defensive Pass Interference 16 yards enforced at JAX 29 - No Play.,3,3,2012 -20121216_JAC@MIA,1,46,38,JAC,MIA,1,10,55,(1:38) M.Owens left end to JAX 49 for 4 yards (K.Burnett).,3,3,2012 -20121216_JAC@MIA,1,45,54,JAC,MIA,2,6,51,(:54) C.Henne pass short right to J.Blackmon to MIA 46 for 5 yards (S.Smith).,3,3,2012 -20121216_JAC@MIA,1,45,16,JAC,MIA,3,1,46,(:16) G.Whimper reported in as eligible. G.Jones right guard to MIA 43 for 3 yards (J.Freeny; J.Trusnik).,3,3,2012 -20121216_JAC@MIA,2,45,0,JAC,MIA,1,10,43,(15:00) C.Henne pass incomplete short left to C.Shorts.,3,3,2012 -20121216_JAC@MIA,2,44,55,JAC,MIA,2,10,43,(14:55) C.Henne pass short left to M.Lewis to MIA 44 for -1 yards (K.Burnett). MIA-N.Carroll was injured during the play. His return is Questionable.,3,3,2012 -20121216_JAC@MIA,2,44,27,JAC,MIA,3,11,44,(14:27) (Shotgun) C.Henne scrambles left end to MIA 39 for 5 yards (K.Dansby). PENALTY on JAX-A.Pasztor Offensive Holding 10 yards enforced at MIA 44 - No Play.,3,3,2012 -20121216_JAC@MIA,2,44,4,JAC,MIA,3,21,46,(14:04) (Shotgun) C.Henne FUMBLES (Aborted) at JAX 43 and recovers at MIA 46. C.Henne to MIA 46 for no gain (C.Clemons).,3,3,2012 -20121216_JAC@MIA,2,44,4,JAC,MIA,4,13,46,(14:04) (Punt formation) B.Anger punts 37 yards to MIA 9 Center-J.Cain fair catch by M.Thigpen.,3,3,2012 -20121216_JAC@MIA,2,43,23,MIA,JAC,1,10,91,(13:23) L.Miller left end to MIA 10 for 1 yard (A.Lane).,3,3,2012 -20121216_JAC@MIA,2,43,3,MIA,JAC,2,9,90,(13:03) R.Tannehill pass short right to C.Clay to MIA 16 for 6 yards (D.Cox). MIA-C.Clay was injured during the play. His return is Questionable.,3,3,2012 -20121216_JAC@MIA,2,42,20,MIA,JAC,3,3,84,(12:20) (Shotgun) R.Tannehill pass incomplete short left to M.Thigpen (C.Prosinski). PENALTY on JAX-C.Prosinski Personal Foul 15 yards enforced at MIA 16 - No Play.,3,3,2012 -20121216_JAC@MIA,2,42,13,MIA,JAC,1,10,69,(12:13) R.Tannehill pass incomplete short right to R.Bush.,3,3,2012 -20121216_JAC@MIA,2,42,8,MIA,JAC,2,10,69,(12:08) R.Tannehill sacked at MIA 26 for -5 yards (T.Alualu). FUMBLES (T.Alualu) RECOVERED by JAX-T.Alualu at MIA 20. T.Alualu to MIA 20 for no gain (J.Martin). 58 - Jason Babin credited with the forced fumble.,3,3,2012 -20121216_JAC@MIA,2,41,54,JAC,MIA,1,10,20,(11:54) C.Henne pass deep left to J.Blackmon for 20 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on JAX-G.Whimper Illegal Substitution 5 yards enforced at MIA 20 - No Play.,3,3,2012 -20121216_JAC@MIA,2,41,47,JAC,MIA,1,15,25,(11:47) R.Murphy up the middle to MIA 24 for 1 yard (J.Odrick).,3,3,2012 -20121216_JAC@MIA,2,41,10,JAC,MIA,2,14,24,(11:10) C.Henne pass incomplete short left to J.Blackmon. Ball caught out of bounds.,3,3,2012 -20121216_JAC@MIA,2,40,56,JAC,MIA,3,14,24,(10:56) (Shotgun) C.Henne pass short right to M.Lewis to MIA 23 for 1 yard (R.Jones). PENALTY on MIA-J.Odrick Defensive Offside 5 yards enforced at MIA 24 - No Play.,3,3,2012 -20121216_JAC@MIA,2,40,33,JAC,MIA,3,9,19,(10:33) (Shotgun) C.Henne scrambles left tackle to MIA 11 for 8 yards (K.Dansby).,3,3,2012 -20121216_JAC@MIA,2,39,41,JAC,MIA,4,1,11,(9:41) C.Henne up the middle to MIA 11 for no gain (K.Dansby).,3,3,2012 -20121216_JAC@MIA,2,39,30,MIA,JAC,1,10,89,(9:30) R.Bush right tackle to MIA 8 for -3 yards (R.Allen).,3,3,2012 -20121216_JAC@MIA,2,39,1,MIA,JAC,2,13,92,(9:01) (Shotgun) R.Tannehill pass short right to A.Fasano to MIA 13 for 5 yards (D.Landry).,3,3,2012 -20121216_JAC@MIA,2,38,24,MIA,JAC,3,8,87,(8:24) (Shotgun) R.Tannehill pass short right to M.Thigpen to MIA 28 for 15 yards (M.Harris).,3,3,2012 -20121216_JAC@MIA,2,37,50,MIA,JAC,1,10,72,(7:50) (No Huddle Shotgun) R.Tannehill pass short left to R.Matthews to MIA 35 for 7 yards (M.Harris).,3,3,2012 -20121216_JAC@MIA,2,37,13,MIA,JAC,2,3,65,(7:13) R.Bush left tackle to MIA 37 for 2 yards (P.Posluszny).,3,3,2012 -20121216_JAC@MIA,2,36,49,MIA,JAC,3,1,63,(6:49) R.Tannehill right guard to MIA 38 for 1 yard (A.Lane).,3,3,2012 -20121216_JAC@MIA,2,36,18,MIA,JAC,1,10,62,(6:18) (Shotgun) R.Tannehill pass short left to R.Matthews to MIA 49 for 11 yards (R.Mathis).,3,3,2012 -20121216_JAC@MIA,2,35,29,MIA,JAC,1,10,51,(5:29) (No Huddle) R.Bush left tackle to JAX 47 for 4 yards (P.Posluszny).,3,3,2012 -20121216_JAC@MIA,2,34,53,MIA,JAC,2,6,47,(4:53) R.Tannehill pass short right to J.Lane to JAX 45 for 2 yards (D.Cox).,3,3,2012 -20121216_JAC@MIA,2,34,13,MIA,JAC,3,4,45,(4:13) (Shotgun) R.Tannehill pass incomplete short middle to R.Matthews. PENALTY on JAX-R.Mathis Defensive Pass Interference 13 yards enforced at JAX 45 - No Play.,3,3,2012 -20121216_JAC@MIA,2,34,6,MIA,JAC,1,10,32,(4:06) D.Thomas left guard to JAX 26 for 6 yards (M.Harris).,3,3,2012 -20121216_JAC@MIA,2,33,39,MIA,JAC,2,4,26,(3:39) (Shotgun) R.Tannehill left end to JAX 17 for 9 yards (M.Harris).,3,3,2012 -20121216_JAC@MIA,2,32,56,MIA,JAC,1,10,17,(2:56) R.Bush left end to JAX 6 for 11 yards (D.Landry).,3,3,2012 -20121216_JAC@MIA,2,32,23,MIA,JAC,1,6,6,(2:23) R.Bush right guard to JAX 4 for 2 yards (P.Posluszny).,3,3,2012 -20121216_JAC@MIA,2,31,59,MIA,JAC,2,4,4,(1:59) (Shotgun) R.Tannehill pass short right to J.Lane for 4 yards TOUCHDOWN.,3,3,2012 -20121216_JAC@MIA,2,31,59,MIA,JAC,,,4,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,3,2012 -20121216_JAC@MIA,2,31,52,JAC,MIA,1,10,80,(1:52) (Shotgun) C.Henne pass short middle to C.Shorts to JAX 38 for 18 yards (R.Jones; R.Stanford).,3,10,2012 -20121216_JAC@MIA,2,31,33,JAC,MIA,1,10,62,(1:33) (No Huddle Shotgun) C.Henne pass short right to J.Shipley to JAX 44 for 6 yards (J.Wilson; C.Clemons).,3,10,2012 -20121216_JAC@MIA,2,31,11,JAC,MIA,2,4,56,(1:11) (No Huddle Shotgun) C.Henne pass short middle to C.Shorts to MIA 39 for 17 yards (R.Stanford).,3,10,2012 -20121216_JAC@MIA,2,30,59,JAC,MIA,1,10,39,(:59) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon [J.Odrick].,3,10,2012 -20121216_JAC@MIA,2,30,59,JAC,MIA,2,10,39,(:59) (Shotgun) C.Henne pass short right to J.Shipley to MIA 31 for 8 yards (K.Burnett). PENALTY on JAX-C.Bradfield Offensive Holding 10 yards enforced at MIA 39 - No Play.,3,10,2012 -20121216_JAC@MIA,2,30,53,JAC,MIA,2,20,49,(:53) (Shotgun) C.Henne pass incomplete short left to T.Clemons.,3,10,2012 -20121216_JAC@MIA,2,30,49,JAC,MIA,3,20,49,(:49) (Shotgun) C.Henne pass incomplete short right to J.Blackmon (S.Smith).,3,10,2012 -20121216_JAC@MIA,2,30,45,JAC,MIA,4,20,49,(:45) (Punt formation) B.Anger punts 45 yards to MIA 4 Center-J.Cain downed by JAX-R.Allen.,3,10,2012 -20121216_JAC@MIA,2,30,32,MIA,JAC,1,10,96,(:32) R.Tannehill kneels to MIA 3 for -1 yards.,10,3,2012 -20121216_JAC@MIA,3,30,0,JAC,MIA,,,96,J.Scobee kicks 60 yards from JAX 35 to MIA 5. M.Thigpen to MIA 19 for 14 yards (A.Molden).,3,10,2012 -20121216_JAC@MIA,3,29,55,MIA,JAC,1,10,81,(14:55) R.Tannehill pass deep right to B.Hartline to JAX 44 for 37 yards (D.Cox).,10,3,2012 -20121216_JAC@MIA,3,29,37,MIA,JAC,1,10,44,(14:37) PENALTY on MIA-J.Lane False Start 5 yards enforced at JAX 44 - No Play.,10,3,2012 -20121216_JAC@MIA,3,29,33,MIA,JAC,1,15,49,(14:33) R.Bush left tackle to JAX 47 for 2 yards (R.Allen).,10,3,2012 -20121216_JAC@MIA,3,28,45,MIA,JAC,2,13,47,(13:45) R.Tannehill pass short middle to Mar.Moore to JAX 27 for 20 yards (P.Posluszny).,10,3,2012 -20121216_JAC@MIA,3,28,17,MIA,JAC,1,10,27,(13:17) (No Huddle Shotgun) R.Tannehill pass short right to A.Fasano to JAX 20 for 7 yards (D.Landry).,10,3,2012 -20121216_JAC@MIA,3,27,45,MIA,JAC,2,3,20,(12:45) R.Bush left end to JAX 23 for -3 yards (D.Lowery).,10,3,2012 -20121216_JAC@MIA,3,27,15,MIA,JAC,3,6,23,(12:15) (Shotgun) R.Tannehill pass short right to B.Hartline to JAX 11 for 12 yards (C.Prosinski). Penalty on JAX-R.Mathis Defensive Holding declined.,10,3,2012 -20121216_JAC@MIA,3,26,7,MIA,JAC,1,10,11,(11:07) R.Bush up the middle to JAX 11 for no gain (P.Posluszny).,10,3,2012 -20121216_JAC@MIA,3,25,28,MIA,JAC,2,10,11,(10:28) R.Tannehill pass short right to A.Fasano to JAX 5 for 6 yards (D.Landry).,10,3,2012 -20121216_JAC@MIA,3,24,48,MIA,JAC,3,4,5,(9:48) (Shotgun) R.Tannehill pass incomplete short middle to B.Hartline.,10,3,2012 -20121216_JAC@MIA,3,24,33,MIA,JAC,4,4,5,(9:33) (Field Goal formation) Direct snap to B.Fields. B.Fields pass incomplete short right to A.Fasano.,10,3,2012 -20121216_JAC@MIA,3,24,33,JAC,MIA,1,10,95,(9:33) M.Owens right guard to JAX 9 for 4 yards (C.Clemons; C.Wake).,3,10,2012 -20121216_JAC@MIA,3,23,51,JAC,MIA,2,6,91,(8:51) C.Henne pass incomplete short right to J.Blackmon.,3,10,2012 -20121216_JAC@MIA,3,23,50,JAC,MIA,3,6,91,(8:50) (Shotgun) C.Henne pass incomplete deep right to J.Shipley [J.Odrick].,3,10,2012 -20121216_JAC@MIA,3,23,42,JAC,MIA,4,6,91,(8:42) (Punt formation) B.Anger punts 53 yards to MIA 38 Center-J.Cain downed by JAX-A.Blake. PENALTY on MIA-L.Miller Offensive Holding 10 yards enforced at MIA 38.,3,10,2012 -20121216_JAC@MIA,3,23,29,MIA,JAC,1,10,72,(8:29) R.Bush right tackle to JAX 19 for 53 yards (P.Posluszny).,10,3,2012 -20121216_JAC@MIA,3,22,40,MIA,JAC,1,10,19,(7:40) R.Tannehill left end to JAX 13 for 6 yards (M.Harris).,10,3,2012 -20121216_JAC@MIA,3,22,3,MIA,JAC,2,4,13,(7:03) (Shotgun) R.Bush right guard to JAX 12 for 1 yard (C.Mosley).,10,3,2012 -20121216_JAC@MIA,3,21,34,MIA,JAC,3,3,12,(6:34) R.Bush right tackle to JAX 12 for no gain (J.Mincey).,10,3,2012 -20121216_JAC@MIA,3,20,40,MIA,JAC,4,3,12,(5:40) (Field Goal formation) D.Carpenter 30 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,10,3,2012 -20121216_JAC@MIA,3,20,40,MIA,JAC,,,12,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,13,3,2012 -20121216_JAC@MIA,3,20,35,JAC,MIA,1,10,80,(5:35) C.Henne pass short right to J.Blackmon ran ob at JAX 22 for 2 yards (S.Smith).,3,13,2012 -20121216_JAC@MIA,3,20,18,JAC,MIA,2,8,78,(5:18) R.Murphy right tackle to JAX 26 for 4 yards (C.Wake).,3,13,2012 -20121216_JAC@MIA,3,19,17,JAC,MIA,3,4,74,(4:17) (Shotgun) C.Henne pass incomplete short right to J.Shipley (K.Dansby).,3,13,2012 -20121216_JAC@MIA,3,19,8,JAC,MIA,4,4,74,(4:08) (Punt formation) B.Anger punts 51 yards to MIA 23 Center-J.Cain fair catch by M.Thigpen.,3,13,2012 -20121216_JAC@MIA,3,19,1,MIA,JAC,1,10,77,(4:01) R.Tannehill pass short right to B.Hartline to MIA 40 for 17 yards (D.Lowery).,13,3,2012 -20121216_JAC@MIA,3,18,29,MIA,JAC,1,10,60,(3:29) R.Bush left guard to MIA 43 for 3 yards (J.Pendleton).,13,3,2012 -20121216_JAC@MIA,3,17,52,MIA,JAC,2,7,57,(2:52) (Shotgun) R.Tannehill left tackle ran ob at JAX 27 for 30 yards. PENALTY on JAX-R.Mathis Illegal Contact 5 yards enforced at JAX 27.,13,3,2012 -20121216_JAC@MIA,3,17,35,MIA,JAC,1,10,22,(2:35) (Shotgun) R.Bush left tackle to JAX 22 for no gain (M.Harris).,13,3,2012 -20121216_JAC@MIA,3,16,57,MIA,JAC,2,10,22,(1:57) (Shotgun) R.Tannehill pass incomplete deep middle to M.Thigpen (M.Harris).,13,3,2012 -20121216_JAC@MIA,3,16,49,MIA,JAC,3,10,22,(1:49) (Shotgun) R.Tannehill pass short middle to B.Hartline to JAX 13 for 9 yards (D.Cox).,13,3,2012 -20121216_JAC@MIA,3,16,4,MIA,JAC,4,1,13,(1:04) (Field Goal formation) D.Carpenter 31 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,13,3,2012 -20121216_JAC@MIA,3,16,4,MIA,JAC,,,13,D.Carpenter kicks 65 yards from MIA 35 to end zone Touchback.,16,3,2012 -20121216_JAC@MIA,3,16,1,JAC,MIA,1,10,80,(1:01) (Shotgun) C.Henne pass short left to M.Lewis to JAX 29 for 9 yards (K.Dansby).,3,16,2012 -20121216_JAC@MIA,3,15,44,JAC,MIA,2,1,71,(:44) (No Huddle) M.Owens left end to JAX 41 for 12 yards (B.McCann).,3,16,2012 -20121216_JAC@MIA,3,15,9,JAC,MIA,1,10,59,(:09) (No Huddle) M.Owens right tackle to JAX 46 for 5 yards (R.Starks).,3,16,2012 -20121216_JAC@MIA,4,15,0,JAC,MIA,2,5,54,(15:00) (Shotgun) C.Henne pass short middle to C.Shorts to JAX 24 for -22 yards (C.Clemons).,3,16,2012 -20121216_JAC@MIA,4,15,0,JAC,MIA,1,10,24,(15:00) (No Huddle) M.Owens left end to MIA 23 for 1 yard (K.Dansby).,3,16,2012 -20121216_JAC@MIA,4,13,46,JAC,MIA,2,9,23,(13:46) (No Huddle Shotgun) M.Owens left guard to MIA 22 for 1 yard (K.Burnett).,3,16,2012 -20121216_JAC@MIA,4,13,13,JAC,MIA,3,8,22,(13:13) (Shotgun) C.Henne pass short right to J.Shipley to MIA 15 for 7 yards (J.Wilson) [C.Wake].,3,16,2012 -20121216_JAC@MIA,4,12,27,JAC,MIA,4,1,15,(12:27) G.Whimper reported in as eligible. M.Owens left tackle to MIA 15 for no gain (J.Trusnik).,3,16,2012 -20121216_JAC@MIA,4,12,13,MIA,JAC,1,10,85,(12:13) (Shotgun) R.Tannehill right tackle to MIA 23 for 8 yards (C.Prosinski).,16,3,2012 -20121216_JAC@MIA,4,11,49,MIA,JAC,2,2,77,(11:49) (Shotgun) L.Miller right tackle to MIA 24 for 1 yard (D.Landry).,16,3,2012 -20121216_JAC@MIA,4,11,12,MIA,JAC,3,1,76,(11:12) (Shotgun) R.Tannehill pass short right to L.Miller ran ob at MIA 26 for 2 yards (R.Allen).,16,3,2012 -20121216_JAC@MIA,4,10,28,MIA,JAC,1,10,74,(10:28) (Shotgun) R.Tannehill pass incomplete short left to A.Binns. PENALTY on JAX-M.Harris Defensive Pass Interference 8 yards enforced at MIA 26 - No Play.,16,3,2012 -20121216_JAC@MIA,4,10,18,MIA,JAC,1,10,66,(10:18) L.Miller right guard to MIA 42 for 8 yards (C.Prosinski; P.Posluszny).,16,3,2012 -20121216_JAC@MIA,4,9,56,MIA,JAC,2,2,58,(9:56) L.Miller up the middle to MIA 42 for no gain (R.Allen).,16,3,2012 -20121216_JAC@MIA,4,9,5,MIA,JAC,3,2,58,(9:05) (Shotgun) R.Tannehill pass short middle to R.Matthews to MIA 47 for 5 yards (R.Mathis).,16,3,2012 -20121216_JAC@MIA,4,8,14,MIA,JAC,1,10,53,(8:14) R.Tannehill pass short right to B.Hartline to MIA 49 for 2 yards (D.Cox).,16,3,2012 -20121216_JAC@MIA,4,7,49,MIA,JAC,2,8,51,(7:49) (Shotgun) R.Tannehill pass deep middle to A.Fasano to JAX 29 for 22 yards (R.Allen).,16,3,2012 -20121216_JAC@MIA,4,6,57,MIA,JAC,1,10,29,(6:57) R.Bush right tackle to JAX 20 for 9 yards (C.Prosinski).,16,3,2012 -20121216_JAC@MIA,4,6,25,MIA,JAC,2,1,20,(6:25) R.Bush right tackle to JAX 18 for 2 yards (J.Stanford).,16,3,2012 -20121216_JAC@MIA,4,5,30,MIA,JAC,1,10,18,(5:30) L.Miller right tackle to JAX 14 for 4 yards (C.Mosley).,16,3,2012 -20121216_JAC@MIA,4,4,55,MIA,JAC,2,6,14,(4:55) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on JAX-R.Allen Roughing the Passer 7 yards enforced at JAX 14 - No Play.,16,3,2012 -20121216_JAC@MIA,4,4,43,MIA,JAC,1,7,7,(4:43) R.Bush right tackle to JAX 6 for 1 yard (C.Mosley).,16,3,2012 -20121216_JAC@MIA,4,4,20,MIA,JAC,2,6,6,(4:20) R.Bush right tackle to JAX 2 for 4 yards (J.Stanford).,16,3,2012 -20121216_JAC@MIA,4,3,17,MIA,JAC,3,2,2,(3:17) R.Tannehill pass short left to A.Fasano for 2 yards TOUCHDOWN.,16,3,2012 -20121216_JAC@MIA,4,3,17,MIA,JAC,,,2,(Pass formation) TWO-POINT CONVERSION ATTEMPT. R.Tannehill pass to A.Fasano is complete. ATTEMPT SUCCEEDS.,16,3,2012 -20121216_JAC@MIA,4,3,17,MIA,JAC,,,2,D.Carpenter kicks 70 yards from MIA 35 to JAX -5. R.Murphy to JAX 19 for 24 yards (R.Stanford).,24,3,2012 -20121216_JAC@MIA,4,3,5,JAC,MIA,1,10,81,(3:05) (Shotgun) C.Henne pass short right to C.Shorts ran ob at JAX 42 for 23 yards.,3,24,2012 -20121216_JAC@MIA,4,2,56,JAC,MIA,1,10,58,(2:56) (No Huddle Shotgun) C.Henne pass deep middle to J.Blackmon to MIA 31 for 27 yards (C.Clemons).,3,24,2012 -20121216_JAC@MIA,4,2,34,JAC,MIA,1,10,31,(2:34) (No Huddle Shotgun) C.Henne pass incomplete deep left to T.Clemons.,3,24,2012 -20121216_JAC@MIA,4,2,28,JAC,MIA,2,10,31,(2:28) (Shotgun) C.Henne pass incomplete short left to J.Blackmon (R.Jones).,3,24,2012 -20121216_JAC@MIA,4,2,23,JAC,MIA,3,10,31,(2:23) (Shotgun) C.Henne pass short right to J.Blackmon to MIA 17 for 14 yards (K.Dansby).,3,24,2012 -20121216_JAC@MIA,4,2,2,JAC,MIA,1,10,17,(2:02) (No Huddle Shotgun) C.Henne pass incomplete deep left to C.Shorts.,3,24,2012 -20121216_JAC@MIA,4,1,58,JAC,MIA,2,10,17,(1:58) (Shotgun) C.Henne pass short left to C.Shorts to MIA 11 for 6 yards (B.McCann).,3,24,2012 -20121216_JAC@MIA,4,1,38,JAC,MIA,3,4,11,(1:38) (No Huddle Shotgun) C.Henne pass short right to J.Blackmon to MIA 4 for 7 yards (R.Jones).,3,24,2012 -20121216_JAC@MIA,4,1,28,JAC,MIA,1,4,4,(1:28) C.Henne pass incomplete short left to C.Shorts (B.McCann).,3,24,2012 -20121216_JAC@MIA,4,1,24,JAC,MIA,2,4,4,(1:24) C.Henne pass incomplete short right to M.Lewis.,3,24,2012 -20121216_JAC@MIA,4,1,19,JAC,MIA,3,4,4,(1:19) (Shotgun) C.Henne pass short right to C.Shorts for 4 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) C.Henne pass incomplete short right to C.Shorts.,3,24,2012 -20121216_JAC@MIA,4,1,14,JAC,MIA,4,4,4,(1:14) (Shotgun) C.Henne pass incomplete short right to C.Shorts (C.Wake).,3,24,2012 -20121216_JAC@MIA,4,1,11,MIA,JAC,1,10,96,(1:11) R.Bush right tackle to MIA 11 for 7 yards (A.Lane).,24,3,2012 -20121216_JAC@MIA,4,1,7,MIA,JAC,2,3,89,(1:07) L.Miller right tackle to MIA 15 for 4 yards (T.Alualu).,24,3,2012 -20121216_JAC@MIA,4,1,2,MIA,JAC,1,10,85,(1:02) R.Tannehill kneels to MIA 14 for -1 yards.,24,3,2012 -20121216_JAC@MIA,4,0,42,MIA,JAC,2,11,86,(:42) R.Tannehill kneels to MIA 14 for no gain.,24,3,2012 -20121216_JAC@MIA,4,0,42,MIA,JAC,,,86,                      ,24,3,2012 -20121216_TB@NO,1,0,0,TB,NO,,,86,M.Koenen kicks 69 yards from TB 35 to NO -4. T.Cadet to NO 26 for 30 yards (A.Black). NO-J.Collins was injured during the play. His return is Probable.,0,0,2012 -20121216_TB@NO,1,59,56,NO,TB,1,10,74,(14:56) D.Brees pass short right to J.Graham to NO 39 for 13 yards (D.Gorrer). Pass 8 YAC 5,0,0,2012 -20121216_TB@NO,1,59,20,NO,TB,1,10,61,(14:20) M.Ingram left tackle to NO 42 for 3 yards (E.Biggers; M.Foster). PENALTY on NO-D.Henderson Offensive Holding 10 yards enforced at NO 39 - No Play.,0,0,2012 -20121216_TB@NO,1,59,1,NO,TB,1,20,71,(14:01) (Shotgun) D.Brees pass short right to M.Colston pushed ob at NO 42 for 13 yards (D.Gorrer). Pass 3 YAC 10,0,0,2012 -20121216_TB@NO,1,58,31,NO,TB,2,7,58,(13:31) D.Sproles left end pushed ob at TB 43 for 15 yards (R.Barber).,0,0,2012 -20121216_TB@NO,1,58,6,NO,TB,1,10,43,(13:06) D.Brees pass short right to D.Thomas to TB 31 for 12 yards (M.Barron). Pass 0 YAC 12,0,0,2012 -20121216_TB@NO,1,57,33,NO,TB,1,10,31,(12:33) D.Brees pass short left to P.Thomas to TB 11 for 20 yards (M.Foster). Pass -4 YAC 24,0,0,2012 -20121216_TB@NO,1,56,52,NO,TB,1,10,11,(11:52) (Shotgun) P.Thomas right guard to TB 9 for 2 yards (A.Gaitor).,0,0,2012 -20121216_TB@NO,1,56,17,NO,TB,2,8,9,(11:17) (Shotgun) D.Brees pass short right to D.Thomas for 9 yards TOUCHDOWN. Pass 5 YAC 4,0,0,2012 -20121216_TB@NO,1,56,17,NO,TB,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121216_TB@NO,1,56,17,NO,TB,,,9,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,7,0,2012 -20121216_TB@NO,1,56,12,TB,NO,1,10,80,(11:12) J.Freeman pass short right to D.Clark to TB 22 for 2 yards (E.Mack). Pass 1 YAC 1,0,7,2012 -20121216_TB@NO,1,55,36,TB,NO,2,8,78,(10:36) D.Martin left tackle to TB 26 for 4 yards (B.Bunkley; S.Ellis).,0,7,2012 -20121216_TB@NO,1,54,54,TB,NO,3,4,74,(9:54) (Shotgun) J.Freeman pass incomplete short right (C.Lofton) [J.Galette].,0,7,2012 -20121216_TB@NO,1,54,50,TB,NO,4,4,74,(9:50) M.Koenen punts 55 yards to NO 19 Center-A.Economos. D.Sproles to NO 26 for 7 yards (E.Lorig). PENALTY on NO-P.Robinson Offensive Holding 10 yards enforced at NO 20.,0,7,2012 -20121216_TB@NO,1,54,39,NO,TB,1,10,90,(9:39) P.Thomas right tackle to NO 13 for 3 yards (D.Te'o-Nesheim).,7,0,2012 -20121216_TB@NO,1,53,55,NO,TB,2,7,87,(8:55) D.Brees pass short middle to P.Thomas to NO 17 for 4 yards (L.David). Pass 2 YAC 2,7,0,2012 -20121216_TB@NO,1,53,11,NO,TB,3,3,83,(8:11) (Shotgun) D.Brees pass incomplete short right to D.Sproles.,7,0,2012 -20121216_TB@NO,1,53,7,NO,TB,4,3,83,(8:07) T.Morstead punts 60 yards to TB 23 Center-J.Drescher out of bounds.,7,0,2012 -20121216_TB@NO,1,52,59,TB,NO,1,10,77,(7:59) D.Martin left tackle to TB 26 for 3 yards (C.Jordan; D.Hawthorne).,0,7,2012 -20121216_TB@NO,1,52,23,TB,NO,2,7,74,(7:23) J.Freeman pass incomplete short left to V.Jackson [W.Smith].,0,7,2012 -20121216_TB@NO,1,52,18,TB,NO,3,7,74,(7:18) (Shotgun) J.Freeman pass short left to D.Ware to TB 49 for 23 yards (R.Harper). Pass 4 YAC 19,0,7,2012 -20121216_TB@NO,1,51,36,TB,NO,1,10,51,(6:36) D.Martin right tackle to NO 48 for 3 yards (J.Vilma).,0,7,2012 -20121216_TB@NO,1,51,0,TB,NO,2,7,48,(6:00) J.Freeman pass short right to D.Clark to NO 44 for 4 yards (J.Greer). Pass 5 YAC -1,0,7,2012 -20121216_TB@NO,1,50,19,TB,NO,3,3,44,(5:19) J.Freeman pass deep left to M.Williams to NO 20 for 24 yards (P.Robinson). Pass 21 YAC 3,0,7,2012 -20121216_TB@NO,1,49,53,TB,NO,1,10,20,(4:53) D.Martin left end to NO 20 for no gain (T.Johnson).,0,7,2012 -20121216_TB@NO,1,49,11,TB,NO,2,10,20,(4:11) (Shotgun) J.Freeman pass short right intended for D.Clark INTERCEPTED by J.Greer at NO 16. J.Greer to NO 19 for 3 yards (D.Clark).,0,7,2012 -20121216_TB@NO,1,49,6,NO,TB,1,10,81,(4:06) M.Ingram left guard to NO 23 for 4 yards (R.Barber; M.Barron).,7,0,2012 -20121216_TB@NO,1,48,26,NO,TB,2,6,77,(3:26) D.Brees pass short right to D.Sproles to NO 25 for 2 yards (L.Johnson) [G.McCoy]. Pass -5 YAC 7,7,0,2012 -20121216_TB@NO,1,47,50,NO,TB,3,4,75,(2:50) (Shotgun) D.Brees pass short middle to J.Graham to NO 40 for 15 yards (A.Morgan) [A.Black]. Pass 7 YAC 8,7,0,2012 -20121216_TB@NO,1,47,15,NO,TB,1,10,60,(2:15) (Shotgun) D.Brees pass short left to D.Sproles to NO 43 for 3 yards (M.Barron). Pass -6 YAC 9,7,0,2012 -20121216_TB@NO,1,46,41,NO,TB,2,7,57,(1:41) D.Henderson left end pushed ob at TB 44 for 13 yards (R.Barber).,7,0,2012 -20121216_TB@NO,1,46,11,NO,TB,1,10,44,(1:11) D.Brees pass short middle to M.Colston to TB 18 for 26 yards (M.Barron; R.Barber). Pass 14 YAC 12,7,0,2012 -20121216_TB@NO,1,45,29,NO,TB,1,10,18,(:29) (Shotgun) D.Brees pass short right to L.Moore to TB 6 for 12 yards (M.Barron). Pass 10 YAC 2,7,0,2012 -20121216_TB@NO,2,45,0,NO,TB,1,6,6,(15:00) D.Sproles left end to TB 5 for 1 yard (M.Foster).,7,0,2012 -20121216_TB@NO,2,44,25,NO,TB,2,5,5,(14:25) (Shotgun) D.Brees pass short right to T.Cadet to TB 2 for 3 yards (A.Gaitor). Pass 3 YAC 0,7,0,2012 -20121216_TB@NO,2,43,48,NO,TB,3,2,2,(13:48) PENALTY on NO-J.Bushrod False Start 5 yards enforced at TB 2 - No Play.,7,0,2012 -20121216_TB@NO,2,43,32,NO,TB,3,7,7,(13:32) (Shotgun) D.Brees pass incomplete short right to J.Graham (A.Black).,7,0,2012 -20121216_TB@NO,2,43,27,NO,TB,4,7,7,(13:27) G.Hartley 25 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,7,0,2012 -20121216_TB@NO,2,43,27,NO,TB,,,7,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,10,0,2012 -20121216_TB@NO,2,43,23,TB,NO,1,10,80,(13:23) (Shotgun) J.Freeman pass incomplete short right to D.Clark [J.Galette].,0,10,2012 -20121216_TB@NO,2,43,20,TB,NO,2,10,80,(13:20) D.Martin left tackle to TB 21 for 1 yard (C.Lofton; T.Johnson).,0,10,2012 -20121216_TB@NO,2,42,38,TB,NO,3,9,79,(12:38) (Shotgun) J.Freeman pass short right to M.Williams pushed ob at TB 29 for 8 yards (J.Greer). Pass 6 YAC 2,0,10,2012 -20121216_TB@NO,2,42,12,TB,NO,4,1,71,(12:12) M.Koenen punts 40 yards to NO 31 Center-A.Economos fair catch by D.Sproles.,0,10,2012 -20121216_TB@NO,2,42,6,NO,TB,1,10,69,(12:06) D.Brees pass incomplete short right to D.Henderson.,10,0,2012 -20121216_TB@NO,2,42,2,NO,TB,2,10,69,(12:02) (Shotgun) D.Brees pass incomplete deep left to J.Morgan. Morgan caught the ball but was out-of-bounds.,10,0,2012 -20121216_TB@NO,2,41,56,NO,TB,3,10,69,(11:56) (Shotgun) D.Brees sacked at NO 22 for -9 yards (D.Bowers).,10,0,2012 -20121216_TB@NO,2,41,25,NO,TB,4,19,78,(11:25) T.Morstead punts 60 yards to TB 18 Center-J.Drescher. R.Parrish to NO 43 for 39 yards (J.Casillas). PENALTY on NO-J.Drescher Offensive Holding 10 yards enforced at NO 43.,10,0,2012 -20121216_TB@NO,2,40,28,TB,NO,1,10,33,(10:28) D.Martin right end to NO 22 for 11 yards (R.Harper).,0,10,2012 -20121216_TB@NO,2,40,1,TB,NO,1,10,22,(10:01) D.Martin right guard to NO 26 for -4 yards (W.Smith).,0,10,2012 -20121216_TB@NO,2,39,46,TB,NO,2,14,26,(9:46) (Shotgun) J.Freeman pass incomplete deep right to M.Williams.,0,10,2012 -20121216_TB@NO,2,39,40,TB,NO,3,14,26,(9:40) (Shotgun) J.Freeman pass deep middle intended for V.Jackson INTERCEPTED by R.Bush [J.Galette] at NO 9. R.Bush to NO 49 for 40 yards (M.Williams). TB-M.Williams was injured during the play. His return is Probable.,0,10,2012 -20121216_TB@NO,2,39,23,NO,TB,1,10,51,(9:23) M.Ingram left end to NO 46 for -3 yards (M.Bennett).,10,0,2012 -20121216_TB@NO,2,38,47,NO,TB,2,13,54,(8:47) (Shotgun) PENALTY on TB-M.Bennett Encroachment 5 yards enforced at NO 46 - No Play.,10,0,2012 -20121216_TB@NO,2,38,33,NO,TB,2,8,49,(8:33) (Shotgun) D.Sproles left end pushed ob at TB 46 for 3 yards (M.Barron). PENALTY on NO-J.Bushrod Offensive Holding 10 yards enforced at TB 49 - No Play.,10,0,2012 -20121216_TB@NO,2,38,13,NO,TB,2,18,59,(8:13) (Shotgun) D.Brees pass incomplete short middle to L.Moore. PENALTY on TB-A.Gaitor Defensive Holding 5 yards enforced at NO 41 - No Play.,10,0,2012 -20121216_TB@NO,2,38,7,NO,TB,1,10,54,(8:07) M.Ingram left tackle to NO 45 for -1 yards (G.McCoy; A.Hayward).,10,0,2012 -20121216_TB@NO,2,37,32,NO,TB,2,11,55,(7:32) (Shotgun) D.Brees pass incomplete short left to J.Graham.,10,0,2012 -20121216_TB@NO,2,37,28,NO,TB,3,11,55,(7:28) (Shotgun) D.Brees pass short right to M.Colston to TB 34 for 21 yards (D.Gorrer) [G.McCoy]. Pass 12 YAC 9,10,0,2012 -20121216_TB@NO,2,36,43,NO,TB,1,10,34,(6:43) M.Ingram left guard to TB 25 for 9 yards (M.Foster).,10,0,2012 -20121216_TB@NO,2,36,6,NO,TB,2,1,25,(6:06) (Shotgun) D.Brees pass deep middle to L.Moore to TB 9 for 16 yards (M.Barron). Pass 16 YAC 0,10,0,2012 -20121216_TB@NO,2,35,24,NO,TB,1,9,9,(5:24) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at TB 2 for 7 yards (M.Barron). Pass 0 YAC 7,10,0,2012 -20121216_TB@NO,2,35,1,NO,TB,2,2,2,(5:01) (Shotgun) D.Brees pass short left to D.Sproles for 2 yards TOUCHDOWN. Pass 2 YAC 0,10,0,2012 -20121216_TB@NO,2,35,1,NO,TB,,,2,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,10,0,2012 -20121216_TB@NO,2,35,1,NO,TB,,,2,T.Morstead kicks 66 yards from NO 35 to TB -1. R.Parrish to TB 15 for 16 yards (J.Galette).,17,0,2012 -20121216_TB@NO,2,34,53,TB,NO,1,10,85,(4:53) J.Freeman pass short right to L.Stocker pushed ob at TB 30 for 15 yards (C.Jordan). Pass 4 YAC 11,0,17,2012 -20121216_TB@NO,2,34,20,TB,NO,1,10,70,(4:20) J.Freeman pass incomplete short left to D.Martin (D.Hawthorne).,0,17,2012 -20121216_TB@NO,2,34,14,TB,NO,2,10,70,(4:14) (Shotgun) D.Martin left end to TB 28 for -2 yards (C.Lofton).,0,17,2012 -20121216_TB@NO,2,33,33,TB,NO,3,12,72,(3:33) (Shotgun) J.Freeman pass short middle to D.Ware to TB 37 for 9 yards (E.Mack). Pass 3 YAC 6,0,17,2012 -20121216_TB@NO,2,32,52,TB,NO,4,3,63,(2:52) M.Koenen punts 42 yards to NO 21 Center-A.Economos. D.Sproles to NO 21 for no gain (L.Johnson).,0,17,2012 -20121216_TB@NO,2,32,43,NO,TB,1,10,79,(2:43) M.Ingram left guard to NO 23 for 2 yards (L.David; M.Foster).,17,0,2012 -20121216_TB@NO,2,32,11,NO,TB,2,8,77,(2:11) (Shotgun) D.Brees scrambles up the middle to NO 34 for 11 yards. Brees slid to avoid being tackled no TB player touched him down.,17,0,2012 -20121216_TB@NO,2,32,0,NO,TB,1,10,66,(2:00) (Shotgun) D.Brees pass incomplete short right to D.Sproles [G.McCoy].,17,0,2012 -20121216_TB@NO,2,31,53,NO,TB,2,10,66,(1:53) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,17,0,2012 -20121216_TB@NO,2,31,50,NO,TB,3,10,66,(1:50) (Shotgun) D.Brees pass incomplete deep left to L.Moore.,17,0,2012 -20121216_TB@NO,2,31,45,NO,TB,4,10,66,(1:45) T.Morstead punts 45 yards to TB 21 Center-J.Drescher fair catch by R.Parrish.,17,0,2012 -20121216_TB@NO,2,31,37,TB,NO,1,10,79,(1:37) (Shotgun) J.Freeman pass incomplete short right to D.Ware (E.Mack).,0,17,2012 -20121216_TB@NO,2,31,31,TB,NO,2,10,79,(1:31) (Shotgun) J.Freeman pass incomplete short left to D.Ware [W.Smith].,0,17,2012 -20121216_TB@NO,2,31,24,TB,NO,3,10,79,(1:24) (Shotgun) J.Freeman sacked at TB 17 for -4 yards (W.Smith).,0,17,2012 -20121216_TB@NO,2,31,18,TB,NO,4,14,83,(1:18) M.Koenen punts 58 yards to NO 25 Center-A.Economos. D.Sproles pushed ob at TB 38 for 37 yards (M.Foster).,0,17,2012 -20121216_TB@NO,2,31,4,NO,TB,1,10,38,(1:04) (Shotgun) D.Brees pass short left to J.Graham to TB 31 for 7 yards (M.Barron). Pass 7 YAC 0,17,0,2012 -20121216_TB@NO,2,30,43,NO,TB,2,3,31,(:43) (Shotgun) D.Brees pass incomplete deep right to J.Graham (M.Barron).,17,0,2012 -20121216_TB@NO,2,30,39,NO,TB,3,3,31,(:39) (Shotgun) D.Brees pass deep middle to J.Graham to TB 7 for 24 yards (L.David). Pass 21 YAC 3,17,0,2012 -20121216_TB@NO,2,30,13,NO,TB,1,7,7,(:13) D.Brees spiked the ball to stop the clock.,17,0,2012 -20121216_TB@NO,2,30,12,NO,TB,2,7,7,(:12) (Shotgun) D.Brees pass short left to L.Moore for 7 yards TOUCHDOWN. Pass 7 YAC 0,17,0,2012 -20121216_TB@NO,2,30,12,NO,TB,,,7,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,0,2012 -20121216_TB@NO,2,30,12,NO,TB,,,7,T.Morstead kicks 37 yards from NO 35 to TB 28. D.Ware to TB 35 for 7 yards (R.Humber).,24,0,2012 -20121216_TB@NO,2,30,5,TB,NO,1,10,65,(:05) J.Freeman kneels to TB 34 for -1 yards.,0,24,2012 -20121216_TB@NO,3,30,0,NO,TB,,,65,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,24,0,2012 -20121216_TB@NO,3,30,0,TB,NO,1,10,80,(15:00) D.Martin left guard to TB 20 for no gain (J.Vilma).,0,24,2012 -20121216_TB@NO,3,29,25,TB,NO,2,10,80,(14:25) J.Freeman pass incomplete short middle to T.Underwood.,0,24,2012 -20121216_TB@NO,3,29,19,TB,NO,3,10,80,(14:19) (Shotgun) J.Freeman scrambles up the middle to TB 29 for 9 yards (W.Smith). Penalty on TB-J.Meredith Offensive Holding declined.,0,24,2012 -20121216_TB@NO,3,28,59,TB,NO,4,1,71,(13:59) (Punt formation) K.Tandy right guard to TB 47 for 18 yards (W.Herring). Fake punt - Tandy took a direct snap in the up position and rushed right.,0,24,2012 -20121216_TB@NO,3,28,38,TB,NO,1,10,53,(13:38) (Shotgun) J.Freeman pass deep middle intended for D.Clark INTERCEPTED by I.Abdul-Quddus at NO 8. I.Abdul-Quddus to NO 8 for no gain (D.Clark).,0,24,2012 -20121216_TB@NO,3,28,29,NO,TB,1,10,92,(13:29) M.Ingram left guard to NO 39 for 31 yards (E.Biggers; R.Barber).,24,0,2012 -20121216_TB@NO,3,27,48,NO,TB,1,10,61,(12:48) M.Ingram right guard to NO 44 for 5 yards (D.Gorrer).,24,0,2012 -20121216_TB@NO,3,27,12,NO,TB,2,5,56,(12:12) (Shotgun) D.Sproles left end ran ob at TB 49 for 7 yards (E.Biggers).,24,0,2012 -20121216_TB@NO,3,26,45,NO,TB,1,10,49,(11:45) (Shotgun) P.Thomas left guard to TB 48 for 1 yard (A.Hayward; M.Foster).,24,0,2012 -20121216_TB@NO,3,26,10,NO,TB,2,9,48,(11:10) P.Thomas left end to TB 41 for 7 yards (E.Biggers; L.David).,24,0,2012 -20121216_TB@NO,3,25,26,NO,TB,3,2,41,(10:26) (Shotgun) D.Brees pass short right to J.Graham to TB 31 for 10 yards (R.Barber). Pass 4 YAC 6,24,0,2012 -20121216_TB@NO,3,24,48,NO,TB,1,10,31,(9:48) M.Ingram left guard to TB 34 for -3 yards (L.Levingston).,24,0,2012 -20121216_TB@NO,3,24,11,NO,TB,2,13,34,(9:11) (Shotgun) D.Brees pass deep left to J.Morgan for 34 yards TOUCHDOWN. NO-J.Bushrod was injured during the play. His return is Probable. Pass 26 YAC 8,24,0,2012 -20121216_TB@NO,3,24,11,NO,TB,,,34,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,24,0,2012 -20121216_TB@NO,3,24,11,NO,TB,,,34,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,31,0,2012 -20121216_TB@NO,3,24,5,TB,NO,1,10,80,(9:05) (Shotgun) J.Freeman pass short left to D.Martin to TB 25 for 5 yards (M.Wilson; R.Harper). Pass -6 YAC 11,0,31,2012 -20121216_TB@NO,3,23,33,TB,NO,2,5,75,(8:33) (Shotgun) J.Freeman pass short left to M.Williams to TB 35 for 10 yards (E.Mack). Pass 4 YAC 6,0,31,2012 -20121216_TB@NO,3,23,3,TB,NO,1,10,65,(8:03) (Shotgun) J.Freeman pass short right to M.Williams pushed ob at NO 44 for 21 yards (I.Abdul-Quddus). Pass 4 YAC 17,0,31,2012 -20121216_TB@NO,3,22,34,TB,NO,1,10,44,(7:34) (Shotgun) J.Freeman pass short right to D.Clark pushed ob at NO 40 for 4 yards (R.Harper). Pass 4 YAC 0,0,31,2012 -20121216_TB@NO,3,22,19,TB,NO,2,6,40,(7:19) (Shotgun) J.Freeman pass incomplete short left to V.Jackson.,0,31,2012 -20121216_TB@NO,3,22,14,TB,NO,3,6,40,(7:14) (Shotgun) J.Freeman pass short left to D.Clark to NO 30 for 10 yards (R.Harper). Pass 7 YAC 3,0,31,2012 -20121216_TB@NO,3,21,37,TB,NO,1,10,30,(6:37) (Shotgun) J.Freeman pass incomplete deep left to M.Williams.,0,31,2012 -20121216_TB@NO,3,21,31,TB,NO,2,10,30,(6:31) (Shotgun) J.Freeman pass short right to D.Clark to NO 24 for 6 yards (E.Mack). Pass 6 YAC 0,0,31,2012 -20121216_TB@NO,3,20,55,TB,NO,3,4,24,(5:55) (Shotgun) J.Freeman pass short middle to D.Clark to NO 20 for 4 yards (I.Abdul-Quddus). PENALTY on TB-D.Martin Offensive Holding 10 yards enforced at NO 24 - No Play.,0,31,2012 -20121216_TB@NO,3,20,33,TB,NO,3,14,34,(5:33) (Shotgun) J.Freeman pass incomplete short right to D.Clark (J.Greer) [W.Smith].,0,31,2012 -20121216_TB@NO,3,20,28,TB,NO,4,14,34,(5:28) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson [W.Smith].,0,31,2012 -20121216_TB@NO,3,20,21,NO,TB,1,10,65,(5:21) The line of scrimmage changed to the 35 on the change of possession. M.Ingram left tackle to NO 37 for 2 yards (M.Bennett).,31,0,2012 -20121216_TB@NO,3,19,51,NO,TB,2,8,63,(4:51) D.Sproles left end to NO 37 for no gain (M.Barron).,31,0,2012 -20121216_TB@NO,3,19,7,NO,TB,3,8,63,(4:07) (Shotgun) D.Brees pass short right to D.Sproles to NO 44 for 7 yards (L.David). Pass -2 YAC 9,31,0,2012 -20121216_TB@NO,3,18,21,NO,TB,4,1,56,(3:21) T.Morstead punts 56 yards to end zone Center-J.Drescher Touchback.,31,0,2012 -20121216_TB@NO,3,18,12,TB,NO,1,10,80,(3:12) (Shotgun) J.Freeman pass short left to V.Jackson to TB 27 for 7 yards (P.Robinson). NO-E.Mack was injured during the play. His return is Probable. Pass 7 YAC 0,0,31,2012 -20121216_TB@NO,3,17,44,TB,NO,2,3,73,(2:44) (Shotgun) J.Freeman pass short left to D.Clark pushed ob at TB 31 for 4 yards (P.Robinson). Pass 1 YAC 3,0,31,2012 -20121216_TB@NO,3,17,28,TB,NO,1,10,69,(2:28) (Shotgun) J.Freeman pass deep middle to V.Jackson to 50 for 19 yards (I.Abdul-Quddus). Pass 19 YAC 0.,0,31,2012 -20121216_TB@NO,3,17,0,TB,NO,1,10,50,(2:00) (Shotgun) J.Freeman pass deep right to V.Jackson ran ob at NO 31 for 19 yards (I.Abdul-Quddus). Pass 19 YAC 0.,0,31,2012 -20121216_TB@NO,3,16,40,TB,NO,1,10,31,(1:40) (Shotgun) J.Freeman pass incomplete deep right to V.Jackson (J.Greer).,0,31,2012 -20121216_TB@NO,3,16,33,TB,NO,2,10,31,(1:33) (Shotgun) J.Freeman pass short left to V.Jackson to NO 19 for 12 yards (J.Patrick). Pass 7 YAC 5,0,31,2012 -20121216_TB@NO,3,16,2,TB,NO,1,10,19,(1:02) (Shotgun) J.Freeman pass short right to D.Martin to NO 11 for 8 yards (J.Galette; J.Greer). Pass 1 YAC 7,0,31,2012 -20121216_TB@NO,3,15,17,TB,NO,2,2,11,(:17) (Shotgun) J.Freeman pass incomplete short right to D.Martin.,0,31,2012 -20121216_TB@NO,3,15,12,TB,NO,3,2,11,(:12) (Shotgun) J.Freeman pass incomplete short left to M.Williams. Pass was caught by Williams but he was out-of-bounds.,0,31,2012 -20121216_TB@NO,3,15,5,TB,NO,4,2,11,(:05) (Shotgun) J.Freeman pass incomplete short middle (M.Wilson) [J.Galette].,0,31,2012 -20121216_TB@NO,4,15,0,NO,TB,1,10,88,(15:00) (Shotgun) D.Brees pass incomplete short right to T.Cadet (A.Gaitor).,31,0,2012 -20121216_TB@NO,4,14,57,NO,TB,2,10,88,(14:57) M.Ingram left guard to NO 17 for 5 yards (M.Foster; L.David).,31,0,2012 -20121216_TB@NO,4,14,13,NO,TB,3,5,83,(14:13) (Shotgun) D.Brees pass short middle to P.Thomas to NO 19 for 2 yards (A.Gaitor). Pass 2 YAC 0,31,0,2012 -20121216_TB@NO,4,13,28,NO,TB,4,3,81,(13:28) T.Morstead punts 47 yards to TB 34 Center-J.Drescher out of bounds.,31,0,2012 -20121216_TB@NO,4,13,19,TB,NO,1,10,66,(13:19) (Shotgun) D.Martin left tackle to TB 35 for 1 yard (R.Harper). PENALTY on TB-J.Zuttah Offensive Holding 10 yards enforced at TB 34 - No Play.,0,31,2012 -20121216_TB@NO,4,12,57,TB,NO,1,20,76,(12:57) (Shotgun) J.Freeman pass short left to D.Martin to TB 30 for 6 yards (C.Lofton). Pass 4 YAC 2,0,31,2012 -20121216_TB@NO,4,12,33,TB,NO,2,14,70,(12:33) (Shotgun) J.Freeman pass short right to T.Underwood to TB 44 for 14 yards (I.Abdul-Quddus). Pass 10 YAC 4,0,31,2012 -20121216_TB@NO,4,12,6,TB,NO,1,10,56,(12:06) PENALTY on TB-J.Zuttah False Start 4 yards enforced at TB 44 - No Play.,0,31,2012 -20121216_TB@NO,4,11,52,TB,NO,1,14,60,(11:52) (Shotgun) J.Freeman pass short left to V.Jackson to NO 47 for 13 yards (R.Bush). Pass 13 YAC 0,0,31,2012 -20121216_TB@NO,4,11,24,TB,NO,2,1,47,(11:24) (Shotgun) J.Freeman pass short left to D.Clark pushed ob at NO 42 for 5 yards (R.Harper). Pass 5 YAC 0,0,31,2012 -20121216_TB@NO,4,10,59,TB,NO,1,10,42,(10:59) (Shotgun) J.Freeman pass deep right intended for T.Underwood INTERCEPTED by J.Greer at NO 0. Touchback.,0,31,2012 -20121216_TB@NO,4,10,55,NO,TB,1,10,80,(10:55) D.Brees pass short right to L.Moore pushed ob at NO 27 for 7 yards (R.Barber). Pass 3 YAC 4,31,0,2012 -20121216_TB@NO,4,10,27,NO,TB,2,3,73,(10:27) M.Ingram left tackle pushed ob at TB 47 for 26 yards (M.Barron).,31,0,2012 -20121216_TB@NO,4,10,4,NO,TB,1,10,47,(10:04) D.Brees pass incomplete short right to P.Thomas.,31,0,2012 -20121216_TB@NO,4,10,0,NO,TB,2,10,47,(10:00) D.Brees pass deep right to J.Morgan to TB 20 for 27 yards (L.Johnson).,31,0,2012 -20121216_TB@NO,4,9,25,NO,TB,1,10,20,(9:25) M.Ingram right guard to TB 21 for -1 yards (L.David).,31,0,2012 -20121216_TB@NO,4,8,54,NO,TB,2,11,21,(8:54) D.Brees pass short right to J.Collins to TB 17 for 4 yards (A.Hayward). Pass 4 YAC 0,31,0,2012 -20121216_TB@NO,4,8,18,NO,TB,3,7,17,(8:18) (Shotgun) D.Brees pass incomplete deep middle to J.Graham.,31,0,2012 -20121216_TB@NO,4,8,14,NO,TB,4,7,17,(8:14) G.Hartley 36 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,31,0,2012 -20121216_TB@NO,4,8,14,NO,TB,,,17,T.Morstead kicks 71 yards from NO 35 to TB -6. R.Parrish to TB 19 for 25 yards (J.Galette).,34,0,2012 -20121216_TB@NO,4,8,4,TB,NO,1,10,81,(8:04) (Shotgun) J.Freeman pass short middle to D.Clark to TB 26 for 7 yards (R.Harper). Pass 6 YAC 1,0,34,2012 -20121216_TB@NO,4,7,41,TB,NO,2,3,74,(7:41) (Shotgun) J.Freeman pass short right to T.Underwood to TB 39 for 13 yards (R.Bush). Pass 9 YAC 4,0,34,2012 -20121216_TB@NO,4,7,14,TB,NO,1,10,61,(7:14) (Shotgun) J.Freeman pass incomplete short left to V.Jackson [T.Johnson].,0,34,2012 -20121216_TB@NO,4,7,8,TB,NO,2,10,61,(7:08) (Shotgun) J.Freeman pass short right to V.Jackson to 50 for 11 yards (J.Greer). Pass 7 YAC 4,0,34,2012 -20121216_TB@NO,4,6,42,TB,NO,1,10,50,(6:42) (Shotgun) J.Freeman sacked at TB 43 for -7 yards (C.Jordan). FUMBLES (C.Jordan) RECOVERED by NO-C.Jordan at TB 43. C.Jordan to TB 43 for no gain (D.Dotson).,0,34,2012 -20121216_TB@NO,4,6,26,NO,TB,1,10,43,(6:26) New quarterback for the Saints is #10 C.Daniel. M.Ingram right guard to TB 40 for 3 yards (L.Levingston).,34,0,2012 -20121216_TB@NO,4,5,46,NO,TB,2,7,40,(5:46) C.Daniel pass incomplete short left to M.Ingram. PENALTY on NO-B.De La Puente Offensive Holding 10 yards enforced at TB 40 - No Play.,34,0,2012 -20121216_TB@NO,4,5,40,NO,TB,2,17,50,(5:40) D.Sproles right guard to NO 49 for -1 yards (A.Hayward).,34,0,2012 -20121216_TB@NO,4,5,7,NO,TB,3,18,51,(5:07) (Shotgun) C.Daniel pass incomplete deep left to J.Morgan. PENALTY on TB-M.Barron Defensive Pass Interference 40 yards enforced at NO 49 - No Play.,34,0,2012 -20121216_TB@NO,4,4,59,NO,TB,1,10,11,(4:59) M.Ingram left guard for 11 yards TOUCHDOWN.,34,0,2012 -20121216_TB@NO,4,4,59,NO,TB,,,11,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,34,0,2012 -20121216_TB@NO,4,4,59,NO,TB,,,11,T.Morstead kicks 63 yards from NO 35 to TB 2. R.Parrish to TB 24 for 22 yards (W.Herring).,41,0,2012 -20121216_TB@NO,4,4,47,TB,NO,1,10,76,(4:47) New quarterback for the Buccaneers is #6 D.Orlovsky. L.Blount left tackle to TB 33 for 9 yards (J.Vilma; I.Abdul-Quddus).,0,41,2012 -20121216_TB@NO,4,4,9,TB,NO,2,1,67,(4:09) L.Blount left tackle to TB 37 for 4 yards (J.Galette).,0,41,2012 -20121216_TB@NO,4,3,29,TB,NO,1,10,63,(3:29) L.Blount left guard to TB 39 for 2 yards (R.Harper).,0,41,2012 -20121216_TB@NO,4,2,51,TB,NO,2,8,61,(2:51) L.Blount right tackle to TB 39 for no gain (A.Hicks; J.Vilma). PENALTY on TB-D.Hardman Offensive Holding 10 yards enforced at TB 39 - No Play.,0,41,2012 -20121216_TB@NO,4,2,45,TB,NO,2,18,71,(2:45) D.Orlovsky pass short right to L.Stocker to TB 31 for 2 yards (R.Harper). Pass 1 YAC 1,0,41,2012 -20121216_TB@NO,4,2,0,TB,NO,3,16,69,(2:00) (Shotgun) D.Orlovsky pass deep middle to T.Underwood to 50 for 19 yards (I.Abdul-Quddus). Pass 19 YAC 0,0,41,2012 -20121216_TB@NO,4,1,23,TB,NO,1,10,50,(1:23) L.Blount left guard to NO 40 for 10 yards (R.Harper; I.Abdul-Quddus).,0,41,2012 -20121216_TB@NO,4,0,46,TB,NO,1,10,40,(:46) D.Orlovsky pass incomplete deep right to N.Byham.,0,41,2012 -20121216_TB@NO,4,0,38,TB,NO,2,10,40,(:38) (Shotgun) D.Orlovsky pass short right to C.Owusu pushed ob at NO 16 for 24 yards (R.Harper). Pass 13 YAC 11,0,41,2012 -20121216_TB@NO,4,0,29,TB,NO,1,10,16,(:29) D.Orlovsky pass short left to L.Stocker to NO 10 for 6 yards (E.Mack). Pass 4 YAC 2. Stocker fumbled but was ruled out-of-bounds when he fumbled.,0,41,2012 -20121216_TB@NO,4,0,8,TB,NO,2,4,10,(:08) D.Orlovsky pass incomplete short right to T.Underwood.,0,41,2012 -20121216_TB@NO,4,0,2,TB,NO,3,4,10,(:02) (Shotgun) D.Orlovsky pass incomplete short left to C.Owusu.,0,41,2012 -20121216_TB@NO,4,0,2,TB,NO,,,10,                      ,0,41,2012 -20121216_MIN@STL,1,0,0,MIN,STL,,,10,B.Walsh kicks 72 yards from MIN 35 to SL -7. C.Givens to SL 12 for 19 yards (R.Blanton).,0,0,2012 -20121216_MIN@STL,1,59,57,STL,MIN,1,10,88,(14:57) (Shotgun) S.Bradford pass short left to S.Jackson to SL 23 for 11 yards (L.Guion).,0,0,2012 -20121216_MIN@STL,1,59,16,STL,MIN,1,10,77,(14:16) S.Jackson right tackle to SL 23 for no gain (J.Brinkley).,0,0,2012 -20121216_MIN@STL,1,58,39,STL,MIN,2,10,77,(13:39) S.Bradford sacked at SL 15 for -8 yards (B.Robison).,0,0,2012 -20121216_MIN@STL,1,58,3,STL,MIN,3,18,85,(13:03) (Shotgun) S.Bradford pass incomplete short left to S.Jackson.,0,0,2012 -20121216_MIN@STL,1,57,58,STL,MIN,4,18,85,(12:58) J.Hekker punts 45 yards to MIN 40 Center-J.McQuaide. M.Sherels to SL 45 for 15 yards (J.Cole).,0,0,2012 -20121216_MIN@STL,1,57,45,MIN,STL,1,10,45,(12:45) C.Ponder pass short right to K.Rudolph pushed ob at SL 31 for 14 yards (C.Dahl).,0,0,2012 -20121216_MIN@STL,1,57,20,MIN,STL,1,10,31,(12:20) A.Peterson left end to SL 27 for 4 yards (J.Jenkins).,0,0,2012 -20121216_MIN@STL,1,56,42,MIN,STL,2,6,27,(11:42) C.Ponder pass short middle to J.Simpson to SL 16 for 11 yards (J.Jenkins).,0,0,2012 -20121216_MIN@STL,1,56,3,MIN,STL,1,10,16,(11:03) A.Peterson left guard to SL 18 for -2 yards (W.Hayes).,0,0,2012 -20121216_MIN@STL,1,55,28,MIN,STL,2,12,18,(10:28) A.Peterson right tackle to SL 20 for -2 yards (W.Hayes).,0,0,2012 -20121216_MIN@STL,1,54,40,MIN,STL,3,14,20,(9:40) (Shotgun) C.Ponder pass short right to S.Burton to SL 7 for 13 yards (J.Dunbar).,0,0,2012 -20121216_MIN@STL,1,54,0,MIN,STL,4,1,7,(9:00) C.Ponder left end ran ob at SL 4 for 3 yards (E.Sims). PENALTY on SL-M.Haggan Defensive Holding 2 yards enforced at SL 4.,0,0,2012 -20121216_MIN@STL,1,53,33,MIN,STL,1,2,2,(8:33) A.Peterson up the middle to SL 4 for -2 yards (C.Long).,0,0,2012 -20121216_MIN@STL,1,52,57,MIN,STL,2,4,4,(7:57) A.Peterson up the middle to SL 5 for -1 yards (R.Quinn).,0,0,2012 -20121216_MIN@STL,1,52,14,MIN,STL,3,5,5,(7:14) (Shotgun) C.Ponder scrambles left end for 5 yards TOUCHDOWN.,0,0,2012 -20121216_MIN@STL,1,52,14,MIN,STL,,,5,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121216_MIN@STL,1,52,14,MIN,STL,,,5,B.Walsh kicks 74 yards from MIN 35 to SL -9. C.Givens Touchback.,7,0,2012 -20121216_MIN@STL,1,52,5,STL,MIN,1,10,80,(7:05) (Shotgun) S.Bradford pass short right to D.Amendola to SL 28 for 8 yards (J.Sanford).,0,7,2012 -20121216_MIN@STL,1,51,33,STL,MIN,2,2,72,(6:33) S.Jackson right tackle to SL 41 for 13 yards (H.Smith).,0,7,2012 -20121216_MIN@STL,1,50,53,STL,MIN,1,10,59,(5:53) S.Jackson up the middle to MIN 44 for 15 yards (J.Sanford). MIN-B.Robison was injured during the play. He is Out.,0,7,2012 -20121216_MIN@STL,1,50,24,STL,MIN,1,10,44,(5:24) S.Bradford pass incomplete short right to L.Kendricks [E.Griffen].,0,7,2012 -20121216_MIN@STL,1,50,19,STL,MIN,2,10,44,(5:19) S.Bradford pass incomplete short right to C.Givens.,0,7,2012 -20121216_MIN@STL,1,50,16,STL,MIN,3,10,44,(5:16) (Shotgun) S.Bradford pass short left to B.Gibson to MIN 32 for 12 yards (A.Jefferson). PENALTY on SL-R.Saffold Offensive Holding 10 yards enforced at MIN 44 - No Play.,0,7,2012 -20121216_MIN@STL,1,49,53,STL,MIN,3,20,54,(4:53) (Shotgun) S.Bradford pass short middle to D.Richardson to MIN 47 for 7 yards (C.Greenway).,0,7,2012 -20121216_MIN@STL,1,49,17,STL,MIN,4,13,47,(4:17) J.Hekker punts 39 yards to MIN 8 Center-J.McQuaide downed by SL-C.Dahl.,0,7,2012 -20121216_MIN@STL,1,49,9,MIN,STL,1,10,92,(4:09) A.Peterson up the middle to MIN 14 for 6 yards (J.Dunbar).,7,0,2012 -20121216_MIN@STL,1,48,30,MIN,STL,2,4,86,(3:30) (Shotgun) C.Ponder pass short right to J.Carlson to MIN 21 for 7 yards (Q.Mikell).,7,0,2012 -20121216_MIN@STL,1,47,55,MIN,STL,1,10,79,(2:55) A.Peterson left end to MIN 18 for -3 yards (J.Jenkins).,7,0,2012 -20121216_MIN@STL,1,47,16,MIN,STL,2,13,82,(2:16) A.Peterson left tackle to MIN 26 for 8 yards (J.Laurinaitis).,7,0,2012 -20121216_MIN@STL,1,46,31,MIN,STL,3,5,74,(1:31) (Shotgun) C.Ponder pass incomplete short left to J.Simpson.,7,0,2012 -20121216_MIN@STL,1,46,25,MIN,STL,4,5,74,(1:25) C.Kluwe punts 49 yards to SL 25 Center-C.Loeffler. D.Amendola pushed ob at SL 27 for 2 yards (H.Smith).,7,0,2012 -20121216_MIN@STL,1,46,15,STL,MIN,1,10,73,(1:15) (Shotgun) D.Richardson up the middle to SL 30 for 3 yards (A.Winfield).,0,7,2012 -20121216_MIN@STL,1,45,39,STL,MIN,2,7,70,(:39) (Shotgun) S.Bradford pass short left to B.Gibson to SL 45 for 15 yards (H.Smith).,0,7,2012 -20121216_MIN@STL,1,45,5,STL,MIN,1,10,55,(:05) S.Jackson right tackle to MIN 49 for 6 yards (E.Griffen).,0,7,2012 -20121216_MIN@STL,2,45,0,STL,MIN,2,4,49,(15:00) S.Bradford pass incomplete short left to B.Gibson.,0,7,2012 -20121216_MIN@STL,2,44,55,STL,MIN,3,4,49,(14:55) (Shotgun) S.Bradford pass short left to D.Amendola ran ob at MIN 42 for 7 yards (A.Jefferson).,0,7,2012 -20121216_MIN@STL,2,44,32,STL,MIN,1,10,42,(14:32) S.Bradford pass deep middle to C.Givens ran ob at MIN 20 for 22 yards. MIN-M.Raymond was injured during the play. Penalty on SL-B.Gibson Taunting offsetting. Penalty on MIN-M.Raymond Unnecessary Roughness offsetting.,0,7,2012 -20121216_MIN@STL,2,44,10,STL,MIN,1,10,20,(14:10) S.Jackson right guard to MIN 16 for 4 yards (C.Greenway; H.Smith).,0,7,2012 -20121216_MIN@STL,2,43,32,STL,MIN,2,6,16,(13:32) (Shotgun) S.Bradford pass short left to B.Gibson to MIN 4 for 12 yards (A.Jefferson).,0,7,2012 -20121216_MIN@STL,2,42,44,STL,MIN,1,4,4,(12:44) S.Bradford pass short right to B.Quick for 4 yards TOUCHDOWN.,0,7,2012 -20121216_MIN@STL,2,42,44,STL,MIN,,,4,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,7,2012 -20121216_MIN@STL,2,42,44,STL,MIN,,,4,G.Zuerlein kicks 71 yards from SL 35 to MIN -6. M.Sherels to MIN 18 for 24 yards (Q.Mikell).,7,7,2012 -20121216_MIN@STL,2,42,34,MIN,STL,1,10,82,(12:34) A.Peterson up the middle for 82 yards TOUCHDOWN.,7,7,2012 -20121216_MIN@STL,2,42,34,MIN,STL,,,82,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,7,2012 -20121216_MIN@STL,2,42,34,MIN,STL,,,82,B.Walsh kicks 70 yards from MIN 35 to SL -5. C.Givens Touchback.,14,7,2012 -20121216_MIN@STL,2,42,21,STL,MIN,1,10,80,(12:21) (Shotgun) S.Bradford scrambles right end to SL 29 for 9 yards (C.Greenway).,7,14,2012 -20121216_MIN@STL,2,41,41,STL,MIN,2,1,71,(11:41) D.Richardson up the middle to SL 28 for -1 yards (C.Greenway).,7,14,2012 -20121216_MIN@STL,2,41,0,MIN,STL,3,2,72,(11:00) S.Bradford Aborted. S.Wells FUMBLES at SL 28 RECOVERED by MIN-C.Greenway at SL 28. C.Greenway to SL 28 for no gain (B.Richardson).,14,7,2012 -20121216_MIN@STL,2,40,52,MIN,STL,1,10,28,(10:52) C.Ponder pass short left to J.Carlson to SL 32 for -4 yards (J.Dunbar). Penalty on MIN-M.Kalil Ineligible Downfield Pass declined.,14,7,2012 -20121216_MIN@STL,2,40,26,MIN,STL,2,14,32,(10:26) A.Peterson up the middle to SL 31 for 1 yard (K.Langford).,14,7,2012 -20121216_MIN@STL,2,39,55,MIN,STL,3,13,31,(9:55) (Shotgun) C.Ponder sacked at SL 32 for -1 yards (E.Sims).,14,7,2012 -20121216_MIN@STL,2,39,17,MIN,STL,4,14,32,(9:17) B.Walsh 50 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,7,2012 -20121216_MIN@STL,2,39,17,MIN,STL,,,32,B.Walsh kicks 72 yards from MIN 35 to SL -7. C.Givens Touchback.,17,7,2012 -20121216_MIN@STL,2,39,11,STL,MIN,1,10,80,(9:11) S.Jackson up the middle to SL 21 for 1 yard (C.Ballard).,7,17,2012 -20121216_MIN@STL,2,38,38,STL,MIN,2,9,79,(8:38) S.Bradford pass incomplete deep right to B.Gibson (L.Guion).,7,17,2012 -20121216_MIN@STL,2,38,33,STL,MIN,3,9,79,(8:33) (Shotgun) S.Bradford pass short middle intended for L.Kendricks INTERCEPTED by E.Griffen at SL 29. E.Griffen for 29 yards TOUCHDOWN.,7,17,2012 -20121216_MIN@STL,2,38,33,MIN,STL,,,79,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,7,2012 -20121216_MIN@STL,2,38,33,MIN,STL,,,79,B.Walsh kicks 74 yards from MIN 35 to SL -9. C.Givens Touchback.,24,7,2012 -20121216_MIN@STL,2,38,25,STL,MIN,1,10,80,(8:25) S.Bradford sacked at SL 13 for -7 yards (E.Henderson). Penalty on SL-R.Saffold Offensive Holding declined.,7,24,2012 -20121216_MIN@STL,2,37,57,STL,MIN,2,17,87,(7:57) (Shotgun) S.Bradford pass short right to S.Jackson to SL 22 for 9 yards (J.Robinson).,7,24,2012 -20121216_MIN@STL,2,37,13,STL,MIN,3,8,78,(7:13) (Shotgun) S.Bradford sacked at SL 13 for -9 yards (C.Ballard).,7,24,2012 -20121216_MIN@STL,2,36,37,STL,MIN,4,17,87,(6:37) J.Hekker punts 55 yards to MIN 32 Center-J.McQuaide fair catch by M.Sherels.,7,24,2012 -20121216_MIN@STL,2,36,29,MIN,STL,1,10,68,(6:29) C.Ponder pass incomplete deep right to J.Wright.,24,7,2012 -20121216_MIN@STL,2,36,24,MIN,STL,2,10,68,(6:24) A.Peterson right end to MIN 42 for 10 yards (R.McIntosh).,24,7,2012 -20121216_MIN@STL,2,35,36,MIN,STL,1,10,58,(5:36) A.Peterson left end ran ob at MIN 47 for 5 yards (C.Dahl).,24,7,2012 -20121216_MIN@STL,2,35,7,MIN,STL,2,5,53,(5:07) (Shotgun) C.Ponder pass short left to J.Carlson to SL 39 for 14 yards (C.Dahl).,24,7,2012 -20121216_MIN@STL,2,34,26,MIN,STL,1,10,39,(4:26) C.Ponder pass short right to J.Simpson to SL 38 for 1 yard (C.Finnegan). FUMBLES (C.Finnegan) and recovers at SL 38. J.Simpson to SL 38 for no gain (C.Finnegan).,24,7,2012 -20121216_MIN@STL,2,33,58,MIN,STL,2,9,38,(3:58) A.Peterson right end to SL 25 for 13 yards (C.Finnegan).,24,7,2012 -20121216_MIN@STL,2,33,34,MIN,STL,1,10,25,(3:34) C.Ponder pass incomplete short left to T.Gerhart [J.Dunbar].,24,7,2012 -20121216_MIN@STL,2,33,24,MIN,STL,2,10,25,(3:24) PENALTY on SL-K.Langford Neutral Zone Infraction 5 yards enforced at SL 25 - No Play.,24,7,2012 -20121216_MIN@STL,2,33,24,MIN,STL,2,5,20,(3:24) C.Ponder pass incomplete deep left to M.Jenkins.,24,7,2012 -20121216_MIN@STL,2,33,19,MIN,STL,3,5,20,(3:19) (Shotgun) C.Ponder pass incomplete short left to J.Simpson.,24,7,2012 -20121216_MIN@STL,2,33,15,MIN,STL,4,5,20,(3:15) B.Walsh 38 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,24,7,2012 -20121216_MIN@STL,2,33,15,MIN,STL,,,20,B.Walsh kicks 61 yards from MIN 35 to SL 4. C.Givens to SL 14 for 10 yards (M.Asiata).,27,7,2012 -20121216_MIN@STL,2,33,7,STL,MIN,1,10,86,(3:07) S.Jackson up the middle to SL 18 for 4 yards (C.Greenway).,7,27,2012 -20121216_MIN@STL,2,32,34,STL,MIN,2,6,82,(2:34) S.Bradford pass short left to B.Gibson to SL 29 for 11 yards (A.Jefferson).,7,27,2012 -20121216_MIN@STL,2,32,0,STL,MIN,1,10,71,(2:00) (Shotgun) S.Bradford pass short left to B.Gibson ran ob at SL 42 for 13 yards (J.Brinkley).,7,27,2012 -20121216_MIN@STL,2,31,55,STL,MIN,1,10,58,(1:55) (Shotgun) S.Bradford pass short left to L.Kendricks ran ob at MIN 45 for 13 yards (J.Robinson).,7,27,2012 -20121216_MIN@STL,2,31,49,STL,MIN,1,10,45,(1:49) (Shotgun) PENALTY on SL-S.Wells False Start 5 yards enforced at MIN 45 - No Play.,7,27,2012 -20121216_MIN@STL,2,31,49,STL,MIN,1,15,50,(1:49) (Shotgun) S.Bradford pass short middle to S.Jackson to MIN 42 for 8 yards (A.Winfield) [J.Allen].,7,27,2012 -20121216_MIN@STL,2,31,25,STL,MIN,2,7,42,(1:25) (Shotgun) S.Bradford pass short right to S.Jackson to MIN 34 for 8 yards (C.Greenway).,7,27,2012 -20121216_MIN@STL,2,31,19,STL,MIN,1,10,34,(1:19) PENALTY on SL-R.Turner False Start 5 yards enforced at MIN 34 - No Play.,7,27,2012 -20121216_MIN@STL,2,31,19,STL,MIN,1,15,39,(1:19) S.Bradford pass incomplete short left to D.Amendola.,7,27,2012 -20121216_MIN@STL,2,31,15,STL,MIN,2,15,39,(1:15) (Shotgun) S.Bradford pass incomplete short middle to C.Givens.,7,27,2012 -20121216_MIN@STL,2,31,12,STL,MIN,3,15,39,(1:12) (Shotgun) S.Bradford pass incomplete deep right to C.Givens [C.Ballard].,7,27,2012 -20121216_MIN@STL,2,31,5,STL,MIN,4,15,39,(1:05) G.Zuerlein 57 yard field goal is No Good Wide Right Center-J.McQuaide Holder-J.Hekker.,7,27,2012 -20121216_MIN@STL,2,31,0,MIN,STL,1,10,53,(1:00) (Shotgun) C.Ponder pass short middle to K.Rudolph to SL 47 for 6 yards (J.Laurinaitis).,27,7,2012 -20121216_MIN@STL,2,30,52,MIN,STL,2,4,47,(:52) (Shotgun) C.Ponder pass short left to T.Gerhart ran ob at SL 35 for 12 yards (J.Jenkins).,27,7,2012 -20121216_MIN@STL,2,30,47,MIN,STL,1,10,35,(:47) (Shotgun) C.Ponder pass short right to T.Gerhart to SL 26 for 9 yards (J.Laurinaitis).,27,7,2012 -20121216_MIN@STL,2,30,23,MIN,STL,2,1,26,(:23) C.Ponder pass short left to J.Simpson to SL 24 for 2 yards (C.Finnegan).,27,7,2012 -20121216_MIN@STL,2,30,2,MIN,STL,1,10,24,(:02) B.Walsh 42 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,27,7,2012 -20121216_MIN@STL,3,30,0,STL,MIN,,,24,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,7,30,2012 -20121216_MIN@STL,3,30,0,MIN,STL,1,10,80,(15:00) A.Peterson left tackle to MIN 26 for 6 yards (M.Haggan).,30,7,2012 -20121216_MIN@STL,3,29,27,MIN,STL,2,4,74,(14:27) C.Ponder pass short left to K.Rudolph pushed ob at MIN 28 for 2 yards (J.Jenkins).,30,7,2012 -20121216_MIN@STL,3,28,56,MIN,STL,3,2,72,(13:56) A.Peterson up the middle to MIN 28 for no gain (J.Laurinaitis).,30,7,2012 -20121216_MIN@STL,3,28,19,MIN,STL,4,2,72,(13:19) C.Kluwe punts 49 yards to SL 23 Center-C.Loeffler. D.Amendola to MIN 42 for 35 yards (R.Blanton). PENALTY on SL-C.Harkey Illegal Block Above the Waist 10 yards enforced at SL 40.,30,7,2012 -20121216_MIN@STL,3,28,4,STL,MIN,1,10,70,(13:04) (Shotgun) S.Jackson left tackle to SL 43 for 13 yards (A.Jefferson).,7,30,2012 -20121216_MIN@STL,3,27,34,STL,MIN,1,10,57,(12:34) S.Jackson up the middle to SL 43 for no gain (C.Greenway).,7,30,2012 -20121216_MIN@STL,3,26,56,STL,MIN,2,10,57,(11:56) (Shotgun) S.Bradford pass incomplete short left to D.Amendola (K.Williams).,7,30,2012 -20121216_MIN@STL,3,26,52,STL,MIN,3,10,57,(11:52) (Shotgun) S.Bradford sacked at SL 35 for -8 yards (C.Greenway).,7,30,2012 -20121216_MIN@STL,3,26,26,STL,MIN,4,18,65,(11:26) J.Hekker punts 25 yards to MIN 40 Center-J.McQuaide out of bounds.,7,30,2012 -20121216_MIN@STL,3,26,12,MIN,STL,1,10,60,(11:12) A.Peterson right guard to MIN 42 for 2 yards (M.Brockers).,30,7,2012 -20121216_MIN@STL,3,25,27,MIN,STL,2,8,58,(10:27) (Shotgun) C.Ponder pass short left to S.Burton to MIN 47 for 5 yards (J.Jenkins).,30,7,2012 -20121216_MIN@STL,3,24,48,MIN,STL,3,3,53,(9:48) (Shotgun) C.Ponder pass short right to M.Jenkins ran ob at SL 42 for 11 yards (T.Johnson).,30,7,2012 -20121216_MIN@STL,3,24,8,MIN,STL,1,10,42,(9:08) A.Peterson right tackle pushed ob at SL 30 for 12 yards (C.Dahl).,30,7,2012 -20121216_MIN@STL,3,23,38,MIN,STL,1,10,30,(8:38) A.Peterson right tackle to SL 29 for 1 yard (W.Hayes).,30,7,2012 -20121216_MIN@STL,3,22,55,MIN,STL,2,9,29,(7:55) C.Ponder pass short right to J.Simpson to SL 16 for 13 yards (C.Finnegan).,30,7,2012 -20121216_MIN@STL,3,22,7,MIN,STL,1,10,16,(7:07) A.Peterson right tackle to SL 14 for 2 yards (Q.Mikell).,30,7,2012 -20121216_MIN@STL,3,21,27,MIN,STL,2,8,14,(6:27) C.Ponder sacked at SL 24 for -10 yards (Q.Mikell). FUMBLES (Q.Mikell) ball out of bounds at SL 35. Minnesota challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),30,7,2012 -20121216_MIN@STL,3,21,3,MIN,STL,3,29,35,(6:03) C.Ponder pass incomplete short right to S.Burton (T.Johnson).,30,7,2012 -20121216_MIN@STL,3,21,1,MIN,STL,4,29,35,(6:01) B.Walsh 53 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,30,7,2012 -20121216_MIN@STL,3,21,1,MIN,STL,,,35,B.Walsh kicks 72 yards from MIN 35 to SL -7. I.Pead Touchback.,33,7,2012 -20121216_MIN@STL,3,20,56,STL,MIN,1,10,80,(5:56) (Shotgun) S.Bradford pass short right to S.Jackson to SL 38 for 18 yards (C.Ballard).,7,33,2012 -20121216_MIN@STL,3,20,13,STL,MIN,1,10,62,(5:13) S.Bradford pass short left to S.Jackson to SL 46 for 8 yards (C.Greenway).,7,33,2012 -20121216_MIN@STL,3,19,45,STL,MIN,2,2,54,(4:45) D.Richardson up the middle to SL 49 for 3 yards (J.Sanford).,7,33,2012 -20121216_MIN@STL,3,19,14,STL,MIN,1,10,51,(4:14) (Shotgun) S.Bradford pass incomplete short right to D.Amendola (A.Winfield).,7,33,2012 -20121216_MIN@STL,3,19,8,STL,MIN,2,10,51,(4:08) (Shotgun) S.Bradford pass short right to A.Pettis to MIN 38 for 13 yards (A.Winfield).,7,33,2012 -20121216_MIN@STL,3,18,29,STL,MIN,1,10,38,(3:29) S.Jackson up the middle to MIN 30 for 8 yards (C.Greenway).,7,33,2012 -20121216_MIN@STL,3,18,0,STL,MIN,2,2,30,(3:00) S.Jackson right tackle to MIN 30 for no gain (H.Smith).,7,33,2012 -20121216_MIN@STL,3,17,19,STL,MIN,3,2,30,(2:19) (Shotgun) PENALTY on SL False Start 5 yards enforced at MIN 30 - No Play.,7,33,2012 -20121216_MIN@STL,3,16,50,STL,MIN,3,7,35,(1:50) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola. PENALTY on MIN-A.Jefferson Defensive Pass Interference 5 yards enforced at MIN 35 - No Play.,7,33,2012 -20121216_MIN@STL,3,16,47,STL,MIN,1,10,30,(1:47) S.Jackson up the middle to MIN 21 for 9 yards (J.Brinkley).,7,33,2012 -20121216_MIN@STL,3,16,4,STL,MIN,2,1,21,(1:04) S.Bradford pass incomplete short left to D.Amendola.,7,33,2012 -20121216_MIN@STL,3,15,56,STL,MIN,3,1,21,(:56) S.Jackson up the middle to MIN 21 for no gain (J.Allen).,7,33,2012 -20121216_MIN@STL,3,15,12,STL,MIN,4,1,21,(:12) (Shotgun) S.Bradford pass short left to A.Pettis pushed ob at MIN 16 for 5 yards (A.Jefferson).,7,33,2012 -20121216_MIN@STL,4,15,0,STL,MIN,1,10,16,(15:00) (Shotgun) S.Bradford pass short left to S.Jackson pushed ob at MIN 11 for 5 yards (C.Greenway).,7,33,2012 -20121216_MIN@STL,4,14,34,STL,MIN,2,5,11,(14:34) (Shotgun) S.Bradford pass incomplete short left to S.Jackson.,7,33,2012 -20121216_MIN@STL,4,14,29,STL,MIN,3,5,11,(14:29) (Shotgun) S.Bradford pass short middle to D.Amendola to MIN 6 for 5 yards (C.Greenway).,7,33,2012 -20121216_MIN@STL,4,13,45,STL,MIN,1,6,6,(13:45) S.Bradford pass short right to D.Amendola for 6 yards TOUCHDOWN.,7,33,2012 -20121216_MIN@STL,4,13,45,STL,MIN,,,6,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,7,33,2012 -20121216_MIN@STL,4,13,45,STL,MIN,,,6,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,14,33,2012 -20121216_MIN@STL,4,13,39,MIN,STL,1,10,80,(13:39) A.Peterson left end pushed ob at MIN 20 for no gain (C.Finnegan).,33,14,2012 -20121216_MIN@STL,4,13,8,MIN,STL,2,10,80,(13:08) A.Peterson left end pushed ob at MIN 37 for 17 yards (J.Jenkins).,33,14,2012 -20121216_MIN@STL,4,12,41,MIN,STL,1,10,63,(12:41) C.Ponder pass short right to J.Wright to MIN 48 for 11 yards (Q.Mikell).,33,14,2012 -20121216_MIN@STL,4,12,0,MIN,STL,1,10,52,(12:00) A.Peterson up the middle to MIN 49 for 1 yard (J.Laurinaitis).,33,14,2012 -20121216_MIN@STL,4,11,16,MIN,STL,2,9,51,(11:16) A.Peterson right tackle to MIN 49 for no gain (W.Hayes).,33,14,2012 -20121216_MIN@STL,4,10,33,MIN,STL,3,9,51,(10:33) (Shotgun) C.Ponder pass short left to S.Burton to SL 47 for 4 yards (J.Dunbar). PENALTY on MIN-P.Loadholt Unnecessary Roughness 15 yards enforced at SL 47.,33,14,2012 -20121216_MIN@STL,4,10,2,MIN,STL,4,20,62,(10:02) C.Kluwe punts 50 yards to SL 12 Center-C.Loeffler fair catch by D.Amendola.,33,14,2012 -20121216_MIN@STL,4,9,53,STL,MIN,1,10,88,(9:53) (Shotgun) S.Bradford pass short middle to A.Pettis to SL 20 for 8 yards (H.Smith).,14,33,2012 -20121216_MIN@STL,4,9,33,STL,MIN,2,2,80,(9:33) (Shotgun) S.Bradford pass deep middle to D.Amendola to SL 46 for 26 yards (H.Smith).,14,33,2012 -20121216_MIN@STL,4,9,3,STL,MIN,1,10,54,(9:03) (Shotgun) S.Bradford pass short middle to A.Pettis to MIN 48 for 6 yards (M.Sherels).,14,33,2012 -20121216_MIN@STL,4,8,29,STL,MIN,2,4,48,(8:29) (Shotgun) S.Bradford pass short right to D.Richardson ran ob at MIN 35 for 13 yards (J.Robinson).,14,33,2012 -20121216_MIN@STL,4,7,59,STL,MIN,1,10,35,(7:59) (Shotgun) S.Bradford pass incomplete deep right to A.Pettis. PENALTY on MIN-J.Robinson Defensive Pass Interference 29 yards enforced at MIN 35 - No Play.,14,33,2012 -20121216_MIN@STL,4,7,52,STL,MIN,1,6,6,(7:52) (Shotgun) S.Bradford pass short middle to L.Kendricks for 6 yards TOUCHDOWN.,14,33,2012 -20121216_MIN@STL,4,7,52,STL,MIN,,,6,TWO-POINT CONVERSION ATTEMPT. S.Bradford pass to D.Amendola is complete. ATTEMPT SUCCEEDS.,14,33,2012 -20121216_MIN@STL,4,7,52,STL,MIN,,,6,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,22,33,2012 -20121216_MIN@STL,4,7,48,MIN,STL,1,10,80,(7:48) A.Peterson right tackle to SL 28 for 52 yards (J.Jenkins).,33,22,2012 -20121216_MIN@STL,4,6,57,MIN,STL,1,10,28,(6:57) T.Gerhart left tackle to SL 31 for -3 yards (J.Dunbar).,33,22,2012 -20121216_MIN@STL,4,6,15,MIN,STL,2,13,31,(6:15) T.Gerhart up the middle to SL 33 for -2 yards (J.Dunbar).,33,22,2012 -20121216_MIN@STL,4,5,40,MIN,STL,3,15,33,(5:40) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,33,22,2012 -20121216_MIN@STL,4,5,36,MIN,STL,4,15,33,(5:36) B.Walsh 51 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,33,22,2012 -20121216_MIN@STL,4,5,36,MIN,STL,,,33,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,36,22,2012 -20121216_MIN@STL,4,5,31,STL,MIN,1,10,80,(5:31) (Shotgun) S.Bradford pass short right to S.Jackson to SL 26 for 6 yards (C.Greenway).,22,36,2012 -20121216_MIN@STL,4,5,5,STL,MIN,2,4,74,(5:05) (Shotgun) S.Bradford pass deep middle to A.Pettis to SL 49 for 23 yards (H.Smith).,22,36,2012 -20121216_MIN@STL,4,4,40,STL,MIN,1,10,51,(4:40) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,22,36,2012 -20121216_MIN@STL,4,4,37,STL,MIN,2,10,51,(4:37) (Shotgun) S.Bradford pass incomplete deep middle to D.Amendola.,22,36,2012 -20121216_MIN@STL,4,4,33,STL,MIN,3,10,51,(4:33) (Shotgun) S.Bradford pass incomplete deep middle to A.Pettis.,22,36,2012 -20121216_MIN@STL,4,4,29,STL,MIN,4,10,51,(4:29) (Shotgun) S.Bradford pass incomplete short right to D.Amendola (M.Sherels) [E.Henderson].,22,36,2012 -20121216_MIN@STL,4,4,24,MIN,STL,1,10,49,(4:24) T.Gerhart right tackle to SL 47 for 2 yards (K.Langford).,36,22,2012 -20121216_MIN@STL,4,3,43,MIN,STL,2,8,47,(3:43) T.Gerhart up the middle to SL 46 for 1 yard (J.Laurinaitis).,36,22,2012 -20121216_MIN@STL,4,3,36,MIN,STL,3,7,46,(3:36) T.Gerhart left tackle to SL 49 for -3 yards (C.Long).,36,22,2012 -20121216_MIN@STL,4,3,31,MIN,STL,4,10,49,(3:31) C.Kluwe punts 34 yards to SL 15 Center-C.Loeffler. D.Amendola to SL 9 for -6 yards. Pass back to J.Jenkins to SL 14 for 5 yards (M.Mitchell). FUMBLES (M.Mitchell) recovered by SL-M.Haggan at SL 12. M.Haggan to SL 12 for no gain (C.Loeffler).,36,22,2012 -20121216_MIN@STL,4,3,15,STL,MIN,1,10,88,(3:15) (Shotgun) S.Bradford pass deep right to B.Gibson pushed ob at SL 30 for 18 yards (J.Robinson).,22,36,2012 -20121216_MIN@STL,4,3,7,STL,MIN,1,10,70,(3:07) (Shotgun) S.Bradford pass short right to B.Quick to SL 38 for 8 yards (J.Robinson).,22,36,2012 -20121216_MIN@STL,4,2,42,STL,MIN,2,2,62,(2:42) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,22,36,2012 -20121216_MIN@STL,4,2,37,STL,MIN,3,2,62,(2:37) (Shotgun) S.Bradford pass short right to D.Amendola pushed ob at SL 44 for 6 yards (J.Robinson).,22,36,2012 -20121216_MIN@STL,4,2,33,STL,MIN,1,10,56,(2:33) (Shotgun) S.Bradford pass short middle to C.Harkey to MIN 35 for 21 yards (H.Smith).,22,36,2012 -20121216_MIN@STL,4,2,10,STL,MIN,1,10,35,(2:10) (Shotgun) S.Bradford pass short right to L.Kendricks pushed ob at MIN 19 for 16 yards (H.Smith).,22,36,2012 -20121216_MIN@STL,4,2,0,STL,MIN,1,10,19,(2:00) (Shotgun) PENALTY on SL-Sh.Smith False Start 5 yards enforced at MIN 19 - No Play.,22,36,2012 -20121216_MIN@STL,4,2,0,STL,MIN,1,15,24,(2:00) (Shotgun) S.Bradford pass incomplete short right to D.Richardson.,22,36,2012 -20121216_MIN@STL,4,1,55,STL,MIN,2,15,24,(1:55) (Shotgun) S.Bradford pass short right to B.Gibson to MIN 17 for 7 yards (E.Henderson).,22,36,2012 -20121216_MIN@STL,4,1,33,STL,MIN,3,8,17,(1:33) (Shotgun) S.Bradford pass short middle to D.Richardson to MIN 12 for 5 yards (C.Greenway).,22,36,2012 -20121216_MIN@STL,4,1,22,STL,MIN,4,3,12,(1:22) S.Bradford pass incomplete short right to B.Quick.,22,36,2012 -20121216_MIN@STL,4,1,14,MIN,STL,1,10,88,(1:14) C.Ponder kneels to MIN 11 for -1 yards.,36,22,2012 -20121216_MIN@STL,4,0,52,MIN,STL,2,11,89,(:52) C.Ponder kneels to MIN 10 for -1 yards.,36,22,2012 -20121216_MIN@STL,4,0,52,MIN,STL,,,89,                      ,36,22,2012 -20121216_DET@ARI,1,0,0,DET,ARI,,,89,J.Hanson kicks 65 yards from DET 35 to end zone Touchback.,0,0,2012 -20121216_DET@ARI,1,60,0,ARI,DET,1,10,80,(15:00) R.Lindley pass deep left to M.Floyd pushed ob at ARZ 45 for 25 yards (J.Green).,0,0,2012 -20121216_DET@ARI,1,59,30,ARI,DET,1,10,55,(14:30) (Shotgun) L.Stephens-Howling up the middle to DET 41 for 14 yards (N.Suh).,0,0,2012 -20121216_DET@ARI,1,58,49,ARI,DET,1,10,41,(13:49) C.Wells right end pushed ob at DET 40 for 1 yard (J.Lacey).,0,0,2012 -20121216_DET@ARI,1,58,19,ARI,DET,2,9,40,(13:19) R.Lindley pass short right to J.King to DET 33 for 7 yards (K.Vanden Bosch S.Tulloch).,0,0,2012 -20121216_DET@ARI,1,57,39,ARI,DET,3,2,33,(12:39) (Shotgun) R.Lindley pass short left to A.Roberts pushed ob at DET 26 for 7 yards (J.Green).,0,0,2012 -20121216_DET@ARI,1,57,17,ARI,DET,1,10,26,(12:17) W.Powell left tackle to DET 24 for 2 yards (D.Carey).,0,0,2012 -20121216_DET@ARI,1,56,44,ARI,DET,2,8,24,(11:44) (Shotgun) Direct snap to P.Peterson. P.Peterson left end to DET 16 for 8 yards (J.Durant). PENALTY on ARZ-J.King Offensive Holding 10 yards enforced at DET 24 - No Play.,0,0,2012 -20121216_DET@ARI,1,56,19,ARI,DET,2,18,34,(11:19) (Shotgun) PENALTY on ARZ-W.Powell False Start 5 yards enforced at DET 34 - No Play.,0,0,2012 -20121216_DET@ARI,1,56,2,ARI,DET,2,23,39,(11:02) (Shotgun) R.Lindley pass short right to L.Fitzgerald to DET 41 for -2 yards (J.Lacey). DET-J.Lacey was injured during the play.,0,0,2012 -20121216_DET@ARI,1,55,44,ARI,DET,3,25,41,(10:44) (Shotgun) R.Lindley pass short left to M.Floyd to DET 38 for 3 yards (J.Green; S.Tulloch).,0,0,2012 -20121216_DET@ARI,1,55,4,ARI,DET,4,22,38,(10:04) D.Zastudil punts 29 yards to DET 9 Center-M.Leach fair catch by S.Logan.,0,0,2012 -20121216_DET@ARI,1,54,56,DET,ARI,1,10,91,(9:56) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 16 for 7 yards (P.Lenon A.Wilson).,0,0,2012 -20121216_DET@ARI,1,54,22,DET,ARI,2,3,84,(9:22) M.Stafford pass incomplete deep right to C.Johnson (P.Peterson G.Toler).,0,0,2012 -20121216_DET@ARI,1,54,16,DET,ARI,3,3,84,(9:16) (Shotgun) M.Stafford pass incomplete short left to K.Durham (G.Toler).,0,0,2012 -20121216_DET@ARI,1,54,11,DET,ARI,4,3,84,(9:11) N.Harris punts 49 yards to ARZ 35 Center-D.Muhlbach. P.Peterson to ARZ 43 for 8 yards (D.Carey).,0,0,2012 -20121216_DET@ARI,1,53,59,ARI,DET,1,10,57,(8:59) R.Lindley pass short middle intended for J.King INTERCEPTED by D.Levy at DET 49. D.Levy to DET 48 for -1 yards (J.King). Penalty on ARZ-J.King Offensive Pass Interference declined.,0,0,2012 -20121216_DET@ARI,1,53,51,DET,ARI,1,10,52,(8:51) (Shotgun) M.Leshoure up the middle to 50 for 2 yards (C.Campbell).,0,0,2012 -20121216_DET@ARI,1,53,14,DET,ARI,2,8,50,(8:14) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass incomplete deep right [D.Washington].,0,0,2012 -20121216_DET@ARI,1,53,5,DET,ARI,3,8,50,(8:05) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler (W.Gay).,0,0,2012 -20121216_DET@ARI,1,52,58,DET,ARI,4,8,50,(7:58) N.Harris punts 41 yards to ARZ 9 Center-D.Muhlbach. P.Peterson to ARZ 16 for 7 yards (A.Palmer).,0,0,2012 -20121216_DET@ARI,1,52,48,ARI,DET,1,10,84,(7:48) C.Wells right tackle to ARZ 20 for 4 yards (S.Tulloch).,0,0,2012 -20121216_DET@ARI,1,52,10,ARI,DET,2,6,80,(7:10) L.Stephens-Howling up the middle to ARZ 22 for 2 yards (K.Vanden Bosch).,0,0,2012 -20121216_DET@ARI,1,51,32,ARI,DET,3,4,78,(6:32) (Shotgun) L.Stephens-Howling right end to ARZ 25 for 3 yards (D.Levy D.Carey).,0,0,2012 -20121216_DET@ARI,1,50,47,ARI,DET,4,1,75,(5:47) D.Zastudil punts 55 yards to DET 20 Center-M.Leach fair catch by S.Logan.,0,0,2012 -20121216_DET@ARI,1,50,38,DET,ARI,1,10,80,(5:38) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,0,0,2012 -20121216_DET@ARI,1,50,33,DET,ARI,2,10,80,(5:33) R.Reiff reported in as eligible. J.Bell right tackle to DET 20 for no gain (Q.Groves).,0,0,2012 -20121216_DET@ARI,1,49,50,DET,ARI,3,10,80,(4:50) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (K.Rhodes).,0,0,2012 -20121216_DET@ARI,1,49,44,DET,ARI,4,10,80,(4:44) N.Harris punts 50 yards to ARZ 30 Center-D.Muhlbach. P.Peterson ran ob at ARZ 38 for 8 yards.,0,0,2012 -20121216_DET@ARI,1,49,33,ARI,DET,1,10,62,(4:33) C.Wells up the middle to ARZ 34 for -4 yards (D.Carey).,0,0,2012 -20121216_DET@ARI,1,49,0,ARI,DET,2,14,66,(4:00) R.Lindley scrambles left end to ARZ 42 for 8 yards (D.Florence).,0,0,2012 -20121216_DET@ARI,1,48,13,ARI,DET,3,6,58,(3:13) (Shotgun) R.Lindley pass incomplete short left to A.Roberts [N.Suh].,0,0,2012 -20121216_DET@ARI,1,48,6,ARI,DET,4,6,58,(3:06) D.Zastudil punts 46 yards to DET 12 Center-M.Leach downed by ARZ-A.Sherman. PENALTY on ARZ-M.Adams Unnecessary Roughness 15 yards enforced at DET 12.,0,0,2012 -20121216_DET@ARI,1,47,55,DET,ARI,1,10,73,(2:55) (Shotgun) M.Stafford pass short right to C.Johnson to DET 34 for 7 yards (P.Peterson).,0,0,2012 -20121216_DET@ARI,1,47,19,DET,ARI,2,3,66,(2:19) R.Reiff reported in as eligible. M.Thomas right end to DET 39 for 5 yards (P.Lenon).,0,0,2012 -20121216_DET@ARI,1,46,39,DET,ARI,1,10,61,(1:39) (Shotgun) M.Stafford pass short left to C.Johnson to ARZ 49 for 12 yards (W.Gay).,0,0,2012 -20121216_DET@ARI,1,45,56,DET,ARI,1,10,49,(:56) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson [C.Campbell]. PENALTY on ARZ-D.Washington Illegal Contact 5 yards enforced at ARZ 49 - No Play.,0,0,2012 -20121216_DET@ARI,1,45,50,DET,ARI,1,10,44,(:50) (Shotgun) R.Reiff reported in as eligible. M.Leshoure up the middle to ARZ 41 for 3 yards (C.Campbell D.Carter).,0,0,2012 -20121216_DET@ARI,1,45,11,DET,ARI,2,7,41,(:11) (Shotgun) M.Leshoure right tackle to ARZ 43 for -2 yards (C.Campbell).,0,0,2012 -20121216_DET@ARI,2,45,0,DET,ARI,3,9,43,(15:00) (Shotgun) M.Stafford pass short left to K.Smith to ARZ 30 for 13 yards (R.Johnson).,0,0,2012 -20121216_DET@ARI,2,44,28,DET,ARI,1,10,30,(14:28) M.Leshoure left tackle to ARZ 24 for 6 yards (D.Dockett).,0,0,2012 -20121216_DET@ARI,2,43,50,DET,ARI,2,4,24,(13:50) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson [D.Dockett].,0,0,2012 -20121216_DET@ARI,2,43,43,DET,ARI,3,4,24,(13:43) (Shotgun) M.Stafford pass short left to W.Heller pushed ob at ARZ 12 for 12 yards (K.Rhodes).,0,0,2012 -20121216_DET@ARI,2,43,37,DET,ARI,1,10,12,(13:37) (Shotgun) M.Stafford pass short left to C.Johnson to ARZ 1 for 11 yards (R.Johnson).,0,0,2012 -20121216_DET@ARI,2,42,56,DET,ARI,1,1,1,(12:56) M.Leshoure left tackle for 1 yard TOUCHDOWN.,0,0,2012 -20121216_DET@ARI,2,42,56,DET,ARI,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121216_DET@ARI,2,42,56,DET,ARI,,,1,J.Hanson kicks 67 yards from DET 35 to ARZ -2. L.Stephens-Howling to ARZ 21 for 23 yards (J.Wendling).,7,0,2012 -20121216_DET@ARI,2,42,44,ARI,DET,1,10,79,(12:44) R.Lindley pass short right to L.Fitzgerald pushed ob at ARZ 29 for 8 yards (J.Green).,0,7,2012 -20121216_DET@ARI,2,42,21,ARI,DET,2,2,71,(12:21) C.Wells left tackle to ARZ 34 for 5 yards (S.Tulloch).,0,7,2012 -20121216_DET@ARI,2,41,41,ARI,DET,1,10,66,(11:41) C.Wells up the middle to ARZ 43 for 9 yards (L.Delmas).,0,7,2012 -20121216_DET@ARI,2,41,8,ARI,DET,2,1,57,(11:08) C.Wells up the middle to ARZ 46 for 3 yards (D.Levy).,0,7,2012 -20121216_DET@ARI,2,40,25,ARI,DET,1,10,54,(10:25) R.Lindley pass incomplete short left to M.Floyd (SamL.Hill).,0,7,2012 -20121216_DET@ARI,2,40,21,ARI,DET,2,10,64,(10:21) (Shotgun) R.Lindley FUMBLES (Aborted) at ARZ 46 and recovers at ARZ 36. R.Lindley to ARZ 36 for no gain (W.Young).,0,7,2012 -20121216_DET@ARI,2,39,48,ARI,DET,3,20,64,(9:48) R.Lindley pass incomplete short right to L.Fitzgerald [W.Young].,0,7,2012 -20121216_DET@ARI,2,39,42,ARI,DET,4,20,64,(9:42) D.Zastudil punts 47 yards to DET 17 Center-M.Leach. S.Logan MUFFS catch touched at DET 20 RECOVERED by ARZ-M.Adams at DET 5. M.Adams to DET 5 for no gain (J.Wendling). The Replay Assistant challenged the kick touched ruling and the play was Upheld.,0,7,2012 -20121216_DET@ARI,2,39,29,ARI,DET,1,5,5,(9:29) C.Wells up the middle for 5 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,0,7,2012 -20121216_DET@ARI,2,39,29,ARI,DET,,,5,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,0,7,2012 -20121216_DET@ARI,2,39,29,ARI,DET,,,5,J.Feely kicks 68 yards from ARZ 35 to DET -3. S.Logan to DET 26 for 29 yards (L.Byrd).,7,7,2012 -20121216_DET@ARI,2,39,9,DET,ARI,1,10,74,(9:09) R.Reiff reported in as eligible. M.Stafford pass short right to C.Johnson pushed ob at DET 35 for 9 yards (P.Peterson).,7,7,2012 -20121216_DET@ARI,2,38,38,DET,ARI,2,1,65,(8:38) M.Leshoure left tackle to DET 46 for 11 yards (A.Wilson; D.Washington).,7,7,2012 -20121216_DET@ARI,2,37,59,DET,ARI,1,10,54,(7:59) M.Leshoure up the middle to ARZ 47 for 7 yards (P.Lenon).,7,7,2012 -20121216_DET@ARI,2,37,12,DET,ARI,2,3,47,(7:12) R.Reiff reported in as eligible. M.Leshoure up the middle to ARZ 47 for no gain (D.Carter). PENALTY on DET-G.Cherilus Offensive Holding 10 yards enforced at ARZ 47 - No Play.,7,7,2012 -20121216_DET@ARI,2,36,46,DET,ARI,2,13,57,(6:46) M.Stafford pass incomplete short right to M.Leshoure.,7,7,2012 -20121216_DET@ARI,2,36,40,DET,ARI,3,13,57,(6:40) (Shotgun) M.Stafford pass incomplete short right to W.Heller.,7,7,2012 -20121216_DET@ARI,2,36,35,DET,ARI,4,13,57,(6:35) N.Harris punts 38 yards to ARZ 19 Center-D.Muhlbach fair catch by P.Peterson.,7,7,2012 -20121216_DET@ARI,2,36,25,ARI,DET,1,10,81,(6:25) R.Lindley pass incomplete deep left to A.Roberts. PENALTY on DET-J.Green Face Mask (15 Yards) 15 yards enforced at ARZ 19 - No Play.,7,7,2012 -20121216_DET@ARI,2,36,20,ARI,DET,1,10,66,(6:20) C.Wells up the middle to ARZ 32 for -2 yards (D.Carey).,7,7,2012 -20121216_DET@ARI,2,35,41,ARI,DET,2,12,68,(5:41) (Shotgun) R.Lindley pass short right to L.Fitzgerald to ARZ 35 for 3 yards (S.Tulloch).,7,7,2012 -20121216_DET@ARI,2,35,2,ARI,DET,3,9,65,(5:02) (Shotgun) R.Lindley pass short left to R.Housler to ARZ 42 for 7 yards (D.Levy).,7,7,2012 -20121216_DET@ARI,2,34,22,ARI,DET,4,2,58,(4:22) D.Zastudil punts 51 yards to DET 7 Center-M.Leach. S.Logan to DET 7 for no gain (J.Bethel).,7,7,2012 -20121216_DET@ARI,2,34,10,DET,ARI,1,10,93,(4:10) R.Reiff reported in as eligible. PENALTY on DET-G.Cherilus False Start 3 yards enforced at DET 7 - No Play.,7,7,2012 -20121216_DET@ARI,2,34,10,DET,ARI,1,13,96,(4:10) PENALTY on DET-R.Reiff False Start 2 yards enforced at DET 4 - No Play.,7,7,2012 -20121216_DET@ARI,2,34,10,DET,ARI,1,15,98,(4:10) M.Stafford pass deep right intended for C.Johnson INTERCEPTED by P.Peterson at DET 34. P.Peterson to DET 3 for 31 yards (C.Johnson).,7,7,2012 -20121216_DET@ARI,2,33,57,ARI,DET,1,3,3,(3:57) C.Wells right tackle to DET 1 for 2 yards (J.Green).,7,7,2012 -20121216_DET@ARI,2,33,20,ARI,DET,2,1,1,(3:20) C.Wells left tackle for 1 yard TOUCHDOWN.,7,7,2012 -20121216_DET@ARI,2,33,20,ARI,DET,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,7,7,2012 -20121216_DET@ARI,2,33,20,ARI,DET,,,1,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,14,7,2012 -20121216_DET@ARI,2,33,16,DET,ARI,1,10,80,(3:16) (Shotgun) J.Bell up the middle to DET 24 for 4 yards (R.Walker G.Toler).,7,14,2012 -20121216_DET@ARI,2,32,41,DET,ARI,2,6,76,(2:41) R.Reiff reported in as eligible. J.Bell left tackle to DET 23 for -1 yards (C.Campbell).,7,14,2012 -20121216_DET@ARI,2,32,0,DET,ARI,3,7,77,(2:00) (Shotgun) M.Stafford pass short middle to K.Durham to DET 37 for 14 yards (P.Peterson W.Gay) [R.Walker].,7,14,2012 -20121216_DET@ARI,2,31,24,DET,ARI,1,10,63,(1:24) J.Bell left tackle to DET 41 for 4 yards (R.Walker).,7,14,2012 -20121216_DET@ARI,2,31,18,DET,ARI,2,6,59,(1:18) (Shotgun) M.Stafford pass short left to T.Scheffler ran ob at DET 45 for 4 yards (G.Toler).,7,14,2012 -20121216_DET@ARI,2,31,15,DET,ARI,3,2,55,(1:15) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 48 for 3 yards (W.Gay).,7,14,2012 -20121216_DET@ARI,2,30,51,DET,ARI,1,10,52,(:51) (No Huddle Shotgun) M.Stafford pass incomplete deep left to K.Durham [P.Lenon].,7,14,2012 -20121216_DET@ARI,2,30,45,DET,ARI,2,10,52,(:45) (Shotgun) M.Stafford pass incomplete short left to T.Scheffler.,7,14,2012 -20121216_DET@ARI,2,30,45,DET,ARI,3,10,52,(:45) (Shotgun) PENALTY on DET-G.Cherilus False Start 5 yards enforced at DET 48 - No Play.,7,14,2012 -20121216_DET@ARI,2,30,41,DET,ARI,3,15,57,(:41) (Shotgun) M.Stafford pass short left intended for T.Scheffler INTERCEPTED by R.Johnson at ARZ 47. R.Johnson for 53 yards TOUCHDOWN.,7,14,2012 -20121216_DET@ARI,2,30,41,ARI,DET,,,57,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,14,7,2012 -20121216_DET@ARI,2,30,41,ARI,DET,,,57,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,21,7,2012 -20121216_DET@ARI,2,30,30,DET,ARI,1,10,80,(:30) (Shotgun) J.Bell up the middle to DET 31 for 11 yards (P.Lenon).,7,21,2012 -20121216_DET@ARI,3,30,0,ARI,DET,,,80,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,21,7,2012 -20121216_DET@ARI,3,30,0,DET,ARI,1,10,80,(15:00) M.Leshoure right tackle to DET 24 for 4 yards (R.Walker).,7,21,2012 -20121216_DET@ARI,3,29,22,DET,ARI,2,6,76,(14:22) (Shotgun) M.Stafford pass short left to C.Johnson to DET 29 for 5 yards (P.Peterson).,7,21,2012 -20121216_DET@ARI,3,28,40,DET,ARI,3,1,71,(13:40) M.Leshoure left tackle to DET 28 for -1 yards (C.Campbell).,7,21,2012 -20121216_DET@ARI,3,28,1,DET,ARI,4,2,72,(13:01) N.Harris punts 51 yards to ARZ 21 Center-D.Muhlbach. P.Peterson ran ob at ARZ 37 for 16 yards (J.Bell).,7,21,2012 -20121216_DET@ARI,3,27,47,ARI,DET,1,10,63,(12:47) C.Wells left tackle to ARZ 37 for no gain (SamL.Hill).,21,7,2012 -20121216_DET@ARI,3,27,12,ARI,DET,2,10,63,(12:12) R.Lindley pass incomplete short right to A.Roberts.,21,7,2012 -20121216_DET@ARI,3,27,8,ARI,DET,3,10,63,(12:08) (Shotgun) R.Lindley pass short right to A.Roberts to DET 49 for 14 yards (D.Carey).,21,7,2012 -20121216_DET@ARI,3,26,29,ARI,DET,1,10,49,(11:29) R.Lindley pass short right to L.Fitzgerald to DET 36 for 13 yards (C.Houston).,21,7,2012 -20121216_DET@ARI,3,25,53,ARI,DET,1,10,36,(10:53) L.Stephens-Howling up the middle to DET 39 for -3 yards (L.Delmas).,21,7,2012 -20121216_DET@ARI,3,25,16,ARI,DET,2,13,39,(10:16) R.Lindley pass incomplete short left to J.King [N.Suh].,21,7,2012 -20121216_DET@ARI,3,25,11,ARI,DET,3,13,39,(10:11) (Shotgun) R.Lindley pass short middle to R.Housler to DET 33 for 6 yards (D.Carey).,21,7,2012 -20121216_DET@ARI,3,24,24,ARI,DET,4,7,33,(9:24) J.Feely 51 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,21,7,2012 -20121216_DET@ARI,3,24,24,ARI,DET,,,33,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,24,7,2012 -20121216_DET@ARI,3,24,18,DET,ARI,1,10,80,(9:18) (Shotgun) M.Leshoure up the middle to DET 22 for 2 yards (C.Campbell).,7,24,2012 -20121216_DET@ARI,3,23,42,DET,ARI,2,8,78,(8:42) (Shotgun) M.Stafford pass incomplete short right to C.Johnson (C.Campbell).,7,24,2012 -20121216_DET@ARI,3,23,37,DET,ARI,3,8,78,(8:37) (Shotgun) M.Stafford pass short left to C.Johnson to DET 31 for 9 yards (W.Gay).,7,24,2012 -20121216_DET@ARI,3,23,0,DET,ARI,1,10,69,(8:00) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 45 for 14 yards (W.Gay).,7,24,2012 -20121216_DET@ARI,3,22,22,DET,ARI,1,10,55,(7:22) (Shotgun) M.Leshoure up the middle to DET 47 for 2 yards (N.Eason).,7,24,2012 -20121216_DET@ARI,3,21,41,DET,ARI,2,8,53,(6:41) R.Reiff reported in as eligible. M.Stafford pass short left to M.Leshoure to ARZ 46 for 7 yards (D.Washington).,7,24,2012 -20121216_DET@ARI,3,20,54,DET,ARI,3,1,46,(5:54) (Shotgun) M.Stafford pass short left to C.Johnson to ARZ 22 for 24 yards (G.Toler).,7,24,2012 -20121216_DET@ARI,3,20,7,DET,ARI,1,10,22,(5:07) (Shotgun) M.Leshoure left tackle to ARZ 23 for -1 yards (D.Washington).,7,24,2012 -20121216_DET@ARI,3,19,28,DET,ARI,2,11,23,(4:28) (Shotgun) M.Stafford pass incomplete short right to S.Logan.,7,24,2012 -20121216_DET@ARI,3,19,22,DET,ARI,3,11,23,(4:22) (Shotgun) M.Stafford pass incomplete short left to K.Smith.,7,24,2012 -20121216_DET@ARI,3,19,16,DET,ARI,4,11,23,(4:16) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,7,24,2012 -20121216_DET@ARI,3,19,16,DET,ARI,,,23,J.Hanson kicks 65 yards from DET 35 to ARZ 0. L.Stephens-Howling to ARZ 30 for 30 yards (D.Carey).,10,24,2012 -20121216_DET@ARI,3,19,1,ARI,DET,1,10,70,(4:01) C.Wells right tackle to ARZ 33 for 3 yards (C.Avril).,24,10,2012 -20121216_DET@ARI,3,18,21,ARI,DET,2,7,67,(3:21) (Shotgun) R.Lindley pass incomplete short right to M.Floyd.,24,10,2012 -20121216_DET@ARI,3,18,17,ARI,DET,3,7,67,(3:17) (Shotgun) R.Lindley pass incomplete deep right to L.Fitzgerald. PENALTY on DET-C.Houston Defensive Pass Interference 23 yards enforced at ARZ 33 - No Play.,24,10,2012 -20121216_DET@ARI,3,18,12,ARI,DET,1,10,44,(3:12) PENALTY on ARZ-D.Colledge False Start 5 yards enforced at DET 44 - No Play.,24,10,2012 -20121216_DET@ARI,3,18,12,ARI,DET,1,15,49,(3:12) (Shotgun) R.Lindley pass short right to M.Floyd to DET 40 for 9 yards (J.Green) [N.Suh].,24,10,2012 -20121216_DET@ARI,3,17,32,ARI,DET,2,6,40,(2:32) C.Wells left end to DET 37 for 3 yards (S.Tulloch; J.Durant).,24,10,2012 -20121216_DET@ARI,3,16,58,ARI,DET,3,3,37,(1:58) (Shotgun) R.Lindley pass short right to A.Roberts to DET 36 for 1 yard (S.Tulloch).,24,10,2012 -20121216_DET@ARI,3,16,13,ARI,DET,4,2,36,(1:13) D.Zastudil punts 28 yards to DET 8 Center-M.Leach fair catch by S.Logan.,24,10,2012 -20121216_DET@ARI,3,16,5,DET,ARI,1,10,92,(1:05) R.Reiff reported in as eligible. J.Bell up the middle to DET 9 for 1 yard (R.Lumpkin).,10,24,2012 -20121216_DET@ARI,3,15,27,DET,ARI,2,9,91,(:27) (Shotgun) M.Stafford pass incomplete short left to J.Bell.,10,24,2012 -20121216_DET@ARI,3,15,21,DET,ARI,3,9,91,(:21) (Shotgun) M.Stafford pass short left to W.Heller to DET 15 for 6 yards (D.Washington).,10,24,2012 -20121216_DET@ARI,4,15,0,DET,ARI,4,3,85,(15:00) N.Harris punts 49 yards to ARZ 36 Center-D.Muhlbach. P.Peterson ran ob at DET 49 for 15 yards (J.Wendling).,10,24,2012 -20121216_DET@ARI,4,14,45,ARI,DET,1,10,49,(14:45) R.Lindley sacked at ARZ 44 for -7 yards (N.Suh).,24,10,2012 -20121216_DET@ARI,4,14,11,ARI,DET,2,17,56,(14:11) (Shotgun) L.Stephens-Howling up the middle to ARZ 48 for 4 yards (W.Young).,24,10,2012 -20121216_DET@ARI,4,13,28,ARI,DET,3,13,52,(13:28) (Shotgun) R.Lindley pass short left to L.Stephens-Howling to DET 49 for 3 yards (J.Durant).,24,10,2012 -20121216_DET@ARI,4,12,43,ARI,DET,4,10,49,(12:43) D.Zastudil punts 49 yards to end zone Center-M.Leach Touchback.,24,10,2012 -20121216_DET@ARI,4,12,34,DET,ARI,1,10,80,(12:34) M.Stafford pass incomplete deep left to T.Scheffler [S.Acho].,10,24,2012 -20121216_DET@ARI,4,12,29,DET,ARI,2,10,80,(12:29) (Shotgun) M.Stafford pass short left to M.Leshoure to DET 17 for -3 yards (D.Washington).,10,24,2012 -20121216_DET@ARI,4,11,48,DET,ARI,3,13,83,(11:48) (Shotgun) M.Stafford pass incomplete deep left to B.Robiskie.,10,24,2012 -20121216_DET@ARI,4,11,42,DET,ARI,4,13,83,(11:42) N.Harris punts 49 yards to ARZ 34 Center-D.Muhlbach. A.Roberts to ARZ 34 for no gain (P.Lee). PENALTY on ARZ-Z.Nash Offensive Holding 10 yards enforced at ARZ 34. Penalty on ARZ-G.Toler Illegal Block Above the Waist declined.,10,24,2012 -20121216_DET@ARI,4,11,30,ARI,DET,1,10,76,(11:30) C.Wells left tackle to ARZ 25 for 1 yard (J.Green).,24,10,2012 -20121216_DET@ARI,4,10,51,ARI,DET,2,9,75,(10:51) C.Wells left end pushed ob at ARZ 32 for 7 yards (S.Tulloch).,24,10,2012 -20121216_DET@ARI,4,10,18,ARI,DET,3,2,68,(10:18) (Shotgun) W.Powell right end to ARZ 33 for 1 yard (L.Delmas).,24,10,2012 -20121216_DET@ARI,4,9,35,ARI,DET,4,1,67,(9:35) D.Zastudil punts 54 yards to DET 13 Center-M.Leach fair catch by S.Logan.,24,10,2012 -20121216_DET@ARI,4,9,26,DET,ARI,1,10,87,(9:26) (Shotgun) M.Stafford pass deep right to C.Johnson pushed ob at DET 43 for 30 yards (P.Peterson).,10,24,2012 -20121216_DET@ARI,4,8,58,DET,ARI,1,10,57,(8:58) (Shotgun) M.Stafford pass incomplete deep left.,10,24,2012 -20121216_DET@ARI,4,8,50,DET,ARI,2,10,57,(8:50) (Shotgun) M.Stafford pass short right to S.Logan pushed ob at ARZ 47 for 10 yards (K.Rhodes).,10,24,2012 -20121216_DET@ARI,4,8,18,DET,ARI,1,10,47,(8:18) (Shotgun) M.Stafford pass short right to C.Johnson to ARZ 41 for 6 yards (P.Peterson).,10,24,2012 -20121216_DET@ARI,4,7,36,DET,ARI,2,4,41,(7:36) (Shotgun) M.Stafford pass deep left to T.Scheffler pushed ob at ARZ 12 for 29 yards (R.Johnson).,10,24,2012 -20121216_DET@ARI,4,7,8,DET,ARI,1,10,12,(7:08) (Shotgun) M.Stafford pass incomplete short right.,10,24,2012 -20121216_DET@ARI,4,7,0,DET,ARI,2,10,12,(7:00) (Shotgun) M.Stafford pass short left to S.Logan to ARZ 4 for 8 yards (K.Rhodes).,10,24,2012 -20121216_DET@ARI,4,6,11,DET,ARI,3,2,4,(6:11) (Shotgun) R.Reiff reported in as eligible. PENALTY on DET-M.Stafford Delay of Game 5 yards enforced at ARZ 4 - No Play.,10,24,2012 -20121216_DET@ARI,4,6,9,DET,ARI,3,7,9,(6:09) (Shotgun) M.Stafford pass short middle to J.Bell to ARZ 4 for 5 yards (P.Lenon).,10,24,2012 -20121216_DET@ARI,4,5,24,DET,ARI,4,2,4,(5:24) (Shotgun) M.Stafford pass short left intended for K.Durham INTERCEPTED by G.Toler at ARZ -2. G.Toler for 102 yards TOUCHDOWN.,10,24,2012 -20121216_DET@ARI,4,5,24,ARI,DET,,,4,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,24,10,2012 -20121216_DET@ARI,4,5,24,ARI,DET,,,4,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,31,10,2012 -20121216_DET@ARI,4,5,7,DET,ARI,1,10,80,(5:07) (Shotgun) M.Stafford pass short right to B.Robiskie to DET 29 for 9 yards (S.Bradley).,10,31,2012 -20121216_DET@ARI,4,4,41,DET,ARI,2,1,71,(4:41) (No Huddle Shotgun) M.Stafford pass short right to C.Johnson to DET 37 for 8 yards (D.Washington).,10,31,2012 -20121216_DET@ARI,4,4,16,DET,ARI,1,10,63,(4:16) (No Huddle Shotgun) M.Stafford pass incomplete short left to J.Bell.,10,31,2012 -20121216_DET@ARI,4,4,10,DET,ARI,2,10,63,(4:10) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson [R.Walker].,10,31,2012 -20121216_DET@ARI,4,4,3,DET,ARI,3,10,63,(4:03) (Shotgun) M.Stafford pass incomplete short right to B.Robiskie.,10,31,2012 -20121216_DET@ARI,4,3,58,DET,ARI,4,10,63,(3:58) (Shotgun) M.Stafford sacked at DET 29 for -8 yards (A.Wilson).,10,31,2012 -20121216_DET@ARI,4,3,52,ARI,DET,1,10,29,(3:52) C.Wells right tackle to DET 31 for -2 yards (S.Tulloch; N.Suh).,31,10,2012 -20121216_DET@ARI,4,3,47,ARI,DET,2,12,31,(3:47) C.Wells right end for 31 yards TOUCHDOWN.,31,10,2012 -20121216_DET@ARI,4,3,47,ARI,DET,,,31,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,31,10,2012 -20121216_DET@ARI,4,3,47,ARI,DET,,,31,J.Feely kicks 68 yards from ARZ 35 to DET -3. S.Logan to DET 17 for 20 yards (A.Sherman).,38,10,2012 -20121216_DET@ARI,4,3,32,DET,ARI,1,10,83,(3:32) (Shotgun) M.Stafford sacked at DET 7 for -10 yards (C.Campbell).,10,38,2012 -20121216_DET@ARI,4,3,12,DET,ARI,2,20,93,(3:12) (No Huddle Shotgun) M.Stafford pass short right to J.Bell to DET 15 for 8 yards (P.Peterson).,10,38,2012 -20121216_DET@ARI,4,2,43,DET,ARI,3,12,85,(2:43) (No Huddle Shotgun) M.Stafford pass incomplete short left to K.Durham (G.Toler).,10,38,2012 -20121216_DET@ARI,4,2,36,DET,ARI,4,12,85,(2:36) N.Harris punts 49 yards to ARZ 36 Center-D.Muhlbach fair catch by P.Peterson.,10,38,2012 -20121216_DET@ARI,4,2,27,ARI,DET,1,10,64,(2:27) W.Powell up the middle to ARZ 37 for 1 yard (A.Palmer).,38,10,2012 -20121216_DET@ARI,4,2,0,ARI,DET,2,9,63,(2:00) W.Powell left tackle to ARZ 38 for 1 yard (J.Durant).,38,10,2012 -20121216_DET@ARI,4,1,12,ARI,DET,3,8,62,(1:12) W.Powell right tackle to ARZ 37 for -1 yards (S.Tulloch).,38,10,2012 -20121216_DET@ARI,4,0,23,ARI,DET,4,9,63,(:23) D.Zastudil punts 39 yards to DET 24 Center-M.Leach out of bounds.,38,10,2012 -20121216_DET@ARI,4,0,12,DET,ARI,1,10,76,(:12) J.Bell up the middle to DET 29 for 5 yards (C.Campbell; D.Washington).,10,38,2012 -20121216_DET@ARI,4,0,12,DET,ARI,,,76,                      ,10,38,2012 -20121216_SEA@BUF,1,0,0,BUF,SEA,,,76,R.Lindell kicks 65 yards from BUF 35 to SEA 0. L.Washington to SEA 24 for 24 yards (M.Easley C.McIntyre).,0,0,2012 -20121216_SEA@BUF,1,59,55,SEA,BUF,1,10,76,(14:55) R.Wilson sacked at SEA 17 for -7 yards (K.Sheppard).,0,0,2012 -20121216_SEA@BUF,1,59,28,SEA,BUF,2,17,83,(14:28) (Shotgun) M.Lynch up the middle to SEA 27 for 10 yards (G.Wilson J.Byrd).,0,0,2012 -20121216_SEA@BUF,1,58,48,SEA,BUF,3,7,73,(13:48) (Shotgun) R.Wilson pass deep left to S.Rice to SEA 44 for 17 yards (B.Scott). Caught near sideline at SEA 44.,0,0,2012 -20121216_SEA@BUF,1,58,30,SEA,BUF,1,10,56,(13:30) M.Lynch up the middle to SEA 46 for 2 yards (N.Bradham A.Carrington).,0,0,2012 -20121216_SEA@BUF,1,57,52,SEA,BUF,2,8,54,(12:52) R.Wilson scrambles right end pushed ob at SEA 47 for 1 yard (M.Dareus).,0,0,2012 -20121216_SEA@BUF,1,57,21,SEA,BUF,3,7,53,(12:21) (Shotgun) R.Wilson pass short middle to Z.Miller to BUF 45 for 8 yards (N.Barnett). Caught at BUF 48.,0,0,2012 -20121216_SEA@BUF,1,56,43,SEA,BUF,1,10,45,(11:43) R.Wilson pass short right to M.Robinson pushed ob at BUF 25 for 20 yards (N.Bradham). Caught in flat at BUF 45.,0,0,2012 -20121216_SEA@BUF,1,56,14,SEA,BUF,1,10,25,(11:14) M.Lynch left tackle to BUF 22 for 3 yards (S.Merriman).,0,0,2012 -20121216_SEA@BUF,1,55,34,SEA,BUF,2,7,22,(10:34) (Shotgun) R.Wilson pass short right to D.Baldwin pushed ob at BUF 14 for 8 yards (J.Rogers). Caught along sideline at BUF 14.,0,0,2012 -20121216_SEA@BUF,1,55,5,SEA,BUF,1,10,14,(10:05) (Shotgun) R.Wilson right guard for 14 yards TOUCHDOWN.,0,0,2012 -20121216_SEA@BUF,1,55,5,SEA,BUF,,,14,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121216_SEA@BUF,1,55,5,SEA,BUF,,,14,S.Hauschka kicks 73 yards from SEA 35 to BUF -8. B.Smith Touchback.,7,0,2012 -20121216_SEA@BUF,1,55,0,BUF,SEA,1,10,80,(10:00) (Shotgun) PENALTY on BUF-C.Glenn False Start 5 yards enforced at BUF 20 - No Play.,0,7,2012 -20121216_SEA@BUF,1,55,0,BUF,SEA,1,15,85,(10:00) (Shotgun) R.Fitzpatrick pass incomplete deep left to T.Graham. Overthrown receiver near sideline at SEA 40.,0,7,2012 -20121216_SEA@BUF,1,54,54,BUF,SEA,2,15,85,(9:54) (Shotgun) C.Spiller right guard to BUF 20 for 5 yards (K.Wright E.Thomas).,0,7,2012 -20121216_SEA@BUF,1,54,18,BUF,SEA,3,10,80,(9:18) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 11 for -9 yards (K.Wright). Screen pass caught at BUF 11.,0,7,2012 -20121216_SEA@BUF,1,53,41,BUF,SEA,4,19,89,(8:41) S.Powell punts 60 yards to SEA 29 Center-G.Sanborn. L.Washington to SEA 42 for 13 yards (C.McIntyre).,0,7,2012 -20121216_SEA@BUF,1,53,29,SEA,BUF,1,10,58,(8:29) R.Wilson pass short left to M.Lynch to BUF 44 for 14 yards (K.Sheppard M.Williams). Screen pass caught at SEA 38.,7,0,2012 -20121216_SEA@BUF,1,52,42,SEA,BUF,1,10,44,(7:42) (Shotgun) R.Wilson left tackle pushed ob at BUF 25 for 19 yards (G.Wilson).,7,0,2012 -20121216_SEA@BUF,1,52,8,SEA,BUF,1,10,25,(7:08) (Shotgun) R.Wilson sacked at BUF 27 for -2 yards (Sp.Johnson).,7,0,2012 -20121216_SEA@BUF,1,51,34,SEA,BUF,2,12,27,(6:34) (Shotgun) R.Turbin up the middle to BUF 25 for 2 yards (G.Wilson; Sp.Johnson).,7,0,2012 -20121216_SEA@BUF,1,50,54,SEA,BUF,3,10,25,(5:54) (Shotgun) R.Wilson scrambles left tackle for 25 yards TOUCHDOWN.,7,0,2012 -20121216_SEA@BUF,1,50,54,SEA,BUF,,,25,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,0,2012 -20121216_SEA@BUF,1,50,54,SEA,BUF,,,25,S.Hauschka kicks 57 yards from SEA 35 to BUF 8. M.Easley to BUF 28 for 20 yards (M.Robinson J.Lane).,14,0,2012 -20121216_SEA@BUF,1,50,39,BUF,SEA,1,10,72,(5:39) R.Fitzpatrick pass short left to S.Chandler to BUF 39 for 11 yards (L.Hill). Caught in flat at BUF 32.,0,14,2012 -20121216_SEA@BUF,1,49,52,BUF,SEA,1,10,61,(4:52) R.Fitzpatrick pass short right to St.Johnson pushed ob at BUF 46 for 7 yards (R.Sherman). Out-pattern caught at BUF 38.,0,14,2012 -20121216_SEA@BUF,1,49,17,BUF,SEA,2,3,54,(4:17) C.Spiller right guard to BUF 48 for 2 yards (B.Wagner C.Clemons).,0,14,2012 -20121216_SEA@BUF,1,48,34,BUF,SEA,3,1,52,(3:34) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to SEA 42 for 10 yards (B.Wagner). Caught at SEA 46.,0,14,2012 -20121216_SEA@BUF,1,47,53,BUF,SEA,1,10,42,(2:53) C.Spiller right guard to SEA 34 for 8 yards (R.Sherman).,0,14,2012 -20121216_SEA@BUF,1,47,5,BUF,SEA,2,2,34,(2:05) C.Spiller up the middle to SEA 31 for 3 yards (K.Chancellor).,0,14,2012 -20121216_SEA@BUF,1,46,24,BUF,SEA,1,10,31,(1:24) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to SEA 14 for 17 yards (R.Sherman). Slant pattern caught at SEA 28 going to middle.,0,14,2012 -20121216_SEA@BUF,1,45,40,BUF,SEA,1,10,14,(:40) C.Spiller right tackle for 14 yards TOUCHDOWN.,0,14,2012 -20121216_SEA@BUF,1,45,40,BUF,SEA,,,14,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,0,14,2012 -20121216_SEA@BUF,1,45,40,BUF,SEA,,,14,R.Lindell kicks 55 yards from BUF 35 to SEA 10. L.Washington to SEA 34 for 24 yards (R.Martin B.Smith).,7,14,2012 -20121216_SEA@BUF,1,45,26,SEA,BUF,1,10,66,(:26) M.Lynch up the middle to SEA 40 for 6 yards (R.Brooks J.Byrd).,14,7,2012 -20121216_SEA@BUF,2,45,0,SEA,BUF,2,4,60,(15:00) (Shotgun) M.Lynch left end to SEA 46 for 6 yards (K.Sheppard D.Searcy).,14,7,2012 -20121216_SEA@BUF,2,44,21,SEA,BUF,1,10,54,(14:21) R.Wilson pass deep left to G.Tate to BUF 10 for 44 yards (D.Searcy). Flea-flicker handoff to M.Lynch followed by pitch back to R.Wilson. Pass caught at BUF 13.,14,7,2012 -20121216_SEA@BUF,2,43,32,SEA,BUF,1,10,10,(13:32) M.Lynch right guard to BUF 9 for 1 yard (M.Williams N.Bradham).,14,7,2012 -20121216_SEA@BUF,2,42,55,SEA,BUF,2,9,9,(12:55) R.Wilson pass incomplete short right to G.Tate. Overthrown receiver along sideline at BUF 3.,14,7,2012 -20121216_SEA@BUF,2,42,50,SEA,BUF,3,9,9,(12:50) (Shotgun) R.Wilson pass short middle to S.Rice to BUF 1 for 8 yards (S.Gilmore). Caught at BUF 3 crossing from left.,14,7,2012 -20121216_SEA@BUF,2,42,6,SEA,BUF,4,1,1,(12:06) S.Hauschka 19 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,14,7,2012 -20121216_SEA@BUF,2,42,6,SEA,BUF,,,1,S.Hauschka kicks 73 yards from SEA 35 to BUF -8. B.Smith Touchback.,17,7,2012 -20121216_SEA@BUF,2,42,3,BUF,SEA,1,10,80,(12:03) (Shotgun) R.Fitzpatrick pass incomplete short right to T.Graham. Screen pass dropped at BUF 19.,7,17,2012 -20121216_SEA@BUF,2,41,59,BUF,SEA,2,10,80,(11:59) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 25 for 5 yards (J.Lane; B.Wagner). Dump pass caught at BUF 23.,7,17,2012 -20121216_SEA@BUF,2,41,25,BUF,SEA,3,5,75,(11:25) (Shotgun) R.Fitzpatrick pass incomplete short left to C.Spiller. Screen pass underthrown receiver at BUF 21.,7,17,2012 -20121216_SEA@BUF,2,41,22,BUF,SEA,4,5,75,(11:22) S.Powell punts 40 yards to SEA 35 Center-G.Sanborn. L.Washington to SEA 42 for 7 yards (R.Martin).,7,17,2012 -20121216_SEA@BUF,2,41,14,SEA,BUF,1,10,58,(11:14) (Shotgun) R.Wilson pass incomplete short right to J.Kearse [M.Williams]. Thrown under pressure receiver along sideline at SEA 43.,17,7,2012 -20121216_SEA@BUF,2,41,5,SEA,BUF,2,10,58,(11:05) (Shotgun) M.Lynch up the middle to BUF 4 for 54 yards (G.Wilson).,17,7,2012 -20121216_SEA@BUF,2,40,16,SEA,BUF,1,4,4,(10:16) R.Wilson pass short left to Z.Miller for 4 yards TOUCHDOWN. Caught 6 yds. into end zone crossing from middle.,17,7,2012 -20121216_SEA@BUF,2,40,16,SEA,BUF,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,17,7,2012 -20121216_SEA@BUF,2,40,16,SEA,BUF,,,4,S.Hauschka kicks 72 yards from SEA 35 to BUF -7. B.Smith Touchback.,24,7,2012 -20121216_SEA@BUF,2,40,10,BUF,SEA,1,10,80,(10:10) (Shotgun) C.Spiller left guard to BUF 16 for -4 yards (E.Thomas).,7,24,2012 -20121216_SEA@BUF,2,39,28,BUF,SEA,2,14,84,(9:28) R.Fitzpatrick pass incomplete short right to T.Graham (M.Smith). Receiver and coverage along sideline at BUF 27.,7,24,2012 -20121216_SEA@BUF,2,39,22,BUF,SEA,3,14,84,(9:22) (Shotgun) R.Fitzpatrick scrambles left guard to BUF 19 for 3 yards (B.Wagner).,7,24,2012 -20121216_SEA@BUF,2,38,44,BUF,SEA,4,11,81,(8:44) S.Powell punts 43 yards to SEA 38 Center-G.Sanborn fair catch by L.Washington.,7,24,2012 -20121216_SEA@BUF,2,38,37,SEA,BUF,1,10,62,(8:37) (Shotgun) M.Lynch right guard to SEA 49 for 11 yards (J.Byrd).,24,7,2012 -20121216_SEA@BUF,2,38,1,SEA,BUF,1,10,51,(8:01) R.Wilson right tackle to SEA 49 for no gain (B.Scott).,24,7,2012 -20121216_SEA@BUF,2,37,19,SEA,BUF,2,10,51,(7:19) (Shotgun) R.Wilson pass short right to S.Rice pushed ob at BUF 10 for 41 yards (A.Williams). Caught in flat at BUF 45.,24,7,2012 -20121216_SEA@BUF,2,36,40,SEA,BUF,1,10,10,(6:40) M.Lynch right tackle to BUF 11 for -1 yards (K.Moore; Sp.Johnson). PENALTY on SEA-A.McCoy Offensive Holding 10 yards enforced at BUF 10 - No Play.,24,7,2012 -20121216_SEA@BUF,2,36,17,SEA,BUF,1,20,20,(6:17) (Shotgun) M.Lynch up the middle to BUF 13 for 7 yards (K.Moore G.Wilson).,24,7,2012 -20121216_SEA@BUF,2,35,38,SEA,BUF,2,13,13,(5:38) (Shotgun) R.Wilson right tackle for 13 yards TOUCHDOWN.,24,7,2012 -20121216_SEA@BUF,2,35,38,SEA,BUF,,,13,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,24,7,2012 -20121216_SEA@BUF,2,35,38,SEA,BUF,,,13,S.Hauschka kicks 69 yards from SEA 35 to BUF -4. B.Smith to BUF 18 for 22 yards (M.Robinson J.Kearse).,31,7,2012 -20121216_SEA@BUF,2,35,27,BUF,SEA,1,10,82,(5:27) C.Spiller up the middle to BUF 24 for 6 yards (A.Branch E.Thomas).,7,31,2012 -20121216_SEA@BUF,2,34,45,BUF,SEA,2,4,76,(4:45) C.Spiller left guard pushed ob at BUF 42 for 18 yards (B.Wagner).,7,31,2012 -20121216_SEA@BUF,2,34,11,BUF,SEA,1,10,58,(4:11) R.Fitzpatrick scrambles left tackle to BUF 46 for 4 yards (A.Branch B.Wagner).,7,31,2012 -20121216_SEA@BUF,2,33,24,BUF,SEA,2,6,54,(3:24) (Shotgun) C.Spiller left tackle to BUF 47 for 1 yard (B.Maxwell).,7,31,2012 -20121216_SEA@BUF,2,32,39,BUF,SEA,3,5,53,(2:39) (Shotgun) R.Fitzpatrick pass short right to S.Chandler pushed ob at SEA 44 for 9 yards (E.Thomas). Caught near sideline at 50.,7,31,2012 -20121216_SEA@BUF,2,32,8,BUF,SEA,1,10,44,(2:08) (Shotgun) R.Fitzpatrick pass deep middle to S.Chandler to SEA 23 for 21 yards (K.Chancellor R.Sherman). Post-pattern caught at SEA 28.,7,31,2012 -20121216_SEA@BUF,2,32,0,BUF,SEA,1,10,23,(2:00) R.Fitzpatrick pass incomplete short middle to T.Graham. Thrown behind receiver at SEA 13 slanting from left.,7,31,2012 -20121216_SEA@BUF,2,31,56,BUF,SEA,2,10,23,(1:56) (Shotgun) C.Spiller left guard to SEA 20 for 3 yards (B.Mebane).,7,31,2012 -20121216_SEA@BUF,2,31,16,BUF,SEA,3,7,20,(1:16) (Shotgun) R.Fitzpatrick pass deep left to St.Johnson for 20 yards TOUCHDOWN. Caught in front corner of end zone.,7,31,2012 -20121216_SEA@BUF,2,31,16,BUF,SEA,,,20,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,7,31,2012 -20121216_SEA@BUF,2,31,16,BUF,SEA,,,20,R.Lindell kicks 61 yards from BUF 35 to SEA 4. L.Washington to SEA 22 for 18 yards (N.Bradham).,14,31,2012 -20121216_SEA@BUF,2,31,4,SEA,BUF,1,10,78,(1:04) (Shotgun) R.Wilson pass incomplete deep right to D.Baldwin. Overthrown receiver at 50 slanting to middle.,31,14,2012 -20121216_SEA@BUF,2,30,59,SEA,BUF,2,10,78,(:59) (Shotgun) R.Wilson pass incomplete short right to L.Washington. Screen pass dropped at SEA 17.,31,14,2012 -20121216_SEA@BUF,2,30,52,SEA,BUF,3,10,78,(:52) (Shotgun) L.Washington right guard to SEA 22 for no gain (J.Byrd).,31,14,2012 -20121216_SEA@BUF,2,30,49,SEA,BUF,4,10,78,(:49) J.Ryan punts 44 yards to BUF 34 Center-C.Gresham fair catch by J.Rogers.,31,14,2012 -20121216_SEA@BUF,2,30,41,BUF,SEA,1,10,66,(:41) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at SEA 42 for 24 yards (B.Maxwell). Caught near sideline at BUF 48.,14,31,2012 -20121216_SEA@BUF,2,30,34,BUF,SEA,1,10,42,(:34) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to SEA 36 for 6 yards (J.Lane). Caught in coverage at SEA 36.,14,31,2012 -20121216_SEA@BUF,2,30,24,BUF,SEA,2,4,36,(:24) (Shotgun) R.Fitzpatrick pass short middle to S.Chandler to SEA 23 for 13 yards (B.Wagner). Post-pattern caught at SEA 26.,14,31,2012 -20121216_SEA@BUF,2,30,10,BUF,SEA,1,10,23,(:10) (No Huddle) R.Fitzpatrick spiked the ball to stop the clock.,14,31,2012 -20121216_SEA@BUF,2,30,9,BUF,SEA,2,10,23,(:09) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver in back corner of end zone.,14,31,2012 -20121216_SEA@BUF,2,30,4,BUF,SEA,3,10,23,(:04) R.Lindell 41 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,14,31,2012 -20121216_SEA@BUF,3,30,0,SEA,BUF,,,23,S.Hauschka kicks 69 yards from SEA 35 to BUF -4. J.Rogers to BUF 24 for 28 yards (H.Farwell). FUMBLES (H.Farwell) RECOVERED by SEA-M.Smith at BUF 23. The Replay Assistant challenged the fumble ruling and the play was REVERSED. S.Hauschka kicks 69 yards from SEA 35 to BUF -4. J.Rogers to BUF 24 for 28 yards (H.Farwell).,31,17,2012 -20121216_SEA@BUF,3,29,57,BUF,SEA,1,10,76,(14:57) R.Fitzpatrick sacked at BUF 14 for -10 yards (C.Clemons).,17,31,2012 -20121216_SEA@BUF,3,29,19,BUF,SEA,2,20,86,(14:19) (Shotgun) R.Fitzpatrick pass incomplete deep left to C.Spiller. Overthrown receiver along sideline at SEA 45.,17,31,2012 -20121216_SEA@BUF,3,29,13,BUF,SEA,3,20,86,(14:13) (Shotgun) R.Fitzpatrick pass deep middle to St.Johnson to BUF 39 for 25 yards (R.Sherman). One-handed catch made at BUF 38.,17,31,2012 -20121216_SEA@BUF,3,28,33,BUF,SEA,1,10,61,(13:33) PENALTY on BUF-L.Smith False Start 5 yards enforced at BUF 39 - No Play.,17,31,2012 -20121216_SEA@BUF,3,28,8,BUF,SEA,1,15,66,(13:08) (Shotgun) R.Fitzpatrick pass short middle intended for S.Chandler INTERCEPTED by K.Wright at BUF 44. K.Wright pushed ob at BUF 20 for 24 yards (A.Levitre). Receiver underthrown.,17,31,2012 -20121216_SEA@BUF,3,27,58,SEA,BUF,1,10,20,(12:58) R.Wilson scrambles right tackle pushed ob at BUF 13 for 7 yards (K.Sheppard).,31,17,2012 -20121216_SEA@BUF,3,27,25,SEA,BUF,2,3,13,(12:25) M.Lynch left tackle for 13 yards TOUCHDOWN.,31,17,2012 -20121216_SEA@BUF,3,27,25,SEA,BUF,,,13,S.Hauschka extra point is Blocked (M.Dareus) Center-C.Gresham Holder-J.Ryan.,31,17,2012 -20121216_SEA@BUF,3,27,25,SEA,BUF,,,13,S.Hauschka kicks 70 yards from SEA 35 to BUF -5. B.Smith to BUF 34 for 39 yards (R.Parker).,37,17,2012 -20121216_SEA@BUF,3,27,12,BUF,SEA,1,10,66,(12:12) (Shotgun) PENALTY on BUF-C.Glenn False Start 5 yards enforced at BUF 34 - No Play.,17,37,2012 -20121216_SEA@BUF,3,27,12,BUF,SEA,1,15,71,(12:12) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 37 for 8 yards (B.Wagner). Caught at BUF 37.,17,37,2012 -20121216_SEA@BUF,3,26,29,BUF,SEA,2,7,63,(11:29) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 45 for 8 yards (L.Hill). Caught at BUF 43 crossing from right.,17,37,2012 -20121216_SEA@BUF,3,25,46,BUF,SEA,1,10,55,(10:46) R.Fitzpatrick right guard to BUF 46 for 1 yard (C.Clemons).,17,37,2012 -20121216_SEA@BUF,3,25,6,BUF,SEA,2,9,54,(10:06) C.Spiller left end to SEA 45 for 9 yards (J.Jones).,17,37,2012 -20121216_SEA@BUF,3,24,32,BUF,SEA,1,10,45,(9:32) C.Spiller up the middle to SEA 41 for 4 yards (B.Wagner C.McDonald).,17,37,2012 -20121216_SEA@BUF,3,23,50,BUF,SEA,2,6,41,(8:50) C.Spiller up the middle to SEA 39 for 2 yards (J.Jones K.Wright).,17,37,2012 -20121216_SEA@BUF,3,23,5,BUF,SEA,3,4,39,(8:05) (Shotgun) R.Fitzpatrick sacked at 50 for -11 yards (C.Clemons). FUMBLES (C.Clemons) RECOVERED by SEA-B.Irvin at BUF 45. B.Irvin to BUF 10 for 35 yards (T.Graham).,17,37,2012 -20121216_SEA@BUF,3,22,51,SEA,BUF,1,10,10,(7:51) R.Wilson pass incomplete short right to A.McCoy. Overthrown under pressure (M.Williams) receiver along sideline at BUF 5.,37,17,2012 -20121216_SEA@BUF,3,22,45,SEA,BUF,2,10,10,(7:45) R.Wilson pass incomplete short left to M.Robinson. Overthrown receiver in back corner of end zone.,37,17,2012 -20121216_SEA@BUF,3,22,37,SEA,BUF,3,10,10,(7:37) (Shotgun) PENALTY on SEA-S.Rice False Start 5 yards enforced at BUF 10 - No Play.,37,17,2012 -20121216_SEA@BUF,3,22,37,SEA,BUF,3,15,15,(7:37) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (J.Rogers). Receiver and breakup at BUF 4 crossing from right.,37,17,2012 -20121216_SEA@BUF,3,22,32,SEA,BUF,4,15,15,(7:32) S.Hauschka 33 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,37,17,2012 -20121216_SEA@BUF,3,22,32,SEA,BUF,,,15,S.Hauschka kicks 70 yards from SEA 35 to BUF -5. B.Smith to BUF 25 for 30 yards (R.Parker).,40,17,2012 -20121216_SEA@BUF,3,22,22,BUF,SEA,1,10,75,(7:22) R.Fitzpatrick pass incomplete deep left to St.Johnson. Overthrown receiver near sideline at SEA 30.,17,40,2012 -20121216_SEA@BUF,3,22,15,BUF,SEA,2,10,75,(7:15) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to BUF 31 for 6 yards (B.Wagner). Caught at BUF 31 crossing from left.,17,40,2012 -20121216_SEA@BUF,3,21,33,BUF,SEA,3,4,69,(6:33) (Shotgun) R.Fitzpatrick pass deep left intended for S.Chandler INTERCEPTED by E.Thomas [J.Jones] at SEA 43. E.Thomas for 57 yards TOUCHDOWN. Receiver underthrown E.Thomas went to left sideline before cutting back to middle. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,17,40,2012 -20121216_SEA@BUF,3,21,33,SEA,BUF,,,69,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,40,17,2012 -20121216_SEA@BUF,3,21,33,SEA,BUF,,,69,S.Hauschka kicks 72 yards from SEA 35 to BUF -7. J.Rogers Touchback.,47,17,2012 -20121216_SEA@BUF,3,21,13,BUF,SEA,1,10,80,(6:13) C.Spiller up the middle to BUF 24 for 4 yards (B.Wagner).,17,47,2012 -20121216_SEA@BUF,3,20,34,BUF,SEA,2,6,76,(5:34) R.Fitzpatrick pass short left to C.Spiller to BUF 25 for 1 yard (M.Smith). Screen pass caught at BUF 16.,17,47,2012 -20121216_SEA@BUF,3,19,48,BUF,SEA,3,5,75,(4:48) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to BUF 35 for 10 yards (E.Thomas). Caught at BUF 33 slanting from right.,17,47,2012 -20121216_SEA@BUF,3,19,8,BUF,SEA,1,10,65,(4:08) (Shotgun) R.Fitzpatrick pass incomplete short middle to T.Graham. Dropped receiver at BUF 46.,17,47,2012 -20121216_SEA@BUF,3,19,2,BUF,SEA,2,10,65,(4:02) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson. Thrown behind receiver along sideline at BUF 49.,17,47,2012 -20121216_SEA@BUF,3,18,59,BUF,SEA,3,10,65,(3:59) (Shotgun) R.Fitzpatrick pass incomplete deep right to B.Smith (B.Maxwell). Overthrown receiver at SEA 45.,17,47,2012 -20121216_SEA@BUF,3,18,54,BUF,SEA,4,10,65,(3:54) S.Powell punts 51 yards to SEA 14 Center-G.Sanborn. L.Washington for 86 yards TOUCHDOWN NULLIFIED by Penalty. Return credited to SEA 14 (spot of foul). Penalty on SEA-B.Maxwell Illegal Block Above the Waist declined. PENALTY on SEA-R.Parker Illegal Block Above the Waist 7 yards enforced at SEA 14.,17,47,2012 -20121216_SEA@BUF,3,18,34,SEA,BUF,1,10,93,(3:34) R.Turbin up the middle to SEA 12 for 5 yards (N.Barnett).,47,17,2012 -20121216_SEA@BUF,3,17,58,SEA,BUF,2,5,88,(2:58) R.Turbin right guard to SEA 13 for 1 yard (M.Dareus N.Barnett).,47,17,2012 -20121216_SEA@BUF,3,17,20,SEA,BUF,3,4,87,(2:20) (Shotgun) R.Wilson pass short right to Z.Miller pushed ob at SEA 27 for 14 yards (G.Wilson). Caught near sideline at SEA 19 crossing from middle.,47,17,2012 -20121216_SEA@BUF,3,16,42,SEA,BUF,1,10,73,(1:42) (Shotgun) R.Wilson pass short right to G.Tate to SEA 36 for 9 yards (A.Williams). Caught at SEA 34 slanting to middle.,47,17,2012 -20121216_SEA@BUF,3,15,59,SEA,BUF,2,1,64,(:59) R.Wilson pass incomplete short right. Thrown away under pressure (A.Carrington).,47,17,2012 -20121216_SEA@BUF,3,15,51,SEA,BUF,3,1,64,(:51) R.Turbin right guard to SEA 38 for 2 yards (M.Williams N.Barnett).,47,17,2012 -20121216_SEA@BUF,3,15,10,SEA,BUF,1,10,62,(:10) (Shotgun) R.Wilson scrambles right tackle pushed ob at BUF 49 for 13 yards (B.Scott).,47,17,2012 -20121216_SEA@BUF,4,15,0,SEA,BUF,1,10,49,(15:00) R.Wilson pass incomplete short left to G.Tate [N.Barnett]. Overthrown receiver near sideline at BUF 49. PENALTY on SEA-J.Moffitt Offensive Holding 10 yards enforced at BUF 49 - No Play.,47,17,2012 -20121216_SEA@BUF,4,14,51,SEA,BUF,1,20,59,(14:51) (Shotgun) L.Washington up the middle to SEA 46 for 5 yards (N.Barnett).,47,17,2012 -20121216_SEA@BUF,4,14,12,SEA,BUF,2,15,54,(14:12) (Shotgun) R.Wilson right guard to SEA 46 for no gain (K.Moore).,47,17,2012 -20121216_SEA@BUF,4,13,29,SEA,BUF,3,15,54,(13:29) (Shotgun) R.Wilson pass short left to G.Tate to BUF 43 for 11 yards (G.Wilson D.Searcy). Caught at BUF 49 slanting from middle.,47,17,2012 -20121216_SEA@BUF,4,12,49,SEA,BUF,4,4,43,(12:49) (Punt formation) M.Robinson left guard to BUF 14 for 29 yards (R.Brooks). Snap to C.Maragos inside handoff to M.Robinson.,47,17,2012 -20121216_SEA@BUF,4,12,3,SEA,BUF,1,10,14,(12:03) R.Turbin right tackle to BUF 13 for 1 yard (G.Wilson M.Williams).,47,17,2012 -20121216_SEA@BUF,4,11,20,SEA,BUF,2,9,13,(11:20) R.Wilson pass short middle to S.Rice to BUF 3 for 10 yards (G.Wilson). Caught at BUF 5 slanting from left.,47,17,2012 -20121216_SEA@BUF,4,10,38,SEA,BUF,1,3,3,(10:38) R.Wilson pass short right to R.Turbin to BUF 6 for -3 yards (J.Byrd). Caught in flat at BUF 6. Thrown under pressure (M.Williams N.Barnett).,47,17,2012 -20121216_SEA@BUF,4,10,4,SEA,BUF,2,6,6,(10:04) R.Turbin left guard to BUF 5 for 1 yard (G.Wilson).,47,17,2012 -20121216_SEA@BUF,4,0,**,SEA,BUF,3,5,5,*** play under review ***,47,17,2012 -20121216_SEA@BUF,4,9,20,SEA,BUF,4,5,5,(9:20) S.Hauschka 23 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,47,17,2012 -20121216_SEA@BUF,4,9,20,SEA,BUF,,,5,S.Hauschka kicks 73 yards from SEA 35 to BUF -8. B.Smith Touchback.,50,17,2012 -20121216_SEA@BUF,4,9,17,BUF,SEA,1,10,80,(9:17) (Shotgun) C.Spiller left tackle pushed ob at BUF 36 for 16 yards (B.Wagner).,17,50,2012 -20121216_SEA@BUF,4,8,45,BUF,SEA,1,10,64,(8:45) (Shotgun) R.Fitzpatrick pass short left to St.Johnson pushed ob at BUF 42 for 6 yards (C.Maragos). Caught at BUF 41 slanting to middle.,17,50,2012 -20121216_SEA@BUF,4,8,18,BUF,SEA,2,4,58,(8:18) (Shotgun) C.Spiller right guard to BUF 48 for 6 yards (H.Farwell).,17,50,2012 -20121216_SEA@BUF,4,7,35,BUF,SEA,1,10,52,(7:35) (Shotgun) R.Fitzpatrick pass short right to S.Chandler pushed ob at SEA 48 for 4 yards (C.Maragos). Caught along sideline at SEA 48.,17,50,2012 -20121216_SEA@BUF,4,7,0,BUF,SEA,2,6,48,(7:00) (Shotgun) T.Choice right guard to SEA 41 for 7 yards (G.Scruggs).,17,50,2012 -20121216_SEA@BUF,4,6,15,BUF,SEA,1,10,41,(6:15) (Shotgun) R.Fitzpatrick pass short left to T.Graham to SEA 26 for 15 yards (C.Maragos; J.Johnson). Caught in flat at SEA 33.,17,50,2012 -20121216_SEA@BUF,4,5,29,BUF,SEA,1,10,26,(5:29) (Shotgun) R.Fitzpatrick pass incomplete short middle to S.Chandler (G.Scruggs). Pass batted at line receiver at SEA 20.,17,50,2012 -20121216_SEA@BUF,4,5,25,BUF,SEA,2,10,26,(5:25) (Shotgun) R.Fitzpatrick pass incomplete deep left to St.Johnson (B.Maxwell). Receiver and coverage along sideline at SEA 5.,17,50,2012 -20121216_SEA@BUF,4,5,20,BUF,SEA,3,10,26,(5:20) PENALTY on BUF-C.Glenn False Start 5 yards enforced at SEA 26 - No Play.,17,50,2012 -20121216_SEA@BUF,4,5,20,BUF,SEA,3,15,31,(5:20) (Shotgun) R.Fitzpatrick sacked at SEA 37 for -6 yards (sack split by C.Clemons and J.Jones).,17,50,2012 -20121216_SEA@BUF,4,4,44,BUF,SEA,4,21,37,(4:44) (Shotgun) R.Fitzpatrick pass incomplete short right to R.Martin. Dropped receiver in flat at SEA 27.,17,50,2012 -20121216_SEA@BUF,4,4,37,SEA,BUF,1,10,63,(4:37) M.Flynn in at QB. R.Turbin up the middle to SEA 49 for 12 yards (A.Williams K.Sheppard).,50,17,2012 -20121216_SEA@BUF,4,3,51,SEA,BUF,1,10,51,(3:51) R.Turbin up the middle to 50 for 1 yard (Ky.Williams).,50,17,2012 -20121216_SEA@BUF,4,3,6,SEA,BUF,2,9,50,(3:06) R.Turbin left guard to BUF 45 for 5 yards (K.Sheppard).,50,17,2012 -20121216_SEA@BUF,4,2,24,SEA,BUF,3,4,45,(2:24) R.Turbin up the middle to BUF 44 for 1 yard (K.Sheppard N.Bradham).,50,17,2012 -20121216_SEA@BUF,4,2,0,SEA,BUF,4,3,44,(2:00) J.Ryan punts 35 yards to BUF 9 Center-C.Gresham fair catch by J.Rogers.,50,17,2012 -20121216_SEA@BUF,4,1,52,BUF,SEA,1,10,91,(1:52) T.Thigpen in at QB. (Shotgun) T.Thigpen pass short left to D.Dickerson to BUF 19 for 10 yards (J.Lane H.Farwell). Caught in flat at BUF 17.,17,50,2012 -20121216_SEA@BUF,4,1,15,BUF,SEA,1,10,81,(1:15) (Shotgun) C.Spiller up the middle to BUF 25 for 6 yards (B.Irvin).,17,50,2012 -20121216_SEA@BUF,4,0,35,BUF,SEA,2,4,75,(:35) (Shotgun) T.Thigpen pass short left to T.Graham ran ob at BUF 37 for 12 yards.,17,50,2012 -20121216_SEA@BUF,4,0,29,BUF,SEA,1,10,63,(:29) (Shotgun) T.Thigpen pass incomplete short right to B.Smith. Overthrown receiver along sideline at SEA 45. Pressure on QB: B.Irvin.,17,50,2012 -20121216_SEA@BUF,4,0,24,BUF,SEA,2,10,63,(:24) (Shotgun) T.Thigpen pass incomplete short right to D.Dickerson. Overthrown receiver in flat at BUF 38.,17,50,2012 -20121216_SEA@BUF,4,0,21,BUF,SEA,3,10,63,(:21) (Shotgun) T.Thigpen pass short left to R.Martin to BUF 45 for 8 yards (R.Sherman). Caught in flat at BUF 40.,17,50,2012 -20121216_SEA@BUF,4,0,21,BUF,SEA,,,63,                      ,17,50,2012 -20121216_CAR@SD,1,0,0,SD,CAR,,,63,N.Novak kicks 71 yards from SD 35 to CAR -6. M.Tolbert to CAR 20 for 26 yards (A.Gachkar C.Carr).,0,0,2012 -20121216_CAR@SD,1,59,54,CAR,SD,1,10,80,(14:54) Direct snap to D.Williams. D.Williams left end to CAR 22 for 2 yards (T.Spikes J.Johnson).,0,0,2012 -20121216_CAR@SD,1,59,19,CAR,SD,2,8,78,(14:19) (Shotgun) C.Newton pass short left to G.Barnidge pushed ob at CAR 42 for 20 yards (A.Cason).,0,0,2012 -20121216_CAR@SD,1,59,19,CAR,SD,1,10,58,(14:19) C.Newton pass incomplete short left to G.Olsen [C.Liuget].,0,0,2012 -20121216_CAR@SD,1,58,39,CAR,SD,2,10,58,(13:39) (Shotgun) C.Newton pass short left to S.Smith ran ob at CAR 49 for 7 yards. PENALTY on SD-A.Cason Personal Foul 15 yards enforced at CAR 49.,0,0,2012 -20121216_CAR@SD,1,58,27,CAR,SD,1,10,36,(13:27) D.Williams right end to SD 24 for 12 yards (C.Lynch E.Weddle).,0,0,2012 -20121216_CAR@SD,1,57,37,CAR,SD,1,10,24,(12:37) (Shotgun) C.Newton right tackle to SD 21 for 3 yards (K.Reyes).,0,0,2012 -20121216_CAR@SD,1,56,54,CAR,SD,2,7,21,(11:54) (Shotgun) C.Newton pass short right to D.Williams to SD 15 for 6 yards (E.Weddle).,0,0,2012 -20121216_CAR@SD,1,56,17,CAR,SD,3,1,15,(11:17) (Shotgun) M.Tolbert up the middle to SD 11 for 4 yards (C.Lynch).,0,0,2012 -20121216_CAR@SD,1,55,37,CAR,SD,1,10,11,(10:37) M.Tolbert up the middle to SD 5 for 6 yards (E.Weddle).,0,0,2012 -20121216_CAR@SD,1,54,55,CAR,SD,2,4,5,(9:55) (Shotgun) C.Newton left end to SD 2 for 3 yards (T.Spikes).,0,0,2012 -20121216_CAR@SD,1,54,11,CAR,SD,3,1,2,(9:11) C.Newton pass incomplete short right to M.Tolbert (S.Phillips).,0,0,2012 -20121216_CAR@SD,1,54,7,CAR,SD,4,1,2,(9:07) (Shotgun) C.Newton left guard to SD 1 for 1 yard (T.Spikes M.Ingram).,0,0,2012 -20121216_CAR@SD,1,53,33,CAR,SD,1,1,1,(8:33) M.Tolbert left guard for 1 yard TOUCHDOWN.,0,0,2012 -20121216_CAR@SD,1,53,33,CAR,SD,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20121216_CAR@SD,1,53,33,CAR,SD,,,1,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,7,0,2012 -20121216_CAR@SD,1,53,29,SD,CAR,1,10,80,(8:29) (Shotgun) P.Rivers pass short left to M.Spurlock to SD 28 for 8 yards (F.Kearse).,0,7,2012 -20121216_CAR@SD,1,52,53,SD,CAR,2,2,72,(7:53) (Shotgun) PENALTY on SD-K.Haslam False Start 5 yards enforced at SD 28 - No Play.,0,7,2012 -20121216_CAR@SD,1,52,41,SD,CAR,2,7,77,(7:41) (Shotgun) R.Mathews up the middle to SD 29 for 6 yards (T.Davis C.Munnerlyn).,0,7,2012 -20121216_CAR@SD,1,52,10,SD,CAR,3,1,71,(7:10) PENALTY on CAR-L.Kuechly Neutral Zone Infraction 6 yards enforced at SD 29 - No Play.,0,7,2012 -20121216_CAR@SD,1,52,1,SD,CAR,1,10,65,(7:01) (Shotgun) PENALTY on SD-R.Wells False Start 5 yards enforced at SD 35 - No Play.,0,7,2012 -20121216_CAR@SD,1,51,44,SD,CAR,1,15,70,(6:44) (Shotgun) P.Rivers sacked at SD 21 for -9 yards (Team). FUMBLES (Team) RECOVERED by CAR-N.Chandler at SD 21. N.Chandler to SD 21 for no gain (K.Haslam).,0,7,2012 -20121216_CAR@SD,1,51,30,CAR,SD,1,10,21,(6:30) C.Newton pass short left to G.Olsen pushed ob at SD 13 for 8 yards (E.Weddle).,7,0,2012 -20121216_CAR@SD,1,51,2,CAR,SD,2,2,13,(6:02) D.Williams up the middle to SD 10 for 3 yards (T.Spikes J.Johnson). PENALTY on SD-C.Liuget Face Mask (15 Yards) 5 yards enforced at SD 10.,7,0,2012 -20121216_CAR@SD,1,50,35,CAR,SD,1,5,5,(5:35) D.Williams left tackle to SD 1 for 4 yards (T.Spikes C.Lynch).,7,0,2012 -20121216_CAR@SD,1,49,57,CAR,SD,2,1,1,(4:57) M.Tolbert left tackle for 1 yard TOUCHDOWN.,7,0,2012 -20121216_CAR@SD,1,49,57,CAR,SD,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,0,2012 -20121216_CAR@SD,1,49,57,CAR,SD,,,1,G.Gano kicks 64 yards from CAR 35 to SD 1. M.Spurlock to SD 24 for 23 yards (J.Norman).,14,0,2012 -20121216_CAR@SD,1,49,47,SD,CAR,1,10,76,(4:47) R.Mathews left guard to SD 29 for 5 yards (D.Campbell).,0,14,2012 -20121216_CAR@SD,1,49,11,SD,CAR,2,5,71,(4:11) (Shotgun) P.Rivers pass incomplete short right to R.Mathews.,0,14,2012 -20121216_CAR@SD,1,49,6,SD,CAR,3,5,71,(4:06) (Shotgun) P.Rivers pass incomplete short right.,0,14,2012 -20121216_CAR@SD,1,48,58,SD,CAR,4,5,71,(3:58) M.Scifres punts 59 yards to CAR 12 Center-K.Nelson. J.Adams to CAR 28 for 16 yards (M.Ingram R.McMichael).,0,14,2012 -20121216_CAR@SD,1,48,45,CAR,SD,1,10,72,(3:45) Direct snap to D.Williams. S.Smith left end to CAR 43 for 15 yards (C.Lynch).,14,0,2012 -20121216_CAR@SD,1,48,6,CAR,SD,1,10,57,(3:06) PENALTY on SD-G.Guyton Defensive 12 On-field 5 yards enforced at CAR 43 - No Play.,14,0,2012 -20121216_CAR@SD,1,47,47,CAR,SD,1,5,52,(2:47) C.Newton pass incomplete short left to G.Olsen.,14,0,2012 -20121216_CAR@SD,1,47,44,CAR,SD,2,5,52,(2:44) (Shotgun) D.Williams left end to CAR 49 for 1 yard (B.Bird S.Phillips).,14,0,2012 -20121216_CAR@SD,1,47,0,CAR,SD,3,4,51,(2:00) (Shotgun) C.Newton pass short middle to G.Olsen to SD 45 for 6 yards (E.Weddle).,14,0,2012 -20121216_CAR@SD,1,46,14,CAR,SD,1,10,45,(1:14) (Shotgun) C.Newton pass incomplete short right to L.Murphy [K.Reyes].,14,0,2012 -20121216_CAR@SD,1,46,8,CAR,SD,2,10,45,(1:08) C.Newton pass short left to D.Williams for 45 yards TOUCHDOWN.,14,0,2012 -20121216_CAR@SD,1,46,8,CAR,SD,,,45,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,14,0,2012 -20121216_CAR@SD,1,46,8,CAR,SD,,,45,G.Gano kicks 73 yards from CAR 35 to SD -8. M.Spurlock ran ob at SD 18 for 26 yards (J.Thomas).,21,0,2012 -20121216_CAR@SD,1,45,54,SD,CAR,1,10,82,(:54) (Shotgun) P.Rivers up the middle to SD 20 for 2 yards (J.Phillips).,0,21,2012 -20121216_CAR@SD,1,45,12,SD,CAR,2,8,80,(:12) P.Rivers pass incomplete deep right to A.Gates (D.Campbell).,0,21,2012 -20121216_CAR@SD,1,45,7,SD,CAR,3,8,80,(:07) P.Rivers pass short middle to A.Gates to SD 28 for 8 yards (T.Davis L.Kuechly).,0,21,2012 -20121216_CAR@SD,2,45,0,SD,CAR,1,10,72,(15:00) R.Mathews left end to SD 30 for 2 yards (L.Kuechly).,0,21,2012 -20121216_CAR@SD,2,44,25,SD,CAR,2,8,70,(14:25) (Shotgun) R.Mathews up the middle to SD 39 for 9 yards (G.Hardy N.Chandler).,0,21,2012 -20121216_CAR@SD,2,43,42,SD,CAR,1,10,61,(13:42) (Shotgun) P.Rivers pass incomplete short left to D.Alexander.,0,21,2012 -20121216_CAR@SD,2,43,38,SD,CAR,2,10,61,(13:38) (Shotgun) P.Rivers pass incomplete deep left to D.Alexander.,0,21,2012 -20121216_CAR@SD,2,43,33,SD,CAR,3,10,61,(13:33) (Shotgun) PENALTY on CAR-C.Johnson Neutral Zone Infraction 5 yards enforced at SD 39 - No Play.,0,21,2012 -20121216_CAR@SD,2,43,33,SD,CAR,3,5,56,(13:33) (Shotgun) P.Rivers pass short left to M.Floyd pushed ob at CAR 47 for 9 yards (J.Thomas).,0,21,2012 -20121216_CAR@SD,2,42,54,SD,CAR,1,10,47,(12:54) (Shotgun) PENALTY on SD-D.Alexander False Start 5 yards enforced at CAR 47 - No Play.,0,21,2012 -20121216_CAR@SD,2,42,34,SD,CAR,1,15,52,(12:34) P.Rivers pass short right to R.Mathews to SD 44 for -4 yards (T.Davis).,0,21,2012 -20121216_CAR@SD,2,41,54,SD,CAR,2,19,56,(11:54) (Shotgun) P.Rivers pass short right to R.Mathews to SD 47 for 3 yards (T.Davis).,0,21,2012 -20121216_CAR@SD,2,41,11,SD,CAR,3,16,53,(11:11) (Shotgun) P.Rivers pass short right to R.Mathews to CAR 44 for 9 yards (J.Thomas L.Kuechly).,0,21,2012 -20121216_CAR@SD,2,40,31,SD,CAR,4,7,44,(10:31) M.Scifres punts 36 yards to CAR 8 Center-K.Nelson fair catch by J.Adams. PENALTY on CAR-A.Smith Illegal Use of Hands 4 yards enforced at CAR 8.,0,21,2012 -20121216_CAR@SD,2,40,23,CAR,SD,1,10,96,(10:23) (Shotgun) C.Newton pass incomplete short right to G.Olsen.,21,0,2012 -20121216_CAR@SD,2,40,18,CAR,SD,2,10,96,(10:18) M.Tolbert left guard to CAR 6 for 2 yards (C.Thomas). Penalty on CAR-A.Silatolu Offensive Holding declined.,21,0,2012 -20121216_CAR@SD,2,39,51,CAR,SD,3,8,94,(9:51) (Shotgun) C.Newton pass incomplete short right to A.Edwards. PENALTY on SD-Q.Jammer Defensive Holding 5 yards enforced at CAR 6 - No Play.,21,0,2012 -20121216_CAR@SD,2,39,44,CAR,SD,1,10,89,(9:44) (Shotgun) D.Williams up the middle to CAR 17 for 6 yards (B.Bird).,21,0,2012 -20121216_CAR@SD,2,38,59,CAR,SD,2,4,83,(8:59) (Shotgun) C.Newton pass short right to L.Murphy to CAR 28 for 11 yards (Q.Jammer).,21,0,2012 -20121216_CAR@SD,2,38,20,CAR,SD,1,10,72,(8:20) C.Newton sacked at CAR 22 for -6 yards (A.Gachkar).,21,0,2012 -20121216_CAR@SD,2,37,44,CAR,SD,2,16,78,(7:44) (Shotgun) C.Newton pass short middle to M.Tolbert to CAR 35 for 13 yards (M.Gilchrist).,21,0,2012 -20121216_CAR@SD,2,37,2,CAR,SD,3,3,65,(7:02) (Shotgun) C.Newton pass short right to S.Smith to CAR 42 for 7 yards (B.Bird Q.Jammer).,21,0,2012 -20121216_CAR@SD,2,36,16,CAR,SD,1,10,58,(6:16) C.Newton pass incomplete short left.,21,0,2012 -20121216_CAR@SD,2,36,13,CAR,SD,2,10,58,(6:13) D.Williams up the middle to CAR 49 for 7 yards (C.Liuget).,21,0,2012 -20121216_CAR@SD,2,35,34,CAR,SD,3,3,51,(5:34) C.Newton pass incomplete short middle to L.Murphy.,21,0,2012 -20121216_CAR@SD,2,35,30,CAR,SD,4,3,51,(5:30) B.Nortman punts 41 yards to SD 10 Center-J.Jansen fair catch by M.Spurlock. PENALTY on SD-L.English Roughing the Kicker 15 yards enforced at CAR 49 - No Play.,21,0,2012 -20121216_CAR@SD,2,35,23,CAR,SD,1,10,36,(5:23) C.Newton sacked at SD 44 for -8 yards (A.Garay).,21,0,2012 -20121216_CAR@SD,2,34,44,CAR,SD,2,18,44,(4:44) (Shotgun) C.Newton pass incomplete short left to S.Smith.,21,0,2012 -20121216_CAR@SD,2,34,39,CAR,SD,3,18,44,(4:39) (Shotgun) C.Newton pass incomplete deep left to L.Murphy (C.Lynch).,21,0,2012 -20121216_CAR@SD,2,34,32,CAR,SD,4,18,44,(4:32) B.Nortman punts 34 yards to SD 10 Center-J.Jansen fair catch by M.Spurlock.,21,0,2012 -20121216_CAR@SD,2,34,27,SD,CAR,1,10,90,(4:27) J.Battle left end to SD 13 for 3 yards (F.Kearse F.Alexander).,0,21,2012 -20121216_CAR@SD,2,33,53,SD,CAR,2,7,87,(3:53) P.Rivers pass short middle to J.Battle to SD 19 for 6 yards (J.Phillips L.Kuechly).,0,21,2012 -20121216_CAR@SD,2,33,15,SD,CAR,3,1,81,(3:15) J.Battle up the middle to SD 21 for 2 yards (L.Kuechly N.Chandler).,0,21,2012 -20121216_CAR@SD,2,32,44,SD,CAR,1,10,79,(2:44) (Shotgun) P.Rivers pass short middle to A.Gates to SD 27 for 6 yards (L.Kuechly).,0,21,2012 -20121216_CAR@SD,2,32,18,SD,CAR,2,4,73,(2:18) (Shotgun) P.Rivers sacked at SD 26 for -1 yards (C.Johnson).,0,21,2012 -20121216_CAR@SD,2,32,0,SD,CAR,3,5,74,(2:00) (Shotgun) P.Rivers to SD 23 for -3 yards (G.Hardy). FUMBLES (G.Hardy) and recovers at SD 23. P.Rivers to SD 29 for 6 yards (N.Chandler).,0,21,2012 -20121216_CAR@SD,2,31,48,SD,CAR,4,2,71,(1:48) M.Scifres punts 53 yards to CAR 18 Center-K.Nelson. J.Adams to CAR 34 for 16 yards (M.Ingram). PENALTY on CAR-N.Chandler Illegal Block Above the Waist 10 yards enforced at CAR 34.,0,21,2012 -20121216_CAR@SD,2,31,35,CAR,SD,1,10,76,(1:35) (Shotgun) C.Newton pass deep left to S.Smith to CAR 42 for 18 yards (C.Lynch).,21,0,2012 -20121216_CAR@SD,2,31,9,CAR,SD,1,10,58,(1:09) (Shotgun) C.Newton pass short left to G.Olsen to CAR 46 for 4 yards (E.Weddle).,21,0,2012 -20121216_CAR@SD,2,30,58,CAR,SD,2,6,54,(:58) (Shotgun) C.Newton pass incomplete short left to M.Tolbert.,21,0,2012 -20121216_CAR@SD,2,30,53,CAR,SD,3,6,54,(:53) (Shotgun) C.Newton pass short right to S.Smith pushed ob at SD 42 for 12 yards (Q.Jammer). The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,21,0,2012 -20121216_CAR@SD,2,30,45,CAR,SD,1,10,42,(:45) (Shotgun) C.Newton pass short left to M.Tolbert ran ob at SD 31 for 11 yards (A.Cason).,21,0,2012 -20121216_CAR@SD,2,30,39,CAR,SD,1,10,31,(:39) (Shotgun) C.Newton pass deep right to G.Olsen to SD 5 for 26 yards (E.Weddle).,21,0,2012 -20121216_CAR@SD,2,30,29,CAR,SD,1,5,5,(:29) (Shotgun) C.Newton pass incomplete short middle to S.Smith. PENALTY on CAR-L.Murphy Offensive Pass Interference 10 yards enforced at SD 5 - No Play.,21,0,2012 -20121216_CAR@SD,2,30,25,CAR,SD,1,15,15,(:25) (Shotgun) C.Newton pass incomplete short left to S.Smith.,21,0,2012 -20121216_CAR@SD,2,30,17,CAR,SD,2,15,15,(:17) C.Newton pass incomplete short right to L.Murphy (Q.Jammer).,21,0,2012 -20121216_CAR@SD,2,30,15,CAR,SD,3,15,15,(:15) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (S.Phillips).,21,0,2012 -20121216_CAR@SD,2,30,10,CAR,SD,4,15,15,(:10) G.Gano 33 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,21,0,2012 -20121216_CAR@SD,2,30,10,CAR,SD,,,15,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,24,0,2012 -20121216_CAR@SD,2,30,6,SD,CAR,1,10,80,(:06) P.Rivers kneels dead ball declared at SD 19 for -1 yards.,0,24,2012 -20121216_CAR@SD,3,30,0,CAR,SD,,,80,G.Gano kicks 73 yards from CAR 35 to SD -8. M.Spurlock Touchback.,24,0,2012 -20121216_CAR@SD,3,30,0,SD,CAR,1,10,80,(15:00) P.Rivers pass short right to J.Battle to SD 26 for 6 yards (C.Johnson J.Phillips).,0,24,2012 -20121216_CAR@SD,3,29,29,SD,CAR,2,4,74,(14:29) P.Rivers sacked at SD 20 for -6 yards (G.Hardy).,0,24,2012 -20121216_CAR@SD,3,28,55,SD,CAR,3,10,80,(13:55) (Shotgun) P.Rivers pass incomplete short left to A.Gates.,0,24,2012 -20121216_CAR@SD,3,28,49,SD,CAR,4,10,80,(13:49) M.Scifres punts 36 yards to CAR 44 Center-K.Nelson fair catch by J.Adams.,0,24,2012 -20121216_CAR@SD,3,28,40,CAR,SD,1,10,56,(13:40) (Shotgun) D.Williams up the middle to CAR 47 for 3 yards (A.Franklin C.Liuget).,24,0,2012 -20121216_CAR@SD,3,28,2,CAR,SD,2,7,53,(13:02) C.Newton pass short right to S.Smith ran ob at SD 44 for 9 yards (C.Liuget).,24,0,2012 -20121216_CAR@SD,3,27,28,CAR,SD,1,10,44,(12:28) C.Newton pass short right to G.Olsen ran ob at SD 32 for 12 yards (C.Lynch).,24,0,2012 -20121216_CAR@SD,3,26,55,CAR,SD,1,10,32,(11:55) D.Williams left end to SD 23 for 9 yards (A.Cason).,24,0,2012 -20121216_CAR@SD,3,26,9,CAR,SD,2,1,23,(11:09) (Shotgun) D.Williams right end to SD 14 for 9 yards (T.Spikes M.Gilchrist).,24,0,2012 -20121216_CAR@SD,3,25,25,CAR,SD,1,10,14,(10:25) D.Williams left end pushed ob at SD 5 for 9 yards (A.Cason).,24,0,2012 -20121216_CAR@SD,3,24,49,CAR,SD,2,1,5,(9:49) D.Williams left end to SD 4 for 1 yard (A.Gachkar C.Thomas).,24,0,2012 -20121216_CAR@SD,3,24,1,CAR,SD,1,4,4,(9:01) C.Newton pass short right to S.Smith for 4 yards TOUCHDOWN.,24,0,2012 -20121216_CAR@SD,3,24,1,CAR,SD,,,4,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,24,0,2012 -20121216_CAR@SD,3,24,1,CAR,SD,,,4,G.Gano kicks 74 yards from CAR 35 to SD -9. M.Spurlock Touchback.,31,0,2012 -20121216_CAR@SD,3,23,56,SD,CAR,1,10,80,(8:56) (Shotgun) C.Brinkley up the middle to SD 20 for no gain (S.Fua). PENALTY on SD-N.Hardwick Offensive Holding 10 yards enforced at SD 20 - No Play.,0,31,2012 -20121216_CAR@SD,3,23,34,SD,CAR,1,20,90,(8:34) (Shotgun) P.Rivers pass short left to C.Brinkley to SD 16 for 6 yards (T.Davis).,0,31,2012 -20121216_CAR@SD,3,22,57,SD,CAR,2,14,84,(7:57) (Shotgun) P.Rivers pass short right to C.Brinkley to SD 19 for 3 yards (L.Kuechly).,0,31,2012 -20121216_CAR@SD,3,22,16,SD,CAR,3,11,81,(7:16) (Shotgun) P.Rivers sacked at SD 19 for 0 yards (C.Johnson). FUMBLES (C.Johnson) recovered by SD-C.Brinkley at SD 19. C.Brinkley to SD 19 for no gain (T.Davis).,0,31,2012 -20121216_CAR@SD,3,21,33,SD,CAR,4,11,81,(6:33) M.Scifres punts 43 yards to CAR 38 Center-K.Nelson fair catch by J.Adams.,0,31,2012 -20121216_CAR@SD,3,21,30,CAR,SD,1,10,62,(6:30) D.Williams up the middle to CAR 41 for 3 yards (T.Spikes A.Garay).,31,0,2012 -20121216_CAR@SD,3,20,47,CAR,SD,2,7,59,(5:47) (Shotgun) M.Tolbert up the middle to CAR 45 for 4 yards (A.Garay A.Franklin).,31,0,2012 -20121216_CAR@SD,3,20,0,CAR,SD,3,3,55,(5:00) (Shotgun) C.Newton pass incomplete short left to S.Smith (B.Bird).,31,0,2012 -20121216_CAR@SD,3,19,57,CAR,SD,4,3,55,(4:57) B.Nortman punts 44 yards to SD 11 Center-J.Jansen. M.Spurlock pushed ob at SD 34 for 23 yards (J.Senn).,31,0,2012 -20121216_CAR@SD,3,19,45,SD,CAR,1,10,66,(4:45) (Shotgun) P.Rivers pass incomplete short left to D.Alexander.,0,31,2012 -20121216_CAR@SD,3,19,40,SD,CAR,2,10,66,(4:40) J.Battle right end to SD 31 for -3 yards (G.Hardy). SD-R.Wells was injured during the play.,0,31,2012 -20121216_CAR@SD,3,19,11,SD,CAR,3,13,69,(4:11) (Shotgun) P.Rivers pass short right to C.Brinkley to SD 36 for 5 yards (L.Kuechly C.Munnerlyn).,0,31,2012 -20121216_CAR@SD,3,18,33,SD,CAR,4,8,64,(3:33) M.Scifres punts 64 yards to end zone Center-K.Nelson Touchback.,0,31,2012 -20121216_CAR@SD,3,18,23,CAR,SD,1,10,80,(3:23) D.Williams left tackle to CAR 22 for 2 yards (G.Guyton).,31,0,2012 -20121216_CAR@SD,3,17,42,CAR,SD,2,8,78,(2:42) C.Newton pass short middle to L.Murphy to CAR 29 for 7 yards (J.Johnson).,31,0,2012 -20121216_CAR@SD,3,17,0,CAR,SD,3,1,71,(2:00) M.Tolbert left tackle to CAR 32 for 3 yards (S.Phillips).,31,0,2012 -20121216_CAR@SD,3,16,16,CAR,SD,1,10,68,(1:16) D.Williams left tackle to CAR 36 for 4 yards (T.Spikes A.Cason). FUMBLES (A.Cason) RECOVERED by SD-L.English at CAR 38. L.English to CAR 38 for no gain (B.Bell).,31,0,2012 -20121216_CAR@SD,3,16,9,SD,CAR,1,10,38,(1:09) P.Rivers pass short left to D.Rosario to CAR 29 for 9 yards (T.Davis).,0,31,2012 -20121216_CAR@SD,3,15,42,SD,CAR,2,1,29,(:42) (Shotgun) C.Brinkley up the middle to CAR 24 for 5 yards (T.Davis).,0,31,2012 -20121216_CAR@SD,3,15,15,SD,CAR,1,10,24,(:15) P.Rivers sacked at CAR 30 for -6 yards (G.Hardy).,0,31,2012 -20121216_CAR@SD,4,15,0,SD,CAR,2,16,30,(15:00) (Shotgun) P.Rivers pass short middle to A.Gates to CAR 22 for 8 yards (T.Davis).,0,31,2012 -20121216_CAR@SD,4,14,14,SD,CAR,3,8,22,(14:14) (Shotgun) P.Rivers pass incomplete short left to D.Alexander. PENALTY on CAR-J.Thomas Defensive Pass Interference 13 yards enforced at CAR 22 - No Play.,0,31,2012 -20121216_CAR@SD,4,14,8,SD,CAR,1,9,9,(14:08) (Shotgun) P.Rivers pass short left to A.Gates for 9 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,0,31,2012 -20121216_CAR@SD,4,14,8,SD,CAR,,,9,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,0,31,2012 -20121216_CAR@SD,4,14,8,SD,CAR,,,9,N.Novak kicks 73 yards from SD 35 to CAR -8. A.Smith to CAR 18 for 26 yards (B.Taylor).,7,31,2012 -20121216_CAR@SD,4,13,57,CAR,SD,1,10,82,(13:57) D.Williams left end to CAR 18 for no gain (C.Liuget E.Weddle).,31,7,2012 -20121216_CAR@SD,4,13,12,CAR,SD,2,10,86,(13:12) (Shotgun) C.Newton FUMBLES (Aborted) at CAR 14 and recovers at CAR 14. C.Newton to CAR 14 for no gain (M.Ingram).,31,7,2012 -20121216_CAR@SD,4,12,37,CAR,SD,3,14,86,(12:37) (Shotgun) M.Tolbert up the middle to CAR 20 for 6 yards (T.Spikes S.Phillips).,31,7,2012 -20121216_CAR@SD,4,12,6,CAR,SD,4,8,80,(12:06) B.Nortman punts 39 yards to SD 41 Center-J.Jansen fair catch by M.Spurlock. Penalty on SD-C.Lynch Defensive Offside declined.,31,7,2012 -20121216_CAR@SD,4,11,58,SD,CAR,1,10,59,(11:58) (Shotgun) C.Brinkley up the middle to SD 48 for 7 yards (A.Neblett T.Davis).,7,31,2012 -20121216_CAR@SD,4,11,32,SD,CAR,2,3,52,(11:32) (Shotgun) C.Brinkley up the middle to CAR 48 for 4 yards (C.Munnerlyn).,7,31,2012 -20121216_CAR@SD,4,11,1,SD,CAR,1,10,48,(11:01) (Shotgun) P.Rivers pass deep right to M.Floyd to CAR 18 for 30 yards (J.Dockery).,7,31,2012 -20121216_CAR@SD,4,10,25,SD,CAR,1,10,18,(10:25) (Shotgun) P.Rivers sacked at CAR 23 for -5 yards (M.Addison). FUMBLES (M.Addison) RECOVERED by CAR-F.Alexander at CAR 23. F.Alexander to CAR 23 for no gain (K.Haslam).,7,31,2012 -20121216_CAR@SD,4,10,18,CAR,SD,1,10,77,(10:18) D.Williams up the middle to CAR 31 for 8 yards (A.Gachkar).,31,7,2012 -20121216_CAR@SD,4,9,35,CAR,SD,2,2,69,(9:35) D.Williams up the middle to CAR 32 for 1 yard (A.Garay).,31,7,2012 -20121216_CAR@SD,4,8,50,CAR,SD,3,1,68,(8:50) D.Williams up the middle to CAR 33 for 1 yard (C.Thomas L.English).,31,7,2012 -20121216_CAR@SD,4,7,57,CAR,SD,1,10,67,(7:57) D.Williams up the middle to CAR 33 for no gain (T.Spikes).,31,7,2012 -20121216_CAR@SD,4,7,12,CAR,SD,2,10,67,(7:12) M.Tolbert right guard to CAR 46 for 13 yards (B.Taylor).,31,7,2012 -20121216_CAR@SD,4,6,26,CAR,SD,1,10,54,(6:26) (Shotgun) D.Williams up the middle to CAR 47 for 1 yard (A.Garay).,31,7,2012 -20121216_CAR@SD,4,5,41,CAR,SD,2,9,53,(5:41) C.Newton pass short right to B.Hartsock to SD 48 for 5 yards (J.Johnson).,31,7,2012 -20121216_CAR@SD,4,4,54,CAR,SD,3,4,48,(4:54) D.Williams right end to SD 41 for 7 yards (E.Weddle).,31,7,2012 -20121216_CAR@SD,4,4,8,CAR,SD,1,10,41,(4:08) A.Smith up the middle to SD 43 for -2 yards (C.Liuget J.Johnson).,31,7,2012 -20121216_CAR@SD,4,3,22,CAR,SD,2,12,43,(3:22) A.Smith left end to SD 40 for 3 yards (K.Reyes A.Gachkar).,31,7,2012 -20121216_CAR@SD,4,2,39,CAR,SD,3,9,40,(2:39) A.Smith left end to SD 41 for -1 yards (K.Reyes E.Weddle).,31,7,2012 -20121216_CAR@SD,4,2,0,CAR,SD,4,10,41,(2:00) B.Nortman punts 41 yards to end zone Center-J.Jansen Touchback.,31,7,2012 -20121216_CAR@SD,4,1,52,SD,CAR,1,10,80,(1:52) (Shotgun) C.Brinkley up the middle to SD 31 for 11 yards (D.Campbell).,7,31,2012 -20121216_CAR@SD,4,1,17,SD,CAR,1,10,69,(1:17) (Shotgun) C.Brinkley up the middle to SD 44 for 13 yards (J.Dockery C.Godfrey).,7,31,2012 -20121216_CAR@SD,4,0,39,SD,CAR,1,10,56,(:39) (Shotgun) C.Brinkley right end to SD 46 for 2 yards (J.Dockery).,7,31,2012 -20121216_CAR@SD,4,0,39,SD,CAR,,,56,                      ,7,31,2012 -20121216_PIT@DAL,1,0,0,DAL,PIT,,,56,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone.,0,0,2012 -20121216_PIT@DAL,1,60,0,PIT,DAL,1,10,80,(15:00) J.Dwyer left tackle to PIT 26 for 6 yards (B.Poppinga).,0,0,2012 -20121216_PIT@DAL,1,59,16,PIT,DAL,2,4,74,"(14:16) (Shotgun) B.Roethlisberger pass incomplete deep middle to M.Wallace (B.Carr). Pass incomplete on a ""Fly"" pattern.",0,0,2012 -20121216_PIT@DAL,1,59,10,PIT,DAL,3,4,74,"(14:10) (Shotgun) B.Roethlisberger pass short left to A.Brown pushed ob at PIT 33 for 7 yards (M.Jenkins). Pass complete on an ""Out"" route.",0,0,2012 -20121216_PIT@DAL,1,58,37,PIT,DAL,1,10,67,(13:37) B.Roethlisberger pass incomplete short right to A.Brown (B.Carr).,0,0,2012 -20121216_PIT@DAL,1,58,29,PIT,DAL,2,10,67,(13:29) (Shotgun) B.Roethlisberger pass deep middle to E.Sanders to DAL 41 for 26 yards (E.Frampton). FUMBLES (E.Frampton) RECOVERED by DAL-A.Albright at DAL 43. A.Albright to DAL 46 for 3 yards (W.Johnson). The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass incomplete deep middle to E.Sanders (E.Frampton).,0,0,2012 -20121216_PIT@DAL,1,58,25,PIT,DAL,3,10,67,(13:25) (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace (V.Butler). Pass thrown right sideline.,0,0,2012 -20121216_PIT@DAL,1,58,16,PIT,DAL,4,10,67,(13:16) D.Butler punts 54 yards to DAL 13 Center-G.Warren. D.Harris to DAL 12 for -1 yards (R.Mundy). PIT-D.Van Dyke was injured during the play.,0,0,2012 -20121216_PIT@DAL,1,58,7,DAL,PIT,1,10,88,"(13:07) T.Romo pass deep left to M.Austin to DAL 29 for 17 yards (R.Clark). Pass complete on an ""Up and Out"" pattern.",0,0,2012 -20121216_PIT@DAL,1,57,40,DAL,PIT,1,10,71,(12:40) D.Murray right tackle to DAL 32 for 3 yards (L.Woodley).,0,0,2012 -20121216_PIT@DAL,1,57,3,DAL,PIT,2,7,68,(12:03) (Shotgun) T.Romo pass short right to C.Beasley ran ob at DAL 38 for 6 yards (L.Woodley). Pass complete sideline.,0,0,2012 -20121216_PIT@DAL,1,56,31,DAL,PIT,3,1,62,(11:31) D.Murray left tackle to DAL 46 for 8 yards (R.Clark; L.Foote).,0,0,2012 -20121216_PIT@DAL,1,55,48,DAL,PIT,1,10,54,"(10:48) (Shotgun) T.Romo pass short right to K.Ogletree to PIT 45 for 9 yards (T.Polamalu). Pass complete on a ""curl"" route.",0,0,2012 -20121216_PIT@DAL,1,55,20,DAL,PIT,2,1,45,(10:20) D.Murray up the middle to PIT 34 for 11 yards (T.Polamalu).,0,0,2012 -20121216_PIT@DAL,1,54,38,DAL,PIT,1,10,34,"(9:38) T.Romo pass short right to M.Austin pushed ob at PIT 23 for 11 yards (J.Victorian). Pass complete on ""sideline"" route. Injury update: Pittsbugh's Van Dyke has a right shoulder injury his return is doubtful. Pittsburgh challenged the pass completion ruling and the play was REVERSED. T.Romo pass incomplete short right to M.Austin.",0,0,2012 -20121216_PIT@DAL,1,54,34,DAL,PIT,2,10,34,(9:34) (Shotgun) F.Jones right guard to PIT 32 for 2 yards (E.Hood).,0,0,2012 -20121216_PIT@DAL,1,53,52,DAL,PIT,3,8,32,"(8:52) (Shotgun) T.Romo pass incomplete short right to D.Bryant. Pass incomplete at the Pittsburgh 20 on a ""button hook."" Lewis closest defender.",0,0,2012 -20121216_PIT@DAL,1,53,41,DAL,PIT,4,8,32,(8:41) (Field Goal formation) D.Bailey 50 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121216_PIT@DAL,1,53,41,DAL,PIT,,,32,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. DAL-E.Sims was injured during the play. Ball was kicked out of the end zone.,3,0,2012 -20121216_PIT@DAL,1,53,36,PIT,DAL,1,10,80,"(8:36) (Shotgun) B.Roethlisberger pass short right to H.Miller to PIT 31 for 11 yards (M.Jenkins; D.Connor). Pass complete on a ""curl"" route.",0,3,2012 -20121216_PIT@DAL,1,52,58,PIT,DAL,1,10,69,(7:58) J.Dwyer left tackle to PIT 35 for 4 yards (D.McCray; S.Lissemore).,0,3,2012 -20121216_PIT@DAL,1,52,20,PIT,DAL,2,6,65,(7:20) (Shotgun) J.Dwyer right tackle to PIT 37 for 2 yards (S.Lissemore; G.Sensabaugh).,0,3,2012 -20121216_PIT@DAL,1,51,37,PIT,DAL,3,4,63,"(6:37) (Shotgun) B.Roethlisberger pass short middle to A.Brown to DAL 48 for 15 yards (S.Moore). Pass complete on a ""comeback"" route; Roethlisberger forced out of the pocket.",0,3,2012 -20121216_PIT@DAL,1,50,51,PIT,DAL,1,10,48,"(5:51) (Shotgun) B.Roethlisberger pass short right to A.Brown to DAL 44 for 4 yards (M.Jenkins). Pass complete on a ""bubble screen.""",0,3,2012 -20121216_PIT@DAL,1,50,10,PIT,DAL,2,6,44,"(5:10) B.Roethlisberger pass incomplete deep right to M.Wallace. Pass incomplete on a ""Flag"" pattern; Carr closest defender.",0,3,2012 -20121216_PIT@DAL,1,50,1,PIT,DAL,3,6,44,(5:01) (Shotgun) B.Roethlisberger pass short right to M.Wallace ran ob at DAL 32 for 12 yards. Pass complete sideline.Injury update:Steelers' Van Dyke with right shoulder injury has been ruled out for the game. Dallas challenged the pass completion ruling and the play was REVERSED. (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace.,0,3,2012 -20121216_PIT@DAL,1,49,57,PIT,DAL,4,6,44,(4:57) (Punt formation) D.Butler punts 44 yards to end zone Center-G.Warren Touchback.,0,3,2012 -20121216_PIT@DAL,1,49,47,DAL,PIT,1,10,80,(4:47) D.Murray right tackle to DAL 26 for 6 yards (E.Hood R.Clark).,3,0,2012 -20121216_PIT@DAL,1,49,7,DAL,PIT,2,4,74,"(4:07) (Shotgun) T.Romo pass short left to M.Austin to DAL 34 for 8 yards (T.Polamalu). Pass complete on a ""curl"" route.",3,0,2012 -20121216_PIT@DAL,1,48,26,DAL,PIT,1,10,66,"(3:26) T.Romo pass deep right to M.Austin to PIT 47 for 19 yards (J.Victorian). Pass complete on a ""curl"" route.",3,0,2012 -20121216_PIT@DAL,1,47,37,DAL,PIT,1,10,47,"(2:37) (Shotgun) T.Romo pass short right to M.Austin to PIT 35 for 12 yards (J.Victorian). Pass complete on a ""comeback"" route.",3,0,2012 -20121216_PIT@DAL,1,46,52,DAL,PIT,1,10,35,(1:52) D.Murray left tackle to PIT 7 for 28 yards (E.Hood). Murray bounced outside after the initial hit.,3,0,2012 -20121216_PIT@DAL,1,45,55,DAL,PIT,1,7,7,(:55) T.Romo pass incomplete short left to L.Vickers. Pass incomplete in the flat; Harrison closest defender.,3,0,2012 -20121216_PIT@DAL,1,45,51,DAL,PIT,2,7,7,(:51) D.Murray up the middle to PIT 7 for no gain (J.Harrison). FUMBLES (J.Harrison) RECOVERED by PIT-B.Keisel at PIT 8. B.Keisel to PIT 8 for no gain (T.Smith).,3,0,2012 -20121216_PIT@DAL,1,45,43,PIT,DAL,1,10,92,(:43) J.Dwyer up the middle to PIT 8 for no gain (J.Hatcher; B.Schaefering). Injury update: Cowboys Sims has suffered a blow to the head; his return is questionable.,0,3,2012 -20121216_PIT@DAL,2,45,0,PIT,DAL,2,10,92,(15:00) (Shotgun) C.Rainey right end to PIT 13 for 5 yards (D.Connor; J.Hatcher).,0,3,2012 -20121216_PIT@DAL,2,44,19,PIT,DAL,3,5,87,(14:19) (Shotgun) C.Rainey up the middle to PIT 17 for 4 yards (A.Albright).,0,3,2012 -20121216_PIT@DAL,2,43,49,PIT,DAL,4,1,83,(13:49) (Punt formation) D.Butler punts 41 yards to DAL 42 Center-G.Warren out of bounds.,0,3,2012 -20121216_PIT@DAL,2,43,42,DAL,PIT,1,10,58,(13:42) F.Jones right end to DAL 46 for 4 yards (R.Clark).,3,0,2012 -20121216_PIT@DAL,2,43,10,DAL,PIT,2,6,54,"(13:10) (Shotgun) T.Romo pass short left to J.Hanna to PIT 38 for 16 yards (K.Lewis; L.Foote). Pass complete on a ""Drag"" route.",3,0,2012 -20121216_PIT@DAL,2,42,23,DAL,PIT,1,10,38,(12:23) T.Romo pass short right to M.Austin pushed ob at PIT 36 for 2 yards (R.Clark). PENALTY on DAL-D.Bryant Offensive Holding 10 yards enforced at PIT 36.,3,0,2012 -20121216_PIT@DAL,2,41,54,DAL,PIT,1,18,46,"(11:54) T.Romo pass deep middle to J.Hanna to PIT 17 for 29 yards (R.Clark). Pass complete off play action on a ""seam"" route.",3,0,2012 -20121216_PIT@DAL,2,41,7,DAL,PIT,1,10,17,"(11:07) (Shotgun) T.Romo pass deep middle to J.Witten for 17 yards TOUCHDOWN. Pass complete on a ""seam"" route.",3,0,2012 -20121216_PIT@DAL,2,41,7,DAL,PIT,,,17,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,3,0,2012 -20121216_PIT@DAL,2,41,7,DAL,PIT,,,17,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone.,10,0,2012 -20121216_PIT@DAL,2,41,2,PIT,DAL,1,10,80,"(11:02) B.Roethlisberger pass short left to I.Redman pushed ob at PIT 34 for 14 yards (A.Albright). Pass complete on a ""wheel"" route.",0,10,2012 -20121216_PIT@DAL,2,40,25,PIT,DAL,1,10,66,(10:25) B.Roethlisberger pass incomplete short left. Pass was thrown incomplete to the sideline.,0,10,2012 -20121216_PIT@DAL,2,40,18,PIT,DAL,2,10,66,"(10:18) B.Roethlisberger pass short middle to H.Miller to DAL 49 for 17 yards (D.McCray). Pass complete off play action on a ""slant"" pattern.",0,10,2012 -20121216_PIT@DAL,2,39,34,PIT,DAL,1,10,49,(9:34) (Shotgun) B.Roethlisberger scrambles right end to DAL 46 for 3 yards (A.Albright).,0,10,2012 -20121216_PIT@DAL,2,38,51,PIT,DAL,2,7,46,(8:51) B.Roethlisberger pass short right to W.Johnson pushed ob at DAL 33 for 13 yards (A.Albright). Pass complete in the flat.,0,10,2012 -20121216_PIT@DAL,2,38,17,PIT,DAL,1,10,33,(8:17) (Shotgun) I.Redman up the middle to DAL 29 for 4 yards (D.Connor).,0,10,2012 -20121216_PIT@DAL,2,37,34,PIT,DAL,2,6,29,"(7:34) B.Roethlisberger pass incomplete short left to A.Brown. Pass incomplete on a ""curl"" route; Ware closest defender.",0,10,2012 -20121216_PIT@DAL,2,37,28,PIT,DAL,3,6,29,"(7:28) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to DAL 22 for 7 yards (D.McCray). Pass complete on a ""crossing"" pattern.",0,10,2012 -20121216_PIT@DAL,2,36,51,PIT,DAL,1,10,22,"(6:51) (Shotgun) B.Roethlisberger pass short middle to H.Miller to DAL 14 for 8 yards (D.Connor). Pass complete on a ""drag"" route.",0,10,2012 -20121216_PIT@DAL,2,36,18,PIT,DAL,2,2,14,(6:18) B.Roethlisberger pass incomplete short left to A.Brown.,0,10,2012 -20121216_PIT@DAL,2,36,12,PIT,DAL,3,2,14,(6:12) (Shotgun) B.Roethlisberger pass incomplete short right to M.Wallace. Pass incomplete on a quick out.,0,10,2012 -20121216_PIT@DAL,2,36,7,PIT,DAL,4,2,14,(6:07) (Field Goal formation) S.Suisham 32 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,10,2012 -20121216_PIT@DAL,2,36,7,PIT,DAL,,,14,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback. Ball was kicked out of the end zone.,3,10,2012 -20121216_PIT@DAL,2,36,3,DAL,PIT,1,10,80,"(6:03) (Shotgun) T.Romo pass short right to M.Austin to DAL 28 for 8 yards (J.Victorian). Pass complete on a ""curl"" route.",10,3,2012 -20121216_PIT@DAL,2,35,21,DAL,PIT,2,2,72,(5:21) D.Murray left tackle to DAL 29 for 1 yard (J.Worilds; E.Hood).,10,3,2012 -20121216_PIT@DAL,2,34,43,DAL,PIT,3,1,71,(4:43) D.Murray right guard to DAL 32 for 3 yards (L.Timmons).,10,3,2012 -20121216_PIT@DAL,2,34,0,DAL,PIT,1,10,68,"(4:00) (Shotgun) T.Romo pass short left to D.Bryant pushed ob at DAL 47 for 15 yards (K.Lewis; L.Timmons). Pass complete on a ""curl"" route.",10,3,2012 -20121216_PIT@DAL,2,33,27,DAL,PIT,1,10,53,"(3:27) T.Romo pass incomplete deep middle to M.Austin. Pass incomplete on a deep ""slant.""",10,3,2012 -20121216_PIT@DAL,2,33,19,DAL,PIT,2,10,53,"(3:19) (Shotgun) T.Romo pass incomplete short middle to J.Witten. Pass incomplete on a ""seam"" route; Clark closest defender.",10,3,2012 -20121216_PIT@DAL,2,33,19,DAL,PIT,3,10,53,(3:19) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 47 - No Play.,10,3,2012 -20121216_PIT@DAL,2,33,12,DAL,PIT,3,15,58,(3:12) (Shotgun) T.Romo pass short left to D.Bryant ran ob at PIT 45 for 13 yards. PENALTY on DAL-L.Vickers Offensive Holding 10 yards enforced at DAL 42 - No Play.,10,3,2012 -20121216_PIT@DAL,2,32,39,DAL,PIT,3,25,68,(2:39) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 32 - No Play.,10,3,2012 -20121216_PIT@DAL,2,32,26,DAL,PIT,3,30,73,(2:26) (Shotgun) D.Murray right end to DAL 30 for 3 yards (R.Clark).,10,3,2012 -20121216_PIT@DAL,2,32,18,DAL,PIT,4,27,70,(2:18) (Punt formation) B.Moorman punts 43 yards to PIT 27 Center-L.Ladouceur fair catch by A.Brown.,10,3,2012 -20121216_PIT@DAL,2,32,11,PIT,DAL,1,10,73,(2:11) (Shotgun) C.Rainey left guard to PIT 33 for 6 yards (T.Crawford). Injury update: Steelers' Sanders has a rib injury; return is questionable.,3,10,2012 -20121216_PIT@DAL,2,32,0,PIT,DAL,2,4,67,"(2:00) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey. Pass incomplete on a ""wheel"" route; Albright closest defender.",3,10,2012 -20121216_PIT@DAL,2,31,55,PIT,DAL,3,4,67,"(1:55) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 46 for 13 yards (D.McCray). Pass complete on a ""crossing"" pattern.",3,10,2012 -20121216_PIT@DAL,2,31,31,PIT,DAL,1,10,54,"(1:31) (No Huddle Shotgun) B.Roethlisberger pass short left to H.Miller to DAL 48 for 6 yards (D.McCray). Pass complete on a ""crossing"" pattern.",3,10,2012 -20121216_PIT@DAL,2,31,3,PIT,DAL,2,4,48,"(1:03) (No Huddle Shotgun) B.Roethlisberger pass short middle to A.Brown to DAL 30 for 18 yards (S.Moore). Pass complete on a ""crossing"" pattern after Roethlisberger escapes pressures.",3,10,2012 -20121216_PIT@DAL,2,30,52,PIT,DAL,1,10,30,(:52) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey. Pass incomplete in the flat; Albright closest defender.,3,10,2012 -20121216_PIT@DAL,2,30,47,PIT,DAL,2,10,30,(:47) (Shotgun) B.Roethlisberger pass short right to H.Miller for 30 yards TOUCHDOWN [J.Hatcher]. Roethlisberger buys time; escapes pressure twice before touchdown toss.,3,10,2012 -20121216_PIT@DAL,2,30,47,PIT,DAL,,,30,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,10,2012 -20121216_PIT@DAL,2,30,47,PIT,DAL,,,30,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback. Ball was kicked out of the end zone.,10,10,2012 -20121216_PIT@DAL,2,30,34,DAL,PIT,1,10,80,(:34) T.Romo kneels to DAL 19 for -1 yards.,10,10,2012 -20121216_PIT@DAL,3,30,0,PIT,DAL,,,80,S.Suisham kicks 74 yards from PIT 35 to DAL -9. D.Harris Touchback.,10,10,2012 -20121216_PIT@DAL,3,30,0,DAL,PIT,1,10,80,"(15:00) (Shotgun) T.Romo pass short left to D.Bryant to DAL 27 for 7 yards (K.Lewis). Pass complete on a ""bubble screen""",10,10,2012 -20121216_PIT@DAL,3,29,25,DAL,PIT,2,3,73,(14:25) D.Murray right guard to DAL 29 for 2 yards (E.Hood).,10,10,2012 -20121216_PIT@DAL,3,28,48,DAL,PIT,3,1,71,(13:48) D.Murray left end to DAL 29 for no gain (L.Timmons).,10,10,2012 -20121216_PIT@DAL,3,28,16,DAL,PIT,4,1,71,(13:16) (Punt formation) B.Moorman punts 50 yards to PIT 21 Center-L.Ladouceur. A.Brown to DAL 50 for 29 yards (J.Hanna). Injury Update: Ernie Sims has a concussion and will not return to the game.,10,10,2012 -20121216_PIT@DAL,3,28,2,PIT,DAL,1,10,50,(13:02) J.Dwyer right guard to DAL 46 for 4 yards (D.Connor).,10,10,2012 -20121216_PIT@DAL,3,27,34,PIT,DAL,2,6,46,(12:34) J.Dwyer up the middle to DAL 45 for 1 yard (A.Spencer; D.McCray).,10,10,2012 -20121216_PIT@DAL,3,26,49,PIT,DAL,3,5,45,(11:49) B.Roethlisberger pass incomplete short right to J.Dwyer. Pass incomplete in the flat.,10,10,2012 -20121216_PIT@DAL,3,26,41,PIT,DAL,4,5,45,(11:41) (Punt formation) D.Butler punts 45 yards to end zone Center-G.Warren Touchback.,10,10,2012 -20121216_PIT@DAL,3,26,35,DAL,PIT,1,10,80,(11:35) (Shotgun) T.Romo scrambles up the middle to DAL 24 for 4 yards (L.Foote).,10,10,2012 -20121216_PIT@DAL,3,25,46,DAL,PIT,2,6,76,(10:46) T.Romo pass short right to L.Vickers to DAL 39 for 15 yards (T.Polamalu). Pass complete in the flat on a check off.,10,10,2012 -20121216_PIT@DAL,3,24,59,DAL,PIT,1,10,61,"(9:59) (Shotgun) T.Romo pass short middle to D.Murray to DAL 43 for 4 yards (L.Foote). Pass complete on a ""check off"" play.",10,10,2012 -20121216_PIT@DAL,3,24,13,DAL,PIT,2,6,57,"(9:13) (Shotgun) T.Romo pass short left to D.Harris to PIT 50 for 7 yards (J.Victorian). Pass complete on a ""curl"" route.",10,10,2012 -20121216_PIT@DAL,3,23,44,DAL,PIT,1,10,50,(8:44) T.Romo sacked at DAL 37 for -13 yards (L.Timmons).,10,10,2012 -20121216_PIT@DAL,3,23,7,DAL,PIT,2,23,63,"(8:07) (Shotgun) T.Romo pass short right to D.Harris pushed ob at PIT 45 for 18 yards (C.Heyward). Pass complete on a ""bubble screen""",10,10,2012 -20121216_PIT@DAL,3,22,28,DAL,PIT,3,5,45,"(7:28) (Shotgun) T.Romo pass short right to C.Beasley pushed ob at PIT 37 for 8 yards (R.Golden). Pass complete on a ""crossing pattern.""",10,10,2012 -20121216_PIT@DAL,3,21,52,DAL,PIT,1,10,37,"(6:52) T.Romo pass short left to M.Austin to PIT 24 for 13 yards (R.Golden). Pass complete on a ""quick out""",10,10,2012 -20121216_PIT@DAL,3,21,10,DAL,PIT,1,10,24,"(6:10) T.Romo pass deep right to D.Bryant for 24 yards TOUCHDOWN. Pass complete on an ""up and out"" toss to the pylon.",10,10,2012 -20121216_PIT@DAL,3,21,10,DAL,PIT,,,24,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,10,10,2012 -20121216_PIT@DAL,3,21,10,DAL,PIT,,,24,D.Bailey kicks 41 yards from DAL 35 to PIT 24. D.Paulson to PIT 40 for 16 yards (A.Albright). Squib kick,17,10,2012 -20121216_PIT@DAL,3,20,57,PIT,DAL,1,10,60,(5:57) B.Roethlisberger sacked at PIT 38 for -2 yards (M.Spears).,10,17,2012 -20121216_PIT@DAL,3,20,23,PIT,DAL,2,12,62,"(5:23) B.Roethlisberger pass deep middle to M.Wallace to DAL 2 for 60 yards (G.Sensabaugh). Pass complete on a ""deep post"" pattern",10,17,2012 -20121216_PIT@DAL,3,20,23,PIT,DAL,1,2,2,(5:23) PENALTY on DAL Illegal Substitution 1 yard enforced at DAL 2 - No Play.,10,17,2012 -20121216_PIT@DAL,3,19,27,PIT,DAL,1,1,1,(4:27) J.Dwyer right guard for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,10,17,2012 -20121216_PIT@DAL,3,19,27,PIT,DAL,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,10,17,2012 -20121216_PIT@DAL,3,19,27,PIT,DAL,,,1,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback. Ball was kicked out of the end zone.,17,17,2012 -20121216_PIT@DAL,3,19,16,DAL,PIT,1,10,80,"(4:16) (Shotgun) T.Romo pass short middle to D.Murray to DAL 29 for 9 yards (J.Victorian). Pass complete on a ""check off"" pass.",17,17,2012 -20121216_PIT@DAL,3,18,33,DAL,PIT,2,1,71,(3:33) D.Murray left end to DAL 41 for 12 yards (T.Polamalu).,17,17,2012 -20121216_PIT@DAL,3,17,52,DAL,PIT,1,10,59,"(2:52) (Shotgun) T.Romo pass short middle to J.Witten to DAL 46 for 5 yards (L.Timmons). Pass complete on a ""drag"" route.",17,17,2012 -20121216_PIT@DAL,3,17,6,DAL,PIT,2,5,54,(2:06) (Shotgun) F.Jones left end to PIT 50 for 4 yards (L.Foote).,17,17,2012 -20121216_PIT@DAL,3,16,29,DAL,PIT,3,1,50,(1:29) T.Romo left end to DAL 45 for -5 yards (J.Harrison).,17,17,2012 -20121216_PIT@DAL,3,16,2,DAL,PIT,4,6,55,(1:02) (Punt formation) B.Moorman punts 33 yards to PIT 22 Center-L.Ladouceur. A.Brown MUFFS catch and recovers at PIT 22. A.Brown to PIT 22 for no gain (D.McCray).,17,17,2012 -20121216_PIT@DAL,3,15,53,PIT,DAL,1,10,78,(:53) (Shotgun) I.Redman left end pushed ob at PIT 44 for 22 yards.,17,17,2012 -20121216_PIT@DAL,3,15,18,PIT,DAL,1,10,56,"(:18) (Shotgun) B.Roethlisberger pass short right to M.Wallace pushed ob at DAL 36 for 20 yards (M.Jenkins). Pass complete on a ""skinny post""",17,17,2012 -20121216_PIT@DAL,4,15,0,PIT,DAL,1,10,36,(15:00) B.Roethlisberger pass incomplete short right [A.Spencer]. Spencer with heavy pressure,17,17,2012 -20121216_PIT@DAL,4,14,54,PIT,DAL,2,10,36,"(14:54) (Shotgun) B.Roethlisberger pass deep right to J.Cotchery to DAL 15 for 21 yards (G.Sensabaugh). Pass complete on a ""crossing"" pattern.",17,17,2012 -20121216_PIT@DAL,4,14,12,PIT,DAL,1,10,15,(14:12) I.Redman up the middle to DAL 11 for 4 yards (D.Connor).,17,17,2012 -20121216_PIT@DAL,4,13,28,PIT,DAL,2,6,11,"(13:28) (Shotgun) B.Roethlisberger pass short middle to M.Wallace to DAL 7 for 4 yards (G.Sensabaugh). Pass complete on a ""drag"" route.",17,17,2012 -20121216_PIT@DAL,4,12,43,PIT,DAL,3,2,7,"(12:43) (Shotgun) B.Roethlisberger pass short right to A.Brown for 7 yards TOUCHDOWN. Pass complete on an ""out"" route. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.",17,17,2012 -20121216_PIT@DAL,4,12,43,PIT,DAL,,,7,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,17,2012 -20121216_PIT@DAL,4,12,43,PIT,DAL,,,7,S.Suisham kicks 70 yards from PIT 35 to DAL -5. D.Harris to DAL 20 for 25 yards (R.Mundy). Return middle inside the yardline markers.,24,17,2012 -20121216_PIT@DAL,4,12,30,DAL,PIT,1,10,80,"(12:30) T.Romo pass short left to D.Murray to DAL 33 for 13 yards (L.Foote). Pass complete on a ""wheel"" route.",17,24,2012 -20121216_PIT@DAL,4,11,48,DAL,PIT,1,10,67,(11:48) (Shotgun) T.Romo pass short left to J.Witten pushed ob at DAL 41 for 8 yards (L.Foote). PENALTY on DAL-N.Livings Illegal Use of Hands 10 yards enforced at DAL 33 - No Play.,17,24,2012 -20121216_PIT@DAL,4,11,18,DAL,PIT,1,20,77,(11:18) (Shotgun) T.Romo pass short left to J.Witten pushed ob at DAL 29 for 6 yards (L.Timmons). Pass complete on a crossing pattern.,17,24,2012 -20121216_PIT@DAL,4,10,33,DAL,PIT,2,14,71,"(10:33) (Shotgun) T.Romo pass incomplete short right to J.Witten. Pass incomplete on a ""crossing"" pattern; Timmons closest defender.",17,24,2012 -20121216_PIT@DAL,4,10,26,DAL,PIT,3,14,71,(10:26) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 29 - No Play.,17,24,2012 -20121216_PIT@DAL,4,10,26,DAL,PIT,3,19,76,"(10:26) (Shotgun) T.Romo pass incomplete deep left to D.Bryant. Pass incomplete on a ""fly"" pattern; Lewis closest defender.",17,24,2012 -20121216_PIT@DAL,4,10,18,DAL,PIT,4,19,76,(10:18) (Punt formation) B.Moorman punts 60 yards to PIT 16 Center-L.Ladouceur. A.Brown to PIT 38 for 22 yards (V.Butler). FUMBLES (V.Butler) RECOVERED by DAL-J.Phillips at PIT 44.,17,24,2012 -20121216_PIT@DAL,4,10,3,DAL,PIT,1,10,44,"(10:03) T.Romo pass short left to D.Bryant to PIT 31 for 13 yards (K.Lewis). Pass complete on a ""curl"" route.",17,24,2012 -20121216_PIT@DAL,4,9,18,DAL,PIT,1,10,31,(9:18) D.Murray right tackle to PIT 29 for 2 yards (R.Clark).,17,24,2012 -20121216_PIT@DAL,4,8,38,DAL,PIT,2,8,29,(8:38) (Shotgun) T.Romo pass short right to J.Witten to PIT 20 for 9 yards (T.Polamalu).,17,24,2012 -20121216_PIT@DAL,4,7,54,DAL,PIT,1,10,20,"(7:54) (Shotgun) T.Romo pass short left to D.Harris to PIT 3 for 17 yards (T.Polamalu). Pass complete on a ""bubble"" screen.",17,24,2012 -20121216_PIT@DAL,4,7,8,DAL,PIT,1,3,3,(7:08) T.Romo pass incomplete short left to D.Bryant. Pass incomplete sideline at the goal line; Lewis closest defender.,17,24,2012 -20121216_PIT@DAL,4,7,3,DAL,PIT,2,3,3,(7:03) (Shotgun) T.Romo pass incomplete short left to D.Bryant (K.Lewis). PIT-K.Lewis was injured during the play. Pass lofted to the front-left corner of the end zone.,17,24,2012 -20121216_PIT@DAL,4,6,58,DAL,PIT,3,3,3,(6:58) D.Murray up the middle for 3 yards TOUCHDOWN.,17,24,2012 -20121216_PIT@DAL,4,6,58,DAL,PIT,,,3,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,24,2012 -20121216_PIT@DAL,4,6,58,DAL,PIT,,,3,D.Bailey kicks 74 yards from DAL 35 to PIT -9. C.Rainey to PIT 24 for 33 yards (E.Frampton). Return right side of the field outside the yardline markers.,24,24,2012 -20121216_PIT@DAL,4,6,48,PIT,DAL,1,10,76,(6:48) J.Dwyer left tackle to PIT 25 for 1 yard (D.Ware J.Hatcher).,24,24,2012 -20121216_PIT@DAL,4,6,10,PIT,DAL,2,9,75,"(6:10) B.Roethlisberger pass short right to M.Wallace ran ob at PIT 36 for 11 yards (B.Carr). Pass complete on a sideline ""curl"" route.",24,24,2012 -20121216_PIT@DAL,4,5,39,PIT,DAL,1,10,64,(5:39) B.Roethlisberger pass deep right to W.Johnson ran ob at DAL 43 for 21 yards (B.Carr).,24,24,2012 -20121216_PIT@DAL,4,5,5,PIT,DAL,1,10,43,"(5:05) (Shotgun) B.Roethlisberger pass short right to A.Brown to DAL 40 for 3 yards (B.Carr). Pass complete on a ""bubble screen.""",24,24,2012 -20121216_PIT@DAL,4,4,22,PIT,DAL,2,7,40,(4:22) (Shotgun) J.Dwyer right tackle to DAL 37 for 3 yards (A.Albright A.Spencer).,24,24,2012 -20121216_PIT@DAL,4,3,35,PIT,DAL,3,4,37,(3:35) (Shotgun) B.Roethlisberger sacked at DAL 39 for -2 yards (sack split by D.Ware and A.Spencer).,24,24,2012 -20121216_PIT@DAL,4,3,5,PIT,DAL,4,6,39,(3:05) (Punt formation) D.Butler punts 27 yards to DAL 12 Center-G.Warren downed by PIT-B.Johnson. Injury update: Keenan Lewis has a hip injury. His return is questionable.,24,24,2012 -20121216_PIT@DAL,4,2,54,DAL,PIT,1,10,88,"(2:54) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete on a ""curl"" route; Polamalu closest defender.",24,24,2012 -20121216_PIT@DAL,4,2,50,DAL,PIT,2,10,88,(2:50) (Shotgun) T.Romo pass short right to D.Murray to DAL 17 for 5 yards (R.Golden).,24,24,2012 -20121216_PIT@DAL,4,2,11,DAL,PIT,3,5,83,(2:11) (No Huddle Shotgun) T.Romo pass short left to D.Harris to DAL 21 for 4 yards (C.Brown).,24,24,2012 -20121216_PIT@DAL,4,2,0,DAL,PIT,4,1,79,(2:00) (Punt formation) B.Moorman punts 59 yards to PIT 20 Center-L.Ladouceur downed by DAL-A.Albright.,24,24,2012 -20121216_PIT@DAL,4,1,47,PIT,DAL,1,10,80,(1:47) (Shotgun) B.Roethlisberger pass incomplete short left to A.Brown. Pass incomplete sideline at the Pittsburgh 32; Coe closest defender.,24,24,2012 -20121216_PIT@DAL,4,1,42,PIT,DAL,2,10,80,(1:42) (Shotgun) B.Roethlisberger pass short middle to A.Brown to PIT 31 for 11 yards (E.Frampton) [D.Ware]. PENALTY on DAL-D.Ware Roughing the Passer 15 yards enforced at PIT 31.,24,24,2012 -20121216_PIT@DAL,4,1,34,PIT,DAL,1,10,54,(1:34) (Shotgun) B.Roethlisberger sacked at PIT 38 for -8 yards (S.Lissemore).,24,24,2012 -20121216_PIT@DAL,4,1,18,PIT,DAL,2,18,62,(1:18) B.Roethlisberger sacked at PIT 30 for -8 yards (A.Spencer).,24,24,2012 -20121216_PIT@DAL,4,1,10,PIT,DAL,3,26,70,"(1:10) (Shotgun) B.Roethlisberger pass short right to A.Brown pushed ob at PIT 41 for 11 yards (B.Carr). Pass complete on a ""crossing"" pattern.",24,24,2012 -20121216_PIT@DAL,4,1,3,PIT,DAL,4,15,59,(1:03) (Punt formation) D.Butler punts 47 yards to DAL 12 Center-G.Warren. D.Harris to PIT 49 for 39 yards (W.Allen). Punt returned along right side of the field.,24,24,2012 -20121216_PIT@DAL,4,0,47,DAL,PIT,1,10,49,(:47) (Shotgun) T.Romo pass incomplete deep middle to M.Austin. Pass incomplete on slant pattern; Golden closest defender.,24,24,2012 -20121216_PIT@DAL,4,0,43,DAL,PIT,2,10,49,(:43) (Shotgun) T.Romo pass short left to J.Witten to PIT 43 for 6 yards (J.Harrison).,24,24,2012 -20121216_PIT@DAL,4,0,36,DAL,PIT,3,4,43,"(:36) (Shotgun) T.Romo pass incomplete short right to J.Witten [J.Harrison]. Pass incomplete on a ""crossing"" pattern.",24,24,2012 -20121216_PIT@DAL,4,0,32,DAL,PIT,4,4,43,(:32) (Punt formation) B.Moorman punts 43 yards to end zone Center-L.Ladouceur Touchback.,24,24,2012 -20121216_PIT@DAL,4,0,25,PIT,DAL,1,10,80,(:25) B.Roethlisberger kneels to PIT 19 for -1 yards.,24,24,2012 -20121216_PIT@DAL,5,0,0,DAL,PIT,,,80,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone.,24,24,2012 -20121216_PIT@DAL,5,0,0,PIT,DAL,1,10,80,"(15:00) (Shotgun) B.Roethlisberger pass short middle to H.Miller to PIT 27 for 7 yards (G.Sensabaugh). Pass complete on a ""curl""",24,24,2012 -20121216_PIT@DAL,5,-1,29,PIT,DAL,2,3,73,(14:29) (Shotgun) B.Roethlisberger pass short right intended for M.Wallace INTERCEPTED by B.Carr at PIT 37. B.Carr to PIT 1 for 36 yards (H.Miller). The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,24,24,2012 -20121216_PIT@DAL,5,-1,15,DAL,PIT,1,1,1,(14:15) T.Romo kneels to PIT 3 for -2 yards (J.Harrison).,24,24,2012 -20121216_PIT@DAL,5,-2,41,DAL,PIT,2,3,3,(13:41) (Field Goal formation) D.Bailey 21 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,24,24,2012 -20121216_PIT@DAL,5,-2,41,DAL,PIT,,,3,                      ,27,24,2012 -20121216_KC@OAK,1,-2,0,KC,OAK,,,3,R.Succop kicks 73 yards from KC 35 to OAK -8. M.Goodson Touchback.,0,0,2012 -20121216_KC@OAK,1,60,0,OAK,KC,1,10,80,(15:00) D.McFadden right end to OAK 19 for -1 yards (T.Hali).,0,0,2012 -20121216_KC@OAK,1,59,22,OAK,KC,2,11,81,(14:22) D.McFadden left end to OAK 20 for 1 yard (B.Siler).,0,0,2012 -20121216_KC@OAK,1,58,48,OAK,KC,3,10,80,(13:48) (Shotgun) C.Palmer pass incomplete short middle to D.Heyward-Bey. KC-B.Flowers was injured during the play. His return is Questionable.,0,0,2012 -20121216_KC@OAK,1,58,43,OAK,KC,4,10,80,(13:43) S.Lechler punts 40 yards to KC 40 Center-J.Condo. J.Arenas to KC 41 for 1 yard (T.Jones).,0,0,2012 -20121216_KC@OAK,1,58,34,KC,OAK,1,10,59,(13:34) J.Charles right tackle to KC 41 for no gain (L.Houston).,0,0,2012 -20121216_KC@OAK,1,58,3,KC,OAK,2,10,59,(13:03) B.Quinn sacked at KC 35 for -6 yards (D.Bryant). Penalty on KC-J.Allen Face Mask (15 Yards) declined.,0,0,2012 -20121216_KC@OAK,1,57,31,KC,OAK,3,16,65,(12:31) B.Quinn pass short middle to S.Draughn to KC 37 for 2 yards (M.Mitchell) [A.Carter].,0,0,2012 -20121216_KC@OAK,1,56,55,KC,OAK,4,14,63,(11:55) D.Colquitt punts 60 yards to OAK 3 Center-T.Gafford downed by KC-L.Williams.,0,0,2012 -20121216_KC@OAK,1,56,43,OAK,KC,1,10,97,(11:43) D.McFadden left guard to OAK 5 for 2 yards (D.Johnson).,0,0,2012 -20121216_KC@OAK,1,56,9,OAK,KC,2,8,95,(11:09) C.Palmer pass short right to M.Reece to OAK 11 for 6 yards (J.Brown). PENALTY on KC-J.Brown Horse Collar Tackle 15 yards enforced at OAK 11.,0,0,2012 -20121216_KC@OAK,1,55,38,OAK,KC,1,10,74,(10:38) T.Bergstrom reported in as eligible. D.McFadden left tackle to OAK 41 for 15 yards (J.Brown).,0,0,2012 -20121216_KC@OAK,1,55,0,OAK,KC,1,10,59,(10:00) M.Goodson right end to OAK 41 for no gain (J.Houston; D.Johnson).,0,0,2012 -20121216_KC@OAK,1,54,21,OAK,KC,2,10,59,(9:21) C.Palmer pass incomplete short right to D.Heyward-Bey (T.Hartman).,0,0,2012 -20121216_KC@OAK,1,54,17,OAK,KC,3,10,59,(9:17) (Shotgun) C.Palmer pass incomplete short middle to R.Streater.,0,0,2012 -20121216_KC@OAK,1,54,12,OAK,KC,4,10,59,(9:12) S.Lechler punts 59 yards to end zone Center-J.Condo Touchback.,0,0,2012 -20121216_KC@OAK,1,54,3,KC,OAK,1,10,80,(9:03) P.Hillis up the middle to KC 20 for no gain (D.Bryant).,0,0,2012 -20121216_KC@OAK,1,53,29,KC,OAK,2,10,80,(8:29) J.Charles left guard to KC 21 for 1 yard (L.Houston).,0,0,2012 -20121216_KC@OAK,1,52,49,KC,OAK,3,9,79,(7:49) (Shotgun) B.Quinn pass incomplete short middle to D.Wylie.,0,0,2012 -20121216_KC@OAK,1,52,45,KC,OAK,4,9,79,(7:45) D.Colquitt punts 49 yards to OAK 30 Center-T.Gafford fair catch by D.Moore. PENALTY on KC-E.Jones Offensive Holding 10 yards enforced at OAK 30.,0,0,2012 -20121216_KC@OAK,1,52,36,OAK,KC,1,10,60,(7:36) D.McFadden right tackle to OAK 43 for 3 yards (B.Siler).,0,0,2012 -20121216_KC@OAK,1,51,57,OAK,KC,2,7,57,(6:57) D.McFadden left end to KC 49 for 8 yards (J.Arenas).,0,0,2012 -20121216_KC@OAK,1,51,26,OAK,KC,1,10,49,(6:26) (Shotgun) C.Palmer pass short left to D.Moore to KC 43 for 6 yards (J.Arenas).,0,0,2012 -20121216_KC@OAK,1,50,47,OAK,KC,2,4,43,(5:47) (Shotgun) M.Goodson up the middle to KC 35 for 8 yards (E.Berry).,0,0,2012 -20121216_KC@OAK,1,50,13,OAK,KC,1,10,35,(5:13) M.Goodson up the middle to KC 24 for 11 yards (E.Berry).,0,0,2012 -20121216_KC@OAK,1,49,33,OAK,KC,1,10,24,(4:33) T.Bergstrom reported in as eligible. D.McFadden right end to KC 23 for 1 yard (E.Berry).,0,0,2012 -20121216_KC@OAK,1,48,49,OAK,KC,2,9,23,(3:49) (Shotgun) C.Palmer pass short right to M.Goodson to KC 9 for 14 yards (E.Berry).,0,0,2012 -20121216_KC@OAK,1,48,7,OAK,KC,1,9,9,(3:07) D.McFadden left end to KC 4 for 5 yards (J.Houston).,0,0,2012 -20121216_KC@OAK,1,47,33,OAK,KC,2,4,4,(2:33) D.McFadden left tackle to KC 2 for 2 yards (D.Poe).,0,0,2012 -20121216_KC@OAK,1,46,53,OAK,KC,3,2,2,(1:53) C.Palmer pass incomplete short right to D.Moore (J.Houston).,0,0,2012 -20121216_KC@OAK,1,46,48,OAK,KC,4,2,2,(1:48) S.Janikowski 20 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20121216_KC@OAK,1,46,48,OAK,KC,,,2,S.Janikowski kicks 72 yards from OAK 35 to KC -7. J.Arenas to KC 20 for 27 yards (C.Chekwa).,3,0,2012 -20121216_KC@OAK,1,46,38,KC,OAK,1,10,80,(1:38) B.Quinn sacked at KC 10 for -10 yards (P.Wheeler).,0,3,2012 -20121216_KC@OAK,1,46,0,KC,OAK,2,20,90,(1:00) B.Quinn pass short left to D.McCluster to KC 15 for 5 yards (P.Wheeler).,0,3,2012 -20121216_KC@OAK,1,45,20,KC,OAK,3,15,85,(:20) (Shotgun) B.Quinn pass short right to D.McCluster to KC 22 for 7 yards (P.Wheeler).,0,3,2012 -20121216_KC@OAK,2,45,0,KC,OAK,4,8,78,(15:00) D.Colquitt punts 63 yards to OAK 15 Center-T.Gafford downed by KC-T.Copper.,0,3,2012 -20121216_KC@OAK,2,44,48,OAK,KC,1,10,85,(14:48) PENALTY on OAK-M.Brisiel False Start 5 yards enforced at OAK 15 - No Play. #6 T. Pryor in at QB.,3,0,2012 -20121216_KC@OAK,2,44,47,OAK,KC,1,15,90,(14:47) D.McFadden right guard to OAK 16 for 6 yards (J.Houston).,3,0,2012 -20121216_KC@OAK,2,44,14,OAK,KC,2,9,84,(14:14) D.McFadden left tackle to OAK 18 for 2 yards (R.Pitoitua).,3,0,2012 -20121216_KC@OAK,2,43,36,OAK,KC,3,7,82,(13:36) T.Pryor pass incomplete short middle to D.Heyward-Bey.,3,0,2012 -20121216_KC@OAK,2,43,30,OAK,KC,4,7,82,(13:30) S.Lechler punts 64 yards to KC 18 Center-J.Condo. J.Arenas to KC 28 for 10 yards (R.Gordon).,3,0,2012 -20121216_KC@OAK,2,43,17,KC,OAK,1,10,72,(13:17) J.Charles left tackle to KC 25 for -3 yards (P.Adams). OAK-P.Adams was injured during the play. He is Out.,0,3,2012 -20121216_KC@OAK,2,42,54,KC,OAK,2,13,75,(12:54) (Shotgun) B.Quinn pass short left to D.McCluster to KC 25 for no gain (B.Ross; A.Carter).,0,3,2012 -20121216_KC@OAK,2,42,15,KC,OAK,3,13,75,(12:15) (Shotgun) B.Quinn pass deep middle intended for D.McCluster INTERCEPTED by J.Hanson at KC 42. J.Hanson to KC 39 for 3 yards (J.Newsome).,0,3,2012 -20121216_KC@OAK,2,42,5,OAK,KC,1,10,39,(12:05) T.Bergstrom reported in as eligible. C.Palmer pass incomplete deep middle to D.Moore (J.Arenas). #3 C. Palmer back in at QB.,3,0,2012 -20121216_KC@OAK,2,41,58,OAK,KC,2,10,39,(11:58) C.Palmer pass short left to D.Moore to KC 32 for 7 yards (J.Arenas). FUMBLES (J.Arenas) recovered by OAK-D.Heyward-Bey at KC 30. D.Heyward-Bey to KC 30 for no gain (Team).,3,0,2012 -20121216_KC@OAK,2,41,6,OAK,KC,3,1,30,(11:06) D.McFadden right tackle to KC 32 for -2 yards (E.Berry).,3,0,2012 -20121216_KC@OAK,2,40,43,OAK,KC,4,3,32,(10:43) S.Janikowski 50 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,0,2012 -20121216_KC@OAK,2,40,43,OAK,KC,,,32,S.Janikowski kicks 73 yards from OAK 35 to KC -8. J.Arenas Touchback.,6,0,2012 -20121216_KC@OAK,2,40,19,KC,OAK,1,10,80,(10:19) J.Charles right end to OAK 38 for 42 yards (M.Giordano). PENALTY on KC-J.Asamoah Offensive Holding 10 yards enforced at KC 20 - No Play.,0,6,2012 -20121216_KC@OAK,2,39,43,KC,OAK,1,20,90,(9:43) B.Quinn pass short middle to S.Draughn to KC 13 for 3 yards (P.Wheeler M.Burris).,0,6,2012 -20121216_KC@OAK,2,38,59,KC,OAK,2,17,87,(8:59) B.Quinn pass short middle to S.Draughn to KC 19 for 6 yards (P.Wheeler).,0,6,2012 -20121216_KC@OAK,2,38,16,KC,OAK,3,11,81,(8:16) (Shotgun) B.Quinn pass short middle to D.Wylie to KC 25 for 6 yards (B.Ross).,0,6,2012 -20121216_KC@OAK,2,37,39,KC,OAK,4,5,75,(7:39) D.Colquitt punts 55 yards to OAK 20 Center-T.Gafford downed by KC-J.Bellamy. OAK-M.Mitchell was injured during the play. His return is Questionable. PENALTY on KC-J.Bellamy Illegal Touch Kick 5 yards enforced at OAK 20.,0,6,2012 -20121216_KC@OAK,2,37,29,OAK,KC,1,10,75,(7:29) T.Bergstrom reported in as eligible. D.McFadden right tackle to OAK 33 for 8 yards (E.Berry).,6,0,2012 -20121216_KC@OAK,2,36,52,OAK,KC,2,2,67,(6:52) D.McFadden left guard to OAK 36 for 3 yards (D.Poe).,6,0,2012 -20121216_KC@OAK,2,36,12,OAK,KC,1,10,64,(6:12) T.Bergstrom reported in as eligible. C.Palmer pass incomplete short right to B.Myers (E.Berry).,6,0,2012 -20121216_KC@OAK,2,36,6,OAK,KC,2,10,64,(6:06) (Shotgun) M.Goodson up the middle to OAK 45 for 9 yards (J.Arenas).,6,0,2012 -20121216_KC@OAK,2,35,39,OAK,KC,3,1,55,(5:39) C.Palmer up the middle to OAK 47 for 2 yards (Team).,6,0,2012 -20121216_KC@OAK,2,35,2,OAK,KC,1,10,53,(5:02) T.Bergstrom reported in as eligible. D.McFadden left tackle to 50 for 3 yards (T.Jackson).,6,0,2012 -20121216_KC@OAK,2,34,24,OAK,KC,2,7,50,(4:24) C.Palmer pass short right to B.Myers to KC 49 for 1 yard (B.Flowers).,6,0,2012 -20121216_KC@OAK,2,33,42,OAK,KC,3,6,49,(3:42) (Shotgun) C.Palmer pass short right to R.Streater to KC 39 for 10 yards (T.Hartman).,6,0,2012 -20121216_KC@OAK,2,33,1,OAK,KC,1,10,39,(3:01) D.McFadden right end to KC 38 for 1 yard (D.Johnson).,6,0,2012 -20121216_KC@OAK,2,32,28,OAK,KC,2,9,38,(2:28) T.Bergstrom reported in as eligible. M.Goodson left end to KC 16 for 22 yards (J.Arenas). PENALTY on OAK-T.Bergstrom Offensive Holding 10 yards enforced at KC 38 - No Play.,6,0,2012 -20121216_KC@OAK,2,32,0,OAK,KC,2,19,48,(2:00) (Shotgun) C.Palmer pass incomplete short right to M.Reece (B.Flowers).,6,0,2012 -20121216_KC@OAK,2,31,53,OAK,KC,3,19,48,(1:53) (Shotgun) C.Palmer pass short middle to D.McFadden to KC 33 for 15 yards (J.Arenas).,6,0,2012 -20121216_KC@OAK,2,31,40,OAK,KC,4,4,33,(1:40) S.Janikowski 51 yard field goal is No Good Wide Left Center-J.Condo Holder-S.Lechler.,6,0,2012 -20121216_KC@OAK,2,31,35,KC,OAK,1,10,59,(1:35) (Shotgun) B.Quinn pass incomplete short right to D.McCluster.,0,6,2012 -20121216_KC@OAK,2,31,30,KC,OAK,2,10,59,(1:30) B.Quinn pass short left to J.Newsome to KC 47 for 6 yards (B.Ross).,0,6,2012 -20121216_KC@OAK,2,31,5,KC,OAK,3,4,53,(1:05) (Shotgun) B.Quinn pass incomplete short left to J.Newsome.,0,6,2012 -20121216_KC@OAK,2,31,3,KC,OAK,4,4,53,(1:03) D.Colquitt punts 44 yards to OAK 9 Center-T.Gafford fair catch by D.Moore.,0,6,2012 -20121216_KC@OAK,2,30,56,OAK,KC,1,10,91,(:56) C.Palmer pass short right to R.Streater to OAK 18 for 9 yards (B.Flowers; J.Arenas).,6,0,2012 -20121216_KC@OAK,2,30,35,OAK,KC,2,1,82,(:35) (No Huddle Shotgun) C.Palmer pass short middle to R.Streater to OAK 33 for 15 yards (D.Johnson).,6,0,2012 -20121216_KC@OAK,2,30,28,OAK,KC,1,10,67,(:28) (Shotgun) C.Palmer pass short middle to D.McFadden to OAK 40 for 7 yards (B.Flowers).,6,0,2012 -20121216_KC@OAK,2,30,22,OAK,KC,2,3,60,(:22) (Shotgun) C.Palmer pass short middle to D.Moore to OAK 47 for 7 yards (B.Flowers).,6,0,2012 -20121216_KC@OAK,2,30,16,OAK,KC,1,10,53,(:16) (Shotgun) C.Palmer pass incomplete deep left to D.Heyward-Bey (K.Lewis). Penalty on OAK-D.Heyward-Bey Illegal Touch Pass declined.,6,0,2012 -20121216_KC@OAK,2,30,9,OAK,KC,2,10,53,(:09) (Shotgun) C.Palmer pass short left to B.Myers ran ob at KC 39 for 14 yards.,6,0,2012 -20121216_KC@OAK,2,30,3,OAK,KC,1,10,39,(:03) S.Janikowski 57 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,6,0,2012 -20121216_KC@OAK,3,30,0,OAK,KC,,,39,S.Janikowski kicks 73 yards from OAK 35 to KC -8. J.Bellamy to KC 18 for 26 yards (T.Jones).,9,0,2012 -20121216_KC@OAK,3,29,56,KC,OAK,1,10,82,(14:56) J.Charles right tackle to KC 22 for 4 yards (T.Kelly).,0,9,2012 -20121216_KC@OAK,3,29,25,KC,OAK,2,6,78,(14:25) B.Quinn pass incomplete short left to J.Newsome.,0,9,2012 -20121216_KC@OAK,3,29,22,KC,OAK,3,6,78,(14:22) (Shotgun) B.Quinn pass incomplete short middle to J.Newsome.,0,9,2012 -20121216_KC@OAK,3,29,18,KC,OAK,4,6,78,(14:18) D.Colquitt punts 71 yards to OAK 7 Center-T.Gafford downed by KC-N.Thorpe.,0,9,2012 -20121216_KC@OAK,3,29,6,OAK,KC,1,10,93,(14:06) T.Bergstrom reported in as eligible. D.McFadden up the middle to OAK 9 for 2 yards (D.Poe).,9,0,2012 -20121216_KC@OAK,3,28,25,OAK,KC,2,8,91,(13:25) D.McFadden left tackle to OAK 13 for 4 yards (D.Poe; T.Jackson).,9,0,2012 -20121216_KC@OAK,3,27,44,OAK,KC,3,4,87,(12:44) C.Palmer pass short right to D.Moore to OAK 21 for 8 yards (J.Arenas).,9,0,2012 -20121216_KC@OAK,3,27,4,OAK,KC,1,10,79,(12:04) (Shotgun) D.McFadden up the middle to OAK 22 for 1 yard (E.Berry).,9,0,2012 -20121216_KC@OAK,3,26,28,OAK,KC,2,9,78,(11:28) C.Palmer pass deep middle to R.Streater to OAK 41 for 19 yards (J.Arenas).,9,0,2012 -20121216_KC@OAK,3,25,55,OAK,KC,1,10,59,(10:55) M.Goodson up the middle to OAK 42 for 1 yard (R.Pitoitua).,9,0,2012 -20121216_KC@OAK,3,25,18,OAK,KC,2,9,58,(10:18) C.Palmer pass incomplete deep middle to B.Myers (D.Johnson).,9,0,2012 -20121216_KC@OAK,3,25,11,OAK,KC,3,9,58,(10:11) (Shotgun) C.Palmer pass deep middle to D.Moore to KC 40 for 18 yards (J.Brown).,9,0,2012 -20121216_KC@OAK,3,24,33,OAK,KC,1,10,40,(9:33) D.McFadden left tackle to KC 21 for 19 yards (B.Siler).,9,0,2012 -20121216_KC@OAK,3,23,51,OAK,KC,1,10,21,(8:51) T.Bergstrom reported in as eligible. M.Goodson right tackle to KC 15 for 6 yards (D.Johnson).,9,0,2012 -20121216_KC@OAK,3,23,13,OAK,KC,2,4,15,(8:13) M.Goodson left end to KC 21 for -6 yards (D.Johnson).,9,0,2012 -20121216_KC@OAK,3,22,32,OAK,KC,3,10,21,(7:32) (Shotgun) C.Palmer pass short right to R.Streater to KC 12 for 9 yards (T.Daniels; B.Flowers).,9,0,2012 -20121216_KC@OAK,3,21,45,OAK,KC,4,1,12,(6:45) S.Janikowski 30 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,9,0,2012 -20121216_KC@OAK,3,21,45,OAK,KC,,,12,S.Janikowski kicks 74 yards from OAK 35 to KC -9. J.Bellamy Touchback.,12,0,2012 -20121216_KC@OAK,3,21,41,KC,OAK,1,10,80,(6:41) B.Quinn pass short left to J.Charles to KC 26 for 6 yards (M.Burris).,0,12,2012 -20121216_KC@OAK,3,21,22,KC,OAK,2,4,74,(6:22) J.Charles right end to KC 24 for -2 yards (L.Houston).,0,12,2012 -20121216_KC@OAK,3,20,43,KC,OAK,3,6,76,(5:43) (Shotgun) B.Quinn pass short middle to D.McCluster to KC 32 for 8 yards (T.Branch).,0,12,2012 -20121216_KC@OAK,3,20,8,KC,OAK,1,10,68,(5:08) B.Quinn pass short middle to T.Moeaki to KC 49 for 17 yards (T.Branch). PENALTY on OAK-T.Branch Unnecessary Roughness 15 yards enforced at KC 49.,0,12,2012 -20121216_KC@OAK,3,19,37,KC,OAK,1,10,36,(4:37) J.Charles left tackle to OAK 33 for 3 yards (P.Wheeler).,0,12,2012 -20121216_KC@OAK,3,19,9,KC,OAK,2,7,33,(4:09) B.Quinn sacked at OAK 36 for -3 yards (A.Carter).,0,12,2012 -20121216_KC@OAK,3,18,34,KC,OAK,3,10,36,(3:34) (Shotgun) B.Quinn pass incomplete deep left to J.Newsome. PENALTY on OAK-C.Francies Defensive Pass Interference 27 yards enforced at OAK 36 - No Play.,0,12,2012 -20121216_KC@OAK,3,18,27,KC,OAK,1,9,9,(3:27) B.Quinn pass incomplete short right to P.Hillis.,0,12,2012 -20121216_KC@OAK,3,18,23,KC,OAK,2,9,9,(3:23) J.Charles right end to OAK 4 for 5 yards (T.Kelly).,0,12,2012 -20121216_KC@OAK,3,17,40,KC,OAK,3,4,4,(2:40) (Shotgun) B.Quinn pass incomplete short middle to T.Moeaki (M.Burris).,0,12,2012 -20121216_KC@OAK,3,17,36,KC,OAK,4,4,4,(2:36) (Shotgun) PENALTY on KC-B.Quinn Delay of Game 5 yards enforced at OAK 4 - No Play.,0,12,2012 -20121216_KC@OAK,3,17,36,KC,OAK,4,9,9,(2:36) (Shotgun) B.Quinn pass short right to J.Charles to OAK 8 for 1 yard (M.Giordano).,0,12,2012 -20121216_KC@OAK,3,17,31,OAK,KC,1,10,92,(2:31) D.McFadden left end to OAK 9 for 1 yard (E.Berry).,12,0,2012 -20121216_KC@OAK,3,16,54,OAK,KC,2,9,91,(1:54) D.McFadden right guard to OAK 10 for 1 yard (T.Jackson).,12,0,2012 -20121216_KC@OAK,3,16,11,OAK,KC,3,8,90,(1:11) (Shotgun) D.McFadden up the middle to OAK 25 for 15 yards (T.Hali).,12,0,2012 -20121216_KC@OAK,3,15,36,OAK,KC,1,10,75,(:36) C.Palmer pass incomplete short left to D.Moore.,12,0,2012 -20121216_KC@OAK,3,15,31,OAK,KC,2,10,75,(:31) M.Goodson up the middle to KC 32 for 43 yards (J.Brown).,12,0,2012 -20121216_KC@OAK,4,15,0,OAK,KC,1,10,32,(15:00) C.Palmer pass incomplete short left to D.Heyward-Bey. PENALTY on KC-J.Brown Defensive Holding 5 yards enforced at KC 32 - No Play.,12,0,2012 -20121216_KC@OAK,4,14,55,OAK,KC,1,10,27,(14:55) D.McFadden up the middle to KC 25 for 2 yards (D.Poe).,12,0,2012 -20121216_KC@OAK,4,14,16,OAK,KC,2,8,25,(14:16) D.McFadden left tackle to KC 23 for 2 yards (E.Berry).,12,0,2012 -20121216_KC@OAK,4,13,36,OAK,KC,3,6,23,(13:36) (Shotgun) C.Palmer pass incomplete short left to D.Heyward-Bey (J.Brown).,12,0,2012 -20121216_KC@OAK,4,13,32,OAK,KC,4,6,23,(13:32) S.Janikowski 41 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,12,0,2012 -20121216_KC@OAK,4,13,32,OAK,KC,,,23,S.Janikowski kicks 69 yards from OAK 35 to KC -4. J.Bellamy to KC 13 for 17 yards (M.Goodson).,15,0,2012 -20121216_KC@OAK,4,13,21,KC,OAK,1,10,87,(13:21) (Shotgun) B.Quinn pass short middle to D.McCluster to KC 44 for 31 yards (M.Huff). OAK-M.Giordano was injured during the play.,0,15,2012 -20121216_KC@OAK,4,12,41,KC,OAK,1,10,56,(12:41) B.Quinn pass short middle to J.Charles to OAK 45 for 11 yards (M.Burris).,0,15,2012 -20121216_KC@OAK,4,12,16,KC,OAK,1,10,45,(12:16) (No Huddle) J.Charles left end to OAK 43 for 2 yards (B.Ross).,0,15,2012 -20121216_KC@OAK,4,11,47,KC,OAK,2,8,43,(11:47) B.Quinn pass short middle to T.Moeaki to OAK 33 for 10 yards (P.Wheeler).,0,15,2012 -20121216_KC@OAK,4,11,20,KC,OAK,1,10,33,(11:20) (No Huddle) B.Quinn pass incomplete short middle to D.McCluster (T.Kelly).,0,15,2012 -20121216_KC@OAK,4,11,16,KC,OAK,2,10,33,(11:16) (Shotgun) B.Quinn pass incomplete deep left to J.Baldwin [A.Carter].,0,15,2012 -20121216_KC@OAK,4,11,12,KC,OAK,3,10,33,(11:12) (Shotgun) B.Quinn sacked at OAK 41 for -8 yards (T.Kelly).,0,15,2012 -20121216_KC@OAK,4,10,38,KC,OAK,4,18,41,(10:38) D.Colquitt punts 41 yards to end zone Center-T.Gafford Touchback.,0,15,2012 -20121216_KC@OAK,4,10,29,OAK,KC,1,10,80,(10:29) C.Palmer pass short middle to D.McFadden to OAK 22 for 2 yards (B.Siler). FUMBLES (B.Siler) RECOVERED by KC-J.Houston at OAK 22. J.Houston to OAK 18 for 4 yards (K.Barnes). The Replay Assistant challenged the fumble ruling and the play was Upheld.,15,0,2012 -20121216_KC@OAK,4,10,20,KC,OAK,1,10,18,(10:20) (Shotgun) B.Quinn pass incomplete short right to T.Moeaki. PENALTY on KC-T.Moeaki Offensive Pass Interference 10 yards enforced at OAK 18 - No Play.,0,15,2012 -20121216_KC@OAK,4,10,14,KC,OAK,1,20,28,(10:14) (Shotgun) B.Quinn pass short middle to D.McCluster to OAK 20 for 8 yards (J.Hanson).,0,15,2012 -20121216_KC@OAK,4,10,8,KC,OAK,2,12,20,(10:08) B.Quinn pass incomplete short right to J.Charles.,0,15,2012 -20121216_KC@OAK,4,9,35,KC,OAK,3,12,20,(9:35) (Shotgun) B.Quinn pass incomplete short right to J.Baldwin [M.Burris].,0,15,2012 -20121216_KC@OAK,4,9,32,KC,OAK,4,12,20,(9:32) (Shotgun) B.Quinn pass incomplete deep left to J.Baldwin [P.Wheeler].,0,15,2012 -20121216_KC@OAK,4,9,26,OAK,KC,1,10,80,(9:26) D.McFadden left tackle to OAK 23 for 3 yards (B.Siler; D.Johnson).,15,0,2012 -20121216_KC@OAK,4,8,45,OAK,KC,2,7,77,(8:45) D.McFadden left guard to OAK 23 for no gain (E.Berry).,15,0,2012 -20121216_KC@OAK,4,8,38,OAK,KC,3,7,77,(8:38) (Shotgun) PENALTY on OAK-S.Wisniewski False Start 5 yards enforced at OAK 23 - No Play.,15,0,2012 -20121216_KC@OAK,4,7,47,OAK,KC,3,12,82,(7:47) C.Palmer pass short left to D.McFadden to OAK 33 for 15 yards (T.Daniels).,15,0,2012 -20121216_KC@OAK,4,7,13,OAK,KC,1,10,67,(7:13) T.Bergstrom reported in as eligible. M.Goodson left tackle to OAK 39 for 6 yards (B.Siler).,15,0,2012 -20121216_KC@OAK,4,6,34,OAK,KC,2,4,61,(6:34) M.Goodson right end to OAK 41 for 2 yards (J.Houston).,15,0,2012 -20121216_KC@OAK,4,5,48,OAK,KC,3,2,59,(5:48) T.Bergstrom reported in as eligible. D.McFadden left guard to OAK 42 for 1 yard (R.Pitoitua).,15,0,2012 -20121216_KC@OAK,4,5,3,OAK,KC,4,1,58,(5:03) S.Lechler punts 42 yards to KC 16 Center-J.Condo. D.Wylie to KC 29 for 13 yards (K.Burnett).,15,0,2012 -20121216_KC@OAK,4,4,51,KC,OAK,1,10,71,(4:51) (Shotgun) B.Quinn pass short middle to T.Moeaki to KC 38 for 9 yards (T.Branch).,0,15,2012 -20121216_KC@OAK,4,4,29,KC,OAK,2,1,62,(4:29) (No Huddle Shotgun) B.Quinn pass incomplete deep right to J.Baldwin (M.Huff).,0,15,2012 -20121216_KC@OAK,4,4,22,KC,OAK,3,1,62,(4:22) J.Charles up the middle to KC 38 for no gain (T.Branch).,0,15,2012 -20121216_KC@OAK,4,3,59,KC,OAK,4,1,62,(3:59) (Shotgun) B.Quinn pass short right to D.McCluster to KC 38 for no gain (J.Hanson).,0,15,2012 -20121216_KC@OAK,4,3,48,OAK,KC,1,10,38,(3:48) D.McFadden right end to KC 35 for 3 yards (J.Houston).,15,0,2012 -20121216_KC@OAK,4,3,3,OAK,KC,2,7,35,(3:03) M.Goodson up the middle to KC 29 for 6 yards (S.Smith).,15,0,2012 -20121216_KC@OAK,4,2,19,OAK,KC,3,1,29,(2:19) T.Bergstrom reported in as eligible. C.Palmer up the middle to KC 27 for 2 yards (Team).,15,0,2012 -20121216_KC@OAK,4,2,0,OAK,KC,1,10,27,(2:00) D.McFadden left end to KC 28 for -1 yards (E.Berry).,15,0,2012 -20121216_KC@OAK,4,1,15,OAK,KC,2,11,28,(1:15) M.Goodson left guard to KC 26 for 2 yards (R.Pitoitua).,15,0,2012 -20121216_KC@OAK,4,0,31,OAK,KC,3,9,26,(:31) M.Goodson right tackle to KC 25 for 1 yard (D.Johnson).,15,0,2012 -20121216_KC@OAK,4,0,31,OAK,KC,,,26,                      ,15,0,2012 -20121216_SF@NE,1,0,0,SF,NE,,,26,D.Akers kicks 63 yards from SF 35 to NE 2. D.McCourty to NE 15 for 13 yards (C.Spillman; B.Miller).,0,0,2012 -20121216_SF@NE,1,59,53,NE,SF,1,10,85,(14:53) T.Brady pass short left to B.Lloyd to NE 22 for 7 yards (T.Brown).,0,0,2012 -20121216_SF@NE,1,59,33,NE,SF,2,3,78,(14:33) (No Huddle Shotgun) S.Ridley right tackle to NE 24 for 2 yards (C.Rogers). FUMBLES (C.Rogers) RECOVERED by SF-N.Bowman at NE 19. N.Bowman to NE 17 for 2 yards. New England challenged the fumble ruling and the play was REVERSED. (No Huddle Shotgun) S.Ridley right tackle to NE 24 for 2 yards (C.Rogers).,0,0,2012 -20121216_SF@NE,1,59,15,NE,SF,3,1,76,(14:15) S.Ridley left guard to NE 22 for -2 yards (N.Bowman).,0,0,2012 -20121216_SF@NE,1,58,46,NE,SF,4,3,78,(13:46) Z.Mesko punts 49 yards to SF 29 Center-D.Aiken. T.Ginn to SF 37 for 8 yards (M.Slater).,0,0,2012 -20121216_SF@NE,1,58,35,SF,NE,1,10,63,(13:35) C.Kaepernick pass short right to M.Crabtree to SF 48 for 11 yards (A.Talib).,0,0,2012 -20121216_SF@NE,1,57,55,SF,NE,1,10,52,(12:55) (Shotgun) C.Kaepernick pass short left to M.Crabtree to NE 39 for 13 yards (M.Rivera).,0,0,2012 -20121216_SF@NE,1,57,15,SF,NE,1,10,39,(12:15) (Shotgun) C.Kaepernick pass short left to R.Moss to NE 27 for 12 yards (A.Talib; J.Mayo).,0,0,2012 -20121216_SF@NE,1,56,32,SF,NE,1,10,27,(11:32) (Shotgun) F.Gore left end pushed ob at NE 24 for 3 yards (J.Mayo).,0,0,2012 -20121216_SF@NE,1,56,9,SF,NE,2,7,24,(11:09) C.Kaepernick pass incomplete short right to L.James (D.Hightower).,0,0,2012 -20121216_SF@NE,1,56,0,SF,NE,3,7,24,(11:00) (Shotgun) C.Kaepernick pass deep left to R.Moss for 24 yards TOUCHDOWN. SF 84-Moss now has 15219 career rec yards passing Isaac Bruce for 3rd most all-time.,0,0,2012 -20121216_SF@NE,1,56,0,SF,NE,,,24,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20121216_SF@NE,1,56,0,SF,NE,,,24,D.Akers kicks 66 yards from SF 35 to NE -1. D.McCourty to NE 25 for 26 yards (T.Brock).,7,0,2012 -20121216_SF@NE,1,55,49,NE,SF,1,10,75,(10:49) (Shotgun) T.Brady pass deep left to B.Lloyd ran ob at NE 48 for 23 yards.,0,7,2012 -20121216_SF@NE,1,55,37,NE,SF,1,10,52,(10:37) (No Huddle Shotgun) T.Brady pass incomplete short right to S.Ridley [Ald.Smith].,0,7,2012 -20121216_SF@NE,1,55,33,NE,SF,2,10,52,(10:33) (Shotgun) S.Ridley up the middle to 50 for 2 yards (J.Smith; A.Brooks).,0,7,2012 -20121216_SF@NE,1,54,59,NE,SF,3,8,50,(9:59) (Shotgun) T.Brady pass incomplete short left to W.Welker [Ald.Smith].,0,7,2012 -20121216_SF@NE,1,54,54,NE,SF,4,8,50,(9:54) Z.Mesko punts 42 yards to SF 8 Center-D.Aiken fair catch by T.Ginn.,0,7,2012 -20121216_SF@NE,1,54,48,SF,NE,1,10,92,(9:48) (Shotgun) F.Gore right guard to SF 12 for 4 yards (S.Gregory; R.Ninkovich).,7,0,2012 -20121216_SF@NE,1,54,13,SF,NE,2,6,88,(9:13) (Shotgun) F.Gore right tackle to SF 17 for 5 yards (D.Hightower; V.Wilfork).,7,0,2012 -20121216_SF@NE,1,53,43,SF,NE,3,1,86,(8:43) C.Kaepernick FUMBLES (Aborted) at SF 14 and recovers at SF 14. C.Kaepernick to SF 14 for no gain (N.Solder).,7,0,2012 -20121216_SF@NE,1,53,25,SF,NE,4,4,86,(8:25) A.Lee punts 56 yards to NE 30 Center-B.Jennings. W.Welker to NE 48 for 18 yards (N.Bowman). PENALTY on NE-M.Rivera Offensive Holding 10 yards enforced at NE 30.,7,0,2012 -20121216_SF@NE,1,53,2,NE,SF,1,10,80,(8:02) T.Brady pass deep right intended for W.Welker INTERCEPTED by C.Rogers at SF 42. C.Rogers to NE 5 for 53 yards (T.Brady).,0,7,2012 -20121216_SF@NE,1,52,42,SF,NE,1,5,5,(7:42) C.Kaepernick pass incomplete short left to M.Crabtree.,7,0,2012 -20121216_SF@NE,1,52,39,SF,NE,2,5,5,(7:39) (Shotgun) C.Kaepernick pass short right to D.Walker to NE 4 for 1 yard (S.Gregory). FUMBLES (S.Gregory) RECOVERED by NE-A.Talib at NE 10. A.Talib to NE 10 for no gain (D.Walker). Play Challenged by Replay Assistant and Upheld.,7,0,2012 -20121216_SF@NE,1,52,31,NE,SF,1,10,90,(7:31) S.Ridley left guard to NE 15 for 5 yards (R.McDonald).,0,7,2012 -20121216_SF@NE,1,52,4,NE,SF,2,5,85,(7:04) (No Huddle) S.Ridley left guard to NE 17 for 2 yards (N.Bowman).,0,7,2012 -20121216_SF@NE,1,51,27,NE,SF,3,3,83,(6:27) (Shotgun) T.Brady pass incomplete short left to A.Hernandez.,0,7,2012 -20121216_SF@NE,1,51,24,NE,SF,4,3,83,(6:24) Z.Mesko punts 49 yards to SF 34 Center-D.Aiken. T.Ginn to SF 41 for 7 yards (M.Hoomanawanui; T.Scott).,0,7,2012 -20121216_SF@NE,1,51,13,SF,NE,1,10,59,(6:13) L.James left end to SF 45 for 4 yards (D.Hightower).,7,0,2012 -20121216_SF@NE,1,50,34,SF,NE,2,6,59,(5:34) C.Kaepernick FUMBLES (Aborted) at SF 45 recovered by SF-F.Gore at SF 41. F.Gore to SF 41 for no gain (D.Hightower).,7,0,2012 -20121216_SF@NE,1,49,48,SF,NE,3,10,59,(4:48) (Shotgun) C.Kaepernick pass incomplete deep left to M.Crabtree. Penalty on SF-M.Crabtree Illegal Touch Pass declined.,7,0,2012 -20121216_SF@NE,1,49,43,SF,NE,4,10,59,(4:43) (Punt formation) D.Goldson left end to NE 28 for 31 yards (W.Welker).,7,0,2012 -20121216_SF@NE,1,48,56,SF,NE,1,10,28,(3:56) (Shotgun) F.Gore left guard to NE 28 for no gain (B.Spikes).,7,0,2012 -20121216_SF@NE,1,48,21,SF,NE,2,10,28,(3:21) (Shotgun) L.James left end pushed ob at NE 25 for 3 yards (A.Dennard).,7,0,2012 -20121216_SF@NE,1,47,55,SF,NE,3,7,25,(2:55) (Shotgun) F.Gore up the middle to NE 21 for 4 yards (V.Wilfork; J.Mayo).,7,0,2012 -20121216_SF@NE,1,47,19,SF,NE,4,3,21,(2:19) D.Akers 39 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,7,0,2012 -20121216_SF@NE,1,47,14,NE,SF,1,10,70,(2:14) yard line changed on reversal of field after missed FG (Shotgun) T.Brady pass short left to D.Woodhead to NE 37 for 7 yards (T.Brown).,0,7,2012 -20121216_SF@NE,1,46,48,NE,SF,2,3,63,(1:48) PENALTY on NE-L.Mankins False Start 5 yards enforced at NE 37 - No Play.,0,7,2012 -20121216_SF@NE,1,46,43,NE,SF,2,8,68,(1:43) (Shotgun) T.Brady pass short left to D.Woodhead to NE 29 for -3 yards (P.Willis).,0,7,2012 -20121216_SF@NE,1,46,9,NE,SF,3,11,71,(1:09) (Shotgun) T.Brady pass short right to S.Vereen to NE 33 for 4 yards (N.Bowman). FUMBLES (N.Bowman) RECOVERED by SF-C.Culliver at NE 34. C.Culliver ran ob at NE 34 for no gain.,0,7,2012 -20121216_SF@NE,1,46,0,SF,NE,1,10,34,(1:00) (Shotgun) C.Kaepernick pass incomplete deep left to V.Davis.,7,0,2012 -20121216_SF@NE,1,45,55,SF,NE,2,10,34,(:55) F.Gore left end to NE 25 for 9 yards (A.Talib). SF-F.Gore was injured during the play.,7,0,2012 -20121216_SF@NE,1,45,22,SF,NE,3,1,25,(:22) F.Gore left guard to NE 25 for no gain (K.Love; A.Talib). measurement,7,0,2012 -20121216_SF@NE,2,45,0,SF,NE,4,1,25,(15:00) D.Kilgore and L.Davis reported in as eligible. C.Kaepernick FUMBLES (Aborted) at NE 25 and recovers at NE 25. C.Kaepernick to NE 25 for no gain (K.Love).,7,0,2012 -20121216_SF@NE,2,44,55,NE,SF,1,10,75,(14:55) S.Ridley right guard to NE 26 for 1 yard (N.Bowman; P.Willis).,0,7,2012 -20121216_SF@NE,2,44,21,NE,SF,2,9,74,(14:21) (Shotgun) T.Brady pass short left to B.Lloyd to NE 36 for 10 yards (N.Bowman).,0,7,2012 -20121216_SF@NE,2,43,41,NE,SF,1,10,64,(13:41) T.Brady pass incomplete short left to A.Hernandez.,0,7,2012 -20121216_SF@NE,2,43,37,NE,SF,2,10,64,(13:37) D.Woodhead left tackle to NE 46 for 10 yards (N.Bowman; T.Brown).,0,7,2012 -20121216_SF@NE,2,43,9,NE,SF,1,10,54,(13:09) (No Huddle Shotgun) T.Brady pass short left to D.Woodhead to SF 48 for 6 yards (T.Brown).,0,7,2012 -20121216_SF@NE,2,42,38,NE,SF,2,4,48,(12:38) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to SF 38 for 10 yards (C.Culliver).,0,7,2012 -20121216_SF@NE,2,42,14,NE,SF,1,10,38,(12:14) (No Huddle Shotgun) D.Woodhead up the middle to SF 35 for 3 yards (R.Jean Francois).,0,7,2012 -20121216_SF@NE,2,41,50,NE,SF,2,7,35,(11:50) (No Huddle Shotgun) T.Brady pass incomplete deep middle to D.Branch. SF-T.Brown was injured during the play.,0,7,2012 -20121216_SF@NE,2,41,43,NE,SF,3,7,35,(11:43) (Shotgun) T.Brady pass short left to A.Hernandez to SF 32 for 3 yards (P.Willis; P.Cox).,0,7,2012 -20121216_SF@NE,2,40,59,NE,SF,4,4,32,(10:59) (Shotgun) T.Brady pass short middle to D.Branch to SF 23 for 9 yards (D.Goldson).,0,7,2012 -20121216_SF@NE,2,40,28,NE,SF,1,10,23,(10:28) (No Huddle) D.Woodhead up the middle to SF 14 for 9 yards (N.Bowman).,0,7,2012 -20121216_SF@NE,2,40,6,NE,SF,2,1,14,(10:06) (No Huddle) D.Woodhead left guard to SF 10 for 4 yards (R.McDonald).,0,7,2012 -20121216_SF@NE,2,39,33,NE,SF,1,10,10,(9:33) D.Woodhead up the middle to SF 7 for 3 yards (J.Smith).,0,7,2012 -20121216_SF@NE,2,38,56,NE,SF,2,7,7,(8:56) T.Brady pass incomplete short right to S.Ridley [C.Rogers].,0,7,2012 -20121216_SF@NE,2,38,51,NE,SF,3,7,7,(8:51) (Shotgun) T.Brady sacked at SF 13 for -6 yards (R.McDonald).,0,7,2012 -20121216_SF@NE,2,38,35,NE,SF,4,13,13,(8:35) S.Gostkowski 32 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,7,2012 -20121216_SF@NE,2,38,35,NE,SF,,,13,S.Gostkowski kicks 61 yards from NE 35 to SF 4. L.James to SF 20 for 16 yards (M.Rivera).,3,7,2012 -20121216_SF@NE,2,38,26,SF,NE,1,10,80,(8:26) (Shotgun) C.Kaepernick pass incomplete deep left to M.Crabtree. PENALTY on NE-A.Talib Defensive Pass Interference 35 yards enforced at SF 20 - No Play.,7,3,2012 -20121216_SF@NE,2,38,20,SF,NE,1,10,45,(8:20) (Shotgun) F.Gore left guard to NE 37 for 8 yards (B.Spikes).,7,3,2012 -20121216_SF@NE,2,37,46,SF,NE,2,2,37,(7:46) (Shotgun) F.Gore up the middle to NE 34 for 3 yards (J.Mayo).,7,3,2012 -20121216_SF@NE,2,37,6,SF,NE,1,10,34,(7:06) C.Kaepernick pass deep right to D.Walker for 34 yards TOUCHDOWN.,7,3,2012 -20121216_SF@NE,2,37,6,SF,NE,,,34,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,3,2012 -20121216_SF@NE,2,37,6,SF,NE,,,34,D.Akers kicks 64 yards from SF 35 to NE 1. D.McCourty to NE 18 for 17 yards (M.Wilhoite).,14,3,2012 -20121216_SF@NE,2,36,54,NE,SF,1,10,82,(6:54) S.Ridley up the middle to NE 22 for 4 yards (D.Whitner).,3,14,2012 -20121216_SF@NE,2,36,25,NE,SF,2,6,78,(6:25) T.Brady pass incomplete short right to B.Lloyd.,3,14,2012 -20121216_SF@NE,2,36,20,NE,SF,3,6,78,(6:20) (Shotgun) T.Brady pass incomplete short right to B.Lloyd.,3,14,2012 -20121216_SF@NE,2,36,16,NE,SF,4,6,78,(6:16) Z.Mesko punts 46 yards to SF 32 Center-D.Aiken downed by NE-M.Cole. PENALTY on SF-M.Wilhoite Offensive Holding 10 yards enforced at SF 32. New England challenged the kick touched ruling and the play was Upheld. (Timeout #2 at 06:04.),3,14,2012 -20121216_SF@NE,2,36,4,SF,NE,1,10,78,(6:04) C.Kaepernick pass incomplete deep left to M.Crabtree (S.Gregory).,14,3,2012 -20121216_SF@NE,2,35,57,SF,NE,2,10,78,(5:57) (Shotgun) F.Gore right guard to SF 29 for 7 yards (C.Jones). SF-M.Iupati was injured during the play.,14,3,2012 -20121216_SF@NE,2,35,22,SF,NE,3,3,71,(5:22) (Shotgun) C.Kaepernick pass short right to M.Crabtree pushed ob at SF 37 for 8 yards (J.Francis).,14,3,2012 -20121216_SF@NE,2,34,49,SF,NE,1,10,63,(4:49) F.Gore left tackle to NE 48 for 15 yards (J.Mayo).,14,3,2012 -20121216_SF@NE,2,34,13,SF,NE,1,10,48,(4:13) (Shotgun) F.Gore left tackle to NE 46 for 2 yards (D.Hightower; J.Mayo).,14,3,2012 -20121216_SF@NE,2,33,33,SF,NE,2,8,46,(3:33) C.Kaepernick pass short right to V.Davis to NE 36 for 10 yards (D.Hightower; D.McCourty).,14,3,2012 -20121216_SF@NE,2,32,42,SF,NE,1,10,36,(2:42) C.Kaepernick pass incomplete deep middle to V.Davis.,14,3,2012 -20121216_SF@NE,2,32,36,SF,NE,2,10,36,(2:36) L.James left end to NE 34 for 2 yards (J.Mayo).,14,3,2012 -20121216_SF@NE,2,32,0,SF,NE,3,8,34,(2:00) (Shotgun) C.Kaepernick scrambles right tackle to NE 15 for 19 yards (K.Arrington).,14,3,2012 -20121216_SF@NE,2,31,15,SF,NE,1,10,15,(1:15) (Shotgun) C.Kaepernick pass incomplete short left to R.Moss.,14,3,2012 -20121216_SF@NE,2,31,10,SF,NE,2,10,15,(1:10) F.Gore up the middle to NE 11 for 4 yards (K.Love; B.Spikes).,14,3,2012 -20121216_SF@NE,2,30,25,SF,NE,3,6,11,(:25) (Shotgun) F.Gore up the middle to NE 4 for 7 yards (D.Hightower).,14,3,2012 -20121216_SF@NE,2,30,18,SF,NE,1,4,4,(:18) (Shotgun) C.Kaepernick pass incomplete short right to R.Moss. PENALTY on SF-R.Moss Offensive Pass Interference 10 yards enforced at NE 4 - No Play.,14,3,2012 -20121216_SF@NE,2,30,14,SF,NE,1,14,14,(:14) (Shotgun) C.Kaepernick left end ran ob at NE 4 for 10 yards. NE-A.Dennard was injured during the play.,14,3,2012 -20121216_SF@NE,2,30,8,SF,NE,2,4,4,(:08) (Shotgun) F.Gore up the middle to NE 2 for 2 yards (C.Jones).,14,3,2012 -20121216_SF@NE,2,30,3,SF,NE,3,2,2,(:03) D.Akers 20 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,14,3,2012 -20121216_SF@NE,3,30,0,NE,SF,,,2,S.Gostkowski kicks 71 yards from NE 35 to SF -6. L.James to SF 30 for 36 yards (N.Ebner).,3,17,2012 -20121216_SF@NE,3,29,55,SF,NE,1,10,70,(14:55) (Shotgun) C.Kaepernick pass incomplete short middle to M.Crabtree.,17,3,2012 -20121216_SF@NE,3,29,51,SF,NE,2,10,70,(14:51) F.Gore up the middle to SF 25 for -5 yards (D.Hightower).,17,3,2012 -20121216_SF@NE,3,29,11,SF,NE,3,15,75,(14:11) (Shotgun) C.Kaepernick pass short left to F.Gore to NE 49 for 26 yards (D.McCourty).,17,3,2012 -20121216_SF@NE,3,28,30,SF,NE,1,10,49,(13:30) (Shotgun) A.Dixon up the middle to NE 44 for 5 yards (B.Spikes; J.Mayo).,17,3,2012 -20121216_SF@NE,3,27,51,SF,NE,2,5,44,(12:51) C.Kaepernick pass short right to M.Crabtree to NE 38 for 6 yards (K.Arrington).,17,3,2012 -20121216_SF@NE,3,27,10,SF,NE,1,10,38,(12:10) F.Gore right guard to NE 34 for 4 yards (B.Spikes). PENALTY on NE-C.Jones Defensive Offside 5 yards enforced at NE 38 - No Play.,17,3,2012 -20121216_SF@NE,3,26,46,SF,NE,1,5,33,(11:46) C.Kaepernick pass deep middle intended for R.Moss INTERCEPTED by D.McCourty at NE -2. Touchback.,17,3,2012 -20121216_SF@NE,3,26,37,NE,SF,1,10,80,(11:37) (Shotgun) T.Brady pass deep right to B.Lloyd ran ob at NE 49 for 29 yards.,3,17,2012 -20121216_SF@NE,3,26,26,NE,SF,1,10,51,(11:26) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker.,3,17,2012 -20121216_SF@NE,3,26,23,NE,SF,2,10,51,(11:23) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to SF 40 for 11 yards (P.Willis).,3,17,2012 -20121216_SF@NE,3,26,0,NE,SF,1,10,40,(11:00) (No Huddle) S.Ridley right guard to SF 31 for 9 yards (D.Whitner). FUMBLES (D.Whitner) RECOVERED by SF-D.Goldson at SF 28. D.Goldson pushed ob at NE 6 for 66 yards (A.Hernandez). PENALTY on NE-L.Mankins Low Block 3 yards enforced at NE 6.,3,17,2012 -20121216_SF@NE,3,25,44,SF,NE,1,3,91,(10:44) L.Davis reported in as eligible. C.Kaepernick FUMBLES (Aborted) at SF 3 recovered by SF-F.Gore at SF 9. F.Gore for 91 yards TOUCHDOWN.,17,3,2012 -20121216_SF@NE,3,25,44,SF,NE,,,91,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,3,2012 -20121216_SF@NE,3,25,44,SF,NE,,,91,D.Akers kicks 66 yards from SF 35 to NE -1. D.McCourty Touchback.,24,3,2012 -20121216_SF@NE,3,25,38,NE,SF,1,10,80,(10:38) (Shotgun) T.Brady pass incomplete deep middle to A.Hernandez. PENALTY on SF-D.Goldson Unnecessary Roughness 15 yards enforced at NE 20.,3,24,2012 -20121216_SF@NE,3,25,34,NE,SF,1,10,65,(10:34) (Shotgun) T.Brady pass short left intended for A.Hernandez INTERCEPTED by Ald.Smith at NE 33. Ald.Smith to NE 27 for 6 yards (S.Vollmer).,3,24,2012 -20121216_SF@NE,3,25,26,SF,NE,1,10,27,(10:26) (Shotgun) C.Kaepernick pass deep middle to M.Crabtree for 27 yards TOUCHDOWN.,24,3,2012 -20121216_SF@NE,3,25,26,SF,NE,,,27,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,24,3,2012 -20121216_SF@NE,3,25,26,SF,NE,,,27,D.Akers kicks 63 yards from SF 35 to NE 2. D.McCourty to NE 27 for 25 yards (A.Dixon; T.Brock).,31,3,2012 -20121216_SF@NE,3,25,14,NE,SF,1,10,73,(10:14) (Shotgun) T.Brady pass incomplete short left to D.Woodhead.,3,31,2012 -20121216_SF@NE,3,25,10,NE,SF,2,10,73,(10:10) T.Brady pass incomplete short left to A.Hernandez.,3,31,2012 -20121216_SF@NE,3,25,6,NE,SF,3,10,73,(10:06) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 44 for 17 yards (D.Whitner; P.Willis).,3,31,2012 -20121216_SF@NE,3,24,44,NE,SF,1,10,56,(9:44) (No Huddle) D.Woodhead up the middle to NE 49 for 5 yards (D.Goldson).,3,31,2012 -20121216_SF@NE,3,24,6,NE,SF,2,5,51,(9:06) (Shotgun) T.Brady pass short left to W.Welker to SF 44 for 7 yards (D.Goldson). NE 83-Welker 108th consecutive game with a reception.,3,31,2012 -20121216_SF@NE,3,23,41,NE,SF,1,10,44,(8:41) (No Huddle Shotgun) T.Brady pass short middle to A.Hernandez to SF 39 for 5 yards (D.Whitner).,3,31,2012 -20121216_SF@NE,3,23,19,NE,SF,2,5,39,(8:19) (No Huddle) T.Brady pass short right to D.Woodhead to SF 32 for 7 yards (N.Bowman).,3,31,2012 -20121216_SF@NE,3,22,50,NE,SF,1,10,32,(7:50) (No Huddle Shotgun) T.Brady pass short middle to D.Branch to SF 25 for 7 yards (T.Brown).,3,31,2012 -20121216_SF@NE,3,22,24,NE,SF,2,3,25,(7:24) (No Huddle) D.Woodhead right guard to SF 22 for 3 yards (N.Bowman).,3,31,2012 -20121216_SF@NE,3,22,1,NE,SF,1,10,22,(7:01) (No Huddle) T.Brady pass deep right to B.Lloyd for 22 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on NE Illegal Shift 5 yards enforced at SF 22 - No Play.,3,31,2012 -20121216_SF@NE,3,21,55,NE,SF,1,15,27,(6:55) T.Brady pass incomplete short right to D.Woodhead.,3,31,2012 -20121216_SF@NE,3,21,52,NE,SF,2,15,27,(6:52) (Shotgun) T.Brady pass short left to A.Hernandez to SF 21 for 6 yards (C.Rogers; P.Willis).,3,31,2012 -20121216_SF@NE,3,21,26,NE,SF,3,9,21,(6:26) (No Huddle Shotgun) D.Woodhead right guard to SF 6 for 15 yards (P.Willis; D.Whitner).,3,31,2012 -20121216_SF@NE,3,21,4,NE,SF,1,6,6,(6:04) (No Huddle) D.Woodhead left guard for 6 yards TOUCHDOWN.,3,31,2012 -20121216_SF@NE,3,21,4,NE,SF,,,6,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,3,31,2012 -20121216_SF@NE,3,21,4,NE,SF,,,6,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,10,31,2012 -20121216_SF@NE,3,20,59,SF,NE,1,10,80,(5:59) L.James left end to SF 37 for 17 yards (P.Chung).,31,10,2012 -20121216_SF@NE,3,20,16,SF,NE,1,10,63,(5:16) F.Gore left tackle to SF 35 for -2 yards (R.Ninkovich).,31,10,2012 -20121216_SF@NE,3,19,36,SF,NE,2,12,65,(4:36) (Shotgun) A.Dixon right guard to SF 37 for 2 yards (V.Wilfork; R.Ninkovich).,31,10,2012 -20121216_SF@NE,3,18,53,SF,NE,3,10,63,(3:53) (Shotgun) C.Kaepernick pass incomplete deep right to M.Crabtree.,31,10,2012 -20121216_SF@NE,3,18,47,SF,NE,4,10,63,(3:47) A.Lee punts 51 yards to NE 12 Center-B.Jennings. W.Welker to NE 14 for 2 yards (T.Brock).,31,10,2012 -20121216_SF@NE,3,18,39,NE,SF,1,10,86,(3:39) T.Brady pass deep right to A.Hernandez to NE 34 for 20 yards (D.Whitner). NE 12-Brady now has 4000 pass yds for the season. 5th career 4000-yd season 5th player in NFL history to do that (Marino Brees Favre P. Manning).,10,31,2012 -20121216_SF@NE,3,18,6,NE,SF,1,10,66,(3:06) (Shotgun) T.Brady pass incomplete deep middle to D.Woodhead (D.Whitner).,10,31,2012 -20121216_SF@NE,3,17,57,NE,SF,2,10,66,(2:57) (Shotgun) T.Brady pass short left to B.Lloyd to NE 47 for 13 yards (T.Brown).,10,31,2012 -20121216_SF@NE,3,17,30,NE,SF,1,10,53,(2:30) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to SF 44 for 9 yards (P.Willis).,10,31,2012 -20121216_SF@NE,3,17,9,NE,SF,2,1,44,(2:09) (No Huddle Shotgun) T.Brady pass deep right to M.Hoomanawanui to SF 3 for 41 yards (D.Whitner).,10,31,2012 -20121216_SF@NE,3,16,41,NE,SF,1,3,3,(1:41) (No Huddle) D.Woodhead right tackle to SF 1 for 2 yards (P.Willis).,10,31,2012 -20121216_SF@NE,3,16,12,NE,SF,2,1,1,(1:12) D.Woodhead right guard to SF 1 for no gain (P.Willis; W.Tukuafu).,10,31,2012 -20121216_SF@NE,3,15,31,NE,SF,3,1,1,(:31) N.Solder reported in as eligible. S.Ridley left guard to SF 1 for no gain (Ald.Smith; N.Bowman).,10,31,2012 -20121216_SF@NE,4,15,0,NE,SF,4,1,1,(15:00) N.Solder reported in as eligible. T.Brady up the middle for 1 yard TOUCHDOWN. NE 12-Brady 4th rush TD of season (career best).,10,31,2012 -20121216_SF@NE,4,15,0,NE,SF,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,10,31,2012 -20121216_SF@NE,4,15,0,NE,SF,,,1,S.Gostkowski kicks 66 yards from NE 35 to SF -1. L.James to SF 18 for 19 yards (P.Chung; M.Slater).,17,31,2012 -20121216_SF@NE,4,14,53,SF,NE,1,10,82,(14:53) (Shotgun) C.Kaepernick pass short left to M.Crabtree to SF 22 for 4 yards (J.Mayo).,31,17,2012 -20121216_SF@NE,4,14,12,SF,NE,2,6,78,(14:12) (Shotgun) F.Gore left tackle to SF 24 for 2 yards (B.Deaderick; P.Chung).,31,17,2012 -20121216_SF@NE,4,13,32,SF,NE,3,4,76,(13:32) (Shotgun) C.Kaepernick pass incomplete short left to L.James.,31,17,2012 -20121216_SF@NE,4,13,27,SF,NE,4,4,76,(13:27) A.Lee punts 53 yards to NE 23 Center-B.Jennings. W.Welker to NE 34 for 11 yards (L.Grant).,31,17,2012 -20121216_SF@NE,4,13,17,NE,SF,1,10,66,(13:17) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,17,31,2012 -20121216_SF@NE,4,13,13,NE,SF,2,10,66,(13:13) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 42 for 8 yards (N.Bowman).,17,31,2012 -20121216_SF@NE,4,12,49,NE,SF,3,2,58,(12:49) (No Huddle Shotgun) T.Brady pass incomplete short middle to B.Lloyd.,17,31,2012 -20121216_SF@NE,4,12,44,NE,SF,4,2,58,(12:44) (No Huddle) T.Brady pass short right to W.Welker pushed ob at SF 43 for 15 yards (C.Culliver).,17,31,2012 -20121216_SF@NE,4,12,30,NE,SF,1,10,43,(12:30) (No Huddle) T.Brady pass incomplete deep right to W.Welker. flea flicker,17,31,2012 -20121216_SF@NE,4,12,23,NE,SF,2,10,43,(12:23) T.Brady pass incomplete deep middle to B.Lloyd. PENALTY on SF-T.Brown Defensive Pass Interference 38 yards enforced at SF 43 - No Play.,17,31,2012 -20121216_SF@NE,4,12,17,NE,SF,1,5,5,(12:17) (Shotgun) T.Brady pass short left to A.Hernandez for 5 yards TOUCHDOWN. NE 12-Brady 46th straight regular season game with a TD pass 3rd longest all-time. NE 12-Brady 30th TD pass of season 4th 30-TD pass season tying Dan Marino for 4th most all-time.,17,31,2012 -20121216_SF@NE,4,12,17,NE,SF,,,5,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,17,31,2012 -20121216_SF@NE,4,12,17,NE,SF,,,5,S.Gostkowski kicks 58 yards from NE 35 to SF 7. D.Walker to SF 25 for 18 yards (M.Cole).,24,31,2012 -20121216_SF@NE,4,12,7,SF,NE,1,10,75,(12:07) C.Kaepernick pass incomplete short right to D.Walker. PENALTY on SF-A.Boone Illegal Use of Hands 10 yards enforced at SF 25 - No Play.,31,24,2012 -20121216_SF@NE,4,12,0,SF,NE,1,20,85,(12:00) (Shotgun) F.Gore left guard to SF 26 for 11 yards (J.Mayo; P.Chung).,31,24,2012 -20121216_SF@NE,4,11,23,SF,NE,2,9,74,(11:23) C.Kaepernick sacked at SF 13 for -13 yards (R.Ninkovich).,31,24,2012 -20121216_SF@NE,4,10,48,SF,NE,3,22,87,(10:48) (Shotgun) C.Kaepernick pass short middle to F.Gore to SF 21 for 8 yards (J.Francis).,31,24,2012 -20121216_SF@NE,4,10,7,SF,NE,4,14,79,(10:07) A.Lee punts 64 yards to NE 15 Center-B.Jennings. W.Welker ran ob at NE 25 for 10 yards. PENALTY on NE-M.Cole Offensive Holding 7 yards enforced at NE 15.,31,24,2012 -20121216_SF@NE,4,9,56,NE,SF,1,10,92,(9:56) (Shotgun) T.Brady pass incomplete short left to A.Hernandez.,24,31,2012 -20121216_SF@NE,4,9,53,NE,SF,2,10,92,(9:53) (Shotgun) T.Brady pass short right to B.Lloyd to NE 18 for 10 yards (C.Culliver). NE 12-Brady 53rd career 300-yard game passing Kurt Warner for 5th most all-time. NE 85-Lloyd 15th career 100-yard game.,24,31,2012 -20121216_SF@NE,4,9,18,NE,SF,1,10,82,(9:18) (No Huddle Shotgun) T.Brady pass deep right to B.Lloyd to SF 29 for 53 yards (C.Culliver).,24,31,2012 -20121216_SF@NE,4,8,35,NE,SF,1,10,29,(8:35) (No Huddle) T.Brady up the middle to SF 24 for 5 yards (W.Tukuafu).,24,31,2012 -20121216_SF@NE,4,8,2,NE,SF,2,5,24,(8:02) (No Huddle Shotgun) T.Brady pass short left to D.Branch to SF 11 for 13 yards (T.Brown).,24,31,2012 -20121216_SF@NE,4,7,26,NE,SF,1,10,11,(7:26) PENALTY on SF-R.Jean Francois Encroachment 5 yards enforced at SF 11 - No Play.,24,31,2012 -20121216_SF@NE,4,7,7,NE,SF,1,5,6,(7:07) (Shotgun) T.Brady scrambles up the middle to SF 1 for 5 yards (D.Goldson).,24,31,2012 -20121216_SF@NE,4,6,45,NE,SF,1,1,1,(6:45) D.Woodhead left tackle for 1 yard TOUCHDOWN. NE now has surpassed 500 points for the season 1st team in NFL history to score 500 points in 4 different seasons.,24,31,2012 -20121216_SF@NE,4,6,45,NE,SF,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,24,31,2012 -20121216_SF@NE,4,6,45,NE,SF,,,1,S.Gostkowski kicks 65 yards from NE 35 to SF 0. L.James to NE 38 for 62 yards (D.McCourty).,31,31,2012 -20121216_SF@NE,4,6,33,SF,NE,1,10,38,(6:33) (Shotgun) C.Kaepernick pass short left to M.Crabtree for 38 yards TOUCHDOWN.,31,31,2012 -20121216_SF@NE,4,6,33,SF,NE,,,38,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,31,31,2012 -20121216_SF@NE,4,6,33,SF,NE,,,38,D.Akers kicks 66 yards from SF 35 to NE -1. D.McCourty to NE 25 for 26 yards (M.Wilhoite; D.McBath).,38,31,2012 -20121216_SF@NE,4,6,20,NE,SF,1,10,75,(6:20) (Shotgun) T.Brady pass short middle to W.Welker to NE 38 for 13 yards (C.Rogers).,31,38,2012 -20121216_SF@NE,4,5,54,NE,SF,1,10,62,(5:54) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to 50 for 12 yards (C.Rogers). NE 83-Welker 5th career 100-reception season new NFL record (Harrison & Rice 4).,31,38,2012 -20121216_SF@NE,4,5,35,NE,SF,1,10,50,(5:35) (No Huddle Shotgun) T.Brady pass incomplete deep right to B.Lloyd [A.Brooks].,31,38,2012 -20121216_SF@NE,4,5,29,NE,SF,2,10,50,(5:29) (Shotgun) T.Brady sacked at NE 45 for -5 yards (R.McDonald). Penalty on NE-S.Vollmer Illegal Use of Hands declined.,31,38,2012 -20121216_SF@NE,4,5,5,NE,SF,3,15,55,(5:05) (Shotgun) T.Brady sacked at NE 38 for -7 yards (R.Jean Francois).,31,38,2012 -20121216_SF@NE,4,5,1,NE,SF,4,22,62,(5:01) Z.Mesko punts 42 yards to SF 20 Center-D.Aiken. T.Ginn MUFFS catch and recovers at SF 28. T.Ginn to SF 28 for no gain (M.Slater).,31,38,2012 -20121216_SF@NE,4,4,40,SF,NE,1,10,72,(4:40) F.Gore right end to SF 30 for 2 yards (B.Spikes).,38,31,2012 -20121216_SF@NE,4,4,1,SF,NE,2,8,70,(4:01) (Shotgun) L.James right guard to SF 34 for 4 yards (J.Francis; J.Mayo).,38,31,2012 -20121216_SF@NE,4,3,15,SF,NE,3,4,66,(3:15) (Shotgun) L.James left tackle to SF 35 for 1 yard (R.Ninkovich; J.Mayo).,38,31,2012 -20121216_SF@NE,4,3,9,SF,NE,4,3,65,(3:09) A.Lee punts 59 yards to NE 6 Center-B.Jennings. W.Welker to NE 18 for 12 yards (B.Miller). PENALTY on NE-J.Develin Offensive Holding 3 yards enforced at NE 6.,38,31,2012 -20121216_SF@NE,4,2,56,NE,SF,1,10,97,(2:56) (Shotgun) T.Brady pass incomplete short left to A.Hernandez.,31,38,2012 -20121216_SF@NE,4,2,51,NE,SF,2,10,97,(2:51) (Shotgun) T.Brady pass short right to B.Lloyd to NE 12 for 9 yards (C.Culliver).,31,38,2012 -20121216_SF@NE,4,2,30,NE,SF,3,1,88,(2:30) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Woodhead.,31,38,2012 -20121216_SF@NE,4,2,24,NE,SF,4,1,88,(2:24) (Shotgun) T.Brady pass incomplete short left to D.Woodhead.,31,38,2012 -20121216_SF@NE,4,2,20,SF,NE,1,10,12,(2:20) L.James right end to NE 11 for 1 yard (D.Hightower).,38,31,2012 -20121216_SF@NE,4,2,13,SF,NE,2,9,11,(2:13) F.Gore up the middle to NE 9 for 2 yards (R.Ninkovich; B.Spikes). NE-B.Spikes was injured during the play.,38,31,2012 -20121216_SF@NE,4,2,8,SF,NE,3,7,9,(2:08) L.James left end to NE 10 for -1 yards (R.Ninkovich; J.Francis).,38,31,2012 -20121216_SF@NE,4,2,0,SF,NE,4,8,10,(2:00) D.Akers 28 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,38,31,2012 -20121216_SF@NE,4,2,0,SF,NE,,,10,D.Akers kicks 67 yards from SF 35 to NE -2. M.Slater Touchback.,41,31,2012 -20121216_SF@NE,4,1,56,NE,SF,1,10,80,(1:56) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at NE 32 for 12 yards.,31,41,2012 -20121216_SF@NE,4,1,51,NE,SF,1,10,68,(1:51) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to NE 39 for 7 yards (P.Willis). NE 12-Brady 3rd career 400-yard game.,31,41,2012 -20121216_SF@NE,4,1,30,NE,SF,2,3,61,(1:30) (No Huddle Shotgun) T.Brady pass incomplete short right to A.Hernandez.,31,41,2012 -20121216_SF@NE,4,1,27,NE,SF,3,3,61,(1:27) (No Huddle Shotgun) T.Brady pass incomplete short left to B.Lloyd.,31,41,2012 -20121216_SF@NE,4,1,24,NE,SF,4,3,61,(1:24) (No Huddle Shotgun) T.Brady pass short right to D.Branch to NE 47 for 8 yards (C.Culliver).,31,41,2012 -20121216_SF@NE,4,1,8,NE,SF,1,10,53,(1:08) (No Huddle) T.Brady spiked the ball to stop the clock.,31,41,2012 -20121216_SF@NE,4,1,8,NE,SF,2,10,53,(1:08) (No Huddle Shotgun) T.Brady pass short right to D.Woodhead ran ob at SF 47 for 6 yards.,31,41,2012 -20121216_SF@NE,4,1,4,NE,SF,3,4,47,(1:04) (No Huddle Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,31,41,2012 -20121216_SF@NE,4,0,58,NE,SF,4,4,47,(:58) (No Huddle Shotgun) T.Brady pass deep middle to B.Lloyd to SF 23 for 24 yards (T.Brown).,31,41,2012 -20121216_SF@NE,4,0,43,NE,SF,1,10,23,(:43) (No Huddle) T.Brady spiked the ball to stop the clock.,31,41,2012 -20121216_SF@NE,4,0,43,NE,SF,2,10,23,(:43) S.Gostkowski 41 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,31,41,2012 -20121216_SF@NE,4,0,43,NE,SF,,,23,(Onside Kick formation) S.Gostkowski kicks onside 14 yards from NE 35 to NE 49. D.Walker to NE 46 for 3 yards (B.Bolden).,34,41,2012 -20121216_SF@NE,4,0,36,SF,NE,1,10,46,(:36) C.Kaepernick kneels dead ball declared at NE 47 for -1 yards.,41,34,2012 -20121216_SF@NE,4,0,36,SF,NE,,,46,                      ,41,34,2012 -20121217_NYJ@TEN,1,0,0,NYJ,TEN,,,46,N.Folk kicks 62 yards from NYJ 35 to TEN 3. D.Reynaud to TEN 22 for 19 yards (A.Allen).,0,0,2012 -20121217_NYJ@TEN,1,59,55,TEN,NYJ,1,10,78,(14:55) J.Locker pass incomplete deep left to K.Britt.,0,0,2012 -20121217_NYJ@TEN,1,59,49,TEN,NYJ,2,10,78,(14:49) J.Locker pass short middle to N.Washington to TEN 37 for 15 yards (Y.Bell).,0,0,2012 -20121217_NYJ@TEN,1,59,10,TEN,NYJ,1,10,63,(14:10) C.Johnson right tackle to TEN 38 for 1 yard (B.Scott).,0,0,2012 -20121217_NYJ@TEN,1,58,33,TEN,NYJ,2,9,62,(13:33) (Shotgun) J.Locker pass short right to C.Stevens to TEN 43 for 5 yards (L.Landry).,0,0,2012 -20121217_NYJ@TEN,1,57,50,TEN,NYJ,3,4,57,(12:50) (Shotgun) J.Locker pass deep middle to N.Washington to NYJ 27 for 30 yards (Y.Bell).,0,0,2012 -20121217_NYJ@TEN,1,57,6,TEN,NYJ,1,10,27,(12:06) J.Locker pass incomplete short right to L.Hawkins.,0,0,2012 -20121217_NYJ@TEN,1,56,59,TEN,NYJ,2,10,27,(11:59) C.Johnson left guard to NYJ 18 for 9 yards (L.Landry; Y.Bell).,0,0,2012 -20121217_NYJ@TEN,1,56,18,TEN,NYJ,3,1,18,(11:18) C.Johnson right end to NYJ 28 for -10 yards (C.Pace).,0,0,2012 -20121217_NYJ@TEN,1,55,33,TEN,NYJ,4,11,28,(10:33) (Field Goal formation) R.Bironas 46 yard field goal is BLOCKED (M.Wilkerson) Center-B.Brinkley Holder-B.Kern. Yard line changed from 36 to 37 when possession flipped.,0,0,2012 -20121217_NYJ@TEN,1,55,26,NYJ,TEN,1,10,63,(10:26) S.Greene left guard to NYJ 43 for 6 yards (A.Ayers).,0,0,2012 -20121217_NYJ@TEN,1,54,49,NYJ,TEN,2,4,57,(9:49) M.Sanchez pass incomplete deep middle to B.Edwards.,0,0,2012 -20121217_NYJ@TEN,1,54,44,NYJ,TEN,3,4,57,(9:44) (Shotgun) M.Sanchez pass incomplete deep right to J.Cumberland. PENALTY on TEN-J.Babineaux Defensive Holding 5 yards enforced at NYJ 43 - No Play.,0,0,2012 -20121217_NYJ@TEN,1,54,37,NYJ,TEN,1,10,52,(9:37) S.Greene right tackle to TEN 49 for 3 yards (K.Wimbley).,0,0,2012 -20121217_NYJ@TEN,1,53,56,NYJ,TEN,2,7,49,(8:56) (Shotgun) S.Greene up the middle to TEN 48 for 1 yard (J.McCourty; D.Morgan).,0,0,2012 -20121217_NYJ@TEN,1,53,14,NYJ,TEN,3,6,48,(8:14) (Shotgun) M.Sanchez pass short right to B.Edwards to TEN 34 for 14 yards (C.Sensabaugh).,0,0,2012 -20121217_NYJ@TEN,1,52,37,NYJ,TEN,1,10,34,(7:37) S.Greene left guard to TEN 31 for 3 yards (T.Shaw).,0,0,2012 -20121217_NYJ@TEN,1,52,0,NYJ,TEN,2,7,31,(7:00) M.Sanchez pass short right to J.Cumberland to TEN 25 for 6 yards (T.Shaw).,0,0,2012 -20121217_NYJ@TEN,1,51,16,NYJ,TEN,3,1,25,(6:16) (Shotgun) Direct snap to T.Tebow. T.Tebow up the middle to TEN 23 for 2 yards (S.Marks; T.Shaw).,0,0,2012 -20121217_NYJ@TEN,1,50,36,NYJ,TEN,1,10,23,(5:36) (Shotgun) M.Sanchez pass incomplete short left to B.Edwards. PENALTY on TEN-A.Verner Defensive Pass Interference 9 yards enforced at TEN 23 - No Play.,0,0,2012 -20121217_NYJ@TEN,1,50,31,NYJ,TEN,1,10,14,(5:31) B.Powell left tackle pushed ob at TEN 12 for 2 yards (J.Babineaux). PENALTY on TEN-J.Babineaux Face Mask (15 Yards) 6 yards enforced at TEN 12.,0,0,2012 -20121217_NYJ@TEN,1,50,15,NYJ,TEN,1,6,6,(5:15) B.Powell right guard to TEN 4 for 2 yards (A.Ayers).,0,0,2012 -20121217_NYJ@TEN,1,49,31,NYJ,TEN,2,4,4,(4:31) (Shotgun) M.Sanchez pass incomplete short right to J.Kerley.,0,0,2012 -20121217_NYJ@TEN,1,49,27,NYJ,TEN,3,4,4,(4:27) (Shotgun) M.Sanchez pass short left to J.Cumberland for 4 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) M.Sanchez pass incomplete short left to J.Cumberland.,0,0,2012 -20121217_NYJ@TEN,1,49,22,NYJ,TEN,4,4,4,(4:22) (Field Goal formation) N.Folk 22 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 -20121217_NYJ@TEN,1,49,22,NYJ,TEN,,,4,N.Folk kicks 67 yards from NYJ 35 to TEN -2. D.Reynaud to TEN 19 for 21 yards (E.Lankster).,3,0,2012 -20121217_NYJ@TEN,1,49,11,TEN,NYJ,1,10,81,(4:11) C.Johnson right tackle to TEN 21 for 2 yards (M.Wilkerson; G.McIntyre).,0,3,2012 -20121217_NYJ@TEN,1,48,36,TEN,NYJ,2,8,79,(3:36) C.Johnson up the middle to TEN 28 for 7 yards (E.Smith).,0,3,2012 -20121217_NYJ@TEN,1,48,0,TEN,NYJ,3,1,72,(3:00) Q.Johnson up the middle to TEN 29 for 1 yard (M.Devito). TEN-K.Matthews was injured during the play.,0,3,2012 -20121217_NYJ@TEN,1,47,20,TEN,NYJ,1,10,71,(2:20) (Shotgun) J.Locker scrambles right guard to TEN 44 for 15 yards (D.Harris).,0,3,2012 -20121217_NYJ@TEN,1,46,32,TEN,NYJ,1,10,56,(1:32) C.Johnson right tackle to TEN 44 for no gain (C.Pace).,0,3,2012 -20121217_NYJ@TEN,1,45,51,TEN,NYJ,2,10,56,(:51) J.Locker pass short right to Q.Johnson to TEN 46 for 2 yards (Y.Bell).,0,3,2012 -20121217_NYJ@TEN,1,45,7,TEN,NYJ,3,8,54,(:07) (Shotgun) J.Locker pass short right to N.Washington to NYJ 49 for 5 yards (K.Wilson).,0,3,2012 -20121217_NYJ@TEN,2,45,0,TEN,NYJ,4,3,49,(15:00) (Punt formation) B.Kern punts 35 yards to NYJ 14 Center-B.Brinkley fair catch by J.Kerley.,0,3,2012 -20121217_NYJ@TEN,2,44,52,NYJ,TEN,1,10,86,(14:52) (Shotgun) Direct snap to S.Greene. S.Greene right tackle to NYJ 24 for 10 yards (M.Griffin).,3,0,2012 -20121217_NYJ@TEN,2,44,10,NYJ,TEN,1,10,76,(14:10) PENALTY on TEN-S.Marks Encroachment 5 yards enforced at NYJ 24 - No Play.,3,0,2012 -20121217_NYJ@TEN,2,43,49,NYJ,TEN,1,5,71,(13:49) S.Greene left tackle to NYJ 31 for 2 yards (T.Shaw).,3,0,2012 -20121217_NYJ@TEN,2,43,8,NYJ,TEN,2,3,69,(13:08) (Shotgun) M.Sanchez pass short left to S.Greene to NYJ 28 for -3 yards (Z.Brown).,3,0,2012 -20121217_NYJ@TEN,2,42,24,NYJ,TEN,3,6,72,(12:24) (Shotgun) M.Sanchez pass short right to B.Powell pushed ob at NYJ 34 for 6 yards (J.McCourty).,3,0,2012 -20121217_NYJ@TEN,2,41,48,NYJ,TEN,1,10,66,(11:48) (No Huddle) B.Powell up the middle to NYJ 35 for 1 yard (A.Ayers).,3,0,2012 -20121217_NYJ@TEN,2,41,12,NYJ,TEN,2,9,65,(11:12) M.Sanchez pass short left to K.Reuland pushed ob at NYJ 39 for 4 yards (Z.Brown).,3,0,2012 -20121217_NYJ@TEN,2,40,28,NYJ,TEN,3,5,61,(10:28) (Shotgun) M.Sanchez scrambles up the middle to NYJ 42 for 3 yards (K.Wimbley).,3,0,2012 -20121217_NYJ@TEN,2,39,55,NYJ,TEN,4,2,58,(9:55) (Punt formation) R.Malone punts 53 yards to TEN 5 Center-T.Purdum downed by NYJ-N.Bellore.,3,0,2012 -20121217_NYJ@TEN,2,39,41,TEN,NYJ,1,10,95,(9:41) C.Johnson left guard to TEN 6 for 1 yard (G.McIntyre; D.Harris).,0,3,2012 -20121217_NYJ@TEN,2,39,6,TEN,NYJ,2,9,94,(9:06) C.Johnson up the middle for 94 yards TOUCHDOWN.,0,3,2012 -20121217_NYJ@TEN,2,39,6,TEN,NYJ,,,94,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,3,2012 -20121217_NYJ@TEN,2,39,6,TEN,NYJ,,,94,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,7,3,2012 -20121217_NYJ@TEN,2,38,53,NYJ,TEN,1,10,80,(8:53) (Shotgun) J.McKnight right end pushed ob at NYJ 31 for 11 yards (M.Griffin).,3,7,2012 -20121217_NYJ@TEN,2,38,37,NYJ,TEN,1,10,69,(8:37) (Shotgun) T.Tebow right end pushed ob at NYJ 43 for 12 yards (M.Griffin).,3,7,2012 -20121217_NYJ@TEN,2,38,13,NYJ,TEN,1,10,57,(8:13) (Shotgun) T.Tebow up the middle to NYJ 44 for 1 yard (Z.Brown).,3,7,2012 -20121217_NYJ@TEN,2,37,36,NYJ,TEN,2,9,56,(7:36) (Shotgun) T.Tebow sacked at NYJ 42 for -2 yards (Z.Brown).,3,7,2012 -20121217_NYJ@TEN,2,36,54,NYJ,TEN,3,11,58,(6:54) (Shotgun) PENALTY on NYJ-T.Tebow Delay of Game 5 yards enforced at NYJ 42 - No Play.,3,7,2012 -20121217_NYJ@TEN,2,36,31,NYJ,TEN,3,16,63,(6:31) (Shotgun) T.Tebow pass incomplete deep right to J.Kerley.,3,7,2012 -20121217_NYJ@TEN,2,36,21,NYJ,TEN,4,16,63,(6:21) (Punt formation) R.Malone punts 46 yards to TEN 17 Center-T.Purdum downed by NYJ-L.Landry.,3,7,2012 -20121217_NYJ@TEN,2,36,9,TEN,NYJ,1,10,83,(6:09) J.Locker pass incomplete deep left to K.Britt.,7,3,2012 -20121217_NYJ@TEN,2,36,2,TEN,NYJ,2,10,83,(6:02) C.Johnson right tackle to TEN 26 for 9 yards (L.Landry). PENALTY on TEN-D.Lutui Offensive Holding 8 yards enforced at TEN 17 - No Play.,7,3,2012 -20121217_NYJ@TEN,2,35,38,TEN,NYJ,2,18,91,(5:38) C.Johnson up the middle to TEN 8 for -1 yards (M.Wilkerson; M.Devito).,7,3,2012 -20121217_NYJ@TEN,2,34,52,TEN,NYJ,3,19,92,(4:52) (Shotgun) J.Locker scrambles up the middle to TEN 15 for 7 yards (Q.Coples; D.Harris).,7,3,2012 -20121217_NYJ@TEN,2,34,11,TEN,NYJ,4,12,85,(4:11) (Punt formation) B.Kern punts 45 yards to NYJ 40 Center-B.Brinkley fair catch by J.Kerley.,7,3,2012 -20121217_NYJ@TEN,2,34,3,NYJ,TEN,1,10,60,(4:03) M.Sanchez pass short right intended for J.Kerley INTERCEPTED by J.McCourty at TEN 47. J.McCourty ran ob at TEN 48 for 1 yard. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,3,7,2012 -20121217_NYJ@TEN,2,33,56,TEN,NYJ,1,10,52,(3:56) (Shotgun) C.Johnson up the middle to NYJ 49 for 3 yards (M.Devito).,7,3,2012 -20121217_NYJ@TEN,2,33,20,TEN,NYJ,2,7,49,(3:20) J.Locker pass incomplete short middle to C.Stevens (M.Wilkerson L.Landry).,7,3,2012 -20121217_NYJ@TEN,2,33,15,TEN,NYJ,3,7,49,(3:15) (Shotgun) J.Locker sacked ob at TEN 49 for -2 yards (C.Pace).,7,3,2012 -20121217_NYJ@TEN,2,32,43,TEN,NYJ,4,9,51,(2:43) (Punt formation) B.Kern punts 44 yards to NYJ 7 Center-B.Brinkley fair catch by J.Kerley.,7,3,2012 -20121217_NYJ@TEN,2,32,34,NYJ,TEN,1,10,93,(2:34) PENALTY on NYJ-K.Reuland False Start 3 yards enforced at NYJ 7 - No Play.,3,7,2012 -20121217_NYJ@TEN,2,32,34,NYJ,TEN,1,13,96,(2:34) S.Greene up the middle to NYJ 7 for 3 yards (J.Casey).,3,7,2012 -20121217_NYJ@TEN,2,32,29,NYJ,TEN,2,10,93,(2:29) PENALTY on TEN-S.Marks Encroachment 5 yards enforced at NYJ 7 - No Play.,3,7,2012 -20121217_NYJ@TEN,2,32,29,NYJ,TEN,2,5,88,(2:29) (Shotgun) S.Greene up the middle to NYJ 15 for 3 yards (M.Martin; D.Morgan).,3,7,2012 -20121217_NYJ@TEN,2,32,0,NYJ,TEN,3,2,85,(2:00) (Shotgun) M.Sanchez scrambles up the middle to NYJ 16 for 1 yard (K.Wimbley; S.Marks). Penalty on NYJ-A.Howard Offensive Holding declined.,3,7,2012 -20121217_NYJ@TEN,2,31,52,NYJ,TEN,4,1,84,(1:52) (Punt formation) R.Malone punts 42 yards to TEN 42 Center-T.Purdum. D.Reynaud to TEN 41 for -1 yards (E.Lankster).,3,7,2012 -20121217_NYJ@TEN,2,31,42,TEN,NYJ,1,10,59,(1:42) (Shotgun) J.Locker pass short right end to K.Wright to NYJ 45 for 14 yards (D.Harris).,7,3,2012 -20121217_NYJ@TEN,2,31,21,TEN,NYJ,1,10,45,(1:21) (No Huddle Shotgun) J.Locker sacked at TEN 45 for -10 yards (G.McIntyre).,7,3,2012 -20121217_NYJ@TEN,2,31,10,TEN,NYJ,2,20,55,(1:10) (Shotgun) J.Locker pass short right to M.Preston pushed ob at NYJ 45 for 10 yards (E.Lankster).,7,3,2012 -20121217_NYJ@TEN,2,31,5,TEN,NYJ,3,10,45,(1:05) (Shotgun) J.Locker pass incomplete deep right to M.Preston (L.Landry).,7,3,2012 -20121217_NYJ@TEN,2,30,58,TEN,NYJ,4,10,45,(:58) (Punt formation) B.Kern punts 45 yards to end zone Center-B.Brinkley Touchback.,7,3,2012 -20121217_NYJ@TEN,2,30,49,NYJ,TEN,1,10,80,(:49) M.Sanchez pass incomplete short right to J.Cumberland.,3,7,2012 -20121217_NYJ@TEN,2,30,46,NYJ,TEN,2,10,80,(:46) B.Powell right guard to NYJ 35 for 15 yards (M.Griffin).,3,7,2012 -20121217_NYJ@TEN,2,30,39,NYJ,TEN,1,10,65,(:39) (Shotgun) M.Sanchez sacked at NYJ 28 for -7 yards (D.Morgan).,3,7,2012 -20121217_NYJ@TEN,3,30,0,TEN,NYJ,,,65,R.Bironas kicks 62 yards from TEN 35 to NYJ 3. J.McKnight to NYJ 27 for 24 yards (T.Shaw; A.Afalava). PENALTY on TEN-T.Wilson Offside on Free Kick 5 yards enforced at NYJ 27.,7,3,2012 -20121217_NYJ@TEN,3,29,54,NYJ,TEN,1,10,68,(14:54) M.Sanchez pass short middle to B.Edwards to NYJ 48 for 16 yards (M.Griffin).,3,7,2012 -20121217_NYJ@TEN,3,29,15,NYJ,TEN,1,10,52,(14:15) S.Greene left tackle to NYJ 48 for no gain (J.Babineaux). PENALTY on NYJ-K.Reuland Offensive Holding 10 yards enforced at NYJ 48 - No Play.,3,7,2012 -20121217_NYJ@TEN,3,28,46,NYJ,TEN,1,20,62,(13:46) M.Sanchez pass incomplete short left to E.Gates [D.Morgan].,3,7,2012 -20121217_NYJ@TEN,3,28,42,NYJ,TEN,2,20,62,(13:42) M.Sanchez pass deep middle intended for J.Cumberland INTERCEPTED by J.McCourty at TEN 26. J.McCourty to NYJ 46 for 28 yards (B.Powell).,3,7,2012 -20121217_NYJ@TEN,3,28,29,TEN,NYJ,1,10,46,(13:29) C.Johnson up the middle to NYJ 43 for 3 yards (L.Landry).,7,3,2012 -20121217_NYJ@TEN,3,27,54,TEN,NYJ,2,7,43,(12:54) J.Locker pass short right to K.Britt ran ob at NYJ 36 for 7 yards.,7,3,2012 -20121217_NYJ@TEN,3,27,24,TEN,NYJ,1,10,36,(12:24) J.Locker scrambles up the middle to NYJ 35 for 1 yard (G.McIntyre).,7,3,2012 -20121217_NYJ@TEN,3,26,45,TEN,NYJ,2,9,35,(11:45) C.Johnson up the middle to NYJ 38 for -3 yards (B.Scott).,7,3,2012 -20121217_NYJ@TEN,3,26,4,TEN,NYJ,3,12,38,(11:04) (Shotgun) J.Locker left guard to NYJ 28 for 10 yards (L.Landry). PENALTY on TEN-F.Velasco Offensive Holding 10 yards enforced at NYJ 38 - No Play.,7,3,2012 -20121217_NYJ@TEN,3,25,45,TEN,NYJ,3,22,48,(10:45) (Shotgun) J.Locker pass short left to K.Wright to NYJ 44 for 4 yards (L.Landry; Q.Coples).,7,3,2012 -20121217_NYJ@TEN,3,25,3,TEN,NYJ,4,18,44,(10:03) (Punt formation) B.Kern punts 32 yards to NYJ 12 Center-B.Brinkley fair catch by J.Kerley.,7,3,2012 -20121217_NYJ@TEN,3,24,54,NYJ,TEN,1,10,88,(9:54) S.Greene right guard to NYJ 16 for 4 yards (Z.Brown; A.Ayers).,3,7,2012 -20121217_NYJ@TEN,3,24,16,NYJ,TEN,2,6,84,(9:16) M.Sanchez pass incomplete short right to M.Gilyard.,3,7,2012 -20121217_NYJ@TEN,3,24,12,NYJ,TEN,3,6,84,(9:12) (Shotgun) M.Sanchez pass short right to J.Kerley to NYJ 27 for 11 yards (J.McCourty; C.Sensabaugh).,3,7,2012 -20121217_NYJ@TEN,3,23,44,NYJ,TEN,1,10,73,(8:44) M.Sanchez pass deep left to J.Cumberland pushed ob at NYJ 49 for 22 yards (A.Verner).,3,7,2012 -20121217_NYJ@TEN,3,23,20,NYJ,TEN,1,10,51,(8:20) (Shotgun) T.Tebow FUMBLES (Aborted) at NYJ 46 recovered by NYJ-S.Greene at 50. S.Greene to 50 for no gain (S.Marks). PENALTY on TEN-J.Wynn Encroachment 5 yards enforced at NYJ 49 - No Play.,3,7,2012 -20121217_NYJ@TEN,3,22,54,NYJ,TEN,1,5,46,(7:54) M.Sanchez pass incomplete short left to J.Cumberland (J.Babineaux).,3,7,2012 -20121217_NYJ@TEN,3,22,47,NYJ,TEN,2,5,46,(7:47) M.Sanchez pass incomplete short middle to J.Kerley (S.Marks).,3,7,2012 -20121217_NYJ@TEN,3,22,43,NYJ,TEN,3,5,46,(7:43) (Shotgun) M.Sanchez sacked at NYJ 47 for -7 yards (Z.Brown).,3,7,2012 -20121217_NYJ@TEN,3,22,17,NYJ,TEN,4,12,53,(7:17) (Punt formation) R.Malone punts 41 yards to TEN 12 Center-T.Purdum. D.Reynaud pushed ob at TEN 30 for 18 yards (R.Malone). PENALTY on TEN-J.Babineaux Offensive Holding 8 yards enforced at TEN 16. Penalty on TEN-T.Campbell Offensive Holding declined.,3,7,2012 -20121217_NYJ@TEN,3,22,5,TEN,NYJ,1,10,92,(7:05) C.Johnson right guard to TEN 9 for 1 yard (M.Wilkerson; D.Harris).,7,3,2012 -20121217_NYJ@TEN,3,21,32,TEN,NYJ,2,9,91,(6:32) C.Johnson right tackle to TEN 7 for -2 yards (M.Devito).,7,3,2012 -20121217_NYJ@TEN,3,20,55,TEN,NYJ,3,11,93,(5:55) (Shotgun) J.Locker sacked at TEN 5 for -2 yards (Q.Coples).,7,3,2012 -20121217_NYJ@TEN,3,20,20,TEN,NYJ,4,13,95,(5:20) (Punt formation) B.Kern punts 30 yards to TEN 35 Center-B.Brinkley out of bounds.,7,3,2012 -20121217_NYJ@TEN,3,20,13,NYJ,TEN,1,10,35,(5:13) J.McKnight left end pushed ob at TEN 15 for 20 yards (J.Babineaux).,3,7,2012 -20121217_NYJ@TEN,3,19,42,NYJ,TEN,1,10,15,(4:42) J.McKnight left guard to TEN 11 for 4 yards (T.Shaw).,3,7,2012 -20121217_NYJ@TEN,3,19,3,NYJ,TEN,2,6,11,(4:03) J.McKnight up the middle to TEN 14 for -3 yards (S.Marks). FUMBLES (S.Marks) recovered by NYJ-M.Sanchez at TEN 17. M.Sanchez to TEN 17 for no gain (T.Shaw).,3,7,2012 -20121217_NYJ@TEN,3,18,25,NYJ,TEN,3,12,17,(3:25) M.Sanchez pass short left to J.Cumberland for 17 yards TOUCHDOWN.,3,7,2012 -20121217_NYJ@TEN,3,18,25,NYJ,TEN,,,17,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,3,7,2012 -20121217_NYJ@TEN,3,18,25,NYJ,TEN,,,17,N.Folk kicks 64 yards from NYJ 35 to TEN 1. D.Reynaud to TEN 36 for 35 yards (Y.Bell).,10,7,2012 -20121217_NYJ@TEN,3,18,12,TEN,NYJ,1,10,64,(3:12) J.Locker pass incomplete deep right to N.Washington (Q.Coples).,7,10,2012 -20121217_NYJ@TEN,3,18,5,TEN,NYJ,2,10,64,(3:05) J.Locker pass short right to M.Preston to NYJ 43 for 21 yards (Y.Bell).,7,10,2012 -20121217_NYJ@TEN,3,17,26,TEN,NYJ,1,10,43,(2:26) C.Johnson left end pushed ob at NYJ 40 for 3 yards (A.Cromartie).,7,10,2012 -20121217_NYJ@TEN,3,17,2,TEN,NYJ,2,7,40,(2:02) J.Locker pass short right to N.Washington to NYJ 28 for 12 yards (K.Wilson).,7,10,2012 -20121217_NYJ@TEN,3,16,29,TEN,NYJ,1,10,28,(1:29) J.Locker pass short right to K.Wright pushed ob at NYJ 15 for 13 yards (D.Harris).,7,10,2012 -20121217_NYJ@TEN,3,16,7,TEN,NYJ,1,10,15,(1:07) C.Johnson up the middle to NYJ 13 for 2 yards (M.Wilkerson; D.Harris).,7,10,2012 -20121217_NYJ@TEN,3,15,28,TEN,NYJ,2,8,13,(:28) (Shotgun) J.Locker left tackle for 13 yards TOUCHDOWN.,7,10,2012 -20121217_NYJ@TEN,3,15,28,TEN,NYJ,,,13,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,10,2012 -20121217_NYJ@TEN,3,15,28,TEN,NYJ,,,13,R.Bironas kicks 63 yards from TEN 35 to NYJ 2. J.McKnight to NYJ 30 for 28 yards (C.Sensabaugh).,14,10,2012 -20121217_NYJ@TEN,3,15,14,NYJ,TEN,1,10,70,(:14) B.Powell up the middle to NYJ 36 for 6 yards (A.Verner).,10,14,2012 -20121217_NYJ@TEN,4,15,0,NYJ,TEN,2,4,64,(15:00) B.Powell right guard to NYJ 38 for 2 yards (D.Morgan; J.Casey).,10,14,2012 -20121217_NYJ@TEN,4,14,18,NYJ,TEN,3,2,62,(14:18) PENALTY on NYJ-J.Smith False Start 5 yards enforced at NYJ 38 - No Play.,10,14,2012 -20121217_NYJ@TEN,4,13,50,NYJ,TEN,3,7,67,(13:50) M.Sanchez sacked at NYJ 25 for -8 yards (A.Ayers).,10,14,2012 -20121217_NYJ@TEN,4,13,26,NYJ,TEN,4,15,75,(13:26) (Punt formation) R.Malone punts 43 yards to TEN 32 Center-T.Purdum out of bounds.,10,14,2012 -20121217_NYJ@TEN,4,13,16,TEN,NYJ,1,10,68,(13:16) J.Locker pass incomplete deep left to K.Wright (A.Cromartie). TEN-K.Wright was injured during the play.,14,10,2012 -20121217_NYJ@TEN,4,13,6,TEN,NYJ,2,10,68,(13:06) C.Johnson left tackle to TEN 36 for 4 yards (B.Scott).,14,10,2012 -20121217_NYJ@TEN,4,12,26,TEN,NYJ,3,6,64,(12:26) (Shotgun) J.Locker sacked at TEN 28 for -8 yards (Y.Bell).,14,10,2012 -20121217_NYJ@TEN,4,11,53,TEN,NYJ,4,14,72,(11:53) (Punt formation) B.Kern punts 43 yards to NYJ 29 Center-B.Brinkley fair catch by J.Kerley. PENALTY on TEN-A.Afalava Offensive Holding 10 yards enforced at NYJ 29.,14,10,2012 -20121217_NYJ@TEN,4,11,45,NYJ,TEN,1,10,61,(11:45) M.Sanchez pass incomplete short middle to S.Greene.,10,14,2012 -20121217_NYJ@TEN,4,11,39,NYJ,TEN,2,10,61,(11:39) M.Sanchez pass incomplete short right to K.Reuland.,10,14,2012 -20121217_NYJ@TEN,4,11,35,NYJ,TEN,3,10,61,(11:35) (Shotgun) M.Sanchez pass short right to J.Cumberland to NYJ 47 for 8 yards (J.Babineaux).,10,14,2012 -20121217_NYJ@TEN,4,10,57,NYJ,TEN,4,2,53,(10:57) (Punt formation) R.Malone punts 29 yards to TEN 24 Center-T.Purdum fair catch by D.Reynaud.,10,14,2012 -20121217_NYJ@TEN,4,10,47,TEN,NYJ,1,10,76,(10:47) (Shotgun) J.Locker pass short right to C.Stevens pushed ob at TEN 35 for 11 yards (M.Devito).,14,10,2012 -20121217_NYJ@TEN,4,10,20,TEN,NYJ,1,10,65,(10:20) (Shotgun) C.Johnson right end to TEN 35 for no gain (E.Lankster). PENALTY on TEN-D.Lutui Offensive Holding 10 yards enforced at TEN 35 - No Play.,14,10,2012 -20121217_NYJ@TEN,4,9,56,TEN,NYJ,1,20,75,(9:56) J.Locker pass incomplete short left to N.Washington.,14,10,2012 -20121217_NYJ@TEN,4,9,50,TEN,NYJ,2,20,75,(9:50) (Shotgun) J.Locker up the middle to TEN 29 for 4 yards (B.Scott; M.Devito).,14,10,2012 -20121217_NYJ@TEN,4,9,4,TEN,NYJ,3,16,71,(9:04) (Shotgun) J.Locker pass incomplete deep right to L.Hawkins.,14,10,2012 -20121217_NYJ@TEN,4,8,57,TEN,NYJ,4,16,71,(8:57) (Punt formation) B.Kern punts 55 yards to NYJ 16 Center-B.Brinkley. J.Kerley to NYJ 23 for 7 yards (P.Bailey).,14,10,2012 -20121217_NYJ@TEN,4,8,44,NYJ,TEN,1,10,77,(8:44) S.Greene right tackle to NYJ 28 for 5 yards (T.Shaw).,10,14,2012 -20121217_NYJ@TEN,4,8,6,NYJ,TEN,2,5,72,(8:06) S.Greene right tackle to NYJ 34 for 6 yards (J.Babineaux).,10,14,2012 -20121217_NYJ@TEN,4,7,26,NYJ,TEN,1,10,66,(7:26) M.Sanchez pass deep right intended for B.Edwards INTERCEPTED by M.Griffin at TEN 24. M.Griffin to NYJ 36 for 40 yards (M.Sanchez; M.Slauson). PENALTY on TEN Offensive Holding 10 yards enforced at 50.,10,14,2012 -20121217_NYJ@TEN,4,7,9,TEN,NYJ,1,10,60,(7:09) C.Johnson left tackle to TEN 43 for 3 yards (S.Pouha).,14,10,2012 -20121217_NYJ@TEN,4,6,39,TEN,NYJ,2,7,57,(6:39) C.Johnson up the middle to TEN 45 for 2 yards (S.Pouha).,14,10,2012 -20121217_NYJ@TEN,4,5,57,TEN,NYJ,3,5,55,(5:57) (Shotgun) J.Locker right end pushed ob at TEN 49 for 4 yards (M.Wilkerson).,14,10,2012 -20121217_NYJ@TEN,4,5,28,TEN,NYJ,4,1,51,(5:28) (Punt formation) B.Kern punts 43 yards to NYJ 8 Center-B.Brinkley fair catch by J.Kerley.,14,10,2012 -20121217_NYJ@TEN,4,5,20,NYJ,TEN,1,10,92,(5:20) M.Sanchez pass short middle to S.Greene to NYJ 12 for 4 yards (Z.Brown).,10,14,2012 -20121217_NYJ@TEN,4,4,39,NYJ,TEN,2,6,88,(4:39) S.Greene right guard to NYJ 28 for 16 yards (A.Verner; J.Babineaux).,10,14,2012 -20121217_NYJ@TEN,4,4,1,NYJ,TEN,1,10,72,(4:01) M.Sanchez pass deep left to B.Edwards to NYJ 45 for 17 yards (A.Verner; M.Griffin).,10,14,2012 -20121217_NYJ@TEN,4,3,20,NYJ,TEN,1,10,55,(3:20) S.Greene right end to TEN 49 for 6 yards (T.Shaw).,10,14,2012 -20121217_NYJ@TEN,4,2,44,NYJ,TEN,2,4,49,(2:44) M.Sanchez pass incomplete deep left to M.Gilyard.,10,14,2012 -20121217_NYJ@TEN,4,2,38,NYJ,TEN,3,4,49,(2:38) (Shotgun) M.Sanchez pass incomplete short middle to M.Gilyard [D.Morgan]. PENALTY on TEN-W.Witherspoon Roughing the Passer 15 yards enforced at TEN 49 - No Play.,10,14,2012 -20121217_NYJ@TEN,4,2,33,NYJ,TEN,1,10,34,(2:33) (No Huddle Shotgun) M.Sanchez scrambles right end pushed ob at TEN 32 for 2 yards (J.McCourty).,10,14,2012 -20121217_NYJ@TEN,4,2,25,NYJ,TEN,2,8,32,(2:25) M.Sanchez pass short right to B.Powell to TEN 23 for 9 yards (J.McCourty) [J.Casey].,10,14,2012 -20121217_NYJ@TEN,4,2,0,NYJ,TEN,1,10,23,(2:00) M.Sanchez pass deep right intended for J.Cumberland INTERCEPTED by M.Griffin at TEN 2. M.Griffin to TEN 2 for no gain (K.Reuland).,10,14,2012 -20121217_NYJ@TEN,4,1,51,TEN,NYJ,1,10,98,(1:51) Q.Johnson up the middle to TEN 3 for 1 yard (C.Pace).,14,10,2012 -20121217_NYJ@TEN,4,1,45,TEN,NYJ,2,9,97,(1:45) C.Johnson up the middle to TEN 4 for 1 yard (M.Devito).,14,10,2012 -20121217_NYJ@TEN,4,1,39,TEN,NYJ,3,8,96,(1:39) C.Johnson left guard to TEN 6 for 2 yards (M.Devito; C.Pace).,14,10,2012 -20121217_NYJ@TEN,4,0,53,TEN,NYJ,4,6,94,(:53) (Punt formation) B.Kern punts 19 yards to TEN 25 Center-B.Brinkley out of bounds.,14,10,2012 -20121217_NYJ@TEN,4,0,47,TEN,NYJ,1,10,32,(:47) (Shotgun) M.Sanchez Aborted. N.Mangold FUMBLES at TEN 30 RECOVERED by TEN-Z.Brown at TEN 32. Z.Brown to TEN 32 for no gain (B.Powell).,14,10,2012 -20121217_NYJ@TEN,4,0,43,TEN,NYJ,1,10,68,(:43) J.Locker kneels to TEN 31 for -1 yards.,14,10,2012 -20121217_NYJ@TEN,4,0,43,TEN,NYJ,,,68,                      ,14,10,2012 -20121222_ATL@DET,1,0,0,ATL,DET,,,68,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,0,0,2012 -20121222_ATL@DET,1,60,0,DET,ATL,1,10,80,(15:00) R.Reiff reported in as eligible. M.Stafford pass short right to C.Johnson to DET 23 for 3 yards (A.Samuel).,0,0,2012 -20121222_ATL@DET,1,59,37,DET,ATL,2,7,77,(14:37) (Shotgun) M.Stafford pass short left to W.Heller to DET 28 for 5 yards (S.Nicholas).,0,0,2012 -20121222_ATL@DET,1,59,10,DET,ATL,3,2,72,(14:10) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 29 for 1 yard (T.DeCoud; D.Robinson).,0,0,2012 -20121222_ATL@DET,1,58,42,DET,ATL,4,1,71,(13:42) N.Harris punts 45 yards to ATL 26 Center-D.Muhlbach. D.Franks to ATL 35 for 9 yards (J.Wendling).,0,0,2012 -20121222_ATL@DET,1,58,30,ATL,DET,1,10,65,(13:30) M.Turner up the middle to ATL 35 for no gain (C.Avril; N.Suh).,0,0,2012 -20121222_ATL@DET,1,57,58,ATL,DET,2,10,65,(12:58) M.Ryan pass short middle to M.Turner to ATL 47 for 12 yards (J.Durant SamL.Hill) [K.Vanden Bosch].,0,0,2012 -20121222_ATL@DET,1,57,19,ATL,DET,1,10,53,(12:19) M.Ryan pass short middle to M.Turner to ATL 48 for 1 yard (S.Tulloch N.Suh).,0,0,2012 -20121222_ATL@DET,1,56,32,ATL,DET,2,9,52,(11:32) Jz. Rodgers left end to ATL 48 for no gain (J.Durant).,0,0,2012 -20121222_ATL@DET,1,55,58,ATL,DET,3,9,52,(10:58) (Shotgun) M.Ryan pass short right to J.Jones to DET 45 for 7 yards (S.Tulloch; C.Houston).,0,0,2012 -20121222_ATL@DET,1,55,19,ATL,DET,4,2,45,(10:19) M.Bosher punts 35 yards to DET 10 Center-J.Harris fair catch by S.Logan.,0,0,2012 -20121222_ATL@DET,1,55,11,DET,ATL,1,10,90,(10:11) M.Stafford pass incomplete short left to S.Chapas.,0,0,2012 -20121222_ATL@DET,1,55,5,DET,ATL,2,10,90,(10:05) (Shotgun) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 13 for 3 yards (V.Walker).,0,0,2012 -20121222_ATL@DET,1,54,27,DET,ATL,3,7,87,(9:27) (Shotgun) PENALTY on ATL-T.DeCoud Neutral Zone Infraction 5 yards enforced at DET 13 - No Play.,0,0,2012 -20121222_ATL@DET,1,54,11,DET,ATL,3,2,82,(9:11) (Shotgun) M.Stafford pass short middle to C.Johnson to ATL 33 for 49 yards (A.Samuel).,0,0,2012 -20121222_ATL@DET,1,53,20,DET,ATL,1,10,33,(8:20) M.Leshoure up the middle to ATL 31 for 2 yards (C.Peters). FUMBLES (C.Peters) RECOVERED by ATL-P.Jerry at ATL 31. P.Jerry to ATL 31 for no gain (G.Cherilus).,0,0,2012 -20121222_ATL@DET,1,53,12,ATL,DET,1,10,69,(8:12) M.Ryan pass short middle to R.White to ATL 47 for 16 yards (J.Green).,0,0,2012 -20121222_ATL@DET,1,52,38,ATL,DET,1,10,53,(7:38) M.Turner left end to ATL 46 for -1 yards (L.Jackson; J.Durant).,0,0,2012 -20121222_ATL@DET,1,51,59,ATL,DET,2,11,54,(6:59) (Shotgun) PENALTY on DET-N.Suh Encroachment 5 yards enforced at ATL 46 - No Play.,0,0,2012 -20121222_ATL@DET,1,51,40,ATL,DET,2,6,49,(6:40) Jz. Rodgers up the middle to DET 44 for 5 yards (L.Delmas).,0,0,2012 -20121222_ATL@DET,1,50,59,ATL,DET,3,1,44,(5:59) M.Ryan pass deep right to R.White for 44 yards TOUCHDOWN.,0,0,2012 -20121222_ATL@DET,1,50,59,ATL,DET,,,44,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20121222_ATL@DET,1,50,59,ATL,DET,,,44,M.Bosher kicks 70 yards from ATL 35 to DET -5. S.Logan to DET 26 for 31 yards (J.Snelling).,7,0,2012 -20121222_ATL@DET,1,50,44,DET,ATL,1,10,74,(5:44) J.Bell left tackle to DET 29 for 3 yards (C.Hope; J.Babineaux).,0,7,2012 -20121222_ATL@DET,1,50,7,DET,ATL,2,7,71,(5:07) (Shotgun) S.Logan up the middle to DET 42 for 13 yards (C.Hope; D.Franks).,0,7,2012 -20121222_ATL@DET,1,49,27,DET,ATL,1,10,58,(4:27) M.Thomas right end to 50 for 8 yards (P.Jerry).,0,7,2012 -20121222_ATL@DET,1,48,50,DET,ATL,2,2,50,(3:50) M.Stafford pass deep right to C.Johnson ran ob at ATL 32 for 18 yards. Penalty on ATL-P.Jerry Defensive Offside declined.,0,7,2012 -20121222_ATL@DET,1,48,25,DET,ATL,1,10,32,(3:25) J.Bell left tackle to ATL 25 for 7 yards (C.Hope).,0,7,2012 -20121222_ATL@DET,1,47,48,DET,ATL,2,3,25,(2:48) J.Bell left tackle to ATL 25 for no gain (A.Dent).,0,7,2012 -20121222_ATL@DET,1,47,4,DET,ATL,3,3,25,(2:04) (Shotgun) M.Stafford pass short middle to B.Robiskie to ATL 20 for 5 yards (C.Hope; K.Biermann).,0,7,2012 -20121222_ATL@DET,1,46,24,DET,ATL,1,10,20,(1:24) (Shotgun) M.Stafford pass incomplete short left to J.Bell.,0,7,2012 -20121222_ATL@DET,1,46,19,DET,ATL,2,10,20,(1:19) J.Bell up the middle to ATL 20 for no gain (C.Peters; S.Nicholas).,0,7,2012 -20121222_ATL@DET,1,45,39,DET,ATL,3,10,20,(:39) (Shotgun) M.Stafford pass short left to K.Smith to ATL 16 for 4 yards (D.Robinson).,0,7,2012 -20121222_ATL@DET,1,45,18,DET,ATL,4,6,16,(:18) J.Hanson 34 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,7,2012 -20121222_ATL@DET,1,45,18,DET,ATL,,,16,J.Hanson kicks 70 yards from DET 35 to ATL -5. Jz. Rodgers Touchback.,3,7,2012 -20121222_ATL@DET,1,45,13,ATL,DET,1,10,80,(:13) M.Ryan scrambles right end to ATL 29 for 9 yards (C.Houston).,7,3,2012 -20121222_ATL@DET,2,45,0,ATL,DET,2,1,71,(15:00) M.Turner left tackle to ATL 34 for 5 yards (D.Levy).,7,3,2012 -20121222_ATL@DET,2,44,21,ATL,DET,1,10,66,(14:21) (Shotgun) M.Ryan pass short right to J.Jones pushed ob at ATL 41 for 7 yards (D.Carey).,7,3,2012 -20121222_ATL@DET,2,43,47,ATL,DET,2,3,59,(13:47) Jz. Rodgers up the middle to ATL 46 for 5 yards (J.Durant).,7,3,2012 -20121222_ATL@DET,2,43,5,ATL,DET,1,10,54,(13:05) M.Ryan pass short middle to J.Snelling to ATL 48 for 2 yards (S.Tulloch). PENALTY on ATL-T.Clabo Offensive Holding 10 yards enforced at ATL 46 - No Play.,7,3,2012 -20121222_ATL@DET,2,42,38,ATL,DET,1,20,64,(12:38) (Shotgun) M.Ryan pass short left to H.Douglas to ATL 37 for 1 yard (J.Green).,7,3,2012 -20121222_ATL@DET,2,41,54,ATL,DET,2,19,63,(11:54) (Shotgun) M.Ryan pass short middle to J.Snelling to ATL 49 for 12 yards (C.Houston).,7,3,2012 -20121222_ATL@DET,2,41,11,ATL,DET,3,7,51,(11:11) (Shotgun) M.Ryan pass short right to R.White to DET 44 for 7 yards (C.Houston).,7,3,2012 -20121222_ATL@DET,2,40,40,ATL,DET,1,10,44,(10:40) M.Ryan pass short left to J.Jones to DET 39 for 5 yards (J.Durant).,7,3,2012 -20121222_ATL@DET,2,40,3,ATL,DET,2,5,39,(10:03) (Shotgun) M.Ryan pass short left to R.White for 39 yards TOUCHDOWN.,7,3,2012 -20121222_ATL@DET,2,40,3,ATL,DET,,,39,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,7,3,2012 -20121222_ATL@DET,2,40,3,ATL,DET,,,39,M.Bosher kicks 69 yards from ATL 35 to DET -4. S.Logan to DET 16 for 20 yards (R.James).,14,3,2012 -20121222_ATL@DET,2,39,48,DET,ATL,1,10,84,(9:48) (Shotgun) M.Leshoure right tackle to DET 23 for 7 yards (S.Nicholas; S.Weatherspoon).,3,14,2012 -20121222_ATL@DET,2,39,10,DET,ATL,2,3,77,(9:10) M.Stafford pass deep left to C.Johnson ran ob at DET 43 for 20 yards (T.DeCoud) [K.Biermann].,3,14,2012 -20121222_ATL@DET,2,38,48,DET,ATL,1,10,57,(8:48) M.Leshoure right tackle to DET 44 for 1 yard (S.Weatherspoon).,3,14,2012 -20121222_ATL@DET,2,38,6,DET,ATL,2,9,56,(8:06) M.Stafford pass short right to J.Bell to DET 46 for 2 yards (C.Hope; A.Dent).,3,14,2012 -20121222_ATL@DET,2,37,20,DET,ATL,3,7,54,(7:20) (Shotgun) M.Stafford pass incomplete short right to J.Bell (J.Babineaux).,3,14,2012 -20121222_ATL@DET,2,37,11,DET,ATL,4,7,54,(7:11) N.Harris punts 37 yards to ATL 17 Center-D.Muhlbach fair catch by D.Franks.,3,14,2012 -20121222_ATL@DET,2,37,7,ATL,DET,1,10,83,(7:07) (Shotgun) M.Ryan pass short right to H.Douglas pushed ob at ATL 22 for 5 yards (C.Houston).,14,3,2012 -20121222_ATL@DET,2,36,36,ATL,DET,2,5,78,(6:36) M.Turner left tackle to ATL 22 for no gain (L.Delmas).,14,3,2012 -20121222_ATL@DET,2,36,2,ATL,DET,3,5,78,(6:02) M.Ryan sacked at ATL 14 for -8 yards (sack split by L.Jackson and N.Suh).,14,3,2012 -20121222_ATL@DET,2,35,33,ATL,DET,4,13,86,(5:33) M.Bosher punts 45 yards to DET 41 Center-J.Harris fair catch by S.Logan.,14,3,2012 -20121222_ATL@DET,2,35,26,DET,ATL,1,10,59,(5:26) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 48 for 7 yards (T.DeCoud).,3,14,2012 -20121222_ATL@DET,2,34,51,DET,ATL,2,3,52,(4:51) R.Reiff reported in as eligible. M.Leshoure right tackle to DET 48 for no gain (P.Jerry).,3,14,2012 -20121222_ATL@DET,2,34,16,DET,ATL,3,3,52,(4:16) (Shotgun) M.Stafford pass short middle to C.Johnson to ATL 47 for 5 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-R.McClain at ATL 45. R.McClain to DET 40 for 15 yards (M.Stafford). Penalty on DET-C.Johnson Illegal Formation declined.,3,14,2012 -20121222_ATL@DET,2,34,4,ATL,DET,1,10,40,(4:04) M.Turner left end to DET 32 for 8 yards (D.Levy).,14,3,2012 -20121222_ATL@DET,2,33,42,ATL,DET,2,2,32,(3:42) (No Huddle) M.Turner up the middle to DET 28 for 4 yards (D.Levy; J.Durant).,14,3,2012 -20121222_ATL@DET,2,33,0,ATL,DET,1,10,28,(3:00) (No Huddle Shotgun) M.Ryan pass incomplete deep middle to J.Jones [N.Suh].,14,3,2012 -20121222_ATL@DET,2,32,51,ATL,DET,2,10,28,(2:51) Jz. Rodgers up the middle to DET 28 for no gain (D.Levy; S.Tulloch).,14,3,2012 -20121222_ATL@DET,2,32,17,ATL,DET,3,10,28,(2:17) (Shotgun) M.Ryan pass short left to Jz. Rodgers to DET 17 for 11 yards (J.Green).,14,3,2012 -20121222_ATL@DET,2,32,0,ATL,DET,1,10,17,(2:00) M.Ryan pass short middle to M.Turner to DET 16 for 1 yard (S.Tulloch).,14,3,2012 -20121222_ATL@DET,2,31,24,ATL,DET,2,9,16,(1:24) (Shotgun) M.Ryan pass deep right to J.Jones for 16 yards TOUCHDOWN.,14,3,2012 -20121222_ATL@DET,2,31,24,ATL,DET,,,16,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,14,3,2012 -20121222_ATL@DET,2,31,24,ATL,DET,,,16,M.Bosher kicks 66 yards from ATL 35 to DET -1. S.Logan to DET 15 for 16 yards (R.James).,21,3,2012 -20121222_ATL@DET,2,31,10,DET,ATL,1,10,85,(1:10) (Shotgun) M.Stafford pass short middle to J.Bell to DET 20 for 5 yards (R.McClain).,3,21,2012 -20121222_ATL@DET,2,30,50,DET,ATL,2,5,80,(:50) (No Huddle Shotgun) M.Stafford pass short left to K.Durham ran ob at DET 34 for 14 yards (D.Robinson).,3,21,2012 -20121222_ATL@DET,2,30,45,DET,ATL,1,10,66,(:45) (Shotgun) M.Stafford pass incomplete short left to C.Johnson.,3,21,2012 -20121222_ATL@DET,2,30,42,DET,ATL,2,10,66,(:42) (Shotgun) M.Stafford pass short middle to C.Johnson to ATL 44 for 22 yards (T.DeCoud).,3,21,2012 -20121222_ATL@DET,2,30,36,DET,ATL,1,10,44,(:36) (Shotgun) M.Stafford pass short middle to J.Bell to ATL 38 for 6 yards (S.Weatherspoon; R.McClain).,3,21,2012 -20121222_ATL@DET,2,30,12,DET,ATL,2,4,38,(:12) (No Huddle Shotgun) M.Stafford pass short left to K.Durham to ATL 20 for 18 yards (D.Robinson).,3,21,2012 -20121222_ATL@DET,2,30,7,DET,ATL,1,10,20,(:07) J.Hanson 38 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,3,21,2012 -20121222_ATL@DET,2,30,7,DET,ATL,,,20,J.Hanson kicks 37 yards from DET 35 to ATL 28. J.Snelling to ATL 37 for 9 yards (R.Silva).,6,21,2012 -20121222_ATL@DET,3,30,0,DET,ATL,,,20,J.Hanson kicks 70 yards from DET 35 to ATL -5. Jz. Rodgers to ATL 21 for 26 yards (D.Carey).,6,21,2012 -20121222_ATL@DET,3,29,56,ATL,DET,1,10,79,(14:56) M.Turner right tackle to ATL 25 for 4 yards (S.Tulloch; L.Delmas).,21,6,2012 -20121222_ATL@DET,3,29,21,ATL,DET,2,6,75,(14:21) M.Turner up the middle to ATL 20 for -5 yards (N.Suh L.Delmas).,21,6,2012 -20121222_ATL@DET,3,28,47,ATL,DET,3,11,80,(13:47) (Shotgun) M.Ryan pass incomplete deep left to R.White [D.Carey].,21,6,2012 -20121222_ATL@DET,3,28,42,ATL,DET,4,11,80,(13:42) M.Bosher punts 40 yards to DET 40 Center-J.Harris out of bounds.,21,6,2012 -20121222_ATL@DET,3,28,35,DET,ATL,1,10,60,(13:35) M.Stafford pass short right to W.Heller to ATL 48 for 12 yards (S.Nicholas).,6,21,2012 -20121222_ATL@DET,3,27,55,DET,ATL,1,10,48,(12:55) (Shotgun) R.Reiff reported in as eligible. M.Leshoure up the middle to ATL 47 for 1 yard (J.Abraham).,6,21,2012 -20121222_ATL@DET,3,27,13,DET,ATL,2,9,47,(12:13) PENALTY on ATL-J.Abraham Neutral Zone Infraction 5 yards enforced at ATL 47 - No Play.,6,21,2012 -20121222_ATL@DET,3,26,58,DET,ATL,2,4,42,(11:58) (Shotgun) R.Reiff reported in as eligible. M.Leshoure right end pushed ob at ATL 33 for 9 yards (C.Hope).,6,21,2012 -20121222_ATL@DET,3,26,18,DET,ATL,1,10,33,(11:18) (Shotgun) M.Leshoure up the middle to ATL 30 for 3 yards (V.Walker).,6,21,2012 -20121222_ATL@DET,3,25,36,DET,ATL,2,7,30,(10:36) (Shotgun) M.Stafford pass short left to M.Thomas to ATL 25 for 5 yards (R.McClain).,6,21,2012 -20121222_ATL@DET,3,24,55,DET,ATL,3,2,25,(9:55) (Shotgun) M.Stafford pass short left to C.Johnson to ATL 11 for 14 yards (D.Robinson).,6,21,2012 -20121222_ATL@DET,3,24,16,DET,ATL,1,10,11,(9:16) (Shotgun) M.Stafford pass short left to M.Leshoure to ATL 9 for 2 yards (D.Robinson).,6,21,2012 -20121222_ATL@DET,3,23,33,DET,ATL,2,8,9,(8:33) (Shotgun) M.Leshoure up the middle to ATL 5 for 4 yards (C.Peters).,6,21,2012 -20121222_ATL@DET,3,22,56,DET,ATL,3,4,5,(7:56) (Shotgun) M.Stafford pass short left to S.Logan to ATL 1 for 4 yards (S.Weatherspoon).,6,21,2012 -20121222_ATL@DET,3,22,2,DET,ATL,1,1,1,(7:02) R.Reiff reported in as eligible. M.Leshoure up the middle for 1 yard TOUCHDOWN.,6,21,2012 -20121222_ATL@DET,3,22,2,DET,ATL,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,6,21,2012 -20121222_ATL@DET,3,22,2,DET,ATL,,,1,J.Hanson kicks 70 yards from DET 35 to ATL -5. Jz. Rodgers Touchback.,13,21,2012 -20121222_ATL@DET,3,21,59,ATL,DET,1,10,80,(6:59) M.Ryan pass incomplete deep right to J.Jones (D.Carey) [N.Suh].,21,13,2012 -20121222_ATL@DET,3,21,52,ATL,DET,2,10,80,(6:52) M.Ryan pass short left to R.White to ATL 34 for 14 yards (J.Green) [S.Tulloch]. Penalty on DET-C.Houston Defensive Holding declined. Penalty on DET-J.Green Defensive Holding declined.,21,13,2012 -20121222_ATL@DET,3,21,24,ATL,DET,1,10,66,(6:24) (Shotgun) M.Ryan pass incomplete short left to J.Jones (J.Green).,21,13,2012 -20121222_ATL@DET,3,21,18,ATL,DET,2,10,66,(6:18) M.Ryan pass short right to R.White to ATL 38 for 4 yards (D.Carey).,21,13,2012 -20121222_ATL@DET,3,20,36,ATL,DET,3,6,62,(5:36) (Shotgun) M.Ryan pass incomplete deep right to J.Jones [N.Suh].,21,13,2012 -20121222_ATL@DET,3,20,30,ATL,DET,4,6,62,(5:30) M.Bosher punts 47 yards to DET 15 Center-J.Harris fair catch by S.Logan.,21,13,2012 -20121222_ATL@DET,3,20,21,DET,ATL,1,10,85,(5:21) (Shotgun) M.Stafford pass short right to M.Leshoure to DET 22 for 7 yards (A.Samuel) [P.Jerry].,13,21,2012 -20121222_ATL@DET,3,19,48,DET,ATL,2,3,78,(4:48) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 27 for 5 yards (A.Dent).,13,21,2012 -20121222_ATL@DET,3,19,5,DET,ATL,1,10,73,(4:05) (Shotgun) M.Stafford pass short left to T.Scheffler pushed ob at DET 29 for 2 yards (D.Robinson).,13,21,2012 -20121222_ATL@DET,3,18,38,DET,ATL,2,8,71,(3:38) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 33 for 4 yards (S.Weatherspoon).,13,21,2012 -20121222_ATL@DET,3,17,54,DET,ATL,3,4,67,(2:54) (Shotgun) M.Stafford pass short middle to C.Johnson to ATL 41 for 26 yards (D.Robinson).,13,21,2012 -20121222_ATL@DET,3,17,10,DET,ATL,1,10,41,(2:10) (Shotgun) M.Leshoure up the middle to ATL 38 for 3 yards (S.Nicholas).,13,21,2012 -20121222_ATL@DET,3,16,27,DET,ATL,2,7,38,(1:27) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass deep right to C.Johnson to ATL 17 for 21 yards (A.Samuel).,13,21,2012 -20121222_ATL@DET,3,15,44,DET,ATL,1,10,17,(:44) (Shotgun) M.Stafford pass short right to M.Leshoure to ATL 6 for 11 yards (T.Robertson) [P.Jerry].,13,21,2012 -20121222_ATL@DET,4,15,0,DET,ATL,1,6,6,(15:00) M.Stafford pass incomplete short right to M.Leshoure. Ball thrown away.,13,21,2012 -20121222_ATL@DET,4,14,53,DET,ATL,2,6,6,(14:53) (Shotgun) M.Leshoure left tackle to ATL 4 for 2 yards (S.Weatherspoon).,13,21,2012 -20121222_ATL@DET,4,14,8,DET,ATL,3,4,4,(14:08) (Shotgun) M.Stafford up the middle to ATL 2 for 2 yards (C.Peters).,13,21,2012 -20121222_ATL@DET,4,13,29,DET,ATL,4,2,2,(13:29) J.Hanson 20 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,13,21,2012 -20121222_ATL@DET,4,13,29,DET,ATL,,,2,J.Hanson kicks 66 yards from DET 35 to ATL -1. Jz. Rodgers to ATL 22 for 23 yards (D.Carey).,16,21,2012 -20121222_ATL@DET,4,13,20,ATL,DET,1,10,78,(13:20) M.Turner up the middle to ATL 28 for 6 yards (D.Levy; J.Durant).,21,16,2012 -20121222_ATL@DET,4,12,36,ATL,DET,2,4,72,(12:36) M.Ryan pass incomplete short right to T.Gonzalez (D.Carey).,21,16,2012 -20121222_ATL@DET,4,12,31,ATL,DET,3,4,72,(12:31) (Shotgun) M.Ryan pass short left to R.White to ATL 43 for 15 yards (L.Delmas) [S.Tulloch].,21,16,2012 -20121222_ATL@DET,4,11,49,ATL,DET,1,10,58,(11:49) M.Ryan pass short left to J.Jones to DET 45 for 13 yards (J.Green).,21,16,2012 -20121222_ATL@DET,4,11,16,ATL,DET,1,10,45,(11:16) M.Ryan pass short left to J.Jones to DET 31 for 14 yards (J.Green).,21,16,2012 -20121222_ATL@DET,4,10,40,ATL,DET,1,10,31,(10:40) J.Jones left end to DET 38 for -7 yards (D.Levy A.Fluellen).,21,16,2012 -20121222_ATL@DET,4,9,53,ATL,DET,2,17,38,(9:53) (No Huddle Shotgun) M.Ryan scrambles up the middle to DET 22 for 16 yards (D.Levy).,21,16,2012 -20121222_ATL@DET,4,9,10,ATL,DET,3,1,22,(9:10) M.Johnson reported in as eligible. M.Ryan pass short right to T.Gonzalez pushed ob at DET 13 for 9 yards (J.Durant).,21,16,2012 -20121222_ATL@DET,4,8,36,ATL,DET,1,10,13,(8:36) M.Turner left end to DET 15 for -2 yards (T.Johnson J.Green).,21,16,2012 -20121222_ATL@DET,4,7,54,ATL,DET,2,12,15,(7:54) (Shotgun) M.Ryan pass short middle to R.White to DET 1 for 14 yards (L.Delmas).,21,16,2012 -20121222_ATL@DET,4,7,14,ATL,DET,1,1,1,(7:14) M.Johnson reported in as eligible. M.Ryan pass short left to M.Palmer for 1 yard TOUCHDOWN.,21,16,2012 -20121222_ATL@DET,4,7,14,ATL,DET,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,21,16,2012 -20121222_ATL@DET,4,7,14,ATL,DET,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,28,16,2012 -20121222_ATL@DET,4,7,12,DET,ATL,1,10,80,(7:12) R.Reiff reported in as eligible. M.Stafford pass deep right intended for C.Johnson INTERCEPTED by A.Samuel [K.Biermann] at DET 43. A.Samuel to DET 42 for 1 yard (C.Johnson).,16,28,2012 -20121222_ATL@DET,4,7,3,ATL,DET,1,10,42,(7:03) M.Turner right tackle to DET 20 for 22 yards (L.Delmas J.Green).,28,16,2012 -20121222_ATL@DET,4,6,20,ATL,DET,1,10,20,(6:20) M.Ryan pass short right to M.Turner to DET 18 for 2 yards (A.Fluellen).,28,16,2012 -20121222_ATL@DET,4,5,35,ATL,DET,2,8,18,(5:35) M.Turner up the middle to DET 16 for 2 yards (SamL.Hill).,28,16,2012 -20121222_ATL@DET,4,4,51,ATL,DET,3,6,16,(4:51) (Shotgun) M.Ryan pass short left to J.Jones to DET 6 for 10 yards (L.Delmas).,28,16,2012 -20121222_ATL@DET,4,4,5,ATL,DET,1,6,6,(4:05) Jz. Rodgers right end to DET 2 for 4 yards (D.Carey; L.Delmas).,28,16,2012 -20121222_ATL@DET,4,3,21,ATL,DET,2,2,2,(3:21) M.Johnson reported in as eligible. Jz. Rodgers right tackle to DET 2 for no gain (D.Levy; A.Fluellen).,28,16,2012 -20121222_ATL@DET,4,3,14,ATL,DET,3,2,2,(3:14) M.Ryan pass incomplete short left to R.White.,28,16,2012 -20121222_ATL@DET,4,3,9,ATL,DET,4,2,2,(3:09) M.Bryant 20 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,28,16,2012 -20121222_ATL@DET,4,3,9,ATL,DET,,,2,M.Bosher kicks 70 yards from ATL 35 to DET -5. S.Logan Touchback.,31,16,2012 -20121222_ATL@DET,4,3,5,DET,ATL,1,10,80,(3:05) (Shotgun) M.Stafford pass short middle to C.Johnson ran ob at DET 46 for 26 yards (D.Robinson).,16,31,2012 -20121222_ATL@DET,4,2,57,DET,ATL,1,10,54,(2:57) (Shotgun) M.Stafford pass incomplete deep right to K.Durham.,16,31,2012 -20121222_ATL@DET,4,2,52,DET,ATL,2,10,54,(2:52) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,16,31,2012 -20121222_ATL@DET,4,2,47,DET,ATL,3,10,54,(2:47) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler.,16,31,2012 -20121222_ATL@DET,4,2,41,DET,ATL,4,10,54,(2:41) (Shotgun) M.Stafford pass short middle to T.Scheffler to ATL 40 for 14 yards (T.DeCoud).,16,31,2012 -20121222_ATL@DET,4,2,17,DET,ATL,1,10,40,(2:17) (No Huddle Shotgun) M.Stafford pass short left to J.Bell to ATL 24 for 16 yards (C.Peters). PENALTY on DET-S.Peterman Unnecessary Roughness 15 yards enforced at ATL 24.,16,31,2012 -20121222_ATL@DET,4,2,1,DET,ATL,1,9,39,(2:01) (No Huddle Shotgun) M.Stafford pass short right to J.Bell ran ob at ATL 29 for 10 yards (R.McClain).,16,31,2012 -20121222_ATL@DET,4,1,58,DET,ATL,1,10,29,(1:58) (Shotgun) M.Stafford pass incomplete short right to W.Heller.,16,31,2012 -20121222_ATL@DET,4,1,54,DET,ATL,2,10,29,(1:54) (Shotgun) M.Stafford pass deep middle to T.Scheffler to ATL 11 for 18 yards (C.Hope).,16,31,2012 -20121222_ATL@DET,4,1,47,DET,ATL,1,10,11,(1:47) (Shotgun) M.Stafford pass short right to J.Bell pushed ob at ATL 2 for 9 yards (T.DeCoud).,16,31,2012 -20121222_ATL@DET,4,1,39,DET,ATL,2,1,2,(1:39) (Shotgun) M.Stafford pass incomplete short left to K.Durham (D.Robinson).,16,31,2012 -20121222_ATL@DET,4,1,36,DET,ATL,3,1,2,(1:36) (Shotgun) M.Stafford pass incomplete short left to C.Johnson (R.McClain).,16,31,2012 -20121222_ATL@DET,4,1,31,DET,ATL,4,1,2,(1:31) (Shotgun) M.Stafford pass incomplete short middle to W.Heller.,16,31,2012 -20121222_ATL@DET,4,1,28,ATL,DET,1,10,98,(1:28) M.Turner up the middle tackled in End Zone for -2 yards SAFETY (K.Vanden Bosch).,31,16,2012 -20121222_ATL@DET,4,1,28,ATL,DET,,,98,M.Bosher kicks 76 yards from ATL 20 to DET 4. S.Logan (didn't try to advance) to DET 4 for no gain.,31,18,2012 -20121222_ATL@DET,4,1,20,DET,ATL,1,10,96,(1:20) (Shotgun) M.Stafford pass short left to J.Bell pushed ob at DET 8 for 4 yards (D.Robinson).,18,31,2012 -20121222_ATL@DET,4,1,14,DET,ATL,2,6,92,(1:14) (Shotgun) M.Stafford pass short left to J.Bell ran ob at DET 18 for 10 yards (S.Weatherspoon).,18,31,2012 -20121222_ATL@DET,4,1,7,DET,ATL,1,10,82,(1:07) (Shotgun) M.Stafford pass incomplete short right. Ball thrown away.,18,31,2012 -20121222_ATL@DET,4,1,2,DET,ATL,2,10,82,(1:02) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler.,18,31,2012 -20121222_ATL@DET,4,0,56,DET,ATL,3,10,82,(:56) (Shotgun) M.Stafford pass short right to W.Heller pushed ob at DET 19 for 1 yard (R.McClain).,18,31,2012 -20121222_ATL@DET,4,0,48,DET,ATL,4,9,81,(:48) (Shotgun) M.Stafford pass deep middle to C.Johnson to DET 40 for 21 yards (S.Weatherspoon).,18,31,2012 -20121222_ATL@DET,4,0,42,DET,ATL,1,10,60,(:42) (Shotgun) M.Stafford pass incomplete deep left to C.Johnson.,18,31,2012 -20121222_ATL@DET,4,0,37,DET,ATL,2,10,60,(:37) (Shotgun) M.Stafford pass short right to J.Bell pushed ob at ATL 49 for 11 yards (S.Weatherspoon).,18,31,2012 -20121222_ATL@DET,4,0,30,DET,ATL,1,10,49,(:30) (Shotgun) M.Stafford pass incomplete short right to J.Bell.,18,31,2012 -20121222_ATL@DET,4,0,26,DET,ATL,2,10,49,(:26) (Shotgun) M.Stafford pass incomplete deep right to K.Durham.,18,31,2012 -20121222_ATL@DET,4,0,21,DET,ATL,3,10,49,(:21) (Shotgun) M.Stafford pass incomplete short left to W.Heller [P.Jerry].,18,31,2012 -20121222_ATL@DET,4,0,14,DET,ATL,4,10,49,(:14) (Shotgun) M.Stafford pass short middle to W.Heller to ATL 33 for 16 yards (A.Samuel) [K.Biermann].,18,31,2012 -20121222_ATL@DET,4,0,14,DET,ATL,,,49,                      ,18,31,2012 -20121223_OAK@CAR,1,0,0,OAK,CAR,,,49,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,0,0,2012 -20121223_OAK@CAR,1,60,0,CAR,OAK,1,10,80,(15:00) C.Newton pass short right to G.Olsen to CAR 24 for 4 yards (T.Branch).,0,0,2012 -20121223_OAK@CAR,1,59,31,CAR,OAK,2,6,76,(14:31) D.Williams left end for 76 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on CAR-S.Smith Offensive Holding 10 yards enforced at CAR 26.,0,0,2012 -20121223_OAK@CAR,1,59,17,CAR,OAK,2,14,84,(14:17) (Shotgun) C.Newton pass short left to B.LaFell to CAR 30 for 14 yards (J.Hanson; P.Adams).,0,0,2012 -20121223_OAK@CAR,1,58,37,CAR,OAK,1,10,70,(13:37) (Shotgun) C.Newton pass short left to G.Olsen to CAR 44 for 14 yards (T.Branch).,0,0,2012 -20121223_OAK@CAR,1,58,10,CAR,OAK,1,10,56,(13:10) M.Tolbert right guard to CAR 49 for 5 yards (T.Kelly).,0,0,2012 -20121223_OAK@CAR,1,57,26,CAR,OAK,2,5,51,(12:26) C.Newton sacked at CAR 47 for -2 yards (sack split by A.Carter and M.Burris).,0,0,2012 -20121223_OAK@CAR,1,57,26,CAR,OAK,3,7,53,(12:26) PENALTY on CAR Offensive 12 On-field 5 yards enforced at CAR 47 - No Play.,0,0,2012 -20121223_OAK@CAR,1,56,31,CAR,OAK,3,12,58,(11:31) (Shotgun) C.Newton pass incomplete deep middle to S.Smith (P.Adams).,0,0,2012 -20121223_OAK@CAR,1,56,25,CAR,OAK,4,12,58,(11:25) B.Nortman punts 40 yards to OAK 18 Center-J.Jansen. P.Adams to OAK 21 for 3 yards (J.Senn).,0,0,2012 -20121223_OAK@CAR,1,56,15,OAK,CAR,1,10,79,(11:15) D.McFadden left guard to OAK 22 for 1 yard (M.Addison).,0,0,2012 -20121223_OAK@CAR,1,55,40,OAK,CAR,2,9,78,(10:40) (Shotgun) C.Palmer pass short left to T.Pryor to OAK 44 for 22 yards (J.Phillips). Flea Flicker,0,0,2012 -20121223_OAK@CAR,1,55,5,OAK,CAR,1,10,56,(10:05) D.McFadden left tackle to OAK 46 for 2 yards (D.Edwards).,0,0,2012 -20121223_OAK@CAR,1,54,22,OAK,CAR,2,8,54,(9:22) D.McFadden up the middle to CAR 47 for 7 yards (D.Campbell).,0,0,2012 -20121223_OAK@CAR,1,53,46,OAK,CAR,3,1,47,(8:46) D.McFadden left end to OAK 48 for -5 yards (J.Senn).,0,0,2012 -20121223_OAK@CAR,1,53,22,OAK,CAR,4,6,52,(8:22) S.Lechler punts 40 yards to CAR 12 Center-J.Condo fair catch by J.Adams.,0,0,2012 -20121223_OAK@CAR,1,53,14,CAR,OAK,1,10,88,(8:14) (Shotgun) D.Williams left guard to CAR 9 for -3 yards (T.Kelly). Direct snap to Williams,0,0,2012 -20121223_OAK@CAR,1,52,33,CAR,OAK,2,13,91,(7:33) (Shotgun) C.Newton pass short right to B.LaFell to CAR 21 for 12 yards (M.Huff).,0,0,2012 -20121223_OAK@CAR,1,51,51,CAR,OAK,3,1,79,(6:51) (Shotgun) M.Tolbert left guard to CAR 28 for 7 yards (M.Mitchell).,0,0,2012 -20121223_OAK@CAR,1,51,8,CAR,OAK,1,10,72,(6:08) C.Newton scrambles right end to OAK 43 for 29 yards (P.Wheeler).,0,0,2012 -20121223_OAK@CAR,1,50,23,CAR,OAK,1,10,43,(5:23) (Shotgun) C.Newton left end to OAK 41 for 2 yards. Lateral to D.Williams pushed ob at OAK 27 for 14 yards (M.Giordano).,0,0,2012 -20121223_OAK@CAR,1,49,48,CAR,OAK,1,10,27,(4:48) C.Newton pass incomplete short right. PENALTY on CAR-S.Smith Offensive Pass Interference 10 yards enforced at OAK 27 - No Play. Penalty on CAR-J.Byers Offensive Holding declined.,0,0,2012 -20121223_OAK@CAR,1,49,37,CAR,OAK,1,20,37,(4:37) (Shotgun) C.Newton left guard to OAK 39 for -2 yards (J.Hanson).,0,0,2012 -20121223_OAK@CAR,1,49,6,CAR,OAK,2,22,39,(4:06) (Shotgun) C.Newton pass short middle to S.Smith to OAK 23 for 16 yards (P.Wheeler; A.Carter).,0,0,2012 -20121223_OAK@CAR,1,48,18,CAR,OAK,3,6,23,(3:18) (Shotgun) C.Newton pass deep right to S.Smith for 23 yards TOUCHDOWN.,0,0,2012 -20121223_OAK@CAR,1,48,18,CAR,OAK,,,23,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20121223_OAK@CAR,1,48,18,CAR,OAK,,,23,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,7,0,2012 -20121223_OAK@CAR,1,48,12,OAK,CAR,1,10,80,(3:12) C.Palmer pass short right to B.Myers to OAK 22 for 2 yards (T.Davis).,0,7,2012 -20121223_OAK@CAR,1,47,49,OAK,CAR,2,8,78,(2:49) (Shotgun) C.Palmer pass short left to D.Moore to OAK 29 for 7 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,1,47,6,OAK,CAR,3,1,71,(2:06) C.Palmer pass incomplete short right to D.Moore [G.Hardy]. OAK-C.Palmer was injured during the play. He is Out. PENALTY on CAR-G.Hardy Roughing the Passer 15 yards enforced at OAK 29 - No Play.,0,7,2012 -20121223_OAK@CAR,1,46,57,OAK,CAR,1,10,56,(1:57) (Shotgun) M.Goodson right guard to CAR 49 for 7 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,1,46,21,OAK,CAR,2,3,49,(1:21) M.Goodson left guard to CAR 48 for 1 yard (F.Alexander; D.Edwards).,0,7,2012 -20121223_OAK@CAR,1,45,40,OAK,CAR,3,2,48,(:40) M.Leinart pass short right to M.Reece to 50 for -2 yards (T.Davis).,0,7,2012 -20121223_OAK@CAR,2,45,0,OAK,CAR,4,4,50,(15:00) S.Lechler punts 35 yards to CAR 15 Center-J.Condo fair catch by J.Adams.,0,7,2012 -20121223_OAK@CAR,2,44,53,CAR,OAK,1,10,84,(14:53) D.Williams left tackle to CAR 14 for -2 yards (O.Gaither).,7,0,2012 -20121223_OAK@CAR,2,44,13,CAR,OAK,2,12,86,(14:13) C.Newton pass short left to D.Williams to CAR 21 for 7 yards (O.Gaither).,7,0,2012 -20121223_OAK@CAR,2,43,25,CAR,OAK,3,5,79,(13:25) (Shotgun) C.Newton pass short right to B.LaFell to CAR 23 for 2 yards (J.Hanson).,7,0,2012 -20121223_OAK@CAR,2,42,44,CAR,OAK,4,3,77,(12:44) B.Nortman punts 52 yards to OAK 25 Center-J.Jansen. P.Adams to OAK 22 for -3 yards. Lateral to M.Mitchell to OAK 24 for 2 yards (J.Phillips).,7,0,2012 -20121223_OAK@CAR,2,42,32,OAK,CAR,1,10,76,(12:32) M.Leinart pass short right to D.McFadden to OAK 25 for 1 yard (T.Davis).,0,7,2012 -20121223_OAK@CAR,2,41,55,OAK,CAR,2,9,75,(11:55) M.Leinart pass deep left to D.Heyward-Bey to OAK 45 for 20 yards (J.Thomas; L.Kuechly). PENALTY on CAR-L.Kuechly Unnecessary Roughness 15 yards enforced at OAK 45.,0,7,2012 -20121223_OAK@CAR,2,41,24,OAK,CAR,1,10,40,(11:24) (Shotgun) M.Leinart pass incomplete short left to D.Moore.,0,7,2012 -20121223_OAK@CAR,2,41,20,OAK,CAR,2,10,40,(11:20) D.McFadden right guard to CAR 42 for -2 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,40,37,OAK,CAR,3,12,42,(10:37) M.Leinart pass short left to D.Hagan to CAR 23 for 19 yards (J.Thomas; C.Godfrey).,0,7,2012 -20121223_OAK@CAR,2,40,1,OAK,CAR,1,10,23,(10:01) D.McFadden up the middle to CAR 22 for 1 yard (G.Hardy; L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,39,24,OAK,CAR,2,9,22,(9:24) M.Leinart pass short middle to D.McFadden to CAR 11 for 11 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,38,44,OAK,CAR,1,10,11,(8:44) D.McFadden right tackle to CAR 9 for 2 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,38,1,OAK,CAR,2,8,9,(8:01) (Shotgun) T.Pryor right guard to CAR 7 for 2 yards (L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,37,15,OAK,CAR,3,6,7,(7:15) (Shotgun) M.Leinart pass short left to R.Streater to CAR 3 for 4 yards (C.Munnerlyn; L.Kuechly).,0,7,2012 -20121223_OAK@CAR,2,36,28,OAK,CAR,4,2,3,(6:28) S.Janikowski 21 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,7,2012 -20121223_OAK@CAR,2,36,28,OAK,CAR,,,3,S.Janikowski kicks 71 yards from OAK 35 to CAR -6. A.Smith pushed ob at CAR 20 for 26 yards (C.Chekwa).,3,7,2012 -20121223_OAK@CAR,2,36,19,CAR,OAK,1,10,80,(6:19) (Shotgun) C.Newton pass incomplete short middle to G.Olsen.,7,3,2012 -20121223_OAK@CAR,2,36,15,CAR,OAK,2,10,80,(6:15) (Shotgun) C.Newton pass incomplete short left to L.Murphy (P.Adams).,7,3,2012 -20121223_OAK@CAR,2,35,48,CAR,OAK,3,10,80,(5:48) (Shotgun) C.Newton sacked at CAR 11 for -9 yards (sack split by D.Bryant and T.Kelly). PENALTY on OAK-T.Kelly Unnecessary Roughness 15 yards enforced at CAR 11.,7,3,2012 -20121223_OAK@CAR,2,35,28,CAR,OAK,1,10,74,(5:28) (Shotgun) D.Williams left guard to CAR 25 for -1 yards (A.Carter).,7,3,2012 -20121223_OAK@CAR,2,34,52,CAR,OAK,2,11,75,(4:52) (Shotgun) C.Newton pass short left to S.Smith to CAR 33 for 8 yards (B.Ross).,7,3,2012 -20121223_OAK@CAR,2,34,11,CAR,OAK,3,3,67,(4:11) (Shotgun) C.Newton pass short left to B.LaFell to CAR 47 for 14 yards (B.Ross). Penalty on OAK-M.Mitchell Defensive Holding declined.,7,3,2012 -20121223_OAK@CAR,2,33,46,CAR,OAK,1,10,53,(3:46) J.Adams left end to OAK 48 for 5 yards (M.Mitchell). End around to Adams,7,3,2012 -20121223_OAK@CAR,2,33,0,CAR,OAK,2,5,48,(3:00) C.Newton pass short right to G.Olsen to OAK 46 for 2 yards (M.Burris). PENALTY on OAK-M.Burris Unnecessary Roughness 15 yards enforced at OAK 46.,7,3,2012 -20121223_OAK@CAR,2,32,35,CAR,OAK,1,10,31,(2:35) D.Williams up the middle to OAK 30 for 1 yard (L.Houston).,7,3,2012 -20121223_OAK@CAR,2,32,0,CAR,OAK,2,9,30,(2:00) (Shotgun) C.Newton pass incomplete short right to M.Tolbert.,7,3,2012 -20121223_OAK@CAR,2,31,52,CAR,OAK,3,9,30,(1:52) (Shotgun) C.Newton pass incomplete deep right to S.Smith (M.Huff) [D.Bryant].,7,3,2012 -20121223_OAK@CAR,2,31,45,CAR,OAK,4,9,30,(1:45) G.Gano 48 yard field goal is No Good Wide Right Center-J.Jansen Holder-B.Nortman.,7,3,2012 -20121223_OAK@CAR,2,31,41,OAK,CAR,1,10,62,(1:41) (Shotgun) M.Leinart pass incomplete deep right to D.Moore.,3,7,2012 -20121223_OAK@CAR,2,31,35,OAK,CAR,2,10,62,(1:35) M.Leinart pass incomplete short left to R.Streater.,3,7,2012 -20121223_OAK@CAR,2,31,31,OAK,CAR,3,10,62,(1:31) (Shotgun) M.Leinart pass deep right intended for D.Moore INTERCEPTED by L.Kuechly at CAR 46. L.Kuechly to OAK 29 for 25 yards (D.Moore; D.Heyward-Bey).,3,7,2012 -20121223_OAK@CAR,2,31,21,CAR,OAK,1,10,29,(1:21) (Shotgun) C.Newton pass short left to D.Williams to OAK 7 for 22 yards (J.Hanson).,7,3,2012 -20121223_OAK@CAR,2,30,35,CAR,OAK,1,7,7,(:35) (Shotgun) C.Newton pass short left to G.Olsen to OAK 3 for 4 yards (M.Burris).,7,3,2012 -20121223_OAK@CAR,2,30,28,CAR,OAK,2,3,3,(:28) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,7,3,2012 -20121223_OAK@CAR,2,30,24,CAR,OAK,3,3,3,(:24) (Shotgun) C.Newton scrambles left end for 3 yards TOUCHDOWN. Penalty on OAK-P.Wheeler Defensive Holding declined.,7,3,2012 -20121223_OAK@CAR,2,30,24,CAR,OAK,,,3,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,7,3,2012 -20121223_OAK@CAR,2,30,24,CAR,OAK,,,3,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,14,3,2012 -20121223_OAK@CAR,2,30,17,OAK,CAR,1,10,80,(:17) (Shotgun) D.McFadden up the middle to OAK 24 for 4 yards (T.Davis).,3,14,2012 -20121223_OAK@CAR,3,30,0,CAR,OAK,,,80,G.Gano kicks 65 yards from CAR 35 to end zone Touchback.,14,3,2012 -20121223_OAK@CAR,3,30,0,OAK,CAR,1,10,80,(15:00) D.McFadden left end to OAK 20 for no gain (C.Johnson).,3,14,2012 -20121223_OAK@CAR,3,29,25,OAK,CAR,2,10,80,(14:25) D.McFadden right guard to OAK 21 for 1 yard (J.Phillips).,3,14,2012 -20121223_OAK@CAR,3,28,43,OAK,CAR,3,9,79,(13:43) (Shotgun) M.Leinart pass short left to D.Moore to OAK 21 for no gain (L.Kuechly).,3,14,2012 -20121223_OAK@CAR,3,28,10,OAK,CAR,4,9,79,(13:10) S.Lechler punts 61 yards to CAR 18 Center-J.Condo. J.Adams to CAR 33 for 15 yards (C.Chekwa). FUMBLES (C.Chekwa) RECOVERED by OAK-R.Gordon at CAR 32.,3,14,2012 -20121223_OAK@CAR,3,27,54,OAK,CAR,1,10,32,(12:54) M.Leinart pass short left to M.Reece to CAR 36 for -4 yards (J.Williams).,3,14,2012 -20121223_OAK@CAR,3,27,10,OAK,CAR,2,14,36,(12:10) M.Leinart pass short middle to D.McFadden to CAR 33 for 3 yards (T.Davis; D.Edwards). Penalty on OAK-J.Olawale Illegal Shift declined.,3,14,2012 -20121223_OAK@CAR,3,26,42,OAK,CAR,3,11,33,(11:42) (Shotgun) M.Leinart pass short left to M.Goodson to CAR 33 for no gain (G.Hardy). PENALTY on OAK-J.Veldheer Offensive Holding 10 yards enforced at CAR 33 - No Play.,3,14,2012 -20121223_OAK@CAR,3,26,25,OAK,CAR,3,21,43,(11:25) (Shotgun) M.Leinart pass short right to B.Myers to CAR 42 for 1 yard (C.Munnerlyn).,3,14,2012 -20121223_OAK@CAR,3,25,50,OAK,CAR,4,21,42,(10:50) S.Lechler punts 34 yards to CAR 8 Center-J.Condo out of bounds.,3,14,2012 -20121223_OAK@CAR,3,25,42,CAR,OAK,1,10,92,(10:42) C.Newton pass incomplete short left to M.Tolbert.,14,3,2012 -20121223_OAK@CAR,3,25,37,CAR,OAK,2,10,92,(10:37) (Shotgun) C.Newton scrambles right end pushed ob at CAR 13 for 5 yards (M.Huff).,14,3,2012 -20121223_OAK@CAR,3,25,5,CAR,OAK,3,5,87,(10:05) (Shotgun) C.Newton pass short left to L.Murphy to CAR 18 for 5 yards (M.Huff).,14,3,2012 -20121223_OAK@CAR,3,24,17,CAR,OAK,1,10,82,(9:17) M.Tolbert left tackle to CAR 22 for 4 yards (M.Huff; O.Gaither).,14,3,2012 -20121223_OAK@CAR,3,23,36,CAR,OAK,2,6,78,(8:36) (Shotgun) C.Newton pass incomplete short right to D.Williams.,14,3,2012 -20121223_OAK@CAR,3,23,27,CAR,OAK,3,6,78,(8:27) (Shotgun) C.Newton pass incomplete short right to B.LaFell (M.Burris). PENALTY on OAK-D.Bryant Roughing the Passer 15 yards enforced at CAR 22 - No Play.,14,3,2012 -20121223_OAK@CAR,3,23,22,CAR,OAK,1,10,63,(8:22) D.Williams right guard to CAR 36 for -1 yards (D.Bryant).,14,3,2012 -20121223_OAK@CAR,3,22,43,CAR,OAK,2,11,64,(7:43) (Shotgun) D.Williams up the middle to CAR 39 for 3 yards (O.Gaither; T.Kelly).,14,3,2012 -20121223_OAK@CAR,3,21,59,CAR,OAK,3,8,61,(6:59) (Shotgun) C.Newton pass short left to L.Murphy to CAR 29 for -10 yards. PENALTY on CAR-J.Byers Offensive Holding 10 yards enforced at CAR 39 - No Play.,14,3,2012 -20121223_OAK@CAR,3,21,30,CAR,OAK,3,18,71,(6:30) (Shotgun) C.Newton pass incomplete deep right to S.Smith (M.Giordano).,14,3,2012 -20121223_OAK@CAR,3,21,22,CAR,OAK,4,18,71,(6:22) B.Nortman punts 55 yards to OAK 16 Center-J.Jansen. D.Moore to OAK 16 for no gain (C.Jones).,14,3,2012 -20121223_OAK@CAR,3,21,14,OAK,CAR,1,10,84,(6:14) M.Leinart pass incomplete deep right to D.Heyward-Bey.,3,14,2012 -20121223_OAK@CAR,3,21,7,OAK,CAR,2,10,84,(6:07) D.McFadden left end to OAK 16 for no gain (L.Kuechly).,3,14,2012 -20121223_OAK@CAR,3,20,24,OAK,CAR,3,10,84,(5:24) (Shotgun) M.Leinart pass short right to R.Streater to OAK 28 for 12 yards (J.Dockery).,3,14,2012 -20121223_OAK@CAR,3,19,48,OAK,CAR,1,10,72,(4:48) M.Goodson left guard to OAK 31 for 3 yards (M.Addison).,3,14,2012 -20121223_OAK@CAR,3,19,14,OAK,CAR,2,7,69,(4:14) D.McFadden up the middle to OAK 34 for 3 yards (M.Addison).,3,14,2012 -20121223_OAK@CAR,3,18,31,OAK,CAR,3,4,66,(3:31) (Shotgun) M.Leinart pass short middle to M.Goodson to OAK 42 for 8 yards (C.Munnerlyn).,3,14,2012 -20121223_OAK@CAR,3,17,52,OAK,CAR,1,10,58,(2:52) M.Leinart pass incomplete short left to D.Hagan (C.Godfrey).,3,14,2012 -20121223_OAK@CAR,3,17,45,OAK,CAR,2,10,58,(2:45) D.McFadden right tackle to OAK 41 for -1 yards (D.Campbell).,3,14,2012 -20121223_OAK@CAR,3,17,5,OAK,CAR,3,11,59,(2:05) (Shotgun) M.Leinart pass incomplete short left to D.Heyward-Bey (J.Thomas).,3,14,2012 -20121223_OAK@CAR,3,16,57,OAK,CAR,4,11,59,(1:57) S.Lechler punts 50 yards to CAR 9 Center-J.Condo fair catch by A.Edwards.,3,14,2012 -20121223_OAK@CAR,3,16,51,CAR,OAK,1,10,91,(1:51) D.Williams left tackle to CAR 16 for 7 yards. PENALTY on CAR-C.Newton Illegal Motion 4 yards enforced at CAR 9 - No Play. Direct snap to Williams,14,3,2012 -20121223_OAK@CAR,3,16,25,CAR,OAK,1,14,95,(1:25) M.Tolbert up the middle to CAR 9 for 4 yards (C.Bilukidi; M.Burris).,14,3,2012 -20121223_OAK@CAR,3,15,47,CAR,OAK,2,10,91,(:47) (Shotgun) C.Newton pass short left to S.Smith to CAR 7 for -2 yards (J.Hanson).,14,3,2012 -20121223_OAK@CAR,3,15,6,CAR,OAK,3,12,93,(:06) (Shotgun) C.Newton pass deep left intended for S.Smith INTERCEPTED by M.Burris at CAR 25. M.Burris to CAR 18 for 7 yards (J.Byers).,14,3,2012 -20121223_OAK@CAR,4,15,0,OAK,CAR,1,10,18,(15:00) D.McFadden up the middle to CAR 12 for 6 yards (G.Hardy; T.Davis).,3,14,2012 -20121223_OAK@CAR,4,15,0,OAK,CAR,2,4,12,(15:00) PENALTY on OAK-C.Carlisle False Start 5 yards enforced at CAR 12 - No Play.,3,14,2012 -20121223_OAK@CAR,4,14,12,OAK,CAR,2,9,17,(14:12) M.Leinart pass incomplete short left to D.Moore.,3,14,2012 -20121223_OAK@CAR,4,14,6,OAK,CAR,3,9,17,(14:06) (Shotgun) M.Leinart pass incomplete short left to R.Streater. PENALTY on CAR-C.Godfrey Unnecessary Roughness 9 yards enforced at CAR 17.,3,14,2012 -20121223_OAK@CAR,4,14,1,OAK,CAR,1,8,8,(14:01) (Shotgun) T.Pryor pass short right to M.Reece to CAR 3 for 5 yards (C.Godfrey). direct snap to Pryor,3,14,2012 -20121223_OAK@CAR,4,13,38,OAK,CAR,2,3,3,(13:38) D.McFadden left tackle for 3 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on OAK-S.Wisniewski Offensive Holding 10 yards enforced at CAR 3 - No Play.,3,14,2012 -20121223_OAK@CAR,4,13,34,OAK,CAR,2,13,13,(13:34) (Shotgun) M.Leinart pass incomplete short right to M.Reece.,3,14,2012 -20121223_OAK@CAR,4,13,29,OAK,CAR,3,13,13,(13:29) (Shotgun) M.Leinart pass incomplete short left to D.Heyward-Bey.,3,14,2012 -20121223_OAK@CAR,4,13,21,OAK,CAR,4,13,13,(13:21) S.Janikowski 31 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,3,14,2012 -20121223_OAK@CAR,4,13,21,OAK,CAR,,,13,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,6,14,2012 -20121223_OAK@CAR,4,13,18,CAR,OAK,1,10,80,(13:18) C.Newton pass incomplete short right to B.LaFell [M.Mitchell].,14,6,2012 -20121223_OAK@CAR,4,13,14,CAR,OAK,2,10,80,(13:14) (Shotgun) D.Williams up the middle to CAR 25 for 5 yards (M.Burris; T.Kelly).,14,6,2012 -20121223_OAK@CAR,4,12,27,CAR,OAK,3,5,75,(12:27) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 34 for 9 yards (M.Mitchell).,14,6,2012 -20121223_OAK@CAR,4,11,45,CAR,OAK,1,10,66,(11:45) (Shotgun) D.Williams up the middle to CAR 33 for -1 yards (L.Houston).,14,6,2012 -20121223_OAK@CAR,4,11,5,CAR,OAK,2,11,67,(11:05) C.Newton pass short left to B.LaFell to CAR 29 for -4 yards (B.Ross) [M.Mitchell]. PENALTY on CAR-C.Newton Unsportsmanlike Conduct 14 yards enforced at CAR 29.,14,6,2012 -20121223_OAK@CAR,4,10,41,CAR,OAK,3,29,85,(10:41) (Shotgun) M.Tolbert left tackle to CAR 23 for 8 yards (M.Giordano; M.Mitchell).,14,6,2012 -20121223_OAK@CAR,4,10,17,CAR,OAK,4,21,77,(10:17) B.Nortman punts 48 yards to OAK 29 Center-J.Jansen. D.Moore to OAK 29 for no gain (D.Hogue). Penalty on OAK-M.Goodson Illegal Block Above the Waist offsetting enforced at OAK 26. Penalty on CAR-D.Hogue Face Mask (15 Yards) offsetting.,14,6,2012 -20121223_OAK@CAR,4,10,5,OAK,CAR,1,10,74,(10:05) D.McFadden left tackle to OAK 26 for no gain (F.Alexander).,6,14,2012 -20121223_OAK@CAR,4,9,32,OAK,CAR,2,10,74,(9:32) D.McFadden up the middle to OAK 39 for 13 yards (C.Munnerlyn).,6,14,2012 -20121223_OAK@CAR,4,8,55,OAK,CAR,1,10,61,(8:55) M.Leinart pass deep left to M.Reece to CAR 42 for 19 yards (J.Thomas) [F.Alexander].,6,14,2012 -20121223_OAK@CAR,4,8,16,OAK,CAR,1,10,42,(8:16) M.Goodson up the middle to CAR 41 for 1 yard (L.Kuechly).,6,14,2012 -20121223_OAK@CAR,4,7,38,OAK,CAR,2,9,41,(7:38) M.Leinart pass incomplete short left to D.Hagan (L.Kuechly).,6,14,2012 -20121223_OAK@CAR,4,7,33,OAK,CAR,3,9,41,(7:33) (Shotgun) M.Leinart pass short right to D.Heyward-Bey to CAR 30 for 11 yards (J.Dockery).,6,14,2012 -20121223_OAK@CAR,4,6,54,OAK,CAR,1,10,30,(6:54) D.McFadden left end to CAR 29 for 1 yard (T.Davis).,6,14,2012 -20121223_OAK@CAR,4,6,14,OAK,CAR,2,9,29,(6:14) M.Leinart pass short left to D.Moore to CAR 24 for 5 yards (T.Davis; L.Kuechly).,6,14,2012 -20121223_OAK@CAR,4,5,30,OAK,CAR,3,4,24,(5:30) (Shotgun) M.Leinart pass incomplete deep right to R.Streater (J.Dockery).,6,14,2012 -20121223_OAK@CAR,4,5,24,OAK,CAR,4,4,24,(5:24) (Shotgun) M.Leinart pass incomplete short left to D.McFadden (G.Hardy).,6,14,2012 -20121223_OAK@CAR,4,5,19,CAR,OAK,1,10,76,(5:19) (Shotgun) C.Newton left tackle to CAR 28 for 4 yards (M.Burris).,14,6,2012 -20121223_OAK@CAR,4,4,41,CAR,OAK,2,6,72,(4:41) (Shotgun) C.Newton right guard to CAR 47 for 19 yards (B.Ross).,14,6,2012 -20121223_OAK@CAR,4,3,55,CAR,OAK,1,10,53,(3:55) (Shotgun) C.Newton pass deep left to G.Olsen to OAK 33 for 20 yards (P.Wheeler).,14,6,2012 -20121223_OAK@CAR,4,3,55,CAR,OAK,1,10,33,(3:55) PENALTY on CAR-G.Williams False Start 5 yards enforced at OAK 33 - No Play.,14,6,2012 -20121223_OAK@CAR,4,3,6,CAR,OAK,1,15,38,(3:06) (Shotgun) D.Williams left end to OAK 36 for 2 yards (B.Ross).,14,6,2012 -20121223_OAK@CAR,4,3,1,CAR,OAK,2,13,36,(3:01) (Shotgun) C.Newton up the middle to OAK 37 for -1 yards (L.Houston).,14,6,2012 -20121223_OAK@CAR,4,2,56,CAR,OAK,3,14,37,(2:56) (Shotgun) C.Newton left tackle to OAK 33 for 4 yards (M.Burris; T.Kelly).,14,6,2012 -20121223_OAK@CAR,4,2,51,CAR,OAK,4,10,33,(2:51) G.Gano 51 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,14,6,2012 -20121223_OAK@CAR,4,2,51,CAR,OAK,,,33,G.Gano kicks 70 yards from CAR 35 to OAK -5. M.Goodson to OAK 21 for 26 yards (M.Addison).,17,6,2012 -20121223_OAK@CAR,4,2,42,OAK,CAR,1,10,79,(2:42) (Shotgun) M.Leinart pass short middle to B.Myers to OAK 28 for 7 yards (C.Munnerlyn) [D.Edwards].,6,17,2012 -20121223_OAK@CAR,4,2,19,OAK,CAR,2,3,72,(2:19) (No Huddle Shotgun) M.Leinart pass incomplete short right to B.Myers.,6,17,2012 -20121223_OAK@CAR,4,2,16,OAK,CAR,3,3,72,(2:16) (Shotgun) M.Leinart sacked at OAK 19 for -9 yards (D.Edwards).,6,17,2012 -20121223_OAK@CAR,4,2,0,OAK,CAR,4,12,81,(2:00) (Shotgun) M.Leinart pass incomplete deep right to D.Heyward-Bey.,6,17,2012 -20121223_OAK@CAR,4,1,54,CAR,OAK,1,10,19,(1:54) C.Newton kneels to OAK 20 for -1 yards.,17,6,2012 -20121223_OAK@CAR,4,1,13,CAR,OAK,2,11,20,(1:13) C.Newton kneels to OAK 21 for -1 yards.,17,6,2012 -20121223_OAK@CAR,4,0,38,CAR,OAK,3,12,21,(:38) C.Newton kneels to OAK 22 for -1 yards.,17,6,2012 -20121223_OAK@CAR,4,0,38,CAR,OAK,,,21,                      ,17,6,2012 -20121223_NO@DAL,1,0,0,DAL,NO,,,21,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone.,0,0,2012 -20121223_NO@DAL,1,60,0,NO,DAL,1,10,80,(15:00) (Shotgun) D.Brees pass incomplete short right. Pass was thrown away after heavy pressure.,0,0,2012 -20121223_NO@DAL,1,59,51,NO,DAL,2,10,80,(14:51) M.Ingram up the middle to NO 23 for 3 yards (E.Sims).,0,0,2012 -20121223_NO@DAL,1,59,12,NO,DAL,3,7,77,"(14:12) (Shotgun) D.Brees pass short right to M.Colston pushed ob at NO 38 for 15 yards (G.Sensabaugh). Pass complete on an ""out"" route.",0,0,2012 -20121223_NO@DAL,1,58,45,NO,DAL,1,10,62,"(13:45) (Shotgun) D.Brees pass short right to D.Sproles to DAL 50 for 12 yards (E.Frampton). Pass complete on a ""wheel"" route.",0,0,2012 -20121223_NO@DAL,1,58,11,NO,DAL,1,10,50,(13:11) M.Ingram left end to DAL 45 for 5 yards (D.Connor; M.Claiborne).,0,0,2012 -20121223_NO@DAL,1,57,30,NO,DAL,2,5,45,(12:30) P.Thomas left guard to DAL 43 for 2 yards (A.Spencer).,0,0,2012 -20121223_NO@DAL,1,56,53,NO,DAL,3,3,43,"(11:53) (Shotgun) D.Brees pass short right to P.Thomas to DAL 30 for 13 yards (S.Lissemore; C.Peprah). Pass complete on a ""check off""; runner broke a tackle at the Dallas 40.",0,0,2012 -20121223_NO@DAL,1,56,10,NO,DAL,1,10,30,(11:10) D.Brees pass short left to M.Colston to DAL 18 for 12 yards (D.Ware). FUMBLES (D.Ware) ball out of bounds at DAL 18.,0,0,2012 -20121223_NO@DAL,1,55,47,NO,DAL,1,10,18,(10:47) D.Brees pass incomplete short right. Pass thrown out of bounds right sideline.,0,0,2012 -20121223_NO@DAL,1,55,40,NO,DAL,2,10,18,(10:40) D.Brees pass incomplete short right to D.Sproles. PENALTY on DAL-A.Spencer Face Mask (15 Yards) 9 yards enforced at DAL 18 - No Play.,0,0,2012 -20121223_NO@DAL,1,55,31,NO,DAL,1,9,9,(10:31) M.Ingram up the middle for 9 yards TOUCHDOWN.,0,0,2012 -20121223_NO@DAL,1,55,31,NO,DAL,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20121223_NO@DAL,1,55,31,NO,DAL,,,9,T.Morstead kicks 70 yards from NO 35 to DAL -5. D.Harris to DAL 24 for 29 yards (W.Herring). Return left side of the field outside the yard line markers.,7,0,2012 -20121223_NO@DAL,1,55,20,DAL,NO,1,10,76,"(10:20) T.Romo pass short right to D.Murray to DAL 29 for 5 yards (D.Hawthorne). Pass complete in the ""flat.""",0,7,2012 -20121223_NO@DAL,1,54,47,DAL,NO,2,5,71,(9:47) D.Murray left tackle to DAL 37 for 8 yards (D.Hawthorne).,0,7,2012 -20121223_NO@DAL,1,54,14,DAL,NO,1,10,63,"(9:14) (Shotgun) T.Romo pass short left to D.Bryant to NO 50 for 13 yards (P.Robinson). Pass complete on a ""skinny"" post.",0,7,2012 -20121223_NO@DAL,1,53,38,DAL,NO,1,10,50,(8:38) T.Romo pass incomplete short right to J.Phillips. Pass thrown right side; Vilma closest defender.,0,7,2012 -20121223_NO@DAL,1,53,30,DAL,NO,2,10,50,"(8:30) T.Romo pass short right to M.Austin pushed ob at NO 43 for 7 yards (R.Harper). Pass complete on a ""bubble"" screen.",0,7,2012 -20121223_NO@DAL,1,52,59,DAL,NO,3,3,43,(7:59) (Shotgun) T.Romo sacked at DAL 49 for -8 yards (T.Johnson).,0,7,2012 -20121223_NO@DAL,1,52,35,DAL,NO,4,11,51,(7:35) (Punt formation) B.Moorman punts 42 yards to NO 9 Center-L.Ladouceur fair catch by D.Sproles.,0,7,2012 -20121223_NO@DAL,1,52,28,NO,DAL,1,10,91,(7:28) D.Sproles left tackle to NO 10 for 1 yard (J.Hatcher).,7,0,2012 -20121223_NO@DAL,1,51,51,NO,DAL,2,9,90,"(6:51) D.Brees pass short left to L.Moore to NO 21 for 11 yards (M.Claiborne). Pass complete on a ""slant"" pattern.",7,0,2012 -20121223_NO@DAL,1,51,17,NO,DAL,1,10,79,"(6:17) D.Brees pass incomplete short right to D.Henderson. Pass incomplete on a ""wheel"" route.",7,0,2012 -20121223_NO@DAL,1,51,12,NO,DAL,2,10,79,(6:12) (Shotgun) D.Sproles left end to NO 22 for 1 yard (S.Moore).,7,0,2012 -20121223_NO@DAL,1,50,33,NO,DAL,3,9,78,(5:33) (Shotgun) PENALTY on NO-J.Bushrod False Start 5 yards enforced at NO 22 - No Play.,7,0,2012 -20121223_NO@DAL,1,50,14,NO,DAL,3,14,83,(5:14) (Shotgun) D.Brees pass short left to D.Sproles to NO 31 for 14 yards (G.Sensabaugh). Screen pass.,7,0,2012 -20121223_NO@DAL,1,49,34,NO,DAL,1,10,69,"(4:34) (Shotgun) D.Brees pass incomplete short middle to M.Colston. Pass incomplete on a ""curl"" pattern.",7,0,2012 -20121223_NO@DAL,1,49,28,NO,DAL,2,10,69,"(4:28) D.Brees pass short left to M.Colston to NO 40 for 9 yards (M.Claiborne). Pass complete on a ""slant"" pattern.",7,0,2012 -20121223_NO@DAL,1,48,53,NO,DAL,3,1,60,(3:53) M.Ingram left guard to NO 42 for 2 yards (T.Crawford).,7,0,2012 -20121223_NO@DAL,1,48,19,NO,DAL,1,10,58,(3:19) M.Ingram left tackle to NO 44 for 2 yards (B.Schaefering D.Connor).,7,0,2012 -20121223_NO@DAL,1,47,44,NO,DAL,2,8,56,(2:44) (Shotgun) PENALTY on NO-J.Graham False Start 5 yards enforced at NO 44 - No Play.,7,0,2012 -20121223_NO@DAL,1,47,26,NO,DAL,2,13,61,"(2:26) (Shotgun) D.Brees pass short left to J.Graham pushed ob at DAL 48 for 13 yards (M.Coe). Pass complete on a ""square out"" pattern.",7,0,2012 -20121223_NO@DAL,1,46,59,NO,DAL,1,10,48,(1:59) D.Sproles up the middle to DAL 43 for 5 yards (E.Sims).,7,0,2012 -20121223_NO@DAL,1,46,23,NO,DAL,2,5,43,"(1:23) D.Brees pass short left to P.Thomas to DAL 27 for 16 yards (M.Claiborne). Pass complete on a ""check off"" pattern.",7,0,2012 -20121223_NO@DAL,1,45,44,NO,DAL,1,10,27,(:44) M.Ingram right end pushed ob at DAL 18 for 9 yards (A.Spencer).,7,0,2012 -20121223_NO@DAL,1,45,15,NO,DAL,2,1,18,(:15) M.Ingram left tackle to DAL 18 for no gain (S.Lissemore).,7,0,2012 -20121223_NO@DAL,2,45,0,NO,DAL,3,1,18,(15:00) M.Ingram right guard to DAL 18 for no gain (M.Spears; D.Connor).,7,0,2012 -20121223_NO@DAL,2,44,19,NO,DAL,4,1,18,(14:19) (Field Goal formation) G.Hartley 36 yard field goal is No Good Wide Left Center-J.Drescher Holder-C.Daniel.,7,0,2012 -20121223_NO@DAL,2,44,15,DAL,NO,1,10,74,(14:15) (Shotgun) D.Murray left tackle to DAL 32 for 6 yards (C.Lofton).,0,7,2012 -20121223_NO@DAL,2,43,37,DAL,NO,2,4,68,"(13:37) (Shotgun) T.Romo pass short right to D.Bryant to DAL 42 for 10 yards (P.Robinson). Pass complete on a ""curl"" route.",0,7,2012 -20121223_NO@DAL,2,42,57,DAL,NO,1,10,58,"(12:57) T.Romo pass deep right to D.Bryant for 58 yards TOUCHDOWN. Pass complete off play action on a ""fly"" pattern.",0,7,2012 -20121223_NO@DAL,2,42,57,DAL,NO,,,58,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,7,2012 -20121223_NO@DAL,2,42,57,DAL,NO,,,58,D.Bailey kicks 62 yards from DAL 35 to NO 3. P.Thomas MUFFS catch and recovers at NO 3. P.Thomas to NO 14 for 11 yards (D.Harris). Received the ball left side of the field and ran toward the middle after the muff.,7,7,2012 -20121223_NO@DAL,2,42,40,NO,DAL,1,10,86,(12:40) M.Ingram right guard to NO 16 for 2 yards (A.Albright; M.Spears).,7,7,2012 -20121223_NO@DAL,2,42,6,NO,DAL,2,8,84,"(12:06) D.Brees pass short left to P.Thomas to NO 18 for 2 yards (D.Connor). Pass complete on a ""crossing"" pattern.",7,7,2012 -20121223_NO@DAL,2,41,23,NO,DAL,3,6,82,"(11:23) (Shotgun) D.Brees pass short left to L.Moore ran ob at NO 25 for 7 yards [D.Ware]. Pass complete on a ""square out"" route.",7,7,2012 -20121223_NO@DAL,2,41,1,NO,DAL,1,10,75,(11:01) M.Ingram right tackle to NO 26 for 1 yard (B.Carr). PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at NO 26.,7,7,2012 -20121223_NO@DAL,2,40,41,NO,DAL,1,19,84,(10:41) (Shotgun) D.Sproles right tackle to NO 16 for no gain (A.Albright D.Connor). PENALTY on NO-Z.Strief Offensive Holding 8 yards enforced at NO 16 - No Play.,7,7,2012 -20121223_NO@DAL,2,40,22,NO,DAL,1,27,92,(10:22) (Shotgun) D.Brees pass incomplete short right to D.Sproles. Pass incomplete in the right flat; Spencer closest defender.,7,7,2012 -20121223_NO@DAL,2,40,16,NO,DAL,2,27,92,(10:16) P.Thomas left end to NO 6 for -2 yards (J.Hatcher).,7,7,2012 -20121223_NO@DAL,2,39,42,NO,DAL,3,29,94,(9:42) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at NO 23 for 17 yards (M.Jenkins). Screen pass. Injury update: Dallas's Sims taken to locker room for dizzieness; his return is questionable.,7,7,2012 -20121223_NO@DAL,2,39,20,NO,DAL,4,12,77,(9:20) (Punt formation) T.Morstead punts 63 yards to DAL 14 Center-J.Drescher. D.Harris to DAL 25 for 11 yards (R.Humber).,7,7,2012 -20121223_NO@DAL,2,39,6,DAL,NO,1,10,75,(9:06) D.Murray left end to DAL 34 for 9 yards (R.Harper). PENALTY on DAL-L.Vickers Offensive Holding 10 yards enforced at DAL 25 - No Play.,7,7,2012 -20121223_NO@DAL,2,38,43,DAL,NO,1,20,85,(8:43) (Shotgun) D.Murray right end to DAL 20 for 5 yards (J.Casillas; I.Abdul-Quddus).,7,7,2012 -20121223_NO@DAL,2,37,57,DAL,NO,2,15,80,"(7:57) (Shotgun) T.Romo pass short left to D.Bryant to DAL 26 for 6 yards (P.Robinson). Pass complete on a ""quick slant"" route.",7,7,2012 -20121223_NO@DAL,2,37,11,DAL,NO,3,9,74,"(7:11) (Shotgun) T.Romo pass short left to J.Witten to DAL 38 for 12 yards (M.Wilson). Pass complete on a ""button hook.""",7,7,2012 -20121223_NO@DAL,2,36,32,DAL,NO,1,10,62,(6:32) D.Murray right tackle to DAL 42 for 4 yards (D.Hawthorne).,7,7,2012 -20121223_NO@DAL,2,35,54,DAL,NO,2,6,58,"(5:54) (Shotgun) T.Romo pass short left to D.Bryant for 58 yards TOUCHDOWN. Pass complete on a ""skinny post.""",7,7,2012 -20121223_NO@DAL,2,35,54,DAL,NO,,,58,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,7,7,2012 -20121223_NO@DAL,2,35,54,DAL,NO,,,58,D.Bailey kicks 64 yards from DAL 35 to NO 1. T.Cadet to NO 19 for 18 yards (A.Albright). DAL-A.Albright was injured during the play. PENALTY on NO-M.Higgins Defensive Holding 9 yards enforced at NO 19.,14,7,2012 -20121223_NO@DAL,2,35,35,NO,DAL,1,10,90,"(5:35) D.Brees pass deep left to M.Colston to NO 31 for 21 yards (B.Carr). Pass complete on a ""crossing"" pattern.",7,14,2012 -20121223_NO@DAL,2,35,0,NO,DAL,1,10,69,(5:00) D.Sproles left end pushed ob at NO 42 for 11 yards (C.Peprah).,7,14,2012 -20121223_NO@DAL,2,34,27,NO,DAL,1,10,58,"(4:27) D.Brees pass short right to M.Ingram to NO 49 for 7 yards (B.Poppinga; D.Connor). Pass complete in the ""flat.""",7,14,2012 -20121223_NO@DAL,2,33,50,NO,DAL,2,3,51,"(3:50) D.Brees pass short left to M.Colston to DAL 47 for 4 yards (M.Claiborne). Pass complete on a ""quick slant"" route.",7,14,2012 -20121223_NO@DAL,2,33,15,NO,DAL,1,10,47,(3:15) (Shotgun) D.Brees pass short right to P.Thomas to DAL 40 for 7 yards (B.Poppinga; A.Spencer). Screen pass.,7,14,2012 -20121223_NO@DAL,2,32,29,NO,DAL,2,3,40,"(2:29) (Shotgun) D.Brees pass short right to M.Colston to DAL 32 for 8 yards (G.Sensabaugh). Pass complete on a ""drag"" route. Injury update: Dallas's Albright has right knee strain; may return.",7,14,2012 -20121223_NO@DAL,2,32,0,NO,DAL,1,10,32,(2:00) M.Ingram left end pushed ob at DAL 23 for 9 yards (E.Frampton).,7,14,2012 -20121223_NO@DAL,2,31,53,NO,DAL,2,1,23,(1:53) (Shotgun) D.Brees pass incomplete short left to J.Graham (E.Frampton). Pass knocked away at the Dallas 9.,7,14,2012 -20121223_NO@DAL,2,31,44,NO,DAL,3,1,23,"(1:44) (Shotgun) D.Brees pass incomplete short left to J.Graham (B.Poppinga). Pass incomplete on a ""drag"" route.",7,14,2012 -20121223_NO@DAL,2,31,40,NO,DAL,4,1,23,(1:40) (Shotgun) D.Brees pass short left to M.Colston to DAL 8 for 15 yards (G.Sensabaugh). Penalty on DAL-A.Spencer Defensive Offside declined. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) D.Brees pass incomplete short left to M.Colston. PENALTY on DAL-A.Spencer Defensive Offside 5 yards enforced at DAL 23 - No Play.,7,14,2012 -20121223_NO@DAL,2,31,35,NO,DAL,1,10,18,(1:35) D.Brees pass short right to P.Thomas to DAL 2 for 16 yards (D.Connor; A.Spencer). Pass complete on receiver circling out of the backfield.,7,14,2012 -20121223_NO@DAL,2,31,23,NO,DAL,1,2,2,(1:23) M.Ingram left end to DAL 6 for -4 yards (D.Connor).,7,14,2012 -20121223_NO@DAL,2,31,16,NO,DAL,2,6,6,(1:16) (Shotgun) D.Brees pass short right to L.Moore for 6 yards TOUCHDOWN.,7,14,2012 -20121223_NO@DAL,2,31,16,NO,DAL,,,6,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,14,2012 -20121223_NO@DAL,2,31,16,NO,DAL,,,6,T.Morstead kicks 74 yards from NO 35 to DAL -9. D.Harris Touchback.,14,14,2012 -20121223_NO@DAL,2,31,11,DAL,NO,1,10,80,"(1:11) (Shotgun) T.Romo pass short right to J.Witten ran ob at DAL 27 for 7 yards (J.Greer). Pass complete on an ""out"" pattern.",14,14,2012 -20121223_NO@DAL,2,31,6,DAL,NO,2,3,73,(1:06) (Shotgun) T.Romo pass incomplete deep left. Pass too tall at the midfield.,14,14,2012 -20121223_NO@DAL,2,30,59,DAL,NO,3,3,73,"(:59) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete on a ""slant"" pattern; Robinson closest defender.",14,14,2012 -20121223_NO@DAL,2,30,56,DAL,NO,4,3,73,(:56) (Punt formation) B.Moorman punts 43 yards to NO 30 Center-L.Ladouceur fair catch by D.Sproles.,14,14,2012 -20121223_NO@DAL,2,30,47,NO,DAL,1,10,70,(:47) (Shotgun) D.Brees pass short middle to D.Sproles to DAL 26 for 44 yards (C.Peprah). DAL-M.Jenkins was injured during the play. Pass complete out of the backfield; Dallas injury;s so a fourth timeout was assessed on the play.,14,14,2012 -20121223_NO@DAL,2,30,24,NO,DAL,1,10,26,(:24) (Shotgun) D.Brees pass short middle to D.Sproles to DAL 24 for 2 yards (D.Connor).,14,14,2012 -20121223_NO@DAL,2,30,20,NO,DAL,2,8,24,(:20) (Shotgun) D.Brees pass short right to D.Sproles to DAL 19 for 5 yards (D.Connor). Pass complete out of the backfield.,14,14,2012 -20121223_NO@DAL,2,30,12,NO,DAL,3,3,19,(:12) (Shotgun) D.Brees pass incomplete deep left to M.Colston (M.Claiborne). Pass was knocked down back corner of the end zone.,14,14,2012 -20121223_NO@DAL,2,30,4,NO,DAL,4,3,19,(:04) (Field Goal formation) G.Hartley 37 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,14,2012 -20121223_NO@DAL,3,29,55,DAL,NO,1,10,76,(14:55) D.Murray right end to DAL 29 for 5 yards (I.Abdul-Quddus).,14,17,2012 -20121223_NO@DAL,3,29,13,DAL,NO,2,5,71,"(14:13) T.Romo pass deep right to M.Austin to DAL 45 for 16 yards (I.Abdul-Quddus). Pass complete off ""play action.""",14,17,2012 -20121223_NO@DAL,3,28,25,DAL,NO,1,10,55,(13:25) (Shotgun) T.Romo pass short left to K.Ogletree to NO 43 for 12 yards (P.Robinson). Penalty on NO-C.Jordan Defensive Offside declined.,14,17,2012 -20121223_NO@DAL,3,28,9,DAL,NO,1,10,43,(13:09) D.Murray left end to NO 34 for 9 yards (R.Harper; P.Robinson).,14,17,2012 -20121223_NO@DAL,3,27,37,DAL,NO,2,1,34,(12:37) D.Murray up the middle to NO 29 for 5 yards (C.Lofton).,14,17,2012 -20121223_NO@DAL,3,26,49,DAL,NO,1,10,29,(11:49) D.Murray right tackle to NO 35 for -6 yards (C.Jordan).,14,17,2012 -20121223_NO@DAL,3,26,9,DAL,NO,2,16,35,(11:09) (Shotgun) T.Romo pass short right to J.Witten pushed ob at NO 29 for 6 yards (J.Casillas).,14,17,2012 -20121223_NO@DAL,3,25,38,DAL,NO,3,10,29,"(10:38) (Shotgun) T.Romo pass incomplete short right to D.Bryant. Pass incomplete on an ""up and out"" pattern; Robinson closest defender.",14,17,2012 -20121223_NO@DAL,3,25,31,DAL,NO,4,10,29,(10:31) (Field Goal formation) D.Bailey 47 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,14,17,2012 -20121223_NO@DAL,3,25,31,DAL,NO,,,29,D.Bailey kicks 65 yards from DAL 35 to end zone Touchback. Ball was kicked out of the end zone. Injury update: Jabari Greer has a concussion. His return is questionable.,17,17,2012 -20121223_NO@DAL,3,25,26,NO,DAL,1,10,80,(10:26) M.Ingram left guard to NO 25 for 5 yards (J.Hatcher).,17,17,2012 -20121223_NO@DAL,3,24,49,NO,DAL,2,5,75,(9:49) D.Brees pass incomplete short right to P.Thomas. Pass incomplete after roll right; Spencer closest defender.,17,17,2012 -20121223_NO@DAL,3,24,42,NO,DAL,3,5,75,"(9:42) (Shotgun) D.Brees pass short right to J.Graham to NO 41 for 16 yards (B.Carr; G.Sensabaugh). Pass complete on a ""curl"" route.",17,17,2012 -20121223_NO@DAL,3,24,7,NO,DAL,1,10,59,(9:07) D.Sproles up the middle to NO 46 for 5 yards (J.Hatcher S.Lissemore).,17,17,2012 -20121223_NO@DAL,3,23,38,NO,DAL,2,5,54,(8:38) M.Ingram left tackle to NO 43 for -3 yards (A.Spencer). Penalty on NO-E.Olsen Offensive Holding declined.,17,17,2012 -20121223_NO@DAL,3,23,13,NO,DAL,3,8,57,(8:13) (Shotgun) D.Brees pass incomplete short middle to M.Colston (S.Moore). Pass tipped near the line of scrimmage by Moore.,17,17,2012 -20121223_NO@DAL,3,23,7,NO,DAL,4,8,57,(8:07) (Punt formation) T.Morstead punts 41 yards to DAL 16 Center-J.Drescher out of bounds.,17,17,2012 -20121223_NO@DAL,3,23,0,DAL,NO,1,10,84,(8:00) T.Romo pass incomplete short right to J.Witten. Pass incomplete sideline at the Dallas 25; Lofton closest defender.,17,17,2012 -20121223_NO@DAL,3,22,53,DAL,NO,2,10,84,(7:53) (Shotgun) D.Murray right end to DAL 18 for 2 yards (C.Jordan).,17,17,2012 -20121223_NO@DAL,3,22,8,DAL,NO,3,8,82,(7:08) (Shotgun) T.Romo pass incomplete deep right to M.Austin. Pass incomplete sideline at the Dallas 48; Patrick closest defender.,17,17,2012 -20121223_NO@DAL,3,22,0,DAL,NO,4,8,82,(7:00) (Punt formation) B.Moorman punts 57 yards to NO 25 Center-L.Ladouceur. D.Sproles pushed ob at NO 27 for 2 yards (L.Dunbar).,17,17,2012 -20121223_NO@DAL,3,21,48,NO,DAL,1,10,73,"(6:48) D.Brees pass short middle to P.Thomas to NO 29 for 2 yards (D.Connor). Pass complete on a ""crossing"" pattern.",17,17,2012 -20121223_NO@DAL,3,21,15,NO,DAL,2,8,71,"(6:15) D.Brees pass short left to L.Moore to NO 35 for 6 yards (M.Claiborne). Pass complete on a ""slant"" pattern.",17,17,2012 -20121223_NO@DAL,3,20,30,NO,DAL,3,2,65,(5:30) (Shotgun) D.Brees pass incomplete short middle to M.Colston. PENALTY on DAL-B.Poppinga Defensive Pass Interference 3 yards enforced at NO 35 - No Play.,17,17,2012 -20121223_NO@DAL,3,20,24,NO,DAL,1,10,62,(5:24) (Shotgun) D.Sproles left end to NO 43 for 5 yards (D.Connor).,17,17,2012 -20121223_NO@DAL,3,19,50,NO,DAL,2,5,57,"(4:50) D.Brees pass incomplete short left to J.Graham. Pass incomplete on a ""drag"" route; Carr closest defender.",17,17,2012 -20121223_NO@DAL,3,19,43,NO,DAL,3,5,57,"(4:43) (Shotgun) D.Brees pass incomplete short left to D.Sproles (G.Sensabaugh). Pass incomplete on a ""wheel"" route.",17,17,2012 -20121223_NO@DAL,3,19,37,NO,DAL,4,5,57,(4:37) (Punt formation) T.Morstead punts 54 yards to DAL 3 Center-J.Drescher downed by NO-R.Bush.,17,17,2012 -20121223_NO@DAL,3,19,25,DAL,NO,1,10,97,(4:25) D.Murray left guard to DAL 7 for 4 yards (C.Lofton). FUMBLES (C.Lofton) RECOVERED by NO-C.Lofton at DAL 5. The Replay Assistant challenged the fumble ruling and the play was Upheld.,17,17,2012 -20121223_NO@DAL,3,19,17,NO,DAL,1,5,5,"(4:17) (Shotgun) D.Brees pass incomplete short left to L.Moore (M.Claiborne). Pass incomplete on a ""slant"" pattern.",17,17,2012 -20121223_NO@DAL,3,19,12,NO,DAL,2,5,5,(4:12) (Shotgun) D.Brees pass incomplete short right to D.Sproles. Pass incomplete off play action; ball thrown in the flat; Spears closest defender.,17,17,2012 -20121223_NO@DAL,3,19,8,NO,DAL,3,5,5,(4:08) (Shotgun) D.Brees pass short middle to P.Thomas for 5 yards TOUCHDOWN.,17,17,2012 -20121223_NO@DAL,3,19,8,NO,DAL,,,5,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,17,2012 -20121223_NO@DAL,3,19,8,NO,DAL,,,5,T.Morstead kicks 71 yards from NO 35 to DAL -6. D.Harris Touchback.,24,17,2012 -20121223_NO@DAL,3,19,3,DAL,NO,1,10,80,"(4:03) (Shotgun) T.Romo pass short middle to J.Hanna to DAL 28 for 8 yards (J.Vilma). Pass complete on a ""slant"" pattern.",17,24,2012 -20121223_NO@DAL,3,18,24,DAL,NO,2,2,72,"(3:24) T.Romo pass short right to M.Austin to DAL 31 for 3 yards (C.Lofton J.Patrick). Pass complete on a ""quick out""",17,24,2012 -20121223_NO@DAL,3,17,39,DAL,NO,1,10,69,(2:39) (Shotgun) PENALTY on DAL-J.Witten False Start 5 yards enforced at DAL 31 - No Play.,17,24,2012 -20121223_NO@DAL,3,17,20,DAL,NO,1,15,74,(2:20) (Shotgun) T.Romo pass incomplete short right to F.Jones (C.Jordan). Pass was tipped at the line of scrimmage.,17,24,2012 -20121223_NO@DAL,3,17,15,DAL,NO,2,15,74,"(2:15) (Shotgun) T.Romo pass short left to D.Murray to DAL 35 for 9 yards (C.Lofton). Pass complete on a ""wheel"" route.",17,24,2012 -20121223_NO@DAL,3,16,25,DAL,NO,3,6,65,(1:25) (Shotgun) T.Romo pass incomplete short left to D.Murray. Pass incomplete sideline at the Dallas 40; Lofton closest defender.,17,24,2012 -20121223_NO@DAL,3,16,18,DAL,NO,4,6,65,(1:18) (Punt formation) B.Moorman punts 63 yards to NO 2 Center-L.Ladouceur downed by DAL-M.Coe.,17,24,2012 -20121223_NO@DAL,3,16,3,NO,DAL,1,10,98,(1:03) M.Ingram up the middle to NO 4 for 2 yards (A.Albright B.Schaefering).,24,17,2012 -20121223_NO@DAL,3,15,30,NO,DAL,2,8,96,"(:30) D.Brees pass short right to M.Colston pushed ob at NO 10 for 6 yards (B.Carr). Pass complete on a ""square out""",24,17,2012 -20121223_NO@DAL,4,15,0,NO,DAL,3,2,90,(15:00) (Shotgun) P.Thomas up the middle to NO 16 for 6 yards (G.Sensabaugh).,24,17,2012 -20121223_NO@DAL,4,14,23,NO,DAL,1,10,84,(14:23) P.Thomas left guard to NO 14 for -2 yards (V.Butler).,24,17,2012 -20121223_NO@DAL,4,13,46,NO,DAL,2,12,86,(13:46) P.Thomas left tackle to NO 19 for 5 yards (B.Poppinga). NO-P.Thomas was injured during the play.,24,17,2012 -20121223_NO@DAL,4,13,14,NO,DAL,3,7,81,"(13:14) (Shotgun) D.Brees pass short middle to J.Graham to NO 35 for 16 yards (C.Peprah). Pass complete on a ""crossing"" pattern. Injury update: DeMarcus Ware has a right shoulder strain. His return is questionable.",24,17,2012 -20121223_NO@DAL,4,12,37,NO,DAL,1,10,65,(12:37) M.Ingram left guard to NO 37 for 2 yards (J.Hatcher).,24,17,2012 -20121223_NO@DAL,4,12,0,NO,DAL,2,8,63,(12:00) (Shotgun) D.Brees pass incomplete short middle to P.Thomas (J.Hatcher). Pass knocked down at the line of scrimmage.,24,17,2012 -20121223_NO@DAL,4,11,50,NO,DAL,3,8,63,"(11:50) (Shotgun) D.Brees pass short middle to M.Colston pushed ob at DAL 3 for 60 yards (S.Moore) [T.Crawford]. Pass complete on a ""deep crossing pattern""",24,17,2012 -20121223_NO@DAL,4,11,14,NO,DAL,1,3,3,"(11:14) D.Brees pass short right to D.Thomas for 3 yards TOUCHDOWN. Touchdown off ""play action.""",24,17,2012 -20121223_NO@DAL,4,11,14,NO,DAL,,,3,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,24,17,2012 -20121223_NO@DAL,4,11,14,NO,DAL,,,3,T.Morstead kicks 65 yards from NO 35 to end zone Touchback. Ball was kicked out of the end zone.,31,17,2012 -20121223_NO@DAL,4,11,10,DAL,NO,1,10,80,"(11:10) (Shotgun) T.Romo pass incomplete short middle to M.Austin. Pass incomplete on a ""slant"" pattern; Bush closest defender.",17,31,2012 -20121223_NO@DAL,4,11,6,DAL,NO,2,10,80,(11:06) (Shotgun) T.Romo pass incomplete short middle to D.Murray.,17,31,2012 -20121223_NO@DAL,4,10,58,DAL,NO,3,10,80,(10:58) (Shotgun) T.Romo pass deep middle to D.Bryant to DAL 46 for 26 yards (R.Bush; I.Abdul-Quddus).,17,31,2012 -20121223_NO@DAL,4,10,58,DAL,NO,1,10,54,(10:58) (Shotgun) T.Romo pass incomplete deep right to M.Austin (J.Patrick). Pass incomplete sideline.,17,31,2012 -20121223_NO@DAL,4,10,24,DAL,NO,2,10,54,"(10:24) (Shotgun) T.Romo pass incomplete short middle to M.Austin. Pass incomplete on a ""slant"" pattern; Mack closest defender.",17,31,2012 -20121223_NO@DAL,4,10,19,DAL,NO,3,10,54,(10:19) (Shotgun) T.Romo sacked at DAL 44 for -2 yards (J.Galette).,17,31,2012 -20121223_NO@DAL,4,9,48,DAL,NO,4,12,56,(9:48) (Punt formation) B.Moorman punts 56 yards to end zone Center-L.Ladouceur Touchback.,17,31,2012 -20121223_NO@DAL,4,9,39,NO,DAL,1,10,80,(9:39) M.Ingram left tackle to NO 22 for 2 yards (D.Connor V.Butler).,31,17,2012 -20121223_NO@DAL,4,9,5,NO,DAL,2,8,78,(9:05) D.Sproles left tackle to NO 39 for 17 yards (M.Claiborne).,31,17,2012 -20121223_NO@DAL,4,8,19,NO,DAL,1,10,61,(8:19) M.Ingram up the middle to NO 41 for 2 yards (M.Spears).,31,17,2012 -20121223_NO@DAL,4,7,45,NO,DAL,2,8,59,(7:45) D.Brees pass short left to D.Sproles to DAL 49 for 10 yards (V.Butler). Pass complete in the flat off play action.,31,17,2012 -20121223_NO@DAL,4,6,55,NO,DAL,1,10,49,(6:55) P.Thomas right tackle to DAL 49 for no gain (B.Carr).,31,17,2012 -20121223_NO@DAL,4,6,55,NO,DAL,2,10,49,(6:55) PENALTY on NO-J.Graham False Start 5 yards enforced at DAL 49 - No Play.,31,17,2012 -20121223_NO@DAL,4,5,49,NO,DAL,2,15,54,(5:49) (Shotgun) D.Sproles up the middle to NO 48 for 2 yards (T.Crawford).,31,17,2012 -20121223_NO@DAL,4,5,8,NO,DAL,3,13,52,"(5:08) (Shotgun) D.Brees pass short left to J.Graham to DAL 48 for 4 yards (M.Claiborne). Pass complete on a ""button hook""",31,17,2012 -20121223_NO@DAL,4,4,59,NO,DAL,4,9,48,(4:59) (Punt formation) T.Morstead punts 48 yards to end zone Center-J.Drescher Touchback.,31,17,2012 -20121223_NO@DAL,4,4,45,DAL,NO,1,10,80,(4:45) (Shotgun) T.Romo pass short left to D.Bryant to DAL 28 for 8 yards (P.Robinson) [W.Smith].,17,31,2012 -20121223_NO@DAL,4,4,20,DAL,NO,2,2,72,"(4:20) (No Huddle Shotgun) T.Romo pass deep left to D.Bryant to NO 31 for 41 yards (P.Robinson). Pass complete on a ""go"" route.",17,31,2012 -20121223_NO@DAL,4,3,49,DAL,NO,1,10,31,"(3:49) (No Huddle Shotgun) T.Romo pass short right to D.Murray pushed ob at NO 16 for 15 yards (J.Patrick). Pass complete on a ""wheel"" route.",17,31,2012 -20121223_NO@DAL,4,3,44,DAL,NO,1,10,16,(3:44) (Shotgun) T.Romo pass incomplete short right to D.Harris. Pass incomplete at the New Orleans 6; Patrick closest defender.,17,31,2012 -20121223_NO@DAL,4,3,40,DAL,NO,2,10,16,(3:40) (Shotgun) T.Romo pass deep left to D.Harris for 16 yards TOUCHDOWN. Pass complete at corner of goal line.,17,31,2012 -20121223_NO@DAL,4,3,40,DAL,NO,,,16,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,17,31,2012 -20121223_NO@DAL,4,3,40,DAL,NO,,,16,D.Bailey kicks 65 yards from DAL 35 to NO 0. D.Sproles pushed ob at NO 15 for 15 yards (E.Frampton). Return left side outside the yard line markers.,24,31,2012 -20121223_NO@DAL,4,3,32,NO,DAL,1,10,85,(3:32) M.Ingram right tackle to NO 20 for 5 yards (A.Albright).,31,24,2012 -20121223_NO@DAL,4,2,46,NO,DAL,2,5,80,"(2:46) (Shotgun) D.Brees pass short middle to J.Graham to NO 26 for 6 yards (B.Poppinga). Pass complete on a ""curl"" route.",31,24,2012 -20121223_NO@DAL,4,2,4,NO,DAL,1,10,74,(2:04) M.Ingram left tackle to NO 25 for -1 yards (A.Spencer; J.Hatcher).,31,24,2012 -20121223_NO@DAL,4,1,59,NO,DAL,2,11,75,(1:59) (Shotgun) D.Sproles left tackle to NO 26 for 1 yard (V.Butler).,31,24,2012 -20121223_NO@DAL,4,1,54,NO,DAL,3,10,74,(1:54) (Shotgun) D.Brees pass short right to M.Colston to NO 35 for 9 yards (M.Jenkins). Hatcher with heavy pressure on Brees,31,24,2012 -20121223_NO@DAL,4,1,45,NO,DAL,4,1,65,(1:45) (Punt formation) T.Morstead punts 57 yards to DAL 8 Center-J.Drescher. D.Harris to DAL 36 for 28 yards (T.Cadet).,31,24,2012 -20121223_NO@DAL,4,1,29,DAL,NO,1,10,64,"(1:29) (Shotgun) T.Romo pass short left to D.Murray pushed ob at NO 42 for 22 yards (I.Abdul-Quddus). Pass complete on a ""crossing"" pattern.",24,31,2012 -20121223_NO@DAL,4,1,20,DAL,NO,1,10,42,(1:20) (Shotgun) T.Romo pass short right to D.Bryant to NO 38 for 4 yards (P.Robinson).,24,31,2012 -20121223_NO@DAL,4,0,55,DAL,NO,2,6,38,(:55) (No Huddle Shotgun) T.Romo pass short middle to J.Witten to NO 19 for 19 yards (J.Patrick).,24,31,2012 -20121223_NO@DAL,4,0,55,DAL,NO,1,10,19,(:55) (No Huddle) T.Romo spiked the ball to stop the clock.,24,31,2012 -20121223_NO@DAL,4,0,32,DAL,NO,2,10,19,(:32) (Shotgun) T.Romo pass incomplete short right to D.Harris [S.Ellis]. Pass thrown sideline at the New Orleans 9; Ellis with heavy pressure on Romo.,24,31,2012 -20121223_NO@DAL,4,0,27,DAL,NO,3,10,19,"(:27) (Shotgun) T.Romo pass incomplete deep middle to J.Witten. Pass incomplete on a ""seam"" route in the end zone.",24,31,2012 -20121223_NO@DAL,4,0,21,DAL,NO,4,10,19,(:21) (Shotgun) T.Romo pass deep right to M.Austin for 19 yards TOUCHDOWN. Pass caught 4 yards deep corner of the end zone.,24,31,2012 -20121223_NO@DAL,4,0,21,DAL,NO,,,19,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,24,31,2012 -20121223_NO@DAL,4,0,21,DAL,NO,,,19,D.Bailey kicks 60 yards from DAL 35 to NO 5. P.Thomas to NO 21 for 16 yards (B.Poppinga).,31,31,2012 -20121223_NO@DAL,4,0,15,NO,DAL,1,10,79,(:15) D.Brees kneels to NO 20 for -1 yards.,31,31,2012 -20121223_NO@DAL,5,0,0,NO,DAL,,,79,T.Morstead kicks 65 yards from NO 35 to end zone Touchback. Ball was kicked out of the end zone.,31,31,2012 -20121223_NO@DAL,5,0,0,DAL,NO,1,10,80,(15:00) (Shotgun) T.Romo pass short right to J.Witten ran ob at DAL 31 for 11 yards.,31,31,2012 -20121223_NO@DAL,5,-1,43,DAL,NO,1,10,69,(14:43) (Shotgun) D.Murray up the middle to DAL 31 for no gain (T.Johnson).,31,31,2012 -20121223_NO@DAL,5,-1,18,DAL,NO,2,10,69,(14:18) (Shotgun) T.Romo pass short right to J.Witten ran ob at DAL 36 for 5 yards (J.Casillas). The catch is the 103rd of the season by Witten which sets a new league record for catches in a single season. The record was previously held by Tony Gonzalez.,31,31,2012 -20121223_NO@DAL,5,-2,47,DAL,NO,3,5,64,"(13:47) (Shotgun) T.Romo pass incomplete short left to D.Bryant. Pass incomplete on a ""slant."" Robinson closest defender.",31,31,2012 -20121223_NO@DAL,5,-2,42,DAL,NO,4,5,64,(13:42) (Punt formation) B.Moorman punts 46 yards to NO 18 Center-L.Ladouceur. D.Sproles pushed ob at NO 26 for 8 yards (A.Albright). Return outside the yard line numbers.,31,31,2012 -20121223_NO@DAL,5,-2,33,NO,DAL,1,10,74,(13:33) (Shotgun) D.Brees pass deep right to J.Graham to DAL 48 for 26 yards (B.Carr).,31,31,2012 -20121223_NO@DAL,5,-3,48,NO,DAL,1,10,48,(12:48) (Shotgun) P.Thomas up the middle to DAL 41 for 7 yards (V.Butler).,31,31,2012 -20121223_NO@DAL,5,-3,9,NO,DAL,2,3,41,"(12:09) (Shotgun) D.Brees pass incomplete short middle to J.Graham. Pass incomplete on a ""crossing"" pattern.",31,31,2012 -20121223_NO@DAL,5,-3,5,NO,DAL,3,3,41,(12:05) (Shotgun) D.Brees pass short middle to J.Graham to DAL 34 for 7 yards (M.Claiborne).,31,31,2012 -20121223_NO@DAL,5,-4,29,NO,DAL,1,10,34,(11:29) M.Ingram right guard to DAL 33 for 1 yard (A.Spencer).,31,31,2012 -20121223_NO@DAL,5,-5,46,NO,DAL,2,9,33,(10:46) (Shotgun) D.Brees pass short middle to M.Colston to DAL 24 for 9 yards (M.Claiborne). FUMBLES (M.Claiborne) recovered by NO-J.Graham at DAL 2. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,31,31,2012 -20121223_NO@DAL,5,-5,37,NO,DAL,1,2,2,(10:37) (Field Goal formation) G.Hartley 20 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,31,31,2012 -20121223_NO@DAL,5,-5,37,NO,DAL,,,2,                      ,34,31,2012 -20121223_TEN@GB,1,-5,0,GB,TEN,,,2,M.Crosby kicks 65 yards from GB 35 to TEN 0. D.Reynaud to TEN 21 for 21 yards (F.Zombo).,0,0,2012 -20121223_TEN@GB,1,59,55,TEN,GB,1,10,79,(14:55) J.Locker pass incomplete short left to K.Britt (B.Raji).,0,0,2012 -20121223_TEN@GB,1,59,52,TEN,GB,2,10,79,(14:52) C.Johnson right guard to TEN 20 for -1 yards (A.Hawk).,0,0,2012 -20121223_TEN@GB,1,59,9,TEN,GB,3,11,80,(14:09) (Shotgun) J.Locker sacked at TEN 20 for 0 yards (C.Matthews).,0,0,2012 -20121223_TEN@GB,1,58,37,TEN,GB,4,11,80,(13:37) B.Kern punts 52 yards to GB 28 Center-B.Brinkley. R.Cobb to GB 42 for 14 yards (W.Witherspoon; T.Thompson).,0,0,2012 -20121223_TEN@GB,1,58,24,GB,TEN,1,10,58,(13:24) D.Harris left end to GB 45 for 3 yards (J.Casey).,0,0,2012 -20121223_TEN@GB,1,57,50,GB,TEN,2,7,55,(12:50) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to TEN 44 for 11 yards (C.Sensabaugh).,0,0,2012 -20121223_TEN@GB,1,57,18,GB,TEN,1,10,44,(12:18) (No Huddle) D.Harris up the middle to TEN 42 for 2 yards (S.Marks J.Babineaux).,0,0,2012 -20121223_TEN@GB,1,56,43,GB,TEN,2,8,42,(11:43) (No Huddle Shotgun) D.Harris right tackle to TEN 41 for 1 yard (D.Morgan).,0,0,2012 -20121223_TEN@GB,1,56,0,GB,TEN,3,7,41,(11:00) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb.,0,0,2012 -20121223_TEN@GB,1,55,55,GB,TEN,4,7,41,(10:55) T.Masthay punts 21 yards to TEN 20 Center-B.Goode fair catch by D.Reynaud.,0,0,2012 -20121223_TEN@GB,1,55,47,TEN,GB,1,10,80,(10:47) J.Locker pass incomplete deep left to T.Thompson.,0,0,2012 -20121223_TEN@GB,1,55,47,TEN,GB,2,10,80,(10:47) PENALTY on TEN-J.Locker Delay of Game 5 yards enforced at TEN 20 - No Play.,0,0,2012 -20121223_TEN@GB,1,55,39,TEN,GB,2,15,85,(10:39) J.Locker pass incomplete short right to N.Washington. Penalty on TEN-M.Petrus Face Mask (15 Yards) declined.,0,0,2012 -20121223_TEN@GB,1,55,35,TEN,GB,3,15,85,(10:35) (Shotgun) J.Locker pass short middle to M.Preston to TEN 22 for 7 yards (B.Jones).,0,0,2012 -20121223_TEN@GB,1,54,53,TEN,GB,4,8,78,(9:53) B.Kern punts 51 yards to GB 27 Center-B.Brinkley. R.Cobb to GB 44 for 17 yards (T.Shaw).,0,0,2012 -20121223_TEN@GB,1,54,42,GB,TEN,1,10,56,(9:42) A.Rodgers pass short left to D.Williams to TEN 48 for 8 yards (W.Witherspoon).,0,0,2012 -20121223_TEN@GB,1,54,15,GB,TEN,2,2,48,(9:15) (No Huddle Shotgun) R.Grant left guard to TEN 42 for 6 yards (J.Casey W.Witherspoon).,0,0,2012 -20121223_TEN@GB,1,53,44,GB,TEN,1,10,42,(8:44) (No Huddle Shotgun) A.Rodgers pass short right to G.Jennings to TEN 33 for 9 yards (J.McCourty).,0,0,2012 -20121223_TEN@GB,1,53,7,GB,TEN,2,1,33,(8:07) (No Huddle) R.Grant left end pushed ob at TEN 15 for 18 yards (Z.Brown).,0,0,2012 -20121223_TEN@GB,1,52,43,GB,TEN,1,10,15,(7:43) (No Huddle Shotgun) R.Grant left guard to TEN 6 for 9 yards (M.Griffin).,0,0,2012 -20121223_TEN@GB,1,51,59,GB,TEN,2,1,6,(6:59) (No Huddle Shotgun) A.Rodgers up the middle for 6 yards TOUCHDOWN.,0,0,2012 -20121223_TEN@GB,1,51,59,GB,TEN,,,6,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20121223_TEN@GB,1,51,59,GB,TEN,,,6,M.Crosby kicks 64 yards from GB 35 to TEN 1. D.Reynaud to TEN 16 for 15 yards (J.Bush).,7,0,2012 -20121223_TEN@GB,1,51,49,TEN,GB,1,10,84,(6:49) C.Johnson left end to TEN 16 for no gain (R.Pickett).,0,7,2012 -20121223_TEN@GB,1,51,13,TEN,GB,2,10,84,(6:13) (Shotgun) J.Locker pass incomplete short middle to C.Johnson [A.Hawk]. Penalty on TEN-D.Lutui Offensive Holding declined. PENALTY on TEN-J.Locker Intentional Grounding 11 yards enforced at TEN 16.,0,7,2012 -20121223_TEN@GB,1,51,10,TEN,GB,3,21,95,(6:10) (Shotgun) C.Johnson left tackle to TEN 12 for 7 yards (M.Neal).,0,7,2012 -20121223_TEN@GB,1,50,29,TEN,GB,4,14,88,(5:29) B.Kern punts 31 yards to TEN 43 Center-B.Brinkley out of bounds.,0,7,2012 -20121223_TEN@GB,1,50,22,GB,TEN,1,10,43,(5:22) A.Rodgers pass short right to Ja.Jones to TEN 28 for 15 yards (J.McCourty).,7,0,2012 -20121223_TEN@GB,1,49,53,GB,TEN,1,10,28,(4:53) (No Huddle Shotgun) A.Rodgers pass short left to G.Jennings pushed ob at TEN 20 for 8 yards (A.Verner).,7,0,2012 -20121223_TEN@GB,1,49,34,GB,TEN,2,2,20,(4:34) (No Huddle) A.Rodgers pass deep right to R.Cobb for 20 yards TOUCHDOWN.,7,0,2012 -20121223_TEN@GB,1,49,34,GB,TEN,,,20,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,0,2012 -20121223_TEN@GB,1,49,34,GB,TEN,,,20,M.Crosby kicks 64 yards from GB 35 to TEN 1. D.Reynaud to TEN 28 for 27 yards (C.Hayward).,14,0,2012 -20121223_TEN@GB,1,49,22,TEN,GB,1,10,72,(4:22) C.Johnson left guard to TEN 31 for 3 yards (C.Hayward).,0,14,2012 -20121223_TEN@GB,1,48,49,TEN,GB,2,7,69,(3:49) J.Locker left end ran ob at GB 47 for 22 yards (T.Williams).,0,14,2012 -20121223_TEN@GB,1,48,23,TEN,GB,1,10,47,(3:23) J.Locker pass deep left intended for K.Britt INTERCEPTED by S.Shields at GB 21. S.Shields to GB 21 for no gain (K.Britt).,0,14,2012 -20121223_TEN@GB,1,48,15,GB,TEN,1,10,79,(3:15) (Shotgun) A.Rodgers pass incomplete deep right to R.Cobb.,14,0,2012 -20121223_TEN@GB,1,48,7,GB,TEN,2,10,79,(3:07) (Shotgun) R.Grant up the middle to GB 23 for 2 yards (Z.Brown).,14,0,2012 -20121223_TEN@GB,1,47,33,GB,TEN,3,8,77,(2:33) (No Huddle Shotgun) A.Rodgers sacked at GB 15 for -8 yards (M.Martin).,14,0,2012 -20121223_TEN@GB,1,47,7,GB,TEN,4,16,85,(2:07) T.Masthay punts 45 yards to TEN 40 Center-B.Goode fair catch by D.Reynaud.,14,0,2012 -20121223_TEN@GB,1,47,0,TEN,GB,1,10,60,(2:00) C.Johnson left end to TEN 37 for -3 yards (C.Matthews). TEN-C.Johnson was injured during the play. His return is Questionable.,0,14,2012 -20121223_TEN@GB,1,46,24,TEN,GB,2,13,63,(1:24) J.Locker sacked at TEN 30 for -7 yards (A.Hawk).,0,14,2012 -20121223_TEN@GB,1,45,47,TEN,GB,3,20,70,(:47) (Shotgun) J.Locker pass short middle intended for D.Williams INTERCEPTED by E.Walden at TEN 34. E.Walden to TEN 14 for 20 yards (C.Stevens).,0,14,2012 -20121223_TEN@GB,1,45,37,GB,TEN,1,10,14,(:37) A.Rodgers pass short left to Ja.Jones to TEN 8 for 6 yards (A.Verner).,14,0,2012 -20121223_TEN@GB,2,45,0,GB,TEN,2,4,8,(15:00) A.Rodgers pass incomplete short left to J.Finley.,14,0,2012 -20121223_TEN@GB,2,44,46,GB,TEN,3,4,8,(14:46) (Shotgun) A.Rodgers pass incomplete short middle to Ja.Jones.,14,0,2012 -20121223_TEN@GB,2,44,39,GB,TEN,4,4,8,(14:39) M.Crosby 26 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,14,0,2012 -20121223_TEN@GB,2,44,39,GB,TEN,,,8,M.Crosby kicks 35 yards from GB 35 to TEN 30. W.Witherspoon to TEN 36 for 6 yards (J.McMillian; J.Bush).,17,0,2012 -20121223_TEN@GB,2,44,32,TEN,GB,1,10,64,(14:32) J.Locker right end ran ob at TEN 38 for 2 yards (B.Jones).,0,17,2012 -20121223_TEN@GB,2,44,10,TEN,GB,2,8,62,(14:10) J.Harper right end pushed ob at TEN 39 for 1 yard (A.Hawk).,0,17,2012 -20121223_TEN@GB,2,43,39,TEN,GB,3,7,61,(13:39) (Shotgun) J.Locker pass short left to D.Williams to TEN 47 for 8 yards (C.Matthews).,0,17,2012 -20121223_TEN@GB,2,43,2,TEN,GB,1,10,53,(13:02) J.Harper right guard to GB 40 for 13 yards (M.Jennings M.Burnett).,0,17,2012 -20121223_TEN@GB,2,42,27,TEN,GB,1,10,40,(12:27) J.Harper left end to GB 40 for no gain (A.Hawk E.Walden).,0,17,2012 -20121223_TEN@GB,2,41,48,TEN,GB,2,10,40,(11:48) J.Harper left end to GB 31 for 9 yards (M.Burnett).,0,17,2012 -20121223_TEN@GB,2,41,8,TEN,GB,3,1,31,(11:08) Q.Johnson left guard to GB 31 for no gain (M.Daniels).,0,17,2012 -20121223_TEN@GB,2,40,23,TEN,GB,4,1,31,(10:23) J.Locker pass incomplete short left to D.Williams.,0,17,2012 -20121223_TEN@GB,2,40,20,GB,TEN,1,10,69,(10:20) D.Harris right tackle to GB 32 for 1 yard (M.Martin T.Shaw).,17,0,2012 -20121223_TEN@GB,2,39,50,GB,TEN,2,9,68,(9:50) (No Huddle) D.Harris right end to GB 42 for 10 yards (M.Martin).,17,0,2012 -20121223_TEN@GB,2,39,19,GB,TEN,1,10,58,(9:19) (No Huddle) D.Harris right end pushed ob at GB 42 for no gain (Z.Brown).,17,0,2012 -20121223_TEN@GB,2,38,52,GB,TEN,2,10,58,(8:52) (No Huddle) A.Rodgers pass short right to D.Williams pushed ob at GB 45 for 3 yards (D.Morgan).,17,0,2012 -20121223_TEN@GB,2,38,17,GB,TEN,3,7,55,(8:17) (No Huddle Shotgun) A.Rodgers pass short middle to J.Kuhn to TEN 46 for 9 yards (Z.Brown W.Witherspoon).,17,0,2012 -20121223_TEN@GB,2,37,49,GB,TEN,1,10,46,(7:49) (No Huddle Shotgun) A.Rodgers pass short left to G.Jennings to TEN 38 for 8 yards (C.Sensabaugh).,17,0,2012 -20121223_TEN@GB,2,37,20,GB,TEN,2,2,38,(7:20) (No Huddle Shotgun) A.Rodgers up the middle to TEN 37 for 1 yard (A.Ayers).,17,0,2012 -20121223_TEN@GB,2,36,46,GB,TEN,3,1,37,(6:46) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to G.Jennings.,17,0,2012 -20121223_TEN@GB,2,36,41,GB,TEN,4,1,37,(6:41) G.Van Roten reported in as eligible. R.Grant left tackle to TEN 35 for 2 yards (T.Shaw; Z.Brown).,17,0,2012 -20121223_TEN@GB,2,36,0,GB,TEN,1,10,35,(6:00) R.Grant right guard to TEN 33 for 2 yards (D.Harris).,17,0,2012 -20121223_TEN@GB,2,35,25,GB,TEN,2,8,33,(5:25) (No Huddle) R.Grant left end to TEN 30 for 3 yards (K.Wimbley).,17,0,2012 -20121223_TEN@GB,2,34,50,GB,TEN,3,5,30,(4:50) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Finley [W.Witherspoon].,17,0,2012 -20121223_TEN@GB,2,34,45,GB,TEN,4,6,30,(4:45) M.Crosby 48 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,17,0,2012 -20121223_TEN@GB,2,34,45,GB,TEN,,,30,M.Crosby kicks 58 yards from GB 35 to TEN 7. D.Reynaud to TEN 16 for 9 yards (R.Francois).,20,0,2012 -20121223_TEN@GB,2,34,35,TEN,GB,1,10,84,(4:35) C.Johnson right guard to TEN 20 for 4 yards (M.Burnett B.Jones).,0,20,2012 -20121223_TEN@GB,2,34,3,TEN,GB,2,6,80,(4:03) J.Locker sacked at TEN 17 for -3 yards (D.Moses).,0,20,2012 -20121223_TEN@GB,2,33,20,TEN,GB,3,9,83,(3:20) (Shotgun) J.Locker pass deep middle to D.Williams to TEN 37 for 20 yards (M.Jennings).,0,20,2012 -20121223_TEN@GB,2,32,44,TEN,GB,1,10,63,(2:44) C.Johnson left end to TEN 41 for 4 yards (E.Walden).,0,20,2012 -20121223_TEN@GB,2,32,16,TEN,GB,2,6,59,(2:16) C.Johnson right guard to TEN 44 for 3 yards (M.Burnett; A.Hawk).,0,20,2012 -20121223_TEN@GB,2,32,9,TEN,GB,3,3,56,(2:09) (Shotgun) J.Locker pass incomplete short middle to N.Washington [C.Matthews].,0,20,2012 -20121223_TEN@GB,2,32,5,TEN,GB,4,3,56,(2:05) B.Kern punts 54 yards to GB 2 Center-B.Brinkley downed by TEN-P.Bailey.,0,20,2012 -20121223_TEN@GB,2,31,54,GB,TEN,1,10,98,(1:54) (Shotgun) A.Rodgers pass short left to D.Williams to GB 11 for 9 yards (Z.Brown).,20,0,2012 -20121223_TEN@GB,2,31,31,GB,TEN,2,1,89,(1:31) (No Huddle Shotgun) A.Rodgers pass incomplete short right to Ja.Jones.,20,0,2012 -20121223_TEN@GB,2,31,26,GB,TEN,3,1,89,(1:26) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 18 for 7 yards (A.Verner).,20,0,2012 -20121223_TEN@GB,2,31,3,GB,TEN,1,10,82,(1:03) (No Huddle Shotgun) A.Rodgers pass deep middle to J.Finley to GB 41 for 23 yards (W.Witherspoon). Penalty on TEN Defensive 12 On-field declined.,20,0,2012 -20121223_TEN@GB,2,30,59,GB,TEN,1,10,59,(:59) (Shotgun) A.Rodgers pass short middle to J.Finley to TEN 45 for 14 yards (A.Afalava) [D.Morgan].,20,0,2012 -20121223_TEN@GB,2,30,37,GB,TEN,1,10,45,(:37) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to TEN 43 for 2 yards (J.McCourty).,20,0,2012 -20121223_TEN@GB,2,30,30,GB,TEN,2,8,43,(:30) (Shotgun) A.Rodgers pass incomplete short middle to G.Jennings.,20,0,2012 -20121223_TEN@GB,2,30,30,GB,TEN,3,8,43,(:30) (Shotgun) PENALTY on TEN-A.Ayers Neutral Zone Infraction 5 yards enforced at TEN 43 - No Play.,20,0,2012 -20121223_TEN@GB,2,30,26,GB,TEN,3,3,38,(:26) (Shotgun) A.Rodgers pass incomplete deep right to J.Finley.,20,0,2012 -20121223_TEN@GB,2,30,17,GB,TEN,4,3,38,(:17) (Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones.,20,0,2012 -20121223_TEN@GB,2,30,12,TEN,GB,1,10,62,(:12) (Shotgun) J.Locker left end to TEN 45 for 7 yards (B.Jones).,0,20,2012 -20121223_TEN@GB,2,30,3,TEN,GB,2,3,55,(:03) (Shotgun) J.Locker pass incomplete short right to M.Preston (C.Hayward).,0,20,2012 -20121223_TEN@GB,3,30,0,TEN,GB,,,55,R.Bironas kicks 61 yards from TEN 35 to GB 4 out of bounds.,0,20,2012 -20121223_TEN@GB,3,30,0,GB,TEN,1,10,60,(15:00) (Shotgun) A.Rodgers left end to GB 42 for 2 yards (Z.Brown).,20,0,2012 -20121223_TEN@GB,3,29,26,GB,TEN,2,8,58,(14:26) (No Huddle Shotgun) A.Rodgers pass deep right to R.Cobb to TEN 27 for 31 yards (J.McCourty).,20,0,2012 -20121223_TEN@GB,3,28,56,GB,TEN,1,10,27,(13:56) (No Huddle Shotgun) D.Harris up the middle to TEN 22 for 5 yards (W.Witherspoon C.Sensabaugh).,20,0,2012 -20121223_TEN@GB,3,28,16,GB,TEN,2,5,22,(13:16) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley pushed ob at TEN 9 for 13 yards (W.Witherspoon).,20,0,2012 -20121223_TEN@GB,3,27,47,GB,TEN,1,9,9,(12:47) (No Huddle Shotgun) A.Rodgers left end to TEN 7 for 2 yards (Z.Brown).,20,0,2012 -20121223_TEN@GB,3,27,8,GB,TEN,2,7,7,(12:08) (No Huddle) D.Harris right end for 7 yards TOUCHDOWN.,20,0,2012 -20121223_TEN@GB,3,27,8,GB,TEN,,,7,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,20,0,2012 -20121223_TEN@GB,3,27,8,GB,TEN,,,7,M.Crosby kicks 65 yards from GB 35 to TEN 0. D.Reynaud Touchback.,27,0,2012 -20121223_TEN@GB,3,27,4,TEN,GB,1,10,80,(12:04) C.Johnson left end to TEN 28 for 8 yards (A.Hawk).,0,27,2012 -20121223_TEN@GB,3,26,25,TEN,GB,2,2,72,(11:25) J.Locker pass incomplete short right to N.Washington (T.Williams).,0,27,2012 -20121223_TEN@GB,3,26,20,TEN,GB,3,2,72,(11:20) (Shotgun) J.Locker pass short right to N.Washington to TEN 35 for 7 yards (M.Burnett) [C.Matthews].,0,27,2012 -20121223_TEN@GB,3,25,47,TEN,GB,1,10,65,(10:47) C.Johnson right tackle to TEN 35 for no gain (B.Raji).,0,27,2012 -20121223_TEN@GB,3,25,7,TEN,GB,2,10,65,(10:07) J.Locker sacked at TEN 27 for -8 yards (A.Hawk).,0,27,2012 -20121223_TEN@GB,3,24,32,TEN,GB,3,18,73,(9:32) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 32 for 5 yards (B.Jones; C.Hayward).,0,27,2012 -20121223_TEN@GB,3,23,50,TEN,GB,4,10,68,(8:50) B.Kern punts 47 yards to GB 21 Center-B.Brinkley. R.Cobb to GB 29 for 8 yards (T.Wilson). GB-R.Cobb was injured during the play.,0,27,2012 -20121223_TEN@GB,3,23,38,GB,TEN,1,10,71,(8:38) (Shotgun) R.Grant left end to GB 32 for 3 yards (D.Harris).,27,0,2012 -20121223_TEN@GB,3,23,3,GB,TEN,2,7,68,(8:03) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones pushed ob at TEN 47 for 21 yards (A.Verner).,27,0,2012 -20121223_TEN@GB,3,22,40,GB,TEN,1,10,47,(7:40) (No Huddle) R.Grant right end to TEN 45 for 2 yards (J.Casey).,27,0,2012 -20121223_TEN@GB,3,22,5,GB,TEN,2,8,45,(7:05) (No Huddle) A.Rodgers pass short right to Ja.Jones to TEN 35 for 10 yards (J.McCourty).,27,0,2012 -20121223_TEN@GB,3,21,28,GB,TEN,1,10,35,(6:28) (No Huddle) A.Rodgers pass incomplete short right to R.Grant.,27,0,2012 -20121223_TEN@GB,3,21,13,GB,TEN,2,10,35,(6:13) (Shotgun) A.Rodgers pass short right to R.Grant pushed ob at TEN 1 for 34 yards (T.Shaw).,27,0,2012 -20121223_TEN@GB,3,20,49,GB,TEN,1,1,1,(5:49) (No Huddle) A.Rodgers pass short right to G.Jennings for 1 yard TOUCHDOWN.,27,0,2012 -20121223_TEN@GB,3,20,49,GB,TEN,,,1,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,27,0,2012 -20121223_TEN@GB,3,20,49,GB,TEN,,,1,M.Crosby kicks 65 yards from GB 35 to TEN 0. D.Reynaud to TEN 23 for 23 yards (J.Boykin).,34,0,2012 -20121223_TEN@GB,3,20,41,TEN,GB,1,10,77,(5:41) (Shotgun) J.Locker pass short left to C.Johnson to TEN 31 for 8 yards (B.Jones).,0,34,2012 -20121223_TEN@GB,3,20,14,TEN,GB,2,2,69,(5:14) (No Huddle Shotgun) C.Johnson right tackle to TEN 34 for 3 yards (B.Jones).,0,34,2012 -20121223_TEN@GB,3,19,51,TEN,GB,1,10,66,(4:51) (No Huddle Shotgun) J.Locker pass short right to D.Williams to TEN 45 for 11 yards (T.Williams).,0,34,2012 -20121223_TEN@GB,3,19,23,TEN,GB,1,10,55,(4:23) (No Huddle Shotgun) J.Locker pass incomplete short right to C.Stevens (B.Jones).,0,34,2012 -20121223_TEN@GB,3,19,18,TEN,GB,2,10,55,(4:18) (Shotgun) J.Locker pass incomplete short right to C.Johnson [C.Hayward].,0,34,2012 -20121223_TEN@GB,3,19,14,TEN,GB,3,10,55,(4:14) (Shotgun) J.Locker sacked at TEN 38 for -7 yards (M.Neal).,0,34,2012 -20121223_TEN@GB,3,18,38,TEN,GB,4,17,62,(3:38) B.Kern punts 42 yards to GB 20 Center-B.Brinkley fair catch by J.Ross.,0,34,2012 -20121223_TEN@GB,3,18,31,GB,TEN,1,10,80,(3:31) R.Grant left end to GB 20 for no gain (Z.Brown).,34,0,2012 -20121223_TEN@GB,3,17,53,GB,TEN,2,10,80,(2:53) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones to GB 47 for 27 yards (A.Verner).,34,0,2012 -20121223_TEN@GB,3,17,16,GB,TEN,1,10,53,(2:16) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to TEN 35 for 18 yards (T.Shaw) [D.Morgan].,34,0,2012 -20121223_TEN@GB,3,16,42,GB,TEN,1,10,35,(1:42) (No Huddle) R.Grant right end to TEN 35 for no gain (A.Ayers; T.Shaw).,34,0,2012 -20121223_TEN@GB,3,16,5,GB,TEN,2,10,35,(1:05) (No Huddle Shotgun) A.Rodgers pass short right to R.Taylor to TEN 24 for 11 yards (A.Ayers J.McCourty).,34,0,2012 -20121223_TEN@GB,3,15,30,GB,TEN,1,10,24,(:30) (No Huddle) A.Rodgers pass short left to G.Jennings to TEN 20 for 4 yards (M.Griffin).,34,0,2012 -20121223_TEN@GB,4,15,0,GB,TEN,2,6,20,(15:00) (Shotgun) A.Rodgers pass short right to G.Jennings to TEN 12 for 8 yards (J.McCourty).,34,0,2012 -20121223_TEN@GB,4,14,16,GB,TEN,1,10,12,(14:16) G.Van Roten reported in as eligible. A.Rodgers pass short left to Ja.Jones for 12 yards TOUCHDOWN. TEN-Z.Brown was injured during the play.,34,0,2012 -20121223_TEN@GB,4,14,16,GB,TEN,,,12,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,34,0,2012 -20121223_TEN@GB,4,14,16,GB,TEN,,,12,M.Crosby kicks 63 yards from GB 35 to TEN 2. L.Hawkins to TEN 23 for 21 yards (J.Lattimore).,41,0,2012 -20121223_TEN@GB,4,14,6,TEN,GB,1,10,77,(14:06) (Shotgun) J.Locker pass incomplete short right to L.Hawkins.,0,41,2012 -20121223_TEN@GB,4,14,2,TEN,GB,2,10,77,(14:02) (Shotgun) J.Locker left tackle to TEN 24 for 1 yard (C.Hayward).,0,41,2012 -20121223_TEN@GB,4,13,25,TEN,GB,3,9,76,(13:25) (Shotgun) J.Locker sacked at TEN 16 for -8 yards (S.Shields).,0,41,2012 -20121223_TEN@GB,4,12,52,TEN,GB,4,17,84,(12:52) B.Kern punts 49 yards to GB 35 Center-B.Brinkley. J.Ross pushed ob at TEN 7 for 58 yards (T.Shaw). TEN-W.Witherspoon was injured during the play. GB-D.House was injured during the play. His return is Questionable.,0,41,2012 -20121223_TEN@GB,4,12,35,GB,TEN,1,7,7,(12:35) G.Van Roten reported in as eligible. R.Grant left guard for 7 yards TOUCHDOWN.,41,0,2012 -20121223_TEN@GB,4,12,35,GB,TEN,,,7,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,41,0,2012 -20121223_TEN@GB,4,12,35,GB,TEN,,,7,M.Crosby kicks 60 yards from GB 35 to TEN 5. L.Hawkins to TEN 26 for 21 yards (J.McMillian; T.Manning).,48,0,2012 -20121223_TEN@GB,4,12,26,TEN,GB,1,10,74,(12:26) J.Harper up the middle to TEN 25 for -1 yards (C.Hayward).,0,48,2012 -20121223_TEN@GB,4,11,50,TEN,GB,2,11,75,(11:50) J.Locker pass incomplete short left to K.Britt (S.Shields).,0,48,2012 -20121223_TEN@GB,4,11,44,TEN,GB,3,11,75,(11:44) (Shotgun) J.Locker pass short middle to N.Washington to TEN 33 for 8 yards (B.Jones) [J.Miller]. Penalty on TEN-K.DeVan Offensive Holding declined.,0,48,2012 -20121223_TEN@GB,4,11,15,TEN,GB,4,3,67,(11:15) (Shotgun) J.Locker pass incomplete deep left to K.Britt. Yard marker changed due to change of possession.,0,48,2012 -20121223_TEN@GB,4,11,10,GB,TEN,1,10,32,(11:10) G.Van Roten reported in as eligible. R.Grant right tackle to TEN 27 for 5 yards (J.Casey A.Afalava).,48,0,2012 -20121223_TEN@GB,4,10,28,GB,TEN,2,5,27,(10:28) R.Grant left end to TEN 23 for 4 yards (J.Casey).,48,0,2012 -20121223_TEN@GB,4,9,47,GB,TEN,3,1,23,(9:47) D.Harris left end to TEN 22 for 1 yard (A.Verner Z.Brown). PENALTY on GB-J.Kuhn Offensive Holding 10 yards enforced at TEN 23 - No Play.,48,0,2012 -20121223_TEN@GB,4,9,21,GB,TEN,3,11,33,(9:21) (Shotgun) G.Harrell pass short right to Ja.Jones to TEN 24 for 9 yards (J.McCourty).,48,0,2012 -20121223_TEN@GB,4,8,39,GB,TEN,4,2,24,(8:39) G.Van Roten reported in as eligible. R.Grant right tackle to TEN 21 for 3 yards (D.Morgan J.McCourty).,48,0,2012 -20121223_TEN@GB,4,7,53,GB,TEN,1,10,21,(7:53) R.Grant right end to TEN 18 for 3 yards (S.Marks). PENALTY on TEN-S.Marks Face Mask (15 Yards) 9 yards enforced at TEN 18.,48,0,2012 -20121223_TEN@GB,4,7,13,GB,TEN,1,9,9,(7:13) R.Grant right end to TEN 9 for no gain (A.Ayers).,48,0,2012 -20121223_TEN@GB,4,6,31,GB,TEN,2,9,9,(6:31) R.Grant left end for 9 yards TOUCHDOWN.,48,0,2012 -20121223_TEN@GB,4,6,31,GB,TEN,,,9,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,48,0,2012 -20121223_TEN@GB,4,6,31,GB,TEN,,,9,M.Crosby kicks 58 yards from GB 35 to TEN 7. L.Hawkins pushed ob at TEN 40 for 33 yards (M.Jennings).,55,0,2012 -20121223_TEN@GB,4,6,18,TEN,GB,1,10,60,(6:18) J.Locker pass incomplete deep right to N.Washington.,0,55,2012 -20121223_TEN@GB,4,6,11,TEN,GB,2,10,60,(6:11) J.Harper right end pushed ob at TEN 37 for -3 yards (M.Daniels).,0,55,2012 -20121223_TEN@GB,4,5,39,TEN,GB,3,13,63,(5:39) (Shotgun) J.Locker pass short left to C.Stevens to TEN 44 for 7 yards (B.Jones; M.Burnett). TEN-C.Stevens was injured during the play.,0,55,2012 -20121223_TEN@GB,4,4,55,TEN,GB,4,6,56,(4:55) B.Kern punts 50 yards to GB 6 Center-B.Brinkley. J.Ross to GB 10 for 4 yards (T.Thompson).,0,55,2012 -20121223_TEN@GB,4,4,43,GB,TEN,1,10,90,(4:43) R.Grant left end to GB 13 for 3 yards (A.Ayers).,55,0,2012 -20121223_TEN@GB,4,4,0,GB,TEN,2,7,87,(4:00) G.Van Roten reported in as eligible. R.Grant left end to GB 12 for -1 yards (J.Wynn).,55,0,2012 -20121223_TEN@GB,4,3,12,GB,TEN,3,8,88,(3:12) (Shotgun) G.Harrell pass incomplete short right to D.Driver.,55,0,2012 -20121223_TEN@GB,4,3,6,GB,TEN,4,8,88,(3:06) T.Masthay punts 53 yards to TEN 35 Center-B.Goode. D.Reynaud to TEN 47 for 12 yards (R.Taylor; D.Williams).,55,0,2012 -20121223_TEN@GB,4,2,51,TEN,GB,1,10,53,(2:51) (Shotgun) J.Locker pass short right to T.Thompson to GB 45 for 8 yards (M.Burnett).,0,55,2012 -20121223_TEN@GB,4,2,28,TEN,GB,2,2,45,(2:28) (No Huddle Shotgun) J.Locker sacked at TEN 49 for -6 yards (B.Jones).,0,55,2012 -20121223_TEN@GB,4,2,0,TEN,GB,3,8,51,(2:00) (Shotgun) J.Locker pass short right to M.Preston to GB 41 for 10 yards (T.Williams).,0,55,2012 -20121223_TEN@GB,4,1,54,TEN,GB,1,10,41,(1:54) (No Huddle Shotgun) J.Locker pass incomplete short left to L.Hawkins.,0,55,2012 -20121223_TEN@GB,4,1,50,TEN,GB,2,10,41,(1:50) (No Huddle Shotgun) J.Locker pass deep left to K.Britt pushed ob at GB 2 for 39 yards (C.Hayward).,0,55,2012 -20121223_TEN@GB,4,1,42,TEN,GB,1,2,2,(1:42) (Shotgun) J.Locker pass short left to K.Britt for 2 yards TOUCHDOWN.,0,55,2012 -20121223_TEN@GB,4,1,42,TEN,GB,,,2,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,55,2012 -20121223_TEN@GB,4,1,42,TEN,GB,,,2,(Onside Kick formation) R.Bironas kicks onside 13 yards from TEN 35 to TEN 48. J.Boykin (didn't try to advance) to TEN 48 for no gain (M.Preston). PENALTY on TEN-M.Preston Offside on Free Kick 5 yards enforced at TEN 48.,7,55,2012 -20121223_TEN@GB,4,1,37,GB,TEN,1,10,43,(1:37) G.Harrell kneels to TEN 44 for -1 yards.,55,7,2012 -20121223_TEN@GB,4,0,57,GB,TEN,2,11,44,(:57) G.Harrell kneels to TEN 45 for -1 yards.,55,7,2012 -20121223_TEN@GB,4,0,25,GB,TEN,3,7,45,(:25) G.Harrell kneels to TEN 46 for -1 yards.,55,7,2012 -20121223_TEN@GB,4,0,25,GB,TEN,,,45,                      ,55,7,2012 -20121223_MIN@HOU,1,0,0,MIN,HOU,,,45,B.Walsh kicks 63 yards from MIN 35 to HST 2. K.Martin to HST 21 for 19 yards (M.Asiata).,0,0,2012 -20121223_MIN@HOU,1,59,54,HOU,MIN,1,10,79,(14:54) M.Schaub pass short right to A.Foster to HST 32 for 11 yards (C.Greenway).,0,0,2012 -20121223_MIN@HOU,1,59,20,HOU,MIN,1,10,68,(14:20) M.Schaub pass short middle to A.Johnson to HST 37 for 5 yards (J.Brinkley).,0,0,2012 -20121223_MIN@HOU,1,58,46,HOU,MIN,2,5,63,(13:46) M.Schaub pass deep middle to A.Johnson to MIN 44 for 19 yards (C.Cook).,0,0,2012 -20121223_MIN@HOU,1,58,2,HOU,MIN,1,10,44,(13:02) M.Schaub pass incomplete short left to D.Posey.,0,0,2012 -20121223_MIN@HOU,1,57,54,HOU,MIN,2,10,44,(12:54) A.Foster left guard to MIN 45 for -1 yards (C.Greenway).,0,0,2012 -20121223_MIN@HOU,1,57,13,HOU,MIN,3,11,45,(12:13) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels. PENALTY on MIN-A.Jefferson Defensive Pass Interference 12 yards enforced at MIN 45 - No Play.,0,0,2012 -20121223_MIN@HOU,1,57,8,HOU,MIN,1,10,33,(12:08) A.Foster left guard to MIN 31 for 2 yards (A.Jefferson).,0,0,2012 -20121223_MIN@HOU,1,56,38,HOU,MIN,2,8,31,(11:38) A.Foster right tackle to MIN 33 for -2 yards (K.Williams).,0,0,2012 -20121223_MIN@HOU,1,55,59,HOU,MIN,3,10,33,(10:59) (Shotgun) M.Schaub pass incomplete short left to A.Johnson (A.Jefferson).,0,0,2012 -20121223_MIN@HOU,1,55,55,HOU,MIN,4,10,33,(10:55) S.Graham 51 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20121223_MIN@HOU,1,55,55,HOU,MIN,,,33,S.Graham kicks 70 yards from HST 35 to MIN -5. M.Sherels to MIN 22 for 27 yards (R.Carmichael).,3,0,2012 -20121223_MIN@HOU,1,55,50,MIN,HOU,1,10,78,(10:50) PENALTY on MIN-K.Rudolph False Start 5 yards enforced at MIN 22 - No Play.,0,3,2012 -20121223_MIN@HOU,1,55,42,MIN,HOU,1,15,83,(10:42) A.Peterson left tackle to MIN 37 for 20 yards (G.Quin).,0,3,2012 -20121223_MIN@HOU,1,55,6,MIN,HOU,1,10,63,(10:06) A.Peterson up the middle to MIN 35 for -2 yards (G.Quin).,0,3,2012 -20121223_MIN@HOU,1,54,30,MIN,HOU,2,12,65,(9:30) C.Ponder pass short right to K.Rudolph pushed ob at HST 38 for 27 yards (G.Quin).,0,3,2012 -20121223_MIN@HOU,1,53,55,MIN,HOU,1,10,38,(8:55) (Shotgun) C.Ponder scrambles up the middle to HST 37 for 1 yard (B.Reed).,0,3,2012 -20121223_MIN@HOU,1,53,21,MIN,HOU,2,9,37,(8:21) A.Peterson left guard to HST 34 for 3 yards (D.Sharpton).,0,3,2012 -20121223_MIN@HOU,1,53,21,MIN,HOU,3,6,34,(8:21) (Shotgun) C.Ponder pass deep right to M.Jenkins pushed ob at HST 2 for 32 yards (B.Harris).,0,3,2012 -20121223_MIN@HOU,1,52,1,MIN,HOU,1,2,2,(7:01) A.Peterson up the middle to HST 3 for -1 yards (B.Reed).,0,3,2012 -20121223_MIN@HOU,1,51,24,MIN,HOU,2,3,3,(6:24) C.Ponder pass short left to K.Rudolph for 3 yards TOUCHDOWN.,0,3,2012 -20121223_MIN@HOU,1,51,24,MIN,HOU,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,3,2012 -20121223_MIN@HOU,1,51,24,MIN,HOU,,,3,B.Walsh kicks 63 yards from MIN 35 to HST 2. K.Martin to HST 22 for 20 yards (M.Asiata; R.Blanton).,7,3,2012 -20121223_MIN@HOU,1,51,12,HOU,MIN,1,10,78,(6:12) B.Tate left tackle to HST 22 for no gain (F.Evans).,3,7,2012 -20121223_MIN@HOU,1,50,38,HOU,MIN,2,10,78,(5:38) M.Schaub pass incomplete short right to A.Johnson [J.Brinkley].,3,7,2012 -20121223_MIN@HOU,1,50,32,HOU,MIN,3,10,78,(5:32) (Shotgun) M.Schaub pass short right to A.Johnson to HST 26 for 4 yards (A.Winfield).,3,7,2012 -20121223_MIN@HOU,1,49,58,HOU,MIN,4,6,74,(4:58) D.Jones punts 50 yards to MIN 24 Center-J.Weeks. M.Sherels to MIN 26 for 2 yards (D.Posey). PENALTY on HST-D.Posey Player Out of Bounds on Punt 5 yards enforced at MIN 26. (The punt hang time was 4.6 seconds.),3,7,2012 -20121223_MIN@HOU,1,49,44,MIN,HOU,1,10,69,(4:44) A.Peterson up the middle to MIN 33 for 2 yards (G.Quin).,7,3,2012 -20121223_MIN@HOU,1,49,10,MIN,HOU,2,8,67,(4:10) J.Wright left end pushed ob at MIN 41 for 8 yards (K.Jackson).,7,3,2012 -20121223_MIN@HOU,1,48,39,MIN,HOU,1,10,59,(3:39) C.Ponder up the middle to MIN 42 for 1 yard (A.Smith).,7,3,2012 -20121223_MIN@HOU,1,48,7,MIN,HOU,2,9,58,(3:07) C.Ponder pass incomplete short middle to A.Peterson [J.Watt].,7,3,2012 -20121223_MIN@HOU,1,48,1,MIN,HOU,3,9,58,(3:01) (Shotgun) C.Ponder pass short right to T.Gerhart to MIN 47 for 5 yards (G.Quin). PENALTY on MIN-M.Kalil Personal Foul 15 yards enforced between downs.,7,3,2012 -20121223_MIN@HOU,1,47,29,MIN,HOU,4,19,68,(2:29) C.Kluwe punts 51 yards to HST 17 Center-C.Loeffler. K.Martin pushed ob at HST 28 for 11 yards (R.Ellison).,7,3,2012 -20121223_MIN@HOU,1,47,21,HOU,MIN,1,10,72,(2:21) A.Foster right end to HST 36 for 8 yards (A.Jefferson).,3,7,2012 -20121223_MIN@HOU,1,47,20,MIN,HOU,4,19,68,(2:20) C.Kluwe punts 51 yards to HST 17 Center-C.Loeffler. K.Martin pushed ob at HST 28 for 11 yards (R.Ellison).,7,3,2012 -20121223_MIN@HOU,1,46,40,HOU,MIN,2,2,64,(1:40) M.Schaub pass short middle to A.Johnson to MIN 47 for 17 yards (A.Winfield).,3,7,2012 -20121223_MIN@HOU,1,45,59,HOU,MIN,1,10,47,(:59) A.Foster right tackle to HST 49 for -4 yards (E.Griffen).,3,7,2012 -20121223_MIN@HOU,1,45,24,HOU,MIN,2,14,51,(:24) M.Schaub pass short middle to O.Daniels to MIN 45 for 6 yards (H.Smith).,3,7,2012 -20121223_MIN@HOU,2,45,0,HOU,MIN,3,8,45,(15:00) (Shotgun) M.Schaub pass short left to O.Daniels to MIN 31 for 14 yards (A.Jefferson).,3,7,2012 -20121223_MIN@HOU,2,44,26,HOU,MIN,1,10,31,(14:26) M.Schaub pass short right to A.Foster to MIN 28 for 3 yards (C.Greenway).,3,7,2012 -20121223_MIN@HOU,2,43,46,HOU,MIN,2,7,28,(13:46) A.Foster right guard to MIN 23 for 5 yards (J.Brinkley). FUMBLES (J.Brinkley) RECOVERED by MIN-A.Jefferson at MIN 23. A.Jefferson to MIN 21 for -2 yards (G.Graham).,3,7,2012 -20121223_MIN@HOU,2,43,36,MIN,HOU,1,10,79,(13:36) A.Peterson right end to MIN 20 for -1 yards (B.Reed).,7,3,2012 -20121223_MIN@HOU,2,42,58,MIN,HOU,2,11,80,(12:58) C.Ponder pass short left to J.Wright pushed ob at MIN 27 for 7 yards (K.Jackson).,7,3,2012 -20121223_MIN@HOU,2,42,29,MIN,HOU,3,4,73,(12:29) (Shotgun) C.Ponder pass short right to M.Jenkins to MIN 36 for 9 yards (D.Manning; K.Jackson).,7,3,2012 -20121223_MIN@HOU,2,41,46,MIN,HOU,1,10,64,(11:46) A.Peterson right guard to MIN 43 for 7 yards (C.Barwin).,7,3,2012 -20121223_MIN@HOU,2,41,8,MIN,HOU,2,3,57,(11:08) A.Peterson up the middle to HST 46 for 11 yards (G.Quin).,7,3,2012 -20121223_MIN@HOU,2,40,28,MIN,HOU,1,10,46,(10:28) (Shotgun) C.Ponder pass short middle to J.Simpson to HST 44 for 2 yards (J.Joseph).,7,3,2012 -20121223_MIN@HOU,2,39,45,MIN,HOU,2,8,44,(9:45) (Shotgun) C.Ponder pass incomplete deep right to K.Rudolph [A.Smith].,7,3,2012 -20121223_MIN@HOU,2,39,40,MIN,HOU,3,8,44,(9:40) (Shotgun) C.Ponder pass short right to J.Simpson to HST 36 for 8 yards (J.Joseph).,7,3,2012 -20121223_MIN@HOU,2,39,4,MIN,HOU,1,10,36,(9:04) A.Peterson up the middle to HST 38 for -2 yards (G.Quin).,7,3,2012 -20121223_MIN@HOU,2,38,31,MIN,HOU,2,12,38,(8:31) C.Ponder pass incomplete short right to J.Carlson.,7,3,2012 -20121223_MIN@HOU,2,38,26,MIN,HOU,3,12,38,(8:26) (Shotgun) C.Ponder pass incomplete deep right to D.Aromashodu.,7,3,2012 -20121223_MIN@HOU,2,38,20,MIN,HOU,4,12,38,(8:20) B.Walsh 56 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,3,2012 -20121223_MIN@HOU,2,38,20,MIN,HOU,,,38,B.Walsh kicks 74 yards from MIN 35 to HST -9. K.Martin Touchback.,10,3,2012 -20121223_MIN@HOU,2,38,15,HOU,MIN,1,10,80,(8:15) M.Schaub pass short middle to A.Johnson to HST 39 for 19 yards (M.Raymond).,3,10,2012 -20121223_MIN@HOU,2,37,36,HOU,MIN,1,10,61,(7:36) M.Schaub pass short middle to J.Casey to HST 45 for 6 yards (C.Greenway).,3,10,2012 -20121223_MIN@HOU,2,36,57,HOU,MIN,2,4,55,(6:57) A.Foster left tackle to HST 48 for 3 yards (E.Henderson).,3,10,2012 -20121223_MIN@HOU,2,36,21,HOU,MIN,3,1,52,(6:21) M.Schaub pass incomplete short right to O.Daniels (H.Smith).,3,10,2012 -20121223_MIN@HOU,2,36,13,HOU,MIN,4,1,52,(6:13) D.Jones punts 46 yards to MIN 6 Center-J.Weeks. M.Sherels to MIN 7 for 1 yard (B.Braman). (The punt hang time was 4.1 seconds.),3,10,2012 -20121223_MIN@HOU,2,36,2,MIN,HOU,1,10,93,(6:02) A.Peterson up the middle to MIN 7 for no gain (B.Reed).,10,3,2012 -20121223_MIN@HOU,2,35,18,MIN,HOU,2,10,93,(5:18) (Shotgun) C.Ponder pass incomplete short right to J.Simpson (J.Joseph).,10,3,2012 -20121223_MIN@HOU,2,35,14,MIN,HOU,3,10,93,(5:14) (Shotgun) C.Ponder scrambles up the middle to MIN 28 for 21 yards (D.Manning).,10,3,2012 -20121223_MIN@HOU,2,34,34,MIN,HOU,1,10,72,(4:34) A.Peterson right end to MIN 28 for no gain (B.Harris; B.James).,10,3,2012 -20121223_MIN@HOU,2,33,59,MIN,HOU,2,10,72,(3:59) A.Peterson right guard to MIN 31 for 3 yards (B.James).,10,3,2012 -20121223_MIN@HOU,2,33,24,MIN,HOU,3,7,69,(3:24) (Shotgun) C.Ponder pass short right to J.Simpson to MIN 36 for 5 yards (T.Dobbins).,10,3,2012 -20121223_MIN@HOU,2,32,43,MIN,HOU,4,2,64,(2:43) C.Kluwe punts 49 yards to HST 15 Center-C.Loeffler. K.Martin to HST 20 for 5 yards (M.Sherels). (The punt hang time was 4.3 seconds.),10,3,2012 -20121223_MIN@HOU,2,32,30,HOU,MIN,1,10,80,(2:30) M.Schaub pass incomplete short right to K.Walter.,3,10,2012 -20121223_MIN@HOU,2,32,26,HOU,MIN,2,10,80,(2:26) A.Foster left tackle to HST 21 for 1 yard (F.Evans).,3,10,2012 -20121223_MIN@HOU,2,32,0,HOU,MIN,3,9,79,(2:00) (Shotgun) M.Schaub sacked at HST 12 for -9 yards (A.Winfield).,3,10,2012 -20121223_MIN@HOU,2,31,53,HOU,MIN,4,18,88,(1:53) D.Jones punts 51 yards to MIN 37 Center-J.Weeks. M.Sherels to HST 44 for 19 yards (J.Casey). (The punt hang time was 5.0 seconds.),3,10,2012 -20121223_MIN@HOU,2,31,39,MIN,HOU,1,10,44,(1:39) (Shotgun) C.Ponder pass deep left to J.Wright pushed ob at HST 23 for 21 yards (B.Harris).,10,3,2012 -20121223_MIN@HOU,2,31,33,MIN,HOU,1,10,23,(1:33) A.Peterson left guard to HST 23 for no gain (A.Smith).,10,3,2012 -20121223_MIN@HOU,2,30,52,MIN,HOU,2,10,23,(:52) C.Ponder pass incomplete deep left to K.Rudolph.,10,3,2012 -20121223_MIN@HOU,2,30,47,MIN,HOU,3,10,23,(:47) (Shotgun) C.Ponder pass incomplete deep right to M.Jenkins (K.Jackson) [T.Dobbins].,10,3,2012 -20121223_MIN@HOU,2,30,41,MIN,HOU,4,10,23,(:41) B.Walsh 41 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,3,2012 -20121223_MIN@HOU,2,30,41,MIN,HOU,,,23,B.Walsh kicks 66 yards from MIN 35 to HST -1. K.Martin to HST 23 for 24 yards (T.McKenzie).,13,3,2012 -20121223_MIN@HOU,2,30,31,HOU,MIN,1,10,77,(:31) (Shotgun) M.Schaub pass incomplete short right to D.Posey.,3,13,2012 -20121223_MIN@HOU,2,30,27,HOU,MIN,2,10,77,(:27) (Shotgun) M.Schaub pass incomplete short middle to A.Foster (E.Griffen).,3,13,2012 -20121223_MIN@HOU,2,30,21,HOU,MIN,3,10,77,(:21) (Shotgun) M.Schaub pass incomplete deep left to D.Posey (A.Winfield) [E.Griffen].,3,13,2012 -20121223_MIN@HOU,2,30,15,HOU,MIN,4,10,77,(:15) D.Jones punts 60 yards to MIN 17 Center-J.Weeks. M.Sherels to MIN 24 for 7 yards (B.Braman). (The punt hang time was 4.5 seconds.),3,13,2012 -20121223_MIN@HOU,2,30,4,MIN,HOU,1,10,76,(:04) C.Ponder kneels to MIN 23 for -1 yards.,13,3,2012 -20121223_MIN@HOU,3,30,0,HOU,MIN,,,76,S.Graham kicks 65 yards from HST 35 to MIN 0. M.Sherels to MIN 27 for 27 yards (E.Pleasant).,3,13,2012 -20121223_MIN@HOU,3,29,52,MIN,HOU,1,10,73,(14:52) A.Peterson up the middle to MIN 27 for no gain (B.James).,13,3,2012 -20121223_MIN@HOU,3,29,19,MIN,HOU,2,10,73,(14:19) A.Peterson up the middle to MIN 48 for 21 yards (J.Joseph).,13,3,2012 -20121223_MIN@HOU,3,28,40,MIN,HOU,1,10,52,(13:40) C.Ponder pass incomplete short right to K.Rudolph (B.James).,13,3,2012 -20121223_MIN@HOU,3,28,33,MIN,HOU,2,10,52,(13:33) C.Ponder pass incomplete short middle to J.Wright.,13,3,2012 -20121223_MIN@HOU,3,28,29,MIN,HOU,3,10,52,(13:29) (Shotgun) C.Ponder pass short middle to J.Wright to HST 37 for 15 yards (D.Manning). PENALTY on HST-W.Mercilus Roughing the Passer 15 yards enforced at HST 37.,13,3,2012 -20121223_MIN@HOU,3,27,58,MIN,HOU,1,10,22,(12:58) C.Ponder pass short middle to A.Peterson to HST 18 for 4 yards (B.James).,13,3,2012 -20121223_MIN@HOU,3,27,19,MIN,HOU,2,6,18,(12:19) A.Peterson up the middle to HST 21 for -3 yards (J.Watt).,13,3,2012 -20121223_MIN@HOU,3,26,39,MIN,HOU,3,9,21,(11:39) (Shotgun) C.Ponder pass incomplete short middle to J.Carlson.,13,3,2012 -20121223_MIN@HOU,3,26,35,MIN,HOU,4,9,21,(11:35) B.Walsh 39 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,3,2012 -20121223_MIN@HOU,3,26,35,MIN,HOU,,,21,B.Walsh kicks 61 yards from MIN 35 to HST 4. K.Martin to MIN 46 for 50 yards (L.Dean). PENALTY on HST-J.Casey Offensive Holding 10 yards enforced at HST 25.,16,3,2012 -20121223_MIN@HOU,3,26,21,HOU,MIN,1,10,85,(11:21) A.Foster right end pushed ob at HST 14 for -1 yards (A.Winfield).,3,16,2012 -20121223_MIN@HOU,3,25,57,HOU,MIN,2,11,86,(10:57) A.Foster left end pushed ob at HST 18 for 4 yards (J.Brinkley).,3,16,2012 -20121223_MIN@HOU,3,25,26,HOU,MIN,3,7,82,(10:26) (Shotgun) PENALTY on HST-D.Brown False Start 5 yards enforced at HST 18 - No Play.,3,16,2012 -20121223_MIN@HOU,3,25,5,HOU,MIN,3,12,87,(10:05) (Shotgun) M.Schaub pass incomplete short right to K.Walter.,3,16,2012 -20121223_MIN@HOU,3,24,57,HOU,MIN,4,12,87,(9:57) D.Jones punts 49 yards to MIN 38 Center-J.Weeks. M.Sherels to MIN 48 for 10 yards (J.Nading). (The punt hang time was 4.2 seconds.),3,16,2012 -20121223_MIN@HOU,3,24,44,MIN,HOU,1,10,52,(9:44) C.Ponder sacked at MIN 42 for -6 yards (J.Watt). FUMBLES (J.Watt) [J.Watt] RECOVERED by HST-B.James at MIN 45. B.James to MIN 45 for no gain (P.Loadholt).,16,3,2012 -20121223_MIN@HOU,3,24,37,HOU,MIN,1,10,45,(9:37) M.Schaub pass incomplete deep right to A.Johnson [E.Griffen].,3,16,2012 -20121223_MIN@HOU,3,24,31,HOU,MIN,2,10,45,(9:31) M.Schaub pass incomplete short right to A.Foster. PENALTY on HST-D.Brown Offensive Holding 10 yards enforced at MIN 45 - No Play.,3,16,2012 -20121223_MIN@HOU,3,24,24,HOU,MIN,2,20,55,(9:24) (Shotgun) M.Schaub pass short left to G.Graham to MIN 43 for 12 yards (A.Jefferson).,3,16,2012 -20121223_MIN@HOU,3,23,44,HOU,MIN,3,8,43,(8:44) (Shotgun) M.Schaub pass short middle to B.Tate to MIN 41 for 2 yards (E.Henderson).,3,16,2012 -20121223_MIN@HOU,3,23,7,HOU,MIN,4,6,41,(8:07) D.Jones punts 32 yards to MIN 9 Center-J.Weeks fair catch by M.Sherels. (The punt hang time was 4.3 seconds.),3,16,2012 -20121223_MIN@HOU,3,22,58,MIN,HOU,1,10,91,(7:58) A.Peterson left guard to MIN 9 for no gain (E.Mitchell).,16,3,2012 -20121223_MIN@HOU,3,22,22,MIN,HOU,2,10,91,(7:22) C.Ponder pass incomplete short right to J.Carlson. PENALTY on HST-B.James Defensive Holding 5 yards enforced at MIN 9 - No Play.,16,3,2012 -20121223_MIN@HOU,3,22,16,MIN,HOU,1,10,86,(7:16) C.Ponder pass incomplete deep right to J.Wright.,16,3,2012 -20121223_MIN@HOU,3,22,10,MIN,HOU,2,10,86,(7:10) A.Peterson up the middle to MIN 13 for -1 yards (G.Quin).,16,3,2012 -20121223_MIN@HOU,3,21,33,MIN,HOU,3,11,87,(6:33) (Shotgun) C.Ponder pass short left to J.Wright to MIN 18 for 5 yards (C.Barwin).,16,3,2012 -20121223_MIN@HOU,3,20,52,MIN,HOU,4,6,82,(5:52) C.Kluwe punts 43 yards to HST 39 Center-C.Loeffler fair catch by K.Martin. (The punt hang time was 4.8 seconds.),16,3,2012 -20121223_MIN@HOU,3,20,43,HOU,MIN,1,10,61,(5:43) B.Tate up the middle to HST 43 for 4 yards (A.Winfield).,3,16,2012 -20121223_MIN@HOU,3,20,16,HOU,MIN,2,6,57,(5:16) M.Schaub pass short left to A.Johnson to MIN 38 for 19 yards (H.Smith).,3,16,2012 -20121223_MIN@HOU,3,19,46,HOU,MIN,1,10,38,(4:46) B.Tate left end to MIN 25 for 13 yards (H.Smith).,3,16,2012 -20121223_MIN@HOU,3,19,12,HOU,MIN,1,10,25,(4:12) M.Schaub pass incomplete short left to O.Daniels.,3,16,2012 -20121223_MIN@HOU,3,19,6,HOU,MIN,2,10,25,(4:06) M.Schaub pass short left to A.Johnson to MIN 11 for 14 yards (H.Smith) [C.Greenway].,3,16,2012 -20121223_MIN@HOU,3,18,22,HOU,MIN,1,10,11,(3:22) M.Schaub sacked at MIN 13 for -2 yards (J.Allen).,3,16,2012 -20121223_MIN@HOU,3,17,39,HOU,MIN,2,12,13,(2:39) M.Schaub pass short middle to K.Walter to MIN 1 for 12 yards (H.Smith).,3,16,2012 -20121223_MIN@HOU,3,16,56,HOU,MIN,1,1,1,(1:56) M.Schaub pass incomplete short left to O.Daniels.,3,16,2012 -20121223_MIN@HOU,3,16,51,HOU,MIN,2,1,1,(1:51) B.Tate up the middle to MIN 1 for no gain (K.Williams).,3,16,2012 -20121223_MIN@HOU,3,16,7,HOU,MIN,3,1,1,(1:07) M.Schaub sacked at MIN 15 for -14 yards (F.Evans).,3,16,2012 -20121223_MIN@HOU,3,15,30,HOU,MIN,4,15,15,(:30) S.Graham 33 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,3,16,2012 -20121223_MIN@HOU,3,15,30,HOU,MIN,,,15,S.Graham kicks 72 yards from HST 35 to MIN -7. M.Sherels Touchback.,6,16,2012 -20121223_MIN@HOU,3,15,26,MIN,HOU,1,10,80,(:26) PENALTY on MIN-M.Kalil False Start 5 yards enforced at MIN 20 - No Play.,16,6,2012 -20121223_MIN@HOU,3,15,26,MIN,HOU,1,15,85,(:26) A.Peterson up the middle pushed ob at MIN 35 for 20 yards (G.Quin).,16,6,2012 -20121223_MIN@HOU,4,15,0,MIN,HOU,1,10,65,(15:00) C.Ponder pass incomplete short left to J.Wright.,16,6,2012 -20121223_MIN@HOU,4,14,54,MIN,HOU,2,10,65,(14:54) A.Peterson up the middle to MIN 32 for -3 yards (J.Watt).,16,6,2012 -20121223_MIN@HOU,4,14,16,MIN,HOU,3,13,68,(14:16) (Shotgun) C.Ponder pass deep left to J.Simpson pushed ob at MIN 49 for 17 yards (S.Keo).,16,6,2012 -20121223_MIN@HOU,4,13,48,MIN,HOU,1,10,51,(13:48) A.Peterson right end pushed ob at HST 41 for 10 yards (D.Manning).,16,6,2012 -20121223_MIN@HOU,4,13,15,MIN,HOU,1,10,41,(13:15) A.Peterson up the middle to HST 40 for 1 yard (T.Dobbins).,16,6,2012 -20121223_MIN@HOU,4,12,40,MIN,HOU,2,9,40,(12:40) C.Ponder pass incomplete short left to J.Wright (K.Jackson).,16,6,2012 -20121223_MIN@HOU,4,12,33,MIN,HOU,3,9,40,(12:33) (Shotgun) C.Ponder pass incomplete short right to T.Gerhart (T.Dobbins) [J.Watt].,16,6,2012 -20121223_MIN@HOU,4,12,27,MIN,HOU,4,9,40,(12:27) C.Kluwe punts 39 yards to HST 1 Center-C.Loeffler downed by MIN-J.Robinson. (The punt hang time was 3.9 seconds.),16,6,2012 -20121223_MIN@HOU,4,12,18,HOU,MIN,1,10,99,(12:18) M.Schaub pass short left to O.Daniels pushed ob at HST 8 for 7 yards (A.Jefferson).,6,16,2012 -20121223_MIN@HOU,4,11,51,HOU,MIN,2,3,92,(11:51) M.Schaub pass incomplete deep left to O.Daniels.,6,16,2012 -20121223_MIN@HOU,4,11,45,HOU,MIN,3,3,92,(11:45) M.Schaub pass short right to G.Graham to HST 10 for 2 yards (H.Smith).,6,16,2012 -20121223_MIN@HOU,4,11,0,HOU,MIN,4,1,90,(11:00) D.Jones punts 65 yards to MIN 25 Center-J.Weeks. M.Sherels to MIN 36 for 11 yards (R.Carmichael J.Nading). (The punt hang time was 4.6 seconds.),6,16,2012 -20121223_MIN@HOU,4,10,45,MIN,HOU,1,10,64,(10:45) C.Ponder pass short right to K.Rudolph pushed ob at MIN 45 for 9 yards (J.Joseph).,16,6,2012 -20121223_MIN@HOU,4,10,8,MIN,HOU,2,1,55,(10:08) A.Peterson right end to MIN 44 for -1 yards (W.Mercilus; G.Quin).,16,6,2012 -20121223_MIN@HOU,4,9,26,MIN,HOU,3,2,56,(9:26) (Shotgun) C.Ponder scrambles right end to HST 27 for 29 yards (J.Joseph). Penalty on HST-S.Keo Defensive Offside declined.,16,6,2012 -20121223_MIN@HOU,4,8,51,MIN,HOU,1,10,27,(8:51) A.Peterson up the middle to HST 27 for no gain (A.Smith).,16,6,2012 -20121223_MIN@HOU,4,8,10,MIN,HOU,2,10,27,(8:10) T.Gerhart right end pushed ob at HST 21 for 6 yards (K.Jackson).,16,6,2012 -20121223_MIN@HOU,4,7,34,MIN,HOU,3,4,21,(7:34) (Shotgun) T.Gerhart up the middle to HST 17 for 4 yards (A.Smith).,16,6,2012 -20121223_MIN@HOU,4,6,46,MIN,HOU,1,10,17,(6:46) A.Peterson right tackle to HST 15 for 2 yards (C.Barwin; B.James).,16,6,2012 -20121223_MIN@HOU,4,5,59,MIN,HOU,2,8,15,(5:59) T.Gerhart up the middle to HST 13 for 2 yards (A.Smith).,16,6,2012 -20121223_MIN@HOU,4,5,18,MIN,HOU,3,6,13,(5:18) (Shotgun) C.Ponder pass short right to J.Wright to HST 8 for 5 yards (D.Manning). PENALTY on HST-D.Manning Face Mask (15 Yards) 5 yards enforced at HST 8.,16,6,2012 -20121223_MIN@HOU,4,4,49,MIN,HOU,1,3,3,(4:49) T.Gerhart up the middle for 3 yards TOUCHDOWN.,16,6,2012 -20121223_MIN@HOU,4,4,49,MIN,HOU,,,3,(Kick formation) PENALTY on HST-A.Smith Neutral Zone Infraction 0 yards enforced at HST 2 - No Play.,16,6,2012 -20121223_MIN@HOU,4,4,49,MIN,HOU,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,16,6,2012 -20121223_MIN@HOU,4,4,49,MIN,HOU,,,3,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,23,6,2012 -20121223_MIN@HOU,4,4,44,HOU,MIN,1,10,80,(4:44) J.Forsett left guard to HST 24 for 4 yards (C.Greenway; E.Henderson).,6,23,2012 -20121223_MIN@HOU,4,4,16,HOU,MIN,2,6,76,(4:16) (Shotgun) M.Schaub pass incomplete short right to D.Posey (K.Williams).,6,23,2012 -20121223_MIN@HOU,4,4,13,HOU,MIN,3,6,76,(4:13) (Shotgun) M.Schaub pass incomplete short right to D.Posey. PENALTY on MIN-H.Smith Roughing the Passer 15 yards enforced at HST 24 - No Play.,6,23,2012 -20121223_MIN@HOU,4,4,6,HOU,MIN,1,10,61,(4:06) (Shotgun) M.Schaub pass short right to D.Posey to HST 45 for 6 yards (K.Williams).,6,23,2012 -20121223_MIN@HOU,4,4,6,HOU,MIN,2,4,55,(4:06) (Shotgun) PENALTY on HST-D.Brown False Start 5 yards enforced at HST 45 - No Play.,6,23,2012 -20121223_MIN@HOU,4,3,33,HOU,MIN,2,9,60,(3:33) (Shotgun) T.Yates pass incomplete deep right to D.Posey.,6,23,2012 -20121223_MIN@HOU,4,3,23,HOU,MIN,3,9,68,(3:23) (Shotgun) T.Yates FUMBLES (Aborted) at HST 40 and recovers at HST 32. T.Yates sacked at HST 36 for -4 yards (H.Smith). FUMBLES (H.Smith) [H.Smith] RECOVERED by MIN-E.Griffen at HST 41. E.Griffen to HST 36 for 5 yards (D.Newton).,6,23,2012 -20121223_MIN@HOU,4,3,14,MIN,HOU,1,10,36,(3:14) T.Gerhart up the middle to HST 32 for 4 yards (T.Dobbins).,23,6,2012 -20121223_MIN@HOU,4,3,6,MIN,HOU,2,6,32,(3:06) T.Gerhart up the middle to HST 29 for 3 yards (T.Dobbins).,23,6,2012 -20121223_MIN@HOU,4,3,1,MIN,HOU,3,3,29,(3:01) T.Gerhart up the middle to HST 23 for 6 yards (B.Ruud; T.Dobbins).,23,6,2012 -20121223_MIN@HOU,4,2,18,MIN,HOU,1,10,23,(2:18) T.Gerhart left guard to HST 20 for 3 yards (D.Sharpton).,23,6,2012 -20121223_MIN@HOU,4,2,0,MIN,HOU,2,7,20,(2:00) M.Asiata left guard to HST 19 for 1 yard (J.Crick).,23,6,2012 -20121223_MIN@HOU,4,1,15,MIN,HOU,3,6,19,(1:15) C.Ponder kneels to HST 20 for -1 yards.,23,6,2012 -20121223_MIN@HOU,4,0,24,MIN,HOU,4,7,20,(:24) C.Ponder kneels to HST 22 for -2 yards.,23,6,2012 -20121223_MIN@HOU,4,0,21,HOU,MIN,1,10,78,(:21) T.Yates kneels to HST 20 for -2 yards.,6,23,2012 -20121223_MIN@HOU,4,0,21,HOU,MIN,,,78,                      ,6,23,2012 -20121223_NE@JAC,1,0,0,NE,JAC,,,78,S.Gostkowski kicks 65 yards from NE 35 to JAX 0. R.Murphy to JAX 22 for 22 yards (N.Koutouvides).,0,0,2012 -20121223_NE@JAC,1,59,55,JAC,NE,1,10,78,(14:55) C.Henne pass deep left to J.Blackmon to JAX 40 for 18 yards (D.McCourty).,0,0,2012 -20121223_NE@JAC,1,59,16,JAC,NE,1,10,60,(14:16) (No Huddle) M.Owens right end to JAX 43 for 3 yards (D.Hightower).,0,0,2012 -20121223_NE@JAC,1,58,33,JAC,NE,2,7,57,(13:33) (No Huddle) C.Henne pass short right to M.Lewis to JAX 47 for 4 yards (D.Hightower).,0,0,2012 -20121223_NE@JAC,1,57,49,JAC,NE,3,3,53,(12:49) (Shotgun) C.Henne pass short right to C.Shorts ran ob at NE 43 for 10 yards.,0,0,2012 -20121223_NE@JAC,1,57,14,JAC,NE,1,10,43,(12:14) (No Huddle) M.Owens right end to NE 29 for 14 yards (P.Chung).,0,0,2012 -20121223_NE@JAC,1,56,43,JAC,NE,1,10,29,(11:43) (No Huddle) C.Henne pass short left to M.Owens to NE 17 for 12 yards (K.Arrington).,0,0,2012 -20121223_NE@JAC,1,56,4,JAC,NE,1,10,17,(11:04) (No Huddle Shotgun) C.Henne pass short right to M.Lewis to NE 8 for 9 yards (M.Cole).,0,0,2012 -20121223_NE@JAC,1,55,24,JAC,NE,2,1,8,(10:24) R.Murphy up the middle to NE 3 for 5 yards (S.Gregory).,0,0,2012 -20121223_NE@JAC,1,54,39,JAC,NE,1,3,3,(9:39) (Shotgun) C.Henne pass short middle to J.Blackmon for 3 yards TOUCHDOWN.,0,0,2012 -20121223_NE@JAC,1,54,39,JAC,NE,,,3,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20121223_NE@JAC,1,54,39,JAC,NE,,,3,J.Scobee kicks 63 yards from JAX 35 to NE 2. M.Slater to NE 22 for 20 yards (Gr.Jones).,7,0,2012 -20121223_NE@JAC,1,54,29,NE,JAC,1,10,78,(9:29) T.Brady pass incomplete short right to B.Lloyd. PENALTY on JAX-D.Cox Defensive Pass Interference 8 yards enforced at NE 22 - No Play.,0,7,2012 -20121223_NE@JAC,1,54,25,NE,JAC,1,10,70,(9:25) S.Ridley up the middle to NE 33 for 3 yards (D.Landry).,0,7,2012 -20121223_NE@JAC,1,53,58,NE,JAC,2,7,67,(8:58) (Shotgun) T.Brady pass deep left intended for S.Ridley INTERCEPTED by C.Prosinski (R.Allen) at JAX 43. C.Prosinski ran ob at JAX 47 for 4 yards.,0,7,2012 -20121223_NE@JAC,1,53,49,JAC,NE,1,10,53,(8:49) C.Henne pass short left to C.Shorts to NE 45 for 8 yards (K.Arrington). Penalty on NE-V.Wilfork Defensive Offside declined.,7,0,2012 -20121223_NE@JAC,1,53,26,JAC,NE,2,2,45,(8:26) (Shotgun) M.Owens up the middle to NE 40 for 5 yards (D.Hightower).,7,0,2012 -20121223_NE@JAC,1,52,41,JAC,NE,1,10,40,(7:41) (No Huddle Shotgun) C.Henne pass incomplete short right to J.Blackmon.,7,0,2012 -20121223_NE@JAC,1,52,37,JAC,NE,2,10,40,(7:37) (No Huddle) M.Owens up the middle to NE 29 for 11 yards (S.Gregory).,7,0,2012 -20121223_NE@JAC,1,51,51,JAC,NE,1,10,29,(6:51) (No Huddle Shotgun) C.Henne pass incomplete short left to C.Shorts.,7,0,2012 -20121223_NE@JAC,1,51,46,JAC,NE,2,10,29,(6:46) (No Huddle) R.Murphy right guard to NE 32 for -3 yards (M.Cole).,7,0,2012 -20121223_NE@JAC,1,51,8,JAC,NE,3,13,32,(6:08) (Shotgun) C.Henne pass short left to M.Lewis to NE 23 for 9 yards (T.Wilson).,7,0,2012 -20121223_NE@JAC,1,51,8,JAC,NE,4,4,23,(6:08) J.Scobee 41 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,7,0,2012 -20121223_NE@JAC,1,51,8,JAC,NE,,,23,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,10,0,2012 -20121223_NE@JAC,1,50,43,NE,JAC,1,10,80,(5:43) (Shotgun) T.Brady pass incomplete deep right to B.Lloyd.,0,10,2012 -20121223_NE@JAC,1,50,38,NE,JAC,2,10,80,(5:38) T.Brady pass deep middle to M.Hoomanawanui to JAX 48 for 32 yards (C.Prosinski).,0,10,2012 -20121223_NE@JAC,1,50,13,NE,JAC,1,10,48,(5:13) (No Huddle) T.Brady pass short left to W.Welker to JAX 41 for 7 yards (M.Harris).,0,10,2012 -20121223_NE@JAC,1,50,2,NE,JAC,2,3,41,(5:02) S.Ridley right tackle to JAX 25 for 16 yards (R.Allen).,0,10,2012 -20121223_NE@JAC,1,49,42,NE,JAC,1,10,25,(4:42) S.Ridley right end to JAX 18 for 7 yards (M.Harris).,0,10,2012 -20121223_NE@JAC,1,49,25,NE,JAC,2,3,18,(4:25) S.Ridley up the middle to JAX 9 for 9 yards (C.Prosinski).,0,10,2012 -20121223_NE@JAC,1,49,25,NE,JAC,1,9,9,(4:25) S.Ridley left end to JAX 7 for 2 yards (P.Posluszny).,0,10,2012 -20121223_NE@JAC,1,49,25,NE,JAC,2,7,7,(4:25) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,0,10,2012 -20121223_NE@JAC,1,48,23,NE,JAC,3,7,7,(3:23) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,0,10,2012 -20121223_NE@JAC,1,48,18,NE,JAC,4,7,7,(3:18) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,10,2012 -20121223_NE@JAC,1,48,18,NE,JAC,,,7,S.Gostkowski kicks 63 yards from NE 35 to JAX 2. R.Murphy to JAX 34 for 32 yards (N.Ebner).,3,10,2012 -20121223_NE@JAC,1,48,8,JAC,NE,1,10,66,(3:08) R.Murphy up the middle to JAX 35 for 1 yard (J.Mayo).,10,3,2012 -20121223_NE@JAC,1,47,26,JAC,NE,2,9,65,(2:26) C.Henne pass short middle to J.Shipley pushed ob at NE 29 for 36 yards (D.Aiken).,10,3,2012 -20121223_NE@JAC,1,47,26,JAC,NE,1,10,29,(2:26) (No Huddle) C.Henne pass incomplete deep right to J.Blackmon.,10,3,2012 -20121223_NE@JAC,1,47,3,JAC,NE,2,10,29,(2:03) R.Murphy up the middle to NE 25 for 4 yards (P.Chung; T.White).,10,3,2012 -20121223_NE@JAC,1,46,25,JAC,NE,3,6,25,(1:25) (Shotgun) C.Henne pass incomplete short left to M.Lewis.,10,3,2012 -20121223_NE@JAC,1,46,19,JAC,NE,4,6,25,(1:19) J.Scobee 43 yard field goal is No Good Wide Left Center-J.Cain Holder-B.Anger.,10,3,2012 -20121223_NE@JAC,1,46,15,NE,JAC,1,10,67,(1:15) S.Ridley right end to NE 34 for 1 yard (P.Posluszny).,3,10,2012 -20121223_NE@JAC,1,45,44,NE,JAC,2,9,66,(:44) (Shotgun) T.Brady pass short right to W.Welker to NE 45 for 11 yards (R.Allen).,3,10,2012 -20121223_NE@JAC,1,45,23,NE,JAC,1,10,55,(:23) T.Brady pass deep middle intended for B.Lloyd INTERCEPTED by D.Cox [T.Knighton] at JAX 26. D.Cox to JAX 26 for no gain (W.Welker).,3,10,2012 -20121223_NE@JAC,1,45,16,JAC,NE,1,10,74,(:16) C.Henne pass short left to M.Owens to NE 21 for 53 yards (K.Arrington).,10,3,2012 -20121223_NE@JAC,2,45,0,JAC,NE,1,10,21,(15:00) C.Henne pass short right to C.Shorts to NE 12 for 9 yards (D.McCourty).,10,3,2012 -20121223_NE@JAC,2,44,28,JAC,NE,2,1,12,(14:28) R.Murphy left end to NE 8 for 4 yards (S.Gregory). PENALTY on JAX-C.Shorts Offensive Holding 10 yards enforced at NE 12 - No Play.,10,3,2012 -20121223_NE@JAC,2,44,1,JAC,NE,2,11,22,(14:01) C.Henne pass short right to M.Lewis to NE 17 for 5 yards (K.Arrington).,10,3,2012 -20121223_NE@JAC,2,43,17,JAC,NE,3,6,17,(13:17) (Shotgun) C.Henne pass incomplete deep left to J.Blackmon [T.Scott].,10,3,2012 -20121223_NE@JAC,2,43,11,JAC,NE,4,6,17,(13:11) (Field Goal formation) J.Scobee 35 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,10,3,2012 -20121223_NE@JAC,2,43,11,JAC,NE,,,17,J.Scobee kicks 66 yards from JAX 35 to NE -1. M.Slater Touchback.,13,3,2012 -20121223_NE@JAC,2,43,7,NE,JAC,1,10,80,(13:07) B.Bolden up the middle to NE 21 for 1 yard (T.Knighton).,3,13,2012 -20121223_NE@JAC,2,42,31,NE,JAC,2,9,79,(12:31) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,3,13,2012 -20121223_NE@JAC,2,42,27,NE,JAC,3,9,79,(12:27) (Shotgun) T.Brady pass incomplete short left to W.Welker [J.Babin].,3,13,2012 -20121223_NE@JAC,2,42,19,NE,JAC,4,9,79,(12:19) (Punt formation) Z.Mesko punts 47 yards to JAX 32 Center-D.Aiken. J.Shipley to JAX 40 for 8 yards (T.Scott).,3,13,2012 -20121223_NE@JAC,2,42,9,JAC,NE,1,10,60,(12:09) R.Murphy right end to JAX 48 for 8 yards (R.Ninkovich).,13,3,2012 -20121223_NE@JAC,2,41,30,JAC,NE,2,2,52,(11:30) (No Huddle) M.Owens up the middle to JAX 49 for 1 yard (V.Wilfork).,13,3,2012 -20121223_NE@JAC,2,40,52,JAC,NE,3,1,51,(10:52) (Shotgun) C.Henne pass incomplete short left to J.Shipley.,13,3,2012 -20121223_NE@JAC,2,40,48,JAC,NE,4,1,51,(10:48) (Punt formation) B.Anger punts 43 yards to NE 8 Center-J.Cain. W.Welker to NE 18 for 10 yards (A.Blake).,13,3,2012 -20121223_NE@JAC,2,40,38,NE,JAC,1,10,82,(10:38) (Shotgun) D.Woodhead up the middle to NE 20 for 2 yards (J.Babin).,3,13,2012 -20121223_NE@JAC,2,40,3,NE,JAC,2,8,80,(10:03) B.Bolden up the middle to NE 24 for 4 yards (D.Landry).,3,13,2012 -20121223_NE@JAC,2,39,33,NE,JAC,3,4,76,(9:33) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 37 for 13 yards (C.Prosinski).,3,13,2012 -20121223_NE@JAC,2,38,52,NE,JAC,1,10,63,(8:52) T.Brady pass short right to D.Branch to NE 43 for 6 yards (R.Mathis).,3,13,2012 -20121223_NE@JAC,2,38,26,NE,JAC,2,4,57,(8:26) (No Huddle Shotgun) T.Brady pass short left to D.Branch to NE 49 for 6 yards (C.Prosinski).,3,13,2012 -20121223_NE@JAC,2,37,50,NE,JAC,1,10,51,(7:50) T.Brady pass incomplete deep left to B.Lloyd (D.Cox).,3,13,2012 -20121223_NE@JAC,2,37,43,NE,JAC,2,10,51,(7:43) (Shotgun) T.Brady pass short left to D.Woodhead to JAX 27 for 24 yards.,3,13,2012 -20121223_NE@JAC,2,37,17,NE,JAC,1,10,27,(7:17) D.Woodhead left end to JAX 23 for 4 yards (D.Smith).,3,13,2012 -20121223_NE@JAC,2,36,48,NE,JAC,2,6,23,(6:48) B.Bolden up the middle to JAX 25 for -2 yards (J.Mincey).,3,13,2012 -20121223_NE@JAC,2,36,6,NE,JAC,3,8,25,(6:06) (Shotgun) T.Brady pass short middle to A.Hernandez to JAX 11 for 14 yards (D.Landry) [D.Smith]. PENALTY on NE-A.Hernandez Illegal Motion 5 yards enforced at JAX 25 - No Play.,3,13,2012 -20121223_NE@JAC,2,35,37,NE,JAC,3,13,30,(5:37) (Shotgun) T.Brady pass incomplete short right to D.Woodhead (J.Mincey).,3,13,2012 -20121223_NE@JAC,2,35,29,NE,JAC,4,13,30,(5:29) (Field Goal formation) S.Gostkowski 49 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,3,13,2012 -20121223_NE@JAC,2,35,29,NE,JAC,,,30,S.Gostkowski kicks 60 yards from NE 35 to JAX 5. K.Toston to JAX 21 for 16 yards (B.Bolden). JAX-Gr.Jones was injured during the play. His return is Doubtful.,6,13,2012 -20121223_NE@JAC,2,35,20,JAC,NE,1,10,79,(5:20) (Shotgun) M.Owens right end pushed ob at JAX 24 for 3 yards (A.Talib). PENALTY on JAX-M.Lewis Offensive Holding 10 yards enforced at JAX 21 - No Play.,13,6,2012 -20121223_NE@JAC,2,34,53,JAC,NE,1,20,89,(4:53) C.Henne pass incomplete short right to C.Shorts.,13,6,2012 -20121223_NE@JAC,2,34,48,JAC,NE,2,20,89,(4:48) C.Henne pass short left to I.Stanback to JAX 17 for 6 yards (K.Arrington).,13,6,2012 -20121223_NE@JAC,2,34,7,JAC,NE,3,14,83,(4:07) (Shotgun) C.Henne pass incomplete short middle to J.Shipley (T.White).,13,6,2012 -20121223_NE@JAC,2,34,3,JAC,NE,4,14,83,(4:03) (Punt formation) B.Anger punts 65 yards to NE 18 Center-J.Cain. W.Welker to NE 34 for 16 yards (A.Blake).,13,6,2012 -20121223_NE@JAC,2,33,49,NE,JAC,1,10,66,(3:49) (Shotgun) T.Brady pass short middle to D.Fells to NE 42 for 8 yards (P.Posluszny).,6,13,2012 -20121223_NE@JAC,2,33,30,NE,JAC,2,2,58,(3:30) (No Huddle) D.Woodhead up the middle to NE 43 for 1 yard (D.Smith).,6,13,2012 -20121223_NE@JAC,2,32,55,NE,JAC,3,1,57,(2:55) (Shotgun) Direct snap to S.Ridley. S.Ridley right end to NE 45 for 2 yards (P.Posluszny).,6,13,2012 -20121223_NE@JAC,2,32,13,NE,JAC,1,10,55,(2:13) (Shotgun) T.Brady pass short right to W.Welker to JAX 49 for 6 yards (C.Prosinski).,6,13,2012 -20121223_NE@JAC,2,32,0,NE,JAC,2,4,49,(2:00) (Shotgun) T.Brady pass short left to W.Welker to JAX 41 for 8 yards (M.Harris).,6,13,2012 -20121223_NE@JAC,2,31,37,NE,JAC,1,10,41,(1:37) (No Huddle Shotgun) T.Brady pass short right to W.Welker to JAX 30 for 11 yards (C.Prosinski).,6,13,2012 -20121223_NE@JAC,2,31,14,NE,JAC,1,10,30,(1:14) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to JAX 22 for 8 yards (D.Smith).,6,13,2012 -20121223_NE@JAC,2,30,54,NE,JAC,2,2,22,(:54) (No Huddle Shotgun) T.Brady pass short left to B.Lloyd to JAX 14 for 8 yards (D.Cox) [J.Mincey].,6,13,2012 -20121223_NE@JAC,2,30,28,NE,JAC,1,10,14,(:28) (No Huddle Shotgun) T.Brady pass incomplete short right to D.Woodhead [J.Babin].,6,13,2012 -20121223_NE@JAC,2,30,23,NE,JAC,2,10,14,(:23) (Shotgun) T.Brady pass short left to D.Woodhead for 14 yards TOUCHDOWN.,6,13,2012 -20121223_NE@JAC,2,30,23,NE,JAC,,,14,(Kick formation) S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,6,13,2012 -20121223_NE@JAC,2,30,23,NE,JAC,,,14,S.Gostkowski kicks 44 yards from NE 35 to JAX 21. Z.Potter to JAX 32 for 11 yards (N.Ebner).,13,13,2012 -20121223_NE@JAC,2,30,14,JAC,NE,1,10,68,(:14) (Shotgun) C.Henne pass incomplete short middle to T.Clemons.,13,13,2012 -20121223_NE@JAC,2,30,10,JAC,NE,2,10,68,(:10) (Shotgun) C.Henne pass short middle to J.Blackmon to JAX 41 for 9 yards (T.Wilson).,13,13,2012 -20121223_NE@JAC,2,30,4,JAC,NE,3,1,59,(:04) (Shotgun) C.Henne pass deep middle to J.Shipley to NE 40 for 19 yards (S.Gregory).,13,13,2012 -20121223_NE@JAC,3,30,0,JAC,NE,,,59,J.Scobee kicks 70 yards from JAX 35 to NE -5. M.Slater Touchback.,13,13,2012 -20121223_NE@JAC,3,30,0,NE,JAC,1,10,80,(15:00) (Shotgun) T.Brady pass short left to B.Lloyd ran ob at NE 29 for 9 yards.,13,13,2012 -20121223_NE@JAC,3,29,45,NE,JAC,2,1,71,(14:45) S.Ridley up the middle to NE 34 for 5 yards (P.Posluszny).,13,13,2012 -20121223_NE@JAC,3,29,18,NE,JAC,1,10,66,(14:18) T.Brady pass short middle to B.Lloyd to 50 for 16 yards (D.Cox).,13,13,2012 -20121223_NE@JAC,3,28,55,NE,JAC,1,10,50,(13:55) (Shotgun) S.Ridley right end to JAX 49 for 1 yard (M.Harris).,13,13,2012 -20121223_NE@JAC,3,28,22,NE,JAC,2,9,49,(13:22) T.Brady pass short right to B.Lloyd to JAX 35 for 14 yards (R.Mathis).,13,13,2012 -20121223_NE@JAC,3,27,48,NE,JAC,1,10,35,(12:48) (Shotgun) S.Ridley up the middle to JAX 23 for 12 yards (P.Posluszny).,13,13,2012 -20121223_NE@JAC,3,27,27,NE,JAC,1,10,23,(12:27) S.Ridley left end to JAX 20 for 3 yards (T.Alualu).,13,13,2012 -20121223_NE@JAC,3,26,59,NE,JAC,2,7,20,(11:59) T.Brady pass incomplete short left to B.Lloyd.,13,13,2012 -20121223_NE@JAC,3,26,54,NE,JAC,3,7,20,(11:54) (Shotgun) T.Brady pass incomplete short right to D.Woodhead (J.Mincey).,13,13,2012 -20121223_NE@JAC,3,26,48,NE,JAC,4,7,20,(11:48) (Field Goal formation) S.Gostkowski 38 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,13,13,2012 -20121223_NE@JAC,3,26,48,NE,JAC,,,20,S.Gostkowski kicks 70 yards from NE 35 to JAX -5. R.Murphy Touchback.,16,13,2012 -20121223_NE@JAC,3,26,44,JAC,NE,1,10,80,(11:44) C.Henne pass incomplete deep middle to C.Shorts.,13,16,2012 -20121223_NE@JAC,3,26,38,JAC,NE,2,10,80,(11:38) C.Henne pass short middle to C.Shorts to JAX 25 for 5 yards (J.Mayo).,13,16,2012 -20121223_NE@JAC,3,26,2,JAC,NE,3,5,75,(11:02) (Shotgun) C.Henne pass incomplete short left to C.Shorts. PENALTY on NE-K.Arrington Defensive Pass Interference 5 yards enforced at JAX 25 - No Play.,13,16,2012 -20121223_NE@JAC,3,25,57,JAC,NE,1,10,70,(10:57) M.Owens up the middle to JAX 35 for 5 yards (T.White).,13,16,2012 -20121223_NE@JAC,3,25,24,JAC,NE,2,5,65,(10:24) (No Huddle) M.Owens up the middle to JAX 33 for -2 yards (M.Cole).,13,16,2012 -20121223_NE@JAC,3,24,45,JAC,NE,3,7,67,(9:45) (Shotgun) C.Henne pass incomplete short right to C.Shorts.,13,16,2012 -20121223_NE@JAC,3,24,39,JAC,NE,4,7,67,(9:39) (Punt formation) B.Anger punts 59 yards to NE 8 Center-J.Cain fair catch by W.Welker.,13,16,2012 -20121223_NE@JAC,3,24,31,NE,JAC,1,10,92,(9:31) S.Ridley right end to NE 12 for 4 yards (D.Landry).,16,13,2012 -20121223_NE@JAC,3,24,1,NE,JAC,2,6,88,(9:01) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,16,13,2012 -20121223_NE@JAC,3,23,58,NE,JAC,3,6,88,(8:58) (Shotgun) T.Brady pass incomplete short middle to D.Branch (D.Cox) [J.Mincey].,16,13,2012 -20121223_NE@JAC,3,23,51,NE,JAC,4,6,88,(8:51) (Punt formation) Z.Mesko punts 51 yards to JAX 37 Center-D.Aiken. J.Shipley to JAX 39 for 2 yards (M.Cole).,16,13,2012 -20121223_NE@JAC,3,23,40,JAC,NE,1,10,61,(8:40) R.Murphy right end pushed ob at JAX 45 for 6 yards (J.Mayo).,13,16,2012 -20121223_NE@JAC,3,23,15,JAC,NE,2,4,55,(8:15) C.Henne scrambles up the middle to NE 48 for 7 yards.,13,16,2012 -20121223_NE@JAC,3,22,23,JAC,NE,1,10,48,(7:23) (Shotgun) M.Owens up the middle to 50 for -2 yards (K.Arrington).,13,16,2012 -20121223_NE@JAC,3,21,44,JAC,NE,2,12,50,(6:44) (Shotgun) C.Henne pass short right intended for J.Blackmon INTERCEPTED by M.Cole at NE 40. M.Cole to NE 40 for no gain (J.Blackmon).,13,16,2012 -20121223_NE@JAC,3,21,39,NE,JAC,1,10,60,(6:39) T.Brady sacked at NE 36 for -4 yards (J.Mincey). PENALTY on JAX-J.Mincey Roughing the Passer 15 yards enforced at NE 36.,16,13,2012 -20121223_NE@JAC,3,21,15,NE,JAC,1,10,49,(6:15) T.Brady sacked at NE 44 for -7 yards (R.Allen).,16,13,2012 -20121223_NE@JAC,3,20,37,NE,JAC,2,17,56,(5:37) (Shotgun) T.Brady pass short left to B.Lloyd to JAX 49 for 7 yards (D.Cox).,16,13,2012 -20121223_NE@JAC,3,20,10,NE,JAC,3,10,49,(5:10) (No Huddle Shotgun) T.Brady pass incomplete short middle to W.Welker [D.Smith].,16,13,2012 -20121223_NE@JAC,3,20,4,NE,JAC,4,10,49,(5:04) (Punt formation) Z.Mesko punts 39 yards to JAX 10 Center-D.Aiken fair catch by J.Shipley.,16,13,2012 -20121223_NE@JAC,3,19,57,JAC,NE,1,10,90,(4:57) M.Owens right end pushed ob at JAX 11 for 1 yard (T.Wilson).,13,16,2012 -20121223_NE@JAC,3,19,30,JAC,NE,2,9,89,(4:30) C.Henne pass short right to G.Jones to JAX 17 for 6 yards (R.Ninkovich).,13,16,2012 -20121223_NE@JAC,3,18,48,JAC,NE,3,3,83,(3:48) (Shotgun) C.Henne pass incomplete short middle to M.Lewis (B.Deaderick).,13,16,2012 -20121223_NE@JAC,3,18,42,JAC,NE,4,3,83,(3:42) (Punt formation) B.Anger punts 58 yards to NE 25 Center-J.Cain. W.Welker to NE 41 for 16 yards (R.Allen).,13,16,2012 -20121223_NE@JAC,3,18,32,NE,JAC,1,10,59,(3:32) S.Ridley up the middle to NE 45 for 4 yards (R.Allen).,16,13,2012 -20121223_NE@JAC,3,18,9,NE,JAC,2,6,55,(3:09) (No Huddle) W.Welker left end to JAX 46 for 9 yards (J.Babin; M.Harris).,16,13,2012 -20121223_NE@JAC,3,17,26,NE,JAC,1,10,46,(2:26) S.Ridley left end to JAX 42 for 4 yards (K.Bosworth).,16,13,2012 -20121223_NE@JAC,3,16,54,NE,JAC,2,6,42,(1:54) T.Brady pass deep left to W.Welker to JAX 17 for 25 yards (C.Prosinski).,16,13,2012 -20121223_NE@JAC,3,16,17,NE,JAC,1,10,17,(1:17) S.Ridley right end to JAX 10 for 7 yards (K.Bosworth).,16,13,2012 -20121223_NE@JAC,3,15,51,NE,JAC,2,3,10,(:51) (No Huddle) T.Brady pass short right to B.Lloyd to JAX 2 for 8 yards (D.Cox).,16,13,2012 -20121223_NE@JAC,3,15,28,NE,JAC,1,2,2,(:28) (No Huddle) B.Bolden right end to JAX 1 for 1 yard (R.Allen).,16,13,2012 -20121223_NE@JAC,4,15,0,NE,JAC,2,1,1,(15:00) B.Bolden up the middle to JAX 2 for -1 yards (J.Babin).,16,13,2012 -20121223_NE@JAC,4,14,20,NE,JAC,3,2,2,(14:20) T.Brady pass short right to W.Welker for 2 yards TOUCHDOWN. Penalty on JAX-D.Cox Defensive Holding declined.,16,13,2012 -20121223_NE@JAC,4,14,20,NE,JAC,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,16,13,2012 -20121223_NE@JAC,4,14,20,NE,JAC,,,2,S.Gostkowski kicks 61 yards from NE 35 to JAX 4. R.Murphy to JAX 20 for 16 yards (T.White).,23,13,2012 -20121223_NE@JAC,4,14,9,JAC,NE,1,10,80,(14:09) C.Henne scrambles right end to JAX 35 for 15 yards.,13,23,2012 -20121223_NE@JAC,4,13,33,JAC,NE,1,10,65,(13:33) (Shotgun) R.Murphy up the middle to JAX 36 for 1 yard (J.Mayo).,13,23,2012 -20121223_NE@JAC,4,12,52,JAC,NE,2,9,64,(12:52) C.Henne pass short middle to J.Shipley to JAX 40 for 4 yards (T.White).,13,23,2012 -20121223_NE@JAC,4,12,12,JAC,NE,3,5,60,(12:12) (Shotgun) C.Henne pass short left to J.Blackmon ran ob at NE 42 for 18 yards.,13,23,2012 -20121223_NE@JAC,4,11,56,JAC,NE,1,10,42,(11:56) (No Huddle) R.Murphy left end to NE 38 for 4 yards (T.Wilson).,13,23,2012 -20121223_NE@JAC,4,11,14,JAC,NE,2,6,38,(11:14) (No Huddle Shotgun) C.Henne pass short right to C.Shorts to NE 34 for 4 yards (M.Cole).,13,23,2012 -20121223_NE@JAC,4,10,35,JAC,NE,3,2,34,(10:35) (Shotgun) C.Henne pass short middle to M.Owens to NE 31 for 3 yards (T.White).,13,23,2012 -20121223_NE@JAC,4,10,7,JAC,NE,1,10,31,(10:07) M.Owens right end to NE 25 for 6 yards (J.Mayo).,13,23,2012 -20121223_NE@JAC,4,9,25,JAC,NE,2,4,25,(9:25) (Shotgun) R.Murphy up the middle to NE 24 for 1 yard (D.Hightower; J.Mayo).,13,23,2012 -20121223_NE@JAC,4,8,50,JAC,NE,3,3,24,(8:50) (Shotgun) C.Henne pass incomplete short middle to R.Murphy (D.Hightower).,13,23,2012 -20121223_NE@JAC,4,8,47,JAC,NE,4,3,24,(8:47) (Field Goal formation) J.Scobee 42 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,13,23,2012 -20121223_NE@JAC,4,8,47,JAC,NE,,,24,J.Scobee kicks 72 yards from JAX 35 to NE -7. M.Slater Touchback.,16,23,2012 -20121223_NE@JAC,4,8,42,NE,JAC,1,10,80,(8:42) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,23,16,2012 -20121223_NE@JAC,4,8,33,NE,JAC,2,10,80,(8:33) (Shotgun) T.Brady pass short middle to W.Welker to NE 25 for 5 yards (P.Posluszny).,23,16,2012 -20121223_NE@JAC,4,7,53,NE,JAC,3,5,75,(7:53) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,23,16,2012 -20121223_NE@JAC,4,7,48,NE,JAC,4,5,75,(7:48) (Punt formation) Z.Mesko punts 56 yards to JAX 19 Center-D.Aiken. J.Shipley to JAX 34 for 15 yards (D.Aiken).,23,16,2012 -20121223_NE@JAC,4,7,37,JAC,NE,1,10,66,(7:37) (Shotgun) C.Henne pass short left to J.Blackmon to JAX 43 for 9 yards (P.Chung).,16,23,2012 -20121223_NE@JAC,4,7,10,JAC,NE,2,1,57,(7:10) (No Huddle Shotgun) C.Henne pass short left to J.Blackmon ran ob at NE 40 for 17 yards.,16,23,2012 -20121223_NE@JAC,4,6,52,JAC,NE,1,10,40,(6:52) (No Huddle Shotgun) C.Henne pass short right to J.Shipley ran ob at NE 35 for 5 yards.,16,23,2012 -20121223_NE@JAC,4,6,26,JAC,NE,2,5,35,(6:26) (No Huddle Shotgun) C.Henne pass short right to C.Shorts to NE 17 for 18 yards (P.Chung).,16,23,2012 -20121223_NE@JAC,4,6,5,JAC,NE,1,10,17,(6:05) (No Huddle Shotgun) C.Henne pass short right to M.Owens to NE 8 for 9 yards (D.McCourty).,16,23,2012 -20121223_NE@JAC,4,5,30,JAC,NE,2,1,8,(5:30) R.Murphy up the middle to NE 6 for 2 yards (B.Deaderick; D.Hightower).,16,23,2012 -20121223_NE@JAC,4,4,52,JAC,NE,1,6,6,(4:52) C.Henne pass short right to J.Blackmon pushed ob at NE 1 for 5 yards (K.Arrington).,16,23,2012 -20121223_NE@JAC,4,4,45,JAC,NE,2,1,1,(4:45) G.Jones up the middle to NE 1 for no gain (T.White; D.McCourty).,16,23,2012 -20121223_NE@JAC,4,4,6,JAC,NE,3,1,1,(4:06) PENALTY on JAX-Z.Potter False Start 4 yards enforced at NE 1 - No Play.,16,23,2012 -20121223_NE@JAC,4,4,6,JAC,NE,3,5,5,(4:06) (Shotgun) C.Henne sacked at NE 10 for -5 yards (D.Hightower).,16,23,2012 -20121223_NE@JAC,4,3,32,JAC,NE,4,10,10,(3:32) (Shotgun) C.Henne pass short middle intended for C.Shorts INTERCEPTED by P.Chung at NE 1. P.Chung to NE 28 for 27 yards (G.Whimper). PENALTY on NE-V.Wilfork Unnecessary Roughness 14 yards enforced at NE 28.,16,23,2012 -20121223_NE@JAC,4,3,14,NE,JAC,1,10,86,(3:14) S.Ridley left end to NE 15 for 1 yard (D.Smith).,23,16,2012 -20121223_NE@JAC,4,2,56,NE,JAC,2,9,85,(2:56) (Shotgun) T.Brady pass short right to W.Welker to NE 20 for 5 yards (C.Prosinski).,23,16,2012 -20121223_NE@JAC,4,2,51,NE,JAC,3,4,80,(2:51) (Shotgun) T.Brady pass short left to M.Hoomanawanui to NE 34 for 14 yards (R.Allen).,23,16,2012 -20121223_NE@JAC,4,2,3,NE,JAC,1,10,66,(2:03) S.Ridley up the middle to NE 36 for 2 yards (R.Allen).,23,16,2012 -20121223_NE@JAC,4,1,58,NE,JAC,2,8,64,(1:58) S.Ridley left end to NE 37 for 1 yard (G.Selvie).,23,16,2012 -20121223_NE@JAC,4,1,54,NE,JAC,3,7,63,(1:54) (Shotgun) T.Brady sacked at NE 27 for -10 yards (T.Alualu).,23,16,2012 -20121223_NE@JAC,4,0,59,NE,JAC,4,17,73,(:59) (Punt formation) Z.Mesko punts 46 yards to JAX 27 Center-D.Aiken. J.Shipley to JAX 38 for 11 yards (M.Rivera).,23,16,2012 -20121223_NE@JAC,4,0,54,JAC,NE,1,10,62,(:54) (Shotgun) C.Henne pass incomplete short middle to C.Shorts. JAX-C.Shorts was injured during the play. PENALTY on NE-P.Chung Unnecessary Roughness 15 yards enforced at JAX 38 - No Play.,16,23,2012 -20121223_NE@JAC,4,0,54,JAC,NE,1,10,47,(:54) (Shotgun) C.Henne pass incomplete short right to J.Shipley.,16,23,2012 -20121223_NE@JAC,4,0,49,JAC,NE,2,10,47,(:49) (Shotgun) C.Henne pass incomplete deep middle to J.Shipley.,16,23,2012 -20121223_NE@JAC,4,0,49,JAC,NE,3,10,47,(:49) (Shotgun) C.Henne pass incomplete short right to J.Shipley [C.Jones].,16,23,2012 -20121223_NE@JAC,4,0,39,JAC,NE,4,10,47,(:39) (Shotgun) C.Henne pass deep right to T.Clemons to NE 30 for 17 yards (D.McCourty). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,16,23,2012 -20121223_NE@JAC,4,0,39,JAC,NE,1,10,30,(:39) C.Henne spiked the ball to stop the clock.,16,23,2012 -20121223_NE@JAC,4,0,21,JAC,NE,2,10,30,(:21) (Shotgun) C.Henne pass short middle to J.Shipley to NE 12 for 18 yards (M.Cole).,16,23,2012 -20121223_NE@JAC,4,0,8,JAC,NE,1,10,12,(:08) C.Henne spiked the ball to stop the clock.,16,23,2012 -20121223_NE@JAC,4,0,8,JAC,NE,2,10,12,(:08) (Shotgun) C.Henne pass incomplete short middle to T.Clemons.,16,23,2012 -20121223_NE@JAC,4,0,5,JAC,NE,3,10,12,(:05) (Shotgun) C.Henne pass deep middle intended for J.Blackmon INTERCEPTED by P.Chung at NE -8. Touchback.,16,23,2012 -20121223_NE@JAC,4,0,5,JAC,NE,,,12,                      ,16,23,2012 -20121223_IND@KC,1,0,0,KC,IND,,,12,R.Succop kicks 68 yards from KC 35 to IND -3. D.Karim to IND 20 for 23 yards (N.Thorpe).,0,0,2012 -20121223_IND@KC,1,59,56,IND,KC,1,10,80,(14:56) V.Ballard left guard to IND 22 for 2 yards (R.Pitoitua).,0,0,2012 -20121223_IND@KC,1,59,24,IND,KC,2,8,78,(14:24) (No Huddle) A.Luck pass short right to D.Allen to IND 27 for 5 yards (E.Berry).,0,0,2012 -20121223_IND@KC,1,58,42,IND,KC,3,3,73,(13:42) (Shotgun) A.Luck pass short right to D.Avery to IND 29 for 2 yards (E.Berry).,0,0,2012 -20121223_IND@KC,1,58,9,IND,KC,4,1,71,(13:09) P.McAfee punts 60 yards to KC 11 Center-M.Overton out of bounds.,0,0,2012 -20121223_IND@KC,1,57,56,KC,IND,1,10,89,(12:56) J.Charles left guard to KC 13 for 2 yards (M.Tevaseu).,0,0,2012 -20121223_IND@KC,1,57,22,KC,IND,2,8,87,(12:22) B.Quinn pass short right to D.Wylie to KC 29 for 16 yards (A.Bethea).,0,0,2012 -20121223_IND@KC,1,56,47,KC,IND,1,10,71,(11:47) J.Charles up the middle to KC 31 for 2 yards (M.Tevaseu; L.Guy).,0,0,2012 -20121223_IND@KC,1,56,14,KC,IND,2,8,69,(11:14) J.Charles left end to KC 33 for 2 yards (V.Davis).,0,0,2012 -20121223_IND@KC,1,56,14,KC,IND,3,6,67,(11:14) (Shotgun) PENALTY on KC-D.Stephenson False Start 5 yards enforced at KC 33 - No Play.,0,0,2012 -20121223_IND@KC,1,55,16,KC,IND,3,11,72,(10:16) (Shotgun) B.Quinn pass short right intended for D.McCluster INTERCEPTED by D.Butler [M.Fokou] at KC 32. D.Butler for 32 yards TOUCHDOWN.,0,0,2012 -20121223_IND@KC,1,55,16,IND,KC,,,72,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121223_IND@KC,1,55,16,IND,KC,,,72,A.Vinatieri kicks 71 yards from IND 35 to KC -6. D.Wylie Touchback.,7,0,2012 -20121223_IND@KC,1,55,8,KC,IND,1,10,80,(10:08) B.Quinn pass incomplete short right to J.Charles [D.Freeney].,0,7,2012 -20121223_IND@KC,1,55,3,KC,IND,2,10,80,(10:03) B.Quinn pass deep left to J.Baldwin to IND 23 for 57 yards (J.Lefeged).,0,7,2012 -20121223_IND@KC,1,54,23,KC,IND,1,10,23,(9:23) J.Charles left tackle to IND 7 for 16 yards (V.Davis). PENALTY on KC-J.Allen Offensive Holding 10 yards enforced at IND 23 - No Play.,0,7,2012 -20121223_IND@KC,1,53,56,KC,IND,1,20,33,(8:56) (Shotgun) B.Quinn pass incomplete deep middle to J.Baldwin.,0,7,2012 -20121223_IND@KC,1,53,49,KC,IND,2,20,33,(8:49) B.Quinn pass incomplete deep left to J.Baldwin [D.Freeney].,0,7,2012 -20121223_IND@KC,1,53,44,KC,IND,3,20,33,(8:44) (Shotgun) S.Draughn left end pushed ob at IND 29 for 4 yards (J.Lefeged).,0,7,2012 -20121223_IND@KC,1,53,23,KC,IND,4,16,29,(8:23) R.Succop 47 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20121223_IND@KC,1,53,23,KC,IND,,,29,R.Succop kicks 67 yards from KC 35 to IND -2. D.Karim to IND 33 for 35 yards (T.Copper).,3,7,2012 -20121223_IND@KC,1,53,11,IND,KC,1,10,67,(8:11) V.Ballard left end to IND 39 for 6 yards (R.Pitoitua). FUMBLES (R.Pitoitua) recovered by IND-C.Fleener at IND 39. C.Fleener to IND 39 for no gain (R.Pitoitua).,7,3,2012 -20121223_IND@KC,1,52,30,IND,KC,2,4,61,(7:30) (No Huddle) A.Luck pass short right to R.Wayne to 50 for 11 yards (D.Johnson).,7,3,2012 -20121223_IND@KC,1,51,56,IND,KC,1,10,50,(6:56) (No Huddle) V.Ballard up the middle to IND 49 for -1 yards (E.Berry).,7,3,2012 -20121223_IND@KC,1,51,18,IND,KC,2,11,51,(6:18) A.Luck sacked at IND 49 for 0 yards (D.Johnson).,7,3,2012 -20121223_IND@KC,1,50,32,IND,KC,3,11,51,(5:32) (Shotgun) A.Luck sacked at IND 44 for -5 yards (T.Hali).,7,3,2012 -20121223_IND@KC,1,50,6,IND,KC,4,16,56,(5:06) P.McAfee punts 44 yards to KC 12 Center-M.Overton. D.Wylie to KC 22 for 10 yards (M.Overton).,7,3,2012 -20121223_IND@KC,1,49,54,KC,IND,1,10,78,(4:54) B.Quinn pass incomplete deep right to J.Baldwin.,3,7,2012 -20121223_IND@KC,1,49,49,KC,IND,2,10,78,(4:49) P.Hillis right end to KC 38 for 16 yards (A.Bethea).,3,7,2012 -20121223_IND@KC,1,49,17,KC,IND,1,10,62,(4:17) P.Hillis left guard to KC 40 for 2 yards (J.Hughes).,3,7,2012 -20121223_IND@KC,1,48,47,KC,IND,2,8,60,(3:47) B.Quinn pass short right to D.McCluster to IND 49 for 11 yards (R.Mathis).,3,7,2012 -20121223_IND@KC,1,48,15,KC,IND,1,10,49,(3:15) J.Charles left guard to IND 45 for 4 yards (J.Freeman).,3,7,2012 -20121223_IND@KC,1,47,48,KC,IND,2,6,45,(2:48) P.Hillis up the middle to IND 39 for 6 yards (A.Bethea).,3,7,2012 -20121223_IND@KC,1,47,17,KC,IND,1,10,39,(2:17) B.Quinn pass short left to J.Charles pushed ob at IND 35 for 4 yards (J.Freeman).,3,7,2012 -20121223_IND@KC,1,47,1,KC,IND,2,6,35,(2:01) P.Hillis right tackle to IND 27 for 8 yards (L.Guy).,3,7,2012 -20121223_IND@KC,1,46,30,KC,IND,1,10,27,(1:30) P.Hillis right guard to IND 25 for 2 yards (L.Guy).,3,7,2012 -20121223_IND@KC,1,45,55,KC,IND,2,8,25,(:55) B.Quinn pass incomplete deep right to S.Maneri.,3,7,2012 -20121223_IND@KC,1,45,50,KC,IND,3,8,25,(:50) (Shotgun) B.Quinn pass incomplete short left to D.Wylie (V.Davis).,3,7,2012 -20121223_IND@KC,1,45,45,KC,IND,4,8,25,(:45) R.Succop 43 yard field goal is No Good Wide Right Center-T.Gafford Holder-D.Colquitt.,3,7,2012 -20121223_IND@KC,1,45,41,IND,KC,1,10,67,(:41) A.Luck pass short middle to D.Avery to IND 38 for 5 yards (J.Arenas).,7,3,2012 -20121223_IND@KC,1,45,8,IND,KC,2,5,62,(:08) (No Huddle) V.Ballard up the middle to IND 39 for 1 yard (T.Jackson).,7,3,2012 -20121223_IND@KC,2,45,0,IND,KC,3,4,61,(15:00) (Shotgun) A.Luck pass deep right to D.Avery to KC 33 for 28 yards (B.Flowers).,7,3,2012 -20121223_IND@KC,2,44,20,IND,KC,1,10,33,(14:20) (No Huddle) V.Ballard up the middle to KC 30 for 3 yards (D.Poe).,7,3,2012 -20121223_IND@KC,2,43,45,IND,KC,2,7,30,(13:45) A.Luck pass incomplete deep right to R.Wayne.,7,3,2012 -20121223_IND@KC,2,43,38,IND,KC,3,7,30,(13:38) (Shotgun) A.Luck pass incomplete short left to R.Wayne (K.Lewis) [J.Houston].,7,3,2012 -20121223_IND@KC,2,43,32,IND,KC,4,7,30,(13:32) A.Vinatieri 48 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,7,3,2012 -20121223_IND@KC,2,43,32,IND,KC,,,30,A.Vinatieri kicks 67 yards from IND 35 to KC -2. D.Wylie to KC 20 for 22 yards (J.Westerman). KC-T.Copper was injured during the play. His return is Questionable. Injury was to left knee.,10,3,2012 -20121223_IND@KC,2,43,21,KC,IND,1,10,80,(13:21) J.Charles right end pushed ob at KC 43 for 23 yards (C.Vaughn).,3,10,2012 -20121223_IND@KC,2,42,56,KC,IND,1,10,57,(12:56) (Shotgun) PENALTY on IND-J.Hughes Neutral Zone Infraction 5 yards enforced at KC 43 - No Play.,3,10,2012 -20121223_IND@KC,2,42,40,KC,IND,1,5,52,(12:40) J.Charles up the middle to IND 45 for 7 yards (J.Freeman).,3,10,2012 -20121223_IND@KC,2,42,6,KC,IND,1,10,45,(12:06) B.Quinn scrambles right end to IND 43 for 2 yards (J.Hughes).,3,10,2012 -20121223_IND@KC,2,41,25,KC,IND,2,8,43,(11:25) J.Charles left end to IND 42 for 1 yard (C.Redding).,3,10,2012 -20121223_IND@KC,2,40,45,KC,IND,3,7,42,(10:45) (Shotgun) B.Quinn pass incomplete short right to J.Charles [M.Fokou].,3,10,2012 -20121223_IND@KC,2,40,41,KC,IND,4,7,42,(10:41) D.Colquitt punts 42 yards to end zone Center-T.Gafford Touchback.,3,10,2012 -20121223_IND@KC,2,40,34,IND,KC,1,10,80,(10:34) A.Luck pass short right to D.Allen to IND 26 for 6 yards (B.Flowers).,10,3,2012 -20121223_IND@KC,2,40,5,IND,KC,2,4,74,(10:05) (No Huddle) V.Ballard up the middle to IND 28 for 2 yards (R.Pitoitua).,10,3,2012 -20121223_IND@KC,2,39,21,IND,KC,3,2,72,(9:21) (Shotgun) A.Luck pass short right to D.Allen to IND 35 for 7 yards (T.Hartman).,10,3,2012 -20121223_IND@KC,2,38,39,IND,KC,1,10,65,(8:39) A.Luck pass incomplete short right to D.Avery.,10,3,2012 -20121223_IND@KC,2,38,32,IND,KC,2,10,65,(8:32) (Shotgun) V.Ballard up the middle to IND 45 for 10 yards (T.Hartman).,10,3,2012 -20121223_IND@KC,2,37,58,IND,KC,1,10,55,(7:58) V.Ballard up the middle to IND 48 for 3 yards (D.Johnson).,10,3,2012 -20121223_IND@KC,2,37,31,IND,KC,2,7,52,(7:31) (No Huddle) V.Ballard left guard to KC 48 for 4 yards (D.Johnson).,10,3,2012 -20121223_IND@KC,2,36,51,IND,KC,3,3,48,(6:51) (Shotgun) A.Luck pass short right to D.Avery to KC 44 for 4 yards (J.Arenas).,10,3,2012 -20121223_IND@KC,2,36,24,IND,KC,1,10,44,(6:24) (No Huddle) V.Ballard left guard to KC 42 for 2 yards (D.Johnson).,10,3,2012 -20121223_IND@KC,2,35,44,IND,KC,2,8,42,(5:44) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,10,3,2012 -20121223_IND@KC,2,35,38,IND,KC,3,8,42,(5:38) (Shotgun) A.Luck pass incomplete deep right to L.Brazill.,10,3,2012 -20121223_IND@KC,2,35,34,IND,KC,4,8,42,(5:34) P.McAfee punts 42 yards to end zone Center-M.Overton Touchback.,10,3,2012 -20121223_IND@KC,2,35,27,KC,IND,1,10,80,(5:27) (Shotgun) B.Quinn scrambles left end to KC 28 for 8 yards (R.Mathews).,3,10,2012 -20121223_IND@KC,2,34,53,KC,IND,2,2,72,(4:53) P.Hillis right end pushed ob at KC 42 for 14 yards (J.Lefeged).,3,10,2012 -20121223_IND@KC,2,34,32,KC,IND,1,10,58,(4:32) J.Charles up the middle to KC 45 for 3 yards (L.Guy).,3,10,2012 -20121223_IND@KC,2,33,55,KC,IND,2,7,55,(3:55) B.Quinn pass short middle to S.Maneri to IND 41 for 14 yards (P.Angerer). PENALTY on KC-D.Stephenson Illegal Use of Hands 10 yards enforced at KC 45 - No Play.,3,10,2012 -20121223_IND@KC,2,33,25,KC,IND,2,17,65,(3:25) B.Quinn pass short left to P.Hillis to KC 38 for 3 yards (J.Hughes). PENALTY on IND-K.Heard Illegal Use of Hands 5 yards enforced at KC 35 - No Play.,3,10,2012 -20121223_IND@KC,2,32,59,KC,IND,1,10,60,(2:59) J.Charles left tackle to KC 46 for 6 yards (V.Davis).,3,10,2012 -20121223_IND@KC,2,32,22,KC,IND,2,4,54,(2:22) P.Hillis left end to KC 43 for -3 yards (V.Davis). PENALTY on KC-D.Stephenson Offensive Holding 10 yards enforced at KC 46 - No Play.,3,10,2012 -20121223_IND@KC,2,32,4,KC,IND,2,14,64,(2:04) B.Quinn pass short middle to D.Wylie to KC 40 for 4 yards (P.Angerer).,3,10,2012 -20121223_IND@KC,2,31,57,KC,IND,3,10,60,(1:57) (Shotgun) B.Quinn pass deep right to D.Wylie to IND 44 for 16 yards (D.Butler).,3,10,2012 -20121223_IND@KC,2,31,15,KC,IND,1,10,44,(1:15) B.Quinn pass deep right to J.Newsome pushed ob at IND 16 for 28 yards (C.Vaughn).,3,10,2012 -20121223_IND@KC,2,31,9,KC,IND,1,10,16,(1:09) J.Charles up the middle to IND 16 for no gain (P.Angerer). FUMBLES (P.Angerer) RECOVERED by IND-J.Lefeged at IND 18. J.Lefeged to IND 22 for 4 yards.,3,10,2012 -20121223_IND@KC,2,31,2,IND,KC,1,10,78,(1:02) (Shotgun) A.Luck pass incomplete short left to D.Avery (D.Poe).,10,3,2012 -20121223_IND@KC,2,30,57,IND,KC,2,10,78,(:57) (Shotgun) A.Luck pass deep middle to T.Hilton to IND 45 for 23 yards (K.Lewis).,10,3,2012 -20121223_IND@KC,2,30,51,IND,KC,1,10,55,(:51) (Shotgun) A.Luck pass short right to M.Moore pushed ob at KC 23 for 32 yards (K.Lewis).,10,3,2012 -20121223_IND@KC,2,30,42,IND,KC,1,10,23,(:42) (Shotgun) A.Luck pass incomplete deep middle to L.Brazill.,10,3,2012 -20121223_IND@KC,2,30,36,IND,KC,2,10,23,(:36) (Shotgun) A.Luck pass incomplete deep right to R.Wayne (E.Berry).,10,3,2012 -20121223_IND@KC,2,30,31,IND,KC,3,10,23,(:31) (Shotgun) A.Luck scrambles up the middle to KC 18 for 5 yards (A.Studebaker).,10,3,2012 -20121223_IND@KC,2,30,11,IND,KC,4,5,18,(:11) A.Vinatieri 36 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,10,3,2012 -20121223_IND@KC,2,30,11,IND,KC,,,18,A.Vinatieri kicks 73 yards from IND 35 to KC -8. D.Wylie Touchback.,13,3,2012 -20121223_IND@KC,2,30,7,KC,IND,1,10,80,(:07) B.Quinn kneels to KC 19 for -1 yards.,3,13,2012 -20121223_IND@KC,3,30,0,IND,KC,,,80,A.Vinatieri kicks 67 yards from IND 35 to KC -2. D.Wylie to KC 14 for 16 yards (S.Brown).,13,3,2012 -20121223_IND@KC,3,29,55,KC,IND,1,10,86,(14:55) J.Charles left end for 86 yards TOUCHDOWN.,3,13,2012 -20121223_IND@KC,3,29,55,KC,IND,,,86,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,13,2012 -20121223_IND@KC,3,29,55,KC,IND,,,86,R.Succop kicks 73 yards from KC 35 to IND -8. D.Karim Touchback.,10,13,2012 -20121223_IND@KC,3,29,40,IND,KC,1,10,80,(14:40) A.Luck pass deep left to R.Wayne to KC 47 for 33 yards (D.Johnson).,13,10,2012 -20121223_IND@KC,3,28,58,IND,KC,1,10,47,(13:58) A.Luck pass incomplete short left to D.Avery.,13,10,2012 -20121223_IND@KC,3,28,54,IND,KC,2,10,47,(13:54) A.Luck pass incomplete short left to L.Brazill.,13,10,2012 -20121223_IND@KC,3,28,49,IND,KC,3,10,47,(13:49) (Shotgun) A.Luck pass incomplete deep right to R.Wayne.,13,10,2012 -20121223_IND@KC,3,28,42,IND,KC,4,10,53,(13:42) P.McAfee punts 40 yards to KC 13 Center-M.Overton fair catch by D.Wylie.,13,10,2012 -20121223_IND@KC,3,28,37,KC,IND,1,10,87,(13:37) B.Quinn pass short left to D.McCluster to KC 22 for 9 yards (J.Freeman).,10,13,2012 -20121223_IND@KC,3,27,55,KC,IND,2,1,78,(12:55) J.Charles left end ran ob at IND 45 for 33 yards.,10,13,2012 -20121223_IND@KC,3,27,37,KC,IND,1,10,45,(12:37) D.McCluster left end pushed ob at IND 35 for 10 yards (J.Lefeged).,10,13,2012 -20121223_IND@KC,3,27,11,KC,IND,1,10,35,(12:11) B.Quinn pass short left to J.Baldwin to IND 28 for 7 yards (V.Davis). PENALTY on IND-J.Lefeged Unnecessary Roughness 14 yards enforced at IND 28.,10,13,2012 -20121223_IND@KC,3,26,47,KC,IND,1,10,14,(11:47) B.Quinn pass short left intended for J.Baldwin INTERCEPTED by V.Davis at IND -1. Touchback.,10,13,2012 -20121223_IND@KC,3,26,42,IND,KC,1,10,80,(11:42) V.Ballard right tackle to IND 18 for -2 yards (B.Siler).,13,10,2012 -20121223_IND@KC,3,26,2,IND,KC,2,12,82,(11:02) (No Huddle Shotgun) A.Luck scrambles right end to IND 29 for 11 yards (T.Jackson).,13,10,2012 -20121223_IND@KC,3,25,14,IND,KC,3,1,71,(10:14) (Shotgun) A.Luck pass incomplete short left to T.Hilton (J.Arenas).,13,10,2012 -20121223_IND@KC,3,25,9,IND,KC,4,1,71,(10:09) P.McAfee punts 52 yards to KC 19 Center-M.Overton out of bounds.,13,10,2012 -20121223_IND@KC,3,25,2,KC,IND,1,10,81,(10:02) J.Charles right guard to KC 25 for 6 yards (P.Angerer; L.Guy).,10,13,2012 -20121223_IND@KC,3,24,32,KC,IND,2,4,75,(9:32) P.Hillis left end pushed ob at KC 39 for 14 yards (P.Angerer).,10,13,2012 -20121223_IND@KC,3,24,2,KC,IND,1,10,61,(9:02) J.Charles up the middle to KC 43 for 4 yards (J.Freeman; L.Guy).,10,13,2012 -20121223_IND@KC,3,23,23,KC,IND,2,6,57,(8:23) P.Hillis right tackle to KC 46 for 3 yards (P.Angerer).,10,13,2012 -20121223_IND@KC,3,22,37,KC,IND,3,3,54,(7:37) (Shotgun) B.Quinn pass deep left intended for J.Newsome INTERCEPTED by V.Davis at IND 30. V.Davis to IND 30 for no gain (J.Newsome). PENALTY on IND-V.Davis Defensive Pass Interference 24 yards enforced at KC 46 - No Play.,10,13,2012 -20121223_IND@KC,3,22,29,KC,IND,1,10,30,(7:29) P.Hillis right end pushed ob at IND 24 for 6 yards (J.Freeman).,10,13,2012 -20121223_IND@KC,3,22,10,KC,IND,2,4,24,(7:10) J.Charles left guard to IND 22 for 2 yards (J.Freeman).,10,13,2012 -20121223_IND@KC,3,21,27,KC,IND,3,2,22,(6:27) (Shotgun) B.Quinn sacked at IND 29 for -7 yards (D.Freeney).,10,13,2012 -20121223_IND@KC,3,21,5,KC,IND,4,9,29,(6:05) R.Succop 47 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,10,13,2012 -20121223_IND@KC,3,21,5,KC,IND,,,29,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,13,13,2012 -20121223_IND@KC,3,21,0,IND,KC,1,10,80,(6:00) A.Luck pass incomplete short right to R.Wayne.,13,13,2012 -20121223_IND@KC,3,20,55,IND,KC,2,10,80,(5:55) V.Ballard up the middle to IND 27 for 7 yards (E.Berry).,13,13,2012 -20121223_IND@KC,3,20,15,IND,KC,3,3,73,(5:15) (Shotgun) A.Luck pass incomplete short middle to D.Avery (T.Hartman). PENALTY on KC-D.Johnson Roughing the Passer 15 yards enforced at IND 27 - No Play.,13,13,2012 -20121223_IND@KC,3,20,10,IND,KC,1,10,58,(5:10) A.Luck pass incomplete deep right to C.Fleener.,13,13,2012 -20121223_IND@KC,3,20,3,IND,KC,2,10,58,(5:03) (Shotgun) A.Luck sacked at IND 40 for -2 yards (B.Flowers). KC-T.Jackson was injured during the play. His return is Questionable.,13,13,2012 -20121223_IND@KC,3,19,44,IND,KC,3,12,60,(4:44) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,13,13,2012 -20121223_IND@KC,3,19,39,IND,KC,4,12,60,(4:39) P.McAfee punts 38 yards to KC 22 Center-M.Overton. D.Wylie to KC 32 for 10 yards (J.Westerman). PENALTY on KC-A.Studebaker Offensive Holding 10 yards enforced at KC 23.,13,13,2012 -20121223_IND@KC,3,19,26,KC,IND,1,10,87,(4:26) J.Charles left end to KC 16 for 3 yards (L.Guy).,13,13,2012 -20121223_IND@KC,3,18,49,KC,IND,2,7,84,(3:49) P.Hillis up the middle to KC 22 for 6 yards (P.Angerer).,13,13,2012 -20121223_IND@KC,3,18,11,KC,IND,3,1,78,(3:11) J.Charles right end ran ob at KC 49 for 27 yards.,13,13,2012 -20121223_IND@KC,3,17,39,KC,IND,1,10,51,(2:39) B.Quinn pass incomplete short right to P.Hillis.,13,13,2012 -20121223_IND@KC,3,17,33,KC,IND,2,10,51,(2:33) PENALTY on KC-J.Allen False Start 5 yards enforced at KC 49 - No Play.,13,13,2012 -20121223_IND@KC,3,17,32,KC,IND,2,15,56,(2:32) B.Quinn scrambles right end to KC 46 for 2 yards (J.Hughes).,13,13,2012 -20121223_IND@KC,3,16,53,KC,IND,3,13,54,(1:53) (Shotgun) B.Quinn pass incomplete short right to J.Newsome.,13,13,2012 -20121223_IND@KC,3,16,48,KC,IND,4,13,54,(1:48) D.Colquitt punts 43 yards to IND 11 Center-T.Gafford downed by KC-C.Greenwood.,13,13,2012 -20121223_IND@KC,3,16,37,IND,KC,1,10,89,(1:37) A.Luck pass incomplete short right to T.Hilton (B.Flowers).,13,13,2012 -20121223_IND@KC,3,16,33,IND,KC,2,10,89,(1:33) (Shotgun) A.Luck pass incomplete deep left to R.Wayne (E.Berry).,13,13,2012 -20121223_IND@KC,3,16,28,IND,KC,3,10,89,(1:28) (Shotgun) A.Luck scrambles up the middle to IND 16 for 5 yards (T.Hali).,13,13,2012 -20121223_IND@KC,3,15,47,IND,KC,4,5,84,(:47) P.McAfee punts 48 yards to KC 36 Center-M.Overton. D.Wylie to KC 27 for -9 yards (M.Harvey).,13,13,2012 -20121223_IND@KC,3,15,33,KC,IND,1,10,73,(:33) J.Charles left end to KC 31 for 4 yards (J.Freeman).,13,13,2012 -20121223_IND@KC,4,15,0,KC,IND,2,6,69,(15:00) P.Hillis up the middle ran ob at KC 37 for 6 yards (C.Vaughn).,13,13,2012 -20121223_IND@KC,4,15,0,KC,IND,1,10,63,(15:00) PENALTY on KC-E.Winston False Start 5 yards enforced at KC 37 - No Play.,13,13,2012 -20121223_IND@KC,4,14,20,KC,IND,1,15,68,(14:20) J.Charles left guard to KC 38 for 6 yards (A.Bethea).,13,13,2012 -20121223_IND@KC,4,13,43,KC,IND,2,9,62,(13:43) B.Quinn pass short right to D.McCluster to KC 48 for 10 yards (V.Davis).,13,13,2012 -20121223_IND@KC,4,13,7,KC,IND,1,10,52,(13:07) J.Charles left tackle to KC 49 for 1 yard (J.Freeman).,13,13,2012 -20121223_IND@KC,4,12,37,KC,IND,2,9,51,(12:37) P.Hillis up the middle to IND 36 for 15 yards (J.Lefeged).,13,13,2012 -20121223_IND@KC,4,12,0,KC,IND,1,10,36,(12:00) P.Hillis left end to IND 31 for 5 yards (M.Tevaseu).,13,13,2012 -20121223_IND@KC,4,11,23,KC,IND,2,5,31,(11:23) J.Charles up the middle to IND 27 for 4 yards (L.Guy).,13,13,2012 -20121223_IND@KC,4,10,40,KC,IND,3,1,27,(10:40) P.Hillis up the middle to IND 27 for no gain (A.Bethea).,13,13,2012 -20121223_IND@KC,4,10,21,KC,IND,4,1,27,(10:21) B.Quinn up the middle to IND 27 for no gain (R.Mathis).,13,13,2012 -20121223_IND@KC,4,10,13,IND,KC,1,10,73,(10:13) (Shotgun) A.Luck pass incomplete short right to C.Fleener.,13,13,2012 -20121223_IND@KC,4,10,9,IND,KC,2,10,73,(10:09) V.Ballard up the middle to IND 33 for 6 yards (J.Houston).,13,13,2012 -20121223_IND@KC,4,9,26,IND,KC,3,4,67,(9:26) (Shotgun) A.Luck pass short left to T.Hilton ran ob at IND 44 for 11 yards (J.Brown).,13,13,2012 -20121223_IND@KC,4,9,13,IND,KC,1,10,56,(9:13) A.Luck pass short right to D.Avery to IND 43 for -1 yards (B.Flowers). KC-B.Flowers was injured during the play.,13,13,2012 -20121223_IND@KC,4,8,35,IND,KC,2,11,57,(8:35) A.Luck pass short left to R.Wayne to KC 39 for 18 yards (N.Thorpe).,13,13,2012 -20121223_IND@KC,4,8,16,IND,KC,1,10,39,(8:16) (No Huddle) V.Ballard up the middle to KC 28 for 11 yards (T.Hartman).,13,13,2012 -20121223_IND@KC,4,7,51,IND,KC,1,10,28,(7:51) (No Huddle) V.Ballard left end to KC 30 for -2 yards (T.Hartman).,13,13,2012 -20121223_IND@KC,4,7,13,IND,KC,2,12,30,(7:13) (Shotgun) A.Luck pass short left to R.Wayne to KC 18 for 12 yards (N.Thorpe).,13,13,2012 -20121223_IND@KC,4,6,36,IND,KC,1,10,18,(6:36) V.Ballard left end to KC 16 for 2 yards (T.Hartman). PENALTY on KC-R.Pitoitua Defensive Offside 5 yards enforced at KC 18 - No Play.,13,13,2012 -20121223_IND@KC,4,6,15,IND,KC,1,5,13,(6:15) V.Ballard left tackle to KC 10 for 3 yards (D.Poe).,13,13,2012 -20121223_IND@KC,4,5,37,IND,KC,2,2,10,(5:37) A.Luck pass short right to C.Fleener to KC 8 for 2 yards (D.Johnson).,13,13,2012 -20121223_IND@KC,4,4,59,IND,KC,1,8,8,(4:59) V.Ballard left end to KC 7 for 1 yard (J.Arenas).,13,13,2012 -20121223_IND@KC,4,4,19,IND,KC,2,7,7,(4:19) T.Hilton pass incomplete short right.,13,13,2012 -20121223_IND@KC,4,4,12,IND,KC,3,7,7,(4:12) (Shotgun) A.Luck pass short middle to R.Wayne for 7 yards TOUCHDOWN.,13,13,2012 -20121223_IND@KC,4,4,12,IND,KC,,,7,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,13,13,2012 -20121223_IND@KC,4,4,12,IND,KC,,,7,A.Vinatieri kicks 71 yards from IND 35 to KC -6. D.Wylie to KC 10 for 16 yards (L.Brazill).,20,13,2012 -20121223_IND@KC,4,4,3,KC,IND,1,10,90,(4:03) B.Quinn pass incomplete short right to S.Maneri.,13,20,2012 -20121223_IND@KC,4,4,0,KC,IND,2,10,90,(4:00) J.Charles up the middle to KC 12 for 2 yards (J.Lefeged; J.Freeman).,13,20,2012 -20121223_IND@KC,4,3,17,KC,IND,3,8,88,(3:17) (Shotgun) P.Hillis right end to KC 10 for -2 yards (J.Hughes).,13,20,2012 -20121223_IND@KC,4,2,39,KC,IND,4,10,90,(2:39) D.Colquitt punts 53 yards to IND 37 Center-T.Gafford fair catch by T.Hilton.,13,20,2012 -20121223_IND@KC,4,2,30,IND,KC,1,10,63,(2:30) V.Ballard up the middle to IND 38 for 1 yard (S.Smith).,20,13,2012 -20121223_IND@KC,4,2,25,IND,KC,2,9,62,(2:25) V.Ballard left end to IND 37 for -1 yards (D.Poe).,20,13,2012 -20121223_IND@KC,4,2,20,IND,KC,3,10,63,(2:20) (Shotgun) V.Ballard left end to 50 for 13 yards (K.Lewis).,20,13,2012 -20121223_IND@KC,4,2,0,IND,KC,1,10,50,(2:00) A.Luck kneels to 50 for no gain.,20,13,2012 -20121223_IND@KC,4,1,18,IND,KC,2,10,50,(1:18) A.Luck kneels to 50 for no gain.,20,13,2012 -20121223_IND@KC,4,0,36,IND,KC,3,10,50,(:36) A.Luck kneels to 50 for no gain.,20,13,2012 -20121223_IND@KC,4,0,36,IND,KC,,,50,                      ,20,13,2012 -20121223_BUF@MIA,1,0,0,BUF,MIA,,,50,R.Lindell kicks 65 yards from BUF 35 to end zone Touchback.,0,0,2012 -20121223_BUF@MIA,1,60,0,MIA,BUF,1,10,80,(15:00) R.Bush left tackle to MIA 21 for 1 yard (G.Wilson).,0,0,2012 -20121223_BUF@MIA,1,59,23,MIA,BUF,2,9,79,(14:23) (Shotgun) R.Tannehill pass short left to A.Fasano to MIA 26 for 5 yards (K.Sheppard).,0,0,2012 -20121223_BUF@MIA,1,58,46,MIA,BUF,3,4,74,(13:46) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 40 for 14 yards (B.Scott).,0,0,2012 -20121223_BUF@MIA,1,58,22,MIA,BUF,1,10,60,(13:22) R.Bush left guard to MIA 40 for no gain (Ky.Williams; M.Dareus). PENALTY on BUF-Ky.Williams Defensive Offside 5 yards enforced at MIA 40 - No Play.,0,0,2012 -20121223_BUF@MIA,1,58,1,MIA,BUF,1,5,55,(13:01) R.Bush left guard to MIA 49 for 4 yards (M.Dareus).,0,0,2012 -20121223_BUF@MIA,1,57,21,MIA,BUF,2,1,51,(12:21) (Shotgun) R.Bush left guard to BUF 41 for 10 yards (J.Byrd).,0,0,2012 -20121223_BUF@MIA,1,56,39,MIA,BUF,1,10,41,(11:39) (Shotgun) R.Tannehill pass short left to A.Fasano to BUF 34 for 7 yards (K.Sheppard).,0,0,2012 -20121223_BUF@MIA,1,56,8,MIA,BUF,2,3,34,(11:08) (Shotgun) L.Miller right tackle to BUF 28 for 6 yards (N.Barnett).,0,0,2012 -20121223_BUF@MIA,1,55,32,MIA,BUF,1,10,28,(10:32) R.Tannehill pass incomplete short left to Mar.Moore.,0,0,2012 -20121223_BUF@MIA,1,55,27,MIA,BUF,2,10,28,(10:27) R.Bush left tackle to BUF 28 for no gain (M.Dareus).,0,0,2012 -20121223_BUF@MIA,1,54,54,MIA,BUF,3,10,28,(9:54) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,0,0,2012 -20121223_BUF@MIA,1,54,45,MIA,BUF,4,10,28,(9:45) (Field Goal formation) N.Kaeding 46 yard field goal is BLOCKED (A.Carrington) Center-J.Denney Holder-B.Fields.,0,0,2012 -20121223_BUF@MIA,1,54,37,BUF,MIA,1,10,63,(9:37) R.Fitzpatrick pass short left to C.Spiller to 50 for 13 yards (K.Burnett).,0,0,2012 -20121223_BUF@MIA,1,54,1,BUF,MIA,1,10,50,(9:01) (Shotgun) PENALTY on BUF-K.Urbik False Start 5 yards enforced at MIA 50 - No Play.,0,0,2012 -20121223_BUF@MIA,1,53,33,BUF,MIA,1,15,55,(8:33) (Shotgun) R.Fitzpatrick pass deep left to S.Chandler to MIA 30 for 25 yards (C.Clemons). BUF-S.Chandler was injured during the play. He is Out.,0,0,2012 -20121223_BUF@MIA,1,52,59,BUF,MIA,1,10,30,(7:59) C.Spiller right tackle to MIA 25 for 5 yards (K.Burnett).,0,0,2012 -20121223_BUF@MIA,1,52,23,BUF,MIA,2,5,25,(7:23) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to MIA 17 for 8 yards (S.Smith). FUMBLES (S.Smith) RECOVERED by MIA-R.Jones at MIA 14. R.Jones to MIA 38 for 24 yards (R.Fitzpatrick). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 -20121223_BUF@MIA,1,52,12,MIA,BUF,1,10,62,(7:12) (Shotgun) R.Bush up the middle to MIA 47 for 9 yards (G.Wilson).,0,0,2012 -20121223_BUF@MIA,1,51,23,MIA,BUF,2,1,53,(6:23) L.Miller right guard to BUF 43 for 10 yards (G.Wilson).,0,0,2012 -20121223_BUF@MIA,1,50,48,MIA,BUF,1,10,43,(5:48) R.Tannehill pass incomplete short right to B.Hartline (N.Bradham).,0,0,2012 -20121223_BUF@MIA,1,50,43,MIA,BUF,2,10,43,(5:43) (Shotgun) L.Miller up the middle to BUF 39 for 4 yards (B.Scott; N.Barnett).,0,0,2012 -20121223_BUF@MIA,1,50,8,MIA,BUF,3,6,39,(5:08) (Shotgun) R.Tannehill pass short right to B.Hartline pushed ob at BUF 29 for 10 yards (S.Gilmore).,0,0,2012 -20121223_BUF@MIA,1,49,47,MIA,BUF,1,10,29,(4:47) (Shotgun) L.Miller right end to BUF 23 for 6 yards (K.Sheppard).,0,0,2012 -20121223_BUF@MIA,1,49,9,MIA,BUF,2,4,23,(4:09) (Shotgun) L.Miller left end to BUF 20 for 3 yards (J.Rogers).,0,0,2012 -20121223_BUF@MIA,1,48,49,MIA,BUF,3,1,20,(3:49) R.Bush up the middle to BUF 17 for 3 yards (M.Williams).,0,0,2012 -20121223_BUF@MIA,1,48,2,MIA,BUF,1,10,17,(3:02) R.Tannehill pass short right to R.Bush for 17 yards TOUCHDOWN. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,0,0,2012 -20121223_BUF@MIA,1,48,2,MIA,BUF,,,17,(Kick formation) N.Kaeding extra point is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20121223_BUF@MIA,1,48,2,MIA,BUF,,,17,N.Kaeding kicks 66 yards from MIA 35 to BUF -1. B.Smith to BUF 11 for 12 yards (O.Vernon).,7,0,2012 -20121223_BUF@MIA,1,47,48,BUF,MIA,1,10,89,(2:48) C.Spiller right tackle to BUF 13 for 2 yards (K.Burnett).,0,7,2012 -20121223_BUF@MIA,1,47,8,BUF,MIA,2,8,87,(2:08) (Shotgun) C.Spiller left end to BUF 20 for 7 yards (O.Vernon).,0,7,2012 -20121223_BUF@MIA,1,46,25,BUF,MIA,3,1,80,(1:25) C.Spiller left guard to BUF 22 for 2 yards (D.Patterson).,0,7,2012 -20121223_BUF@MIA,1,45,44,BUF,MIA,1,10,78,(:44) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson.,0,7,2012 -20121223_BUF@MIA,1,45,37,BUF,MIA,2,10,78,(:37) (Shotgun) PENALTY on BUF-S.Young False Start 5 yards enforced at BUF 22 - No Play.,0,7,2012 -20121223_BUF@MIA,1,45,37,BUF,MIA,2,15,83,(:37) (Shotgun) R.Fitzpatrick pass short right to D.Dickerson to BUF 39 for 22 yards (C.Clemons).,0,7,2012 -20121223_BUF@MIA,2,45,0,BUF,MIA,1,10,61,(15:00) PENALTY on BUF-T.Graham False Start 5 yards enforced at BUF 39 - No Play.,0,7,2012 -20121223_BUF@MIA,2,45,0,BUF,MIA,1,15,66,(15:00) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson [K.Dansby].,0,7,2012 -20121223_BUF@MIA,2,44,55,BUF,MIA,2,15,66,(14:55) (Shotgun) C.Spiller left guard to BUF 39 for 5 yards (K.Dansby).,0,7,2012 -20121223_BUF@MIA,2,44,15,BUF,MIA,3,10,61,(14:15) (Shotgun) R.Fitzpatrick pass incomplete short middle to D.Dickerson.,0,7,2012 -20121223_BUF@MIA,2,44,11,BUF,MIA,4,10,61,(14:11) (Punt formation) S.Powell punts 23 yards to MIA 38 Center-G.Sanborn out of bounds.,0,7,2012 -20121223_BUF@MIA,2,44,2,MIA,BUF,1,10,62,(14:02) (Shotgun) R.Tannehill pass short middle to R.Matthews to MIA 45 for 7 yards (J.Byrd).,7,0,2012 -20121223_BUF@MIA,2,43,27,MIA,BUF,2,3,55,(13:27) (Shotgun) R.Bush right tackle to MIA 47 for 2 yards (S.Merriman).,7,0,2012 -20121223_BUF@MIA,2,42,47,MIA,BUF,3,1,53,(12:47) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (D.Searcy).,7,0,2012 -20121223_BUF@MIA,2,42,42,MIA,BUF,4,1,53,(12:42) (Punt formation) B.Fields punts 43 yards to BUF 10 Center-J.Denney fair catch by J.Byrd.,7,0,2012 -20121223_BUF@MIA,2,42,35,BUF,MIA,1,10,89,(12:35) C.Spiller up the middle to BUF 15 for 4 yards (K.Burnett).,0,7,2012 -20121223_BUF@MIA,2,42,0,BUF,MIA,2,6,85,(12:00) C.Spiller right tackle to MIA 23 for 62 yards (S.Smith).,0,7,2012 -20121223_BUF@MIA,2,41,7,BUF,MIA,1,10,23,(11:07) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson.,0,7,2012 -20121223_BUF@MIA,2,41,2,BUF,MIA,2,10,23,(11:02) (Shotgun) T.Choice right tackle to MIA 26 for -3 yards (R.Starks).,0,7,2012 -20121223_BUF@MIA,2,40,25,BUF,MIA,3,13,26,(10:25) (Shotgun) R.Fitzpatrick scrambles right end to MIA 24 for 2 yards (J.Odrick).,0,7,2012 -20121223_BUF@MIA,2,39,53,BUF,MIA,4,11,24,(9:53) (Field Goal formation) R.Lindell 42 yard field goal is GOOD Center-G.Sanborn Holder-S.Powell.,0,7,2012 -20121223_BUF@MIA,2,39,53,BUF,MIA,,,24,R.Lindell kicks 59 yards from BUF 35 to MIA 6. M.Thigpen to MIA 34 for 28 yards (N.Barnett).,3,7,2012 -20121223_BUF@MIA,2,39,43,MIA,BUF,1,10,66,(9:43) L.Miller left tackle to MIA 39 for 5 yards (K.Sheppard).,7,3,2012 -20121223_BUF@MIA,2,39,7,MIA,BUF,2,5,61,(9:07) (Shotgun) R.Tannehill left tackle to MIA 45 for 6 yards (K.Moore).,7,3,2012 -20121223_BUF@MIA,2,38,29,MIA,BUF,1,10,55,(8:29) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (A.Carrington).,7,3,2012 -20121223_BUF@MIA,2,38,23,MIA,BUF,2,10,55,(8:23) (Shotgun) R.Tannehill up the middle to BUF 49 for 6 yards (B.Scott).,7,3,2012 -20121223_BUF@MIA,2,37,40,MIA,BUF,3,4,49,(7:40) (Shotgun) R.Tannehill pass incomplete short left to A.Binns.,7,3,2012 -20121223_BUF@MIA,2,37,33,MIA,BUF,4,4,49,(7:33) (Punt formation) B.Fields punts 41 yards to BUF 8 Center-J.Denney fair catch by J.Byrd.,7,3,2012 -20121223_BUF@MIA,2,37,26,BUF,MIA,1,10,92,(7:26) C.Spiller right guard to BUF 13 for 5 yards (K.Burnett).,3,7,2012 -20121223_BUF@MIA,2,36,43,BUF,MIA,2,5,87,(6:43) R.Fitzpatrick pass incomplete deep left to T.Graham.,3,7,2012 -20121223_BUF@MIA,2,36,36,BUF,MIA,3,5,87,(6:36) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Dickerson.,3,7,2012 -20121223_BUF@MIA,2,36,32,BUF,MIA,4,5,87,(6:32) (Punt formation) S.Powell punts 42 yards to MIA 45 Center-G.Sanborn. M.Thigpen to BUF 49 for 6 yards (G.Wilson).,3,7,2012 -20121223_BUF@MIA,2,36,19,MIA,BUF,1,10,49,(6:19) R.Tannehill pass incomplete deep right to B.Hartline.,7,3,2012 -20121223_BUF@MIA,2,36,11,MIA,BUF,2,10,49,(6:11) R.Bush right tackle to BUF 44 for 5 yards (K.Sheppard).,7,3,2012 -20121223_BUF@MIA,2,35,28,MIA,BUF,3,5,44,(5:28) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,7,3,2012 -20121223_BUF@MIA,2,35,24,MIA,BUF,4,5,44,(5:24) (Punt formation) B.Fields punts 44 yards to end zone Center-J.Denney Touchback.,7,3,2012 -20121223_BUF@MIA,2,35,16,BUF,MIA,1,10,80,(5:16) C.Spiller right guard to BUF 24 for 4 yards (P.Soliai).,3,7,2012 -20121223_BUF@MIA,2,34,32,BUF,MIA,2,6,76,(4:32) (Shotgun) C.Spiller left tackle to BUF 23 for -1 yards (C.Wake).,3,7,2012 -20121223_BUF@MIA,2,33,50,BUF,MIA,3,7,77,(3:50) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 25 for 2 yards (D.Patterson).,3,7,2012 -20121223_BUF@MIA,2,33,11,BUF,MIA,4,5,75,(3:11) (Punt formation) S.Powell punts 60 yards to MIA 15 Center-G.Sanborn. M.Thigpen to MIA 35 for 20 yards (N.Bradham).,3,7,2012 -20121223_BUF@MIA,2,32,59,MIA,BUF,1,10,65,(2:59) R.Bush up the middle to MIA 37 for 2 yards (N.Barnett).,7,3,2012 -20121223_BUF@MIA,2,32,22,MIA,BUF,2,8,63,(2:22) (Shotgun) R.Tannehill pass deep right to R.Matthews to BUF 33 for 30 yards (J.Byrd).,7,3,2012 -20121223_BUF@MIA,2,32,0,MIA,BUF,1,10,33,(2:00) (Shotgun) R.Tannehill right end to BUF 2 for 31 yards (J.Byrd). FUMBLES (J.Byrd) ball out of bounds at BUF 2.,7,3,2012 -20121223_BUF@MIA,2,31,32,MIA,BUF,1,2,2,(1:32) (Shotgun) R.Bush right guard to BUF 1 for 1 yard (G.Wilson).,7,3,2012 -20121223_BUF@MIA,2,30,46,MIA,BUF,2,1,1,(:46) W.Yeatman reported in as eligible. R.Bush left tackle for 1 yard TOUCHDOWN.,7,3,2012 -20121223_BUF@MIA,2,30,46,MIA,BUF,,,1,N.Kaeding extra point is GOOD Center-J.Denney Holder-B.Fields.,7,3,2012 -20121223_BUF@MIA,2,30,46,MIA,BUF,,,1,N.Kaeding kicks 65 yards from MIA 35 to BUF 0. B.Smith to BUF 20 for 20 yards (J.Trusnik).,14,3,2012 -20121223_BUF@MIA,2,30,33,BUF,MIA,1,10,80,(:33) (Shotgun) R.Fitzpatrick pass short right to D.Dickerson to BUF 25 for 5 yards (C.Clemons).,3,14,2012 -20121223_BUF@MIA,2,30,23,BUF,MIA,2,5,75,(:23) (Shotgun) PENALTY on BUF-A.Levitre False Start 5 yards enforced at BUF 25 - No Play.,3,14,2012 -20121223_BUF@MIA,2,30,23,BUF,MIA,2,10,80,(:23) (Shotgun) R.Fitzpatrick pass incomplete short middle to C.Spiller [C.Wake].,3,14,2012 -20121223_BUF@MIA,2,30,19,BUF,MIA,3,10,80,(:19) (Shotgun) C.Spiller right guard to BUF 25 for 5 yards (C.Wake).,3,14,2012 -20121223_BUF@MIA,3,30,0,MIA,BUF,,,80,N.Kaeding kicks 65 yards from MIA 35 to end zone Touchback.,14,3,2012 -20121223_BUF@MIA,3,30,0,BUF,MIA,1,10,80,(15:00) C.Spiller left guard to BUF 23 for 3 yards (K.Dansby).,3,14,2012 -20121223_BUF@MIA,3,29,19,BUF,MIA,2,7,77,(14:19) C.Spiller right end to BUF 31 for 8 yards (R.Jones).,3,14,2012 -20121223_BUF@MIA,3,28,37,BUF,MIA,1,10,69,(13:37) (Shotgun) C.Spiller up the middle to BUF 31 for no gain (K.Dansby).,3,14,2012 -20121223_BUF@MIA,3,27,56,BUF,MIA,2,10,69,(12:56) (Shotgun) R.Fitzpatrick pass short right to D.Dickerson to MIA 48 for 21 yards (K.Dansby). FUMBLES (K.Dansby) RECOVERED by MIA-C.Clemons at MIA 39. C.Clemons to MIA 36 for -3 yards (T.Graham). The Replay Assistant challenged the fumble ruling and the play was Upheld.,3,14,2012 -20121223_BUF@MIA,3,27,45,MIA,BUF,1,10,64,(12:45) (Shotgun) L.Miller left end to BUF 36 for 28 yards (B.Scott).,14,3,2012 -20121223_BUF@MIA,3,27,16,MIA,BUF,1,10,36,(12:16) (No Huddle Shotgun) R.Tannehill pass incomplete short right to L.Miller (M.Williams). Buffalo challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),14,3,2012 -20121223_BUF@MIA,3,27,13,MIA,BUF,2,10,36,(12:13) (Shotgun) R.Bush right tackle to BUF 28 for 8 yards (S.Gilmore). BUF-S.Gilmore was injured during the play.,14,3,2012 -20121223_BUF@MIA,3,26,44,MIA,BUF,3,2,28,(11:44) (Shotgun) R.Bush right tackle to BUF 25 for 3 yards (Ky.Williams).,14,3,2012 -20121223_BUF@MIA,3,25,56,MIA,BUF,1,10,25,(10:56) R.Tannehill pass incomplete short right to Mar.Moore.,14,3,2012 -20121223_BUF@MIA,3,25,51,MIA,BUF,2,10,25,(10:51) R.Bush left tackle to BUF 20 for 5 yards (K.Sheppard).,14,3,2012 -20121223_BUF@MIA,3,25,6,MIA,BUF,3,5,20,(10:06) (Shotgun) R.Tannehill pass short right to A.Binns to BUF 14 for 6 yards (J.Rogers).,14,3,2012 -20121223_BUF@MIA,3,24,33,MIA,BUF,1,10,14,(9:33) (Shotgun) R.Bush up the middle to BUF 12 for 2 yards (N.Barnett).,14,3,2012 -20121223_BUF@MIA,3,23,45,MIA,BUF,2,8,12,(8:45) R.Tannehill pass incomplete short left to R.Matthews [B.Scott].,14,3,2012 -20121223_BUF@MIA,3,23,38,MIA,BUF,3,8,12,(8:38) (Shotgun) R.Tannehill pass short left to R.Bush for 12 yards TOUCHDOWN. PENALTY on BUF-K.Moore Roughing the Passer 15 yards enforced between downs.,14,3,2012 -20121223_BUF@MIA,3,23,38,MIA,BUF,,,12,N.Kaeding extra point is GOOD Center-J.Denney Holder-B.Fields.,14,3,2012 -20121223_BUF@MIA,3,23,38,MIA,BUF,,,12,N.Kaeding kicks 50 yards from MIA 50 to end zone Touchback.,21,3,2012 -20121223_BUF@MIA,3,23,32,BUF,MIA,1,10,80,(8:32) (Shotgun) C.Spiller up the middle to BUF 20 for no gain (P.Soliai).,3,21,2012 -20121223_BUF@MIA,3,22,51,BUF,MIA,2,10,80,(7:51) C.Spiller right end pushed ob at BUF 32 for 12 yards (D.Patterson).,3,21,2012 -20121223_BUF@MIA,3,22,18,BUF,MIA,1,10,68,(7:18) C.Spiller right tackle to BUF 33 for 1 yard (T.McDaniel).,3,21,2012 -20121223_BUF@MIA,3,21,27,BUF,MIA,2,9,67,(6:27) (Shotgun) C.Spiller left tackle to BUF 35 for 2 yards (K.Dansby).,3,21,2012 -20121223_BUF@MIA,3,20,43,BUF,MIA,3,7,65,(5:43) R.Fitzpatrick sacked at BUF 29 for -6 yards (C.Wake). FUMBLES (C.Wake) RECOVERED by MIA-R.Jones at BUF 29. R.Jones to BUF 29 for no gain (A.Levitre).,3,21,2012 -20121223_BUF@MIA,3,20,35,MIA,BUF,1,10,29,(5:35) R.Tannehill sacked at BUF 37 for -8 yards (M.Dareus).,21,3,2012 -20121223_BUF@MIA,3,20,5,MIA,BUF,2,18,37,(5:05) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano (S.Merriman).,21,3,2012 -20121223_BUF@MIA,3,20,0,MIA,BUF,3,18,37,(5:00) (Shotgun) R.Tannehill pass short left to A.Binns to BUF 27 for 10 yards (A.Williams; G.Wilson).,21,3,2012 -20121223_BUF@MIA,3,19,22,MIA,BUF,4,8,27,(4:22) (Field Goal formation) N.Kaeding 45 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,21,3,2012 -20121223_BUF@MIA,3,19,22,MIA,BUF,,,27,N.Kaeding kicks 65 yards from MIA 35 to end zone Touchback.,24,3,2012 -20121223_BUF@MIA,3,19,17,BUF,MIA,1,10,80,(4:17) R.Fitzpatrick pass incomplete short right. PENALTY on BUF-L.Smith Offensive Holding 10 yards enforced at BUF 20 - No Play.,3,24,2012 -20121223_BUF@MIA,3,19,9,BUF,MIA,1,20,90,(4:09) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Graham.,3,24,2012 -20121223_BUF@MIA,3,19,5,BUF,MIA,2,20,90,(4:05) (Shotgun) Direct snap to B.Smith. B.Smith left end to BUF 11 for 1 yard (K.Burnett).,3,24,2012 -20121223_BUF@MIA,3,18,20,BUF,MIA,3,19,89,(3:20) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at BUF 17 for 6 yards (K.Burnett).,3,24,2012 -20121223_BUF@MIA,3,17,56,BUF,MIA,4,13,83,(2:56) (Punt formation) S.Powell punts 46 yards to MIA 37 Center-G.Sanborn out of bounds.,3,24,2012 -20121223_BUF@MIA,3,17,47,MIA,BUF,1,10,63,(2:47) R.Bush right end to MIA 41 for 4 yards (S.Gilmore).,24,3,2012 -20121223_BUF@MIA,3,17,11,MIA,BUF,2,6,59,(2:11) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline. PENALTY on BUF-S.Gilmore Defensive Pass Interference 9 yards enforced at MIA 41 - No Play.,24,3,2012 -20121223_BUF@MIA,3,17,6,MIA,BUF,1,10,50,(2:06) (Shotgun) R.Bush left guard to BUF 45 for 5 yards (B.Scott).,24,3,2012 -20121223_BUF@MIA,3,16,30,MIA,BUF,2,5,45,(1:30) (Shotgun) R.Tannehill pass short right to B.Hartline to BUF 43 for 2 yards (S.Gilmore).,24,3,2012 -20121223_BUF@MIA,3,15,50,MIA,BUF,3,3,43,(:50) (Shotgun) R.Tannehill pass short middle to A.Binns to BUF 32 for 11 yards (G.Wilson).,24,3,2012 -20121223_BUF@MIA,3,15,12,MIA,BUF,1,10,32,(:12) L.Miller right guard to BUF 30 for 2 yards (G.Wilson).,24,3,2012 -20121223_BUF@MIA,4,15,0,MIA,BUF,2,8,30,(15:00) (Shotgun) R.Bush up the middle to BUF 34 for -4 yards. FUMBLES recovered by MIA-R.Tannehill at BUF 34. R.Tannehill to BUF 34 for no gain (K.Moore).,24,3,2012 -20121223_BUF@MIA,4,14,29,MIA,BUF,3,12,34,(14:29) (Shotgun) R.Tannehill pass short right to R.Bush ran ob at BUF 35 for -1 yards (J.Rogers).,24,3,2012 -20121223_BUF@MIA,4,14,14,MIA,BUF,4,13,35,(14:14) (Field Goal formation) N.Kaeding punts 35 yards to end zone Center-J.Denney Touchback.,24,3,2012 -20121223_BUF@MIA,4,14,6,BUF,MIA,1,10,80,(14:06) (Shotgun) R.Fitzpatrick pass short right to T.Graham pushed ob at BUF 23 for 3 yards (K.Dansby).,3,24,2012 -20121223_BUF@MIA,4,13,39,BUF,MIA,2,7,77,(13:39) (No Huddle Shotgun) R.Fitzpatrick pass short middle to D.Dickerson to BUF 29 for 6 yards (R.Jones).,3,24,2012 -20121223_BUF@MIA,4,13,14,BUF,MIA,3,1,71,(13:14) R.Fitzpatrick up the middle to BUF 31 for 2 yards (K.Dansby).,3,24,2012 -20121223_BUF@MIA,4,12,48,BUF,MIA,1,10,69,(12:48) (No Huddle Shotgun) C.Spiller right tackle to BUF 33 for 2 yards (D.Shelby).,3,24,2012 -20121223_BUF@MIA,4,12,19,BUF,MIA,2,8,67,(12:19) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. PENALTY on BUF-St.Johnson Delay of Game 5 yards enforced at BUF 33.,3,24,2012 -20121223_BUF@MIA,4,12,19,BUF,MIA,3,13,72,(12:19) (Shotgun) R.Fitzpatrick pass deep left to T.Graham to MIA 31 for 41 yards (B.McCann).,3,24,2012 -20121223_BUF@MIA,4,11,30,BUF,MIA,1,10,31,(11:30) (No Huddle Shotgun) R.Fitzpatrick pass short left to St.Johnson to MIA 20 for 11 yards (B.McCann).,3,24,2012 -20121223_BUF@MIA,4,10,32,BUF,MIA,1,10,20,(10:32) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep right to T.Graham.,3,24,2012 -20121223_BUF@MIA,4,10,27,BUF,MIA,2,10,20,(10:27) (No Huddle Shotgun) PENALTY on MIA-R.Starks Neutral Zone Infraction 5 yards enforced at MIA 20 - No Play.,3,24,2012 -20121223_BUF@MIA,4,10,27,BUF,MIA,2,5,15,(10:27) (Shotgun) R.Fitzpatrick pass incomplete short right to D.Dickerson.,3,24,2012 -20121223_BUF@MIA,4,10,23,BUF,MIA,3,5,15,(10:23) (Shotgun) R.Fitzpatrick pass short right to R.Martin to MIA 9 for 6 yards (C.Clemons) [R.Jones].,3,24,2012 -20121223_BUF@MIA,4,9,44,BUF,MIA,1,9,9,(9:44) (No Huddle Shotgun) C.Spiller left end pushed ob at MIA 2 for 7 yards (R.Stanford).,3,24,2012 -20121223_BUF@MIA,4,8,56,BUF,MIA,2,2,2,(8:56) (Shotgun) R.Fitzpatrick pass short right to B.Smith for 2 yards TOUCHDOWN.,3,24,2012 -20121223_BUF@MIA,4,8,56,BUF,MIA,,,2,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,3,24,2012 -20121223_BUF@MIA,4,8,56,BUF,MIA,,,2,R.Lindell kicks 63 yards from BUF 35 to MIA 2. M.Thigpen to MIA 24 for 22 yards (G.Wilson).,10,24,2012 -20121223_BUF@MIA,4,8,47,MIA,BUF,1,10,76,(8:47) (Shotgun) R.Tannehill scrambles left tackle to MIA 26 for 2 yards (M.Williams).,24,10,2012 -20121223_BUF@MIA,4,8,3,MIA,BUF,2,8,74,(8:03) (Shotgun) L.Miller up the middle to MIA 34 for 8 yards (G.Wilson).,24,10,2012 -20121223_BUF@MIA,4,7,15,MIA,BUF,1,10,66,(7:15) (Shotgun) L.Miller right guard to MIA 35 for 1 yard (S.Merriman).,24,10,2012 -20121223_BUF@MIA,4,7,7,MIA,BUF,2,9,65,(7:07) (Shotgun) R.Bush left end to MIA 39 for 4 yards (G.Wilson).,24,10,2012 -20121223_BUF@MIA,4,6,35,MIA,BUF,3,5,61,(6:35) (Shotgun) R.Tannehill sacked at MIA 36 for -3 yards (M.Dareus).,24,10,2012 -20121223_BUF@MIA,4,6,0,MIA,BUF,4,8,64,(6:00) (Punt formation) N.Kaeding punts 49 yards to BUF 15 Center-J.Denney. J.Rogers to BUF 29 for 14 yards (J.Amaya). PENALTY on BUF-C.McIntyre Unnecessary Roughness 14 yards enforced at BUF 29.,24,10,2012 -20121223_BUF@MIA,4,5,51,BUF,MIA,1,10,85,(5:51) (Shotgun) R.Fitzpatrick sacked at BUF 8 for -7 yards (O.Vernon).,10,24,2012 -20121223_BUF@MIA,4,5,33,BUF,MIA,2,17,92,(5:33) (No Huddle Shotgun) R.Fitzpatrick scrambles left end to BUF 17 for 9 yards (K.Burnett).,10,24,2012 -20121223_BUF@MIA,4,4,46,BUF,MIA,3,8,83,(4:46) (Shotgun) R.Fitzpatrick pass short left to C.Spiller ran ob at BUF 31 for 14 yards.,10,24,2012 -20121223_BUF@MIA,4,4,36,BUF,MIA,1,10,69,(4:36) (No Huddle Shotgun) R.Fitzpatrick pass short right to B.Smith to BUF 40 for 9 yards (C.Clemons).,10,24,2012 -20121223_BUF@MIA,4,4,10,BUF,MIA,2,1,60,(4:10) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short left to D.Dickerson (C.Clemons). PENALTY on MIA-J.Odrick Roughing the Passer 15 yards enforced at BUF 40 - No Play.,10,24,2012 -20121223_BUF@MIA,4,4,4,BUF,MIA,1,10,45,(4:04) (Shotgun) C.Spiller right tackle to MIA 45 for no gain (K.Dansby). PENALTY on BUF-C.Glenn Face Mask (15 Yards) 15 yards enforced at MIA 45.,10,24,2012 -20121223_BUF@MIA,4,3,59,BUF,MIA,1,25,60,(3:59) R.Fitzpatrick pass short right to St.Johnson to MIA 45 for 15 yards (D.Patterson).,10,24,2012 -20121223_BUF@MIA,4,3,31,BUF,MIA,2,10,45,(3:31) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,10,24,2012 -20121223_BUF@MIA,4,3,24,BUF,MIA,3,10,45,(3:24) R.Fitzpatrick pass incomplete deep right to C.Spiller. PENALTY on MIA-J.Odrick Defensive Offside 5 yards enforced at MIA 45 - No Play.,10,24,2012 -20121223_BUF@MIA,4,3,20,BUF,MIA,3,5,40,(3:20) R.Fitzpatrick pass short left to St.Johnson to MIA 30 for 10 yards (B.McCann).,10,24,2012 -20121223_BUF@MIA,4,2,57,BUF,MIA,1,10,30,(2:57) (No Huddle Shotgun) R.Fitzpatrick pass incomplete short right to T.Graham.,10,24,2012 -20121223_BUF@MIA,4,2,43,BUF,MIA,2,10,30,(2:43) (Shotgun) R.Fitzpatrick pass incomplete deep middle to D.Dickerson.,10,24,2012 -20121223_BUF@MIA,4,2,40,BUF,MIA,3,10,30,(2:40) (Shotgun) R.Fitzpatrick pass short middle to T.Graham to MIA 25 for 5 yards (B.McCann).,10,24,2012 -20121223_BUF@MIA,4,2,13,BUF,MIA,4,5,25,(2:13) R.Fitzpatrick up the middle to MIA 20 for 5 yards (K.Dansby).,10,24,2012 -20121223_BUF@MIA,4,2,0,BUF,MIA,1,10,20,(2:00) (Shotgun) C.Spiller up the middle to MIA 17 for 3 yards (T.McDaniel).,10,24,2012 -20121223_BUF@MIA,4,1,30,BUF,MIA,2,7,17,(1:30) (No Huddle Shotgun) R.Fitzpatrick pass short middle to R.Martin to MIA 1 for 16 yards (K.Dansby).,10,24,2012 -20121223_BUF@MIA,4,1,20,BUF,MIA,1,1,1,(1:20) R.Fitzpatrick pass short left intended for St.Johnson INTERCEPTED by R.Jones at MIA 4. R.Jones to MIA 12 for 8 yards (A.Levitre).,10,24,2012 -20121223_BUF@MIA,4,1,14,MIA,BUF,1,10,88,(1:14) R.Tannehill kneels to MIA 12 for no gain.,24,10,2012 -20121223_BUF@MIA,4,0,33,MIA,BUF,2,10,88,(:33) R.Tannehill kneels to MIA 11 for -1 yards.,24,10,2012 -20121223_BUF@MIA,4,0,33,MIA,BUF,,,88,                      ,24,10,2012 -20121223_WAS@PHI,1,0,0,WAS,PHI,,,88,K.Forbath kicks 63 yards from WAS 35 to PHI 2. B.Brown to PHI 24 for 22 yards (D.Johnson).,0,0,2012 -20121223_WAS@PHI,1,59,53,PHI,WAS,1,10,76,(14:53) L.McCoy left end pushed ob at PHI 31 for 7 yards (P.Riley).,0,0,2012 -20121223_WAS@PHI,1,59,26,PHI,WAS,2,3,69,(14:26) N.Foles pass short right to L.McCoy to PHI 37 for 6 yards (L.Fletcher).,0,0,2012 -20121223_WAS@PHI,1,58,51,PHI,WAS,1,10,63,(13:51) (Shotgun) N.Foles pass incomplete short left to L.McCoy (B.Cofield).,0,0,2012 -20121223_WAS@PHI,1,58,47,PHI,WAS,2,10,63,(13:47) (Shotgun) B.Brown left end ran ob at PHI 46 for 9 yards.,0,0,2012 -20121223_WAS@PHI,1,58,21,PHI,WAS,3,1,54,(13:21) B.Brown left end to PHI 46 for no gain (R.Jackson).,0,0,2012 -20121223_WAS@PHI,1,57,40,PHI,WAS,4,1,54,(12:40) N.Foles pass short left to B.Celek to WAS 39 for 15 yards (J.Pugh).,0,0,2012 -20121223_WAS@PHI,1,57,1,PHI,WAS,1,10,39,(12:01) L.McCoy left tackle to WAS 41 for -2 yards (R.Jackson).,0,0,2012 -20121223_WAS@PHI,1,56,24,PHI,WAS,2,12,41,(11:24) N.Foles pass incomplete short left to J.Maclin (R.Jackson).,0,0,2012 -20121223_WAS@PHI,1,56,19,PHI,WAS,3,12,41,(11:19) (Shotgun) N.Foles pass short right to J.Avant to WAS 30 for 11 yards (J.Wilson).,0,0,2012 -20121223_WAS@PHI,1,55,48,PHI,WAS,4,1,30,(10:48) N.Foles up the middle to WAS 27 for 3 yards (Mad.Williams).,0,0,2012 -20121223_WAS@PHI,1,55,15,PHI,WAS,1,10,27,(10:15) (No Huddle Shotgun) N.Foles pass deep right to J.Maclin for 27 yards TOUCHDOWN. Penalty on WAS-R.Kerrigan Defensive Offside declined.,0,0,2012 -20121223_WAS@PHI,1,55,15,PHI,WAS,,,27,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,0,2012 -20121223_WAS@PHI,1,55,15,PHI,WAS,,,27,A.Henery kicks 63 yards from PHI 35 to WAS 2. N.Paul MUFFS catch and recovers at WAS 2. N.Paul ran ob at WAS 46 for 44 yards (B.Boykin). PENALTY on WAS-C.Wilson Offensive Holding 9 yards enforced at WAS 18.,7,0,2012 -20121223_WAS@PHI,1,54,58,WAS,PHI,1,10,91,(9:58) A.Morris left end to WAS 14 for 5 yards (C.Anderson).,0,7,2012 -20121223_WAS@PHI,1,54,21,WAS,PHI,2,5,86,(9:21) (Shotgun) A.Morris up the middle to WAS 10 for -4 yards (D.Ryans).,0,7,2012 -20121223_WAS@PHI,1,53,44,WAS,PHI,3,9,90,(8:44) (Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 20 for 10 yards (D.Ryans).,0,7,2012 -20121223_WAS@PHI,1,53,5,WAS,PHI,1,10,80,(8:05) R.Griffin pass short left to P.Garcon to WAS 28 for 8 yards (N.Asomugha).,0,7,2012 -20121223_WAS@PHI,1,52,17,WAS,PHI,2,2,72,(7:17) S.Moss right end to WAS 40 for 12 yards (B.Graham).,0,7,2012 -20121223_WAS@PHI,1,51,38,WAS,PHI,1,10,60,(6:38) R.Griffin pass short middle to P.Garcon to PHI 43 for 17 yards (C.Anderson).,0,7,2012 -20121223_WAS@PHI,1,51,1,WAS,PHI,1,10,43,(6:01) (Shotgun) R.Griffin right end ran ob at PHI 38 for 5 yards.,0,7,2012 -20121223_WAS@PHI,1,50,34,WAS,PHI,2,5,38,(5:34) A.Morris left end to PHI 35 for 3 yards (M.Kendricks).,0,7,2012 -20121223_WAS@PHI,1,49,47,WAS,PHI,3,2,35,(4:47) (Shotgun) R.Griffin pass incomplete short left to N.Paul.,0,7,2012 -20121223_WAS@PHI,1,49,43,WAS,PHI,4,2,35,(4:43) R.Griffin pass incomplete short right to S.Moss (C.Anderson).,0,7,2012 -20121223_WAS@PHI,1,49,38,PHI,WAS,1,10,65,(4:38) (Shotgun) N.Foles pass short middle to J.Maclin to PHI 41 for 6 yards (L.Fletcher).,7,0,2012 -20121223_WAS@PHI,1,49,4,PHI,WAS,2,4,59,(4:04) L.McCoy right end to PHI 46 for 5 yards (R.Doughty).,7,0,2012 -20121223_WAS@PHI,1,48,26,PHI,WAS,1,10,54,(3:26) N.Foles pass incomplete short right to J.Maclin.,7,0,2012 -20121223_WAS@PHI,1,48,21,PHI,WAS,2,10,54,(3:21) (Shotgun) L.McCoy left end to WAS 46 for 8 yards (L.Fletcher).,7,0,2012 -20121223_WAS@PHI,1,47,37,PHI,WAS,3,2,46,(2:37) B.Brown right end to WAS 40 for 6 yards (D.Hall).,7,0,2012 -20121223_WAS@PHI,1,47,3,PHI,WAS,1,10,40,(2:03) (Shotgun) N.Foles pass deep right to B.Celek to WAS 23 for 17 yards (D.Gomes; L.Fletcher).,7,0,2012 -20121223_WAS@PHI,1,46,20,PHI,WAS,1,10,23,(1:20) (Shotgun) L.McCoy right end to WAS 20 for 3 yards (L.Fletcher).,7,0,2012 -20121223_WAS@PHI,1,45,40,PHI,WAS,2,7,20,(:40) N.Foles sacked at WAS 28 for -8 yards (P.Riley).,7,0,2012 -20121223_WAS@PHI,1,45,6,PHI,WAS,3,15,28,(:06) (Shotgun) N.Foles sacked at WAS 34 for -6 yards (R.Kerrigan). FUMBLES (R.Kerrigan) RECOVERED by WAS-R.Crawford at WAS 31. R.Crawford to WAS 41 for 10 yards (D.Kelly).,7,0,2012 -20121223_WAS@PHI,2,45,0,WAS,PHI,1,10,59,(15:00) R.Griffin pass short left to A.Morris to PHI 42 for 17 yards (M.Kendricks).,0,7,2012 -20121223_WAS@PHI,2,44,35,WAS,PHI,1,10,42,(14:35) R.Griffin pass short right to P.Garcon to PHI 41 for 1 yard (M.Kendricks).,0,7,2012 -20121223_WAS@PHI,2,43,57,WAS,PHI,2,9,41,(13:57) J.Morgan left end to PHI 34 for 7 yards (K.Coleman; D.Ryans).,0,7,2012 -20121223_WAS@PHI,2,43,6,WAS,PHI,3,2,34,(13:06) E.Royster right end to PHI 27 for 7 yards (C.Anderson).,0,7,2012 -20121223_WAS@PHI,2,42,21,WAS,PHI,1,10,27,(12:21) A.Morris left end to PHI 27 for no gain (C.Thornton).,0,7,2012 -20121223_WAS@PHI,2,41,43,WAS,PHI,2,10,27,(11:43) R.Griffin pass incomplete short right to P.Garcon.,0,7,2012 -20121223_WAS@PHI,2,41,35,WAS,PHI,3,10,27,(11:35) (Shotgun) R.Griffin pass incomplete short middle to P.Garcon (B.Graham).,0,7,2012 -20121223_WAS@PHI,2,41,30,WAS,PHI,4,10,27,(11:30) K.Forbath 45 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,0,7,2012 -20121223_WAS@PHI,2,41,30,WAS,PHI,,,27,K.Forbath kicks 58 yards from WAS 35 to PHI 7. B.Brown to PHI 26 for 19 yards (L.Alexander). PENALTY on PHI-C.Matthews Offensive Holding 10 yards enforced at PHI 26.,3,7,2012 -20121223_WAS@PHI,2,41,17,PHI,WAS,1,10,84,(11:17) L.McCoy right end to PHI 15 for -1 yards (R.Kerrigan).,7,3,2012 -20121223_WAS@PHI,2,40,41,PHI,WAS,2,11,85,(10:41) (Shotgun) N.Foles pass incomplete deep right to J.Maclin.,7,3,2012 -20121223_WAS@PHI,2,40,33,PHI,WAS,3,11,85,(10:33) (Shotgun) N.Foles scrambles up the middle to PHI 16 for 1 yard (P.Riley).,7,3,2012 -20121223_WAS@PHI,2,39,50,PHI,WAS,4,10,84,(9:50) M.McBriar punts 37 yards to WAS 47 Center-J.Dorenbos out of bounds.,7,3,2012 -20121223_WAS@PHI,2,39,39,WAS,PHI,1,10,53,(9:39) R.Griffin pass deep left to P.Garcon pushed ob at PHI 26 for 27 yards (N.Asomugha).,3,7,2012 -20121223_WAS@PHI,2,39,7,WAS,PHI,1,10,26,(9:07) (Shotgun) A.Morris up the middle to PHI 25 for 1 yard (T.Cole).,3,7,2012 -20121223_WAS@PHI,2,38,33,WAS,PHI,2,9,25,(8:33) (Shotgun) A.Morris up the middle to PHI 24 for 1 yard (B.Graham).,3,7,2012 -20121223_WAS@PHI,2,37,51,WAS,PHI,3,8,24,(7:51) (Shotgun) R.Griffin pass incomplete short right to J.Morgan [F.Cox].,3,7,2012 -20121223_WAS@PHI,2,37,42,WAS,PHI,4,8,24,(7:42) K.Forbath 42 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,3,7,2012 -20121223_WAS@PHI,2,37,42,WAS,PHI,,,24,K.Forbath kicks 62 yards from WAS 35 to PHI 3. B.Brown to PHI 22 for 19 yards (B.Kehl).,6,7,2012 -20121223_WAS@PHI,2,37,31,PHI,WAS,1,10,78,(7:31) (Shotgun) N.Foles sacked at PHI 19 for -3 yards (R.Kerrigan).,7,6,2012 -20121223_WAS@PHI,2,37,6,PHI,WAS,2,13,81,(7:06) L.McCoy left end to PHI 20 for 1 yard (P.Riley).,7,6,2012 -20121223_WAS@PHI,2,36,26,PHI,WAS,3,12,80,(6:26) (Shotgun) N.Foles pass short right intended for J.Avant INTERCEPTED by L.Fletcher (B.Cofield) at PHI 34. L.Fletcher to PHI 25 for 9 yards (A.Jordan).,7,6,2012 -20121223_WAS@PHI,2,36,15,WAS,PHI,1,10,25,(6:15) (Shotgun) R.Griffin pass short right to P.Garcon to PHI 23 for 2 yards (B.Graham).,6,7,2012 -20121223_WAS@PHI,2,35,43,WAS,PHI,2,8,23,(5:43) (Shotgun) A.Morris right end to PHI 17 for 6 yards (K.Coleman; F.Cox).,6,7,2012 -20121223_WAS@PHI,2,34,58,WAS,PHI,3,2,17,(4:58) (Shotgun) A.Morris right guard to PHI 13 for 4 yards (C.Jenkins).,6,7,2012 -20121223_WAS@PHI,2,34,19,WAS,PHI,1,10,13,(4:19) A.Morris left end to PHI 11 for 2 yards (K.Coleman; M.Kendricks).,6,7,2012 -20121223_WAS@PHI,2,33,36,WAS,PHI,2,8,11,(3:36) R.Griffin pass short right to J.Morgan for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,6,7,2012 -20121223_WAS@PHI,2,33,36,WAS,PHI,,,11,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,6,7,2012 -20121223_WAS@PHI,2,33,36,WAS,PHI,,,11,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,13,7,2012 -20121223_WAS@PHI,2,33,30,PHI,WAS,1,10,80,(3:30) N.Foles pass incomplete short right to J.Maclin (J.Wilson).,7,13,2012 -20121223_WAS@PHI,2,33,25,PHI,WAS,2,10,80,(3:25) (Shotgun) N.Foles pass short left to J.Avant to PHI 36 for 16 yards (R.Crawford).,7,13,2012 -20121223_WAS@PHI,2,32,55,PHI,WAS,1,10,64,(2:55) N.Foles pass short right to L.McCoy to WAS 49 for 15 yards (P.Riley).,7,13,2012 -20121223_WAS@PHI,2,32,17,PHI,WAS,1,10,49,(2:17) (Shotgun) N.Foles pass short right to D.Johnson pushed ob at WAS 37 for 12 yards (L.Fletcher).,7,13,2012 -20121223_WAS@PHI,2,32,0,PHI,WAS,1,10,37,(2:00) (Shotgun) N.Foles pass short right to J.Maclin to WAS 25 for 12 yards (P.Riley).,7,13,2012 -20121223_WAS@PHI,2,31,27,PHI,WAS,1,10,25,(1:27) (Shotgun) N.Foles pass short left to J.Avant pushed ob at WAS 19 for 6 yards (D.Hall).,7,13,2012 -20121223_WAS@PHI,2,31,22,PHI,WAS,2,4,19,(1:22) PENALTY on PHI-E.Moore False Start 5 yards enforced at WAS 19 - No Play.,7,13,2012 -20121223_WAS@PHI,2,31,22,PHI,WAS,2,9,24,(1:22) (Shotgun) N.Foles pass short right to J.Maclin to WAS 20 for 4 yards (B.Cofield).,7,13,2012 -20121223_WAS@PHI,2,31,16,PHI,WAS,3,5,20,(1:16) (Shotgun) N.Foles pass short left to J.Avant to WAS 12 for 8 yards (L.Alexander; J.Wilson).,7,13,2012 -20121223_WAS@PHI,2,31,10,PHI,WAS,1,10,12,(1:10) (Shotgun) N.Foles scrambles up the middle to WAS 9 for 3 yards (P.Riley). PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at WAS 12 - No Play.,7,13,2012 -20121223_WAS@PHI,2,31,2,PHI,WAS,1,20,22,(1:02) (Shotgun) N.Foles pass short right to L.McCoy to WAS 20 for 2 yards (Mad.Williams) [B.Cofield].,7,13,2012 -20121223_WAS@PHI,2,30,32,PHI,WAS,2,18,20,(:32) (Shotgun) N.Foles pass incomplete short left to L.McCoy.,7,13,2012 -20121223_WAS@PHI,2,30,28,PHI,WAS,3,18,20,(:28) N.Foles pass incomplete deep right to E.Moore.,7,13,2012 -20121223_WAS@PHI,2,30,21,PHI,WAS,4,18,20,(:21) A.Henery 38 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,7,13,2012 -20121223_WAS@PHI,2,30,21,PHI,WAS,,,20,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,10,13,2012 -20121223_WAS@PHI,2,30,14,WAS,PHI,1,10,80,(:14) R.Griffin kneels to WAS 19 for -1 yards.,13,10,2012 -20121223_WAS@PHI,3,30,0,PHI,WAS,,,80,A.Henery kicks 56 yards from PHI 35 to WAS 9. N.Paul to WAS 28 for 19 yards (E.Igwenagu). WAS-D.Gomes was injured during the play. His return is Questionable.,10,13,2012 -20121223_WAS@PHI,3,29,54,WAS,PHI,1,10,72,(14:54) (Shotgun) R.Griffin pass deep right to P.Garcon ran ob at PHI 43 for 29 yards.,13,10,2012 -20121223_WAS@PHI,3,29,28,WAS,PHI,1,10,43,(14:28) (Shotgun) A.Morris left end to PHI 34 for 9 yards (M.Kendricks).,13,10,2012 -20121223_WAS@PHI,3,28,48,WAS,PHI,2,1,34,(13:48) A.Morris up the middle to PHI 31 for 3 yards (F.Cox; T.Cole).,13,10,2012 -20121223_WAS@PHI,3,28,9,WAS,PHI,1,10,31,(13:09) R.Griffin pass short right to N.Paul pushed ob at PHI 10 for 21 yards (C.Anderson).,13,10,2012 -20121223_WAS@PHI,3,27,37,WAS,PHI,1,10,10,(12:37) (Shotgun) A.Morris right end for 10 yards TOUCHDOWN.,13,10,2012 -20121223_WAS@PHI,3,27,37,WAS,PHI,,,10,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,13,10,2012 -20121223_WAS@PHI,3,27,37,WAS,PHI,,,10,K.Forbath kicks 65 yards from WAS 35 to end zone Touchback.,20,10,2012 -20121223_WAS@PHI,3,27,33,PHI,WAS,1,10,80,(12:33) N.Foles pass deep right to J.Maclin to WAS 42 for 38 yards (D.Hall).,10,20,2012 -20121223_WAS@PHI,3,26,47,PHI,WAS,1,10,42,(11:47) N.Foles pass short right to R.Cooper to WAS 24 for 18 yards (Mad.Williams).,10,20,2012 -20121223_WAS@PHI,3,26,7,PHI,WAS,1,10,24,(11:07) (Shotgun) N.Foles pass short left to J.Maclin to WAS 19 for 5 yards (L.Fletcher).,10,20,2012 -20121223_WAS@PHI,3,25,28,PHI,WAS,2,5,19,(10:28) L.McCoy right end pushed ob at WAS 13 for 6 yards (L.Fletcher).,10,20,2012 -20121223_WAS@PHI,3,25,2,PHI,WAS,1,10,13,(10:02) N.Foles scrambles up the middle to WAS 12 for 1 yard (R.Kerrigan).,10,20,2012 -20121223_WAS@PHI,3,24,19,PHI,WAS,2,9,12,(9:19) N.Foles sacked at WAS 19 for -7 yards (Mad.Williams).,10,20,2012 -20121223_WAS@PHI,3,23,43,PHI,WAS,3,16,19,(8:43) (Shotgun) N.Foles pass short right to B.Celek to WAS 12 for 7 yards (L.Alexander).,10,20,2012 -20121223_WAS@PHI,3,23,6,PHI,WAS,4,9,12,(8:06) A.Henery 30 yard field goal is GOOD Center-J.Dorenbos Holder-M.McBriar.,10,20,2012 -20121223_WAS@PHI,3,23,6,PHI,WAS,,,12,A.Henery kicks 65 yards from PHI 35 to end zone Touchback.,13,20,2012 -20121223_WAS@PHI,3,23,1,WAS,PHI,1,10,80,(8:01) R.Griffin sacked at WAS 9 for -11 yards (B.Boykin). FUMBLES (B.Boykin) recovered by WAS-S.Moss at WAS 7. S.Moss to WAS 3 for -4 yards (C.Anderson). Washington challenged the backward pass ruling and the play was Upheld. (Timeout #2.),20,13,2012 -20121223_WAS@PHI,3,22,19,WAS,PHI,2,27,97,(7:19) A.Morris right end to WAS 8 for 5 yards (T.Cole).,20,13,2012 -20121223_WAS@PHI,3,21,42,WAS,PHI,3,22,92,(6:42) R.Griffin pass short right to S.Moss to WAS 12 for 4 yards (D.Rodgers-Cromartie).,20,13,2012 -20121223_WAS@PHI,3,21,13,WAS,PHI,4,18,88,(6:13) S.Rocca punts 53 yards to PHI 35 Center-N.Sundberg. D.Johnson to PHI 45 for 10 yards (B.Kehl).,20,13,2012 -20121223_WAS@PHI,3,21,2,PHI,WAS,1,10,55,(6:02) (Shotgun) L.McCoy up the middle to PHI 42 for -3 yards (J.Jenkins).,13,20,2012 -20121223_WAS@PHI,3,20,27,PHI,WAS,2,13,58,(5:27) (Shotgun) N.Foles pass incomplete short middle to J.Avant.,13,20,2012 -20121223_WAS@PHI,3,20,20,PHI,WAS,3,13,58,(5:20) (Shotgun) N.Foles pass short middle to J.Avant to WAS 47 for 11 yards (L.Fletcher).,13,20,2012 -20121223_WAS@PHI,3,19,38,PHI,WAS,4,2,47,(4:38) N.Foles sacked at 50 for -3 yards (L.Alexander).,13,20,2012 -20121223_WAS@PHI,3,19,32,WAS,PHI,1,10,50,(4:32) (Shotgun) A.Morris left end to PHI 45 for 5 yards (M.Kendricks).,20,13,2012 -20121223_WAS@PHI,3,18,51,WAS,PHI,2,5,45,(3:51) (Shotgun) A.Morris right end to PHI 35 for 10 yards (K.Coleman).,20,13,2012 -20121223_WAS@PHI,3,18,11,WAS,PHI,1,10,35,(3:11) (Shotgun) A.Morris left end to PHI 29 for 6 yards (J.Chaney).,20,13,2012 -20121223_WAS@PHI,3,17,29,WAS,PHI,2,4,29,(2:29) E.Royster up the middle to PHI 22 for 7 yards (M.Kendricks; D.Ryans).,20,13,2012 -20121223_WAS@PHI,3,16,49,WAS,PHI,1,10,22,(1:49) R.Griffin pass incomplete short left to J.Morgan (T.Cole).,20,13,2012 -20121223_WAS@PHI,3,16,41,WAS,PHI,2,10,22,(1:41) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson.,20,13,2012 -20121223_WAS@PHI,3,16,37,WAS,PHI,3,10,22,(1:37) (Shotgun) R.Griffin pass deep left to S.Moss for 22 yards TOUCHDOWN.,20,13,2012 -20121223_WAS@PHI,3,16,37,WAS,PHI,,,22,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,20,13,2012 -20121223_WAS@PHI,3,16,37,WAS,PHI,,,22,K.Forbath kicks 58 yards from WAS 35 to PHI 7. B.Brown to PHI 21 for 14 yards (B.Kehl).,27,13,2012 -20121223_WAS@PHI,3,16,23,PHI,WAS,1,10,79,(1:23) L.McCoy left end to PHI 27 for 6 yards (R.Doughty).,13,27,2012 -20121223_WAS@PHI,3,15,48,PHI,WAS,2,4,73,(:48) L.McCoy left end to PHI 32 for 5 yards (J.Wilson).,13,27,2012 -20121223_WAS@PHI,3,15,5,PHI,WAS,1,10,68,(:05) N.Foles pass short right to L.McCoy to PHI 35 for 3 yards (P.Riley).,13,27,2012 -20121223_WAS@PHI,4,15,0,PHI,WAS,2,7,65,(15:00) (Shotgun) N.Foles pass incomplete deep right to R.Cooper.,13,27,2012 -20121223_WAS@PHI,4,14,52,PHI,WAS,3,7,65,(14:52) (Shotgun) N.Foles pass incomplete short right to J.Avant (B.Cofield).,13,27,2012 -20121223_WAS@PHI,4,14,47,PHI,WAS,4,7,65,(14:47) M.McBriar punts 50 yards to WAS 15 Center-J.Dorenbos. R.Crawford to WAS 40 for 25 yards (R.Rau). PENALTY on WAS-J.Pugh Offensive Holding 10 yards enforced at WAS 35.,13,27,2012 -20121223_WAS@PHI,4,14,32,WAS,PHI,1,10,75,(14:32) (Shotgun) A.Morris up the middle to WAS 27 for 2 yards (B.Graham).,27,13,2012 -20121223_WAS@PHI,4,13,53,WAS,PHI,2,8,73,(13:53) (Shotgun) R.Griffin pass short right to L.Paulsen to WAS 33 for 6 yards (K.Coleman).,27,13,2012 -20121223_WAS@PHI,4,13,10,WAS,PHI,3,2,67,(13:10) (Shotgun) R.Griffin pass short right to C.Cooley to WAS 41 for 8 yards (K.Coleman).,27,13,2012 -20121223_WAS@PHI,4,12,28,WAS,PHI,1,10,59,(12:28) (Shotgun) A.Morris left end to WAS 42 for 1 yard (T.Cole).,27,13,2012 -20121223_WAS@PHI,4,11,45,WAS,PHI,2,9,58,(11:45) R.Griffin pass deep middle intended for J.Morgan INTERCEPTED by C.Anderson at PHI 35. C.Anderson to WAS 28 for 37 yards (P.Garcon). Penalty on PHI-C.Thornton Illegal Block Above the Waist offsetting enforced at PHI 39. Penalty on WAS Unnecessary Roughness offsetting.,27,13,2012 -20121223_WAS@PHI,4,11,27,PHI,WAS,1,10,61,(11:27) N.Foles pass incomplete short right to J.Avant.,13,27,2012 -20121223_WAS@PHI,4,11,21,PHI,WAS,2,10,61,(11:21) B.Brown up the middle to PHI 42 for 3 yards (R.Kerrigan).,13,27,2012 -20121223_WAS@PHI,4,10,39,PHI,WAS,3,7,58,(10:39) (Shotgun) N.Foles pass short right to D.Johnson to WAS 48 for 10 yards (J.Wilson).,13,27,2012 -20121223_WAS@PHI,4,10,2,PHI,WAS,1,10,48,(10:02) (Shotgun) N.Foles pass short right to J.Avant to WAS 38 for 10 yards (L.Fletcher; R.Crawford).,13,27,2012 -20121223_WAS@PHI,4,9,30,PHI,WAS,1,10,38,(9:30) (Shotgun) N.Foles pass short middle to L.McCoy to WAS 17 for 21 yards (L.Alexander).,13,27,2012 -20121223_WAS@PHI,4,9,1,PHI,WAS,1,10,17,(9:01) (Shotgun) D.Lewis up the middle for 17 yards TOUCHDOWN.,13,27,2012 -20121223_WAS@PHI,4,9,1,PHI,WAS,,,17,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,13,27,2012 -20121223_WAS@PHI,4,9,1,PHI,WAS,,,17,A.Henery kicks 66 yards from PHI 35 to WAS -1. N.Paul to WAS 20 for 21 yards (D.Sims).,20,27,2012 -20121223_WAS@PHI,4,8,49,WAS,PHI,1,10,80,(8:49) A.Morris up the middle to WAS 34 for 14 yards (K.Coleman; T.Cole).,27,20,2012 -20121223_WAS@PHI,4,8,6,WAS,PHI,1,10,66,(8:06) (Shotgun) A.Morris up the middle to WAS 38 for 4 yards (B.Graham; D.Rodgers-Cromartie).,27,20,2012 -20121223_WAS@PHI,4,7,21,WAS,PHI,2,6,62,(7:21) (Shotgun) R.Griffin pass short left to J.Morgan to WAS 48 for 10 yards (B.Graham).,27,20,2012 -20121223_WAS@PHI,4,6,37,WAS,PHI,1,10,52,(6:37) A.Morris up the middle to 50 for 2 yards (C.Thornton).,27,20,2012 -20121223_WAS@PHI,4,5,56,WAS,PHI,2,8,50,(5:56) (Shotgun) A.Morris left end to PHI 48 for 2 yards (B.Graham).,27,20,2012 -20121223_WAS@PHI,4,5,11,WAS,PHI,3,6,48,(5:11) (Shotgun) R.Griffin pass short right to P.Garcon to PHI 43 for 5 yards (N.Asomugha).,27,20,2012 -20121223_WAS@PHI,4,4,23,WAS,PHI,4,1,43,(4:23) (Run formation) PENALTY on WAS-R.Griffin Delay of Game 5 yards enforced at PHI 43 - No Play.,27,20,2012 -20121223_WAS@PHI,4,4,20,WAS,PHI,4,6,48,(4:20) S.Rocca punts 33 yards to PHI 15 Center-N.Sundberg fair catch by D.Johnson.,27,20,2012 -20121223_WAS@PHI,4,4,15,PHI,WAS,1,10,85,(4:15) (Shotgun) N.Foles pass short right to D.Johnson to PHI 18 for 3 yards (P.Riley).,20,27,2012 -20121223_WAS@PHI,4,3,42,PHI,WAS,2,7,82,(3:42) (No Huddle Shotgun) N.Foles pass deep left to J.Maclin to PHI 36 for 18 yards (J.Pugh).,20,27,2012 -20121223_WAS@PHI,4,3,7,PHI,WAS,1,10,64,(3:07) (No Huddle Shotgun) N.Foles pass short left to J.Avant to PHI 41 for 5 yards (L.Fletcher).,20,27,2012 -20121223_WAS@PHI,4,2,44,PHI,WAS,2,5,59,(2:44) (No Huddle Shotgun) L.McCoy right end to PHI 45 for 4 yards (R.Crawford).,20,27,2012 -20121223_WAS@PHI,4,2,14,PHI,WAS,3,1,55,(2:14) (Shotgun) L.McCoy right end to WAS 49 for 6 yards (Mad.Williams).,20,27,2012 -20121223_WAS@PHI,4,2,0,PHI,WAS,1,10,49,(2:00) (Shotgun) N.Foles pass short middle to J.Maclin to WAS 43 for 6 yards (L.Alexander).,20,27,2012 -20121223_WAS@PHI,4,1,36,PHI,WAS,2,4,43,(1:36) (No Huddle Shotgun) N.Foles pass short left to L.McCoy to WAS 36 for 7 yards (L.Fletcher).,20,27,2012 -20121223_WAS@PHI,4,1,13,PHI,WAS,1,10,36,(1:13) (No Huddle Shotgun) N.Foles pass short left to L.McCoy to WAS 33 for 3 yards (L.Alexander).,20,27,2012 -20121223_WAS@PHI,4,1,6,PHI,WAS,2,7,33,(1:06) (Shotgun) N.Foles pass short right to J.Avant to WAS 30 for 3 yards (D.Hall).,20,27,2012 -20121223_WAS@PHI,4,0,43,PHI,WAS,3,4,30,(:43) (No Huddle Shotgun) N.Foles scrambles right end to WAS 25 for 5 yards (D.Hall).,20,27,2012 -20121223_WAS@PHI,4,0,37,PHI,WAS,1,10,25,(:37) (Shotgun) N.Foles pass short right to L.McCoy to WAS 17 for 8 yards (R.Crawford).,20,27,2012 -20121223_WAS@PHI,4,0,28,PHI,WAS,2,2,17,(:28) (Shotgun) N.Foles pass incomplete deep middle to J.Maclin.,20,27,2012 -20121223_WAS@PHI,4,0,23,PHI,WAS,3,2,17,(:23) (Shotgun) N.Foles pass incomplete deep right to J.Maclin.,20,27,2012 -20121223_WAS@PHI,4,0,18,PHI,WAS,4,2,17,(:18) (Shotgun) N.Foles pass short right to L.McCoy pushed ob at WAS 5 for 12 yards (J.Pugh).,20,27,2012 -20121223_WAS@PHI,4,0,11,PHI,WAS,1,5,5,(:11) N.Foles pass incomplete short right to E.Moore.,20,27,2012 -20121223_WAS@PHI,4,0,8,PHI,WAS,2,5,5,(:08) (Shotgun) N.Foles pass incomplete short left. PENALTY on PHI-N.Foles Illegal Forward Pass 5 yards enforced at WAS 5.,20,27,2012 -20121223_WAS@PHI,4,0,8,PHI,WAS,,,5,                      ,20,27,2012 -20121223_CIN@PIT,1,0,0,CIN,PIT,,,5,J.Brown kicks 65 yards from CIN 35 to PIT 0. C.Rainey ran ob at PIT 34 for 34 yards (R.Nelson).,0,0,2012 -20121223_CIN@PIT,1,59,50,PIT,CIN,1,10,66,(14:50) J.Dwyer right tackle ran ob at PIT 47 for 13 yards (R.Nelson).,0,0,2012 -20121223_CIN@PIT,1,59,22,PIT,CIN,1,10,53,(14:22) J.Dwyer left guard to PIT 47 for no gain (M.Johnson).,0,0,2012 -20121223_CIN@PIT,1,58,43,PIT,CIN,2,10,53,(13:43) (Shotgun) J.Dwyer right guard to PIT 50 for 3 yards (M.Johnson).,0,0,2012 -20121223_CIN@PIT,1,58,2,PIT,CIN,3,7,50,(13:02) B.Roethlisberger sacked at PIT 43 for -7 yards (G.Atkins).,0,0,2012 -20121223_CIN@PIT,1,57,39,PIT,CIN,4,14,57,(12:39) (Punt formation) D.Butler punts 45 yards to CIN 12 Center-G.Warren fair catch by B.Tate.,0,0,2012 -20121223_CIN@PIT,1,57,30,CIN,PIT,1,10,88,(12:30) (Shotgun) A.Dalton pass short right to A.Green to CIN 27 for 15 yards (C.Allen).,0,0,2012 -20121223_CIN@PIT,1,56,58,CIN,PIT,1,10,73,(11:58) B.Green-Ellis right tackle to CIN 30 for 3 yards (C.Hampton B.Keisel).,0,0,2012 -20121223_CIN@PIT,1,56,20,CIN,PIT,2,7,70,(11:20) A.Dalton sacked at CIN 23 for -7 yards (L.Timmons).,0,0,2012 -20121223_CIN@PIT,1,55,44,CIN,PIT,3,14,77,(10:44) (Shotgun) A.Dalton sacked at CIN 22 for -1 yards (B.Keisel). PENALTY on PIT-B.Keisel Unsportsmanlike Conduct 15 yards enforced at CIN 22.,0,0,2012 -20121223_CIN@PIT,1,55,38,CIN,PIT,1,10,63,(10:38) B.Green-Ellis up the middle to CIN 37 for no gain (T.Polamalu).,0,0,2012 -20121223_CIN@PIT,1,54,58,CIN,PIT,2,10,63,(9:58) (Shotgun) A.Dalton pass short left to A.Green to CIN 34 for -3 yards. A.Green pass to A.Green pushed ob at CIN 42 for 8 yards (C.Allen).,0,0,2012 -20121223_CIN@PIT,1,55,38,CIN,PIT,2,10,63,(10:38) A.Dalton pass short left to A.Green pushed ob at CIN 42 for 5 yards (C.Allen).,0,0,2012 -20121223_CIN@PIT,1,54,58,CIN,PIT,3,5,58,(9:58) (Shotgun) A.Dalton pass short right to R.Whalen to CIN 48 for 6 yards (C.Brown).,0,0,2012 -20121223_CIN@PIT,1,53,44,CIN,PIT,1,10,52,(8:44) (Shotgun) A.Dalton pass incomplete deep right to A.Green. Coverage by #28 C. Allen #43 Polamalu.,0,0,2012 -20121223_CIN@PIT,1,53,37,CIN,PIT,2,10,52,(8:37) B.Green-Ellis up the middle to CIN 48 for no gain (L.Foote).,0,0,2012 -20121223_CIN@PIT,1,52,57,CIN,PIT,3,10,52,(7:57) (Shotgun) A.Dalton pass incomplete deep middle to J.Gresham. Coverage by #94 Timmons.,0,0,2012 -20121223_CIN@PIT,1,52,52,CIN,PIT,4,10,52,(7:52) (Punt formation) K.Huber punts 52 yards to end zone Center-C.Harris Touchback.,0,0,2012 -20121223_CIN@PIT,1,52,43,PIT,CIN,1,10,80,(7:43) J.Dwyer up the middle to PIT 23 for 3 yards (C.Dunlap D.Peko).,0,0,2012 -20121223_CIN@PIT,1,52,9,PIT,CIN,2,7,77,(7:09) (No Huddle Shotgun) J.Dwyer right guard to PIT 26 for 3 yards (P.Sims).,0,0,2012 -20121223_CIN@PIT,1,51,26,PIT,CIN,3,4,74,(6:26) (No Huddle) B.Roethlisberger pass incomplete deep left to M.Wallace. Coverage by #23 Newman.,0,0,2012 -20121223_CIN@PIT,1,51,17,PIT,CIN,4,4,74,(6:17) (Punt formation) D.Butler punts 49 yards to CIN 25 Center-G.Warren. A.Jones to PIT 13 for 62 yards (C.Rainey). PENALTY on CIN-J.Allen Offensive Holding 10 yards enforced at CIN 25.,0,0,2012 -20121223_CIN@PIT,1,50,59,CIN,PIT,1,10,85,(5:59) A.Dalton pass short right to M.Jones pushed ob at CIN 26 for 11 yards (K.Lewis).,0,0,2012 -20121223_CIN@PIT,1,50,32,CIN,PIT,1,10,74,(5:32) B.Green-Ellis right guard to CIN 27 for 1 yard (L.Timmons).,0,0,2012 -20121223_CIN@PIT,1,49,48,CIN,PIT,2,9,73,(4:48) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 29 for 2 yards (T.Polamalu).,0,0,2012 -20121223_CIN@PIT,1,49,15,CIN,PIT,3,7,71,(4:15) (Shotgun) A.Dalton pass incomplete short left to M.Jones (K.Lewis).,0,0,2012 -20121223_CIN@PIT,1,48,58,CIN,PIT,4,7,71,(3:58) (Punt formation) K.Huber punts 64 yards to PIT 7 Center-C.Harris downed by CIN-J.Miles.,0,0,2012 -20121223_CIN@PIT,1,48,45,PIT,CIN,1,10,93,(3:45) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 11 for 4 yards (M.Lawson).,0,0,2012 -20121223_CIN@PIT,1,48,10,PIT,CIN,2,6,89,(3:10) (No Huddle Shotgun) I.Redman left guard to PIT 13 for 2 yards (G.Atkins).,0,0,2012 -20121223_CIN@PIT,1,47,23,PIT,CIN,3,4,87,(2:23) (Shotgun) B.Roethlisberger pass short middle intended for H.Miller INTERCEPTED by L.Hall at PIT 17. L.Hall for 17 yards TOUCHDOWN.,0,0,2012 -20121223_CIN@PIT,1,47,23,CIN,PIT,,,87,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,0,0,2012 -20121223_CIN@PIT,1,47,23,CIN,PIT,,,87,J.Brown kicks 65 yards from CIN 35 to end zone Touchback.,7,0,2012 -20121223_CIN@PIT,1,47,15,PIT,CIN,1,10,80,(2:15) J.Dwyer left guard to PIT 31 for 11 yards (C.Crocker).,0,7,2012 -20121223_CIN@PIT,1,46,39,PIT,CIN,1,10,69,(1:39) J.Dwyer right end to PIT 31 for no gain (T.Newman).,0,7,2012 -20121223_CIN@PIT,1,45,59,PIT,CIN,2,10,69,(:59) J.Dwyer left guard to PIT 43 for 12 yards (C.Crocker). PENALTY on PIT-H.Miller Offensive Holding 10 yards enforced at PIT 34.,0,7,2012 -20121223_CIN@PIT,1,45,31,PIT,CIN,2,17,76,(:31) B.Roethlisberger pass short middle to H.Miller to PIT 40 for 16 yards (R.Nelson).,0,7,2012 -20121223_CIN@PIT,2,45,0,PIT,CIN,3,1,60,(15:00) I.Redman right guard to PIT 41 for 1 yard (P.Sims; R.Geathers).,0,7,2012 -20121223_CIN@PIT,2,44,8,PIT,CIN,1,10,59,(14:08) (Shotgun) R.Mendenhall up the middle to PIT 45 for 4 yards (M.Johnson; V.Burfict).,0,7,2012 -20121223_CIN@PIT,2,43,26,PIT,CIN,2,6,55,(13:26) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace. Coverage by #24 Jones.,0,7,2012 -20121223_CIN@PIT,2,43,17,PIT,CIN,3,6,55,(13:17) (Shotgun) B.Roethlisberger pass incomplete short left to H.Miller (A.Jones).,0,7,2012 -20121223_CIN@PIT,2,43,12,PIT,CIN,4,6,55,(13:12) (Punt formation) D.Butler punts 36 yards to CIN 19 Center-G.Warren downed by PIT-J.Victorian. PENALTY on CIN-D.Skuta Running Into the Kicker 5 yards enforced at PIT 45 - No Play.,0,7,2012 -20121223_CIN@PIT,2,43,3,PIT,CIN,4,1,50,(13:03) I.Redman left guard to CIN 49 for 1 yard (V.Burfict R.Geathers).,0,7,2012 -20121223_CIN@PIT,2,42,17,PIT,CIN,1,10,49,(12:17) B.Roethlisberger pass short right to J.Cotchery to CIN 35 for 14 yards (T.Newman V.Burfict).,0,7,2012 -20121223_CIN@PIT,2,41,38,PIT,CIN,1,10,35,(11:38) R.Mendenhall right tackle to CIN 15 for 20 yards (T.Newman).,0,7,2012 -20121223_CIN@PIT,2,40,52,PIT,CIN,1,10,15,(10:52) R.Mendenhall up the middle to CIN 12 for 3 yards (G.Atkins M.Johnson).,0,7,2012 -20121223_CIN@PIT,2,40,10,PIT,CIN,2,7,12,(10:10) B.Roethlisberger pass short right to A.Brown to CIN 6 for 6 yards (T.Newman).,0,7,2012 -20121223_CIN@PIT,2,39,25,PIT,CIN,3,1,6,(9:25) (Shotgun) B.Roethlisberger pass incomplete short right to C.Rainey [V.Burfict]. Coverage by #58 maualuga.,0,7,2012 -20121223_CIN@PIT,2,39,18,PIT,CIN,4,1,6,(9:18) (Field Goal formation) S.Suisham 24 yard field goal is No Good Wide Left Center-G.Warren Holder-D.Butler.,0,7,2012 -20121223_CIN@PIT,2,39,14,CIN,PIT,1,10,80,(9:14) D.Roland reported in as eligible. B.Green-Ellis right tackle to CIN 22 for 2 yards (L.Woodley; L.Timmons).,7,0,2012 -20121223_CIN@PIT,2,38,38,CIN,PIT,2,8,78,(8:38) (Shotgun) A.Dalton pass short left to M.Jones to CIN 39 for 17 yards (T.Polamalu R.Clark).,7,0,2012 -20121223_CIN@PIT,2,37,52,CIN,PIT,1,10,61,(7:52) (Shotgun) A.Dalton pass short right to A.Green to CIN 48 for 9 yards (C.Allen).,7,0,2012 -20121223_CIN@PIT,2,37,13,CIN,PIT,2,1,52,(7:13) B.Green-Ellis up the middle to CIN 43 for -5 yards (C.Hampton).,7,0,2012 -20121223_CIN@PIT,2,36,31,CIN,PIT,3,6,57,(6:31) (Shotgun) A.Dalton pass short left to J.Gresham to CIN 44 for 1 yard (L.Timmons).,7,0,2012 -20121223_CIN@PIT,2,35,59,CIN,PIT,4,5,56,(5:59) (Punt formation) K.Huber punts 54 yards to PIT 2 Center-C.Harris out of bounds.,7,0,2012 -20121223_CIN@PIT,2,35,49,PIT,CIN,1,10,98,(5:49) R.Mendenhall up the middle to PIT 5 for 3 yards (C.Dunlap).,0,7,2012 -20121223_CIN@PIT,2,35,16,PIT,CIN,2,7,95,(5:16) R.Mendenhall up the middle to PIT 9 for 4 yards (W.Gilberry R.Maualuga).,0,7,2012 -20121223_CIN@PIT,2,34,37,PIT,CIN,3,3,91,(4:37) (Shotgun) PENALTY on PIT-M.Starks False Start 4 yards enforced at PIT 9 - No Play.,0,7,2012 -20121223_CIN@PIT,2,34,5,PIT,CIN,3,7,95,(4:05) (Shotgun) B.Roethlisberger pass incomplete short right to H.Miller. Coverage by #29 Hall.,0,7,2012 -20121223_CIN@PIT,2,34,0,PIT,CIN,4,7,95,(4:00) (Punt formation) D.Butler punts 37 yards to PIT 42 Center-G.Warren out of bounds.,0,7,2012 -20121223_CIN@PIT,2,33,52,CIN,PIT,1,10,42,(3:52) (Shotgun) A.Dalton pass incomplete deep right to A.Green (T.Polamalu).,7,0,2012 -20121223_CIN@PIT,2,33,46,CIN,PIT,2,10,42,(3:46) (Shotgun) PENALTY on CIN-K.Zeitler False Start 5 yards enforced at PIT 42 - No Play.,7,0,2012 -20121223_CIN@PIT,2,33,41,CIN,PIT,2,15,47,(3:41) (Shotgun) A.Dalton pass short middle to B.Tate to PIT 24 for 23 yards (T.Polamalu).,7,0,2012 -20121223_CIN@PIT,2,32,59,CIN,PIT,1,10,24,(2:59) B.Green-Ellis right guard to PIT 23 for 1 yard (L.Timmons B.Keisel).,7,0,2012 -20121223_CIN@PIT,2,32,13,CIN,PIT,2,9,23,(2:13) (Shotgun) A.Dalton pass incomplete deep left to A.Green. Coverage by #43 Polamalu. Pressure by #99 Keisel.,7,0,2012 -20121223_CIN@PIT,2,32,3,CIN,PIT,3,9,23,(2:03) (Shotgun) A.Dalton pass incomplete deep right to M.Jones (K.Lewis).,7,0,2012 -20121223_CIN@PIT,2,31,57,CIN,PIT,4,9,23,(1:57) (Field Goal formation) J.Brown 41 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,0,2012 -20121223_CIN@PIT,2,31,57,CIN,PIT,,,23,J.Brown kicks 71 yards from CIN 35 to PIT -6. C.Rainey to PIT 27 for 33 yards (D.Skuta E.Lamur).,10,0,2012 -20121223_CIN@PIT,2,31,48,PIT,CIN,1,10,73,(1:48) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 40 for 13 yards (A.Jones).,0,10,2012 -20121223_CIN@PIT,2,31,18,PIT,CIN,1,10,60,(1:18) (No Huddle Shotgun) B.Roethlisberger pass deep left to A.Brown for 60 yards TOUCHDOWN.,0,10,2012 -20121223_CIN@PIT,2,31,18,PIT,CIN,,,60,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,0,10,2012 -20121223_CIN@PIT,2,31,18,PIT,CIN,,,60,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,7,10,2012 -20121223_CIN@PIT,2,31,9,CIN,PIT,1,10,80,(1:09) B.Green-Ellis up the middle to CIN 24 for 4 yards (L.Woodley K.Lewis).,10,7,2012 -20121223_CIN@PIT,2,30,30,CIN,PIT,2,6,76,(:30) B.Green-Ellis right guard to CIN 23 for -1 yards (L.Foote C.Hampton).,10,7,2012 -20121223_CIN@PIT,2,30,28,CIN,PIT,3,7,77,(:28) D.Roland reported in as eligible. B.Green-Ellis up the middle to CIN 25 for 2 yards (C.Hampton; L.Foote).,10,7,2012 -20121223_CIN@PIT,2,30,23,CIN,PIT,4,5,75,(:23) (Punt formation) K.Huber punts 52 yards to PIT 23 Center-C.Harris. A.Brown to PIT 18 for -5 yards (J.Miles).,10,7,2012 -20121223_CIN@PIT,2,30,10,PIT,CIN,1,10,82,(:10) B.Roethlisberger kneels to PIT 17 for -1 yards.,7,10,2012 -20121223_CIN@PIT,3,30,0,PIT,CIN,,,82,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,7,10,2012 -20121223_CIN@PIT,3,29,56,CIN,PIT,1,10,80,(14:56) (Shotgun) A.Dalton pass deep right intended for A.Hawkins INTERCEPTED by C.Allen at CIN 38. C.Allen to CIN 32 for 6 yards (A.Hawkins).,10,7,2012 -20121223_CIN@PIT,3,29,51,PIT,CIN,1,10,32,(14:51) J.Dwyer left guard to CIN 28 for 4 yards (R.Maualuga).,7,10,2012 -20121223_CIN@PIT,3,29,19,PIT,CIN,2,6,28,(14:19) J.Dwyer left guard to CIN 29 for -1 yards (M.Johnson D.Peko).,7,10,2012 -20121223_CIN@PIT,3,28,37,PIT,CIN,3,7,29,(13:37) (Shotgun) B.Roethlisberger sacked at CIN 37 for -8 yards (sack split by C.Dunlap and G.Atkins).,7,10,2012 -20121223_CIN@PIT,3,28,24,PIT,CIN,4,15,37,(13:24) (Punt formation) D.Butler punts 37 yards to end zone Center-G.Warren Touchback.,7,10,2012 -20121223_CIN@PIT,3,28,16,CIN,PIT,1,10,80,(13:16) A.Dalton pass short right to A.Green to CIN 28 for 8 yards (C.Allen).,10,7,2012 -20121223_CIN@PIT,3,27,41,CIN,PIT,2,2,72,(12:41) A.Dalton pass short left to A.Green to CIN 30 for 2 yards (C.Allen). Pittsburgh challenged the first down ruling and the play was REVERSED. A.Dalton pass short left to A.Green to CIN 29 for 1 yard (C.Allen). Official measurement.,10,7,2012 -20121223_CIN@PIT,3,27,30,CIN,PIT,3,1,71,(12:30) PENALTY on PIT-C.Hampton Defensive Offside 6 yards enforced at CIN 29 - No Play.,10,7,2012 -20121223_CIN@PIT,3,27,13,CIN,PIT,1,10,65,(12:13) (Shotgun) A.Dalton pass deep left to M.Jones to PIT 42 for 23 yards (T.Polamalu).,10,7,2012 -20121223_CIN@PIT,3,26,27,CIN,PIT,1,10,42,(11:27) A.Dalton sacked at PIT 46 for -4 yards (L.Timmons).,10,7,2012 -20121223_CIN@PIT,3,25,52,CIN,PIT,2,14,46,(10:52) (Shotgun) A.Dalton pass incomplete deep left to A.Green (C.Brown).,10,7,2012 -20121223_CIN@PIT,3,25,45,CIN,PIT,3,14,46,(10:45) (Shotgun) A.Dalton pass deep middle to J.Gresham to PIT 21 for 25 yards (L.Timmons).,10,7,2012 -20121223_CIN@PIT,3,25,8,CIN,PIT,1,10,21,(10:08) B.Green-Ellis left tackle to PIT 18 for 3 yards (L.Foote).,10,7,2012 -20121223_CIN@PIT,3,24,26,CIN,PIT,2,7,18,(9:26) (Shotgun) A.Dalton pass incomplete short right [E.Hood]. PENALTY on CIN-A.Dalton Intentional Grounding 15 yards enforced at PIT 18. Pressure by #96 Hood.,10,7,2012 -20121223_CIN@PIT,3,24,20,CIN,PIT,3,22,33,(9:20) (Shotgun) A.Dalton pass incomplete short right to A.Hawkins. Penalty on CIN-A.Smith Illegal Touch Pass declined.,10,7,2012 -20121223_CIN@PIT,3,24,15,CIN,PIT,4,22,33,(9:15) (Shotgun) A.Dalton pass incomplete deep left to A.Green (J.Victorian).,10,7,2012 -20121223_CIN@PIT,3,24,8,PIT,CIN,1,10,67,(9:08) B.Roethlisberger pass short middle to H.Miller to CIN 45 for 22 yards (C.Crocker) [W.Gilberry].,7,10,2012 -20121223_CIN@PIT,3,23,24,PIT,CIN,1,10,45,(8:24) J.Dwyer left guard to CIN 42 for 3 yards (P.Sims V.Burfict).,7,10,2012 -20121223_CIN@PIT,3,22,44,PIT,CIN,2,7,42,(7:44) (Shotgun) B.Roethlisberger pass short left to M.Wallace to CIN 29 for 13 yards (A.Jones).,7,10,2012 -20121223_CIN@PIT,3,22,17,PIT,CIN,1,10,29,(7:17) M.Wallace left end pushed ob at CIN 30 for -1 yards (M.Lawson).,7,10,2012 -20121223_CIN@PIT,3,21,49,PIT,CIN,2,11,30,(6:49) (Shotgun) B.Roethlisberger pass short right to J.Cotchery to CIN 24 for 6 yards (T.Newman R.Maualuga).,7,10,2012 -20121223_CIN@PIT,3,21,4,PIT,CIN,3,5,24,(6:04) (Shotgun) B.Roethlisberger pass short right to E.Sanders to CIN 11 for 13 yards (N.Clements; T.Newman) [C.Dunlap].,7,10,2012 -20121223_CIN@PIT,3,20,21,PIT,CIN,1,10,11,(5:21) (Shotgun) J.Dwyer right guard to CIN 14 for -3 yards (D.Peko V.Burfict).,7,10,2012 -20121223_CIN@PIT,3,19,37,PIT,CIN,2,13,14,(4:37) B.Roethlisberger sacked at CIN 22 for -8 yards (M.Johnson).,7,10,2012 -20121223_CIN@PIT,3,19,9,PIT,CIN,3,21,22,(4:09) (Shotgun) B.Roethlisberger pass incomplete short left to C.Rainey. Coverage by #93 Johnson.,7,10,2012 -20121223_CIN@PIT,3,19,5,PIT,CIN,4,21,22,(4:05) (Field Goal formation) S.Suisham 40 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,7,10,2012 -20121223_CIN@PIT,3,19,5,PIT,CIN,,,22,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,10,10,2012 -20121223_CIN@PIT,3,19,1,CIN,PIT,1,10,80,(4:01) M.Jones left guard to CIN 20 for no gain (B.Keisel).,10,10,2012 -20121223_CIN@PIT,3,18,28,CIN,PIT,2,10,80,(3:28) (Shotgun) A.Dalton pass incomplete short right to A.Green.,10,10,2012 -20121223_CIN@PIT,3,18,24,CIN,PIT,3,10,80,(3:24) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins (C.Allen).,10,10,2012 -20121223_CIN@PIT,3,18,19,CIN,PIT,4,10,80,(3:19) (Punt formation) K.Huber punts 57 yards to PIT 23 Center-C.Harris. A.Brown to PIT 34 for 11 yards (J.Miles D.Skuta). PIT-A.Brown was injured during the play.,10,10,2012 -20121223_CIN@PIT,3,18,6,PIT,CIN,1,10,66,(3:06) (Shotgun) R.Mendenhall left guard to PIT 35 for 1 yard (M.Johnson; R.Geathers).,10,10,2012 -20121223_CIN@PIT,3,17,28,PIT,CIN,2,9,65,(2:28) (No Huddle Shotgun) B.Roethlisberger pass short right to H.Miller to PIT 42 for 7 yards (R.Maualuga).,10,10,2012 -20121223_CIN@PIT,3,16,55,PIT,CIN,3,2,58,(1:55) (No Huddle) R.Mendenhall up the middle to PIT 40 for -2 yards (P.Sims).,10,10,2012 -20121223_CIN@PIT,3,16,23,PIT,CIN,4,4,60,(1:23) (Punt formation) D.Butler punts 49 yards to CIN 11 Center-G.Warren. A.Jones to CIN 11 for no gain (C.Brown).,10,10,2012 -20121223_CIN@PIT,3,16,14,CIN,PIT,1,10,89,(1:14) (Shotgun) A.Dalton pass short right to M.Jones pushed ob at CIN 17 for 6 yards (K.Lewis).,10,10,2012 -20121223_CIN@PIT,3,15,47,CIN,PIT,2,4,83,(:47) A.Dalton sacked at CIN 11 for -6 yards (T.Polamalu).,10,10,2012 -20121223_CIN@PIT,3,15,14,CIN,PIT,3,10,89,(:14) (Shotgun) A.Dalton pass deep left to A.Hawkins to CIN 30 for 19 yards (L.Foote).,10,10,2012 -20121223_CIN@PIT,4,15,0,CIN,PIT,1,10,70,(15:00) (Shotgun) A.Dalton pass incomplete deep right to A.Green. PENALTY on PIT-C.Allen Defensive Pass Interference 28 yards enforced at CIN 30 - No Play.,10,10,2012 -20121223_CIN@PIT,4,14,54,CIN,PIT,1,10,42,(14:54) (Shotgun) A.Dalton pass short right to A.Green to PIT 30 for 12 yards (C.Allen). FUMBLES (C.Allen) RECOVERED by PIT-R.Clark at PIT 26. R.Clark to PIT 28 for 2 yards (A.Green). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,10,10,2012 -20121223_CIN@PIT,4,14,44,PIT,CIN,1,10,72,(14:44) R.Mendenhall up the middle to PIT 31 for 3 yards (R.Maualuga T.Newman).,10,10,2012 -20121223_CIN@PIT,4,13,59,PIT,CIN,2,7,69,(13:59) (Shotgun) B.Roethlisberger pass incomplete short middle to H.Miller. Coverage by #96 Dunlop Pressure by #97 Atkins.,10,10,2012 -20121223_CIN@PIT,4,13,59,PIT,CIN,3,7,69,(13:59) (Shotgun) B.Roethlisberger sacked at PIT 19 for -12 yards (G.Atkins W.Gilberry). FUMBLES (G.Atkins) recovered by PIT-D.DeCastro at PIT 19.,10,10,2012 -20121223_CIN@PIT,4,13,23,PIT,CIN,4,19,81,(13:23) (Punt formation) D.Butler punts 42 yards to CIN 39 Center-G.Warren. A.Jones to CIN 37 for -2 yards (G.Warren; B.Johnson).,10,10,2012 -20121223_CIN@PIT,4,13,23,CIN,PIT,1,10,63,(13:23) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 46 for 9 yards (L.Timmons).,10,10,2012 -20121223_CIN@PIT,4,12,48,CIN,PIT,2,1,54,(12:48) (No Huddle Shotgun) A.Dalton pass short right to M.Jones to PIT 46 for 8 yards (T.Polamalu; K.Lewis).,10,10,2012 -20121223_CIN@PIT,4,12,5,CIN,PIT,1,10,46,(12:05) (Shotgun) A.Dalton pass incomplete deep left to A.Hawkins. Coverage by #28 C. Allen.,10,10,2012 -20121223_CIN@PIT,4,11,59,CIN,PIT,2,10,46,(11:59) (Shotgun) A.Dalton sacked at CIN 47 for -7 yards (sack split by B.Keisel and S.McLendon).,10,10,2012 -20121223_CIN@PIT,4,11,21,CIN,PIT,3,17,53,(11:21) (Shotgun) A.Dalton pass deep left intended for R.Whalen INTERCEPTED by C.Allen (J.Victorian) at PIT 23. C.Allen ran ob at PIT 23 for no gain.,10,10,2012 -20121223_CIN@PIT,4,11,14,PIT,CIN,1,10,77,(11:14) J.Dwyer right tackle to PIT 25 for 2 yards (V.Burfict D.Peko).,10,10,2012 -20121223_CIN@PIT,4,10,33,PIT,CIN,2,8,75,(10:33) B.Roethlisberger pass short middle to A.Brown to PIT 39 for 14 yards (T.Newman).,10,10,2012 -20121223_CIN@PIT,4,9,47,PIT,CIN,1,10,61,(9:47) J.Dwyer right guard to PIT 37 for -2 yards (P.Sims).,10,10,2012 -20121223_CIN@PIT,4,9,4,PIT,CIN,2,12,63,(9:04) (Shotgun) B.Roethlisberger sacked at PIT 33 for -4 yards (D.Peko). PENALTY on CIN-L.Hall Defensive Holding 5 yards enforced at PIT 37 - No Play.,10,10,2012 -20121223_CIN@PIT,4,8,34,PIT,CIN,1,10,58,(8:34) B.Roethlisberger pass incomplete deep left to H.Miller.,10,10,2012 -20121223_CIN@PIT,4,8,29,PIT,CIN,2,10,58,(8:29) B.Roethlisberger pass incomplete short left to H.Miller (C.Crocker).,10,10,2012 -20121223_CIN@PIT,4,8,23,PIT,CIN,3,10,58,(8:23) (Shotgun) B.Roethlisberger pass incomplete short middle to M.Wallace (R.Nelson). Penalty on PIT-R.Foster Offensive Holding declined.,10,10,2012 -20121223_CIN@PIT,4,8,14,PIT,CIN,4,10,58,(8:14) (Punt formation) D.Butler punts 58 yards to end zone Center-G.Warren Touchback. PENALTY on CIN-O.Charles Offensive Holding 10 yards enforced at CIN 20.,10,10,2012 -20121223_CIN@PIT,4,8,5,CIN,PIT,1,10,90,(8:05) B.Green-Ellis up the middle to CIN 11 for 1 yard (E.Hood L.Timmons).,10,10,2012 -20121223_CIN@PIT,4,7,29,CIN,PIT,2,9,89,(7:29) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 11 for no gain (L.Foote E.Hood).,10,10,2012 -20121223_CIN@PIT,4,6,45,CIN,PIT,3,9,89,(6:45) (Shotgun) A.Dalton pass short left to J.Gresham to CIN 23 for 12 yards (L.Foote).,10,10,2012 -20121223_CIN@PIT,4,6,6,CIN,PIT,1,10,77,(6:06) (Shotgun) A.Dalton pass short right to A.Green to CIN 38 for 15 yards (R.Clark). PIT-R.Clark was injured during the play.,10,10,2012 -20121223_CIN@PIT,4,5,35,CIN,PIT,1,10,62,(5:35) (Shotgun) B.Green-Ellis left tackle to CIN 42 for 4 yards (J.Harrison C.Heyward).,10,10,2012 -20121223_CIN@PIT,4,4,59,CIN,PIT,2,6,58,(4:59) (Shotgun) A.Dalton pass short right to A.Green to PIT 37 for 21 yards (T.Polamalu).,10,10,2012 -20121223_CIN@PIT,4,4,52,CIN,PIT,1,10,37,(4:52) B.Green-Ellis left tackle to PIT 38 for -1 yards (C.Heyward).,10,10,2012 -20121223_CIN@PIT,4,4,9,CIN,PIT,2,11,38,(4:09) (Shotgun) A.Dalton sacked at PIT 38 for 0 yards (J.Harrison).,10,10,2012 -20121223_CIN@PIT,4,3,27,CIN,PIT,3,11,38,(3:27) (Shotgun) A.Dalton pass incomplete deep right to A.Green. Coverage by #23 Lewis. Pressure by #43 Polamalu.,10,10,2012 -20121223_CIN@PIT,4,3,22,CIN,PIT,4,11,38,(3:22) (Field Goal formation) J.Brown 56 yard field goal is No Good Short Center-C.Harris Holder-K.Huber.,10,10,2012 -20121223_CIN@PIT,4,3,18,PIT,CIN,1,10,54,(3:18) B.Roethlisberger pass incomplete short left to A.Brown.,10,10,2012 -20121223_CIN@PIT,4,3,15,PIT,CIN,2,10,54,(3:15) R.Mendenhall right end pushed ob at CIN 42 for 12 yards (V.Burfict).,10,10,2012 -20121223_CIN@PIT,4,3,6,PIT,CIN,1,10,42,(3:06) R.Mendenhall up the middle to CIN 38 for 4 yards (C.Dunlap).,10,10,2012 -20121223_CIN@PIT,4,2,24,PIT,CIN,2,6,38,(2:24) R.Mendenhall left guard to CIN 40 for -2 yards (C.Crocker). PIT-H.Miller was injured during the play.,10,10,2012 -20121223_CIN@PIT,4,2,0,PIT,CIN,3,8,40,(2:00) (Shotgun) B.Roethlisberger scrambles right guard to CIN 36 for 4 yards (C.Dunlap G.Atkins).,10,10,2012 -20121223_CIN@PIT,4,1,51,PIT,CIN,4,4,36,(1:51) (Field Goal formation) S.Suisham 53 yard field goal is No Good Short Center-G.Warren Holder-D.Butler.,10,10,2012 -20121223_CIN@PIT,4,1,47,CIN,PIT,1,10,57,(1:47) (Shotgun) A.Dalton pass short right to A.Green to PIT 48 for 9 yards (K.Lewis C.Allen).,10,10,2012 -20121223_CIN@PIT,4,1,40,CIN,PIT,2,1,48,(1:40) B.Green-Ellis right tackle to PIT 48 for no gain (L.Timmons E.Hood).,10,10,2012 -20121223_CIN@PIT,4,0,57,CIN,PIT,3,1,48,(:57) (Shotgun) A.Dalton pass incomplete deep left to A.Green. Coverage by #28 C. Allen.,10,10,2012 -20121223_CIN@PIT,4,0,52,CIN,PIT,4,1,48,(:52) (Punt formation) K.Huber punts 37 yards to PIT 11 Center-C.Harris fair catch by A.Brown.,10,10,2012 -20121223_CIN@PIT,4,0,44,PIT,CIN,1,10,89,(:44) (Shotgun) B.Roethlisberger pass short right to I.Redman to PIT 24 for 13 yards (V.Burfict). PENALTY on CIN-V.Burfict Defensive Delay of Game 5 yards enforced between downs.,10,10,2012 -20121223_CIN@PIT,4,0,44,PIT,CIN,1,5,71,(:44) B.Roethlisberger pass incomplete short middle to D.Paulson (C.Dunlap).,10,10,2012 -20121223_CIN@PIT,4,0,24,PIT,CIN,2,5,71,(:24) (Shotgun) B.Roethlisberger pass intended for M.Wallace INTERCEPTED by R.Nelson at CIN 44. R.Nelson ran ob at PIT 46 for 10 yards.,10,10,2012 -20121223_CIN@PIT,4,0,14,CIN,PIT,1,10,46,(:14) (Shotgun) A.Dalton pass deep right to A.Green pushed ob at PIT 25 for 21 yards (K.Lewis).,10,10,2012 -20121223_CIN@PIT,4,0,8,CIN,PIT,1,10,25,(:08) (Field Goal formation) J.Brown 43 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,10,2012 -20121223_CIN@PIT,4,0,8,CIN,PIT,,,25,J.Brown kicks 37 yards from CIN 35 to PIT 28. L.Pope (didn't try to advance) to PIT 28 for no gain.,13,10,2012 -20121223_CIN@PIT,4,0,3,PIT,CIN,1,10,72,(:03) (Shotgun) B.Roethlisberger pass short left to I.Redman to PIT 50 for 22 yards. FUMBLES RECOVERED by CIN-T.Newman at PIT 47. T.Newman to PIT 44 for 3 yards (D.DeCastro).,10,13,2012 -20121223_CIN@PIT,4,0,3,PIT,CIN,,,72,                      ,10,13,2012 -20121223_STL@TB,1,0,0,STL,TB,,,72,G.Zuerlein kicks 74 yards from SL 35 to TB -9. R.Parrish Touchback.,0,0,2012 -20121223_STL@TB,1,60,0,TB,STL,1,10,80,(15:00) D.Martin left guard to TB 24 for 4 yards (Q.Mikell).,0,0,2012 -20121223_STL@TB,1,59,23,TB,STL,2,6,76,(14:23) (Shotgun) PENALTY on SL-R.Quinn Neutral Zone Infraction 5 yards enforced at TB 24 - No Play.,0,0,2012 -20121223_STL@TB,1,59,0,TB,STL,2,1,71,(14:00) D.Martin up the middle to TB 29 for no gain (R.Quinn).,0,0,2012 -20121223_STL@TB,1,58,28,TB,STL,3,1,71,(13:28) J.Freeman up the middle to TB 30 for 1 yard (J.Dunbar).,0,0,2012 -20121223_STL@TB,1,57,53,TB,STL,1,10,70,(12:53) J.Freeman pass short right to E.Lorig to TB 37 for 7 yards (T.Johnson).,0,0,2012 -20121223_STL@TB,1,57,16,TB,STL,2,3,63,(12:16) D.Martin right guard to TB 33 for -4 yards (T.Johnson J.Dunbar).,0,0,2012 -20121223_STL@TB,1,56,30,TB,STL,3,7,67,(11:30) (Shotgun) J.Freeman pass deep middle to V.Jackson to SL 48 for 19 yards (B.Fletcher).,0,0,2012 -20121223_STL@TB,1,55,48,TB,STL,1,10,48,(10:48) (Shotgun) J.Freeman scrambles up the middle to SL 36 for 12 yards (C.Dahl).,0,0,2012 -20121223_STL@TB,1,55,4,TB,STL,1,10,36,(10:04) (Shotgun) J.Freeman pass short left to V.Jackson to SL 27 for 9 yards (J.Jenkins).,0,0,2012 -20121223_STL@TB,1,54,26,TB,STL,2,1,27,(9:26) D.Martin left tackle to SL 23 for 4 yards (J.Laurinaitis).,0,0,2012 -20121223_STL@TB,1,53,44,TB,STL,1,10,23,(8:44) (Shotgun) D.Martin up the middle to SL 17 for 6 yards (J.Laurinaitis).,0,0,2012 -20121223_STL@TB,1,53,1,TB,STL,2,4,17,(8:01) (Shotgun) J.Freeman pass short middle to V.Jackson to SL 7 for 10 yards (J.Laurinaitis).,0,0,2012 -20121223_STL@TB,1,52,14,TB,STL,1,7,7,(7:14) PENALTY on TB-T.Larsen False Start 5 yards enforced at SL 7 - No Play.,0,0,2012 -20121223_STL@TB,1,51,54,TB,STL,1,12,12,(6:54) (Shotgun) J.Freeman sacked at SL 18 for -6 yards (C.Long).,0,0,2012 -20121223_STL@TB,1,51,17,TB,STL,2,18,18,(6:17) (Shotgun) J.Freeman pass incomplete deep middle to V.Jackson.,0,0,2012 -20121223_STL@TB,1,51,10,TB,STL,3,18,18,(6:10) (Shotgun) J.Freeman pass short left to D.Clark to SL 11 for 7 yards (J.Laurinaitis).,0,0,2012 -20121223_STL@TB,1,50,28,TB,STL,4,11,11,(5:28) (Field Goal formation) C.Barth 29 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121223_STL@TB,1,50,28,TB,STL,,,11,M.Koenen kicks 67 yards from TB 35 to SL -2. C.Givens to SL 20 for 22 yards (B.McDonald).,3,0,2012 -20121223_STL@TB,1,50,16,STL,TB,1,10,80,(5:16) S.Bradford pass incomplete short left to S.Jackson (A.Hayward).,0,3,2012 -20121223_STL@TB,1,50,10,STL,TB,2,10,80,(5:10) (Shotgun) S.Bradford pass short right to D.Amendola to SL 23 for 3 yards (L.Johnson). FUMBLES (L.Johnson) RECOVERED by TB-L.Johnson at SL 17. L.Johnson to SL 16 for 1 yard (B.Richardson). FUMBLES (B.Richardson) RECOVERED by SL-R.Turner at SL 5. R.Turner to SL 5 for no gain (M.Foster).,0,3,2012 -20121223_STL@TB,1,49,43,STL,TB,1,10,95,(4:43) S.Jackson up the middle to SL 8 for 3 yards (L.David).,0,3,2012 -20121223_STL@TB,1,49,11,STL,TB,2,7,92,(4:11) S.Bradford pass incomplete deep right to C.Givens (L.Johnson).,0,3,2012 -20121223_STL@TB,1,49,2,STL,TB,3,7,92,(4:02) (Shotgun) S.Bradford pass short left to C.Givens to SL 22 for 14 yards (L.David).,0,3,2012 -20121223_STL@TB,1,48,24,STL,TB,1,10,78,(3:24) I.Pead left end to SL 22 for no gain (M.Barron).,0,3,2012 -20121223_STL@TB,1,47,42,STL,TB,2,10,78,(2:42) (Shotgun) S.Bradford pass deep middle to B.Gibson to SL 42 for 20 yards (E.Biggers) [M.Foster].,0,3,2012 -20121223_STL@TB,1,47,2,STL,TB,1,10,58,(2:02) S.Jackson right guard to SL 46 for 4 yards (M.Barron).,0,3,2012 -20121223_STL@TB,1,46,18,STL,TB,2,6,54,(1:18) S.Bradford pass incomplete short right to M.McNeill (L.David).,0,3,2012 -20121223_STL@TB,1,46,11,STL,TB,3,6,54,(1:11) (Shotgun) S.Bradford pass short right to L.Kendricks to TB 47 for 7 yards (R.Barber) [M.Bennett].,0,3,2012 -20121223_STL@TB,1,45,34,STL,TB,1,10,47,(:34) (Shotgun) S.Jackson right guard to TB 44 for 3 yards (L.David D.Bowers).,0,3,2012 -20121223_STL@TB,2,45,0,STL,TB,2,7,44,(15:00) (Shotgun) S.Bradford pass short left to C.Givens to TB 31 for 13 yards (A.Hayward).,0,3,2012 -20121223_STL@TB,2,44,19,STL,TB,1,10,31,(14:19) S.Bradford pass deep right intended for D.Amendola INTERCEPTED by D.Gorrer at TB 0. Touchback.,0,3,2012 -20121223_STL@TB,2,44,10,TB,STL,1,10,80,(14:10) D.Martin up the middle to TB 25 for 5 yards (J.Laurinaitis).,3,0,2012 -20121223_STL@TB,2,43,30,TB,STL,2,5,75,(13:30) (Shotgun) D.Martin up the middle to TB 30 for 5 yards (J.Laurinaitis R.Quinn).,3,0,2012 -20121223_STL@TB,2,42,45,TB,STL,1,10,70,(12:45) J.Freeman sacked at TB 25 for -5 yards (K.Langford).,3,0,2012 -20121223_STL@TB,2,42,6,TB,STL,2,15,75,(12:06) (Shotgun) J.Freeman pass incomplete short middle to D.Martin.,3,0,2012 -20121223_STL@TB,2,42,1,TB,STL,3,15,75,(12:01) (Shotgun) J.Freeman pass deep left intended for M.Williams INTERCEPTED by J.Jenkins at TB 41. J.Jenkins for 41 yards TOUCHDOWN.,3,0,2012 -20121223_STL@TB,2,42,1,STL,TB,,,75,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,3,2012 -20121223_STL@TB,2,42,1,STL,TB,,,75,G.Zuerlein kicks 72 yards from SL 35 to TB -7. R.Parrish Touchback.,7,3,2012 -20121223_STL@TB,2,41,46,TB,STL,1,10,80,(11:46) (Shotgun) J.Freeman pass short right to L.Stocker to TB 26 for 6 yards (T.Johnson).,3,7,2012 -20121223_STL@TB,2,41,12,TB,STL,2,4,74,(11:12) D.Martin left guard to TB 28 for 2 yards (Q.Mikell J.Laurinaitis).,3,7,2012 -20121223_STL@TB,2,40,33,TB,STL,3,2,72,(10:33) (Shotgun) J.Freeman pass short right to D.Clark to TB 36 for 8 yards (J.Dunbar) [Q.Mikell].,3,7,2012 -20121223_STL@TB,2,39,46,TB,STL,1,10,64,(9:46) D.Martin right tackle to TB 36 for no gain (J.Laurinaitis). PENALTY on SL-R.McIntosh Face Mask (15 Yards) 15 yards enforced at TB 36.,3,7,2012 -20121223_STL@TB,2,39,19,TB,STL,1,10,49,(9:19) J.Freeman sacked at TB 43 for -8 yards (Q.Mikell). FUMBLES (Q.Mikell) recovered by TB-J.Meredith at TB 43. J.Meredith to TB 43 for no gain (J.Cudjo).,3,7,2012 -20121223_STL@TB,2,38,33,TB,STL,2,18,57,(8:33) J.Freeman pass short left to V.Jackson pushed ob at 50 for 7 yards (Q.Mikell).,3,7,2012 -20121223_STL@TB,2,37,47,TB,STL,3,11,50,(7:47) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at 50 - No Play.,3,7,2012 -20121223_STL@TB,2,37,25,TB,STL,3,6,45,(7:25) J.Freeman pass short left to M.Williams pushed ob at SL 38 for 7 yards (C.Dahl).,3,7,2012 -20121223_STL@TB,2,36,57,TB,STL,1,10,38,(6:57) D.Martin up the middle to SL 31 for 7 yards (Q.Mikell W.Hayes).,3,7,2012 -20121223_STL@TB,2,36,16,TB,STL,2,3,31,(6:16) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson.,3,7,2012 -20121223_STL@TB,2,36,7,TB,STL,3,3,31,(6:07) J.Freeman pass incomplete short middle to M.Williams [J.Dunbar].,3,7,2012 -20121223_STL@TB,2,36,1,TB,STL,4,3,31,(6:01) (Field Goal formation) C.Barth 49 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,3,7,2012 -20121223_STL@TB,2,36,1,TB,STL,,,31,M.Koenen kicks 74 yards from TB 35 to SL -9. C.Givens Touchback.,6,7,2012 -20121223_STL@TB,2,35,56,STL,TB,1,10,80,(5:56) S.Bradford pass incomplete short left to D.Amendola (A.Gaitor).,7,6,2012 -20121223_STL@TB,2,35,51,STL,TB,2,10,80,(5:51) S.Jackson right tackle to SL 20 for no gain (L.David).,7,6,2012 -20121223_STL@TB,2,35,10,STL,TB,3,10,80,(5:10) (Shotgun) S.Bradford pass incomplete short left to L.Kendricks (R.Barber).,7,6,2012 -20121223_STL@TB,2,35,3,STL,TB,4,10,80,(5:03) (Punt formation) J.Hekker punts 45 yards to TB 35 Center-J.McQuaide. R.Parrish to TB 36 for 1 yard (B.Fletcher).,7,6,2012 -20121223_STL@TB,2,34,54,TB,STL,1,10,64,(4:54) D.Martin up the middle to TB 38 for 2 yards (Q.Mikell).,6,7,2012 -20121223_STL@TB,2,34,17,TB,STL,2,8,62,(4:17) J.Freeman pass short left to M.Williams to SL 49 for 13 yards (J.Dunbar).,6,7,2012 -20121223_STL@TB,2,33,38,TB,STL,1,10,49,(3:38) J.Freeman pass short left intended for V.Jackson INTERCEPTED by J.Laurinaitis at SL 35. J.Laurinaitis to SL 35 for no gain (V.Jackson).,6,7,2012 -20121223_STL@TB,2,33,30,STL,TB,1,10,65,(3:30) S.Jackson left tackle to SL 47 for 12 yards (M.Barron).,7,6,2012 -20121223_STL@TB,2,32,57,STL,TB,1,10,53,(2:57) S.Jackson up the middle to SL 49 for 2 yards (A.Hayward M.Bennett).,7,6,2012 -20121223_STL@TB,2,32,20,STL,TB,2,8,51,(2:20) S.Bradford pass short left to L.Kendricks to TB 32 for 19 yards (L.David).,7,6,2012 -20121223_STL@TB,2,32,0,STL,TB,1,10,32,(2:00) S.Bradford pass incomplete deep left to C.Givens.,7,6,2012 -20121223_STL@TB,2,31,55,STL,TB,2,10,32,(1:55) S.Bradford pass incomplete short right to D.Amendola.,7,6,2012 -20121223_STL@TB,2,31,49,STL,TB,3,10,32,(1:49) (Shotgun) S.Bradford pass short right to B.Gibson to TB 19 for 13 yards (D.Gorrer) [G.McCoy].,7,6,2012 -20121223_STL@TB,2,31,9,STL,TB,1,10,19,(1:09) S.Jackson left tackle to TB 18 for 1 yard (D.Te'o-Nesheim).,7,6,2012 -20121223_STL@TB,2,31,3,STL,TB,2,9,18,(1:03) S.Bradford pass short middle to L.Kendricks to TB 5 for 13 yards (M.Barron).,7,6,2012 -20121223_STL@TB,2,30,38,STL,TB,1,5,5,(:38) S.Jackson up the middle for 5 yards TOUCHDOWN.,7,6,2012 -20121223_STL@TB,2,30,38,STL,TB,,,5,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,7,6,2012 -20121223_STL@TB,2,30,38,STL,TB,,,5,G.Zuerlein kicks 73 yards from SL 35 to TB -8. R.Parrish Touchback.,14,6,2012 -20121223_STL@TB,2,30,32,TB,STL,1,10,80,(:32) (Shotgun) J.Freeman pass short left to D.Martin to TB 27 for 7 yards (W.Hayes).,6,14,2012 -20121223_STL@TB,3,30,0,TB,STL,,,80,M.Koenen kicks 74 yards from TB 35 to SL -9. C.Givens Touchback.,6,14,2012 -20121223_STL@TB,3,30,0,STL,TB,1,10,80,(15:00) S.Bradford pass deep middle to L.Kendricks for 80 yards TOUCHDOWN.,14,6,2012 -20121223_STL@TB,3,30,0,STL,TB,,,80,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,14,6,2012 -20121223_STL@TB,3,30,0,STL,TB,,,80,G.Zuerlein kicks 69 yards from SL 35 to TB -4. R.Parrish Touchback.,21,6,2012 -20121223_STL@TB,3,29,46,TB,STL,1,10,80,(14:46) D.Martin left tackle to TB 26 for 6 yards (J.Jenkins).,6,21,2012 -20121223_STL@TB,3,29,10,TB,STL,2,4,74,(14:10) J.Freeman pass incomplete short middle to D.Clark (J.Laurinaitis).,6,21,2012 -20121223_STL@TB,3,29,5,TB,STL,3,4,74,(14:05) (Shotgun) J.Freeman pass short right intended for M.Williams INTERCEPTED by T.Johnson at TB 30. T.Johnson to TB 30 for no gain (M.Williams).,6,21,2012 -20121223_STL@TB,3,28,58,STL,TB,1,10,30,(13:58) D.Richardson right guard to TB 24 for 6 yards (L.Johnson).,21,6,2012 -20121223_STL@TB,3,28,26,STL,TB,2,4,24,(13:26) D.Richardson up the middle to TB 23 for 1 yard (L.David).,21,6,2012 -20121223_STL@TB,3,27,50,STL,TB,3,3,23,(12:50) S.Bradford pass short left to D.Amendola to TB 15 for 8 yards (L.David).,21,6,2012 -20121223_STL@TB,3,27,8,STL,TB,1,10,15,(12:08) S.Bradford pass short left to C.Givens to TB 4 for 11 yards (L.Johnson).,21,6,2012 -20121223_STL@TB,3,26,29,STL,TB,1,4,4,(11:29) D.Richardson left end to TB 5 for -1 yards (L.Johnson).,21,6,2012 -20121223_STL@TB,3,25,54,STL,TB,2,5,5,(10:54) S.Bradford pass short middle to A.Pettis for 5 yards TOUCHDOWN.,21,6,2012 -20121223_STL@TB,3,25,54,STL,TB,,,5,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,21,6,2012 -20121223_STL@TB,3,25,54,STL,TB,,,5,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,28,6,2012 -20121223_STL@TB,3,25,47,TB,STL,1,10,80,(10:47) D.Martin up the middle to TB 26 for 6 yards (J.Laurinaitis Q.Mikell). PENALTY on SL Illegal Use of Hands 5 yards enforced at TB 26.,6,28,2012 -20121223_STL@TB,3,25,27,TB,STL,1,10,69,(10:27) D.Martin up the middle to TB 34 for 3 yards (J.Laurinaitis).,6,28,2012 -20121223_STL@TB,3,24,48,TB,STL,2,7,66,(9:48) (Shotgun) J.Freeman scrambles up the middle to TB 39 for 5 yards (E.Sims).,6,28,2012 -20121223_STL@TB,3,24,6,TB,STL,3,2,61,(9:06) J.Freeman pass short right to M.Williams for 61 yards TOUCHDOWN.,6,28,2012 -20121223_STL@TB,3,24,6,TB,STL,,,61,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,6,28,2012 -20121223_STL@TB,3,24,6,TB,STL,,,61,M.Koenen kicks 70 yards from TB 35 to SL -5. C.Givens to SL 12 for 17 yards (A.Black). PENALTY on SL Illegal Blindside Block 6 yards enforced at SL 12.,13,28,2012 -20121223_STL@TB,3,23,45,STL,TB,1,10,94,(8:45) S.Bradford pass incomplete deep middle to B.Quick.,28,13,2012 -20121223_STL@TB,3,23,38,STL,TB,2,10,94,(8:38) S.Jackson up the middle to SL 16 for 10 yards (R.Barber). PENALTY on SL-B.Richardson Offensive Holding 3 yards enforced at SL 6 - No Play.,28,13,2012 -20121223_STL@TB,3,23,13,STL,TB,2,13,97,(8:13) S.Jackson up the middle to SL 3 for no gain (L.David).,28,13,2012 -20121223_STL@TB,3,22,35,STL,TB,3,13,97,(7:35) S.Jackson up the middle to SL 12 for 9 yards (M.Barron).,28,13,2012 -20121223_STL@TB,3,22,2,STL,TB,4,4,88,(7:02) (Punt formation) J.Hekker punts 57 yards to TB 31 Center-J.McQuaide downed by SL-M.Haggan.,28,13,2012 -20121223_STL@TB,3,21,48,TB,STL,1,10,69,(6:48) J.Freeman pass short right to E.Lorig to TB 32 for 1 yard (T.Johnson).,13,28,2012 -20121223_STL@TB,3,21,14,TB,STL,2,9,68,(6:14) D.Martin left end pushed ob at TB 39 for 7 yards (J.Jenkins).,13,28,2012 -20121223_STL@TB,3,20,49,TB,STL,3,2,61,(5:49) J.Freeman pass deep left to M.Williams ran ob at SL 41 for 20 yards.,13,28,2012 -20121223_STL@TB,3,20,12,TB,STL,1,10,41,(5:12) D.Martin right guard to SL 40 for 1 yard (J.Laurinaitis R.McIntosh).,13,28,2012 -20121223_STL@TB,3,19,31,TB,STL,2,9,40,(4:31) J.Freeman pass short middle to L.Stocker to SL 30 for 10 yards (Q.Mikell).,13,28,2012 -20121223_STL@TB,3,18,51,TB,STL,1,10,30,(3:51) (Shotgun) J.Freeman pass short left to M.Williams to SL 14 for 16 yards (C.Finnegan).,13,28,2012 -20121223_STL@TB,3,18,7,TB,STL,1,10,14,(3:07) (Shotgun) D.Martin up the middle to SL 14 for no gain (Q.Mikell).,13,28,2012 -20121223_STL@TB,3,17,31,TB,STL,2,10,14,(2:31) J.Freeman pass short left to V.Jackson to SL 5 for 9 yards (J.Jenkins).,13,28,2012 -20121223_STL@TB,3,16,48,TB,STL,3,1,5,(1:48) (Shotgun) J.Freeman pass incomplete short left.,13,28,2012 -20121223_STL@TB,3,16,38,TB,STL,4,1,5,(1:38) J.Freeman up the middle to SL 5 for no gain (J.Dunbar).,13,28,2012 -20121223_STL@TB,3,16,37,STL,TB,1,10,95,(1:37) S.Jackson right guard to SL 8 for 3 yards (R.Miller).,28,13,2012 -20121223_STL@TB,3,15,58,STL,TB,2,7,92,(:58) S.Bradford pass incomplete short right to M.Mulligan [G.McCoy].,28,13,2012 -20121223_STL@TB,3,15,52,STL,TB,3,7,92,(:52) (Shotgun) S.Bradford pass incomplete short left to B.Gibson.,28,13,2012 -20121223_STL@TB,3,15,46,STL,TB,4,7,92,(:46) (Punt formation) J.Hekker punts 54 yards to TB 38 Center-J.McQuaide. R.Parrish to TB 42 for 4 yards (C.Dahl). PENALTY on SL-Q.Pointer Unsportsmanlike Conduct 15 yards enforced at TB 42.,28,13,2012 -20121223_STL@TB,3,15,34,TB,STL,1,10,43,(:34) J.Freeman pass incomplete deep left to V.Jackson.,13,28,2012 -20121223_STL@TB,3,15,29,TB,STL,2,10,43,(:29) J.Freeman pass incomplete deep right to M.Williams (T.Johnson).,13,28,2012 -20121223_STL@TB,3,15,19,TB,STL,3,10,43,(:19) (Shotgun) J.Freeman pass incomplete deep left to V.Jackson.,13,28,2012 -20121223_STL@TB,3,15,15,TB,STL,4,10,43,(:15) (Punt formation) M.Koenen punts 25 yards to SL 18 Center-A.Economos fair catch by D.Amendola.,13,28,2012 -20121223_STL@TB,3,15,7,STL,TB,1,10,82,(:07) D.Richardson left end to SL 17 for -1 yards (M.Barron).,28,13,2012 -20121223_STL@TB,4,15,0,STL,TB,2,11,83,(15:00) S.Bradford pass incomplete short right to D.Amendola.,28,13,2012 -20121223_STL@TB,4,14,57,STL,TB,3,11,83,(14:57) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola (A.Gaitor) [D.Bowers].,28,13,2012 -20121223_STL@TB,4,14,51,STL,TB,4,11,83,(14:51) (Punt formation) J.Hekker punts 52 yards to TB 31 Center-J.McQuaide fair catch by R.Parrish.,28,13,2012 -20121223_STL@TB,4,14,42,TB,STL,1,10,69,(14:42) (Shotgun) D.Martin left end to TB 39 for 8 yards (Q.Mikell).,13,28,2012 -20121223_STL@TB,4,14,4,TB,STL,2,2,61,(14:04) (Shotgun) J.Freeman pass short right to V.Jackson ran ob at TB 47 for 8 yards.,13,28,2012 -20121223_STL@TB,4,13,36,TB,STL,1,10,53,(13:36) (Shotgun) J.Freeman pass incomplete deep left to M.Williams.,13,28,2012 -20121223_STL@TB,4,13,30,TB,STL,2,10,53,(13:30) (Shotgun) J.Freeman pass incomplete short left to V.Jackson.,13,28,2012 -20121223_STL@TB,4,13,24,TB,STL,3,10,53,(13:24) (Shotgun) J.Freeman pass deep middle to V.Jackson to SL 7 for 46 yards (Q.Mikell) [E.Sims].,13,28,2012 -20121223_STL@TB,4,12,33,TB,STL,1,7,7,(12:33) (Shotgun) J.Freeman pass incomplete short right to M.Williams.,13,28,2012 -20121223_STL@TB,4,12,27,TB,STL,2,7,7,(12:27) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson.,13,28,2012 -20121223_STL@TB,4,12,21,TB,STL,3,7,7,(12:21) (Shotgun) J.Freeman pass incomplete short right to M.Williams (T.Johnson).,13,28,2012 -20121223_STL@TB,4,12,15,TB,STL,4,7,7,(12:15) (Shotgun) J.Freeman pass short middle to D.Martin to SL 3 for 4 yards (R.Saffold).,13,28,2012 -20121223_STL@TB,4,12,8,STL,TB,1,10,97,(12:08) S.Jackson up the middle to SL 9 for 6 yards (M.Foster).,28,13,2012 -20121223_STL@TB,4,11,31,STL,TB,2,4,91,(11:31) S.Jackson left tackle to SL 28 for 19 yards (L.Johnson A.Black).,28,13,2012 -20121223_STL@TB,4,10,50,STL,TB,1,10,72,(10:50) S.Jackson right guard to SL 35 for 7 yards (M.Foster M.Barron).,28,13,2012 -20121223_STL@TB,4,10,14,STL,TB,2,3,65,(10:14) S.Jackson right tackle to SL 37 for 2 yards (M.Barron).,28,13,2012 -20121223_STL@TB,4,9,34,STL,TB,3,1,63,(9:34) S.Bradford pass incomplete short right to D.Richardson.,28,13,2012 -20121223_STL@TB,4,9,26,STL,TB,4,1,63,(9:26) (Punt formation) J.Hekker punts 49 yards to TB 14 Center-J.McQuaide. R.Parrish to TB 16 for 2 yards (D.Stewart R.McLeod).,28,13,2012 -20121223_STL@TB,4,9,14,TB,STL,1,10,84,(9:14) (Shotgun) J.Freeman pass short right to D.Martin to TB 33 for 17 yards (J.Dunbar C.Dahl).,13,28,2012 -20121223_STL@TB,4,8,33,TB,STL,1,10,67,(8:33) (Shotgun) J.Freeman pass short middle to M.Williams to TB 44 for 11 yards (J.Dunbar).,13,28,2012 -20121223_STL@TB,4,8,3,TB,STL,1,10,56,(8:03) (Shotgun) J.Freeman pass short right intended for M.Williams INTERCEPTED by E.Sims (M.Brockers) at TB 44. E.Sims to TB 39 for 5 yards (T.Larsen).,13,28,2012 -20121223_STL@TB,4,7,55,STL,TB,1,10,39,(7:55) S.Jackson right tackle to TB 41 for -2 yards (M.Bennett G.Gibson).,28,13,2012 -20121223_STL@TB,4,7,18,STL,TB,2,12,41,(7:18) (Shotgun) S.Bradford pass short right to S.Jackson to TB 45 for -4 yards (L.David).,28,13,2012 -20121223_STL@TB,4,6,38,STL,TB,3,16,45,(6:38) (Shotgun) D.Richardson up the middle to TB 41 for 4 yards (D.Gorrer R.Barber).,28,13,2012 -20121223_STL@TB,4,6,38,STL,TB,4,12,41,(6:38) (Punt formation) PENALTY on SL-J.Hekker Delay of Game 5 yards enforced at TB 41 - No Play.,28,13,2012 -20121223_STL@TB,4,5,37,STL,TB,4,17,46,(5:37) (Punt formation) J.Hekker punts 33 yards to TB 13 Center-J.McQuaide fair catch by R.Parrish.,28,13,2012 -20121223_STL@TB,4,5,32,TB,STL,1,10,87,(5:32) (Shotgun) J.Freeman pass short left to D.Martin to TB 22 for 9 yards (C.Finnegan).,13,28,2012 -20121223_STL@TB,4,5,8,TB,STL,2,1,78,(5:08) (No Huddle) J.Freeman pass short left to D.Martin to TB 27 for 5 yards (J.Jenkins).,13,28,2012 -20121223_STL@TB,4,4,43,TB,STL,1,10,73,(4:43) (No Huddle) J.Freeman pass short left to D.Martin to TB 35 for 8 yards (J.Laurinaitis).,13,28,2012 -20121223_STL@TB,4,4,15,TB,STL,2,2,65,(4:15) (No Huddle) J.Freeman pass incomplete deep middle to T.Underwood.,13,28,2012 -20121223_STL@TB,4,4,10,TB,STL,3,2,65,(4:10) (Shotgun) J.Freeman pass short middle to M.Williams to TB 39 for 4 yards (J.Jenkins).,13,28,2012 -20121223_STL@TB,4,3,45,TB,STL,1,10,61,(3:45) (No Huddle) J.Freeman pass short right to T.Underwood pushed ob at SL 43 for 18 yards (C.Finnegan).,13,28,2012 -20121223_STL@TB,4,3,37,TB,STL,1,10,43,(3:37) (Shotgun) J.Freeman pass short right to D.Clark to SL 36 for 7 yards (J.Dunbar).,13,28,2012 -20121223_STL@TB,4,3,16,TB,STL,2,3,36,(3:16) (No Huddle) J.Freeman pass short middle to D.Martin to SL 29 for 7 yards (J.Dunbar).,13,28,2012 -20121223_STL@TB,4,2,51,TB,STL,1,10,29,(2:51) (No Huddle) J.Freeman pass incomplete short right to D.Clark (W.Hayes).,13,28,2012 -20121223_STL@TB,4,2,45,TB,STL,2,10,29,(2:45) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at SL 29 - No Play.,13,28,2012 -20121223_STL@TB,4,2,45,TB,STL,2,5,24,(2:45) (Shotgun) J.Freeman pass incomplete deep right to M.Williams.,13,28,2012 -20121223_STL@TB,4,2,41,TB,STL,3,5,24,(2:41) (Shotgun) J.Freeman pass incomplete short left to D.Clark [C.Long].,13,28,2012 -20121223_STL@TB,4,2,34,TB,STL,4,5,24,(2:34) (Shotgun) J.Freeman sacked at SL 24 for 0 yards (W.Hayes).,13,28,2012 -20121223_STL@TB,4,2,26,STL,TB,1,10,76,(2:26) S.Jackson up the middle to SL 26 for 2 yards (R.Barber).,28,13,2012 -20121223_STL@TB,4,2,20,STL,TB,2,8,74,(2:20) S.Jackson left tackle to SL 31 for 5 yards (M.Foster M.Bennett).,28,13,2012 -20121223_STL@TB,4,2,15,STL,TB,3,3,69,(2:15) S.Jackson up the middle to SL 31 for no gain (G.Gibson).,28,13,2012 -20121223_STL@TB,4,2,0,STL,TB,4,3,69,(2:00) (Punt formation) J.Hekker punts 45 yards to TB 24 Center-J.McQuaide out of bounds.,28,13,2012 -20121223_STL@TB,4,1,52,TB,STL,1,10,76,(1:52) (Shotgun) J.Freeman sacked at TB 20 for -4 yards (W.Hayes).,13,28,2012 -20121223_STL@TB,4,1,28,TB,STL,2,14,80,(1:28) (No Huddle) J.Freeman pass incomplete deep left to M.Williams.,13,28,2012 -20121223_STL@TB,4,1,21,TB,STL,3,14,80,(1:21) (Shotgun) J.Freeman pass incomplete deep middle to V.Jackson [R.Quinn].,13,28,2012 -20121223_STL@TB,4,1,12,TB,STL,4,14,80,(1:12) (Shotgun) J.Freeman pass short middle to D.Clark to TB 31 for 11 yards (J.Dunbar).,13,28,2012 -20121223_STL@TB,4,1,3,STL,TB,1,10,31,(1:03) S.Bradford kneels to TB 31 for no gain.,28,13,2012 -20121223_STL@TB,4,0,35,STL,TB,2,10,31,(:35) S.Bradford kneels to TB 32 for -1 yards.,28,13,2012 -20121223_STL@TB,4,0,35,STL,TB,,,31,                      ,28,13,2012 -20121223_SD@NYJ,1,0,0,SD,NYJ,,,31,N.Novak kicks 66 yards from SD 35 to NYJ -1. J.McKnight to NYJ 18 for 19 yards (B.Bird).,0,0,2012 -20121223_SD@NYJ,1,59,53,NYJ,SD,1,10,82,(14:53) S.Greene up the middle to NYJ 18 for no gain (T.Spikes).,0,0,2012 -20121223_SD@NYJ,1,59,17,NYJ,SD,2,10,82,(14:17) G.McElroy scrambles left end to NYJ 19 for 1 yard (A.Cason).,0,0,2012 -20121223_SD@NYJ,1,58,39,NYJ,SD,3,9,81,(13:39) (Shotgun) G.McElroy sacked at NYJ 10 for -9 yards (sack split by M.Ingram and S.Phillips).,0,0,2012 -20121223_SD@NYJ,1,58,16,NYJ,SD,4,18,90,(13:16) R.Malone punts 53 yards to SD 37 Center-T.Purdum. M.Spurlock for 63 yards TOUCHDOWN.,0,0,2012 -20121223_SD@NYJ,1,58,16,SD,NYJ,,,90,N.Novak extra point is GOOD Center-R.Hadnot Holder-M.Scifres.,0,0,2012 -20121223_SD@NYJ,1,58,16,SD,NYJ,,,90,N.Novak kicks 68 yards from SD 35 to NYJ -3. J.McKnight to NYJ 17 for 20 yards (M.Ingram).,7,0,2012 -20121223_SD@NYJ,1,57,57,NYJ,SD,1,10,83,(12:57) G.McElroy pass short right to S.Greene pushed ob at NYJ 47 for 30 yards (E.Weddle).,0,7,2012 -20121223_SD@NYJ,1,57,20,NYJ,SD,1,10,53,(12:20) Direct snap to J.Kerley. J.Kerley pass deep right to E.Gates to SD 11 for 42 yards (A.Cason).,0,7,2012 -20121223_SD@NYJ,1,56,31,NYJ,SD,1,10,11,(11:31) Direct snap to S.Greene. S.Greene right guard to SD 8 for 3 yards (J.Johnson).,0,7,2012 -20121223_SD@NYJ,1,55,50,NYJ,SD,2,7,8,(10:50) (Shotgun) G.McElroy pass incomplete short right to B.Edwards.,0,7,2012 -20121223_SD@NYJ,1,55,47,NYJ,SD,3,7,8,(10:47) (Shotgun) G.McElroy scrambles right guard to SD 1 for 7 yards (E.Weddle). New York Jets challenged the runner broke the plane ruling and the play was Upheld. (Timeout #1.),0,7,2012 -20121223_SD@NYJ,1,54,55,NYJ,SD,1,1,1,(9:55) S.Greene up the middle to SD 1 for no gain (J.Johnson; K.Reyes).,0,7,2012 -20121223_SD@NYJ,1,54,24,NYJ,SD,2,1,1,(9:24) S.Greene left guard for 1 yard TOUCHDOWN.,0,7,2012 -20121223_SD@NYJ,1,54,24,NYJ,SD,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,7,2012 -20121223_SD@NYJ,1,54,24,NYJ,SD,,,1,N.Folk kicks 66 yards from NYJ 35 to SD -1. M.Spurlock to SD 19 for 20 yards (D.Davis).,7,7,2012 -20121223_SD@NYJ,1,54,16,SD,NYJ,1,10,81,(9:16) J.Battle left tackle to SD 21 for 2 yards (S.Pouha). NYJ-B.Scott was injured during the play.,7,7,2012 -20121223_SD@NYJ,1,53,40,SD,NYJ,2,8,79,(8:40) J.Battle up the middle to SD 22 for 1 yard (D.Harris).,7,7,2012 -20121223_SD@NYJ,1,53,1,SD,NYJ,3,7,78,(8:01) (Shotgun) P.Rivers pass incomplete deep left to D.Alexander.,7,7,2012 -20121223_SD@NYJ,1,52,54,SD,NYJ,4,7,78,(7:54) M.Scifres punts 56 yards to NYJ 22 Center-K.Nelson. J.Kerley to NYJ 42 for 20 yards (R.McMichael; M.Spurlock).,7,7,2012 -20121223_SD@NYJ,1,52,41,NYJ,SD,1,10,58,(7:41) S.Greene up the middle to SD 46 for 12 yards (B.Taylor).,7,7,2012 -20121223_SD@NYJ,1,52,4,NYJ,SD,1,10,46,(7:04) J.McKnight right end to SD 39 for 7 yards (C.Thomas; A.Garay).,7,7,2012 -20121223_SD@NYJ,1,51,16,NYJ,SD,2,3,39,(6:16) G.McElroy pass short right to B.Edwards ran ob at SD 26 for 13 yards.,7,7,2012 -20121223_SD@NYJ,1,50,38,NYJ,SD,1,10,26,(5:38) Direct snap to J.Kerley. S.Greene up the middle to SD 23 for 3 yards (C.Liuget; A.Garay).,7,7,2012 -20121223_SD@NYJ,1,50,0,NYJ,SD,2,7,23,(5:00) G.McElroy pass incomplete short right to J.Kerley.,7,7,2012 -20121223_SD@NYJ,1,49,56,NYJ,SD,3,7,23,(4:56) (Shotgun) G.McElroy pass incomplete deep right to B.Edwards. PENALTY on SD-Q.Jammer Defensive Pass Interference 22 yards enforced at SD 23 - No Play.,7,7,2012 -20121223_SD@NYJ,1,49,50,NYJ,SD,1,1,1,(4:50) S.Greene right guard to SD 1 for no gain (D.Butler; C.Liuget).,7,7,2012 -20121223_SD@NYJ,1,49,16,NYJ,SD,2,1,1,(4:16) S.Greene right tackle for 1 yard TOUCHDOWN.,7,7,2012 -20121223_SD@NYJ,1,49,16,NYJ,SD,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,7,2012 -20121223_SD@NYJ,1,49,16,NYJ,SD,,,1,N.Folk kicks 65 yards from NYJ 35 to SD 0. M.Spurlock to SD 20 for 20 yards (J.Bush). PENALTY on SD-J.Battle Illegal Block Above the Waist 6 yards enforced at SD 13.,14,7,2012 -20121223_SD@NYJ,1,49,8,SD,NYJ,1,10,93,(4:08) J.Battle left tackle to SD 8 for 1 yard (M.Devito; M.Wilkerson).,7,14,2012 -20121223_SD@NYJ,1,48,24,SD,NYJ,2,9,92,(3:24) (Shotgun) P.Rivers sacked at SD 2 for -6 yards (Q.Coples).,7,14,2012 -20121223_SD@NYJ,1,47,48,SD,NYJ,3,15,98,(2:48) (Shotgun) P.Rivers pass incomplete deep right to D.Alexander.,7,14,2012 -20121223_SD@NYJ,1,47,42,SD,NYJ,4,15,98,(2:42) M.Scifres punts 46 yards to SD 48 Center-K.Nelson. J.Kerley to SD 49 for -1 yards (M.Gilchrist; R.McMichael).,7,14,2012 -20121223_SD@NYJ,1,47,30,NYJ,SD,1,10,49,(2:30) B.Powell up the middle to 50 for -1 yards (E.Weddle).,14,7,2012 -20121223_SD@NYJ,1,46,50,NYJ,SD,2,11,50,(1:50) B.Powell left tackle to NYJ 46 for -4 yards (C.Thomas).,14,7,2012 -20121223_SD@NYJ,1,46,5,NYJ,SD,3,15,54,(1:05) (Shotgun) G.McElroy pass short middle to B.Powell to SD 44 for 10 yards (E.Weddle).,14,7,2012 -20121223_SD@NYJ,1,45,33,NYJ,SD,4,5,44,(:33) R.Malone punts 27 yards to SD 17 Center-T.Purdum out of bounds.,14,7,2012 -20121223_SD@NYJ,1,45,26,SD,NYJ,1,10,83,(:26) P.Rivers pass short right to E.Royal to SD 29 for 12 yards (K.Wilson).,7,14,2012 -20121223_SD@NYJ,2,45,0,SD,NYJ,1,10,71,(15:00) (Shotgun) R.Brown left tackle to SD 38 for 9 yards (D.Harris).,7,14,2012 -20121223_SD@NYJ,2,45,0,SD,NYJ,2,1,62,(15:00) R.Brown left tackle to SD 43 for 5 yards (B.Scott).,7,14,2012 -20121223_SD@NYJ,2,43,38,SD,NYJ,1,10,57,(13:38) (Shotgun) P.Rivers pass incomplete deep left to A.Gates. PENALTY on NYJ-Q.Coples Roughing the Passer 15 yards enforced at SD 43 - No Play.,7,14,2012 -20121223_SD@NYJ,2,43,32,SD,NYJ,1,10,42,(13:32) R.Brown left tackle to NYJ 34 for 8 yards (Q.Coples).,7,14,2012 -20121223_SD@NYJ,2,42,52,SD,NYJ,2,2,34,(12:52) J.Battle right tackle to NYJ 33 for 1 yard (D.Harris; G.McIntyre).,7,14,2012 -20121223_SD@NYJ,2,42,9,SD,NYJ,3,1,33,(12:09) J.Battle left tackle to NYJ 34 for -1 yards (M.Wilkerson).,7,14,2012 -20121223_SD@NYJ,2,42,9,SD,NYJ,4,2,34,(12:09) (Shotgun) P.Rivers pass short left to D.Alexander to NYJ 16 for 18 yards (A.Cromartie).,7,14,2012 -20121223_SD@NYJ,2,40,41,SD,NYJ,1,10,16,(10:41) (Shotgun) P.Rivers pass incomplete short right to R.Brown [M.Wilkerson]. PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at NYJ 16 - No Play.,7,14,2012 -20121223_SD@NYJ,2,40,35,SD,NYJ,1,20,26,(10:35) (Shotgun) R.Brown left end to NYJ 19 for 7 yards (Y.Bell). PENALTY on SD-M.Harris Offensive Holding 10 yards enforced at NYJ 26 - No Play.,7,14,2012 -20121223_SD@NYJ,2,40,13,SD,NYJ,1,30,36,(10:13) (Shotgun) P.Rivers pass short left to R.Brown to NYJ 31 for 5 yards (D.Harris) [Q.Coples].,7,14,2012 -20121223_SD@NYJ,2,39,26,SD,NYJ,2,25,31,(9:26) (Shotgun) P.Rivers pass incomplete short right to E.Royal (D.Walls).,7,14,2012 -20121223_SD@NYJ,2,39,21,SD,NYJ,3,25,31,(9:21) (Shotgun) C.Brinkley right tackle to NYJ 28 for 3 yards (D.Harris).,7,14,2012 -20121223_SD@NYJ,2,38,41,SD,NYJ,4,22,28,(8:41) M.Scifres 46 yard field goal is GOOD NULLIFIED by Penalty Center-R.Hadnot Holder-N.Novak. PENALTY on SD Offensive 12 On-field 5 yards enforced at NYJ 28 - No Play.,7,14,2012 -20121223_SD@NYJ,2,38,36,SD,NYJ,4,27,33,(8:36) N.Novak 51 yard field goal is GOOD Center-R.Hadnot Holder-M.Scifres.,7,14,2012 -20121223_SD@NYJ,2,38,36,SD,NYJ,,,33,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,10,14,2012 -20121223_SD@NYJ,2,38,32,NYJ,SD,1,10,80,(8:32) Direct snap to J.Kerley. S.Greene left tackle to NYJ 25 for 5 yards (C.Thomas).,14,10,2012 -20121223_SD@NYJ,2,37,53,NYJ,SD,2,5,75,(7:53) G.McElroy sacked at NYJ 18 for -7 yards (sack split by K.Reyes and B.Taylor).,14,10,2012 -20121223_SD@NYJ,2,37,16,NYJ,SD,3,12,82,(7:16) G.McElroy sacked at NYJ 18 for 0 yards (D.Butler).,14,10,2012 -20121223_SD@NYJ,2,36,36,NYJ,SD,4,12,82,(6:36) R.Malone punts 59 yards to SD 23 Center-T.Purdum. M.Spurlock ran ob at SD 33 for 10 yards.,14,10,2012 -20121223_SD@NYJ,2,36,36,SD,NYJ,1,10,67,(6:36) P.Rivers pass short right to E.Royal pushed ob at SD 47 for 14 yards (C.Pace).,10,14,2012 -20121223_SD@NYJ,2,36,3,SD,NYJ,1,10,53,(6:03) P.Rivers pass short right to J.Battle to NYJ 48 for 5 yards (C.Pace; D.Harris).,10,14,2012 -20121223_SD@NYJ,2,35,23,SD,NYJ,2,5,48,(5:23) (Shotgun) J.Battle left tackle to NYJ 49 for -1 yards (D.Harris).,10,14,2012 -20121223_SD@NYJ,2,34,39,SD,NYJ,3,6,49,(4:39) (Shotgun) P.Rivers pass incomplete short right to A.Gates.,10,14,2012 -20121223_SD@NYJ,2,34,33,SD,NYJ,4,6,49,(4:33) M.Scifres punts 38 yards to NYJ 11 Center-K.Nelson fair catch by J.Kerley.,10,14,2012 -20121223_SD@NYJ,2,34,27,NYJ,SD,1,10,89,(4:27) S.Greene left end to NYJ 16 for 5 yards (T.Spikes; S.Phillips).,14,10,2012 -20121223_SD@NYJ,2,33,51,NYJ,SD,2,5,84,(3:51) S.Greene up the middle to NYJ 24 for 8 yards (Q.Jammer; B.Taylor).,14,10,2012 -20121223_SD@NYJ,2,33,7,NYJ,SD,1,10,76,(3:07) G.McElroy sacked at NYJ 18 for -6 yards (L.English).,14,10,2012 -20121223_SD@NYJ,2,32,30,NYJ,SD,2,16,82,(2:30) G.McElroy pass short right to C.Schilens pushed ob at NYJ 25 for 7 yards (M.Gilchrist).,14,10,2012 -20121223_SD@NYJ,2,32,0,NYJ,SD,3,9,75,(2:00) (Shotgun) G.McElroy pass short middle to H.Smith to NYJ 41 for 16 yards (M.Gilchrist).,14,10,2012 -20121223_SD@NYJ,2,31,16,NYJ,SD,1,10,59,(1:16) (Shotgun) G.McElroy pass incomplete deep left to B.Edwards.,14,10,2012 -20121223_SD@NYJ,2,31,11,NYJ,SD,2,10,59,(1:11) (Shotgun) G.McElroy sacked at NYJ 39 for -2 yards (S.Phillips).,14,10,2012 -20121223_SD@NYJ,2,30,25,NYJ,SD,3,12,61,(:25) (Shotgun) G.McElroy up the middle to NYJ 32 for -7 yards. FUMBLES recovered by NYJ-L.Hilliard at NYJ 32. L.Hilliard to NYJ 32 for no gain (M.Ingram). The Replay Assistant challenged the backward pass ruling and the play was REVERSED. (Shotgun) G.McElroy pass incomplete short right to L.Hilliard.,14,10,2012 -20121223_SD@NYJ,2,30,21,NYJ,SD,4,12,61,(:21) R.Malone punts 41 yards to SD 20 Center-T.Purdum. M.Spurlock pushed ob at SD 33 for 13 yards (R.Malone).,14,10,2012 -20121223_SD@NYJ,2,30,11,SD,NYJ,1,10,67,(:11) (Shotgun) P.Rivers pass incomplete short left to C.Brinkley (M.Wilkerson).,10,14,2012 -20121223_SD@NYJ,2,30,6,SD,NYJ,2,10,67,(:06) P.Rivers kneels to SD 32 for -1 yards.,10,14,2012 -20121223_SD@NYJ,3,30,0,NYJ,SD,,,67,N.Folk kicks 65 yards from NYJ 35 to SD 0. M.Spurlock to SD 19 for 19 yards (D.Davis).,14,10,2012 -20121223_SD@NYJ,3,29,56,SD,NYJ,1,10,81,(14:56) P.Rivers pass short left to E.Royal to SD 32 for 13 yards (K.Wilson).,10,14,2012 -20121223_SD@NYJ,3,29,17,SD,NYJ,1,10,68,(14:17) (Shotgun) P.Rivers pass short middle to D.Alexander to SD 46 for 14 yards (L.Landry).,10,14,2012 -20121223_SD@NYJ,3,28,31,SD,NYJ,1,10,54,(13:31) J.Battle right tackle to 50 for 4 yards (S.Pouha).,10,14,2012 -20121223_SD@NYJ,3,27,52,SD,NYJ,2,6,50,(12:52) P.Rivers pass incomplete short right.,10,14,2012 -20121223_SD@NYJ,3,27,45,SD,NYJ,3,6,50,(12:45) (Shotgun) P.Rivers pass short middle to A.Gates to NYJ 40 for 10 yards (L.Landry).,10,14,2012 -20121223_SD@NYJ,3,27,6,SD,NYJ,1,10,40,(12:06) (Shotgun) R.Brown right tackle to NYJ 37 for 3 yards (Y.Bell; C.Pace).,10,14,2012 -20121223_SD@NYJ,3,26,24,SD,NYJ,2,7,37,(11:24) (Shotgun) P.Rivers pass incomplete deep left to L.McClain.,10,14,2012 -20121223_SD@NYJ,3,26,18,SD,NYJ,3,7,37,(11:18) (Shotgun) P.Rivers pass deep left to D.Alexander for 37 yards TOUCHDOWN.,10,14,2012 -20121223_SD@NYJ,3,26,18,SD,NYJ,,,37,N.Novak extra point is GOOD Center-R.Hadnot Holder-M.Scifres.,10,14,2012 -20121223_SD@NYJ,3,26,18,SD,NYJ,,,37,N.Novak kicks 70 yards from SD 35 to NYJ -5. J.McKnight pushed ob at NYJ 32 for 37 yards (C.Carr).,17,14,2012 -20121223_SD@NYJ,3,26,2,NYJ,SD,1,10,68,(11:02) S.Greene right guard to NYJ 32 for no gain (D.Butler; J.Johnson).,14,17,2012 -20121223_SD@NYJ,3,25,21,NYJ,SD,2,10,68,(10:21) Direct snap to J.Kerley. G.McElroy pass short right to L.Hilliard to NYJ 35 for 3 yards (D.Butler). PENALTY on NYJ-B.Moore Illegal Formation 5 yards enforced at NYJ 32 - No Play.,14,17,2012 -20121223_SD@NYJ,3,24,44,NYJ,SD,2,15,73,(9:44) G.McElroy pass short middle to S.Greene pushed ob at NYJ 39 for 12 yards (E.Weddle).,14,17,2012 -20121223_SD@NYJ,3,24,1,NYJ,SD,3,3,61,(9:01) (Shotgun) G.McElroy scrambles up the middle to NYJ 41 for 2 yards (C.Liuget).,14,17,2012 -20121223_SD@NYJ,3,23,26,NYJ,SD,4,1,59,(8:26) R.Malone punts 42 yards to SD 17 Center-T.Purdum fair catch by M.Spurlock.,14,17,2012 -20121223_SD@NYJ,3,23,20,SD,NYJ,1,10,83,(8:20) J.Battle right tackle to SD 22 for 5 yards (G.McIntyre).,17,14,2012 -20121223_SD@NYJ,3,22,47,SD,NYJ,2,5,78,(7:47) J.Battle left end to SD 30 for 8 yards (Y.Bell).,17,14,2012 -20121223_SD@NYJ,3,22,7,SD,NYJ,1,10,70,(7:07) J.Battle right tackle to SD 38 for 8 yards (D.Harris).,17,14,2012 -20121223_SD@NYJ,3,22,7,SD,NYJ,2,2,62,(7:07) PENALTY on NYJ-K.Ellis Encroachment 5 yards enforced at SD 38 - No Play.,17,14,2012 -20121223_SD@NYJ,3,21,4,SD,NYJ,1,10,57,(6:04) J.Battle left tackle to SD 46 for 3 yards (G.McIntyre).,17,14,2012 -20121223_SD@NYJ,3,20,21,SD,NYJ,2,7,54,(5:21) P.Rivers pass incomplete short left to D.Alexander.,17,14,2012 -20121223_SD@NYJ,3,20,17,SD,NYJ,3,7,54,(5:17) (Shotgun) P.Rivers sacked at SD 37 for -9 yards (sack split by Q.Coples and G.McIntyre).,17,14,2012 -20121223_SD@NYJ,3,20,11,SD,NYJ,4,16,63,(5:11) M.Scifres punts 33 yards to NYJ 30 Center-K.Nelson out of bounds.,17,14,2012 -20121223_SD@NYJ,3,20,2,NYJ,SD,1,10,70,(5:02) G.McElroy sacked at NYJ 24 for -6 yards (K.Reyes).,14,17,2012 -20121223_SD@NYJ,3,19,27,NYJ,SD,2,16,76,(4:27) S.Greene up the middle to NYJ 24 for no gain (A.Garay; D.Butler).,14,17,2012 -20121223_SD@NYJ,3,18,48,NYJ,SD,3,16,76,(3:48) (Shotgun) G.McElroy sacked at NYJ 15 for -9 yards (C.Liuget).,14,17,2012 -20121223_SD@NYJ,3,18,26,NYJ,SD,4,25,85,(3:26) R.Malone punts 44 yards to SD 41 Center-T.Purdum. M.Spurlock pushed ob at NYJ 38 for 21 yards (T.Purdum).,14,17,2012 -20121223_SD@NYJ,3,18,15,SD,NYJ,1,10,38,(3:15) (Shotgun) P.Rivers sacked at NYJ 45 for -7 yards (B.Scott).,17,14,2012 -20121223_SD@NYJ,3,17,38,SD,NYJ,2,17,45,(2:38) (Shotgun) P.Rivers pass incomplete deep left to E.Royal.,17,14,2012 -20121223_SD@NYJ,3,17,33,SD,NYJ,3,17,45,(2:33) (Shotgun) P.Rivers pass incomplete short middle to R.Meachem. SD-R.Meachem was injured during the play. PENALTY on NYJ-D.Walls Defensive Holding 5 yards enforced at NYJ 45 - No Play.,17,14,2012 -20121223_SD@NYJ,3,17,26,SD,NYJ,1,10,40,(2:26) (Shotgun) R.Brown right tackle to NYJ 34 for 6 yards (C.Pace).,17,14,2012 -20121223_SD@NYJ,3,16,42,SD,NYJ,2,4,34,(1:42) (Shotgun) P.Rivers pass short left to A.Gates for 34 yards TOUCHDOWN.,17,14,2012 -20121223_SD@NYJ,3,16,42,SD,NYJ,,,34,N.Novak extra point is GOOD Center-R.Hadnot Holder-M.Scifres.,17,14,2012 -20121223_SD@NYJ,3,16,42,SD,NYJ,,,34,N.Novak kicks 65 yards from SD 35 to end zone Touchback.,24,14,2012 -20121223_SD@NYJ,3,16,34,NYJ,SD,1,10,80,(1:34) G.McElroy pass short middle to B.Edwards to NYJ 33 for 13 yards (E.Weddle).,14,24,2012 -20121223_SD@NYJ,3,15,57,NYJ,SD,1,10,67,(:57) S.Greene left end to NYJ 33 for no gain (J.Johnson; A.Cason). SD-B.Taylor was injured during the play.,14,24,2012 -20121223_SD@NYJ,3,15,28,NYJ,SD,2,10,67,(:28) G.McElroy pass incomplete short left to K.Reuland [A.Garay].,14,24,2012 -20121223_SD@NYJ,3,15,24,NYJ,SD,3,10,67,(:24) (Shotgun) G.McElroy pass deep right intended for E.Gates INTERCEPTED by C.Lynch at NYJ 49. C.Lynch to NYJ 19 for 30 yards (B.Edwards).,14,24,2012 -20121223_SD@NYJ,3,15,10,SD,NYJ,1,10,19,(:10) J.Battle left tackle to NYJ 18 for 1 yard (K.Wilson; B.Scott).,24,14,2012 -20121223_SD@NYJ,4,15,0,SD,NYJ,2,9,18,(15:00) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,24,14,2012 -20121223_SD@NYJ,4,14,55,SD,NYJ,3,9,18,(14:55) (Shotgun) P.Rivers left end ran ob at NYJ 10 for 8 yards.,24,14,2012 -20121223_SD@NYJ,4,14,11,SD,NYJ,4,1,10,(14:11) N.Novak 27 yard field goal is GOOD Center-R.Hadnot Holder-M.Scifres.,24,14,2012 -20121223_SD@NYJ,4,14,11,SD,NYJ,,,10,N.Novak kicks 71 yards from SD 35 to NYJ -6. J.McKnight pushed ob at NYJ 40 for 46 yards (N.Novak).,27,14,2012 -20121223_SD@NYJ,4,14,0,NYJ,SD,1,10,60,(14:00) G.McElroy pass short left to B.Edwards to 50 for 10 yards (A.Cason) [E.Weddle].,14,27,2012 -20121223_SD@NYJ,4,13,23,NYJ,SD,1,10,50,(13:23) B.Powell right tackle to SD 48 for 2 yards (J.Johnson).,14,27,2012 -20121223_SD@NYJ,4,12,47,NYJ,SD,2,8,48,(12:47) (Shotgun) G.McElroy pass short right to C.Schilens to SD 24 for 24 yards (Q.Jammer) [E.Weddle].,14,27,2012 -20121223_SD@NYJ,4,11,58,NYJ,SD,1,10,24,(11:58) Direct snap to J.Kerley. J.Kerley up the middle to SD 22 for 2 yards (L.English).,14,27,2012 -20121223_SD@NYJ,4,11,21,NYJ,SD,2,8,22,(11:21) G.McElroy pass incomplete short left to S.Greene [T.Spikes].,14,27,2012 -20121223_SD@NYJ,4,11,16,NYJ,SD,3,8,22,(11:16) (Shotgun) G.McElroy pass incomplete short left to E.Gates.,14,27,2012 -20121223_SD@NYJ,4,11,16,NYJ,SD,4,8,22,(11:16) N.Folk 40 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,14,27,2012 -20121223_SD@NYJ,4,11,16,NYJ,SD,,,22,N.Folk kicks 65 yards from NYJ 35 to SD 0. M.Spurlock pushed ob at SD 14 for 14 yards (G.McIntyre).,17,27,2012 -20121223_SD@NYJ,4,11,4,SD,NYJ,1,10,86,(11:04) J.Battle right tackle to SD 23 for 9 yards (D.Harris).,27,17,2012 -20121223_SD@NYJ,4,10,25,SD,NYJ,2,1,77,(10:25) J.Battle right tackle to SD 26 for 3 yards (S.Pouha).,27,17,2012 -20121223_SD@NYJ,4,9,39,SD,NYJ,1,10,74,(9:39) P.Rivers pass incomplete short right to E.Royal.,27,17,2012 -20121223_SD@NYJ,4,9,33,SD,NYJ,2,10,74,(9:33) J.Battle left guard to SD 27 for 1 yard (M.Devito; C.Pace). NYJ-M.Devito was injured during the play.,27,17,2012 -20121223_SD@NYJ,4,8,57,SD,NYJ,3,9,73,(8:57) (Shotgun) P.Rivers pass incomplete deep right to E.Royal (D.Walls). PENALTY on NYJ-J.McKnight Defensive Holding 5 yards enforced at SD 27 - No Play.,27,17,2012 -20121223_SD@NYJ,4,8,50,SD,NYJ,1,10,68,(8:50) J.Battle right tackle to SD 33 for 1 yard (M.Wilkerson; B.Scott).,27,17,2012 -20121223_SD@NYJ,4,8,3,SD,NYJ,2,9,67,(8:03) J.Battle right tackle to SD 36 for 3 yards (D.Harris).,27,17,2012 -20121223_SD@NYJ,4,7,18,SD,NYJ,3,6,64,(7:18) (Shotgun) P.Rivers pass short right to R.Brown to SD 39 for 3 yards (A.Cromartie).,27,17,2012 -20121223_SD@NYJ,4,6,39,SD,NYJ,4,3,61,(6:39) M.Scifres punts 41 yards to NYJ 20 Center-K.Nelson fair catch by J.Kerley. PENALTY on NYJ-J.Kerley Invalid Fair Catch Signal 5 yards enforced at NYJ 20.,27,17,2012 -20121223_SD@NYJ,4,6,33,NYJ,SD,1,10,85,(6:33) G.McElroy pass short left to E.Gates to NYJ 29 for 14 yards (A.Cason).,17,27,2012 -20121223_SD@NYJ,4,6,5,NYJ,SD,1,10,71,(6:05) (Shotgun) G.McElroy pass short middle to B.Powell to NYJ 34 for 5 yards (D.Butler).,17,27,2012 -20121223_SD@NYJ,4,5,42,NYJ,SD,2,5,66,(5:42) (No Huddle Shotgun) G.McElroy pass short left to E.Gates to NYJ 43 for 9 yards (A.Cason).,17,27,2012 -20121223_SD@NYJ,4,5,22,NYJ,SD,1,10,57,(5:22) (No Huddle Shotgun) G.McElroy scrambles right tackle to SD 42 for 15 yards (K.Nelson).,17,27,2012 -20121223_SD@NYJ,4,4,54,NYJ,SD,1,10,42,(4:54) (No Huddle Shotgun) G.McElroy pass incomplete short left to E.Gates.,17,27,2012 -20121223_SD@NYJ,4,4,51,NYJ,SD,2,10,42,(4:51) (Shotgun) G.McElroy sacked at NYJ 47 for -11 yards (S.Phillips). FUMBLES (S.Phillips) RECOVERED by SD-S.Phillips at NYJ 44. S.Phillips to NYJ 44 for no gain (A.Howard).,17,27,2012 -20121223_SD@NYJ,4,4,46,SD,NYJ,1,10,44,(4:46) J.Battle right tackle to NYJ 43 for 1 yard (M.Wilkerson).,27,17,2012 -20121223_SD@NYJ,4,4,39,SD,NYJ,2,9,43,(4:39) J.Battle right tackle to NYJ 44 for -1 yards (B.Scott).,27,17,2012 -20121223_SD@NYJ,4,4,33,SD,NYJ,3,10,44,(4:33) (Shotgun) P.Rivers sacked at SD 49 for -7 yards (M.Wilkerson).,27,17,2012 -20121223_SD@NYJ,4,3,45,SD,NYJ,4,17,51,(3:45) M.Scifres punts 38 yards to NYJ 13 Center-K.Nelson downed by SD-D.Rosario.,27,17,2012 -20121223_SD@NYJ,4,3,33,NYJ,SD,1,10,87,(3:33) (Shotgun) G.McElroy pass short middle to B.Powell to NYJ 23 for 10 yards (E.Weddle).,17,27,2012 -20121223_SD@NYJ,4,3,7,NYJ,SD,1,10,77,(3:07) (No Huddle Shotgun) G.McElroy pass short middle to B.Powell to NYJ 35 for 12 yards (A.Cason).,17,27,2012 -20121223_SD@NYJ,4,2,43,NYJ,SD,1,10,65,(2:43) (No Huddle Shotgun) G.McElroy pass incomplete short middle to J.Cumberland (D.Butler).,17,27,2012 -20121223_SD@NYJ,4,2,42,NYJ,SD,2,10,65,(2:42) (Shotgun) G.McElroy sacked at NYJ 32 for -3 yards (K.Reyes).,17,27,2012 -20121223_SD@NYJ,4,2,16,NYJ,SD,3,13,68,(2:16) (No Huddle Shotgun) G.McElroy sacked at NYJ 26 for -6 yards (K.Reyes).,17,27,2012 -20121223_SD@NYJ,4,2,0,NYJ,SD,4,19,74,(2:00) (Shotgun) G.McElroy sacked at NYJ 17 for -9 yards (C.Liuget).,17,27,2012 -20121223_SD@NYJ,4,1,54,SD,NYJ,1,10,17,(1:54) P.Rivers kneels to NYJ 18 for -1 yards.,27,17,2012 -20121223_SD@NYJ,4,1,54,SD,NYJ,2,11,18,(1:54) P.Rivers kneels to NYJ 19 for -1 yards.,27,17,2012 -20121223_SD@NYJ,4,0,32,SD,NYJ,3,12,19,(:32) P.Rivers kneels to NYJ 20 for -1 yards.,27,17,2012 -20121223_SD@NYJ,4,0,32,SD,NYJ,,,19,                      ,27,17,2012 -20121223_CLE@DEN,1,0,0,CLE,DEN,,,19,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,0,0,2012 -20121223_CLE@DEN,1,60,0,DEN,CLE,1,10,80,(15:00) K.Moreno up the middle to DEN 28 for 8 yards (C.Robertson).,0,0,2012 -20121223_CLE@DEN,1,59,36,DEN,CLE,2,2,72,(14:36) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 33 for 5 yards (C.Robertson).,0,0,2012 -20121223_CLE@DEN,1,59,10,DEN,CLE,1,10,67,(14:10) (Shotgun) P.Manning pass short left to D.Thomas to CLV 44 for 23 yards (C.Robertson).,0,0,2012 -20121223_CLE@DEN,1,58,46,DEN,CLE,1,10,44,(13:46) K.Moreno right guard to CLV 40 for 4 yards (J.Sheard).,0,0,2012 -20121223_CLE@DEN,1,58,20,DEN,CLE,2,6,40,(13:20) (Shotgun) P.Manning pass short left to D.Thomas ran ob at CLV 28 for 12 yards.,0,0,2012 -20121223_CLE@DEN,1,57,55,DEN,CLE,1,10,28,(12:55) (Shotgun) P.Manning pass incomplete short left to R.Hillman.,0,0,2012 -20121223_CLE@DEN,1,57,50,DEN,CLE,2,10,28,(12:50) (Shotgun) R.Hillman left guard to CLV 22 for 6 yards (B.Winn).,0,0,2012 -20121223_CLE@DEN,1,57,17,DEN,CLE,3,4,22,(12:17) (Shotgun) P.Manning pass deep left to D.Thomas for 22 yards TOUCHDOWN.,0,0,2012 -20121223_CLE@DEN,1,57,17,DEN,CLE,,,22,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121223_CLE@DEN,1,57,17,DEN,CLE,,,22,M.Prater kicks 65 yards from DEN 35 to CLV 0. J.Cribbs to CLV 28 for 28 yards (M.Willis).,7,0,2012 -20121223_CLE@DEN,1,57,2,CLE,DEN,1,10,72,(12:02) (Shotgun) B.Weeden pass short right to C.Ogbonnaya to CLV 30 for 2 yards (C.Harris).,0,7,2012 -20121223_CLE@DEN,1,56,29,CLE,DEN,2,8,70,(11:29) B.Weeden pass short left to G.Little to CLV 39 for 9 yards (C.Harris).,0,7,2012 -20121223_CLE@DEN,1,55,54,CLE,DEN,1,10,61,(10:54) PENALTY on CLV-S.Lauvao False Start 5 yards enforced at CLV 39 - No Play.,0,7,2012 -20121223_CLE@DEN,1,55,35,CLE,DEN,1,15,66,(10:35) T.Richardson up the middle to CLV 42 for 8 yards (K.Brooking W.Woodyard).,0,7,2012 -20121223_CLE@DEN,1,55,2,CLE,DEN,2,7,58,(10:02) T.Richardson up the middle to CLV 49 for 7 yards (K.Brooking).,0,7,2012 -20121223_CLE@DEN,1,54,23,CLE,DEN,1,10,51,(9:23) B.Weeden pass short right to B.Watson to DEN 38 for 13 yards (M.Adams).,0,7,2012 -20121223_CLE@DEN,1,53,49,CLE,DEN,1,10,38,(8:49) T.Richardson left tackle to DEN 35 for 3 yards (M.Unrein W.Woodyard).,0,7,2012 -20121223_CLE@DEN,1,53,13,CLE,DEN,2,7,35,(8:13) B.Weeden pass short right to B.Watson to DEN 20 for 15 yards (R.Moore).,0,7,2012 -20121223_CLE@DEN,1,52,32,CLE,DEN,1,10,20,(7:32) T.Richardson left tackle to DEN 18 for 2 yards (M.Unrein).,0,7,2012 -20121223_CLE@DEN,1,51,55,CLE,DEN,2,8,18,(6:55) B.Weeden pass short right to B.Smelley to DEN 15 for 3 yards (C.Harris).,0,7,2012 -20121223_CLE@DEN,1,51,15,CLE,DEN,3,5,15,(6:15) (Shotgun) B.Weeden pass short right to J.Gordon to DEN 8 for 7 yards (D.Trevathan).,0,7,2012 -20121223_CLE@DEN,1,50,32,CLE,DEN,1,8,8,(5:32) B.Weeden pass incomplete short left to J.Gordon (J.Bannan).,0,7,2012 -20121223_CLE@DEN,1,50,28,CLE,DEN,2,8,8,(5:28) PENALTY on CLV-A.Mack False Start 5 yards enforced at DEN 8 - No Play.,0,7,2012 -20121223_CLE@DEN,1,50,28,CLE,DEN,2,13,13,(5:28) T.Richardson left end to DEN 9 for 4 yards (O.Bolden M.Unrein).,0,7,2012 -20121223_CLE@DEN,1,49,47,CLE,DEN,3,9,9,(4:47) (Shotgun) B.Weeden pass incomplete short right to J.Cooper (M.Adams).,0,7,2012 -20121223_CLE@DEN,1,49,40,CLE,DEN,4,9,9,(4:40) P.Dawson 27 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,7,2012 -20121223_CLE@DEN,1,49,40,CLE,DEN,,,9,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,3,7,2012 -20121223_CLE@DEN,1,49,35,DEN,CLE,1,10,80,(4:35) K.Moreno up the middle to DEN 28 for 8 yards (D.Jackson).,7,3,2012 -20121223_CLE@DEN,1,49,12,DEN,CLE,2,2,72,(4:12) (Shotgun) P.Manning pass short left to D.Thomas to DEN 34 for 6 yards (R.Hodges).,7,3,2012 -20121223_CLE@DEN,1,48,37,DEN,CLE,1,10,66,(3:37) (Shotgun) P.Manning pass short right to E.Decker to DEN 43 for 9 yards (J.Haden).,7,3,2012 -20121223_CLE@DEN,1,48,11,DEN,CLE,2,1,57,(3:11) K.Moreno up the middle to DEN 47 for 4 yards (U.Young).,7,3,2012 -20121223_CLE@DEN,1,47,43,DEN,CLE,1,10,53,(2:43) (Shotgun) P.Manning pass short right to J.Dreessen to CLV 49 for 4 yards (U.Young).,7,3,2012 -20121223_CLE@DEN,1,47,15,DEN,CLE,2,6,49,(2:15) (Shotgun) P.Manning pass short left to D.Thomas to CLV 45 for 4 yards (S.Brown).,7,3,2012 -20121223_CLE@DEN,1,46,44,DEN,CLE,3,2,45,(1:44) (Shotgun) PENALTY on CLV-J.Sheard Neutral Zone Infraction 5 yards enforced at CLV 45 - No Play.,7,3,2012 -20121223_CLE@DEN,1,46,32,DEN,CLE,1,10,40,(1:32) K.Moreno left guard to CLV 36 for 4 yards (C.Robertson A.Rubin).,7,3,2012 -20121223_CLE@DEN,1,46,2,DEN,CLE,2,6,36,(1:02) (Shotgun) P.Manning pass short right to B.Stokley to CLV 31 for 5 yards (D.Jackson).,7,3,2012 -20121223_CLE@DEN,1,45,38,DEN,CLE,3,1,31,(:38) K.Moreno left tackle to CLV 29 for 2 yards (J.Parker).,7,3,2012 -20121223_CLE@DEN,1,45,11,DEN,CLE,1,10,29,(:11) (Shotgun) R.Hillman left guard to CLV 18 for 11 yards (E.Hagg). PENALTY on DEN-Z.Beadles Offensive Holding 10 yards enforced at CLV 29 - No Play.,7,3,2012 -20121223_CLE@DEN,2,45,0,DEN,CLE,1,20,39,(15:00) K.Moreno right end to CLV 31 for 8 yards (P.Taylor).,7,3,2012 -20121223_CLE@DEN,2,44,32,DEN,CLE,2,12,31,(14:32) (Shotgun) P.Manning pass short middle to K.Moreno to CLV 25 for 6 yards (B.Skrine).,7,3,2012 -20121223_CLE@DEN,2,43,53,DEN,CLE,3,6,25,(13:53) (Shotgun) P.Manning pass short middle to E.Decker to CLV 11 for 14 yards (J.Haden).,7,3,2012 -20121223_CLE@DEN,2,43,24,DEN,CLE,1,10,11,(13:24) J.Hester left tackle to CLV 10 for 1 yard (J.Hughes; D.Jackson).,7,3,2012 -20121223_CLE@DEN,2,42,53,DEN,CLE,2,9,10,(12:53) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,7,3,2012 -20121223_CLE@DEN,2,42,47,DEN,CLE,3,9,10,(12:47) (Shotgun) P.Manning pass short middle to E.Decker for 10 yards TOUCHDOWN.,7,3,2012 -20121223_CLE@DEN,2,42,47,DEN,CLE,,,10,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,3,2012 -20121223_CLE@DEN,2,42,47,DEN,CLE,,,10,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,3,2012 -20121223_CLE@DEN,2,42,40,CLE,DEN,1,10,80,(12:40) T.Richardson right tackle to CLV 25 for 5 yards (C.Harris D.Wolfe).,3,14,2012 -20121223_CLE@DEN,2,42,6,CLE,DEN,2,5,75,(12:06) B.Weeden pass short left to A.Smith to CLV 23 for -2 yards (J.Bannan).,3,14,2012 -20121223_CLE@DEN,2,41,25,CLE,DEN,3,7,77,(11:25) (Shotgun) B.Weeden pass short left to B.Watson pushed ob at CLV 42 for 19 yards (R.Moore).,3,14,2012 -20121223_CLE@DEN,2,40,59,CLE,DEN,1,10,58,(10:59) (Shotgun) J.Cribbs left end pushed ob at CLV 45 for 3 yards (M.Adams).,3,14,2012 -20121223_CLE@DEN,2,40,34,CLE,DEN,2,7,55,(10:34) B.Weeden pass deep left intended for B.Watson INTERCEPTED by R.Moore at DEN 38. R.Moore for 62 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. B.Weeden pass incomplete deep left to B.Watson.,3,14,2012 -20121223_CLE@DEN,2,40,29,CLE,DEN,3,7,55,(10:29) (Shotgun) B.Weeden pass incomplete short left to G.Little. Penalty on CLV-J.Cribbs Defensive Pass Interference declined.,3,14,2012 -20121223_CLE@DEN,2,40,24,CLE,DEN,4,7,55,(10:24) R.Hodges punts 43 yards to DEN 12 Center-C.Yount fair catch by J.Leonhard.,3,14,2012 -20121223_CLE@DEN,2,40,16,DEN,CLE,1,10,88,(10:16) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 25 for 13 yards (U.Young).,14,3,2012 -20121223_CLE@DEN,2,39,51,DEN,CLE,1,10,75,(9:51) K.Moreno left guard to DEN 27 for 2 yards (J.Sheard; D.Jackson).,14,3,2012 -20121223_CLE@DEN,2,39,21,DEN,CLE,2,8,73,(9:21) P.Manning pass short left to B.Stokley to DEN 30 for 3 yards (D.Jackson). PENALTY on CLV-S.Brown Defensive Holding 5 yards enforced at DEN 27 - No Play.,14,3,2012 -20121223_CLE@DEN,2,38,59,DEN,CLE,1,10,68,(8:59) (Shotgun) R.Hillman left end to DEN 44 for 12 yards (U.Young; C.Robertson).,14,3,2012 -20121223_CLE@DEN,2,38,29,DEN,CLE,1,10,56,(8:29) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,14,3,2012 -20121223_CLE@DEN,2,38,26,DEN,CLE,2,10,56,(8:26) (Shotgun) P.Manning pass incomplete short right to M.Willis [H.Davis].,14,3,2012 -20121223_CLE@DEN,2,38,21,DEN,CLE,3,10,56,(8:21) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,14,3,2012 -20121223_CLE@DEN,2,38,17,DEN,CLE,4,10,56,(8:17) B.Colquitt punts 47 yards to CLV 9 Center-A.Brewer. J.Cribbs pushed ob at CLV 20 for 11 yards (M.Willis). PENALTY on CLV Illegal Block Above the Waist 10 yards enforced at CLV 20.,14,3,2012 -20121223_CLE@DEN,2,37,58,CLE,DEN,1,10,90,(7:58) M.Hardesty left guard to CLV 13 for 3 yards (J.Bannan; C.Bailey).,3,14,2012 -20121223_CLE@DEN,2,37,24,CLE,DEN,2,7,87,(7:24) B.Weeden pass short right to M.Hardesty pushed ob at CLV 20 for 7 yards (V.Miller).,3,14,2012 -20121223_CLE@DEN,2,37,1,CLE,DEN,1,10,80,(7:01) B.Weeden pass short left to G.Little pushed ob at CLV 41 for 21 yards (W.Woodyard).,3,14,2012 -20121223_CLE@DEN,2,36,32,CLE,DEN,1,10,59,(6:32) M.Hardesty left tackle to CLV 47 for 6 yards (C.Bailey).,3,14,2012 -20121223_CLE@DEN,2,35,58,CLE,DEN,2,4,53,(5:58) B.Weeden pass short right to G.Little to CLV 49 for 2 yards (C.Harris).,3,14,2012 -20121223_CLE@DEN,2,35,13,CLE,DEN,3,2,51,(5:13) (Shotgun) B.Weeden pass incomplete short left to B.Watson (M.Adams).,3,14,2012 -20121223_CLE@DEN,2,35,7,CLE,DEN,4,2,51,(5:07) R.Hodges punts 45 yards to DEN 6 Center-C.Yount. J.Leonhard MUFFS catch and recovers at DEN 6. J.Leonhard to DEN 6 for no gain (C.Yount).,3,14,2012 -20121223_CLE@DEN,2,34,57,DEN,CLE,1,10,94,(4:57) K.Moreno left guard to DEN 6 for no gain (A.Rubin).,14,3,2012 -20121223_CLE@DEN,2,34,29,DEN,CLE,2,10,94,(4:29) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 11 for 5 yards (F.Rucker).,14,3,2012 -20121223_CLE@DEN,2,33,53,DEN,CLE,3,5,89,(3:53) (Shotgun) P.Manning pass short middle to D.Thomas pushed ob at DEN 43 for 32 yards (J.Haden). CLV-S.Brown was injured during the play. PENALTY on DEN-B.Stokley Offensive Pass Interference 5 yards enforced at DEN 11 - No Play.,14,3,2012 -20121223_CLE@DEN,2,33,26,DEN,CLE,3,10,94,(3:26) (Shotgun) P.Manning pass short middle to K.Moreno to DEN 18 for 12 yards (C.Robertson).,14,3,2012 -20121223_CLE@DEN,2,32,48,DEN,CLE,1,10,82,(2:48) P.Manning pass incomplete short left to M.Willis.,14,3,2012 -20121223_CLE@DEN,2,32,45,DEN,CLE,2,10,82,(2:45) (Shotgun) P.Manning pass short left to K.Moreno to DEN 32 for 14 yards (C.Robertson).,14,3,2012 -20121223_CLE@DEN,2,32,18,DEN,CLE,1,10,68,(2:18) R.Hillman left tackle to DEN 39 for 7 yards (C.Robertson).,14,3,2012 -20121223_CLE@DEN,2,32,0,DEN,CLE,2,3,61,(2:00) (Shotgun) PENALTY on DEN-O.Franklin False Start 5 yards enforced at DEN 39 - No Play.,14,3,2012 -20121223_CLE@DEN,2,32,0,DEN,CLE,2,8,66,(2:00) (Shotgun) P.Manning pass incomplete short middle to B.Stokley. PENALTY on CLV-T.Wade Defensive Pass Interference 6 yards enforced at DEN 34 - No Play.,14,3,2012 -20121223_CLE@DEN,2,31,56,DEN,CLE,1,10,60,(1:56) (Shotgun) P.Manning pass deep left to J.Tamme to CLV 24 for 36 yards (B.Skrine).,14,3,2012 -20121223_CLE@DEN,2,31,22,DEN,CLE,1,10,24,(1:22) (Shotgun) P.Manning pass incomplete deep right to B.Stokley.,14,3,2012 -20121223_CLE@DEN,2,31,17,DEN,CLE,2,10,24,(1:17) (Shotgun) K.Moreno up the middle to CLV 28 for -4 yards (A.Rubin).,14,3,2012 -20121223_CLE@DEN,2,30,38,DEN,CLE,3,14,28,(:38) (Shotgun) P.Manning pass short left to E.Decker pushed ob at CLV 13 for 15 yards (B.Skrine).,14,3,2012 -20121223_CLE@DEN,2,30,32,DEN,CLE,1,10,13,(:32) (Shotgun) P.Manning pass short left to K.Moreno pushed ob at CLV 7 for 6 yards (C.Robertson).,14,3,2012 -20121223_CLE@DEN,2,30,27,DEN,CLE,2,4,7,(:27) K.Moreno up the middle to CLV 5 for 2 yards (B.Skrine; F.Rucker).,14,3,2012 -20121223_CLE@DEN,2,30,21,DEN,CLE,3,2,5,(:21) (Shotgun) PENALTY on DEN Delay of Game 5 yards enforced at CLV 5 - No Play.,14,3,2012 -20121223_CLE@DEN,2,30,21,DEN,CLE,3,7,10,(:21) (Shotgun) P.Manning pass short left intended for K.Moreno INTERCEPTED by U.Young at CLV 0. Touchback. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,3,2012 -20121223_CLE@DEN,2,30,14,CLE,DEN,1,10,80,(:14) B.Weeden kneels to CLV 19 for -1 yards.,3,14,2012 -20121223_CLE@DEN,3,30,0,DEN,CLE,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,3,2012 -20121223_CLE@DEN,3,30,0,CLE,DEN,1,10,80,(15:00) T.Richardson left guard to CLV 34 for 14 yards (K.Brooking).,3,14,2012 -20121223_CLE@DEN,3,29,27,CLE,DEN,1,10,66,(14:27) B.Weeden scrambles up the middle to CLV 37 for 3 yards (K.Brooking).,3,14,2012 -20121223_CLE@DEN,3,28,49,CLE,DEN,2,7,63,(13:49) B.Weeden pass short left to G.Little to CLV 45 for 8 yards (C.Harris).,3,14,2012 -20121223_CLE@DEN,3,28,17,CLE,DEN,1,10,55,(13:17) T.Richardson right guard to DEN 46 for 9 yards (K.Brooking; M.Jackson).,3,14,2012 -20121223_CLE@DEN,3,27,34,CLE,DEN,2,1,46,(12:34) (Shotgun) B.Weeden scrambles left end to DEN 44 for 2 yards (C.Bailey). PENALTY on DEN-C.Bailey Personal Foul 15 yards enforced at DEN 44.,3,14,2012 -20121223_CLE@DEN,3,27,17,CLE,DEN,1,10,29,(12:17) T.Richardson right guard to DEN 28 for 1 yard (C.Harris).,3,14,2012 -20121223_CLE@DEN,3,26,37,CLE,DEN,2,9,28,(11:37) (Shotgun) B.Weeden pass incomplete deep left to J.Gordon.,3,14,2012 -20121223_CLE@DEN,3,26,32,CLE,DEN,3,9,28,(11:32) (Shotgun) B.Weeden sacked at DEN 35 for -7 yards (sack split by V.Miller and E.Dumervil). Penalty on CLV-M.Schwartz Offensive Holding declined.,3,14,2012 -20121223_CLE@DEN,3,26,15,CLE,DEN,4,16,35,(11:15) P.Dawson 53 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,3,14,2012 -20121223_CLE@DEN,3,26,15,CLE,DEN,,,35,P.Dawson kicks 62 yards from CLV 35 to DEN 3. T.Holliday to DEN 9 for 6 yards (J.Bademosi).,6,14,2012 -20121223_CLE@DEN,3,25,59,DEN,CLE,1,10,91,(10:59) (Shotgun) P.Manning pass short left to D.Thomas to DEN 17 for 8 yards (B.Skrine).,14,6,2012 -20121223_CLE@DEN,3,25,30,DEN,CLE,2,2,83,(10:30) K.Moreno left tackle to DEN 19 for 2 yards (J.Sheard).,14,6,2012 -20121223_CLE@DEN,3,24,51,DEN,CLE,1,10,81,(9:51) (Shotgun) P.Manning pass short right to B.Stokley to DEN 22 for 3 yards (J.Sheard).,14,6,2012 -20121223_CLE@DEN,3,24,19,DEN,CLE,2,7,78,(9:19) (Shotgun) P.Manning pass incomplete deep left to D.Thomas [B.Winn].,14,6,2012 -20121223_CLE@DEN,3,24,12,DEN,CLE,3,7,78,(9:12) (Shotgun) P.Manning pass short middle to E.Decker to DEN 31 for 9 yards (T.Wade). Penalty on CLV-B.Skrine Illegal Use of Hands declined.,14,6,2012 -20121223_CLE@DEN,3,23,51,DEN,CLE,1,10,69,(8:51) K.Moreno left tackle to DEN 32 for 1 yard (C.Robertson).,14,6,2012 -20121223_CLE@DEN,3,23,17,DEN,CLE,2,9,68,(8:17) (Shotgun) P.Manning pass short right to D.Thomas to DEN 37 for 5 yards (J.Sheard).,14,6,2012 -20121223_CLE@DEN,3,22,34,DEN,CLE,3,4,63,(7:34) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at CLV 30 for 33 yards (C.Robertson; J.Haden).,14,6,2012 -20121223_CLE@DEN,3,21,57,DEN,CLE,1,10,30,(6:57) R.Hillman up the middle to CLV 26 for 4 yards (C.Robertson).,14,6,2012 -20121223_CLE@DEN,3,21,20,DEN,CLE,2,6,26,(6:20) (Shotgun) P.Manning pass short left to B.Stokley to CLV 14 for 12 yards (B.Skrine).,14,6,2012 -20121223_CLE@DEN,3,20,34,DEN,CLE,1,10,14,(5:34) (Shotgun) P.Manning pass short left to K.Moreno to CLV 3 for 11 yards (U.Young; D.Jackson).,14,6,2012 -20121223_CLE@DEN,3,20,9,DEN,CLE,1,3,3,(5:09) K.Moreno right guard to CLV 2 for 1 yard (E.Hagg). PENALTY on DEN-R.Clady Illegal Formation 5 yards enforced at CLV 3 - No Play.,14,6,2012 -20121223_CLE@DEN,3,19,39,DEN,CLE,1,8,8,(4:39) (Shotgun) P.Manning pass short left to E.Decker for 8 yards TOUCHDOWN.,14,6,2012 -20121223_CLE@DEN,3,19,39,DEN,CLE,,,8,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,6,2012 -20121223_CLE@DEN,3,19,39,DEN,CLE,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,21,6,2012 -20121223_CLE@DEN,3,19,33,CLE,DEN,1,10,80,(4:33) B.Weeden pass incomplete short right to T.Richardson.,6,21,2012 -20121223_CLE@DEN,3,19,27,CLE,DEN,2,10,80,(4:27) (Shotgun) B.Weeden sacked at CLV 11 for -9 yards (V.Miller). CLV-B.Weeden was injured during the play.,6,21,2012 -20121223_CLE@DEN,3,18,54,CLE,DEN,3,19,89,(3:54) (Shotgun) C.McCoy sacked at CLV 8 for -3 yards (D.Wolfe).,6,21,2012 -20121223_CLE@DEN,3,18,26,CLE,DEN,4,22,92,(3:26) R.Hodges punts 42 yards to 50 Center-C.Yount. T.Holliday to CLV 48 for 2 yards (J.Cribbs).,6,21,2012 -20121223_CLE@DEN,3,18,15,DEN,CLE,1,10,48,(3:15) (Shotgun) K.Moreno left guard to CLV 44 for 4 yards (F.Rucker).,21,6,2012 -20121223_CLE@DEN,3,17,35,DEN,CLE,2,6,44,(2:35) (Shotgun) P.Manning pass short left to D.Thomas to CLV 43 for 1 yard (D.Jackson).,21,6,2012 -20121223_CLE@DEN,3,17,0,DEN,CLE,3,5,43,(2:00) (Shotgun) P.Manning pass short left to B.Stokley to CLV 36 for 7 yards (T.Wade).,21,6,2012 -20121223_CLE@DEN,3,16,17,DEN,CLE,1,10,36,(1:17) (Shotgun) P.Manning pass deep left to D.Thomas to CLV 15 for 21 yards (B.Skrine).,21,6,2012 -20121223_CLE@DEN,3,15,44,DEN,CLE,1,10,15,(:44) K.Moreno left end pushed ob at CLV 8 for 7 yards (B.Skrine).,21,6,2012 -20121223_CLE@DEN,3,15,20,DEN,CLE,2,3,8,(:20) K.Moreno up the middle to CLV 9 for -1 yards (C.Robertson).,21,6,2012 -20121223_CLE@DEN,4,15,0,DEN,CLE,3,4,9,(15:00) P.Manning pass incomplete short left to D.Thomas.,21,6,2012 -20121223_CLE@DEN,4,14,57,DEN,CLE,4,4,9,(14:57) M.Prater 27 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,21,6,2012 -20121223_CLE@DEN,4,14,57,DEN,CLE,,,9,M.Prater kicks 69 yards from DEN 35 to CLV -4. J.Cribbs to CLV 28 for 32 yards (R.Moore).,24,6,2012 -20121223_CLE@DEN,4,14,43,CLE,DEN,1,10,72,(14:43) M.Hardesty up the middle to CLV 33 for 5 yards (V.Miller).,6,24,2012 -20121223_CLE@DEN,4,14,10,CLE,DEN,2,5,67,(14:10) (Shotgun) C.McCoy pass incomplete deep middle to B.Watson.,6,24,2012 -20121223_CLE@DEN,4,14,5,CLE,DEN,3,5,67,(14:05) (Shotgun) C.McCoy pass short left to C.Ogbonnaya to CLV 33 for no gain (E.Dumervil; W.Woodyard).,6,24,2012 -20121223_CLE@DEN,4,13,25,CLE,DEN,4,5,67,(13:25) R.Hodges punts 39 yards to DEN 28 Center-C.Yount. T.Holliday MUFFS catch recovered by DEN-C.Harris at DEN 28. C.Harris to DEN 28 for no gain (K.Maiava).,6,24,2012 -20121223_CLE@DEN,4,13,16,DEN,CLE,1,10,72,(13:16) K.Moreno up the middle to DEN 31 for 3 yards (J.Hughes).,24,6,2012 -20121223_CLE@DEN,4,12,45,DEN,CLE,2,7,69,(12:45) (Shotgun) P.Manning pass incomplete short right to K.Moreno (J.Hughes).,24,6,2012 -20121223_CLE@DEN,4,12,41,DEN,CLE,3,7,69,(12:41) (Shotgun) PENALTY on CLV-J.Parker Neutral Zone Infraction 5 yards enforced at DEN 31 - No Play.,24,6,2012 -20121223_CLE@DEN,4,12,41,DEN,CLE,3,2,64,(12:41) (Shotgun) P.Manning pass incomplete short left to J.Tamme.,24,6,2012 -20121223_CLE@DEN,4,12,36,DEN,CLE,4,2,64,(12:36) B.Colquitt punts 44 yards to CLV 20 Center-A.Brewer. J.Cribbs MUFFS catch touched at CLV 21 RECOVERED by DEN-L.Ball at CLV 19. L.Ball to CLV 19 for no gain (J.Cribbs).,24,6,2012 -20121223_CLE@DEN,4,12,26,DEN,CLE,1,10,19,(12:26) (Shotgun) P.Manning pass incomplete deep left to D.Thomas. PENALTY on CLV-B.Skrine Defensive Pass Interference 18 yards enforced at CLV 19 - No Play.,24,6,2012 -20121223_CLE@DEN,4,12,20,DEN,CLE,1,1,1,(12:20) P.Manning pass incomplete short left to J.Dreessen.,24,6,2012 -20121223_CLE@DEN,4,12,14,DEN,CLE,2,1,1,(12:14) J.Hester up the middle for 1 yard TOUCHDOWN.,24,6,2012 -20121223_CLE@DEN,4,12,14,DEN,CLE,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,24,6,2012 -20121223_CLE@DEN,4,12,14,DEN,CLE,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,6,2012 -20121223_CLE@DEN,4,12,11,CLE,DEN,1,10,80,(12:11) (Shotgun) C.McCoy scrambles right end pushed ob at CLV 28 for 8 yards (O.Bolden). PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at CLV 20 - No Play.,6,31,2012 -20121223_CLE@DEN,4,12,11,CLE,DEN,1,5,75,(12:11) PENALTY on CLV-J.Greco False Start 5 yards enforced at CLV 25 - No Play.,6,31,2012 -20121223_CLE@DEN,4,11,16,CLE,DEN,1,10,80,(11:16) (Shotgun) C.McCoy pass short left to T.Benjamin to CLV 29 for 9 yards (O.Bolden).,6,31,2012 -20121223_CLE@DEN,4,10,43,CLE,DEN,2,1,71,(10:43) (Shotgun) C.McCoy pass incomplete short right to T.Benjamin.,6,31,2012 -20121223_CLE@DEN,4,10,42,CLE,DEN,3,1,71,(10:42) C.McCoy up the middle to CLV 31 for 2 yards (V.Miller).,6,31,2012 -20121223_CLE@DEN,4,10,16,CLE,DEN,1,10,69,(10:16) (Shotgun) C.McCoy pass incomplete short middle to B.Watson.,6,31,2012 -20121223_CLE@DEN,4,10,13,CLE,DEN,2,10,69,(10:13) (Shotgun) C.McCoy pass incomplete short left to B.Watson.,6,31,2012 -20121223_CLE@DEN,4,10,10,CLE,DEN,3,10,69,(10:10) (Shotgun) C.McCoy pass short middle to T.Richardson to CLV 36 for 5 yards (W.Woodyard).,6,31,2012 -20121223_CLE@DEN,4,9,27,CLE,DEN,4,5,64,(9:27) (Shotgun) C.McCoy pass short right to T.Richardson to CLV 42 for 6 yards (M.Adams).,6,31,2012 -20121223_CLE@DEN,4,8,59,CLE,DEN,1,10,58,(8:59) (Shotgun) C.McCoy pass deep right to T.Benjamin to DEN 37 for 21 yards (J.Leonhard).,6,31,2012 -20121223_CLE@DEN,4,8,33,CLE,DEN,1,10,37,(8:33) (Shotgun) C.McCoy pass short middle to G.Little to DEN 25 for 12 yards (C.Harris).,6,31,2012 -20121223_CLE@DEN,4,8,11,CLE,DEN,1,10,25,(8:11) (Shotgun) C.McCoy pass incomplete deep right to B.Watson (M.Adams) [M.Jackson]. PENALTY on DEN-M.Adams Defensive Pass Interference 19 yards enforced at DEN 25 - No Play.,6,31,2012 -20121223_CLE@DEN,4,8,0,CLE,DEN,1,6,6,(8:00) (Shotgun) C.McCoy pass short left to G.Little for 6 yards TOUCHDOWN.,6,31,2012 -20121223_CLE@DEN,4,8,0,CLE,DEN,,,6,TWO-POINT CONVERSION ATTEMPT. C.McCoy rushes up the middle. ATTEMPT FAILS.,6,31,2012 -20121223_CLE@DEN,4,8,0,CLE,DEN,,,6,(Onside Kick formation) P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,12,31,2012 -20121223_CLE@DEN,4,7,56,DEN,CLE,1,10,80,(7:56) K.Moreno left guard to DEN 22 for 2 yards (J.Sheard; F.Rucker).,31,12,2012 -20121223_CLE@DEN,4,7,19,DEN,CLE,2,8,78,(7:19) PENALTY on DEN-M.Ramirez False Start 5 yards enforced at DEN 22 - No Play.,31,12,2012 -20121223_CLE@DEN,4,6,46,DEN,CLE,2,13,83,(6:46) K.Moreno right tackle to DEN 18 for 1 yard (C.Robertson).,31,12,2012 -20121223_CLE@DEN,4,6,4,DEN,CLE,3,12,82,(6:04) (Shotgun) PENALTY on DEN-O.Franklin False Start 5 yards enforced at DEN 18 - No Play.,31,12,2012 -20121223_CLE@DEN,4,5,42,DEN,CLE,3,17,87,(5:42) (Shotgun) J.Hester right tackle to DEN 17 for 4 yards (D.Jackson).,31,12,2012 -20121223_CLE@DEN,4,4,56,DEN,CLE,4,13,83,(4:56) B.Colquitt punts 56 yards to CLV 27 Center-A.Brewer fair catch by J.Cribbs.,31,12,2012 -20121223_CLE@DEN,4,4,46,CLE,DEN,1,10,73,(4:46) (Shotgun) PENALTY on CLV-J.Thomas False Start 5 yards enforced at CLV 27 - No Play.,12,31,2012 -20121223_CLE@DEN,4,4,46,CLE,DEN,1,15,78,(4:46) (Shotgun) C.McCoy scrambles up the middle to CLV 37 for 15 yards (M.Adams).,12,31,2012 -20121223_CLE@DEN,4,4,20,CLE,DEN,1,10,63,(4:20) (Shotgun) C.McCoy pass deep right to T.Benjamin pushed ob at DEN 47 for 16 yards (O.Bolden).,12,31,2012 -20121223_CLE@DEN,4,4,14,CLE,DEN,1,10,47,(4:14) (Shotgun) C.McCoy pass incomplete short middle to B.Watson.,12,31,2012 -20121223_CLE@DEN,4,4,10,CLE,DEN,2,10,47,(4:10) (Shotgun) C.McCoy pass incomplete short right to T.Benjamin.,12,31,2012 -20121223_CLE@DEN,4,4,6,CLE,DEN,3,10,47,(4:06) (Shotgun) C.McCoy pass incomplete short middle to B.Watson (R.Moore).,12,31,2012 -20121223_CLE@DEN,4,4,2,CLE,DEN,4,10,47,(4:02) (Shotgun) C.McCoy sacked at CLV 45 for -8 yards (E.Dumervil).,12,31,2012 -20121223_CLE@DEN,4,3,57,DEN,CLE,1,10,45,(3:57) K.Moreno right guard to CLV 38 for 7 yards (K.Maiava). PENALTY on DEN Illegal Shift 5 yards enforced at CLV 45 - No Play.,31,12,2012 -20121223_CLE@DEN,4,3,51,DEN,CLE,1,15,50,(3:51) K.Moreno left tackle to CLV 47 for 3 yards (B.Skrine).,31,12,2012 -20121223_CLE@DEN,4,3,45,DEN,CLE,2,12,47,(3:45) K.Moreno right end to CLV 28 for 19 yards (E.Hagg).,31,12,2012 -20121223_CLE@DEN,4,3,34,DEN,CLE,1,10,28,(3:34) R.Hillman right tackle to CLV 24 for 4 yards (J.Haden).,31,12,2012 -20121223_CLE@DEN,4,3,27,DEN,CLE,2,6,24,(3:27) K.Moreno left tackle to CLV 25 for -1 yards (D.Jackson).,31,12,2012 -20121223_CLE@DEN,4,2,44,DEN,CLE,3,7,25,(2:44) R.Hillman right tackle to CLV 23 for 2 yards (J.Sheard).,31,12,2012 -20121223_CLE@DEN,4,2,0,DEN,CLE,4,5,23,(2:00) M.Prater 41 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,31,12,2012 -20121223_CLE@DEN,4,2,0,DEN,CLE,,,23,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,34,12,2012 -20121223_CLE@DEN,4,1,55,CLE,DEN,1,10,80,(1:55) (Shotgun) C.McCoy sacked at CLV 13 for -7 yards (sack split by E.Dumervil and W.Woodyard).,12,34,2012 -20121223_CLE@DEN,4,1,24,CLE,DEN,2,17,87,(1:24) (Shotgun) C.McCoy pass short middle to T.Richardson to CLV 17 for 4 yards (W.Woodyard).,12,34,2012 -20121223_CLE@DEN,4,0,50,CLE,DEN,3,13,83,(:50) (Shotgun) C.McCoy pass incomplete deep right to J.Cooper [M.Adams].,12,34,2012 -20121223_CLE@DEN,4,0,44,CLE,DEN,4,13,83,(:44) (Shotgun) C.McCoy sacked at CLV 10 for -7 yards (W.Woodyard).,12,34,2012 -20121223_CLE@DEN,4,0,39,DEN,CLE,1,10,10,(:39) B.Osweiler kneels to CLV 11 for -1 yards.,34,12,2012 -20121223_CLE@DEN,4,0,39,DEN,CLE,,,10,                      ,34,12,2012 -20121223_NYG@BAL,1,0,0,BAL,NYG,,,10,J.Tucker kicks 71 yards from BLT 35 to NYG -6. D.Wilson Touchback.,0,0,2012 -20121223_NYG@BAL,1,60,0,NYG,BAL,1,10,80,(15:00) E.Manning pass incomplete short right to H.Nicks (C.Graham).,0,0,2012 -20121223_NYG@BAL,1,59,57,NYG,BAL,2,10,80,(14:57) A.Bradshaw right guard to NYG 23 for 3 yards (T.Suggs C.Williams).,0,0,2012 -20121223_NYG@BAL,1,59,12,NYG,BAL,3,7,77,(14:12) (Shotgun) E.Manning sacked at NYG 14 for -9 yards (T.Suggs). PENALTY on BLT-T.Suggs Defensive Offside 5 yards enforced at NYG 23 - No Play.,0,0,2012 -20121223_NYG@BAL,1,58,49,NYG,BAL,3,2,72,(13:49) (Shotgun) A.Bradshaw right end to NYG 26 for -2 yards (C.Brown). Direct snap to Ahmad Bradshaw.,0,0,2012 -20121223_NYG@BAL,1,58,15,NYG,BAL,4,4,74,(13:15) (Punt formation) S.Weatherford punts 50 yards to BLT 24 Center-Z.DeOssie. J.Jones to BLT 27 for 3 yards (K.Lumpkin).,0,0,2012 -20121223_NYG@BAL,1,58,3,BAL,NYG,1,10,73,(13:03) J.Flacco pass short right to A.Boldin to BLT 33 for 6 yards (J.Williams C.Webster).,0,0,2012 -20121223_NYG@BAL,1,57,38,BAL,NYG,2,4,67,(12:38) (No Huddle) R.Rice left end ran ob at BLT 36 for 3 yards (J.Hosley).,0,0,2012 -20121223_NYG@BAL,1,57,31,BAL,NYG,3,1,64,(12:31) (No Huddle) R.Rice left end to NYG 50 for 14 yards (W.Hill).,0,0,2012 -20121223_NYG@BAL,1,56,57,BAL,NYG,1,10,50,(11:57) J.Flacco pass short left to R.Rice ran ob at NYG 43 for 7 yards (O.Umenyiora).,0,0,2012 -20121223_NYG@BAL,1,56,29,BAL,NYG,2,3,43,(11:29) J.Flacco pass short right to R.Rice to NYG 45 for -2 yards (A.Rolle).,0,0,2012 -20121223_NYG@BAL,1,55,56,BAL,NYG,3,5,45,(10:56) (No Huddle Shotgun) J.Flacco pass short right to A.Allen to NYG 40 for 5 yards (J.Williams).,0,0,2012 -20121223_NYG@BAL,1,55,20,BAL,NYG,1,10,40,(10:20) B.Pierce right guard to NYG 35 for 5 yards (M.Kiwanuka).,0,0,2012 -20121223_NYG@BAL,1,54,47,BAL,NYG,2,5,35,(9:47) (No Huddle) B.Pierce right end ran ob at NYG 17 for 18 yards (A.Rolle).,0,0,2012 -20121223_NYG@BAL,1,54,19,BAL,NYG,1,10,17,(9:19) J.Flacco pass incomplete deep right to J.Jones.,0,0,2012 -20121223_NYG@BAL,1,54,14,BAL,NYG,2,10,17,(9:14) R.Rice left guard to NYG 12 for 5 yards (W.Hill).,0,0,2012 -20121223_NYG@BAL,1,53,45,BAL,NYG,3,5,12,(8:45) (Shotgun) J.Flacco pass short right to J.Jones to NYG 7 for 5 yards (C.Webster). FUMBLES (C.Webster) RECOVERED by NYG-M.Boley at NYG 7. M.Boley to NYG 7 for no gain (J.Jones). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Flacco pass short right to J.Jones to NYG 5 for 7 yards (C.Webster).,0,0,2012 -20121223_NYG@BAL,1,53,18,BAL,NYG,1,5,5,(8:18) J.Flacco pass incomplete short right to T.Smith.,0,0,2012 -20121223_NYG@BAL,1,53,14,BAL,NYG,2,5,5,(8:14) R.Rice right tackle to NYG 6 for -1 yards (J.Pierre-Paul).,0,0,2012 -20121223_NYG@BAL,1,52,42,BAL,NYG,3,6,6,(7:42) (Shotgun) J.Flacco pass short middle to T.Smith for 6 yards TOUCHDOWN.,0,0,2012 -20121223_NYG@BAL,1,52,42,BAL,NYG,,,6,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121223_NYG@BAL,1,52,42,BAL,NYG,,,6,J.Tucker kicks 65 yards from BLT 35 to NYG 0. D.Wilson to NYG 18 for 18 yards (C.Brown).,7,0,2012 -20121223_NYG@BAL,1,52,27,NYG,BAL,1,10,82,(7:27) D.Wilson left tackle to NYG 19 for 1 yard (T.Suggs T.Cody).,0,7,2012 -20121223_NYG@BAL,1,51,54,NYG,BAL,2,9,81,(6:54) E.Manning pass incomplete short middle to V.Cruz (E.Reed).,0,7,2012 -20121223_NYG@BAL,1,51,48,NYG,BAL,3,9,81,(6:48) (Shotgun) PENALTY on NYG-C.Snee False Start 5 yards enforced at NYG 19 - No Play.,0,7,2012 -20121223_NYG@BAL,1,51,48,NYG,BAL,3,14,86,(6:48) (Shotgun) E.Manning pass incomplete short right to B.Pascoe [J.Ihedigbo].,0,7,2012 -20121223_NYG@BAL,1,51,43,NYG,BAL,4,14,86,(6:43) (Punt formation) S.Weatherford punts 46 yards to BLT 40 Center-Z.DeOssie. J.Jones to NYG 47 for 13 yards (K.Lumpkin).,0,7,2012 -20121223_NYG@BAL,1,51,34,BAL,NYG,1,10,47,(6:34) R.Rice left tackle to NYG 44 for 3 yards (C.Canty).,7,0,2012 -20121223_NYG@BAL,1,51,2,BAL,NYG,2,7,44,(6:02) J.Flacco pass deep right to T.Smith to NYG 1 for 43 yards (C.Webster).,7,0,2012 -20121223_NYG@BAL,1,50,14,BAL,NYG,1,1,1,(5:14) R.Rice right guard to NYG 1 for no gain (L.Joseph C.Blackburn).,7,0,2012 -20121223_NYG@BAL,1,49,27,BAL,NYG,2,1,1,(4:27) J.Flacco up the middle for 1 yard TOUCHDOWN.,7,0,2012 -20121223_NYG@BAL,1,49,27,BAL,NYG,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,0,2012 -20121223_NYG@BAL,1,49,27,BAL,NYG,,,1,J.Tucker kicks 68 yards from BLT 35 to NYG -3. D.Wilson to NYG 23 for 26 yards (C.Upshaw).,14,0,2012 -20121223_NYG@BAL,1,49,19,NYG,BAL,1,10,77,(4:19) E.Manning pass deep middle to R.Randle to BLT 34 for 43 yards (C.Williams) [J.Ihedigbo].,0,14,2012 -20121223_NYG@BAL,1,48,39,NYG,BAL,1,10,34,(3:39) E.Manning pass short left to D.Hixon to BLT 25 for 9 yards (C.Williams).,0,14,2012 -20121223_NYG@BAL,1,47,58,NYG,BAL,2,1,25,(2:58) E.Manning pass short right to M.Bennett to BLT 18 for 7 yards (E.Reed).,0,14,2012 -20121223_NYG@BAL,1,47,13,NYG,BAL,1,10,18,(2:13) A.Bradshaw right guard to BLT 14 for 4 yards (D.Ellerbe H.Ngata).,0,14,2012 -20121223_NYG@BAL,1,46,34,NYG,BAL,2,6,14,(1:34) D.Wilson left end for 14 yards TOUCHDOWN.,0,14,2012 -20121223_NYG@BAL,1,46,34,NYG,BAL,,,14,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-R.Torain.,0,14,2012 -20121223_NYG@BAL,1,46,34,NYG,BAL,,,14,L.Tynes kicks 59 yards from NYG 35 to BLT 6. J.Jones to BLT 28 for 22 yards (K.Rivers).,7,14,2012 -20121223_NYG@BAL,1,46,25,BAL,NYG,1,10,72,(1:25) B.Pierce right end to BLT 38 for 10 yards. PENALTY on BLT-A.Boldin Offensive Holding 10 yards enforced at BLT 38.,14,7,2012 -20121223_NYG@BAL,1,46,0,BAL,NYG,1,10,72,(1:00) B.Pierce left end to BLT 29 for 1 yard (M.Herzlich J.Pierre-Paul).,14,7,2012 -20121223_NYG@BAL,1,45,27,BAL,NYG,2,9,71,(:27) J.Flacco pass incomplete short left to T.Smith.,14,7,2012 -20121223_NYG@BAL,1,45,21,BAL,NYG,3,9,71,(:21) (Shotgun) J.Flacco pass incomplete deep left to T.Smith (S.Brown) [J.Pierre-Paul].,14,7,2012 -20121223_NYG@BAL,1,45,15,BAL,NYG,4,9,71,(:15) (Punt formation) S.Koch punts 60 yards to NYG 11 Center-M.Cox. D.Hixon to NYG 13 for 2 yards (B.Ayanbadejo).,14,7,2012 -20121223_NYG@BAL,1,45,3,NYG,BAL,1,10,87,(:03) A.Bradshaw up the middle to NYG 15 for 2 yards (H.Ngata).,7,14,2012 -20121223_NYG@BAL,2,45,0,NYG,BAL,2,8,85,(15:00) (Shotgun) E.Manning pass short right to D.Hixon to NYG 29 for 14 yards (C.Brown) [A.Jones].,7,14,2012 -20121223_NYG@BAL,2,44,19,NYG,BAL,1,10,71,(14:19) E.Manning sacked at NYG 14 for -15 yards (H.Ngata).,7,14,2012 -20121223_NYG@BAL,2,43,39,NYG,BAL,2,25,86,(13:39) (Shotgun) E.Manning pass short right to H.Hynoski to NYG 22 for 8 yards (D.Ellerbe E.Reed).,7,14,2012 -20121223_NYG@BAL,2,42,57,NYG,BAL,3,17,78,(12:57) (Shotgun) E.Manning pass short right to M.Bennett to NYG 33 for 11 yards (D.Ellerbe B.Ayanbadejo).,7,14,2012 -20121223_NYG@BAL,2,42,20,NYG,BAL,4,6,67,(12:20) (Punt formation) S.Weatherford punts 60 yards to BLT 7 Center-Z.DeOssie. J.Jones to BLT 12 for 5 yards (W.Hill).,7,14,2012 -20121223_NYG@BAL,2,42,10,BAL,NYG,1,10,88,(12:10) J.Flacco pass short right to T.Smith to BLT 23 for 11 yards (C.Webster S.Paysinger).,14,7,2012 -20121223_NYG@BAL,2,41,40,BAL,NYG,1,10,77,(11:40) (No Huddle) R.Rice left guard to BLT 25 for 2 yards (C.Canty).,14,7,2012 -20121223_NYG@BAL,2,41,9,BAL,NYG,2,8,75,(11:09) (No Huddle) J.Flacco pass short right to A.Boldin to BLT 37 for 12 yards (J.Hosley).,14,7,2012 -20121223_NYG@BAL,2,40,42,BAL,NYG,1,10,63,(10:42) (No Huddle) R.Rice left end to BLT 42 for 5 yards (J.Hosley).,14,7,2012 -20121223_NYG@BAL,2,40,11,BAL,NYG,2,5,58,(10:11) (No Huddle) R.Rice left tackle to NYG 39 for 19 yards (A.Rolle).,14,7,2012 -20121223_NYG@BAL,2,39,36,BAL,NYG,1,10,39,(9:36) (No Huddle) B.Pierce right tackle to NYG 41 for -2 yards (C.Canty).,14,7,2012 -20121223_NYG@BAL,2,38,56,BAL,NYG,2,12,41,(8:56) B.Pierce left end to NYG 48 for -7 yards (C.Canty).,14,7,2012 -20121223_NYG@BAL,2,38,22,BAL,NYG,3,19,48,(8:22) (Shotgun) J.Flacco pass deep right to A.Boldin to NYG 9 for 39 yards (M.Boley).,14,7,2012 -20121223_NYG@BAL,2,37,36,BAL,NYG,1,9,9,(7:36) (No Huddle) J.Flacco pass short right to J.Jones for 9 yards TOUCHDOWN. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. (No Huddle) J.Flacco pass incomplete short right to J.Jones (C.Webster).,14,7,2012 -20121223_NYG@BAL,2,37,27,BAL,NYG,2,9,9,(7:27) R.Rice right guard to NYG 5 for 4 yards (C.Canty).,14,7,2012 -20121223_NYG@BAL,2,36,52,BAL,NYG,3,5,5,(6:52) R.Rice right tackle to NYG 5 for no gain (A.Rolle M.Kiwanuka).,14,7,2012 -20121223_NYG@BAL,2,36,9,BAL,NYG,4,5,5,(6:09) (Field Goal formation) J.Tucker 23 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,14,7,2012 -20121223_NYG@BAL,2,36,9,BAL,NYG,,,5,J.Tucker kicks 63 yards from BLT 35 to NYG 2. D.Wilson to NYG 35 for 33 yards (C.Brown).,17,7,2012 -20121223_NYG@BAL,2,35,59,NYG,BAL,1,10,65,(5:59) E.Manning pass short middle to A.Bradshaw to NYG 43 for 8 yards (J.Bynes J.Ihedigbo) [A.Jones].,7,17,2012 -20121223_NYG@BAL,2,35,21,NYG,BAL,2,2,57,(5:21) A.Bradshaw right tackle to BLT 44 for 13 yards. PENALTY on NYG-C.Snee Offensive Holding 10 yards enforced at NYG 43 - No Play.,7,17,2012 -20121223_NYG@BAL,2,34,52,NYG,BAL,2,12,67,(4:52) (Shotgun) H.Hynoski left guard to NYG 36 for 3 yards (A.Jones).,7,17,2012 -20121223_NYG@BAL,2,34,14,NYG,BAL,3,9,64,(4:14) (Shotgun) E.Manning pass short right to D.Hixon to NYG 25 for -11 yards (C.Brown). PENALTY on NYG-D.Hixon Offensive Pass Interference 10 yards enforced at NYG 36 - No Play.,7,17,2012 -20121223_NYG@BAL,2,33,38,NYG,BAL,3,19,74,(3:38) (Shotgun) E.Manning pass incomplete short middle to H.Nicks [P.Kruger].,7,17,2012 -20121223_NYG@BAL,2,33,22,NYG,BAL,4,19,74,(3:22) (Punt formation) S.Weatherford punts 53 yards to BLT 21 Center-Z.DeOssie. J.Jones to BLT 34 for 13 yards (W.Hill). PENALTY on BLT-B.Ayanbadejo Illegal Block Above the Waist 10 yards enforced at BLT 34.,7,17,2012 -20121223_NYG@BAL,2,33,15,BAL,NYG,1,10,76,(3:15) J.Flacco pass deep right to T.Smith to BLT 45 for 21 yards (C.Webster).,17,7,2012 -20121223_NYG@BAL,2,32,51,BAL,NYG,1,10,55,(2:51) (No Huddle) R.Rice left guard to BLT 49 for 4 yards (L.Joseph C.Canty).,17,7,2012 -20121223_NYG@BAL,2,32,23,BAL,NYG,2,6,51,(2:23) (No Huddle) R.Rice right guard to NYG 47 for 4 yards (K.Rivers).,17,7,2012 -20121223_NYG@BAL,2,32,0,BAL,NYG,3,2,47,(2:00) (Shotgun) J.Flacco pass short left to A.Boldin ran ob at NYG 44 for 3 yards. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,17,7,2012 -20121223_NYG@BAL,2,31,53,BAL,NYG,1,10,44,(1:53) (Shotgun) J.Flacco pass short middle to A.Boldin to NYG 32 for 12 yards (M.Boley A.Rolle).,17,7,2012 -20121223_NYG@BAL,2,31,29,BAL,NYG,1,10,32,(1:29) (No Huddle Shotgun) J.Flacco pass short left to R.Rice to NYG 27 for 5 yards (M.Boley).,17,7,2012 -20121223_NYG@BAL,2,31,10,BAL,NYG,2,5,27,(1:10) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice for 27 yards TOUCHDOWN.,17,7,2012 -20121223_NYG@BAL,2,31,10,BAL,NYG,,,27,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,7,2012 -20121223_NYG@BAL,2,31,10,BAL,NYG,,,27,J.Tucker kicks 67 yards from BLT 35 to NYG -2. D.Wilson to NYG 17 for 19 yards (A.Hamilton).,24,7,2012 -20121223_NYG@BAL,2,30,58,NYG,BAL,1,10,83,(:58) (No Huddle Shotgun) E.Manning sacked at NYG 10 for -7 yards (B.Ayanbadejo).,7,24,2012 -20121223_NYG@BAL,2,30,28,NYG,BAL,2,17,90,(:28) (No Huddle Shotgun) E.Manning pass short middle to V.Cruz ran ob at NYG 13 for 3 yards (C.Graham).,7,24,2012 -20121223_NYG@BAL,2,30,20,NYG,BAL,3,14,87,(:20) (Shotgun) E.Manning pass short left to M.Bennett to NYG 16 for 3 yards (J.Ihedigbo).,7,24,2012 -20121223_NYG@BAL,2,30,13,NYG,BAL,4,11,84,(:13) (Punt formation) S.Weatherford punts 44 yards to BLT 40 Center-Z.DeOssie. J.Jones to BLT 45 for 5 yards (S.Paysinger).,7,24,2012 -20121223_NYG@BAL,2,30,3,BAL,NYG,1,10,55,(:03) J.Flacco kneels to BLT 44 for -1 yards. Penalty on NYG Defensive 12 On-field declined.,24,7,2012 -20121223_NYG@BAL,3,30,0,NYG,BAL,,,55,L.Tynes kicks 70 yards from NYG 35 to BLT -5. J.Jones to BLT 24 for 29 yards (S.Paysinger).,7,24,2012 -20121223_NYG@BAL,3,29,57,BAL,NYG,1,10,76,(14:57) B.Pierce right guard to BLT 27 for 3 yards (L.Joseph).,24,7,2012 -20121223_NYG@BAL,3,29,27,BAL,NYG,2,7,73,(14:27) J.Flacco pass incomplete short right to T.Smith (K.Rivers).,24,7,2012 -20121223_NYG@BAL,3,29,23,BAL,NYG,3,7,73,(14:23) (Shotgun) J.Flacco pass incomplete short right to B.Pierce.,24,7,2012 -20121223_NYG@BAL,3,29,18,BAL,NYG,4,7,73,(14:18) (Punt formation) S.Koch punts 57 yards to NYG 16 Center-M.Cox. D.Hixon pushed ob at NYG 26 for 10 yards (M.Cox). PENALTY on BLT-J.Ihedigbo Offensive Holding 10 yards enforced at NYG 26.,24,7,2012 -20121223_NYG@BAL,3,29,8,NYG,BAL,1,10,64,(14:08) D.Wilson left tackle to NYG 38 for 2 yards (C.Upshaw).,7,24,2012 -20121223_NYG@BAL,3,28,34,NYG,BAL,2,8,62,(13:34) E.Manning pass incomplete deep middle to M.Bennett (E.Reed J.Bynes).,7,24,2012 -20121223_NYG@BAL,3,28,28,NYG,BAL,3,8,62,(13:28) (Shotgun) E.Manning pass incomplete short right to M.Bennett [B.Ayanbadejo].,7,24,2012 -20121223_NYG@BAL,3,28,24,NYG,BAL,4,8,62,(13:24) (Punt formation) S.Weatherford punts 54 yards to BLT 8 Center-Z.DeOssie. J.Jones to BLT 15 for 7 yards (J.Tryon).,7,24,2012 -20121223_NYG@BAL,3,28,15,BAL,NYG,1,10,85,(13:15) J.Flacco pass short right to E.Dickson to BLT 33 for 18 yards (J.Hosley). PENALTY on BLT-T.Smith Personal Foul 12 yards enforced at BLT 24.,24,7,2012 -20121223_NYG@BAL,3,27,49,BAL,NYG,1,13,88,(12:49) R.Rice left tackle to BLT 17 for 5 yards (A.Rolle C.Blackburn).,24,7,2012 -20121223_NYG@BAL,3,27,49,BAL,NYG,2,8,83,(12:49) R.Rice left tackle to BLT 21 for 4 yards (L.Joseph O.Umenyiora).,24,7,2012 -20121223_NYG@BAL,3,27,49,BAL,NYG,3,4,79,(12:49) (No Huddle Shotgun) PENALTY on BLT-M.Oher False Start 5 yards enforced at BLT 21 - No Play.,24,7,2012 -20121223_NYG@BAL,3,27,20,BAL,NYG,3,9,84,(12:20) (Shotgun) R.Rice up the middle to BLT 14 for -2 yards. PENALTY on NYG-J.Pierre-Paul Defensive Offside 5 yards enforced at BLT 16 - No Play.,24,7,2012 -20121223_NYG@BAL,3,26,40,BAL,NYG,3,4,79,(11:40) (Shotgun) J.Flacco pass short middle to A.Boldin to BLT 26 for 5 yards (A.Rolle).,24,7,2012 -20121223_NYG@BAL,3,25,55,BAL,NYG,1,10,74,(10:55) J.Flacco pass short right to V.Leach to BLT 30 for 4 yards (K.Rivers). PENALTY on BLT-M.Oher Offensive Holding 10 yards enforced at BLT 26 - No Play.,24,7,2012 -20121223_NYG@BAL,3,25,24,BAL,NYG,1,20,84,(10:24) (No Huddle) R.Rice right guard to BLT 22 for 6 yards (O.Umenyiora A.Rolle).,24,7,2012 -20121223_NYG@BAL,3,24,57,BAL,NYG,2,14,78,(9:57) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta to BLT 29 for 7 yards (M.Herzlich).,24,7,2012 -20121223_NYG@BAL,3,24,24,BAL,NYG,3,7,71,(9:24) (No Huddle Shotgun) J.Flacco pass incomplete deep right to T.Smith. PENALTY on NYG-C.Webster Defensive Pass Interference 17 yards enforced at BLT 29 - No Play.,24,7,2012 -20121223_NYG@BAL,3,24,20,BAL,NYG,1,10,54,(9:20) (No Huddle Shotgun) J.Flacco pass short left to J.Jones to NYG 44 for 10 yards (A.Rolle). PENALTY on BLT-M.Oher Personal Foul 15 yards enforced at BLT 46 - No Play.,24,7,2012 -20121223_NYG@BAL,3,23,44,BAL,NYG,1,25,69,(8:44) R.Rice right tackle to BLT 31 for no gain (R.Bernard).,24,7,2012 -20121223_NYG@BAL,3,23,14,BAL,NYG,2,25,69,(8:14) R.Rice right tackle to BLT 37 for 6 yards (J.Pierre-Paul C.Blackburn).,24,7,2012 -20121223_NYG@BAL,3,22,39,BAL,NYG,3,19,63,(7:39) (No Huddle Shotgun) J.Flacco pass deep right to D.Pitta to NYG 27 for 36 yards (C.Webster).,24,7,2012 -20121223_NYG@BAL,3,22,3,BAL,NYG,1,10,27,(7:03) (No Huddle) B.Pierce left tackle to NYG 26 for 1 yard (C.Blackburn M.Kiwanuka).,24,7,2012 -20121223_NYG@BAL,3,21,28,BAL,NYG,2,9,26,(6:28) J.Flacco pass incomplete deep right to T.Smith (C.Webster).,24,7,2012 -20121223_NYG@BAL,3,21,21,BAL,NYG,3,9,26,(6:21) (Shotgun) J.Flacco pass short middle to A.Boldin to NYG 10 for 16 yards (A.Rolle). No. 81 - Boldin injured on play.,24,7,2012 -20121223_NYG@BAL,3,21,8,BAL,NYG,1,10,10,(6:08) (Shotgun) J.Flacco pass incomplete short right to R.Rice (C.Webster).,24,7,2012 -20121223_NYG@BAL,3,21,1,BAL,NYG,2,10,10,(6:01) (Shotgun) J.Flacco pass short right to T.Smith to NYG 3 for 7 yards (C.Webster).,24,7,2012 -20121223_NYG@BAL,3,20,24,BAL,NYG,3,3,3,(5:24) (Shotgun) J.Flacco pass incomplete short left to D.Pitta.,24,7,2012 -20121223_NYG@BAL,3,20,21,BAL,NYG,4,3,3,(5:21) (Field Goal formation) J.Tucker 21 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,24,7,2012 -20121223_NYG@BAL,3,20,21,BAL,NYG,,,3,J.Tucker kicks 60 yards from BLT 35 to NYG 5. D.Wilson to NYG 26 for 21 yards (C.Upshaw).,27,7,2012 -20121223_NYG@BAL,3,20,11,NYG,BAL,1,10,74,(5:11) (Shotgun) E.Manning pass incomplete deep right to D.Hixon (C.Brown).,7,27,2012 -20121223_NYG@BAL,3,20,7,NYG,BAL,2,10,74,(5:07) (Shotgun) E.Manning pass short left to V.Cruz to NYG 33 for 7 yards (C.Williams).,7,27,2012 -20121223_NYG@BAL,3,19,31,NYG,BAL,3,3,67,(4:31) (No Huddle Shotgun) E.Manning pass short middle to M.Bennett to NYG 39 for 6 yards (J.Ihedigbo).,7,27,2012 -20121223_NYG@BAL,3,18,54,NYG,BAL,1,10,61,(3:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,7,27,2012 -20121223_NYG@BAL,3,18,47,NYG,BAL,2,10,61,(3:47) (Shotgun) E.Manning pass incomplete short right to H.Nicks (C.Brown).,7,27,2012 -20121223_NYG@BAL,3,18,43,NYG,BAL,3,10,61,(3:43) (Shotgun) E.Manning sacked at NYG 30 for -9 yards (O.Brown).,7,27,2012 -20121223_NYG@BAL,3,18,18,NYG,BAL,4,19,70,(3:18) (Punt formation) S.Weatherford punts 54 yards to BLT 16 Center-Z.DeOssie. J.Jones to BLT 26 for 10 yards (J.Williams). No. 93 - Blackburn (NYG) injured on play. No. 57 (J.Williams) also injured on play.,7,27,2012 -20121223_NYG@BAL,3,18,5,BAL,NYG,1,10,74,(3:05) B.Pierce right guard to BLT 31 for 5 yards (C.Webster K.Rivers).,27,7,2012 -20121223_NYG@BAL,3,17,29,BAL,NYG,2,5,69,(2:29) PENALTY on NYG-J.Pierre-Paul Neutral Zone Infraction 5 yards enforced at BLT 31 - No Play.,27,7,2012 -20121223_NYG@BAL,3,17,10,BAL,NYG,1,10,64,(2:10) B.Pierce left guard to BLT 41 for 5 yards (M.Herzlich J.Pierre-Paul).,27,7,2012 -20121223_NYG@BAL,3,16,38,BAL,NYG,2,5,59,(1:38) J.Flacco pass short right to D.Pitta ran ob at BLT 48 for 7 yards (A.Rolle).,27,7,2012 -20121223_NYG@BAL,3,16,10,BAL,NYG,1,10,52,(1:10) J.Flacco pass incomplete short right to T.Smith [K.Rivers].,27,7,2012 -20121223_NYG@BAL,3,16,2,BAL,NYG,2,10,52,(1:02) B.Pierce right guard to NYG 48 for 4 yards (M.Herzlich L.Joseph).,27,7,2012 -20121223_NYG@BAL,3,15,23,BAL,NYG,3,6,48,(:23) (Shotgun) J.Flacco pass short right to R.Rice to NYG 31 for 17 yards (S.Brown A.Tracy).,27,7,2012 -20121223_NYG@BAL,4,15,0,BAL,NYG,1,10,31,(15:00) R.Rice right end to NYG 26 for 5 yards (R.Bernard C.Blackburn).,27,7,2012 -20121223_NYG@BAL,4,14,25,BAL,NYG,2,5,26,(14:25) R.Rice right guard to NYG 22 for 4 yards (M.Herzlich R.Bernard).,27,7,2012 -20121223_NYG@BAL,4,13,51,BAL,NYG,3,1,22,(13:51) (Shotgun) J.Flacco pass short left to D.Pitta to NYG 16 for 6 yards (J.Hosley).,27,7,2012 -20121223_NYG@BAL,4,13,12,BAL,NYG,1,10,16,(13:12) R.Rice right tackle to NYG 11 for 5 yards (C.Blackburn).,27,7,2012 -20121223_NYG@BAL,4,12,36,BAL,NYG,2,5,11,(12:36) R.Rice left tackle to NYG 9 for 2 yards (O.Umenyiora L.Joseph).,27,7,2012 -20121223_NYG@BAL,4,11,57,BAL,NYG,3,3,9,(11:57) J.Flacco pass short left to R.Rice to NYG 12 for -3 yards (O.Umenyiora).,27,7,2012 -20121223_NYG@BAL,4,11,12,BAL,NYG,4,6,12,(11:12) (Field Goal formation) J.Tucker 30 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,27,7,2012 -20121223_NYG@BAL,4,11,12,BAL,NYG,,,12,J.Tucker kicks 72 yards from BLT 35 to NYG -7. D.Wilson Touchback.,30,7,2012 -20121223_NYG@BAL,4,11,8,NYG,BAL,1,10,80,(11:08) (Shotgun) A.Bradshaw left tackle to NYG 26 for 6 yards (D.Ellerbe).,7,30,2012 -20121223_NYG@BAL,4,10,42,NYG,BAL,2,4,74,(10:42) (No Huddle Shotgun) E.Manning pass incomplete deep right to D.Hixon (C.Brown).,7,30,2012 -20121223_NYG@BAL,4,10,36,NYG,BAL,3,4,74,(10:36) (Shotgun) E.Manning pass incomplete short middle to R.Randle (C.Williams).,7,30,2012 -20121223_NYG@BAL,4,10,29,NYG,BAL,4,4,74,(10:29) (Punt formation) S.Weatherford punts 55 yards to BLT 19 Center-Z.DeOssie downed by NYG-S.Paysinger.,7,30,2012 -20121223_NYG@BAL,4,10,21,BAL,NYG,1,10,81,(10:21) B.Pierce up the middle to BLT 21 for 2 yards (M.Herzlich K.Rivers).,30,7,2012 -20121223_NYG@BAL,4,9,34,BAL,NYG,2,8,79,(9:34) B.Pierce right guard pushed ob at NYG 1 for 78 yards (J.Hosley).,30,7,2012 -20121223_NYG@BAL,4,9,9,BAL,NYG,1,1,1,(9:09) R.Rice left guard to NYG 1 for no gain (C.Blackburn M.Boley). No. 93 - Blackburn (NYG) injured on play.,30,7,2012 -20121223_NYG@BAL,4,8,39,BAL,NYG,2,1,1,(8:39) B.Pierce up the middle to NYG 1 for no gain (K.Rivers M.Boley).,30,7,2012 -20121223_NYG@BAL,4,8,7,BAL,NYG,3,1,1,(8:07) J.Flacco right end to NYG 11 for -10 yards (M.Kiwanuka).,30,7,2012 -20121223_NYG@BAL,4,7,30,BAL,NYG,4,11,11,(7:30) (Field Goal formation) J.Tucker 29 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,30,7,2012 -20121223_NYG@BAL,4,7,30,BAL,NYG,,,11,J.Tucker kicks 74 yards from BLT 35 to NYG -9. D.Wilson Touchback.,33,7,2012 -20121223_NYG@BAL,4,7,25,NYG,BAL,1,10,80,(7:25) (Shotgun) E.Manning pass incomplete short right to M.Bennett.,7,33,2012 -20121223_NYG@BAL,4,7,20,NYG,BAL,2,10,80,(7:20) (Shotgun) A.Bradshaw up the middle to NYG 20 for no gain (H.Ngata).,7,33,2012 -20121223_NYG@BAL,4,6,44,NYG,BAL,3,10,80,(6:44) (Shotgun) E.Manning pass short left to V.Cruz to NYG 31 for 11 yards (E.Reed). PENALTY on BLT-E.Reed Personal Foul 15 yards enforced at NYG 31.,7,33,2012 -20121223_NYG@BAL,4,6,12,NYG,BAL,1,10,54,(6:12) A.Bradshaw right guard to NYG 50 for 4 yards (P.McPhee).,7,33,2012 -20121223_NYG@BAL,4,5,45,NYG,BAL,2,6,50,(5:45) (No Huddle Shotgun) E.Manning pass short left to J.Jernigan to BLT 43 for 7 yards (D.Ellerbe B.Ayanbadejo).,7,33,2012 -20121223_NYG@BAL,4,5,9,NYG,BAL,1,10,43,(5:09) (No Huddle Shotgun) E.Manning scrambles up the middle to BLT 35 for 8 yards (C.Williams).,7,33,2012 -20121223_NYG@BAL,4,4,40,NYG,BAL,2,2,35,(4:40) (Shotgun) A.Bradshaw left guard to BLT 24 for 11 yards (J.Ihedigbo).,7,33,2012 -20121223_NYG@BAL,4,4,15,NYG,BAL,1,10,24,(4:15) (Shotgun) E.Manning pass incomplete deep middle to R.Randle (C.Williams E.Reed).,7,33,2012 -20121223_NYG@BAL,4,4,9,NYG,BAL,2,10,24,(4:09) (Shotgun) A.Bradshaw right end to BLT 13 for 11 yards (C.Graham).,7,33,2012 -20121223_NYG@BAL,4,3,31,NYG,BAL,1,10,13,(3:31) (Shotgun) E.Manning pass incomplete short middle to R.Randle (C.Brown).,7,33,2012 -20121223_NYG@BAL,4,3,24,NYG,BAL,2,10,13,(3:24) E.Manning pass short right to D.Hixon for 13 yards TOUCHDOWN.,7,33,2012 -20121223_NYG@BAL,4,3,24,NYG,BAL,,,13,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-R.Torain.,7,33,2012 -20121223_NYG@BAL,4,3,24,NYG,BAL,,,13,L.Tynes kicks onside 13 yards from NYG 35 to NYG 48. C.Graham to NYG 41 for 7 yards (W.Hill).,14,33,2012 -20121223_NYG@BAL,4,3,18,BAL,NYG,1,10,41,(3:18) R.Rice left tackle to NYG 33 for 8 yards (M.Austin A.Tracy). Ray Rice tops 100 rushing yds. for 17th time in career.,33,14,2012 -20121223_NYG@BAL,4,2,32,BAL,NYG,2,2,33,(2:32) A.Allen left guard to NYG 26 for 7 yards (J.Williams M.Herzlich).,33,14,2012 -20121223_NYG@BAL,4,2,0,BAL,NYG,1,10,26,(2:00) T.Taylor kneels to NYG 27 for -1 yards.,33,14,2012 -20121223_NYG@BAL,4,1,20,BAL,NYG,2,11,27,(1:20) T.Taylor kneels to NYG 28 for -1 yards.,33,14,2012 -20121223_NYG@BAL,4,0,40,BAL,NYG,3,12,28,(:40) T.Taylor kneels to NYG 29 for -1 yards.,33,14,2012 -20121223_NYG@BAL,4,0,40,BAL,NYG,,,28,                      ,33,14,2012 -20121223_CHI@ARI,1,0,0,CHI,ARI,,,28,O.Mare kicks 67 yards from CHI 35 to ARZ -2. L.Stephens-Howling to ARZ 20 for 22 yards (Z.Bowman).,0,0,2012 -20121223_CHI@ARI,1,59,55,ARI,CHI,1,10,80,(14:55) R.Lindley pass incomplete short left to A.Roberts.,0,0,2012 -20121223_CHI@ARI,1,59,50,ARI,CHI,2,10,80,(14:50) C.Wells right tackle to ARZ 24 for 4 yards (N.Roach).,0,0,2012 -20121223_CHI@ARI,1,59,12,ARI,CHI,3,6,76,(14:12) (Shotgun) R.Lindley pass short left to L.Fitzgerald to ARZ 32 for 8 yards (C.Tillman).,0,0,2012 -20121223_CHI@ARI,1,58,38,ARI,CHI,1,10,68,(13:38) L.Stephens-Howling right end to ARZ 32 for no gain (C.Wootton).,0,0,2012 -20121223_CHI@ARI,1,57,55,ARI,CHI,2,10,68,(12:55) R.Lindley pass incomplete short right to A.Roberts.,0,0,2012 -20121223_CHI@ARI,1,57,52,ARI,CHI,3,10,68,(12:52) (Shotgun) R.Lindley pass short right to A.Roberts to ARZ 36 for 4 yards (T.Jennings).,0,0,2012 -20121223_CHI@ARI,1,57,19,ARI,CHI,4,6,64,(12:19) D.Zastudil punts 39 yards to CHI 25 Center-M.Leach. D.Hester to CHI 34 for 9 yards (A.Sherman).,0,0,2012 -20121223_CHI@ARI,1,57,6,CHI,ARI,1,10,66,(12:06) J.Cutler pass incomplete deep left to B.Marshall.,0,0,2012 -20121223_CHI@ARI,1,56,59,CHI,ARI,2,10,66,(11:59) J.Cutler pass incomplete deep right to B.Marshall.,0,0,2012 -20121223_CHI@ARI,1,56,53,CHI,ARI,3,10,66,(11:53) (Shotgun) J.Cutler pass incomplete deep left to A.Jeffery (G.Toler). PENALTY on ARZ-G.Toler Defensive Holding 5 yards enforced at CHI 34 - No Play.,0,0,2012 -20121223_CHI@ARI,1,56,47,CHI,ARI,1,10,61,(11:47) M.Forte left end to CHI 47 for 8 yards (D.Washington).,0,0,2012 -20121223_CHI@ARI,1,56,9,CHI,ARI,2,2,53,(11:09) M.Forte right tackle to 50 for 3 yards (C.Campbell; D.Williams).,0,0,2012 -20121223_CHI@ARI,1,55,32,CHI,ARI,1,10,50,(10:32) J.Cutler pass incomplete short left to A.Jeffery.,0,0,2012 -20121223_CHI@ARI,1,55,27,CHI,ARI,2,10,50,(10:27) M.Forte right end to ARZ 46 for 4 yards (D.Washington).,0,0,2012 -20121223_CHI@ARI,1,54,48,CHI,ARI,3,6,46,(9:48) (Shotgun) J.Cutler pass deep left to B.Marshall to ARZ 14 for 32 yards (P.Peterson). Play Challenged by ARZ and REVERSED. (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,0,0,2012 -20121223_CHI@ARI,1,54,44,CHI,ARI,4,6,46,(9:44) A.Podlesh punts 42 yards to ARZ 4 Center-P.Mannelly downed by CHI-Z.Bowman.,0,0,2012 -20121223_CHI@ARI,1,54,35,ARI,CHI,1,10,96,(9:35) C.Wells left tackle to ARZ 3 for -1 yards (M.Wright).,0,0,2012 -20121223_CHI@ARI,1,54,1,ARI,CHI,2,11,97,(9:01) C.Wells up the middle to ARZ 1 for -2 yards. FUMBLES RECOVERED by CHI-Z.Bowman at ARZ 1. Z.Bowman for 1 yard TOUCHDOWN. Play Challenged by Replay Assistant and Upheld.,0,0,2012 -20121223_CHI@ARI,1,54,1,CHI,ARI,,,97,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,0,2012 -20121223_CHI@ARI,1,54,1,CHI,ARI,,,97,O.Mare kicks 66 yards from CHI 35 to ARZ -1. L.Stephens-Howling to ARZ 16 for 17 yards (J.Franklin; J.Thomas).,7,0,2012 -20121223_CHI@ARI,1,53,47,ARI,CHI,1,10,84,(8:47) (Shotgun) R.Lindley pass short right to P.Peterson pushed ob at ARZ 22 for 6 yards (T.Jennings).,0,7,2012 -20121223_CHI@ARI,1,53,24,ARI,CHI,2,4,78,(8:24) R.Lindley pass short right intended for L.Fitzgerald INTERCEPTED by A.Walters at ARZ 33. A.Walters to ARZ 20 for 13 yards (A.Sherman). PENALTY on CHI-T.Jennings Defensive Pass Interference 10 yards enforced at ARZ 22 - No Play.,0,7,2012 -20121223_CHI@ARI,1,53,17,ARI,CHI,1,10,68,(8:17) W.Powell left end to ARZ 34 for 2 yards (L.Briggs; C.Conte).,0,7,2012 -20121223_CHI@ARI,1,52,42,ARI,CHI,2,8,66,(7:42) R.Lindley pass short right to J.King to ARZ 35 for 1 yard (L.Briggs).,0,7,2012 -20121223_CHI@ARI,1,51,59,ARI,CHI,3,7,65,(6:59) R.Lindley sacked at ARZ 25 for -10 yards (J.Peppers).,0,7,2012 -20121223_CHI@ARI,1,51,32,ARI,CHI,4,17,75,(6:32) D.Zastudil punts 59 yards to CHI 16 Center-M.Leach out of bounds.,0,7,2012 -20121223_CHI@ARI,1,51,23,CHI,ARI,1,10,84,(6:23) J.Cutler sacked at CHI 15 for -1 yards (C.Campbell).,7,0,2012 -20121223_CHI@ARI,1,50,49,CHI,ARI,2,11,85,(5:49) J.Cutler pass incomplete short left.,7,0,2012 -20121223_CHI@ARI,1,50,43,CHI,ARI,3,11,85,(5:43) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall.,7,0,2012 -20121223_CHI@ARI,1,50,39,CHI,ARI,4,11,85,(5:39) A.Podlesh punts 64 yards to ARZ 21 Center-P.Mannelly downed by CHI-Z.Bowman. ARZ-P.Peterson was injured during the play.,7,0,2012 -20121223_CHI@ARI,1,50,25,ARI,CHI,1,10,79,(5:25) (Shotgun) R.Lindley pass short middle to M.Floyd to ARZ 35 for 14 yards (T.Jennings).,0,7,2012 -20121223_CHI@ARI,1,49,51,ARI,CHI,1,10,65,(4:51) L.Stephens-Howling up the middle to ARZ 38 for 3 yards (N.Roach).,0,7,2012 -20121223_CHI@ARI,1,49,14,ARI,CHI,2,7,62,(4:14) R.Lindley pass deep left to L.Fitzgerald to CHI 45 for 17 yards (C.Tillman).,0,7,2012 -20121223_CHI@ARI,1,48,36,ARI,CHI,1,10,45,(3:36) (Shotgun) L.Stephens-Howling up the middle to CHI 45 for no gain (N.Roach).,0,7,2012 -20121223_CHI@ARI,1,48,0,ARI,CHI,2,10,45,(3:00) R.Lindley pass deep left to L.Fitzgerald to CHI 27 for 18 yards (C.Tillman).,0,7,2012 -20121223_CHI@ARI,1,47,20,ARI,CHI,1,10,27,(2:20) L.Stephens-Howling up the middle to CHI 26 for 1 yard (N.Collins).,0,7,2012 -20121223_CHI@ARI,1,46,43,ARI,CHI,2,9,26,(1:43) R.Lindley pass short right to A.Sherman to CHI 20 for 6 yards (M.Wright). PENALTY on ARZ-N.Potter Offensive Holding 10 yards enforced at CHI 26 - No Play.,0,7,2012 -20121223_CHI@ARI,1,46,20,ARI,CHI,2,19,36,(1:20) (Shotgun) R.Lindley pass incomplete short left to L.Fitzgerald (L.Briggs).,0,7,2012 -20121223_CHI@ARI,1,46,15,ARI,CHI,3,19,36,(1:15) (Shotgun) R.Lindley pass short right to M.Floyd to CHI 31 for 5 yards (I.Idonije).,0,7,2012 -20121223_CHI@ARI,1,45,41,ARI,CHI,4,14,31,(:41) J.Feely 49 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,7,2012 -20121223_CHI@ARI,1,45,41,ARI,CHI,,,31,J.Feely kicks 51 yards from ARZ 35 to CHI 14. E.Weems MUFFS catch touched at CHI 14 and recovers at CHI 16. E.Weems to CHI 28 for 12 yards (Z.Nash; J.Feely).,3,7,2012 -20121223_CHI@ARI,1,45,31,CHI,ARI,1,10,72,(:31) M.Forte up the middle to ARZ 36 for 36 yards (K.Rhodes).,7,3,2012 -20121223_CHI@ARI,2,45,0,CHI,ARI,1,10,36,(15:00) M.Forte left end to ARZ 36 for no gain (S.Acho).,7,3,2012 -20121223_CHI@ARI,2,44,27,CHI,ARI,2,10,36,(14:27) M.Forte up the middle to ARZ 34 for 2 yards (C.Campbell).,7,3,2012 -20121223_CHI@ARI,2,43,48,CHI,ARI,3,8,34,(13:48) (Shotgun) J.Cutler pass deep right to B.Marshall to ARZ 4 for 30 yards (P.Peterson).,7,3,2012 -20121223_CHI@ARI,2,43,16,CHI,ARI,1,4,4,(13:16) M.Forte left tackle for 4 yards TOUCHDOWN.,7,3,2012 -20121223_CHI@ARI,2,43,16,CHI,ARI,,,4,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,3,2012 -20121223_CHI@ARI,2,43,16,CHI,ARI,,,4,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,14,3,2012 -20121223_CHI@ARI,2,43,12,ARI,CHI,1,10,80,(13:12) C.Wells left tackle to ARZ 22 for 2 yards (G.Hayes).,3,14,2012 -20121223_CHI@ARI,2,42,35,ARI,CHI,2,8,78,(12:35) R.Lindley pass short left to L.Fitzgerald to ARZ 40 for 18 yards (G.Hayes).,3,14,2012 -20121223_CHI@ARI,2,41,50,ARI,CHI,1,10,60,(11:50) R.Lindley pass incomplete short left to J.King (J.Peppers).,3,14,2012 -20121223_CHI@ARI,2,41,46,ARI,CHI,2,10,60,(11:46) (Shotgun) R.Lindley pass short right to L.Stephens-Howling to ARZ 37 for -3 yards (J.Peppers).,3,14,2012 -20121223_CHI@ARI,2,41,4,ARI,CHI,3,13,63,(11:04) (Shotgun) R.Lindley pass incomplete short right to W.Powell.,3,14,2012 -20121223_CHI@ARI,2,40,59,ARI,CHI,4,13,63,(10:59) D.Zastudil punts 60 yards to CHI 3 Center-M.Leach. D.Hester to CHI 4 for 1 yard (J.Sanders). PENALTY on CHI-Z.Bowman Offensive Holding 2 yards enforced at CHI 4. Penalty on CHI-Z.Bowman Illegal Block Above the Waist declined.,3,14,2012 -20121223_CHI@ARI,2,40,44,CHI,ARI,1,10,98,(10:44) M.Forte up the middle to CHI 6 for 4 yards (K.Rhodes).,14,3,2012 -20121223_CHI@ARI,2,40,12,CHI,ARI,2,6,94,(10:12) J.Cutler pass incomplete short right to E.Rodriguez.,14,3,2012 -20121223_CHI@ARI,2,40,7,CHI,ARI,3,6,94,(10:07) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall.,14,3,2012 -20121223_CHI@ARI,2,40,3,CHI,ARI,4,6,94,(10:03) A.Podlesh punts 39 yards to CHI 45 Center-P.Mannelly. P.Peterson pushed ob at CHI 32 for 13 yards (A.Walters).,14,3,2012 -20121223_CHI@ARI,2,39,55,ARI,CHI,1,10,32,(9:55) (Shotgun) R.Lindley pass incomplete short left to R.Housler.,3,14,2012 -20121223_CHI@ARI,2,39,50,ARI,CHI,2,10,32,(9:50) (Shotgun) R.Lindley pass incomplete short middle to L.Stephens-Howling.,3,14,2012 -20121223_CHI@ARI,2,39,46,ARI,CHI,3,10,32,(9:46) (Shotgun) R.Lindley pass incomplete short left to A.Roberts.,3,14,2012 -20121223_CHI@ARI,2,39,42,ARI,CHI,4,10,32,(9:42) (Field Goal formation) J.Feely left end to CHI 32 for no gain (A.Okoye). FUMBLES (A.Okoye) ball out of bounds at CHI 32.,3,14,2012 -20121223_CHI@ARI,2,39,36,CHI,ARI,1,10,68,(9:36) M.Forte right end to ARZ 49 for 19 yards (P.Peterson).,14,3,2012 -20121223_CHI@ARI,2,39,11,CHI,ARI,1,10,49,(9:11) M.Forte right tackle to ARZ 48 for 1 yard (D.Williams).,14,3,2012 -20121223_CHI@ARI,2,38,37,CHI,ARI,2,9,48,(8:37) J.Cutler pass incomplete deep left to B.Marshall (P.Peterson).,14,3,2012 -20121223_CHI@ARI,2,38,31,CHI,ARI,3,9,48,(8:31) (Shotgun) J.Cutler pass incomplete deep middle to B.Marshall.,14,3,2012 -20121223_CHI@ARI,2,38,25,CHI,ARI,4,9,48,(8:25) A.Podlesh punts 36 yards to ARZ 12 Center-P.Mannelly fair catch by P.Peterson.,14,3,2012 -20121223_CHI@ARI,2,38,18,ARI,CHI,1,10,88,(8:18) L.Stephens-Howling up the middle to ARZ 16 for 4 yards (C.Wootton).,3,14,2012 -20121223_CHI@ARI,2,37,41,ARI,CHI,2,6,84,(7:41) L.Stephens-Howling up the middle to ARZ 16 for no gain (I.Idonije).,3,14,2012 -20121223_CHI@ARI,2,36,59,ARI,CHI,3,6,84,(6:59) (Shotgun) R.Lindley pass short left to W.Powell to ARZ 24 for 8 yards (M.Wright).,3,14,2012 -20121223_CHI@ARI,2,36,30,ARI,CHI,1,10,76,(6:30) R.Lindley pass incomplete short left to R.Housler.,3,14,2012 -20121223_CHI@ARI,2,36,25,ARI,CHI,2,10,76,(6:25) (Shotgun) R.Lindley sacked at ARZ 19 for -5 yards (I.Idonije).,3,14,2012 -20121223_CHI@ARI,2,35,53,ARI,CHI,3,15,81,(5:53) (Shotgun) R.Lindley pass short left to M.Floyd to ARZ 21 for 2 yards (C.Tillman).,3,14,2012 -20121223_CHI@ARI,2,35,19,ARI,CHI,4,13,79,(5:19) D.Zastudil punts 40 yards to CHI 39 Center-M.Leach. D.Moore MUFFS catch RECOVERED by ARZ-M.Adams at CHI 36.,3,14,2012 -20121223_CHI@ARI,2,35,5,ARI,CHI,1,10,36,(5:05) L.Stephens-Howling up the middle to CHI 33 for 3 yards (N.Collins).,3,14,2012 -20121223_CHI@ARI,2,34,34,ARI,CHI,2,7,33,(4:34) (Shotgun) R.Lindley pass short left to W.Powell to CHI 23 for 10 yards (C.Tillman).,3,14,2012 -20121223_CHI@ARI,2,33,55,ARI,CHI,1,10,23,(3:55) (Shotgun) R.Lindley pass short middle to M.Floyd to CHI 18 for 5 yards (T.Jennings). Chicago challenged the runner was down by contact ruling and the play was Upheld. (Timeout #3.),3,14,2012 -20121223_CHI@ARI,2,33,6,ARI,CHI,2,5,18,(3:06) L.Stephens-Howling right tackle to CHI 17 for 1 yard (N.Collins).,3,14,2012 -20121223_CHI@ARI,2,32,29,ARI,CHI,3,4,17,(2:29) (Shotgun) R.Lindley pass incomplete deep right to R.Housler (C.Conte).,3,14,2012 -20121223_CHI@ARI,2,32,22,ARI,CHI,4,4,17,(2:22) J.Feely 35 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,3,14,2012 -20121223_CHI@ARI,2,32,22,ARI,CHI,,,17,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,6,14,2012 -20121223_CHI@ARI,2,32,18,CHI,ARI,1,10,80,(2:18) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 27 for 7 yards (P.Peterson).,14,6,2012 -20121223_CHI@ARI,2,32,0,CHI,ARI,2,3,73,(2:00) (Shotgun) J.Cutler pass deep right to A.Jeffery to ARZ 38 for 35 yards (G.Toler).,14,6,2012 -20121223_CHI@ARI,2,31,34,CHI,ARI,1,10,38,(1:34) J.Cutler pass short left to M.Forte to ARZ 31 for 7 yards (C.Campbell).,14,6,2012 -20121223_CHI@ARI,2,31,10,CHI,ARI,2,3,31,(1:10) J.Cutler pass short middle to E.Bennett to ARZ 15 for 16 yards (K.Rhodes).,14,6,2012 -20121223_CHI@ARI,2,30,48,CHI,ARI,1,10,15,(:48) M.Forte left end to ARZ 11 for 4 yards (C.Campbell).,14,6,2012 -20121223_CHI@ARI,2,30,24,CHI,ARI,2,6,11,(:24) J.Cutler pass short right to B.Marshall for 11 yards TOUCHDOWN.,14,6,2012 -20121223_CHI@ARI,2,30,24,CHI,ARI,,,11,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,14,6,2012 -20121223_CHI@ARI,2,30,24,CHI,ARI,,,11,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,21,6,2012 -20121223_CHI@ARI,2,30,19,ARI,CHI,1,10,80,(:19) (Shotgun) R.Lindley pass short right to M.Floyd to ARZ 32 for 12 yards (N.Roach).,6,21,2012 -20121223_CHI@ARI,2,30,13,ARI,CHI,1,10,68,(:13) (Shotgun) R.Lindley pass short middle to A.Smith to ARZ 40 for 8 yards (L.Briggs).,6,21,2012 -20121223_CHI@ARI,2,30,6,ARI,CHI,2,2,60,(:06) (Shotgun) R.Lindley pass short left to L.Byrd to ARZ 48 for 8 yards (C.Tillman).,6,21,2012 -20121223_CHI@ARI,2,30,1,ARI,CHI,1,10,52,(:01) (Shotgun) R.Lindley pass incomplete short middle to A.Smith.,6,21,2012 -20121223_CHI@ARI,3,30,0,ARI,CHI,,,52,J.Feely kicks 64 yards from ARZ 35 to CHI 1. D.Hester to CHI 41 for 40 yards (S.Bradley).,6,21,2012 -20121223_CHI@ARI,3,29,53,CHI,ARI,1,10,59,(14:53) J.Cutler pass short left to K.Davis to ARZ 47 for 12 yards (W.Gay).,21,6,2012 -20121223_CHI@ARI,3,29,16,CHI,ARI,1,10,47,(14:16) M.Forte up the middle to ARZ 44 for 3 yards (S.Acho).,21,6,2012 -20121223_CHI@ARI,3,28,43,CHI,ARI,2,7,44,(13:43) A.Allen left end to ARZ 46 for -2 yards (D.Washington).,21,6,2012 -20121223_CHI@ARI,3,28,6,CHI,ARI,3,9,46,(13:06) (Shotgun) J.Cutler pass incomplete short left to A.Allen (C.Campbell).,21,6,2012 -20121223_CHI@ARI,3,28,1,CHI,ARI,4,9,46,(13:01) A.Podlesh punts 36 yards to ARZ 10 Center-P.Mannelly fair catch by P.Peterson.,21,6,2012 -20121223_CHI@ARI,3,27,54,ARI,CHI,1,10,90,(12:54) R.Lindley pass incomplete short middle to A.Sherman. PENALTY on ARZ-B.Massie Offensive Holding 5 yards enforced at ARZ 10 - No Play.,6,21,2012 -20121223_CHI@ARI,3,27,49,ARI,CHI,1,15,95,(12:49) R.Lindley pass incomplete short right to A.Roberts (M.Wright).,6,21,2012 -20121223_CHI@ARI,3,27,46,ARI,CHI,2,15,95,(12:46) (Shotgun) R.Lindley pass short left intended for A.Roberts INTERCEPTED by C.Tillman at ARZ 10. C.Tillman for 10 yards TOUCHDOWN.,6,21,2012 -20121223_CHI@ARI,3,27,46,CHI,ARI,,,95,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,21,6,2012 -20121223_CHI@ARI,3,27,46,CHI,ARI,,,95,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,28,6,2012 -20121223_CHI@ARI,3,27,39,ARI,CHI,1,10,80,(12:39) (Shotgun) L.Stephens-Howling up the middle to ARZ 23 for 3 yards (N.Roach).,6,28,2012 -20121223_CHI@ARI,3,27,5,ARI,CHI,2,7,77,(12:05) B.Hoyer pass short middle to A.Roberts to ARZ 38 for 15 yards (L.Briggs).,6,28,2012 -20121223_CHI@ARI,3,26,26,ARI,CHI,1,10,62,(11:26) W.Powell up the middle to ARZ 45 for 7 yards (K.Hayden).,6,28,2012 -20121223_CHI@ARI,3,25,50,ARI,CHI,2,3,55,(10:50) (Shotgun) B.Hoyer pass incomplete short left to M.Floyd.,6,28,2012 -20121223_CHI@ARI,3,25,42,ARI,CHI,3,3,55,(10:42) (Shotgun) B.Hoyer pass incomplete short middle to A.Roberts.,6,28,2012 -20121223_CHI@ARI,3,25,42,ARI,CHI,4,3,55,(10:42) D.Zastudil punts 41 yards to CHI 14 Center-M.Leach. Z.Bowman MUFFS catch touched at CHI 14 recovered by CHI-E.Weems at CHI 8. E.Weems to CHI 9 for 1 yard (A.Sherman).,6,28,2012 -20121223_CHI@ARI,3,25,26,CHI,ARI,1,10,91,(10:26) A.Allen up the middle to CHI 26 for 17 yards (D.Washington).,28,6,2012 -20121223_CHI@ARI,3,24,41,CHI,ARI,1,10,74,(9:41) A.Allen left end to CHI 30 for 4 yards (C.Campbell).,28,6,2012 -20121223_CHI@ARI,3,24,1,CHI,ARI,2,6,70,(9:01) J.Cutler pass short left to A.Allen to CHI 31 for 1 yard (D.Washington).,28,6,2012 -20121223_CHI@ARI,3,23,19,CHI,ARI,3,5,69,(8:19) (Shotgun) J.Cutler pass short left to B.Marshall to CHI 37 for 6 yards (P.Peterson).,28,6,2012 -20121223_CHI@ARI,3,22,50,CHI,ARI,1,10,63,(7:50) J.Cutler pass short left to B.Marshall to CHI 46 for 9 yards (P.Peterson).,28,6,2012 -20121223_CHI@ARI,3,22,14,CHI,ARI,2,1,54,(7:14) K.Bell up the middle to CHI 48 for 2 yards (K.Rhodes).,28,6,2012 -20121223_CHI@ARI,3,21,31,CHI,ARI,1,10,52,(6:31) J.Cutler pass short middle to K.Davis to ARZ 45 for 7 yards (D.Washington).,28,6,2012 -20121223_CHI@ARI,3,20,51,CHI,ARI,2,3,45,(5:51) K.Bell up the middle to ARZ 45 for no gain (V.Holliday; D.Washington).,28,6,2012 -20121223_CHI@ARI,3,20,13,CHI,ARI,3,3,45,(5:13) J.Cutler pass incomplete short left to A.Jeffery. Penalty on CHI-K.Bell Offensive Holding declined.,28,6,2012 -20121223_CHI@ARI,3,20,8,CHI,ARI,4,3,45,(5:08) A.Podlesh punts 45 yards to end zone Center-P.Mannelly Touchback.,28,6,2012 -20121223_CHI@ARI,3,19,59,ARI,CHI,1,10,80,(4:59) (Shotgun) L.Stephens-Howling right end to ARZ 22 for 2 yards (L.Briggs).,6,28,2012 -20121223_CHI@ARI,3,19,24,ARI,CHI,2,8,78,(4:24) (Shotgun) B.Hoyer pass short left to A.Roberts to ARZ 34 for 12 yards (A.Walters).,6,28,2012 -20121223_CHI@ARI,3,18,43,ARI,CHI,1,10,66,(3:43) (Shotgun) PENALTY on ARZ-B.Hoyer False Start 5 yards enforced at ARZ 34 - No Play.,6,28,2012 -20121223_CHI@ARI,3,18,22,ARI,CHI,1,15,71,(3:22) (Shotgun) B.Hoyer pass deep middle to L.Fitzgerald to CHI 47 for 24 yards (A.Walters).,6,28,2012 -20121223_CHI@ARI,3,17,50,ARI,CHI,1,10,47,(2:50) L.Stephens-Howling left end to CHI 44 for 3 yards (I.Idonije). CHI-L.Briggs was injured during the play. CHI-C.Tillman was injured during the play.,6,28,2012 -20121223_CHI@ARI,3,17,18,ARI,CHI,2,7,44,(2:18) B.Hoyer pass incomplete short left to J.King.,6,28,2012 -20121223_CHI@ARI,3,17,14,ARI,CHI,3,7,44,(2:14) (Shotgun) B.Hoyer sacked at 50 for -6 yards (J.Peppers).,6,28,2012 -20121223_CHI@ARI,3,16,54,ARI,CHI,4,13,50,(1:54) D.Zastudil punts 49 yards to CHI 1 Center-M.Leach downed by ARZ-M.Adams.,6,28,2012 -20121223_CHI@ARI,3,16,43,CHI,ARI,1,10,99,(1:43) A.Allen up the middle to CHI 1 for no gain (D.Williams).,28,6,2012 -20121223_CHI@ARI,3,16,12,CHI,ARI,2,10,99,(1:12) A.Allen up the middle to CHI 6 for 5 yards (P.Lenon).,28,6,2012 -20121223_CHI@ARI,3,15,39,CHI,ARI,3,5,94,(:39) J.Cutler pass incomplete deep left to B.Marshall.,28,6,2012 -20121223_CHI@ARI,3,15,32,CHI,ARI,4,5,94,(:32) A.Podlesh punts 44 yards to 50 Center-P.Mannelly fair catch by P.Peterson.,28,6,2012 -20121223_CHI@ARI,3,15,25,ARI,CHI,1,10,50,(:25) (Shotgun) B.Hoyer pass short right to A.Roberts to CHI 44 for 6 yards (K.Hayden).,6,28,2012 -20121223_CHI@ARI,4,15,0,ARI,CHI,2,4,44,(15:00) (Shotgun) W.Powell up the middle to CHI 47 for -3 yards (N.Roach).,6,28,2012 -20121223_CHI@ARI,4,14,24,ARI,CHI,3,7,47,(14:24) B.Hoyer pass short left to L.Fitzgerald ran ob at CHI 37 for 10 yards (C.Tillman).,6,28,2012 -20121223_CHI@ARI,4,14,8,ARI,CHI,1,10,37,(14:08) (Shotgun) B.Hoyer pass short middle to W.Powell to CHI 34 for 3 yards (L.Briggs).,6,28,2012 -20121223_CHI@ARI,4,13,29,ARI,CHI,2,7,34,(13:29) (Shotgun) B.Hoyer pass incomplete deep right to L.Fitzgerald.,6,28,2012 -20121223_CHI@ARI,4,13,24,ARI,CHI,3,7,34,(13:24) (Shotgun) B.Hoyer sacked at CHI 40 for -6 yards (J.Peppers). FUMBLES (J.Peppers) and recovers at CHI 40. B.Hoyer to CHI 40 for no gain (J.Peppers).,6,28,2012 -20121223_CHI@ARI,4,12,56,ARI,CHI,4,13,40,(12:56) D.Zastudil punts 33 yards to CHI 7 Center-M.Leach downed by ARZ-J.Bethel.,6,28,2012 -20121223_CHI@ARI,4,12,50,CHI,ARI,1,10,93,(12:50) K.Bell up the middle to CHI 8 for 1 yard (C.Campbell).,28,6,2012 -20121223_CHI@ARI,4,12,7,CHI,ARI,2,9,92,(12:07) (Shotgun) J.Cutler scrambles right end ran ob at CHI 18 for 10 yards (P.Peterson).,28,6,2012 -20121223_CHI@ARI,4,11,36,CHI,ARI,1,10,82,(11:36) K.Bell left tackle to CHI 23 for 5 yards (P.Lenon).,28,6,2012 -20121223_CHI@ARI,4,10,54,CHI,ARI,2,5,77,(10:54) K.Bell right tackle to CHI 25 for 2 yards (C.Campbell).,28,6,2012 -20121223_CHI@ARI,4,10,13,CHI,ARI,3,3,75,(10:13) J.Cutler pass incomplete deep right to A.Jeffery.,28,6,2012 -20121223_CHI@ARI,4,10,7,CHI,ARI,4,3,75,(10:07) A.Podlesh punts 43 yards to ARZ 32 Center-P.Mannelly. P.Peterson to ARZ 30 for -2 yards (E.Rodriguez).,28,6,2012 -20121223_CHI@ARI,4,9,54,ARI,CHI,1,10,70,(9:54) B.Hoyer pass incomplete deep right to L.Fitzgerald.,6,28,2012 -20121223_CHI@ARI,4,9,49,ARI,CHI,2,10,70,(9:49) (Shotgun) B.Hoyer pass short middle to A.Roberts to ARZ 37 for 7 yards (N.Roach).,6,28,2012 -20121223_CHI@ARI,4,9,7,ARI,CHI,3,3,63,(9:07) (Shotgun) B.Hoyer pass short middle to L.Fitzgerald to ARZ 39 for 2 yards (N.Roach).,6,28,2012 -20121223_CHI@ARI,4,8,26,ARI,CHI,4,1,61,(8:26) (Shotgun) B.Hoyer pass short left to L.Fitzgerald to CHI 47 for 14 yards (C.Tillman).,6,28,2012 -20121223_CHI@ARI,4,7,49,ARI,CHI,1,10,47,(7:49) (Shotgun) B.Hoyer pass short left to J.Dray to CHI 44 for 3 yards (M.Wright).,6,28,2012 -20121223_CHI@ARI,4,7,14,ARI,CHI,2,7,44,(7:14) (Shotgun) B.Hoyer pass incomplete short left to M.Floyd.,6,28,2012 -20121223_CHI@ARI,4,7,11,ARI,CHI,3,7,44,(7:11) (Shotgun) B.Hoyer pass incomplete short right to A.Roberts (K.Hayden).,6,28,2012 -20121223_CHI@ARI,4,7,7,ARI,CHI,4,7,44,(7:07) D.Zastudil punts 34 yards to CHI 10 Center-M.Leach. D.Hester to CHI 18 for 8 yards (J.Bethel).,6,28,2012 -20121223_CHI@ARI,4,6,57,CHI,ARI,1,10,82,(6:57) K.Bell up the middle to CHI 22 for 4 yards (D.Dockett).,28,6,2012 -20121223_CHI@ARI,4,6,12,CHI,ARI,2,6,78,(6:12) J.Cutler pass short right to B.Marshall to CHI 27 for 5 yards (P.Lenon).,28,6,2012 -20121223_CHI@ARI,4,5,26,CHI,ARI,3,1,73,(5:26) K.Bell up the middle to CHI 26 for -1 yards (W.Gay).,28,6,2012 -20121223_CHI@ARI,4,4,40,CHI,ARI,4,2,74,(4:40) A.Podlesh punts 45 yards to ARZ 29 Center-P.Mannelly fair catch by P.Peterson.,28,6,2012 -20121223_CHI@ARI,4,4,33,ARI,CHI,1,10,71,(4:33) (Shotgun) B.Hoyer pass short right to M.Floyd to ARZ 38 for 9 yards (K.Hayden).,6,28,2012 -20121223_CHI@ARI,4,4,5,ARI,CHI,2,1,62,(4:05) (No Huddle Shotgun) B.Hoyer pass short middle intended for L.Fitzgerald INTERCEPTED by K.Hayden at ARZ 49. K.Hayden to ARZ 10 for 39 yards (A.Snyder).,6,28,2012 -20121223_CHI@ARI,4,3,54,CHI,ARI,1,10,10,(3:54) K.Bell up the middle to ARZ 9 for 1 yard (P.Lenon).,28,6,2012 -20121223_CHI@ARI,4,3,8,CHI,ARI,2,9,9,(3:08) K.Bell up the middle to ARZ 6 for 3 yards (A.Wilson).,28,6,2012 -20121223_CHI@ARI,4,2,24,CHI,ARI,3,6,6,(2:24) K.Bell right end to ARZ 2 for 4 yards (D.Washington).,28,6,2012 -20121223_CHI@ARI,4,2,0,CHI,ARI,4,2,2,(2:00) O.Mare 20 yard field goal is BLOCKED (A.Wilson) Center-P.Mannelly Holder-A.Podlesh RECOVERED by ARZ-J.Bethel at ARZ 18. J.Bethel for 82 yards TOUCHDOWN.,28,6,2012 -20121223_CHI@ARI,4,2,0,ARI,CHI,,,2,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,6,28,2012 -20121223_CHI@ARI,4,2,0,ARI,CHI,,,2,J.Feely kicks onside 10 yards from ARZ 35 to ARZ 45. A.Jeffery (didn't try to advance) to ARZ 45 for no gain (Z.Nash).,13,28,2012 -20121223_CHI@ARI,4,1,45,CHI,ARI,1,10,45,(1:45) K.Bell up the middle to ARZ 42 for 3 yards (D.Williams).,28,13,2012 -20121223_CHI@ARI,4,1,35,CHI,ARI,2,7,42,(1:35) K.Bell up the middle to ARZ 39 for 3 yards (S.Acho; P.Lenon).,28,13,2012 -20121223_CHI@ARI,4,1,35,CHI,ARI,3,4,39,(1:35) K.Bell right end to ARZ 34 for 5 yards (K.Rhodes).,28,13,2012 -20121223_CHI@ARI,4,0,48,CHI,ARI,1,10,34,(:48) J.Cutler kneels to ARZ 35 for -1 yards.,28,13,2012 -20121223_CHI@ARI,4,0,39,CHI,ARI,2,11,35,(:39) J.Cutler kneels to ARZ 36 for -1 yards.,28,13,2012 -20121223_CHI@ARI,4,0,39,CHI,ARI,,,35,                      ,28,13,2012 -20121223_SF@SEA,1,0,0,SEA,SF,,,35,S.Hauschka kicks 70 yards from SEA 35 to SF -5. L.James to SF 17 for 22 yards (J.Johnson; M.Robinson).,0,0,2012 -20121223_SF@SEA,1,59,55,SF,SEA,1,10,83,(14:55) C.Kaepernick pass incomplete deep left to M.Manningham.,0,0,2012 -20121223_SF@SEA,1,59,49,SF,SEA,2,10,83,(14:49) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree (R.Sherman).,0,0,2012 -20121223_SF@SEA,1,59,45,SF,SEA,3,10,83,(14:45) (Shotgun) C.Kaepernick pass incomplete short left to M.Crabtree [G.Scruggs].,0,0,2012 -20121223_SF@SEA,1,59,41,SF,SEA,4,10,83,(14:41) A.Lee punts 48 yards to SEA 35 Center-B.Jennings. L.Washington to 50 for 15 yards (C.Spillman). PENALTY on SF-T.Brock Unnecessary Roughness 15 yards enforced at 50.,0,0,2012 -20121223_SF@SEA,1,59,29,SEA,SF,1,10,35,(14:29) (Shotgun) R.Wilson pass short right to Z.Miller pushed ob at SF 24 for 11 yards (C.Rogers).,0,0,2012 -20121223_SF@SEA,1,58,53,SEA,SF,1,10,24,(13:53) (Shotgun) M.Lynch left tackle for 24 yards TOUCHDOWN.,0,0,2012 -20121223_SF@SEA,1,58,53,SEA,SF,,,24,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121223_SF@SEA,1,58,53,SEA,SF,,,24,S.Hauschka kicks 71 yards from SEA 35 to SF -6. L.James to SF 20 for 26 yards (E.Thomas; K.Chancellor).,7,0,2012 -20121223_SF@SEA,1,58,39,SF,SEA,1,10,80,(13:39) F.Gore left guard to SF 20 for no gain (K.Wright).,0,7,2012 -20121223_SF@SEA,1,57,57,SF,SEA,2,10,80,(12:57) C.Kaepernick scrambles up the middle to SF 27 for 7 yards.,0,7,2012 -20121223_SF@SEA,1,57,10,SF,SEA,3,3,73,(12:10) (Shotgun) L.James right tackle to SF 30 for 3 yards (B.Wagner; B.Irvin).,0,7,2012 -20121223_SF@SEA,1,56,23,SF,SEA,1,10,70,(11:23) C.Kaepernick pass short left to B.Miller to SF 29 for -1 yards (K.Wright R.Bryant).,0,7,2012 -20121223_SF@SEA,1,55,39,SF,SEA,2,11,71,(10:39) (Shotgun) C.Kaepernick scrambles right end to SF 37 for 8 yards (C.Clemons).,0,7,2012 -20121223_SF@SEA,1,54,52,SF,SEA,3,3,63,(9:52) (Shotgun) C.Kaepernick pass incomplete short left to F.Gore.,0,7,2012 -20121223_SF@SEA,1,54,48,SF,SEA,4,3,63,(9:48) A.Lee punts 49 yards to SEA 14 Center-B.Jennings fair catch by L.Washington.,0,7,2012 -20121223_SF@SEA,1,54,40,SEA,SF,1,10,86,(9:40) (Shotgun) M.Lynch up the middle to SEA 21 for 7 yards (N.Bowman; Ald.Smith).,7,0,2012 -20121223_SF@SEA,1,54,2,SEA,SF,2,3,79,(9:02) R.Wilson pass deep middle to D.Baldwin to SF 36 for 43 yards (C.Rogers).,7,0,2012 -20121223_SF@SEA,1,53,11,SEA,SF,1,10,36,(8:11) M.Lynch left tackle to SF 35 for 1 yard (R.McDonald; N.Bowman).,7,0,2012 -20121223_SF@SEA,1,52,35,SEA,SF,2,9,35,(7:35) (Shotgun) R.Wilson pass short right to S.Rice pushed ob at SF 21 for 14 yards (C.Rogers).,7,0,2012 -20121223_SF@SEA,1,52,7,SEA,SF,1,10,21,(7:07) M.Lynch right tackle to SF 20 for 1 yard (I.Sopoaga; R.McDonald).,7,0,2012 -20121223_SF@SEA,1,51,29,SEA,SF,2,9,20,(6:29) M.Lynch left end pushed ob at SF 12 for 8 yards (C.Rogers).,7,0,2012 -20121223_SF@SEA,1,50,53,SEA,SF,3,1,12,(5:53) (Shotgun) R.Wilson right end to SF 9 for 3 yards.,7,0,2012 -20121223_SF@SEA,1,50,16,SEA,SF,1,9,9,(5:16) (Shotgun) M.Lynch left tackle to SF 9 for no gain (R.Jean Francois; Ald.Smith).,7,0,2012 -20121223_SF@SEA,1,49,32,SEA,SF,2,9,9,(4:32) (Shotgun) R.Wilson pass short middle to M.Lynch for 9 yards TOUCHDOWN.,7,0,2012 -20121223_SF@SEA,1,49,32,SEA,SF,,,9,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,0,2012 -20121223_SF@SEA,1,49,32,SEA,SF,,,9,S.Hauschka kicks 65 yards from SEA 35 to SF 0. L.James to SF 35 for 35 yards (S.Hauschka).,14,0,2012 -20121223_SF@SEA,1,49,19,SF,SEA,1,10,65,(4:19) F.Gore left tackle to SF 35 for no gain (K.Chancellor). FUMBLES (K.Chancellor) recovered by SF-J.Staley at SF 39. J.Staley to SF 39 for no gain (C.McDonald).,0,14,2012 -20121223_SF@SEA,1,48,47,SF,SEA,2,6,61,(3:47) C.Kaepernick pass deep right to V.Davis to SEA 34 for 27 yards (R.Sherman).,0,14,2012 -20121223_SF@SEA,1,48,5,SF,SEA,1,10,34,(3:05) F.Gore up the middle to SEA 30 for 4 yards (M.Smith; C.McDonald).,0,14,2012 -20121223_SF@SEA,1,47,19,SF,SEA,2,6,30,(2:19) F.Gore right tackle to SEA 30 for no gain (B.Mebane; B.Wagner).,0,14,2012 -20121223_SF@SEA,1,46,32,SF,SEA,3,6,30,(1:32) (Shotgun) PENALTY on SF-C.Kaepernick Delay of Game 5 yards enforced at SEA 30 - No Play.,0,14,2012 -20121223_SF@SEA,1,46,28,SF,SEA,3,11,35,(1:28) (Shotgun) C.Kaepernick pass short left to M.Crabtree pushed ob at SEA 24 for 11 yards (K.Wright).,0,14,2012 -20121223_SF@SEA,1,46,7,SF,SEA,1,10,24,(1:07) C.Kaepernick pass short right to D.Walker to SEA 20 for 4 yards (B.Wagner).,0,14,2012 -20121223_SF@SEA,1,45,26,SF,SEA,2,6,20,(:26) C.Kaepernick pass incomplete deep right to M.Manningham.,0,14,2012 -20121223_SF@SEA,1,45,21,SF,SEA,3,6,20,(:21) C.Kaepernick pass incomplete deep right to V.Davis (K.Chancellor). SF-V.Davis was injured during the play. He is Out. PENALTY on SEA-K.Chancellor Unnecessary Roughness 10 yards enforced at SEA 20 - No Play.,0,14,2012 -20121223_SF@SEA,1,45,10,SF,SEA,1,10,10,(:10) (Shotgun) F.Gore right tackle to SEA 4 for 6 yards (K.Chancellor; M.Smith).,0,14,2012 -20121223_SF@SEA,2,45,0,SF,SEA,2,4,4,(15:00) C.Kaepernick left end to SEA 3 for 1 yard (A.Branch; M.Smith).,0,14,2012 -20121223_SF@SEA,2,44,26,SF,SEA,3,3,3,(14:26) C.Kaepernick pass incomplete short middle to M.Crabtree (R.Sherman).,0,14,2012 -20121223_SF@SEA,2,44,19,SF,SEA,4,3,3,(14:19) D.Akers 21 yard field goal is BLOCKED (R.Bryant) Center-B.Jennings Holder-A.Lee RECOVERED by SEA-R.Sherman at SEA 10. R.Sherman for 90 yards TOUCHDOWN.,0,14,2012 -20121223_SF@SEA,2,44,19,SEA,SF,,,3,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,14,0,2012 -20121223_SF@SEA,2,44,19,SEA,SF,,,3,S.Hauschka kicks 64 yards from SEA 35 to SF 1. L.James to SF 20 for 19 yards (B.Maxwell; M.Morgan).,21,0,2012 -20121223_SF@SEA,2,43,57,SF,SEA,1,10,80,(13:57) C.Kaepernick pass incomplete short right to D.Walker (R.Sherman).,0,21,2012 -20121223_SF@SEA,2,43,53,SF,SEA,2,10,80,(13:53) PENALTY on SF-C.Kaepernick Delay of Game 5 yards enforced at SF 20 - No Play.,0,21,2012 -20121223_SF@SEA,2,43,53,SF,SEA,2,15,85,(13:53) L.James up the middle to SF 21 for 6 yards (K.Wright; B.Irvin).,0,21,2012 -20121223_SF@SEA,2,43,18,SF,SEA,3,9,79,(13:18) (Shotgun) C.Kaepernick pass incomplete short right to D.Walker. Penalty on SF-J.Staley Ineligible Downfield Pass declined.,0,21,2012 -20121223_SF@SEA,2,43,11,SF,SEA,4,9,79,(13:11) A.Lee punts 58 yards to SEA 21 Center-B.Jennings. L.Washington to SEA 23 for 2 yards (B.Jennings).,0,21,2012 -20121223_SF@SEA,2,42,52,SEA,SF,1,10,77,(12:52) M.Lynch right guard to SEA 29 for 6 yards (Ald.Smith). PENALTY on SEA-P.McQuistan Offensive Holding 10 yards enforced at SEA 23 - No Play.,21,0,2012 -20121223_SF@SEA,2,42,38,SEA,SF,1,20,87,(12:38) (Shotgun) R.Turbin right end to SEA 23 for 10 yards (N.Bowman).,21,0,2012 -20121223_SF@SEA,2,41,58,SEA,SF,2,10,77,(11:58) R.Wilson pass short left intended for R.Turbin INTERCEPTED by P.Willis at SEA 18. P.Willis to SEA 16 for 2 yards (P.McQuistan).,21,0,2012 -20121223_SF@SEA,2,41,51,SF,SEA,1,10,16,(11:51) (Shotgun) C.Kaepernick pass short right to B.Miller to SEA 16 for no gain (K.Chancellor).,0,21,2012 -20121223_SF@SEA,2,41,7,SF,SEA,2,10,16,(11:07) (Shotgun) C.Kaepernick scrambles right tackle to SEA 15 for 1 yard (R.Sherman).,0,21,2012 -20121223_SF@SEA,2,40,28,SF,SEA,3,9,15,(10:28) (Shotgun) C.Kaepernick pass incomplete short middle to M.Crabtree.,0,21,2012 -20121223_SF@SEA,2,40,23,SF,SEA,4,9,15,(10:23) D.Akers 33 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,21,2012 -20121223_SF@SEA,2,40,23,SF,SEA,,,15,D.Akers kicks 67 yards from SF 35 to SEA -2. L.Washington to SEA 40 for 42 yards (D.Akers).,3,21,2012 -20121223_SF@SEA,2,40,11,SEA,SF,1,10,60,(10:11) (Shotgun) R.Wilson sacked at SEA 39 for -1 yards (I.Sopoaga).,21,3,2012 -20121223_SF@SEA,2,39,34,SEA,SF,2,11,61,(9:34) (Shotgun) R.Wilson scrambles left end to SEA 44 for 5 yards (R.McDonald). SF-T.Brown was injured during the play. He is Out.,21,3,2012 -20121223_SF@SEA,2,38,59,SEA,SF,3,6,56,(8:59) (Shotgun) R.Wilson pass short middle to G.Tate to 50 for 6 yards (D.Goldson).,21,3,2012 -20121223_SF@SEA,2,38,17,SEA,SF,1,10,50,(8:17) (Shotgun) R.Wilson sacked at SEA 48 for -2 yards (R.McDonald). PENALTY on SEA-J.Sweezy Offensive Holding 10 yards enforced at 50 - No Play.,21,3,2012 -20121223_SF@SEA,2,37,53,SEA,SF,1,20,60,(7:53) (Shotgun) R.Wilson pass short left to R.Turbin to SEA 49 for 9 yards (N.Bowman; P.Willis).,21,3,2012 -20121223_SF@SEA,2,36,58,SEA,SF,2,11,51,(6:58) (Shotgun) R.Wilson pass short right to D.Baldwin to SEA 49 for no gain (D.Goldson; C.Culliver). PENALTY on SF-C.Culliver Unnecessary Roughness 15 yards enforced at SEA 49. Penalty on SEA-J.Sweezy Ineligible Downfield Pass superseded.,21,3,2012 -20121223_SF@SEA,2,36,39,SEA,SF,1,10,36,(6:39) M.Lynch left guard to SF 34 for 2 yards (N.Bowman; R.Jean Francois).,21,3,2012 -20121223_SF@SEA,2,35,59,SEA,SF,2,8,34,(5:59) (Shotgun) M.Lynch right tackle to SF 31 for 3 yards (N.Bowman; Ald.Smith).,21,3,2012 -20121223_SF@SEA,2,35,18,SEA,SF,3,5,31,(5:18) (Shotgun) R.Wilson scrambles right end ran ob at SF 24 for 7 yards.,21,3,2012 -20121223_SF@SEA,2,34,38,SEA,SF,1,10,24,(4:38) (Shotgun) M.Lynch right tackle to SF 16 for 8 yards (C.Culliver).,21,3,2012 -20121223_SF@SEA,2,34,2,SEA,SF,2,2,16,(4:02) (Shotgun) M.Lynch left end pushed ob at SF 6 for 10 yards (T.Brown).,21,3,2012 -20121223_SF@SEA,2,33,26,SEA,SF,1,6,6,(3:26) M.Lynch right guard to SF 3 for 3 yards (R.Jean Francois; P.Willis).,21,3,2012 -20121223_SF@SEA,2,32,48,SEA,SF,2,3,3,(2:48) (Shotgun) M.Lynch up the middle to SF 6 for -3 yards (A.Brooks; C.Rogers).,21,3,2012 -20121223_SF@SEA,2,32,3,SEA,SF,3,6,6,(2:03) (Shotgun) R.Wilson pass short right to A.McCoy for 6 yards TOUCHDOWN.,21,3,2012 -20121223_SF@SEA,2,32,3,SEA,SF,,,6,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,21,3,2012 -20121223_SF@SEA,2,32,3,SEA,SF,,,6,S.Hauschka kicks 67 yards from SEA 35 to SF -2. L.James to SF 33 for 35 yards (J.Kearse).,28,3,2012 -20121223_SF@SEA,2,31,50,SF,SEA,1,10,67,(1:50) (Shotgun) C.Kaepernick pass short left to M.Crabtree pushed ob at SF 41 for 8 yards (B.Maxwell).,3,28,2012 -20121223_SF@SEA,2,31,45,SF,SEA,2,2,59,(1:45) (Shotgun) C.Kaepernick pass short right to M.Crabtree to SEA 48 for 11 yards (R.Sherman).,3,28,2012 -20121223_SF@SEA,2,31,19,SF,SEA,1,10,48,(1:19) (No Huddle Shotgun) C.Kaepernick pass deep middle to R.Moss to SEA 23 for 25 yards (E.Thomas).,3,28,2012 -20121223_SF@SEA,2,30,54,SF,SEA,1,10,23,(:54) (No Huddle Shotgun) C.Kaepernick sacked at SEA 36 for -13 yards (K.Wright).,3,28,2012 -20121223_SF@SEA,2,30,47,SF,SEA,2,23,36,(:47) (Shotgun) C.Kaepernick pass incomplete short right to M.Manningham.,3,28,2012 -20121223_SF@SEA,2,30,42,SF,SEA,3,23,36,(:42) (Shotgun) C.Kaepernick pass incomplete deep left.,3,28,2012 -20121223_SF@SEA,2,30,35,SF,SEA,4,23,36,(:35) D.Akers 54 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,3,28,2012 -20121223_SF@SEA,2,30,35,SF,SEA,,,36,D.Akers kicks 66 yards from SF 35 to SEA -1. L.Washington to SEA 20 for 21 yards (M.Wilhoite; B.Miller).,6,28,2012 -20121223_SF@SEA,2,30,26,SEA,SF,1,10,80,(:26) R.Wilson kneels to SEA 19 for -1 yards.,28,6,2012 -20121223_SF@SEA,3,30,0,SF,SEA,,,80,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,6,28,2012 -20121223_SF@SEA,3,30,0,SEA,SF,1,10,80,(15:00) M.Lynch left guard to SEA 23 for 3 yards (R.Jean Francois; Ald.Smith).,28,6,2012 -20121223_SF@SEA,3,29,25,SEA,SF,2,7,77,(14:25) M.Lynch left tackle to SEA 32 for 9 yards (Ald.Smith).,28,6,2012 -20121223_SF@SEA,3,28,44,SEA,SF,1,10,68,(13:44) R.Wilson pass incomplete short right to S.Rice (D.Goldson).,28,6,2012 -20121223_SF@SEA,3,28,40,SEA,SF,2,10,68,(13:40) M.Lynch left tackle to SEA 33 for 1 yard (N.Bowman).,28,6,2012 -20121223_SF@SEA,3,27,56,SEA,SF,3,9,67,(12:56) (Shotgun) R.Wilson scrambles left tackle to SEA 39 for 6 yards (D.Goldson).,28,6,2012 -20121223_SF@SEA,3,27,0,SEA,SF,4,3,61,(12:00) J.Ryan punts 41 yards to SF 20 Center-C.Gresham fair catch by T.Ginn.,28,6,2012 -20121223_SF@SEA,3,26,52,SF,SEA,1,10,80,(11:52) C.Kaepernick pass short left to R.Moss to SF 33 for 13 yards (B.Wagner).,6,28,2012 -20121223_SF@SEA,3,26,13,SF,SEA,1,10,67,(11:13) C.Kaepernick pass deep right to M.Crabtree to SEA 32 for 35 yards (R.Sherman).,6,28,2012 -20121223_SF@SEA,3,25,24,SF,SEA,1,10,32,(10:24) (Shotgun) D.Kilgore reported in as eligible. C.Kaepernick pass incomplete deep middle to R.Moss.,6,28,2012 -20121223_SF@SEA,3,25,16,SF,SEA,2,10,32,(10:16) (Shotgun) C.Kaepernick pass short left to M.Manningham to SEA 32 for no gain (L.Hill). FUMBLES (L.Hill) RECOVERED by SEA-K.Chancellor at SEA 32. K.Chancellor to SEA 32 for no gain (M.Manningham). SF-M.Manningham was injured during the play. He is Out.,6,28,2012 -20121223_SF@SEA,3,25,5,SEA,SF,1,10,68,(10:05) R.Wilson pass incomplete short right to D.Baldwin.,28,6,2012 -20121223_SF@SEA,3,24,56,SEA,SF,2,10,68,(9:56) (Shotgun) M.Lynch left tackle to SEA 40 for 8 yards (P.Willis).,28,6,2012 -20121223_SF@SEA,3,24,18,SEA,SF,3,2,60,(9:18) R.Wilson pass short right to M.Lynch ran ob at 50 for 10 yards.,28,6,2012 -20121223_SF@SEA,3,23,48,SEA,SF,1,10,50,(8:48) R.Wilson pass incomplete deep middle to D.Baldwin (D.Whitner).,28,6,2012 -20121223_SF@SEA,3,23,39,SEA,SF,2,10,50,(8:39) (Shotgun) R.Wilson scrambles right end to SF 41 for 9 yards.,28,6,2012 -20121223_SF@SEA,3,22,56,SEA,SF,3,1,41,(7:56) M.Robinson right guard to SF 40 for 1 yard (N.Bowman; R.Jean Francois).,28,6,2012 -20121223_SF@SEA,3,22,13,SEA,SF,1,10,40,(7:13) (Shotgun) S.Rice pass incomplete deep right to G.Tate (C.Rogers). After lateral from Wilson.,28,6,2012 -20121223_SF@SEA,3,22,5,SEA,SF,2,10,40,(7:05) (Shotgun) M.Lynch up the middle to SF 38 for 2 yards (R.McDonald; N.Bowman).,28,6,2012 -20121223_SF@SEA,3,21,22,SEA,SF,3,8,38,(6:22) (Shotgun) R.Wilson pass deep left to J.Kearse pushed ob at SF 21 for 17 yards (D.Whitner).,28,6,2012 -20121223_SF@SEA,3,20,50,SEA,SF,1,10,21,(5:50) (Shotgun) R.Wilson pass incomplete deep left to J.Kearse (T.Brown).,28,6,2012 -20121223_SF@SEA,3,20,45,SEA,SF,2,10,21,(5:45) R.Wilson pass short right to Z.Miller to SF 17 for 4 yards (D.Whitner).,28,6,2012 -20121223_SF@SEA,3,19,59,SEA,SF,3,6,17,(4:59) (Shotgun) R.Wilson pass short right to R.Turbin to SF 6 for 11 yards (P.Willis).,28,6,2012 -20121223_SF@SEA,3,19,17,SEA,SF,1,6,6,(4:17) M.Lynch left tackle to SF 4 for 2 yards (N.Bowman A.Brooks).,28,6,2012 -20121223_SF@SEA,3,18,34,SEA,SF,2,4,4,(3:34) R.Wilson pass incomplete short right.,28,6,2012 -20121223_SF@SEA,3,18,27,SEA,SF,3,4,4,(3:27) (Shotgun) R.Wilson pass short right to D.Baldwin for 4 yards TOUCHDOWN.,28,6,2012 -20121223_SF@SEA,3,18,27,SEA,SF,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,28,6,2012 -20121223_SF@SEA,3,18,27,SEA,SF,,,4,S.Hauschka kicks 70 yards from SEA 35 to SF -5. L.James to SF 30 for 35 yards (J.Johnson; H.Farwell).,35,6,2012 -20121223_SF@SEA,3,18,15,SF,SEA,1,10,70,(3:15) (Shotgun) C.Kaepernick pass deep right to G.Celek to SEA 35 for 35 yards (R.Sherman).,6,35,2012 -20121223_SF@SEA,3,17,43,SF,SEA,1,10,35,(2:43) (Shotgun) C.Kaepernick pass short left to R.Moss ran ob at SEA 29 for 6 yards.,6,35,2012 -20121223_SF@SEA,3,17,9,SF,SEA,2,4,29,(2:09) (Shotgun) C.Kaepernick pass short right to G.Celek to SEA 23 for 6 yards (J.Lane K.Chancellor).,6,35,2012 -20121223_SF@SEA,3,16,28,SF,SEA,1,10,23,(1:28) (Shotgun) C.Kaepernick pass incomplete deep left to M.Crabtree [B.Wagner].,6,35,2012 -20121223_SF@SEA,3,16,22,SF,SEA,2,10,23,(1:22) (Shotgun) F.Gore up the middle to SEA 5 for 18 yards (E.Thomas).,6,35,2012 -20121223_SF@SEA,3,15,39,SF,SEA,1,5,5,(:39) (Shotgun) C.Kaepernick pass incomplete short left to G.Celek.,6,35,2012 -20121223_SF@SEA,3,15,33,SF,SEA,2,5,5,(:33) L.James left end to SEA 3 for 2 yards (E.Thomas; M.Smith).,6,35,2012 -20121223_SF@SEA,4,15,0,SF,SEA,3,3,3,(15:00) (Shotgun) C.Kaepernick pass short middle intended for R.Moss INTERCEPTED by R.Sherman at SEA 0. Touchback.,6,35,2012 -20121223_SF@SEA,4,14,52,SEA,SF,1,10,80,(14:52) (Shotgun) M.Lynch right tackle to SEA 20 for no gain (Ald.Smith; R.Jean Francois).,35,6,2012 -20121223_SF@SEA,4,14,11,SEA,SF,2,10,80,(14:11) M.Lynch right tackle to SEA 29 for 9 yards (N.Bowman; D.Whitner).,35,6,2012 -20121223_SF@SEA,4,13,24,SEA,SF,3,1,71,(13:24) M.Lynch up the middle to SEA 30 for 1 yard (N.Bowman; I.Sopoaga).,35,6,2012 -20121223_SF@SEA,4,12,40,SEA,SF,1,10,70,(12:40) M.Lynch right tackle to SEA 39 for 9 yards (P.Willis; C.Rogers).,35,6,2012 -20121223_SF@SEA,4,11,52,SEA,SF,2,1,61,(11:52) R.Turbin left tackle pushed ob at SF 37 for 24 yards (D.Whitner).,35,6,2012 -20121223_SF@SEA,4,11,14,SEA,SF,1,10,37,(11:14) (Shotgun) R.Turbin right tackle to SF 33 for 4 yards (A.Brooks; N.Bowman).,35,6,2012 -20121223_SF@SEA,4,10,32,SEA,SF,2,6,33,(10:32) M.Lynch up the middle to SF 32 for 1 yard (N.Bowman; R.McDonald).,35,6,2012 -20121223_SF@SEA,4,9,50,SEA,SF,3,5,32,(9:50) (Shotgun) R.Wilson pass short right to G.Tate pushed ob at SF 11 for 21 yards (D.Whitner). Penalty on SF-A.Brooks Defensive Offside declined.,35,6,2012 -20121223_SF@SEA,4,9,18,SEA,SF,1,10,11,(9:18) M.Lynch left tackle to SF 8 for 3 yards (T.Brown P.Willis).,35,6,2012 -20121223_SF@SEA,4,8,40,SEA,SF,2,7,8,(8:40) (Shotgun) M.Lynch left guard to SF 6 for 2 yards (I.Sopoaga; N.Bowman).,35,6,2012 -20121223_SF@SEA,4,7,59,SEA,SF,3,5,6,(7:59) (Shotgun) R.Wilson pass incomplete short left to G.Tate (T.Brown). PENALTY on SF-T.Brown Defensive Holding 3 yards enforced at SF 6 - No Play.,35,6,2012 -20121223_SF@SEA,4,7,50,SEA,SF,1,3,3,(7:50) M.Lynch left end to SF 6 for -3 yards (N.Bowman).,35,6,2012 -20121223_SF@SEA,4,7,7,SEA,SF,2,6,6,(7:07) (Shotgun) R.Wilson pass short middle to D.Baldwin for 6 yards TOUCHDOWN.,35,6,2012 -20121223_SF@SEA,4,7,7,SEA,SF,,,6,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,35,6,2012 -20121223_SF@SEA,4,7,7,SEA,SF,,,6,S.Hauschka kicks 67 yards from SEA 35 to SF -2. L.James MUFFS catch recovered by SF-D.Walker at SF 6. D.Walker to SF 10 for 4 yards (J.Kearse).,42,6,2012 -20121223_SF@SEA,4,6,57,SF,SEA,1,10,90,(6:57) (Shotgun) L.James left end to SF 14 for 4 yards (B.Wagner M.Smith). PENALTY on SEA-B.Irvin Unnecessary Roughness 15 yards enforced at SF 14.,6,42,2012 -20121223_SF@SEA,4,6,33,SF,SEA,1,10,71,(6:33) (Shotgun) C.Kaepernick pass deep right to D.Walker to SEA 48 for 23 yards (J.Lane).,6,42,2012 -20121223_SF@SEA,4,5,56,SF,SEA,1,10,48,(5:56) (Shotgun) C.Kaepernick pass incomplete short right to R.Moss.,6,42,2012 -20121223_SF@SEA,4,5,53,SF,SEA,2,10,48,(5:53) C.Kaepernick pass short left to D.Walker to SEA 39 for 9 yards (B.Maxwell).,6,42,2012 -20121223_SF@SEA,4,5,17,SF,SEA,3,1,39,(5:17) C.Kaepernick up the middle to SEA 38 for 1 yard (C.McDonald).,6,42,2012 -20121223_SF@SEA,4,4,38,SF,SEA,1,10,38,(4:38) (Shotgun) C.Kaepernick scrambles left end to SEA 31 for 7 yards.,6,42,2012 -20121223_SF@SEA,4,3,54,SF,SEA,2,3,31,(3:54) (Shotgun) C.Kaepernick pass short middle to L.James to SEA 24 for 7 yards (B.Wagner; J.Lane).,6,42,2012 -20121223_SF@SEA,4,3,16,SF,SEA,1,10,24,(3:16) (Shotgun) C.Kaepernick scrambles left end pushed ob at SEA 18 for 6 yards (B.Wagner).,6,42,2012 -20121223_SF@SEA,4,3,8,SF,SEA,2,4,18,(3:08) (Shotgun) C.Kaepernick pass short left to L.James to SEA 11 for 7 yards (K.Wright) [J.Johnson].,6,42,2012 -20121223_SF@SEA,4,2,23,SF,SEA,1,10,11,(2:23) (Shotgun) A.Dixon right tackle to SEA 5 for 6 yards (J.Lane; B.Wagner).,6,42,2012 -20121223_SF@SEA,4,2,1,SF,SEA,2,4,5,(2:01) (No Huddle Shotgun) C.Kaepernick pass incomplete short left to D.Walker.,6,42,2012 -20121223_SF@SEA,4,1,55,SF,SEA,3,4,5,(1:55) (Shotgun) A.Dixon up the middle to SEA 3 for 2 yards (B.Wagner; K.Wright). PENALTY on SF-A.Davis Unnecessary Roughness 15 yards enforced at SEA 3.,6,42,2012 -20121223_SF@SEA,4,1,47,SF,SEA,4,17,18,(1:47) (Shotgun) C.Kaepernick pass deep right to D.Walker for 18 yards TOUCHDOWN.,6,42,2012 -20121223_SF@SEA,4,1,47,SF,SEA,,,18,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,6,42,2012 -20121223_SF@SEA,4,1,47,SF,SEA,,,18,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,42,2012 -20121223_SF@SEA,4,1,40,SEA,SF,1,10,80,(1:40) #15 Flynn in at QB. M.Flynn kneels to SEA 19 for -1 yards.,42,13,2012 -20121223_SF@SEA,4,0,59,SEA,SF,2,11,81,(:59) M.Flynn kneels to SEA 18 for -1 yards.,42,13,2012 -20121223_SF@SEA,4,0,26,SEA,SF,3,12,82,(:26) M.Flynn kneels to SEA 17 for -1 yards.,42,13,2012 -20121223_SF@SEA,4,0,26,SEA,SF,,,82,                      ,42,13,2012 -20121230_TB@ATL,1,0,0,TB,ATL,,,82,M.Koenen kicks 62 yards from TB 35 to ATL 3. Jz. Rodgers to ATL 15 for 12 yards (D.Watson).,0,0,2012 -20121230_TB@ATL,1,59,54,ATL,TB,1,10,85,(14:54) M.Ryan pass short right to J.Jones to ATL 25 for 10 yards (L.Johnson; L.David). TB-L.David was injured during the play. His return is Probable.,0,0,2012 -20121230_TB@ATL,1,59,25,ATL,TB,1,10,75,(14:25) M.Ryan scrambles right end to ATL 30 for 5 yards (M.Foster).,0,0,2012 -20121230_TB@ATL,1,58,51,ATL,TB,2,5,70,(13:51) M.Turner right end to ATL 28 for -2 yards (R.Miller; M.Foster).,0,0,2012 -20121230_TB@ATL,1,58,9,ATL,TB,3,7,72,(13:09) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 43 for 15 yards (A.Black; E.Biggers).,0,0,2012 -20121230_TB@ATL,1,57,25,ATL,TB,1,10,57,(12:25) M.Ryan pass incomplete deep right to R.White.,0,0,2012 -20121230_TB@ATL,1,57,19,ATL,TB,2,10,57,(12:19) M.Turner left end to ATL 46 for 3 yards (E.Biggers).,0,0,2012 -20121230_TB@ATL,1,56,36,ATL,TB,3,7,54,(11:36) (Shotgun) M.Ryan pass short left to R.White to TB 48 for 6 yards (E.Biggers) [M.Bennett].,0,0,2012 -20121230_TB@ATL,1,55,56,ATL,TB,4,1,48,(10:56) M.Bosher punts 38 yards to TB 10 Center-J.Harris fair catch by R.Parrish.,0,0,2012 -20121230_TB@ATL,1,55,49,TB,ATL,1,10,90,(10:49) J.Freeman pass short right to M.Williams pushed ob at TB 16 for 6 yards (T.DeCoud).,0,0,2012 -20121230_TB@ATL,1,55,16,TB,ATL,2,4,84,(10:16) (Shotgun) J.Freeman pass deep left to M.Williams pushed ob at TB 32 for 16 yards (R.McClain).,0,0,2012 -20121230_TB@ATL,1,54,35,TB,ATL,1,10,68,(9:35) (Shotgun) D.Martin right guard to TB 36 for 4 yards (V.Walker).,0,0,2012 -20121230_TB@ATL,1,54,1,TB,ATL,2,6,64,(9:01) (Shotgun) J.Freeman pass short left to D.Martin to TB 43 for 7 yards (S.Weatherspoon).,0,0,2012 -20121230_TB@ATL,1,53,25,TB,ATL,1,10,57,(8:25) D.Martin left tackle to ATL 38 for 19 yards (T.DeCoud).,0,0,2012 -20121230_TB@ATL,1,52,45,TB,ATL,1,10,38,(7:45) D.Martin left end to ATL 35 for 3 yards (C.Peters). ATL-D.Robinson was injured during the play. He is Out.,0,0,2012 -20121230_TB@ATL,1,52,22,TB,ATL,2,7,35,(7:22) (Shotgun) J.Freeman pass short right to M.Williams to ATL 30 for 5 yards (A.Samuel). ATL-A.Samuel was injured during the play. His return is Probable.,0,0,2012 -20121230_TB@ATL,1,51,33,TB,ATL,3,2,30,(6:33) (Shotgun) J.Freeman pass incomplete short right to M.Williams (J.Abraham).,0,0,2012 -20121230_TB@ATL,1,51,28,TB,ATL,4,2,30,(6:28) C.Barth 48 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20121230_TB@ATL,1,51,28,TB,ATL,,,30,M.Koenen kicks 62 yards from TB 35 to ATL 3. Jz. Rodgers to ATL 28 for 25 yards (E.Lorig).,3,0,2012 -20121230_TB@ATL,1,51,18,ATL,TB,1,10,72,(6:18) M.Ryan pass short left to R.White to ATL 42 for 14 yards (E.Biggers).,0,3,2012 -20121230_TB@ATL,1,50,40,ATL,TB,1,10,58,(5:40) Jz. Rodgers right end to TB 42 for 16 yards (M.Foster).,0,3,2012 -20121230_TB@ATL,1,50,4,ATL,TB,1,10,42,(5:04) J.Snelling right end to TB 35 for 7 yards (M.Barron).,0,3,2012 -20121230_TB@ATL,1,49,30,ATL,TB,2,3,35,(4:30) (Shotgun) M.Ryan pass short left to J.Snelling to TB 26 for 9 yards (M.Barron).,0,3,2012 -20121230_TB@ATL,1,48,48,ATL,TB,1,10,26,(3:48) M.Ryan pass short right to R.White ran ob at TB 16 for 10 yards (L.Johnson).,0,3,2012 -20121230_TB@ATL,1,48,18,ATL,TB,1,10,16,(3:18) M.Johnson reported in as eligible. M.Ryan pass incomplete short left to R.White [L.David].,0,3,2012 -20121230_TB@ATL,1,48,16,ATL,TB,2,10,16,(3:16) M.Ryan pass incomplete short right to H.Douglas.,0,3,2012 -20121230_TB@ATL,1,48,10,ATL,TB,3,10,16,(3:10) (Shotgun) M.Ryan scrambles right tackle to TB 10 for 6 yards (R.Barber).,0,3,2012 -20121230_TB@ATL,1,47,27,ATL,TB,4,4,10,(2:27) M.Bryant 28 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,0,3,2012 -20121230_TB@ATL,1,47,27,ATL,TB,,,10,M.Bosher kicks 70 yards from ATL 35 to TB -5. R.Parrish to TB 18 for 23 yards (C.Mitchell).,3,3,2012 -20121230_TB@ATL,1,47,19,TB,ATL,1,10,82,(2:19) J.Freeman pass incomplete deep right to V.Jackson (A.Samuel).,3,3,2012 -20121230_TB@ATL,1,47,10,TB,ATL,2,10,82,(2:10) D.Martin left end to TB 20 for 2 yards (A.Dent).,3,3,2012 -20121230_TB@ATL,1,46,28,TB,ATL,3,8,80,(1:28) (Shotgun) J.Freeman pass deep right to T.Underwood ran ob at TB 37 for 17 yards.,3,3,2012 -20121230_TB@ATL,1,45,57,TB,ATL,1,10,63,(:57) J.Freeman pass incomplete short right to E.Lorig (A.Dent).,3,3,2012 -20121230_TB@ATL,1,45,49,TB,ATL,2,10,63,(:49) D.Martin left guard to TB 38 for 1 yard (P.Jerry).,3,3,2012 -20121230_TB@ATL,1,45,8,TB,ATL,3,9,62,(:08) (Shotgun) J.Freeman pass short right to L.Stocker to TB 45 for 7 yards (A.Samuel).,3,3,2012 -20121230_TB@ATL,2,45,0,TB,ATL,4,2,55,(15:00) M.Koenen punts 46 yards to ATL 9 Center-A.Economos fair catch by H.Douglas.,3,3,2012 -20121230_TB@ATL,2,44,53,ATL,TB,1,10,91,(14:53) M.Turner left end to ATL 10 for 1 yard (L.David).,3,3,2012 -20121230_TB@ATL,2,44,17,ATL,TB,2,9,90,(14:17) M.Ryan pass short right to R.White to ATL 13 for 3 yards (L.Johnson).,3,3,2012 -20121230_TB@ATL,2,43,34,ATL,TB,3,6,87,(13:34) (Shotgun) M.Ryan pass short middle to Jz. Rodgers to ATL 18 for 5 yards (A.Gaitor).,3,3,2012 -20121230_TB@ATL,2,42,49,ATL,TB,4,1,82,(12:49) M.Bosher punts 56 yards to TB 26 Center-J.Harris. R.Parrish ran ob at TB 36 for 10 yards (K.Biermann).,3,3,2012 -20121230_TB@ATL,2,42,38,TB,ATL,1,10,64,(12:38) (Shotgun) D.Martin left guard to TB 34 for -2 yards (V.Walker).,3,3,2012 -20121230_TB@ATL,2,41,57,TB,ATL,2,12,66,(11:57) J.Freeman pass short left to L.Stocker pushed ob at ATL 49 for 17 yards (S.Nicholas).,3,3,2012 -20121230_TB@ATL,2,41,29,TB,ATL,1,10,49,(11:29) J.Freeman pass short left to L.Stocker to ATL 23 for 26 yards (R.McClain).,3,3,2012 -20121230_TB@ATL,2,40,46,TB,ATL,1,10,23,(10:46) (Shotgun) J.Freeman pass short left to E.Lorig pushed ob at ATL 11 for 12 yards (T.DeCoud).,3,3,2012 -20121230_TB@ATL,2,40,9,TB,ATL,1,10,11,(10:09) D.Martin right guard to ATL 10 for 1 yard (P.Jerry).,3,3,2012 -20121230_TB@ATL,2,39,34,TB,ATL,2,9,10,(9:34) (Shotgun) D.Martin left tackle to ATL 8 for 2 yards (V.Walker; J.Abraham).,3,3,2012 -20121230_TB@ATL,2,38,51,TB,ATL,3,7,8,(8:51) (Shotgun) J.Freeman pass short middle to M.Williams for 8 yards TOUCHDOWN.,3,3,2012 -20121230_TB@ATL,2,38,51,TB,ATL,,,8,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,3,3,2012 -20121230_TB@ATL,2,38,51,TB,ATL,,,8,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,10,3,2012 -20121230_TB@ATL,2,38,43,ATL,TB,1,10,80,(8:43) (Shotgun) M.Ryan pass short left to R.White to ATL 29 for 9 yards (M.Foster).,3,10,2012 -20121230_TB@ATL,2,38,20,ATL,TB,2,1,71,(8:20) (No Huddle) Jz. Rodgers left tackle to ATL 41 for 12 yards (M.Foster). PENALTY on ATL-J.Jones Illegal Block Above the Waist 10 yards enforced at ATL 35.,3,10,2012 -20121230_TB@ATL,2,37,49,ATL,TB,2,5,75,(7:49) (No Huddle) M.Ryan pass incomplete deep left to J.Jones (A.Black). TB-A.Black was injured during the play. His return is Probable.,3,10,2012 -20121230_TB@ATL,2,37,40,ATL,TB,3,5,75,(7:40) (Shotgun) M.Ryan pass short right to H.Douglas to ATL 35 for 10 yards (D.Gorrer).,3,10,2012 -20121230_TB@ATL,2,36,57,ATL,TB,1,10,65,(6:57) Jz. Rodgers right guard to ATL 37 for 2 yards (G.Gibson).,3,10,2012 -20121230_TB@ATL,2,36,21,ATL,TB,2,8,63,(6:21) (Shotgun) M.Ryan pass incomplete short right to R.White (L.David).,3,10,2012 -20121230_TB@ATL,2,36,17,ATL,TB,3,8,63,(6:17) M.Ryan pass incomplete deep left to H.Douglas.,3,10,2012 -20121230_TB@ATL,2,36,13,ATL,TB,4,8,63,(6:13) M.Bosher punt is BLOCKED by D.Watson Center-J.Harris ball out of bounds at ATL 26.,3,10,2012 -20121230_TB@ATL,2,36,6,TB,ATL,1,10,26,(6:06) T.Underwood left end pushed ob at ATL 25 for 1 yard (K.Biermann).,10,3,2012 -20121230_TB@ATL,2,35,32,TB,ATL,2,9,25,(5:32) (Shotgun) J.Freeman pass short left to M.Williams to ATL 18 for 7 yards (D.Franks).,10,3,2012 -20121230_TB@ATL,2,34,50,TB,ATL,3,2,18,(4:50) (Shotgun) D.Martin left tackle to ATL 10 for 8 yards (S.Weatherspoon).,10,3,2012 -20121230_TB@ATL,2,34,8,TB,ATL,1,10,10,(4:08) J.Freeman pass incomplete short right to M.Williams (J.Abraham).,10,3,2012 -20121230_TB@ATL,2,34,3,TB,ATL,2,10,10,(4:03) D.Martin right end to ATL 14 for -4 yards (J.Babineaux). Penalty on TB-E.Lorig Offensive Holding declined.,10,3,2012 -20121230_TB@ATL,2,33,54,TB,ATL,3,14,14,(3:54) (Shotgun) J.Freeman pass short right to T.Underwood to ATL 4 for 10 yards (S.Weatherspoon).,10,3,2012 -20121230_TB@ATL,2,33,7,TB,ATL,4,4,4,(3:07) C.Barth 22 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,3,2012 -20121230_TB@ATL,2,33,7,TB,ATL,,,4,M.Koenen kicks 70 yards from TB 35 to ATL -5. Jz. Rodgers to ATL 17 for 22 yards (D.Watson).,13,3,2012 -20121230_TB@ATL,2,32,56,ATL,TB,1,10,83,(2:56) (Shotgun) M.Ryan pass short left to J.Jones ran ob at ATL 45 for 28 yards (M.Foster).,3,13,2012 -20121230_TB@ATL,2,32,31,ATL,TB,1,10,55,(2:31) (No Huddle) M.Ryan pass short right to T.Gonzalez to TB 48 for 7 yards (M.Foster).,3,13,2012 -20121230_TB@ATL,2,32,0,ATL,TB,2,3,48,(2:00) (Shotgun) M.Ryan pass short left to H.Douglas pushed ob at TB 46 for 2 yards (E.Biggers).,3,13,2012 -20121230_TB@ATL,2,31,55,ATL,TB,3,1,46,(1:55) (Shotgun) M.Ryan pass incomplete short left to T.Gonzalez.,3,13,2012 -20121230_TB@ATL,2,31,49,ATL,TB,4,1,46,(1:49) M.Bosher punts 37 yards to TB 9 Center-J.Harris fair catch by R.Parrish.,3,13,2012 -20121230_TB@ATL,2,31,41,TB,ATL,1,10,91,(1:41) (Shotgun) J.Freeman pass incomplete short right to D.Clark.,13,3,2012 -20121230_TB@ATL,2,31,35,TB,ATL,2,10,91,(1:35) (Shotgun) D.Martin left guard to TB 11 for 2 yards (J.Babineaux).,13,3,2012 -20121230_TB@ATL,2,31,25,TB,ATL,3,8,89,(1:25) (Shotgun) J.Freeman pass incomplete short right to D.Martin (T.DeCoud).,13,3,2012 -20121230_TB@ATL,2,31,21,TB,ATL,4,8,89,(1:21) M.Koenen punts 56 yards to ATL 33 Center-A.Economos. H.Douglas to ATL 44 for 11 yards (A.Hayward; B.McDonald).,13,3,2012 -20121230_TB@ATL,2,31,11,ATL,TB,1,10,56,(1:11) (Shotgun) M.Ryan pass short left to H.Douglas to ATL 46 for 2 yards (D.Bowers). TB-M.Bennett was injured during the play. His return is Probable.,3,13,2012 -20121230_TB@ATL,2,30,55,ATL,TB,2,8,54,(:55) (Shotgun) M.Ryan sacked at ATL 35 for -11 yards (D.Te'o-Nesheim).,3,13,2012 -20121230_TB@ATL,2,30,39,ATL,TB,3,19,65,(:39) (Shotgun) M.Ryan pass short left to J.Snelling to TB 49 for 16 yards (D.Bowers).,3,13,2012 -20121230_TB@ATL,2,30,5,ATL,TB,4,3,49,(:05) (Shotgun) M.Ryan sacked at ATL 37 for -14 yards (L.David).,3,13,2012 -20121230_TB@ATL,3,30,0,ATL,TB,,,49,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,3,13,2012 -20121230_TB@ATL,3,30,0,TB,ATL,1,10,80,(15:00) J.Freeman pass deep right to M.Williams ran ob at TB 43 for 23 yards.,13,3,2012 -20121230_TB@ATL,3,29,31,TB,ATL,1,10,57,(14:31) (Shotgun) D.Martin right tackle to TB 45 for 2 yards (V.Walker).,13,3,2012 -20121230_TB@ATL,3,28,55,TB,ATL,2,8,55,(13:55) D.Martin left guard to TB 47 for 2 yards (J.Abraham).,13,3,2012 -20121230_TB@ATL,3,28,14,TB,ATL,3,6,53,(13:14) (Shotgun) J.Freeman pass short middle to D.Martin to ATL 41 for 12 yards (S.Nicholas).,13,3,2012 -20121230_TB@ATL,3,27,33,TB,ATL,1,10,41,(12:33) D.Martin right tackle to ATL 40 for 1 yard (S.Nicholas).,13,3,2012 -20121230_TB@ATL,3,26,57,TB,ATL,2,9,40,(11:57) (Shotgun) J.Freeman pass incomplete short right to T.Underwood.,13,3,2012 -20121230_TB@ATL,3,26,52,TB,ATL,3,9,40,(11:52) J.Freeman pass short right to V.Jackson to ATL 24 for 16 yards (S.Nicholas).,13,3,2012 -20121230_TB@ATL,3,26,10,TB,ATL,1,10,24,(11:10) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (S.Weatherspoon).,13,3,2012 -20121230_TB@ATL,3,26,3,TB,ATL,2,10,24,(11:03) (Shotgun) J.Freeman pass incomplete short right to L.Stocker [S.Nicholas].,13,3,2012 -20121230_TB@ATL,3,25,57,TB,ATL,3,10,24,(10:57) (Shotgun) J.Freeman pass incomplete short left to M.Williams.,13,3,2012 -20121230_TB@ATL,3,25,52,TB,ATL,4,10,24,(10:52) C.Barth 42 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,13,3,2012 -20121230_TB@ATL,3,25,52,TB,ATL,,,24,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,16,3,2012 -20121230_TB@ATL,3,25,47,ATL,TB,1,10,80,(10:47) M.Ryan pass short right to M.Cox pushed ob at ATL 23 for 3 yards (A.Hayward).,3,16,2012 -20121230_TB@ATL,3,25,16,ATL,TB,2,7,77,(10:16) M.Ryan pass short left to Jz. Rodgers to ATL 31 for 8 yards (L.David).,3,16,2012 -20121230_TB@ATL,3,24,31,ATL,TB,1,10,69,(9:31) M.Ryan pass short right to Jz. Rodgers to ATL 36 for 5 yards (R.Miller).,3,16,2012 -20121230_TB@ATL,3,23,54,ATL,TB,2,5,64,(8:54) Jz. Rodgers left tackle to ATL 37 for 1 yard (M.Foster).,3,16,2012 -20121230_TB@ATL,3,23,11,ATL,TB,3,4,63,(8:11) (Shotgun) M.Ryan pass incomplete short left to J.Jones.,3,16,2012 -20121230_TB@ATL,3,23,6,ATL,TB,4,4,63,(8:06) M.Bosher punts 59 yards to TB 4 Center-J.Harris. R.Parrish to TB 15 for 11 yards (DJ.Davis).,3,16,2012 -20121230_TB@ATL,3,22,55,TB,ATL,1,10,85,(7:55) D.Martin left tackle to TB 20 for 5 yards (K.Biermann).,16,3,2012 -20121230_TB@ATL,3,22,13,TB,ATL,2,5,80,(7:13) D.Martin left end to TB 24 for 4 yards (S.Nicholas).,16,3,2012 -20121230_TB@ATL,3,21,27,TB,ATL,3,1,76,(6:27) J.Freeman right guard to TB 25 for 1 yard (C.Peters).,16,3,2012 -20121230_TB@ATL,3,20,39,TB,ATL,1,10,75,(5:39) (Shotgun) D.Martin left guard to TB 30 for 5 yards (S.Weatherspoon). TB-T.Larsen was injured during the play. His return is Probable.,16,3,2012 -20121230_TB@ATL,3,20,17,TB,ATL,2,5,70,(5:17) J.Freeman pass short left to D.Martin to TB 28 for -2 yards (S.Weatherspoon).,16,3,2012 -20121230_TB@ATL,3,19,34,TB,ATL,3,7,72,(4:34) (Shotgun) J.Freeman pass short right intended for T.Underwood INTERCEPTED by A.Samuel at TB 32. A.Samuel to TB 21 for 11 yards (L.Stocker).,16,3,2012 -20121230_TB@ATL,3,19,26,ATL,TB,1,10,21,(4:26) M.Turner right guard to TB 17 for 4 yards (M.Bennett).,3,16,2012 -20121230_TB@ATL,3,18,51,ATL,TB,2,6,17,(3:51) M.Johnson reported in as eligible. M.Turner right tackle for 17 yards TOUCHDOWN.,3,16,2012 -20121230_TB@ATL,3,18,51,ATL,TB,,,17,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,3,16,2012 -20121230_TB@ATL,3,18,51,ATL,TB,,,17,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,10,16,2012 -20121230_TB@ATL,3,18,45,TB,ATL,1,10,80,(3:45) D.Martin left guard to TB 30 for 10 yards (C.Hope).,16,10,2012 -20121230_TB@ATL,3,18,13,TB,ATL,1,10,70,(3:13) D.Martin left tackle to TB 33 for 3 yards (A.Dent).,16,10,2012 -20121230_TB@ATL,3,17,34,TB,ATL,2,7,67,(2:34) (Shotgun) J.Freeman pass short right to V.Jackson to ATL 40 for 27 yards (S.Weatherspoon).,16,10,2012 -20121230_TB@ATL,3,16,52,TB,ATL,1,10,40,(1:52) D.Martin left tackle for 40 yards TOUCHDOWN.,16,10,2012 -20121230_TB@ATL,3,16,52,TB,ATL,,,40,(Pass formation) TWO-POINT CONVERSION ATTEMPT. J.Freeman pass to M.Williams is incomplete. ATTEMPT FAILS.,16,10,2012 -20121230_TB@ATL,3,16,52,TB,ATL,,,40,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,22,10,2012 -20121230_TB@ATL,3,16,43,ATL,TB,1,10,80,(1:43) Jz. Rodgers right end to ATL 23 for 3 yards (M.Foster).,10,22,2012 -20121230_TB@ATL,3,16,4,ATL,TB,2,7,77,(1:04) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 29 for 6 yards (M.Foster).,10,22,2012 -20121230_TB@ATL,3,15,43,ATL,TB,3,1,71,(:43) (No Huddle) M.Ryan pass incomplete short right to H.Douglas (M.Bennett).,10,22,2012 -20121230_TB@ATL,3,15,38,ATL,TB,4,1,71,(:38) M.Bosher punts 60 yards to TB 11 Center-J.Harris. R.Parrish ran ob at TB 25 for 14 yards (M.Peterson).,10,22,2012 -20121230_TB@ATL,3,15,29,TB,ATL,1,10,75,(:29) D.Martin right guard to TB 29 for 4 yards (C.Peters).,22,10,2012 -20121230_TB@ATL,4,15,0,TB,ATL,2,6,71,(15:00) J.Freeman pass incomplete short left to L.Stocker (S.Weatherspoon). PENALTY on TB-D.Penn Offensive Holding 10 yards enforced at TB 29 - No Play.,22,10,2012 -20121230_TB@ATL,4,14,54,TB,ATL,2,16,81,(14:54) (Shotgun) J.Freeman pass short left to D.Martin to TB 20 for 1 yard (T.DeCoud).,22,10,2012 -20121230_TB@ATL,4,14,11,TB,ATL,3,15,80,(14:11) (Shotgun) J.Freeman pass incomplete short middle to D.Ware.,22,10,2012 -20121230_TB@ATL,4,14,6,TB,ATL,4,15,80,(14:06) M.Koenen punts 51 yards to ATL 29 Center-A.Economos. H.Douglas to ATL 40 for 11 yards (A.Economos).,22,10,2012 -20121230_TB@ATL,4,13,54,ATL,TB,1,10,60,(13:54) M.Ryan pass incomplete deep right to T.Gonzalez.,10,22,2012 -20121230_TB@ATL,4,13,49,ATL,TB,2,10,60,(13:49) (No Huddle) J.Snelling right tackle to ATL 40 for no gain (D.Te'o-Nesheim).,10,22,2012 -20121230_TB@ATL,4,13,11,ATL,TB,3,10,60,(13:11) (Shotgun) M.Ryan pass short right to Jz. Rodgers to ATL 45 for 5 yards (R.Barber) [G.McCoy].,10,22,2012 -20121230_TB@ATL,4,12,34,ATL,TB,4,5,55,(12:34) M.Bosher punts 55 yards to end zone Center-J.Harris Touchback.,10,22,2012 -20121230_TB@ATL,4,12,25,TB,ATL,1,10,80,(12:25) J.Freeman pass incomplete short left to V.Jackson (R.McClain).,22,10,2012 -20121230_TB@ATL,4,12,19,TB,ATL,2,10,80,(12:19) D.Martin left end to TB 20 for no gain (V.Walker). Penalty on TB-E.Lorig Offensive Holding declined.,22,10,2012 -20121230_TB@ATL,4,11,42,TB,ATL,3,10,80,(11:42) (Shotgun) J.Freeman pass incomplete short right to V.Jackson [J.Abraham]. ATL-J.Abraham was injured during the play. His return is Questionable.,22,10,2012 -20121230_TB@ATL,4,11,36,TB,ATL,4,10,80,(11:36) M.Koenen punts 43 yards to ATL 37 Center-A.Economos. H.Douglas to ATL 48 for 11 yards (A.Hayward).,22,10,2012 -20121230_TB@ATL,4,11,23,ATL,TB,1,10,52,(11:23) M.Turner right end to ATL 43 for -5 yards (D.Bowers; D.Te'o-Nesheim).,10,22,2012 -20121230_TB@ATL,4,10,46,ATL,TB,2,15,57,(10:46) M.Ryan sacked at ATL 36 for -7 yards (D.Bowers). PENALTY on TB-R.Barber Defensive Holding 5 yards enforced at ATL 43 - No Play.,10,22,2012 -20121230_TB@ATL,4,10,23,ATL,TB,1,10,52,(10:23) M.Ryan pass short left to Jz. Rodgers to TB 47 for 5 yards (R.Barber).,10,22,2012 -20121230_TB@ATL,4,9,47,ATL,TB,2,5,47,(9:47) M.Ryan pass deep left to J.Jones to TB 29 for 18 yards (M.Foster).,10,22,2012 -20121230_TB@ATL,4,9,9,ATL,TB,1,10,29,(9:09) M.Ryan pass short left to T.Gonzalez to TB 21 for 8 yards (G.Gibson).,10,22,2012 -20121230_TB@ATL,4,8,25,ATL,TB,2,2,21,(8:25) (Shotgun) M.Ryan pass short left to Jz. Rodgers to TB 8 for 13 yards (R.Barber). TB-G.McCoy was injured during the play. His return is Probable.,10,22,2012 -20121230_TB@ATL,4,7,52,ATL,TB,1,8,8,(7:52) (Shotgun) M.Ryan pass incomplete short right to R.White (L.Johnson).,10,22,2012 -20121230_TB@ATL,4,7,49,ATL,TB,2,8,8,(7:49) J.Snelling left end to TB 7 for 1 yard (M.Foster).,10,22,2012 -20121230_TB@ATL,4,7,12,ATL,TB,3,7,7,(7:12) (Shotgun) M.Ryan pass incomplete short right to T.Gonzalez.,10,22,2012 -20121230_TB@ATL,4,7,7,ATL,TB,4,7,7,(7:07) (Shotgun) M.Ryan pass short right to H.Douglas for 7 yards TOUCHDOWN.,10,22,2012 -20121230_TB@ATL,4,7,7,ATL,TB,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,22,2012 -20121230_TB@ATL,4,7,7,ATL,TB,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,17,22,2012 -20121230_TB@ATL,4,6,59,TB,ATL,1,10,80,(6:59) J.Freeman pass incomplete deep right to L.Stocker.,22,17,2012 -20121230_TB@ATL,4,6,54,TB,ATL,2,10,80,(6:54) (Shotgun) D.Martin left tackle to TB 24 for 4 yards (S.Weatherspoon).,22,17,2012 -20121230_TB@ATL,4,6,12,TB,ATL,3,6,76,(6:12) (Shotgun) J.Freeman pass short right to V.Jackson to TB 31 for 7 yards (C.Hope).,22,17,2012 -20121230_TB@ATL,4,5,28,TB,ATL,1,10,69,(5:28) D.Martin right guard to TB 35 for 4 yards (S.Weatherspoon).,22,17,2012 -20121230_TB@ATL,4,4,47,TB,ATL,2,6,65,(4:47) D.Martin left tackle to TB 35 for no gain (S.Nicholas).,22,17,2012 -20121230_TB@ATL,4,4,2,TB,ATL,3,6,65,(4:02) (Shotgun) J.Freeman pass incomplete short left to M.Williams (D.Franks).,22,17,2012 -20121230_TB@ATL,4,3,57,TB,ATL,4,6,65,(3:57) M.Koenen punts 55 yards to ATL 10 Center-A.Economos. H.Douglas ran ob at ATL 19 for 9 yards (A.Hayward).,22,17,2012 -20121230_TB@ATL,4,3,44,ATL,TB,1,10,81,(3:44) (Shotgun) M.Ryan pass short right to Jz. Rodgers to ATL 22 for 3 yards (M.Bennett).,17,22,2012 -20121230_TB@ATL,4,3,14,ATL,TB,2,7,78,(3:14) (No Huddle Shotgun) M.Ryan pass short right to Jz. Rodgers to ATL 28 for 6 yards (L.David).,17,22,2012 -20121230_TB@ATL,4,2,46,ATL,TB,3,1,72,(2:46) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 33 for 5 yards (L.David).,17,22,2012 -20121230_TB@ATL,4,2,24,ATL,TB,1,10,67,(2:24) (No Huddle) M.Ryan pass incomplete deep right to R.White.,17,22,2012 -20121230_TB@ATL,4,2,18,ATL,TB,2,10,67,(2:18) (Shotgun) M.Ryan pass incomplete short left to J.Jones (E.Biggers) [D.Bowers].,17,22,2012 -20121230_TB@ATL,4,2,11,ATL,TB,3,10,67,(2:11) (Shotgun) M.Ryan pass incomplete deep left to H.Douglas.,17,22,2012 -20121230_TB@ATL,4,2,7,ATL,TB,4,10,67,(2:07) (Shotgun) M.Ryan pass incomplete deep right to T.Gonzalez (M.Barron).,17,22,2012 -20121230_TB@ATL,4,2,2,TB,ATL,1,10,33,(2:02) J.Freeman pass incomplete deep right to M.Williams (C.Hope). PENALTY on ATL Defensive 12 On-field 5 yards enforced at ATL 33 - No Play.,22,17,2012 -20121230_TB@ATL,4,1,55,TB,ATL,1,5,28,(1:55) D.Martin left tackle to ATL 4 for 24 yards (A.Dent).,22,17,2012 -20121230_TB@ATL,4,1,8,TB,ATL,1,4,4,(1:08) D.Martin right guard to ATL 6 for -2 yards (T.DeCoud).,22,17,2012 -20121230_TB@ATL,4,0,25,TB,ATL,2,6,6,(:25) D.Martin left end to ATL 6 for no gain (T.DeCoud).,22,17,2012 -20121230_TB@ATL,4,0,25,TB,ATL,,,6,                      ,22,17,2012 -20121230_NYJ@BUF,1,0,0,BUF,NYJ,,,6,R.Lindell kicks 59 yards from BUF 35 to NYJ 6. J.McKnight to NYJ 24 for 18 yards (R.Martin).,0,0,2012 -20121230_NYJ@BUF,1,59,54,NYJ,BUF,1,10,76,(14:54) S.Greene up the middle to NYJ 28 for 4 yards (K.Sheppard).,0,0,2012 -20121230_NYJ@BUF,1,59,20,NYJ,BUF,2,6,72,(14:20) S.Greene up the middle to NYJ 33 for 5 yards (N.Bradham; N.Barnett).,0,0,2012 -20121230_NYJ@BUF,1,58,43,NYJ,BUF,3,1,67,(13:43) L.Hilliard up the middle to NYJ 35 for 2 yards (J.Byrd; N.Barnett).,0,0,2012 -20121230_NYJ@BUF,1,58,0,NYJ,BUF,1,10,65,(13:00) S.Greene left guard to NYJ 43 for 8 yards (S.Merriman).,0,0,2012 -20121230_NYJ@BUF,1,57,25,NYJ,BUF,2,2,57,(12:25) S.Greene right tackle to NYJ 47 for 4 yards (N.Bradham).,0,0,2012 -20121230_NYJ@BUF,1,56,47,NYJ,BUF,1,10,53,(11:47) (Shotgun) M.Sanchez pass incomplete short right to E.Gates. Thrown wide of receiver at NYJ 47. PENALTY on BUF Defensive 12 On-field 5 yards enforced at NYJ 47 - No Play.,0,0,2012 -20121230_NYJ@BUF,1,56,44,NYJ,BUF,1,5,48,(11:44) B.Powell up the middle to BUF 45 for 3 yards (Sp.Johnson).,0,0,2012 -20121230_NYJ@BUF,1,56,9,NYJ,BUF,2,2,45,(11:09) S.Greene up the middle to BUF 40 for 5 yards (G.Wilson K.Moore).,0,0,2012 -20121230_NYJ@BUF,1,55,29,NYJ,BUF,1,10,40,(10:29) B.Powell up the middle to BUF 29 for 11 yards (A.Williams G.Wilson).,0,0,2012 -20121230_NYJ@BUF,1,54,51,NYJ,BUF,1,10,29,(9:51) B.Powell up the middle to BUF 29 for no gain (M.Williams Ky.Williams).,0,0,2012 -20121230_NYJ@BUF,1,54,14,NYJ,BUF,2,10,29,(9:14) M.Sanchez pass incomplete deep left to J.Cumberland. Thrown wide of receiver at BUF 12. Pressure on QB: M.Williams.,0,0,2012 -20121230_NYJ@BUF,1,54,9,NYJ,BUF,3,10,29,(9:09) (Shotgun) M.Sanchez pass incomplete short left to B.Edwards. Thrown behind receiver at BUF 21 crossing from middle.,0,0,2012 -20121230_NYJ@BUF,1,54,5,NYJ,BUF,4,10,29,(9:05) N.Folk 47 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 -20121230_NYJ@BUF,1,54,5,NYJ,BUF,,,29,N.Folk kicks 61 yards from NYJ 35 to BUF 4. B.Smith to BUF 31 for 27 yards (D.Davis).,3,0,2012 -20121230_NYJ@BUF,1,53,53,BUF,NYJ,1,10,69,(8:53) R.Fitzpatrick pass short left to St.Johnson to BUF 42 for 11 yards (Ba.Scott). Curl pattern caught at BUF 42.,0,3,2012 -20121230_NYJ@BUF,1,53,7,BUF,NYJ,1,10,58,(8:07) C.Spiller up the middle to BUF 43 for 1 yard (G.McIntyre).,0,3,2012 -20121230_NYJ@BUF,1,52,25,BUF,NYJ,2,9,57,(7:25) (Shotgun) C.Spiller right tackle pushed ob at 50 for 7 yards (L.Landry).,0,3,2012 -20121230_NYJ@BUF,1,51,53,BUF,NYJ,3,2,50,(6:53) (Shotgun) PENALTY on NYJ-D.Harris Neutral Zone Infraction 5 yards enforced at 50 - No Play.,0,3,2012 -20121230_NYJ@BUF,1,51,31,BUF,NYJ,1,10,45,(6:31) C.Spiller left tackle ran ob at NYJ 35 for 10 yards. PENALTY on BUF-E.Wood Offensive Holding 10 yards enforced at NYJ 45 - No Play.,0,3,2012 -20121230_NYJ@BUF,1,51,2,BUF,NYJ,1,20,55,(6:02) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson. Thrown wide of receiver at NYJ 48.,0,3,2012 -20121230_NYJ@BUF,1,50,56,BUF,NYJ,2,20,55,(5:56) T.Choice up the middle to NYJ 44 for 11 yards (L.Landry).,0,3,2012 -20121230_NYJ@BUF,1,50,12,BUF,NYJ,3,9,44,(5:12) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson (L.Landry). Overthrown nearly intercepted at NYJ 25.,0,3,2012 -20121230_NYJ@BUF,1,50,7,BUF,NYJ,4,9,44,(5:07) S.Powell punts 34 yards to NYJ 10 Center-G.Sanborn fair catch by J.Kerley.,0,3,2012 -20121230_NYJ@BUF,1,49,58,NYJ,BUF,1,10,90,(4:58) S.Greene right guard to NYJ 12 for 2 yards (N.Bradham N.Barnett).,3,0,2012 -20121230_NYJ@BUF,1,49,22,NYJ,BUF,2,8,88,(4:22) M.Sanchez pass short middle to S.Greene to NYJ 15 for 3 yards (N.Barnett Ky.Williams). Caught at NYJ 15.,3,0,2012 -20121230_NYJ@BUF,1,48,42,NYJ,BUF,3,5,85,(3:42) (Shotgun) M.Sanchez pass short middle intended for J.Kerley INTERCEPTED by Br.Scott at NYJ 20. Br.Scott for 20 yards TOUCHDOWN. Receiver underthrown at NYJ 22.,3,0,2012 -20121230_NYJ@BUF,1,48,42,BUF,NYJ,,,85,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,0,3,2012 -20121230_NYJ@BUF,1,48,42,BUF,NYJ,,,85,R.Lindell kicks 64 yards from BUF 35 to NYJ 1. J.McKnight to NYJ 34 for 33 yards (B.Smith).,7,3,2012 -20121230_NYJ@BUF,1,48,28,NYJ,BUF,1,10,66,(3:28) S.Greene up the middle to NYJ 41 for 7 yards (Sp.Johnson N.Barnett).,3,7,2012 -20121230_NYJ@BUF,1,47,56,NYJ,BUF,2,3,59,(2:56) S.Greene up the middle to NYJ 42 for 1 yard (G.Wilson S.Merriman).,3,7,2012 -20121230_NYJ@BUF,1,47,18,NYJ,BUF,3,2,58,(2:18) M.Sanchez pass short right to K.Reuland to NYJ 46 for 4 yards (N.Bradham). Caught at NYJ 46 slanting from middle.,3,7,2012 -20121230_NYJ@BUF,1,46,40,NYJ,BUF,1,10,54,(1:40) B.Powell right guard to NYJ 49 for 3 yards (N.Bradham).,3,7,2012 -20121230_NYJ@BUF,1,45,57,NYJ,BUF,2,7,51,(:57) Direct snap to J.Kerley (M.Sanchez at WR). (Shotgun) J.Kerley right tackle to NYJ 49 for no gain (N.Bradham).,3,7,2012 -20121230_NYJ@BUF,1,45,14,NYJ,BUF,3,7,51,(:14) (Shotgun) M.Sanchez pass short left to L.Hilliard to BUF 44 for 7 yards (Br.Scott; M.Dareus). Caught in flat at NYJ 49.,3,7,2012 -20121230_NYJ@BUF,2,45,0,NYJ,BUF,1,10,44,(15:00) M.Sanchez pass incomplete short right to J.Kerley. Thrown wide of receiver at BUF 35. PENALTY on BUF-S.Gilmore Defensive Pass Interference 4 yards enforced at BUF 44 - No Play.,3,7,2012 -20121230_NYJ@BUF,2,44,55,NYJ,BUF,1,10,40,(14:55) S.Greene up the middle to BUF 34 for 6 yards (K.Moore N.Bradham).,3,7,2012 -20121230_NYJ@BUF,2,44,19,NYJ,BUF,2,4,34,(14:19) S.Greene left guard to BUF 31 for 3 yards (N.Barnett K.Moore).,3,7,2012 -20121230_NYJ@BUF,2,43,44,NYJ,BUF,3,1,31,(13:44) S.Greene left guard to BUF 27 for 4 yards (A.Williams).,3,7,2012 -20121230_NYJ@BUF,2,43,9,NYJ,BUF,1,10,27,(13:09) B.Powell left tackle to BUF 9 for 18 yards (J.Byrd N.Bradham).,3,7,2012 -20121230_NYJ@BUF,2,42,23,NYJ,BUF,1,9,9,(12:23) T.Tebow in at QB. J.McKnight right tackle to BUF 7 for 2 yards (S.Merriman).,3,7,2012 -20121230_NYJ@BUF,2,41,46,NYJ,BUF,2,7,7,(11:46) M.Sanchez returns at QB. S.Greene up the middle to BUF 5 for 2 yards (K.Sheppard N.Bradham).,3,7,2012 -20121230_NYJ@BUF,2,41,2,NYJ,BUF,3,5,5,(11:02) (Shotgun) M.Sanchez pass incomplete short left to J.Kerley. Overthrown receiver in back corner of end zone. Penalty on NYJ Illegal Shift declined.,3,7,2012 -20121230_NYJ@BUF,2,40,58,NYJ,BUF,4,5,5,(10:58) N.Folk 23 yard field goal is GOOD Center-T.Purdum Holder-R.Malone. Kick tipped by A.Carrington but still went through uprights.,3,7,2012 -20121230_NYJ@BUF,2,40,58,NYJ,BUF,,,5,N.Folk kicks 68 yards from NYJ 35 to BUF -3. B.Smith to BUF 20 for 23 yards (N.Bellore).,6,7,2012 -20121230_NYJ@BUF,2,40,49,BUF,NYJ,1,10,80,(10:49) C.Spiller left guard to BUF 24 for 4 yards (Ba.Scott L.Landry).,7,6,2012 -20121230_NYJ@BUF,2,40,9,BUF,NYJ,2,6,76,(10:09) C.Spiller left tackle to BUF 27 for 3 yards (M.Wilkerson; Ba.Scott).,7,6,2012 -20121230_NYJ@BUF,2,39,21,BUF,NYJ,3,3,73,(9:21) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (C.Pace). Pass tipped at line receiver at BUF 32.,7,6,2012 -20121230_NYJ@BUF,2,39,18,BUF,NYJ,4,3,73,(9:18) S.Powell punts 51 yards to NYJ 22 Center-G.Sanborn out of bounds.,7,6,2012 -20121230_NYJ@BUF,2,39,10,NYJ,BUF,1,10,78,(9:10) S.Greene right guard to NYJ 35 for 13 yards (K.Sheppard).,6,7,2012 -20121230_NYJ@BUF,2,38,29,NYJ,BUF,1,10,65,(8:29) S.Greene up the middle to NYJ 39 for 4 yards (G.Wilson K.Sheppard).,6,7,2012 -20121230_NYJ@BUF,2,37,55,NYJ,BUF,2,6,61,(7:55) M.Sanchez pass short right to S.Greene to NYJ 39 for no gain (J.Byrd). Dump pass caught at NYJ 38.,6,7,2012 -20121230_NYJ@BUF,2,37,12,NYJ,BUF,3,6,61,(7:12) (Shotgun) M.Sanchez pass short middle to B.Powell to BUF 28 for 33 yards (G.Wilson). Center screen caught at NYJ 36. PENALTY on NYJ-A.Howard Offensive Holding 10 yards enforced at NYJ 39 - No Play.,6,7,2012 -20121230_NYJ@BUF,2,36,38,NYJ,BUF,3,16,71,(6:38) (Shotgun) M.Sanchez pass short left to J.Kerley pushed ob at BUF 31 for 40 yards (R.Brooks). Screen pass caught at NYJ 27.,6,7,2012 -20121230_NYJ@BUF,2,36,13,NYJ,BUF,1,10,31,(6:13) S.Greene up the middle to BUF 25 for 6 yards (K.Sheppard N.Barnett).,6,7,2012 -20121230_NYJ@BUF,2,35,42,NYJ,BUF,2,4,25,(5:42) S.Greene up the middle to BUF 18 for 7 yards (K.Sheppard G.Wilson).,6,7,2012 -20121230_NYJ@BUF,2,35,8,NYJ,BUF,1,10,18,(5:08) B.Powell right tackle to BUF 16 for 2 yards (S.Merriman; K.Sheppard).,6,7,2012 -20121230_NYJ@BUF,2,34,32,NYJ,BUF,2,8,16,(4:32) M.Sanchez pass incomplete short middle to B.Powell. Screen pass dropped at BUF 20.,6,7,2012 -20121230_NYJ@BUF,2,34,26,NYJ,BUF,3,8,16,(4:26) (Shotgun) M.Sanchez pass short middle to B.Edwards to BUF 10 for 6 yards (N.Barnett). Caught at BUF 15 crossing to right.,6,7,2012 -20121230_NYJ@BUF,2,33,53,NYJ,BUF,4,2,10,(3:53) N.Folk 28 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,6,7,2012 -20121230_NYJ@BUF,2,33,53,NYJ,BUF,,,10,N.Folk kicks 58 yards from NYJ 35 to BUF 7. J.Rogers to BUF 34 for 27 yards (A.Allen).,9,7,2012 -20121230_NYJ@BUF,2,33,42,BUF,NYJ,1,10,66,(3:42) R.Fitzpatrick pass incomplete short right to B.Smith [C.Pace]. Underthrown under pressure receiver at BUF 34.,7,9,2012 -20121230_NYJ@BUF,2,33,38,BUF,NYJ,2,10,66,(3:38) (Shotgun) R.Fitzpatrick pass incomplete deep left to B.Smith. Overthrown receiver along sideline at NYJ 30.,7,9,2012 -20121230_NYJ@BUF,2,33,32,BUF,NYJ,3,10,66,(3:32) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller for 66 yards TOUCHDOWN. Center screen caught at BUF 35. Key block: K.Urbik.,7,9,2012 -20121230_NYJ@BUF,2,33,32,BUF,NYJ,,,66,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,7,9,2012 -20121230_NYJ@BUF,2,33,32,BUF,NYJ,,,66,R.Lindell kicks 54 yards from BUF 35 to NYJ 11. J.McKnight MUFFS catch and recovers at NYJ 14. J.McKnight to NYJ 21 for 7 yards (M.Easley). FUMBLES (M.Easley) recovered by NYJ-L.Hilliard at NYJ 21. L.Hilliard to NYJ 21 for no gain (C.Butler).,14,9,2012 -20121230_NYJ@BUF,2,33,12,NYJ,BUF,1,10,79,(3:12) S.Greene left tackle to NYJ 19 for -2 yards (S.Merriman Ky.Williams).,9,14,2012 -20121230_NYJ@BUF,2,32,30,NYJ,BUF,2,12,81,(2:30) M.Sanchez pass short middle to J.Cumberland to NYJ 25 for 6 yards (K.Sheppard). Caught at NYJ 25.,9,14,2012 -20121230_NYJ@BUF,2,32,0,NYJ,BUF,3,6,75,(2:00) (Shotgun) M.Sanchez pass deep right to B.Edwards to NYJ 44 for 19 yards (A.Williams). Caught near sideline at NYJ 41. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,9,14,2012 -20121230_NYJ@BUF,2,31,21,NYJ,BUF,1,10,59,(1:21) (Shotgun) M.Sanchez FUMBLES (Aborted) at NYJ 41 recovered by NYJ-B.Powell at NYJ 41. B.Powell to NYJ 41 for no gain (S.Merriman).,9,14,2012 -20121230_NYJ@BUF,2,31,15,NYJ,BUF,2,13,59,(1:15) (Shotgun) M.Sanchez pass incomplete short left to E.Gates (A.Williams). Receiver and coverage along sideline at BUF 45.,9,14,2012 -20121230_NYJ@BUF,2,31,8,NYJ,BUF,3,13,59,(1:08) (Shotgun) M.Sanchez pass incomplete short middle to B.Powell. Center screen thrown away.,9,14,2012 -20121230_NYJ@BUF,2,31,4,NYJ,BUF,4,13,59,(1:04) R.Malone punts 32 yards to BUF 27 Center-T.Purdum fair catch by J.Rogers.,9,14,2012 -20121230_NYJ@BUF,2,30,56,BUF,NYJ,1,10,73,(:56) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson pushed ob at NYJ 44 for 29 yards (E.Smith). Caught at BUF 40 crossing to right.,14,9,2012 -20121230_NYJ@BUF,2,30,49,BUF,NYJ,1,10,44,(:49) (Shotgun) R.Fitzpatrick pass incomplete short left to B.Smith. Overthrown receiver along sideline at NYJ 40. Pressure on QB: Q.Coples.,14,9,2012 -20121230_NYJ@BUF,2,30,44,BUF,NYJ,2,10,44,(:44) (Shotgun) R.Fitzpatrick pass incomplete short middle to C.Spiller. Center screen thrown behind receiver at NYJ 46.,14,9,2012 -20121230_NYJ@BUF,2,30,39,BUF,NYJ,3,10,44,(:39) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller. Overthrown receiver at NYJ 41 slanting to middle.,14,9,2012 -20121230_NYJ@BUF,2,30,35,BUF,NYJ,4,10,44,(:35) S.Powell punts 32 yards to NYJ 12 Center-G.Sanborn downed by BUF-C.White.,14,9,2012 -20121230_NYJ@BUF,2,30,25,NYJ,BUF,1,10,88,(:25) M.Sanchez kneels to NYJ 11 for -1 yards.,9,14,2012 -20121230_NYJ@BUF,3,30,0,NYJ,BUF,,,88,N.Folk kicks 68 yards from NYJ 35 to BUF -3. B.Smith to BUF 27 for 30 yards (E.Smith Y.Bell).,9,14,2012 -20121230_NYJ@BUF,3,29,54,BUF,NYJ,1,10,73,(14:54) C.Spiller up the middle to BUF 29 for 2 yards (M.Devito). FUMBLES (M.Devito) RECOVERED by NYJ-Y.Bell at BUF 25. Y.Bell to BUF 15 for 10 yards (L.Smith).,14,9,2012 -20121230_NYJ@BUF,3,29,45,NYJ,BUF,1,10,15,(14:45) S.Greene left tackle to BUF 17 for -2 yards (J.Byrd).,9,14,2012 -20121230_NYJ@BUF,3,29,8,NYJ,BUF,2,12,17,(14:08) M.Sanchez pass incomplete short right to K.Reuland. Shovel pass underthrown receiver at BUF 20. Pressure on QB: M.Williams.,9,14,2012 -20121230_NYJ@BUF,3,29,1,NYJ,BUF,3,12,17,(14:01) (Shotgun) B.Powell up the middle to BUF 11 for 6 yards (N.Barnett Br.Scott).,9,14,2012 -20121230_NYJ@BUF,3,28,22,NYJ,BUF,4,6,11,(13:22) N.Folk 30 yard field goal is BLOCKED (M.Dareus) Center-T.Purdum Holder-R.Malone.,9,14,2012 -20121230_NYJ@BUF,3,28,18,BUF,NYJ,1,10,80,(13:18) R.Fitzpatrick pass incomplete short left to C.Spiller. Screen pass underthrown under pressure (M.Wilkerson) receiver at BUF 13.,14,9,2012 -20121230_NYJ@BUF,3,28,13,BUF,NYJ,2,10,80,(13:13) (Shotgun) R.Fitzpatrick pass short right to R.Martin pushed ob at BUF 31 for 11 yards (A.Allen). Caught along sideline at BUF 30.,14,9,2012 -20121230_NYJ@BUF,3,27,44,BUF,NYJ,1,10,69,(12:44) (Shotgun) C.Spiller right guard to BUF 35 for 4 yards (E.Smith M.Wilkerson).,14,9,2012 -20121230_NYJ@BUF,3,27,4,BUF,NYJ,2,6,65,(12:04) (Shotgun) C.Spiller right guard to BUF 36 for 1 yard (M.Wilkerson).,14,9,2012 -20121230_NYJ@BUF,3,26,17,BUF,NYJ,3,5,64,(11:17) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller. Thrown wide of receiver at BUF 40 slanting to middle. Pressure on QB: C.Pace.,14,9,2012 -20121230_NYJ@BUF,3,26,14,BUF,NYJ,4,5,64,(11:14) S.Powell punts 38 yards to NYJ 26 Center-G.Sanborn fair catch by J.Kerley. PENALTY on BUF Player Out of Bounds on Punt 5 yards enforced at NYJ 26.,14,9,2012 -20121230_NYJ@BUF,3,26,6,NYJ,BUF,1,10,69,(11:06) M.Sanchez pass deep left to J.Kerley pushed ob at BUF 29 for 40 yards (S.Gilmore) [S.Merriman]. Caught along sideline at BUF 32. Buffalo challenged the pass completion ruling and the play was Upheld. (Timeout #1.),9,14,2012 -20121230_NYJ@BUF,3,25,59,NYJ,BUF,1,10,29,(10:59) S.Greene right tackle to BUF 32 for -3 yards (Ky.Williams; N.Bradham).,9,14,2012 -20121230_NYJ@BUF,3,25,26,NYJ,BUF,2,13,32,(10:26) M.Sanchez pass short left to B.Edwards to BUF 27 for 5 yards (A.Williams N.Bradham). Caught in flat at BUF 27. PENALTY on NYJ-B.Edwards Unsportsmanlike Conduct 15 yards enforced at BUF 27. B.Edwards removed helmet.,9,14,2012 -20121230_NYJ@BUF,3,24,49,NYJ,BUF,3,23,42,(9:49) (Shotgun) M.Sanchez pass incomplete deep left to J.White. Thrown behind receiver along sideline at BUF 23.,9,14,2012 -20121230_NYJ@BUF,3,24,44,NYJ,BUF,4,23,42,(9:44) R.Malone punts 31 yards to BUF 11 Center-T.Purdum fair catch by J.Byrd.,9,14,2012 -20121230_NYJ@BUF,3,24,36,BUF,NYJ,1,10,89,(9:36) C.Spiller up the middle to BUF 11 for no gain (K.Ellis).,14,9,2012 -20121230_NYJ@BUF,3,23,56,BUF,NYJ,2,10,89,(8:56) C.Spiller right guard to BUF 11 for no gain (M.Wilkerson). NYJ-M.Wilkerson was injured during the play. M.Wilkerson walks off.,14,9,2012 -20121230_NYJ@BUF,3,23,19,BUF,NYJ,3,10,89,(8:19) (Shotgun) R.Fitzpatrick pass short middle to B.Smith to BUF 28 for 17 yards (K.Wilson). Caught at BUF 21 slanting to right.,14,9,2012 -20121230_NYJ@BUF,3,22,35,BUF,NYJ,1,10,72,(7:35) C.Spiller left guard pushed ob at BUF 36 for 8 yards (D.Davis).,14,9,2012 -20121230_NYJ@BUF,3,22,0,BUF,NYJ,2,2,64,(7:00) C.Spiller left tackle to BUF 39 for 3 yards (Ba.Scott D.Harris).,14,9,2012 -20121230_NYJ@BUF,3,21,16,BUF,NYJ,1,10,61,(6:16) (Shotgun) R.Fitzpatrick pass incomplete deep middle to T.Graham (K.Wilson). Receiver and coverage at NYJ 23.,14,9,2012 -20121230_NYJ@BUF,3,21,8,BUF,NYJ,2,10,61,(6:08) (Shotgun) C.Spiller up the middle to BUF 43 for 4 yards (Q.Coples).,14,9,2012 -20121230_NYJ@BUF,3,20,27,BUF,NYJ,3,6,57,(5:27) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to NYJ 39 for 18 yards (A.Cromartie A.Allen). Caught at NYJ 49 slanting from right.,14,9,2012 -20121230_NYJ@BUF,3,19,42,BUF,NYJ,1,10,39,(4:42) (Shotgun) C.Spiller up the middle to NYJ 36 for 3 yards (G.McIntyre).,14,9,2012 -20121230_NYJ@BUF,3,19,4,BUF,NYJ,2,7,36,(4:04) (Shotgun) C.Spiller left tackle pushed ob at NYJ 32 for 4 yards (L.Landry).,14,9,2012 -20121230_NYJ@BUF,3,18,25,BUF,NYJ,3,3,32,(3:25) (Shotgun) R.Fitzpatrick pass incomplete short right to B.Smith [M.Wilkerson]. Underthrown under pressure receiver along sideline at NYJ 29.,14,9,2012 -20121230_NYJ@BUF,3,18,19,BUF,NYJ,4,3,32,(3:19) R.Lindell 50 yard field goal is No Good Wide Left Center-G.Sanborn Holder-S.Powell.,14,9,2012 -20121230_NYJ@BUF,3,18,14,NYJ,BUF,1,10,60,(3:14) M.Sanchez sacked at NYJ 33 for -7 yards (Sp.Johnson). FUMBLES (Sp.Johnson) RECOVERED by BUF-N.Bradham at NYJ 34. N.Bradham to NYJ 34 for no gain (J.Smith).,9,14,2012 -20121230_NYJ@BUF,3,18,5,BUF,NYJ,1,10,34,(3:05) C.Spiller up the middle to NYJ 32 for 2 yards (Q.Coples S.Pouha).,14,9,2012 -20121230_NYJ@BUF,3,17,26,BUF,NYJ,2,8,32,(2:26) C.Spiller left guard to NYJ 32 for no gain (M.Devito).,14,9,2012 -20121230_NYJ@BUF,3,16,43,BUF,NYJ,3,8,32,(1:43) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to NYJ 28 for 4 yards (A.Cromartie). Caught in flat at NYJ 28.,14,9,2012 -20121230_NYJ@BUF,3,15,57,BUF,NYJ,4,4,28,(:57) R.Lindell 46 yard field goal is No Good Wide Left Center-G.Sanborn Holder-S.Powell.,14,9,2012 -20121230_NYJ@BUF,3,15,52,NYJ,BUF,1,10,64,(:52) B.Powell up the middle to NYJ 35 for -1 yards (M.Williams Ky.Williams).,9,14,2012 -20121230_NYJ@BUF,3,15,13,NYJ,BUF,2,11,65,(:13) M.Sanchez pass short left to B.Powell to NYJ 39 for 4 yards (N.Barnett). Caught in flat at NYJ 37.,9,14,2012 -20121230_NYJ@BUF,4,15,0,NYJ,BUF,3,7,61,(15:00) (Shotgun) M.Sanchez pass incomplete deep right to B.Edwards. Overthrown receiver at BUF 32. Penalty on NYJ-M.Slauson Offensive Holding declined.,9,14,2012 -20121230_NYJ@BUF,4,14,54,NYJ,BUF,4,7,61,(14:54) R.Malone punts 61 yards to end zone Center-T.Purdum Touchback. Kick into end zone.,9,14,2012 -20121230_NYJ@BUF,4,14,46,BUF,NYJ,1,10,80,(14:46) R.Fitzpatrick pass deep right to St.Johnson pushed ob at NYJ 43 for 37 yards (D.Walls) [M.Wilkerson]. Caught along sideline at NYJ 43. St.Johnson goes over 1000 rec yds. for season. PENALTY on NYJ-M.Wilkerson Roughing the Passer 15 yards enforced at NYJ 43.,14,9,2012 -20121230_NYJ@BUF,4,14,10,BUF,NYJ,1,10,28,(14:10) (Shotgun) R.Fitzpatrick pass short left to B.Smith to NYJ 19 for 9 yards (D.Harris). Caught in flat at NYJ 25.,14,9,2012 -20121230_NYJ@BUF,4,13,30,BUF,NYJ,2,1,19,(13:30) C.Spiller up the middle to NYJ 19 for no gain (G.McIntyre K.Ellis).,14,9,2012 -20121230_NYJ@BUF,4,12,45,BUF,NYJ,3,1,19,(12:45) (Shotgun) R.Fitzpatrick pass short left to C.Spiller pushed ob at NYJ 13 for 6 yards (D.Walls). Out-pattern caught at NYJ 20.,14,9,2012 -20121230_NYJ@BUF,4,12,15,BUF,NYJ,1,10,13,(12:15) (Shotgun) R.Fitzpatrick pass short right to T.Graham to NYJ 8 for 5 yards (K.Wilson). Curl pattern caught at NYJ 10.,14,9,2012 -20121230_NYJ@BUF,4,11,30,BUF,NYJ,2,5,8,(11:30) (Shotgun) C.Spiller right tackle pushed ob at NYJ 4 for 4 yards (D.Davis).,14,9,2012 -20121230_NYJ@BUF,4,10,55,BUF,NYJ,3,1,4,(10:55) Direct snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) B.Smith up the middle for 4 yards TOUCHDOWN.,14,9,2012 -20121230_NYJ@BUF,4,10,55,BUF,NYJ,,,4,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,14,9,2012 -20121230_NYJ@BUF,4,10,55,BUF,NYJ,,,4,R.Lindell kicks 61 yards from BUF 35 to NYJ 4. J.McKnight to NYJ 21 for 17 yards (M.Easley C.McIntyre).,21,9,2012 -20121230_NYJ@BUF,4,10,47,NYJ,BUF,1,10,79,(10:47) M.Sanchez pass incomplete deep left to L.Hilliard. Overthrown receiver near sideline at NYJ 47.,9,21,2012 -20121230_NYJ@BUF,4,10,39,NYJ,BUF,2,10,79,(10:39) (Shotgun) M.Sanchez pass short left to J.Cumberland to NYJ 33 for 12 yards (Br.Scott). Caught near sideline at NYJ 25.,9,21,2012 -20121230_NYJ@BUF,4,10,3,NYJ,BUF,1,10,67,(10:03) (No Huddle Shotgun) M.Sanchez pass incomplete short left to B.Edwards. Overthrown receiver in flat at NYJ 47.,9,21,2012 -20121230_NYJ@BUF,4,9,58,NYJ,BUF,2,10,67,(9:58) (Shotgun) B.Powell up the middle to NYJ 40 for 7 yards (S.Merriman).,9,21,2012 -20121230_NYJ@BUF,4,9,36,NYJ,BUF,3,3,60,(9:36) (No Huddle Shotgun) M.Sanchez pass short middle to B.Edwards to BUF 48 for 12 yards (A.Williams). Caught at NYJ 49 slanting from left.,9,21,2012 -20121230_NYJ@BUF,4,9,13,NYJ,BUF,1,10,48,(9:13) (No Huddle Shotgun) M.Sanchez pass short middle intended for J.Cumberland INTERCEPTED by G.Wilson [Br.Scott] at BUF 37. G.Wilson to BUF 37 for no gain (J.Cumberland). Thrown under pressure receiver underthrown. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (No Huddle Shotgun) M.Sanchez pass incomplete short middle to J.Cumberland [Br.Scott]. Thrown under pressure receiver underthrown at BUF 37.,9,21,2012 -20121230_NYJ@BUF,4,9,9,NYJ,BUF,2,10,48,(9:09) (Shotgun) M.Sanchez pass incomplete deep right to B.Edwards (A.Williams). Receiver and coverage near sideline at BUF 25.,9,21,2012 -20121230_NYJ@BUF,4,9,3,NYJ,BUF,3,10,48,(9:03) (Shotgun) M.Sanchez pass incomplete deep left to J.White. Overthrown receiver along sideline at BUF 25. Penalty on NYJ-D.Ferguson Offensive Holding declined.,9,21,2012 -20121230_NYJ@BUF,4,8,58,NYJ,BUF,4,10,48,(8:58) R.Malone punts 48 yards to end zone Center-T.Purdum Touchback. Kick into end zone.,9,21,2012 -20121230_NYJ@BUF,4,8,49,BUF,NYJ,1,10,80,(8:49) (Shotgun) C.Spiller left guard to BUF 32 for 12 yards (Y.Bell).,21,9,2012 -20121230_NYJ@BUF,4,8,4,BUF,NYJ,1,10,68,(8:04) R.Fitzpatrick pass incomplete short middle to C.Spiller [M.Wilkerson]. Thrown under pressure receiver at BUF 30.,21,9,2012 -20121230_NYJ@BUF,4,7,58,BUF,NYJ,2,10,68,(7:58) (Shotgun) C.Spiller left tackle pushed ob at BUF 33 for 1 yard (Y.Bell).,21,9,2012 -20121230_NYJ@BUF,4,7,27,BUF,NYJ,3,9,67,(7:27) (Shotgun) R.Fitzpatrick pass incomplete deep right to T.Graham. Overthrown receiver near sideline at NYJ 33.,21,9,2012 -20121230_NYJ@BUF,4,7,21,BUF,NYJ,4,9,67,(7:21) S.Powell punts 41 yards to NYJ 26 Center-G.Sanborn fair catch by J.Kerley.,21,9,2012 -20121230_NYJ@BUF,4,7,14,NYJ,BUF,1,10,74,(7:14) (Shotgun) M.Sanchez pass incomplete short right to B.Powell. Thrown wide of receiver along sideline at NYJ 35. Pressure on QB: A.Carrington.,9,21,2012 -20121230_NYJ@BUF,4,7,6,NYJ,BUF,2,10,74,(7:06) (Shotgun) M.Sanchez pass short right to J.White to NYJ 39 for 13 yards (K.Moore). Caught along sideline at NYJ 36.,9,21,2012 -20121230_NYJ@BUF,4,6,40,NYJ,BUF,1,10,61,(6:40) (No Huddle Shotgun) M.Sanchez pass incomplete deep left to J.Cumberland. Overthrown receiver at BUF 43 slanting from middle.,9,21,2012 -20121230_NYJ@BUF,4,6,34,NYJ,BUF,2,10,61,(6:34) (Shotgun) M.Sanchez pass short right to J.Kerley pushed ob at NYJ 47 for 8 yards (S.Gilmore). Caught along sideline at NYJ 47.,9,21,2012 -20121230_NYJ@BUF,4,6,15,NYJ,BUF,3,2,53,(6:15) (No Huddle Shotgun) B.Powell up the middle to NYJ 48 for 1 yard (M.Williams G.Wilson).,9,21,2012 -20121230_NYJ@BUF,4,5,38,NYJ,BUF,4,1,52,(5:38) B.Powell up the middle to NYJ 47 for -1 yards (A.Carrington J.Byrd).,9,21,2012 -20121230_NYJ@BUF,4,5,34,BUF,NYJ,1,10,47,(5:34) (Shotgun) C.Spiller right guard to NYJ 49 for -2 yards (C.Pace).,21,9,2012 -20121230_NYJ@BUF,4,5,27,BUF,NYJ,2,12,49,(5:27) C.Spiller left tackle to NYJ 48 for 1 yard (G.McIntyre E.Smith).,21,9,2012 -20121230_NYJ@BUF,4,4,44,BUF,NYJ,3,11,48,(4:44) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to NYJ 36 for 12 yards (Y.Bell). Caught in flat at NYJ 36.,21,9,2012 -20121230_NYJ@BUF,4,3,56,BUF,NYJ,1,10,36,(3:56) C.Spiller left tackle to NYJ 35 for 1 yard (Ba.Scott D.Harris).,21,9,2012 -20121230_NYJ@BUF,4,3,51,BUF,NYJ,2,9,35,(3:51) T.Choice up the middle to NYJ 35 for no gain (D.Harris).,21,9,2012 -20121230_NYJ@BUF,4,3,46,BUF,NYJ,3,9,35,(3:46) Direct snap to B.Smith (R.Fitzpatrick at WR). B.Smith left guard to NYJ 19 for 16 yards (J.Bush).,21,9,2012 -20121230_NYJ@BUF,4,2,59,BUF,NYJ,1,10,19,(2:59) T.Choice right guard to NYJ 18 for 1 yard (D.Harris M.Devito).,21,9,2012 -20121230_NYJ@BUF,4,2,15,BUF,NYJ,2,9,18,(2:15) C.Spiller left guard to NYJ 18 for no gain (Ba.Scott C.Pace).,21,9,2012 -20121230_NYJ@BUF,4,2,0,BUF,NYJ,3,9,18,(2:00) T.Choice up the middle to NYJ 13 for 5 yards (K.Ellis).,21,9,2012 -20121230_NYJ@BUF,4,1,14,BUF,NYJ,4,4,13,(1:14) T.Choice right guard for 13 yards TOUCHDOWN.,21,9,2012 -20121230_NYJ@BUF,4,1,14,BUF,NYJ,,,13,R.Lindell extra point is GOOD Center-G.Sanborn Holder-S.Powell.,21,9,2012 -20121230_NYJ@BUF,4,1,14,BUF,NYJ,,,13,R.Lindell kicks 40 yards from BUF 35 to NYJ 25. N.Bellore to NYJ 30 for 5 yards (C.Butler). FUMBLES (C.Butler) and recovers at NYJ 33. N.Bellore to NYJ 33 for no gain (K.Morrison).,28,9,2012 -20121230_NYJ@BUF,4,1,4,NYJ,BUF,1,10,67,(1:04) (Shotgun) B.Powell up the middle to NYJ 40 for 7 yards (Br.Scott).,9,28,2012 -20121230_NYJ@BUF,4,0,43,NYJ,BUF,2,3,60,(:43) (No Huddle Shotgun) M.Sanchez pass short right to B.Powell to NYJ 48 for 8 yards (N.Barnett). Dump pass caught at NYJ 44.,9,28,2012 -20121230_NYJ@BUF,4,0,20,NYJ,BUF,1,10,52,(:20) (No Huddle Shotgun) M.Sanchez pass incomplete short middle to B.Powell (M.Dareus) [Ky.Williams]. Pass tipped at line receiver at BUF 48.,9,28,2012 -20121230_NYJ@BUF,4,0,14,NYJ,BUF,2,10,52,(:14) (Shotgun) M.Sanchez pass deep middle to J.Cumberland to BUF 34 for 18 yards (M.Silva). Caught at BUF 36 crossing from left.,9,28,2012 -20121230_NYJ@BUF,4,0,14,NYJ,BUF,,,52,                      ,9,28,2012 -20121230_BAL@CIN,1,0,0,CIN,BAL,,,52,J.Brown kicks 68 yards from CIN 35 to BLT -3. J.Jones to BLT 20 for 23 yards (V.Rey; A.Jones).,0,0,2012 -20121230_BAL@CIN,1,59,55,BAL,CIN,1,10,80,(14:55) R.Rice left tackle to BLT 20 for no gain (G.Atkins).,0,0,2012 -20121230_BAL@CIN,1,59,26,BAL,CIN,2,10,80,(14:26) J.Flacco pass short right to V.Leach to BLT 22 for 2 yards (R.Nelson). BLT-V.Leach was injured during the play.,0,0,2012 -20121230_BAL@CIN,1,58,53,BAL,CIN,3,8,78,(13:53) (Shotgun) J.Flacco pass deep middle to J.Jones to BLT 46 for 24 yards (C.Crocker).,0,0,2012 -20121230_BAL@CIN,1,58,28,BAL,CIN,1,10,54,(13:28) J.Flacco pass short middle to J.Jones to 50 for 4 yards (A.Jones).,0,0,2012 -20121230_BAL@CIN,1,58,1,BAL,CIN,2,6,50,(13:01) R.Rice right tackle to CIN 47 for 3 yards (D.Peko).,0,0,2012 -20121230_BAL@CIN,1,57,27,BAL,CIN,3,3,47,(12:27) (Shotgun) J.Flacco pass incomplete short right to T.Smith.,0,0,2012 -20121230_BAL@CIN,1,57,21,BAL,CIN,4,3,47,(12:21) (Punt formation) PENALTY on CIN-D.Herron Neutral Zone Infraction 5 yards enforced at CIN 47 - No Play.,0,0,2012 -20121230_BAL@CIN,1,57,21,BAL,CIN,1,10,42,(12:21) J.Flacco pass short middle to B.Pierce to CIN 38 for 4 yards (R.Maualuga).,0,0,2012 -20121230_BAL@CIN,1,56,55,BAL,CIN,2,6,38,(11:55) B.Pierce left end to CIN 33 for 5 yards (P.Sims).,0,0,2012 -20121230_BAL@CIN,1,56,17,BAL,CIN,3,1,33,(11:17) J.Flacco pass incomplete deep right to E.Dickson.,0,0,2012 -20121230_BAL@CIN,1,56,9,BAL,CIN,4,1,33,(11:09) B.Pierce right guard to CIN 30 for 3 yards (R.Maualuga; V.Burfict).,0,0,2012 -20121230_BAL@CIN,1,55,33,BAL,CIN,1,10,30,(10:33) T.Smith right end to CIN 34 for -4 yards (D.Peko). {Reverse from Rice},0,0,2012 -20121230_BAL@CIN,1,54,52,BAL,CIN,2,14,34,(9:52) R.Rice left guard to CIN 32 for 2 yards (V.Burfict).,0,0,2012 -20121230_BAL@CIN,1,54,15,BAL,CIN,3,12,32,(9:15) (Shotgun) J.Flacco pass incomplete short left to D.Pitta. PENALTY on BLT-R.Rice Personal Foul 15 yards enforced at CIN 32.,0,0,2012 -20121230_BAL@CIN,1,54,10,BAL,CIN,4,27,47,(9:10) S.Koch punts 35 yards to CIN 12 Center-M.Cox fair catch by B.Tate.,0,0,2012 -20121230_BAL@CIN,1,54,2,CIN,BAL,1,10,88,(9:02) A.Dalton pass short right to M.Jones to CIN 19 for 7 yards (J.Bynes).,0,0,2012 -20121230_BAL@CIN,1,53,28,CIN,BAL,2,3,81,(8:28) A.Dalton pass incomplete short right to J.Gresham.,0,0,2012 -20121230_BAL@CIN,1,53,22,CIN,BAL,3,3,81,(8:22) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 23 for 4 yards (C.Williams; C.Graham).,0,0,2012 -20121230_BAL@CIN,1,52,43,CIN,BAL,1,10,77,(7:43) C.Peerman left end to CIN 25 for 2 yards (A.Jones).,0,0,2012 -20121230_BAL@CIN,1,52,3,CIN,BAL,2,8,75,(7:03) A.Dalton pass incomplete short right to M.Jones.,0,0,2012 -20121230_BAL@CIN,1,51,59,CIN,BAL,3,8,75,(6:59) (Shotgun) A.Dalton pass incomplete short right to M.Jones (C.Brown).,0,0,2012 -20121230_BAL@CIN,1,51,53,CIN,BAL,4,8,75,(6:53) K.Huber punts 55 yards to BLT 20 Center-C.Harris. J.Jones to BLT 26 for 6 yards (J.Miles).,0,0,2012 -20121230_BAL@CIN,1,51,42,BAL,CIN,1,10,74,(6:42) J.Flacco pass incomplete short right to D.Pitta.,0,0,2012 -20121230_BAL@CIN,1,51,37,BAL,CIN,2,10,74,(6:37) B.Pierce left tackle to BLT 26 for no gain (V.Burfict).,0,0,2012 -20121230_BAL@CIN,1,50,59,BAL,CIN,3,10,74,(5:59) (Shotgun) J.Flacco sacked at BLT 19 for -7 yards (M.Johnson).,0,0,2012 -20121230_BAL@CIN,1,50,30,BAL,CIN,4,17,81,(5:30) S.Koch punts 43 yards to CIN 38 Center-M.Cox. A.Jones to CIN 43 for 5 yards (D.Reed).,0,0,2012 -20121230_BAL@CIN,1,50,19,CIN,BAL,1,10,57,(5:19) C.Peerman left end to CIN 46 for 3 yards (J.Bynes; A.Jones).,0,0,2012 -20121230_BAL@CIN,1,49,39,CIN,BAL,2,7,54,(4:39) (Shotgun) A.Dalton scrambles right end to CIN 47 for 1 yard (C.Graham).,0,0,2012 -20121230_BAL@CIN,1,49,4,CIN,BAL,3,6,53,(4:04) (Shotgun) A.Dalton sacked at CIN 42 for -5 yards (B.Hall). FUMBLES (B.Hall) [B.Hall] RECOVERED by BLT-P.Kruger at CIN 43. P.Kruger to CIN 43 for no gain (A.Smith). The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) A.Dalton pass incomplete short middle [B.Hall].,0,0,2012 -20121230_BAL@CIN,1,49,1,CIN,BAL,4,6,53,(4:01) K.Huber punts 53 yards to end zone Center-C.Harris Touchback.,0,0,2012 -20121230_BAL@CIN,1,48,52,BAL,CIN,1,10,80,(3:52) {New BLT QB - T.Taylor} B.Pierce right tackle to BLT 27 for 7 yards (V.Burfict).,0,0,2012 -20121230_BAL@CIN,1,48,21,BAL,CIN,2,3,73,(3:21) (Shotgun) B.Pierce left guard to BLT 41 for 14 yards (R.Nelson).,0,0,2012 -20121230_BAL@CIN,1,47,47,BAL,CIN,1,10,59,(2:47) T.Taylor scrambles left end to CIN 31 for 28 yards (M.Lawson). CIN-C.Crocker was injured during the play. His return is Doubtful.,0,0,2012 -20121230_BAL@CIN,1,47,16,BAL,CIN,1,10,31,(2:16) PENALTY on BLT-K.Osemele False Start 5 yards enforced at CIN 31 - No Play.,0,0,2012 -20121230_BAL@CIN,1,47,5,BAL,CIN,1,15,36,(2:05) B.Pierce right guard to CIN 27 for 9 yards (V.Burfict; T.Mays). PENALTY on CIN-D.Peko Illegal Use of Hands 5 yards enforced at CIN 27.,0,0,2012 -20121230_BAL@CIN,1,46,43,BAL,CIN,1,10,22,(1:43) (Shotgun) A.Allen up the middle to CIN 22 for no gain (G.Atkins).,0,0,2012 -20121230_BAL@CIN,1,46,8,BAL,CIN,2,10,22,(1:08) A.Allen right end to CIN 2 for 20 yards (T.Mays; D.Skuta).,0,0,2012 -20121230_BAL@CIN,1,45,22,BAL,CIN,1,2,2,(:22) A.Allen left tackle for 2 yards TOUCHDOWN.,0,0,2012 -20121230_BAL@CIN,1,45,22,BAL,CIN,,,2,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20121230_BAL@CIN,1,45,22,BAL,CIN,,,2,J.Tucker kicks 70 yards from BLT 35 to CIN -5. B.Tate to CIN 23 for 28 yards (J.Smith).,7,0,2012 -20121230_BAL@CIN,1,45,11,CIN,BAL,1,10,77,(:11) B.Leonard left guard to CIN 27 for 4 yards (D.Tyson; D.Ellerbe).,0,7,2012 -20121230_BAL@CIN,2,45,0,CIN,BAL,2,6,73,(15:00) B.Leonard left guard to CIN 36 for 9 yards (S.Considine; D.Ellerbe).,0,7,2012 -20121230_BAL@CIN,2,44,25,CIN,BAL,1,10,64,(14:25) A.Dalton pass short middle to M.Jones to 50 for 14 yards (S.Considine).,0,7,2012 -20121230_BAL@CIN,2,43,54,CIN,BAL,1,10,50,(13:54) B.Leonard left guard to BLT 46 for 4 yards (D.Tyson; A.Jones).,0,7,2012 -20121230_BAL@CIN,2,43,18,CIN,BAL,2,6,46,(13:18) (Shotgun) A.Dalton pass short left to B.Leonard pushed ob at BLT 43 for 3 yards (J.Bynes).,0,7,2012 -20121230_BAL@CIN,2,42,53,CIN,BAL,3,3,43,(12:53) B.Leonard left end pushed ob at BLT 43 for no gain (D.Ellerbe).,0,7,2012 -20121230_BAL@CIN,2,42,32,CIN,BAL,4,3,43,(12:32) K.Huber punts 35 yards to BLT 8 Center-C.Harris fair catch by J.Jones.,0,7,2012 -20121230_BAL@CIN,2,42,24,BAL,CIN,1,10,92,(12:24) PENALTY on BLT-B.McKinnie False Start 4 yards enforced at BLT 8 - No Play.,7,0,2012 -20121230_BAL@CIN,2,42,24,BAL,CIN,1,14,96,(12:24) B.Pierce right end to BLT 13 for 9 yards (T.Mays; N.Clements).,7,0,2012 -20121230_BAL@CIN,2,41,50,BAL,CIN,2,5,87,(11:50) (Shotgun) B.Pierce up the middle to BLT 22 for 9 yards (V.Burfict).,7,0,2012 -20121230_BAL@CIN,2,41,20,BAL,CIN,1,10,78,(11:20) T.Taylor pass incomplete short right [C.Dunlap]. {Thrown away},7,0,2012 -20121230_BAL@CIN,2,41,13,BAL,CIN,2,10,78,(11:13) B.Pierce right guard to BLT 24 for 2 yards (V.Burfict).,7,0,2012 -20121230_BAL@CIN,2,40,36,BAL,CIN,3,8,76,(10:36) (Shotgun) T.Taylor pass short middle to D.Thompson to BLT 28 for 4 yards (V.Burfict).,7,0,2012 -20121230_BAL@CIN,2,39,56,BAL,CIN,4,4,72,(9:56) S.Koch punts 37 yards to CIN 35 impetus ends at CIN 42 Center-M.Cox. A.Jones ran ob at CIN 36 for 1 yard (B.Ayanbadejo).,7,0,2012 -20121230_BAL@CIN,2,39,47,CIN,BAL,1,10,64,(9:47) A.Dalton scrambles up the middle to CIN 39 for 3 yards (D.Tyson).,0,7,2012 -20121230_BAL@CIN,2,39,10,CIN,BAL,2,7,61,(9:10) B.Leonard left tackle to CIN 41 for 2 yards (A.Jones).,0,7,2012 -20121230_BAL@CIN,2,38,26,CIN,BAL,3,5,59,(8:26) (Shotgun) A.Dalton pass incomplete deep right to R.Whalen.,0,7,2012 -20121230_BAL@CIN,2,38,20,CIN,BAL,4,5,59,(8:20) K.Huber punts 45 yards to BLT 14 Center-C.Harris fair catch by J.Jones.,0,7,2012 -20121230_BAL@CIN,2,38,11,BAL,CIN,1,10,86,(8:11) (Shotgun) T.Taylor pass short right to E.Dickson pushed ob at BLT 26 for 12 yards (R.Maualuga).,7,0,2012 -20121230_BAL@CIN,2,37,39,BAL,CIN,1,10,74,(7:39) (Shotgun) T.Taylor right end to BLT 31 for 5 yards (V.Burfict). {Quarterback keeper},7,0,2012 -20121230_BAL@CIN,2,37,8,BAL,CIN,2,5,69,(7:08) (Shotgun) T.Taylor pass short middle to D.Thompson to BLT 38 for 7 yards (M.Lawson).,7,0,2012 -20121230_BAL@CIN,2,36,36,BAL,CIN,1,10,62,(6:36) PENALTY on BLT-B.Williams False Start 5 yards enforced at BLT 38 - No Play.,7,0,2012 -20121230_BAL@CIN,2,36,20,BAL,CIN,1,15,67,(6:20) B.Pierce left end pushed ob at BLT 35 for 2 yards (L.Hall).,7,0,2012 -20121230_BAL@CIN,2,35,56,BAL,CIN,2,13,65,(5:56) B.Pierce left guard to BLT 36 for 1 yard (V.Burfict; T.Mays). PENALTY on BLT-B.Williams Unsportsmanlike Conduct 15 yards enforced at BLT 36.,7,0,2012 -20121230_BAL@CIN,2,35,30,BAL,CIN,3,27,79,(5:30) (Shotgun) T.Taylor pass short left to A.Allen pushed ob at BLT 28 for 7 yards (A.Jones; V.Burfict).,7,0,2012 -20121230_BAL@CIN,2,35,9,BAL,CIN,4,20,72,(5:09) S.Koch punts 42 yards to CIN 30 Center-M.Cox fair catch by B.Tate.,7,0,2012 -20121230_BAL@CIN,2,35,1,CIN,BAL,1,10,70,(5:01) A.Dalton sacked ob at CIN 30 for 0 yards (P.Kruger).,0,7,2012 -20121230_BAL@CIN,2,34,32,CIN,BAL,2,10,70,(4:32) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 38 for 8 yards (C.Brown; O.Brown).,0,7,2012 -20121230_BAL@CIN,2,33,52,CIN,BAL,3,2,62,(3:52) (Shotgun) A.Dalton sacked at CIN 37 for -1 yards (M.Kemoeatu).,0,7,2012 -20121230_BAL@CIN,2,33,16,CIN,BAL,4,3,63,(3:16) K.Huber punts 58 yards to BLT 5 Center-C.Harris downed by CIN-C.Lewis-Harris.,0,7,2012 -20121230_BAL@CIN,2,33,1,BAL,CIN,1,10,95,(3:01) PENALTY on BLT Illegal Substitution 2 yards enforced at BLT 5 - No Play.,7,0,2012 -20121230_BAL@CIN,2,33,1,BAL,CIN,1,12,97,(3:01) B.Pierce right guard to BLT 5 for 2 yards (D.Peko).,7,0,2012 -20121230_BAL@CIN,2,32,29,BAL,CIN,2,10,95,(2:29) B.Pierce left guard to BLT 8 for 3 yards (V.Burfict; D.Peko).,7,0,2012 -20121230_BAL@CIN,2,32,22,BAL,CIN,3,7,92,(2:22) (Shotgun) T.Taylor sacked at BLT 1 for -7 yards (M.Johnson).,7,0,2012 -20121230_BAL@CIN,2,32,14,BAL,CIN,4,14,99,(2:14) S.Koch punts 41 yards to BLT 42 Center-M.Cox out of bounds.,7,0,2012 -20121230_BAL@CIN,2,32,7,CIN,BAL,1,10,42,(2:07) (Shotgun) A.Dalton pass short right to M.Jones to BLT 35 for 7 yards (C.Johnson).,0,7,2012 -20121230_BAL@CIN,2,32,0,CIN,BAL,2,3,35,(2:00) (Shotgun) A.Dalton pass short right to B.Leonard to BLT 37 for -2 yards (D.Ellerbe).,0,7,2012 -20121230_BAL@CIN,2,31,19,CIN,BAL,3,5,37,(1:19) (Shotgun) A.Dalton pass short middle to A.Green to BLT 20 for 17 yards (O.Brown).,0,7,2012 -20121230_BAL@CIN,2,30,51,CIN,BAL,1,10,20,(:51) (Shotgun) A.Dalton pass short right to A.Green pushed ob at BLT 11 for 9 yards (C.Johnson).,0,7,2012 -20121230_BAL@CIN,2,30,45,CIN,BAL,2,1,11,(:45) (Shotgun) A.Dalton pass short left to M.Jones for 11 yards TOUCHDOWN.,0,7,2012 -20121230_BAL@CIN,2,30,45,CIN,BAL,,,11,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,0,7,2012 -20121230_BAL@CIN,2,30,45,CIN,BAL,,,11,J.Brown kicks 68 yards from CIN 35 to BLT -3. J.Jones to BLT 16 for 19 yards (D.Herron; R.Whalen).,7,7,2012 -20121230_BAL@CIN,2,30,33,BAL,CIN,1,10,84,(:33) (Shotgun) T.Taylor pass incomplete short right to J.Jones.,7,7,2012 -20121230_BAL@CIN,2,30,28,BAL,CIN,2,10,84,(:28) (Shotgun) T.Taylor pass short right to D.Reed to BLT 29 for 13 yards (N.Clements; R.Maualuga).,7,7,2012 -20121230_BAL@CIN,2,30,22,BAL,CIN,1,10,71,(:22) (Shotgun) T.Taylor pass short right to E.Dickson to BLT 41 for 12 yards (R.Maualuga; V.Burfict).,7,7,2012 -20121230_BAL@CIN,2,30,16,BAL,CIN,1,10,59,(:16) (Shotgun) T.Taylor pass short right to E.Dickson pushed ob at BLT 47 for 6 yards (N.Clements).,7,7,2012 -20121230_BAL@CIN,2,30,10,BAL,CIN,2,4,53,(:10) (Shotgun) T.Taylor pass incomplete short right. {Thrown away},7,7,2012 -20121230_BAL@CIN,3,30,0,BAL,CIN,,,53,J.Tucker kicks 68 yards from BLT 35 to CIN -3. B.Tate pushed ob at CIN 25 for 28 yards (J.Smith).,7,7,2012 -20121230_BAL@CIN,3,29,55,CIN,BAL,1,10,75,(14:55) {New QB CIN - B.Gradkowski} B.Leonard left guard to CIN 30 for 5 yards (J.Bynes; B.Ayanbadejo).,7,7,2012 -20121230_BAL@CIN,3,29,12,CIN,BAL,2,5,70,(14:12) B.Leonard left tackle to CIN 34 for 4 yards (B.Ayanbadejo; J.Bynes).,7,7,2012 -20121230_BAL@CIN,3,28,33,CIN,BAL,3,1,66,(13:33) B.Leonard left end to CIN 37 for 3 yards (B.Ayanbadejo).,7,7,2012 -20121230_BAL@CIN,3,27,56,CIN,BAL,1,10,63,(12:56) B.Gradkowski pass short left to M.Jones to CIN 43 for 6 yards (J.Smith).,7,7,2012 -20121230_BAL@CIN,3,27,9,CIN,BAL,2,4,57,(12:09) B.Leonard left tackle to CIN 46 for 3 yards (B.Ayanbadejo; J.Bynes).,7,7,2012 -20121230_BAL@CIN,3,26,25,CIN,BAL,3,1,54,(11:25) B.Leonard left guard to CIN 46 for no gain (M.Kemoeatu; J.Bynes).,7,7,2012 -20121230_BAL@CIN,3,25,39,CIN,BAL,4,1,54,(10:39) K.Huber punts 51 yards to BLT 3 Center-C.Harris downed by CIN-J.Miles.,7,7,2012 -20121230_BAL@CIN,3,25,23,BAL,CIN,1,10,97,(10:23) B.Pierce left guard to BLT 10 for 7 yards (V.Burfict).,7,7,2012 -20121230_BAL@CIN,3,24,51,BAL,CIN,2,3,90,(9:51) B.Pierce left guard to BLT 12 for 2 yards (R.Geathers; D.Peko).,7,7,2012 -20121230_BAL@CIN,3,24,12,BAL,CIN,3,1,88,(9:12) T.Taylor up the middle to BLT 15 for 3 yards (R.Nelson). {Quarterback sneak},7,7,2012 -20121230_BAL@CIN,3,23,39,BAL,CIN,1,10,85,(8:39) T.Taylor pass incomplete short right to B.Bajema (D.Peko).,7,7,2012 -20121230_BAL@CIN,3,23,34,BAL,CIN,2,10,85,(8:34) (Shotgun) T.Taylor left tackle to BLT 17 for 2 yards (V.Burfict). {Quarterback keeper},7,7,2012 -20121230_BAL@CIN,3,22,55,BAL,CIN,3,8,83,(7:55) (Shotgun) T.Taylor pass incomplete short left to B.Pierce (R.Nelson).,7,7,2012 -20121230_BAL@CIN,3,22,50,BAL,CIN,4,8,83,(7:50) S.Koch punts 35 yards to CIN 48 Center-M.Cox out of bounds. {Clock did not run on the play},7,7,2012 -20121230_BAL@CIN,3,22,50,CIN,BAL,1,10,52,(7:50) B.Gradkowski pass incomplete deep middle to B.Tate (J.Smith) [T.Cody]. PENALTY on BLT-T.Cody Roughing the Passer 15 yards enforced at CIN 48 - No Play.,7,7,2012 -20121230_BAL@CIN,3,22,41,CIN,BAL,1,10,37,(7:41) C.Peerman right guard to BLT 30 for 7 yards (J.Bynes).,7,7,2012 -20121230_BAL@CIN,3,22,1,CIN,BAL,2,3,30,(7:01) C.Peerman right guard to BLT 29 for 1 yard (J.Bynes; A.Jones).,7,7,2012 -20121230_BAL@CIN,3,21,25,CIN,BAL,3,2,29,(6:25) B.Gradkowski pass incomplete short right to J.Conner.,7,7,2012 -20121230_BAL@CIN,3,21,20,CIN,BAL,4,2,29,(6:20) J.Brown 47 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,7,2012 -20121230_BAL@CIN,3,21,20,CIN,BAL,,,29,J.Brown kicks 64 yards from CIN 35 to BLT 1. J.Jones to BLT 22 for 21 yards (D.Skuta).,10,7,2012 -20121230_BAL@CIN,3,21,10,BAL,CIN,1,10,78,(6:10) (Shotgun) B.Pierce right tackle to BLT 19 for -3 yards (W.Gilberry). BLT-B.Pierce was injured during the play.,7,10,2012 -20121230_BAL@CIN,3,20,49,BAL,CIN,2,13,81,(5:49) A.Allen right tackle to BLT 23 for 4 yards (P.Sims).,7,10,2012 -20121230_BAL@CIN,3,20,12,BAL,CIN,3,9,77,(5:12) (Shotgun) T.Taylor sacked at BLT 10 for -13 yards (C.Dunlap).,7,10,2012 -20121230_BAL@CIN,3,19,44,BAL,CIN,4,22,90,(4:44) S.Koch punts 30 yards to BLT 40 Center-M.Cox downed by BLT-J.Ihedigbo.,7,10,2012 -20121230_BAL@CIN,3,19,36,CIN,BAL,1,10,40,(4:36) D.Herron right tackle to BLT 43 for -3 yards (M.Kemoeatu).,10,7,2012 -20121230_BAL@CIN,3,18,58,CIN,BAL,2,13,43,(3:58) (Shotgun) B.Gradkowski pass short left to B.Tate pushed ob at BLT 36 for 7 yards (J.Smith).,10,7,2012 -20121230_BAL@CIN,3,18,28,CIN,BAL,3,6,36,(3:28) (Shotgun) B.Gradkowski pass incomplete deep left to M.Jones (J.Smith). PENALTY on BLT-J.Smith Defensive Pass Interference 21 yards enforced at BLT 36 - No Play.,10,7,2012 -20121230_BAL@CIN,3,18,21,CIN,BAL,1,10,15,(3:21) (Shotgun) B.Gradkowski pass incomplete short left to M.Jones.,10,7,2012 -20121230_BAL@CIN,3,18,16,CIN,BAL,2,10,15,(3:16) (Shotgun) B.Gradkowski pass incomplete short left to D.Herron.,10,7,2012 -20121230_BAL@CIN,3,18,12,CIN,BAL,3,10,15,(3:12) (Shotgun) PENALTY on CIN-B.Leonard False Start 5 yards enforced at BLT 15 - No Play.,10,7,2012 -20121230_BAL@CIN,3,18,12,CIN,BAL,3,15,20,(3:12) (Shotgun) B.Gradkowski pass short middle to A.Hawkins to BLT 14 for 6 yards (C.Brown).,10,7,2012 -20121230_BAL@CIN,3,17,29,CIN,BAL,4,9,14,(2:29) J.Brown 32 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,7,2012 -20121230_BAL@CIN,3,17,29,CIN,BAL,,,14,J.Brown kicks 68 yards from CIN 35 to BLT -3. J.Jones pushed ob at BLT 19 for 22 yards (D.Herron).,13,7,2012 -20121230_BAL@CIN,3,17,19,BAL,CIN,1,10,81,(2:19) T.Taylor pass incomplete short right to B.Pierce (D.Skuta).,7,13,2012 -20121230_BAL@CIN,3,17,13,BAL,CIN,2,10,81,(2:13) B.Pierce left end pushed ob at BLT 22 for 3 yards (C.Lewis-Harris).,7,13,2012 -20121230_BAL@CIN,3,16,42,BAL,CIN,3,7,78,(1:42) (Shotgun) T.Taylor pass incomplete deep right to J.Jones. PENALTY on CIN-N.Clements Defensive Pass Interference 25 yards enforced at BLT 22 - No Play.,7,13,2012 -20121230_BAL@CIN,3,16,35,BAL,CIN,1,10,53,(1:35) (Shotgun) T.Taylor pass short middle to D.Reed to CIN 45 for 8 yards (C.Lewis-Harris).,7,13,2012 -20121230_BAL@CIN,3,16,4,BAL,CIN,2,2,45,(1:04) B.Pierce left guard to CIN 39 for 6 yards (D.Skuta).,7,13,2012 -20121230_BAL@CIN,3,15,35,BAL,CIN,1,10,39,(:35) B.Pierce right end to CIN 41 for -2 yards (D.Skuta; C.Dunlap).,7,13,2012 -20121230_BAL@CIN,3,15,2,BAL,CIN,2,12,41,(:02) A.Allen up the middle to CIN 40 for 1 yard (P.Sims).,7,13,2012 -20121230_BAL@CIN,4,15,0,BAL,CIN,3,11,40,(15:00) (Shotgun) T.Taylor pass short right to E.Dickson to CIN 25 for 15 yards (E.Lamur).,7,13,2012 -20121230_BAL@CIN,4,14,29,BAL,CIN,1,10,25,(14:29) A.Allen left guard to CIN 18 for 7 yards (E.Lamur; D.Skuta).,7,13,2012 -20121230_BAL@CIN,4,13,53,BAL,CIN,2,3,18,(13:53) T.Taylor scrambles left end pushed ob at CIN 3 for 15 yards (J.Miles).,7,13,2012 -20121230_BAL@CIN,4,13,28,BAL,CIN,1,3,3,(13:28) A.Allen right tackle to CIN 1 for 2 yards (D.Peko; P.Sims).,7,13,2012 -20121230_BAL@CIN,4,12,58,BAL,CIN,2,1,1,(12:58) T.Taylor scrambles left end for 1 yard TOUCHDOWN.,7,13,2012 -20121230_BAL@CIN,4,12,58,BAL,CIN,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,13,2012 -20121230_BAL@CIN,4,12,58,BAL,CIN,,,1,J.Tucker kicks 72 yards from BLT 35 to CIN -7. B.Tate Touchback.,14,13,2012 -20121230_BAL@CIN,4,12,50,CIN,BAL,1,10,80,(12:50) B.Gradkowski pass short left to B.Tate to CIN 22 for 2 yards (D.Ellerbe).,13,14,2012 -20121230_BAL@CIN,4,12,18,CIN,BAL,2,8,78,(12:18) (Shotgun) B.Gradkowski pass incomplete deep right to B.Tate.,13,14,2012 -20121230_BAL@CIN,4,12,10,CIN,BAL,3,8,84,(12:10) (Shotgun) B.Gradkowski Aborted. T.Robinson FUMBLES at CIN 22 recovered by CIN-B.Gradkowski at CIN 16. B.Gradkowski to CIN 16 for no gain (D.Ellerbe).,13,14,2012 -20121230_BAL@CIN,4,11,45,CIN,BAL,4,14,84,(11:45) K.Huber punts 33 yards to CIN 49 Center-C.Harris downed by CIN-M.Lawson.,13,14,2012 -20121230_BAL@CIN,4,11,36,BAL,CIN,1,10,49,(11:36) B.Pierce left tackle pushed ob at CIN 45 for 4 yards (C.Lewis-Harris). PENALTY on BLT-G.Gradkowski Offensive Holding 10 yards enforced at CIN 49 - No Play.,14,13,2012 -20121230_BAL@CIN,4,11,18,BAL,CIN,1,20,59,(11:18) B.Pierce right guard to BLT 45 for 4 yards (R.Maualuga).,14,13,2012 -20121230_BAL@CIN,4,10,42,BAL,CIN,2,16,55,(10:42) (Shotgun) T.Taylor pass short left to D.Reed pushed ob at CIN 32 for 23 yards (T.Mays).,14,13,2012 -20121230_BAL@CIN,4,10,12,BAL,CIN,1,10,32,(10:12) A.Allen left tackle to CIN 29 for 3 yards (J.Miles).,14,13,2012 -20121230_BAL@CIN,4,9,42,BAL,CIN,2,7,29,(9:42) A.Allen right tackle to CIN 27 for 2 yards (W.Gilberry; R.Maualuga).,14,13,2012 -20121230_BAL@CIN,4,9,5,BAL,CIN,3,5,27,(9:05) (Shotgun) T.Taylor pass incomplete deep left to D.Reed.,14,13,2012 -20121230_BAL@CIN,4,8,59,BAL,CIN,4,5,27,(8:59) J.Tucker 45 yard field goal is No Good Wide Left Center-M.Cox Holder-S.Koch.,14,13,2012 -20121230_BAL@CIN,4,8,54,CIN,BAL,1,10,65,(8:54) B.Gradkowski pass deep right to B.Tate to BLT 21 for 44 yards (C.Brown).,13,14,2012 -20121230_BAL@CIN,4,8,17,CIN,BAL,1,10,21,(8:17) C.Peerman left guard to BLT 20 for 1 yard (M.Kemoeatu).,13,14,2012 -20121230_BAL@CIN,4,7,31,CIN,BAL,2,9,20,(7:31) B.Gradkowski pass incomplete short right to O.Charles (J.Ihedigbo).,13,14,2012 -20121230_BAL@CIN,4,7,24,CIN,BAL,3,9,20,(7:24) (Shotgun) B.Gradkowski pass incomplete short middle to B.Tate (P.Kruger).,13,14,2012 -20121230_BAL@CIN,4,7,20,CIN,BAL,4,9,20,(7:20) J.Brown 38 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,13,14,2012 -20121230_BAL@CIN,4,7,20,CIN,BAL,,,20,J.Brown kicks 71 yards from CIN 35 to BLT -6. J.Jones to BLT 20 for 26 yards (D.Herron). CIN-T.Mays was injured during the play.,16,14,2012 -20121230_BAL@CIN,4,7,11,BAL,CIN,1,10,80,(7:11) B.Pierce left guard to BLT 21 for 1 yard (J.Miles).,14,16,2012 -20121230_BAL@CIN,4,6,43,BAL,CIN,2,9,79,(6:43) T.Taylor scrambles left end pushed ob at BLT 23 for 2 yards (R.Maualuga).,14,16,2012 -20121230_BAL@CIN,4,6,13,BAL,CIN,3,7,77,(6:13) (Shotgun) T.Taylor pass short middle intended for E.Dickson INTERCEPTED by C.Dunlap at BLT 14. C.Dunlap for 14 yards TOUCHDOWN.,14,16,2012 -20121230_BAL@CIN,4,6,13,CIN,BAL,,,77,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,16,14,2012 -20121230_BAL@CIN,4,6,13,CIN,BAL,,,77,J.Brown kicks 72 yards from CIN 35 to BLT -7. J.Jones to BLT 23 for 30 yards (C.Peerman).,23,14,2012 -20121230_BAL@CIN,4,6,1,BAL,CIN,1,10,77,(6:01) B.Pierce right tackle to BLT 28 for 5 yards (J.Miles).,14,23,2012 -20121230_BAL@CIN,4,5,23,BAL,CIN,2,5,72,(5:23) T.Taylor pass incomplete short right to B.Pierce.,14,23,2012 -20121230_BAL@CIN,4,5,18,BAL,CIN,3,5,72,(5:18) (Shotgun) T.Taylor pass short middle to D.Thompson to BLT 32 for 4 yards (R.Maualuga; V.Burfict).,14,23,2012 -20121230_BAL@CIN,4,4,37,BAL,CIN,4,1,68,(4:37) (Punt formation) S.Koch left end ran ob at BLT 42 for 10 yards (B.Leonard).,14,23,2012 -20121230_BAL@CIN,4,4,28,BAL,CIN,1,10,58,(4:28) T.Taylor pass short middle to J.Jones to 50 for 8 yards (N.Clements).,14,23,2012 -20121230_BAL@CIN,4,4,0,BAL,CIN,2,2,50,(4:00) (Shotgun) T.Taylor up the middle to CIN 48 for 2 yards (P.Sims). {Quarterback keeper} PENALTY on BLT-B.Williams Offensive Holding 10 yards enforced at 50 - No Play.,14,23,2012 -20121230_BAL@CIN,4,3,55,BAL,CIN,2,12,60,(3:55) (Shotgun) T.Taylor pass short middle to D.Thompson to CIN 49 for 11 yards (L.Hall; V.Burfict).,14,23,2012 -20121230_BAL@CIN,4,3,10,BAL,CIN,3,1,49,(3:10) (Shotgun) T.Taylor left end ran ob at CIN 46 for 3 yards (L.Hall). {Quarterback keeper},14,23,2012 -20121230_BAL@CIN,4,3,1,BAL,CIN,1,10,46,(3:01) T.Taylor scrambles left end ran ob at CIN 40 for 6 yards (V.Burfict).,14,23,2012 -20121230_BAL@CIN,4,2,51,BAL,CIN,2,4,40,(2:51) A.Allen left guard to CIN 40 for no gain (G.Atkins).,14,23,2012 -20121230_BAL@CIN,4,2,16,BAL,CIN,3,4,40,(2:16) (Shotgun) T.Taylor pass short middle to E.Dickson to CIN 35 for 5 yards (R.Nelson).,14,23,2012 -20121230_BAL@CIN,4,2,0,BAL,CIN,1,10,35,(2:00) (Shotgun) T.Taylor sacked at CIN 45 for -10 yards (W.Gilberry).,14,23,2012 -20121230_BAL@CIN,4,1,51,BAL,CIN,2,20,45,(1:51) (Shotgun) T.Taylor pass short middle to E.Dickson to CIN 31 for 14 yards (R.Maualuga; R.Nelson).,14,23,2012 -20121230_BAL@CIN,4,1,33,BAL,CIN,3,6,31,(1:33) (Shotgun) T.Taylor pass incomplete deep right to J.Jones.,14,23,2012 -20121230_BAL@CIN,4,1,26,BAL,CIN,4,6,31,(1:26) J.Tucker 49 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,14,23,2012 -20121230_BAL@CIN,4,1,26,BAL,CIN,,,31,J.Tucker kicks onside 10 yards from BLT 35 to BLT 45. R.Whalen (didn't try to advance) to BLT 45 for no gain (A.Allen).,17,23,2012 -20121230_BAL@CIN,4,1,20,CIN,BAL,1,10,45,(1:20) B.Gradkowski kneels to BLT 46 for -1 yards.,23,17,2012 -20121230_BAL@CIN,4,0,39,CIN,BAL,2,11,46,(:39) B.Gradkowski kneels to BLT 47 for -1 yards.,23,17,2012 -20121230_BAL@CIN,4,0,39,CIN,BAL,,,46,                      ,23,17,2012 -20121230_CHI@DET,1,0,0,CHI,DET,,,46,O.Mare kicks 62 yards from CHI 35 to DET 3. J.Bell to DET 33 for 30 yards (Z.Bowman; J.Franklin).,0,0,2012 -20121230_CHI@DET,1,59,51,DET,CHI,1,10,67,(14:51) R.Reiff reported in as eligible. M.Leshoure left end to DET 33 for no gain (N.Roach).,0,0,2012 -20121230_CHI@DET,1,59,13,DET,CHI,2,10,67,(14:13) M.Leshoure left tackle to DET 39 for 6 yards (N.Roach).,0,0,2012 -20121230_CHI@DET,1,58,32,DET,CHI,3,4,61,(13:32) (Shotgun) M.Stafford pass incomplete deep left. Ball thrown away.,0,0,2012 -20121230_CHI@DET,1,58,22,DET,CHI,4,4,61,(13:22) N.Harris punts 42 yards to CHI 19 Center-D.Muhlbach. D.Hester to CHI 18 for -1 yards (K.Osgood).,0,0,2012 -20121230_CHI@DET,1,58,14,CHI,DET,1,10,82,(13:14) J.Cutler pass deep right to A.Jeffery to DET 27 for 55 yards (C.Houston L.Delmas).,0,0,2012 -20121230_CHI@DET,1,57,45,CHI,DET,1,10,27,(12:45) J.Cutler pass short left to E.Rodriguez to DET 25 for 2 yards (R.Bartell).,0,0,2012 -20121230_CHI@DET,1,56,57,CHI,DET,2,8,25,(11:57) M.Forte up the middle to DET 25 for no gain (J.Durant; A.Fluellen).,0,0,2012 -20121230_CHI@DET,1,56,14,CHI,DET,3,8,25,(11:14) (Shotgun) PENALTY on CHI-J.Scott False Start 5 yards enforced at DET 25 - No Play.,0,0,2012 -20121230_CHI@DET,1,55,50,CHI,DET,3,13,30,(10:50) (Shotgun) J.Cutler sacked at DET 36 for -6 yards. FUMBLES touched at DET 37 recovered by CHI-M.Forte at 50. M.Forte to 50 for no gain (J.Durant).,0,0,2012 -20121230_CHI@DET,1,54,58,CHI,DET,4,33,50,(9:58) A.Podlesh punts 41 yards to DET 9 Center-P.Mannelly fair catch by M.Thomas.,0,0,2012 -20121230_CHI@DET,1,54,51,DET,CHI,1,10,91,(9:51) (Shotgun) M.Stafford pass deep middle to T.Scheffler to DET 37 for 28 yards (M.Wright).,0,0,2012 -20121230_CHI@DET,1,54,11,DET,CHI,1,10,63,(9:11) R.Reiff reported in as eligible. M.Stafford pass deep right to C.Johnson to CHI 45 for 18 yards (C.Tillman).,0,0,2012 -20121230_CHI@DET,1,53,34,DET,CHI,1,10,45,(8:34) M.Leshoure right tackle to CHI 40 for 5 yards (I.Idonije).,0,0,2012 -20121230_CHI@DET,1,52,57,DET,CHI,2,5,40,(7:57) (Shotgun) R.Reiff reported in as eligible. M.Stafford pass incomplete short left to M.Leshoure [C.Wootton].,0,0,2012 -20121230_CHI@DET,1,52,51,DET,CHI,3,5,40,(7:51) (Shotgun) M.Stafford pass short middle to C.Johnson to CHI 35 for 5 yards (L.Briggs).,0,0,2012 -20121230_CHI@DET,1,52,9,DET,CHI,1,10,35,(7:09) (Shotgun) M.Leshoure left tackle to CHI 30 for 5 yards (L.Briggs; M.Wright).,0,0,2012 -20121230_CHI@DET,1,51,32,DET,CHI,2,5,30,(6:32) R.Reiff reported in as eligible. M.Leshoure right tackle to CHI 26 for 4 yards (N.Roach).,0,0,2012 -20121230_CHI@DET,1,51,14,DET,CHI,3,1,26,(6:14) M.Stafford sacked at CHI 29 for -3 yards. FUMBLES RECOVERED by CHI-H.Melton at CHI 31. H.Melton to CHI 31 for no gain (M.Leshoure). The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. M.Stafford pass incomplete short right to C.Johnson.,0,0,2012 -20121230_CHI@DET,1,50,58,DET,CHI,4,1,26,(5:58) J.Hanson 44 yard field goal is GOOD Center-D.Muhlbach Holder-N.Harris.,0,0,2012 -20121230_CHI@DET,1,50,58,DET,CHI,,,26,J.Hanson kicks 67 yards from DET 35 to CHI -2. D.Hester to CHI 20 for 22 yards (A.Palmer).,3,0,2012 -20121230_CHI@DET,1,50,54,CHI,DET,1,10,80,(5:54) M.Forte up the middle to CHI 22 for 2 yards (J.Durant).,0,3,2012 -20121230_CHI@DET,1,50,8,CHI,DET,2,8,78,(5:08) J.Cutler pass short right to M.Forte pushed ob at CHI 40 for 18 yards (L.Delmas).,0,3,2012 -20121230_CHI@DET,1,49,42,CHI,DET,1,10,60,(4:42) (Shotgun) J.Cutler pass short left to E.Bennett for 60 yards TOUCHDOWN.,0,3,2012 -20121230_CHI@DET,1,49,42,CHI,DET,,,60,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,3,2012 -20121230_CHI@DET,1,49,42,CHI,DET,,,60,O.Mare kicks 65 yards from CHI 35 to DET 0. J.Bell to DET 25 for 25 yards (J.Anderson). FUMBLES (J.Anderson) RECOVERED by CHI-E.Weems at DET 24. E.Weems to DET 24 for no gain (J.Bell).,7,3,2012 -20121230_CHI@DET,1,49,26,CHI,DET,1,10,24,(4:26) J.Cutler pass incomplete deep left to B.Marshall (L.Delmas).,7,3,2012 -20121230_CHI@DET,1,49,21,CHI,DET,2,10,24,(4:21) M.Forte right end pushed ob at DET 16 for 8 yards (D.Carey).,7,3,2012 -20121230_CHI@DET,1,48,46,CHI,DET,3,2,16,(3:46) M.Forte up the middle to DET 15 for 1 yard (D.Levy).,7,3,2012 -20121230_CHI@DET,1,48,4,CHI,DET,4,1,15,(3:04) O.Mare 33 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,3,2012 -20121230_CHI@DET,1,48,4,CHI,DET,,,15,O.Mare kicks 69 yards from CHI 35 to DET -4. J.Bell Touchback.,10,3,2012 -20121230_CHI@DET,1,47,59,DET,CHI,1,10,80,(2:59) M.Leshoure left tackle to DET 21 for 1 yard (A.Okoye).,3,10,2012 -20121230_CHI@DET,1,47,22,DET,CHI,2,9,79,(2:22) (Shotgun) M.Stafford pass short middle to B.Pettigrew to DET 26 for 5 yards (G.Hayes).,3,10,2012 -20121230_CHI@DET,1,46,42,DET,CHI,3,4,74,(1:42) (Shotgun) M.Stafford pass short middle to M.Thomas to DET 33 for 7 yards (K.Hayden).,3,10,2012 -20121230_CHI@DET,1,46,1,DET,CHI,1,10,67,(1:01) (Shotgun) R.Reiff reported in as eligible. M.Leshoure right end to DET 43 for 10 yards (S.McClellin).,3,10,2012 -20121230_CHI@DET,1,45,20,DET,CHI,1,10,57,(:20) M.Leshoure right tackle to DET 41 for -2 yards (S.Paea; G.Hayes).,3,10,2012 -20121230_CHI@DET,2,45,0,DET,CHI,2,12,59,(15:00) (Shotgun) M.Stafford pass short left to S.Chapas to DET 47 for 6 yards (T.Jennings).,3,10,2012 -20121230_CHI@DET,2,44,29,DET,CHI,3,6,53,(14:29) (Shotgun) PENALTY on DET-J.Bell False Start 5 yards enforced at DET 47 - No Play.,3,10,2012 -20121230_CHI@DET,2,44,1,DET,CHI,3,11,58,(14:01) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson (N.Roach).,3,10,2012 -20121230_CHI@DET,2,43,53,DET,CHI,4,11,58,(13:53) N.Harris punts 49 yards to CHI 9 Center-D.Muhlbach. D.Hester to CHI 14 for 5 yards (P.Lee). PENALTY on DET-K.Osgood Unsportsmanlike Conduct 15 yards enforced at CHI 14.,3,10,2012 -20121230_CHI@DET,2,43,45,CHI,DET,1,10,71,(13:45) J.Cutler pass short left to M.Spaeth ran ob at CHI 36 for 7 yards (R.Bartell).,10,3,2012 -20121230_CHI@DET,2,43,18,CHI,DET,2,3,64,(13:18) D.Hester right end to CHI 38 for 2 yards (W.Young; P.Lee).,10,3,2012 -20121230_CHI@DET,2,42,40,CHI,DET,3,1,62,(12:40) G.Carimi reported in as eligible. K.Bell right tackle to CHI 44 for 6 yards (J.Durant).,10,3,2012 -20121230_CHI@DET,2,42,6,CHI,DET,1,10,56,(12:06) K.Bell left end to CHI 49 for 5 yards (L.Delmas).,10,3,2012 -20121230_CHI@DET,2,41,27,CHI,DET,2,5,51,(11:27) J.Cutler pass incomplete deep right to B.Marshall.,10,3,2012 -20121230_CHI@DET,2,41,19,CHI,DET,3,5,51,(11:19) (Shotgun) J.Cutler pass short middle to A.Jeffery to DET 46 for 5 yards (P.Lee) [S.Tulloch].,10,3,2012 -20121230_CHI@DET,2,40,33,CHI,DET,1,10,46,(10:33) J.Cutler pass incomplete deep left to A.Jeffery [K.Vanden Bosch].,10,3,2012 -20121230_CHI@DET,2,40,23,CHI,DET,2,10,46,(10:23) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall [N.Suh].,10,3,2012 -20121230_CHI@DET,2,40,19,CHI,DET,3,10,46,(10:19) (Shotgun) J.Cutler pass short left to B.Marshall to DET 45 for 1 yard (R.Bartell; J.Durant) [K.Vanden Bosch].,10,3,2012 -20121230_CHI@DET,2,39,38,CHI,DET,4,9,45,(9:38) A.Podlesh punts 32 yards to DET 13 Center-P.Mannelly fair catch by M.Thomas.,10,3,2012 -20121230_CHI@DET,2,39,30,DET,CHI,1,10,87,(9:30) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 12 for -1 yards (A.Walters).,3,10,2012 -20121230_CHI@DET,2,38,54,DET,CHI,2,11,88,(8:54) (Shotgun) M.Stafford pass short right to W.Heller to DET 25 for 13 yards (S.Paea). PENALTY on DET-S.Peterman Offensive Holding 6 yards enforced at DET 12 - No Play.,3,10,2012 -20121230_CHI@DET,2,38,25,DET,CHI,2,17,94,(8:25) (Shotgun) M.Leshoure up the middle to DET 10 for 4 yards (L.Briggs).,3,10,2012 -20121230_CHI@DET,2,37,43,DET,CHI,3,13,90,(7:43) (Shotgun) M.Stafford pass incomplete deep right to C.Johnson.,3,10,2012 -20121230_CHI@DET,2,37,37,DET,CHI,4,13,90,(7:37) N.Harris punts 43 yards to CHI 47 Center-D.Muhlbach out of bounds.,3,10,2012 -20121230_CHI@DET,2,37,29,CHI,DET,1,10,53,(7:29) M.Forte right tackle to DET 42 for 11 yards (D.Carey).,10,3,2012 -20121230_CHI@DET,2,36,56,CHI,DET,1,10,42,(6:56) M.Forte up the middle to DET 29 for 13 yards (L.Delmas; D.Levy).,10,3,2012 -20121230_CHI@DET,2,36,21,CHI,DET,1,10,29,(6:21) M.Forte right tackle to DET 30 for -1 yards (K.Vanden Bosch R.Bartell).,10,3,2012 -20121230_CHI@DET,2,35,39,CHI,DET,2,11,30,(5:39) B.Marshall right end to DET 32 for -2 yards (D.Levy). Play was a backwards pass.,10,3,2012 -20121230_CHI@DET,2,34,55,CHI,DET,3,13,32,(4:55) (Shotgun) J.Cutler pass short middle to E.Bennett to DET 25 for 7 yards (D.Levy).,10,3,2012 -20121230_CHI@DET,2,34,18,CHI,DET,4,6,25,(4:18) O.Mare 43 yard field goal is No Good Wide Right Center-P.Mannelly Holder-A.Podlesh.,10,3,2012 -20121230_CHI@DET,2,34,14,DET,CHI,1,10,67,(4:14) M.Stafford pass incomplete short left to C.Johnson (C.Tillman).,3,10,2012 -20121230_CHI@DET,2,34,9,DET,CHI,2,10,67,(4:09) (Shotgun) M.Stafford sacked at DET 22 for -11 yards (I.Idonije). FUMBLES (I.Idonije) RECOVERED by CHI-J.Peppers at DET 16. J.Peppers to DET 10 for 6 yards (M.Stafford).,3,10,2012 -20121230_CHI@DET,2,34,1,CHI,DET,1,10,10,(4:01) (Shotgun) J.Cutler pass incomplete short right to B.Marshall (C.Houston).,10,3,2012 -20121230_CHI@DET,2,33,58,CHI,DET,2,10,10,(3:58) M.Forte left end pushed ob at DET 4 for 6 yards (R.Bartell).,10,3,2012 -20121230_CHI@DET,2,33,34,CHI,DET,3,4,4,(3:34) J.Cutler pass incomplete short middle to B.Marshall (D.Carey). PENALTY on DET-D.Carey Defensive Pass Interference 3 yards enforced at DET 4 - No Play.,10,3,2012 -20121230_CHI@DET,2,33,30,CHI,DET,1,1,1,(3:30) G.Carimi reported in as eligible. M.Forte left tackle for 1 yard TOUCHDOWN.,10,3,2012 -20121230_CHI@DET,2,33,30,CHI,DET,,,1,O.Mare extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,10,3,2012 -20121230_CHI@DET,2,33,30,CHI,DET,,,1,O.Mare kicks 65 yards from CHI 35 to end zone Touchback.,17,3,2012 -20121230_CHI@DET,2,33,26,DET,CHI,1,10,80,(3:26) (Shotgun) J.Bell right tackle to DET 25 for 5 yards (H.Melton).,3,17,2012 -20121230_CHI@DET,2,32,50,DET,CHI,2,5,75,(2:50) (Shotgun) M.Stafford pass deep left intended for T.Scheffler INTERCEPTED by T.Jennings at CHI 46. T.Jennings to DET 23 for 31 yards (K.Durham).,3,17,2012 -20121230_CHI@DET,2,32,38,CHI,DET,1,10,23,(2:38) J.Cutler pass incomplete deep right to B.Marshall.,17,3,2012 -20121230_CHI@DET,2,32,33,CHI,DET,2,10,23,(2:33) K.Bell right tackle to DET 22 for 1 yard (S.Tulloch).,17,3,2012 -20121230_CHI@DET,2,32,0,CHI,DET,3,9,22,(2:00) (Shotgun) J.Cutler pass incomplete deep left to A.Jeffery (R.Bartell).,17,3,2012 -20121230_CHI@DET,2,31,54,CHI,DET,4,9,22,(1:54) O.Mare 40 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,17,3,2012 -20121230_CHI@DET,2,31,54,CHI,DET,,,22,O.Mare kicks 67 yards from CHI 35 to DET -2. J.Bell Touchback.,20,3,2012 -20121230_CHI@DET,2,31,49,DET,CHI,1,10,80,(1:49) (Shotgun) M.Stafford pass short middle to M.Leshoure ran ob at DET 29 for 9 yards (N.Roach).,3,20,2012 -20121230_CHI@DET,2,31,41,DET,CHI,2,1,71,(1:41) (Shotgun) M.Stafford pass incomplete short middle to M.Leshoure.,3,20,2012 -20121230_CHI@DET,2,31,37,DET,CHI,3,1,71,(1:37) M.Leshoure right tackle to DET 30 for 1 yard (A.Walters).,3,20,2012 -20121230_CHI@DET,2,31,24,DET,CHI,1,10,70,(1:24) (Shotgun) M.Stafford pass short middle to J.Bell to DET 40 for 10 yards (N.Roach).,3,20,2012 -20121230_CHI@DET,2,31,2,DET,CHI,1,10,60,(1:02) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to DET 46 for 6 yards (C.Tillman; L.Briggs).,3,20,2012 -20121230_CHI@DET,2,30,56,DET,CHI,2,4,54,(:56) (Shotgun) M.Stafford pass short left to J.Bell to CHI 45 for 9 yards (D.Moore) [J.Peppers].,3,20,2012 -20121230_CHI@DET,2,30,50,DET,CHI,1,10,45,(:50) (Shotgun) M.Stafford pass incomplete short right to C.Johnson.,3,20,2012 -20121230_CHI@DET,2,30,44,DET,CHI,2,10,45,(:44) (Shotgun) M.Stafford pass short right to T.Scheffler ran ob at CHI 38 for 7 yards (T.Jennings).,3,20,2012 -20121230_CHI@DET,2,30,39,DET,CHI,3,3,38,(:39) (Shotgun) M.Stafford pass short middle to M.Leshoure to CHI 25 for 13 yards (M.Wright; N.Roach).,3,20,2012 -20121230_CHI@DET,2,30,22,DET,CHI,1,10,25,(:22) (No Huddle) M.Stafford spiked the ball to stop the clock.,3,20,2012 -20121230_CHI@DET,2,30,21,DET,CHI,2,10,25,(:21) (Shotgun) M.Stafford pass incomplete deep middle to C.Johnson (J.Peppers). Ball batted at the line.,3,20,2012 -20121230_CHI@DET,2,30,17,DET,CHI,3,10,25,(:17) (Shotgun) M.Stafford pass deep left to K.Durham for 25 yards TOUCHDOWN.,3,20,2012 -20121230_CHI@DET,2,30,17,DET,CHI,,,25,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,3,20,2012 -20121230_CHI@DET,2,30,17,DET,CHI,,,25,J.Hanson kicks 45 yards from DET 35 to CHI 20. K.Adams to CHI 35 for 15 yards (D.Carey; T.Lewis).,10,20,2012 -20121230_CHI@DET,2,30,7,CHI,DET,1,10,65,(:07) M.Forte right tackle to CHI 37 for 2 yards (C.Avril).,20,10,2012 -20121230_CHI@DET,3,30,0,DET,CHI,,,65,J.Hanson kicks 70 yards from DET 35 to CHI -5. D.Hester to CHI 5 for 10 yards (K.Osgood).,10,20,2012 -20121230_CHI@DET,3,29,57,CHI,DET,1,10,95,(14:57) J.Cutler pass short left to A.Jeffery to CHI 14 for 9 yards (L.Delmas; R.Bartell).,20,10,2012 -20121230_CHI@DET,3,29,16,CHI,DET,2,1,86,(14:16) J.Cutler pass short left to A.Jeffery pushed ob at CHI 21 for 7 yards (R.Bartell).,20,10,2012 -20121230_CHI@DET,3,28,50,CHI,DET,1,10,79,(13:50) M.Forte right tackle to CHI 29 for 8 yards (A.Fluellen; D.Levy).,20,10,2012 -20121230_CHI@DET,3,28,13,CHI,DET,2,2,71,(13:13) M.Forte up the middle to CHI 34 for 5 yards (K.Vanden Bosch).,20,10,2012 -20121230_CHI@DET,3,27,36,CHI,DET,1,10,66,(12:36) J.Cutler scrambles right tackle ran ob at CHI 46 for 12 yards (S.Tulloch).,20,10,2012 -20121230_CHI@DET,3,27,4,CHI,DET,1,10,54,(12:04) M.Forte left end to CHI 43 for -3 yards (L.Jackson D.Carey).,20,10,2012 -20121230_CHI@DET,3,26,24,CHI,DET,2,13,57,(11:24) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 46 for 3 yards (S.Tulloch).,20,10,2012 -20121230_CHI@DET,3,25,40,CHI,DET,3,10,54,(10:40) (Shotgun) J.Cutler pass incomplete deep right to A.Jeffery.,20,10,2012 -20121230_CHI@DET,3,25,33,CHI,DET,4,10,54,(10:33) A.Podlesh punts 54 yards to end zone Center-P.Mannelly Touchback.,20,10,2012 -20121230_CHI@DET,3,25,24,DET,CHI,1,10,80,(10:24) M.Stafford scrambles right end ran ob at DET 25 for 5 yards (H.Melton).,10,20,2012 -20121230_CHI@DET,3,24,56,DET,CHI,2,5,75,(9:56) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 34 for 9 yards (M.Wright; I.Idonije).,10,20,2012 -20121230_CHI@DET,3,24,13,DET,CHI,1,10,66,(9:13) (Shotgun) R.Reiff reported in as eligible. M.Leshoure left tackle to DET 47 for 13 yards (A.Walters).,10,20,2012 -20121230_CHI@DET,3,23,33,DET,CHI,1,10,53,(8:33) (Shotgun) M.Stafford pass deep right to C.Johnson to CHI 35 for 18 yards (C.Tillman).,10,20,2012 -20121230_CHI@DET,3,22,55,DET,CHI,1,10,35,(7:55) (Shotgun) R.Reiff reported in as eligible. J.Bell right tackle to CHI 34 for 1 yard (A.Okoye; I.Idonije).,10,20,2012 -20121230_CHI@DET,3,22,15,DET,CHI,2,9,34,(7:15) (Shotgun) M.Stafford pass deep left to C.Johnson pushed ob at CHI 10 for 24 yards (M.Wright).,10,20,2012 -20121230_CHI@DET,3,21,43,DET,CHI,1,10,10,(6:43) (Shotgun) M.Stafford pass incomplete short left to M.Thomas.,10,20,2012 -20121230_CHI@DET,3,21,40,DET,CHI,2,10,10,(6:40) M.Stafford pass incomplete short right to C.Johnson (C.Tillman).,10,20,2012 -20121230_CHI@DET,3,21,35,DET,CHI,3,10,10,(6:35) (Shotgun) M.Stafford pass short middle to W.Heller for 10 yards TOUCHDOWN.,10,20,2012 -20121230_CHI@DET,3,21,35,DET,CHI,,,10,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,10,20,2012 -20121230_CHI@DET,3,21,35,DET,CHI,,,10,J.Hanson kicks 67 yards from DET 35 to CHI -2. D.Hester pushed ob at CHI 25 for 27 yards (D.Carey).,17,20,2012 -20121230_CHI@DET,3,21,26,CHI,DET,1,10,75,(6:26) M.Forte left tackle to CHI 37 for 12 yards (T.Johnson).,20,17,2012 -20121230_CHI@DET,3,20,49,CHI,DET,1,10,63,(5:49) (Shotgun) J.Cutler pass short middle to B.Marshall to CHI 40 for 3 yards (D.Levy; S.Tulloch).,20,17,2012 -20121230_CHI@DET,3,20,11,CHI,DET,2,7,60,(5:11) J.Cutler pass short left to E.Bennett to CHI 46 for 6 yards (R.Bartell).,20,17,2012 -20121230_CHI@DET,3,19,35,CHI,DET,3,1,54,(4:35) G.Carimi reported in as eligible. K.Bell right tackle to CHI 46 for no gain (L.Jackson).,20,17,2012 -20121230_CHI@DET,3,18,53,CHI,DET,4,1,54,(3:53) A.Podlesh punts 46 yards to DET 8 Center-P.Mannelly. M.Thomas to DET 8 for no gain (E.Weems).,20,17,2012 -20121230_CHI@DET,3,18,44,DET,CHI,1,10,92,(3:44) R.Reiff reported in as eligible. M.Leshoure right tackle to DET 12 for 4 yards (K.Hayden).,17,20,2012 -20121230_CHI@DET,3,18,5,CHI,DET,2,6,87,(3:05) (Shotgun) M.Stafford FUMBLES (Aborted) at DET 9 RECOVERED by CHI-M.Wright at DET 13. M.Wright to DET 13 for no gain (G.Cherilus).,20,17,2012 -20121230_CHI@DET,3,17,55,CHI,DET,1,10,13,(2:55) (Shotgun) J.Cutler sacked at DET 18 for -5 yards (N.Suh).,20,17,2012 -20121230_CHI@DET,3,17,27,CHI,DET,2,15,18,(2:27) (Shotgun) J.Cutler pass short right to E.Bennett pushed ob at DET 10 for 8 yards (C.Houston; P.Lee).,20,17,2012 -20121230_CHI@DET,3,16,59,CHI,DET,3,7,10,(1:59) (Shotgun) J.Cutler pass incomplete short left to B.Marshall.,20,17,2012 -20121230_CHI@DET,3,16,54,CHI,DET,4,7,10,(1:54) O.Mare 28 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,20,17,2012 -20121230_CHI@DET,3,16,54,CHI,DET,,,10,O.Mare kicks 71 yards from CHI 35 to DET -6. J.Bell Touchback.,23,17,2012 -20121230_CHI@DET,3,16,49,DET,CHI,1,10,80,(1:49) M.Stafford pass short right to M.Leshoure to DET 18 for -2 yards (A.Walters).,17,23,2012 -20121230_CHI@DET,3,16,6,DET,CHI,2,12,82,(1:06) (Shotgun) M.Stafford pass short middle to C.Johnson to DET 25 for 7 yards (A.Walters).,17,23,2012 -20121230_CHI@DET,3,15,26,DET,CHI,3,5,75,(:26) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson (L.Briggs).,17,23,2012 -20121230_CHI@DET,3,15,19,DET,CHI,4,5,75,(:19) N.Harris punts 36 yards to CHI 39 Center-D.Muhlbach out of bounds.,17,23,2012 -20121230_CHI@DET,3,15,12,CHI,DET,1,10,61,(:12) J.Cutler pass short left to B.Marshall to CHI 48 for 9 yards (D.Levy).,23,17,2012 -20121230_CHI@DET,4,15,0,CHI,DET,2,1,52,(15:00) M.Forte up the middle to DET 49 for 3 yards (J.Durant).,23,17,2012 -20121230_CHI@DET,4,14,22,CHI,DET,1,10,49,(14:22) M.Forte right end to DET 44 for 5 yards (L.Jackson).,23,17,2012 -20121230_CHI@DET,4,13,43,CHI,DET,2,5,44,(13:43) J.Cutler pass deep right to E.Bennett ran ob at DET 16 for 28 yards.,23,17,2012 -20121230_CHI@DET,4,13,15,CHI,DET,1,10,16,(13:15) M.Forte right tackle to DET 14 for 2 yards (T.Johnson; W.Young).,23,17,2012 -20121230_CHI@DET,4,12,32,CHI,DET,2,8,14,(12:32) (Shotgun) J.Cutler pass incomplete short left to K.Davis (S.Tulloch).,23,17,2012 -20121230_CHI@DET,4,12,24,CHI,DET,3,8,14,(12:24) (Shotgun) J.Cutler pass short right to B.Marshall to DET 4 for 10 yards (D.Carey).,23,17,2012 -20121230_CHI@DET,4,11,41,CHI,DET,1,4,4,(11:41) J.Cutler pass incomplete short right to B.Marshall (W.Young).,23,17,2012 -20121230_CHI@DET,4,11,35,CHI,DET,2,4,4,(11:35) M.Forte left end to DET 2 for 2 yards (S.Tulloch; A.Fluellen).,23,17,2012 -20121230_CHI@DET,4,10,55,CHI,DET,3,2,2,(10:55) (Shotgun) J.Cutler pass incomplete short right to B.Marshall (C.Houston).,23,17,2012 -20121230_CHI@DET,4,10,51,CHI,DET,4,2,2,(10:51) O.Mare 20 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,23,17,2012 -20121230_CHI@DET,4,10,51,CHI,DET,,,2,O.Mare kicks 73 yards from CHI 35 to DET -8. J.Bell Touchback.,26,17,2012 -20121230_CHI@DET,4,10,46,DET,CHI,1,10,80,(10:46) (Shotgun) M.Stafford pass short left to T.Scheffler to DET 27 for 7 yards (G.Hayes).,17,26,2012 -20121230_CHI@DET,4,10,9,DET,CHI,2,3,73,(10:09) (Shotgun) R.Reiff reported in as eligible. M.Leshoure up the middle to DET 25 for -2 yards (L.Briggs). Penalty on DET-J.Backus Offensive Holding declined.,17,26,2012 -20121230_CHI@DET,4,9,41,DET,CHI,3,5,75,(9:41) (Shotgun) M.Stafford pass short middle to T.Scheffler to DET 32 for 7 yards (N.Roach).,17,26,2012 -20121230_CHI@DET,4,8,59,DET,CHI,1,10,68,(8:59) (Shotgun) M.Stafford pass incomplete short right to B.Pettigrew.,17,26,2012 -20121230_CHI@DET,4,8,55,DET,CHI,2,10,68,(8:55) (Shotgun) M.Stafford pass incomplete short middle to T.Scheffler (L.Briggs).,17,26,2012 -20121230_CHI@DET,4,8,50,DET,CHI,3,10,68,(8:50) (Shotgun) M.Stafford scrambles right end to DET 36 for 4 yards (L.Briggs). PENALTY on CHI-L.Briggs Unnecessary Roughness 15 yards enforced at DET 36.,17,26,2012 -20121230_CHI@DET,4,8,16,DET,CHI,1,10,49,(8:16) (Shotgun) M.Stafford pass deep right to B.Robiskie pushed ob at CHI 28 for 21 yards (A.Walters).,17,26,2012 -20121230_CHI@DET,4,7,46,DET,CHI,1,10,28,(7:46) (Shotgun) M.Stafford pass short middle to W.Heller to CHI 9 for 19 yards (M.Wright).,17,26,2012 -20121230_CHI@DET,4,6,59,DET,CHI,1,9,9,(6:59) (Shotgun) M.Stafford pass short middle to B.Robiskie for 9 yards TOUCHDOWN. PENALTY on CHI-M.Wright Unnecessary Roughness 15 yards enforced between downs.,17,26,2012 -20121230_CHI@DET,4,6,59,DET,CHI,,,9,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-N.Harris.,17,26,2012 -20121230_CHI@DET,4,6,59,DET,CHI,,,9,J.Hanson kicks 50 yards from 50 to end zone Touchback.,24,26,2012 -20121230_CHI@DET,4,6,55,CHI,DET,1,10,80,(6:55) J.Cutler pass deep middle to B.Marshall to CHI 39 for 19 yards (R.Bartell).,26,24,2012 -20121230_CHI@DET,4,6,20,CHI,DET,1,10,61,(6:20) M.Forte right tackle to CHI 44 for 5 yards (D.Levy).,26,24,2012 -20121230_CHI@DET,4,5,36,CHI,DET,2,5,56,(5:36) M.Forte left tackle to CHI 45 for 1 yard (S.Tulloch). FUMBLES (S.Tulloch) recovered by CHI-C.Spencer at CHI 45. C.Spencer to CHI 45 for no gain (K.Vanden Bosch).,26,24,2012 -20121230_CHI@DET,4,4,49,CHI,DET,3,4,55,(4:49) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall.,26,24,2012 -20121230_CHI@DET,4,4,47,CHI,DET,4,4,55,(4:47) A.Podlesh punts 46 yards to DET 9 Center-P.Mannelly fair catch by M.Thomas.,26,24,2012 -20121230_CHI@DET,4,4,37,DET,CHI,1,10,91,(4:37) (Shotgun) M.Stafford pass incomplete short middle to C.Johnson.,24,26,2012 -20121230_CHI@DET,4,4,34,DET,CHI,2,10,91,(4:34) (Shotgun) M.Stafford pass short middle to T.Scheffler to DET 13 for 4 yards (N.Roach).,24,26,2012 -20121230_CHI@DET,4,3,54,DET,CHI,3,6,87,(3:54) (Shotgun) M.Stafford pass incomplete short right to K.Durham (T.Jennings).,24,26,2012 -20121230_CHI@DET,4,3,49,DET,CHI,4,6,87,(3:49) N.Harris punts 49 yards to CHI 38 Center-D.Muhlbach. D.Hester pushed ob at CHI 40 for 2 yards (T.Whitehead).,24,26,2012 -20121230_CHI@DET,4,3,40,CHI,DET,1,10,60,(3:40) M.Forte left end to CHI 44 for 4 yards (C.Avril).,26,24,2012 -20121230_CHI@DET,4,3,35,CHI,DET,2,6,56,(3:35) M.Forte right tackle to CHI 47 for 3 yards (D.Carey).,26,24,2012 -20121230_CHI@DET,4,3,28,CHI,DET,3,3,53,(3:28) J.Cutler scrambles left end to DET 34 for 19 yards (S.Tulloch).,26,24,2012 -20121230_CHI@DET,4,2,42,CHI,DET,1,10,34,(2:42) G.Carimi reported in as eligible. M.Forte left tackle to DET 34 for no gain (L.Jackson).,26,24,2012 -20121230_CHI@DET,4,2,38,CHI,DET,2,10,34,(2:38) M.Forte right end to DET 21 for 13 yards (C.Avril).,26,24,2012 -20121230_CHI@DET,4,2,0,CHI,DET,1,10,21,(2:00) J.Cutler kneels to DET 21 for no gain.,26,24,2012 -20121230_CHI@DET,4,1,19,CHI,DET,2,10,21,(1:19) J.Cutler kneels to DET 22 for -1 yards.,26,24,2012 -20121230_CHI@DET,4,0,38,CHI,DET,3,11,22,(:38) J.Cutler kneels to DET 23 for -1 yards.,26,24,2012 -20121230_CHI@DET,4,0,38,CHI,DET,,,22,                      ,26,24,2012 -20121230_HOU@IND,1,0,0,HOU,IND,,,22,S.Graham kicks 68 yards from HST 35 to IND -3. D.Karim to IND 25 for 28 yards (R.Carmichael).,0,0,2012 -20121230_HOU@IND,1,59,54,IND,HOU,1,10,75,(14:54) (Run formation) V.Ballard up the middle to IND 24 for -1 yards (J.Watt).,0,0,2012 -20121230_HOU@IND,1,59,17,IND,HOU,2,11,76,(14:17) (Shotgun) A.Luck pass short right to R.Wayne to IND 41 for 17 yards (G.Quin).,0,0,2012 -20121230_HOU@IND,1,58,34,IND,HOU,1,10,59,(13:34) (Run formation) A.Luck pass short left to V.Ballard pushed ob at 50 for 9 yards (B.James).,0,0,2012 -20121230_HOU@IND,1,58,9,IND,HOU,2,1,50,(13:09) (Run formation) V.Ballard left end to HST 43 for 7 yards (A.Smith).,0,0,2012 -20121230_HOU@IND,1,57,29,IND,HOU,1,10,43,(12:29) (Shotgun) A.Luck pass incomplete short left to D.Avery.,0,0,2012 -20121230_HOU@IND,1,57,26,IND,HOU,2,10,43,(12:26) (Shotgun) A.Luck pass short right to T.Hilton to HST 31 for 12 yards (Q.Demps).,0,0,2012 -20121230_HOU@IND,1,56,49,IND,HOU,1,10,31,(11:49) V.Ballard up the middle to HST 28 for 3 yards (J.Crick).,0,0,2012 -20121230_HOU@IND,1,56,10,IND,HOU,2,7,28,(11:10) PENALTY on HST-C.Barwin Neutral Zone Infraction 5 yards enforced at HST 28 - No Play.,0,0,2012 -20121230_HOU@IND,1,55,49,IND,HOU,2,2,23,(10:49) (Run formation) V.Ballard up the middle to HST 24 for -1 yards (E.Mitchell).,0,0,2012 -20121230_HOU@IND,1,55,8,IND,HOU,3,3,24,(10:08) (Shotgun) A.Luck pass short right to D.Allen to HST 4 for 20 yards (D.Manning).,0,0,2012 -20121230_HOU@IND,1,54,24,IND,HOU,1,4,4,(9:24) (Run formation) V.Ballard up the middle to HST 1 for 3 yards (D.Manning; G.Quin).,0,0,2012 -20121230_HOU@IND,1,53,43,IND,HOU,2,1,1,(8:43) (Shotgun) A.Luck pass incomplete short right to R.Wayne (J.Joseph).,0,0,2012 -20121230_HOU@IND,1,53,39,IND,HOU,3,1,1,(8:39) (Shotgun) A.Luck pass incomplete short right to R.Wayne. PENALTY on HST-B.Harris Defensive Pass Interference 0 yards enforced at HST 1 - No Play.,0,0,2012 -20121230_HOU@IND,1,53,34,IND,HOU,1,1,1,(8:34) (Run formation) M.Harvey reported in as eligible. V.Ballard up the middle to HST 1 for no gain (B.James; T.Dobbins).,0,0,2012 -20121230_HOU@IND,1,52,55,IND,HOU,2,1,1,(7:55) (Run formation) M.Harvey reported in as eligible. A.Luck pass short left to C.Fleener for 1 yard TOUCHDOWN.,0,0,2012 -20121230_HOU@IND,1,52,55,IND,HOU,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20121230_HOU@IND,1,52,55,IND,HOU,,,1,P.McAfee kicks 74 yards from IND 35 to HST -9. K.Martin Touchback.,7,0,2012 -20121230_HOU@IND,1,52,51,HOU,IND,1,10,80,(7:51) (Run formation) A.Foster right tackle to HST 23 for 3 yards (L.Guy).,0,7,2012 -20121230_HOU@IND,1,52,18,HOU,IND,2,7,77,(7:18) A.Foster right end to HST 31 for 8 yards (A.Bethea).,0,7,2012 -20121230_HOU@IND,1,51,42,HOU,IND,1,10,69,(6:42) A.Foster right end to HST 33 for 2 yards (J.Freeman; M.Tevaseu).,0,7,2012 -20121230_HOU@IND,1,51,2,HOU,IND,2,8,67,(6:02) (Run formation) B.Tate right end pushed ob at HST 37 for 4 yards (A.Bethea).,0,7,2012 -20121230_HOU@IND,1,50,31,HOU,IND,3,4,63,(5:31) (Shotgun) M.Schaub pass short left to O.Daniels pushed ob at HST 43 for 6 yards (D.Butler).,0,7,2012 -20121230_HOU@IND,1,50,7,HOU,IND,1,10,57,(5:07) (Pass formation) M.Schaub pass short right to A.Johnson to IND 49 for 8 yards (P.Angerer).,0,7,2012 -20121230_HOU@IND,1,49,30,HOU,IND,2,2,49,(4:30) (Run formation) M.Schaub pass short right to G.Graham to IND 43 for 6 yards (C.Vaughn).,0,7,2012 -20121230_HOU@IND,1,48,53,HOU,IND,1,10,43,(3:53) (Pass formation) M.Schaub sacked at HST 48 for -9 yards (C.Geathers). Houston challenged the too many players on field ruling and the play was Upheld. (Timeout #1.),0,7,2012 -20121230_HOU@IND,1,48,26,HOU,IND,2,19,52,(3:26) (Shotgun) M.Schaub pass short right to O.Daniels to IND 46 for 6 yards (C.Vaughn).,0,7,2012 -20121230_HOU@IND,1,47,43,HOU,IND,3,13,46,(2:43) (Shotgun) M.Schaub pass short left to D.Posey to IND 30 for 16 yards (J.Lefeged; J.Freeman).,0,7,2012 -20121230_HOU@IND,1,47,3,HOU,IND,1,10,30,(2:03) (Run formation) A.Foster up the middle to IND 24 for 6 yards (R.Mathis).,0,7,2012 -20121230_HOU@IND,1,46,22,HOU,IND,2,4,24,(1:22) (Run formation) PENALTY on HST-A.Johnson False Start 5 yards enforced at IND 24 - No Play.,0,7,2012 -20121230_HOU@IND,1,45,59,HOU,IND,2,9,29,(:59) (Pass formation) M.Schaub pass incomplete short left to K.Walter (R.Mathews).,0,7,2012 -20121230_HOU@IND,1,45,56,HOU,IND,3,9,29,(:56) (Shotgun) M.Schaub pass short right to A.Johnson to IND 32 for -3 yards (R.Mathis).,0,7,2012 -20121230_HOU@IND,1,45,12,HOU,IND,4,12,32,(:12) S.Graham 51 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,7,2012 -20121230_HOU@IND,1,45,12,HOU,IND,,,32,S.Graham kicks 73 yards from HST 35 to IND -8. D.Karim Touchback.,3,7,2012 -20121230_HOU@IND,1,45,6,IND,HOU,1,10,80,(:06) V.Ballard left end to IND 25 for 5 yards (C.Barwin; D.Manning).,7,3,2012 -20121230_HOU@IND,2,45,0,IND,HOU,2,5,75,(15:00) (Run formation) A.Luck sacked at IND 18 for -7 yards (sack split by C.Barwin and J.Watt). FUMBLES (C.Barwin) RECOVERED by HST-W.Mercilus at IND 14. W.Mercilus to IND 14 for no gain (A.Castonzo). The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Run formation) A.Luck pass incomplete short left to D.Allen [J.Watt].,7,3,2012 -20121230_HOU@IND,2,44,57,IND,HOU,3,5,75,(14:57) (Shotgun) A.Luck pass short right to T.Hilton to IND 37 for 12 yards (K.Jackson).,7,3,2012 -20121230_HOU@IND,2,44,18,IND,HOU,1,10,63,(14:18) A.Luck pass incomplete deep right to R.Wayne [D.Sharpton].,7,3,2012 -20121230_HOU@IND,2,44,14,IND,HOU,2,10,63,(14:14) (Pass formation) V.Ballard right tackle to IND 40 for 3 yards (A.Smith).,7,3,2012 -20121230_HOU@IND,2,43,35,IND,HOU,3,7,60,(13:35) (Shotgun) A.Luck sacked at IND 33 for -7 yards (A.Smith).,7,3,2012 -20121230_HOU@IND,2,43,3,IND,HOU,4,14,67,(13:03) P.McAfee punts 53 yards to HST 14 Center-M.Overton. K.Martin to HST 37 for 23 yards (D.Howell).,7,3,2012 -20121230_HOU@IND,2,42,50,HOU,IND,1,10,63,(12:50) (Pass formation) M.Schaub pass short right to A.Johnson pushed ob at IND 24 for 39 yards (C.Vaughn) [L.Guy].,3,7,2012 -20121230_HOU@IND,2,42,23,HOU,IND,1,10,24,(12:23) (Run formation) M.Schaub pass short right to A.Johnson to IND 20 for 4 yards (C.Vaughn).,3,7,2012 -20121230_HOU@IND,2,41,46,HOU,IND,2,6,20,(11:46) (Pass formation) A.Foster left end to IND 16 for 4 yards (J.Freeman).,3,7,2012 -20121230_HOU@IND,2,41,5,HOU,IND,3,2,16,(11:05) (Run formation) A.Foster right guard to IND 19 for -3 yards (D.Freeney).,3,7,2012 -20121230_HOU@IND,2,40,27,HOU,IND,4,5,19,(10:27) S.Graham 37 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,3,7,2012 -20121230_HOU@IND,2,40,27,HOU,IND,,,19,S.Graham kicks 55 yards from HST 35 to IND 10. B.Sowell to IND 21 for 11 yards (D.Posey).,6,7,2012 -20121230_HOU@IND,2,40,15,IND,HOU,1,10,79,(10:15) (Shotgun) A.Luck pass incomplete short right to R.Wayne (J.Watt).,7,6,2012 -20121230_HOU@IND,2,40,12,IND,HOU,2,10,79,(10:12) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 28 for 7 yards (G.Quin).,7,6,2012 -20121230_HOU@IND,2,39,38,IND,HOU,3,3,72,(9:38) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 38 for 10 yards (Q.Demps).,7,6,2012 -20121230_HOU@IND,2,39,24,IND,HOU,1,10,62,(9:24) (No Huddle) V.Ballard up the middle to IND 42 for 4 yards (C.Barwin). PENALTY on HST-B.James Defensive 12 On-field 5 yards enforced at IND 38 - No Play.,7,6,2012 -20121230_HOU@IND,2,39,1,IND,HOU,1,5,57,(9:01) (Run formation) V.Ballard up the middle to HST 49 for 8 yards (J.Forsett).,7,6,2012 -20121230_HOU@IND,2,38,20,IND,HOU,1,10,49,(8:20) (Run formation) A.Luck sacked at IND 42 for -9 yards (B.James). PENALTY on HST-J.Crick Defensive Offside 5 yards enforced at HST 49 - No Play.,7,6,2012 -20121230_HOU@IND,2,37,55,IND,HOU,1,5,44,(7:55) (Run formation) V.Ballard up the middle to HST 42 for 2 yards (D.Sharpton; B.James).,7,6,2012 -20121230_HOU@IND,2,37,10,IND,HOU,2,3,42,(7:10) (Run formation) V.Ballard left guard to HST 42 for no gain (B.James).,7,6,2012 -20121230_HOU@IND,2,36,26,IND,HOU,3,3,42,(6:26) (Shotgun) A.Luck pass incomplete short middle to V.Ballard.,7,6,2012 -20121230_HOU@IND,2,36,21,IND,HOU,4,3,42,(6:21) P.McAfee punts 39 yards to HST 3 Center-M.Overton downed by IND-S.Brown.,7,6,2012 -20121230_HOU@IND,2,36,12,HOU,IND,1,10,97,(6:12) (Run formation) A.Foster up the middle to HST 6 for 3 yards (P.Angerer; J.Lefeged).,6,7,2012 -20121230_HOU@IND,2,35,37,HOU,IND,2,7,94,(5:37) (Run formation) M.Schaub pass incomplete short left to A.Johnson. PENALTY on IND-V.Davis Defensive Pass Interference 9 yards enforced at HST 6 - No Play.,6,7,2012 -20121230_HOU@IND,2,35,32,HOU,IND,1,10,85,(5:32) (Run formation) A.Foster up the middle to HST 15 for no gain (R.Mathews).,6,7,2012 -20121230_HOU@IND,2,34,57,HOU,IND,2,10,85,(4:57) (Pass formation) M.Schaub pass short left to O.Daniels to HST 30 for 15 yards (V.Davis).,6,7,2012 -20121230_HOU@IND,2,34,19,HOU,IND,1,10,70,(4:19) (Run formation) M.Schaub pass deep middle intended for J.Casey INTERCEPTED by V.Davis at IND 35. V.Davis to HST 39 for 26 yards (O.Daniels).,6,7,2012 -20121230_HOU@IND,2,34,5,IND,HOU,1,10,39,(4:05) (Run formation) A.Luck pass incomplete deep right to C.Fleener (D.Sharpton).,7,6,2012 -20121230_HOU@IND,2,33,58,IND,HOU,2,10,39,(3:58) (Shotgun) V.Ballard left end to HST 19 for 20 yards (K.Jackson).,7,6,2012 -20121230_HOU@IND,2,33,13,IND,HOU,1,10,19,(3:13) (Run formation) A.Luck pass short right to D.Allen to HST 18 for 1 yard (B.Ruud).,7,6,2012 -20121230_HOU@IND,2,32,36,IND,HOU,2,9,18,(2:36) (Run formation) A.Luck pass short middle to V.Ballard to HST 18 for no gain (E.Mitchell).,7,6,2012 -20121230_HOU@IND,2,32,28,IND,HOU,3,9,18,(2:28) (Shotgun) A.Luck pass short right to T.Hilton to HST 1 for 17 yards (K.Jackson). Penalty on HST-C.Barwin Defensive Offside declined.,7,6,2012 -20121230_HOU@IND,2,32,6,IND,HOU,1,1,1,(2:06) (Run formation) M.Harvey reported in as eligible. V.Ballard left guard for 1 yard TOUCHDOWN.,7,6,2012 -20121230_HOU@IND,2,32,6,IND,HOU,,,1,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,6,2012 -20121230_HOU@IND,2,32,6,IND,HOU,,,1,P.McAfee kicks 70 yards from IND 35 to HST -5. D.Manning to HST 13 for 18 yards (M.Harvey; S.Brown).,14,6,2012 -20121230_HOU@IND,2,31,55,HOU,IND,1,10,87,(1:55) (Shotgun) M.Schaub pass incomplete deep right to K.Walter.,6,14,2012 -20121230_HOU@IND,2,31,49,HOU,IND,2,10,87,(1:49) (Shotgun) M.Schaub pass short right to A.Johnson to HST 22 for 9 yards (C.Vaughn).,6,14,2012 -20121230_HOU@IND,2,31,32,HOU,IND,3,1,78,(1:32) (No Huddle) M.Schaub up the middle to HST 22 for no gain (J.Freeman). Penalty on HST-D.Posey Illegal Shift declined.,6,14,2012 -20121230_HOU@IND,2,31,28,HOU,IND,4,1,78,(1:28) D.Jones punts 46 yards to IND 32 Center-J.Weeks downed by HST-D.Posey.,6,14,2012 -20121230_HOU@IND,2,31,18,IND,HOU,1,10,68,(1:18) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,14,6,2012 -20121230_HOU@IND,2,31,13,IND,HOU,2,10,68,(1:13) (Shotgun) A.Luck pass short left to M.Moore to IND 41 for 9 yards (K.Jackson).,14,6,2012 -20121230_HOU@IND,2,31,3,IND,HOU,3,1,59,(1:03) (Run formation) A.Luck up the middle to IND 43 for 2 yards (C.Barwin).,14,6,2012 -20121230_HOU@IND,2,30,39,IND,HOU,1,10,57,(:39) (No Huddle Shotgun) A.Luck pass incomplete short right to R.Wayne [T.Dobbins].,14,6,2012 -20121230_HOU@IND,2,30,33,IND,HOU,2,10,57,(:33) (Shotgun) A.Luck pass incomplete short right to R.Wayne (K.Jackson).,14,6,2012 -20121230_HOU@IND,2,30,27,IND,HOU,3,10,57,(:27) (Shotgun) A.Luck pass incomplete deep right to R.Wayne.,14,6,2012 -20121230_HOU@IND,2,30,22,IND,HOU,4,10,57,(:22) P.McAfee punts 44 yards to HST 13 Center-M.Overton out of bounds.,14,6,2012 -20121230_HOU@IND,2,30,14,HOU,IND,1,10,87,(:14) M.Schaub kneels to HST 12 for -1 yards.,6,14,2012 -20121230_HOU@IND,3,30,0,IND,HOU,,,87,P.McAfee kicks 73 yards from IND 35 to HST -8. K.Martin to HST 16 for 24 yards (M.Harvey).,14,6,2012 -20121230_HOU@IND,3,29,55,HOU,IND,1,10,84,(14:55) (Run formation) M.Schaub pass incomplete short right to A.Foster.,6,14,2012 -20121230_HOU@IND,3,29,50,HOU,IND,2,10,84,(14:50) (Run formation) M.Schaub pass short right to A.Johnson to HST 25 for 9 yards (C.Vaughn).,6,14,2012 -20121230_HOU@IND,3,29,8,HOU,IND,3,1,75,(14:08) (Shotgun) M.Schaub pass short left to A.Johnson to HST 27 for 2 yards (V.Davis).,6,14,2012 -20121230_HOU@IND,3,28,29,HOU,IND,1,10,73,(13:29) (Run formation) A.Foster right guard to HST 32 for 5 yards (M.Tevaseu).,6,14,2012 -20121230_HOU@IND,3,27,55,HOU,IND,2,5,68,(12:55) M.Schaub pass short left to A.Johnson to IND 48 for 20 yards (J.Freeman).,6,14,2012 -20121230_HOU@IND,3,27,19,HOU,IND,1,10,48,(12:19) (Run formation) A.Foster up the middle to IND 43 for 5 yards (A.Bethea).,6,14,2012 -20121230_HOU@IND,3,26,41,HOU,IND,2,5,43,(11:41) (Run formation) M.Schaub pass incomplete short right to A.Johnson.,6,14,2012 -20121230_HOU@IND,3,26,38,HOU,IND,3,5,43,(11:38) (Shotgun) M.Schaub pass short right to K.Walter to IND 29 for 14 yards (A.Bethea).,6,14,2012 -20121230_HOU@IND,3,25,58,HOU,IND,1,10,29,(10:58) (Run formation) A.Foster up the middle to IND 26 for 3 yards (J.Freeman).,6,14,2012 -20121230_HOU@IND,3,25,18,HOU,IND,2,7,26,(10:18) (Run formation) M.Schaub pass incomplete deep right to A.Johnson.,6,14,2012 -20121230_HOU@IND,3,25,12,HOU,IND,3,7,26,(10:12) (Shotgun) M.Schaub pass incomplete deep left to A.Johnson. PENALTY on IND-V.Davis Defensive Holding 5 yards enforced at IND 26 - No Play.,6,14,2012 -20121230_HOU@IND,3,25,7,HOU,IND,1,10,21,(10:07) (Run formation) M.Schaub pass short right to J.Casey to IND 13 for 8 yards (C.Vaughn).,6,14,2012 -20121230_HOU@IND,3,24,31,HOU,IND,2,2,13,(9:31) (Run formation) A.Foster left tackle for 13 yards TOUCHDOWN.,6,14,2012 -20121230_HOU@IND,3,24,31,HOU,IND,,,13,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,6,14,2012 -20121230_HOU@IND,3,24,31,HOU,IND,,,13,S.Graham kicks 66 yards from HST 35 to IND -1. D.Karim to IND 29 for 30 yards (Q.Demps; B.Braman).,13,14,2012 -20121230_HOU@IND,3,24,18,IND,HOU,1,10,71,(9:18) (Run formation) V.Ballard up the middle to IND 33 for 4 yards (A.Smith).,14,13,2012 -20121230_HOU@IND,3,23,42,IND,HOU,2,6,67,(8:42) (Pass formation) V.Ballard right tackle to IND 30 for -3 yards (J.Watt).,14,13,2012 -20121230_HOU@IND,3,23,1,IND,HOU,3,9,70,(8:01) (Shotgun) A.Luck pass incomplete short left to T.Hilton (J.Joseph) [A.Smith].,14,13,2012 -20121230_HOU@IND,3,22,56,IND,HOU,4,9,70,(7:56) P.McAfee punts 44 yards to HST 26 Center-M.Overton out of bounds.,14,13,2012 -20121230_HOU@IND,3,22,50,HOU,IND,1,10,74,(7:50) (Run formation) A.Foster left end to HST 29 for 3 yards (V.Davis).,13,14,2012 -20121230_HOU@IND,3,22,23,HOU,IND,2,7,71,(7:23) (Run formation) M.Schaub pass short right to A.Johnson to HST 39 for 10 yards (C.Vaughn).,13,14,2012 -20121230_HOU@IND,3,21,47,HOU,IND,1,10,61,(6:47) (Run formation) A.Foster left end pushed ob at IND 22 for 39 yards (A.Bethea).,13,14,2012 -20121230_HOU@IND,3,21,14,HOU,IND,1,10,22,(6:14) (Run formation) B.Tate up the middle to IND 19 for 3 yards (P.Angerer; J.Freeman).,13,14,2012 -20121230_HOU@IND,3,20,35,HOU,IND,2,7,19,(5:35) (Run formation) M.Schaub pass incomplete short right to D.Posey.,13,14,2012 -20121230_HOU@IND,3,20,31,HOU,IND,3,7,19,(5:31) (Shotgun) M.Schaub pass incomplete short left to O.Daniels.,13,14,2012 -20121230_HOU@IND,3,20,27,HOU,IND,4,7,19,(5:27) S.Graham 37 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,13,14,2012 -20121230_HOU@IND,3,20,27,HOU,IND,,,19,S.Graham kicks 66 yards from HST 35 to IND -1. D.Karim for 101 yards TOUCHDOWN.,16,14,2012 -20121230_HOU@IND,3,20,27,IND,HOU,,,19,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,16,2012 -20121230_HOU@IND,3,20,27,IND,HOU,,,19,P.McAfee kicks 73 yards from IND 35 to HST -8. K.Martin to HST 23 for 31 yards (J.Hughes).,21,16,2012 -20121230_HOU@IND,3,20,4,HOU,IND,1,10,77,(5:04) (Run formation) M.Schaub sacked at HST 17 for -6 yards (D.Freeney).,16,21,2012 -20121230_HOU@IND,3,19,32,HOU,IND,2,16,83,(4:32) (Shotgun) PENALTY on HST-B.Brooks False Start 5 yards enforced at HST 17 - No Play.,16,21,2012 -20121230_HOU@IND,3,19,16,HOU,IND,2,21,88,(4:16) (Run formation) M.Schaub pass incomplete short left to A.Johnson (V.Davis).,16,21,2012 -20121230_HOU@IND,3,19,10,HOU,IND,3,21,88,(4:10) (Shotgun) M.Schaub pass short left to A.Foster to HST 17 for 5 yards (J.Hughes).,16,21,2012 -20121230_HOU@IND,3,18,35,HOU,IND,4,16,83,(3:35) D.Jones punts 55 yards to IND 28 Center-J.Weeks. T.Hilton to IND 47 for 19 yards (G.Graham).,16,21,2012 -20121230_HOU@IND,3,18,21,IND,HOU,1,10,53,(3:21) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,21,16,2012 -20121230_HOU@IND,3,18,17,IND,HOU,2,10,53,(3:17) V.Ballard up the middle to 50 for 3 yards (E.Mitchell; W.Mercilus).,21,16,2012 -20121230_HOU@IND,3,17,37,IND,HOU,3,7,50,(2:37) (Shotgun) A.Luck pass incomplete short right to T.Hilton (D.Manning).,21,16,2012 -20121230_HOU@IND,3,17,29,IND,HOU,4,7,50,(2:29) P.McAfee punts 50 yards to HST 0 Center-M.Overton penalty enforced. PENALTY on HST-T.Clutts Offensive Holding 10 yards enforced at HST 20.,21,16,2012 -20121230_HOU@IND,3,17,20,HOU,IND,1,10,90,(2:20) (Run formation) M.Schaub pass short left to A.Johnson to HST 24 for 14 yards (V.Davis).,16,21,2012 -20121230_HOU@IND,3,16,45,HOU,IND,1,10,76,(1:45) (Run formation) A.Foster right tackle to HST 26 for 2 yards (J.Freeman).,16,21,2012 -20121230_HOU@IND,3,16,12,HOU,IND,2,8,74,(1:12) (Run formation) M.Schaub pass deep left to A.Johnson pushed ob at HST 47 for 21 yards (V.Davis).,16,21,2012 -20121230_HOU@IND,3,15,44,HOU,IND,1,10,53,(:44) (Run formation) M.Schaub sacked at HST 45 for -2 yards (J.Westerman). Penalty on HST-C.Myers Illegal Use of Hands declined.,16,21,2012 -20121230_HOU@IND,3,15,24,HOU,IND,2,12,55,(:24) (Run formation) M.Schaub pass incomplete deep left to L.Jean.,16,21,2012 -20121230_HOU@IND,3,15,17,HOU,IND,3,12,55,(:17) (Shotgun) M.Schaub pass deep right to K.Walter to IND 33 for 22 yards (C.Vaughn).,16,21,2012 -20121230_HOU@IND,4,15,0,HOU,IND,1,10,33,(15:00) (Run formation) A.Foster right tackle to IND 30 for 3 yards (R.Mathis).,16,21,2012 -20121230_HOU@IND,4,14,26,HOU,IND,2,7,30,(14:26) (Run formation) M.Schaub pass short right to J.Casey pushed ob at IND 27 for 3 yards (C.Vaughn).,16,21,2012 -20121230_HOU@IND,4,13,51,HOU,IND,3,4,27,(13:51) (Shotgun) M.Schaub sacked at IND 35 for -8 yards (L.Guy).,16,21,2012 -20121230_HOU@IND,4,13,18,HOU,IND,4,12,35,(13:18) S.Graham 52 yard field goal is No Good Wide Right Center-J.Weeks Holder-D.Jones.,16,21,2012 -20121230_HOU@IND,4,13,13,IND,HOU,1,10,57,(13:13) (Run formation) V.Ballard up the middle to IND 40 for -3 yards (J.Watt).,21,16,2012 -20121230_HOU@IND,4,12,36,IND,HOU,2,13,60,(12:36) (Shotgun) V.Ballard left end pushed ob at IND 40 for no gain (K.Jackson).,21,16,2012 -20121230_HOU@IND,4,12,3,IND,HOU,3,13,60,(12:03) (Shotgun) A.Luck pass deep right to R.Wayne to HST 36 for 24 yards (B.Harris). PENALTY on IND-A.Castonzo Offensive Holding 10 yards enforced at IND 40 - No Play.,21,16,2012 -20121230_HOU@IND,4,11,31,IND,HOU,3,23,70,(11:31) (Shotgun) A.Luck pass deep left to T.Hilton for 70 yards TOUCHDOWN.,21,16,2012 -20121230_HOU@IND,4,11,31,IND,HOU,,,70,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,21,16,2012 -20121230_HOU@IND,4,11,31,IND,HOU,,,70,P.McAfee kicks 74 yards from IND 35 to HST -9. K.Martin to HST 29 for 38 yards (J.Gordy).,28,16,2012 -20121230_HOU@IND,4,11,16,HOU,IND,1,10,71,(11:16) (Pass formation) M.Schaub pass short middle to K.Walter to HST 44 for 15 yards (J.Freeman).,16,28,2012 -20121230_HOU@IND,4,10,55,HOU,IND,1,10,56,(10:55) (Pass formation) M.Schaub pass short right to A.Johnson to IND 48 for 8 yards (A.Bethea).,16,28,2012 -20121230_HOU@IND,4,10,28,HOU,IND,2,2,48,(10:28) M.Schaub pass short right to A.Foster to IND 30 for 18 yards (J.Freeman).,16,28,2012 -20121230_HOU@IND,4,9,57,HOU,IND,1,10,30,(9:57) (Run formation) M.Schaub pass incomplete short right to A.Johnson.,16,28,2012 -20121230_HOU@IND,4,9,53,HOU,IND,2,10,30,(9:53) M.Schaub pass deep left intended for A.Johnson INTERCEPTED by V.Davis at IND 0. Touchback.,16,28,2012 -20121230_HOU@IND,4,9,46,IND,HOU,1,10,80,(9:46) (Run formation) V.Ballard left guard to IND 25 for 5 yards (B.James; C.Barwin).,28,16,2012 -20121230_HOU@IND,4,9,3,IND,HOU,2,5,75,(9:03) V.Ballard left tackle to IND 29 for 4 yards (B.Ruud).,28,16,2012 -20121230_HOU@IND,4,8,20,IND,HOU,3,1,71,(8:20) (Run formation) D.Allen up the middle to IND 31 for 2 yards (G.Quin).,28,16,2012 -20121230_HOU@IND,4,7,38,IND,HOU,1,10,69,(7:38) (Run formation) V.Ballard left end to IND 27 for -4 yards (J.Watt).,28,16,2012 -20121230_HOU@IND,4,6,57,IND,HOU,2,14,73,(6:57) (Shotgun) A.Luck pass incomplete deep right to T.Hilton. PENALTY on HST-K.Jackson Defensive Pass Interference 24 yards enforced at IND 27 - No Play.,28,16,2012 -20121230_HOU@IND,4,6,51,IND,HOU,1,10,49,(6:51) (Run formation) V.Ballard left end to HST 46 for 3 yards (B.Ruud; K.Jackson).,28,16,2012 -20121230_HOU@IND,4,6,9,IND,HOU,2,7,46,(6:09) (Run formation) V.Ballard up the middle to HST 40 for 6 yards (B.James). PENALTY on HST-B.James Defensive Offside 5 yards enforced at HST 46 - No Play.,28,16,2012 -20121230_HOU@IND,4,5,43,IND,HOU,2,2,41,(5:43) (Run formation) V.Ballard left end to HST 40 for 1 yard (B.James).,28,16,2012 -20121230_HOU@IND,4,5,10,IND,HOU,3,1,40,(5:10) (Run formation) A.Luck left guard to HST 38 for 2 yards (C.Barwin).,28,16,2012 -20121230_HOU@IND,4,4,30,IND,HOU,1,10,38,(4:30) (Run formation) V.Ballard left guard to HST 35 for 3 yards (B.Ruud).,28,16,2012 -20121230_HOU@IND,4,4,24,IND,HOU,2,7,35,(4:24) (Run formation) V.Ballard up the middle to HST 28 for 7 yards (K.Jackson; G.Quin).,28,16,2012 -20121230_HOU@IND,4,3,39,IND,HOU,1,10,28,(3:39) (Run formation) V.Ballard right end to HST 20 for 8 yards (B.James).,28,16,2012 -20121230_HOU@IND,4,3,31,IND,HOU,2,2,20,(3:31) (Run formation) V.Ballard up the middle to HST 20 for no gain (B.James).,28,16,2012 -20121230_HOU@IND,4,2,47,IND,HOU,3,2,20,(2:47) (Run formation) A.Luck pass short right to R.Wayne to HST 14 for 6 yards (K.Jackson).,28,16,2012 -20121230_HOU@IND,4,2,0,IND,HOU,1,10,14,(2:00) A.Luck kneels to HST 15 for -1 yards.,28,16,2012 -20121230_HOU@IND,4,1,20,IND,HOU,2,11,15,(1:20) A.Luck kneels to HST 16 for -1 yards.,28,16,2012 -20121230_HOU@IND,4,0,40,IND,HOU,3,12,16,(:40) A.Luck kneels to HST 17 for -1 yards.,28,16,2012 -20121230_HOU@IND,4,0,40,IND,HOU,,,16,                      ,28,16,2012 -20121230_CAR@NO,1,0,0,NO,CAR,,,16,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,0,0,2012 -20121230_CAR@NO,1,60,0,CAR,NO,1,10,80,(15:00) (Shotgun) C.Newton pass incomplete short left to S.Smith.,0,0,2012 -20121230_CAR@NO,1,59,55,CAR,NO,2,10,80,(14:55) (Shotgun) C.Newton pass short left to B.LaFell to CAR 24 for 4 yards (J.Vilma). Pass -2 YAC 6,0,0,2012 -20121230_CAR@NO,1,59,21,CAR,NO,3,6,76,(14:21) (Shotgun) C.Newton pass incomplete short right to L.Murphy.,0,0,2012 -20121230_CAR@NO,1,59,17,CAR,NO,4,6,76,(14:17) B.Nortman punts 47 yards to NO 29 Center-J.Jansen. D.Sproles to NO 28 for -1 yards (D.Hogue). PENALTY on CAR-A.Smith Illegal Touch Kick 5 yards enforced at NO 28.,0,0,2012 -20121230_CAR@NO,1,59,4,NO,CAR,1,10,67,(14:04) D.Brees pass short left to M.Colston to CAR 49 for 18 yards (C.Godfrey). Penalty on CAR-C.Munnerlyn Illegal Contact declined. Pass 14 YAC 4,0,0,2012 -20121230_CAR@NO,1,58,40,NO,CAR,1,10,49,(13:40) M.Ingram left end to CAR 48 for 1 yard (D.Edwards; L.Kuechly).,0,0,2012 -20121230_CAR@NO,1,58,4,NO,CAR,2,9,48,(13:04) (Shotgun) D.Brees pass incomplete deep right to J.Graham (C.Munnerlyn).,0,0,2012 -20121230_CAR@NO,1,57,59,NO,CAR,3,9,48,(12:59) (Shotgun) D.Brees pass incomplete short right to J.Graham.,0,0,2012 -20121230_CAR@NO,1,57,55,NO,CAR,4,9,48,(12:55) T.Morstead punts 26 yards to CAR 22 Center-J.Drescher out of bounds.,0,0,2012 -20121230_CAR@NO,1,57,47,CAR,NO,1,10,78,(12:47) D.Williams left tackle to CAR 21 for -1 yards (C.Lofton; J.Vilma).,0,0,2012 -20121230_CAR@NO,1,57,9,CAR,NO,2,11,79,(12:09) (Shotgun) C.Newton pass short right to G.Olsen to CAR 32 for 11 yards (I.Abdul-Quddus). Pass 2 YAC 9,0,0,2012 -20121230_CAR@NO,1,56,26,CAR,NO,1,10,68,(11:26) C.Newton scrambles right end pushed ob at CAR 35 for 3 yards (C.Jordan).,0,0,2012 -20121230_CAR@NO,1,55,53,CAR,NO,2,7,65,(10:53) (Shotgun) M.Tolbert left guard to CAR 40 for 5 yards (S.Ellis).,0,0,2012 -20121230_CAR@NO,1,55,9,CAR,NO,3,2,60,(10:09) (Shotgun) C.Newton left guard to NO 44 for 16 yards (E.Mack).,0,0,2012 -20121230_CAR@NO,1,54,28,CAR,NO,1,10,44,(9:28) D.Williams right tackle to NO 40 for 4 yards (P.Robinson).,0,0,2012 -20121230_CAR@NO,1,53,43,CAR,NO,2,6,40,(8:43) C.Newton pass incomplete deep left to L.Murphy.,0,0,2012 -20121230_CAR@NO,1,53,36,CAR,NO,3,6,40,(8:36) (Shotgun) C.Newton pass short middle to B.LaFell to NO 21 for 19 yards (R.Bush). Pass 5 YAC 14,0,0,2012 -20121230_CAR@NO,1,52,54,CAR,NO,1,10,21,(7:54) (Shotgun) C.Newton pass incomplete deep right to G.Olsen (I.Abdul-Quddus).,0,0,2012 -20121230_CAR@NO,1,52,47,CAR,NO,2,10,21,(7:47) (Shotgun) C.Newton pass short right to D.Williams pushed ob at NO 18 for 3 yards (J.Patrick). Pass -6 YAC 9,0,0,2012 -20121230_CAR@NO,1,52,11,CAR,NO,3,7,18,(7:11) (Shotgun) C.Newton pass short right to G.Olsen to NO 2 for 16 yards (R.Bush). Pass 10 YAC 6,0,0,2012 -20121230_CAR@NO,1,51,31,CAR,NO,1,2,2,(6:31) M.Tolbert right guard to NO 2 for no gain (J.Vilma).,0,0,2012 -20121230_CAR@NO,1,50,52,CAR,NO,2,2,2,(5:52) C.Newton pass incomplete short right to R.Brockel.,0,0,2012 -20121230_CAR@NO,1,50,49,CAR,NO,3,2,2,(5:49) C.Newton pass incomplete short right to S.Smith.,0,0,2012 -20121230_CAR@NO,1,50,44,CAR,NO,4,2,2,(5:44) G.Gano 20 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,0,0,2012 -20121230_CAR@NO,1,50,44,CAR,NO,,,2,G.Gano kicks 73 yards from CAR 35 to NO -8. T.Cadet Touchback.,3,0,2012 -20121230_CAR@NO,1,50,41,NO,CAR,1,10,80,(5:41) D.Brees pass incomplete short right to D.Sproles.,0,3,2012 -20121230_CAR@NO,1,50,37,NO,CAR,2,10,80,(5:37) M.Ingram right end to NO 21 for 1 yard (C.Munnerlyn).,0,3,2012 -20121230_CAR@NO,1,49,57,NO,CAR,3,9,79,(4:57) (Shotgun) D.Brees pass deep left to J.Graham to NO 48 for 27 yards (J.Thomas; D.Campbell). Pass 24 YAC 3,0,3,2012 -20121230_CAR@NO,1,49,18,NO,CAR,1,10,52,(4:18) C.Ivory right guard to CAR 43 for 9 yards (C.Godfrey).,0,3,2012 -20121230_CAR@NO,1,48,46,NO,CAR,2,1,43,(3:46) (Shotgun) D.Brees pass incomplete short left to J.Graham.,0,3,2012 -20121230_CAR@NO,1,48,43,NO,CAR,3,1,43,(3:43) M.Ingram left guard to CAR 40 for 3 yards (F.Alexander).,0,3,2012 -20121230_CAR@NO,1,48,9,NO,CAR,1,10,40,(3:09) J.Morgan right end pushed ob at CAR 39 for 1 yard (T.Davis).,0,3,2012 -20121230_CAR@NO,1,47,33,NO,CAR,2,9,39,(2:33) (Shotgun) D.Brees pass incomplete short right to M.Colston.,0,3,2012 -20121230_CAR@NO,1,47,27,NO,CAR,3,9,39,(2:27) (Shotgun) D.Brees pass incomplete short left to L.Moore (J.Thomas).,0,3,2012 -20121230_CAR@NO,1,47,22,NO,CAR,4,9,39,(2:22) T.Morstead punts 36 yards to CAR 3 Center-J.Drescher downed by NO-C.Roby.,0,3,2012 -20121230_CAR@NO,1,47,10,CAR,NO,1,10,97,(2:10) M.Tolbert left guard to CAR 5 for 2 yards (C.Lofton; J.Vilma).,3,0,2012 -20121230_CAR@NO,1,46,27,CAR,NO,2,8,95,(1:27) C.Newton sacked at CAR 2 for -3 yards (B.Bunkley).,3,0,2012 -20121230_CAR@NO,1,45,46,CAR,NO,3,11,98,(:46) (Shotgun) C.Newton pass deep right to S.Smith pushed ob at CAR 27 for 25 yards (R.Bush). Penalty on NO-P.Robinson Illegal Contact declined. Pass 21 YAC 4,3,0,2012 -20121230_CAR@NO,1,45,16,CAR,NO,1,10,73,(:16) (Shotgun) D.Williams right guard to CAR 31 for 4 yards (B.Bunkley).,3,0,2012 -20121230_CAR@NO,2,45,0,CAR,NO,2,6,69,(15:00) (Shotgun) C.Newton pass incomplete deep left to S.Smith (P.Robinson).,3,0,2012 -20121230_CAR@NO,2,44,54,CAR,NO,3,6,69,(14:54) (Shotgun) C.Newton pass short middle to S.Smith pushed ob at CAR 48 for 17 yards (J.Patrick) [R.Harper]. Pass 7 YAC 10,3,0,2012 -20121230_CAR@NO,2,44,21,CAR,NO,1,10,52,(14:21) C.Newton pass incomplete deep right to L.Murphy [T.Johnson].,3,0,2012 -20121230_CAR@NO,2,44,13,CAR,NO,2,10,52,(14:13) D.Williams left end to NO 43 for 9 yards (T.Johnson; D.Hawthorne).,3,0,2012 -20121230_CAR@NO,2,43,30,CAR,NO,3,1,43,(13:30) M.Tolbert left guard to NO 38 for 5 yards (W.Smith).,3,0,2012 -20121230_CAR@NO,2,42,47,CAR,NO,1,10,38,(12:47) (Shotgun) C.Newton left guard to NO 36 for 2 yards (C.Lofton).,3,0,2012 -20121230_CAR@NO,2,42,4,CAR,NO,2,8,36,(12:04) (Shotgun) C.Newton pass incomplete short middle to S.Smith (W.Smith R.Harper).,3,0,2012 -20121230_CAR@NO,2,41,59,CAR,NO,3,8,36,(11:59) (Shotgun) C.Newton pass incomplete deep right to S.Smith [J.Galette]. Penalty on CAR-B.Bell Illegal Use of Hands declined.,3,0,2012 -20121230_CAR@NO,2,41,54,CAR,NO,4,8,36,(11:54) G.Gano 54 yard field goal is No Good Wide Right Center-J.Jansen Holder-B.Nortman.,3,0,2012 -20121230_CAR@NO,2,41,49,NO,CAR,1,10,56,(11:49) C.Ivory left tackle to CAR 45 for 11 yards (D.Campbell).,0,3,2012 -20121230_CAR@NO,2,41,18,NO,CAR,1,10,45,(11:18) (Shotgun) D.Sproles left end to NO 49 for -6 yards (J.Thomas).,0,3,2012 -20121230_CAR@NO,2,40,40,NO,CAR,2,16,51,(10:40) (Shotgun) D.Brees sacked at NO 39 for -10 yards (C.Johnson).,0,3,2012 -20121230_CAR@NO,2,40,12,NO,CAR,3,26,61,(10:12) (Shotgun) D.Brees pass short right to J.Graham to NO 42 for 3 yards (J.Dockery). Pass 0 YAC 3,0,3,2012 -20121230_CAR@NO,2,39,40,NO,CAR,4,23,58,(9:40) T.Morstead punts 48 yards to CAR 10 Center-J.Drescher. A.Edwards ran ob at CAR 18 for 8 yards (C.Roby).,0,3,2012 -20121230_CAR@NO,2,39,30,CAR,NO,1,10,82,(9:30) (Shotgun) C.Newton pass short left to B.LaFell to CAR 34 for 16 yards (R.Harper) [T.McBride]. Pass 14 YAC 2,3,0,2012 -20121230_CAR@NO,2,38,54,CAR,NO,1,10,66,(8:54) D.Williams left tackle pushed ob at NO 1 for 65 yards (R.Harper).,3,0,2012 -20121230_CAR@NO,2,38,22,CAR,NO,1,1,1,(8:22) M.Tolbert left end for 1 yard TOUCHDOWN.,3,0,2012 -20121230_CAR@NO,2,38,22,CAR,NO,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,3,0,2012 -20121230_CAR@NO,2,38,22,CAR,NO,,,1,G.Gano kicks 70 yards from CAR 35 to NO -5. T.Cadet to NO 24 for 29 yards (J.Norman).,10,0,2012 -20121230_CAR@NO,2,38,12,NO,CAR,1,10,76,(8:12) M.Ingram right guard to NO 41 for 17 yards (D.Campbell).,0,10,2012 -20121230_CAR@NO,2,37,42,NO,CAR,1,10,59,(7:42) M.Ingram left guard to NO 45 for 4 yards (F.Kearse).,0,10,2012 -20121230_CAR@NO,2,37,14,NO,CAR,2,6,55,(7:14) D.Brees pass deep left to L.Moore pushed ob at CAR 16 for 39 yards (J.Thomas; C.Godfrey). Pass 18 YAC 21,0,10,2012 -20121230_CAR@NO,2,36,42,NO,CAR,1,10,16,(6:42) D.Brees pass incomplete deep left to J.Graham.,0,10,2012 -20121230_CAR@NO,2,36,38,NO,CAR,2,10,16,(6:38) (Shotgun) D.Brees pass short middle to D.Sproles to CAR 11 for 5 yards (C.Munnerlyn). Pass 0 YAC 5,0,10,2012 -20121230_CAR@NO,2,35,57,NO,CAR,3,5,11,(5:57) (Shotgun) D.Brees pass short left to D.Sproles to CAR 7 for 4 yards (T.Davis). Pass 1 YAC 3,0,10,2012 -20121230_CAR@NO,2,35,19,NO,CAR,4,1,7,(5:19) (Shotgun) D.Brees pass short left to M.Colston for 7 yards TOUCHDOWN. Pass 5 YAC 2,0,10,2012 -20121230_CAR@NO,2,35,19,NO,CAR,,,7,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,10,2012 -20121230_CAR@NO,2,35,19,NO,CAR,,,7,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,7,10,2012 -20121230_CAR@NO,2,35,14,CAR,NO,1,10,80,(5:14) D.Williams right guard to CAR 24 for 4 yards (B.Bunkley; J.Vilma).,10,7,2012 -20121230_CAR@NO,2,34,37,CAR,NO,2,6,76,(4:37) (Shotgun) C.Newton pass short left intended for D.Williams INTERCEPTED by J.Vilma at CAR 18. J.Vilma for 18 yards TOUCHDOWN.,10,7,2012 -20121230_CAR@NO,2,34,37,NO,CAR,,,76,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,10,2012 -20121230_CAR@NO,2,34,37,NO,CAR,,,76,T.Morstead kicks 63 yards from NO 35 to CAR 2. A.Smith to CAR 27 for 25 yards (J.Patrick).,14,10,2012 -20121230_CAR@NO,2,34,26,CAR,NO,1,10,73,(4:26) (Shotgun) D.Williams left end pushed ob at CAR 49 for 22 yards (C.Lofton).,10,14,2012 -20121230_CAR@NO,2,33,56,CAR,NO,1,10,51,(3:56) B.LaFell left end to NO 47 for 4 yards (P.Robinson).,10,14,2012 -20121230_CAR@NO,2,33,15,CAR,NO,2,6,47,(3:15) C.Newton pass short left to L.Murphy to NO 30 for 17 yards (J.Patrick). Pass 9 YAC 8,10,14,2012 -20121230_CAR@NO,2,32,31,CAR,NO,1,10,30,(2:31) (Shotgun) C.Newton right tackle to NO 27 for 3 yards (C.Lofton).,10,14,2012 -20121230_CAR@NO,2,32,0,CAR,NO,2,7,27,(2:00) (Shotgun) C.Newton pass short middle to G.Olsen to NO 15 for 12 yards (R.Harper). Pass 12 YAC 0,10,14,2012 -20121230_CAR@NO,2,31,38,CAR,NO,1,10,15,(1:38) (Shotgun) C.Newton pass incomplete short left to L.Murphy.,10,14,2012 -20121230_CAR@NO,2,31,34,CAR,NO,2,10,15,(1:34) (Shotgun) C.Newton left guard to NO 13 for 2 yards (S.Ellis; W.Smith).,10,14,2012 -20121230_CAR@NO,2,30,48,CAR,NO,3,8,13,(:48) (Shotgun) C.Newton pass incomplete short middle to B.LaFell (E.Mack).,10,14,2012 -20121230_CAR@NO,2,30,44,CAR,NO,4,8,13,(:44) G.Gano 31 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,10,14,2012 -20121230_CAR@NO,2,30,44,CAR,NO,,,13,G.Gano kicks 73 yards from CAR 35 to NO -8. D.Sproles to NO 18 for 26 yards (G.Barnidge).,13,14,2012 -20121230_CAR@NO,2,30,34,NO,CAR,1,10,82,(:34) (Shotgun) D.Brees pass short middle to L.Moore to NO 32 for 14 yards (L.Kuechly). Pass 13 YAC 1,14,13,2012 -20121230_CAR@NO,2,30,29,NO,CAR,1,10,68,(:29) (Shotgun) D.Brees pass deep right to J.Graham to CAR 49 for 19 yards (L.Kuechly). Pass 18 YAC 1,14,13,2012 -20121230_CAR@NO,2,30,23,NO,CAR,1,10,49,(:23) (Shotgun) D.Brees pass incomplete short middle to J.Graham (L.Kuechly).,14,13,2012 -20121230_CAR@NO,2,30,19,NO,CAR,2,10,49,(:19) (Shotgun) D.Brees pass short right to D.Sproles to CAR 35 for 14 yards (L.Kuechly). Pass 4 YAC 10,14,13,2012 -20121230_CAR@NO,2,30,5,NO,CAR,1,10,35,(:05) G.Hartley 53 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,13,2012 -20121230_CAR@NO,3,30,0,CAR,NO,,,35,G.Gano kicks 74 yards from CAR 35 to NO -9. D.Sproles Touchback.,13,17,2012 -20121230_CAR@NO,3,30,0,NO,CAR,1,10,80,(15:00) M.Ingram right guard to NO 18 for -2 yards (J.Phillips).,17,13,2012 -20121230_CAR@NO,3,29,25,NO,CAR,2,12,82,(14:25) (Shotgun) D.Brees pass short right to D.Sproles to NO 18 for no gain (S.Fua; L.Kuechly). Pass -7 YAC 7,17,13,2012 -20121230_CAR@NO,3,28,48,NO,CAR,3,12,82,(13:48) (Shotgun) D.Brees pass deep middle to L.Moore to CAR 31 for 51 yards (C.Godfrey). Pass 45 YAC 6,17,13,2012 -20121230_CAR@NO,3,27,58,NO,CAR,1,10,31,(12:58) M.Ingram left guard to CAR 31 for no gain (J.Phillips).,17,13,2012 -20121230_CAR@NO,3,27,23,NO,CAR,2,10,31,(12:23) D.Brees pass short right to J.Collins to CAR 26 for 5 yards (L.Kuechly). Pass 5 YAC 0,17,13,2012 -20121230_CAR@NO,3,26,42,NO,CAR,3,5,26,(11:42) (Shotgun) D.Brees pass short right to J.Graham to CAR 20 for 6 yards (J.Dockery; T.Davis). Pass 4 YAC 2,17,13,2012 -20121230_CAR@NO,3,26,12,NO,CAR,1,10,20,(11:12) C.Ivory right end pushed ob at CAR 19 for 1 yard (C.Munnerlyn).,17,13,2012 -20121230_CAR@NO,3,25,49,NO,CAR,2,9,19,(10:49) D.Brees pass short middle to J.Graham for 19 yards TOUCHDOWN. Pass 9 YAC 10,17,13,2012 -20121230_CAR@NO,3,25,49,NO,CAR,,,19,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,17,13,2012 -20121230_CAR@NO,3,25,49,NO,CAR,,,19,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,24,13,2012 -20121230_CAR@NO,3,25,45,CAR,NO,1,10,80,(10:45) D.Williams left guard to CAR 19 for -1 yards (D.Hawthorne).,13,24,2012 -20121230_CAR@NO,3,25,6,CAR,NO,2,11,81,(10:06) C.Newton pass short left to G.Olsen to CAR 23 for 4 yards (R.Harper). A flag was thrown on this play. The referee stated there was no foul. There appeared to be a fumble caused by #41 Harper which was recovered by #32 Patrick and returned to the endzone for a TOUCHDOWN. New Orleans challenged the ruling and the referee agreed a fumble occurred but said he could not determine that New Orleans made a fumble recovery. Pass 3 YAC 1 New Orleans challenged the fumble ruling and the play was Upheld. (Timeout #1.),13,24,2012 -20121230_CAR@NO,3,24,57,CAR,NO,3,7,77,(9:57) (Shotgun) C.Newton scrambles left end to CAR 32 for 9 yards (I.Abdul-Quddus). PENALTY on CAR-J.Byers Offensive Holding 11 yards enforced at CAR 23 - No Play.,13,24,2012 -20121230_CAR@NO,3,24,31,CAR,NO,3,18,88,(9:31) (Shotgun) C.Newton pass deep right to L.Murphy ran ob at CAR 46 for 34 yards. Pass 34 YAC 0. No tackle.,13,24,2012 -20121230_CAR@NO,3,23,59,CAR,NO,1,10,54,(8:59) (Shotgun) D.Williams left tackle for 54 yards TOUCHDOWN.,13,24,2012 -20121230_CAR@NO,3,23,59,CAR,NO,,,54,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,13,24,2012 -20121230_CAR@NO,3,23,59,CAR,NO,,,54,G.Gano kicks 70 yards from CAR 35 to NO -5. D.Sproles to NO 8 for 13 yards (A.Smith).,20,24,2012 -20121230_CAR@NO,3,23,45,NO,CAR,1,10,92,(8:45) M.Ingram left guard to NO 15 for 7 yards (L.Kuechly).,24,20,2012 -20121230_CAR@NO,3,23,9,NO,CAR,2,3,85,(8:09) (Shotgun) D.Brees pass incomplete short middle to M.Ingram [F.Alexander].,24,20,2012 -20121230_CAR@NO,3,23,5,NO,CAR,3,3,85,(8:05) (Shotgun) D.Brees pass short right to D.Sproles to NO 17 for 2 yards (J.Dockery). Pass 2 YAC 0,24,20,2012 -20121230_CAR@NO,3,22,29,NO,CAR,4,1,83,(7:29) T.Morstead punts 48 yards to CAR 35 Center-J.Drescher fair catch by A.Edwards.,24,20,2012 -20121230_CAR@NO,3,22,22,CAR,NO,1,10,65,(7:22) D.Williams left tackle to CAR 37 for 2 yards (B.Bunkley; C.Jordan).,20,24,2012 -20121230_CAR@NO,3,21,38,CAR,NO,2,8,63,(6:38) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,20,24,2012 -20121230_CAR@NO,3,21,31,CAR,NO,3,8,63,(6:31) (Shotgun) C.Newton scrambles left end to CAR 46 for 9 yards (J.Galette). CAR-C.Newton was injured during the play. His return is Probable.,20,24,2012 -20121230_CAR@NO,3,20,57,CAR,NO,1,10,54,(5:57) Quarterback for Carolina is #3 Anderson. PENALTY on CAR-B.Hartsock False Start 5 yards enforced at CAR 46 - No Play.,20,24,2012 -20121230_CAR@NO,3,20,31,CAR,NO,1,15,59,(5:31) Newton returns at quarterback for Carolina. (Shotgun) D.Williams left guard to CAR 46 for 5 yards (J.Vilma; W.Smith).,20,24,2012 -20121230_CAR@NO,3,19,51,CAR,NO,2,10,54,(4:51) C.Newton pass incomplete deep right to B.LaFell (I.Abdul-Quddus).,20,24,2012 -20121230_CAR@NO,3,19,44,CAR,NO,3,10,54,(4:44) (Shotgun) C.Newton pass incomplete short left to M.Tolbert. Penalty on CAR-B.Bell Offensive Holding declined.,20,24,2012 -20121230_CAR@NO,3,19,37,CAR,NO,4,10,54,(4:37) B.Nortman punts 54 yards to end zone Center-J.Jansen Touchback.,20,24,2012 -20121230_CAR@NO,3,19,28,NO,CAR,1,10,80,(4:28) (Shotgun) D.Sproles left end pushed ob at NO 22 for 2 yards (L.Kuechly).,24,20,2012 -20121230_CAR@NO,3,18,54,NO,CAR,2,8,78,(3:54) D.Brees pass short left intended for L.Moore INTERCEPTED by C.Godfrey at NO 36. C.Godfrey to NO 36 for no gain (L.Moore). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,24,20,2012 -20121230_CAR@NO,3,18,47,CAR,NO,1,10,36,(3:47) (Shotgun) C.Newton pass deep middle to S.Smith to NO 5 for 31 yards (J.Patrick). Pass 21 YAC 10,20,24,2012 -20121230_CAR@NO,3,18,9,CAR,NO,1,5,5,(3:09) (Shotgun) D.Williams right guard to NO 1 for 4 yards (T.Johnson).,20,24,2012 -20121230_CAR@NO,3,17,34,CAR,NO,2,1,1,(2:34) M.Tolbert left tackle for 1 yard TOUCHDOWN.,20,24,2012 -20121230_CAR@NO,3,17,34,CAR,NO,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,20,24,2012 -20121230_CAR@NO,3,17,34,CAR,NO,,,1,G.Gano kicks 74 yards from CAR 35 to NO -9. D.Sproles Touchback.,27,24,2012 -20121230_CAR@NO,3,17,29,NO,CAR,1,10,80,(2:29) (Shotgun) D.Brees pass short middle to D.Sproles to NO 29 for 9 yards (C.Munnerlyn). Pass 6 YAC 3,24,27,2012 -20121230_CAR@NO,3,16,53,NO,CAR,2,1,71,(1:53) D.Brees pass short left to J.Morgan pushed ob at NO 37 for 8 yards (J.Thomas). Pass 6 YAC 2,24,27,2012 -20121230_CAR@NO,3,16,25,NO,CAR,1,10,63,(1:25) C.Ivory right guard to NO 38 for 1 yard (L.Kuechly; F.Alexander).,24,27,2012 -20121230_CAR@NO,3,15,38,NO,CAR,2,9,62,(:38) (Shotgun) D.Sproles right guard to NO 43 for 5 yards (L.Kuechly).,24,27,2012 -20121230_CAR@NO,3,15,4,NO,CAR,3,4,57,(:04) (Shotgun) D.Brees pass incomplete short left to J.Graham (C.Munnerlyn).,24,27,2012 -20121230_CAR@NO,4,15,0,NO,CAR,4,4,57,(15:00) T.Morstead punts 57 yards to end zone Center-J.Drescher Touchback.,24,27,2012 -20121230_CAR@NO,4,14,52,CAR,NO,1,10,80,(14:52) C.Newton pass short right to M.Tolbert to CAR 42 for 22 yards (I.Abdul-Quddus). PENALTY on NO-T.McBride Personal Foul 15 yards enforced at CAR 42. Pass 1 YAC 21,27,24,2012 -20121230_CAR@NO,4,14,16,CAR,NO,1,10,43,(14:16) (Shotgun) C.Newton pass short right to L.Murphy pushed ob at NO 37 for 6 yards (J.Patrick) [T.McBride]. CAR-C.Newton was injured during the play. His return is Probable. Pass 6 YAC 0,27,24,2012 -20121230_CAR@NO,4,13,54,CAR,NO,2,4,37,(13:54) New quarterback for Carolina is #3 Anderson. (Shotgun) D.Williams left end to NO 35 for 2 yards (T.McBride).,27,24,2012 -20121230_CAR@NO,4,13,11,CAR,NO,3,2,35,(13:11) D.Anderson pass incomplete deep left to L.Murphy. PENALTY on NO-J.Patrick Defensive Holding 5 yards enforced at NO 35 - No Play.,27,24,2012 -20121230_CAR@NO,4,13,6,CAR,NO,1,10,30,(13:06) D.Williams left end to NO 23 for 7 yards (C.Jordan).,27,24,2012 -20121230_CAR@NO,4,12,23,CAR,NO,2,3,23,(12:23) D.Williams right tackle to NO 24 for -1 yards (J.Vilma).,27,24,2012 -20121230_CAR@NO,4,11,40,CAR,NO,3,4,24,(11:40) (Shotgun) D.Anderson pass short left to B.LaFell to NO 12 for 12 yards (R.Harper). Pass 9 YAC 3,27,24,2012 -20121230_CAR@NO,4,10,55,CAR,NO,1,10,12,(10:55) Newton returns at quarterback for Carolina. (Shotgun) C.Newton pass incomplete short middle to M.Tolbert (C.Lofton).,27,24,2012 -20121230_CAR@NO,4,10,51,CAR,NO,2,10,12,(10:51) (Shotgun) C.Newton pass short right to B.LaFell pushed ob at NO 1 for 11 yards (R.Harper). Pass 11 YAC 0,27,24,2012 -20121230_CAR@NO,4,10,20,CAR,NO,1,1,1,(10:20) M.Tolbert left tackle for 1 yard TOUCHDOWN.,27,24,2012 -20121230_CAR@NO,4,10,20,CAR,NO,,,1,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,27,24,2012 -20121230_CAR@NO,4,10,20,CAR,NO,,,1,G.Gano kicks 74 yards from CAR 35 to NO -9. D.Sproles Touchback.,34,24,2012 -20121230_CAR@NO,4,10,16,NO,CAR,1,10,80,(10:16) M.Ingram left tackle to NO 27 for 7 yards (F.Alexander; F.Kearse).,24,34,2012 -20121230_CAR@NO,4,9,46,NO,CAR,2,3,73,(9:46) M.Ingram right guard to NO 28 for 1 yard (L.Kuechly).,24,34,2012 -20121230_CAR@NO,4,9,12,NO,CAR,3,2,72,(9:12) (Shotgun) D.Brees sacked at NO 20 for -8 yards (C.Johnson).,24,34,2012 -20121230_CAR@NO,4,8,47,NO,CAR,4,10,80,(8:47) T.Morstead punts 61 yards to CAR 19 Center-J.Drescher. A.Edwards pushed ob at NO 12 for 69 yards (T.Morstead).,24,34,2012 -20121230_CAR@NO,4,8,29,CAR,NO,1,10,12,(8:29) D.Williams left end for 12 yards TOUCHDOWN.,34,24,2012 -20121230_CAR@NO,4,8,29,CAR,NO,,,12,G.Gano extra point is GOOD Center-J.Jansen Holder-B.Nortman.,34,24,2012 -20121230_CAR@NO,4,8,29,CAR,NO,,,12,G.Gano kicks 73 yards from CAR 35 to NO -8. D.Sproles to NO 19 for 27 yards (J.Dockery).,41,24,2012 -20121230_CAR@NO,4,8,17,NO,CAR,1,10,81,(8:17) (Shotgun) D.Brees pass short right to D.Henderson to NO 35 for 16 yards (J.Dockery). Pass 15 YAC 1,24,41,2012 -20121230_CAR@NO,4,7,52,NO,CAR,1,10,65,(7:52) (Shotgun) D.Brees pass short middle to D.Sproles to NO 47 for 12 yards (L.Kuechly). Pass 3 YAC 9,24,41,2012 -20121230_CAR@NO,4,7,25,NO,CAR,1,10,53,(7:25) (Shotgun) D.Brees pass short right to J.Graham to CAR 44 for 9 yards (J.Dockery; D.Campbell). Pass 8 YAC 1,24,41,2012 -20121230_CAR@NO,4,7,0,NO,CAR,2,1,44,(7:00) (Shotgun) D.Brees pass short middle to M.Colston to CAR 30 for 14 yards (C.Munnerlyn).,24,41,2012 -20121230_CAR@NO,4,6,34,NO,CAR,1,10,30,(6:34) (Shotgun) D.Brees pass incomplete short right to J.Graham.,24,41,2012 -20121230_CAR@NO,4,6,27,NO,CAR,2,10,30,(6:27) (Shotgun) D.Brees pass incomplete deep right to M.Colston (J.Thomas).,24,41,2012 -20121230_CAR@NO,4,6,21,NO,CAR,3,10,30,(6:21) (Shotgun) D.Brees pass incomplete short middle to M.Colston (L.Kuechly).,24,41,2012 -20121230_CAR@NO,4,6,15,NO,CAR,4,10,30,(6:15) (Shotgun) D.Brees pass short left to L.Moore to CAR 13 for 17 yards (L.Kuechly). Pass 15 YAC 2,24,41,2012 -20121230_CAR@NO,4,5,46,NO,CAR,1,10,13,(5:46) (Shotgun) D.Brees pass short right to M.Colston to CAR 9 for 4 yards (C.Munnerlyn). Pass 3 YAC 1,24,41,2012 -20121230_CAR@NO,4,5,15,NO,CAR,2,6,9,(5:15) (Shotgun) D.Brees pass short middle to M.Colston for 9 yards TOUCHDOWN. Pass 9 YAC 0,24,41,2012 -20121230_CAR@NO,4,5,15,NO,CAR,,,9,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,24,41,2012 -20121230_CAR@NO,4,5,15,NO,CAR,,,9,T.Morstead kicks onside 9 yards from NO 35 to NO 44. J.Senn (didn't try to advance) to NO 44 for no gain (R.Bush). PENALTY on NO-J.Graham Personal Foul 15 yards enforced at NO 44.,31,41,2012 -20121230_CAR@NO,4,5,9,CAR,NO,1,10,29,(5:09) D.Williams left tackle to NO 29 for no gain (B.Bunkley).,41,31,2012 -20121230_CAR@NO,4,4,25,CAR,NO,2,10,29,(4:25) D.Williams left guard to NO 29 for no gain (J.Vilma).,41,31,2012 -20121230_CAR@NO,4,4,19,CAR,NO,3,10,29,(4:19) D.Williams left tackle to NO 24 for 5 yards (I.Abdul-Quddus).,41,31,2012 -20121230_CAR@NO,4,4,13,CAR,NO,4,5,24,(4:13) G.Gano 42 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,41,31,2012 -20121230_CAR@NO,4,4,13,CAR,NO,,,24,G.Gano kicks 73 yards from CAR 35 to NO -8. D.Sproles Touchback.,44,31,2012 -20121230_CAR@NO,4,4,8,NO,CAR,1,10,80,(4:08) (Shotgun) D.Brees pass short right to J.Graham to NO 29 for 9 yards (C.Munnerlyn). Pass 5 YAC 4,31,44,2012 -20121230_CAR@NO,4,3,43,NO,CAR,2,1,71,(3:43) (Shotgun) D.Brees pass short right to J.Graham to NO 43 for 14 yards (J.Dockery). Pass 9 YAC 5,31,44,2012 -20121230_CAR@NO,4,3,22,NO,CAR,1,10,57,(3:22) (Shotgun) D.Brees pass short right to J.Graham to CAR 48 for 9 yards (T.Davis). Pass 8 YAC 1,31,44,2012 -20121230_CAR@NO,4,3,4,NO,CAR,2,1,48,(3:04) (Shotgun) D.Brees pass incomplete short right to M.Colston. PENALTY on CAR-C.Munnerlyn Defensive Pass Interference 15 yards enforced at CAR 48 - No Play.,31,44,2012 -20121230_CAR@NO,4,2,55,NO,CAR,1,10,33,(2:55) (Shotgun) D.Brees pass short left to D.Sproles for 33 yards TOUCHDOWN. Pass -6 YAC 39,31,44,2012 -20121230_CAR@NO,4,2,55,NO,CAR,,,33,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,31,44,2012 -20121230_CAR@NO,4,2,52,CAR,NO,1,10,33,(2:52) D.Williams left tackle to NO 30 for 3 yards (D.Hawthorne). PENALTY on NO-B.Bunkley Illegal Use of Hands 5 yards enforced at NO 30.,44,38,2012 -20121230_CAR@NO,4,2,48,CAR,NO,1,10,25,(2:48) D.Williams left end to NO 14 for 11 yards (I.Abdul-Quddus).,44,38,2012 -20121230_CAR@NO,4,2,7,CAR,NO,1,10,14,(2:07) M.Tolbert left end to NO 11 for 3 yards (D.Hawthorne; C.Jordan).,44,38,2012 -20121230_CAR@NO,4,2,0,CAR,NO,2,7,11,(2:00) M.Tolbert left tackle to NO 6 for 5 yards (E.Mack; W.Smith).,44,38,2012 -20121230_CAR@NO,4,1,16,CAR,NO,3,2,6,(1:16) M.Tolbert left tackle to NO 4 for 2 yards (C.Jordan).,44,38,2012 -20121230_CAR@NO,4,0,38,CAR,NO,1,4,4,(:38) C.Newton kneels to NO 5 for -1 yards.,44,38,2012 -20121230_CAR@NO,4,0,38,CAR,NO,,,4,                      ,44,38,2012 -20121230_PHI@NYG,1,0,0,PHI,NYG,,,4,A.Henery kicks onside 12 yards from PHI 35 to PHI 47. RECOVERED by PHI-B.Hughes. Ball first touched by NYG #30 - J.Tryon.,0,0,2012 -20121230_PHI@NYG,1,59,58,PHI,NYG,1,10,53,(14:58) (No Huddle) M.Vick pass short middle to J.Avant to NYG 47 for 6 yards (S.Brown).,0,0,2012 -20121230_PHI@NYG,1,59,26,PHI,NYG,2,4,47,(14:26) (No Huddle) D.Johnson right end pushed ob at NYG 40 for 7 yards (K.Rivers).,0,0,2012 -20121230_PHI@NYG,1,59,9,PHI,NYG,1,10,40,(14:09) (No Huddle) L.McCoy right tackle to NYG 39 for 1 yard (J.Pierre-Paul).,0,0,2012 -20121230_PHI@NYG,1,58,37,PHI,NYG,2,9,43,(13:37) (No Huddle Shotgun) M.Vick FUMBLES (Aborted) at NYG 43 and recovers at NYG 43. M.Vick to NYG 43 for no gain (S.Paysinger).,0,0,2012 -20121230_PHI@NYG,1,57,56,PHI,NYG,3,13,43,(12:56) (No Huddle Shotgun) M.Vick pass deep middle intended for B.Celek INTERCEPTED by S.Brown [M.Boley] at NYG 26. S.Brown to PHI 26 for 48 yards (J.Scott M.Vick). PHI-J.Avant was injured during the play.,0,0,2012 -20121230_PHI@NYG,1,57,37,NYG,PHI,1,10,26,(12:37) D.Wilson left tackle to PHI 16 for 10 yards (A.Jordan N.Asomugha).,0,0,2012 -20121230_PHI@NYG,1,57,2,NYG,PHI,1,10,16,(12:02) D.Wilson left end to PHI 3 for 13 yards (C.Anderson T.Cole).,0,0,2012 -20121230_PHI@NYG,1,56,21,NYG,PHI,1,3,3,(11:21) D.Wilson left guard to PHI 3 for no gain (C.Jenkins).,0,0,2012 -20121230_PHI@NYG,1,55,42,NYG,PHI,2,3,3,(10:42) E.Manning pass short middle to R.Randle for 3 yards TOUCHDOWN.,0,0,2012 -20121230_PHI@NYG,1,55,42,NYG,PHI,,,3,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20121230_PHI@NYG,1,55,42,NYG,PHI,,,3,L.Tynes kicks 71 yards from NYG 35 to PHI -6. B.Brown Touchback.,7,0,2012 -20121230_PHI@NYG,1,55,36,PHI,NYG,1,10,80,(10:36) M.Vick pass short right to B.Celek to PHI 33 for 13 yards (K.Rivers).,0,7,2012 -20121230_PHI@NYG,1,55,10,PHI,NYG,1,10,67,(10:10) (No Huddle) M.Vick pass incomplete short left to L.McCoy.,0,7,2012 -20121230_PHI@NYG,1,55,3,PHI,NYG,2,10,67,(10:03) (Shotgun) L.McCoy right end pushed ob at PHI 33 for no gain (P.Amukamara).,0,7,2012 -20121230_PHI@NYG,1,54,22,PHI,NYG,3,10,67,(9:22) (Shotgun) M.Vick pass incomplete short left to D.Johnson.,0,7,2012 -20121230_PHI@NYG,1,54,16,PHI,NYG,4,10,67,(9:16) M.McBriar punts 41 yards to NYG 26 Center-J.Dorenbos out of bounds.,0,7,2012 -20121230_PHI@NYG,1,54,7,NYG,PHI,1,10,74,(9:07) E.Manning pass short right to R.Randle to NYG 36 for 10 yards (D.Rodgers-Cromartie D.Landri).,7,0,2012 -20121230_PHI@NYG,1,53,32,NYG,PHI,1,10,64,(8:32) E.Manning pass short left to V.Cruz to NYG 45 for 9 yards (N.Asomugha).,7,0,2012 -20121230_PHI@NYG,1,52,58,NYG,PHI,2,1,55,(7:58) D.Wilson up the middle to NYG 45 for no gain (B.Graham).,7,0,2012 -20121230_PHI@NYG,1,52,21,NYG,PHI,3,1,55,(7:21) A.Bradshaw left guard to PHI 38 for 17 yards (C.Anderson K.Coleman).,7,0,2012 -20121230_PHI@NYG,1,51,34,NYG,PHI,1,10,38,(6:34) E.Manning pass deep left to R.Randle for 38 yards TOUCHDOWN.,7,0,2012 -20121230_PHI@NYG,1,51,34,NYG,PHI,,,38,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,7,0,2012 -20121230_PHI@NYG,1,51,34,NYG,PHI,,,38,L.Tynes kicks 60 yards from NYG 35 to PHI 5. B.Brown to PHI 21 for 16 yards (K.Lumpkin).,14,0,2012 -20121230_PHI@NYG,1,51,19,PHI,NYG,1,10,79,(6:19) L.McCoy left end pushed ob at PHI 28 for 7 yards (K.Rivers A.Rolle).,0,14,2012 -20121230_PHI@NYG,1,50,57,PHI,NYG,2,3,72,(5:57) (No Huddle) M.Vick sacked at PHI 24 for -4 yards (J.Tuck). Penalty on PHI-L.McCoy Offensive Holding declined.,0,14,2012 -20121230_PHI@NYG,1,50,31,PHI,NYG,3,7,76,(5:31) M.Vick pass short left to B.Celek to PHI 26 for 2 yards (K.Phillips J.Tuck).,0,14,2012 -20121230_PHI@NYG,1,49,42,PHI,NYG,4,5,74,(4:42) M.McBriar punts 49 yards to NYG 25 Center-J.Dorenbos downed by PHI-D.Sims.,0,14,2012 -20121230_PHI@NYG,1,49,28,NYG,PHI,1,10,75,(4:28) J.Jernigan right end to NYG 31 for 6 yards (K.Coleman). End around.,14,0,2012 -20121230_PHI@NYG,1,48,52,NYG,PHI,2,4,69,(3:52) D.Wilson right tackle to NYG 31 for no gain (C.Anderson).,14,0,2012 -20121230_PHI@NYG,1,48,5,NYG,PHI,3,4,69,(3:05) (Shotgun) E.Manning pass deep right to A.Bradshaw to PHI 28 for 41 yards (D.Rodgers-Cromartie).,14,0,2012 -20121230_PHI@NYG,1,47,17,NYG,PHI,1,10,28,(2:17) E.Manning pass incomplete short middle to M.Bennett (D.Ryans) [B.Graham].,14,0,2012 -20121230_PHI@NYG,1,47,8,NYG,PHI,2,10,28,(2:08) D.Wilson right tackle to PHI 15 for 13 yards (K.Coleman).,14,0,2012 -20121230_PHI@NYG,1,46,29,NYG,PHI,1,10,15,(1:29) (Shotgun) E.Manning pass short right to D.Wilson for 15 yards TOUCHDOWN.,14,0,2012 -20121230_PHI@NYG,1,46,29,NYG,PHI,,,15,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,14,0,2012 -20121230_PHI@NYG,1,46,29,NYG,PHI,,,15,L.Tynes kicks 68 yards from NYG 35 to PHI -3. B.Brown Touchback.,21,0,2012 -20121230_PHI@NYG,1,46,18,PHI,NYG,1,10,80,(1:18) M.Vick pass short left to L.McCoy pushed ob at NYG 44 for 36 yards (C.Webster).,0,21,2012 -20121230_PHI@NYG,1,45,55,PHI,NYG,1,10,44,(:55) (No Huddle Shotgun) M.Vick pass incomplete short right to T.Edwards (K.Phillips) [J.Tuck].,0,21,2012 -20121230_PHI@NYG,1,45,47,PHI,NYG,2,10,44,(:47) (No Huddle Shotgun) B.Brown left end to NYG 31 for 13 yards (K.Phillips).,0,21,2012 -20121230_PHI@NYG,1,45,12,PHI,NYG,1,10,31,(:12) (No Huddle) B.Brown right tackle to NYG 31 for no gain (A.Rolle L.Joseph).,0,21,2012 -20121230_PHI@NYG,2,45,0,PHI,NYG,2,10,31,(15:00) (Shotgun) M.Vick pass incomplete short left to J.Maclin.,0,21,2012 -20121230_PHI@NYG,2,44,55,PHI,NYG,3,10,31,(14:55) M.Vick pass incomplete short right to J.Avant (S.Brown).,0,21,2012 -20121230_PHI@NYG,2,44,48,PHI,NYG,4,10,31,(14:48) (No Huddle Shotgun) M.Vick pass short middle to J.Avant to NYG 16 for 15 yards (S.Brown).,0,21,2012 -20121230_PHI@NYG,2,44,9,PHI,NYG,1,10,16,(14:09) (No Huddle) M.Vick scrambles right end pushed ob at NYG 10 for 6 yards (K.Rivers).,0,21,2012 -20121230_PHI@NYG,2,43,38,PHI,NYG,2,4,10,(13:38) B.Brown left guard to NYG 8 for 2 yards (M.Herzlich L.Joseph).,0,21,2012 -20121230_PHI@NYG,2,42,56,PHI,NYG,3,2,8,(12:56) (No Huddle) L.McCoy right tackle to NYG 7 for 1 yard (C.Blackburn).,0,21,2012 -20121230_PHI@NYG,2,42,13,PHI,NYG,4,1,7,(12:13) M.Vick pass short left to J.Maclin for 7 yards TOUCHDOWN [C.Blackburn].,0,21,2012 -20121230_PHI@NYG,2,42,13,PHI,NYG,,,7,A.Henery extra point is GOOD Center-J.Dorenbos Holder-M.McBriar.,0,21,2012 -20121230_PHI@NYG,2,42,13,PHI,NYG,,,7,A.Henery kicks 67 yards from PHI 35 to NYG -2. D.Wilson to NYG 27 for 29 yards (M.McNutt R.Rau).,7,21,2012 -20121230_PHI@NYG,2,42,1,NYG,PHI,1,10,73,(12:01) D.Wilson right guard to NYG 28 for 1 yard (A.Dixon C.Thornton).,21,7,2012 -20121230_PHI@NYG,2,41,27,NYG,PHI,2,9,72,(11:27) E.Manning pass incomplete deep middle to R.Randle (D.Rodgers-Cromartie). PENALTY on PHI-D.Ryans Illegal Contact 5 yards enforced at NYG 28 - No Play.,21,7,2012 -20121230_PHI@NYG,2,41,17,NYG,PHI,1,10,67,(11:17) A.Bradshaw up the middle to NYG 43 for 10 yards (D.Rodgers-Cromartie C.Anderson).,21,7,2012 -20121230_PHI@NYG,2,40,35,NYG,PHI,1,10,57,(10:35) A.Bradshaw left end ran ob at PHI 45 for 12 yards (K.Coleman).,21,7,2012 -20121230_PHI@NYG,2,40,9,NYG,PHI,1,10,45,(10:09) E.Manning pass short right to V.Cruz pushed ob at PHI 33 for 12 yards (D.Rodgers-Cromartie).,21,7,2012 -20121230_PHI@NYG,2,39,34,NYG,PHI,1,10,33,(9:34) E.Manning pass short left to V.Cruz pushed ob at PHI 26 for 7 yards (N.Asomugha).,21,7,2012 -20121230_PHI@NYG,2,38,59,NYG,PHI,2,3,26,(8:59) E.Manning pass short left to R.Randle to PHI 19 for 7 yards (C.Anderson N.Asomugha).,21,7,2012 -20121230_PHI@NYG,2,38,17,NYG,PHI,1,10,19,(8:17) A.Bradshaw right end to PHI 9 for 10 yards (K.Coleman D.Rodgers-Cromartie).,21,7,2012 -20121230_PHI@NYG,2,37,25,NYG,PHI,1,9,9,(7:25) (Shotgun) A.Bradshaw up the middle to PHI 7 for 2 yards (C.Anderson).,21,7,2012 -20121230_PHI@NYG,2,36,43,NYG,PHI,2,7,7,(6:43) E.Manning pass incomplete short left to D.Hixon (N.Asomugha).,21,7,2012 -20121230_PHI@NYG,2,36,33,NYG,PHI,3,7,7,(6:33) (Shotgun) E.Manning pass incomplete short left to R.Randle. PENALTY on PHI-N.Asomugha Defensive Pass Interference 6 yards enforced at PHI 7 - No Play.,21,7,2012 -20121230_PHI@NYG,2,36,30,NYG,PHI,1,1,1,(6:30) A.Bradshaw right guard for 1 yard TOUCHDOWN.,21,7,2012 -20121230_PHI@NYG,2,36,30,NYG,PHI,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,21,7,2012 -20121230_PHI@NYG,2,36,30,NYG,PHI,,,1,L.Tynes kicks 65 yards from NYG 35 to end zone Touchback.,28,7,2012 -20121230_PHI@NYG,2,36,26,PHI,NYG,1,10,80,(6:26) M.Vick pass short right to R.Cooper to PHI 29 for 9 yards (C.Webster).,7,28,2012 -20121230_PHI@NYG,2,35,53,PHI,NYG,2,1,71,(5:53) L.McCoy right tackle pushed ob at PHI 43 for 14 yards (P.Amukamara).,7,28,2012 -20121230_PHI@NYG,2,35,23,PHI,NYG,1,10,57,(5:23) (Shotgun) M.Vick pass incomplete short middle to J.Maclin (C.Blackburn).,7,28,2012 -20121230_PHI@NYG,2,35,15,PHI,NYG,2,10,57,(5:15) (Shotgun) M.Vick pass incomplete short left to J.Maclin.,7,28,2012 -20121230_PHI@NYG,2,35,11,PHI,NYG,3,10,57,(5:11) (Shotgun) M.Vick pass short right to J.Avant to NYG 44 for 13 yards (S.Brown) [O.Umenyiora].,7,28,2012 -20121230_PHI@NYG,2,34,36,PHI,NYG,1,10,44,(4:36) (No Huddle) L.McCoy left end pushed ob at NYG 31 for 13 yards (S.Brown).,7,28,2012 -20121230_PHI@NYG,2,34,13,PHI,NYG,1,10,31,(4:13) (No Huddle) L.McCoy right tackle to NYG 27 for 4 yards (C.Blackburn).,7,28,2012 -20121230_PHI@NYG,2,33,34,PHI,NYG,2,6,27,(3:34) (No Huddle Shotgun) M.Vick scrambles right end pushed ob at NYG 16 for 11 yards (C.Blackburn). PENALTY on NYG-K.Phillips Illegal Contact 5 yards enforced at NYG 16.,7,28,2012 -20121230_PHI@NYG,2,33,10,PHI,NYG,1,10,11,(3:10) M.Vick pass short left to R.Cooper to NYG 10 for 1 yard (J.Williams A.Rolle) [O.Umenyiora].,7,28,2012 -20121230_PHI@NYG,2,32,29,PHI,NYG,2,9,10,(2:29) (No Huddle Shotgun) L.McCoy right guard to NYG 10 for no gain (J.Williams C.Blackburn).,7,28,2012 -20121230_PHI@NYG,2,32,0,PHI,NYG,3,9,10,(2:00) M.Vick pass incomplete short middle to D.Johnson.,7,28,2012 -20121230_PHI@NYG,2,31,55,PHI,NYG,4,9,10,(1:55) A.Henery 28 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-M.McBriar.,7,28,2012 -20121230_PHI@NYG,2,31,48,NYG,PHI,1,10,80,(1:48) (Shotgun) A.Bradshaw up the middle to NYG 35 for 15 yards (N.Asomugha B.Boykin).,28,7,2012 -20121230_PHI@NYG,2,31,24,NYG,PHI,1,10,65,(1:24) (No Huddle Shotgun) E.Manning pass incomplete short left to R.Randle [C.Jenkins]. PENALTY on PHI-C.Jenkins Illegal Use of Hands 5 yards enforced at NYG 35 - No Play.,28,7,2012 -20121230_PHI@NYG,2,31,21,NYG,PHI,1,10,60,(1:21) (Shotgun) E.Manning pass incomplete short left to M.Bennett (C.Jenkins).,28,7,2012 -20121230_PHI@NYG,2,31,16,NYG,PHI,2,10,60,(1:16) (Shotgun) E.Manning pass incomplete deep middle to V.Cruz.,28,7,2012 -20121230_PHI@NYG,2,31,10,NYG,PHI,3,10,60,(1:10) (Shotgun) E.Manning pass incomplete short right to M.Bennett.,28,7,2012 -20121230_PHI@NYG,2,31,1,NYG,PHI,4,10,60,(1:01) S.Weatherford punts 45 yards to PHI 15 Center-Z.DeOssie. D.Johnson to PHI 14 for -1 yards (J.Tryon).,28,7,2012 -20121230_PHI@NYG,2,30,52,PHI,NYG,1,10,86,(:52) (Shotgun) M.Vick pass short left to J.Maclin pushed ob at PHI 17 for 3 yards (P.Amukamara).,7,28,2012 -20121230_PHI@NYG,2,30,47,PHI,NYG,2,7,83,(:47) (Shotgun) M.Vick pass deep middle to B.Celek to PHI 45 for 28 yards (S.Brown). NYG-S.Brown was injured during the play.,7,28,2012 -20121230_PHI@NYG,2,30,37,PHI,NYG,1,10,55,(:37) (Shotgun) M.Vick pass short left to J.Avant to 50 for 5 yards (W.Hill).,7,28,2012 -20121230_PHI@NYG,2,30,34,PHI,NYG,2,5,50,(:34) (Shotgun) M.Vick pass incomplete short middle to B.Celek (K.Phillips).,7,28,2012 -20121230_PHI@NYG,2,30,29,PHI,NYG,3,5,50,(:29) (Shotgun) M.Vick pass incomplete short left to D.Johnson.,7,28,2012 -20121230_PHI@NYG,2,30,23,PHI,NYG,4,5,50,(:23) (Shotgun) M.Vick pass short right to J.Maclin to NYG 46 for 4 yards (W.Hill).,7,28,2012 -20121230_PHI@NYG,2,30,17,NYG,PHI,1,10,54,(:17) (Shotgun) E.Manning pass short middle to D.Hixon pushed ob at PHI 24 for 30 yards (D.Rodgers-Cromartie).,28,7,2012 -20121230_PHI@NYG,2,30,10,NYG,PHI,1,10,24,(:10) (Shotgun) E.Manning pass deep middle to V.Cruz for 24 yards TOUCHDOWN.,28,7,2012 -20121230_PHI@NYG,2,30,10,NYG,PHI,,,24,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,28,7,2012 -20121230_PHI@NYG,2,30,10,NYG,PHI,,,24,L.Tynes kicks 68 yards from NYG 35 to PHI -3. B.Boykin to PHI 21 for 24 yards (S.Paysinger).,35,7,2012 -20121230_PHI@NYG,3,30,0,NYG,PHI,,,24,L.Tynes kicks 61 yards from NYG 35 to PHI 4. B.Boykin to PHI 31 for 27 yards (T.Frederick).,35,7,2012 -20121230_PHI@NYG,3,29,53,PHI,NYG,1,10,69,(14:53) M.Vick pass short middle to L.McCoy to PHI 39 for 8 yards (A.Rolle).,7,35,2012 -20121230_PHI@NYG,3,29,19,PHI,NYG,2,2,61,(14:19) (No Huddle Shotgun) L.McCoy right end to PHI 43 for 4 yards (J.Pierre-Paul).,7,35,2012 -20121230_PHI@NYG,3,28,44,PHI,NYG,1,10,57,(13:44) (No Huddle Shotgun) M.Vick pass incomplete short left to J.Maclin. Penalty on PHI-K.Dunlap Personal Foul offsetting. Penalty on NYG-A.Rolle Personal Foul offsetting.,7,35,2012 -20121230_PHI@NYG,3,28,35,PHI,NYG,2,10,57,(13:35) (Shotgun) M.Vick pass short right to L.McCoy to PHI 47 for 4 yards (C.Blackburn).,7,35,2012 -20121230_PHI@NYG,3,27,53,PHI,NYG,3,6,53,(12:53) (No Huddle Shotgun) M.Vick pass short middle to L.McCoy to NYG 46 for 7 yards (S.Brown).,7,35,2012 -20121230_PHI@NYG,3,27,4,PHI,NYG,1,10,46,(12:04) (No Huddle) D.Lewis right tackle to NYG 43 for 3 yards (K.Rivers M.Austin).,7,35,2012 -20121230_PHI@NYG,3,26,30,PHI,NYG,2,7,43,(11:30) (No Huddle Shotgun) M.Vick pass incomplete deep right to R.Cooper.,7,35,2012 -20121230_PHI@NYG,3,26,22,PHI,NYG,3,7,43,(11:22) (Shotgun) M.Vick scrambles right tackle to NYG 41 for 2 yards (O.Umenyiora).,7,35,2012 -20121230_PHI@NYG,3,25,43,PHI,NYG,4,5,41,(10:43) M.McBriar punts 41 yards to end zone Center-J.Dorenbos Touchback.,7,35,2012 -20121230_PHI@NYG,3,25,30,NYG,PHI,1,10,80,(10:30) D.Wilson right end to NYG 33 for 13 yards (N.Asomugha).,35,7,2012 -20121230_PHI@NYG,3,24,55,NYG,PHI,1,10,67,(9:55) E.Manning pass incomplete short middle to A.Bradshaw.,35,7,2012 -20121230_PHI@NYG,3,24,47,NYG,PHI,2,10,67,(9:47) D.Wilson right end to NYG 36 for 3 yards (B.Graham D.Ryans).,35,7,2012 -20121230_PHI@NYG,3,24,4,NYG,PHI,3,7,64,(9:04) (Shotgun) E.Manning pass short middle to D.Hixon to NYG 47 for 11 yards (C.Anderson).,35,7,2012 -20121230_PHI@NYG,3,23,22,NYG,PHI,1,10,53,(8:22) E.Manning pass incomplete deep middle to V.Cruz.,35,7,2012 -20121230_PHI@NYG,3,23,13,NYG,PHI,2,10,53,(8:13) A.Bradshaw up the middle to NYG 48 for 1 yard (A.Jordan).,35,7,2012 -20121230_PHI@NYG,3,22,32,NYG,PHI,3,9,52,(7:32) (Shotgun) E.Manning sacked at NYG 37 for -11 yards (P.Hunt).,35,7,2012 -20121230_PHI@NYG,3,22,16,NYG,PHI,4,20,63,(7:16) S.Weatherford punts 53 yards to PHI 10 Center-Z.DeOssie. D.Johnson to PHI 15 for 5 yards (Z.DeOssie).,35,7,2012 -20121230_PHI@NYG,3,22,4,PHI,NYG,1,10,85,(7:04) L.McCoy right tackle to PHI 16 for 1 yard (J.Pierre-Paul O.Umenyiora).,7,35,2012 -20121230_PHI@NYG,3,21,33,PHI,NYG,2,9,84,(6:33) (Shotgun) M.Vick pass incomplete short right to R.Cooper.,7,35,2012 -20121230_PHI@NYG,3,21,27,PHI,NYG,3,9,84,(6:27) (No Huddle Shotgun) M.Vick pass deep middle to R.Cooper to PHI 38 for 22 yards (M.Boley K.Phillips).,7,35,2012 -20121230_PHI@NYG,3,20,57,PHI,NYG,1,10,62,(5:57) (No Huddle) M.Vick pass short left to D.Johnson to PHI 46 for 8 yards (P.Amukamara).,7,35,2012 -20121230_PHI@NYG,3,20,25,PHI,NYG,2,2,54,(5:25) (No Huddle) B.Brown right end to PHI 44 for -2 yards (C.Blackburn).,7,35,2012 -20121230_PHI@NYG,3,19,45,PHI,NYG,3,4,56,(4:45) (No Huddle Shotgun) M.Vick pass short right to L.McCoy to 50 for 6 yards (J.Williams).,7,35,2012 -20121230_PHI@NYG,3,19,7,PHI,NYG,1,10,50,(4:07) (No Huddle Shotgun) D.Lewis right guard to NYG 42 for 8 yards (K.Phillips).,7,35,2012 -20121230_PHI@NYG,3,18,38,PHI,NYG,2,2,42,(3:38) (No Huddle Shotgun) D.Lewis right tackle to NYG 38 for 4 yards (A.Rolle L.Joseph).,7,35,2012 -20121230_PHI@NYG,3,18,3,PHI,NYG,1,10,38,(3:03) (No Huddle Shotgun) M.Vick pass incomplete deep right to J.Maclin (C.Webster).,7,35,2012 -20121230_PHI@NYG,3,17,52,PHI,NYG,2,10,38,(2:52) (Shotgun) M.Vick pass incomplete short left to R.Cooper [C.Blackburn].,7,35,2012 -20121230_PHI@NYG,3,17,45,PHI,NYG,3,10,38,(2:45) (No Huddle Shotgun) M.Vick pass short middle to D.Johnson to NYG 23 for 15 yards (J.Williams). PENALTY on PHI-J.Scott Offensive Holding 10 yards enforced at NYG 38 - No Play.,7,35,2012 -20121230_PHI@NYG,3,17,7,PHI,NYG,3,20,48,(2:07) (Shotgun) M.Vick scrambles left tackle to NYG 42 for 6 yards (M.Kiwanuka).,7,35,2012 -20121230_PHI@NYG,3,16,25,PHI,NYG,4,14,42,(1:25) M.McBriar punts 30 yards to NYG 12 Center-J.Dorenbos fair catch by D.Hixon.,7,35,2012 -20121230_PHI@NYG,3,16,15,NYG,PHI,1,10,88,(1:15) A.Bradshaw right tackle to NYG 12 for no gain (A.Jordan C.Thornton).,35,7,2012 -20121230_PHI@NYG,3,15,37,NYG,PHI,2,10,88,(:37) A.Bradshaw right end to NYG 22 for 10 yards (A.Jordan T.Cole).,35,7,2012 -20121230_PHI@NYG,4,15,0,NYG,PHI,1,10,78,(15:00) A.Bradshaw left end to NYG 19 for -3 yards (A.Jordan C.Jenkins).,35,7,2012 -20121230_PHI@NYG,4,14,23,NYG,PHI,2,13,81,(14:23) A.Bradshaw up the middle to NYG 22 for 3 yards (C.Anderson).,35,7,2012 -20121230_PHI@NYG,4,13,36,NYG,PHI,3,10,78,(13:36) (Shotgun) E.Manning pass incomplete deep left to D.Hixon. PENALTY on PHI-N.Asomugha Defensive Pass Interference 21 yards enforced at NYG 22 - No Play.,35,7,2012 -20121230_PHI@NYG,4,13,27,NYG,PHI,1,10,57,(13:27) E.Manning pass incomplete deep middle to M.Bennett.,35,7,2012 -20121230_PHI@NYG,4,13,20,NYG,PHI,2,10,57,(13:20) A.Bradshaw left tackle to NYG 43 for no gain (A.Jordan).,35,7,2012 -20121230_PHI@NYG,4,12,40,NYG,PHI,3,10,57,(12:40) (Shotgun) A.Bradshaw right guard to PHI 46 for 11 yards (C.Anderson K.Coleman).,35,7,2012 -20121230_PHI@NYG,4,12,0,NYG,PHI,1,10,46,(12:00) A.Bradshaw left end to PHI 41 for 5 yards (D.Ryans).,35,7,2012 -20121230_PHI@NYG,4,11,13,NYG,PHI,2,5,41,(11:13) D.Wilson right end pushed ob at PHI 26 for 15 yards (K.Coleman).,35,7,2012 -20121230_PHI@NYG,4,10,31,NYG,PHI,1,10,26,(10:31) D.Wilson right end to PHI 31 for -5 yards (C.Thornton A.Dixon).,35,7,2012 -20121230_PHI@NYG,4,9,49,NYG,PHI,2,15,31,(9:49) E.Manning pass short middle to K.Lumpkin to PHI 31 for no gain (B.Graham). PENALTY on PHI-C.Thornton Illegal Use of Hands 5 yards enforced at PHI 31 - No Play.,35,7,2012 -20121230_PHI@NYG,4,9,23,NYG,PHI,1,10,26,(9:23) D.Wilson right guard to PHI 18 for 8 yards (K.Coleman).,35,7,2012 -20121230_PHI@NYG,4,8,40,NYG,PHI,2,2,18,(8:40) D.Wilson right guard to PHI 14 for 4 yards (J.Chaney T.Cole).,35,7,2012 -20121230_PHI@NYG,4,7,56,NYG,PHI,1,10,14,(7:56) A.Bradshaw left guard to PHI 1 for 13 yards (C.Anderson K.Coleman).,35,7,2012 -20121230_PHI@NYG,4,6,58,NYG,PHI,1,1,1,(6:58) E.Manning pass short right to H.Hynoski for 1 yard TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,35,7,2012 -20121230_PHI@NYG,4,6,58,NYG,PHI,,,1,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,35,7,2012 -20121230_PHI@NYG,4,6,58,NYG,PHI,,,1,L.Tynes kicks 60 yards from NYG 35 to PHI 5. B.Boykin to PHI 38 for 33 yards (T.Frederick S.Paysinger).,42,7,2012 -20121230_PHI@NYG,4,6,43,PHI,NYG,1,10,62,(6:43) PHI: New QB #11 Trent Edwards T.Edwards pass short middle to J.Maclin to PHI 46 for 8 yards (S.Paysinger). NYG-C.Webster was injured during the play.,7,42,2012 -20121230_PHI@NYG,4,6,25,PHI,NYG,2,2,54,(6:25) B.Brown left guard to NYG 49 for 5 yards (C.Blackburn L.Joseph).,7,42,2012 -20121230_PHI@NYG,4,5,51,PHI,NYG,1,10,49,(5:51) (No Huddle Shotgun) B.Brown left guard to NYG 47 for 2 yards (L.Joseph J.Pierre-Paul).,7,42,2012 -20121230_PHI@NYG,4,5,18,PHI,NYG,2,8,47,(5:18) (Shotgun) B.Brown left tackle to NYG 46 for 1 yard (M.Austin O.Umenyiora).,7,42,2012 -20121230_PHI@NYG,4,4,43,PHI,NYG,3,7,46,(4:43) (No Huddle Shotgun) T.Edwards pass short right to B.Brown to NYG 40 for 6 yards (A.Rolle).,7,42,2012 -20121230_PHI@NYG,4,4,6,PHI,NYG,4,1,40,(4:06) B.Brown right tackle to NYG 43 for -3 yards (J.Pierre-Paul).,7,42,2012 -20121230_PHI@NYG,4,4,0,NYG,PHI,1,10,57,(4:00) NYG: New QB #8 David Carr D.Wilson left end to NYG 43 for no gain (A.Dixon).,42,7,2012 -20121230_PHI@NYG,4,3,20,NYG,PHI,2,10,57,(3:20) D.Wilson left tackle to NYG 43 for no gain (A.Dixon).,42,7,2012 -20121230_PHI@NYG,4,2,43,NYG,PHI,3,10,57,(2:43) D.Carr pass short right to M.Bennett to PHI 42 for 15 yards (B.Boykin).,42,7,2012 -20121230_PHI@NYG,4,2,0,NYG,PHI,1,10,42,(2:00) D.Carr kneels to PHI 43 for -1 yards.,42,7,2012 -20121230_PHI@NYG,4,1,17,NYG,PHI,2,11,43,(1:17) D.Carr kneels to PHI 44 for -1 yards.,42,7,2012 -20121230_PHI@NYG,4,0,38,NYG,PHI,3,12,44,(:38) D.Carr kneels to PHI 45 for -1 yards.,42,7,2012 -20121230_PHI@NYG,4,0,38,NYG,PHI,,,44,                      ,42,7,2012 -20121230_CLE@PIT,1,0,0,CLE,PIT,,,44,P.Dawson kicks 67 yards from CLV 35 to PIT -2. C.Rainey to PIT 25 for 27 yards (L.Fort).,0,0,2012 -20121230_CLE@PIT,1,59,54,PIT,CLE,1,10,75,(14:54) B.Roethlisberger pass short right to J.Cotchery to PIT 33 for 8 yards (D.Jackson T.Carder).,0,0,2012 -20121230_CLE@PIT,1,59,15,PIT,CLE,2,2,67,(14:15) J.Dwyer up the middle to PIT 34 for 1 yard (A.Rubin).,0,0,2012 -20121230_CLE@PIT,1,58,37,PIT,CLE,3,1,66,(13:37) I.Redman up the middle to PIT 34 for no gain (T.Gipson P.Taylor).,0,0,2012 -20121230_CLE@PIT,1,58,2,PIT,CLE,4,1,66,(13:02) (Punt formation) D.Butler punts 46 yards to CLV 20 Center-G.Warren. J.Cribbs to CLV 42 for 22 yards (R.Mundy). PENALTY on CLV-J.Haden Offensive Holding 10 yards enforced at CLV 27.,0,0,2012 -20121230_CLE@PIT,1,57,47,CLE,PIT,1,10,83,(12:47) T.Lewis pass short left to J.Gordon to CLV 29 for 12 yards (C.Allen).,0,0,2012 -20121230_CLE@PIT,1,57,30,CLE,PIT,1,10,71,(12:30) M.Hardesty up the middle to CLV 31 for 2 yards (J.Harrison; L.Foote).,0,0,2012 -20121230_CLE@PIT,1,56,56,CLE,PIT,2,8,69,(11:56) T.Lewis pass short middle to B.Watson to CLV 37 for 6 yards (L.Woodley) [L.Timmons].,0,0,2012 -20121230_CLE@PIT,1,56,11,CLE,PIT,3,2,63,(11:11) T.Lewis pass incomplete deep middle to J.Gordon. Coverage by #25 Clark.,0,0,2012 -20121230_CLE@PIT,1,56,5,CLE,PIT,4,2,63,(11:05) (Punt formation) R.Hodges punts 48 yards to PIT 15 Center-C.Yount. A.Brown to PIT 25 for 10 yards (C.Robertson C.Yount).,0,0,2012 -20121230_CLE@PIT,1,55,52,PIT,CLE,1,10,75,(10:52) J.Dwyer up the middle to PIT 33 for 8 yards (J.Parker).,0,0,2012 -20121230_CLE@PIT,1,55,15,PIT,CLE,2,2,67,(10:15) J.Dwyer right guard to PIT 34 for 1 yard (P.Taylor).,0,0,2012 -20121230_CLE@PIT,1,54,35,PIT,CLE,3,1,66,(9:35) B.Roethlisberger pass incomplete short right to D.Paulson (D.Jackson).,0,0,2012 -20121230_CLE@PIT,1,54,28,PIT,CLE,4,1,66,(9:28) (Punt formation) D.Butler punts 60 yards to CLV 6 Center-G.Warren downed by PIT-J.Victorian.,0,0,2012 -20121230_CLE@PIT,1,54,14,CLE,PIT,1,10,94,(9:14) M.Hardesty up the middle to CLV 6 for no gain (B.Keisel).,0,0,2012 -20121230_CLE@PIT,1,53,50,CLE,PIT,2,10,94,(8:50) T.Lewis pass short left to B.Watson to CLV 14 for 8 yards (L.Timmons J.Harrison).,0,0,2012 -20121230_CLE@PIT,1,53,7,CLE,PIT,3,2,86,(8:07) (Shotgun) T.Lewis pass short right to G.Little to CLV 22 for 8 yards (K.Lewis).,0,0,2012 -20121230_CLE@PIT,1,52,39,CLE,PIT,1,10,78,(7:39) M.Hardesty up the middle to CLV 25 for 3 yards (E.Hood; L.Timmons).,0,0,2012 -20121230_CLE@PIT,1,52,4,CLE,PIT,2,7,75,(7:04) T.Lewis pass incomplete short left to G.Little.,0,0,2012 -20121230_CLE@PIT,1,51,58,CLE,PIT,3,7,75,(6:58) (Shotgun) T.Lewis pass short middle to G.Little to CLV 48 for 23 yards (L.Woodley R.Clark).,0,0,2012 -20121230_CLE@PIT,1,51,17,CLE,PIT,1,10,52,(6:17) T.Lewis pass incomplete deep right to J.Gordon. Coverage by #43 Polamalu.,0,0,2012 -20121230_CLE@PIT,1,51,9,CLE,PIT,2,10,52,(6:09) M.Hardesty left tackle to PIT 36 for 16 yards (C.Allen; T.Polamalu).,0,0,2012 -20121230_CLE@PIT,1,50,36,CLE,PIT,1,10,36,(5:36) M.Hardesty left tackle to PIT 33 for 3 yards (J.Harrison C.Allen).,0,0,2012 -20121230_CLE@PIT,1,50,5,CLE,PIT,2,7,33,(5:05) T.Lewis pass short right to T.Benjamin pushed ob at PIT 21 for 12 yards (K.Lewis).,0,0,2012 -20121230_CLE@PIT,1,49,38,CLE,PIT,1,10,21,(4:38) M.Hardesty left end to PIT 25 for -4 yards (L.Foote).,0,0,2012 -20121230_CLE@PIT,1,48,55,CLE,PIT,2,14,25,(3:55) T.Lewis pass short right intended for T.Benjamin INTERCEPTED by T.Polamalu at PIT 16. T.Polamalu ran ob at PIT 17 for 1 yard.,0,0,2012 -20121230_CLE@PIT,1,48,48,PIT,CLE,1,10,83,(3:48) B.Roethlisberger pass deep right to A.Brown to CLV 40 for 43 yards (T.Gipson). PENALTY on PIT-D.Legursky Offensive Holding 8 yards enforced at PIT 17 - No Play.,0,0,2012 -20121230_CLE@PIT,1,48,17,PIT,CLE,1,18,91,(3:17) B.Roethlisberger pass short right to W.Johnson to PIT 17 for 8 yards (D.Jackson J.Haden).,0,0,2012 -20121230_CLE@PIT,1,47,33,PIT,CLE,2,10,83,(2:33) A.Brown up the middle to PIT 4 for -13 yards (C.Robertson).,0,0,2012 -20121230_CLE@PIT,1,46,52,PIT,CLE,3,23,96,(1:52) (Shotgun) J.Dwyer right guard to PIT 16 for 12 yards (E.Hagg).,0,0,2012 -20121230_CLE@PIT,1,46,9,PIT,CLE,4,11,84,(1:09) (Punt formation) D.Butler punts 31 yards to PIT 47 Center-G.Warren out of bounds.,0,0,2012 -20121230_CLE@PIT,1,45,59,CLE,PIT,1,10,47,(:59) B.Jackson left guard to PIT 41 for 6 yards (L.Foote J.Harrison).,0,0,2012 -20121230_CLE@PIT,1,45,25,CLE,PIT,2,4,41,(:25) T.Lewis pass deep middle to J.Gordon to PIT 24 for 17 yards (J.Victorian).,0,0,2012 -20121230_CLE@PIT,2,45,0,CLE,PIT,1,10,24,(15:00) B.Jackson up the middle to PIT 20 for 4 yards (R.Clark).,0,0,2012 -20121230_CLE@PIT,2,44,27,CLE,PIT,2,6,20,(14:27) (Shotgun) PENALTY on CLV-B.Watson False Start 5 yards enforced at PIT 20 - No Play.,0,0,2012 -20121230_CLE@PIT,2,44,4,CLE,PIT,2,11,25,(14:04) B.Jackson left guard to PIT 20 for 5 yards (L.Timmons L.Foote).,0,0,2012 -20121230_CLE@PIT,2,43,22,CLE,PIT,3,6,20,(13:22) (Shotgun) T.Lewis sacked at PIT 22 for -2 yards (J.Harrison).,0,0,2012 -20121230_CLE@PIT,2,42,50,CLE,PIT,4,8,22,(12:50) (Field Goal formation) P.Dawson 39 yard field goal is No Good Wide Right Center-C.Yount Holder-R.Hodges.,0,0,2012 -20121230_CLE@PIT,2,42,45,PIT,CLE,1,10,71,(12:45) (Shotgun) B.Roethlisberger pass short left to P.Burress to PIT 41 for 12 yards (C.Robertson).,0,0,2012 -20121230_CLE@PIT,2,42,7,PIT,CLE,1,10,59,(12:07) R.Mendenhall right end to CLV 48 for 11 yards (T.Gipson).,0,0,2012 -20121230_CLE@PIT,2,41,22,PIT,CLE,1,10,48,(11:22) R.Mendenhall right guard to CLV 44 for 4 yards (T.Gipson).,0,0,2012 -20121230_CLE@PIT,2,40,43,PIT,CLE,2,6,44,(10:43) R.Mendenhall up the middle to CLV 43 for 1 yard (D.Jackson).,0,0,2012 -20121230_CLE@PIT,2,39,58,PIT,CLE,3,5,43,(9:58) (Shotgun) B.Roethlisberger pass short middle to J.Cotchery to CLV 30 for 13 yards (J.Haden).,0,0,2012 -20121230_CLE@PIT,2,39,23,PIT,CLE,1,10,30,(9:23) B.Roethlisberger pass incomplete short right to J.Cotchery. Coverage by #52 Jackson.,0,0,2012 -20121230_CLE@PIT,2,39,16,PIT,CLE,2,10,30,(9:16) I.Redman up the middle to CLV 23 for 7 yards (E.Hagg).,0,0,2012 -20121230_CLE@PIT,2,38,39,PIT,CLE,3,3,23,(8:39) (Shotgun) I.Redman right tackle to CLV 23 for no gain (J.Sheard; C.Robertson).,0,0,2012 -20121230_CLE@PIT,2,37,57,PIT,CLE,4,3,23,(7:57) (Field Goal formation) S.Suisham 41 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20121230_CLE@PIT,2,37,57,PIT,CLE,,,23,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,3,0,2012 -20121230_CLE@PIT,2,37,53,CLE,PIT,1,10,80,(7:53) T.Lewis pass short middle to B.Watson to CLV 35 for 15 yards (T.Polamalu).,0,3,2012 -20121230_CLE@PIT,2,37,24,CLE,PIT,1,10,65,(7:24) M.Hardesty up the middle to CLV 38 for 3 yards (J.Harrison).,0,3,2012 -20121230_CLE@PIT,2,36,50,CLE,PIT,2,7,62,(6:50) T.Lewis pass short right to T.Benjamin to CLV 46 for 8 yards (J.Victorian).,0,3,2012 -20121230_CLE@PIT,2,36,36,CLE,PIT,1,10,54,(6:36) M.Hardesty left guard to PIT 49 for 5 yards (E.Hood).,0,3,2012 -20121230_CLE@PIT,2,36,5,CLE,PIT,2,5,49,(6:05) M.Hardesty right tackle to PIT 43 for 6 yards (L.Timmons).,0,3,2012 -20121230_CLE@PIT,2,35,28,CLE,PIT,1,10,43,(5:28) T.Lewis pass short right to J.Gordon to PIT 33 for 10 yards (J.Victorian R.Clark).,0,3,2012 -20121230_CLE@PIT,2,34,46,CLE,PIT,1,10,33,(4:46) (Shotgun) T.Lewis pass incomplete short left to J.Gordon. Coverage by #25 Clark #35 Victorian.,0,3,2012 -20121230_CLE@PIT,2,34,41,CLE,PIT,2,10,33,(4:41) M.Hardesty left end to PIT 33 for no gain (L.Foote J.Harrison).,0,3,2012 -20121230_CLE@PIT,2,33,58,CLE,PIT,3,10,33,(3:58) (Shotgun) T.Lewis pass incomplete short left to B.Watson. Coverage by #25 Clark. Pressure by #94 Timmons #56 Woodley.,0,3,2012 -20121230_CLE@PIT,2,33,52,CLE,PIT,4,10,33,(3:52) (Field Goal formation) P.Dawson 51 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,3,2012 -20121230_CLE@PIT,2,33,52,CLE,PIT,,,33,P.Dawson kicks 65 yards from CLV 35 to PIT 0. C.Rainey to PIT 19 for 19 yards (T.Wade).,3,3,2012 -20121230_CLE@PIT,2,33,42,PIT,CLE,1,10,81,(3:42) (Shotgun) B.Roethlisberger pass short left to A.Brown to PIT 32 for 13 yards (B.Skrine).,3,3,2012 -20121230_CLE@PIT,2,33,3,PIT,CLE,1,10,68,(3:03) (Shotgun) B.Roethlisberger pass short right to R.Mendenhall to PIT 32 for no gain (E.Hagg).,3,3,2012 -20121230_CLE@PIT,2,32,22,PIT,CLE,2,10,68,(2:22) B.Roethlisberger pass short right to R.Mendenhall to PIT 33 for 1 yard (J.Haden).,3,3,2012 -20121230_CLE@PIT,2,32,12,PIT,CLE,3,9,67,(2:12) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders. Coverage by #26 Wade.,3,3,2012 -20121230_CLE@PIT,2,32,6,PIT,CLE,4,9,67,(2:06) (Punt formation) D.Butler punts 42 yards to CLV 25 Center-G.Warren fair catch by J.Cribbs.,3,3,2012 -20121230_CLE@PIT,2,31,58,CLE,PIT,1,10,75,(1:58) T.Lewis pass incomplete short left to M.Hardesty. Coverage by #92 Harrison.,3,3,2012 -20121230_CLE@PIT,2,31,51,CLE,PIT,2,10,75,(1:51) T.Lewis pass short left to J.Gordon to CLV 25 for no gain (C.Allen). FUMBLES (C.Allen) RECOVERED by PIT-L.Timmons at CLV 25. L.Timmons to CLV 24 for 1 yard (J.Greco).,3,3,2012 -20121230_CLE@PIT,2,31,42,PIT,CLE,1,10,24,(1:42) (Shotgun) B.Roethlisberger pass incomplete deep right to A.Brown. Coverage by #39 Gipson.,3,3,2012 -20121230_CLE@PIT,2,31,38,PIT,CLE,2,10,24,(1:38) I.Redman left guard to CLV 13 for 11 yards (T.Gipson; T.Wade).,3,3,2012 -20121230_CLE@PIT,2,30,57,PIT,CLE,1,10,13,(:57) (Shotgun) B.Roethlisberger pass incomplete short middle to E.Sanders. PENALTY on CLV-E.Hagg Defensive Pass Interference 12 yards enforced at CLV 13 - No Play.,3,3,2012 -20121230_CLE@PIT,2,30,53,PIT,CLE,1,1,1,(:53) J.Malecki reported in as eligible. B.Roethlisberger pass short middle to L.Pope for 1 yard TOUCHDOWN.,3,3,2012 -20121230_CLE@PIT,2,30,53,PIT,CLE,,,1,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,3,2012 -20121230_CLE@PIT,2,30,53,PIT,CLE,,,1,S.Suisham kicks 70 yards from PIT 35 to CLV -5. T.Benjamin to CLV 24 for 29 yards (R.Mundy).,10,3,2012 -20121230_CLE@PIT,2,30,42,CLE,PIT,1,10,76,(:42) C.Ogbonnaya right tackle to CLV 33 for 9 yards (R.Clark).,3,10,2012 -20121230_CLE@PIT,2,30,12,CLE,PIT,2,1,67,(:12) C.Ogbonnaya left guard to CLV 33 for no gain (J.Harrison C.Heyward).,3,10,2012 -20121230_CLE@PIT,3,30,0,PIT,CLE,,,67,S.Suisham kicks 65 yards from PIT 35 to CLV 0. J.Cribbs to CLV 20 for 20 yards (R.Mundy).,10,3,2012 -20121230_CLE@PIT,3,29,55,CLE,PIT,1,10,80,(14:55) M.Hardesty right tackle to CLV 21 for 1 yard (C.Heyward).,3,10,2012 -20121230_CLE@PIT,3,29,23,CLE,PIT,2,9,79,(14:23) M.Hardesty right guard to CLV 22 for 1 yard (C.Hampton; L.Woodley).,3,10,2012 -20121230_CLE@PIT,3,28,41,CLE,PIT,3,8,78,(13:41) (Shotgun) PENALTY on CLV-J.Greco False Start 5 yards enforced at CLV 22 - No Play.,3,10,2012 -20121230_CLE@PIT,3,28,19,CLE,PIT,3,13,83,(13:19) (Shotgun) T.Lewis pass short right to B.Watson to CLV 25 for 8 yards (R.Clark).,3,10,2012 -20121230_CLE@PIT,3,27,43,CLE,PIT,4,5,75,(12:43) (Punt formation) Direct snap to R.Ventrone. R.Ventrone up the middle to PIT 40 for 35 yards (A.Brown).,3,10,2012 -20121230_CLE@PIT,3,27,1,CLE,PIT,1,10,40,(12:01) T.Lewis pass incomplete deep left to T.Benjamin. PENALTY on PIT-J.Victorian Defensive Pass Interference 35 yards enforced at PIT 40 - No Play.,3,10,2012 -20121230_CLE@PIT,3,26,52,CLE,PIT,1,5,5,(11:52) M.Hardesty right guard to PIT 7 for -2 yards (L.Foote; E.Hood).,3,10,2012 -20121230_CLE@PIT,3,26,14,CLE,PIT,2,7,7,(11:14) T.Lewis pass short left to G.Little for 7 yards TOUCHDOWN. PENALTY on PIT-J.Harrison Roughing the Passer 15 yards enforced between downs.,3,10,2012 -20121230_CLE@PIT,3,26,14,CLE,PIT,,,7,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,3,10,2012 -20121230_CLE@PIT,3,26,14,CLE,PIT,,,7,P.Dawson kicks 50 yards from CLV 50 to end zone Touchback.,10,10,2012 -20121230_CLE@PIT,3,26,3,PIT,CLE,1,10,80,(11:03) J.Dwyer right tackle to PIT 32 for 12 yards (T.Gipson). PIT-K.Beachum was injured during the play.,10,10,2012 -20121230_CLE@PIT,3,25,34,PIT,CLE,1,10,68,(10:34) J.Dwyer right tackle to PIT 36 for 4 yards (C.Robertson; D.Jackson).,10,10,2012 -20121230_CLE@PIT,3,24,52,PIT,CLE,2,6,64,(9:52) B.Roethlisberger pass incomplete short middle to L.Pope (L.Fort).,10,10,2012 -20121230_CLE@PIT,3,24,48,PIT,CLE,3,6,64,(9:48) (Shotgun) B.Roethlisberger pass incomplete short right to P.Burress. Penalty on CLV-J.Parker Defensive Offside declined. PENALTY on CLV-J.Haden Defensive Pass Interference 12 yards enforced at PIT 36 - No Play.,10,10,2012 -20121230_CLE@PIT,3,24,42,PIT,CLE,1,10,52,(9:42) B.Roethlisberger pass short right to W.Johnson to CLV 43 for 9 yards (J.Haden).,10,10,2012 -20121230_CLE@PIT,3,24,2,PIT,CLE,2,1,43,(9:02) J.Dwyer right guard to CLV 31 for 12 yards (T.Wade J.Haden).,10,10,2012 -20121230_CLE@PIT,3,23,19,PIT,CLE,1,10,31,(8:19) B.Roethlisberger pass short left to E.Sanders pushed ob at CLV 19 for 12 yards (T.Wade).,10,10,2012 -20121230_CLE@PIT,3,22,51,PIT,CLE,1,10,19,(7:51) R.Mendenhall up the middle to CLV 18 for 1 yard (A.Rubin).,10,10,2012 -20121230_CLE@PIT,3,22,7,PIT,CLE,2,9,18,(7:07) (Shotgun) A.Brown right end to CLV 11 for 7 yards (A.Rubin).,10,10,2012 -20121230_CLE@PIT,3,21,20,PIT,CLE,3,2,11,(6:20) J.Dwyer up the middle to CLV 8 for 3 yards (E.Hagg A.Rubin).,10,10,2012 -20121230_CLE@PIT,3,20,34,PIT,CLE,1,8,8,(5:34) J.Dwyer left guard to CLV 9 for -1 yards (J.Parker D.Jackson).,10,10,2012 -20121230_CLE@PIT,3,19,50,PIT,CLE,2,9,9,(4:50) (Shotgun) B.Roethlisberger pass incomplete short middle to J.Dwyer (D.Jackson). CLV-D.Jackson was injured during the play.,10,10,2012 -20121230_CLE@PIT,3,19,41,PIT,CLE,3,9,9,(4:41) (Shotgun) B.Roethlisberger pass short middle to A.Brown for 9 yards TOUCHDOWN [L.Fort].,10,10,2012 -20121230_CLE@PIT,3,19,41,PIT,CLE,,,9,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler. PENALTY on CLV-B.Winn Personal Foul 15 yards enforced between downs. Penalty on CLV-A.Rubin Personal Foul superseded.,10,10,2012 -20121230_CLE@PIT,3,19,41,PIT,CLE,,,9,S.Suisham kicks 50 yards from CLV 50 to end zone Touchback.,17,10,2012 -20121230_CLE@PIT,3,19,39,CLE,PIT,1,10,80,(4:39) T.Lewis pass incomplete short middle to J.Cooper (L.Foote).,10,17,2012 -20121230_CLE@PIT,3,19,33,CLE,PIT,2,10,80,(4:33) B.Jackson right guard to CLV 45 for 25 yards (C.Allen).,10,17,2012 -20121230_CLE@PIT,3,18,52,CLE,PIT,1,10,55,(3:52) B.Jackson right guard to CLV 47 for 2 yards (J.Harrison; C.Heyward).,10,17,2012 -20121230_CLE@PIT,3,18,15,CLE,PIT,2,8,53,(3:15) (Shotgun) T.Lewis pass short right to T.Benjamin to PIT 43 for 10 yards (C.Allen).,10,17,2012 -20121230_CLE@PIT,3,17,54,CLE,PIT,1,10,43,(2:54) T.Lewis pass short left to J.Cooper to PIT 35 for 8 yards (J.Victorian).,10,17,2012 -20121230_CLE@PIT,3,17,25,CLE,PIT,2,2,35,(2:25) B.Jackson right guard to PIT 34 for 1 yard (L.Foote L.Woodley).,10,17,2012 -20121230_CLE@PIT,3,16,45,CLE,PIT,3,1,34,(1:45) O.Cousins reported in as eligible. B.Jackson up the middle to PIT 33 for 1 yard (J.Harrison).,10,17,2012 -20121230_CLE@PIT,3,16,12,CLE,PIT,1,10,33,(1:12) PENALTY on CLV-J.Greco False Start 5 yards enforced at PIT 33 - No Play.,10,17,2012 -20121230_CLE@PIT,3,15,48,CLE,PIT,1,15,38,(:48) T.Lewis sacked at PIT 42 for -4 yards (sack split by S.McLendon and C.Heyward).,10,17,2012 -20121230_CLE@PIT,3,15,14,CLE,PIT,2,19,42,(:14) (Shotgun) M.Hardesty up the middle to PIT 32 for 10 yards (T.Polamalu). PENALTY on CLV-J.Thomas Offensive Holding 10 yards enforced at PIT 42 - No Play.,10,17,2012 -20121230_CLE@PIT,4,15,0,CLE,PIT,2,29,52,(15:00) B.Jackson left guard to PIT 42 for 10 yards (J.Harrison R.Clark).,10,17,2012 -20121230_CLE@PIT,4,14,23,CLE,PIT,3,19,42,(14:23) (Shotgun) T.Lewis pass incomplete short middle to T.Benjamin. Coverage by #28 C. Allen Pressure by #56 Woodley.,10,17,2012 -20121230_CLE@PIT,4,14,18,CLE,PIT,4,19,42,(14:18) (Punt formation) R.Hodges punts 36 yards to PIT 6 Center-C.Yount fair catch by A.Brown.,10,17,2012 -20121230_CLE@PIT,4,14,9,PIT,CLE,1,10,94,(14:09) R.Mendenhall left guard to PIT 8 for 2 yards (F.Rucker).,17,10,2012 -20121230_CLE@PIT,4,13,34,PIT,CLE,2,8,92,(13:34) (Shotgun) R.Mendenhall left guard to PIT 8 for no gain (B.Winn).,17,10,2012 -20121230_CLE@PIT,4,12,54,PIT,CLE,3,8,92,(12:54) (Shotgun) R.Mendenhall left tackle to PIT 7 for -1 yards (T.Carder). PENALTY on CLV-B.Winn Defensive Offside 5 yards enforced at PIT 8 - No Play.,17,10,2012 -20121230_CLE@PIT,4,12,25,PIT,CLE,3,3,87,(12:25) (Shotgun) B.Roethlisberger sacked at PIT 5 for -8 yards (J.Sheard).,17,10,2012 -20121230_CLE@PIT,4,11,59,PIT,CLE,4,11,95,(11:59) (Punt formation) D.Butler punts 40 yards to PIT 45 Center-G.Warren out of bounds.,17,10,2012 -20121230_CLE@PIT,4,11,51,CLE,PIT,1,10,45,(11:51) M.Hardesty up the middle to PIT 42 for 3 yards (T.Polamalu). CLV-J.Greco was injured during the play.,10,17,2012 -20121230_CLE@PIT,4,11,19,CLE,PIT,2,7,42,(11:19) T.Lewis scrambles right end to PIT 39 for 3 yards (L.Woodley).,10,17,2012 -20121230_CLE@PIT,4,10,37,CLE,PIT,3,4,39,(10:37) (Shotgun) T.Lewis pass short right to C.Ogbonnaya to PIT 40 for -1 yards (R.Clark).,10,17,2012 -20121230_CLE@PIT,4,9,59,CLE,PIT,4,5,40,(9:59) (Punt formation) R.Hodges punts 31 yards to PIT 9 Center-C.Yount downed by CLV-T.Carder.,10,17,2012 -20121230_CLE@PIT,4,9,47,PIT,CLE,1,10,91,(9:47) B.Roethlisberger pass short left to I.Redman to PIT 20 for 11 yards (L.Fort).,17,10,2012 -20121230_CLE@PIT,4,9,2,PIT,CLE,1,10,80,(9:02) B.Roethlisberger pass deep right to E.Sanders to PIT 36 for 16 yards (J.Haden).,17,10,2012 -20121230_CLE@PIT,4,8,17,PIT,CLE,1,10,64,(8:17) I.Redman right guard to PIT 38 for 2 yards (A.Rubin J.Sheard).,17,10,2012 -20121230_CLE@PIT,4,7,33,PIT,CLE,2,8,62,(7:33) B.Roethlisberger pass incomplete short right to P.Burress. Coverage by #23 Haden.,17,10,2012 -20121230_CLE@PIT,4,7,27,PIT,CLE,3,8,62,(7:27) (Shotgun) B.Roethlisberger sacked at PIT 33 for -5 yards (J.Sheard).,17,10,2012 -20121230_CLE@PIT,4,6,55,PIT,CLE,4,13,67,(6:55) (Punt formation) D.Butler punts 32 yards to CLV 35 Center-G.Warren out of bounds.,17,10,2012 -20121230_CLE@PIT,4,6,47,CLE,PIT,1,10,65,(6:47) T.Lewis pass incomplete deep left to G.Little (T.Polamalu).,10,17,2012 -20121230_CLE@PIT,4,6,40,CLE,PIT,2,10,65,(6:40) T.Lewis pass short right to T.Benjamin to CLV 48 for 13 yards (C.Allen). FUMBLES (C.Allen) RECOVERED by PIT-C.Allen at CLV 48. C.Allen to CLV 27 for 21 yards (A.Mack). The Replay Assistant challenged the fumble ruling and the play was Upheld.,10,17,2012 -20121230_CLE@PIT,4,6,27,PIT,CLE,1,10,27,(6:27) J.Dwyer right guard to CLV 27 for no gain (A.Rubin).,17,10,2012 -20121230_CLE@PIT,4,5,46,PIT,CLE,2,10,27,(5:46) B.Roethlisberger pass short middle to J.Dwyer to CLV 18 for 9 yards (F.Rucker).,17,10,2012 -20121230_CLE@PIT,4,4,57,PIT,CLE,3,1,18,(4:57) I.Redman up the middle to CLV 12 for 6 yards (T.Gipson).,17,10,2012 -20121230_CLE@PIT,4,4,14,PIT,CLE,1,10,12,(4:14) J.Dwyer right guard to CLV 12 for no gain (J.Sheard).,17,10,2012 -20121230_CLE@PIT,4,3,32,PIT,CLE,2,10,12,(3:32) B.Roethlisberger pass incomplete short left to W.Johnson (T.Carder).,17,10,2012 -20121230_CLE@PIT,4,3,25,PIT,CLE,3,10,12,(3:25) (Shotgun) B.Roethlisberger pass short right to P.Burress for 12 yards TOUCHDOWN.,17,10,2012 -20121230_CLE@PIT,4,3,25,PIT,CLE,,,12,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,17,10,2012 -20121230_CLE@PIT,4,3,25,PIT,CLE,,,12,S.Suisham kicks 55 yards from PIT 35 to CLV 10. J.Cribbs to CLV 32 for 22 yards (B.Johnson; R.Golden).,24,10,2012 -20121230_CLE@PIT,4,3,13,CLE,PIT,1,10,68,(3:13) (Shotgun) T.Lewis pass short middle to B.Watson to CLV 45 for 13 yards (L.Foote).,10,24,2012 -20121230_CLE@PIT,4,2,52,CLE,PIT,1,10,55,(2:52) (No Huddle Shotgun) T.Lewis pass short left to J.Cribbs to PIT 46 for 9 yards (C.Allen).,10,24,2012 -20121230_CLE@PIT,4,2,23,CLE,PIT,2,1,46,(2:23) (No Huddle Shotgun) T.Lewis pass short middle to B.Watson to PIT 37 for 9 yards (R.Clark).,10,24,2012 -20121230_CLE@PIT,4,2,2,CLE,PIT,1,10,37,(2:02) (No Huddle Shotgun) T.Lewis pass short left to C.Ogbonnaya to PIT 33 for 4 yards (R.Golden).,10,24,2012 -20121230_CLE@PIT,4,1,56,CLE,PIT,2,6,33,(1:56) (Shotgun) T.Lewis pass short right to B.Watson to PIT 28 for 5 yards (R.Clark L.Foote).,10,24,2012 -20121230_CLE@PIT,4,1,33,CLE,PIT,3,1,28,(1:33) (No Huddle Shotgun) T.Lewis sacked at PIT 36 for -8 yards (L.Timmons).,10,24,2012 -20121230_CLE@PIT,4,1,22,CLE,PIT,4,9,36,(1:22) J.Johnson sacked at PIT 44 for -8 yards (L.Timmons). FUMBLES (L.Timmons) RECOVERED by PIT-E.Hood at PIT 44. E.Hood to PIT 45 for 1 yard (J.Cooper).,10,24,2012 -20121230_CLE@PIT,4,1,15,PIT,CLE,1,10,55,(1:15) C.Rainey up the middle to PIT 47 for 2 yards (K.Maiava).,24,10,2012 -20121230_CLE@PIT,4,1,9,PIT,CLE,2,8,53,(1:09) B.Roethlisberger kneels to PIT 46 for -1 yards.,24,10,2012 -20121230_CLE@PIT,4,0,34,PIT,CLE,3,9,54,(:34) B.Roethlisberger kneels to PIT 45 for -1 yards.,24,10,2012 -20121230_CLE@PIT,4,0,34,PIT,CLE,,,54,                      ,24,10,2012 -20121230_JAC@TEN,1,0,0,JAC,TEN,,,54,J.Scobee kicks 62 yards from JAX 35 to TEN 3. D.Reynaud to TEN 21 for 18 yards (K.Bosworth).,0,0,2012 -20121230_JAC@TEN,1,59,54,TEN,JAC,1,10,79,(14:54) C.Johnson left guard to TEN 26 for 5 yards (R.Allen).,0,0,2012 -20121230_JAC@TEN,1,59,23,TEN,JAC,2,5,74,(14:23) J.Locker pass incomplete short right to T.Thompson [J.Mincey].,0,0,2012 -20121230_JAC@TEN,1,59,18,TEN,JAC,3,5,74,(14:18) (Shotgun) J.Locker pass short left to N.Washington pushed ob at TEN 47 for 21 yards (C.Prosinski).,0,0,2012 -20121230_JAC@TEN,1,58,39,TEN,JAC,1,10,53,(13:39) J.Locker pass deep right to L.Hawkins to JAX 11 for 42 yards (M.Harris).,0,0,2012 -20121230_JAC@TEN,1,57,54,TEN,JAC,1,10,11,(12:54) C.Johnson up the middle to JAX 2 for 9 yards (D.Cox; C.Prosinski).,0,0,2012 -20121230_JAC@TEN,1,57,19,TEN,JAC,2,1,2,(12:19) C.Johnson left guard to JAX 2 for no gain (J.Mincey; T.Alualu).,0,0,2012 -20121230_JAC@TEN,1,56,38,TEN,JAC,3,1,2,(11:38) C.Johnson right tackle for 2 yards TOUCHDOWN.,0,0,2012 -20121230_JAC@TEN,1,56,38,TEN,JAC,,,2,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20121230_JAC@TEN,1,56,38,TEN,JAC,,,2,R.Bironas kicks 65 yards from TEN 35 to JAX 0. J.Shipley to JAX 24 for 24 yards (A.Verner).,7,0,2012 -20121230_JAC@TEN,1,56,28,JAC,TEN,1,10,76,(11:28) C.Henne pass incomplete short right to M.Brown.,0,7,2012 -20121230_JAC@TEN,1,56,24,JAC,TEN,2,10,76,(11:24) K.Toston right tackle to JAX 24 for no gain (S.Marks).,0,7,2012 -20121230_JAC@TEN,1,55,43,JAC,TEN,3,10,76,(10:43) (Shotgun) C.Henne pass deep middle to J.Blackmon to JAX 41 for 17 yards (J.McCourty).,0,7,2012 -20121230_JAC@TEN,1,55,6,JAC,TEN,1,10,59,(10:06) (No Huddle) K.Toston right end to TEN 48 for 11 yards (J.McCourty).,0,7,2012 -20121230_JAC@TEN,1,54,23,JAC,TEN,1,10,48,(9:23) (No Huddle) K.Toston right end to TEN 34 for 14 yards (T.Campbell).,0,7,2012 -20121230_JAC@TEN,1,53,37,JAC,TEN,1,10,34,(8:37) (No Huddle) R.Murphy right guard to TEN 25 for 9 yards (J.McCourty; A.Afalava).,0,7,2012 -20121230_JAC@TEN,1,52,55,JAC,TEN,2,1,25,(7:55) (No Huddle) R.Murphy right tackle to TEN 11 for 14 yards (A.Afalava).,0,7,2012 -20121230_JAC@TEN,1,52,15,JAC,TEN,1,10,11,(7:15) (No Huddle) K.Toston left tackle to TEN 7 for 4 yards (A.Ayers).,0,7,2012 -20121230_JAC@TEN,1,51,25,JAC,TEN,2,6,7,(6:25) PENALTY on JAX-S.Vallos False Start 5 yards enforced at TEN 7 - No Play.,0,7,2012 -20121230_JAC@TEN,1,51,25,JAC,TEN,2,11,12,(6:25) (Shotgun) C.Henne pass short right to J.Blackmon to TEN 5 for 7 yards (C.Sensabaugh).,0,7,2012 -20121230_JAC@TEN,1,50,44,JAC,TEN,3,4,5,(5:44) (Shotgun) C.Henne pass short left to J.Shipley for 5 yards TOUCHDOWN.,0,7,2012 -20121230_JAC@TEN,1,50,44,JAC,TEN,,,5,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,0,7,2012 -20121230_JAC@TEN,1,50,40,TEN,JAC,1,10,84,(5:40) C.Johnson up the middle to TEN 14 for -2 yards (G.Selvie).,7,7,2012 -20121230_JAC@TEN,1,50,0,TEN,JAC,2,12,86,(5:00) (Shotgun) J.Locker scrambles up the middle to TEN 16 for 2 yards (G.Selvie).,7,7,2012 -20121230_JAC@TEN,1,49,16,TEN,JAC,3,10,84,(4:16) (Shotgun) J.Locker pass incomplete deep right to N.Washington.,7,7,2012 -20121230_JAC@TEN,1,49,10,TEN,JAC,4,10,84,(4:10) (Punt formation) B.Kern punts 49 yards to JAX 35 Center-B.Brinkley. J.Shipley to JAX 39 for 4 yards (P.Bailey; T.Campbell).,7,7,2012 -20121230_JAC@TEN,1,49,0,JAC,TEN,1,10,61,(4:00) K.Toston up the middle to JAX 46 for 7 yards (A.Afalava; A.Verner).,7,7,2012 -20121230_JAC@TEN,1,48,23,JAC,TEN,2,3,54,(3:23) (No Huddle) K.Toston left guard to JAX 46 for no gain (J.Casey; Z.Brown).,7,7,2012 -20121230_JAC@TEN,1,47,43,JAC,TEN,3,3,54,(2:43) (Shotgun) C.Henne pass short left to M.Lewis to TEN 47 for 7 yards (A.Verner).,7,7,2012 -20121230_JAC@TEN,1,47,11,JAC,TEN,1,10,47,(2:11) (No Huddle) C.Henne pass deep left to T.Clemons to TEN 30 for 17 yards (A.Verner).,7,7,2012 -20121230_JAC@TEN,1,46,31,JAC,TEN,1,10,30,(1:31) (No Huddle) K.Toston left guard to TEN 25 for 5 yards (A.Verner; Z.Brown).,7,7,2012 -20121230_JAC@TEN,1,46,4,JAC,TEN,2,5,25,(1:04) (No Huddle) Direct snap to K.Toston. K.Toston left end to TEN 25 for no gain (D.Morgan).,7,7,2012 -20121230_JAC@TEN,1,45,25,JAC,TEN,3,5,25,(:25) (No Huddle Shotgun) PENALTY on JAX-A.Pasztor False Start 5 yards enforced at TEN 25 - No Play.,7,7,2012 -20121230_JAC@TEN,2,45,0,JAC,TEN,3,10,30,(15:00) (Shotgun) C.Henne pass short left to J.Blackmon for 30 yards TOUCHDOWN.,7,7,2012 -20121230_JAC@TEN,2,45,0,JAC,TEN,,,30,J.Scobee extra point is GOOD Center-J.Cain Holder-B.Anger.,7,7,2012 -20121230_JAC@TEN,2,45,0,JAC,TEN,,,30,J.Scobee kicks 63 yards from JAX 35 to TEN 2. D.Reynaud to TEN 23 for 21 yards (B.Marshall; J.Jackson).,14,7,2012 -20121230_JAC@TEN,2,44,46,TEN,JAC,1,10,77,(14:46) J.Locker pass incomplete deep right to K.Britt. PENALTY on JAX-D.Cox Illegal Contact 5 yards enforced at TEN 23 - No Play.,7,14,2012 -20121230_JAC@TEN,2,44,40,TEN,JAC,1,10,72,(14:40) C.Johnson left guard to TEN 25 for -3 yards (J.Babin).,7,14,2012 -20121230_JAC@TEN,2,44,10,TEN,JAC,2,13,75,(14:10) (Shotgun) J.Locker pass short left to K.Britt to TEN 35 for 10 yards (P.Posluszny; D.Cox).,7,14,2012 -20121230_JAC@TEN,2,43,34,TEN,JAC,3,3,65,(13:34) (Shotgun) J.Locker pass incomplete short right to K.Wright.,7,14,2012 -20121230_JAC@TEN,2,43,28,TEN,JAC,4,3,65,(13:28) (Punt formation) B.Kern punts 54 yards to JAX 11 Center-B.Brinkley. J.Shipley pushed ob at JAX 15 for 4 yards (T.Campbell).,7,14,2012 -20121230_JAC@TEN,2,43,19,JAC,TEN,1,10,85,(13:19) C.Henne pass short left to J.Blackmon ran ob at JAX 20 for 5 yards.,14,7,2012 -20121230_JAC@TEN,2,42,48,JAC,TEN,2,5,80,(12:48) (No Huddle) K.Toston up the middle to JAX 23 for 3 yards (A.Afalava).,14,7,2012 -20121230_JAC@TEN,2,42,5,JAC,TEN,3,2,77,(12:05) (Shotgun) C.Henne pass short right to J.Shipley to JAX 28 for 5 yards (C.Sensabaugh).,14,7,2012 -20121230_JAC@TEN,2,41,33,JAC,TEN,1,10,72,(11:33) (No Huddle) C.Henne pass incomplete short left to K.Toston [J.Casey].,14,7,2012 -20121230_JAC@TEN,2,41,29,JAC,TEN,2,10,72,(11:29) (No Huddle) K.Toston right guard to JAX 37 for 9 yards (A.Afalava).,14,7,2012 -20121230_JAC@TEN,2,40,47,JAC,TEN,3,1,63,(10:47) C.Henne pass incomplete deep middle to J.Blackmon (J.McCourty).,14,7,2012 -20121230_JAC@TEN,2,40,41,JAC,TEN,4,1,63,(10:41) (Punt formation) B.Anger punts 45 yards to TEN 18 Center-J.Cain. D.Reynaud to TEN 28 for 10 yards (K.Bosworth).,14,7,2012 -20121230_JAC@TEN,2,40,30,TEN,JAC,1,10,72,(10:30) C.Johnson left end pushed ob at TEN 47 for 19 yards (D.Cox).,7,14,2012 -20121230_JAC@TEN,2,40,3,TEN,JAC,1,10,53,(10:03) C.Johnson left guard to JAX 46 for 7 yards (C.Prosinski). PENALTY on TEN-B.Barden Offensive Holding 10 yards enforced at TEN 47 - No Play.,7,14,2012 -20121230_JAC@TEN,2,39,40,TEN,JAC,1,20,63,(9:40) (Shotgun) J.Locker right end to TEN 30 for -7 yards (A.Lane; C.Prosinski).,7,14,2012 -20121230_JAC@TEN,2,39,5,TEN,JAC,2,27,70,(9:05) (Shotgun) D.Reynaud up the middle to TEN 30 for no gain (J.Mincey).,7,14,2012 -20121230_JAC@TEN,2,38,28,TEN,JAC,3,27,70,(8:28) (Shotgun) J.Locker pass short right to T.Thompson to TEN 42 for 12 yards (P.Posluszny).,7,14,2012 -20121230_JAC@TEN,2,37,50,TEN,JAC,4,15,58,(7:50) (Punt formation) B.Kern punts 46 yards to JAX 12 Center-B.Brinkley. J.Shipley to JAX 22 for 10 yards (P.Bailey; B.Brinkley).,7,14,2012 -20121230_JAC@TEN,2,37,39,JAC,TEN,1,10,78,(7:39) J.Blackmon right end pushed ob at JAX 33 for 11 yards (T.Shaw).,14,7,2012 -20121230_JAC@TEN,2,37,7,JAC,TEN,1,10,67,(7:07) (No Huddle) C.Henne sacked at JAX 26 for -7 yards (sack split by D.Morgan and K.Wimbley).,14,7,2012 -20121230_JAC@TEN,2,36,27,JAC,TEN,2,17,74,(6:27) (Shotgun) C.Henne pass short left to M.Lewis to JAX 37 for 11 yards (A.Verner).,14,7,2012 -20121230_JAC@TEN,2,35,43,JAC,TEN,3,6,63,(5:43) (Shotgun) C.Henne pass short right to J.Blackmon to JAX 49 for 12 yards (A.Verner).,14,7,2012 -20121230_JAC@TEN,2,35,10,JAC,TEN,1,10,51,(5:10) K.Toston left guard to TEN 47 for 4 yards (A.Afalava).,14,7,2012 -20121230_JAC@TEN,2,34,38,JAC,TEN,2,6,47,(4:38) (No Huddle Shotgun) C.Henne pass incomplete short right to J.Blackmon (J.Wynn).,14,7,2012 -20121230_JAC@TEN,2,34,33,JAC,TEN,3,6,47,(4:33) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon (Z.Brown) [M.Martin].,14,7,2012 -20121230_JAC@TEN,2,34,26,JAC,TEN,4,6,47,(4:26) (Punt formation) B.Anger punts 36 yards to TEN 11 Center-J.Cain fair catch by D.Reynaud.,14,7,2012 -20121230_JAC@TEN,2,34,21,TEN,JAC,1,10,89,(4:21) C.Johnson up the middle to TEN 11 for no gain (T.Knighton; P.Posluszny). Penalty on TEN-N.Washington Illegal Motion declined.,7,14,2012 -20121230_JAC@TEN,2,34,2,TEN,JAC,2,10,89,(4:02) J.Locker pass incomplete deep left to K.Britt.,7,14,2012 -20121230_JAC@TEN,2,33,57,TEN,JAC,3,10,89,(3:57) (Shotgun) J.Locker sacked at TEN 3 for -8 yards (P.Posluszny).,7,14,2012 -20121230_JAC@TEN,2,33,16,TEN,JAC,4,18,97,(3:16) (Punt formation) B.Kern punts 55 yards to JAX 42 Center-B.Brinkley. J.Shipley to JAX 49 for 7 yards (T.Wilson).,7,14,2012 -20121230_JAC@TEN,2,33,4,JAC,TEN,1,10,51,(3:04) (Shotgun) C.Henne pass short left to K.Toston to TEN 30 for 21 yards (A.Afalava).,14,7,2012 -20121230_JAC@TEN,2,32,29,JAC,TEN,1,10,30,(2:29) (No Huddle) K.Toston right tackle to TEN 21 for 9 yards (J.McCourty).,14,7,2012 -20121230_JAC@TEN,2,32,1,JAC,TEN,2,1,21,(2:01) (No Huddle) C.Henne up the middle to TEN 19 for 2 yards (S.Marks). PENALTY on JAX-M.Lewis Illegal Shift 4 yards enforced at TEN 21 - No Play.,14,7,2012 -20121230_JAC@TEN,2,32,0,JAC,TEN,2,5,25,(2:00) (Shotgun) C.Henne pass short left intended for M.Lewis INTERCEPTED by Z.Brown at TEN 21. Z.Brown for 79 yards TOUCHDOWN.,14,7,2012 -20121230_JAC@TEN,2,32,0,TEN,JAC,,,25,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,7,14,2012 -20121230_JAC@TEN,2,32,0,TEN,JAC,,,25,R.Bironas kicks 70 yards from TEN 35 to JAX -5. J.Shipley pushed ob at TEN 45 for 60 yards (A.Verner). PENALTY on JAX-K.Bosworth Offensive Holding 6 yards enforced at JAX 12.,14,14,2012 -20121230_JAC@TEN,2,31,36,JAC,TEN,1,10,94,(1:36) (Shotgun) C.Henne pass short middle to M.Lewis to JAX 23 for 17 yards (A.Ayers).,14,14,2012 -20121230_JAC@TEN,2,31,12,JAC,TEN,1,10,77,(1:12) (No Huddle Shotgun) C.Henne pass incomplete deep right to J.Blackmon (J.McCourty).,14,14,2012 -20121230_JAC@TEN,2,31,5,JAC,TEN,2,10,77,(1:05) (Shotgun) C.Henne pass short left to J.Shipley to JAX 28 for 5 yards (T.Campbell).,14,14,2012 -20121230_JAC@TEN,2,30,55,JAC,TEN,3,5,72,(:55) (Shotgun) C.Henne sacked at JAX 22 for -6 yards (D.Morgan).,14,14,2012 -20121230_JAC@TEN,2,30,48,JAC,TEN,4,11,78,(:48) (Punt formation) B.Anger punts 47 yards to TEN 31 Center-J.Cain. D.Reynaud for 69 yards TOUCHDOWN.,14,14,2012 -20121230_JAC@TEN,2,30,48,TEN,JAC,,,78,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,14,14,2012 -20121230_JAC@TEN,2,30,48,TEN,JAC,,,78,R.Bironas kicks 66 yards from TEN 35 to JAX -1. J.Shipley to JAX 19 for 20 yards (X.Adibi).,21,14,2012 -20121230_JAC@TEN,2,30,27,JAC,TEN,1,10,81,(:27) (Shotgun) C.Henne pass deep middle to M.Lewis to JAX 44 for 25 yards (A.Afalava; A.Ayers).,14,21,2012 -20121230_JAC@TEN,2,30,21,JAC,TEN,1,10,56,(:21) (Shotgun) C.Henne pass incomplete short left to J.Shipley (K.Klug) [K.Klug]. PENALTY on TEN-C.Sensabaugh Defensive Pass Interference 4 yards enforced at JAX 44 - No Play. The Replay Assistant challenged the tipped pass ruling and the play was Upheld.,14,21,2012 -20121230_JAC@TEN,2,30,17,JAC,TEN,1,10,52,(:17) (Shotgun) C.Henne pass incomplete short middle to J.Blackmon.,14,21,2012 -20121230_JAC@TEN,2,30,12,JAC,TEN,2,10,52,(:12) (Shotgun) C.Henne pass short left to J.Shipley pushed ob at TEN 43 for 9 yards (C.Sensabaugh).,14,21,2012 -20121230_JAC@TEN,2,30,8,JAC,TEN,3,1,43,(:08) (Shotgun) C.Henne pass incomplete short left to T.Clemons.,14,21,2012 -20121230_JAC@TEN,2,30,3,JAC,TEN,4,1,43,(:03) (Shotgun) C.Henne pass incomplete deep right to J.Shipley (J.McCourty).,14,21,2012 -20121230_JAC@TEN,3,30,0,TEN,JAC,,,43,R.Bironas kicks 62 yards from TEN 35 to JAX 3. J.Shipley to JAX 20 for 17 yards (A.Verner).,21,14,2012 -20121230_JAC@TEN,3,29,56,JAC,TEN,1,10,80,(14:56) C.Henne pass short left to K.Toston to JAX 28 for 8 yards (T.Campbell).,14,21,2012 -20121230_JAC@TEN,3,29,24,JAC,TEN,2,2,72,(14:24) (No Huddle) R.Murphy right tackle to JAX 29 for 1 yard (D.Morgan; J.Casey).,14,21,2012 -20121230_JAC@TEN,3,28,58,JAC,TEN,3,1,71,(13:58) K.Toston up the middle to JAX 27 for -2 yards (J.Casey).,14,21,2012 -20121230_JAC@TEN,3,28,13,JAC,TEN,4,3,73,(13:13) (Punt formation) B.Anger punts 54 yards to TEN 19 Center-J.Cain. D.Reynaud for 81 yards TOUCHDOWN.,14,21,2012 -20121230_JAC@TEN,3,28,13,TEN,JAC,,,73,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,21,14,2012 -20121230_JAC@TEN,3,28,13,TEN,JAC,,,73,R.Bironas kicks 67 yards from TEN 35 to JAX -2. R.Murphy to JAX 22 for 24 yards (X.Adibi). TEN-P.Bailey was injured during the play.,28,14,2012 -20121230_JAC@TEN,3,27,47,JAC,TEN,1,10,78,(12:47) K.Toston up the middle to JAX 25 for 3 yards (K.Wimbley).,14,28,2012 -20121230_JAC@TEN,3,27,11,JAC,TEN,2,7,75,(12:11) C.Henne pass short left intended for T.Clemons INTERCEPTED by Z.Brown (T.Campbell) at JAX 30. Z.Brown for 30 yards TOUCHDOWN.,14,28,2012 -20121230_JAC@TEN,3,27,11,TEN,JAC,,,75,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,28,14,2012 -20121230_JAC@TEN,3,27,11,TEN,JAC,,,75,R.Bironas kicks 60 yards from TEN 35 to JAX 5. J.Shipley to JAX 20 for 15 yards (J.Babineaux).,35,14,2012 -20121230_JAC@TEN,3,26,56,JAC,TEN,1,10,80,(11:56) C.Henne scrambles up the middle to JAX 24 for 4 yards (T.Shaw).,14,35,2012 -20121230_JAC@TEN,3,26,21,JAC,TEN,2,6,76,(11:21) (No Huddle) K.Toston left guard to JAX 25 for 1 yard (K.Klug).,14,35,2012 -20121230_JAC@TEN,3,25,39,JAC,TEN,3,5,75,(10:39) (Shotgun) C.Henne pass deep left intended for J.Blackmon INTERCEPTED by M.Griffin at JAX 47. M.Griffin to JAX 7 for 40 yards (S.Vallos). PENALTY on TEN-M.Martin Illegal Block Above the Waist 10 yards enforced at JAX 14.,14,35,2012 -20121230_JAC@TEN,3,25,25,TEN,JAC,1,10,24,(10:25) C.Johnson left guard to JAX 20 for 4 yards (T.Knighton).,35,14,2012 -20121230_JAC@TEN,3,24,54,TEN,JAC,2,6,20,(9:54) C.Johnson left guard to JAX 16 for 4 yards (R.Allen).,35,14,2012 -20121230_JAC@TEN,3,24,15,TEN,JAC,3,2,16,(9:15) C.Johnson left end to JAX 17 for -1 yards (D.Cox; T.Knighton).,35,14,2012 -20121230_JAC@TEN,3,23,33,TEN,JAC,4,3,17,(8:33) (Shotgun) J.Locker pass incomplete short middle to K.Britt (T.Knighton) [C.Mosley].,35,14,2012 -20121230_JAC@TEN,3,23,28,JAC,TEN,1,10,83,(8:28) K.Toston right guard to JAX 20 for 3 yards (S.Marks).,14,35,2012 -20121230_JAC@TEN,3,22,50,JAC,TEN,2,7,80,(7:50) C.Henne pass short middle to M.Lewis to JAX 30 for 10 yards (A.Ayers).,14,35,2012 -20121230_JAC@TEN,3,22,17,JAC,TEN,1,10,70,(7:17) (No Huddle Shotgun) C.Henne pass short right to J.Blackmon to JAX 38 for 8 yards (A.Ayers). FUMBLES (A.Ayers) and recovers at JAX 38. J.Blackmon to JAX 38 for no gain (J.McCourty).,14,35,2012 -20121230_JAC@TEN,3,21,47,JAC,TEN,2,2,62,(6:47) C.Henne pass short left to J.Shipley to TEN 48 for 14 yards (T.Campbell).,14,35,2012 -20121230_JAC@TEN,3,21,8,JAC,TEN,1,10,48,(6:08) K.Toston up the middle to TEN 45 for 3 yards (J.Casey).,14,35,2012 -20121230_JAC@TEN,3,20,38,JAC,TEN,2,7,45,(5:38) (No Huddle Shotgun) C.Henne pass incomplete short right to J.Blackmon (J.McCourty).,14,35,2012 -20121230_JAC@TEN,3,20,33,JAC,TEN,3,7,45,(5:33) (Shotgun) C.Henne scrambles left guard to TEN 36 for 9 yards (M.Griffin).,14,35,2012 -20121230_JAC@TEN,3,19,59,JAC,TEN,1,10,36,(4:59) (No Huddle) C.Henne pass incomplete deep right to J.Shipley.,14,35,2012 -20121230_JAC@TEN,3,19,53,JAC,TEN,2,10,36,(4:53) (Shotgun) C.Henne pass incomplete short left to M.Lewis.,14,35,2012 -20121230_JAC@TEN,3,19,50,JAC,TEN,3,10,36,(4:50) (Shotgun) C.Henne pass short right to J.Shipley to TEN 29 for 7 yards (J.McCourty).,14,35,2012 -20121230_JAC@TEN,3,19,5,JAC,TEN,4,3,29,(4:05) (Shotgun) C.Henne pass incomplete short left to M.Lewis.,14,35,2012 -20121230_JAC@TEN,3,19,0,TEN,JAC,1,10,71,(4:00) C.Johnson right guard to TEN 29 for no gain (M.Harris).,35,14,2012 -20121230_JAC@TEN,3,18,27,TEN,JAC,2,10,71,(3:27) (Shotgun) J.Locker pass short middle to T.Thompson to TEN 36 for 7 yards (D.Landry).,35,14,2012 -20121230_JAC@TEN,3,17,52,TEN,JAC,3,3,64,(2:52) (Shotgun) PENALTY on JAX-J.Babin Neutral Zone Infraction 5 yards enforced at TEN 36 - No Play.,35,14,2012 -20121230_JAC@TEN,3,17,40,TEN,JAC,1,10,59,(2:40) C.Johnson left guard to JAX 46 for 13 yards (C.Prosinski).,35,14,2012 -20121230_JAC@TEN,3,17,0,TEN,JAC,1,10,46,(2:00) C.Johnson up the middle to JAX 46 for no gain (D.Smith).,35,14,2012 -20121230_JAC@TEN,3,16,23,TEN,JAC,2,10,46,(1:23) (Shotgun) D.Reynaud left tackle to JAX 43 for 3 yards (C.Mosley; P.Posluszny).,35,14,2012 -20121230_JAC@TEN,3,15,46,TEN,JAC,3,7,43,(:46) (Shotgun) J.Locker pass short right to K.Britt pushed ob at JAX 32 for 11 yards (A.Ross).,35,14,2012 -20121230_JAC@TEN,3,15,16,TEN,JAC,1,10,32,(:16) C.Johnson left tackle to JAX 29 for 3 yards (R.Allen).,35,14,2012 -20121230_JAC@TEN,4,15,0,TEN,JAC,2,7,29,(15:00) C.Johnson up the middle to JAX 24 for 5 yards (A.Lane).,35,14,2012 -20121230_JAC@TEN,4,14,22,TEN,JAC,3,2,24,(14:22) J.Locker scrambles right end to JAX 21 for 3 yards (M.Harris).,35,14,2012 -20121230_JAC@TEN,4,13,41,TEN,JAC,1,10,21,(13:41) C.Johnson left guard to JAX 26 for -5 yards (G.Selvie; A.Lane). Penalty on TEN-Q.Johnson Offensive Holding declined.,35,14,2012 -20121230_JAC@TEN,4,13,20,TEN,JAC,2,15,26,(13:20) D.Reynaud left end to JAX 28 for -2 yards (R.Allen).,35,14,2012 -20121230_JAC@TEN,4,12,38,TEN,JAC,3,17,28,(12:38) (Shotgun) J.Locker scrambles right end to JAX 25 for 3 yards. J.Locker pass incomplete short right to T.Thompson. PENALTY on TEN-J.Locker Illegal Forward Pass 5 yards enforced at JAX 25.,35,14,2012 -20121230_JAC@TEN,4,12,30,TEN,JAC,4,19,30,(12:30) (Field Goal formation) R.Bironas 48 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,35,14,2012 -20121230_JAC@TEN,4,12,30,TEN,JAC,,,30,R.Bironas kicks 65 yards from TEN 35 to JAX 0. J.Shipley to JAX 24 for 24 yards (A.Verner).,38,14,2012 -20121230_JAC@TEN,4,12,19,JAC,TEN,1,10,76,(12:19) (Shotgun) C.Henne pass short right to K.Toston to JAX 36 for 12 yards (S.Marks). JAX-K.Toston was injured during the play.,14,38,2012 -20121230_JAC@TEN,4,11,53,JAC,TEN,1,10,64,(11:53) (Shotgun) C.Henne pass short left to J.Shipley to JAX 42 for 6 yards (T.Campbell).,14,38,2012 -20121230_JAC@TEN,4,11,21,JAC,TEN,2,4,58,(11:21) (No Huddle Shotgun) C.Henne sacked at JAX 34 for -8 yards (sack split by K.Wimbley and S.Marks).,14,38,2012 -20121230_JAC@TEN,4,11,1,JAC,TEN,3,12,66,(11:01) (Shotgun) C.Henne sacked at JAX 28 for -6 yards (sack split by A.Ayers and D.Morgan).,14,38,2012 -20121230_JAC@TEN,4,10,35,JAC,TEN,4,18,72,(10:35) (Punt formation) B.Anger punts 50 yards to TEN 22 Center-J.Cain downed by JAX-A.Blake.,14,38,2012 -20121230_JAC@TEN,4,10,25,TEN,JAC,1,10,78,(10:25) C.Johnson right guard to TEN 20 for -2 yards (D.Landry; D.Smith).,38,14,2012 -20121230_JAC@TEN,4,9,32,TEN,JAC,2,12,80,(9:32) J.Locker pass short left to C.Johnson to TEN 29 for 9 yards (R.Allen).,38,14,2012 -20121230_JAC@TEN,4,8,59,TEN,JAC,3,3,71,(8:59) (Shotgun) J.Locker pass short right to K.Wright to JAX 35 for 36 yards (M.Harris).,38,14,2012 -20121230_JAC@TEN,4,8,12,TEN,JAC,1,10,35,(8:12) C.Johnson left guard to JAX 31 for 4 yards (R.Allen).,38,14,2012 -20121230_JAC@TEN,4,7,31,TEN,JAC,2,6,31,(7:31) J.Locker pass short right to K.Wright to JAX 27 for 4 yards (P.Posluszny).,38,14,2012 -20121230_JAC@TEN,4,6,53,TEN,JAC,3,2,27,(6:53) (Shotgun) J.Locker pass incomplete short right to K.Britt.,38,14,2012 -20121230_JAC@TEN,4,6,49,TEN,JAC,4,2,27,(6:49) (Shotgun) J.Locker sacked at JAX 29 for -2 yards (P.Posluszny).,38,14,2012 -20121230_JAC@TEN,4,6,43,JAC,TEN,1,10,71,(6:43) (Shotgun) C.Henne pass deep middle to M.Lewis to TEN 47 for 24 yards (A.Afalava; A.Ayers).,14,38,2012 -20121230_JAC@TEN,4,6,19,JAC,TEN,1,10,47,(6:19) (No Huddle Shotgun) C.Henne sacked at JAX 47 for -6 yards (J.Casey). PENALTY on TEN-J.Wynn Face Mask (15 Yards) 14 yards enforced at JAX 47.,14,38,2012 -20121230_JAC@TEN,4,5,59,JAC,TEN,1,10,39,(5:59) (Shotgun) C.Henne pass short middle to M.Lewis to TEN 30 for 9 yards (T.Shaw; Z.Brown).,14,38,2012 -20121230_JAC@TEN,4,5,33,JAC,TEN,2,1,30,(5:33) (No Huddle Shotgun) C.Henne sacked at TEN 38 for -8 yards (Z.Brown).,14,38,2012 -20121230_JAC@TEN,4,5,2,JAC,TEN,3,9,38,(5:02) (Shotgun) C.Henne pass short right to T.Clemons to TEN 31 for 7 yards (J.McCourty).,14,38,2012 -20121230_JAC@TEN,4,4,43,JAC,TEN,4,2,31,(4:43) (Shotgun) C.Henne sacked at TEN 35 for -4 yards (sack split by A.Ayers and K.Klug).,14,38,2012 -20121230_JAC@TEN,4,4,38,TEN,JAC,1,10,65,(4:38) C.Johnson left guard to TEN 37 for 2 yards (P.Posluszny; D.Landry).,38,14,2012 -20121230_JAC@TEN,4,3,55,TEN,JAC,2,8,63,(3:55) C.Mooney up the middle to TEN 41 for 4 yards (T.Alualu).,38,14,2012 -20121230_JAC@TEN,4,3,10,TEN,JAC,3,4,59,(3:10) (Shotgun) J.Locker up the middle to TEN 43 for 2 yards (P.Posluszny).,38,14,2012 -20121230_JAC@TEN,4,2,25,TEN,JAC,4,2,57,(2:25) B.Kern punt is BLOCKED by M.Harris Center-B.Brinkley RECOVERED by JAX-M.Harris at TEN 19. M.Harris for 19 yards TOUCHDOWN.,38,14,2012 -20121230_JAC@TEN,4,2,25,JAC,TEN,,,57,TWO-POINT CONVERSION ATTEMPT. C.Henne pass to J.Shipley is incomplete. ATTEMPT FAILS.,14,38,2012 -20121230_JAC@TEN,4,2,25,JAC,TEN,,,57,J.Scobee kicks onside 14 yards from JAX 35 to JAX 49 out of bounds.,20,38,2012 -20121230_JAC@TEN,4,2,14,TEN,JAC,1,10,49,(2:14) C.Johnson left end to TEN 50 for -1 yards (R.Allen).,38,20,2012 -20121230_JAC@TEN,4,2,7,TEN,JAC,2,11,50,(2:07) C.Mooney left tackle to JAX 46 for 4 yards (P.Posluszny).,38,20,2012 -20121230_JAC@TEN,4,2,0,TEN,JAC,3,7,46,(2:00) C.Mooney right tackle to JAX 38 for 8 yards (C.Prosinski; D.Cox).,38,20,2012 -20121230_JAC@TEN,4,1,20,TEN,JAC,1,10,38,(1:20) C.Mooney left guard to JAX 36 for 2 yards (P.Posluszny). PENALTY on JAX-G.Selvie Defensive Offside 5 yards enforced at JAX 38 - No Play.,38,20,2012 -20121230_JAC@TEN,4,1,17,TEN,JAC,1,5,33,(1:17) C.Mooney up the middle to JAX 27 for 6 yards (M.Harris; D.Landry).,38,20,2012 -20121230_JAC@TEN,4,0,34,TEN,JAC,1,10,27,(:34) C.Mooney up the middle to JAX 30 for -3 yards (R.Allen).,38,20,2012 -20121230_JAC@TEN,4,0,34,TEN,JAC,,,27,                      ,38,20,2012 -20121230_GB@MIN,1,0,0,GB,MIN,,,27,M.Crosby kicks 69 yards from GB 35 to MIN -4. M.Sherels to MIN 23 for 27 yards (J.Lattimore).,0,0,2012 -20121230_GB@MIN,1,59,55,MIN,GB,1,10,77,(14:55) A.Peterson right tackle to MIN 23 for no gain (M.Burnett).,0,0,2012 -20121230_GB@MIN,1,59,23,MIN,GB,2,10,77,(14:23) C.Ponder pass short middle to K.Rudolph to MIN 33 for 10 yards (M.Burnett).,0,0,2012 -20121230_GB@MIN,1,58,39,MIN,GB,1,10,67,(13:39) A.Peterson up the middle to MIN 45 for 12 yards (M.Burnett S.Shields).,0,0,2012 -20121230_GB@MIN,1,57,58,MIN,GB,1,10,55,(12:58) A.Peterson left guard to MIN 48 for 3 yards (Team).,0,0,2012 -20121230_GB@MIN,1,57,19,MIN,GB,2,7,52,(12:19) C.Ponder pass incomplete short left to J.Simpson.,0,0,2012 -20121230_GB@MIN,1,57,12,MIN,GB,3,7,52,(12:12) (Shotgun) C.Ponder pass short right to J.Simpson pushed ob at GB 44 for 8 yards (T.Williams).,0,0,2012 -20121230_GB@MIN,1,56,43,MIN,GB,1,10,44,(11:43) C.Ponder pass incomplete short left to J.Simpson.,0,0,2012 -20121230_GB@MIN,1,56,40,MIN,GB,2,10,44,(11:40) C.Ponder pass incomplete short right to M.Jenkins.,0,0,2012 -20121230_GB@MIN,1,56,33,MIN,GB,3,10,44,(11:33) (Shotgun) C.Ponder scrambles left end pushed ob at GB 36 for 8 yards (J.McMillian).,0,0,2012 -20121230_GB@MIN,1,55,52,MIN,GB,4,2,36,(10:52) B.Walsh 54 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20121230_GB@MIN,1,55,52,MIN,GB,,,36,B.Walsh kicks 74 yards from MIN 35 to GB -9. J.Ross Touchback.,3,0,2012 -20121230_GB@MIN,1,55,47,GB,MIN,1,10,80,(10:47) (Shotgun) R.Grant left tackle to GB 22 for 2 yards (K.Williams).,0,3,2012 -20121230_GB@MIN,1,55,19,GB,MIN,2,8,78,(10:19) A.Rodgers pass short right to J.Finley to GB 26 for 4 yards (J.Sanford).,0,3,2012 -20121230_GB@MIN,1,54,33,GB,MIN,3,4,74,(9:33) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones.,0,3,2012 -20121230_GB@MIN,1,54,27,GB,MIN,4,4,74,(9:27) T.Masthay punts 59 yards to MIN 15 Center-B.Goode. M.Sherels to MIN 40 for 25 yards (R.Taylor).,0,3,2012 -20121230_GB@MIN,1,54,14,MIN,GB,1,10,60,(9:14) C.Ponder pass incomplete short right to M.Jenkins. Green Bay challenged the runner was down by contact ruling and the play was REVERSED. C.Ponder sacked at MIN 33 for -7 yards (C.Matthews).,3,0,2012 -20121230_GB@MIN,1,53,55,MIN,GB,2,17,67,(8:55) A.Peterson right tackle to MIN 39 for 6 yards (E.Walden; B.Jones).,3,0,2012 -20121230_GB@MIN,1,53,18,MIN,GB,3,11,61,(8:18) (Shotgun) C.Ponder pass short left to T.Gerhart to GB 40 for 21 yards (S.Shields).,3,0,2012 -20121230_GB@MIN,1,52,33,MIN,GB,1,10,40,(7:33) A.Peterson left guard to GB 34 for 6 yards (B.Jones).,3,0,2012 -20121230_GB@MIN,1,51,56,MIN,GB,2,4,34,(6:56) A.Peterson right tackle pushed ob at GB 12 for 22 yards (M.Jennings).,3,0,2012 -20121230_GB@MIN,1,51,30,MIN,GB,1,10,12,(6:30) A.Peterson up the middle to GB 7 for 5 yards (M.Burnett).,3,0,2012 -20121230_GB@MIN,1,50,50,MIN,GB,2,5,7,(5:50) A.Peterson up the middle for 7 yards TOUCHDOWN.,3,0,2012 -20121230_GB@MIN,1,50,50,MIN,GB,,,7,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,0,2012 -20121230_GB@MIN,1,50,50,MIN,GB,,,7,B.Walsh kicks 65 yards from MIN 35 to end zone Touchback.,10,0,2012 -20121230_GB@MIN,1,50,44,GB,MIN,1,10,80,(5:44) (Shotgun) R.Grant right guard to GB 20 for no gain (E.Henderson).,0,10,2012 -20121230_GB@MIN,1,50,20,GB,MIN,2,10,80,(5:20) (Shotgun) A.Rodgers pass short right to J.Finley to GB 25 for 5 yards (H.Smith).,0,10,2012 -20121230_GB@MIN,1,49,47,GB,MIN,3,5,75,(4:47) (Shotgun) A.Rodgers pass incomplete short middle to G.Jennings (K.Williams).,0,10,2012 -20121230_GB@MIN,1,49,38,GB,MIN,4,5,75,(4:38) T.Masthay punts 39 yards to MIN 36 Center-B.Goode. M.Sherels pushed ob at MIN 47 for 11 yards (J.Ross).,0,10,2012 -20121230_GB@MIN,1,49,33,MIN,GB,1,10,53,(4:33) A.Peterson up the middle to MIN 45 for -2 yards (B.Raji).,10,0,2012 -20121230_GB@MIN,1,48,56,MIN,GB,2,12,55,(3:56) A.Peterson right guard to MIN 47 for 2 yards (E.Walden; B.Jones).,10,0,2012 -20121230_GB@MIN,1,48,17,MIN,GB,3,10,53,(3:17) (Shotgun) C.Ponder pass short left to M.Jenkins to GB 44 for 9 yards (M.Jennings).,10,0,2012 -20121230_GB@MIN,1,47,41,MIN,GB,4,1,44,(2:41) A.Peterson left tackle pushed ob at GB 38 for 6 yards (T.Williams).,10,0,2012 -20121230_GB@MIN,1,47,6,MIN,GB,1,10,38,(2:06) A.Peterson up the middle to GB 35 for 3 yards (C.Wilson).,10,0,2012 -20121230_GB@MIN,1,46,28,MIN,GB,2,7,35,(1:28) C.Ponder pass incomplete short right to K.Rudolph.,10,0,2012 -20121230_GB@MIN,1,46,24,MIN,GB,3,7,35,(1:24) (Shotgun) C.Ponder pass short middle to K.Rudolph to GB 25 for 10 yards (J.McMillian).,10,0,2012 -20121230_GB@MIN,1,45,40,MIN,GB,1,10,25,(:40) C.Ponder scrambles left end pushed ob at GB 17 for 8 yards (B.Jones).,10,0,2012 -20121230_GB@MIN,1,45,10,MIN,GB,2,2,17,(:10) A.Peterson right guard to GB 19 for -2 yards (A.Hawk).,10,0,2012 -20121230_GB@MIN,2,45,0,MIN,GB,3,4,19,(15:00) (Shotgun) C.Ponder pass incomplete deep left to J.Wright.,10,0,2012 -20121230_GB@MIN,2,44,55,MIN,GB,4,4,19,(14:55) B.Walsh 37 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,10,0,2012 -20121230_GB@MIN,2,44,55,MIN,GB,,,19,B.Walsh kicks 66 yards from MIN 35 to GB -1. J.Ross to GB 43 for 44 yards (T.McKenzie).,13,0,2012 -20121230_GB@MIN,2,44,44,GB,MIN,1,10,57,(14:44) D.Harris up the middle to MIN 48 for 9 yards (L.Guion).,0,13,2012 -20121230_GB@MIN,2,44,14,GB,MIN,2,1,48,(14:14) D.Harris left guard to MIN 40 for 8 yards (C.Greenway).,0,13,2012 -20121230_GB@MIN,2,43,35,GB,MIN,1,10,40,(13:35) A.Rodgers sacked at GB 48 for -12 yards (J.Allen).,0,13,2012 -20121230_GB@MIN,2,42,54,GB,MIN,2,22,52,(12:54) PENALTY on GB-A.Rodgers Delay of Game 5 yards enforced at GB 48 - No Play.,0,13,2012 -20121230_GB@MIN,2,42,23,GB,MIN,2,27,57,(12:23) (Shotgun) A.Rodgers pass deep left to G.Jennings to MIN 37 for 20 yards (C.Cook).,0,13,2012 -20121230_GB@MIN,2,41,43,GB,MIN,3,7,37,(11:43) (Shotgun) A.Rodgers pass short right to Ja.Jones to MIN 41 for -4 yards (J.Sanford).,0,13,2012 -20121230_GB@MIN,2,40,56,GB,MIN,4,11,41,(10:56) T.Masthay punts 30 yards to MIN 11 Center-B.Goode downed by GB-R.Francois.,0,13,2012 -20121230_GB@MIN,2,40,47,MIN,GB,1,10,89,(10:47) A.Peterson left guard to MIN 11 for no gain (C.Wilson).,13,0,2012 -20121230_GB@MIN,2,40,8,MIN,GB,2,10,89,(10:08) C.Ponder pass short left to R.Ellison pushed ob at MIN 18 for 7 yards (B.Jones).,13,0,2012 -20121230_GB@MIN,2,39,25,MIN,GB,3,3,82,(9:25) (Shotgun) C.Ponder pass incomplete deep left to J.Simpson.,13,0,2012 -20121230_GB@MIN,2,39,21,MIN,GB,4,3,82,(9:21) C.Kluwe punts 56 yards to GB 26 Center-C.Loeffler. J.Ross to MIN 42 for 32 yards (C.Loeffler).,13,0,2012 -20121230_GB@MIN,2,39,7,GB,MIN,1,10,42,(9:07) D.Harris left end to MIN 30 for 12 yards (M.Raymond).,0,13,2012 -20121230_GB@MIN,2,38,32,GB,MIN,1,10,30,(8:32) D.Harris right end to MIN 28 for 2 yards (E.Henderson).,0,13,2012 -20121230_GB@MIN,2,37,48,GB,MIN,2,8,28,(7:48) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,0,13,2012 -20121230_GB@MIN,2,37,44,GB,MIN,3,8,28,(7:44) (Shotgun) A.Rodgers pass short right to Ja.Jones to MIN 17 for 11 yards (M.Raymond).,0,13,2012 -20121230_GB@MIN,2,37,3,GB,MIN,1,10,17,(7:03) (Shotgun) D.Harris up the middle to MIN 14 for 3 yards (E.Henderson).,0,13,2012 -20121230_GB@MIN,2,36,20,GB,MIN,2,7,14,(6:20) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,0,13,2012 -20121230_GB@MIN,2,36,14,GB,MIN,3,7,14,(6:14) (Shotgun) A.Rodgers pass short left to G.Jennings to MIN 6 for 8 yards (C.Cook).,0,13,2012 -20121230_GB@MIN,2,35,31,GB,MIN,1,6,6,(5:31) D.Harris left guard to MIN 5 for 1 yard (E.Henderson).,0,13,2012 -20121230_GB@MIN,2,34,46,GB,MIN,2,5,5,(4:46) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley.,0,13,2012 -20121230_GB@MIN,2,34,43,GB,MIN,3,5,5,(4:43) (Shotgun) A.Rodgers pass short middle to J.Finley to MIN 1 for 4 yards (Team). PENALTY on MIN-E.Henderson Defensive Holding 2 yards enforced at MIN 5 - No Play.,0,13,2012 -20121230_GB@MIN,2,34,19,GB,MIN,1,3,3,(4:19) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings.,0,13,2012 -20121230_GB@MIN,2,34,14,GB,MIN,2,3,3,(4:14) (Shotgun) A.Rodgers pass incomplete short right.,0,13,2012 -20121230_GB@MIN,2,34,7,GB,MIN,3,3,3,(4:07) (Shotgun) A.Rodgers pass short middle to G.Jennings for 3 yards TOUCHDOWN.,0,13,2012 -20121230_GB@MIN,2,34,7,GB,MIN,,,3,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,13,2012 -20121230_GB@MIN,2,34,7,GB,MIN,,,3,M.Crosby kicks 66 yards from GB 35 to MIN -1. M.Sherels pushed ob at MIN 40 for 41 yards (M.Jennings).,7,13,2012 -20121230_GB@MIN,2,33,53,MIN,GB,1,10,60,(3:53) A.Peterson left guard to MIN 41 for 1 yard (A.Hawk).,13,7,2012 -20121230_GB@MIN,2,33,19,MIN,GB,2,9,59,(3:19) C.Ponder pass deep middle to J.Wright to GB 42 for 17 yards (M.Burnett) [M.Burnett].,13,7,2012 -20121230_GB@MIN,2,32,41,MIN,GB,1,10,42,(2:41) A.Peterson left tackle to GB 38 for 4 yards (B.Raji).,13,7,2012 -20121230_GB@MIN,2,32,8,MIN,GB,2,6,38,(2:08) T.Gerhart up the middle to GB 36 for 2 yards (J.Worthy).,13,7,2012 -20121230_GB@MIN,2,31,59,MIN,GB,3,4,36,(1:59) (Shotgun) C.Ponder pass short left to J.Simpson to GB 26 for 10 yards (S.Shields).,13,7,2012 -20121230_GB@MIN,2,31,26,MIN,GB,1,10,26,(1:26) A.Peterson left guard to GB 8 for 18 yards (S.Shields).,13,7,2012 -20121230_GB@MIN,2,31,13,MIN,GB,1,8,8,(1:13) C.Ponder pass short left to J.Wright for 8 yards TOUCHDOWN.,13,7,2012 -20121230_GB@MIN,2,31,13,MIN,GB,,,8,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,13,7,2012 -20121230_GB@MIN,2,31,13,MIN,GB,,,8,B.Walsh kicks 74 yards from MIN 35 to GB -9. J.Ross Touchback.,20,7,2012 -20121230_GB@MIN,2,31,7,GB,MIN,1,10,80,(1:07) (Shotgun) A.Rodgers pass short right to G.Jennings to GB 34 for 14 yards (A.Jefferson).,7,20,2012 -20121230_GB@MIN,2,30,49,GB,MIN,1,10,66,(:49) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at 50 for 16 yards (M.Sherels).,7,20,2012 -20121230_GB@MIN,2,30,44,GB,MIN,1,10,50,(:44) (Shotgun) A.Rodgers pass short right to J.Nelson to MIN 38 for 12 yards.,7,20,2012 -20121230_GB@MIN,2,30,44,GB,MIN,2,7,38,(:44) A.Rodgers pass incomplete.,7,20,2012 -20121230_GB@MIN,2,30,31,GB,MIN,1,10,38,(:31) A.Rodgers spiked the ball to stop the clock.,7,20,2012 -20121230_GB@MIN,2,30,30,GB,MIN,2,10,38,(:30) A.Rodgers sacked at MIN 47 for -9 yards (E.Griffen).,7,20,2012 -20121230_GB@MIN,2,30,9,GB,MIN,3,19,47,(:09) A.Rodgers pass to J.Finley ran ob at MIN 33 for 14 yards.,7,20,2012 -20121230_GB@MIN,2,30,1,GB,MIN,4,5,33,(:01) M.Crosby 51 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,7,20,2012 -20121230_GB@MIN,3,30,0,MIN,GB,,,33,B.Walsh kicks 73 yards from MIN 35 to GB -8. J.Ross Touchback.,20,10,2012 -20121230_GB@MIN,3,30,0,GB,MIN,1,10,80,(15:00) D.Harris left end to GB 25 for 5 yards (H.Smith).,10,20,2012 -20121230_GB@MIN,3,29,26,GB,MIN,2,5,75,(14:26) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at MIN 45 for 30 yards (C.Greenway).,10,20,2012 -20121230_GB@MIN,3,29,8,GB,MIN,1,10,45,(14:08) (Shotgun) A.Rodgers sacked at MIN 48 for -3 yards (E.Griffen).,10,20,2012 -20121230_GB@MIN,3,28,40,GB,MIN,2,13,48,(13:40) (Shotgun) PENALTY on GB-Ja.Jones False Start 5 yards enforced at MIN 48 - No Play.,10,20,2012 -20121230_GB@MIN,3,28,21,GB,MIN,2,18,53,(13:21) (Shotgun) A.Rodgers pass short right to G.Jennings to MIN 8 for 45 yards (H.Smith).,10,20,2012 -20121230_GB@MIN,3,27,37,GB,MIN,1,8,8,(12:37) D.Harris right end pushed ob at MIN 5 for 3 yards (J.Sanford).,10,20,2012 -20121230_GB@MIN,3,27,2,GB,MIN,2,5,5,(12:02) A.Rodgers pass short left to G.Jennings for 5 yards TOUCHDOWN.,10,20,2012 -20121230_GB@MIN,3,27,2,GB,MIN,,,5,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,10,20,2012 -20121230_GB@MIN,3,27,2,GB,MIN,,,5,M.Crosby kicks 68 yards from GB 35 to MIN -3. J.Robinson to MIN 20 for 23 yards (J.Bush).,17,20,2012 -20121230_GB@MIN,3,26,50,MIN,GB,1,10,80,(11:50) A.Peterson right tackle pushed ob at MIN 40 for 20 yards (M.Jennings).,20,17,2012 -20121230_GB@MIN,3,26,42,MIN,GB,1,10,60,(11:42) A.Peterson right guard to MIN 46 for 6 yards (T.Williams).,20,17,2012 -20121230_GB@MIN,3,26,5,MIN,GB,2,4,54,(11:05) C.Ponder pass incomplete short left to J.Wright.,20,17,2012 -20121230_GB@MIN,3,26,0,MIN,GB,3,4,54,(11:00) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph (C.Hayward).,20,17,2012 -20121230_GB@MIN,3,25,56,MIN,GB,4,4,54,(10:56) C.Kluwe punts 42 yards to GB 12 Center-C.Loeffler. J.Ross pushed ob at GB 21 for 9 yards (R.Ellison).,20,17,2012 -20121230_GB@MIN,3,25,42,GB,MIN,1,10,79,(10:42) A.Rodgers pass incomplete short right. PENALTY on MIN-J.Brinkley Roughing the Passer 15 yards enforced at GB 21 - No Play.,17,20,2012 -20121230_GB@MIN,3,25,35,GB,MIN,1,10,64,(10:35) A.Rodgers pass short right to D.Harris to GB 47 for 11 yards (C.Greenway).,17,20,2012 -20121230_GB@MIN,3,25,1,GB,MIN,1,10,53,(10:01) D.Harris right end to GB 49 for 2 yards (E.Henderson).,17,20,2012 -20121230_GB@MIN,3,24,26,GB,MIN,2,8,51,(9:26) (Shotgun) D.Harris right tackle to MIN 45 for 6 yards (J.Brinkley).,17,20,2012 -20121230_GB@MIN,3,24,26,GB,MIN,3,2,45,(9:26) (Shotgun) PENALTY on GB-D.Barclay False Start 5 yards enforced at MIN 45 - No Play.,17,20,2012 -20121230_GB@MIN,3,23,28,GB,MIN,3,7,50,(8:28) (Shotgun) A.Rodgers sacked at GB 49 for -1 yards (B.Robison). FUMBLES (B.Robison) [B.Robison] RECOVERED by MIN-J.Allen at 50. J.Allen to 50 for no gain (M.Newhouse).,17,20,2012 -20121230_GB@MIN,3,23,17,MIN,GB,1,10,50,(8:17) C.Ponder pass short middle to J.Simpson to GB 29 for 21 yards (T.Williams).,20,17,2012 -20121230_GB@MIN,3,22,39,MIN,GB,1,10,29,(7:39) A.Peterson right end to GB 30 for -1 yards (A.Hawk).,20,17,2012 -20121230_GB@MIN,3,22,39,MIN,GB,2,11,30,(7:39) (Shotgun) PENALTY on MIN-C.Johnson False Start 5 yards enforced at GB 30 - No Play.,20,17,2012 -20121230_GB@MIN,3,21,56,MIN,GB,2,16,35,(6:56) (Shotgun) C.Ponder pass short right to J.Felton pushed ob at GB 18 for 17 yards (M.Jennings).,20,17,2012 -20121230_GB@MIN,3,21,22,MIN,GB,1,10,18,(6:22) A.Peterson left end to GB 20 for -2 yards (C.Wilson). FUMBLES (C.Wilson) RECOVERED by GB-S.Shields at GB 20. S.Shields to GB 29 for 9 yards. Lateral to M.Jennings to GB 40 for 11 yards (J.Wright). PENALTY on MIN-P.Loadholt Taunting 15 yards enforced at GB 40. The Replay Assistant challenged the fumble ruling and the play was REVERSED. A.Peterson left end to GB 20 for -2 yards (C.Wilson). PENALTY on MIN-P.Loadholt Taunting 15 yards enforced at GB 20.,20,17,2012 -20121230_GB@MIN,3,21,22,MIN,GB,2,27,35,(6:22) A.Peterson right tackle pushed ob at GB 7 for 28 yards (C.Matthews).,20,17,2012 -20121230_GB@MIN,3,20,35,MIN,GB,1,7,7,(5:35) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph (R.Pickett).,20,17,2012 -20121230_GB@MIN,3,20,31,MIN,GB,2,7,7,(5:31) A.Peterson left guard to GB 5 for 2 yards (R.Pickett).,20,17,2012 -20121230_GB@MIN,3,19,54,MIN,GB,3,5,5,(4:54) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph. PENALTY on GB-J.McMillian Defensive Holding 3 yards enforced at GB 5 - No Play.,20,17,2012 -20121230_GB@MIN,3,19,49,MIN,GB,1,2,2,(4:49) A.Peterson right tackle to GB 2 for no gain (R.Pickett; C.Wilson).,20,17,2012 -20121230_GB@MIN,3,19,5,MIN,GB,2,2,2,(4:05) C.Ponder pass short left to A.Peterson for 2 yards TOUCHDOWN.,20,17,2012 -20121230_GB@MIN,3,19,5,MIN,GB,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,20,17,2012 -20121230_GB@MIN,3,19,5,MIN,GB,,,2,B.Walsh kicks 67 yards from MIN 35 to GB -2. J.Ross to GB 13 for 15 yards (J.Sanford).,27,17,2012 -20121230_GB@MIN,3,18,57,GB,MIN,1,10,87,(3:57) (Shotgun) A.Rodgers pass short right to J.Finley to GB 18 for 5 yards (M.Raymond).,17,27,2012 -20121230_GB@MIN,3,18,14,GB,MIN,2,5,82,(3:14) (Shotgun) D.Harris left end to GB 19 for 1 yard (E.Griffen).,17,27,2012 -20121230_GB@MIN,3,17,44,GB,MIN,3,4,81,(2:44) (Shotgun) A.Rodgers pass deep right to J.Nelson pushed ob at MIN 8 for 73 yards (A.Jefferson).,17,27,2012 -20121230_GB@MIN,3,17,14,GB,MIN,1,8,8,(2:14) (Shotgun) A.Rodgers pass short left to Ja.Jones to MIN 1 for 7 yards. FUMBLES RECOVERED by MIN-E.Henderson at MIN 0. Touchback. PENALTY on GB Unsportsmanlike Conduct 15 yards enforced at MIN 20. The Replay Assistant challenged the fumble ruling and the play was REVERSED. (Shotgun) A.Rodgers pass short left to Ja.Jones for 8 yards TOUCHDOWN. PENALTY on GB Unsportsmanlike Conduct 15 yards enforced between downs. Penalty on GB head coach.,17,27,2012 -20121230_GB@MIN,3,17,14,GB,MIN,,,8,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,17,27,2012 -20121230_GB@MIN,3,17,14,GB,MIN,,,8,M.Crosby kicks 73 yards from GB 20 to MIN 7. J.Robinson to MIN 31 for 24 yards (R.Francois). PENALTY on MIN-M.Raymond Offensive Holding 10 yards enforced at MIN 31.,24,27,2012 -20121230_GB@MIN,3,16,56,MIN,GB,1,10,79,(1:56) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph.,27,24,2012 -20121230_GB@MIN,3,16,51,MIN,GB,2,10,79,(1:51) A.Peterson up the middle to MIN 24 for 3 yards (R.Pickett).,27,24,2012 -20121230_GB@MIN,3,16,12,MIN,GB,3,7,76,(1:12) (Shotgun) PENALTY on MIN-P.Loadholt False Start 5 yards enforced at MIN 24 - No Play.,27,24,2012 -20121230_GB@MIN,3,15,50,MIN,GB,3,12,81,(:50) (Shotgun) C.Ponder pass short left to T.Gerhart pushed ob at MIN 20 for 1 yard (E.Walden).,27,24,2012 -20121230_GB@MIN,3,15,18,MIN,GB,4,11,80,(:18) (Punt formation) PENALTY on MIN-R.Ellison False Start 5 yards enforced at MIN 20 - No Play.,27,24,2012 -20121230_GB@MIN,3,15,18,MIN,GB,4,16,85,(:18) C.Kluwe punts 50 yards to GB 35 Center-C.Loeffler downed by MIN-J.Sanford. PENALTY on MIN-R.Ellison Face Mask (15 Yards) 15 yards enforced at GB 35.,27,24,2012 -20121230_GB@MIN,4,15,0,GB,MIN,1,10,50,(15:00) (Shotgun) A.Rodgers pass short left to D.Harris to MIN 44 for 6 yards (E.Henderson).,24,27,2012 -20121230_GB@MIN,4,14,25,GB,MIN,2,4,44,(14:25) A.Rodgers pass incomplete deep right to G.Jennings [J.Allen].,24,27,2012 -20121230_GB@MIN,4,14,15,GB,MIN,3,4,44,(14:15) (Shotgun) A.Rodgers pass short left to Ja.Jones pushed ob at MIN 39 for 5 yards (C.Cook).,24,27,2012 -20121230_GB@MIN,4,13,40,GB,MIN,1,10,39,(13:40) A.Rodgers pass short right to G.Jennings to MIN 28 for 11 yards (M.Raymond).,24,27,2012 -20121230_GB@MIN,4,13,13,GB,MIN,1,10,28,(13:13) D.Harris left tackle to MIN 22 for 6 yards (E.Henderson).,24,27,2012 -20121230_GB@MIN,4,12,34,GB,MIN,2,4,22,(12:34) (Shotgun) A.Rodgers pass incomplete short middle to D.Williams.,24,27,2012 -20121230_GB@MIN,4,12,29,GB,MIN,3,4,22,(12:29) (Shotgun) A.Rodgers pass incomplete deep right to G.Jennings.,24,27,2012 -20121230_GB@MIN,4,12,25,GB,MIN,4,4,22,(12:25) M.Crosby 40 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,24,27,2012 -20121230_GB@MIN,4,12,25,GB,MIN,,,22,M.Crosby kicks 71 yards from GB 35 to MIN -6. M.Sherels pushed ob at MIN 21 for 27 yards (C.Hayward).,27,27,2012 -20121230_GB@MIN,4,12,14,MIN,GB,1,10,79,(12:14) C.Ponder pass deep middle to J.Wright to GB 14 for 65 yards (S.Shields).,27,27,2012 -20121230_GB@MIN,4,11,26,MIN,GB,1,10,14,(11:26) A.Peterson right end to GB 2 for 12 yards (M.Burnett).,27,27,2012 -20121230_GB@MIN,4,10,43,MIN,GB,1,2,2,(10:43) A.Peterson right guard to GB 1 for 1 yard (B.Jones). PENALTY on MIN-P.Loadholt Offensive Holding 10 yards enforced at GB 2 - No Play.,27,27,2012 -20121230_GB@MIN,4,10,19,MIN,GB,1,12,12,(10:19) A.Peterson right guard to GB 12 for no gain (R.Pickett).,27,27,2012 -20121230_GB@MIN,4,9,42,MIN,GB,2,12,12,(9:42) C.Ponder pass incomplete short right to M.Jenkins.,27,27,2012 -20121230_GB@MIN,4,9,35,MIN,GB,3,12,12,(9:35) (Shotgun) C.Ponder pass short left to T.Gerhart to GB 7 for 5 yards (C.Matthews). PENALTY on GB-T.Williams Illegal Use of Hands 5 yards enforced at GB 12 - No Play.,27,27,2012 -20121230_GB@MIN,4,9,18,MIN,GB,1,7,7,(9:18) A.Peterson right guard to GB 5 for 2 yards (B.Raji).,27,27,2012 -20121230_GB@MIN,4,8,37,MIN,GB,2,5,5,(8:37) A.Peterson right end to GB 3 for 2 yards (C.Matthews).,27,27,2012 -20121230_GB@MIN,4,8,3,MIN,GB,3,3,3,(8:03) (Shotgun) C.Ponder pass short left to M.Jenkins for 3 yards TOUCHDOWN.,27,27,2012 -20121230_GB@MIN,4,8,3,MIN,GB,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,27,27,2012 -20121230_GB@MIN,4,8,3,MIN,GB,,,3,B.Walsh kicks 70 yards from MIN 35 to GB -5. J.Ross to GB 22 for 27 yards (R.Ellison).,34,27,2012 -20121230_GB@MIN,4,7,50,GB,MIN,1,10,78,(7:50) (Shotgun) A.Rodgers pass short right to Ja.Jones to GB 34 for 12 yards (A.Jefferson).,27,34,2012 -20121230_GB@MIN,4,7,21,GB,MIN,1,10,66,(7:21) (Shotgun) A.Rodgers sacked at GB 26 for -8 yards (E.Griffen).,27,34,2012 -20121230_GB@MIN,4,6,56,GB,MIN,2,18,74,(6:56) (Shotgun) A.Rodgers pass short right to J.Finley to GB 28 for 2 yards (A.Jefferson).,27,34,2012 -20121230_GB@MIN,4,6,18,GB,MIN,3,16,72,(6:18) (Shotgun) PENALTY on GB-D.Barclay False Start 5 yards enforced at GB 28 - No Play.,27,34,2012 -20121230_GB@MIN,4,5,57,GB,MIN,3,21,77,(5:57) (Shotgun) A.Rodgers pass deep right to J.Finley pushed ob at GB 43 for 20 yards (Team).,27,34,2012 -20121230_GB@MIN,4,5,45,GB,MIN,4,1,57,(5:45) A.Rodgers pass short right to J.Boykin to 50 for 7 yards (A.Jefferson). Penalty on MIN-A.Jefferson Defensive Pass Interference declined.,27,34,2012 -20121230_GB@MIN,4,5,30,GB,MIN,1,10,50,(5:30) (Shotgun) A.Rodgers pass incomplete short right to D.Williams [E.Griffen].,27,34,2012 -20121230_GB@MIN,4,5,25,GB,MIN,2,10,50,(5:25) (Shotgun) A.Rodgers pass short right to J.Finley to MIN 44 for 6 yards (M.Sherels).,27,34,2012 -20121230_GB@MIN,4,4,50,GB,MIN,3,4,44,(4:50) (Shotgun) A.Rodgers pass short middle to G.Jennings to MIN 30 for 14 yards (H.Smith).,27,34,2012 -20121230_GB@MIN,4,4,17,GB,MIN,1,10,30,(4:17) D.Harris right guard to MIN 19 for 11 yards (H.Smith).,27,34,2012 -20121230_GB@MIN,4,3,45,GB,MIN,1,10,19,(3:45) (Shotgun) D.Harris up the middle to MIN 18 for 1 yard (L.Guion).,27,34,2012 -20121230_GB@MIN,4,3,2,GB,MIN,2,9,18,(3:02) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson. PENALTY on MIN-A.Jefferson Defensive Pass Interference 16 yards enforced at MIN 18 - No Play.,27,34,2012 -20121230_GB@MIN,4,2,57,GB,MIN,1,2,2,(2:57) (Shotgun) A.Rodgers pass short right to J.Nelson for 2 yards TOUCHDOWN.,27,34,2012 -20121230_GB@MIN,4,2,57,GB,MIN,,,2,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,27,34,2012 -20121230_GB@MIN,4,2,57,GB,MIN,,,2,M.Crosby kicks 66 yards from GB 35 to MIN -1. M.Sherels to MIN 28 for 29 yards (M.Crosby; R.Taylor).,34,34,2012 -20121230_GB@MIN,4,2,45,MIN,GB,1,10,72,(2:45) C.Ponder pass incomplete short middle to A.Peterson.,34,34,2012 -20121230_GB@MIN,4,2,40,MIN,GB,2,10,72,(2:40) A.Peterson up the middle to MIN 27 for -1 yards (B.Raji).,34,34,2012 -20121230_GB@MIN,4,2,0,MIN,GB,3,11,73,(2:00) (Shotgun) C.Ponder pass deep right to M.Jenkins ran ob at GB 48 for 25 yards. GB-J.Worthy was injured during the play. GB-J.Worthy was injured during the play. His return is Doubtful.,34,34,2012 -20121230_GB@MIN,4,1,54,MIN,GB,1,10,48,(1:54) (Shotgun) A.Peterson left guard to GB 41 for 7 yards (T.Williams).,34,34,2012 -20121230_GB@MIN,4,1,10,MIN,GB,2,3,41,(1:10) A.Peterson left tackle to GB 37 for 4 yards (A.Hawk).,34,34,2012 -20121230_GB@MIN,4,0,30,MIN,GB,1,10,37,(:30) A.Peterson left guard to GB 37 for no gain (E.Walden).,34,34,2012 -20121230_GB@MIN,4,0,24,MIN,GB,2,10,37,(:24) A.Peterson left tackle to GB 11 for 26 yards (M.Burnett).,34,34,2012 -20121230_GB@MIN,4,0,3,MIN,GB,1,10,11,(:03) B.Walsh 29 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,34,34,2012 -20121230_GB@MIN,4,0,3,MIN,GB,,,11,                      ,37,34,2012 -20121230_MIA@NE,1,0,0,MIA,NE,,,11,N.Kaeding kicks 70 yards from MIA 35 to NE -5. M.Slater Touchback.,0,0,2012 -20121230_MIA@NE,1,60,0,NE,MIA,1,10,80,(15:00) (Shotgun) T.Brady pass short right to A.Hernandez to NE 34 for 14 yards (K.Burnett; K.Dansby). NE 417th 1st down of season new NFL record.,0,0,2012 -20121230_MIA@NE,1,59,32,NE,MIA,1,10,66,(14:32) T.Brady pass short right to D.Woodhead pushed ob at MIA 42 for 24 yards (K.Burnett).,0,0,2012 -20121230_MIA@NE,1,59,8,NE,MIA,1,10,42,(14:08) S.Ridley left guard to MIA 37 for 5 yards (K.Burnett).,0,0,2012 -20121230_MIA@NE,1,58,26,NE,MIA,2,5,37,(13:26) S.Ridley right tackle to MIA 28 for 9 yards (K.Dansby; R.Jones). NE 22-Ridley is now the 5th Patriots ever with 1200 rush yards in a season.,0,0,2012 -20121230_MIA@NE,1,57,53,NE,MIA,1,10,28,(12:53) (Shotgun) S.Ridley left guard to MIA 22 for 6 yards (K.Dansby; C.Clemons).,0,0,2012 -20121230_MIA@NE,1,57,21,NE,MIA,2,4,22,(12:21) S.Ridley up the middle to MIA 24 for -2 yards (P.Soliai).,0,0,2012 -20121230_MIA@NE,1,56,49,NE,MIA,3,6,24,(11:49) (Shotgun) T.Brady pass incomplete short left to A.Hernandez.,0,0,2012 -20121230_MIA@NE,1,56,43,NE,MIA,4,6,24,(11:43) (Shotgun) T.Brady pass incomplete short right to W.Welker.,0,0,2012 -20121230_MIA@NE,1,56,43,MIA,NE,1,10,76,(11:43) R.Bush right end to MIA 25 for 1 yard (V.Wilfork; D.Hightower).,0,0,2012 -20121230_MIA@NE,1,56,7,MIA,NE,2,9,75,(11:07) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush (J.Mayo).,0,0,2012 -20121230_MIA@NE,1,56,3,MIA,NE,3,9,75,(11:03) (Shotgun) R.Tannehill sacked at MIA 21 for -4 yards (J.Francis).,0,0,2012 -20121230_MIA@NE,1,55,26,MIA,NE,4,13,79,(10:26) B.Fields punts 44 yards to NE 35 Center-J.Denney. W.Welker ran ob at NE 48 for 13 yards.,0,0,2012 -20121230_MIA@NE,1,55,18,NE,MIA,1,10,52,(10:18) T.Brady pass incomplete short left to W.Welker.,0,0,2012 -20121230_MIA@NE,1,55,15,NE,MIA,2,10,52,(10:15) (Shotgun) T.Brady pass short right to A.Hernandez to MIA 44 for 8 yards (S.Smith; K.Burnett). MIA-K.Burnett was injured during the play.,0,0,2012 -20121230_MIA@NE,1,55,1,NE,MIA,3,2,44,(10:01) (Shotgun) T.Brady pass short middle to A.Hernandez to MIA 36 for 8 yards (K.Dansby).,0,0,2012 -20121230_MIA@NE,1,54,29,NE,MIA,1,10,36,(9:29) T.Brady pass incomplete deep left to B.Lloyd.,0,0,2012 -20121230_MIA@NE,1,54,24,NE,MIA,2,10,36,(9:24) S.Ridley left guard to MIA 33 for 3 yards (K.Burnett; T.McDaniel).,0,0,2012 -20121230_MIA@NE,1,53,38,NE,MIA,3,7,33,(8:38) (Shotgun) T.Brady pass incomplete deep left to A.Hernandez.,0,0,2012 -20121230_MIA@NE,1,53,33,NE,MIA,4,7,33,(8:33) Z.Mesko punts 25 yards to MIA 8 Center-D.Aiken fair catch by M.Thigpen.,0,0,2012 -20121230_MIA@NE,1,53,27,MIA,NE,1,10,92,(8:27) R.Tannehill pass short right to B.Hartline to MIA 23 for 15 yards (P.Chung).,0,0,2012 -20121230_MIA@NE,1,52,56,MIA,NE,1,10,77,(7:56) (No Huddle Shotgun) R.Bush left tackle to MIA 25 for 2 yards (V.Wilfork).,0,0,2012 -20121230_MIA@NE,1,52,26,MIA,NE,2,8,75,(7:26) (Shotgun) R.Tannehill pass incomplete short left to R.Matthews.,0,0,2012 -20121230_MIA@NE,1,52,23,MIA,NE,3,8,75,(7:23) (Shotgun) R.Tannehill pass deep left intended for R.Matthews INTERCEPTED by S.Gregory at MIA 41. S.Gregory to MIA 28 for 13 yards (R.Matthews).,0,0,2012 -20121230_MIA@NE,1,52,15,NE,MIA,1,10,28,(7:15) (Shotgun) T.Brady pass deep right to R.Gronkowski to MIA 9 for 19 yards (R.Jones).,0,0,2012 -20121230_MIA@NE,1,51,44,NE,MIA,1,9,9,(6:44) T.Brady pass short middle to W.Welker for 9 yards TOUCHDOWN. NE 12-Brady 48th straight regular season game with a TD pass 2nd longest all-time (Unitas 47). Also 1st player in NFL history to throw a TD pass in all 16 games for 3 straight seasons. NE 83-Welker 110th consecutive game with a reception.,0,0,2012 -20121230_MIA@NE,1,51,44,NE,MIA,,,9,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20121230_MIA@NE,1,51,44,NE,MIA,,,9,S.Gostkowski kicks 65 yards from NE 35 to MIA 0. M.Thigpen to MIA 27 for 27 yards (K.Arrington). PENALTY on MIA-J.Amaya Offensive Holding 8 yards enforced at MIA 16.,7,0,2012 -20121230_MIA@NE,1,51,34,MIA,NE,1,10,92,(6:34) L.Miller left end to MIA 11 for 3 yards (C.Jones).,0,7,2012 -20121230_MIA@NE,1,51,4,MIA,NE,2,7,89,(6:04) (Shotgun) R.Tannehill pass incomplete short right to A.Fasano.,0,7,2012 -20121230_MIA@NE,1,50,59,MIA,NE,3,7,89,(5:59) (Shotgun) R.Tannehill up the middle to MIA 19 for 8 yards (J.Cunningham).,0,7,2012 -20121230_MIA@NE,1,50,27,MIA,NE,1,10,81,(5:27) R.Tannehill pass short right to B.Hartline to MIA 40 for 21 yards (P.Chung).,0,7,2012 -20121230_MIA@NE,1,49,55,MIA,NE,1,10,60,(4:55) L.Miller right tackle to MIA 44 for 4 yards (J.Mayo).,0,7,2012 -20121230_MIA@NE,1,49,20,MIA,NE,2,6,56,(4:20) (Shotgun) L.Miller left guard to MIA 46 for 2 yards (C.Jones; R.Ninkovich).,0,7,2012 -20121230_MIA@NE,1,48,41,MIA,NE,3,4,54,(3:41) (Shotgun) R.Tannehill sacked at MIA 39 for -7 yards (B.Deaderick).,0,7,2012 -20121230_MIA@NE,1,48,4,MIA,NE,4,11,61,(3:04) B.Fields punts 50 yards to NE 11 Center-J.Denney. W.Welker to NE 18 for 7 yards (J.Amaya). PENALTY on NE-D.Martin Illegal Block Above the Waist 8 yards enforced at NE 16.,0,7,2012 -20121230_MIA@NE,1,47,54,NE,MIA,1,10,92,(2:54) S.Ridley right guard to NE 10 for 2 yards (J.Wilson).,7,0,2012 -20121230_MIA@NE,1,47,22,NE,MIA,2,8,90,(2:22) T.Brady pass short left to W.Welker to NE 20 for 10 yards (D.Patterson). NE 12-Brady 44614 career pass yards passing Drew Bledsoe for 9th in NFL history.,7,0,2012 -20121230_MIA@NE,1,46,45,NE,MIA,1,10,80,(1:45) (Shotgun) T.Brady pass short left to D.Woodhead to NE 45 for 25 yards (R.Jones).,7,0,2012 -20121230_MIA@NE,1,46,13,NE,MIA,1,10,55,(1:13) (Shotgun) PENALTY on NE-N.Solder False Start 5 yards enforced at NE 45 - No Play.,7,0,2012 -20121230_MIA@NE,1,45,55,NE,MIA,1,15,60,(:55) (Shotgun) T.Brady pass short right to W.Welker to MIA 37 for 23 yards (K.Misi). MIA-D.Patterson was injured during the play.,7,0,2012 -20121230_MIA@NE,1,45,25,NE,MIA,1,10,37,(:25) S.Vereen left tackle to MIA 28 for 9 yards (R.Jones).,7,0,2012 -20121230_MIA@NE,2,45,0,NE,MIA,2,1,28,(15:00) S.Vereen up the middle to MIA 23 for 5 yards (C.Clemons).,7,0,2012 -20121230_MIA@NE,2,44,18,NE,MIA,1,10,23,(14:18) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd.,7,0,2012 -20121230_MIA@NE,2,44,13,NE,MIA,2,10,23,(14:13) (Shotgun) S.Vereen left guard to MIA 21 for 2 yards (K.Dansby).,7,0,2012 -20121230_MIA@NE,2,43,28,NE,MIA,3,8,21,(13:28) (Shotgun) PENALTY on NE-A.Hernandez False Start 5 yards enforced at MIA 21 - No Play.,7,0,2012 -20121230_MIA@NE,2,43,8,NE,MIA,3,13,26,(13:08) (Shotgun) T.Brady pass deep middle to D.Branch to MIA 10 for 16 yards (S.Smith).,7,0,2012 -20121230_MIA@NE,2,42,32,NE,MIA,1,10,10,(12:32) S.Vereen up the middle to MIA 5 for 5 yards (K.Dansby).,7,0,2012 -20121230_MIA@NE,2,41,55,NE,MIA,2,5,5,(11:55) S.Vereen right guard to MIA 2 for 3 yards (O.Vernon).,7,0,2012 -20121230_MIA@NE,2,41,12,NE,MIA,3,2,2,(11:12) (Shotgun) D.Woodhead up the middle to MIA 1 for 1 yard (C.Wake; C.Clemons).,7,0,2012 -20121230_MIA@NE,2,40,30,NE,MIA,4,1,1,(10:30) D.Connolly reported in as eligible. S.Ridley up the middle for 1 yard TOUCHDOWN.,7,0,2012 -20121230_MIA@NE,2,40,30,NE,MIA,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,0,2012 -20121230_MIA@NE,2,40,30,NE,MIA,,,1,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,14,0,2012 -20121230_MIA@NE,2,40,26,MIA,NE,1,10,80,(10:26) (Shotgun) R.Tannehill pass short left to R.Matthews to MIA 32 for 12 yards (K.Arrington).,0,14,2012 -20121230_MIA@NE,2,39,58,MIA,NE,1,10,68,(9:58) (No Huddle) R.Tannehill pass short right to A.Fasano to MIA 41 for 9 yards (T.Wilson).,0,14,2012 -20121230_MIA@NE,2,39,23,MIA,NE,2,1,59,(9:23) (Shotgun) R.Bush right tackle to MIA 39 for -2 yards (C.Jones; J.Mayo).,0,14,2012 -20121230_MIA@NE,2,38,45,MIA,NE,3,3,61,(8:45) (Shotgun) R.Tannehill pass incomplete deep left to R.Bush. PENALTY on NE-D.Hightower Roughing the Passer 15 yards enforced at MIA 39 - No Play.,0,14,2012 -20121230_MIA@NE,2,38,40,MIA,NE,1,10,46,(8:40) (No Huddle Shotgun) L.Miller right end to NE 44 for 2 yards (T.Wilson; C.Jones).,0,14,2012 -20121230_MIA@NE,2,37,58,MIA,NE,2,8,44,(7:58) R.Tannehill pass deep right to R.Matthews to NE 24 for 20 yards (D.McCourty).,0,14,2012 -20121230_MIA@NE,2,37,21,MIA,NE,1,10,24,(7:21) (Shotgun) R.Tannehill pass incomplete deep left to A.Binns.,0,14,2012 -20121230_MIA@NE,2,37,16,MIA,NE,2,10,24,(7:16) (Shotgun) R.Bush up the middle to NE 24 for no gain (V.Wilfork; J.Mayo).,0,14,2012 -20121230_MIA@NE,2,36,33,MIA,NE,3,10,24,(6:33) (Shotgun) R.Tannehill pass incomplete deep left to A.Fasano (C.Jones). NE-R.Ninkovich was injured during the play.,0,14,2012 -20121230_MIA@NE,2,36,27,MIA,NE,4,10,24,(6:27) N.Kaeding 41 yard field goal is No Good Wide Left Center-J.Denney Holder-B.Fields.,0,14,2012 -20121230_MIA@NE,2,36,24,NE,MIA,1,10,69,(6:24) T.Brady pass incomplete deep left to B.Lloyd.,14,0,2012 -20121230_MIA@NE,2,36,18,NE,MIA,2,10,69,(6:18) (Shotgun) T.Brady pass short left to A.Hernandez to NE 40 for 9 yards (B.McCann).,14,0,2012 -20121230_MIA@NE,2,35,47,NE,MIA,3,1,60,(5:47) Direct snap to S.Ridley. S.Ridley up the middle to NE 43 for 3 yards (K.Burnett; R.Starks).,14,0,2012 -20121230_MIA@NE,2,35,15,NE,MIA,1,10,57,(5:15) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,14,0,2012 -20121230_MIA@NE,2,35,12,NE,MIA,2,10,57,(5:12) D.Woodhead left end to MIA 46 for 11 yards (K.Burnett).,14,0,2012 -20121230_MIA@NE,2,34,55,NE,MIA,1,10,46,(4:55) S.Vereen right end to MIA 44 for 2 yards (C.Wake).,14,0,2012 -20121230_MIA@NE,2,34,19,NE,MIA,2,8,44,(4:19) (Shotgun) T.Brady pass short left to D.Woodhead to MIA 30 for 14 yards (K.Burnett). NE 12-Brady 3788 career completions passing Vinny Testaverde for 8th in NFL history.,14,0,2012 -20121230_MIA@NE,2,33,37,NE,MIA,1,10,30,(3:37) T.Brady pass short left to A.Hernandez to MIA 25 for 5 yards (R.Jones; K.Dansby).,14,0,2012 -20121230_MIA@NE,2,32,56,NE,MIA,2,5,25,(2:56) S.Ridley right end to MIA 24 for 1 yard (K.Dansby).,14,0,2012 -20121230_MIA@NE,2,32,15,NE,MIA,3,4,24,(2:15) (Shotgun) T.Brady pass short left to W.Welker to MIA 15 for 9 yards (J.Wilson).,14,0,2012 -20121230_MIA@NE,2,32,0,NE,MIA,1,10,15,(2:00) PENALTY on NE-L.Mankins False Start 5 yards enforced at MIA 15 - No Play.,14,0,2012 -20121230_MIA@NE,2,32,0,NE,MIA,1,15,20,(2:00) S.Vereen up the middle to MIA 12 for 8 yards (K.Burnett; K.Dansby).,14,0,2012 -20121230_MIA@NE,2,31,53,NE,MIA,2,7,12,(1:53) S.Vereen right guard to MIA 8 for 4 yards (C.Wake; J.Wilson).,14,0,2012 -20121230_MIA@NE,2,31,48,NE,MIA,3,3,8,(1:48) D.Woodhead left guard to MIA 2 for 6 yards (R.Jones; K.Dansby).,14,0,2012 -20121230_MIA@NE,2,31,4,NE,MIA,1,2,2,(1:04) D.Connolly reported in as eligible. S.Ridley left guard for 2 yards TOUCHDOWN.,14,0,2012 -20121230_MIA@NE,2,31,4,NE,MIA,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,0,2012 -20121230_MIA@NE,2,31,4,NE,MIA,,,2,S.Gostkowski kicks 65 yards from NE 35 to MIA 0. M.Thigpen to MIA 22 for 22 yards (K.Arrington).,21,0,2012 -20121230_MIA@NE,2,30,55,MIA,NE,1,10,78,(:55) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 30 for 8 yards (D.McCourty).,0,21,2012 -20121230_MIA@NE,2,30,34,MIA,NE,2,2,70,(:34) (No Huddle Shotgun) R.Tannehill pass short right to L.Miller ran ob at MIA 33 for 3 yards. PENALTY on MIA-N.Garner Offensive Holding 10 yards enforced at MIA 30 - No Play.,0,21,2012 -20121230_MIA@NE,2,30,28,MIA,NE,2,12,80,(:28) L.Miller left end to MIA 22 for 2 yards (C.Jones).,0,21,2012 -20121230_MIA@NE,2,30,21,MIA,NE,3,10,78,(:21) (Shotgun) R.Tannehill pass short left to L.Miller to MIA 32 for 10 yards (K.Arrington).,0,21,2012 -20121230_MIA@NE,3,30,0,NE,MIA,,,78,S.Gostkowski kicks 63 yards from NE 35 to MIA 2. M.Thigpen to MIA 6 for 4 yards (M.Williams; T.Wilson).,21,0,2012 -20121230_MIA@NE,3,29,54,MIA,NE,1,10,94,(14:54) R.Tannehill pass incomplete short left to A.Fasano (C.Jones).,0,21,2012 -20121230_MIA@NE,3,29,50,MIA,NE,2,10,94,(14:50) (Shotgun) R.Tannehill pass short middle to A.Fasano to MIA 15 for 9 yards (P.Chung; D.Hightower). NE-P.Chung was injured during the play.,0,21,2012 -20121230_MIA@NE,3,29,16,MIA,NE,3,1,85,(14:16) R.Bush up the middle to MIA 16 for 1 yard (K.Love; V.Wilfork).,0,21,2012 -20121230_MIA@NE,3,28,36,MIA,NE,1,10,84,(13:36) R.Bush up the middle to MIA 13 for -3 yards (C.Jones).,0,21,2012 -20121230_MIA@NE,3,28,1,MIA,NE,2,13,87,(13:01) (Shotgun) R.Tannehill pass short right to R.Bush pushed ob at MIA 32 for 19 yards (J.Mayo).,0,21,2012 -20121230_MIA@NE,3,27,38,MIA,NE,1,10,68,(12:38) (Shotgun) R.Tannehill pass incomplete short middle to R.Bush. shovel pass,0,21,2012 -20121230_MIA@NE,3,27,33,MIA,NE,2,10,68,(12:33) (Shotgun) R.Tannehill sacked at MIA 30 for -2 yards (V.Wilfork).,0,21,2012 -20121230_MIA@NE,3,27,0,MIA,NE,3,12,70,(12:00) (Shotgun) R.Tannehill sacked at MIA 25 for -5 yards (T.Scott).,0,21,2012 -20121230_MIA@NE,3,26,27,MIA,NE,4,17,75,(11:27) B.Fields punts 57 yards to NE 18 Center-J.Denney. W.Welker MUFFS catch ball out of bounds at NE 18.,0,21,2012 -20121230_MIA@NE,3,26,18,NE,MIA,1,10,82,(11:18) (Shotgun) T.Brady pass short left to B.Lloyd to NE 27 for 9 yards (B.McCann).,21,0,2012 -20121230_MIA@NE,3,25,38,NE,MIA,2,1,73,(10:38) S.Ridley left tackle to NE 27 for no gain (K.Burnett).,21,0,2012 -20121230_MIA@NE,3,25,2,NE,MIA,3,1,73,(10:02) S.Ridley up the middle to NE 30 for 3 yards (R.Starks).,21,0,2012 -20121230_MIA@NE,3,24,24,NE,MIA,1,10,70,(9:24) T.Brady sacked at NE 30 for 0 yards (J.Odrick). PENALTY on MIA-S.Smith Defensive Holding 5 yards enforced at NE 30 - No Play.,21,0,2012 -20121230_MIA@NE,3,23,56,NE,MIA,1,10,65,(8:56) S.Ridley left end to NE 35 for no gain (J.Trusnik; K.Dansby).,21,0,2012 -20121230_MIA@NE,3,23,16,NE,MIA,2,10,65,(8:16) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,21,0,2012 -20121230_MIA@NE,3,23,13,NE,MIA,3,10,65,(8:13) (Shotgun) T.Brady sacked at NE 27 for -8 yards (B.McCann).,21,0,2012 -20121230_MIA@NE,3,22,41,NE,MIA,4,18,73,(7:41) Z.Mesko punts 56 yards to MIA 17 Center-D.Aiken. M.Thigpen to MIA 31 for 14 yards (B.Bolden).,21,0,2012 -20121230_MIA@NE,3,22,30,MIA,NE,1,10,69,(7:30) (Shotgun) R.Tannehill pass short left to J.Lane to MIA 39 for 8 yards (D.Hightower).,0,21,2012 -20121230_MIA@NE,3,21,54,MIA,NE,2,2,61,(6:54) R.Tannehill pass incomplete short middle to R.Matthews (K.Arrington).,0,21,2012 -20121230_MIA@NE,3,21,49,MIA,NE,3,2,61,(6:49) (Shotgun) R.Tannehill pass deep middle to A.Binns to NE 40 for 21 yards (P.Chung).,0,21,2012 -20121230_MIA@NE,3,21,21,MIA,NE,1,10,40,(6:21) (No Huddle Shotgun) R.Tannehill pass short left to A.Binns pushed ob at NE 31 for 9 yards (K.Arrington).,0,21,2012 -20121230_MIA@NE,3,20,59,MIA,NE,2,1,31,(5:59) (Shotgun) R.Bush right end to NE 22 for 9 yards (B.Deaderick).,0,21,2012 -20121230_MIA@NE,3,20,25,MIA,NE,1,10,22,(5:25) R.Tannehill pass short right to A.Fasano to NE 9 for 13 yards (P.Chung). MIA-A.Fasano was injured during the play.,0,21,2012 -20121230_MIA@NE,3,19,55,MIA,NE,1,9,9,(4:55) R.Tannehill pass short left to J.Lane to NE 3 for 6 yards (K.Arrington; C.Jones). shovel pass,0,21,2012 -20121230_MIA@NE,3,19,19,NE,MIA,2,3,1,(4:19) (Shotgun) R.Tannehill FUMBLES (Aborted) at NE 6 RECOVERED by NE-D.Hightower at NE 1.,21,0,2012 -20121230_MIA@NE,3,19,13,NE,MIA,1,10,99,(4:13) T.Brady pass incomplete short left to M.Hoomanawanui [K.Burnett].,21,0,2012 -20121230_MIA@NE,3,19,10,NE,MIA,2,10,99,(4:10) S.Ridley right tackle to NE 14 for 13 yards (C.Clemons). NE 22-Ridley 1235 rush yards on season 4th-best in franchise history.,21,0,2012 -20121230_MIA@NE,3,18,31,NE,MIA,1,10,86,(3:31) S.Ridley up the middle to NE 22 for 8 yards (J.Trusnik).,21,0,2012 -20121230_MIA@NE,3,17,53,NE,MIA,2,2,78,(2:53) S.Ridley right end to NE 21 for -1 yards (K.Dansby).,21,0,2012 -20121230_MIA@NE,3,17,12,NE,MIA,3,3,79,(2:12) (Shotgun) T.Brady pass short middle to W.Welker pushed ob at NE 41 for 20 yards (C.Clemons).,21,0,2012 -20121230_MIA@NE,3,16,39,NE,MIA,1,10,59,(1:39) T.Brady pass deep middle intended for W.Welker INTERCEPTED by C.Clemons at MIA 41. C.Clemons for 59 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. T.Brady pass incomplete deep middle to W.Welker.,21,0,2012 -20121230_MIA@NE,3,16,35,NE,MIA,2,10,59,(1:35) (Shotgun) T.Brady pass incomplete deep right to R.Gronkowski.,21,0,2012 -20121230_MIA@NE,3,16,30,NE,MIA,3,10,59,(1:30) (Shotgun) T.Brady pass short right to W.Welker pushed ob at 50 for 9 yards (J.Wilson).,21,0,2012 -20121230_MIA@NE,3,16,18,NE,MIA,4,1,50,(1:18) Z.Mesko punts 35 yards to MIA 15 Center-D.Aiken fair catch by M.Thigpen.,21,0,2012 -20121230_MIA@NE,3,16,11,MIA,NE,1,10,85,(1:11) (Shotgun) R.Tannehill sacked at MIA 14 for -1 yards (J.Francis).,0,21,2012 -20121230_MIA@NE,3,15,45,MIA,NE,2,11,86,(:45) (Shotgun) R.Tannehill pass incomplete short left to A.Binns (P.Chung).,0,21,2012 -20121230_MIA@NE,3,15,40,MIA,NE,3,11,86,(:40) (Shotgun) R.Tannehill pass incomplete deep right to B.Hartline.,0,21,2012 -20121230_MIA@NE,3,15,34,MIA,NE,4,11,86,(:34) B.Fields punts 43 yards to NE 43 Center-J.Denney. W.Welker to MIA 45 for 12 yards (O.Vernon).,0,21,2012 -20121230_MIA@NE,3,15,24,NE,MIA,1,10,45,(:24) S.Ridley right end to MIA 41 for 4 yards (K.Dansby; J.Freeny). PENALTY on NE-R.Wendell Offensive Holding 10 yards enforced at MIA 45 - No Play.,21,0,2012 -20121230_MIA@NE,4,15,0,NE,MIA,1,20,55,(15:00) (Shotgun) T.Brady pass incomplete short middle to W.Welker (J.Odrick).,21,0,2012 -20121230_MIA@NE,4,14,56,NE,MIA,2,20,55,(14:56) T.Brady pass short left to D.Woodhead to MIA 47 for 8 yards (J.Freeny).,21,0,2012 -20121230_MIA@NE,4,14,21,NE,MIA,3,12,47,(14:21) (Shotgun) T.Brady pass short middle to D.Woodhead to MIA 39 for 8 yards (O.Vernon; R.Jones).,21,0,2012 -20121230_MIA@NE,4,13,39,NE,MIA,4,4,39,(13:39) Z.Mesko punts 29 yards to MIA 10 Center-D.Aiken fair catch by R.Matthews.,21,0,2012 -20121230_MIA@NE,4,13,33,MIA,NE,1,10,90,(13:33) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 32 for 22 yards (D.McCourty).,0,21,2012 -20121230_MIA@NE,4,13,3,MIA,NE,1,10,68,(13:03) (No Huddle Shotgun) R.Tannehill pass short right to L.Miller pushed ob at MIA 44 for 12 yards (J.Mayo).,0,21,2012 -20121230_MIA@NE,4,12,43,MIA,NE,1,10,56,(12:43) (No Huddle Shotgun) R.Tannehill pass incomplete short middle to A.Binns.,0,21,2012 -20121230_MIA@NE,4,12,40,MIA,NE,2,10,56,(12:40) (Shotgun) R.Tannehill pass short right to B.Hartline to MIA 47 for 3 yards (D.McCourty).,0,21,2012 -20121230_MIA@NE,4,12,0,MIA,NE,3,7,53,(12:00) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline [D.Hightower].,0,21,2012 -20121230_MIA@NE,4,11,53,MIA,NE,4,7,53,(11:53) (No Huddle Shotgun) R.Tannehill pass incomplete short left to A.Binns.,0,21,2012 -20121230_MIA@NE,4,11,47,NE,MIA,1,10,47,(11:47) W.Welker left end ran ob at MIA 36 for 11 yards. reverse,21,0,2012 -20121230_MIA@NE,4,11,21,NE,MIA,1,10,36,(11:21) S.Ridley up the middle to MIA 30 for 6 yards (C.Wake; R.Jones).,21,0,2012 -20121230_MIA@NE,4,10,41,NE,MIA,2,4,30,(10:41) S.Ridley left tackle to MIA 30 for no gain (J.Freeny).,21,0,2012 -20121230_MIA@NE,4,10,8,NE,MIA,3,4,30,(10:08) (Shotgun) T.Brady pass incomplete short left to R.Gronkowski.,21,0,2012 -20121230_MIA@NE,4,10,6,NE,MIA,4,4,30,(10:06) (Shotgun) T.Brady pass short left to W.Welker pushed ob at MIA 23 for 7 yards (B.McCann).,21,0,2012 -20121230_MIA@NE,4,9,25,NE,MIA,1,10,23,(9:25) T.Brady pass deep middle to R.Gronkowski for 23 yards TOUCHDOWN.,21,0,2012 -20121230_MIA@NE,4,9,25,NE,MIA,,,23,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,0,2012 -20121230_MIA@NE,4,9,25,NE,MIA,,,23,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,28,0,2012 -20121230_MIA@NE,4,9,20,MIA,NE,1,10,80,(9:20) (Shotgun) R.Tannehill pass short left to R.Matthews to MIA 24 for 4 yards (K.Arrington).,0,28,2012 -20121230_MIA@NE,4,8,50,MIA,NE,2,6,76,(8:50) (No Huddle Shotgun) R.Tannehill pass short right to R.Bush pushed ob at MIA 28 for 4 yards (P.Chung).,0,28,2012 -20121230_MIA@NE,4,8,30,MIA,NE,3,2,72,(8:30) (Shotgun) R.Tannehill pass short middle to A.Binns to MIA 38 for 10 yards (S.Gregory). MIA-R.Incognito was injured during the play.,0,28,2012 -20121230_MIA@NE,4,7,57,MIA,NE,1,10,62,(7:57) (Shotgun) R.Tannehill pass incomplete short left to R.Bush.,0,28,2012 -20121230_MIA@NE,4,7,50,MIA,NE,2,10,62,(7:50) (Shotgun) R.Tannehill sacked at MIA 34 for -4 yards (D.Martin).,0,28,2012 -20121230_MIA@NE,4,7,14,MIA,NE,3,14,66,(7:14) (Shotgun) R.Tannehill sacked at MIA 31 for -3 yards (J.Francis).,0,28,2012 -20121230_MIA@NE,4,6,42,MIA,NE,4,17,69,(6:42) B.Fields punts 53 yards to NE 16 Center-J.Denney downed by MIA-J.Denney.,0,28,2012 -20121230_MIA@NE,4,6,27,NE,MIA,1,10,84,(6:27) S.Ridley left tackle to NE 27 for 11 yards (R.Jones).,28,0,2012 -20121230_MIA@NE,4,5,45,NE,MIA,1,10,73,(5:45) B.Bolden right guard to NE 27 for no gain (P.Soliai; J.Trusnik).,28,0,2012 -20121230_MIA@NE,4,5,3,NE,MIA,2,10,73,(5:03) B.Bolden up the middle to MIA 49 for 24 yards (J.Freeny).,28,0,2012 -20121230_MIA@NE,4,4,19,NE,MIA,1,10,49,(4:19) B.Bolden up the middle to MIA 47 for 2 yards (J.Freeny).,28,0,2012 -20121230_MIA@NE,4,3,37,NE,MIA,2,8,47,(3:37) B.Bolden right guard to MIA 45 for 2 yards (J.Trusnik; J.Freeny).,28,0,2012 -20121230_MIA@NE,4,2,53,NE,MIA,3,6,45,(2:53) (Shotgun) T.Brady pass short left to W.Welker to MIA 38 for 7 yards (J.Wilson).,28,0,2012 -20121230_MIA@NE,4,2,11,NE,MIA,1,10,38,(2:11) S.Ridley up the middle to MIA 34 for 4 yards (K.Dansby).,28,0,2012 -20121230_MIA@NE,4,2,0,NE,MIA,2,6,34,(2:00) B.Bolden left guard to MIA 35 for -1 yards (J.Odrick).,28,0,2012 -20121230_MIA@NE,4,1,23,NE,MIA,3,7,35,(1:23) B.Bolden right tackle to MIA 36 for -1 yards (P.Soliai).,28,0,2012 -20121230_MIA@NE,4,0,40,NE,MIA,4,8,36,(:40) Z.Mesko punts 33 yards to MIA 3 Center-D.Aiken downed by NE-M.Williams.,28,0,2012 -20121230_MIA@NE,4,0,32,MIA,NE,1,10,97,(:32) R.Bush up the middle to MIA 21 for 18 yards (K.Arrington).,0,28,2012 -20121230_MIA@NE,4,0,32,MIA,NE,,,97,                      ,0,28,2012 -20121230_KC@DEN,1,0,0,DEN,KC,,,97,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20121230_KC@DEN,1,60,0,KC,DEN,1,10,80,(15:00) J.Charles right tackle to KC 20 for no gain (K.Vickerson).,0,0,2012 -20121230_KC@DEN,1,59,28,KC,DEN,2,10,80,(14:28) J.Charles right tackle to KC 22 for 2 yards (V.Miller; W.Woodyard).,0,0,2012 -20121230_KC@DEN,1,58,46,KC,DEN,3,8,78,(13:46) (Shotgun) B.Quinn pass short right to S.Draughn to KC 20 for -2 yards (C.Bailey) [R.Ayers].,0,0,2012 -20121230_KC@DEN,1,58,13,KC,DEN,4,10,80,(13:13) D.Colquitt punts 56 yards to DEN 24 Center-T.Gafford. J.Leonhard to DEN 31 for 7 yards (C.Greenwood).,0,0,2012 -20121230_KC@DEN,1,58,2,DEN,KC,1,10,69,(13:02) P.Manning pass deep left to B.Stokley ran ob at KC 40 for 29 yards.,0,0,2012 -20121230_KC@DEN,1,57,46,DEN,KC,1,10,40,(12:46) (Shotgun) P.Manning pass short right to E.Decker to KC 31 for 9 yards (E.Berry).,0,0,2012 -20121230_KC@DEN,1,57,24,DEN,KC,2,1,31,(12:24) K.Moreno right tackle to KC 28 for 3 yards (J.Houston).,0,0,2012 -20121230_KC@DEN,1,56,56,DEN,KC,1,10,28,(11:56) (Shotgun) P.Manning pass short right to E.Decker to KC 14 for 14 yards (B.Flowers; E.Berry).,0,0,2012 -20121230_KC@DEN,1,56,28,DEN,KC,1,10,14,(11:28) R.Hillman right tackle to KC 10 for 4 yards (J.Houston).,0,0,2012 -20121230_KC@DEN,1,55,48,DEN,KC,2,6,10,(10:48) (Shotgun) P.Manning pass incomplete short right to D.Thomas (B.Flowers).,0,0,2012 -20121230_KC@DEN,1,55,39,DEN,KC,3,6,10,(10:39) (Shotgun) P.Manning pass short left to J.Hester to KC 3 for 7 yards (J.Houston).,0,0,2012 -20121230_KC@DEN,1,55,0,DEN,KC,1,3,3,(10:00) K.Moreno left tackle for 3 yards TOUCHDOWN.,0,0,2012 -20121230_KC@DEN,1,55,0,DEN,KC,,,3,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20121230_KC@DEN,1,55,0,DEN,KC,,,3,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,0,2012 -20121230_KC@DEN,1,54,56,KC,DEN,1,10,80,(9:56) B.Quinn pass short right to D.Wylie pushed ob at KC 25 for 5 yards (C.Bailey).,0,7,2012 -20121230_KC@DEN,1,54,33,KC,DEN,2,5,75,(9:33) P.Hillis right guard to KC 27 for 2 yards (K.Vickerson).,0,7,2012 -20121230_KC@DEN,1,54,1,KC,DEN,3,3,73,(9:01) S.Draughn right end to KC 35 for 8 yards (R.Moore).,0,7,2012 -20121230_KC@DEN,1,53,30,KC,DEN,1,10,65,(8:30) S.Draughn right tackle to KC 36 for 1 yard (R.Ayers).,0,7,2012 -20121230_KC@DEN,1,52,51,KC,DEN,2,9,64,(7:51) J.Charles left end pushed ob at KC 42 for 6 yards (C.Harris).,0,7,2012 -20121230_KC@DEN,1,52,28,KC,DEN,3,3,58,(7:28) S.Draughn left end ran ob at KC 46 for 4 yards.,0,7,2012 -20121230_KC@DEN,1,52,5,KC,DEN,1,10,54,(7:05) J.Charles right end to DEN 45 for 9 yards (R.Moore). KC-D.Stephenson was injured during the play.,0,7,2012 -20121230_KC@DEN,1,51,44,KC,DEN,2,1,45,(6:44) P.Hillis up the middle to DEN 45 for no gain (M.Adams; J.Bannan).,0,7,2012 -20121230_KC@DEN,1,51,8,KC,DEN,3,1,45,(6:08) J.Charles left tackle to DEN 44 for 1 yard (D.Wolfe).,0,7,2012 -20121230_KC@DEN,1,50,27,KC,DEN,1,10,44,(5:27) P.Hillis right guard to DEN 46 for -2 yards (K.Vickerson).,0,7,2012 -20121230_KC@DEN,1,49,48,KC,DEN,2,12,46,(4:48) (Shotgun) B.Quinn pass short right to D.Wylie to DEN 40 for 6 yards (R.Moore).,0,7,2012 -20121230_KC@DEN,1,49,8,KC,DEN,3,6,40,(4:08) (Shotgun) B.Quinn pass incomplete short left to D.Wylie (T.Carter).,0,7,2012 -20121230_KC@DEN,1,49,4,KC,DEN,4,6,40,(4:04) D.Colquitt punts 31 yards to DEN 9 Center-T.Gafford fair catch by J.Leonhard.,0,7,2012 -20121230_KC@DEN,1,48,56,DEN,KC,1,10,91,(3:56) (Shotgun) K.Moreno up the middle to DEN 10 for 1 yard (E.Berry).,7,0,2012 -20121230_KC@DEN,1,48,26,DEN,KC,2,9,90,(3:26) (Shotgun) P.Manning pass short left to K.Moreno to DEN 20 for 10 yards (D.Johnson).,7,0,2012 -20121230_KC@DEN,1,47,51,DEN,KC,1,10,80,(2:51) R.Hillman up the middle to DEN 25 for 5 yards (J.Brown).,7,0,2012 -20121230_KC@DEN,1,47,28,DEN,KC,2,5,75,(2:28) (Shotgun) P.Manning pass short right to D.Thomas pushed ob at DEN 45 for 20 yards (J.Arenas).,7,0,2012 -20121230_KC@DEN,1,46,54,DEN,KC,1,10,55,(1:54) (Shotgun) P.Manning pass deep left to D.Thomas to KC 31 for 24 yards (J.Arenas).,7,0,2012 -20121230_KC@DEN,1,46,25,DEN,KC,1,10,31,(1:25) R.Hillman right tackle to KC 27 for 4 yards (D.Johnson). FUMBLES (D.Johnson) RECOVERED by KC-B.Flowers at KC 24. B.Flowers to DEN 12 for 64 yards (J.Dreessen).,7,0,2012 -20121230_KC@DEN,1,46,9,KC,DEN,1,10,12,(1:09) J.Charles right tackle to DEN 6 for 6 yards (C.Bailey).,0,7,2012 -20121230_KC@DEN,1,45,31,KC,DEN,2,4,6,(:31) J.Charles up the middle to DEN 5 for 1 yard (K.Vickerson).,0,7,2012 -20121230_KC@DEN,2,45,0,KC,DEN,3,3,5,(15:00) (Shotgun) B.Quinn pass incomplete short middle to J.Baldwin.,0,7,2012 -20121230_KC@DEN,2,44,56,KC,DEN,4,3,5,(14:56) R.Succop 23 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20121230_KC@DEN,2,44,56,KC,DEN,,,5,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,3,7,2012 -20121230_KC@DEN,2,44,53,DEN,KC,1,10,80,(14:53) PENALTY on DEN-P.Manning Delay of Game 5 yards enforced at DEN 20 - No Play.,7,3,2012 -20121230_KC@DEN,2,44,53,DEN,KC,1,15,85,(14:53) (Shotgun) P.Manning pass incomplete deep right to A.Caldwell (B.Flowers).,7,3,2012 -20121230_KC@DEN,2,44,47,DEN,KC,2,15,85,(14:47) K.Moreno up the middle to DEN 12 for -3 yards (S.Smith).,7,3,2012 -20121230_KC@DEN,2,44,7,DEN,KC,3,18,88,(14:07) (Shotgun) PENALTY on DEN-R.Clady False Start 5 yards enforced at DEN 12 - No Play.,7,3,2012 -20121230_KC@DEN,2,43,59,DEN,KC,3,23,93,(13:59) (Shotgun) J.Hester up the middle to DEN 14 for 7 yards (D.Poe).,7,3,2012 -20121230_KC@DEN,2,43,19,DEN,KC,4,16,86,(13:19) B.Colquitt punts 51 yards to KC 35 Center-A.Brewer fair catch by D.Wylie.,7,3,2012 -20121230_KC@DEN,2,43,10,KC,DEN,1,10,65,(13:10) B.Quinn pass short left to J.Charles pushed ob at KC 49 for 14 yards (K.Brooking).,3,7,2012 -20121230_KC@DEN,2,42,47,KC,DEN,1,10,51,(12:47) S.Draughn right guard to DEN 48 for 3 yards (W.Woodyard).,3,7,2012 -20121230_KC@DEN,2,42,8,KC,DEN,2,7,48,(12:08) J.Charles left end to DEN 35 for 13 yards (M.Adams).,3,7,2012 -20121230_KC@DEN,2,41,33,KC,DEN,1,10,35,(11:33) B.Quinn pass short middle to T.Moeaki to DEN 19 for 16 yards (R.Moore).,3,7,2012 -20121230_KC@DEN,2,41,0,KC,DEN,1,10,19,(11:00) P.Hillis up the middle to DEN 13 for 6 yards (W.Woodyard).,3,7,2012 -20121230_KC@DEN,2,40,21,KC,DEN,2,4,13,(10:21) P.Hillis left end to DEN 15 for -2 yards (R.Moore).,3,7,2012 -20121230_KC@DEN,2,39,41,KC,DEN,3,6,15,(9:41) (Shotgun) B.Quinn pass incomplete short left to T.Moeaki [D.Wolfe].,3,7,2012 -20121230_KC@DEN,2,39,36,KC,DEN,4,6,15,(9:36) R.Succop 33 yard field goal is No Good Wide Left Center-T.Gafford Holder-D.Colquitt.,3,7,2012 -20121230_KC@DEN,2,39,32,DEN,KC,1,10,76,(9:32) Direction Change. K.Moreno right guard to DEN 26 for 2 yards (R.Pitoitua).,7,3,2012 -20121230_KC@DEN,2,39,8,DEN,KC,2,8,74,(9:08) (Shotgun) P.Manning pass short left to V.Green pushed ob at DEN 37 for 11 yards (T.Hali).,7,3,2012 -20121230_KC@DEN,2,38,49,DEN,KC,1,10,63,(8:49) P.Manning pass short right to D.Thomas pushed ob at DEN 46 for 9 yards (B.Flowers).,7,3,2012 -20121230_KC@DEN,2,38,12,DEN,KC,2,1,54,(8:12) K.Moreno up the middle to DEN 48 for 2 yards (E.Berry).,7,3,2012 -20121230_KC@DEN,2,37,37,DEN,KC,1,10,52,(7:37) P.Manning pass short right to E.Decker pushed ob at KC 42 for 10 yards (J.Houston).,7,3,2012 -20121230_KC@DEN,2,37,6,DEN,KC,1,10,42,(7:06) (Shotgun) P.Manning pass short left to J.Dreessen pushed ob at KC 30 for 12 yards (K.Lewis).,7,3,2012 -20121230_KC@DEN,2,36,33,DEN,KC,1,10,30,(6:33) (Shotgun) K.Moreno right tackle pushed ob at KC 13 for 17 yards (T.Hartman).,7,3,2012 -20121230_KC@DEN,2,36,11,DEN,KC,1,10,13,(6:11) L.Ball left guard to KC 11 for 2 yards (D.Poe; A.Toribio).,7,3,2012 -20121230_KC@DEN,2,35,38,DEN,KC,2,8,11,(5:38) (Shotgun) P.Manning pass short middle to E.Decker for 11 yards TOUCHDOWN.,7,3,2012 -20121230_KC@DEN,2,35,38,DEN,KC,,,11,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,3,2012 -20121230_KC@DEN,2,35,38,DEN,KC,,,11,M.Prater kicks 60 yards from DEN 35 to KC 5. D.Wylie to KC 24 for 19 yards (S.Johnson).,14,3,2012 -20121230_KC@DEN,2,35,24,KC,DEN,1,10,76,(5:24) (Shotgun) B.Quinn pass incomplete short right to D.McCluster (M.Adams).,3,14,2012 -20121230_KC@DEN,2,35,19,KC,DEN,2,10,76,(5:19) J.Charles left tackle to KC 20 for -4 yards (V.Miller).,3,14,2012 -20121230_KC@DEN,2,34,36,KC,DEN,3,14,80,(4:36) (Shotgun) S.Draughn right tackle to KC 25 for 5 yards (M.Adams). PENALTY on DEN Defensive Offside 5 yards enforced at KC 20 - No Play.,3,14,2012 -20121230_KC@DEN,2,34,5,KC,DEN,3,9,75,(4:05) (Shotgun) B.Quinn pass short left to D.McCluster to KC 30 for 5 yards (M.Adams).,3,14,2012 -20121230_KC@DEN,2,33,33,KC,DEN,4,4,70,(3:33) D.Colquitt punts 59 yards to DEN 11 Center-T.Gafford downed by KC-C.Greenwood.,3,14,2012 -20121230_KC@DEN,2,33,19,DEN,KC,1,10,89,(3:19) K.Moreno right guard to DEN 13 for 2 yards (D.Johnson).,14,3,2012 -20121230_KC@DEN,2,32,56,DEN,KC,2,8,87,(2:56) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 16 for 3 yards (T.Hartman).,14,3,2012 -20121230_KC@DEN,2,32,20,DEN,KC,3,5,84,(2:20) (Shotgun) P.Manning pass incomplete short left to J.Tamme (D.Johnson).,14,3,2012 -20121230_KC@DEN,2,32,16,DEN,KC,4,5,84,(2:16) B.Colquitt punts 53 yards to KC 31 Center-A.Brewer. D.Wylie to KC 42 for 11 yards (V.Green). PENALTY on KC-N.Thorpe Offensive Holding 10 yards enforced at KC 42.,14,3,2012 -20121230_KC@DEN,2,32,3,KC,DEN,1,10,68,(2:03) B.Quinn pass incomplete short right to J.Baldwin (D.Wolfe).,3,14,2012 -20121230_KC@DEN,2,31,59,KC,DEN,2,10,68,(1:59) (Shotgun) B.Quinn sacked at KC 27 for -5 yards (D.Wolfe).,3,14,2012 -20121230_KC@DEN,2,31,53,KC,DEN,3,15,73,(1:53) (Shotgun) B.Quinn sacked at KC 24 for -3 yards (R.Moore).,3,14,2012 -20121230_KC@DEN,2,31,49,KC,DEN,4,18,76,(1:49) D.Colquitt punts 35 yards to DEN 41 Center-T.Gafford downed by KC-T.Gafford.,3,14,2012 -20121230_KC@DEN,2,31,37,DEN,KC,1,10,59,(1:37) (Shotgun) P.Manning pass short right to B.Stokley to KC 48 for 11 yards (J.Arenas).,14,3,2012 -20121230_KC@DEN,2,31,16,DEN,KC,1,10,48,(1:16) K.Moreno right tackle to KC 46 for 2 yards (D.Johnson).,14,3,2012 -20121230_KC@DEN,2,30,56,DEN,KC,2,8,46,(:56) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at KC 33 for 13 yards (E.Berry).,14,3,2012 -20121230_KC@DEN,2,30,51,DEN,KC,1,10,33,(:51) (Shotgun) P.Manning pass incomplete short left to E.Decker.,14,3,2012 -20121230_KC@DEN,2,30,47,DEN,KC,2,10,33,(:47) (Shotgun) P.Manning pass short left to B.Stokley to KC 24 for 9 yards (J.Arenas).,14,3,2012 -20121230_KC@DEN,2,30,47,DEN,KC,3,1,24,(:47) J.Hester up the middle to KC 16 for 8 yards (D.Johnson).,14,3,2012 -20121230_KC@DEN,2,30,47,DEN,KC,1,10,16,(:47) P.Manning spiked the ball to stop the clock.,14,3,2012 -20121230_KC@DEN,2,30,15,DEN,KC,2,10,16,(:15) (Shotgun) P.Manning pass deep left to E.Decker for 16 yards TOUCHDOWN.,14,3,2012 -20121230_KC@DEN,2,30,15,DEN,KC,,,16,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,3,2012 -20121230_KC@DEN,2,30,15,DEN,KC,,,16,M.Prater kicks 60 yards from DEN 35 to KC 5. D.Wylie to KC 29 for 24 yards (A.Caldwell).,21,3,2012 -20121230_KC@DEN,2,30,2,KC,DEN,1,10,71,(:02) B.Quinn kneels to KC 28 for -1 yards.,3,21,2012 -20121230_KC@DEN,3,30,0,KC,DEN,,,71,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,3,21,2012 -20121230_KC@DEN,3,30,0,DEN,KC,1,10,80,(15:00) K.Moreno up the middle to DEN 28 for 8 yards (T.Hartman).,21,3,2012 -20121230_KC@DEN,3,29,28,DEN,KC,2,2,72,(14:28) K.Moreno up the middle to DEN 32 for 4 yards (T.Hartman).,21,3,2012 -20121230_KC@DEN,3,28,59,DEN,KC,1,10,68,(13:59) L.Ball right guard to DEN 38 for 6 yards (R.Pitoitua; T.Hartman).,21,3,2012 -20121230_KC@DEN,3,28,18,DEN,KC,2,4,62,(13:18) L.Ball right guard to KC 40 for 22 yards (K.Lewis).,21,3,2012 -20121230_KC@DEN,3,27,48,DEN,KC,1,10,40,(12:48) K.Moreno right guard to KC 40 for no gain (J.Houston).,21,3,2012 -20121230_KC@DEN,3,27,15,DEN,KC,2,10,40,(12:15) P.Manning pass short left to D.Thomas pushed ob at KC 31 for 9 yards (J.Brown).,21,3,2012 -20121230_KC@DEN,3,26,48,DEN,KC,3,1,31,(11:48) L.Ball right tackle to KC 27 for 4 yards (J.Houston).,21,3,2012 -20121230_KC@DEN,3,26,7,DEN,KC,1,10,27,(11:07) P.Manning pass short left to D.Thomas to KC 16 for 11 yards (J.Houston; J.Arenas).,21,3,2012 -20121230_KC@DEN,3,25,36,DEN,KC,1,10,16,(10:36) L.Ball right tackle to KC 15 for 1 yard (S.Smith).,21,3,2012 -20121230_KC@DEN,3,25,0,DEN,KC,2,9,15,(10:00) K.Moreno right tackle to KC 13 for 2 yards (D.Johnson).,21,3,2012 -20121230_KC@DEN,3,24,17,DEN,KC,3,7,13,(9:17) (Shotgun) P.Manning pass short middle to D.Thomas for 13 yards TOUCHDOWN.,21,3,2012 -20121230_KC@DEN,3,24,17,DEN,KC,,,13,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,21,3,2012 -20121230_KC@DEN,3,24,17,DEN,KC,,,13,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,28,3,2012 -20121230_KC@DEN,3,24,10,KC,DEN,1,10,80,(9:10) B.Quinn pass incomplete short left to J.Charles.,3,28,2012 -20121230_KC@DEN,3,24,5,KC,DEN,2,10,80,(9:05) S.Draughn right tackle to KC 27 for 7 yards (R.Moore).,3,28,2012 -20121230_KC@DEN,3,23,37,KC,DEN,3,3,73,(8:37) J.Charles right tackle to KC 32 for 5 yards (D.Williams).,3,28,2012 -20121230_KC@DEN,3,23,7,KC,DEN,1,10,68,(8:07) J.Charles left tackle to KC 30 for -2 yards (K.Vickerson). KC-J.Allen was injured during the play.,3,28,2012 -20121230_KC@DEN,3,22,49,KC,DEN,2,12,70,(7:49) (Shotgun) B.Quinn sacked at KC 22 for -8 yards (K.Brooking).,3,28,2012 -20121230_KC@DEN,3,22,22,KC,DEN,3,20,78,(7:22) (Shotgun) J.Charles left end to KC 33 for 11 yards (C.Harris).,3,28,2012 -20121230_KC@DEN,3,21,48,KC,DEN,4,9,67,(6:48) D.Colquitt punts 46 yards to DEN 21 Center-T.Gafford fair catch by J.Leonhard. PENALTY on KC Offensive 12 On-field 5 yards enforced at DEN 21.,3,28,2012 -20121230_KC@DEN,3,21,40,DEN,KC,1,10,74,(6:40) K.Moreno up the middle to DEN 29 for 3 yards (R.Pitoitua; S.Smith).,28,3,2012 -20121230_KC@DEN,3,21,3,DEN,KC,2,7,71,(6:03) (Shotgun) P.Manning pass short right to V.Green pushed ob at DEN 37 for 8 yards (J.Houston).,28,3,2012 -20121230_KC@DEN,3,20,39,DEN,KC,1,10,63,(5:39) K.Moreno left end to DEN 35 for -2 yards (E.Berry).,28,3,2012 -20121230_KC@DEN,3,19,57,DEN,KC,2,12,65,(4:57) (Shotgun) P.Manning pass short left to E.Decker to DEN 44 for 9 yards (T.Hali).,28,3,2012 -20121230_KC@DEN,3,19,13,DEN,KC,3,3,56,(4:13) (Shotgun) P.Manning pass incomplete short left to J.Tamme (T.Hartman). PENALTY on KC-T.Hartman Defensive Pass Interference 15 yards enforced at DEN 44 - No Play.,28,3,2012 -20121230_KC@DEN,3,19,7,DEN,KC,1,10,41,(4:07) L.Ball right tackle to KC 39 for 2 yards (R.Pitoitua).,28,3,2012 -20121230_KC@DEN,3,18,29,DEN,KC,2,8,39,(3:29) (Shotgun) P.Manning pass deep left to D.Thomas to KC 3 for 36 yards (J.Arenas).,28,3,2012 -20121230_KC@DEN,3,17,24,DEN,KC,1,3,3,(2:24) PENALTY on KC-J.Powe Encroachment 2 yards enforced at KC 3 - No Play.,28,3,2012 -20121230_KC@DEN,3,17,16,DEN,KC,1,1,1,(2:16) P.Manning pass incomplete short left to J.Dreessen (D.Johnson).,28,3,2012 -20121230_KC@DEN,3,17,10,DEN,KC,2,1,1,(2:10) J.Hester right guard to KC 1 for no gain (T.Hartman). PENALTY on KC Defensive Offside 0 yards enforced at KC 1 - No Play.,28,3,2012 -20121230_KC@DEN,3,16,53,DEN,KC,2,1,1,(1:53) L.Ball up the middle to KC 1 for no gain (R.Pitoitua).,28,3,2012 -20121230_KC@DEN,3,16,8,DEN,KC,3,1,1,(1:08) L.Ball left guard for 1 yard TOUCHDOWN.,28,3,2012 -20121230_KC@DEN,3,16,8,DEN,KC,,,1,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,28,3,2012 -20121230_KC@DEN,3,16,8,DEN,KC,,,1,M.Prater kicks 68 yards from DEN 35 to KC -3. D.Wylie to KC 23 for 26 yards (S.Johnson).,35,3,2012 -20121230_KC@DEN,3,15,59,KC,DEN,1,10,77,(:59) (Shotgun) B.Quinn sacked at KC 16 for -7 yards (V.Miller).,3,35,2012 -20121230_KC@DEN,3,15,29,KC,DEN,2,17,84,(:29) J.Charles right tackle to KC 20 for 4 yards (E.Dumervil).,3,35,2012 -20121230_KC@DEN,4,15,0,KC,DEN,3,13,80,(15:00) (Shotgun) J.Charles up the middle to KC 21 for 1 yard (W.Woodyard).,3,35,2012 -20121230_KC@DEN,4,14,28,KC,DEN,4,12,79,(14:28) D.Colquitt punts 46 yards to DEN 33 Center-T.Gafford out of bounds.,3,35,2012 -20121230_KC@DEN,4,14,19,DEN,KC,1,10,67,(14:19) J.Hester right end to DEN 35 for 2 yards (J.Houston).,35,3,2012 -20121230_KC@DEN,4,13,43,DEN,KC,2,8,65,(13:43) J.Hester right tackle to DEN 39 for 4 yards (D.Poe).,35,3,2012 -20121230_KC@DEN,4,13,5,DEN,KC,3,4,61,(13:05) (Shotgun) B.Osweiler pass short left to M.Willis to DEN 44 for 5 yards (J.Brown).,35,3,2012 -20121230_KC@DEN,4,12,25,DEN,KC,1,10,56,(12:25) L.Ball up the middle to DEN 45 for 1 yard (A.Toribio).,35,3,2012 -20121230_KC@DEN,4,11,47,DEN,KC,2,9,55,(11:47) L.Ball right tackle to 50 for 5 yards (B.Siler).,35,3,2012 -20121230_KC@DEN,4,11,5,DEN,KC,3,4,50,(11:05) (Shotgun) B.Osweiler pass short middle to E.Decker to KC 43 for 7 yards (J.Arenas).,35,3,2012 -20121230_KC@DEN,4,10,25,DEN,KC,1,10,43,(10:25) J.Hester left tackle to KC 25 for 18 yards (K.Lewis).,35,3,2012 -20121230_KC@DEN,4,9,43,DEN,KC,1,10,25,(9:43) L.Ball right guard to KC 24 for 1 yard (S.Smith).,35,3,2012 -20121230_KC@DEN,4,9,0,DEN,KC,2,9,24,(9:00) L.Ball right guard to KC 24 for no gain (S.Smith).,35,3,2012 -20121230_KC@DEN,4,8,18,DEN,KC,3,9,24,(8:18) (Shotgun) B.Osweiler pass incomplete short left to J.Tamme.,35,3,2012 -20121230_KC@DEN,4,8,13,DEN,KC,4,9,24,(8:13) M.Prater 42 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,35,3,2012 -20121230_KC@DEN,4,8,13,DEN,KC,,,24,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,38,3,2012 -20121230_KC@DEN,4,8,9,KC,DEN,1,10,80,(8:09) B.Quinn pass short right to T.Moeaki to KC 25 for 5 yards (R.Moore).,3,38,2012 -20121230_KC@DEN,4,7,36,KC,DEN,2,5,75,(7:36) B.Quinn pass incomplete short middle to T.Moeaki.,3,38,2012 -20121230_KC@DEN,4,7,31,KC,DEN,3,5,75,(7:31) (Shotgun) B.Quinn pass incomplete short left to D.Wylie (C.Harris).,3,38,2012 -20121230_KC@DEN,4,7,26,KC,DEN,4,5,75,(7:26) D.Colquitt punts 45 yards to DEN 30 Center-T.Gafford. J.Leonhard to DEN 30 for no gain (P.DiMarco). Penalty on DEN-A.Caldwell Illegal Block Above the Waist declined. PENALTY on DEN-N.Irving Offensive Holding 10 yards enforced at DEN 30.,3,38,2012 -20121230_KC@DEN,4,7,13,DEN,KC,1,10,80,(7:13) L.Ball right tackle to DEN 23 for 3 yards (B.Siler).,38,3,2012 -20121230_KC@DEN,4,6,32,DEN,KC,2,7,77,(6:32) L.Ball right tackle to DEN 42 for 19 yards (K.Lewis).,38,3,2012 -20121230_KC@DEN,4,5,49,DEN,KC,1,10,58,(5:49) J.Hester right tackle to KC 45 for 13 yards (B.Flowers; K.Lewis).,38,3,2012 -20121230_KC@DEN,4,5,6,DEN,KC,1,10,45,(5:06) J.Hester up the middle to KC 42 for 3 yards (R.Pitoitua).,38,3,2012 -20121230_KC@DEN,4,4,21,DEN,KC,2,7,42,(4:21) L.Ball up the middle to KC 43 for -1 yards (J.Powe).,38,3,2012 -20121230_KC@DEN,4,3,39,DEN,KC,3,8,43,(3:39) (Shotgun) B.Osweiler pass incomplete short left to A.Caldwell.,38,3,2012 -20121230_KC@DEN,4,3,34,DEN,KC,4,8,43,(3:34) B.Colquitt punts 30 yards to KC 13 Center-A.Brewer out of bounds.,38,3,2012 -20121230_KC@DEN,4,3,25,KC,DEN,1,10,87,(3:25) (Shotgun) C.Gray up the middle to KC 15 for 2 yards (N.Irving). PENALTY on DEN-R.Ayers Defensive Offside 5 yards enforced at KC 13 - No Play.,3,38,2012 -20121230_KC@DEN,4,3,19,KC,DEN,1,5,82,(3:19) C.Gray left tackle to KC 24 for 6 yards (M.Jackson; R.Ayers).,3,38,2012 -20121230_KC@DEN,4,2,56,KC,DEN,1,10,76,(2:56) (Shotgun) B.Quinn scrambles up the middle to KC 29 for 5 yards.,3,38,2012 -20121230_KC@DEN,4,2,34,KC,DEN,2,5,71,(2:34) (Shotgun) C.Gray left tackle to KC 32 for 3 yards (M.Unrein).,3,38,2012 -20121230_KC@DEN,4,2,0,KC,DEN,3,2,68,(2:00) (Shotgun) B.Quinn pass incomplete deep right to J.Newsome.,3,38,2012 -20121230_KC@DEN,4,1,55,KC,DEN,4,2,68,(1:55) D.Colquitt punts 55 yards to DEN 13 Center-T.Gafford fair catch by J.Leonhard.,3,38,2012 -20121230_KC@DEN,4,1,47,DEN,KC,1,10,87,(1:47) B.Osweiler kneels to DEN 11 for -2 yards.,38,3,2012 -20121230_KC@DEN,4,1,7,DEN,KC,2,12,89,(1:07) B.Osweiler kneels to DEN 9 for -2 yards.,38,3,2012 -20121230_KC@DEN,4,0,34,DEN,KC,3,14,91,(:34) B.Osweiler kneels to DEN 7 for -2 yards.,38,3,2012 -20121230_KC@DEN,4,0,34,DEN,KC,,,91,                      ,38,3,2012 -20121230_OAK@SD,1,0,0,OAK,SD,,,91,S.Janikowski kicks 64 yards from OAK 35 to SD 1. M.Spurlock for 99 yards TOUCHDOWN.,0,0,2012 -20121230_OAK@SD,1,0,0,SD,OAK,,,91,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,0,0,2012 -20121230_OAK@SD,1,0,0,SD,OAK,,,91,N.Novak kicks 66 yards from SD 35 to OAK -1. M.Goodson to OAK 14 for 15 yards (B.Bird).,7,0,2012 -20121230_OAK@SD,1,59,41,OAK,SD,1,10,86,(14:41) D.McFadden left tackle to OAK 19 for 5 yards (C.Thomas D.Williams).,0,7,2012 -20121230_OAK@SD,1,59,5,OAK,SD,2,5,81,(14:05) D.McFadden right tackle to OAK 23 for 4 yards (C.Thomas E.Weddle).,0,7,2012 -20121230_OAK@SD,1,58,25,OAK,SD,3,1,77,(13:25) (Shotgun) T.Pryor right end pushed ob at OAK 22 for -1 yards (C.Lynch).,0,7,2012 -20121230_OAK@SD,1,57,51,OAK,SD,4,2,78,(12:51) S.Lechler punts 58 yards to SD 20 Center-J.Condo. M.Spurlock ran ob at SD 30 for 10 yards (K.Clayton).,0,7,2012 -20121230_OAK@SD,1,57,38,SD,OAK,1,10,70,(12:38) J.Battle left end to SD 30 for no gain (T.Kelly).,7,0,2012 -20121230_OAK@SD,1,57,1,SD,OAK,2,10,70,(12:01) J.Battle left end to SD 33 for 3 yards (T.Kelly).,7,0,2012 -20121230_OAK@SD,1,56,17,SD,OAK,3,7,67,(11:17) (Shotgun) P.Rivers sacked at SD 27 for -6 yards (L.Houston).,7,0,2012 -20121230_OAK@SD,1,55,42,SD,OAK,4,13,73,(10:42) M.Scifres punts 44 yards to OAK 29 Center-K.Nelson. D.Moore to OAK 29 for no gain (D.Rosario M.Ingram).,7,0,2012 -20121230_OAK@SD,1,55,30,OAK,SD,1,10,71,(10:30) T.Pryor pass incomplete short middle to M.Reece.,0,7,2012 -20121230_OAK@SD,1,55,24,OAK,SD,2,10,71,(10:24) D.McFadden up the middle to OAK 36 for 7 yards (D.Williams).,0,7,2012 -20121230_OAK@SD,1,54,44,OAK,SD,3,3,64,(9:44) (Shotgun) T.Pryor pass incomplete short middle to B.Myers.,0,7,2012 -20121230_OAK@SD,1,54,38,OAK,SD,4,3,64,(9:38) S.Lechler punts 35 yards to SD 29 Center-J.Condo out of bounds.,0,7,2012 -20121230_OAK@SD,1,54,31,SD,OAK,1,10,71,(9:31) J.Battle left tackle to SD 30 for 1 yard (L.Houston P.Wheeler).,7,0,2012 -20121230_OAK@SD,1,53,51,SD,OAK,2,9,70,(8:51) (Shotgun) P.Rivers pass short right to E.Royal to SD 41 for 11 yards (M.Giordano M.Huff).,7,0,2012 -20121230_OAK@SD,1,53,3,SD,OAK,1,10,59,(8:03) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,7,0,2012 -20121230_OAK@SD,1,52,59,SD,OAK,2,10,59,(7:59) R.Brown right guard to SD 44 for 3 yards (M.Mitchell).,7,0,2012 -20121230_OAK@SD,1,52,17,SD,OAK,3,7,56,(7:17) (Shotgun) P.Rivers pass deep left to E.Royal to OAK 25 for 31 yards (J.Hanson) [D.Bryant]. PENALTY on OAK-D.Bryant Roughing the Passer 13 yards enforced at OAK 25.,7,0,2012 -20121230_OAK@SD,1,51,36,SD,OAK,1,10,12,(6:36) J.Battle right end to OAK 16 for -4 yards (O.Gaither).,7,0,2012 -20121230_OAK@SD,1,50,55,SD,OAK,2,14,16,(5:55) (Shotgun) PENALTY on SD-J.Clary False Start 5 yards enforced at OAK 16 - No Play.,7,0,2012 -20121230_OAK@SD,1,50,36,SD,OAK,2,19,21,(5:36) (Shotgun) R.Brown up the middle to OAK 15 for 6 yards (L.Houston).,7,0,2012 -20121230_OAK@SD,1,49,55,SD,OAK,3,13,15,(4:55) (Shotgun) P.Rivers pass short left to R.Brown to OAK 12 for 3 yards (J.Hanson).,7,0,2012 -20121230_OAK@SD,1,49,14,SD,OAK,4,10,12,(4:14) N.Novak 30 yard field goal is GOOD Center-K.Nelson Holder-M.Scifres.,7,0,2012 -20121230_OAK@SD,1,49,14,SD,OAK,,,12,N.Novak kicks 68 yards from SD 35 to OAK -3. M.Goodson Touchback.,10,0,2012 -20121230_OAK@SD,1,49,11,OAK,SD,1,10,80,(4:11) T.Pryor pass incomplete deep right to D.Heyward-Bey. PENALTY on SD-Q.Jammer Illegal Contact 5 yards enforced at OAK 20 - No Play.,0,10,2012 -20121230_OAK@SD,1,49,4,OAK,SD,1,10,75,(4:04) D.McFadden left end to OAK 28 for 3 yards (D.Williams).,0,10,2012 -20121230_OAK@SD,1,48,23,OAK,SD,2,7,72,(3:23) D.McFadden left end to OAK 33 for 5 yards (C.Lynch C.Thomas).,0,10,2012 -20121230_OAK@SD,1,47,42,OAK,SD,3,2,67,(2:42) T.Pryor pass short right to R.Streater to OAK 43 for 10 yards (A.Cason).,0,10,2012 -20121230_OAK@SD,1,47,1,OAK,SD,1,10,57,(2:01) T.Pryor pass short left to B.Myers to SD 40 for 17 yards (E.Weddle A.Cason).,0,10,2012 -20121230_OAK@SD,1,46,12,OAK,SD,1,10,40,(1:12) M.Goodson right end to SD 31 for 9 yards (E.Weddle K.Reyes).,0,10,2012 -20121230_OAK@SD,1,45,28,OAK,SD,2,1,31,(:28) T.Pryor pass short left to D.Heyward-Bey to SD 27 for 4 yards (M.Gilchrist A.Cason).,0,10,2012 -20121230_OAK@SD,2,45,0,OAK,SD,1,10,27,(15:00) T.Pryor pass incomplete short right to B.Myers.,0,10,2012 -20121230_OAK@SD,2,44,52,OAK,SD,2,10,27,(14:52) D.McFadden right end to SD 19 for 8 yards (E.Weddle).,0,10,2012 -20121230_OAK@SD,2,44,20,OAK,SD,3,2,19,(14:20) (Shotgun) T.Pryor scrambles left end ran ob at SD 13 for 6 yards (T.Spikes).,0,10,2012 -20121230_OAK@SD,2,43,42,OAK,SD,1,10,13,(13:42) (Shotgun) D.McFadden left end to SD 17 for -4 yards (A.Cason B.Bird).,0,10,2012 -20121230_OAK@SD,2,42,55,OAK,SD,2,14,17,(12:55) T.Pryor scrambles right end pushed ob at SD 9 for 8 yards (D.Williams).,0,10,2012 -20121230_OAK@SD,2,42,17,OAK,SD,3,6,9,(12:17) (Shotgun) T.Pryor pass short right to D.Heyward-Bey for 9 yards TOUCHDOWN.,0,10,2012 -20121230_OAK@SD,2,42,17,OAK,SD,,,9,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,0,10,2012 -20121230_OAK@SD,2,42,17,OAK,SD,,,9,S.Janikowski kicks 64 yards from OAK 35 to SD 1. M.Spurlock ran ob at SD 19 for 18 yards (T.Jones).,7,10,2012 -20121230_OAK@SD,2,42,3,SD,OAK,1,10,81,(12:03) (Shotgun) P.Rivers pass short left to J.Battle to SD 21 for 2 yards (B.Ross M.Burris).,10,7,2012 -20121230_OAK@SD,2,41,18,SD,OAK,2,8,79,(11:18) (Shotgun) P.Rivers pass incomplete short left to E.Royal.,10,7,2012 -20121230_OAK@SD,2,41,14,SD,OAK,3,8,79,(11:14) (Shotgun) P.Rivers pass short middle to M.Spurlock to SD 28 for 7 yards (C.Chekwa).,10,7,2012 -20121230_OAK@SD,2,40,34,SD,OAK,4,1,72,(10:34) (Punt formation) Direct snap to E.Weddle. E.Weddle up the middle to SD 34 for 6 yards (K.Burnett D.Ausberry).,10,7,2012 -20121230_OAK@SD,2,39,45,SD,OAK,1,10,66,(9:45) P.Rivers pass short left to E.Royal to SD 42 for 8 yards (B.Ross).,10,7,2012 -20121230_OAK@SD,2,39,10,SD,OAK,2,2,58,(9:10) J.Battle left end to SD 47 for 5 yards (L.Houston).,10,7,2012 -20121230_OAK@SD,2,38,28,SD,OAK,1,10,53,(8:28) PENALTY on OAK-T.Kelly Encroachment 5 yards enforced at SD 47 - No Play.,10,7,2012 -20121230_OAK@SD,2,38,7,SD,OAK,1,5,48,(8:07) J.Battle up the middle to OAK 48 for no gain (M.Shaughnessy). PENALTY on OAK-L.Houston Defensive Offside 5 yards enforced at OAK 48 - No Play.,10,7,2012 -20121230_OAK@SD,2,37,42,SD,OAK,1,10,43,(7:42) P.Rivers pass incomplete deep left to D.Alexander (M.Giordano).,10,7,2012 -20121230_OAK@SD,2,37,33,SD,OAK,2,10,43,(7:33) C.Brinkley up the middle to OAK 36 for 7 yards (P.Wheeler).,10,7,2012 -20121230_OAK@SD,2,36,48,SD,OAK,3,3,36,(6:48) (Shotgun) P.Rivers pass short middle to A.Gates to OAK 32 for 4 yards (B.Ross).,10,7,2012 -20121230_OAK@SD,2,36,4,SD,OAK,1,10,32,(6:04) (Shotgun) J.Battle up the middle to OAK 27 for 5 yards (M.Burris L.Houston).,10,7,2012 -20121230_OAK@SD,2,35,28,SD,OAK,2,5,27,(5:28) (Shotgun) PENALTY on SD-T.Green False Start 5 yards enforced at OAK 27 - No Play.,10,7,2012 -20121230_OAK@SD,2,35,6,SD,OAK,2,10,32,(5:06) P.Rivers pass short left to J.Battle to OAK 21 for 11 yards (B.Ross).,10,7,2012 -20121230_OAK@SD,2,34,20,SD,OAK,1,10,21,(4:20) (Shotgun) J.Battle up the middle to OAK 19 for 2 yards (M.Mitchell L.Houston).,10,7,2012 -20121230_OAK@SD,2,33,41,SD,OAK,2,8,19,(3:41) (Shotgun) P.Rivers pass short right to J.Battle to OAK 11 for 8 yards (J.Hanson).,10,7,2012 -20121230_OAK@SD,2,32,55,SD,OAK,1,10,11,(2:55) (Shotgun) P.Rivers pass short right to A.Gates for 11 yards TOUCHDOWN.,10,7,2012 -20121230_OAK@SD,2,32,55,SD,OAK,,,11,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,10,7,2012 -20121230_OAK@SD,2,32,55,SD,OAK,,,11,N.Novak kicks 65 yards from SD 35 to OAK 0. C.Francies to OAK 21 for 21 yards (A.Gachkar).,17,7,2012 -20121230_OAK@SD,2,32,42,OAK,SD,1,10,79,(2:42) T.Pryor pass incomplete deep left to D.Moore.,7,17,2012 -20121230_OAK@SD,2,32,36,OAK,SD,2,10,79,(2:36) (Shotgun) T.Pryor pass short middle to D.McFadden to OAK 24 for 3 yards (B.Bird C.Liuget).,7,17,2012 -20121230_OAK@SD,2,32,0,OAK,SD,3,7,76,(2:00) (Shotgun) T.Pryor pass incomplete deep right to D.Moore.,7,17,2012 -20121230_OAK@SD,2,31,53,OAK,SD,4,7,76,(1:53) S.Lechler punts 51 yards to SD 25 Center-J.Condo. M.Spurlock to SD 30 for 5 yards (O.Gaither J.Condo).,7,17,2012 -20121230_OAK@SD,2,31,42,SD,OAK,1,10,70,(1:42) (Shotgun) P.Rivers sacked at SD 25 for -5 yards (sack split by D.Bryant and L.Houston).,17,7,2012 -20121230_OAK@SD,2,31,9,SD,OAK,2,15,75,(1:09) (Shotgun) R.Brown left end to SD 30 for 5 yards (M.Burris).,17,7,2012 -20121230_OAK@SD,2,31,1,SD,OAK,3,10,70,(1:01) (Shotgun) R.Brown up the middle to SD 33 for 3 yards (L.Houston).,17,7,2012 -20121230_OAK@SD,2,30,57,SD,OAK,4,7,67,(:57) M.Scifres punts 53 yards to OAK 14 Center-K.Nelson. D.Moore to OAK 33 for 19 yards (B.Bird). PENALTY on SD-D.Rosario Unnecessary Roughness 15 yards enforced at OAK 33.,17,7,2012 -20121230_OAK@SD,2,30,47,OAK,SD,1,10,52,(:47) (Shotgun) T.Pryor scrambles up the middle to SD 47 for 5 yards (A.Gachkar).,7,17,2012 -20121230_OAK@SD,2,30,25,OAK,SD,2,5,47,(:25) T.Pryor pass short left to D.McFadden ran ob at SD 48 for -1 yards (S.Wright).,7,17,2012 -20121230_OAK@SD,2,30,18,OAK,SD,3,6,48,(:18) (Shotgun) T.Pryor pass incomplete short middle to B.Myers. PENALTY on SD-S.Phillips Neutral Zone Infraction 5 yards enforced at SD 48 - No Play.,7,17,2012 -20121230_OAK@SD,2,30,12,OAK,SD,3,1,43,(:12) (Shotgun) T.Pryor left end to SD 37 for 6 yards (A.Gachkar).,7,17,2012 -20121230_OAK@SD,3,30,0,SD,OAK,,,43,N.Novak kicks 69 yards from SD 35 to OAK -4. C.Francies Touchback.,17,7,2012 -20121230_OAK@SD,3,30,0,OAK,SD,1,10,80,(15:00) D.McFadden left end to OAK 16 for -4 yards (C.Liuget).,7,17,2012 -20121230_OAK@SD,3,29,19,OAK,SD,2,14,84,(14:19) T.Pryor pass incomplete short left to B.Myers [M.Gilchrist].,7,17,2012 -20121230_OAK@SD,3,29,12,OAK,SD,3,14,84,(14:12) (Shotgun) T.Pryor pass short middle to R.Streater to OAK 31 for 15 yards (E.Weddle) [C.Liuget]. FUMBLES (E.Weddle) RECOVERED by SD-E.Weddle at OAK 32. E.Weddle to OAK 32 for no gain (R.Streater). PENALTY on SD-C.Liuget Roughing the Passer 15 yards enforced at OAK 16 - No Play.,7,17,2012 -20121230_OAK@SD,3,29,1,OAK,SD,1,10,69,(14:01) T.Pryor pass incomplete short right to M.Reece.,7,17,2012 -20121230_OAK@SD,3,28,55,OAK,SD,2,10,69,(13:55) (Shotgun) T.Pryor pass incomplete short left to M.Reece (B.Bird).,7,17,2012 -20121230_OAK@SD,3,28,49,OAK,SD,3,10,69,(13:49) (Shotgun) T.Pryor pass deep left to B.Myers to SD 47 for 22 yards (C.Lynch M.Gilchrist).,7,17,2012 -20121230_OAK@SD,3,28,9,OAK,SD,1,10,47,(13:09) D.McFadden right end to SD 44 for 3 yards (J.Johnson K.Reyes).,7,17,2012 -20121230_OAK@SD,3,27,32,OAK,SD,2,7,44,(12:32) D.McFadden left guard to SD 41 for 3 yards (D.Williams K.Reyes).,7,17,2012 -20121230_OAK@SD,3,26,51,OAK,SD,3,4,41,(11:51) (Shotgun) T.Pryor scrambles right end ran ob at SD 33 for 8 yards (A.Gachkar).,7,17,2012 -20121230_OAK@SD,3,26,8,OAK,SD,1,10,33,(11:08) D.McFadden left tackle to SD 28 for 5 yards (L.English).,7,17,2012 -20121230_OAK@SD,3,25,28,OAK,SD,2,5,28,(10:28) T.Pryor pass deep right intended for D.Heyward-Bey INTERCEPTED by Q.Jammer at SD 0. Touchback.,7,17,2012 -20121230_OAK@SD,3,25,21,SD,OAK,1,10,80,(10:21) J.Battle up the middle to SD 25 for 5 yards (O.Gaither T.Kelly).,17,7,2012 -20121230_OAK@SD,3,24,42,SD,OAK,2,5,75,(9:42) J.Battle right guard to SD 25 for no gain (D.Bryant T.Kelly).,17,7,2012 -20121230_OAK@SD,3,24,0,SD,OAK,3,5,75,(9:00) (Shotgun) P.Rivers pass incomplete short left to M.Spurlock.,17,7,2012 -20121230_OAK@SD,3,23,54,SD,OAK,4,5,75,(8:54) M.Scifres punts 58 yards to OAK 17 Center-K.Nelson. D.Moore to OAK 22 for 5 yards (M.Ingram). PENALTY on OAK-J.Olawale Illegal Block Above the Waist 10 yards enforced at OAK 22.,17,7,2012 -20121230_OAK@SD,3,23,42,OAK,SD,1,10,88,(8:42) D.McFadden left end to OAK 14 for 2 yards (A.Cason).,7,17,2012 -20121230_OAK@SD,3,23,1,OAK,SD,2,8,86,(8:01) D.McFadden left end to OAK 14 for no gain (B.Bird A.Cason).,7,17,2012 -20121230_OAK@SD,3,22,25,OAK,SD,3,8,86,(7:25) (Shotgun) T.Pryor pass incomplete short middle to R.Streater (C.Lynch).,7,17,2012 -20121230_OAK@SD,3,22,19,OAK,SD,4,8,86,(7:19) S.Lechler punts 33 yards to OAK 47 Center-J.Condo downed by OAK-K.Clayton.,7,17,2012 -20121230_OAK@SD,3,22,10,SD,OAK,1,10,47,(7:10) J.Battle left end to OAK 45 for 2 yards (O.Gaither).,17,7,2012 -20121230_OAK@SD,3,21,30,SD,OAK,2,8,45,(6:30) P.Rivers pass short left to J.Battle to OAK 35 for 10 yards (O.Gaither M.Mitchell).,17,7,2012 -20121230_OAK@SD,3,20,48,SD,OAK,1,10,35,(5:48) J.Battle up the middle to OAK 34 for 1 yard (M.Shaughnessy).,17,7,2012 -20121230_OAK@SD,3,20,6,SD,OAK,2,9,34,(5:06) (Shotgun) P.Rivers pass deep left to D.Alexander for 34 yards TOUCHDOWN.,17,7,2012 -20121230_OAK@SD,3,20,6,SD,OAK,,,34,N.Novak extra point is GOOD Center-K.Nelson Holder-M.Scifres.,17,7,2012 -20121230_OAK@SD,3,20,6,SD,OAK,,,34,N.Novak kicks 67 yards from SD 35 to OAK -2. C.Francies to OAK 23 for 25 yards (M.Ingram).,24,7,2012 -20121230_OAK@SD,3,19,53,OAK,SD,1,10,77,(4:53) T.Pryor pass incomplete deep right to D.Moore.,7,24,2012 -20121230_OAK@SD,3,19,47,OAK,SD,2,10,77,(4:47) D.McFadden left end ran ob at OAK 29 for 6 yards (B.Bird). SD-C.Liuget was injured during the play.,7,24,2012 -20121230_OAK@SD,3,19,10,OAK,SD,3,4,71,(4:10) (Shotgun) T.Pryor pass incomplete deep right to D.Heyward-Bey.,7,24,2012 -20121230_OAK@SD,3,18,59,OAK,SD,4,4,71,(3:59) S.Lechler punts 50 yards to SD 21 Center-J.Condo. M.Spurlock to SD 21 for no gain (J.Condo O.Gaither). PENALTY on SD-D.Scafe Running Into the Kicker 5 yards enforced at OAK 29 - No Play.,7,24,2012 -20121230_OAK@SD,3,18,49,OAK,SD,1,10,66,(3:49) D.McFadden left end to OAK 34 for no gain (D.Williams).,7,24,2012 -20121230_OAK@SD,3,18,9,OAK,SD,2,10,66,(3:09) D.McFadden up the middle to OAK 40 for 6 yards (A.Garay B.Bird).,7,24,2012 -20121230_OAK@SD,3,17,30,OAK,SD,3,4,60,(2:30) (Shotgun) T.Pryor pass incomplete short right to D.Moore.,7,24,2012 -20121230_OAK@SD,3,17,14,OAK,SD,4,4,60,(2:14) S.Lechler punts 52 yards to SD 8 Center-J.Condo fair catch by M.Spurlock.,7,24,2012 -20121230_OAK@SD,3,17,8,SD,OAK,1,10,92,(2:08) J.Battle up the middle to SD 11 for 3 yards (M.Shaughnessy).,24,7,2012 -20121230_OAK@SD,3,16,24,SD,OAK,2,7,89,(1:24) (Shotgun) J.Battle up the middle to SD 19 for 8 yards (M.Giordano).,24,7,2012 -20121230_OAK@SD,3,15,38,SD,OAK,1,10,81,(:38) J.Battle right tackle to SD 22 for 3 yards (L.Houston M.Huff).,24,7,2012 -20121230_OAK@SD,4,15,0,SD,OAK,2,7,78,(15:00) J.Battle right guard to SD 23 for 1 yard (M.Burris L.Houston).,24,7,2012 -20121230_OAK@SD,4,14,14,SD,OAK,3,6,77,(14:14) (Shotgun) P.Rivers pass incomplete deep right to E.Royal. PENALTY on OAK-L.Houston Neutral Zone Infraction 5 yards enforced at SD 23 - No Play.,24,7,2012 -20121230_OAK@SD,4,14,7,SD,OAK,3,1,72,(14:07) J.Battle up the middle to SD 28 for no gain (T.Kelly B.Ross).,24,7,2012 -20121230_OAK@SD,4,13,11,SD,OAK,4,1,72,(13:11) M.Scifres punts 48 yards to OAK 24 Center-K.Nelson fair catch by M.Giordano.,24,7,2012 -20121230_OAK@SD,4,13,2,OAK,SD,1,10,76,(13:02) T.Pryor pass incomplete short right to D.Heyward-Bey. PENALTY on OAK-C.Carlisle Offensive Holding 10 yards enforced at OAK 24 - No Play.,7,24,2012 -20121230_OAK@SD,4,12,57,OAK,SD,1,20,86,(12:57) (Shotgun) D.McFadden right tackle to OAK 22 for 8 yards (E.Weddle A.Gachkar).,7,24,2012 -20121230_OAK@SD,4,12,15,OAK,SD,2,12,78,(12:15) (Shotgun) T.Pryor left end to OAK 27 for 5 yards (C.Liuget).,7,24,2012 -20121230_OAK@SD,4,11,32,OAK,SD,3,7,73,(11:32) (Shotgun) T.Pryor pass short right to R.Streater to OAK 41 for 14 yards (M.Gilchrist).,7,24,2012 -20121230_OAK@SD,4,10,54,OAK,SD,1,10,59,(10:54) T.Pryor pass short right to R.Streater to SD 44 for 15 yards (E.Weddle). OAK-R.Streater was injured during the play.,7,24,2012 -20121230_OAK@SD,4,10,27,OAK,SD,1,10,44,(10:27) T.Pryor scrambles right end to SD 35 for 9 yards (D.Williams).,7,24,2012 -20121230_OAK@SD,4,9,39,OAK,SD,2,1,35,(9:39) D.McFadden left tackle to SD 36 for -1 yards (E.Weddle S.Phillips).,7,24,2012 -20121230_OAK@SD,4,9,0,OAK,SD,3,2,36,(9:00) (Shotgun) T.Pryor left end to SD 36 for no gain (A.Gachkar). PENALTY on OAK-B.Myers Illegal Formation 5 yards enforced at SD 36 - No Play.,7,24,2012 -20121230_OAK@SD,4,8,35,OAK,SD,3,7,41,(8:35) T.Pryor pass deep right to R.Streater to SD 3 for 38 yards (Q.Jammer).,7,24,2012 -20121230_OAK@SD,4,7,49,OAK,SD,1,3,3,(7:49) T.Pryor left end for 3 yards TOUCHDOWN.,7,24,2012 -20121230_OAK@SD,4,7,49,OAK,SD,,,3,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,7,24,2012 -20121230_OAK@SD,4,7,49,OAK,SD,,,3,S.Janikowski kicks 65 yards from OAK 35 to end zone Touchback.,14,24,2012 -20121230_OAK@SD,4,7,43,SD,OAK,1,10,80,(7:43) P.Rivers pass short right to E.Royal pushed ob at SD 31 for 11 yards (M.Huff).,24,14,2012 -20121230_OAK@SD,4,7,2,SD,OAK,1,10,69,(7:02) J.Battle left tackle to SD 34 for 3 yards (L.Houston D.Bryant).,24,14,2012 -20121230_OAK@SD,4,6,22,SD,OAK,2,7,66,(6:22) J.Battle right end to SD 32 for -2 yards (L.Houston M.Burris).,24,14,2012 -20121230_OAK@SD,4,5,36,SD,OAK,3,9,68,(5:36) (Shotgun) PENALTY on SD-K.Haslam False Start 5 yards enforced at SD 32 - No Play.,24,14,2012 -20121230_OAK@SD,4,5,14,SD,OAK,3,14,73,(5:14) (Shotgun) R.Brown up the middle to SD 30 for 3 yards (M.Mitchell J.Hanson).,24,14,2012 -20121230_OAK@SD,4,4,28,SD,OAK,4,11,70,(4:28) M.Scifres punts 47 yards to OAK 23 Center-K.Nelson. D.Moore MUFFS catch touched at OAK 23 and recovers at OAK 23. D.Moore to OAK 23 for no gain (M.Gilchrist).,24,14,2012 -20121230_OAK@SD,4,4,18,OAK,SD,1,10,77,(4:18) (Shotgun) T.Pryor pass short left to B.Myers to OAK 28 for 5 yards (E.Weddle).,14,24,2012 -20121230_OAK@SD,4,3,45,OAK,SD,2,5,72,(3:45) (Shotgun) T.Pryor left end to OAK 28 for no gain. FUMBLES ball out of bounds at OAK 28. PENALTY on OAK-T.Pryor Illegal Bat 10 yards enforced at OAK 28 - No Play.,14,24,2012 -20121230_OAK@SD,4,3,35,OAK,SD,2,15,82,(3:35) (Shotgun) T.Pryor pass incomplete short right to D.Moore.,14,24,2012 -20121230_OAK@SD,4,3,30,OAK,SD,3,15,82,(3:30) (Shotgun) T.Pryor pass incomplete short left to D.McFadden.,14,24,2012 -20121230_OAK@SD,4,3,16,OAK,SD,4,15,82,(3:16) S.Lechler punts 48 yards to SD 34 Center-J.Condo fair catch by M.Spurlock.,14,24,2012 -20121230_OAK@SD,4,3,16,SD,OAK,1,10,66,(3:16) C.Brinkley right end to SD 40 for 6 yards (M.Burris O.Gaither).,24,14,2012 -20121230_OAK@SD,4,3,9,SD,OAK,2,4,60,(3:09) J.Battle right tackle to SD 41 for 1 yard (L.Houston).,24,14,2012 -20121230_OAK@SD,4,3,3,SD,OAK,3,3,59,(3:03) C.Brinkley right end to SD 38 for -3 yards (M.Burris).,24,14,2012 -20121230_OAK@SD,4,2,55,SD,OAK,4,6,62,(2:55) M.Scifres punt is BLOCKED by C.Francies Center-K.Nelson RECOVERED by OAK-K.Burnett at SD 11. K.Burnett to SD 11 for no gain (M.Ingram).,24,14,2012 -20121230_OAK@SD,4,2,45,OAK,SD,1,10,11,(2:45) (Shotgun) T.Pryor pass short left to B.Myers to SD 2 for 9 yards (A.Gachkar).,14,24,2012 -20121230_OAK@SD,4,2,14,OAK,SD,2,1,2,(2:14) D.McFadden up the middle to SD 1 for 1 yard (M.Gilchrist A.Garay).,14,24,2012 -20121230_OAK@SD,4,2,0,OAK,SD,1,1,1,(2:00) PENALTY on OAK-D.Ausberry False Start 4 yards enforced at SD 1 - No Play.,14,24,2012 -20121230_OAK@SD,4,2,0,OAK,SD,1,5,5,(2:00) (Shotgun) T.Pryor pass short right to D.Moore for 5 yards TOUCHDOWN.,14,24,2012 -20121230_OAK@SD,4,2,0,OAK,SD,,,5,S.Janikowski extra point is GOOD Center-J.Condo Holder-S.Lechler.,14,24,2012 -20121230_OAK@SD,4,2,0,OAK,SD,,,5,S.Janikowski kicks onside 12 yards from OAK 35 to OAK 47. M.Spurlock (didn't try to advance) dead ball declared at OAK 47 for no gain.,21,24,2012 -20121230_OAK@SD,4,1,51,SD,OAK,1,10,47,(1:51) P.Rivers kneels dead ball declared at OAK 48 for -1 yards.,24,21,2012 -20121230_OAK@SD,4,1,4,SD,OAK,2,11,48,(1:04) P.Rivers kneels dead ball declared at OAK 49 for -1 yards.,24,21,2012 -20121230_OAK@SD,4,0,26,SD,OAK,3,12,49,(:26) P.Rivers kneels dead ball declared at 50 for -1 yards.,24,21,2012 -20121230_OAK@SD,4,0,26,SD,OAK,,,49,                      ,24,21,2012 -20121230_ARI@SF,1,0,0,SF,ARI,,,49,D.Akers kicks 68 yards from SF 35 to ARZ -3. L.Stephens-Howling to ARZ 22 for 25 yards (B.Miller D.McBath).,0,0,2012 -20121230_ARI@SF,1,59,54,ARI,SF,1,10,78,(14:54) (Shotgun) B.Hoyer pass short right to M.Floyd to ARZ 29 for 7 yards (D.Whitner). Caught at ARZ 29. 0-yds YAC,0,0,2012 -20121230_ARI@SF,1,59,20,ARI,SF,2,3,71,(14:20) (Shotgun) B.Hoyer pass incomplete short right to M.Floyd.,0,0,2012 -20121230_ARI@SF,1,59,15,ARI,SF,3,3,71,(14:15) (Shotgun) B.Hoyer pass incomplete short left to M.Floyd (P.Cox).,0,0,2012 -20121230_ARI@SF,1,59,11,ARI,SF,4,3,71,(14:11) D.Zastudil punts 70 yards to SF 1 Center-M.Leach downed by ARZ-M.Adams.,0,0,2012 -20121230_ARI@SF,1,58,59,SF,ARI,1,10,99,(13:59) B.Miller left guard to SF 2 for 1 yard (D.Washington S.Acho).,0,0,2012 -20121230_ARI@SF,1,58,28,SF,ARI,2,9,98,(13:28) F.Gore up the middle to SF 3 for 1 yard (P.Lenon D.Williams).,0,0,2012 -20121230_ARI@SF,1,57,53,SF,ARI,3,8,97,(12:53) (Shotgun) F.Gore up the middle to SF 10 for 7 yards (P.Lenon V.Holliday).,0,0,2012 -20121230_ARI@SF,1,57,5,SF,ARI,4,1,90,(12:05) A.Lee punts 48 yards to ARZ 42 Center-B.Jennings. P.Peterson to ARZ 49 for 7 yards (A.Dixon).,0,0,2012 -20121230_ARI@SF,1,56,55,ARI,SF,1,10,51,(11:55) W.Powell left tackle to SF 42 for 9 yards (P.Willis).,0,0,2012 -20121230_ARI@SF,1,56,20,ARI,SF,2,1,42,(11:20) (Shotgun) PENALTY on ARZ-D.Colledge False Start 5 yards enforced at SF 42 - No Play.,0,0,2012 -20121230_ARI@SF,1,56,2,ARI,SF,2,6,47,(11:02) (Shotgun) B.Hoyer pass incomplete short right to J.King (N.Bowman).,0,0,2012 -20121230_ARI@SF,1,55,57,ARI,SF,3,6,47,(10:57) (Shotgun) B.Hoyer up the middle to SF 41 for 6 yards (D.Goldson).,0,0,2012 -20121230_ARI@SF,1,55,23,ARI,SF,1,10,41,(10:23) W.Powell left guard to SF 38 for 3 yards (Ald.Smith R.Jean Francois).,0,0,2012 -20121230_ARI@SF,1,54,50,ARI,SF,2,7,38,(9:50) A.Roberts right end to SF 40 for -2 yards (P.Willis).,0,0,2012 -20121230_ARI@SF,1,54,9,ARI,SF,3,9,40,(9:09) (Shotgun) B.Hoyer pass incomplete short left to M.Floyd.,0,0,2012 -20121230_ARI@SF,1,54,4,ARI,SF,4,9,40,(9:04) D.Zastudil punts 28 yards to SF 12 Center-M.Leach fair catch by T.Ginn.,0,0,2012 -20121230_ARI@SF,1,53,57,SF,ARI,1,10,88,(8:57) F.Gore right guard to SF 13 for 1 yard (D.Washington).,0,0,2012 -20121230_ARI@SF,1,53,20,SF,ARI,2,9,87,(8:20) C.Kaepernick pass incomplete deep right to G.Celek.,0,0,2012 -20121230_ARI@SF,1,53,14,SF,ARI,3,9,87,(8:14) (Shotgun) PENALTY on SF-M.Crabtree False Start 5 yards enforced at SF 13 - No Play.,0,0,2012 -20121230_ARI@SF,1,53,14,SF,ARI,3,14,92,(8:14) (Shotgun) C.Kaepernick pass incomplete short left to M.Crabtree (P.Peterson).,0,0,2012 -20121230_ARI@SF,1,53,8,SF,ARI,4,14,92,(8:08) A.Lee punts 45 yards to ARZ 47 Center-B.Jennings out of bounds.,0,0,2012 -20121230_ARI@SF,1,53,0,ARI,SF,1,10,53,(8:00) (Shotgun) B.Hoyer pass short left to L.Fitzgerald to SF 46 for 7 yards (C.Rogers). Caught at SF48. 0-yds YAC,0,0,2012 -20121230_ARI@SF,1,52,22,ARI,SF,2,3,46,(7:22) (Shotgun) B.Hoyer pass short left to M.Floyd to SF 31 for 15 yards (D.Goldson D.Whitner). Caught at SF37. 6-yds YAC,0,0,2012 -20121230_ARI@SF,1,51,48,ARI,SF,1,10,31,(6:48) B.Hoyer pass short left to A.Roberts to SF 19 for 12 yards (N.Bowman). ARZ-P.McQuistan was injured during the play. He is Out. Caught at SF20. 1-yd YAC,0,0,2012 -20121230_ARI@SF,1,51,25,ARI,SF,1,10,19,(6:25) W.Powell up the middle to SF 16 for 3 yards (I.Sopoaga).,0,0,2012 -20121230_ARI@SF,1,50,47,ARI,SF,2,7,16,(5:47) (Shotgun) B.Hoyer pass incomplete short right to A.Roberts [A.Brooks].,0,0,2012 -20121230_ARI@SF,1,50,42,ARI,SF,3,7,16,(5:42) (Shotgun) B.Hoyer pass incomplete short right to L.Fitzgerald (C.Culliver).,0,0,2012 -20121230_ARI@SF,1,50,37,ARI,SF,4,7,16,(5:37) J.Feely 35 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,0,2012 -20121230_ARI@SF,1,50,37,ARI,SF,,,16,J.Feely kicks 67 yards from ARZ 35 to SF -2. L.James to SF 31 for 33 yards (M.Adams).,3,0,2012 -20121230_ARI@SF,1,50,27,SF,ARI,1,10,69,(5:27) F.Gore right end to SF 31 for no gain (W.Gay D.Williams).,0,3,2012 -20121230_ARI@SF,1,49,55,SF,ARI,2,10,69,(4:55) C.Kaepernick pass short left to V.Davis to SF 36 for 5 yards (A.Wilson). Caught at SF35. 1-yd YAC,0,3,2012 -20121230_ARI@SF,1,49,10,SF,ARI,3,5,64,(4:10) (Shotgun) C.Kaepernick pass incomplete short right to A.Jenkins.,0,3,2012 -20121230_ARI@SF,1,49,6,SF,ARI,4,5,64,(4:06) A.Lee punts 56 yards to ARZ 8 Center-B.Jennings. P.Peterson pushed ob at ARZ 13 for 5 yards (T.Brock).,0,3,2012 -20121230_ARI@SF,1,48,55,ARI,SF,1,10,87,(3:55) W.Powell left tackle to ARZ 19 for 6 yards (R.Jean Francois).,3,0,2012 -20121230_ARI@SF,1,48,17,ARI,SF,2,4,81,(3:17) (Shotgun) B.Hoyer pass deep right to M.Floyd to SF 47 for 34 yards (C.Culliver). Caught at ARZ 49. 4-yd YAC,3,0,2012 -20121230_ARI@SF,1,47,46,ARI,SF,1,10,47,(2:46) W.Powell left guard to SF 38 for 9 yards (I.Williams N.Bowman).,3,0,2012 -20121230_ARI@SF,1,47,18,ARI,SF,2,1,38,(2:18) W.Powell up the middle to SF 28 for 10 yards (D.Whitner T.Brown).,3,0,2012 -20121230_ARI@SF,1,46,48,ARI,SF,1,10,28,(1:48) W.Powell up the middle to SF 27 for 1 yard (I.Sopoaga).,3,0,2012 -20121230_ARI@SF,1,46,16,ARI,SF,2,9,27,(1:16) B.Hoyer pass short right to J.Dray to SF 15 for 12 yards (D.Whitner). Caught at SF16. 1-yd YAC,3,0,2012 -20121230_ARI@SF,1,45,44,ARI,SF,1,10,15,(:44) W.Powell left end to SF 18 for -3 yards (Ald.Smith).,3,0,2012 -20121230_ARI@SF,2,45,0,ARI,SF,2,13,18,(15:00) (Shotgun) L.Stephens-Howling up the middle to SF 19 for -1 yards (A.Brooks).,3,0,2012 -20121230_ARI@SF,2,44,22,ARI,SF,3,14,19,(14:22) (Shotgun) B.Hoyer pass short middle to L.Fitzgerald to SF 13 for 6 yards (N.Bowman). Caught at SF13. 0-yds YAC,3,0,2012 -20121230_ARI@SF,2,43,47,ARI,SF,4,8,13,(13:47) J.Feely 31 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,3,0,2012 -20121230_ARI@SF,2,43,47,ARI,SF,,,13,J.Feely kicks 49 yards from ARZ 35 to SF 16. D.Walker to SF 19 for 3 yards (J.Dray).,6,0,2012 -20121230_ARI@SF,2,43,37,SF,ARI,1,10,81,(13:37) C.Kaepernick scrambles left end pushed ob at SF 26 for 7 yards (A.Wilson).,0,6,2012 -20121230_ARI@SF,2,43,7,SF,ARI,2,3,74,(13:07) F.Gore right tackle to SF 30 for 4 yards (D.Carter D.Washington).,0,6,2012 -20121230_ARI@SF,2,42,29,SF,ARI,1,10,70,(12:29) L.James right end to ARZ 44 for 26 yards (C.Campbell K.Rhodes).,0,6,2012 -20121230_ARI@SF,2,41,36,SF,ARI,1,10,44,(11:36) C.Kaepernick pass short middle to M.Crabtree to ARZ 27 for 17 yards (P.Peterson). Caught at ARZ 37. 10-yds YAC,0,6,2012 -20121230_ARI@SF,2,40,57,SF,ARI,1,10,27,(10:57) F.Gore left guard to ARZ 25 for 2 yards (D.Williams D.Washington).,0,6,2012 -20121230_ARI@SF,2,40,17,SF,ARI,2,8,25,(10:17) (Shotgun) C.Kaepernick sacked at ARZ 29 for -4 yards (C.Campbell).,0,6,2012 -20121230_ARI@SF,2,39,43,SF,ARI,3,12,29,(9:43) C.Kaepernick scrambles left end pushed ob at ARZ 26 for 3 yards (D.Washington).,0,6,2012 -20121230_ARI@SF,2,39,9,SF,ARI,4,9,26,(9:09) D.Akers 44 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,0,6,2012 -20121230_ARI@SF,2,39,3,ARI,SF,1,10,66,(9:03) W.Powell left tackle to ARZ 37 for 3 yards (R.Jean Francois).,6,0,2012 -20121230_ARI@SF,2,38,26,ARI,SF,2,7,63,(8:26) B.Hoyer pass incomplete short right to J.King.,6,0,2012 -20121230_ARI@SF,2,38,22,ARI,SF,3,7,63,(8:22) (Shotgun) B.Hoyer pass incomplete short right to A.Roberts (C.Rogers).,6,0,2012 -20121230_ARI@SF,2,38,15,ARI,SF,4,7,63,(8:15) D.Zastudil punts 63 yards to end zone Center-M.Leach Touchback.,6,0,2012 -20121230_ARI@SF,2,38,8,SF,ARI,1,10,80,(8:08) C.Kaepernick pass deep middle to M.Crabtree to ARZ 49 for 31 yards (P.Peterson). Caught at SF49. 2-yds YAC,0,6,2012 -20121230_ARI@SF,2,37,28,SF,ARI,1,10,49,(7:28) C.Kaepernick pass deep left to M.Crabtree for 49 yards TOUCHDOWN. Caught at ARZ 19. 19-yds YAC,0,6,2012 -20121230_ARI@SF,2,37,28,SF,ARI,,,49,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,6,2012 -20121230_ARI@SF,2,37,28,SF,ARI,,,49,D.Akers kicks 60 yards from SF 35 to ARZ 5. L.Stephens-Howling to ARZ 21 for 16 yards (C.Spillman).,7,6,2012 -20121230_ARI@SF,2,37,14,ARI,SF,1,10,79,(7:14) B.Hoyer pass short middle to S.Kelemete to ARZ 31 for 10 yards (I.Sopoaga). Caught at ARZ 23. 8-yds YAC Pass intended for A.Roberts balll deflected & caught by S.Kelemete.,6,7,2012 -20121230_ARI@SF,2,36,34,ARI,SF,1,10,69,(6:34) W.Powell up the middle to ARZ 36 for 5 yards (R.McDonald).,6,7,2012 -20121230_ARI@SF,2,36,1,ARI,SF,2,5,64,(6:01) W.Powell up the middle to ARZ 38 for 2 yards (N.Bowman R.Jean Francois).,6,7,2012 -20121230_ARI@SF,2,35,23,ARI,SF,3,3,62,(5:23) (Shotgun) B.Hoyer pass incomplete short left to L.Fitzgerald (T.Brown).,6,7,2012 -20121230_ARI@SF,2,35,19,ARI,SF,4,3,62,(5:19) D.Zastudil punts 40 yards to SF 22 Center-M.Leach fair catch by T.Ginn.,6,7,2012 -20121230_ARI@SF,2,35,12,SF,ARI,1,10,78,(5:12) F.Gore right tackle to SF 21 for -1 yards (D.Williams).,7,6,2012 -20121230_ARI@SF,2,34,34,SF,ARI,2,11,79,(4:34) C.Kaepernick pass incomplete short right to D.Walker.,7,6,2012 -20121230_ARI@SF,2,34,27,SF,ARI,3,11,79,(4:27) (Shotgun) C.Kaepernick pass deep left to M.Crabtree ran ob at SF 40 for 19 yards [D.Dockett]. Caught at SF37. 3-yds YAC,7,6,2012 -20121230_ARI@SF,2,34,1,SF,ARI,1,10,60,(4:01) C.Kaepernick pass incomplete short right to M.Crabtree.,7,6,2012 -20121230_ARI@SF,2,33,54,SF,ARI,2,10,60,(3:54) L.James up the middle to ARZ 48 for 12 yards (P.Lenon K.Rhodes).,7,6,2012 -20121230_ARI@SF,2,33,21,SF,ARI,1,10,48,(3:21) D.Kilgore and L.Davis reported in as eligible. F.Gore right guard to ARZ 48 for no gain (D.Carter).,7,6,2012 -20121230_ARI@SF,2,32,43,SF,ARI,2,10,48,(2:43) C.Kaepernick pass deep left to D.Walker to ARZ 25 for 23 yards (A.Wilson). Caught at ARZ 25. 0-yds YAC,7,6,2012 -20121230_ARI@SF,2,32,0,SF,ARI,1,10,25,(2:00) C.Kaepernick pass short left to F.Gore to ARZ 23 for 2 yards (S.Acho). Caught at ARZ 25. 2-yds YAC,7,6,2012 -20121230_ARI@SF,2,31,17,SF,ARI,2,8,23,(1:17) F.Gore right guard to ARZ 17 for 6 yards (P.Lenon A.Wilson).,7,6,2012 -20121230_ARI@SF,2,30,40,SF,ARI,3,2,17,(:40) PENALTY on SF-M.Iupati False Start 5 yards enforced at ARZ 17 - No Play.,7,6,2012 -20121230_ARI@SF,2,30,35,SF,ARI,3,7,22,(:35) C.Kaepernick pass incomplete deep right to R.Moss (P.Peterson).,7,6,2012 -20121230_ARI@SF,2,30,29,SF,ARI,4,7,22,(:29) D.Akers 40 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee.,7,6,2012 -20121230_ARI@SF,2,30,24,ARI,SF,1,10,70,(:24) B.Hoyer pass incomplete deep left to M.Floyd.,6,7,2012 -20121230_ARI@SF,2,30,18,ARI,SF,2,10,70,(:18) (Shotgun) W.Powell up the middle to ARZ 32 for 2 yards (A.Brooks R.Jean Francois).,6,7,2012 -20121230_ARI@SF,3,30,0,ARI,SF,,,70,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,6,7,2012 -20121230_ARI@SF,3,30,0,SF,ARI,1,10,80,(15:00) F.Gore left end to SF 21 for 1 yard (D.Washington).,7,6,2012 -20121230_ARI@SF,3,29,20,SF,ARI,2,9,79,(14:20) (Shotgun) C.Kaepernick pass deep right to R.Moss to SF 41 for 20 yards (D.Washington). Caught at SF37. 4-yds YAC,7,6,2012 -20121230_ARI@SF,3,28,39,SF,ARI,1,10,59,(13:39) C.Kaepernick pass incomplete deep left to V.Davis [D.Williams].,7,6,2012 -20121230_ARI@SF,3,28,34,SF,ARI,2,10,59,(13:34) (Shotgun) F.Gore up the middle to SF 43 for 2 yards (D.Williams).,7,6,2012 -20121230_ARI@SF,3,27,52,SF,ARI,3,8,57,(12:52) (Shotgun) C.Kaepernick pass short right to M.Crabtree to ARZ 29 for 28 yards (J.Sanders). Caught at SF46. 25-yds YAC,7,6,2012 -20121230_ARI@SF,3,27,6,SF,ARI,1,10,29,(12:06) C.Kaepernick pass incomplete deep right to D.Walker.,7,6,2012 -20121230_ARI@SF,3,26,59,SF,ARI,2,10,29,(11:59) F.Gore right tackle to ARZ 26 for 3 yards (D.Williams).,7,6,2012 -20121230_ARI@SF,3,26,15,SF,ARI,3,7,26,(11:15) (Shotgun) C.Kaepernick pass incomplete short left to R.Moss.,7,6,2012 -20121230_ARI@SF,3,26,10,SF,ARI,4,7,26,(11:10) D.Akers 43 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,7,6,2012 -20121230_ARI@SF,3,26,10,SF,ARI,,,26,D.Akers kicks 65 yards from SF 35 to ARZ 0. L.Stephens-Howling to ARZ 26 for 26 yards (M.Wilhoite).,10,6,2012 -20121230_ARI@SF,3,25,55,ARI,SF,1,10,74,(10:55) B.Hoyer sacked at ARZ 17 for -9 yards (R.Jean Francois).,6,10,2012 -20121230_ARI@SF,3,25,21,ARI,SF,2,19,83,(10:21) (Shotgun) B.Hoyer sacked at ARZ 8 for -9 yards (A.Brooks).,6,10,2012 -20121230_ARI@SF,3,24,45,ARI,SF,3,28,92,(9:45) (Shotgun) W.Powell up the middle to ARZ 8 for no gain (P.Willis).,6,10,2012 -20121230_ARI@SF,3,24,3,ARI,SF,4,28,92,(9:03) D.Zastudil punts 58 yards to SF 34 Center-M.Leach. T.Ginn to ARZ 38 for 28 yards (M.Adams).,6,10,2012 -20121230_ARI@SF,3,23,49,SF,ARI,1,10,38,(8:49) L.James left end to ARZ 36 for 2 yards (W.Gay).,10,6,2012 -20121230_ARI@SF,3,23,9,SF,ARI,2,8,36,(8:09) C.Kaepernick pass deep middle to D.Walker to ARZ 9 for 27 yards (K.Rhodes) [P.Lenon]. Caught at ARZ 12. 3-yds YAC,10,6,2012 -20121230_ARI@SF,3,22,22,SF,ARI,1,9,9,(7:22) (Shotgun) L.James right end to ARZ 9 for no gain (Q.Groves).,10,6,2012 -20121230_ARI@SF,3,21,42,SF,ARI,2,9,9,(6:42) B.Miller up the middle to ARZ 7 for 2 yards (S.Acho).,10,6,2012 -20121230_ARI@SF,3,21,2,SF,ARI,3,7,7,(6:02) C.Kaepernick pass short left to M.Crabtree for 7 yards TOUCHDOWN. Caught at ARZ 3. 3-ys YAC,10,6,2012 -20121230_ARI@SF,3,21,2,SF,ARI,,,7,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,10,6,2012 -20121230_ARI@SF,3,21,2,SF,ARI,,,7,D.Akers kicks 64 yards from SF 35 to ARZ 1. L.Stephens-Howling to ARZ 22 for 21 yards (L.Grant).,17,6,2012 -20121230_ARI@SF,3,20,51,ARI,SF,1,10,78,(5:51) B.Hoyer pass incomplete short left to J.King.,6,17,2012 -20121230_ARI@SF,3,20,47,ARI,SF,2,10,78,(5:47) (Shotgun) B.Hoyer pass short right to M.Floyd to ARZ 31 for 9 yards (D.Whitner). Caught at ARZ 26. 5-yds YAC,6,17,2012 -20121230_ARI@SF,3,20,7,ARI,SF,3,1,69,(5:07) B.Hoyer pass short right to J.King to ARZ 43 for 12 yards (D.Goldson). PENALTY on ARZ Illegal Shift 5 yards enforced at ARZ 31 - No Play.,6,17,2012 -20121230_ARI@SF,3,19,34,ARI,SF,3,6,74,(4:34) (Shotgun) B.Hoyer pass incomplete short left to A.Roberts.,6,17,2012 -20121230_ARI@SF,3,19,30,ARI,SF,4,6,74,(4:30) D.Zastudil punts 46 yards to SF 28 Center-M.Leach fair catch by T.Ginn.,6,17,2012 -20121230_ARI@SF,3,19,22,SF,ARI,1,10,72,(4:22) C.Kaepernick pass short left to R.Moss ran ob at SF 36 for 8 yards. Caught at SF 36. 0-yds YAC,17,6,2012 -20121230_ARI@SF,3,18,50,SF,ARI,2,2,64,(3:50) F.Gore left tackle to SF 43 for 7 yards (K.Rhodes).,17,6,2012 -20121230_ARI@SF,3,18,8,SF,ARI,1,10,57,(3:08) F.Gore right guard to ARZ 48 for 9 yards (D.Williams).,17,6,2012 -20121230_ARI@SF,3,17,25,SF,ARI,2,1,48,(2:25) F.Gore up the middle to ARZ 40 for 8 yards (A.Wilson W.Gay).,17,6,2012 -20121230_ARI@SF,3,16,51,SF,ARI,1,10,40,(1:51) L.James left end to ARZ 41 for -1 yards (W.Gay). FUMBLES (W.Gay) ball out of bounds at ARZ 41.,17,6,2012 -20121230_ARI@SF,3,16,30,SF,ARI,2,11,41,(1:30) C.Kaepernick pass incomplete short left to M.Crabtree.,17,6,2012 -20121230_ARI@SF,3,16,23,SF,ARI,3,11,41,(1:23) (Shotgun) C.Kaepernick pass short right to F.Gore to ARZ 36 for 5 yards (Q.Groves). ARZ-P.Lenon was injured during the play. Caught at ARZ 41. 5-yds YAC,17,6,2012 -20121230_ARI@SF,3,15,38,SF,ARI,4,6,36,(:38) (Shotgun) C.Kaepernick pass short left to M.Crabtree to ARZ 22 for 14 yards (D.Washington). Caught at ARZ 32. 10-yds YAC,17,6,2012 -20121230_ARI@SF,4,15,0,SF,ARI,1,10,22,(15:00) C.Kaepernick pass short right to F.Gore to ARZ 8 for 14 yards (A.Wilson). Caught at ARZ 21. 13-yds YAC,17,6,2012 -20121230_ARI@SF,4,14,21,SF,ARI,1,8,8,(14:21) D.Kilgore and L.Davis reported in as eligible. F.Gore left tackle to ARZ 7 for 1 yard (S.Bradley).,17,6,2012 -20121230_ARI@SF,4,13,39,SF,ARI,2,7,7,(13:39) F.Gore right tackle to ARZ 2 for 5 yards (S.Bradley D.Washington).,17,6,2012 -20121230_ARI@SF,4,13,2,SF,ARI,3,2,2,(13:02) L.Davis reported in as eligible. F.Gore right guard for 2 yards TOUCHDOWN.,17,6,2012 -20121230_ARI@SF,4,13,2,SF,ARI,,,2,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,17,6,2012 -20121230_ARI@SF,4,13,2,SF,ARI,,,2,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,24,6,2012 -20121230_ARI@SF,4,12,59,ARI,SF,1,10,80,(12:59) (Shotgun) B.Hoyer pass short right to M.Floyd to ARZ 25 for 5 yards (R.McDonald) [Ald.Smith]. FUMBLES (R.McDonald) RECOVERED by SF-D.Whitner at ARZ 34. D.Whitner to ARZ 34 for no gain (A.Snyder). 9-yds of loose ball yardage on fumble.,6,24,2012 -20121230_ARI@SF,4,12,49,SF,ARI,1,10,34,(12:49) C.Kaepernick pass incomplete short right to M.Crabtree.,24,6,2012 -20121230_ARI@SF,4,12,43,SF,ARI,2,10,34,(12:43) F.Gore up the middle to ARZ 30 for 4 yards (S.Bradley).,24,6,2012 -20121230_ARI@SF,4,12,3,SF,ARI,3,6,30,(12:03) (Shotgun) C.Kaepernick pass incomplete deep right to M.Crabtree.,24,6,2012 -20121230_ARI@SF,4,11,59,SF,ARI,4,6,30,(11:59) (Shotgun) C.Kaepernick pass short middle to M.Crabtree to ARZ 23 for 7 yards (R.Johnson). Caught at ARZ 24. 1-yd YAC,24,6,2012 -20121230_ARI@SF,4,11,22,SF,ARI,1,10,23,(11:22) F.Gore right guard to ARZ 17 for 6 yards (D.Washington). PENALTY on ARZ-N.Eason Face Mask (15 Yards) 9 yards enforced at ARZ 17.,24,6,2012 -20121230_ARI@SF,4,11,0,SF,ARI,1,8,8,(11:00) A.Dixon left tackle to ARZ 4 for 4 yards (D.Washington S.Bradley).,24,6,2012 -20121230_ARI@SF,4,10,21,SF,ARI,2,4,4,(10:21) A.Dixon right guard to ARZ 3 for 1 yard (K.Rhodes).,24,6,2012 -20121230_ARI@SF,4,9,36,SF,ARI,3,3,3,(9:36) (Shotgun) C.Kaepernick left end pushed ob at ARZ 8 for -5 yards (S.Acho).,24,6,2012 -20121230_ARI@SF,4,9,10,SF,ARI,4,8,8,(9:10) D.Akers 26 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,24,6,2012 -20121230_ARI@SF,4,9,10,SF,ARI,,,8,D.Akers kicks 67 yards from SF 35 to ARZ -2. L.Stephens-Howling to ARZ 19 for 21 yards (T.Brock).,27,6,2012 -20121230_ARI@SF,4,9,2,ARI,SF,1,10,81,(9:02) (Shotgun) B.Hoyer pass short left to A.Roberts pushed ob at ARZ 22 for 3 yards (C.Rogers). Caught at ARZ 22. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,8,34,ARI,SF,2,7,78,(8:34) (Shotgun) B.Hoyer pass short left to J.King to ARZ 28 for 6 yards (T.Brown). Caught at ARZ 24. 4-yds YAC,6,27,2012 -20121230_ARI@SF,4,8,5,ARI,SF,3,1,72,(8:05) (Shotgun) B.Hoyer pass short right to J.King to ARZ 30 for 2 yards (P.Willis). Caught at ARZ 30. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,7,41,ARI,SF,1,10,70,(7:41) (No Huddle Shotgun) B.Hoyer pass short right to M.Floyd to ARZ 36 for 6 yards (C.Culliver). Caught at ARZ 36. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,7,14,ARI,SF,2,4,64,(7:14) (No Huddle Shotgun) B.Hoyer pass short left to A.Roberts to ARZ 39 for 3 yards (T.Brown). Caught at ARZ 39. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,6,34,ARI,SF,3,1,61,(6:34) (Shotgun) W.Powell up the middle to ARZ 41 for 2 yards (I.Williams).,6,27,2012 -20121230_ARI@SF,4,6,7,ARI,SF,1,10,59,(6:07) (No Huddle Shotgun) B.Hoyer pass deep left intended for L.Fitzgerald INTERCEPTED by T.Brown at SF 43. T.Brown ran ob at ARZ 45 for 12 yards. PENALTY on SF-Ald.Smith Unnecessary Roughness 15 yards enforced at ARZ 45.,6,27,2012 -20121230_ARI@SF,4,5,57,SF,ARI,1,10,60,(5:57) A.Smith in at QB. A.Dixon up the middle to SF 41 for 1 yard (S.Bradley).,27,6,2012 -20121230_ARI@SF,4,5,17,SF,ARI,2,9,59,(5:17) L.James left guard to SF 41 for no gain (S.Bradley).,27,6,2012 -20121230_ARI@SF,4,4,35,SF,ARI,3,9,59,(4:35) A.Smith pass short right to B.Miller to SF 47 for 6 yards (K.Rhodes). Caught at SF45. 2-yds YAC,27,6,2012 -20121230_ARI@SF,4,3,49,SF,ARI,4,3,53,(3:49) A.Lee punts 36 yards to ARZ 17 Center-B.Jennings. A.Roberts to ARZ 22 for 5 yards (N.Bowman).,27,6,2012 -20121230_ARI@SF,4,3,38,ARI,SF,1,10,78,(3:38) (Shotgun) B.Hoyer pass short left to J.King pushed ob at ARZ 24 for 2 yards (M.Wilhoite). Caught at ARZ 24. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,3,33,ARI,SF,2,8,76,(3:33) (Shotgun) B.Hoyer pass deep left to M.Floyd to SF 23 for 53 yards (D.McBath). Caught at ARZ 47. 30-yds YAC,6,27,2012 -20121230_ARI@SF,4,3,0,ARI,SF,1,10,23,(3:00) (No Huddle Shotgun) B.Hoyer pass incomplete deep right to M.Floyd.,6,27,2012 -20121230_ARI@SF,4,2,55,ARI,SF,2,10,23,(2:55) (Shotgun) B.Hoyer pass incomplete short left to M.Floyd (T.Brock).,6,27,2012 -20121230_ARI@SF,4,2,50,ARI,SF,3,10,23,(2:50) (Shotgun) B.Hoyer pass incomplete short right to A.Roberts [T.Jerod-Eddie]. PENALTY on ARZ-S.Kelemete Offensive Holding 10 yards enforced at SF 23 - No Play.,6,27,2012 -20121230_ARI@SF,4,2,43,ARI,SF,3,20,33,(2:43) (Shotgun) B.Hoyer pass short left to W.Powell to SF 37 for -4 yards (I.Williams). Caught at SF37. 0-yds YAC,6,27,2012 -20121230_ARI@SF,4,2,6,ARI,SF,4,24,37,(2:06) (Shotgun) B.Hoyer pass deep right to M.Floyd for 37 yards TOUCHDOWN.,6,27,2012 -20121230_ARI@SF,4,2,6,ARI,SF,,,37,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,6,27,2012 -20121230_ARI@SF,4,2,6,ARI,SF,,,37,J.Feely kicks onside 9 yards from ARZ 35 to ARZ 44. R.Moss (didn't try to advance) to ARZ 44 for no gain (Z.Nash). PENALTY on ARZ-J.Sanders Offside on Free Kick 5 yards enforced at ARZ 44.,13,27,2012 -20121230_ARI@SF,4,1,58,SF,ARI,1,10,39,(1:58) L.James to ARZ 29 for 10 yards (D.Williams K.Rhodes).,27,13,2012 -20121230_ARI@SF,4,0,.S,SF,ARI,1,10,29,A.Smith kneels to ARZ 30 for -1 yards.,27,13,2012 -20121230_ARI@SF,4,0,.S,SF,ARI,2,11,30,A.Smith kneels to ARZ 31 for -1 yards.,27,13,2012 -20121230_ARI@SF,4,0,.S,SF,ARI,,,30,                      ,27,13,2012 -20121230_STL@SEA,1,0,0,SEA,STL,,,30,S.Hauschka kicks 70 yards from SEA 35 to SL -5. C.Givens to SL 20 for 25 yards (C.Maragos; B.Maxwell).,0,0,2012 -20121230_STL@SEA,1,59,55,STL,SEA,1,10,80,(14:55) S.Jackson left guard to SL 21 for 1 yard (B.Mebane; K.Wright).,0,0,2012 -20121230_STL@SEA,1,59,16,STL,SEA,2,9,79,(14:16) S.Bradford pass short left to M.Mulligan to SL 31 for 10 yards (M.Smith; K.Wright).,0,0,2012 -20121230_STL@SEA,1,58,37,STL,SEA,1,10,69,(13:37) (No Huddle) S.Jackson left end to SL 33 for 2 yards (C.Clemons).,0,0,2012 -20121230_STL@SEA,1,57,58,STL,SEA,2,8,67,(12:58) PENALTY on SL-R.Turner False Start 5 yards enforced at SL 33 - No Play.,0,0,2012 -20121230_STL@SEA,1,57,30,STL,SEA,2,13,72,(12:30) S.Bradford pass short right to S.Jackson to SL 35 for 7 yards (B.Wagner).,0,0,2012 -20121230_STL@SEA,1,56,48,STL,SEA,3,6,65,(11:48) (No Huddle Shotgun) S.Bradford pass incomplete short middle [C.Clemons].,0,0,2012 -20121230_STL@SEA,1,56,45,STL,SEA,4,6,65,(11:45) J.Hekker punts 52 yards to SEA 13 Center-J.McQuaide. L.Washington ran ob at SEA 22 for 9 yards.,0,0,2012 -20121230_STL@SEA,1,56,34,SEA,STL,1,10,78,(11:34) (Shotgun) R.Wilson pass short middle to Z.Miller to SEA 29 for 7 yards (C.Finnegan; J.Laurinaitis).,0,0,2012 -20121230_STL@SEA,1,55,58,SEA,STL,2,3,71,(10:58) (Shotgun) R.Wilson pass short right to G.Tate to SL 41 for 30 yards (J.Laurinaitis).,0,0,2012 -20121230_STL@SEA,1,55,15,SEA,STL,1,10,41,(10:15) M.Lynch right tackle to SL 39 for 2 yards (J.Dunbar; C.Long).,0,0,2012 -20121230_STL@SEA,1,54,39,SEA,STL,2,8,39,(9:39) (Shotgun) M.Lynch left guard to SL 40 for -1 yards (K.Langford; C.Long).,0,0,2012 -20121230_STL@SEA,1,54,2,SEA,STL,3,9,40,(9:02) (Shotgun) PENALTY on SL-E.Sims Neutral Zone Infraction 5 yards enforced at SL 40 - No Play.,0,0,2012 -20121230_STL@SEA,1,53,41,SEA,STL,3,4,35,(8:41) (Shotgun) R.Wilson pass short right to D.Baldwin pushed ob at SL 28 for 7 yards (T.Johnson).,0,0,2012 -20121230_STL@SEA,1,53,13,SEA,STL,1,10,28,(8:13) R.Wilson pass deep left to Z.Miller for 28 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on SEA-A.McCoy Offensive Pass Interference 10 yards enforced at SL 28 - No Play.,0,0,2012 -20121230_STL@SEA,1,53,6,SEA,STL,1,20,38,(8:06) (Shotgun) R.Wilson sacked at SL 45 for -7 yards (C.Long).,0,0,2012 -20121230_STL@SEA,1,52,33,SEA,STL,2,27,45,(7:33) (Shotgun) M.Lynch left tackle to SL 30 for 15 yards (E.Sims; C.Finnegan).,0,0,2012 -20121230_STL@SEA,1,51,52,SEA,STL,3,12,30,(6:52) (Shotgun) R.Wilson sacked at SL 35 for -5 yards (W.Hayes).,0,0,2012 -20121230_STL@SEA,1,51,0,SEA,STL,4,17,35,(6:00) J.Ryan punts 24 yards to SL 11 Center-C.Gresham fair catch by D.Amendola.,0,0,2012 -20121230_STL@SEA,1,50,50,STL,SEA,1,10,89,(5:50) S.Bradford pass incomplete short left to B.Gibson.,0,0,2012 -20121230_STL@SEA,1,50,47,STL,SEA,2,10,89,(5:47) S.Jackson up the middle to SL 11 for no gain (C.Clemons).,0,0,2012 -20121230_STL@SEA,1,50,12,STL,SEA,3,10,89,(5:12) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 20 for 9 yards (M.Trufant). Official measurement. St. Louis challenged the first down ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20121230_STL@SEA,1,49,54,STL,SEA,4,1,80,(4:54) J.Hekker punts 44 yards to SEA 36 Center-J.McQuaide downed by SL-C.Dahl.,0,0,2012 -20121230_STL@SEA,1,49,45,SEA,STL,1,10,64,(4:45) M.Lynch left tackle to SEA 47 for 11 yards (J.Laurinaitis R.McIntosh).,0,0,2012 -20121230_STL@SEA,1,49,8,SEA,STL,1,10,53,(4:08) (Shotgun) R.Wilson pass short right to M.Lynch to SL 47 for 6 yards (K.Langford; J.Dunbar).,0,0,2012 -20121230_STL@SEA,1,48,21,SEA,STL,2,4,47,(3:21) (Shotgun) R.Turbin left guard to SL 45 for 2 yards (Q.Mikell; W.Hayes).,0,0,2012 -20121230_STL@SEA,1,47,43,SEA,STL,3,2,45,(2:43) (Shotgun) R.Wilson scrambles left tackle to SL 42 for 3 yards (R.McIntosh).,0,0,2012 -20121230_STL@SEA,1,46,59,SEA,STL,1,10,48,(1:59) (Shotgun) R.Wilson FUMBLES (Aborted) at SL 48 and recovers at SL 48. R.Wilson sacked at 50 for -8 yards (J.Dunbar).,0,0,2012 -20121230_STL@SEA,1,46,22,SEA,STL,2,18,50,(1:22) (Shotgun) R.Wilson pass incomplete short middle to Z.Miller.,0,0,2012 -20121230_STL@SEA,1,46,18,SEA,STL,3,18,50,(1:18) (Shotgun) R.Wilson pass short middle to R.Turbin to SL 38 for 12 yards (J.Dunbar; J.Laurinaitis).,0,0,2012 -20121230_STL@SEA,1,45,40,SEA,STL,4,6,38,(:40) J.Ryan punts 31 yards to SL 7 Center-C.Gresham. D.Amendola MUFFS catch ball out of bounds at SL 12.,0,0,2012 -20121230_STL@SEA,1,45,31,STL,SEA,1,10,88,(:31) D.Richardson right tackle to SL 12 for no gain (M.Smith).,0,0,2012 -20121230_STL@SEA,2,45,0,STL,SEA,2,10,88,(15:00) D.Richardson left end to SL 12 for no gain (B.Mebane C.Clemons).,0,0,2012 -20121230_STL@SEA,2,44,11,STL,SEA,3,10,88,(14:11) (Shotgun) PENALTY on SL-S.Bradford Delay of Game 5 yards enforced at SL 12 - No Play.,0,0,2012 -20121230_STL@SEA,2,43,48,STL,SEA,3,15,93,(13:48) (Shotgun) S.Bradford pass short middle to D.Richardson to SL 18 for 11 yards (K.Wright). PENALTY on SL-C.Williams Unnecessary Roughness 9 yards enforced at SL 18.,0,0,2012 -20121230_STL@SEA,2,43,31,STL,SEA,4,13,91,(13:31) J.Hekker punts 33 yards to SL 42 Center-J.McQuaide out of bounds.,0,0,2012 -20121230_STL@SEA,2,43,19,SEA,STL,1,10,42,(13:19) (Shotgun) M.Lynch right tackle to SL 18 for 24 yards (J.Dunbar; C.Dahl).,0,0,2012 -20121230_STL@SEA,2,42,48,SEA,STL,1,10,18,(12:48) PENALTY on SEA-B.Giacomini False Start 5 yards enforced at SL 18 - No Play.,0,0,2012 -20121230_STL@SEA,2,42,7,SEA,STL,1,15,23,(12:07) M.Lynch right tackle to SL 23 for no gain (J.Dunbar).,0,0,2012 -20121230_STL@SEA,2,41,28,SEA,STL,2,15,23,(11:28) (Shotgun) R.Wilson sacked at SL 25 for -2 yards (R.Quinn).,0,0,2012 -20121230_STL@SEA,2,40,52,SEA,STL,3,17,25,(10:52) (Shotgun) R.Wilson pass incomplete short right to A.McCoy.,0,0,2012 -20121230_STL@SEA,2,40,45,SEA,STL,4,17,25,(10:45) S.Hauschka 43 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20121230_STL@SEA,2,40,45,SEA,STL,,,25,S.Hauschka kicks 67 yards from SEA 35 to SL -2. C.Givens to SL 24 for 26 yards (K.Chancellor).,3,0,2012 -20121230_STL@SEA,2,40,35,STL,SEA,1,10,76,(10:35) S.Bradford pass short left to L.Kendricks to SL 32 for 8 yards (B.Irvin).,0,3,2012 -20121230_STL@SEA,2,40,35,STL,SEA,2,2,68,(10:35) (Shotgun) PENALTY on SEA-R.Bryant Neutral Zone Infraction 5 yards enforced at SL 32 - No Play.,0,3,2012 -20121230_STL@SEA,2,39,39,STL,SEA,1,10,63,(9:39) (Shotgun) S.Bradford pass short left to S.Jackson to SL 40 for 3 yards (E.Thomas; K.Wright).,0,3,2012 -20121230_STL@SEA,2,38,57,STL,SEA,2,7,60,(8:57) S.Jackson left guard to SEA 46 for 14 yards (B.Wagner).,0,3,2012 -20121230_STL@SEA,2,38,19,STL,SEA,1,10,46,(8:19) S.Bradford pass short middle to S.Jackson to SEA 41 for 5 yards (K.Wright; M.Smith).,0,3,2012 -20121230_STL@SEA,2,37,38,STL,SEA,2,5,41,(7:38) (Shotgun) S.Bradford pass incomplete short left to M.Mulligan [B.Irvin].,0,3,2012 -20121230_STL@SEA,2,37,34,STL,SEA,3,5,41,(7:34) (Shotgun) S.Bradford pass short left to C.Givens pushed ob at SEA 4 for 37 yards (E.Thomas).,0,3,2012 -20121230_STL@SEA,2,36,55,STL,SEA,1,4,4,(6:55) S.Jackson right tackle to SEA 2 for 2 yards (C.McDonald; B.Wagner).,0,3,2012 -20121230_STL@SEA,2,36,9,STL,SEA,2,2,2,(6:09) (Shotgun) S.Bradford pass short middle to A.Pettis for 2 yards TOUCHDOWN.,0,3,2012 -20121230_STL@SEA,2,36,9,STL,SEA,,,2,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,0,3,2012 -20121230_STL@SEA,2,36,9,STL,SEA,,,2,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,7,3,2012 -20121230_STL@SEA,2,36,3,SEA,STL,1,10,80,(6:03) (Shotgun) M.Lynch left guard pushed ob at SEA 39 for 19 yards (Q.Mikell).,3,7,2012 -20121230_STL@SEA,2,35,31,SEA,STL,1,10,61,(5:31) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 48 for 9 yards (Q.Mikell; R.McIntosh).,3,7,2012 -20121230_STL@SEA,2,34,53,SEA,STL,2,1,52,(4:53) M.Lynch up the middle to SEA 44 for -4 yards (T.Johnson; M.Brockers).,3,7,2012 -20121230_STL@SEA,2,34,8,SEA,STL,3,5,56,(4:08) R.Turbin left end to SEA 37 for -7 yards (C.Finnegan).,3,7,2012 -20121230_STL@SEA,2,33,31,SEA,STL,4,12,63,(3:31) J.Ryan punts 34 yards to SL 29 Center-C.Gresham out of bounds.,3,7,2012 -20121230_STL@SEA,2,33,24,STL,SEA,1,10,71,(3:24) S.Bradford pass incomplete deep right to B.Gibson.,7,3,2012 -20121230_STL@SEA,2,33,19,STL,SEA,2,10,71,(3:19) (Shotgun) S.Bradford pass incomplete short middle to A.Pettis.,7,3,2012 -20121230_STL@SEA,2,33,15,STL,SEA,3,10,71,(3:15) (Shotgun) S.Bradford pass incomplete short right to D.Amendola [B.Wagner].,7,3,2012 -20121230_STL@SEA,2,33,9,STL,SEA,4,10,71,(3:09) J.Hekker punts 57 yards to SEA 14 Center-J.McQuaide. L.Washington to SEA 27 for 13 yards (J.Hull).,7,3,2012 -20121230_STL@SEA,2,32,58,SEA,STL,1,10,73,(2:58) R.Wilson scrambles up the middle to SEA 34 for 7 yards (R.McIntosh).,3,7,2012 -20121230_STL@SEA,2,32,18,SEA,STL,2,3,66,(2:18) R.Wilson pass incomplete short left to S.Rice. PENALTY on SL-J.Jenkins Defensive Holding 5 yards enforced at SEA 34 - No Play.,3,7,2012 -20121230_STL@SEA,2,32,15,SEA,STL,1,10,61,(2:15) (Shotgun) PENALTY on SL-E.Sims Defensive Offside 5 yards enforced at SEA 39 - No Play. Unabated to the QB.,3,7,2012 -20121230_STL@SEA,2,32,15,SEA,STL,1,5,56,(2:15) (Shotgun) R.Wilson sacked at SEA 35 for -9 yards (C.Long).,3,7,2012 -20121230_STL@SEA,2,32,0,SEA,STL,2,14,65,(2:00) (Shotgun) R.Wilson right end to SEA 46 for 11 yards (Q.Mikell).,3,7,2012 -20121230_STL@SEA,2,31,28,SEA,STL,3,3,54,(1:28) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 48 for 2 yards (T.Johnson; Q.Mikell).,3,7,2012 -20121230_STL@SEA,2,31,17,SEA,STL,4,1,52,(1:17) J.Ryan punts 52 yards to end zone Center-C.Gresham Touchback.,3,7,2012 -20121230_STL@SEA,2,31,8,STL,SEA,1,10,80,(1:08) (Shotgun) S.Bradford pass short left to S.Jackson pushed ob at SL 28 for 8 yards (K.Wright).,7,3,2012 -20121230_STL@SEA,2,31,4,STL,SEA,2,2,72,(1:04) (Shotgun) S.Bradford pass short middle to S.Jackson to SL 33 for 5 yards (K.Wright; B.Wagner).,7,3,2012 -20121230_STL@SEA,2,30,45,STL,SEA,1,10,67,(:45) (No Huddle Shotgun) S.Bradford pass short middle to D.Amendola to SL 41 for 8 yards (B.Wagner; K.Wright).,7,3,2012 -20121230_STL@SEA,2,30,25,STL,SEA,2,2,59,(:25) (No Huddle Shotgun) S.Bradford pass short left to D.Amendola pushed ob at SL 46 for 5 yards (M.Trufant).,7,3,2012 -20121230_STL@SEA,2,30,21,STL,SEA,1,10,54,(:21) (Shotgun) S.Bradford pass incomplete deep left to B.Quick.,7,3,2012 -20121230_STL@SEA,2,30,16,STL,SEA,2,10,54,(:16) (Shotgun) S.Bradford pass deep middle to B.Gibson to SEA 33 for 21 yards (K.Chancellor).,7,3,2012 -20121230_STL@SEA,2,30,10,STL,SEA,1,10,33,(:10) G.Zuerlein 51 yard field goal is No Good Wide Right Center-J.McQuaide Holder-J.Hekker.,7,3,2012 -20121230_STL@SEA,2,30,6,SEA,STL,1,10,59,(:06) R.Wilson kneels to SEA 40 for -1 yards.,3,7,2012 -20121230_STL@SEA,3,30,0,STL,SEA,,,59,G.Zuerlein kicks 65 yards from SL 35 to SEA 0. L.Washington to SEA 15 for 15 yards (J.Cole).,7,3,2012 -20121230_STL@SEA,3,29,53,SEA,STL,1,10,85,(14:53) (Shotgun) R.Wilson right end to SEA 20 for 5 yards (T.Johnson).,3,7,2012 -20121230_STL@SEA,3,29,19,SEA,STL,2,5,80,(14:19) (Shotgun) M.Lynch up the middle to SEA 23 for 3 yards (J.Dunbar).,3,7,2012 -20121230_STL@SEA,3,28,47,SEA,STL,3,2,77,(13:47) R.Wilson pass deep right to A.McCoy to SL 28 for 49 yards (C.Dahl).,3,7,2012 -20121230_STL@SEA,3,28,2,SEA,STL,1,10,28,(13:02) M.Lynch right tackle to SL 28 for no gain (W.Hayes).,3,7,2012 -20121230_STL@SEA,3,27,26,SEA,STL,2,10,28,(12:26) (Shotgun) M.Lynch up the middle to SL 25 for 3 yards (E.Sims; M.Brockers).,3,7,2012 -20121230_STL@SEA,3,27,5,SEA,STL,3,7,25,(12:05) (Shotgun) PENALTY on SL Defensive 12 On-field 5 yards enforced at SL 25 - No Play.,3,7,2012 -20121230_STL@SEA,3,26,19,SEA,STL,3,2,20,(11:19) (Shotgun) R.Wilson sacked at SL 30 for -10 yards (C.Long).,3,7,2012 -20121230_STL@SEA,3,25,45,SEA,STL,4,12,30,(10:45) S.Hauschka 49 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,3,7,2012 -20121230_STL@SEA,3,25,45,SEA,STL,,,30,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,6,7,2012 -20121230_STL@SEA,3,25,41,STL,SEA,1,10,80,(10:41) S.Jackson right tackle to SL 23 for 3 yards (A.Branch; R.Bryant).,7,6,2012 -20121230_STL@SEA,3,25,1,STL,SEA,2,7,77,(10:01) S.Jackson right guard to SL 38 for 15 yards (R.Sherman; K.Chancellor).,7,6,2012 -20121230_STL@SEA,3,24,26,STL,SEA,1,10,62,(9:26) S.Jackson right tackle to SL 43 for 5 yards (R.Sherman; R.Bryant).,7,6,2012 -20121230_STL@SEA,3,23,44,STL,SEA,2,5,57,(8:44) S.Bradford pass short middle to S.Jackson to SL 47 for 4 yards (M.Smith). PENALTY on SEA-K.Wright Defensive Holding 5 yards enforced at SL 43 - No Play.,7,6,2012 -20121230_STL@SEA,3,23,12,STL,SEA,1,10,52,(8:12) (Shotgun) S.Bradford pass incomplete deep right to M.McNeill (M.Smith).,7,6,2012 -20121230_STL@SEA,3,23,3,STL,SEA,2,10,52,(8:03) (Shotgun) S.Bradford pass short right to D.Richardson pushed ob at SEA 49 for 3 yards (A.Branch). SEA-K.Wright was injured during the play.,7,6,2012 -20121230_STL@SEA,3,22,39,STL,SEA,3,7,49,(7:39) (Shotgun) S.Bradford pass short left to A.Pettis pushed ob at SEA 42 for 7 yards (B.Maxwell). Seattle challenged the first down ruling and the play was Upheld. (Timeout #1.),7,6,2012 -20121230_STL@SEA,3,15,**,STL,SEA,1,10,41,*** play under review ***,7,6,2012 -20121230_STL@SEA,3,22,3,STL,SEA,1,10,25,(7:03) S.Jackson up the middle to SEA 25 for no gain (B.Mebane).,7,6,2012 -20121230_STL@SEA,3,21,22,STL,SEA,2,10,25,(6:22) (Shotgun) S.Bradford pass short right to D.Amendola to SEA 20 for 5 yards (K.Chancellor; M.Trufant).,7,6,2012 -20121230_STL@SEA,3,20,40,STL,SEA,3,5,20,(5:40) (Shotgun) S.Bradford pass incomplete short middle to B.Gibson [B.Irvin].,7,6,2012 -20121230_STL@SEA,3,20,36,STL,SEA,4,5,20,(5:36) G.Zuerlein 39 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker. PENALTY on SL-W.Hunter Unnecessary Roughness 15 yards enforced between downs.,7,6,2012 -20121230_STL@SEA,3,20,36,STL,SEA,,,20,G.Zuerlein kicks 68 yards from SL 20 to SEA 12. L.Washington to SEA 35 for 23 yards (D.Stewart).,10,6,2012 -20121230_STL@SEA,3,20,26,SEA,STL,1,10,65,(5:26) (Shotgun) R.Wilson pass short right to D.Baldwin ran ob at SEA 47 for 12 yards.,6,10,2012 -20121230_STL@SEA,3,19,53,SEA,STL,1,10,53,(4:53) R.Wilson pass incomplete deep middle to G.Tate (T.Johnson). SL-T.Johnson was injured during the play.,6,10,2012 -20121230_STL@SEA,3,19,41,SEA,STL,2,10,53,(4:41) (Shotgun) M.Lynch up the middle to SL 48 for 5 yards (J.Dunbar; M.Brockers).,6,10,2012 -20121230_STL@SEA,3,19,11,SEA,STL,3,5,48,(4:11) (Shotgun) PENALTY on SL-J.Dunbar Neutral Zone Infraction 4 yards enforced at SL 48 - No Play.,6,10,2012 -20121230_STL@SEA,3,19,7,SEA,STL,3,1,44,(4:07) PENALTY on SEA-R.Okung False Start 5 yards enforced at SL 44 - No Play.,6,10,2012 -20121230_STL@SEA,3,18,52,SEA,STL,3,6,49,(3:52) (Shotgun) R.Wilson pass short right to G.Tate to SL 18 for 31 yards (C.Dahl; Q.Mikell).,6,10,2012 -20121230_STL@SEA,3,18,8,SEA,STL,1,10,18,(3:08) R.Wilson pass short right to M.Lynch to SL 10 for 8 yards (C.Dahl) [W.Hayes].,6,10,2012 -20121230_STL@SEA,3,17,16,SEA,STL,2,2,10,(2:16) R.Wilson pass short right to M.Robinson for 10 yards TOUCHDOWN.,6,10,2012 -20121230_STL@SEA,3,17,16,SEA,STL,,,10,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan. PENALTY on SL-C.Long Unnecessary Roughness 15 yards enforced between downs.,6,10,2012 -20121230_STL@SEA,3,17,9,STL,SEA,1,10,59,(2:09) I.Pead right tackle to SL 48 for 7 yards (R.Bryant).,10,13,2012 -20121230_STL@SEA,3,16,36,STL,SEA,2,3,52,(1:36) I.Pead up the middle to SEA 45 for 7 yards (K.Chancellor; J.Lane).,10,13,2012 -20121230_STL@SEA,3,16,0,STL,SEA,1,10,45,(1:00) I.Pead up the middle to SEA 44 for 1 yard (B.Wagner; R.Bryant).,10,13,2012 -20121230_STL@SEA,3,15,16,STL,SEA,2,9,44,(:16) (Shotgun) S.Bradford pass short left to B.Gibson pushed ob at SEA 32 for 12 yards (J.Lane). Penalty on SEA-J.Lane Illegal Contact declined.,10,13,2012 -20121230_STL@SEA,4,15,0,STL,SEA,1,10,32,(15:00) S.Bradford pass short right to B.Gibson pushed ob at SEA 20 for 12 yards (B.Wagner). Penalty on SEA-R.Sherman Defensive Holding declined.,10,13,2012 -20121230_STL@SEA,4,14,30,STL,SEA,1,10,20,(14:30) I.Pead left end pushed ob at SEA 15 for 5 yards (B.Wagner).,10,13,2012 -20121230_STL@SEA,4,13,56,STL,SEA,2,5,15,(13:56) S.Bradford pass short middle to L.Kendricks to SEA 5 for 10 yards (K.Chancellor).,10,13,2012 -20121230_STL@SEA,4,13,13,STL,SEA,1,5,5,(13:13) I.Pead left guard to SEA 4 for 1 yard (K.Wright R.Bryant).,10,13,2012 -20121230_STL@SEA,4,12,31,STL,SEA,2,4,4,(12:31) (Shotgun) S.Bradford pass incomplete short right to D.Amendola (M.Trufant).,10,13,2012 -20121230_STL@SEA,4,12,27,STL,SEA,3,4,4,(12:27) (Shotgun) PENALTY on SL-S.Bradford Delay of Game 5 yards enforced at SEA 4 - No Play.,10,13,2012 -20121230_STL@SEA,4,12,27,STL,SEA,3,9,9,(12:27) (Shotgun) S.Jackson left guard to SEA 2 for 7 yards (B.Wagner; A.Branch).,10,13,2012 -20121230_STL@SEA,4,11,55,STL,SEA,4,2,2,(11:55) (Field Goal formation) PENALTY on SL-R.Turner False Start 5 yards enforced at SEA 2 - No Play.,10,13,2012 -20121230_STL@SEA,4,11,27,STL,SEA,4,7,7,(11:27) G.Zuerlein 25 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,10,13,2012 -20121230_STL@SEA,4,11,27,STL,SEA,,,7,G.Zuerlein kicks 74 yards from SL 35 to SEA -9. L.Washington to SEA 15 for 24 yards (J.Cole).,13,13,2012 -20121230_STL@SEA,4,11,19,SEA,STL,1,10,85,(11:19) (Shotgun) R.Wilson pass short right to M.Robinson pushed ob at SEA 34 for 19 yards (T.Johnson).,13,13,2012 -20121230_STL@SEA,4,10,52,SEA,STL,1,10,66,(10:52) M.Lynch up the middle to SEA 38 for 4 yards (J.Laurinaitis; C.Dahl).,13,13,2012 -20121230_STL@SEA,4,10,14,SEA,STL,2,6,62,(10:14) R.Wilson pass short right to G.Tate pushed ob at SL 47 for 15 yards (T.Johnson). PENALTY on SEA Illegal Formation 5 yards enforced at SEA 38 - No Play.,13,13,2012 -20121230_STL@SEA,4,9,47,SEA,STL,2,11,67,(9:47) (Shotgun) M.Lynch up the middle to SEA 35 for 2 yards (Q.Mikell; J.Dunbar).,13,13,2012 -20121230_STL@SEA,4,9,5,SEA,STL,3,9,65,(9:05) (Shotgun) R.Wilson pass deep left to D.Baldwin to SL 16 for 49 yards (Q.Mikell). PENALTY on SEA-A.McCoy Offensive Holding 10 yards enforced at SEA 35 - No Play.,13,13,2012 -20121230_STL@SEA,4,8,32,SEA,STL,3,19,75,(8:32) (Shotgun) R.Wilson scrambles right end to SEA 38 for 13 yards (T.Johnson).,13,13,2012 -20121230_STL@SEA,4,7,50,SEA,STL,4,6,62,(7:50) J.Ryan punts 36 yards to SL 26 Center-C.Gresham. D.Amendola to SL 28 for 2 yards (B.Maxwell). PENALTY on SL-M.Haggan Running Into the Kicker 5 yards enforced at SEA 38 - No Play.,13,13,2012 -20121230_STL@SEA,4,7,41,SEA,STL,4,1,57,(7:41) J.Ryan punts 42 yards to SL 15 Center-C.Gresham. D.Amendola to SL 23 for 8 yards (M.Morgan).,13,13,2012 -20121230_STL@SEA,4,7,32,STL,SEA,1,10,77,(7:32) (Shotgun) S.Bradford pass short middle to A.Pettis to SL 38 for 15 yards (B.Wagner).,13,13,2012 -20121230_STL@SEA,4,6,54,STL,SEA,1,10,62,(6:54) S.Jackson up the middle to SL 41 for 3 yards (M.Smith).,13,13,2012 -20121230_STL@SEA,4,6,11,STL,SEA,2,7,59,(6:11) S.Bradford sacked at SL 27 for -14 yards (C.Clemons). FUMBLES (C.Clemons) [C.Clemons] RECOVERED by SEA-M.Smith at SL 28. M.Smith for 28 yards TOUCHDOWN. The Replay Assistant challenged the incomplete pass ruling and the play was REVERSED. S.Bradford pass incomplete short middle [C.Clemons]. PENALTY on SL-Sh.Smith Offensive Holding 10 yards enforced at SL 41 - No Play.,13,13,2012 -20121230_STL@SEA,4,6,5,STL,SEA,2,17,69,(6:05) (Shotgun) S.Bradford pass incomplete short left to C.Givens.,13,13,2012 -20121230_STL@SEA,4,6,2,STL,SEA,3,17,69,(6:02) (Shotgun) S.Bradford pass short middle to S.Jackson to SL 43 for 12 yards (E.Thomas; K.Chancellor).,13,13,2012 -20121230_STL@SEA,4,5,21,STL,SEA,4,5,57,(5:21) J.Hekker punts 57 yards to end zone Center-J.McQuaide Touchback. PENALTY on SEA-A.Bradford Offensive Holding 10 yards enforced at SEA 20.,13,13,2012 -20121230_STL@SEA,4,5,11,SEA,STL,1,10,90,(5:11) (Shotgun) M.Lynch right tackle to SEA 18 for 8 yards (C.Finnegan Q.Mikell).,13,13,2012 -20121230_STL@SEA,4,4,23,SEA,STL,2,2,82,(4:23) M.Lynch up the middle to SEA 18 for no gain (J.Dunbar). FUMBLES (J.Dunbar) recovered by SEA-G.Tate at SEA 18. G.Tate to SEA 22 for 4 yards (T.Johnson).,13,13,2012 -20121230_STL@SEA,4,4,2,SEA,STL,1,10,78,(4:02) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,13,13,2012 -20121230_STL@SEA,4,3,56,SEA,STL,2,10,78,(3:56) (Shotgun) R.Wilson right end to SEA 27 for 5 yards (J.Cudjo).,13,13,2012 -20121230_STL@SEA,4,3,19,SEA,STL,3,5,73,(3:19) (Shotgun) R.Wilson pass deep right to G.Tate to SL 29 for 44 yards (C.Dahl).,13,13,2012 -20121230_STL@SEA,4,2,30,SEA,STL,1,10,29,(2:30) R.Wilson pass short right to M.Robinson pushed ob at SL 25 for 4 yards (Q.Mikell).,13,13,2012 -20121230_STL@SEA,4,2,24,SEA,STL,2,6,25,(2:24) M.Lynch left tackle to SL 19 for 6 yards (M.Haggan; J.Dunbar).,13,13,2012 -20121230_STL@SEA,4,2,0,SEA,STL,1,10,19,(2:00) (Shotgun) R.Wilson left end to SL 4 for 15 yards (J.Jenkins). SL-J.Jenkins was injured during the play.,13,13,2012 -20121230_STL@SEA,4,1,51,SEA,STL,1,4,4,(1:51) M.Lynch left end for 4 yards TOUCHDOWN.,13,13,2012 -20121230_STL@SEA,4,1,45,SEA,STL,2,1,1,(1:45) R.Wilson scrambles left end for 1 yard TOUCHDOWN. Penalty on SL-K.Langford Defensive Offside declined.,13,13,2012 -20121230_STL@SEA,4,1,45,SEA,STL,,,1,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,13,13,2012 -20121230_STL@SEA,4,1,45,SEA,STL,,,1,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,26,13,2012 -20121230_STL@SEA,4,1,39,STL,SEA,1,10,80,(1:39) (Shotgun) S.Bradford pass incomplete deep left to B.Gibson [B.Irvin]. PENALTY on SEA-B.Maxwell Defensive Pass Interference 25 yards enforced at SL 20 - No Play. Penalty on SEA-B.Irvin Roughing the Passer declined.,13,26,2012 -20121230_STL@SEA,4,1,33,STL,SEA,1,10,55,(1:33) (Shotgun) S.Bradford pass short right to L.Kendricks to SEA 40 for 15 yards (K.Chancellor R.Sherman).,13,26,2012 -20121230_STL@SEA,4,1,12,STL,SEA,1,10,40,(1:12) (No Huddle Shotgun) S.Bradford pass incomplete short right to D.Amendola.,13,26,2012 -20121230_STL@SEA,4,1,8,STL,SEA,2,10,40,(1:08) (Shotgun) S.Bradford pass short left to S.Jackson to SEA 35 for 5 yards (G.Scruggs).,13,26,2012 -20121230_STL@SEA,4,1,2,STL,SEA,3,5,35,(1:02) (Shotgun) S.Bradford pass incomplete short right to D.Amendola.,13,26,2012 -20121230_STL@SEA,4,0,59,STL,SEA,4,5,35,(:59) (Shotgun) S.Bradford scrambles left end ran ob at SEA 29 for 6 yards.,13,26,2012 -20121230_STL@SEA,4,0,53,STL,SEA,1,10,29,(:53) (Shotgun) S.Bradford pass incomplete short left to L.Kendricks.,13,26,2012 -20121230_STL@SEA,4,0,48,STL,SEA,2,10,29,(:48) (Shotgun) S.Bradford pass incomplete short middle [E.Thomas].,13,26,2012 -20121230_STL@SEA,4,0,45,STL,SEA,3,10,29,(:45) (Shotgun) S.Bradford pass incomplete short right to D.Amendola (M.Trufant).,13,26,2012 -20121230_STL@SEA,4,0,40,STL,SEA,4,10,29,(:40) (Shotgun) S.Bradford pass deep right intended for A.Pettis INTERCEPTED by R.Sherman at SEA -1. R.Sherman to SEA 8 for 9 yards.,13,26,2012 -20121230_STL@SEA,4,0,33,SEA,STL,1,10,92,(:33) R.Wilson kneels to SEA 7 for -1 yards.,26,13,2012 -20121230_STL@SEA,4,0,33,SEA,STL,,,92,                      ,26,13,2012 -20121230_DAL@WAS,1,0,0,DAL,WAS,,,92,D.Bailey kicks 67 yards from DAL 35 to WAS -2. N.Paul to WAS 15 for 17 yards (D.Harris; E.Frampton).,0,0,2012 -20121230_DAL@WAS,1,59,39,WAS,DAL,1,10,85,(14:39) A.Morris left guard to WAS 15 for no gain (M.Spears; J.Hatcher).,0,0,2012 -20121230_DAL@WAS,1,59,11,WAS,DAL,2,10,85,(14:11) A.Morris right tackle to WAS 17 for 2 yards (E.Frampton; S.Lissemore).,0,0,2012 -20121230_DAL@WAS,1,58,28,WAS,DAL,3,8,83,(13:28) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,0,0,2012 -20121230_DAL@WAS,1,58,22,WAS,DAL,4,8,83,(13:22) S.Rocca punts 38 yards to DAL 45 Center-N.Sundberg. D.Harris to WAS 27 for 28 yards (R.Doughty).,0,0,2012 -20121230_DAL@WAS,1,58,9,DAL,WAS,1,10,27,(13:09) D.Murray up the middle to WAS 25 for 2 yards (B.Cofield; P.Riley).,0,0,2012 -20121230_DAL@WAS,1,57,29,DAL,WAS,2,8,25,(12:29) (Shotgun) T.Romo pass incomplete short right to M.Austin.,0,0,2012 -20121230_DAL@WAS,1,57,24,DAL,WAS,3,8,25,(12:24) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by R.Crawford at WAS 17. R.Crawford to WAS 29 for 12 yards (M.Bernadeau; K.Ogletree).,0,0,2012 -20121230_DAL@WAS,1,57,17,WAS,DAL,1,10,71,(12:17) A.Morris left end to WAS 48 for 19 yards (G.Sensabaugh).,0,0,2012 -20121230_DAL@WAS,1,56,35,WAS,DAL,1,10,52,(11:35) (Shotgun) A.Morris right tackle to DAL 42 for 10 yards (C.Peprah).,0,0,2012 -20121230_DAL@WAS,1,55,54,WAS,DAL,1,10,42,(10:54) (Shotgun) A.Morris left tackle to DAL 38 for 4 yards (A.Albright; M.Jenkins).,0,0,2012 -20121230_DAL@WAS,1,55,11,WAS,DAL,2,6,38,(10:11) (Shotgun) S.Moss left end pushed ob at DAL 36 for 2 yards (A.Albright).,0,0,2012 -20121230_DAL@WAS,1,54,39,WAS,DAL,3,4,36,(9:39) (Shotgun) R.Griffin left end to DAL 27 for 9 yards (M.Claiborne; S.Moore).,0,0,2012 -20121230_DAL@WAS,1,53,59,WAS,DAL,1,10,27,(8:59) (Shotgun) A.Morris right end to DAL 24 for 3 yards (B.Poppinga M.Spears).,0,0,2012 -20121230_DAL@WAS,1,53,19,WAS,DAL,2,7,24,(8:19) (Shotgun) R.Griffin pass short middle to A.Morris to DAL 19 for 5 yards (E.Sims B.Poppinga).,0,0,2012 -20121230_DAL@WAS,1,52,41,WAS,DAL,3,2,19,(7:41) (Shotgun) A.Morris right guard to DAL 19 for no gain (A.Spencer; E.Sims).,0,0,2012 -20121230_DAL@WAS,1,52,4,WAS,DAL,4,2,19,(7:04) K.Forbath 37 yard field goal is No Good Hit Right Upright Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20121230_DAL@WAS,1,51,59,DAL,WAS,1,10,73,(6:59) T.Romo sacked at DAL 23 for -4 yards (L.Fletcher).,0,0,2012 -20121230_DAL@WAS,1,51,20,DAL,WAS,2,14,77,(6:20) (Shotgun) T.Romo pass incomplete short right to D.Bryant (D.Hall).,0,0,2012 -20121230_DAL@WAS,1,51,14,DAL,WAS,3,14,77,(6:14) (Shotgun) T.Romo pass deep right to D.Bryant ran ob at DAL 46 for 23 yards.,0,0,2012 -20121230_DAL@WAS,1,50,53,DAL,WAS,1,10,54,(5:53) D.Murray up the middle to WAS 49 for 5 yards (J.Jenkins L.Alexander).,0,0,2012 -20121230_DAL@WAS,1,50,13,DAL,WAS,2,5,49,(5:13) T.Romo pass deep left intended for M.Austin INTERCEPTED by J.Wilson at WAS 13. J.Wilson to WAS 14 for 1 yard (M.Austin).,0,0,2012 -20121230_DAL@WAS,1,50,2,WAS,DAL,1,10,86,(5:02) (Shotgun) R.Griffin pass short right to A.Morris to WAS 21 for 7 yards (E.Sims).,0,0,2012 -20121230_DAL@WAS,1,49,23,WAS,DAL,2,3,79,(4:23) (Shotgun) A.Morris left guard to WAS 26 for 5 yards (D.Connor).,0,0,2012 -20121230_DAL@WAS,1,48,40,WAS,DAL,1,10,74,(3:40) (Shotgun) R.Griffin pass incomplete deep left to J.Morgan.,0,0,2012 -20121230_DAL@WAS,1,48,32,WAS,DAL,2,10,74,(3:32) (Shotgun) R.Griffin pass short middle to L.Hankerson to WAS 38 for 12 yards (E.Frampton).,0,0,2012 -20121230_DAL@WAS,1,47,53,WAS,DAL,1,10,62,(2:53) (Shotgun) R.Griffin pass incomplete short middle to P.Garcon (M.Claiborne).,0,0,2012 -20121230_DAL@WAS,1,47,47,WAS,DAL,2,10,62,(2:47) (Shotgun) R.Griffin left end pushed ob at WAS 41 for 3 yards (M.Claiborne).,0,0,2012 -20121230_DAL@WAS,1,47,14,WAS,DAL,3,7,59,(2:14) (Shotgun) R.Griffin pass short right to S.Moss pushed ob at DAL 48 for 11 yards (B.Carr).,0,0,2012 -20121230_DAL@WAS,1,46,42,WAS,DAL,1,10,48,(1:42) (Shotgun) A.Morris left end to DAL 44 for 4 yards (D.Connor E.Frampton).,0,0,2012 -20121230_DAL@WAS,1,46,3,WAS,DAL,2,6,44,(1:03) (Shotgun) R.Griffin pass incomplete deep right to S.Moss (B.Carr).,0,0,2012 -20121230_DAL@WAS,1,45,51,WAS,DAL,3,6,44,(:51) (Shotgun) R.Griffin pass incomplete short right to S.Moss.,0,0,2012 -20121230_DAL@WAS,1,45,46,WAS,DAL,4,6,44,(:46) S.Rocca punts 33 yards to DAL 11 Center-N.Sundberg fair catch by D.Harris.,0,0,2012 -20121230_DAL@WAS,1,45,36,DAL,WAS,1,10,89,(:36) D.Murray right guard to DAL 18 for 7 yards (J.Wilson).,0,0,2012 -20121230_DAL@WAS,1,45,6,DAL,WAS,2,3,82,(:06) D.Murray right guard to DAL 22 for 4 yards (K.Golston; R.Jackson).,0,0,2012 -20121230_DAL@WAS,2,45,0,DAL,WAS,1,10,78,(15:00) D.Murray right end to DAL 19 for -3 yards (P.Riley; L.Fletcher).,0,0,2012 -20121230_DAL@WAS,2,44,10,DAL,WAS,2,13,81,(14:10) (Shotgun) T.Romo pass short right to J.Witten pushed ob at DAL 26 for 7 yards (R.Kerrigan).,0,0,2012 -20121230_DAL@WAS,2,43,46,DAL,WAS,3,6,74,(13:46) (Shotgun) T.Romo pass short middle to D.Harris to WAS 49 for 25 yards (Mad.Williams).,0,0,2012 -20121230_DAL@WAS,2,43,3,DAL,WAS,1,10,49,(13:03) F.Jones right end to WAS 40 for 9 yards (P.Riley). DAL-M.Austin was injured during the play. His return is Questionable.,0,0,2012 -20121230_DAL@WAS,2,42,23,DAL,WAS,2,1,40,(12:23) F.Jones left guard to WAS 36 for 4 yards (L.Fletcher R.Doughty).,0,0,2012 -20121230_DAL@WAS,2,41,38,DAL,WAS,1,10,36,(11:38) T.Romo pass short left to D.Bryant to WAS 20 for 16 yards (D.Hall; Mad.Williams). WAS-Mad.Williams was injured during the play. His return is Probable.,0,0,2012 -20121230_DAL@WAS,2,40,57,DAL,WAS,1,10,19,(10:57) D.Murray up the middle to WAS 15 for 4 yards (R.Doughty; L.Fletcher).,0,0,2012 -20121230_DAL@WAS,2,40,19,DAL,WAS,2,5,15,(10:19) D.Murray up the middle to WAS 10 for 5 yards (R.Doughty).,0,0,2012 -20121230_DAL@WAS,2,39,36,DAL,WAS,1,10,10,(9:36) D.Murray right guard to WAS 7 for 3 yards (S.Bowen P.Riley).,0,0,2012 -20121230_DAL@WAS,2,38,56,DAL,WAS,2,7,7,(8:56) D.Murray left end to WAS 9 for -2 yards (J.Pugh).,0,0,2012 -20121230_DAL@WAS,2,38,10,DAL,WAS,3,9,9,(8:10) (Shotgun) T.Romo pass short middle to J.Witten for 9 yards TOUCHDOWN.,0,0,2012 -20121230_DAL@WAS,2,38,10,DAL,WAS,,,9,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-B.Moorman.,0,0,2012 -20121230_DAL@WAS,2,38,10,DAL,WAS,,,9,D.Bailey kicks 50 yards from DAL 35 to WAS 15. E.Royster to WAS 32 for 17 yards (E.Frampton; B.Poppinga).,7,0,2012 -20121230_DAL@WAS,2,37,55,WAS,DAL,1,10,68,(7:55) (Shotgun) R.Griffin pass incomplete short left to J.Morgan.,0,7,2012 -20121230_DAL@WAS,2,37,47,WAS,DAL,2,10,68,(7:47) (Shotgun) A.Morris left guard to WAS 35 for 3 yards (T.Crawford; D.Connor).,0,7,2012 -20121230_DAL@WAS,2,37,7,WAS,DAL,3,7,65,(7:07) (Shotgun) R.Griffin pass short right to L.Paulsen to WAS 43 for 8 yards (S.Moore).,0,7,2012 -20121230_DAL@WAS,2,36,25,WAS,DAL,1,10,57,(6:25) (Shotgun) A.Morris left end to DAL 44 for 13 yards (G.Sensabaugh; E.Sims).,0,7,2012 -20121230_DAL@WAS,2,35,42,WAS,DAL,1,10,44,(5:42) (Shotgun) A.Morris right end to DAL 32 for 12 yards (J.Hatcher).,0,7,2012 -20121230_DAL@WAS,2,35,0,WAS,DAL,1,10,32,(5:00) (Shotgun) R.Griffin right end to DAL 23 for 9 yards (E.Frampton).,0,7,2012 -20121230_DAL@WAS,2,34,15,WAS,DAL,2,1,23,(4:15) E.Royster right end to DAL 17 for 6 yards (A.Spencer).,0,7,2012 -20121230_DAL@WAS,2,33,36,WAS,DAL,1,10,17,(3:36) (Shotgun) A.Morris left end for 17 yards TOUCHDOWN.,0,7,2012 -20121230_DAL@WAS,2,33,36,WAS,DAL,,,17,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,7,2012 -20121230_DAL@WAS,2,33,36,WAS,DAL,,,17,K.Forbath kicks 62 yards from WAS 35 to DAL 3. J.Phillips to DAL 23 for 20 yards (L.Alexander; K.Williams).,7,7,2012 -20121230_DAL@WAS,2,33,20,DAL,WAS,1,10,77,(3:20) T.Romo pass short middle to J.Witten to DAL 33 for 10 yards (P.Riley; L.Fletcher).,7,7,2012 -20121230_DAL@WAS,2,32,39,DAL,WAS,1,10,67,(2:39) T.Romo pass short left to J.Hanna pushed ob at DAL 41 for 8 yards (Mad.Williams; L.Fletcher).,7,7,2012 -20121230_DAL@WAS,2,32,9,DAL,WAS,2,2,59,(2:09) D.Murray right guard to DAL 45 for 4 yards (K.Golston; J.Jenkins).,7,7,2012 -20121230_DAL@WAS,2,32,0,DAL,WAS,1,10,55,(2:00) (Shotgun) T.Romo pass short middle to J.Witten to 50 for 5 yards (Mad.Williams).,7,7,2012 -20121230_DAL@WAS,2,31,34,DAL,WAS,2,5,50,(1:34) (No Huddle Shotgun) T.Romo pass short middle to D.Bryant to WAS 35 for 15 yards (D.Hall).,7,7,2012 -20121230_DAL@WAS,2,31,7,DAL,WAS,1,10,35,(1:07) (No Huddle Shotgun) T.Romo pass incomplete short middle to J.Hanna [B.Cofield].,7,7,2012 -20121230_DAL@WAS,2,31,2,DAL,WAS,2,10,35,(1:02) (Shotgun) T.Romo pass short right to J.Witten pushed ob at WAS 34 for 1 yard (L.Alexander) [J.Wilson].,7,7,2012 -20121230_DAL@WAS,2,30,51,DAL,WAS,3,9,34,(:51) (Shotgun) T.Romo pass incomplete deep right to D.Bryant.,7,7,2012 -20121230_DAL@WAS,2,30,45,DAL,WAS,4,9,34,(:45) B.Moorman punts 34 yards to end zone Center-L.Ladouceur Touchback.,7,7,2012 -20121230_DAL@WAS,2,30,38,WAS,DAL,1,10,80,(:38) (Shotgun) E.Royster up the middle to WAS 23 for 3 yards (J.Hatcher; S.Lissemore).,7,7,2012 -20121230_DAL@WAS,3,30,0,WAS,DAL,,,80,K.Forbath kicks 61 yards from WAS 35 to DAL 4. D.Harris to DAL 20 for 16 yards (R.Doughty).,7,7,2012 -20121230_DAL@WAS,3,29,54,DAL,WAS,1,10,80,(14:54) D.Murray up the middle to DAL 23 for 3 yards (J.Jenkins; P.Riley).,7,7,2012 -20121230_DAL@WAS,3,29,20,DAL,WAS,2,7,77,(14:20) D.Murray left end to DAL 29 for 6 yards (L.Fletcher).,7,7,2012 -20121230_DAL@WAS,3,28,37,DAL,WAS,3,1,71,(13:37) J.Parnell reported in as eligible. D.Murray right guard to DAL 30 for 1 yard (L.Fletcher; D.Worthington).,7,7,2012 -20121230_DAL@WAS,3,27,57,DAL,WAS,1,10,70,(12:57) D.Murray right tackle to WAS 49 for 21 yards (Mad.Williams).,7,7,2012 -20121230_DAL@WAS,3,27,14,DAL,WAS,1,10,49,(12:14) F.Jones right guard to WAS 49 for no gain (R.Kerrigan J.Wilson).,7,7,2012 -20121230_DAL@WAS,3,26,36,DAL,WAS,2,10,49,(11:36) (Shotgun) T.Romo pass incomplete short middle to D.Bryant (D.Hall).,7,7,2012 -20121230_DAL@WAS,3,26,31,DAL,WAS,3,10,49,(11:31) (Shotgun) T.Romo pass incomplete short right to D.Harris.,7,7,2012 -20121230_DAL@WAS,3,26,27,DAL,WAS,4,10,49,(11:27) B.Moorman punts 37 yards to WAS 12 Center-L.Ladouceur. R.Crawford to WAS 15 for 3 yards (D.McCray; J.Phillips).,7,7,2012 -20121230_DAL@WAS,3,26,15,WAS,DAL,1,10,85,(11:15) A.Morris right guard to WAS 20 for 5 yards (D.Connor).,7,7,2012 -20121230_DAL@WAS,3,25,34,WAS,DAL,2,5,80,(10:34) A.Morris left tackle to WAS 23 for 3 yards (J.Hatcher S.Lissemore).,7,7,2012 -20121230_DAL@WAS,3,24,54,WAS,DAL,3,2,77,(9:54) R.Griffin pass incomplete short left to P.Garcon.,7,7,2012 -20121230_DAL@WAS,3,24,49,WAS,DAL,4,2,77,(9:49) S.Rocca punts 58 yards to DAL 19 Center-N.Sundberg. D.Harris to DAL 30 for 11 yards (J.Murphy; D.Young).,7,7,2012 -20121230_DAL@WAS,3,24,36,DAL,WAS,1,10,70,(9:36) D.Murray up the middle to DAL 33 for 3 yards (J.Wilson; C.Baker).,7,7,2012 -20121230_DAL@WAS,3,23,50,DAL,WAS,2,7,67,(8:50) (Shotgun) T.Romo pass incomplete short right to M.Austin.,7,7,2012 -20121230_DAL@WAS,3,23,42,DAL,WAS,3,7,67,(8:42) (Shotgun) T.Romo pass incomplete deep right to K.Ogletree (R.Crawford).,7,7,2012 -20121230_DAL@WAS,3,23,37,DAL,WAS,4,7,67,(8:37) B.Moorman punts 50 yards to WAS 17 Center-L.Ladouceur. D.Hall MUFFS catch and recovers at WAS 18. D.Hall to WAS 18 for no gain (K.Wilber).,7,7,2012 -20121230_DAL@WAS,3,23,24,WAS,DAL,1,10,82,(8:24) (Shotgun) A.Morris left end to WAS 19 for 1 yard (T.Crawford).,7,7,2012 -20121230_DAL@WAS,3,22,48,WAS,DAL,2,9,81,(7:48) (Shotgun) A.Morris right guard to WAS 29 for 10 yards (C.Peprah; A.Spencer). WAS-K.Lichtensteiger was injured during the play. His return is Questionable. 78- left ankle sprain,7,7,2012 -20121230_DAL@WAS,3,22,17,WAS,DAL,1,10,71,(7:17) (Shotgun) A.Morris right end to WAS 34 for 5 yards (D.Connor).,7,7,2012 -20121230_DAL@WAS,3,21,35,WAS,DAL,2,5,66,(6:35) (Shotgun) A.Morris left end to WAS 40 for 6 yards (B.Poppinga).,7,7,2012 -20121230_DAL@WAS,3,20,51,WAS,DAL,1,10,60,(5:51) A.Morris right end to DAL 38 for 22 yards (E.Frampton).,7,7,2012 -20121230_DAL@WAS,3,20,12,WAS,DAL,1,10,38,(5:12) R.Griffin pass deep middle to P.Garcon to DAL 20 for 18 yards (G.Sensabaugh; B.Carr).,7,7,2012 -20121230_DAL@WAS,3,19,34,WAS,DAL,1,10,20,(4:34) A.Morris right end to DAL 23 for -3 yards (G.Sensabaugh D.Ware).,7,7,2012 -20121230_DAL@WAS,3,18,51,WAS,DAL,2,13,23,(3:51) (Shotgun) R.Griffin pass short left to P.Garcon pushed ob at DAL 10 for 13 yards (M.Claiborne).,7,7,2012 -20121230_DAL@WAS,3,18,17,WAS,DAL,1,10,10,(3:17) (Shotgun) R.Griffin left end for 10 yards TOUCHDOWN.,7,7,2012 -20121230_DAL@WAS,3,18,17,WAS,DAL,,,10,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,7,7,2012 -20121230_DAL@WAS,3,18,17,WAS,DAL,,,10,K.Forbath kicks 60 yards from WAS 35 to DAL 5. D.Harris to DAL 26 for 21 yards (L.Alexander).,14,7,2012 -20121230_DAL@WAS,3,18,4,DAL,WAS,1,10,74,(3:04) (Shotgun) T.Romo pass incomplete short left to J.Witten (L.Fletcher).,7,14,2012 -20121230_DAL@WAS,3,17,59,DAL,WAS,2,10,74,(2:59) (Shotgun) Direct snap to D.Murray. D.Murray right end to DAL 33 for 7 yards (R.Kerrigan).,7,14,2012 -20121230_DAL@WAS,3,17,13,DAL,WAS,3,3,67,(2:13) (Shotgun) T.Romo pass short middle to J.Witten to DAL 43 for 10 yards (P.Riley; L.Fletcher).,7,14,2012 -20121230_DAL@WAS,3,16,35,DAL,WAS,1,10,57,(1:35) F.Jones left end pushed ob at WAS 49 for 8 yards (Mad.Williams).,7,14,2012 -20121230_DAL@WAS,3,16,3,DAL,WAS,2,2,49,(1:03) F.Jones up the middle to WAS 46 for 3 yards (P.Riley; R.Kerrigan).,7,14,2012 -20121230_DAL@WAS,3,15,22,DAL,WAS,1,10,46,(:22) T.Romo pass short right to L.Vickers to WAS 35 for 11 yards (D.Hall R.Kerrigan).,7,14,2012 -20121230_DAL@WAS,4,15,0,DAL,WAS,1,10,35,(15:00) D.Murray right end to WAS 30 for 5 yards (Mad.Williams R.Kerrigan).,7,14,2012 -20121230_DAL@WAS,4,14,24,DAL,WAS,2,5,30,(14:24) (Shotgun) T.Romo pass incomplete short right to D.Harris.,7,14,2012 -20121230_DAL@WAS,4,14,18,DAL,WAS,3,5,30,(14:18) (Shotgun) T.Romo pass incomplete short right to D.Bryant.,7,14,2012 -20121230_DAL@WAS,4,14,14,DAL,WAS,4,5,30,(14:14) D.Bailey 48 yard field goal is GOOD Center-L.Ladouceur Holder-B.Moorman.,7,14,2012 -20121230_DAL@WAS,4,14,14,DAL,WAS,,,30,D.Bailey kicks 66 yards from DAL 35 to WAS -1. N.Paul to WAS 26 for 27 yards (J.Phillips).,10,14,2012 -20121230_DAL@WAS,4,14,0,WAS,DAL,1,10,74,(14:00) (Shotgun) A.Morris up the middle to WAS 27 for 1 yard (J.Hatcher; D.Connor).,14,10,2012 -20121230_DAL@WAS,4,13,25,WAS,DAL,2,9,73,(13:25) (Shotgun) R.Griffin left end pushed ob at WAS 44 for 17 yards (E.Frampton).,14,10,2012 -20121230_DAL@WAS,4,12,54,WAS,DAL,1,10,56,(12:54) A.Morris right end to WAS 42 for -2 yards (A.Spencer).,14,10,2012 -20121230_DAL@WAS,4,12,8,WAS,DAL,2,12,58,(12:08) (Shotgun) R.Griffin pass short left to S.Moss to DAL 47 for 11 yards (A.Albright).,14,10,2012 -20121230_DAL@WAS,4,11,20,WAS,DAL,3,1,47,(11:20) (Shotgun) R.Griffin pass short middle to P.Garcon to DAL 32 for 15 yards (M.Claiborne).,14,10,2012 -20121230_DAL@WAS,4,10,41,WAS,DAL,1,10,32,(10:41) A.Morris left end for 32 yards TOUCHDOWN.,14,10,2012 -20121230_DAL@WAS,4,10,41,WAS,DAL,,,32,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,14,10,2012 -20121230_DAL@WAS,4,10,41,WAS,DAL,,,32,K.Forbath kicks 50 yards from WAS 35 to DAL 15. D.Harris to DAL 31 for 16 yards (R.Doughty C.Wilson).,21,10,2012 -20121230_DAL@WAS,4,10,26,DAL,WAS,1,10,69,(10:26) (Shotgun) T.Romo pass short middle to K.Ogletree to DAL 46 for 15 yards (Mad.Williams).,10,21,2012 -20121230_DAL@WAS,4,9,47,DAL,WAS,1,10,54,(9:47) (No Huddle Shotgun) T.Romo pass deep middle to D.Bryant to WAS 37 for 17 yards (J.Wilson).,10,21,2012 -20121230_DAL@WAS,4,9,14,DAL,WAS,1,10,37,(9:14) (No Huddle Shotgun) T.Romo pass incomplete short right to D.Murray.,10,21,2012 -20121230_DAL@WAS,4,9,8,DAL,WAS,2,10,37,(9:08) (Shotgun) T.Romo pass incomplete short right to D.Harris (D.Hall) [L.Fletcher].,10,21,2012 -20121230_DAL@WAS,4,9,3,DAL,WAS,3,10,37,(9:03) (Shotgun) T.Romo sacked at DAL 45 for -18 yards (L.Fletcher). Penalty on DAL-N.Livings Offensive Holding declined.,10,21,2012 -20121230_DAL@WAS,4,8,52,DAL,WAS,4,28,55,(8:52) B.Moorman punts 45 yards to WAS 10 Center-L.Ladouceur. R.Crawford to WAS 25 for 15 yards (J.Hanna).,10,21,2012 -20121230_DAL@WAS,4,8,39,WAS,DAL,1,10,75,(8:39) (Shotgun) A.Morris left guard to WAS 33 for 8 yards (D.Connor).,21,10,2012 -20121230_DAL@WAS,4,7,58,WAS,DAL,2,2,67,(7:58) (Shotgun) PENALTY on WAS-T.Williams False Start 5 yards enforced at WAS 33 - No Play.,21,10,2012 -20121230_DAL@WAS,4,7,36,WAS,DAL,2,7,72,(7:36) (Shotgun) A.Morris right end to WAS 27 for -1 yards (A.Spencer; D.Connor).,21,10,2012 -20121230_DAL@WAS,4,6,56,WAS,DAL,3,8,73,(6:56) (Shotgun) R.Griffin pass incomplete deep left to J.Morgan. Penalty on WAS-T.Williams Illegal Formation declined.,21,10,2012 -20121230_DAL@WAS,4,6,49,WAS,DAL,4,8,73,(6:49) S.Rocca punts 43 yards to DAL 30 Center-N.Sundberg. D.Harris pushed ob at WAS 31 for 39 yards (S.Rocca). PENALTY on WAS-S.Rocca Face Mask (15 Yards) 15 yards enforced at WAS 31.,21,10,2012 -20121230_DAL@WAS,4,6,35,DAL,WAS,1,10,16,(6:35) (Shotgun) T.Romo pass short left to D.Murray to WAS 10 for 6 yards (L.Fletcher; R.Crawford).,10,21,2012 -20121230_DAL@WAS,4,6,2,DAL,WAS,2,4,10,(6:02) (No Huddle Shotgun) T.Romo pass incomplete short right to C.Beasley (J.Wilson).,10,21,2012 -20121230_DAL@WAS,4,5,55,DAL,WAS,3,4,10,(5:55) (Shotgun) T.Romo pass short left to K.Ogletree for 10 yards TOUCHDOWN.,10,21,2012 -20121230_DAL@WAS,4,5,55,DAL,WAS,,,10,(Run formation) TWO-POINT CONVERSION ATTEMPT. T.Romo pass to D.Harris is complete. ATTEMPT SUCCEEDS.,10,21,2012 -20121230_DAL@WAS,4,5,55,DAL,WAS,,,10,D.Bailey kicks 67 yards from DAL 35 to WAS -2. N.Paul pushed ob at WAS 46 for 48 yards (K.Wilber).,18,21,2012 -20121230_DAL@WAS,4,5,40,WAS,DAL,1,10,54,(5:40) (Shotgun) R.Griffin left end to DAL 39 for 15 yards (M.Claiborne).,21,18,2012 -20121230_DAL@WAS,4,4,58,WAS,DAL,1,10,39,(4:58) (Shotgun) A.Morris left tackle to DAL 37 for 2 yards (S.Lissemore; J.Hatcher).,21,18,2012 -20121230_DAL@WAS,4,4,14,WAS,DAL,2,8,37,(4:14) (Shotgun) R.Griffin pass incomplete short right to N.Paul [D.Ware].,21,18,2012 -20121230_DAL@WAS,4,4,10,WAS,DAL,3,8,37,(4:10) (Shotgun) R.Griffin sacked at 50 for -13 yards (A.Spencer).,21,18,2012 -20121230_DAL@WAS,4,3,41,WAS,DAL,4,21,50,(3:41) S.Rocca punts 35 yards to DAL 15 Center-N.Sundberg fair catch by D.Harris.,21,18,2012 -20121230_DAL@WAS,4,3,33,DAL,WAS,1,10,85,(3:33) (Shotgun) T.Romo pass short middle to J.Witten to DAL 29 for 14 yards (Mad.Williams).,18,21,2012 -20121230_DAL@WAS,4,3,6,DAL,WAS,1,10,71,(3:06) (No Huddle Shotgun) T.Romo pass short left intended for D.Murray INTERCEPTED by R.Jackson at DAL 27. R.Jackson to DAL 25 for 2 yards (D.Murray).,18,21,2012 -20121230_DAL@WAS,4,3,0,WAS,DAL,1,10,25,(3:00) (Shotgun) A.Morris right end to DAL 15 for 10 yards (B.Carr; S.Lissemore).,21,18,2012 -20121230_DAL@WAS,4,2,51,WAS,DAL,1,10,15,(2:51) (Shotgun) A.Morris right end to DAL 12 for 3 yards (A.Spencer; D.McCray).,21,18,2012 -20121230_DAL@WAS,4,2,45,WAS,DAL,2,7,12,(2:45) (Shotgun) A.Morris left end to DAL 12 for no gain (A.Spencer).,21,18,2012 -20121230_DAL@WAS,4,2,39,WAS,DAL,3,7,12,(2:39) R.Griffin pass incomplete short middle to P.Garcon [J.Hatcher]. PENALTY on DAL-J.Hatcher Roughing the Passer 6 yards enforced at DAL 12 - No Play.,21,18,2012 -20121230_DAL@WAS,4,2,35,WAS,DAL,1,6,6,(2:35) A.Morris left tackle to DAL 3 for 3 yards (D.Connor; A.Albright).,21,18,2012 -20121230_DAL@WAS,4,2,0,WAS,DAL,2,3,3,(2:00) A.Morris right guard to DAL 1 for 2 yards (J.Hatcher; E.Sims).,21,18,2012 -20121230_DAL@WAS,4,1,15,WAS,DAL,3,1,1,(1:15) A.Morris left end for 1 yard TOUCHDOWN.,21,18,2012 -20121230_DAL@WAS,4,1,15,WAS,DAL,,,1,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,21,18,2012 -20121230_DAL@WAS,4,1,15,WAS,DAL,,,1,K.Forbath kicks 59 yards from WAS 35 to DAL 6. D.Harris to DAL 26 for 20 yards (C.Wilson). DAL-D.Harris was injured during the play.,28,18,2012 -20121230_DAL@WAS,4,1,2,DAL,WAS,1,10,74,(1:02) (Shotgun) T.Romo pass short middle to F.Jones to DAL 30 for 4 yards (J.Wilson; S.Bowen).,18,28,2012 -20121230_DAL@WAS,4,0,40,DAL,WAS,2,6,70,(:40) (No Huddle Shotgun) T.Romo pass short right to J.Hanna to DAL 35 for 5 yards (J.Wilson).,18,28,2012 -20121230_DAL@WAS,4,0,15,DAL,WAS,3,1,65,(:15) (No Huddle Shotgun) T.Romo pass short middle to J.Hanna to DAL 42 for 7 yards (P.Riley).,18,28,2012 -20121230_DAL@WAS,4,0,15,DAL,WAS,,,65,                      ,18,28,2012 -20130105_CIN@HOU,1,0,0,CIN,HOU,,,65,J.Brown kicks 70 yards from CIN 35 to HST -5. D.Manning to HST 16 for 21 yards (R.Whalen).,0,0,2012 -20130105_CIN@HOU,1,59,54,HOU,CIN,1,10,84,(14:54) M.Schaub scrambles right end to HST 17 for 1 yard (R.Geathers).,0,0,2012 -20130105_CIN@HOU,1,59,24,HOU,CIN,2,9,83,(14:24) M.Schaub pass short left to A.Foster to HST 13 for -4 yards (R.Nelson).,0,0,2012 -20130105_CIN@HOU,1,58,37,HOU,CIN,3,13,87,(13:37) (Shotgun) M.Schaub pass short right to O.Daniels pushed ob at HST 21 for 8 yards (N.Clements).,0,0,2012 -20130105_CIN@HOU,1,58,21,HOU,CIN,4,5,79,(13:21) D.Jones punts 41 yards to CIN 38 Center-J.Weeks. A.Jones to CIN 38 for no gain (A.Ball). (The punt hang time was 3.25 seconds.),0,0,2012 -20130105_CIN@HOU,1,58,10,CIN,HOU,1,10,62,(13:10) (Shotgun) B.Green-Ellis up the middle to CIN 40 for 2 yards (J.Watt).,0,0,2012 -20130105_CIN@HOU,1,57,31,CIN,HOU,2,8,60,(12:31) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham.,0,0,2012 -20130105_CIN@HOU,1,57,27,CIN,HOU,3,8,60,(12:27) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (G.Quin).,0,0,2012 -20130105_CIN@HOU,1,57,22,CIN,HOU,4,8,60,(12:22) K.Huber punts 53 yards to HST 7 Center-C.Harris. K.Martin to HST 10 for 3 yards (C.Peerman). PENALTY on HST-D.Manning Illegal Block Above the Waist 5 yards enforced at HST 10. (The punt hang time was 4.7 seconds.),0,0,2012 -20130105_CIN@HOU,1,57,8,HOU,CIN,1,10,95,(12:08) A.Foster right tackle to HST 7 for 2 yards (M.Lawson).,0,0,2012 -20130105_CIN@HOU,1,56,31,HOU,CIN,2,8,93,(11:31) M.Schaub pass short middle to O.Daniels to HST 25 for 18 yards (R.Nelson).,0,0,2012 -20130105_CIN@HOU,1,55,59,HOU,CIN,1,10,75,(10:59) A.Foster left end to HST 42 for 17 yards (R.Nelson).,0,0,2012 -20130105_CIN@HOU,1,55,18,HOU,CIN,1,10,58,(10:18) A.Foster left guard to HST 46 for 4 yards (D.Peko).,0,0,2012 -20130105_CIN@HOU,1,54,39,HOU,CIN,2,6,54,(9:39) K.Martin left end pushed ob at CIN 38 for 16 yards (T.Newman).,0,0,2012 -20130105_CIN@HOU,1,54,11,HOU,CIN,1,10,38,(9:11) M.Schaub pass short right to A.Foster ran ob at CIN 30 for 8 yards.,0,0,2012 -20130105_CIN@HOU,1,53,37,HOU,CIN,2,2,30,(8:37) B.Tate left guard to CIN 30 for no gain (C.Dunlap R.Maualuga).,0,0,2012 -20130105_CIN@HOU,1,52,59,HOU,CIN,3,2,30,(7:59) M.Schaub pass incomplete short left to O.Daniels.,0,0,2012 -20130105_CIN@HOU,1,52,54,HOU,CIN,4,2,30,(7:54) S.Graham 48 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20130105_CIN@HOU,1,52,54,HOU,CIN,,,30,S.Graham kicks 70 yards from HST 35 to CIN -5. A.Jones to CIN 16 for 21 yards (D.Posey).,3,0,2012 -20130105_CIN@HOU,1,52,44,CIN,HOU,1,10,84,(7:44) B.Green-Ellis right guard to CIN 45 for 29 yards (G.Quin).,0,3,2012 -20130105_CIN@HOU,1,52,6,CIN,HOU,1,10,55,(7:06) A.Dalton scrambles right end pushed ob at CIN 48 for 3 yards (B.Reed).,0,3,2012 -20130105_CIN@HOU,1,51,35,CIN,HOU,2,7,52,(6:35) (Shotgun) A.Dalton pass short left to B.Green-Ellis to CIN 42 for -6 yards (C.Barwin).,0,3,2012 -20130105_CIN@HOU,1,50,51,CIN,HOU,3,13,58,(5:51) (Shotgun) A.Dalton sacked at CIN 33 for -9 yards (J.Watt).,0,3,2012 -20130105_CIN@HOU,1,50,23,CIN,HOU,4,22,67,(5:23) K.Huber punts 47 yards to HST 20 Center-C.Harris. K.Martin to HST 31 for 11 yards (C.Harris). (the punt hang time was 4.3 seconds.),0,3,2012 -20130105_CIN@HOU,1,50,12,HOU,CIN,1,10,69,(5:12) M.Schaub pass short left to O.Daniels to HST 37 for 6 yards (L.Hall).,3,0,2012 -20130105_CIN@HOU,1,49,36,HOU,CIN,2,4,63,(4:36) A.Foster left guard to HST 38 for 1 yard (R.Maualuga).,3,0,2012 -20130105_CIN@HOU,1,48,59,HOU,CIN,3,3,62,(3:59) (Shotgun) M.Schaub pass short middle to K.Walter to HST 41 for 3 yards (L.Hall).,3,0,2012 -20130105_CIN@HOU,1,48,14,HOU,CIN,1,10,59,(3:14) M.Schaub pass deep middle to A.Johnson to CIN 40 for 19 yards (R.Nelson).,3,0,2012 -20130105_CIN@HOU,1,47,31,HOU,CIN,1,10,40,(2:31) A.Foster left tackle to CIN 38 for 2 yards (G.Atkins).,3,0,2012 -20130105_CIN@HOU,1,46,56,HOU,CIN,2,8,38,(1:56) M.Schaub pass incomplete short middle to O.Daniels [G.Atkins]. PENALTY on CIN-V.Burfict Defensive Pass Interference 11 yards enforced at CIN 38 - No Play.,3,0,2012 -20130105_CIN@HOU,1,46,51,HOU,CIN,1,10,27,(1:51) A.Foster left guard to CIN 22 for 5 yards (R.Geathers; R.Maualuga).,3,0,2012 -20130105_CIN@HOU,1,46,16,HOU,CIN,2,5,22,(1:16) A.Foster right guard to CIN 18 for 4 yards (V.Burfict).,3,0,2012 -20130105_CIN@HOU,1,45,51,HOU,CIN,3,1,18,(:51) M.Schaub up the middle to CIN 16 for 2 yards (P.Sims).,3,0,2012 -20130105_CIN@HOU,2,45,0,HOU,CIN,1,10,16,(15:00) A.Foster left end to CIN 16 for no gain (E.Lamur).,3,0,2012 -20130105_CIN@HOU,2,44,22,HOU,CIN,2,10,16,(14:22) M.Schaub pass short left to G.Graham pushed ob at CIN 14 for 2 yards (L.Hall).,3,0,2012 -20130105_CIN@HOU,2,43,55,HOU,CIN,3,8,14,(13:55) (Shotgun) M.Schaub pass short middle to K.Walter to CIN 9 for 5 yards (R.Maualuga; V.Burfict).,3,0,2012 -20130105_CIN@HOU,2,43,11,HOU,CIN,4,3,9,(13:11) S.Graham 27 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,3,0,2012 -20130105_CIN@HOU,2,43,11,HOU,CIN,,,9,S.Graham kicks 71 yards from HST 35 to CIN -6. A.Jones to CIN 28 for 34 yards (B.Harris).,6,0,2012 -20130105_CIN@HOU,2,43,1,CIN,HOU,1,10,72,(13:01) B.Green-Ellis up the middle to CIN 40 for 12 yards (S.Keo).,0,6,2012 -20130105_CIN@HOU,2,42,39,CIN,HOU,1,10,60,(12:39) A.Dalton pass short right to J.Gresham to CIN 41 for 1 yard (D.Manning).,0,6,2012 -20130105_CIN@HOU,2,41,56,CIN,HOU,2,9,59,(11:56) (Shotgun) A.Dalton pass short right to B.Green-Ellis to CIN 38 for -3 yards (B.James) [J.Watt].,0,6,2012 -20130105_CIN@HOU,2,41,10,CIN,HOU,3,12,62,(11:10) (Shotgun) A.Dalton pass incomplete deep middle to M.Jones (K.Jackson).,0,6,2012 -20130105_CIN@HOU,2,41,0,CIN,HOU,4,12,62,(11:00) K.Huber punts 50 yards to HST 12 Center-C.Harris fair catch by K.Martin. (The punt hang time was 4.4 seconds.),0,6,2012 -20130105_CIN@HOU,2,40,52,HOU,CIN,1,10,88,(10:52) A.Foster right tackle to HST 15 for 3 yards (C.Dunlap).,6,0,2012 -20130105_CIN@HOU,2,40,17,HOU,CIN,2,7,85,(10:17) M.Schaub pass short right to A.Foster to HST 19 for 4 yards (T.Newman).,6,0,2012 -20130105_CIN@HOU,2,39,38,HOU,CIN,3,3,81,(9:38) M.Schaub pass short left intended for J.Casey INTERCEPTED by L.Hall at HST 21. L.Hall for 21 yards TOUCHDOWN.,6,0,2012 -20130105_CIN@HOU,2,39,38,CIN,HOU,,,81,J.Brown extra point is GOOD Center-C.Harris Holder-K.Huber.,0,6,2012 -20130105_CIN@HOU,2,39,38,CIN,HOU,,,81,J.Brown kicks 71 yards from CIN 35 to HST -6. D.Manning to HST 20 for 26 yards (R.Whalen).,7,6,2012 -20130105_CIN@HOU,2,39,24,HOU,CIN,1,10,80,(9:24) M.Schaub pass short right to A.Foster pushed ob at HST 16 for -4 yards (R.Nelson).,6,7,2012 -20130105_CIN@HOU,2,38,52,HOU,CIN,2,14,84,(8:52) A.Foster up the middle to HST 29 for 13 yards (N.Clements).,6,7,2012 -20130105_CIN@HOU,2,38,16,HOU,CIN,3,1,71,(8:16) A.Foster left tackle to HST 40 for 11 yards (R.Nelson).,6,7,2012 -20130105_CIN@HOU,2,37,42,HOU,CIN,1,10,60,(7:42) B.Tate left end to HST 41 for 1 yard (P.Sims).,6,7,2012 -20130105_CIN@HOU,2,36,58,HOU,CIN,2,9,59,(6:58) M.Schaub pass short left to G.Graham pushed ob at CIN 39 for 20 yards (N.Clements). CIN-R.Maualuga was injured during the play. His return is Probable. Penalty on CIN-G.Atkins Defensive Offside declined.,6,7,2012 -20130105_CIN@HOU,2,36,35,HOU,CIN,1,10,39,(6:35) A.Foster right guard to CIN 24 for 15 yards (N.Clements).,6,7,2012 -20130105_CIN@HOU,2,35,56,HOU,CIN,1,10,24,(5:56) A.Foster left tackle to CIN 22 for 2 yards (D.Skuta).,6,7,2012 -20130105_CIN@HOU,2,35,15,HOU,CIN,2,8,22,(5:15) M.Schaub pass short middle to O.Daniels to CIN 15 for 7 yards (V.Burfict).,6,7,2012 -20130105_CIN@HOU,2,34,37,HOU,CIN,3,1,15,(4:37) A.Foster left guard to CIN 11 for 4 yards (N.Clements).,6,7,2012 -20130105_CIN@HOU,2,33,57,HOU,CIN,1,10,11,(3:57) A.Foster left guard to CIN 10 for 1 yard (G.Atkins; R.Geathers).,6,7,2012 -20130105_CIN@HOU,2,33,15,HOU,CIN,2,9,10,(3:15) M.Schaub pass short middle to O.Daniels to CIN 4 for 6 yards (R.Nelson).,6,7,2012 -20130105_CIN@HOU,2,32,27,HOU,CIN,3,3,4,(2:27) (Shotgun) M.Schaub pass incomplete short left to A.Johnson.,6,7,2012 -20130105_CIN@HOU,2,32,23,HOU,CIN,4,3,4,(2:23) S.Graham 22 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,6,7,2012 -20130105_CIN@HOU,2,32,23,HOU,CIN,,,4,S.Graham kicks 65 yards from HST 35 to CIN 0. A.Jones to CIN 28 for 28 yards (S.Graham).,9,7,2012 -20130105_CIN@HOU,2,32,13,CIN,HOU,1,10,72,(2:13) (Shotgun) A.Dalton scrambles up the middle to CIN 40 for 12 yards (B.James).,7,9,2012 -20130105_CIN@HOU,2,32,0,CIN,HOU,1,10,60,(2:00) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (G.Quin).,7,9,2012 -20130105_CIN@HOU,2,31,57,CIN,HOU,2,10,60,(1:57) (Shotgun) A.Dalton pass short left to M.Jones pushed ob at HST 49 for 11 yards (K.Jackson).,7,9,2012 -20130105_CIN@HOU,2,31,51,CIN,HOU,1,10,49,(1:51) B.Leonard up the middle to HST 47 for 2 yards (J.Watt).,7,9,2012 -20130105_CIN@HOU,2,31,27,CIN,HOU,2,8,47,(1:27) (Shotgun) A.Dalton pass incomplete short left to M.Jones (K.Jackson).,7,9,2012 -20130105_CIN@HOU,2,31,22,CIN,HOU,3,8,47,(1:22) (Shotgun) A.Dalton pass incomplete deep middle to J.Gresham.,7,9,2012 -20130105_CIN@HOU,2,31,17,CIN,HOU,4,8,47,(1:17) K.Huber punts 36 yards to HST 11 Center-C.Harris fair catch by K.Martin. (The punt hang time was 4.1 seconds.),7,9,2012 -20130105_CIN@HOU,2,31,10,HOU,CIN,1,10,89,(1:10) A.Foster up the middle to HST 13 for 2 yards (D.Peko; M.Johnson).,9,7,2012 -20130105_CIN@HOU,2,31,6,HOU,CIN,2,8,87,(1:06) M.Schaub pass short right to O.Daniels pushed ob at HST 22 for 9 yards (T.Newman).,9,7,2012 -20130105_CIN@HOU,2,30,59,HOU,CIN,1,10,78,(:59) (Shotgun) M.Schaub pass short right to A.Johnson to HST 33 for 11 yards (T.Newman).,9,7,2012 -20130105_CIN@HOU,2,30,54,HOU,CIN,1,10,67,(:54) (Shotgun) M.Schaub pass incomplete short right to A.Johnson.,9,7,2012 -20130105_CIN@HOU,2,30,48,HOU,CIN,2,10,67,(:48) (Shotgun) M.Schaub pass short right to A.Foster to HST 34 for 1 yard (V.Burfict).,9,7,2012 -20130105_CIN@HOU,2,30,40,HOU,CIN,3,9,66,(:40) (Shotgun) M.Schaub pass deep right to O.Daniels to CIN 47 for 19 yards (T.Newman) [C.Dunlap].,9,7,2012 -20130105_CIN@HOU,2,30,25,HOU,CIN,1,10,47,(:25) M.Schaub spiked the ball to stop the clock.,9,7,2012 -20130105_CIN@HOU,2,30,24,HOU,CIN,2,10,47,(:24) (Shotgun) M.Schaub pass short right to K.Walter to CIN 41 for 6 yards (T.Newman) [R.Nelson].,9,7,2012 -20130105_CIN@HOU,2,30,10,HOU,CIN,3,4,41,(:10) M.Schaub spiked the ball to stop the clock.,9,7,2012 -20130105_CIN@HOU,2,30,9,HOU,CIN,4,4,41,(:09) (Shotgun) M.Schaub pass incomplete short left to O.Daniels (A.Jones).,9,7,2012 -20130105_CIN@HOU,2,30,4,CIN,HOU,1,10,59,(:04) A.Dalton kneels to CIN 40 for -1 yards.,7,9,2012 -20130105_CIN@HOU,3,30,0,HOU,CIN,,,59,S.Graham kicks 70 yards from HST 30 to CIN 0. A.Jones to CIN 20 for 20 yards (B.Braman).,9,7,2012 -20130105_CIN@HOU,3,29,55,CIN,HOU,1,10,80,(14:55) B.Green-Ellis left guard to CIN 19 for -1 yards (J.Watt).,7,9,2012 -20130105_CIN@HOU,3,29,16,CIN,HOU,2,11,81,(14:16) (Shotgun) A.Dalton pass incomplete short left to A.Hawkins.,7,9,2012 -20130105_CIN@HOU,3,29,9,CIN,HOU,3,11,81,(14:09) (Shotgun) A.Dalton pass incomplete deep middle to A.Hawkins (B.Harris).,7,9,2012 -20130105_CIN@HOU,3,29,0,CIN,HOU,4,11,81,(14:00) K.Huber punts 47 yards to HST 34 Center-C.Harris fair catch by K.Martin. PENALTY on CIN-C.Lewis-Harris Fair Catch Interference 15 yards enforced at HST 34.,7,9,2012 -20130105_CIN@HOU,3,28,51,HOU,CIN,1,10,51,(13:51) A.Foster left guard to CIN 46 for 5 yards (R.Maualuga; G.Atkins).,9,7,2012 -20130105_CIN@HOU,3,28,15,HOU,CIN,2,5,46,(13:15) A.Foster right guard to CIN 43 for 3 yards (M.Johnson).,9,7,2012 -20130105_CIN@HOU,3,27,33,HOU,CIN,3,2,43,(12:33) M.Schaub pass incomplete deep right to A.Johnson. PENALTY on CIN-M.Lawson Defensive Holding 5 yards enforced at CIN 43 - No Play.,9,7,2012 -20130105_CIN@HOU,3,27,27,HOU,CIN,1,10,38,(12:27) M.Schaub pass short right to A.Foster to CIN 27 for 11 yards (R.Nelson).,9,7,2012 -20130105_CIN@HOU,3,26,47,HOU,CIN,1,10,27,(11:47) M.Schaub pass deep middle to A.Johnson to CIN 5 for 22 yards (A.Jones).,9,7,2012 -20130105_CIN@HOU,3,26,5,HOU,CIN,1,5,5,(11:05) A.Foster up the middle to CIN 1 for 4 yards (P.Sims). HST-O.Daniels was injured during the play. His return is Probable.,9,7,2012 -20130105_CIN@HOU,3,25,35,HOU,CIN,2,1,1,(10:35) A.Foster left guard for 1 yard TOUCHDOWN.,9,7,2012 -20130105_CIN@HOU,3,25,35,HOU,CIN,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,9,7,2012 -20130105_CIN@HOU,3,25,35,HOU,CIN,,,1,S.Graham kicks 55 yards from HST 35 to CIN 10. C.Peerman to CIN 20 for 10 yards (A.Ball).,16,7,2012 -20130105_CIN@HOU,3,25,27,CIN,HOU,1,10,80,(10:27) (Shotgun) A.Dalton pass short right to A.Green to CIN 25 for 5 yards (J.Joseph).,7,16,2012 -20130105_CIN@HOU,3,24,54,CIN,HOU,2,5,75,(9:54) (Shotgun) A.Dalton pass short left to A.Hawkins to CIN 32 for 7 yards (S.Keo).,7,16,2012 -20130105_CIN@HOU,3,24,20,CIN,HOU,1,10,68,(9:20) (Shotgun) A.Dalton pass deep right to A.Green to HST 23 for 45 yards (J.Joseph).,7,16,2012 -20130105_CIN@HOU,3,23,44,CIN,HOU,1,10,23,(8:44) A.Dalton pass short right to A.Green to HST 16 for 7 yards (J.Joseph).,7,16,2012 -20130105_CIN@HOU,3,23,3,CIN,HOU,2,3,16,(8:03) (Shotgun) A.Dalton pass incomplete deep left to A.Green.,7,16,2012 -20130105_CIN@HOU,3,22,58,CIN,HOU,3,3,16,(7:58) (Shotgun) A.Dalton pass incomplete short middle (C.Barwin). Houston challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),7,16,2012 -20130105_CIN@HOU,3,22,53,CIN,HOU,4,3,16,(7:53) J.Brown 34 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,7,16,2012 -20130105_CIN@HOU,3,22,53,CIN,HOU,,,16,J.Brown kicks 65 yards from CIN 35 to end zone Touchback.,10,16,2012 -20130105_CIN@HOU,3,22,48,HOU,CIN,1,10,80,(7:48) A.Foster up the middle to HST 24 for 4 yards (P.Sims).,16,10,2012 -20130105_CIN@HOU,3,22,9,HOU,CIN,2,6,76,(7:09) A.Foster right guard to HST 28 for 4 yards (N.Clements).,16,10,2012 -20130105_CIN@HOU,3,21,31,HOU,CIN,3,2,72,(6:31) (Shotgun) M.Schaub pass short left to A.Foster pushed ob at HST 41 for 13 yards (R.Maualuga).,16,10,2012 -20130105_CIN@HOU,3,21,3,HOU,CIN,1,10,59,(6:03) M.Schaub pass incomplete short right to J.Casey.,16,10,2012 -20130105_CIN@HOU,3,20,56,HOU,CIN,2,10,59,(5:56) M.Schaub pass short left to O.Daniels pushed ob at HST 48 for 7 yards (L.Hall).,16,10,2012 -20130105_CIN@HOU,3,20,26,HOU,CIN,3,3,52,(5:26) (Shotgun) A.Foster right tackle to 50 for 2 yards (N.Clements).,16,10,2012 -20130105_CIN@HOU,3,19,43,HOU,CIN,4,1,50,(4:43) D.Jones punts 37 yards to CIN 13 Center-J.Weeks. B.Tate MUFFS catch touched at CIN 13 and recovers at CIN 11. B.Tate to CIN 11 for no gain (A.Ball). (The punt hang time was 3.5 seconds.),16,10,2012 -20130105_CIN@HOU,3,19,33,CIN,HOU,1,10,89,(4:33) (Shotgun) B.Green-Ellis up the middle to CIN 16 for 5 yards (A.Smith).,10,16,2012 -20130105_CIN@HOU,3,18,57,CIN,HOU,2,5,84,(3:57) (Shotgun) A.Dalton pass incomplete short middle to A.Green (J.Watt).,10,16,2012 -20130105_CIN@HOU,3,18,53,CIN,HOU,3,5,84,(3:53) (Shotgun) A.Dalton pass incomplete short middle to A.Green. PENALTY on HST-D.Manning Neutral Zone Infraction 5 yards enforced at CIN 16 - No Play.,10,16,2012 -20130105_CIN@HOU,3,18,49,CIN,HOU,1,10,79,(3:49) B.Green-Ellis left guard to CIN 24 for 3 yards (J.Watt).,10,16,2012 -20130105_CIN@HOU,3,18,13,CIN,HOU,2,7,76,(3:13) (Shotgun) A.Dalton pass deep middle intended for A.Green INTERCEPTED by J.Joseph at CIN 40. J.Joseph to CIN 26 for 14 yards (C.Boling).,10,16,2012 -20130105_CIN@HOU,3,18,6,HOU,CIN,1,10,26,(3:06) A.Foster left guard to CIN 30 for -4 yards (V.Burfict; W.Gilberry).,16,10,2012 -20130105_CIN@HOU,3,17,24,HOU,CIN,2,14,30,(2:24) M.Schaub pass short right to A.Johnson to CIN 20 for 10 yards (T.Newman).,16,10,2012 -20130105_CIN@HOU,3,16,45,HOU,CIN,3,4,20,(1:45) (Shotgun) M.Schaub pass short middle to O.Daniels to CIN 9 for 11 yards (N.Clements; R.Nelson). CIN-A.Jones was injured during the play. His return is Doubtful.,16,10,2012 -20130105_CIN@HOU,3,16,11,HOU,CIN,1,9,9,(1:11) A.Foster left tackle to CIN 8 for 1 yard (D.Peko). PENALTY on HST-B.Brooks Offensive Holding 10 yards enforced at CIN 8.,16,10,2012 -20130105_CIN@HOU,3,15,45,HOU,CIN,1,18,18,(:45) M.Schaub pass incomplete short middle to K.Walter (T.Newman).,16,10,2012 -20130105_CIN@HOU,3,15,40,HOU,CIN,2,18,18,(:40) (Shotgun) A.Foster left tackle to CIN 11 for 7 yards (R.Maualuga).,16,10,2012 -20130105_CIN@HOU,4,15,0,HOU,CIN,3,11,11,(15:00) (Shotgun) M.Schaub pass short left to A.Foster to CIN 6 for 5 yards (R.Nelson).,16,10,2012 -20130105_CIN@HOU,4,14,21,HOU,CIN,4,6,6,(14:21) S.Graham 24 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,16,10,2012 -20130105_CIN@HOU,4,14,21,HOU,CIN,,,6,S.Graham kicks 69 yards from HST 35 to CIN -4. B.Tate pushed ob at CIN 39 for 43 yards (S.Graham).,19,10,2012 -20130105_CIN@HOU,4,14,9,CIN,HOU,1,10,61,(14:09) (Shotgun) A.Dalton pass short middle to J.Gresham to CIN 45 for 6 yards (G.Quin S.Keo).,10,19,2012 -20130105_CIN@HOU,4,13,31,CIN,HOU,2,4,55,(13:31) B.Green-Ellis left guard to HST 48 for 7 yards (B.Ruud).,10,19,2012 -20130105_CIN@HOU,4,12,51,CIN,HOU,1,10,48,(12:51) (Shotgun) A.Dalton pass incomplete short right to A.Green (J.Watt).,10,19,2012 -20130105_CIN@HOU,4,12,48,CIN,HOU,2,10,48,(12:48) (Shotgun) A.Dalton pass short left to A.Hawkins to HST 40 for 8 yards (C.Barwin).,10,19,2012 -20130105_CIN@HOU,4,11,56,CIN,HOU,3,2,40,(11:56) B.Green-Ellis left end to HST 39 for 1 yard (B.James).,10,19,2012 -20130105_CIN@HOU,4,11,21,CIN,HOU,4,1,39,(11:21) B.Green-Ellis up the middle to HST 37 for 2 yards (B.James).,10,19,2012 -20130105_CIN@HOU,4,10,36,CIN,HOU,1,10,37,(10:36) A.Dalton pass incomplete deep middle to A.Green (J.Joseph).,10,19,2012 -20130105_CIN@HOU,4,10,28,CIN,HOU,2,10,37,(10:28) (Shotgun) A.Dalton scrambles up the middle to HST 36 for 1 yard (B.Reed).,10,19,2012 -20130105_CIN@HOU,4,9,52,CIN,HOU,3,9,36,(9:52) (Shotgun) A.Dalton pass short right to A.Green to HST 29 for 7 yards (J.Joseph).,10,19,2012 -20130105_CIN@HOU,4,9,8,CIN,HOU,4,2,29,(9:08) J.Brown 47 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,19,2012 -20130105_CIN@HOU,4,9,8,CIN,HOU,,,29,J.Brown kicks 72 yards from CIN 35 to HST -7. D.Manning Touchback.,13,19,2012 -20130105_CIN@HOU,4,9,3,HOU,CIN,1,10,80,(9:03) M.Schaub pass short right to J.Casey to HST 40 for 20 yards (R.Maualuga).,19,13,2012 -20130105_CIN@HOU,4,8,23,HOU,CIN,1,10,60,(8:23) A.Foster left tackle to HST 45 for 5 yards (C.Dunlap; E.Lamur).,19,13,2012 -20130105_CIN@HOU,4,7,42,HOU,CIN,2,5,55,(7:42) A.Foster right end pushed ob at HST 47 for 2 yards (R.Maualuga).,19,13,2012 -20130105_CIN@HOU,4,7,9,HOU,CIN,3,3,53,(7:09) (Shotgun) M.Schaub pass short left to D.Posey to CIN 34 for 19 yards (T.Newman). PENALTY on HST-D.Posey Offensive Pass Interference 10 yards enforced at HST 47 - No Play.,19,13,2012 -20130105_CIN@HOU,4,6,37,HOU,CIN,3,13,63,(6:37) (Shotgun) M.Schaub pass short left to K.Walter pushed ob at HST 49 for 12 yards (N.Clements).,19,13,2012 -20130105_CIN@HOU,4,6,30,HOU,CIN,4,1,51,(6:30) (Punt formation) PENALTY on HST-D.Jones Delay of Game 5 yards enforced at HST 49 - No Play.,19,13,2012 -20130105_CIN@HOU,4,6,26,HOU,CIN,4,6,56,(6:26) D.Jones punts 48 yards to CIN 8 Center-J.Weeks. B.Tate to CIN 20 for 12 yards (D.Posey). (The punt hang time was 3.9 seconds.),19,13,2012 -20130105_CIN@HOU,4,6,15,CIN,HOU,1,10,80,(6:15) (Shotgun) A.Dalton pass short right to A.Green to CIN 36 for 16 yards (B.Harris).,13,19,2012 -20130105_CIN@HOU,4,5,39,CIN,HOU,1,10,64,(5:39) B.Green-Ellis right guard to CIN 40 for 4 yards (A.Smith).,13,19,2012 -20130105_CIN@HOU,4,5,3,CIN,HOU,2,6,60,(5:03) (Shotgun) A.Dalton sacked at CIN 40 for 0 yards (B.Reed).,13,19,2012 -20130105_CIN@HOU,4,4,17,CIN,HOU,3,6,60,(4:17) (Shotgun) PENALTY on CIN-K.Zeitler False Start 5 yards enforced at CIN 40 - No Play.,13,19,2012 -20130105_CIN@HOU,4,4,17,CIN,HOU,3,11,65,(4:17) (Shotgun) A.Dalton pass incomplete short middle to M.Jones. PENALTY on HST-S.Keo Defensive Pass Interference 15 yards enforced at CIN 35 - No Play.,13,19,2012 -20130105_CIN@HOU,4,4,12,CIN,HOU,1,10,50,(4:12) A.Dalton pass short left to M.Jones to HST 35 for 15 yards (K.Jackson).,13,19,2012 -20130105_CIN@HOU,4,3,40,CIN,HOU,1,10,35,(3:40) B.Green-Ellis right tackle to HST 36 for -1 yards (E.Mitchell).,13,19,2012 -20130105_CIN@HOU,4,3,1,CIN,HOU,2,11,36,(3:01) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (G.Quin).,13,19,2012 -20130105_CIN@HOU,4,2,57,CIN,HOU,3,11,36,(2:57) (Shotgun) A.Dalton pass incomplete deep right to A.Green.,13,19,2012 -20130105_CIN@HOU,4,2,51,CIN,HOU,4,11,36,(2:51) (Shotgun) A.Dalton pass short left to M.Jones to HST 28 for 8 yards (J.Joseph S.Keo).,13,19,2012 -20130105_CIN@HOU,4,2,44,HOU,CIN,1,10,72,(2:44) A.Foster left tackle to HST 32 for 4 yards (D.Peko).,19,13,2012 -20130105_CIN@HOU,4,2,39,HOU,CIN,2,6,68,(2:39) A.Foster left tackle to HST 36 for 4 yards (R.Geathers).,19,13,2012 -20130105_CIN@HOU,4,2,33,HOU,CIN,3,2,64,(2:33) M.Schaub pass short middle to G.Graham to HST 43 for 7 yards (M.Lawson). PENALTY on CIN-V.Burfict Unnecessary Roughness 15 yards enforced at HST 43. (The penalty was for contact with a defenseless receiver.),19,13,2012 -20130105_CIN@HOU,4,2,23,HOU,CIN,1,10,42,(2:23) A.Foster right guard to CIN 40 for 2 yards (V.Burfict).,19,13,2012 -20130105_CIN@HOU,4,2,0,HOU,CIN,2,8,40,(2:00) A.Foster right guard to CIN 30 for 10 yards (R.Maualuga).,19,13,2012 -20130105_CIN@HOU,4,1,15,HOU,CIN,1,10,30,(1:15) M.Schaub kneels to CIN 31 for -1 yards.,19,13,2012 -20130105_CIN@HOU,4,0,36,HOU,CIN,2,11,31,(:36) M.Schaub kneels to CIN 32 for -1 yards.,19,13,2012 -20130105_CIN@HOU,4,0,36,HOU,CIN,,,31,                      ,19,13,2012 -20130105_MIN@GB,1,0,0,GB,MIN,,,31,M.Crosby kicks 70 yards from GB 35 to MIN -5. M.Sherels pushed ob at MIN 32 for 37 yards (T.Manning).,0,0,2012 -20130105_MIN@GB,1,59,54,MIN,GB,1,10,68,(14:54) A.Peterson right guard to MIN 36 for 4 yards (C.Wilson; R.Pickett).,0,0,2012 -20130105_MIN@GB,1,59,21,MIN,GB,2,6,64,(14:21) A.Peterson right tackle to MIN 39 for 3 yards (D.Moses C.Wilson).,0,0,2012 -20130105_MIN@GB,1,58,36,MIN,GB,3,3,61,(13:36) (Shotgun) J.Webb right end ran ob at GB 44 for 17 yards (C.Hayward).,0,0,2012 -20130105_MIN@GB,1,57,58,MIN,GB,1,10,44,(12:58) A.Peterson right tackle to GB 36 for 8 yards (R.Pickett B.Jones).,0,0,2012 -20130105_MIN@GB,1,57,15,MIN,GB,2,2,36,(12:15) A.Peterson right end to GB 29 for 7 yards (T.Williams E.Walden).,0,0,2012 -20130105_MIN@GB,1,56,33,MIN,GB,1,10,29,(11:33) (Shotgun) A.Peterson left guard to GB 18 for 11 yards (C.Woodson S.Shields).,0,0,2012 -20130105_MIN@GB,1,55,55,MIN,GB,1,10,18,(10:55) (Shotgun) J.Webb right end to GB 13 for 5 yards (D.Moses M.Burnett).,0,0,2012 -20130105_MIN@GB,1,55,16,MIN,GB,2,5,13,(10:16) A.Peterson up the middle to GB 15 for -2 yards (C.Woodson).,0,0,2012 -20130105_MIN@GB,1,54,34,MIN,GB,3,7,15,(9:34) (Shotgun) J.Webb pass incomplete short middle to M.Jenkins [C.Matthews].,0,0,2012 -20130105_MIN@GB,1,54,31,MIN,GB,4,7,15,(9:31) B.Walsh 33 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,0,2012 -20130105_MIN@GB,1,54,31,MIN,GB,,,15,B.Walsh kicks 64 yards from MIN 35 to GB 1. J.Ross ran ob at GB 29 for 28 yards (J.Sanford).,3,0,2012 -20130105_MIN@GB,1,54,20,GB,MIN,1,10,71,(9:20) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 36 for 7 yards (J.Sanford).,0,3,2012 -20130105_MIN@GB,1,53,56,GB,MIN,2,3,64,(8:56) (No Huddle) D.Harris left guard to GB 38 for 2 yards (L.Guion).,0,3,2012 -20130105_MIN@GB,1,53,25,GB,MIN,3,1,62,(8:25) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to D.Harris.,0,3,2012 -20130105_MIN@GB,1,53,20,GB,MIN,4,1,62,(8:20) T.Masthay punts 46 yards to MIN 16 Center-B.Goode. M.Sherels ran ob at MIN 33 for 17 yards (T.Manning).,0,3,2012 -20130105_MIN@GB,1,53,9,MIN,GB,1,10,67,(8:09) J.Webb right end ran ob at MIN 44 for 11 yards (C.Woodson).,3,0,2012 -20130105_MIN@GB,1,52,43,MIN,GB,1,10,56,(7:43) A.Peterson right end to MIN 46 for 2 yards (M.Burnett).,3,0,2012 -20130105_MIN@GB,1,52,3,MIN,GB,2,8,54,(7:03) J.Webb pass short left to K.Rudolph pushed ob at GB 48 for 6 yards (S.Shields).,3,0,2012 -20130105_MIN@GB,1,51,28,MIN,GB,3,2,48,(6:28) J.Webb pass incomplete short middle to R.Ellison [E.Walden].,3,0,2012 -20130105_MIN@GB,1,51,21,MIN,GB,4,2,48,(6:21) C.Kluwe punts 35 yards to GB 13 Center-C.Loeffler. R.Cobb to GB 18 for 5 yards (J.Sanford).,3,0,2012 -20130105_MIN@GB,1,51,11,GB,MIN,1,10,82,(6:11) D.Harris right guard to GB 22 for 4 yards (C.Greenway).,0,3,2012 -20130105_MIN@GB,1,50,43,GB,MIN,2,6,78,(5:43) (No Huddle) D.Harris left end pushed ob at GB 26 for 4 yards (C.Greenway).,0,3,2012 -20130105_MIN@GB,1,50,13,GB,MIN,3,2,74,(5:13) G.Van Roten reported in as eligible. R.Grant up the middle to GB 28 for 2 yards (F.Evans; C.Greenway). PENALTY on MIN-K.Williams Neutral Zone Infraction 5 yards enforced at GB 26 - No Play.,0,3,2012 -20130105_MIN@GB,1,49,46,GB,MIN,1,10,69,(4:46) (Shotgun) A.Rodgers scrambles up the middle to GB 33 for 2 yards (J.Allen).,0,3,2012 -20130105_MIN@GB,1,49,6,GB,MIN,2,8,67,(4:06) (No Huddle Shotgun) A.Rodgers pass short right to D.Harris pushed ob at GB 49 for 16 yards (J.Sanford).,0,3,2012 -20130105_MIN@GB,1,48,44,GB,MIN,1,10,51,(3:44) (No Huddle Shotgun) D.Harris right tackle to 50 for 1 yard (L.Guion C.Greenway).,0,3,2012 -20130105_MIN@GB,1,48,14,GB,MIN,2,9,50,(3:14) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to MIN 40 for 10 yards (C.Greenway E.Henderson).,0,3,2012 -20130105_MIN@GB,1,47,49,GB,MIN,1,10,40,(2:49) (No Huddle Shotgun) D.Harris up the middle to MIN 36 for 4 yards (A.Winfield).,0,3,2012 -20130105_MIN@GB,1,47,22,GB,MIN,2,6,36,(2:22) (No Huddle Shotgun) A.Rodgers pass short middle to D.Harris to MIN 24 for 12 yards (A.Winfield; E.Henderson).,0,3,2012 -20130105_MIN@GB,1,46,44,GB,MIN,1,10,24,(1:44) (No Huddle) R.Grant left end to MIN 25 for -1 yards (J.Allen).,0,3,2012 -20130105_MIN@GB,1,46,10,GB,MIN,2,11,25,(1:10) (No Huddle) A.Rodgers pass short right to R.Grant to MIN 9 for 16 yards (J.Sanford).,0,3,2012 -20130105_MIN@GB,1,45,33,GB,MIN,1,9,9,(:33) (No Huddle) D.Harris up the middle to MIN 1 for 8 yards (C.Greenway; J.Sanford). Green Bay challenged the runner broke the plane ruling and the play was REVERSED. (No Huddle) D.Harris up the middle for 9 yards TOUCHDOWN.,0,3,2012 -20130105_MIN@GB,1,45,33,GB,MIN,,,9,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,3,2012 -20130105_MIN@GB,1,45,33,GB,MIN,,,9,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,7,3,2012 -20130105_MIN@GB,1,45,28,MIN,GB,1,10,80,(:28) A.Peterson right end to MIN 21 for 1 yard (D.Moses).,3,7,2012 -20130105_MIN@GB,2,45,0,MIN,GB,2,9,79,(15:00) J.Webb scrambles up the middle to MIN 31 for 10 yards (C.Wilson).,3,7,2012 -20130105_MIN@GB,2,44,21,MIN,GB,1,10,69,(14:21) A.Peterson up the middle to MIN 35 for 4 yards (C.Matthews).,3,7,2012 -20130105_MIN@GB,2,43,46,MIN,GB,2,6,65,(13:46) J.Webb sacked at MIN 26 for -9 yards (C.Matthews).,3,7,2012 -20130105_MIN@GB,2,43,10,MIN,GB,3,15,74,(13:10) (Shotgun) J.Webb pass incomplete [M.Neal]. PENALTY on MIN-J.Webb Intentional Grounding 10 yards enforced at MIN 26.,3,7,2012 -20130105_MIN@GB,2,43,1,MIN,GB,4,25,84,(13:01) C.Kluwe punts 54 yards to GB 30 Center-C.Loeffler. R.Cobb to GB 36 for 6 yards (L.Dean A.Sendejo).,3,7,2012 -20130105_MIN@GB,2,42,48,GB,MIN,1,10,64,(12:48) D.Harris up the middle to GB 44 for 8 yards (B.Robison H.Smith).,7,3,2012 -20130105_MIN@GB,2,42,23,GB,MIN,2,2,56,(12:23) (No Huddle Shotgun) A.Rodgers pass short middle to D.Harris to MIN 49 for 7 yards (C.Greenway).,7,3,2012 -20130105_MIN@GB,2,41,45,GB,MIN,1,10,49,(11:45) (No Huddle Shotgun) D.Harris right end to 50 for -1 yards (H.Smith).,7,3,2012 -20130105_MIN@GB,2,41,12,GB,MIN,2,11,50,(11:12) (No Huddle) A.Rodgers sacked at GB 42 for -8 yards (J.Allen).,7,3,2012 -20130105_MIN@GB,2,40,34,GB,MIN,3,19,58,(10:34) (Shotgun) A.Rodgers pass short middle to G.Jennings to MIN 45 for 13 yards (H.Smith).,7,3,2012 -20130105_MIN@GB,2,40,3,GB,MIN,4,6,45,(10:03) T.Masthay punts 31 yards to MIN 14 Center-B.Goode fair catch by M.Sherels.,7,3,2012 -20130105_MIN@GB,2,39,56,MIN,GB,1,10,86,(9:56) J.Webb pass incomplete short left to M.Jenkins (S.Shields).,3,7,2012 -20130105_MIN@GB,2,39,50,MIN,GB,2,10,86,(9:50) A.Peterson up the middle to MIN 15 for 1 yard (D.Moses B.Jones).,3,7,2012 -20130105_MIN@GB,2,39,10,MIN,GB,3,9,85,(9:10) (Shotgun) J.Webb pass short right to J.Simpson to MIN 23 for 8 yards (T.Williams).,3,7,2012 -20130105_MIN@GB,2,38,40,MIN,GB,4,1,77,(8:40) C.Kluwe punts 52 yards to GB 25 Center-C.Loeffler. R.Cobb to GB 27 for 2 yards (R.Blanton; A.Sendejo).,3,7,2012 -20130105_MIN@GB,2,38,26,GB,MIN,1,10,73,(8:26) (Shotgun) R.Cobb right end to GB 31 for 4 yards (F.Evans).,7,3,2012 -20130105_MIN@GB,2,37,53,GB,MIN,2,6,69,(7:53) (No Huddle) A.Rodgers pass short right to T.Crabtree to GB 41 for 10 yards (C.Greenway E.Henderson).,7,3,2012 -20130105_MIN@GB,2,37,17,GB,MIN,1,10,59,(7:17) (No Huddle Shotgun) A.Rodgers pass deep right to J.Jones to MIN 39 for 20 yards (H.Smith).,7,3,2012 -20130105_MIN@GB,2,36,40,GB,MIN,1,10,39,(6:40) (No Huddle Shotgun) R.Cobb right end to MIN 37 for 2 yards (L.Guion).,7,3,2012 -20130105_MIN@GB,2,36,10,GB,MIN,2,8,37,(6:10) (No Huddle Shotgun) A.Rodgers pass short left to J.Jones to MIN 34 for 3 yards (C.Cook A.Winfield).,7,3,2012 -20130105_MIN@GB,2,35,26,GB,MIN,3,5,34,(5:26) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,7,3,2012 -20130105_MIN@GB,2,35,20,GB,MIN,4,5,34,(5:20) (Shotgun) A.Rodgers pass short left to G.Jennings pushed ob at MIN 2 for 32 yards (M.Raymond).,7,3,2012 -20130105_MIN@GB,2,34,46,GB,MIN,1,2,2,(4:46) (No Huddle Shotgun) J.Kuhn right tackle to MIN 1 for 1 yard (F.Evans; B.Robison).,7,3,2012 -20130105_MIN@GB,2,34,9,GB,MIN,2,1,1,(4:09) A.Rodgers pass incomplete short left to J.Finley.,7,3,2012 -20130105_MIN@GB,2,34,4,GB,MIN,3,1,1,(4:04) G.Van Roten reported in as eligible. J.Kuhn right guard to MIN 1 for no gain (F.Evans).,7,3,2012 -20130105_MIN@GB,2,33,29,GB,MIN,4,1,1,(3:29) M.Crosby 20 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,7,3,2012 -20130105_MIN@GB,2,33,29,GB,MIN,,,1,M.Crosby kicks 66 yards from GB 35 to MIN -1. M.Sherels to MIN 33 for 34 yards (C.Hayward). PENALTY on MIN-M.Mitchell Offensive Holding 10 yards enforced at MIN 22.,10,3,2012 -20130105_MIN@GB,2,33,17,MIN,GB,1,10,88,(3:17) A.Peterson right tackle to MIN 18 for 6 yards (A.Hawk C.Woodson).,3,10,2012 -20130105_MIN@GB,2,32,42,MIN,GB,2,4,82,(2:42) J.Webb pass incomplete deep middle to J.Simpson.,3,10,2012 -20130105_MIN@GB,2,32,35,MIN,GB,3,4,82,(2:35) (Shotgun) J.Webb sacked at MIN 11 for -7 yards (E.Walden).,3,10,2012 -20130105_MIN@GB,2,31,48,MIN,GB,4,11,89,(1:48) C.Kluwe punts 51 yards to GB 38 Center-C.Loeffler downed by MIN-J.Sanford.,3,10,2012 -20130105_MIN@GB,2,31,48,GB,MIN,1,10,62,(1:48) (Shotgun) A.Rodgers pass short middle to J.Nelson to MIN 40 for 22 yards (C.Greenway).,10,3,2012 -20130105_MIN@GB,2,31,23,GB,MIN,1,10,40,(1:23) (No Huddle Shotgun) A.Rodgers pass short left to G.Jennings to MIN 26 for 14 yards (H.Smith).,10,3,2012 -20130105_MIN@GB,2,30,56,GB,MIN,1,10,26,(:56) (No Huddle) A.Rodgers pass deep right to J.Nelson pushed ob at MIN 3 for 23 yards (A.Jefferson).,10,3,2012 -20130105_MIN@GB,2,30,49,GB,MIN,1,3,3,(:49) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson.,10,3,2012 -20130105_MIN@GB,2,30,42,GB,MIN,2,3,3,(:42) (Shotgun) J.Kuhn right guard for 3 yards TOUCHDOWN.,10,3,2012 -20130105_MIN@GB,2,30,42,GB,MIN,,,3,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,10,3,2012 -20130105_MIN@GB,2,30,42,GB,MIN,,,3,M.Crosby kicks 50 yards from GB 35 to MIN 15. R.Ellison to MIN 28 for 13 yards (C.Hayward). PENALTY on GB-J.Kuhn Defensive Offside 5 yards enforced at MIN 28.,17,3,2012 -20130105_MIN@GB,2,30,33,MIN,GB,1,10,67,(:33) J.Webb pass short middle to A.Peterson to MIN 41 for 8 yards (M.Jennings).,3,17,2012 -20130105_MIN@GB,2,30,27,MIN,GB,2,2,59,(:27) J.Webb pass incomplete deep left to J.Wright.,3,17,2012 -20130105_MIN@GB,2,30,22,MIN,GB,3,2,59,(:22) (Shotgun) A.Peterson left end ran ob at MIN 44 for 3 yards (E.Walden).,3,17,2012 -20130105_MIN@GB,2,30,16,MIN,GB,1,10,56,(:16) (Shotgun) J.Webb pass incomplete short middle to J.Wright (T.Williams).,3,17,2012 -20130105_MIN@GB,2,30,10,MIN,GB,2,10,56,(:10) (Shotgun) J.Webb pass incomplete deep left to D.Aromashodu.,3,17,2012 -20130105_MIN@GB,2,30,4,MIN,GB,3,10,56,(:04) (Shotgun) J.Webb pass incomplete deep right to D.Aromashodu.,3,17,2012 -20130105_MIN@GB,3,30,0,MIN,GB,,,56,B.Walsh kicks 72 yards from MIN 35 to GB -7. J.Ross Touchback.,3,17,2012 -20130105_MIN@GB,3,30,0,GB,MIN,1,10,80,(15:00) D.Harris right guard to GB 24 for 4 yards (C.Greenway).,17,3,2012 -20130105_MIN@GB,3,29,34,GB,MIN,2,6,76,(14:34) (No Huddle) D.Harris left tackle to GB 28 for 4 yards (J.Brinkley; K.Williams).,17,3,2012 -20130105_MIN@GB,3,28,58,GB,MIN,3,2,72,(13:58) (No Huddle Shotgun) A.Rodgers pass short middle to J.Jones to GB 37 for 9 yards (A.Jefferson).,17,3,2012 -20130105_MIN@GB,3,28,28,GB,MIN,1,10,63,(13:28) (No Huddle Shotgun) A.Rodgers sacked at GB 33 for -4 yards (E.Griffen).,17,3,2012 -20130105_MIN@GB,3,27,53,GB,MIN,2,14,67,(12:53) (No Huddle Shotgun) A.Rodgers scrambles left end to GB 43 for 10 yards (C.Greenway).,17,3,2012 -20130105_MIN@GB,3,27,12,GB,MIN,3,4,57,(12:12) (No Huddle Shotgun) A.Rodgers pass short middle to J.Jones to MIN 38 for 19 yards (H.Smith E.Henderson) [J.Allen].,17,3,2012 -20130105_MIN@GB,3,26,36,GB,MIN,1,10,38,(11:36) (No Huddle Shotgun) A.Rodgers pass short middle to D.Harris to MIN 34 for 4 yards (E.Henderson).,17,3,2012 -20130105_MIN@GB,3,26,1,GB,MIN,2,6,34,(11:01) (No Huddle Shotgun) A.Rodgers pass short middle to D.Harris to MIN 20 for 14 yards (H.Smith).,17,3,2012 -20130105_MIN@GB,3,25,30,GB,MIN,1,10,20,(10:30) (No Huddle) D.Harris right end to MIN 14 for 6 yards (L.Guion).,17,3,2012 -20130105_MIN@GB,3,24,45,GB,MIN,2,4,14,(9:45) A.Rodgers pass incomplete short right to J.Kuhn.,17,3,2012 -20130105_MIN@GB,3,24,35,GB,MIN,3,4,14,(9:35) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (H.Smith).,17,3,2012 -20130105_MIN@GB,3,24,35,GB,MIN,4,4,14,(9:35) (Field Goal formation) PENALTY on MIN-J.Brinkley Defensive 12 On-field 5 yards enforced at MIN 14 - No Play.,17,3,2012 -20130105_MIN@GB,3,24,32,GB,MIN,1,9,9,(9:32) (Shotgun) A.Rodgers pass short middle to J.Kuhn for 9 yards TOUCHDOWN.,17,3,2012 -20130105_MIN@GB,3,24,32,GB,MIN,,,9,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,17,3,2012 -20130105_MIN@GB,3,24,32,GB,MIN,,,9,M.Crosby kicks 72 yards from GB 35 to MIN -7. M.Sherels Touchback.,24,3,2012 -20130105_MIN@GB,3,24,25,MIN,GB,1,10,80,(9:25) A.Peterson right end to MIN 16 for -4 yards (E.Walden).,3,24,2012 -20130105_MIN@GB,3,23,47,MIN,GB,2,14,84,(8:47) J.Webb pass short middle to J.Simpson to MIN 29 for 13 yards (M.Burnett).,3,24,2012 -20130105_MIN@GB,3,23,5,MIN,GB,3,1,71,(8:05) A.Peterson left guard to MIN 32 for 3 yards (C.Wilson).,3,24,2012 -20130105_MIN@GB,3,22,32,MIN,GB,1,10,68,(7:32) J.Webb pass short left to K.Rudolph to MIN 45 for 13 yards (M.Burnett).,3,24,2012 -20130105_MIN@GB,3,21,56,MIN,GB,1,10,55,(6:56) J.Webb pass incomplete deep left to J.Carlson.,3,24,2012 -20130105_MIN@GB,3,21,50,MIN,GB,2,10,55,(6:50) A.Peterson left end to MIN 47 for 2 yards (S.Shields).,3,24,2012 -20130105_MIN@GB,3,21,7,MIN,GB,3,8,53,(6:07) (Shotgun) J.Webb pass short right to J.Wright to GB 45 for 8 yards (M.Jennings).,3,24,2012 -20130105_MIN@GB,3,20,20,MIN,GB,1,10,45,(5:20) J.Webb pass incomplete short middle to A.Peterson [C.Matthews].,3,24,2012 -20130105_MIN@GB,3,20,13,MIN,GB,2,10,45,(5:13) A.Peterson left end to GB 43 for 2 yards (M.Daniels; C.Matthews).,3,24,2012 -20130105_MIN@GB,3,19,36,MIN,GB,3,8,43,(4:36) (Shotgun) J.Webb pass short left to J.Wright pushed ob at GB 38 for 5 yards (S.Shields).,3,24,2012 -20130105_MIN@GB,3,19,6,MIN,GB,4,3,38,(4:06) (Shotgun) J.Webb sacked at GB 47 for -9 yards (C.Matthews). FUMBLES (C.Matthews) RECOVERED by GB-C.Matthews at GB 45. C.Matthews to GB 45 for no gain (J.Webb).,3,24,2012 -20130105_MIN@GB,3,18,59,GB,MIN,1,10,55,(3:59) D.Harris left end to GB 48 for 3 yards (F.Evans J.Brinkley).,24,3,2012 -20130105_MIN@GB,3,18,18,GB,MIN,2,7,52,(3:18) D.Harris left end to GB 40 for -8 yards (H.Smith). MIN-H.Smith was injured during the play.,24,3,2012 -20130105_MIN@GB,3,17,38,GB,MIN,3,15,60,(2:38) (Shotgun) A.Rodgers pass incomplete short left to R.Cobb.,24,3,2012 -20130105_MIN@GB,3,17,32,GB,MIN,4,15,60,(2:32) T.Masthay punts 41 yards to MIN 19 Center-B.Goode fair catch by M.Sherels.,24,3,2012 -20130105_MIN@GB,3,17,24,MIN,GB,1,10,81,(2:24) A.Peterson left tackle to MIN 25 for 6 yards (A.Hawk S.Shields).,3,24,2012 -20130105_MIN@GB,3,16,52,MIN,GB,2,4,75,(1:52) A.Peterson left end pushed ob at MIN 33 for 8 yards (S.Shields).,3,24,2012 -20130105_MIN@GB,3,16,28,MIN,GB,1,10,67,(1:28) A.Peterson right end to MIN 37 for 4 yards (C.Wilson).,3,24,2012 -20130105_MIN@GB,3,15,52,MIN,GB,2,6,63,(:52) J.Webb pass incomplete short left to J.Carlson.,3,24,2012 -20130105_MIN@GB,3,15,46,MIN,GB,3,6,63,(:46) (Shotgun) J.Webb up the middle ran ob at GB 46 for 17 yards (C.Hayward).,3,24,2012 -20130105_MIN@GB,3,15,15,MIN,GB,1,10,46,(:15) J.Webb pass deep left intended for D.Aromashodu INTERCEPTED by S.Shields at GB 8. S.Shields pushed ob at GB 8 for no gain (D.Aromashodu).,3,24,2012 -20130105_MIN@GB,3,15,6,GB,MIN,1,10,92,(:06) D.Harris left end to GB 10 for 2 yards (J.Sanford; J.Brinkley).,24,3,2012 -20130105_MIN@GB,4,15,0,GB,MIN,2,8,90,(15:00) D.Harris right end to GB 14 for 4 yards (C.Greenway J.Brinkley).,24,3,2012 -20130105_MIN@GB,4,14,18,GB,MIN,3,4,86,(14:18) (Shotgun) A.Rodgers pass incomplete deep left to G.Jennings.,24,3,2012 -20130105_MIN@GB,4,14,12,GB,MIN,4,4,86,(14:12) T.Masthay punts 39 yards to MIN 47 Center-B.Goode. M.Sherels MUFFS catch touched at MIN 47 RECOVERED by GB-D.Moses at MIN 39. D.Moses to MIN 39 for no gain (L.Dean).,24,3,2012 -20130105_MIN@GB,4,13,59,GB,MIN,1,10,39,(13:59) G.Van Roten reported in as eligible. D.Harris left guard to MIN 39 for no gain (J.Allen).,24,3,2012 -20130105_MIN@GB,4,13,21,GB,MIN,2,10,39,(13:21) G.Van Roten reported in as eligible. D.Harris left end to MIN 38 for 1 yard (F.Evans A.Winfield).,24,3,2012 -20130105_MIN@GB,4,12,39,GB,MIN,3,9,38,(12:39) (Shotgun) A.Rodgers pass incomplete deep right to J.Nelson.,24,3,2012 -20130105_MIN@GB,4,12,33,GB,MIN,4,9,38,(12:33) T.Masthay punts 29 yards to MIN 9 Center-B.Goode fair catch by M.Sherels.,24,3,2012 -20130105_MIN@GB,4,12,25,MIN,GB,1,10,91,(12:25) J.Webb pass incomplete deep left to J.Simpson.,3,24,2012 -20130105_MIN@GB,4,12,18,MIN,GB,2,10,91,(12:18) A.Peterson left guard to MIN 10 for 1 yard (C.Wilson).,3,24,2012 -20130105_MIN@GB,4,11,40,MIN,GB,3,9,90,(11:40) (Shotgun) J.Webb scrambles left tackle to MIN 17 for 7 yards (B.Jones; M.Neal).,3,24,2012 -20130105_MIN@GB,4,10,53,MIN,GB,4,2,83,(10:53) C.Kluwe punts 56 yards to GB 27 Center-C.Loeffler. R.Cobb to GB 31 for 4 yards (J.Robinson).,3,24,2012 -20130105_MIN@GB,4,10,40,GB,MIN,1,10,69,(10:40) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 33 for 2 yards (C.Cook).,24,3,2012 -20130105_MIN@GB,4,10,2,GB,MIN,2,8,67,(10:02) A.Rodgers pass incomplete deep middle to G.Jennings (L.Guion) [J.Allen].,24,3,2012 -20130105_MIN@GB,4,9,57,GB,MIN,3,8,67,(9:57) (Shotgun) A.Rodgers pass short left to J.Kuhn to GB 39 for 6 yards (C.Greenway).,24,3,2012 -20130105_MIN@GB,4,9,13,GB,MIN,4,2,61,(9:13) T.Masthay punts 39 yards to MIN 22 Center-B.Goode fair catch by M.Sherels.,24,3,2012 -20130105_MIN@GB,4,9,5,MIN,GB,1,10,78,(9:05) (Shotgun) A.Peterson right end to MIN 40 for 18 yards (B.Jones C.Woodson).,3,24,2012 -20130105_MIN@GB,4,8,29,MIN,GB,1,10,60,(8:29) (Shotgun) A.Peterson right end to GB 49 for 11 yards (C.Woodson).,3,24,2012 -20130105_MIN@GB,4,7,56,MIN,GB,1,10,49,(7:56) (Shotgun) J.Webb pass incomplete short right.,3,24,2012 -20130105_MIN@GB,4,7,47,MIN,GB,2,10,49,(7:47) (Shotgun) J.Webb pass incomplete deep right to J.Simpson (T.Williams).,3,24,2012 -20130105_MIN@GB,4,7,41,MIN,GB,3,10,49,(7:41) (Shotgun) J.Webb scrambles right end pushed ob at GB 48 for 1 yard (B.Jones).,3,24,2012 -20130105_MIN@GB,4,7,41,MIN,GB,4,9,48,(7:41) (Shotgun) PENALTY on GB-M.Neal Encroachment 5 yards enforced at GB 48 - No Play.,3,24,2012 -20130105_MIN@GB,4,6,29,MIN,GB,4,4,43,(6:29) (Shotgun) J.Webb pass incomplete short right to J.Simpson (T.Williams).,3,24,2012 -20130105_MIN@GB,4,6,24,GB,MIN,1,10,57,(6:24) R.Grant up the middle to 50 for 7 yards (J.Brinkley).,24,3,2012 -20130105_MIN@GB,4,5,47,GB,MIN,2,3,50,(5:47) R.Grant up the middle to GB 45 for -5 yards (E.Henderson; F.Evans).,24,3,2012 -20130105_MIN@GB,4,5,3,GB,MIN,3,8,55,(5:03) (Shotgun) A.Rodgers sacked at GB 33 for -12 yards (C.Ballard).,24,3,2012 -20130105_MIN@GB,4,4,26,GB,MIN,4,20,67,(4:26) T.Masthay punts 41 yards to MIN 26 Center-B.Goode. M.Sherels ran ob at MIN 34 for 8 yards (J.Bush).,24,3,2012 -20130105_MIN@GB,4,4,15,MIN,GB,1,10,66,(4:15) (Shotgun) J.Webb pass incomplete short left to A.Peterson.,3,24,2012 -20130105_MIN@GB,4,4,10,MIN,GB,2,10,66,(4:10) (Shotgun) J.Webb pass short middle to M.Jenkins to 50 for 16 yards (T.Williams).,3,24,2012 -20130105_MIN@GB,4,3,49,MIN,GB,1,10,50,(3:49) (No Huddle Shotgun) J.Webb pass deep right to M.Jenkins for 50 yards TOUCHDOWN.,3,24,2012 -20130105_MIN@GB,4,3,49,MIN,GB,,,50,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,3,24,2012 -20130105_MIN@GB,4,3,49,MIN,GB,,,50,B.Walsh kicks 45 yards from MIN 35 to GB 20. J.Ross ran ob at GB 20 for no gain (M.Sherels).,10,24,2012 -20130105_MIN@GB,4,3,38,GB,MIN,1,10,80,(3:38) R.Grant up the middle to GB 22 for 2 yards (E.Henderson; K.Williams).,24,10,2012 -20130105_MIN@GB,4,3,30,GB,MIN,2,8,78,(3:30) R.Grant right tackle to GB 25 for 3 yards (J.Sanford J.Allen).,24,10,2012 -20130105_MIN@GB,4,3,25,GB,MIN,3,5,75,(3:25) (Shotgun) A.Rodgers pass short left to J.Nelson to GB 31 for 6 yards (A.Jefferson).,24,10,2012 -20130105_MIN@GB,4,2,40,GB,MIN,1,10,69,(2:40) R.Grant up the middle to GB 29 for -2 yards (E.Henderson).,24,10,2012 -20130105_MIN@GB,4,2,0,GB,MIN,2,12,71,(2:00) A.Rodgers pass short right to R.Taylor to GB 29 for no gain (C.Cook).,24,10,2012 -20130105_MIN@GB,4,1,16,GB,MIN,3,12,71,(1:16) R.Grant left end to GB 32 for 3 yards (J.Allen).,24,10,2012 -20130105_MIN@GB,4,0,28,GB,MIN,4,9,68,(:28) T.Masthay punts 36 yards to MIN 32 Center-B.Goode fair catch by M.Sherels.,24,10,2012 -20130105_MIN@GB,4,0,19,MIN,GB,1,10,68,(:19) (Shotgun) J.Webb pass deep middle to M.Jenkins to GB 38 for 30 yards (T.Williams).,10,24,2012 -20130105_MIN@GB,4,0,3,MIN,GB,1,10,38,(:03) J.Webb spiked the ball to stop the clock.,10,24,2012 -20130105_MIN@GB,4,0,1,MIN,GB,2,10,38,(:01) J.Webb pass deep right to K.Rudolph to GB 15 for 23 yards (J.McMillian; M.Jennings).,10,24,2012 -20130105_MIN@GB,4,0,1,MIN,GB,,,38,                      ,10,24,2012 -20130106_IND@BAL,1,0,0,BAL,IND,,,38,J.Tucker kicks 74 yards from BLT 35 to IND -9. D.Karim Touchback.,0,0,2012 -20130106_IND@BAL,1,60,0,IND,BAL,1,10,80,(15:00) D.Avery right end to IND 35 for 15 yards (C.Graham). Reverse - end around,0,0,2012 -20130106_IND@BAL,1,59,18,IND,BAL,1,10,65,(14:18) (Shotgun) A.Luck pass incomplete short right to C.Fleener.,0,0,2012 -20130106_IND@BAL,1,59,14,IND,BAL,2,10,65,(14:14) (Shotgun) A.Luck pass short left to T.Hilton to IND 36 for 1 yard (P.Kruger).,0,0,2012 -20130106_IND@BAL,1,58,30,IND,BAL,3,9,64,(13:30) (Shotgun) A.Luck pass incomplete short left to D.Avery (E.Reed).,0,0,2012 -20130106_IND@BAL,1,58,26,IND,BAL,4,9,64,(13:26) (Punt formation) P.McAfee punts 50 yards to BLT 14 Center-M.Overton. J.Jones to BLT 48 for 34 yards (M.Moore).,0,0,2012 -20130106_IND@BAL,1,58,12,BAL,IND,1,10,52,(13:12) R.Rice right guard to IND 49 for 3 yards (P.Angerer).,0,0,2012 -20130106_IND@BAL,1,57,43,BAL,IND,2,7,49,(12:43) (No Huddle) J.Flacco pass short right to E.Dickson to IND 25 for 24 yards (A.Bethea).,0,0,2012 -20130106_IND@BAL,1,57,5,BAL,IND,1,10,25,(12:05) (No Huddle) R.Rice left guard to IND 21 for 4 yards (J.Freeman P.Angerer).,0,0,2012 -20130106_IND@BAL,1,56,38,BAL,IND,2,6,21,(11:38) (No Huddle) J.Flacco pass incomplete short right to T.Smith (C.Vaughn). PENALTY on IND-C.Vaughn Defensive Pass Interference 6 yards enforced at IND 21 - No Play.,0,0,2012 -20130106_IND@BAL,1,56,34,BAL,IND,1,10,15,(11:34) (No Huddle) R.Rice right guard to IND 11 for 4 yards (R.Mathis).,0,0,2012 -20130106_IND@BAL,1,56,2,BAL,IND,2,6,11,(11:02) (No Huddle) R.Rice right guard to IND 11 for no gain (C.Redding). FUMBLES (C.Redding) RECOVERED by IND-L.Guy at IND 11. L.Guy to IND 11 for no gain (M.Yanda).,0,0,2012 -20130106_IND@BAL,1,55,55,IND,BAL,1,10,89,(10:55) V.Ballard up the middle to IND 15 for 4 yards (T.Cody).,0,0,2012 -20130106_IND@BAL,1,55,20,IND,BAL,2,6,85,(10:20) V.Ballard left end to IND 14 for -1 yards (R.Lewis).,0,0,2012 -20130106_IND@BAL,1,54,37,IND,BAL,3,7,86,(9:37) (Shotgun) A.Luck scrambles up the middle to IND 22 for 8 yards (D.Ellerbe).,0,0,2012 -20130106_IND@BAL,1,53,48,IND,BAL,1,10,78,(8:48) A.Luck pass incomplete deep middle to R.Wayne.,0,0,2012 -20130106_IND@BAL,1,53,41,IND,BAL,2,10,78,(8:41) A.Luck pass incomplete deep right to T.Hilton. PENALTY on BLT-C.Brown Illegal Contact 5 yards enforced at IND 22 - No Play.,0,0,2012 -20130106_IND@BAL,1,53,35,IND,BAL,1,10,73,(8:35) V.Ballard left tackle to IND 31 for 4 yards (C.Williams).,0,0,2012 -20130106_IND@BAL,1,52,58,IND,BAL,2,6,69,(7:58) A.Luck pass short left to T.Hilton to IND 38 for 7 yards (C.Williams).,0,0,2012 -20130106_IND@BAL,1,52,19,IND,BAL,1,10,62,(7:19) V.Ballard right guard to IND 44 for 6 yards (C.Upshaw R.Lewis).,0,0,2012 -20130106_IND@BAL,1,51,41,IND,BAL,2,4,56,(6:41) A.Luck pass incomplete short left to C.Fleener (E.Reed) [D.Tyson].,0,0,2012 -20130106_IND@BAL,1,51,33,IND,BAL,3,4,56,(6:33) (Shotgun) A.Luck pass short left to R.Wayne to BLT 47 for 9 yards (C.Williams).,0,0,2012 -20130106_IND@BAL,1,50,56,IND,BAL,1,10,47,(5:56) V.Ballard right tackle to BLT 40 for 7 yards (D.Ellerbe).,0,0,2012 -20130106_IND@BAL,1,50,22,IND,BAL,2,3,40,(5:22) V.Ballard left tackle to BLT 35 for 5 yards (C.Brown).,0,0,2012 -20130106_IND@BAL,1,49,44,IND,BAL,1,10,35,(4:44) A.Luck pass incomplete deep right to R.Wayne.,0,0,2012 -20130106_IND@BAL,1,49,36,IND,BAL,2,10,35,(4:36) M.Moore right tackle to BLT 30 for 5 yards (D.Ellerbe).,0,0,2012 -20130106_IND@BAL,1,48,52,IND,BAL,3,5,30,(3:52) (Shotgun) A.Luck sacked at BLT 37 for -7 yards (P.Kruger). FUMBLES (P.Kruger) RECOVERED by BLT-P.McPhee at BLT 37. P.McPhee to BLT 37 for no gain (W.Justice).,0,0,2012 -20130106_IND@BAL,1,48,45,BAL,IND,1,10,63,(3:45) J.Flacco pass incomplete short left to A.Boldin (V.Davis).,0,0,2012 -20130106_IND@BAL,1,48,41,BAL,IND,2,10,63,(3:41) (No Huddle) R.Rice left end to BLT 41 for 4 yards (J.Freeman R.Mathis).,0,0,2012 -20130106_IND@BAL,1,48,5,BAL,IND,3,6,59,(3:05) (No Huddle Shotgun) J.Flacco pass incomplete short right to T.Smith (V.Davis).,0,0,2012 -20130106_IND@BAL,1,47,57,BAL,IND,4,6,59,(2:57) (Punt formation) S.Koch punts 36 yards to IND 23 Center-M.Cox out of bounds.,0,0,2012 -20130106_IND@BAL,1,47,49,IND,BAL,1,10,77,(2:49) V.Ballard left tackle to IND 30 for 7 yards (D.Ellerbe R.Lewis).,0,0,2012 -20130106_IND@BAL,1,47,16,IND,BAL,2,3,70,(2:16) A.Luck pass short right to C.Fleener to IND 36 for 6 yards (B.Pollard).,0,0,2012 -20130106_IND@BAL,1,46,36,IND,BAL,1,10,64,(1:36) V.Ballard left tackle to IND 39 for 3 yards (H.Ngata).,0,0,2012 -20130106_IND@BAL,1,45,56,IND,BAL,2,7,61,(:56) A.Luck pass incomplete deep right to T.Hilton [P.Kruger].,0,0,2012 -20130106_IND@BAL,1,45,50,IND,BAL,3,7,61,(:50) (Shotgun) A.Luck scrambles up the middle to IND 42 for 3 yards (R.Lewis T.Suggs).,0,0,2012 -20130106_IND@BAL,1,45,23,IND,BAL,4,4,58,(:23) (Punt formation) P.McAfee punts 41 yards to BLT 17 Center-M.Overton. J.Jones to BLT 29 for 12 yards (J.Lefeged).,0,0,2012 -20130106_IND@BAL,1,45,14,BAL,IND,1,10,71,(:14) B.Pierce left guard to BLT 35 for 6 yards (C.Redding).,0,0,2012 -20130106_IND@BAL,2,45,0,BAL,IND,2,4,65,(15:00) B.Pierce left guard to BLT 40 for 5 yards (P.Angerer L.Guy).,0,0,2012 -20130106_IND@BAL,2,44,30,BAL,IND,1,10,60,(14:30) (No Huddle) J.Flacco pass deep middle to T.Smith to IND 38 for 22 yards (C.Vaughn).,0,0,2012 -20130106_IND@BAL,2,43,49,BAL,IND,1,10,38,(13:49) (No Huddle) B.Pierce left guard to IND 33 for 5 yards (L.Guy).,0,0,2012 -20130106_IND@BAL,2,43,11,BAL,IND,2,5,33,(13:11) J.Flacco pass short right to D.Pitta to IND 26 for 7 yards (A.Johnson P.Angerer).,0,0,2012 -20130106_IND@BAL,2,42,30,BAL,IND,1,10,26,(12:30) (No Huddle) B.Pierce right tackle to IND 8 for 18 yards (A.Bethea).,0,0,2012 -20130106_IND@BAL,2,42,14,BAL,IND,1,8,8,(12:14) B.Pierce right tackle to IND 5 for 3 yards (P.Angerer A.Bethea).,0,0,2012 -20130106_IND@BAL,2,41,33,BAL,IND,2,5,5,(11:33) (Shotgun) J.Flacco pass incomplete short middle to T.Doss (V.Davis).,0,0,2012 -20130106_IND@BAL,2,41,28,BAL,IND,3,5,5,(11:28) (No Huddle Shotgun) J.Flacco pass incomplete short middle to T.Doss.,0,0,2012 -20130106_IND@BAL,2,41,23,BAL,IND,4,5,5,(11:23) (Field Goal formation) J.Tucker 23 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20130106_IND@BAL,2,41,23,BAL,IND,,,5,J.Tucker kicks 73 yards from BLT 35 to IND -8. D.Karim Touchback.,3,0,2012 -20130106_IND@BAL,2,41,18,IND,BAL,1,10,80,(11:18) A.Luck pass incomplete short middle to D.Avery (H.Ngata R.Lewis). Ray Lewis (BAL) nearly intercepts pass.,0,3,2012 -20130106_IND@BAL,2,41,10,IND,BAL,2,10,80,(11:10) (Shotgun) A.Luck pass short left to T.Hilton to IND 28 for 8 yards (C.Williams).,0,3,2012 -20130106_IND@BAL,2,40,32,IND,BAL,3,2,72,(10:32) (Shotgun) A.Luck pass incomplete short right to T.Hilton (B.Pollard).,0,3,2012 -20130106_IND@BAL,2,40,26,IND,BAL,4,2,72,(10:26) (Punt formation) P.McAfee punts 53 yards to BLT 19 Center-M.Overton. J.Jones to BLT 36 for 17 yards (S.Brown). PENALTY on BLT-C.Brown Offensive Holding 10 yards enforced at BLT 30.,0,3,2012 -20130106_IND@BAL,2,40,14,BAL,IND,1,10,80,(10:14) R.Rice left tackle to BLT 25 for 5 yards (A.Johnson).,3,0,2012 -20130106_IND@BAL,2,39,39,BAL,IND,2,5,75,(9:39) R.Rice up the middle to BLT 38 for 13 yards (J.Lefeged).,3,0,2012 -20130106_IND@BAL,2,39,7,BAL,IND,1,10,62,(9:07) (No Huddle) J.Flacco pass incomplete deep right to A.Boldin.,3,0,2012 -20130106_IND@BAL,2,39,1,BAL,IND,2,10,62,(9:01) R.Rice right guard to BLT 40 for 2 yards (A.Bethea).,3,0,2012 -20130106_IND@BAL,2,38,25,BAL,IND,3,8,60,(8:25) (No Huddle Shotgun) J.Flacco pass incomplete short left to J.Jones [R.Mathews].,3,0,2012 -20130106_IND@BAL,2,38,19,BAL,IND,4,8,60,(8:19) (Punt formation) S.Koch punts 60 yards to end zone Center-M.Cox Touchback. PENALTY on BLT-D.Reed Illegal Touch Kick 0 yards enforced at IND 20.,3,0,2012 -20130106_IND@BAL,2,38,9,IND,BAL,1,10,80,(8:09) V.Ballard right guard to IND 22 for 2 yards (C.Upshaw T.Suggs).,0,3,2012 -20130106_IND@BAL,2,37,34,IND,BAL,2,8,78,(7:34) V.Ballard left tackle to IND 25 for 3 yards (H.Ngata C.Williams).,0,3,2012 -20130106_IND@BAL,2,36,52,IND,BAL,3,5,75,(6:52) (Shotgun) A.Luck pass short middle to R.Wayne to IND 33 for 8 yards (C.Williams).,0,3,2012 -20130106_IND@BAL,2,36,24,IND,BAL,1,10,67,(6:24) A.Luck pass short middle to D.Allen to BLT 45 for 22 yards (C.Williams R.Lewis).,0,3,2012 -20130106_IND@BAL,2,35,45,IND,BAL,1,10,45,(5:45) V.Ballard right tackle to BLT 45 for no gain (C.Upshaw R.Lewis).,0,3,2012 -20130106_IND@BAL,2,35,2,IND,BAL,2,10,45,(5:02) A.Luck pass short left to D.Allen pushed ob at BLT 32 for 13 yards (J.Ihedigbo).,0,3,2012 -20130106_IND@BAL,2,34,28,IND,BAL,1,10,32,(4:28) V.Ballard right guard to BLT 30 for 2 yards (H.Ngata).,0,3,2012 -20130106_IND@BAL,2,33,47,IND,BAL,2,8,30,(3:47) A.Luck sacked at BLT 36 for -6 yards (sack split by C.Graham and P.Kruger).,0,3,2012 -20130106_IND@BAL,2,33,7,IND,BAL,3,14,36,(3:07) (Shotgun) A.Luck pass short middle to C.Fleener to BLT 29 for 7 yards (R.Lewis).,0,3,2012 -20130106_IND@BAL,2,32,31,IND,BAL,4,7,29,(2:31) (Field Goal formation) A.Vinatieri 47 yard field goal is GOOD Center-M.Overton Holder-P.McAfee. Adam Vinateri's 46th post-season field goal.,0,3,2012 -20130106_IND@BAL,2,32,31,IND,BAL,,,29,P.McAfee kicks 65 yards from IND 35 to BLT 0. J.Jones to BLT 37 for 37 yards (J.Gordy).,3,3,2012 -20130106_IND@BAL,2,32,18,BAL,IND,1,10,63,(2:18) R.Rice right end to BLT 41 for 4 yards (J.Freeman).,3,3,2012 -20130106_IND@BAL,2,32,0,BAL,IND,2,6,59,(2:00) (Shotgun) R.Rice left guard to BLT 43 for 2 yards (M.Fokou J.Freeman).,3,3,2012 -20130106_IND@BAL,2,31,34,BAL,IND,3,4,57,(1:34) (No Huddle Shotgun) J.Flacco pass short middle to J.Jones to IND 49 for 8 yards (C.Vaughn).,3,3,2012 -20130106_IND@BAL,2,31,14,BAL,IND,1,10,49,(1:14) (No Huddle Shotgun) J.Flacco pass incomplete short middle to R.Rice (M.Fokou).,3,3,2012 -20130106_IND@BAL,2,31,8,BAL,IND,2,10,49,(1:08) (No Huddle Shotgun) J.Flacco pass short right to R.Rice to IND 2 for 47 yards (M.Fokou).,3,3,2012 -20130106_IND@BAL,2,30,55,BAL,IND,1,2,2,(:55) V.Leach left tackle for 2 yards TOUCHDOWN.,3,3,2012 -20130106_IND@BAL,2,30,55,BAL,IND,,,2,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,3,2012 -20130106_IND@BAL,2,30,55,BAL,IND,,,2,J.Tucker kicks 74 yards from BLT 35 to IND -9. D.Karim Touchback.,10,3,2012 -20130106_IND@BAL,2,30,50,IND,BAL,1,10,80,(:50) (Shotgun) A.Luck pass short left to T.Hilton pushed ob at IND 24 for 4 yards (C.Graham).,3,10,2012 -20130106_IND@BAL,2,30,45,IND,BAL,2,6,76,(:45) (Shotgun) A.Luck pass short middle to R.Wayne to IND 37 for 13 yards (B.Pollard).,3,10,2012 -20130106_IND@BAL,2,30,38,IND,BAL,1,10,63,(:38) (Shotgun) A.Luck pass short left to R.Wayne to BLT 43 for 20 yards (E.Reed).,3,10,2012 -20130106_IND@BAL,2,30,31,IND,BAL,1,10,43,(:31) (Shotgun) A.Luck pass incomplete short left to D.Avery (P.Kruger).,3,10,2012 -20130106_IND@BAL,2,30,29,IND,BAL,2,10,43,(:29) (Shotgun) A.Luck pass incomplete short right to R.Wayne [D.Ellerbe]. PENALTY on IND-A.Luck Intentional Grounding 16 yards enforced at BLT 43.,3,10,2012 -20130106_IND@BAL,2,30,12,IND,BAL,3,26,59,(:12) (Shotgun) A.Luck pass deep middle to T.Hilton to BLT 34 for 25 yards (E.Reed).,3,10,2012 -20130106_IND@BAL,2,30,3,IND,BAL,4,1,34,(:03) (Field Goal formation) A.Vinatieri 52 yard field goal is GOOD Center-M.Overton Holder-P.McAfee.,3,10,2012 -20130106_IND@BAL,3,30,0,IND,BAL,,,34,P.McAfee kicks 70 yards from IND 35 to BLT -5. J.Jones to BLT 18 for 23 yards (M.Harvey).,6,10,2012 -20130106_IND@BAL,3,29,56,BAL,IND,1,10,82,(14:56) B.Pierce left tackle to BLT 22 for 4 yards (C.Redding). Vonta Leach (#44) of BLT injured.,10,6,2012 -20130106_IND@BAL,3,29,31,BAL,IND,2,6,78,(14:31) J.Flacco sacked at BLT 9 for -13 yards (R.Mathis).,10,6,2012 -20130106_IND@BAL,3,28,54,BAL,IND,3,19,91,(13:54) (Shotgun) J.Flacco pass deep right to A.Boldin to IND 41 for 50 yards (A.Bethea). Penalty on IND-C.Vaughn Defensive Pass Interference declined.,10,6,2012 -20130106_IND@BAL,3,28,21,BAL,IND,1,10,41,(13:21) B.Pierce right tackle to IND 39 for 2 yards (A.Bethea).,10,6,2012 -20130106_IND@BAL,3,27,55,BAL,IND,2,8,39,(12:55) J.Flacco pass deep right to A.Boldin ran ob at IND 39 for no gain. PENALTY on BLT-A.Boldin Offensive Pass Interference 10 yards enforced at IND 39 - No Play.,10,6,2012 -20130106_IND@BAL,3,27,48,BAL,IND,2,18,49,(12:48) (Shotgun) J.Flacco pass incomplete short middle to R.Rice (R.Mathews).,10,6,2012 -20130106_IND@BAL,3,27,43,BAL,IND,3,18,49,(12:43) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Doss.,10,6,2012 -20130106_IND@BAL,3,27,36,BAL,IND,4,18,49,(12:36) (Punt formation) S.Koch punts 49 yards to end zone Center-M.Cox Touchback.,10,6,2012 -20130106_IND@BAL,3,27,27,IND,BAL,1,10,80,(12:27) PENALTY on IND-C.Fleener False Start 5 yards enforced at IND 20 - No Play.,6,10,2012 -20130106_IND@BAL,3,27,27,IND,BAL,1,15,85,(12:27) V.Ballard up the middle to IND 18 for 3 yards (R.Lewis).,6,10,2012 -20130106_IND@BAL,3,26,50,IND,BAL,2,12,82,(11:50) A.Luck pass short middle to R.Wayne to IND 33 for 15 yards (D.Ellerbe).,6,10,2012 -20130106_IND@BAL,3,26,11,IND,BAL,1,10,67,(11:11) V.Ballard left tackle to IND 33 for no gain (D.Ellerbe).,6,10,2012 -20130106_IND@BAL,3,25,27,IND,BAL,2,10,67,(10:27) A.Luck pass incomplete short right to D.Allen [T.Suggs].,6,10,2012 -20130106_IND@BAL,3,25,23,IND,BAL,3,10,67,(10:23) (Shotgun) A.Luck sacked at IND 25 for -8 yards (P.Kruger).,6,10,2012 -20130106_IND@BAL,3,24,57,IND,BAL,4,18,75,(9:57) (Punt formation) P.McAfee punts 50 yards to BLT 25 Center-M.Overton. J.Jones ran ob at BLT 25 for no gain.,6,10,2012 -20130106_IND@BAL,3,24,49,BAL,IND,1,10,75,(9:49) J.Flacco pass short left to A.Boldin pushed ob at BLT 35 for 10 yards (J.Hughes).,10,6,2012 -20130106_IND@BAL,3,24,33,BAL,IND,1,10,65,(9:33) (No Huddle) R.Rice right tackle to BLT 39 for 4 yards (L.Guy A.Bethea).,10,6,2012 -20130106_IND@BAL,3,24,4,BAL,IND,2,6,61,(9:04) (No Huddle) J.Flacco pass deep right to A.Boldin ran ob at IND 15 for 46 yards (C.Vaughn).,10,6,2012 -20130106_IND@BAL,3,23,38,BAL,IND,1,10,15,(8:38) (No Huddle Shotgun) J.Flacco pass incomplete short right to T.Smith.,10,6,2012 -20130106_IND@BAL,3,23,38,BAL,IND,2,10,15,(8:38) PENALTY on BLT-M.Oher False Start 5 yards enforced at IND 15 - No Play.,10,6,2012 -20130106_IND@BAL,3,23,33,BAL,IND,2,15,20,(8:33) (Shotgun) J.Flacco pass short right to D.Pitta for 20 yards TOUCHDOWN.,10,6,2012 -20130106_IND@BAL,3,23,33,BAL,IND,,,20,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,6,2012 -20130106_IND@BAL,3,23,33,BAL,IND,,,20,J.Tucker kicks 74 yards from BLT 35 to IND -9. D.Karim Touchback.,17,6,2012 -20130106_IND@BAL,3,23,26,IND,BAL,1,10,80,(8:26) A.Luck pass incomplete short right to D.Avery (C.Williams).,6,17,2012 -20130106_IND@BAL,3,23,20,IND,BAL,2,10,80,(8:20) V.Ballard right guard to IND 26 for 6 yards (R.Lewis M.Kemoeatu).,6,17,2012 -20130106_IND@BAL,3,22,39,IND,BAL,3,4,74,(7:39) (Shotgun) A.Luck pass short middle to L.Brazill to IND 43 for 17 yards (C.Brown).,6,17,2012 -20130106_IND@BAL,3,22,12,IND,BAL,1,10,57,(7:12) (No Huddle) A.Luck pass short left to D.Avery pushed ob at IND 48 for 5 yards (C.Williams).,6,17,2012 -20130106_IND@BAL,3,21,51,IND,BAL,2,5,52,(6:51) (No Huddle) PENALTY on IND-A.Castonzo False Start 5 yards enforced at IND 48 - No Play.,6,17,2012 -20130106_IND@BAL,3,21,30,IND,BAL,2,10,57,(6:30) V.Ballard left tackle to BLT 49 for 8 yards (C.Williams D.Ellerbe).,6,17,2012 -20130106_IND@BAL,3,20,47,IND,BAL,3,2,49,(5:47) (Shotgun) A.Luck scrambles up the middle to BLT 43 for 6 yards (E.Reed).,6,17,2012 -20130106_IND@BAL,3,20,9,IND,BAL,1,10,43,(5:09) (No Huddle) V.Ballard left tackle to BLT 41 for 2 yards (A.Jones).,6,17,2012 -20130106_IND@BAL,3,19,31,IND,BAL,2,8,41,(4:31) (Shotgun) A.Luck pass short right to T.Hilton to BLT 35 for 6 yards (C.Graham C.Brown).,6,17,2012 -20130106_IND@BAL,3,18,51,IND,BAL,3,2,35,(3:51) (Shotgun) A.Luck pass short right to V.Ballard to BLT 32 for 3 yards (B.Pollard) [T.Suggs].,6,17,2012 -20130106_IND@BAL,3,18,20,IND,BAL,1,10,32,(3:20) (No Huddle) V.Ballard left tackle to BLT 34 for -2 yards (D.Ellerbe).,6,17,2012 -20130106_IND@BAL,3,17,53,IND,BAL,2,12,34,(2:53) (No Huddle) A.Luck pass deep middle to R.Wayne to BLT 14 for 20 yards (E.Reed).,6,17,2012 -20130106_IND@BAL,3,17,11,IND,BAL,1,10,14,(2:11) (No Huddle) M.Moore left tackle to BLT 8 for 6 yards (R.Lewis).,6,17,2012 -20130106_IND@BAL,3,16,31,IND,BAL,2,4,8,(1:31) (No Huddle) M.Moore left guard to BLT 8 for no gain (A.Jones).,6,17,2012 -20130106_IND@BAL,3,15,48,IND,BAL,3,4,8,(:48) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,6,17,2012 -20130106_IND@BAL,3,15,44,IND,BAL,4,4,8,(:44) (Field Goal formation) A.Vinatieri 26 yard field goal is GOOD Center-M.Overton Holder-P.McAfee. Adam Vinatieri's 48th post-season field goal - now 18-for-18 in post-season FGA vs. BALT.,6,17,2012 -20130106_IND@BAL,3,15,44,IND,BAL,,,8,P.McAfee kicks 74 yards from IND 35 to BLT -9. J.Jones Touchback.,9,17,2012 -20130106_IND@BAL,3,15,40,BAL,IND,1,10,80,(:40) R.Rice right tackle to BLT 21 for 1 yard (C.Redding).,17,9,2012 -20130106_IND@BAL,4,15,0,BAL,IND,2,9,79,(15:00) J.Flacco pass deep right to A.Boldin to BLT 42 for 21 yards (C.Vaughn A.Bethea).,17,9,2012 -20130106_IND@BAL,4,14,27,BAL,IND,1,10,58,(14:27) (No Huddle) R.Rice left end to IND 40 for 18 yards (J.Lefeged). FUMBLES (J.Lefeged) RECOVERED by IND-P.Angerer at IND 29. P.Angerer to IND 29 for no gain (M.Birk).,17,9,2012 -20130106_IND@BAL,4,14,15,IND,BAL,1,10,71,(14:15) V.Ballard left end to IND 34 for 5 yards (C.Graham; A.Jones).,9,17,2012 -20130106_IND@BAL,4,13,46,IND,BAL,2,5,66,(13:46) (No Huddle) A.Luck pass short right to R.Wayne to BLT 47 for 19 yards (C.Graham).,9,17,2012 -20130106_IND@BAL,4,13,21,IND,BAL,1,10,47,(13:21) V.Ballard left guard ran ob at BLT 23 for 24 yards (E.Reed).,9,17,2012 -20130106_IND@BAL,4,13,3,IND,BAL,1,10,23,(13:03) (No Huddle) V.Ballard right guard to BLT 24 for -1 yards (C.Upshaw D.Tyson). PENALTY on BLT-T.Cody Defensive 12 On-field 5 yards enforced at BLT 23 - No Play.,9,17,2012 -20130106_IND@BAL,4,12,52,IND,BAL,1,5,18,(12:52) (No Huddle) PENALTY on IND-M.McGlynn False Start 5 yards enforced at BLT 18 - No Play.,9,17,2012 -20130106_IND@BAL,4,12,40,IND,BAL,1,10,23,(12:40) A.Luck pass incomplete deep left to R.Wayne [P.Kruger].,9,17,2012 -20130106_IND@BAL,4,12,34,IND,BAL,2,10,23,(12:34) V.Ballard right tackle to BLT 22 for 1 yard (H.Ngata P.McPhee).,9,17,2012 -20130106_IND@BAL,4,11,53,IND,BAL,3,9,22,(11:53) (Shotgun) A.Luck pass incomplete short right to D.Avery.,9,17,2012 -20130106_IND@BAL,4,11,49,IND,BAL,4,9,22,(11:49) (Field Goal formation) A.Vinatieri 40 yard field goal is No Good Wide Right Center-M.Overton Holder-P.McAfee.,9,17,2012 -20130106_IND@BAL,4,11,44,BAL,IND,1,10,70,(11:44) J.Flacco pass short right to T.Smith to BLT 39 for 9 yards (D.Butler).,17,9,2012 -20130106_IND@BAL,4,11,12,BAL,IND,2,1,61,(11:12) (No Huddle) B.Pierce right tackle to BLT 39 for no gain (R.Mathis C.Redding).,17,9,2012 -20130106_IND@BAL,4,10,33,BAL,IND,3,1,61,(10:33) B.Pierce right end to IND 18 for 43 yards (D.Butler A.Bethea).,17,9,2012 -20130106_IND@BAL,4,9,59,BAL,IND,1,10,18,(9:59) (No Huddle) B.Pierce left end to IND 18 for no gain (D.Butler).,17,9,2012 -20130106_IND@BAL,4,9,22,BAL,IND,2,10,18,(9:22) (No Huddle Shotgun) J.Flacco pass deep right to A.Boldin for 18 yards TOUCHDOWN.,17,9,2012 -20130106_IND@BAL,4,9,22,BAL,IND,,,18,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,9,2012 -20130106_IND@BAL,4,9,22,BAL,IND,,,18,J.Tucker kicks 70 yards from BLT 35 to IND -5. D.Karim Touchback.,24,9,2012 -20130106_IND@BAL,4,9,14,IND,BAL,1,10,80,(9:14) (Shotgun) A.Luck pass short right to D.Allen to IND 29 for 9 yards (R.Lewis).,9,24,2012 -20130106_IND@BAL,4,8,45,IND,BAL,2,1,71,(8:45) (No Huddle Shotgun) A.Luck pass short left to D.Allen to IND 36 for 7 yards (C.Graham).,9,24,2012 -20130106_IND@BAL,4,8,20,IND,BAL,1,10,64,(8:20) (No Huddle Shotgun) A.Luck pass incomplete short right to T.Hilton.,9,24,2012 -20130106_IND@BAL,4,8,20,IND,BAL,2,10,64,(8:20) (Shotgun) PENALTY on BLT-P.Kruger Neutral Zone Infraction 5 yards enforced at IND 36 - No Play.,9,24,2012 -20130106_IND@BAL,4,8,15,IND,BAL,2,5,59,(8:15) (Shotgun) V.Ballard left guard to IND 43 for 2 yards (D.Ellerbe C.Williams). BLT-D.Ellerbe was injured during the play.,9,24,2012 -20130106_IND@BAL,4,7,48,IND,BAL,3,3,57,(7:48) (Shotgun) A.Luck pass short middle to D.Avery to IND 50 for 7 yards (R.Lewis).,9,24,2012 -20130106_IND@BAL,4,7,23,IND,BAL,1,10,50,(7:23) (No Huddle Shotgun) A.Luck pass short right to R.Wayne to BLT 45 for 5 yards (C.Brown).,9,24,2012 -20130106_IND@BAL,4,6,54,IND,BAL,2,5,45,(6:54) (No Huddle Shotgun) A.Luck pass incomplete short right to D.Avery (C.Brown B.Pollard). Indianapolis challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),9,24,2012 -20130106_IND@BAL,4,6,34,IND,BAL,3,5,45,(6:34) (Shotgun) A.Luck scrambles right end ran ob at BLT 27 for 18 yards (B.Ayanbadejo).,9,24,2012 -20130106_IND@BAL,4,6,17,IND,BAL,1,10,27,(6:17) (Shotgun) A.Luck pass incomplete short right to R.Wayne.,9,24,2012 -20130106_IND@BAL,4,6,11,IND,BAL,2,10,27,(6:11) (Shotgun) A.Luck pass short left to T.Hilton to BLT 18 for 9 yards (B.Ayanbadejo).,9,24,2012 -20130106_IND@BAL,4,5,39,IND,BAL,3,1,18,(5:39) (Shotgun) A.Luck pass incomplete short left to D.Allen.,9,24,2012 -20130106_IND@BAL,4,5,35,IND,BAL,4,1,18,(5:35) (Shotgun) A.Luck pass short left intended for R.Wayne INTERCEPTED by C.Williams (C.Graham) at BLT 15. C.Williams to IND 44 for 41 yards (A.Luck).,9,24,2012 -20130106_IND@BAL,4,5,24,BAL,IND,1,10,44,(5:24) R.Rice right end to IND 39 for 5 yards (D.Butler).,24,9,2012 -20130106_IND@BAL,4,4,40,BAL,IND,2,5,39,(4:40) R.Rice right guard to IND 38 for 1 yard (C.Redding).,24,9,2012 -20130106_IND@BAL,4,4,0,BAL,IND,3,4,38,(4:00) (Shotgun) J.Flacco pass incomplete short right to R.Rice.,24,9,2012 -20130106_IND@BAL,4,3,56,BAL,IND,4,4,38,(3:56) (Punt formation) S.Koch punts 28 yards to IND 10 Center-M.Cox downed by BLT-J.Bynes.,24,9,2012 -20130106_IND@BAL,4,3,46,IND,BAL,1,10,90,(3:46) (Shotgun) A.Luck pass incomplete deep right to R.Wayne (B.Pollard). PENALTY on BLT-B.Pollard Unnecessary Roughness 15 yards enforced at IND 10 - No Play.,9,24,2012 -20130106_IND@BAL,4,3,37,IND,BAL,1,10,75,(3:37) A.Luck pass incomplete short right to R.Wayne [P.Kruger].,9,24,2012 -20130106_IND@BAL,4,3,33,IND,BAL,2,10,75,(3:33) (Shotgun) A.Luck pass incomplete deep right to T.Hilton. PENALTY on BLT-B.Pollard Taunting 15 yards enforced at IND 25.,9,24,2012 -20130106_IND@BAL,4,3,33,IND,BAL,1,10,60,(3:33) (Shotgun) A.Luck pass short left to T.Hilton to IND 46 for 6 yards.,9,24,2012 -20130106_IND@BAL,4,3,17,IND,BAL,2,4,54,(3:17) (No Huddle Shotgun) A.Luck pass incomplete short right to T.Hilton.,9,24,2012 -20130106_IND@BAL,4,3,12,IND,BAL,3,4,54,(3:12) (Shotgun) A.Luck pass short middle to C.Fleener to BLT 42 for 12 yards (R.Lewis).,9,24,2012 -20130106_IND@BAL,4,2,52,IND,BAL,1,10,42,(2:52) (No Huddle Shotgun) A.Luck pass incomplete short right to R.Wayne (C.Graham).,9,24,2012 -20130106_IND@BAL,4,2,47,IND,BAL,2,10,42,(2:47) (Shotgun) A.Luck pass short right to R.Wayne to BLT 37 for 5 yards (B.Pollard).,9,24,2012 -20130106_IND@BAL,4,2,20,IND,BAL,3,5,37,(2:20) (No Huddle Shotgun) A.Luck pass incomplete deep left to L.Brazill.,9,24,2012 -20130106_IND@BAL,4,2,14,IND,BAL,4,5,37,(2:14) (Shotgun) A.Luck pass incomplete short right to V.Ballard.,9,24,2012 -20130106_IND@BAL,4,2,10,BAL,IND,1,10,63,(2:10) B.Pierce left tackle to BLT 40 for 3 yards (C.Redding R.Mathis).,24,9,2012 -20130106_IND@BAL,4,2,3,BAL,IND,2,7,60,(2:03) B.Pierce left tackle to BLT 41 for 1 yard (A.Bethea L.Guy).,24,9,2012 -20130106_IND@BAL,4,1,57,BAL,IND,3,6,59,(1:57) B.Pierce right end to IND 46 for 13 yards (P.Angerer).,24,9,2012 -20130106_IND@BAL,4,1,36,BAL,IND,1,10,46,(1:36) J.Flacco kneels to IND 47 for -1 yards.,24,9,2012 -20130106_IND@BAL,4,1,36,BAL,IND,2,11,47,(1:36) J.Flacco kneels to IND 48 for -1 yards.,24,9,2012 -20130106_IND@BAL,4,0,31,BAL,IND,3,12,48,(:31) Ray Lewis (#52) reports as eligible receiver. J.Flacco kneels to IND 49 for -1 yards.,24,9,2012 -20130106_IND@BAL,4,0,31,BAL,IND,,,48,                      ,24,9,2012 -20130106_SEA@WAS,1,0,0,SEA,WAS,,,48,S.Hauschka kicks 62 yards from SEA 35 to WAS 3. N.Paul to WAS 20 for 17 yards (M.Morgan).,0,0,2012 -20130106_SEA@WAS,1,59,55,WAS,SEA,1,10,80,(14:55) A.Morris right end pushed ob at WAS 28 for 8 yards (B.Wagner; C.Clemons).,0,0,2012 -20130106_SEA@WAS,1,59,7,WAS,SEA,2,2,72,(14:07) R.Griffin pass short middle to P.Garcon to WAS 37 for 9 yards (B.Browner).,0,0,2012 -20130106_SEA@WAS,1,58,33,WAS,SEA,1,10,63,(13:33) (Shotgun) A.Morris right tackle ran ob at WAS 46 for 9 yards (B.Mebane; E.Thomas).,0,0,2012 -20130106_SEA@WAS,1,57,51,WAS,SEA,2,1,54,(12:51) (Shotgun) R.Griffin left end to WAS 49 for 3 yards (B.Browner).,0,0,2012 -20130106_SEA@WAS,1,57,10,WAS,SEA,1,10,51,(12:10) (Shotgun) R.Griffin pass deep left to P.Garcon pushed ob at SEA 21 for 30 yards (E.Thomas; K.Wright).,0,0,2012 -20130106_SEA@WAS,1,56,41,WAS,SEA,1,10,21,(11:41) (Shotgun) A.Morris right end to SEA 3 for 18 yards (K.Chancellor; K.Wright).,0,0,2012 -20130106_SEA@WAS,1,55,52,WAS,SEA,1,3,3,(10:52) (Shotgun) A.Morris left end to SEA 4 for -1 yards (E.Thomas; A.Branch).,0,0,2012 -20130106_SEA@WAS,1,55,4,WAS,SEA,2,4,4,(10:04) R.Griffin pass incomplete short middle to J.Morgan (K.Wright).,0,0,2012 -20130106_SEA@WAS,1,55,0,WAS,SEA,3,4,4,(10:00) (Shotgun) R.Griffin pass short middle to E.Royster for 4 yards TOUCHDOWN.,0,0,2012 -20130106_SEA@WAS,1,55,0,WAS,SEA,,,4,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20130106_SEA@WAS,1,55,0,WAS,SEA,,,4,K.Forbath kicks 61 yards from WAS 35 to SEA 4. L.Washington to SEA 28 for 24 yards (C.Griffin; D.Hall).,7,0,2012 -20130106_SEA@WAS,1,54,51,SEA,WAS,1,10,72,(9:51) R.Wilson pass incomplete deep right to D.Baldwin.,0,7,2012 -20130106_SEA@WAS,1,54,44,SEA,WAS,2,10,72,(9:44) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 36 for 8 yards (Mad.Williams).,0,7,2012 -20130106_SEA@WAS,1,54,3,SEA,WAS,3,2,64,(9:03) (Shotgun) R.Wilson sacked at SEA 26 for -10 yards (sack split by S.Bowen and L.Fletcher).,0,7,2012 -20130106_SEA@WAS,1,54,3,SEA,WAS,4,12,74,(9:03) (Punt formation) J.Ryan punts 40 yards to WAS 34 Center-C.Gresham. R.Crawford to WAS 46 for 12 yards (C.Gresham; M.Robinson).,0,7,2012 -20130106_SEA@WAS,1,53,24,WAS,SEA,1,10,54,(8:24) R.Griffin scrambles right end pushed ob at WAS 47 for 1 yard (B.Mebane).,7,0,2012 -20130106_SEA@WAS,1,52,46,WAS,SEA,2,9,53,(7:46) A.Morris left tackle to SEA 47 for 6 yards (K.Wright).,7,0,2012 -20130106_SEA@WAS,1,52,2,WAS,SEA,3,3,47,(7:02) (Shotgun) R.Griffin pass short right to S.Moss to SEA 37 for 10 yards (M.Trufant K.Chancellor).,7,0,2012 -20130106_SEA@WAS,1,51,21,WAS,SEA,1,10,37,(6:21) R.Griffin pass incomplete short left to D.Young.,7,0,2012 -20130106_SEA@WAS,1,51,16,WAS,SEA,2,10,37,(6:16) (Shotgun) PENALTY on SEA-C.McDonald Neutral Zone Infraction 5 yards enforced at SEA 37 - No Play.,7,0,2012 -20130106_SEA@WAS,1,51,16,WAS,SEA,2,5,32,(6:16) (Shotgun) R.Griffin right end to SEA 24 for 8 yards (E.Thomas; L.Hill).,7,0,2012 -20130106_SEA@WAS,1,50,33,WAS,SEA,1,10,24,(5:33) (Shotgun) A.Morris left end to SEA 21 for 3 yards (B.Wagner).,7,0,2012 -20130106_SEA@WAS,1,49,53,WAS,SEA,2,7,21,(4:53) (Shotgun) A.Morris right end to SEA 15 for 6 yards (M.Smith B.Mebane).,7,0,2012 -20130106_SEA@WAS,1,49,10,WAS,SEA,3,1,15,(4:10) R.Griffin pass short right to L.Paulsen to SEA 4 for 11 yards (M.Smith).,7,0,2012 -20130106_SEA@WAS,1,48,23,WAS,SEA,1,4,4,(3:23) R.Griffin pass incomplete short right to P.Garcon (B.Browner).,7,0,2012 -20130106_SEA@WAS,1,48,15,WAS,SEA,2,4,4,(3:15) (Shotgun) A.Morris up the middle to SEA 4 for no gain (C.Clemons; K.Wright).,7,0,2012 -20130106_SEA@WAS,1,47,31,WAS,SEA,3,4,4,(2:31) R.Griffin pass short middle to L.Paulsen for 4 yards TOUCHDOWN. PENALTY on SEA-B.Irvin Unnecessary Roughness 15 yards enforced between downs.,7,0,2012 -20130106_SEA@WAS,1,47,31,WAS,SEA,,,4,K.Forbath extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,7,0,2012 -20130106_SEA@WAS,1,47,31,WAS,SEA,,,4,K.Forbath kicks 50 yards from 50 to end zone Touchback.,14,0,2012 -20130106_SEA@WAS,1,47,26,SEA,WAS,1,10,80,(2:26) M.Lynch left tackle to SEA 24 for 4 yards (R.Kerrigan).,0,14,2012 -20130106_SEA@WAS,1,46,43,SEA,WAS,2,6,76,(1:43) (Shotgun) R.Wilson sacked at SEA 18 for -6 yards (P.Riley).,0,14,2012 -20130106_SEA@WAS,1,46,7,SEA,WAS,3,12,82,(1:07) (Shotgun) R.Wilson pass short right to Z.Miller to SEA 30 for 12 yards (D.Hall; J.Wilson).,0,14,2012 -20130106_SEA@WAS,1,45,27,SEA,WAS,1,10,70,(:27) M.Lynch right end to SEA 31 for 1 yard (J.Jenkins; K.Golston).,0,14,2012 -20130106_SEA@WAS,2,45,0,SEA,WAS,2,9,69,(15:00) (Shotgun) R.Wilson right guard to 50 for 19 yards (L.Fletcher).,0,14,2012 -20130106_SEA@WAS,2,44,20,SEA,WAS,1,10,50,(14:20) (Shotgun) R.Wilson pass short left to M.Lynch pushed ob at WAS 41 for 9 yards (C.Griffin; L.Alexander).,0,14,2012 -20130106_SEA@WAS,2,43,44,SEA,WAS,2,1,41,(13:44) R.Turbin left tackle to WAS 39 for 2 yards (L.Fletcher; J.Jenkins).,0,14,2012 -20130106_SEA@WAS,2,43,6,SEA,WAS,1,10,39,(13:06) (Shotgun) R.Wilson pass deep right to S.Rice pushed ob at WAS 12 for 27 yards (D.Hall; C.Griffin).,0,14,2012 -20130106_SEA@WAS,2,42,57,SEA,WAS,1,10,12,(12:57) R.Turbin right end to WAS 9 for 3 yards (R.Jackson; L.Fletcher).,0,14,2012 -20130106_SEA@WAS,2,42,24,SEA,WAS,2,7,9,(12:24) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (R.Doughty).,0,14,2012 -20130106_SEA@WAS,2,42,13,SEA,WAS,3,7,9,(12:13) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at WAS 9 - No Play.,0,14,2012 -20130106_SEA@WAS,2,42,13,SEA,WAS,3,12,14,(12:13) (Shotgun) R.Wilson pass incomplete short middle to S.Rice.,0,14,2012 -20130106_SEA@WAS,2,42,9,SEA,WAS,4,12,14,(12:09) S.Hauschka 32 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,14,2012 -20130106_SEA@WAS,2,42,9,SEA,WAS,,,14,S.Hauschka kicks 59 yards from SEA 35 to WAS 6. N.Paul pushed ob at WAS 23 for 17 yards (M.Smith).,3,14,2012 -20130106_SEA@WAS,2,41,59,WAS,SEA,1,10,77,(11:59) (Shotgun) R.Griffin sacked at WAS 19 for -4 yards (C.Clemons). FUMBLES (C.Clemons) recovered by WAS-C.Chester at WAS 19. C.Chester to WAS 19 for no gain (A.Branch). PENALTY on SEA-B.Browner Illegal Contact 5 yards enforced at WAS 23 - No Play.,14,3,2012 -20130106_SEA@WAS,2,41,30,WAS,SEA,1,10,72,(11:30) (Shotgun) A.Morris left end to WAS 35 for 7 yards (K.Wright; H.Farwell).,14,3,2012 -20130106_SEA@WAS,2,40,50,WAS,SEA,2,3,65,(10:50) (Shotgun) A.Morris right end to WAS 36 for 1 yard (B.Wagner; R.Bryant).,14,3,2012 -20130106_SEA@WAS,2,40,2,WAS,SEA,3,2,64,(10:02) (Shotgun) R.Griffin pass incomplete short right to L.Paulsen.,14,3,2012 -20130106_SEA@WAS,2,39,54,WAS,SEA,4,2,64,(9:54) S.Rocca punts 37 yards to SEA 27 Center-N.Sundberg fair catch by L.Washington.,14,3,2012 -20130106_SEA@WAS,2,39,46,SEA,WAS,1,10,73,(9:46) M.Lynch left tackle to SEA 35 for 8 yards (Mad.Williams L.Fletcher).,3,14,2012 -20130106_SEA@WAS,2,39,3,SEA,WAS,2,2,65,(9:03) M.Lynch left guard to SEA 40 for 5 yards (R.Kerrigan; L.Fletcher).,3,14,2012 -20130106_SEA@WAS,2,38,23,SEA,WAS,1,10,60,(8:23) (Shotgun) R.Wilson scrambles right end pushed ob at SEA 44 for 4 yards (P.Riley). PENALTY on WAS-R.Jackson Defensive Offside 5 yards enforced at SEA 40 - No Play.,3,14,2012 -20130106_SEA@WAS,2,37,58,SEA,WAS,1,5,55,(7:58) (Shotgun) R.Wilson to SEA 44 for -1 yards. FUMBLES recovered by SEA-M.Lynch at SEA 44. M.Lynch pushed ob at WAS 36 for 20 yards (J.Pugh).,3,14,2012 -20130106_SEA@WAS,2,37,25,SEA,WAS,1,10,36,(7:25) R.Turbin left end to WAS 35 for 1 yard (P.Riley).,3,14,2012 -20130106_SEA@WAS,2,36,45,SEA,WAS,2,9,35,(6:45) R.Wilson pass short right to M.Robinson to WAS 16 for 19 yards (R.Doughty).,3,14,2012 -20130106_SEA@WAS,2,36,0,SEA,WAS,1,10,16,(6:00) (Shotgun) R.Wilson right end to WAS 5 for 11 yards (Mad.Williams D.Hall).,3,14,2012 -20130106_SEA@WAS,2,35,20,SEA,WAS,1,5,5,(5:20) M.Lynch up the middle to WAS 4 for 1 yard (R.Doughty).,3,14,2012 -20130106_SEA@WAS,2,34,45,SEA,WAS,2,4,4,(4:45) R.Wilson pass short left to M.Robinson for 4 yards TOUCHDOWN.,3,14,2012 -20130106_SEA@WAS,2,34,45,SEA,WAS,,,4,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,14,2012 -20130106_SEA@WAS,2,34,45,SEA,WAS,,,4,J.Ryan kicks 58 yards from SEA 35 to WAS 7. N.Paul to WAS 26 for 19 yards (J.Kearse).,10,14,2012 -20130106_SEA@WAS,2,34,33,WAS,SEA,1,10,74,(4:33) (Shotgun) A.Morris right end to WAS 29 for 3 yards (B.Wagner; C.McDonald).,14,10,2012 -20130106_SEA@WAS,2,33,54,WAS,SEA,2,7,71,(3:54) (Shotgun) R.Griffin pass deep left intended for P.Garcon INTERCEPTED by E.Thomas at SEA 24. E.Thomas to SEA 26 for 2 yards (J.Morgan).,14,10,2012 -20130106_SEA@WAS,2,33,36,SEA,WAS,1,10,74,(3:36) R.Wilson pass incomplete deep middle to S.Rice (L.Fletcher).,10,14,2012 -20130106_SEA@WAS,2,33,29,SEA,WAS,2,10,74,(3:29) (Shotgun) R.Wilson right tackle to SEA 31 for 5 yards (L.Fletcher).,10,14,2012 -20130106_SEA@WAS,2,32,47,SEA,WAS,3,5,69,(2:47) (Shotgun) R.Wilson pass short middle to D.Baldwin to SEA 37 for 6 yards (P.Riley) [J.Wilson].,10,14,2012 -20130106_SEA@WAS,2,32,12,SEA,WAS,1,10,63,(2:12) R.Wilson pass short middle to D.Baldwin to WAS 30 for 33 yards (D.Hall).,10,14,2012 -20130106_SEA@WAS,2,32,0,SEA,WAS,1,10,30,(2:00) M.Lynch up the middle to WAS 24 for 6 yards (R.Jackson; J.Jenkins).,10,14,2012 -20130106_SEA@WAS,2,31,23,SEA,WAS,2,4,24,(1:23) M.Lynch left guard to WAS 19 for 5 yards (R.Jackson; R.Doughty).,10,14,2012 -20130106_SEA@WAS,2,30,44,SEA,WAS,1,10,19,(:44) R.Wilson pass incomplete short middle to A.McCoy.,10,14,2012 -20130106_SEA@WAS,2,30,39,SEA,WAS,2,10,19,(:39) (Shotgun) M.Lynch left end to WAS 16 for 3 yards (L.Fletcher).,10,14,2012 -20130106_SEA@WAS,2,30,32,SEA,WAS,3,7,16,(:32) (Shotgun) R.Wilson pass short middle to G.Tate to WAS 11 for 5 yards (D.Hall).,10,14,2012 -20130106_SEA@WAS,2,30,4,SEA,WAS,4,2,11,(:04) S.Hauschka 29 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,14,2012 -20130106_SEA@WAS,3,30,0,WAS,SEA,,,11,K.Forbath kicks 57 yards from WAS 35 to SEA 8. L.Washington to SEA 30 for 22 yards (C.Wilson).,14,13,2012 -20130106_SEA@WAS,3,29,54,SEA,WAS,1,10,70,(14:54) M.Lynch right end to WAS 44 for 26 yards (L.Fletcher).,13,14,2012 -20130106_SEA@WAS,3,29,17,SEA,WAS,1,10,44,(14:17) R.Wilson pass short middle to R.Turbin to WAS 38 for 6 yards (P.Riley D.Hall).,13,14,2012 -20130106_SEA@WAS,3,28,37,SEA,WAS,2,4,38,(13:37) R.Turbin left tackle to WAS 35 for 3 yards (P.Riley).,13,14,2012 -20130106_SEA@WAS,3,27,49,SEA,WAS,3,1,35,(12:49) M.Robinson right tackle to WAS 32 for 3 yards (K.Golston; R.Doughty).,13,14,2012 -20130106_SEA@WAS,3,27,9,SEA,WAS,1,10,32,(12:09) R.Wilson pass short left to G.Tate pushed ob at WAS 17 for 15 yards (J.Wilson).,13,14,2012 -20130106_SEA@WAS,3,26,42,SEA,WAS,1,10,22,(11:42) (Shotgun) M.Lynch up the middle to WAS 2 for 20 yards (J.Wilson; R.Doughty).,13,14,2012 -20130106_SEA@WAS,3,26,6,SEA,WAS,1,2,2,(11:06) M.Lynch right tackle to WAS 1 for 1 yard (L.Fletcher; R.Kerrigan).,13,14,2012 -20130106_SEA@WAS,3,25,31,SEA,WAS,2,1,1,(10:31) M.Lynch left tackle to WAS 2 for -1 yards (B.Cofield). FUMBLES (B.Cofield) RECOVERED by WAS-J.Jenkins at WAS 2. J.Jenkins to WAS 2 for no gain (G.Tate).,13,14,2012 -20130106_SEA@WAS,3,25,26,WAS,SEA,1,10,97,(10:26) D.Young right guard to WAS 6 for 3 yards (B.Wagner; K.Chancellor).,14,13,2012 -20130106_SEA@WAS,3,24,48,WAS,SEA,2,7,94,(9:48) R.Griffin pass short right to P.Garcon to WAS 9 for 3 yards (A.Branch).,14,13,2012 -20130106_SEA@WAS,3,24,2,WAS,SEA,3,4,91,(9:02) (Shotgun) R.Griffin pass short left to S.Moss to WAS 14 for 5 yards (L.Hill; B.Browner). SEA-C.Clemons was injured during the play.,14,13,2012 -20130106_SEA@WAS,3,23,35,WAS,SEA,1,10,86,(8:35) (Shotgun) A.Morris left end to WAS 20 for 6 yards (K.Chancellor; B.Mebane).,14,13,2012 -20130106_SEA@WAS,3,22,56,WAS,SEA,2,4,80,(7:56) (Shotgun) A.Morris right end to WAS 26 for 6 yards (K.Wright).,14,13,2012 -20130106_SEA@WAS,3,22,13,WAS,SEA,1,10,74,(7:13) (Shotgun) R.Griffin pass short left to J.Morgan to WAS 26 for no gain (B.Browner).,14,13,2012 -20130106_SEA@WAS,3,21,32,WAS,SEA,2,10,74,(6:32) (Shotgun) A.Morris right end to WAS 26 for no gain (A.Branch).,14,13,2012 -20130106_SEA@WAS,3,20,48,WAS,SEA,3,10,74,(5:48) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,14,13,2012 -20130106_SEA@WAS,3,20,45,WAS,SEA,4,10,74,(5:45) S.Rocca punts 50 yards to SEA 24 Center-N.Sundberg. L.Washington to SEA 30 for 6 yards (R.Doughty; N.Paul).,14,13,2012 -20130106_SEA@WAS,3,20,31,SEA,WAS,1,10,70,(5:31) R.Wilson pass short left to G.Tate pushed ob at SEA 38 for 8 yards (L.Fletcher).,13,14,2012 -20130106_SEA@WAS,3,19,50,SEA,WAS,2,2,62,(4:50) R.Wilson sacked at SEA 37 for -1 yards (R.Doughty).,13,14,2012 -20130106_SEA@WAS,3,19,9,SEA,WAS,3,3,63,(4:09) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin. PENALTY on WAS-D.Hall Defensive Holding 5 yards enforced at SEA 37 - No Play.,13,14,2012 -20130106_SEA@WAS,3,19,6,SEA,WAS,1,10,58,(4:06) R.Wilson scrambles up the middle to WAS 30 for 28 yards (J.Wilson).,13,14,2012 -20130106_SEA@WAS,3,18,19,SEA,WAS,1,10,30,(3:19) M.Lynch left tackle to WAS 28 for 2 yards (D.Worthington; R.Doughty).,13,14,2012 -20130106_SEA@WAS,3,17,40,SEA,WAS,2,8,28,(2:40) R.Wilson pass incomplete deep right to D.Baldwin.,13,14,2012 -20130106_SEA@WAS,3,17,34,SEA,WAS,3,8,28,(2:34) (Shotgun) R.Wilson sacked at WAS 37 for -9 yards (J.Wilson).,13,14,2012 -20130106_SEA@WAS,3,16,35,SEA,WAS,4,17,37,(1:35) J.Ryan punts 26 yards to WAS 11 Center-C.Gresham downed by SEA-M.Robinson. PENALTY on WAS-B.Kehl Offensive Holding 5 yards enforced at WAS 11.,13,14,2012 -20130106_SEA@WAS,3,16,24,WAS,SEA,1,10,94,(1:24) (Shotgun) R.Griffin sacked at WAS 2 for -4 yards (A.Branch).,14,13,2012 -20130106_SEA@WAS,3,15,45,WAS,SEA,2,14,98,(:45) (Shotgun) R.Griffin pass incomplete short left to J.Morgan.,14,13,2012 -20130106_SEA@WAS,3,15,40,WAS,SEA,3,14,98,(:40) (Shotgun) R.Griffin pass short middle to P.Garcon to WAS 10 for 8 yards (B.Wagner).,14,13,2012 -20130106_SEA@WAS,3,15,12,WAS,SEA,4,6,90,(:12) S.Rocca punts 53 yards to SEA 37 Center-N.Sundberg out of bounds.,14,13,2012 -20130106_SEA@WAS,3,15,4,SEA,WAS,1,10,63,(:04) M.Lynch right guard to SEA 40 for 3 yards (R.Doughty).,13,14,2012 -20130106_SEA@WAS,4,15,0,SEA,WAS,2,7,60,(15:00) R.Wilson scrambles right end to SEA 45 for 5 yards (S.Bowen; L.Fletcher).,13,14,2012 -20130106_SEA@WAS,4,14,13,SEA,WAS,3,2,55,(14:13) R.Wilson sacked at SEA 40 for -5 yards (R.Doughty).,13,14,2012 -20130106_SEA@WAS,4,13,28,SEA,WAS,4,7,60,(13:28) J.Ryan punts 38 yards to WAS 22 Center-C.Gresham. R.Crawford to WAS 22 for no gain (C.Maragos).,13,14,2012 -20130106_SEA@WAS,4,13,18,WAS,SEA,1,10,78,(13:18) (Shotgun) R.Griffin left end pushed ob at WAS 31 for 9 yards (K.Wright).,14,13,2012 -20130106_SEA@WAS,4,12,45,WAS,SEA,2,1,69,(12:45) A.Morris right guard to WAS 36 for 5 yards (K.Chancellor; A.Branch).,14,13,2012 -20130106_SEA@WAS,4,12,0,WAS,SEA,1,10,64,(12:00) (Shotgun) R.Griffin pass incomplete deep right to J.Morgan.,14,13,2012 -20130106_SEA@WAS,4,11,54,WAS,SEA,2,10,64,(11:54) (Shotgun) A.Morris up the middle to WAS 39 for 3 yards (L.Hill; R.Bryant).,14,13,2012 -20130106_SEA@WAS,4,11,12,WAS,SEA,3,7,61,(11:12) (Shotgun) R.Griffin pass incomplete short middle to L.Hankerson.,14,13,2012 -20130106_SEA@WAS,4,11,7,WAS,SEA,4,7,61,(11:07) S.Rocca punts 53 yards to SEA 8 Center-N.Sundberg. L.Washington to SEA 21 for 13 yards (J.Murphy; J.Wilson).,14,13,2012 -20130106_SEA@WAS,4,10,53,SEA,WAS,1,10,79,(10:53) R.Wilson pass short middle to G.Tate to SEA 28 for 7 yards (J.Jenkins; L.Fletcher).,13,14,2012 -20130106_SEA@WAS,4,10,17,SEA,WAS,2,3,72,(10:17) (Shotgun) M.Lynch right guard to SEA 46 for 18 yards (R.Jackson; C.Baker).,13,14,2012 -20130106_SEA@WAS,4,9,35,SEA,WAS,1,10,54,(9:35) (Shotgun) R.Wilson right end to SEA 46 for no gain (R.Doughty).,13,14,2012 -20130106_SEA@WAS,4,9,0,SEA,WAS,2,10,54,(9:00) (Shotgun) R.Wilson pass incomplete short right to Z.Miller.,13,14,2012 -20130106_SEA@WAS,4,8,53,SEA,WAS,3,10,54,(8:53) (Shotgun) R.Wilson pass short middle to Z.Miller to WAS 32 for 22 yards (L.Alexander).,13,14,2012 -20130106_SEA@WAS,4,8,7,SEA,WAS,1,10,32,(8:07) (Shotgun) R.Wilson pass incomplete deep right to S.Rice.,13,14,2012 -20130106_SEA@WAS,4,7,59,SEA,WAS,2,10,32,(7:59) (Shotgun) M.Lynch right end to WAS 27 for 5 yards (R.Kerrigan L.Fletcher).,13,14,2012 -20130106_SEA@WAS,4,7,20,SEA,WAS,3,5,27,(7:20) (Shotgun) M.Lynch right guard for 27 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,13,14,2012 -20130106_SEA@WAS,4,7,20,SEA,WAS,,,27,(Pass formation) TWO-POINT CONVERSION ATTEMPT. R.Wilson pass to Z.Miller is complete. ATTEMPT SUCCEEDS.,13,14,2012 -20130106_SEA@WAS,4,7,20,SEA,WAS,,,27,J.Ryan kicks 63 yards from SEA 35 to WAS 2. N.Paul to WAS 24 for 22 yards (R.Turbin H.Farwell).,21,14,2012 -20130106_SEA@WAS,4,7,3,WAS,SEA,1,10,76,(7:03) R.Griffin sacked at WAS 12 for -12 yards (B.Irvin).,14,21,2012 -20130106_SEA@WAS,4,6,25,SEA,WAS,2,22,95,(6:25) (Shotgun) R.Griffin FUMBLES (Aborted) at WAS 5 RECOVERED by SEA-C.McDonald at WAS 5. C.McDonald to WAS 5 for no gain (J.LeRibeus). WAS-R.Griffin was injured during the play. His return is Doubtful. RGIII knee,21,14,2012 -20130106_SEA@WAS,4,6,19,SEA,WAS,1,5,5,(6:19) (Shotgun) M.Lynch right tackle to WAS 4 for 1 yard (R.Jackson).,21,14,2012 -20130106_SEA@WAS,4,5,43,SEA,WAS,2,4,4,(5:43) (Shotgun) R.Wilson pass incomplete short right to Z.Miller (Mad.Williams).,21,14,2012 -20130106_SEA@WAS,4,5,38,SEA,WAS,3,4,4,(5:38) (Shotgun) R.Wilson pass incomplete short middle to G.Tate (D.Hall).,21,14,2012 -20130106_SEA@WAS,4,5,35,SEA,WAS,4,4,4,(5:35) S.Hauschka 22 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,21,14,2012 -20130106_SEA@WAS,4,5,35,SEA,WAS,,,4,J.Ryan kicks 69 yards from SEA 35 to WAS -4. N.Paul to WAS 18 for 22 yards (J.Lane; M.Robinson).,24,14,2012 -20130106_SEA@WAS,4,5,26,WAS,SEA,1,10,82,(5:26) (Shotgun) K.Cousins pass short middle to L.Hankerson to WAS 33 for 15 yards (B.Wagner).,14,24,2012 -20130106_SEA@WAS,4,4,59,WAS,SEA,1,10,67,(4:59) (No Huddle Shotgun) K.Cousins pass incomplete short right to L.Paulsen (B.Irvin) [B.Irvin].,14,24,2012 -20130106_SEA@WAS,4,4,53,WAS,SEA,2,10,67,(4:53) (Shotgun) K.Cousins pass short left to L.Hankerson pushed ob at WAS 45 for 12 yards (M.Trufant).,14,24,2012 -20130106_SEA@WAS,4,4,48,WAS,SEA,1,10,61,(4:48) (Shotgun) K.Cousins FUMBLES (Aborted) at WAS 39 and recovers at WAS 39. K.Cousins to WAS 41 for 2 yards (B.Wagner).,14,24,2012 -20130106_SEA@WAS,4,4,32,WAS,SEA,2,14,59,(4:32) (No Huddle Shotgun) K.Cousins pass incomplete deep right to S.Moss.,14,24,2012 -20130106_SEA@WAS,4,4,27,WAS,SEA,3,14,59,(4:27) (Shotgun) K.Cousins pass incomplete short right to J.Morgan.,14,24,2012 -20130106_SEA@WAS,4,4,21,WAS,SEA,4,14,59,(4:21) (Shotgun) K.Cousins pass incomplete short middle to S.Moss [J.Johnson].,14,24,2012 -20130106_SEA@WAS,4,4,16,SEA,WAS,1,10,41,(4:16) R.Turbin right tackle to WAS 36 for 5 yards (P.Riley S.Bowen).,24,14,2012 -20130106_SEA@WAS,4,3,32,SEA,WAS,2,5,36,(3:32) R.Turbin up the middle to WAS 33 for 3 yards (J.Jenkins; P.Riley).,24,14,2012 -20130106_SEA@WAS,4,3,26,SEA,WAS,3,2,33,(3:26) R.Turbin left end to WAS 32 for 1 yard (L.Fletcher; R.Doughty).,24,14,2012 -20130106_SEA@WAS,4,3,21,SEA,WAS,4,1,32,(3:21) R.Wilson pass short left to Z.Miller to WAS 26 for 6 yards (R.Doughty).,24,14,2012 -20130106_SEA@WAS,4,2,39,SEA,WAS,1,10,26,(2:39) R.Turbin right tackle to WAS 22 for 4 yards (R.Jackson).,24,14,2012 -20130106_SEA@WAS,4,2,32,SEA,WAS,2,6,22,(2:32) M.Lynch right end to WAS 19 for 3 yards (P.Riley).,24,14,2012 -20130106_SEA@WAS,4,2,0,SEA,WAS,3,3,19,(2:00) M.Lynch left end to WAS 20 for -1 yards (L.Alexander; R.Jackson).,24,14,2012 -20130106_SEA@WAS,4,1,16,SEA,WAS,4,4,20,(1:16) R.Wilson pass incomplete short right to M.Robinson.,24,14,2012 -20130106_SEA@WAS,4,1,8,WAS,SEA,1,10,80,(1:08) (Shotgun) K.Cousins pass incomplete short middle to L.Hankerson.,14,24,2012 -20130106_SEA@WAS,4,1,4,WAS,SEA,2,10,80,(1:04) (Shotgun) K.Cousins pass incomplete short right to J.Morgan.,14,24,2012 -20130106_SEA@WAS,4,1,1,WAS,SEA,3,10,80,(1:01) (Shotgun) K.Cousins pass short middle to S.Moss to WAS 24 for 4 yards (B.Wagner K.Wright).,14,24,2012 -20130106_SEA@WAS,4,0,39,WAS,SEA,4,6,76,(:39) (No Huddle Shotgun) K.Cousins pass incomplete deep middle to L.Hankerson.,14,24,2012 -20130106_SEA@WAS,4,0,35,SEA,WAS,1,10,24,(:35) R.Wilson kneels to WAS 25 for -1 yards.,24,14,2012 -20130106_SEA@WAS,4,0,35,SEA,WAS,,,24,                      ,24,14,2012 -20130112_BAL@DEN,1,0,0,DEN,BAL,,,24,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,0,0,2012 -20130112_BAL@DEN,1,60,0,BAL,DEN,1,10,80,(15:00) R.Rice right tackle to BLT 25 for 5 yards (V.Miller).,0,0,2012 -20130112_BAL@DEN,1,59,27,BAL,DEN,2,5,75,(14:27) J.Flacco pass short left to A.Boldin to BLT 30 for 5 yards (C.Harris).,0,0,2012 -20130112_BAL@DEN,1,58,50,BAL,DEN,1,10,70,(13:50) R.Rice up the middle to BLT 38 for 8 yards (R.Moore).,0,0,2012 -20130112_BAL@DEN,1,58,13,BAL,DEN,2,2,62,(13:13) J.Flacco pass incomplete deep right to A.Boldin (C.Harris).,0,0,2012 -20130112_BAL@DEN,1,58,7,BAL,DEN,3,2,62,(13:07) R.Rice right tackle to BLT 38 for no gain (V.Miller).,0,0,2012 -20130112_BAL@DEN,1,57,32,BAL,DEN,4,2,62,(12:32) S.Koch punts 52 yards to DEN 10 Center-M.Cox. T.Holliday for 90 yards TOUCHDOWN.,0,0,2012 -20130112_BAL@DEN,1,57,32,DEN,BAL,,,62,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,0,2012 -20130112_BAL@DEN,1,57,32,DEN,BAL,,,62,M.Prater kicks 70 yards from DEN 35 to BLT -5. J.Jones MUFFS catch and recovers at BLT 3. J.Jones to BLT 6 for 3 yards (S.Johnson).,7,0,2012 -20130112_BAL@DEN,1,57,9,BAL,DEN,1,10,94,(12:09) B.Pierce up the middle to BLT 8 for 2 yards (V.Miller).,0,7,2012 -20130112_BAL@DEN,1,56,31,BAL,DEN,2,8,92,(11:31) J.Flacco pass incomplete short left to E.Dickson.,0,7,2012 -20130112_BAL@DEN,1,56,26,BAL,DEN,3,8,92,(11:26) (Shotgun) J.Flacco pass incomplete deep right to T.Doss. PENALTY on DEN-T.Carter Defensive Pass Interference 25 yards enforced at BLT 8 - No Play.,0,7,2012 -20130112_BAL@DEN,1,56,20,BAL,DEN,1,10,67,(11:20) J.Flacco pass short left to A.Boldin to BLT 41 for 8 yards (W.Woodyard).,0,7,2012 -20130112_BAL@DEN,1,55,39,BAL,DEN,2,2,59,(10:39) (Shotgun) J.Flacco pass deep right to T.Smith for 59 yards TOUCHDOWN.,0,7,2012 -20130112_BAL@DEN,1,55,39,BAL,DEN,,,59,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,7,2012 -20130112_BAL@DEN,1,55,39,BAL,DEN,,,59,J.Tucker kicks 63 yards from BLT 35 to DEN 2. T.Holliday to DEN 25 for 23 yards (S.Considine).,7,7,2012 -20130112_BAL@DEN,1,55,24,DEN,BAL,1,10,75,(10:24) (Shotgun) K.Moreno left guard to DEN 29 for 4 yards (T.Suggs).,7,7,2012 -20130112_BAL@DEN,1,55,2,DEN,BAL,2,6,71,(10:02) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,7,7,2012 -20130112_BAL@DEN,1,54,58,DEN,BAL,3,6,71,(9:58) (Shotgun) P.Manning pass short right intended for E.Decker INTERCEPTED by C.Graham (C.Brown) at DEN 39. C.Graham for 39 yards TOUCHDOWN.,7,7,2012 -20130112_BAL@DEN,1,54,58,BAL,DEN,,,71,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,7,2012 -20130112_BAL@DEN,1,54,58,BAL,DEN,,,71,J.Tucker kicks 70 yards from BLT 35 to DEN -5. T.Holliday to DEN 26 for 31 yards (J.Bynes).,14,7,2012 -20130112_BAL@DEN,1,54,42,DEN,BAL,1,10,74,(9:42) K.Moreno right tackle to DEN 25 for -1 yards (P.Kruger).,7,14,2012 -20130112_BAL@DEN,1,54,18,DEN,BAL,2,11,75,(9:18) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 33 for 8 yards (C.Graham). PENALTY on DEN Ineligible Downfield Pass 5 yards enforced at DEN 25 - No Play.,7,14,2012 -20130112_BAL@DEN,1,53,55,DEN,BAL,2,16,80,(8:55) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 29 for 9 yards (T.Suggs).,7,14,2012 -20130112_BAL@DEN,1,53,24,DEN,BAL,3,7,71,(8:24) (Shotgun) P.Manning pass short right to J.Tamme to 50 for 21 yards (C.Williams).,7,14,2012 -20130112_BAL@DEN,1,52,41,DEN,BAL,1,10,50,(7:41) (Shotgun) K.Moreno up the middle to BLT 49 for 1 yard (D.Ellerbe).,7,14,2012 -20130112_BAL@DEN,1,52,15,DEN,BAL,2,9,49,(7:15) (Shotgun) P.Manning pass short left to E.Decker to BLT 36 for 13 yards (C.Williams).,7,14,2012 -20130112_BAL@DEN,1,51,44,DEN,BAL,1,10,36,(6:44) (Shotgun) P.Manning pass incomplete deep left to D.Thomas.,7,14,2012 -20130112_BAL@DEN,1,51,38,DEN,BAL,2,10,36,(6:38) (Shotgun) P.Manning pass short left to R.Hillman to BLT 31 for 5 yards (C.Upshaw). PENALTY on BLT-T.Cody Illegal Use of Hands 5 yards enforced at BLT 36 - No Play.,7,14,2012 -20130112_BAL@DEN,1,51,21,DEN,BAL,1,10,31,(6:21) (Shotgun) K.Moreno up the middle to BLT 28 for 3 yards (R.Lewis).,7,14,2012 -20130112_BAL@DEN,1,50,41,DEN,BAL,2,7,28,(5:41) (Shotgun) P.Manning pass short left to D.Thomas to BLT 17 for 11 yards (C.Williams).,7,14,2012 -20130112_BAL@DEN,1,49,58,DEN,BAL,1,10,17,(4:58) (Shotgun) P.Manning pass incomplete short left to D.Thomas (B.Pollard).,7,14,2012 -20130112_BAL@DEN,1,49,51,DEN,BAL,2,10,17,(4:51) K.Moreno up the middle to BLT 15 for 2 yards (H.Ngata).,7,14,2012 -20130112_BAL@DEN,1,49,9,DEN,BAL,3,8,15,(4:09) (Shotgun) P.Manning pass short left to B.Stokley for 15 yards TOUCHDOWN.,7,14,2012 -20130112_BAL@DEN,1,49,9,DEN,BAL,,,15,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,14,2012 -20130112_BAL@DEN,1,49,9,DEN,BAL,,,15,M.Prater kicks 72 yards from DEN 35 to BLT -7. J.Jones to BLT 17 for 24 yards (J.Hester).,14,14,2012 -20130112_BAL@DEN,1,48,58,BAL,DEN,1,10,83,(3:58) R.Rice left end to BLT 18 for 1 yard (W.Woodyard).,14,14,2012 -20130112_BAL@DEN,1,48,28,BAL,DEN,2,9,82,(3:28) J.Flacco pass short right to E.Dickson to BLT 28 for 10 yards (V.Miller).,14,14,2012 -20130112_BAL@DEN,1,47,45,BAL,DEN,1,10,72,(2:45) T.Smith right end pushed ob at BLT 28 for no gain (W.Woodyard).,14,14,2012 -20130112_BAL@DEN,1,47,12,BAL,DEN,2,10,72,(2:12) (Shotgun) J.Flacco pass short left to R.Rice to BLT 28 for no gain (V.Miller). PENALTY on DEN-E.Dumervil Defensive Offside 5 yards enforced at BLT 28 - No Play.,14,14,2012 -20130112_BAL@DEN,1,46,53,BAL,DEN,2,5,67,(1:53) J.Flacco pass short middle to D.Pitta to BLT 49 for 16 yards (R.Moore).,14,14,2012 -20130112_BAL@DEN,1,46,17,BAL,DEN,1,10,51,(1:17) R.Rice left guard to DEN 48 for 3 yards (M.Unrein).,14,14,2012 -20130112_BAL@DEN,1,45,36,BAL,DEN,2,7,48,(:36) J.Flacco pass short right to E.Dickson to DEN 43 for 5 yards (R.Moore; M.Unrein).,14,14,2012 -20130112_BAL@DEN,2,45,0,BAL,DEN,3,2,43,(15:00) (Shotgun) J.Flacco pass incomplete deep right to T.Smith (C.Bailey).,14,14,2012 -20130112_BAL@DEN,2,44,53,BAL,DEN,4,2,43,(14:53) S.Koch punts 36 yards to DEN 7 Center-M.Cox downed by BLT-J.Smith.,14,14,2012 -20130112_BAL@DEN,2,44,40,DEN,BAL,1,10,93,(14:40) (Shotgun) K.Moreno right guard to DEN 15 for 8 yards (R.Lewis). PENALTY on BLT-D.Ellerbe Face Mask (15 Yards) 15 yards enforced at DEN 15.,14,14,2012 -20130112_BAL@DEN,2,44,32,DEN,BAL,1,10,70,(14:32) K.Moreno right guard to DEN 34 for 4 yards (R.Lewis; P.Kruger). PENALTY on DEN-C.Kuper Offensive Holding 10 yards enforced at DEN 30 - No Play.,14,14,2012 -20130112_BAL@DEN,2,44,11,DEN,BAL,1,20,80,(14:11) (Shotgun) P.Manning pass short middle to B.Stokley to DEN 23 for 3 yards (R.Lewis).,14,14,2012 -20130112_BAL@DEN,2,43,40,DEN,BAL,2,17,77,(13:40) (Shotgun) P.Manning pass short left to J.Dreessen to DEN 30 for 7 yards (P.Kruger).,14,14,2012 -20130112_BAL@DEN,2,43,4,DEN,BAL,3,10,70,(13:04) (Shotgun) P.Manning pass incomplete short right to B.Stokley (C.Graham).,14,14,2012 -20130112_BAL@DEN,2,42,58,DEN,BAL,4,10,70,(12:58) B.Colquitt punts 59 yards to BLT 11 Center-A.Brewer. T.Doss to BLT 19 for 8 yards (O.Bolden).,14,14,2012 -20130112_BAL@DEN,2,42,47,BAL,DEN,1,10,81,(12:47) J.Flacco pass short left to E.Dickson to BLT 33 for 14 yards (M.Adams).,14,14,2012 -20130112_BAL@DEN,2,42,4,BAL,DEN,1,10,67,(12:04) B.Pierce up the middle to BLT 35 for 2 yards (W.Woodyard).,14,14,2012 -20130112_BAL@DEN,2,41,26,BAL,DEN,2,8,65,(11:26) J.Flacco pass incomplete deep middle to T.Smith.,14,14,2012 -20130112_BAL@DEN,2,41,20,BAL,DEN,3,8,65,(11:20) (Shotgun) J.Flacco pass incomplete short right to J.Jones.,14,14,2012 -20130112_BAL@DEN,2,41,12,BAL,DEN,4,8,65,(11:12) S.Koch punts 51 yards to DEN 14 Center-M.Cox downed by BLT-J.Smith.,14,14,2012 -20130112_BAL@DEN,2,41,1,DEN,BAL,1,10,86,(11:01) (Shotgun) P.Manning pass short middle to D.Thomas to DEN 23 for 9 yards (C.Brown).,14,14,2012 -20130112_BAL@DEN,2,40,39,DEN,BAL,2,1,77,(10:39) K.Moreno right guard to DEN 28 for 5 yards (T.Suggs).,14,14,2012 -20130112_BAL@DEN,2,40,8,DEN,BAL,1,10,72,(10:08) P.Manning pass short left to K.Moreno to DEN 35 for 7 yards (C.Graham).,14,14,2012 -20130112_BAL@DEN,2,39,40,DEN,BAL,2,3,65,(9:40) R.Hillman left guard to DEN 41 for 6 yards (R.Lewis).,14,14,2012 -20130112_BAL@DEN,2,39,10,DEN,BAL,1,10,59,(9:10) (Shotgun) P.Manning pass short left to E.Decker ran ob at BLT 49 for 10 yards.,14,14,2012 -20130112_BAL@DEN,2,38,57,DEN,BAL,1,10,49,(8:57) R.Hillman up the middle to BLT 46 for 3 yards (T.Cody).,14,14,2012 -20130112_BAL@DEN,2,38,24,DEN,BAL,2,7,46,(8:24) P.Manning pass deep right to E.Decker to BLT 14 for 32 yards (E.Reed).,14,14,2012 -20130112_BAL@DEN,2,37,32,DEN,BAL,1,10,14,(7:32) (Shotgun) P.Manning pass short right to K.Moreno for 14 yards TOUCHDOWN.,14,14,2012 -20130112_BAL@DEN,2,37,32,DEN,BAL,,,14,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,14,14,2012 -20130112_BAL@DEN,2,37,32,DEN,BAL,,,14,M.Prater kicks 61 yards from DEN 35 to BLT 4. J.Jones to BLT 25 for 21 yards (M.Willis).,21,14,2012 -20130112_BAL@DEN,2,37,20,BAL,DEN,1,10,75,(7:20) J.Flacco pass incomplete short middle to R.Rice.,14,21,2012 -20130112_BAL@DEN,2,37,15,BAL,DEN,2,10,75,(7:15) R.Rice up the middle to BLT 31 for 6 yards (K.Vickerson).,14,21,2012 -20130112_BAL@DEN,2,36,39,BAL,DEN,3,4,69,(6:39) (Shotgun) J.Flacco pass incomplete deep left to A.Boldin (C.Harris).,14,21,2012 -20130112_BAL@DEN,2,36,33,BAL,DEN,4,4,69,(6:33) S.Koch punts 50 yards to DEN 19 Center-M.Cox out of bounds. DEN-O.Bolden was injured during the play.,14,21,2012 -20130112_BAL@DEN,2,36,26,DEN,BAL,1,10,81,(6:26) K.Moreno left tackle to DEN 21 for 2 yards (M.Kemoeatu).,21,14,2012 -20130112_BAL@DEN,2,35,48,DEN,BAL,2,8,79,(5:48) (Shotgun) P.Manning pass short right to E.Decker to DEN 31 for 10 yards (D.Ellerbe).,21,14,2012 -20130112_BAL@DEN,2,35,19,DEN,BAL,1,10,69,(5:19) R.Hillman up the middle to DEN 42 for 11 yards (C.Graham; R.Lewis).,21,14,2012 -20130112_BAL@DEN,2,34,42,DEN,BAL,1,10,58,(4:42) (Shotgun) P.Manning pass short middle to J.Hester to DEN 49 for 7 yards (R.Lewis).,21,14,2012 -20130112_BAL@DEN,2,34,20,DEN,BAL,2,3,51,(4:20) J.Hester left tackle to BLT 49 for 2 yards (R.Lewis).,21,14,2012 -20130112_BAL@DEN,2,33,54,DEN,BAL,3,1,49,(3:54) K.Moreno up the middle to BLT 46 for 3 yards (C.Upshaw; H.Ngata).,21,14,2012 -20130112_BAL@DEN,2,33,19,DEN,BAL,1,10,46,(3:19) (Shotgun) P.Manning pass incomplete short left to J.Dreessen.,21,14,2012 -20130112_BAL@DEN,2,33,16,DEN,BAL,2,10,46,(3:16) R.Hillman left end pushed ob at BLT 38 for 8 yards (C.Williams).,21,14,2012 -20130112_BAL@DEN,2,32,49,DEN,BAL,3,2,38,(2:49) J.Hester right guard to BLT 37 for 1 yard (T.Suggs).,21,14,2012 -20130112_BAL@DEN,2,32,12,DEN,BAL,4,1,37,(2:12) J.Hester up the middle to BLT 36 for 1 yard (T.Suggs). Baltimore challenged the first down ruling and the play was Upheld. (Timeout #1.),21,14,2012 -20130112_BAL@DEN,2,32,0,DEN,BAL,1,10,36,(2:00) J.Hester right guard to BLT 34 for 2 yards (C.Graham).,21,14,2012 -20130112_BAL@DEN,2,31,31,DEN,BAL,2,8,34,(1:31) (Shotgun) P.Manning pass incomplete short left to D.Thomas.,21,14,2012 -20130112_BAL@DEN,2,31,26,DEN,BAL,3,8,34,(1:26) (Shotgun) P.Manning pass incomplete short middle to J.Hester (T.Suggs).,21,14,2012 -20130112_BAL@DEN,2,31,21,DEN,BAL,4,8,34,(1:21) M.Prater 52 yard field goal is No Good Short Center-A.Brewer Holder-B.Colquitt.,21,14,2012 -20130112_BAL@DEN,2,31,16,BAL,DEN,1,10,58,(1:16) (Shotgun) J.Flacco pass short right to A.Boldin to DEN 47 for 11 yards (C.Bailey).,14,21,2012 -20130112_BAL@DEN,2,30,49,BAL,DEN,1,10,47,(:49) (Shotgun) J.Flacco pass short right to D.Pitta ran ob at DEN 32 for 15 yards.,14,21,2012 -20130112_BAL@DEN,2,30,43,BAL,DEN,1,10,32,(:43) (Shotgun) J.Flacco pass deep right to T.Smith for 32 yards TOUCHDOWN.,14,21,2012 -20130112_BAL@DEN,2,30,43,BAL,DEN,,,32,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,21,2012 -20130112_BAL@DEN,2,30,43,BAL,DEN,,,32,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,21,21,2012 -20130112_BAL@DEN,2,30,35,DEN,BAL,1,10,80,(:35) J.Hester right guard to DEN 21 for 1 yard (P.McPhee).,21,21,2012 -20130112_BAL@DEN,3,30,0,BAL,DEN,,,80,J.Tucker kicks 69 yards from BLT 35 to DEN -4. T.Holliday for 104 yards TOUCHDOWN.,21,21,2012 -20130112_BAL@DEN,3,30,0,DEN,BAL,,,80,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,21,21,2012 -20130112_BAL@DEN,3,30,0,DEN,BAL,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,28,21,2012 -20130112_BAL@DEN,3,29,47,BAL,DEN,1,10,80,(14:47) R.Rice up the middle to BLT 21 for 1 yard (K.Vickerson).,21,28,2012 -20130112_BAL@DEN,3,29,11,BAL,DEN,2,9,79,(14:11) R.Rice left tackle to BLT 23 for 2 yards (E.Dumervil).,21,28,2012 -20130112_BAL@DEN,3,28,33,BAL,DEN,3,7,77,(13:33) (Shotgun) J.Flacco sacked at BLT 15 for -8 yards (R.Ayers). PENALTY on DEN-E.Dumervil Defensive Offside 4 yards enforced at BLT 23 - No Play.,21,28,2012 -20130112_BAL@DEN,3,28,16,BAL,DEN,3,3,73,(13:16) R.Rice right end pushed ob at BLT 47 for 20 yards (R.Moore).,21,28,2012 -20130112_BAL@DEN,3,27,57,BAL,DEN,1,10,53,(12:57) B.Pierce left tackle to BLT 47 for no gain (D.Wolfe). PENALTY on DEN Defensive 12 On-field 5 yards enforced at BLT 47 - No Play.,21,28,2012 -20130112_BAL@DEN,3,27,57,BAL,DEN,1,5,48,(12:57) (Shotgun) J.Flacco pass incomplete to A.Boldin. PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at DEN 48 - No Play.,21,28,2012 -20130112_BAL@DEN,3,27,36,DEN,BAL,1,10,43,(12:36) J.Flacco FUMBLES (Aborted) at DEN 43 RECOVERED by DEN-K.Brooking at DEN 43. K.Brooking to DEN 43 for no gain (M.Yanda).,28,21,2012 -20130112_BAL@DEN,3,27,32,DEN,BAL,1,10,57,(12:32) K.Moreno right tackle to DEN 48 for 5 yards (R.Lewis; E.Reed).,28,21,2012 -20130112_BAL@DEN,3,26,57,DEN,BAL,2,5,52,(11:57) (Shotgun) P.Manning pass incomplete short middle to B.Stokley. PENALTY on BLT-R.Lewis Defensive Pass Interference 5 yards enforced at DEN 48 - No Play.,28,21,2012 -20130112_BAL@DEN,3,26,52,DEN,BAL,1,10,47,(11:52) R.Hillman right guard to BLT 40 for 7 yards (C.Brown). PENALTY on DEN-C.Kuper Offensive Holding 10 yards enforced at BLT 47 - No Play.,28,21,2012 -20130112_BAL@DEN,3,26,29,DEN,BAL,1,20,57,(11:29) (Shotgun) P.Manning pass incomplete short right to E.Decker.,28,21,2012 -20130112_BAL@DEN,3,26,26,DEN,BAL,2,20,57,(11:26) (Shotgun) P.Manning sacked at DEN 39 for -4 yards (T.Suggs). FUMBLES (T.Suggs) [P.Kruger] RECOVERED by BLT-R.Lewis at DEN 39. R.Lewis to DEN 39 for no gain (P.Manning). PENALTY on BLT-C.Williams Illegal Use of Hands 3 yards enforced at DEN 39. Penalty on BLT-T.Suggs Illegal Use of Hands declined.,28,21,2012 -20130112_BAL@DEN,3,26,21,DEN,BAL,1,10,58,(11:21) (Shotgun) R.Hillman up the middle to DEN 47 for 5 yards (D.Ellerbe).,28,21,2012 -20130112_BAL@DEN,3,25,43,DEN,BAL,2,5,53,(10:43) (Shotgun) P.Manning pass incomplete short middle to E.Decker (D.Ellerbe).,28,21,2012 -20130112_BAL@DEN,3,25,38,DEN,BAL,3,5,53,(10:38) (Shotgun) J.Hester up the middle to DEN 49 for 2 yards (R.Lewis; P.McPhee).,28,21,2012 -20130112_BAL@DEN,3,24,56,DEN,BAL,4,3,51,(9:56) B.Colquitt punts 48 yards to BLT 3 Center-A.Brewer downed by DEN-M.Willis.,28,21,2012 -20130112_BAL@DEN,3,24,45,BAL,DEN,1,10,97,(9:45) B.Pierce up the middle to BLT 6 for 3 yards (D.Wolfe).,21,28,2012 -20130112_BAL@DEN,3,24,8,BAL,DEN,2,7,94,(9:08) V.Leach up the middle to BLT 9 for 3 yards (J.Bannan; V.Miller).,21,28,2012 -20130112_BAL@DEN,3,23,27,BAL,DEN,3,4,91,(8:27) J.Flacco pass short left to T.Smith to BLT 16 for 7 yards (C.Bailey).,21,28,2012 -20130112_BAL@DEN,3,22,55,BAL,DEN,1,10,84,(7:55) B.Pierce right guard to BLT 20 for 4 yards (W.Woodyard).,21,28,2012 -20130112_BAL@DEN,3,22,27,BAL,DEN,2,6,80,(7:27) B.Pierce up the middle to BLT 23 for 3 yards (V.Miller).,21,28,2012 -20130112_BAL@DEN,3,21,49,BAL,DEN,3,3,77,(6:49) (Shotgun) J.Flacco pass incomplete short right to R.Rice.,21,28,2012 -20130112_BAL@DEN,3,21,42,BAL,DEN,4,3,77,(6:42) S.Koch punts 52 yards to DEN 25 Center-M.Cox fair catch by T.Holliday.,21,28,2012 -20130112_BAL@DEN,3,21,34,DEN,BAL,1,10,75,(6:34) (Shotgun) P.Manning pass short middle to J.Dreessen to DEN 34 for 9 yards (C.Graham).,28,21,2012 -20130112_BAL@DEN,3,21,13,DEN,BAL,2,1,66,(6:13) R.Hillman right guard to DEN 34 for no gain (P.Kruger).,28,21,2012 -20130112_BAL@DEN,3,20,54,DEN,BAL,3,1,66,(5:54) R.Hillman up the middle to DEN 35 for 1 yard (A.Jones).,28,21,2012 -20130112_BAL@DEN,3,20,24,DEN,BAL,1,10,65,(5:24) (Shotgun) P.Manning pass incomplete short left to E.Decker (C.Williams).,28,21,2012 -20130112_BAL@DEN,3,20,18,DEN,BAL,2,10,65,(5:18) (Shotgun) P.Manning pass incomplete short right to J.Dreessen [H.Ngata].,28,21,2012 -20130112_BAL@DEN,3,20,12,DEN,BAL,3,10,65,(5:12) (Shotgun) P.Manning pass short right to J.Tamme to DEN 46 for 11 yards (C.Brown).,28,21,2012 -20130112_BAL@DEN,3,19,39,DEN,BAL,1,10,54,(4:39) R.Hillman left end to DEN 43 for -3 yards (R.Lewis).,28,21,2012 -20130112_BAL@DEN,3,19,6,DEN,BAL,2,13,57,(4:06) (Shotgun) P.Manning pass short left to J.Tamme to BLT 45 for 12 yards (D.Ellerbe).,28,21,2012 -20130112_BAL@DEN,3,18,18,DEN,BAL,3,1,45,(3:18) J.Hester up the middle to BLT 42 for 3 yards (A.Jones). PENALTY on DEN-C.Kuper Offensive Holding 9 yards enforced at BLT 45 - No Play.,28,21,2012 -20130112_BAL@DEN,3,17,55,DEN,BAL,3,10,54,(2:55) (Shotgun) P.Manning sacked at DEN 37 for -9 yards (P.McPhee). FUMBLES (P.McPhee) RECOVERED by BLT-P.Kruger at DEN 37. P.Kruger to DEN 37 for no gain (Z.Beadles). The Replay Assistant challenged the fumble ruling and the play was Upheld.,28,21,2012 -20130112_BAL@DEN,3,17,47,BAL,DEN,1,10,37,(2:47) R.Rice right tackle to DEN 36 for 1 yard (V.Miller).,21,28,2012 -20130112_BAL@DEN,3,17,9,BAL,DEN,2,9,36,(2:09) R.Rice up the middle to DEN 4 for 32 yards (R.Moore). DEN-R.Moore was injured during the play.,21,28,2012 -20130112_BAL@DEN,3,16,31,BAL,DEN,1,4,4,(1:31) R.Rice up the middle to DEN 1 for 3 yards (J.Leonhard).,21,28,2012 -20130112_BAL@DEN,3,15,59,BAL,DEN,2,1,1,(:59) R.Rice left guard to DEN 1 for no gain (K.Brooking).,21,28,2012 -20130112_BAL@DEN,3,15,23,BAL,DEN,3,1,1,(:23) R.Rice up the middle for 1 yard TOUCHDOWN.,21,28,2012 -20130112_BAL@DEN,3,15,23,BAL,DEN,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,28,2012 -20130112_BAL@DEN,3,15,23,BAL,DEN,,,1,J.Tucker kicks 51 yards from BLT 35 to DEN 14. L.Ball to DEN 27 for 13 yards (A.McClellan).,28,28,2012 -20130112_BAL@DEN,3,15,15,DEN,BAL,1,10,73,(:15) R.Hillman up the middle to DEN 30 for 3 yards (R.Lewis; B.Pierce).,28,28,2012 -20130112_BAL@DEN,4,15,0,DEN,BAL,2,7,70,(15:00) (Shotgun) P.Manning pass short right to J.Dreessen pushed ob at DEN 33 for 3 yards (D.Ellerbe).,28,28,2012 -20130112_BAL@DEN,4,14,25,DEN,BAL,3,4,67,(14:25) (Shotgun) P.Manning sacked at DEN 29 for -4 yards (T.Suggs).,28,28,2012 -20130112_BAL@DEN,4,13,54,DEN,BAL,4,8,71,(13:54) B.Colquitt punts 52 yards to BLT 19 Center-A.Brewer. J.Jones to BLT 33 for 14 yards (J.Tamme).,28,28,2012 -20130112_BAL@DEN,4,13,46,BAL,DEN,1,10,67,(13:46) R.Rice left tackle to BLT 36 for 3 yards (J.Bannan).,28,28,2012 -20130112_BAL@DEN,4,13,9,BAL,DEN,2,7,64,(13:09) J.Flacco pass short left to V.Leach to BLT 37 for 1 yard (C.Harris).,28,28,2012 -20130112_BAL@DEN,4,12,24,BAL,DEN,3,6,63,(12:24) (Shotgun) J.Flacco pass incomplete short middle to A.Boldin (C.Harris).,28,28,2012 -20130112_BAL@DEN,4,12,21,BAL,DEN,4,6,63,(12:21) S.Koch punts 58 yards to DEN 5 Center-M.Cox. T.Holliday to DEN 12 for 7 yards (C.Brown).,28,28,2012 -20130112_BAL@DEN,4,12,9,DEN,BAL,1,10,88,(12:09) P.Manning pass short right to R.Hillman to DEN 23 for 11 yards (R.Lewis; C.Brown).,28,28,2012 -20130112_BAL@DEN,4,11,37,DEN,BAL,1,10,77,(11:37) (Shotgun) P.Manning pass short right to J.Dreessen pushed ob at DEN 30 for 7 yards (D.Ellerbe).,28,28,2012 -20130112_BAL@DEN,4,11,16,DEN,BAL,2,3,70,(11:16) R.Hillman up the middle to DEN 34 for 4 yards (B.Pollard).,28,28,2012 -20130112_BAL@DEN,4,10,37,DEN,BAL,1,10,66,(10:37) (Shotgun) P.Manning pass incomplete short right to B.Stokley [C.Graham].,28,28,2012 -20130112_BAL@DEN,4,10,33,DEN,BAL,2,10,66,(10:33) (Shotgun) P.Manning pass short right to J.Dreessen to DEN 45 for 11 yards (C.Brown). PENALTY on BLT-C.Brown Unnecessary Roughness 15 yards enforced at DEN 45.,28,28,2012 -20130112_BAL@DEN,4,10,10,DEN,BAL,1,10,40,(10:10) R.Hillman up the middle to BLT 37 for 3 yards (H.Ngata).,28,28,2012 -20130112_BAL@DEN,4,9,32,DEN,BAL,2,7,37,(9:32) (Shotgun) P.Manning pass short middle to M.Willis to BLT 33 for 4 yards (E.Reed).,28,28,2012 -20130112_BAL@DEN,4,8,46,DEN,BAL,3,3,33,(8:46) (Shotgun) P.Manning pass incomplete short left to D.Thomas (C.Williams). PENALTY on BLT-C.Williams Defensive Holding 5 yards enforced at BLT 33 - No Play.,28,28,2012 -20130112_BAL@DEN,4,8,39,DEN,BAL,1,10,28,(8:39) R.Hillman left guard to BLT 25 for 3 yards (B.Pollard; A.Jones).,28,28,2012 -20130112_BAL@DEN,4,8,4,DEN,BAL,2,7,25,(8:04) (Shotgun) P.Manning pass short left to E.Decker to BLT 17 for 8 yards (D.Ellerbe).,28,28,2012 -20130112_BAL@DEN,4,7,18,DEN,BAL,1,10,17,(7:18) (Shotgun) P.Manning pass short right to D.Thomas for 17 yards TOUCHDOWN.,28,28,2012 -20130112_BAL@DEN,4,7,18,DEN,BAL,,,17,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,28,28,2012 -20130112_BAL@DEN,4,7,18,DEN,BAL,,,17,M.Prater kicks 56 yards from DEN 35 to BLT 9. J.Jones to BLT 25 for 16 yards (D.Trevathan). BLT-G.Gradkowski was injured during the play.,35,28,2012 -20130112_BAL@DEN,4,7,6,BAL,DEN,1,10,75,(7:06) R.Rice up the middle to BLT 28 for 3 yards (K.Brooking; K.Vickerson).,28,35,2012 -20130112_BAL@DEN,4,6,35,BAL,DEN,2,7,72,(6:35) R.Rice up the middle to BLT 28 for no gain (J.Bannan; D.Wolfe).,28,35,2012 -20130112_BAL@DEN,4,5,50,BAL,DEN,3,7,72,(5:50) (Shotgun) J.Flacco pass short middle to A.Boldin to BLT 47 for 19 yards (R.Moore).,28,35,2012 -20130112_BAL@DEN,4,5,8,BAL,DEN,1,10,53,(5:08) J.Flacco pass short right to A.Boldin to DEN 36 for 17 yards (C.Harris) [V.Miller]. DEN-V.Miller was injured during the play.,28,35,2012 -20130112_BAL@DEN,4,4,45,BAL,DEN,1,10,36,(4:45) PENALTY on BLT-K.Osemele False Start 5 yards enforced at DEN 36 - No Play.,28,35,2012 -20130112_BAL@DEN,4,4,44,BAL,DEN,1,15,41,(4:44) R.Rice left guard to DEN 39 for 2 yards (W.Woodyard).,28,35,2012 -20130112_BAL@DEN,4,4,7,BAL,DEN,2,13,39,(4:07) R.Rice right end to DEN 31 for 8 yards (R.Moore).,28,35,2012 -20130112_BAL@DEN,4,3,22,BAL,DEN,3,5,31,(3:22) (Shotgun) J.Flacco pass incomplete short left to J.Jones.,28,35,2012 -20130112_BAL@DEN,4,3,16,BAL,DEN,4,5,31,(3:16) (Shotgun) J.Flacco pass incomplete short middle to D.Pitta (M.Adams).,28,35,2012 -20130112_BAL@DEN,4,3,12,DEN,BAL,1,10,69,(3:12) R.Hillman up the middle to DEN 36 for 5 yards (R.Lewis).,35,28,2012 -20130112_BAL@DEN,4,2,30,DEN,BAL,2,5,64,(2:30) R.Hillman up the middle to DEN 44 for 8 yards (C.Graham).,35,28,2012 -20130112_BAL@DEN,4,2,23,DEN,BAL,1,10,56,(2:23) R.Hillman up the middle to DEN 46 for 2 yards (R.Lewis).,35,28,2012 -20130112_BAL@DEN,4,2,19,DEN,BAL,2,8,54,(2:19) R.Hillman left guard to DEN 47 for 1 yard (M.Kemoeatu; R.Lewis).,35,28,2012 -20130112_BAL@DEN,4,2,0,DEN,BAL,3,7,53,(2:00) R.Hillman right guard to DEN 47 for no gain (M.Kemoeatu).,35,28,2012 -20130112_BAL@DEN,4,1,15,DEN,BAL,4,7,53,(1:15) B.Colquitt punts 30 yards to BLT 23 Center-A.Brewer fair catch by J.Jones.,35,28,2012 -20130112_BAL@DEN,4,1,9,BAL,DEN,1,10,77,(1:09) (Shotgun) J.Flacco pass incomplete deep right to D.Pitta.,28,35,2012 -20130112_BAL@DEN,4,1,5,BAL,DEN,2,10,77,(1:05) J.Flacco scrambles up the middle to BLT 30 for 7 yards (V.Miller).,28,35,2012 -20130112_BAL@DEN,4,0,41,BAL,DEN,3,3,70,(:41) (Shotgun) J.Flacco pass deep right to J.Jones for 70 yards TOUCHDOWN.,28,35,2012 -20130112_BAL@DEN,4,0,41,BAL,DEN,,,70,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,28,35,2012 -20130112_BAL@DEN,4,0,41,BAL,DEN,,,70,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,35,35,2012 -20130112_BAL@DEN,4,0,31,DEN,BAL,1,10,80,(:31) P.Manning kneels to DEN 19 for -1 yards.,35,35,2012 -20130112_BAL@DEN,5,0,0,DEN,BAL,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,35,35,2012 -20130112_BAL@DEN,5,0,0,BAL,DEN,1,10,80,(15:00) R.Rice right guard to BLT 22 for 2 yards (D.Williams; K.Vickerson). DEN-K.Vickerson was injured during the play.,35,35,2012 -20130112_BAL@DEN,5,-1,28,BAL,DEN,2,8,78,(14:28) J.Flacco pass incomplete short left to T.Smith.,35,35,2012 -20130112_BAL@DEN,5,-1,23,BAL,DEN,3,8,78,(14:23) (Shotgun) J.Flacco pass short right to A.Boldin to BLT 33 for 11 yards (W.Woodyard). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,35,35,2012 -20130112_BAL@DEN,5,-2,41,BAL,DEN,1,10,67,(13:41) R.Rice up the middle to BLT 36 for 3 yards (D.Williams).,35,35,2012 -20130112_BAL@DEN,5,-2,7,BAL,DEN,2,7,64,(13:07) R.Rice left guard to BLT 39 for 3 yards (J.Bannan).,35,35,2012 -20130112_BAL@DEN,5,-3,28,BAL,DEN,3,4,61,(12:28) (Shotgun) J.Flacco pass incomplete short middle to T.Smith (C.Bailey). PENALTY on DEN-C.Bailey Defensive Pass Interference 9 yards enforced at BLT 39 - No Play.,35,35,2012 -20130112_BAL@DEN,5,-3,23,BAL,DEN,1,10,52,(12:23) R.Rice up the middle to BLT 49 for 1 yard (E.Dumervil).,35,35,2012 -20130112_BAL@DEN,5,-4,52,BAL,DEN,2,9,51,(11:52) J.Flacco pass short right to J.Jones to DEN 44 for 7 yards (T.Carter).,35,35,2012 -20130112_BAL@DEN,5,-4,13,BAL,DEN,3,2,44,(11:13) (Shotgun) J.Flacco sacked at BLT 49 for -7 yards (sack split by V.Miller and E.Dumervil).,35,35,2012 -20130112_BAL@DEN,5,-5,30,BAL,DEN,4,9,51,(10:30) S.Koch punts 35 yards to DEN 16 Center-M.Cox fair catch by J.Leonhard.,35,35,2012 -20130112_BAL@DEN,5,-5,22,DEN,BAL,1,10,84,(10:22) (Shotgun) P.Manning pass incomplete short right to R.Hillman [P.Kruger].,35,35,2012 -20130112_BAL@DEN,5,-5,19,DEN,BAL,2,10,84,(10:19) R.Hillman left end to DEN 21 for 5 yards (C.Graham).,35,35,2012 -20130112_BAL@DEN,5,-6,41,DEN,BAL,3,5,79,(9:41) (Shotgun) P.Manning pass short right to B.Stokley to DEN 30 for 9 yards (C.Graham). The Replay Assistant challenged the pass completion ruling and the play was Upheld.,35,35,2012 -20130112_BAL@DEN,5,-6,1,DEN,BAL,1,10,70,(9:01) R.Hillman up the middle to DEN 38 for 8 yards (D.Ellerbe).,35,35,2012 -20130112_BAL@DEN,5,-7,19,DEN,BAL,2,2,62,(8:19) R.Hillman up the middle to DEN 39 for 1 yard (T.Suggs).,35,35,2012 -20130112_BAL@DEN,5,-8,48,DEN,BAL,3,1,61,(7:48) J.Hester right guard to DEN 39 for no gain (T.Suggs).,35,35,2012 -20130112_BAL@DEN,5,-9,58,DEN,BAL,4,1,61,(6:58) B.Colquitt punts 55 yards to BLT 6 Center-A.Brewer. E.Reed to BLT 6 for no gain (T.Carter).,35,35,2012 -20130112_BAL@DEN,5,-9,48,BAL,DEN,1,10,94,(6:48) R.Rice up the middle to BLT 6 for no gain (M.Unrein; K.Brooking).,35,35,2012 -20130112_BAL@DEN,5,-9,11,BAL,DEN,2,10,94,(6:11) J.Flacco pass incomplete deep left to A.Boldin.,35,35,2012 -20130112_BAL@DEN,5,-9,4,BAL,DEN,3,10,94,(6:04) (Shotgun) PENALTY on BLT-J.Flacco Delay of Game 3 yards enforced at BLT 6 - No Play.,35,35,2012 -20130112_BAL@DEN,5,-9,1,BAL,DEN,3,13,97,(6:01) (Shotgun) J.Flacco pass deep right to D.Pitta to BLT 27 for 24 yards (J.Leonhard).,35,35,2012 -20130112_BAL@DEN,5,-10,22,BAL,DEN,1,10,73,(5:22) (Shotgun) R.Rice left guard to BLT 33 for 6 yards (D.Wolfe).,35,35,2012 -20130112_BAL@DEN,5,-11,45,BAL,DEN,2,4,67,(4:45) R.Rice left tackle to BLT 34 for 1 yard (J.Bannan).,35,35,2012 -20130112_BAL@DEN,5,-11,3,BAL,DEN,3,3,66,(4:03) J.Flacco pass incomplete short middle to A.Boldin (C.Harris).,35,35,2012 -20130112_BAL@DEN,5,-12,59,BAL,DEN,4,3,66,(3:59) S.Koch punts 52 yards to DEN 14 Center-M.Cox. T.Holliday to DEN 7 for -7 yards (J.Smith).,35,35,2012 -20130112_BAL@DEN,5,-12,47,DEN,BAL,1,10,93,(3:47) (Shotgun) P.Manning pass short left to R.Hillman to DEN 12 for 5 yards (R.Lewis; C.Williams).,35,35,2012 -20130112_BAL@DEN,5,-12,18,DEN,BAL,2,5,88,(3:18) (Shotgun) P.Manning pass short left to E.Decker pushed ob at DEN 23 for 11 yards (C.Williams).,35,35,2012 -20130112_BAL@DEN,5,-12,9,DEN,BAL,1,10,77,(3:09) R.Hillman left tackle to DEN 32 for 9 yards (R.Lewis).,35,35,2012 -20130112_BAL@DEN,5,-13,38,DEN,BAL,2,1,68,(2:38) R.Hillman up the middle to DEN 32 for no gain (D.Ellerbe).,35,35,2012 -20130112_BAL@DEN,5,-13,9,DEN,BAL,3,1,68,(2:09) J.Hester up the middle to DEN 34 for 2 yards (T.Suggs).,35,35,2012 -20130112_BAL@DEN,5,-14,33,DEN,BAL,1,10,66,(1:33) (Shotgun) P.Manning pass short middle to R.Hillman to DEN 38 for 4 yards (C.Graham).,35,35,2012 -20130112_BAL@DEN,5,-14,1,DEN,BAL,2,6,62,(1:01) (Shotgun) P.Manning pass short right intended for B.Stokley INTERCEPTED by C.Graham at DEN 45. C.Graham to DEN 45 for no gain (B.Stokley).,35,35,2012 -20130112_BAL@DEN,5,-15,51,BAL,DEN,1,10,45,(:51) J.Flacco pass incomplete short right to J.Jones (J.Bannan).,35,35,2012 -20130112_BAL@DEN,5,-15,47,BAL,DEN,2,10,45,(:47) (Shotgun) R.Rice up the middle to DEN 34 for 11 yards (M.Adams).,35,35,2012 -20130112_BAL@DEN,5,0,0,BAL,DEN,1,10,34,(15:00) R.Rice up the middle to DEN 32 for 2 yards (D.Williams).,35,35,2012 -20130112_BAL@DEN,5,-1,34,BAL,DEN,2,8,32,(14:34) R.Rice up the middle to DEN 31 for 1 yard (J.Bannan).,35,35,2012 -20130112_BAL@DEN,5,-1,7,BAL,DEN,3,7,31,(14:07) R.Rice left guard to DEN 29 for 2 yards (J.Bannan).,35,35,2012 -20130112_BAL@DEN,5,-2,24,BAL,DEN,4,5,29,(13:24) J.Tucker 47 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,35,35,2012 -20130112_BAL@DEN,5,-2,24,BAL,DEN,,,29,                      ,38,35,2012 -20130112_GB@SF,1,-2,0,GB,SF,,,29,M.Crosby kicks 60 yards from GB 35 to SF 5. L.James to SF 28 for 23 yards (M.Jennings).,0,0,2012 -20130112_GB@SF,1,59,56,SF,GB,1,10,72,(14:56) C.Kaepernick pass short right to M.Crabtree to SF 37 for 9 yards (T.Williams). Caught at SF 32. 5-yds YAC,0,0,2012 -20130112_GB@SF,1,59,14,SF,GB,2,1,63,(14:14) (Shotgun) F.Gore up the middle to SF 43 for 6 yards (M.Burnett).,0,0,2012 -20130112_GB@SF,1,58,38,SF,GB,1,10,57,(13:38) (Shotgun) F.Gore left guard to SF 47 for 4 yards (C.Matthews M.Burnett).,0,0,2012 -20130112_GB@SF,1,58,4,SF,GB,2,6,53,(13:04) (Shotgun) C.Kaepernick pass short left intended for V.Davis INTERCEPTED by S.Shields at GB 48. S.Shields for 52 yards TOUCHDOWN.,0,0,2012 -20130112_GB@SF,1,58,4,GB,SF,,,53,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20130112_GB@SF,1,58,4,GB,SF,,,53,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,7,0,2012 -20130112_GB@SF,1,57,48,SF,GB,1,10,80,(12:48) (Shotgun) F.Gore up the middle to SF 25 for 5 yards (M.Daniels).,0,7,2012 -20130112_GB@SF,1,57,13,SF,GB,2,5,75,(12:13) (Shotgun) C.Kaepernick left end pushed ob at SF 28 for 3 yards (A.Hawk).,0,7,2012 -20130112_GB@SF,1,56,41,SF,GB,3,2,72,(11:41) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree. PENALTY on GB-T.Williams Defensive Holding 5 yards enforced at SF 28 - No Play.,0,7,2012 -20130112_GB@SF,1,56,36,SF,GB,1,10,67,(11:36) (Shotgun) C.Kaepernick pass incomplete short left to M.Crabtree.,0,7,2012 -20130112_GB@SF,1,56,32,SF,GB,2,10,67,(11:32) (Shotgun) C.Kaepernick pass incomplete short right to V.Davis (C.Woodson).,0,7,2012 -20130112_GB@SF,1,56,28,SF,GB,3,10,67,(11:28) (Shotgun) C.Kaepernick pass deep left to F.Gore to GB 22 for 45 yards (S.Shields). Caught at SF 49. 29-yds YAC,0,7,2012 -20130112_GB@SF,1,55,35,SF,GB,1,10,22,(10:35) (Shotgun) C.Kaepernick sacked at GB 29 for -7 yards (C.Matthews).,0,7,2012 -20130112_GB@SF,1,54,57,SF,GB,2,17,29,(9:57) F.Gore right tackle to GB 20 for 9 yards (C.Woodson C.Wilson).,0,7,2012 -20130112_GB@SF,1,54,9,SF,GB,3,8,20,(9:09) (Shotgun) C.Kaepernick left end for 20 yards TOUCHDOWN.,0,7,2012 -20130112_GB@SF,1,54,9,SF,GB,,,20,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,0,7,2012 -20130112_GB@SF,1,54,9,SF,GB,,,20,D.Akers kicks 70 yards from SF 35 to GB -5. J.Ross Touchback.,7,7,2012 -20130112_GB@SF,1,54,0,GB,SF,1,10,80,(9:00) A.Rodgers pass short right to G.Jennings to GB 27 for 7 yards (C.Culliver). Caught at GB 25. 2-yds YAC,7,7,2012 -20130112_GB@SF,1,53,27,GB,SF,2,3,73,(8:27) (Shotgun) A.Rodgers pass incomplete short right to D.Harris [Ald.Smith].,7,7,2012 -20130112_GB@SF,1,53,22,GB,SF,3,3,73,(8:22) (Shotgun) A.Rodgers pass incomplete short right to J.Kuhn.,7,7,2012 -20130112_GB@SF,1,53,19,GB,SF,4,3,73,(8:19) T.Masthay punts 50 yards to SF 23 Center-B.Goode. T.Ginn to GB 49 for 28 yards (T.Masthay; T.Manning). PENALTY on SF-C.Culliver Offensive Holding 10 yards enforced at SF 23.,7,7,2012 -20130112_GB@SF,1,53,5,SF,GB,1,10,87,(8:05) (Shotgun) C.Kaepernick up the middle to SF 17 for 4 yards (B.Jones).,7,7,2012 -20130112_GB@SF,1,52,20,SF,GB,2,6,83,(7:20) (Shotgun) F.Gore right tackle to SF 21 for 4 yards (C.Woodson).,7,7,2012 -20130112_GB@SF,1,51,49,SF,GB,3,2,79,(6:49) (Shotgun) C.Kaepernick right end pushed ob at SF 34 for 13 yards (T.Williams).,7,7,2012 -20130112_GB@SF,1,51,7,SF,GB,1,10,66,(6:07) F.Gore right end to SF 33 for -1 yards (R.Pickett; E.Walden).,7,7,2012 -20130112_GB@SF,1,50,33,SF,GB,2,11,67,(5:33) (Shotgun) C.Kaepernick pass short right to R.Moss to SF 45 for 12 yards (C.Woodson). Caught at SF 40. 5-yds YAC,7,7,2012 -20130112_GB@SF,1,49,52,SF,GB,1,10,55,(4:52) (Shotgun) C.Kaepernick pass short right to R.Moss to GB 42 for 13 yards (S.Shields). Caught at GB 42. 0-yds YAC,7,7,2012 -20130112_GB@SF,1,49,10,SF,GB,1,10,42,(4:10) (Shotgun) F.Gore up the middle to GB 40 for 2 yards (R.Pickett).,7,7,2012 -20130112_GB@SF,1,48,33,SF,GB,2,8,40,(3:33) (Shotgun) C.Kaepernick pass incomplete deep middle to R.Moss [D.Moses].,7,7,2012 -20130112_GB@SF,1,48,27,SF,GB,3,8,40,(3:27) (Shotgun) C.Kaepernick pass incomplete short left to D.Walker (S.Shields).,7,7,2012 -20130112_GB@SF,1,48,21,SF,GB,4,8,40,(3:21) A.Lee punts 40 yards to end zone Center-B.Jennings Touchback.,7,7,2012 -20130112_GB@SF,1,48,13,GB,SF,1,10,80,(3:13) (Shotgun) D.Harris to GB 22 for 2 yards (P.Willis).,7,7,2012 -20130112_GB@SF,1,47,49,GB,SF,2,8,78,(2:49) (No Huddle Shotgun) D.Harris up the middle to GB 29 for 7 yards (N.Bowman).,7,7,2012 -20130112_GB@SF,1,47,9,GB,SF,3,1,71,(2:09) (Shotgun) D.Harris up the middle to GB 33 for 4 yards (D.Goldson).,7,7,2012 -20130112_GB@SF,1,46,41,GB,SF,1,10,67,(1:41) (No Huddle Shotgun) A.Rodgers pass incomplete short left to J.Jones.,7,7,2012 -20130112_GB@SF,1,46,38,GB,SF,2,10,67,(1:38) D.Harris right end to GB 38 for 5 yards (P.Willis R.McDonald).,7,7,2012 -20130112_GB@SF,1,46,8,GB,SF,3,5,62,(1:08) (Shotgun) A.Rodgers pass deep right to J.Jones to SF 18 for 44 yards (C.Culliver). Caught at SF 18. 0-yds YAC,7,7,2012 -20130112_GB@SF,1,45,29,GB,SF,1,10,18,(:29) (No Huddle) D.Harris up the middle for 18 yards TOUCHDOWN.,7,7,2012 -20130112_GB@SF,1,45,29,GB,SF,,,18,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,7,7,2012 -20130112_GB@SF,1,45,29,GB,SF,,,18,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,14,7,2012 -20130112_GB@SF,1,45,29,SF,GB,1,10,80,(:29) C.Kaepernick pass short right to M.Crabtree to SF 35 for 15 yards (T.Williams). Caught at SF 32. 3-yds YAC,7,14,2012 -20130112_GB@SF,2,45,0,SF,GB,1,10,65,(15:00) (Shotgun) F.Gore right tackle to SF 40 for 5 yards (T.Williams).,7,14,2012 -20130112_GB@SF,2,44,26,SF,GB,2,5,60,(14:26) (Shotgun) C.Kaepernick pass short left to M.Crabtree to SF 49 for 9 yards (M.Burnett C.Woodson). Caught at SF 44. 5-yds YAC,7,14,2012 -20130112_GB@SF,2,43,40,SF,GB,1,10,51,(13:40) (Shotgun) C.Kaepernick pass incomplete short right to D.Walker.,7,14,2012 -20130112_GB@SF,2,43,34,SF,GB,2,10,51,(13:34) (Shotgun) C.Kaepernick right end to GB 48 for 3 yards (D.Moses).,7,14,2012 -20130112_GB@SF,2,43,4,SF,GB,3,7,48,(13:04) (Shotgun) PENALTY on SF-V.Davis False Start 5 yards enforced at GB 48 - No Play.,7,14,2012 -20130112_GB@SF,2,42,33,SF,GB,3,12,53,(12:33) (Shotgun) C.Kaepernick pass short right to F.Gore to 50 for 3 yards (B.Jones). Caught at SF 49. 1-yd YAC,7,14,2012 -20130112_GB@SF,2,41,52,SF,GB,4,9,50,(11:52) A.Lee punts 40 yards to GB 10 Center-B.Jennings. J.Ross MUFFS catch RECOVERED by SF-C.Spillman at GB 9. C.Spillman to GB 9 for no gain (J.Ross). A.Lee credited with 41-yard punt.,7,14,2012 -20130112_GB@SF,2,41,43,SF,GB,1,9,9,(11:43) C.Kaepernick pass incomplete short left to B.Miller (C.Matthews).,7,14,2012 -20130112_GB@SF,2,41,37,SF,GB,2,9,9,(11:37) (Shotgun) C.Kaepernick FUMBLES (Aborted) at GB 9 and recovers at GB 9. C.Kaepernick to GB 12 for -3 yards (E.Walden). C.Kaepernick credited with rush of 0-yards,7,14,2012 -20130112_GB@SF,2,41,4,SF,GB,3,12,12,(11:04) (Shotgun) C.Kaepernick pass short middle to M.Crabtree for 12 yards TOUCHDOWN. Caught at GB 9. 9-yds YAC,7,14,2012 -20130112_GB@SF,2,41,4,SF,GB,,,12,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,7,14,2012 -20130112_GB@SF,2,41,4,SF,GB,,,12,D.Akers kicks 68 yards from SF 35 to GB -3. R.Cobb to GB 13 for 16 yards (P.Cox). PENALTY on GB-J.Kuhn Offensive Holding 6 yards enforced at GB 13.,14,14,2012 -20130112_GB@SF,2,40,54,GB,SF,1,10,93,(10:54) (Shotgun) D.Harris left guard to GB 9 for 2 yards (J.Smith).,14,14,2012 -20130112_GB@SF,2,40,14,GB,SF,2,8,91,(10:14) (Shotgun) A.Rodgers pass incomplete short right to J.Nelson. PENALTY on SF-C.Culliver Defensive Pass Interference 14 yards enforced at GB 9 - No Play.,14,14,2012 -20130112_GB@SF,2,40,6,GB,SF,1,10,77,(10:06) (No Huddle) D.Harris right guard to GB 26 for 3 yards (R.McDonald J.Smith).,14,14,2012 -20130112_GB@SF,2,39,46,GB,SF,2,7,74,(9:46) (No Huddle) A.Rodgers pass incomplete short right to D.Harris.,14,14,2012 -20130112_GB@SF,2,39,37,GB,SF,3,7,74,(9:37) (Shotgun) A.Rodgers pass deep middle intended for J.Nelson INTERCEPTED by T.Brown at SF 13. T.Brown to GB 48 for 39 yards (E.Dietrich-Smith).,14,14,2012 -20130112_GB@SF,2,39,19,SF,GB,1,10,48,(9:19) F.Gore left end to GB 42 for 6 yards (C.Wilson C.Matthews).,14,14,2012 -20130112_GB@SF,2,38,40,SF,GB,2,4,42,(8:40) (Shotgun) C.Kaepernick pass short left to T.Ginn to GB 39 for 3 yards (B.Jones). Caught at GB 39. 0-yds YAC,14,14,2012 -20130112_GB@SF,2,37,58,SF,GB,3,1,39,(7:58) (Shotgun) L.James up the middle to GB 25 for 14 yards (M.Burnett M.Jennings).,14,14,2012 -20130112_GB@SF,2,37,16,SF,GB,1,10,25,(7:16) (Shotgun) C.Kaepernick pass incomplete short middle to M.Crabtree (T.Williams).,14,14,2012 -20130112_GB@SF,2,37,2,SF,GB,2,10,25,(7:02) L.James up the middle to GB 24 for 1 yard (A.Hawk).,14,14,2012 -20130112_GB@SF,2,36,25,SF,GB,3,9,24,(6:25) (Shotgun) C.Kaepernick scrambles up the middle to GB 9 for 15 yards (M.Jennings E.Walden). PENALTY on SF-C.Kaepernick Taunting 15 yards enforced between downs.,14,14,2012 -20130112_GB@SF,2,36,13,SF,GB,1,10,24,(6:13) (Shotgun) F.Gore up the middle to GB 20 for 4 yards (E.Walden).,14,14,2012 -20130112_GB@SF,2,35,33,SF,GB,2,6,20,(5:33) C.Kaepernick pass deep left to M.Crabtree for 20 yards TOUCHDOWN. Caught at goal line. 0-yds YAC,14,14,2012 -20130112_GB@SF,2,35,33,SF,GB,,,20,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,14,14,2012 -20130112_GB@SF,2,35,33,SF,GB,,,20,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,21,14,2012 -20130112_GB@SF,2,35,26,GB,SF,1,10,80,(5:26) A.Rodgers up the middle to GB 29 for 9 yards (Ald.Smith). FUMBLES (Ald.Smith) and recovers at GB 29.,14,21,2012 -20130112_GB@SF,2,34,39,GB,SF,2,1,71,(4:39) D.Harris up the middle to GB 32 for 3 yards (A.Brooks).,14,21,2012 -20130112_GB@SF,2,34,20,GB,SF,1,10,68,(4:20) A.Rodgers pass deep right to J.Finley to SF 49 for 19 yards (D.Whitner). Caught at SF 49. 0-yds YAC,14,21,2012 -20130112_GB@SF,2,33,57,GB,SF,1,10,49,(3:57) D.Harris right tackle to SF 46 for 3 yards (J.Smith). PENALTY on SF-D.Goldson Unnecessary Roughness 15 yards enforced at SF 46.,14,21,2012 -20130112_GB@SF,2,33,28,GB,SF,1,10,31,(3:28) A.Rodgers pass short left to D.Harris to SF 25 for 6 yards (D.Whitner). Caught at SF 35. 10-yds YAC,14,21,2012 -20130112_GB@SF,2,32,51,GB,SF,2,4,25,(2:51) (Shotgun) PENALTY on SF-J.Smith Defensive Offside 5 yards enforced at SF 25 - No Play.,14,21,2012 -20130112_GB@SF,2,32,39,GB,SF,1,10,20,(2:39) (Shotgun) A.Rodgers pass deep middle to J.Jones for 20 yards TOUCHDOWN. Caught at goal line. 0-yds YAC,14,21,2012 -20130112_GB@SF,2,32,39,GB,SF,,,20,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,14,21,2012 -20130112_GB@SF,2,32,39,GB,SF,,,20,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,21,21,2012 -20130112_GB@SF,2,32,33,SF,GB,1,10,80,(2:33) (Shotgun) C.Kaepernick right end pushed ob at SF 23 for 3 yards (B.Jones).,21,21,2012 -20130112_GB@SF,2,32,11,SF,GB,2,7,77,(2:11) (Shotgun) C.Kaepernick scrambles left end pushed ob at SF 42 for 19 yards (C.Woodson).,21,21,2012 -20130112_GB@SF,2,32,0,SF,GB,1,10,58,(2:00) (Shotgun) C.Kaepernick pass incomplete deep left to V.Davis (M.Burnett).,21,21,2012 -20130112_GB@SF,2,31,54,SF,GB,2,10,58,(1:54) (Shotgun) C.Kaepernick pass deep right to D.Walker ran ob at GB 41 for 17 yards. The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) C.Kaepernick pass incomplete deep right to D.Walker.,21,21,2012 -20130112_GB@SF,2,31,48,SF,GB,3,10,58,(1:48) (Shotgun) C.Kaepernick left tackle ran ob at GB 40 for 18 yards.,21,21,2012 -20130112_GB@SF,2,31,41,SF,GB,1,10,40,(1:41) (Shotgun) C.Kaepernick pass short left to L.James to GB 33 for 7 yards (B.Jones). Caught at GB33. 0-yds YAC,21,21,2012 -20130112_GB@SF,2,31,10,SF,GB,2,3,33,(1:10) (No Huddle Shotgun) L.James up the middle to GB 27 for 6 yards (B.Jones E.Walden).,21,21,2012 -20130112_GB@SF,2,30,46,SF,GB,1,10,27,(:46) (No Huddle Shotgun) C.Kaepernick pass incomplete deep left to T.Ginn.,21,21,2012 -20130112_GB@SF,2,30,40,SF,GB,2,10,27,(:40) (Shotgun) C.Kaepernick pass incomplete short left to D.Walker.,21,21,2012 -20130112_GB@SF,2,30,35,SF,GB,3,10,27,(:35) (Shotgun) C.Kaepernick up the middle to GB 18 for 9 yards (M.Daniels).,21,21,2012 -20130112_GB@SF,2,30,3,SF,GB,4,1,18,(:03) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,21,21,2012 -20130112_GB@SF,3,30,0,SF,GB,,,18,D.Akers kicks 66 yards from SF 35 to GB -1. R.Cobb to GB 26 for 27 yards (D.Walker).,24,21,2012 -20130112_GB@SF,3,29,54,GB,SF,1,10,74,(14:54) (Shotgun) D.Harris right tackle to GB 29 for 3 yards (J.Smith D.Goldson).,21,24,2012 -20130112_GB@SF,3,29,11,GB,SF,2,7,71,(14:11) (Shotgun) D.Harris right end to GB 32 for 3 yards (N.Bowman D.Goldson).,21,24,2012 -20130112_GB@SF,3,28,28,GB,SF,3,4,68,(13:28) (Shotgun) A.Rodgers sacked at GB 23 for -9 yards (P.Willis).,21,24,2012 -20130112_GB@SF,3,28,5,GB,SF,4,13,77,(13:05) T.Masthay punts 42 yards to SF 35 Center-B.Goode fair catch by T.Ginn.,21,24,2012 -20130112_GB@SF,3,27,58,SF,GB,1,10,65,(12:58) (Shotgun) F.Gore right guard to SF 37 for 2 yards (B.Jones).,24,21,2012 -20130112_GB@SF,3,27,16,SF,GB,2,8,63,(12:16) (Shotgun) C.Kaepernick pass incomplete deep left to R.Moss.,24,21,2012 -20130112_GB@SF,3,27,7,SF,GB,3,8,63,(12:07) (Shotgun) C.Kaepernick pass incomplete short left to V.Davis (C.Woodson).,24,21,2012 -20130112_GB@SF,3,27,4,SF,GB,4,8,63,(12:04) A.Lee punts 52 yards to GB 11 Center-B.Jennings. R.Cobb to GB 11 for no gain (C.Spillman).,24,21,2012 -20130112_GB@SF,3,26,56,GB,SF,1,10,89,(11:56) (Shotgun) A.Rodgers pass short right to G.Jennings to GB 13 for 2 yards (A.Brooks).,21,24,2012 -20130112_GB@SF,3,26,23,GB,SF,2,8,87,(11:23) (Shotgun) A.Rodgers pass deep right to G.Jennings to GB 43 for 30 yards (D.Goldson). Caught at GB 43. 0-yds YAC,21,24,2012 -20130112_GB@SF,3,25,51,GB,SF,1,10,57,(10:51) (No Huddle Shotgun) A.Rodgers pass short right to J.Nelson to SF 49 for 8 yards (T.Brock). Caught at 50. 1-yd YAC,21,24,2012 -20130112_GB@SF,3,25,18,GB,SF,2,2,49,(10:18) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at SF 41 for 8 yards (T.Brock). Caught at SF 41. 0-yds YAC,21,24,2012 -20130112_GB@SF,3,25,1,GB,SF,1,10,41,(10:01) (Shotgun) R.Cobb right guard to SF 22 for 19 yards (P.Willis D.Whitner).,21,24,2012 -20130112_GB@SF,3,24,22,GB,SF,1,10,22,(9:22) (Shotgun) R.Cobb up the middle to SF 18 for 4 yards (Ald.Smith).,21,24,2012 -20130112_GB@SF,3,23,51,GB,SF,2,6,18,(8:51) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Nelson.,21,24,2012 -20130112_GB@SF,3,23,46,GB,SF,3,6,18,(8:46) PENALTY on GB-M.Newhouse False Start 5 yards enforced at SF 18 - No Play.,21,24,2012 -20130112_GB@SF,3,23,46,GB,SF,3,11,23,(8:46) (Shotgun) A.Rodgers pass short right to R.Cobb to SF 15 for 8 yards (D.Goldson). FUMBLES (D.Goldson) recovered by GB-T.Lang at SF 15. T.Lang to SF 13 for 2 yards (P.Cox).,21,24,2012 -20130112_GB@SF,3,23,38,GB,SF,4,1,13,(8:38) M.Crosby 31 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,21,24,2012 -20130112_GB@SF,3,23,38,GB,SF,,,13,M.Crosby kicks 74 yards from GB 35 to SF -9. L.James Touchback.,24,24,2012 -20130112_GB@SF,3,23,24,SF,GB,1,10,80,(8:24) C.Kaepernick pass deep left to M.Crabtree to SF 38 for 18 yards (T.Williams). Caught at SF 37. 1-yd YAC,24,24,2012 -20130112_GB@SF,3,22,56,SF,GB,1,10,62,(7:56) (Shotgun) C.Kaepernick pass short left to M.Crabtree to SF 44 for 6 yards (S.Shields). Caught at SF 37. 7-yds YAC,24,24,2012 -20130112_GB@SF,3,22,16,SF,GB,2,4,56,(7:16) (Shotgun) C.Kaepernick right end for 56 yards TOUCHDOWN.,24,24,2012 -20130112_GB@SF,3,22,16,SF,GB,,,56,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,24,24,2012 -20130112_GB@SF,3,22,16,SF,GB,,,56,D.Akers kicks 67 yards from SF 35 to GB -2. R.Cobb Touchback.,31,24,2012 -20130112_GB@SF,3,22,7,GB,SF,1,10,80,(7:07) (Shotgun) A.Rodgers pass incomplete short right to G.Jennings.,24,31,2012 -20130112_GB@SF,3,22,1,GB,SF,2,10,80,(7:01) (Shotgun) A.Rodgers pass incomplete short left to T.Crabtree (N.Bowman) [A.Brooks].,24,31,2012 -20130112_GB@SF,3,21,57,GB,SF,3,10,80,(6:57) (Shotgun) A.Rodgers scrambles left end ran ob at GB 37 for 17 yards.,24,31,2012 -20130112_GB@SF,3,21,27,GB,SF,1,10,63,(6:27) (Shotgun) A.Rodgers pass short left to R.Cobb to GB 40 for 3 yards (D.Goldson P.Cox).,24,31,2012 -20130112_GB@SF,3,20,52,GB,SF,2,7,60,(5:52) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 41 for 1 yard (J.Smith).,24,31,2012 -20130112_GB@SF,3,20,12,GB,SF,3,6,59,(5:12) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley (N.Bowman).,24,31,2012 -20130112_GB@SF,3,20,7,GB,SF,4,6,59,(5:07) T.Masthay punts 52 yards to SF 7 Center-B.Goode fair catch by T.Ginn.,24,31,2012 -20130112_GB@SF,3,20,0,SF,GB,1,10,93,(5:00) (Shotgun) F.Gore left guard to SF 10 for 3 yards (R.Pickett A.Hawk). GB-R.Pickett was injured during the play.,31,24,2012 -20130112_GB@SF,3,19,20,SF,GB,2,7,90,(4:20) (Shotgun) F.Gore up the middle to SF 15 for 5 yards (B.Jones A.Hawk).,31,24,2012 -20130112_GB@SF,3,18,36,SF,GB,3,2,85,(3:36) (Shotgun) C.Kaepernick pass deep right to M.Crabtree to SF 31 for 16 yards (T.Williams). Caught at SF 31. 0-yds YAC,31,24,2012 -20130112_GB@SF,3,17,57,SF,GB,1,10,69,(2:57) (Shotgun) F.Gore right guard to SF 34 for 3 yards (A.Hawk).,31,24,2012 -20130112_GB@SF,3,17,18,SF,GB,2,7,66,(2:18) C.Kaepernick pass incomplete deep right to V.Davis. PENALTY on GB-T.Williams Defensive Holding 5 yards enforced at SF 34 - No Play.,31,24,2012 -20130112_GB@SF,3,17,11,SF,GB,1,10,61,(2:11) (Shotgun) F.Gore up the middle to SF 41 for 2 yards (C.Wilson).,31,24,2012 -20130112_GB@SF,3,16,32,SF,GB,2,8,59,(1:32) C.Kaepernick pass deep right to V.Davis to GB 15 for 44 yards (A.Hawk). Caught at GB 25. 10-yds YAC,31,24,2012 -20130112_GB@SF,3,15,45,SF,GB,1,10,15,(:45) (Shotgun) F.Gore up the middle to GB 2 for 13 yards (A.Hawk M.Burnett).,31,24,2012 -20130112_GB@SF,4,15,0,SF,GB,1,2,2,(15:00) D.Kilgore and L.Davis reported in as eligible. F.Gore right tackle for 2 yards TOUCHDOWN.,31,24,2012 -20130112_GB@SF,4,15,0,SF,GB,,,2,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,31,24,2012 -20130112_GB@SF,4,15,0,SF,GB,,,2,D.Akers kicks 60 yards from SF 35 to GB 5. R.Cobb MUFFS catch and recovers at GB 8. R.Cobb to GB 11 for 3 yards (M.Wilhoite).,38,24,2012 -20130112_GB@SF,4,14,51,GB,SF,1,10,89,(14:51) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 18 for 7 yards (N.Bowman). Caught at GB 17. 1-yd YAC,24,38,2012 -20130112_GB@SF,4,14,26,GB,SF,2,3,82,(14:26) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to GB 27 for 9 yards (P.Willis). Caught at GB 27. 0-yds YAC,24,38,2012 -20130112_GB@SF,4,13,58,GB,SF,1,10,73,(13:58) (No Huddle Shotgun) A.Rodgers pass short left to G.Jennings to GB 32 for 5 yards (C.Rogers D.Goldson). Caught at GB 29. 3-yds YAC,24,38,2012 -20130112_GB@SF,4,13,25,GB,SF,2,5,68,(13:25) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to GB 34 for 2 yards (N.Bowman D.Whitner). Caught at GB 30. 4-yds YAC,24,38,2012 -20130112_GB@SF,4,12,53,GB,SF,3,3,66,(12:53) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 44 for 10 yards (C.Culliver). Caught at GB41. 3-yds YAC,24,38,2012 -20130112_GB@SF,4,12,17,GB,SF,1,10,56,(12:17) A.Rodgers pass incomplete short right to T.Crabtree.,24,38,2012 -20130112_GB@SF,4,12,10,GB,SF,2,10,56,(12:10) (Shotgun) A.Rodgers pass short middle to D.Harris to GB 49 for 5 yards (P.Willis). Caught at GB 46. 3-yds YAC,24,38,2012 -20130112_GB@SF,4,11,43,GB,SF,3,5,51,(11:43) (Shotgun) A.Rodgers pass incomplete deep left to G.Jennings.,24,38,2012 -20130112_GB@SF,4,11,37,GB,SF,4,5,51,(11:37) T.Masthay punts 44 yards to SF 7 Center-B.Goode downed by GB-J.Ross.,24,38,2012 -20130112_GB@SF,4,11,28,SF,GB,1,10,93,(11:28) F.Gore right guard to SF 12 for 5 yards (B.Jones).,38,24,2012 -20130112_GB@SF,4,10,49,SF,GB,2,5,88,(10:49) C.Kaepernick left end pushed ob at SF 28 for 16 yards (C.Matthews).,38,24,2012 -20130112_GB@SF,4,10,17,SF,GB,1,10,72,(10:17) (Shotgun) F.Gore up the middle to SF 30 for 2 yards (A.Hawk).,38,24,2012 -20130112_GB@SF,4,9,35,SF,GB,2,8,70,(9:35) C.Kaepernick pass deep right to D.Walker to SF 47 for 17 yards (T.Williams). Caught at SF 47. 0-yds YAC,38,24,2012 -20130112_GB@SF,4,8,52,SF,GB,1,10,53,(8:52) (Shotgun) F.Gore right guard to GB 27 for 26 yards (C.Woodson D.Moses).,38,24,2012 -20130112_GB@SF,4,8,4,SF,GB,1,10,27,(8:04) (Shotgun) F.Gore right guard to GB 26 for 1 yard (R.Pickett).,38,24,2012 -20130112_GB@SF,4,7,23,SF,GB,2,9,26,(7:23) L.James left end to GB 15 for 11 yards (T.Williams). PENALTY on SF-B.Miller Offensive Holding 10 yards enforced at GB 26 - No Play.,38,24,2012 -20130112_GB@SF,4,6,59,SF,GB,2,19,36,(6:59) (Shotgun) C.Kaepernick right end to GB 32 for 4 yards (T.Williams).,38,24,2012 -20130112_GB@SF,4,6,15,SF,GB,3,15,32,(6:15) (Shotgun) C.Kaepernick pass short right to M.Crabtree to GB 18 for 14 yards (S.Shields). Caught at GB 31. 13-yds YaC,38,24,2012 -20130112_GB@SF,4,5,25,SF,GB,4,1,18,(5:25) (Run formation) L.Davis reported in as eligible. PENALTY on GB-B.Raji Encroachment 5 yards enforced at GB 18 - No Play.,38,24,2012 -20130112_GB@SF,4,5,3,SF,GB,1,10,13,(5:03) D.Kilgore and L.Davis reported in as eligible. F.Gore up the middle to GB 2 for 11 yards (M.Burnett).,38,24,2012 -20130112_GB@SF,4,4,22,SF,GB,1,2,2,(4:22) F.Gore up the middle to GB 2 for no gain (C.Matthews B.Jones).,38,24,2012 -20130112_GB@SF,4,3,42,SF,GB,2,2,2,(3:42) A.Dixon right tackle for 2 yards TOUCHDOWN.,38,24,2012 -20130112_GB@SF,4,3,42,SF,GB,,,2,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,38,24,2012 -20130112_GB@SF,4,3,42,SF,GB,,,2,D.Akers kicks 67 yards from SF 35 to GB -2. R.Cobb to GB 23 for 25 yards (L.Grant).,45,24,2012 -20130112_GB@SF,4,3,29,GB,SF,1,10,77,(3:29) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at GB 28 for 5 yards (N.Bowman).,24,45,2012 -20130112_GB@SF,4,3,23,GB,SF,2,5,72,(3:23) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 32 for 4 yards (C.Rogers).,24,45,2012 -20130112_GB@SF,4,2,57,GB,SF,3,1,68,(2:57) (Shotgun) A.Rodgers pass short left to J.Nelson pushed ob at GB 40 for 8 yards (T.Brown).,24,45,2012 -20130112_GB@SF,4,2,50,GB,SF,1,10,60,(2:50) (Shotgun) A.Rodgers pass short right to J.Jones to SF 44 for 16 yards (C.Culliver R.McDonald). Caught at GB 43. 13-yds YAC,24,45,2012 -20130112_GB@SF,4,2,14,GB,SF,1,10,44,(2:14) A.Rodgers pass incomplete short right to J.Jones.,24,45,2012 -20130112_GB@SF,4,2,13,GB,SF,2,10,44,(2:13) (Shotgun) A.Rodgers pass to J.Jones to SF 37 for 7 yards (C.Culliver; N.Bowman). Caught at SF 40. 3-yds YAC,24,45,2012 -20130112_GB@SF,4,2,0,GB,SF,3,3,37,(2:00) (Shotgun) A.Rodgers scrambles left guard to SF 35 for 2 yards (R.McDonald).,24,45,2012 -20130112_GB@SF,4,1,35,GB,SF,4,1,35,(1:35) (Shotgun) A.Rodgers pass short middle to J.Nelson to SF 23 for 12 yards (P.Willis). Caught at SF 23. 0-yds YAC,24,45,2012 -20130112_GB@SF,4,1,17,GB,SF,1,10,23,(1:17) (No Huddle) A.Rodgers pass short left to R.Cobb ran ob at SF 15 for 8 yards. Caught at SF18. 3-yds YAC,24,45,2012 -20130112_GB@SF,4,1,17,GB,SF,2,2,15,(1:17) (No Huddle Shotgun) PENALTY on SF-T.Brown Defensive Pass Interference 12 yards enforced at SF 15 - No Play.,24,45,2012 -20130112_GB@SF,4,1,12,GB,SF,1,3,3,(1:12) A.Rodgers pass incomplete to R.Cobb.,24,45,2012 -20130112_GB@SF,4,1,7,GB,SF,2,3,3,(1:07) (Shotgun) A.Rodgers pass short right to G.Jennings for 3 yards TOUCHDOWN.,24,45,2012 -20130112_GB@SF,4,1,7,GB,SF,,,3,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,24,45,2012 -20130112_GB@SF,4,1,7,GB,SF,,,3,M.Crosby kicks onside 11 yards from GB 35 to GB 46. D.Walker to GB 46 for no gain (J.McMillian).,31,45,2012 -20130112_GB@SF,4,0,56,SF,GB,1,10,46,(:56) C.Kaepernick kneels to GB 47 for -1 yards.,45,31,2012 -20130112_GB@SF,4,0,24,SF,GB,2,11,47,(:24) C.Kaepernick kneels to GB 48 for -1 yards.,45,31,2012 -20130112_GB@SF,4,0,24,SF,GB,,,47,                      ,45,31,2012 -20130113_SEA@ATL,1,0,0,SEA,ATL,,,47,R.Longwell kicks 68 yards from SEA 35 to ATL -3. Jz. Rodgers to ATL 25 for 28 yards (M.Smith).,0,0,2012 -20130113_SEA@ATL,1,59,56,ATL,SEA,1,10,75,(14:56) M.Ryan pass incomplete deep right to J.Jones (R.Sherman).,0,0,2012 -20130113_SEA@ATL,1,59,50,ATL,SEA,2,10,75,(14:50) M.Turner left guard to ATL 40 for 15 yards (K.Chancellor).,0,0,2012 -20130113_SEA@ATL,1,59,10,ATL,SEA,1,10,60,(14:10) M.Turner right end to ATL 42 for 2 yards (B.Wagner; B.Mebane).,0,0,2012 -20130113_SEA@ATL,1,58,26,ATL,SEA,2,8,58,(13:26) (Shotgun) M.Ryan pass short right to T.Gonzalez pushed ob at SEA 49 for 9 yards (K.Chancellor).,0,0,2012 -20130113_SEA@ATL,1,57,58,ATL,SEA,1,10,49,(12:58) (Shotgun) Jz. Rodgers right end to SEA 42 for 7 yards (K.Chancellor).,0,0,2012 -20130113_SEA@ATL,1,57,22,ATL,SEA,2,3,42,(12:22) Jz. Rodgers left end to SEA 41 for 1 yard (A.Branch).,0,0,2012 -20130113_SEA@ATL,1,56,40,ATL,SEA,3,2,41,(11:40) (Shotgun) M.Ryan pass short right to R.White ran ob at SEA 28 for 13 yards.,0,0,2012 -20130113_SEA@ATL,1,56,11,ATL,SEA,1,10,28,(11:11) Jz. Rodgers right guard to SEA 23 for 5 yards (C.McDonald).,0,0,2012 -20130113_SEA@ATL,1,55,31,ATL,SEA,2,5,23,(10:31) M.Turner left end to SEA 21 for 2 yards (B.Mebane).,0,0,2012 -20130113_SEA@ATL,1,54,50,ATL,SEA,3,3,21,(9:50) (Shotgun) M.Ryan pass incomplete deep middle to R.White (R.Sherman).,0,0,2012 -20130113_SEA@ATL,1,54,44,ATL,SEA,4,3,21,(9:44) M.Bryant 39 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20130113_SEA@ATL,1,54,44,ATL,SEA,,,21,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,3,0,2012 -20130113_SEA@ATL,1,54,40,SEA,ATL,1,10,80,(9:40) (Shotgun) M.Lynch left end to SEA 22 for 2 yards (D.Robinson; A.Dent).,0,3,2012 -20130113_SEA@ATL,1,54,2,SEA,ATL,2,8,78,(9:02) (Shotgun) M.Lynch left guard to SEA 24 for 2 yards (A.Dent; J.Babineaux).,0,3,2012 -20130113_SEA@ATL,1,53,24,SEA,ATL,3,6,76,(8:24) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,0,3,2012 -20130113_SEA@ATL,1,53,19,SEA,ATL,4,6,76,(8:19) (Punt formation) PENALTY on SEA-B.Wagner False Start 5 yards enforced at SEA 24 - No Play.,0,3,2012 -20130113_SEA@ATL,1,53,19,SEA,ATL,4,11,81,(8:19) J.Ryan punts 31 yards to 50 Center-C.Gresham out of bounds.,0,3,2012 -20130113_SEA@ATL,1,53,12,ATL,SEA,1,10,50,(8:12) M.Turner left tackle to SEA 49 for 1 yard (K.Wright; C.McDonald).,3,0,2012 -20130113_SEA@ATL,1,52,35,ATL,SEA,2,9,49,(7:35) M.Ryan pass short left to J.Jones pushed ob at SEA 43 for 6 yards (B.Irvin).,3,0,2012 -20130113_SEA@ATL,1,51,58,ATL,SEA,3,3,43,(6:58) (Shotgun) M.Ryan pass short middle intended for T.Gonzalez INTERCEPTED by B.Wagner [M.Trufant] at SEA 29. B.Wagner to SEA 33 for 4 yards (R.White).,3,0,2012 -20130113_SEA@ATL,1,51,54,SEA,ATL,1,10,67,(6:54) R.Wilson pass incomplete short right to A.McCoy (S.Weatherspoon).,0,3,2012 -20130113_SEA@ATL,1,51,51,SEA,ATL,2,10,67,(6:51) R.Wilson scrambles right tackle to 50 for 17 yards (A.Dent).,0,3,2012 -20130113_SEA@ATL,1,51,3,SEA,ATL,1,10,50,(6:03) (Shotgun) M.Lynch left tackle to ATL 39 for 11 yards (S.Weatherspoon). FUMBLES (S.Weatherspoon) RECOVERED by ATL-J.Babineaux at ATL 39.,0,3,2012 -20130113_SEA@ATL,1,50,51,ATL,SEA,1,10,61,(5:51) M.Ryan pass short left to J.Jones ran ob at SEA 48 for 13 yards.,3,0,2012 -20130113_SEA@ATL,1,50,30,ATL,SEA,1,10,48,(5:30) M.Ryan pass incomplete deep right to R.White.,3,0,2012 -20130113_SEA@ATL,1,50,22,ATL,SEA,2,10,48,(5:22) M.Turner right end to SEA 44 for 4 yards (B.Wagner). PENALTY on SEA-B.Wagner Horse Collar Tackle 15 yards enforced at SEA 44.,3,0,2012 -20130113_SEA@ATL,1,49,54,ATL,SEA,1,10,29,(4:54) Jz. Rodgers right tackle to SEA 28 for 1 yard (K.Wright).,3,0,2012 -20130113_SEA@ATL,1,49,10,ATL,SEA,2,9,28,(4:10) (Shotgun) M.Ryan pass incomplete short right to J.Jones (K.Wright).,3,0,2012 -20130113_SEA@ATL,1,49,6,ATL,SEA,3,9,28,(4:06) (Shotgun) PENALTY on ATL-P.Konz False Start 5 yards enforced at SEA 28 - No Play.,3,0,2012 -20130113_SEA@ATL,1,49,6,ATL,SEA,3,14,33,(4:06) (Shotgun) M.Ryan pass deep right to R.White to SEA 17 for 16 yards (W.Guy).,3,0,2012 -20130113_SEA@ATL,1,48,27,ATL,SEA,1,10,17,(3:27) M.Ryan pass short right to C.Coffman ran ob at SEA 1 for 16 yards. Penalty on SEA-R.Sherman Defensive Holding declined.,3,0,2012 -20130113_SEA@ATL,1,48,12,ATL,SEA,1,1,1,(3:12) M.Johnson reported in as eligible. M.Ryan pass short left to T.Gonzalez for 1 yard TOUCHDOWN.,3,0,2012 -20130113_SEA@ATL,1,48,12,ATL,SEA,,,1,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,3,0,2012 -20130113_SEA@ATL,1,48,12,ATL,SEA,,,1,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,10,0,2012 -20130113_SEA@ATL,1,48,10,SEA,ATL,1,10,80,(3:10) R.Wilson pass deep left to Z.Miller ran ob at SEA 43 for 23 yards.,0,10,2012 -20130113_SEA@ATL,1,47,42,SEA,ATL,1,10,57,(2:42) (Shotgun) R.Wilson pass short middle to Z.Miller to ATL 49 for 8 yards (W.Moore).,0,10,2012 -20130113_SEA@ATL,1,47,8,SEA,ATL,2,2,49,(2:08) (Shotgun) M.Lynch left tackle to ATL 44 for 5 yards (T.DeCoud; S.Nicholas).,0,10,2012 -20130113_SEA@ATL,1,46,33,SEA,ATL,1,10,44,(1:33) (Shotgun) M.Lynch left tackle to ATL 42 for 2 yards (C.Peters).,0,10,2012 -20130113_SEA@ATL,1,45,57,SEA,ATL,2,8,42,(:57) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin (A.Samuel) [J.Babineaux].,0,10,2012 -20130113_SEA@ATL,1,45,47,SEA,ATL,3,8,42,(:47) (Shotgun) R.Wilson pass incomplete deep left to G.Tate.,0,10,2012 -20130113_SEA@ATL,1,45,42,SEA,ATL,4,8,42,(:42) J.Ryan punts 29 yards to ATL 13 Center-C.Gresham downed by SEA-M.Robinson.,0,10,2012 -20130113_SEA@ATL,1,45,31,ATL,SEA,1,10,87,(:31) Jz. Rodgers left tackle to SEA 42 for 45 yards (M.Smith).,10,0,2012 -20130113_SEA@ATL,2,45,0,ATL,SEA,1,10,42,(15:00) M.Ryan pass incomplete deep right to J.Jones (R.Sherman).,10,0,2012 -20130113_SEA@ATL,2,44,54,ATL,SEA,2,10,42,(14:54) (Shotgun) M.Ryan pass short right to R.White to SEA 39 for 3 yards (M.Smith).,10,0,2012 -20130113_SEA@ATL,2,44,16,ATL,SEA,3,7,39,(14:16) (Shotgun) M.Ryan pass short middle to J.Jones to SEA 30 for 9 yards (M.Trufant).,10,0,2012 -20130113_SEA@ATL,2,43,34,ATL,SEA,1,10,30,(13:34) M.Turner left guard to SEA 26 for 4 yards (B.Wagner).,10,0,2012 -20130113_SEA@ATL,2,42,53,ATL,SEA,2,6,26,(12:53) M.Ryan pass short left to T.Gonzalez to SEA 21 for 5 yards (K.Chancellor).,10,0,2012 -20130113_SEA@ATL,2,42,13,ATL,SEA,3,1,21,(12:13) M.Turner left guard to SEA 19 for 2 yards (B.Wagner).,10,0,2012 -20130113_SEA@ATL,2,41,36,ATL,SEA,1,10,19,(11:36) Jz. Rodgers right tackle to SEA 17 for 2 yards (B.Mebane).,10,0,2012 -20130113_SEA@ATL,2,40,58,ATL,SEA,2,8,17,(10:58) M.Ryan scrambles right end to SEA 11 for 6 yards.,10,0,2012 -20130113_SEA@ATL,2,40,12,ATL,SEA,3,2,11,(10:12) (Shotgun) PENALTY on ATL-T.Clabo False Start 5 yards enforced at SEA 11 - No Play.,10,0,2012 -20130113_SEA@ATL,2,39,47,ATL,SEA,3,7,16,(9:47) (Shotgun) M.Ryan pass short left to R.White to SEA 19 for -3 yards (B.Browner). Penalty on ATL Illegal Shift declined.,10,0,2012 -20130113_SEA@ATL,2,39,17,ATL,SEA,4,10,19,(9:17) M.Bryant 37 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,10,0,2012 -20130113_SEA@ATL,2,39,17,ATL,SEA,,,19,M.Bosher kicks 72 yards from ATL 35 to SEA -7. L.Washington to SEA 30 for 37 yards (R.James).,13,0,2012 -20130113_SEA@ATL,2,39,7,SEA,ATL,1,10,70,(9:07) R.Wilson pass deep middle to Z.Miller to ATL 36 for 34 yards (T.DeCoud).,0,13,2012 -20130113_SEA@ATL,2,38,26,SEA,ATL,1,10,36,(8:26) R.Wilson pass deep right to G.Tate to ATL 20 for 16 yards (A.Samuel).,0,13,2012 -20130113_SEA@ATL,2,37,51,SEA,ATL,1,10,20,(7:51) M.Lynch left tackle to ATL 17 for 3 yards (P.Jerry).,0,13,2012 -20130113_SEA@ATL,2,37,11,SEA,ATL,2,7,17,(7:11) R.Wilson pass short right to M.Lynch to ATL 11 for 6 yards (V.Walker).,0,13,2012 -20130113_SEA@ATL,2,36,22,SEA,ATL,3,1,11,(6:22) (Shotgun) R.Turbin left guard to ATL 11 for no gain (S.Nicholas).,0,13,2012 -20130113_SEA@ATL,2,35,38,SEA,ATL,4,1,11,(5:38) M.Robinson right guard to ATL 12 for -1 yards (W.Moore).,0,13,2012 -20130113_SEA@ATL,2,35,33,ATL,SEA,1,10,88,(5:33) M.Turner left end to ATL 15 for 3 yards (B.Wagner).,13,0,2012 -20130113_SEA@ATL,2,34,52,ATL,SEA,2,7,85,(4:52) M.Johnson reported in as eligible. M.Turner left end pushed ob at ATL 48 for 33 yards (B.Wagner).,13,0,2012 -20130113_SEA@ATL,2,34,29,ATL,SEA,1,10,52,(4:29) M.Ryan pass incomplete short left to T.Gonzalez. PENALTY on SEA-K.Chancellor Defensive Holding 5 yards enforced at ATL 48 - No Play.,13,0,2012 -20130113_SEA@ATL,2,34,23,ATL,SEA,1,10,47,(4:23) (Shotgun) M.Ryan pass deep middle to R.White for 47 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,13,0,2012 -20130113_SEA@ATL,2,34,23,ATL,SEA,,,47,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,13,0,2012 -20130113_SEA@ATL,2,34,23,ATL,SEA,,,47,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 -20130113_SEA@ATL,2,34,16,SEA,ATL,1,10,80,(4:16) (Shotgun) R.Turbin right guard to SEA 26 for 6 yards (S.Weatherspoon).,0,20,2012 -20130113_SEA@ATL,2,33,39,SEA,ATL,2,4,74,(3:39) R.Wilson pass short right to G.Tate to SEA 37 for 11 yards (S.Weatherspoon).,0,20,2012 -20130113_SEA@ATL,2,33,6,SEA,ATL,1,10,63,(3:06) M.Lynch left tackle to SEA 39 for 2 yards (W.Moore; R.James).,0,20,2012 -20130113_SEA@ATL,2,32,27,SEA,ATL,2,8,61,(2:27) R.Wilson scrambles right end to SEA 48 for 9 yards (A.Dent).,0,20,2012 -20130113_SEA@ATL,2,32,0,SEA,ATL,1,10,52,(2:00) M.Lynch right tackle to SEA 48 for no gain (J.Babineaux; P.Jerry).,0,20,2012 -20130113_SEA@ATL,2,31,37,SEA,ATL,2,10,52,(1:37) (No Huddle) R.Wilson pass short right to Z.Miller to ATL 32 for 20 yards (A.Samuel).,0,20,2012 -20130113_SEA@ATL,2,31,8,SEA,ATL,1,10,32,(1:08) (No Huddle Shotgun) R.Wilson pass short right to S.Rice to ATL 19 for 13 yards (A.Samuel).,0,20,2012 -20130113_SEA@ATL,2,30,42,SEA,ATL,1,10,19,(:42) (No Huddle Shotgun) R.Wilson pass incomplete deep right to S.Rice.,0,20,2012 -20130113_SEA@ATL,2,30,35,SEA,ATL,2,10,19,(:35) (Shotgun) R.Wilson pass short middle to Z.Miller to ATL 10 for 9 yards (S.Nicholas).,0,20,2012 -20130113_SEA@ATL,2,30,30,SEA,ATL,3,1,10,(:30) (Shotgun) R.Wilson pass short left to G.Tate to ATL 6 for 4 yards (D.Robinson).,0,20,2012 -20130113_SEA@ATL,2,30,25,SEA,ATL,1,6,6,(:25) (Shotgun) R.Wilson pass incomplete short middle to S.Rice (A.Samuel).,0,20,2012 -20130113_SEA@ATL,2,30,21,SEA,ATL,2,6,6,(:21) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at ATL 6 - No Play.,0,20,2012 -20130113_SEA@ATL,2,30,21,SEA,ATL,2,11,11,(:21) (Shotgun) R.Wilson pass incomplete short left to G.Tate.,0,20,2012 -20130113_SEA@ATL,2,30,17,SEA,ATL,3,11,11,(:17) (Shotgun) R.Wilson sacked at ATL 20 for -9 yards (J.Babineaux).,0,20,2012 -20130113_SEA@ATL,3,30,0,ATL,SEA,,,11,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,0,2012 -20130113_SEA@ATL,3,30,0,SEA,ATL,1,10,80,(15:00) (Shotgun) R.Wilson pass short right to S.Rice to SEA 31 for 11 yards (A.Samuel).,0,20,2012 -20130113_SEA@ATL,3,29,28,SEA,ATL,1,10,69,(14:28) M.Lynch right end to SEA 32 for 1 yard (V.Walker; A.Dent).,0,20,2012 -20130113_SEA@ATL,3,28,51,SEA,ATL,2,9,68,(13:51) R.Wilson scrambles right end to SEA 49 for 17 yards (A.Dent).,0,20,2012 -20130113_SEA@ATL,3,28,11,SEA,ATL,1,10,51,(13:11) (Shotgun) R.Turbin left guard to ATL 44 for 7 yards (S.Weatherspoon; R.McClain).,0,20,2012 -20130113_SEA@ATL,3,27,34,SEA,ATL,2,3,44,(12:34) M.Lynch right guard to ATL 42 for 2 yards (C.Matthews; P.Jerry).,0,20,2012 -20130113_SEA@ATL,3,26,59,SEA,ATL,3,1,42,(11:59) R.Wilson right guard to ATL 40 for 2 yards (K.Biermann).,0,20,2012 -20130113_SEA@ATL,3,26,24,SEA,ATL,1,10,40,(11:24) (Shotgun) R.Wilson sacked at ATL 48 for -8 yards (V.Walker).,0,20,2012 -20130113_SEA@ATL,3,25,37,SEA,ATL,2,18,48,(10:37) (Shotgun) R.Wilson pass short right to Z.Miller to ATL 29 for 19 yards (C.Hope).,0,20,2012 -20130113_SEA@ATL,3,24,53,SEA,ATL,1,10,29,(9:53) (Shotgun) R.Wilson pass deep left to G.Tate for 29 yards TOUCHDOWN.,0,20,2012 -20130113_SEA@ATL,3,24,53,SEA,ATL,,,29,R.Longwell extra point is GOOD Center-C.Gresham Holder-J.Ryan.,0,20,2012 -20130113_SEA@ATL,3,24,53,SEA,ATL,,,29,R.Longwell kicks 62 yards from SEA 35 to ATL 3. Jz. Rodgers to ATL 20 for 17 yards (J.Lane).,7,20,2012 -20130113_SEA@ATL,3,24,43,ATL,SEA,1,10,80,(9:43) M.Turner left end to ATL 25 for 5 yards (K.Wright; L.Hill).,20,7,2012 -20130113_SEA@ATL,3,24,5,ATL,SEA,2,5,75,(9:05) Jz. Rodgers right end to ATL 25 for no gain (B.Mebane).,20,7,2012 -20130113_SEA@ATL,3,23,24,ATL,SEA,3,5,75,(8:24) (Shotgun) M.Ryan pass short left to T.Gonzalez to ATL 31 for 6 yards (B.Wagner).,20,7,2012 -20130113_SEA@ATL,3,22,42,ATL,SEA,1,10,69,(7:42) M.Ryan pass short right to Jz. Rodgers to ATL 33 for 2 yards (L.Hill).,20,7,2012 -20130113_SEA@ATL,3,22,0,ATL,SEA,2,8,67,(7:00) (Shotgun) M.Ryan pass short right to J.Jones to ATL 46 for 13 yards (E.Thomas).,20,7,2012 -20130113_SEA@ATL,3,21,17,ATL,SEA,1,10,54,(6:17) M.Turner right guard to ATL 49 for 3 yards (L.Hill).,20,7,2012 -20130113_SEA@ATL,3,20,41,ATL,SEA,2,7,51,(5:41) M.Ryan pass short left to H.Douglas ran ob at SEA 44 for 7 yards.,20,7,2012 -20130113_SEA@ATL,3,20,14,ATL,SEA,1,10,44,(5:14) M.Ryan pass incomplete deep right to H.Douglas.,20,7,2012 -20130113_SEA@ATL,3,20,7,ATL,SEA,2,10,44,(5:07) (Shotgun) M.Ryan pass short left to J.Jones to SEA 23 for 21 yards (E.Thomas; K.Wright).,20,7,2012 -20130113_SEA@ATL,3,19,27,ATL,SEA,1,10,23,(4:27) Jz. Rodgers left end to SEA 22 for 1 yard (K.Wright).,20,7,2012 -20130113_SEA@ATL,3,18,46,ATL,SEA,2,9,22,(3:46) M.Ryan pass incomplete short left to J.Jones.,20,7,2012 -20130113_SEA@ATL,3,18,41,ATL,SEA,3,9,22,(3:41) (Shotgun) M.Ryan pass short left to T.Gonzalez to SEA 11 for 11 yards (W.Guy).,20,7,2012 -20130113_SEA@ATL,3,18,0,ATL,SEA,1,10,11,(3:00) M.Ryan pass short right to Jz. Rodgers to SEA 5 for 6 yards (B.Wagner).,20,7,2012 -20130113_SEA@ATL,3,17,11,ATL,SEA,2,4,5,(2:11) (Shotgun) M.Ryan pass short middle to J.Snelling for 5 yards TOUCHDOWN.,20,7,2012 -20130113_SEA@ATL,3,17,11,ATL,SEA,,,5,M.Bryant extra point is Blocked (R.Sherman) Center-J.Harris Holder-M.Bosher. PENALTY on SEA-R.Sherman Defensive Offside 0 yards enforced at SEA 2 - No Play.,20,7,2012 -20130113_SEA@ATL,3,17,11,ATL,SEA,,,5,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher. PENALTY on SEA-R.Sherman Defensive Offside 5 yards enforced between downs.,20,7,2012 -20130113_SEA@ATL,3,17,11,ATL,SEA,,,5,M.Bosher kicks 60 yards from ATL 40 to end zone Touchback.,27,7,2012 -20130113_SEA@ATL,3,17,11,SEA,ATL,1,10,80,(2:11) (Shotgun) M.Lynch right tackle to SEA 25 for 5 yards (S.Nicholas; C.Matthews).,7,27,2012 -20130113_SEA@ATL,3,16,32,SEA,ATL,2,5,75,(1:32) (Shotgun) R.Wilson pass deep left to G.Tate to SEA 49 for 24 yards (A.Dent) [P.Jerry].,7,27,2012 -20130113_SEA@ATL,3,15,49,SEA,ATL,1,10,51,(:49) R.Wilson pass short right to S.Rice to ATL 39 for 12 yards (A.Samuel).,7,27,2012 -20130113_SEA@ATL,3,15,17,SEA,ATL,1,10,39,(:17) R.Wilson pass deep left to Z.Miller pushed ob at ATL 13 for 26 yards (D.Robinson).,7,27,2012 -20130113_SEA@ATL,4,15,0,SEA,ATL,1,10,13,(15:00) (Shotgun) R.Wilson pass short right to R.Turbin to ATL 6 for 7 yards (W.Moore).,7,27,2012 -20130113_SEA@ATL,4,14,17,SEA,ATL,2,3,6,(14:17) (Shotgun) R.Turbin left guard to ATL 1 for 5 yards (V.Walker).,7,27,2012 -20130113_SEA@ATL,4,13,44,SEA,ATL,1,1,1,(13:44) M.Lynch right end to ATL 1 for no gain (A.Dent; P.Jerry).,7,27,2012 -20130113_SEA@ATL,4,13,6,SEA,ATL,2,1,1,(13:06) R.Wilson scrambles left end for 1 yard TOUCHDOWN.,7,27,2012 -20130113_SEA@ATL,4,13,6,SEA,ATL,,,1,R.Longwell extra point is GOOD Center-C.Gresham Holder-J.Ryan.,7,27,2012 -20130113_SEA@ATL,4,13,6,SEA,ATL,,,1,R.Longwell kicks 65 yards from SEA 35 to end zone Touchback.,14,27,2012 -20130113_SEA@ATL,4,13,1,ATL,SEA,1,10,80,(13:01) M.Turner left end ran ob at ATL 29 for 9 yards.,27,14,2012 -20130113_SEA@ATL,4,12,30,ATL,SEA,2,1,71,(12:30) M.Turner right tackle to ATL 32 for 3 yards (B.Mebane).,27,14,2012 -20130113_SEA@ATL,4,11,50,ATL,SEA,1,10,68,(11:50) J.Jones right end to ATL 31 for -1 yards (K.Wright).,27,14,2012 -20130113_SEA@ATL,4,11,9,ATL,SEA,2,11,69,(11:09) (Shotgun) M.Ryan pass deep left intended for R.White INTERCEPTED by E.Thomas at SEA 39. E.Thomas ran ob at SEA 38 for -1 yards.,27,14,2012 -20130113_SEA@ATL,4,11,3,SEA,ATL,1,10,62,(11:03) (Shotgun) R.Wilson pass deep left to S.Rice ran ob at ATL 38 for 24 yards.,14,27,2012 -20130113_SEA@ATL,4,10,39,SEA,ATL,1,10,38,(10:39) (Shotgun) M.Lynch left guard to ATL 33 for 5 yards (S.Nicholas).,14,27,2012 -20130113_SEA@ATL,4,9,54,SEA,ATL,2,5,33,(9:54) (Shotgun) R.Wilson pass short right to R.Turbin pushed ob at ATL 3 for 30 yards (T.DeCoud).,14,27,2012 -20130113_SEA@ATL,4,9,19,SEA,ATL,1,3,3,(9:19) R.Wilson pass short left to Z.Miller for 3 yards TOUCHDOWN.,14,27,2012 -20130113_SEA@ATL,4,9,19,SEA,ATL,,,3,R.Longwell extra point is GOOD Center-C.Gresham Holder-J.Ryan.,14,27,2012 -20130113_SEA@ATL,4,9,19,SEA,ATL,,,3,R.Longwell kicks 67 yards from SEA 35 to ATL -2. Jz. Rodgers to ATL 24 for 26 yards (D.Baldwin).,21,27,2012 -20130113_SEA@ATL,4,9,7,ATL,SEA,1,10,76,(9:07) M.Ryan pass incomplete deep left to R.White.,27,21,2012 -20130113_SEA@ATL,4,9,2,ATL,SEA,2,10,76,(9:02) (Shotgun) M.Ryan pass short left to J.Jones to ATL 21 for -3 yards (K.Wright).,27,21,2012 -20130113_SEA@ATL,4,8,19,ATL,SEA,3,13,79,(8:19) (Shotgun) M.Ryan pass short right to DJ.Davis to ATL 27 for 6 yards (E.Thomas).,27,21,2012 -20130113_SEA@ATL,4,7,34,ATL,SEA,4,7,73,(7:34) M.Bosher punts 42 yards to SEA 31 Center-J.Harris. L.Washington to SEA 40 for 9 yards (A.Dent; A.Smith).,27,21,2012 -20130113_SEA@ATL,4,7,23,SEA,ATL,1,10,60,(7:23) R.Wilson scrambles left end to SEA 49 for 9 yards.,21,27,2012 -20130113_SEA@ATL,4,6,40,SEA,ATL,2,1,51,(6:40) M.Lynch right guard to 50 for 1 yard (S.Weatherspoon).,21,27,2012 -20130113_SEA@ATL,4,6,0,SEA,ATL,1,10,50,(6:00) (Shotgun) R.Wilson pass incomplete deep middle to S.Rice (T.DeCoud).,21,27,2012 -20130113_SEA@ATL,4,5,54,SEA,ATL,2,10,50,(5:54) (Shotgun) R.Wilson pass incomplete short right to R.Turbin.,21,27,2012 -20130113_SEA@ATL,4,5,48,SEA,ATL,3,10,50,(5:48) (Shotgun) R.Wilson pass incomplete short middle to S.Rice. Penalty on SEA-M.Unger Chop Block declined.,21,27,2012 -20130113_SEA@ATL,4,5,40,SEA,ATL,4,10,50,(5:40) J.Ryan punts 50 yards to end zone Center-C.Gresham Touchback.,21,27,2012 -20130113_SEA@ATL,4,5,32,ATL,SEA,1,10,80,(5:32) M.Turner right tackle to ATL 32 for 12 yards (L.Hill).,27,21,2012 -20130113_SEA@ATL,4,4,47,ATL,SEA,1,10,68,(4:47) Jz. Rodgers left tackle to ATL 34 for 2 yards (R.Bryant).,27,21,2012 -20130113_SEA@ATL,4,4,3,ATL,SEA,2,8,66,(4:03) (Shotgun) Jz. Rodgers left end to ATL 34 for no gain (K.Wright).,27,21,2012 -20130113_SEA@ATL,4,3,15,ATL,SEA,3,8,66,(3:15) (Shotgun) M.Ryan pass incomplete short right to R.White.,27,21,2012 -20130113_SEA@ATL,4,3,9,ATL,SEA,4,8,66,(3:09) M.Bosher punts 42 yards to SEA 24 Center-J.Harris. L.Washington to SEA 39 for 15 yards (M.Palmer; DJ.Davis).,27,21,2012 -20130113_SEA@ATL,4,3,0,SEA,ATL,1,10,61,(3:00) (Shotgun) M.Lynch right guard to SEA 42 for 3 yards (S.Weatherspoon; J.Massaquoi).,21,27,2012 -20130113_SEA@ATL,4,2,25,SEA,ATL,2,7,58,(2:25) R.Wilson pass short left to M.Lynch to SEA 49 for 7 yards (D.Robinson).,21,27,2012 -20130113_SEA@ATL,4,2,0,SEA,ATL,1,10,51,(2:00) (Shotgun) R.Wilson pass deep middle to G.Tate to ATL 32 for 19 yards (S.Weatherspoon; W.Moore).,21,27,2012 -20130113_SEA@ATL,4,1,20,SEA,ATL,1,10,32,(1:20) (Shotgun) R.Wilson scrambles right end to ATL 27 for 5 yards (S.Weatherspoon).,21,27,2012 -20130113_SEA@ATL,4,0,49,SEA,ATL,2,5,27,(:49) (Shotgun) R.Wilson pass incomplete deep right to Z.Miller.,21,27,2012 -20130113_SEA@ATL,4,0,44,SEA,ATL,3,5,27,(:44) (Shotgun) R.Wilson pass short left to M.Lynch pushed ob at ATL 3 for 24 yards (C.Hope).,21,27,2012 -20130113_SEA@ATL,4,0,34,SEA,ATL,1,3,3,(:34) (Shotgun) PENALTY on ATL Defensive 12 On-field 1 yard enforced at ATL 3 - No Play.,21,27,2012 -20130113_SEA@ATL,4,0,34,SEA,ATL,1,2,2,(:34) M.Lynch right guard for 2 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,21,27,2012 -20130113_SEA@ATL,4,0,34,SEA,ATL,,,2,R.Longwell extra point is GOOD Center-C.Gresham Holder-J.Ryan.,21,27,2012 -20130113_SEA@ATL,4,0,34,SEA,ATL,,,2,R.Longwell kicks 71 yards from SEA 35 to ATL -6. Jz. Rodgers to ATL 28 for 34 yards (K.Chancellor).,28,27,2012 -20130113_SEA@ATL,4,0,25,ATL,SEA,1,10,72,(:25) (Shotgun) M.Ryan pass deep left to H.Douglas to 50 for 22 yards (B.Browner).,27,28,2012 -20130113_SEA@ATL,4,0,19,ATL,SEA,1,10,50,(:19) (Shotgun) M.Ryan pass short right to T.Gonzalez to SEA 31 for 19 yards (E.Thomas).,27,28,2012 -20130113_SEA@ATL,4,0,13,ATL,SEA,1,10,31,(:13) K.Biermann and M.Johnson reported in as eligible. M.Bryant 49 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,27,28,2012 -20130113_SEA@ATL,4,0,13,ATL,SEA,,,31,M.Bosher kicks onside 19 yards from ATL 35 to SEA 46 impetus ends at 50. H.Farwell (didn't try to advance) to SEA 46 for no gain.,30,28,2012 -20130113_SEA@ATL,4,0,6,SEA,ATL,1,10,54,(:06) (Shotgun) R.Wilson pass short left to D.Baldwin ran ob at ATL 48 for 6 yards.,28,30,2012 -20130113_SEA@ATL,4,0,2,SEA,ATL,2,4,48,(:02) (Shotgun) R.Wilson pass deep right intended for D.Baldwin INTERCEPTED by J.Jones at ATL 0. Touchback.,28,30,2012 -20130113_SEA@ATL,4,0,2,SEA,ATL,,,48,                      ,28,30,2012 -20130113_HOU@NE,1,0,0,NE,HOU,,,48,S.Gostkowski kicks 71 yards from NE 35 to HST -6. D.Manning to NE 12 for 94 yards (D.McCourty).,0,0,2012 -20130113_HOU@NE,1,59,49,HOU,NE,1,10,12,(14:49) A.Foster left guard to NE 9 for 3 yards (V.Wilfork; R.Ninkovich).,0,0,2012 -20130113_HOU@NE,1,59,9,HOU,NE,2,7,9,(14:09) M.Schaub pass incomplete short middle to J.Casey.,0,0,2012 -20130113_HOU@NE,1,59,5,HOU,NE,3,7,9,(14:05) (Shotgun) M.Schaub pass incomplete short middle to A.Johnson.,0,0,2012 -20130113_HOU@NE,1,59,0,HOU,NE,4,7,9,(14:00) S.Graham 27 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,0,2012 -20130113_HOU@NE,1,59,0,HOU,NE,,,9,S.Graham kicks 60 yards from HST 35 to NE 5. D.McCourty to NE 19 for 14 yards (A.Ball).,3,0,2012 -20130113_HOU@NE,1,58,51,NE,HOU,1,10,81,(13:51) NE 12-Brady 23rd career postseason game new franchise record (Bruschi 22). D.Woodhead left guard to NE 19 for no gain (J.Watt; G.Quin).,0,3,2012 -20130113_HOU@NE,1,58,23,NE,HOU,2,10,81,(13:23) (No Huddle Shotgun) T.Brady pass short middle to W.Welker to NE 27 for 8 yards (K.Jackson).,0,3,2012 -20130113_HOU@NE,1,57,52,NE,HOU,3,2,73,(12:52) (No Huddle Shotgun) T.Brady pass incomplete short right to B.Lloyd.,0,3,2012 -20130113_HOU@NE,1,57,48,NE,HOU,4,2,73,(12:48) Z.Mesko punts 61 yards to HST 12 Center-D.Aiken. K.Martin to HST 17 for 5 yards (M.Cole).,0,3,2012 -20130113_HOU@NE,1,57,38,HOU,NE,1,10,83,(12:38) M.Schaub pass short middle to O.Daniels to HST 27 for 10 yards (S.Gregory).,3,0,2012 -20130113_HOU@NE,1,57,9,HOU,NE,1,10,73,(12:09) M.Schaub pass short right to A.Johnson to HST 38 for 11 yards (A.Talib).,3,0,2012 -20130113_HOU@NE,1,56,37,HOU,NE,1,10,62,(11:37) M.Schaub pass short left to A.Foster to NE 49 for 13 yards (C.Jones).,3,0,2012 -20130113_HOU@NE,1,55,58,HOU,NE,1,10,49,(10:58) A.Foster up the middle to 50 for -1 yards (V.Wilfork; B.Spikes).,3,0,2012 -20130113_HOU@NE,1,55,17,HOU,NE,2,11,50,(10:17) (Shotgun) M.Schaub pass incomplete short left to A.Johnson.,3,0,2012 -20130113_HOU@NE,1,55,13,HOU,NE,3,11,50,(10:13) (Shotgun) M.Schaub pass short middle to O.Daniels to NE 45 for 5 yards (S.Gregory; A.Talib) [R.Ninkovich].,3,0,2012 -20130113_HOU@NE,1,54,35,HOU,NE,4,6,45,(9:35) D.Jones punts 33 yards to NE 12 Center-J.Weeks downed by HST-D.Posey.,3,0,2012 -20130113_HOU@NE,1,54,27,NE,HOU,1,10,88,(9:27) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 17 for 5 yards (B.James; B.Ruud).,0,3,2012 -20130113_HOU@NE,1,54,7,NE,HOU,2,5,83,(9:07) (No Huddle) T.Brady pass short right to A.Hernandez to NE 23 for 6 yards (D.Manning).,0,3,2012 -20130113_HOU@NE,1,53,39,NE,HOU,1,10,77,(8:39) (No Huddle) S.Vereen left end pushed ob at NE 22 for -1 yards (C.Barwin).,0,3,2012 -20130113_HOU@NE,1,53,16,NE,HOU,2,11,78,(8:16) (No Huddle Shotgun) T.Brady pass incomplete deep right to R.Gronkowski [A.Smith]. NE-R.Gronkowski was injured during the play.,0,3,2012 -20130113_HOU@NE,1,53,10,NE,HOU,3,11,78,(8:10) (Shotgun) T.Brady pass short right to W.Welker to NE 33 for 11 yards (K.Jackson).,0,3,2012 -20130113_HOU@NE,1,52,26,NE,HOU,1,10,67,(7:26) T.Brady sacked at NE 24 for -9 yards (sack split by J.Watt and B.Reed).,0,3,2012 -20130113_HOU@NE,1,51,50,NE,HOU,2,19,76,(6:50) (Shotgun) T.Brady pass short right to W.Welker to NE 35 for 11 yards (C.Barwin).,0,3,2012 -20130113_HOU@NE,1,51,5,NE,HOU,3,8,65,(6:05) (Shotgun) T.Brady pass incomplete short middle to W.Welker [A.Smith].,0,3,2012 -20130113_HOU@NE,1,51,0,NE,HOU,4,8,65,(6:00) Z.Mesko punts 57 yards to HST 8 Center-D.Aiken. K.Martin to HST 20 for 12 yards (P.Chung; M.Slater).,0,3,2012 -20130113_HOU@NE,1,50,49,HOU,NE,1,10,80,(5:49) M.Schaub pass short right to A.Johnson pushed ob at HST 34 for 14 yards (A.Talib).,3,0,2012 -20130113_HOU@NE,1,50,27,HOU,NE,1,10,66,(5:27) A.Foster right tackle to HST 36 for 2 yards (D.McCourty).,3,0,2012 -20130113_HOU@NE,1,49,43,HOU,NE,2,8,64,(4:43) M.Schaub pass incomplete short left to A.Johnson.,3,0,2012 -20130113_HOU@NE,1,49,40,HOU,NE,3,8,64,(4:40) (Shotgun) M.Schaub pass incomplete short middle to A.Foster.,3,0,2012 -20130113_HOU@NE,1,49,36,HOU,NE,4,8,64,(4:36) D.Jones punts 29 yards to NE 35 Center-J.Weeks out of bounds.,3,0,2012 -20130113_HOU@NE,1,49,29,NE,HOU,1,10,65,(4:29) S.Ridley right guard to NE 49 for 14 yards (B.James).,0,3,2012 -20130113_HOU@NE,1,48,57,NE,HOU,1,10,51,(3:57) S.Ridley left guard to NE 47 for -2 yards (B.James).,0,3,2012 -20130113_HOU@NE,1,48,20,NE,HOU,2,12,53,(3:20) T.Brady pass short right to S.Ridley to HST 40 for 13 yards (C.Barwin).,0,3,2012 -20130113_HOU@NE,1,47,38,NE,HOU,1,10,40,(2:38) (Shotgun) T.Brady pass short right to S.Vereen to HST 15 for 25 yards (D.Manning).,0,3,2012 -20130113_HOU@NE,1,46,55,NE,HOU,1,10,15,(1:55) (Shotgun) T.Brady pass short left to A.Hernandez to HST 1 for 14 yards (B.Ruud; J.Joseph).,0,3,2012 -20130113_HOU@NE,1,46,31,NE,HOU,1,1,1,(1:31) (No Huddle) S.Vereen left tackle for 1 yard TOUCHDOWN.,0,3,2012 -20130113_HOU@NE,1,46,31,NE,HOU,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,3,2012 -20130113_HOU@NE,1,46,31,NE,HOU,,,1,S.Gostkowski kicks 74 yards from NE 35 to HST -9. D.Manning Touchback.,7,3,2012 -20130113_HOU@NE,1,46,28,HOU,NE,1,10,80,(1:28) M.Schaub pass deep middle to A.Johnson to HST 36 for 16 yards (A.Talib).,3,7,2012 -20130113_HOU@NE,1,45,50,HOU,NE,1,10,64,(:50) A.Foster right tackle to HST 35 for -1 yards (R.Ninkovich; J.Mayo).,3,7,2012 -20130113_HOU@NE,1,45,7,HOU,NE,2,11,65,(:07) M.Schaub pass short left to A.Foster pushed ob at HST 47 for 12 yards (A.Dennard).,3,7,2012 -20130113_HOU@NE,2,45,0,HOU,NE,1,10,53,(15:00) A.Foster up the middle to HST 47 for no gain (V.Wilfork; D.Hightower).,3,7,2012 -20130113_HOU@NE,2,44,25,HOU,NE,2,10,53,(14:25) M.Schaub pass incomplete short middle to O.Daniels.,3,7,2012 -20130113_HOU@NE,2,44,20,HOU,NE,3,10,53,(14:20) (Shotgun) M.Schaub pass incomplete deep left to O.Daniels.,3,7,2012 -20130113_HOU@NE,2,44,14,HOU,NE,4,10,53,(14:14) D.Jones punts 37 yards to NE 16 Center-J.Weeks fair catch by W.Welker.,3,7,2012 -20130113_HOU@NE,2,44,7,NE,HOU,1,10,84,(14:07) S.Ridley right guard to NE 18 for 2 yards (B.Reed; E.Mitchell).,7,3,2012 -20130113_HOU@NE,2,43,35,NE,HOU,2,8,82,(13:35) T.Brady pass incomplete short left to W.Welker.,7,3,2012 -20130113_HOU@NE,2,43,31,NE,HOU,3,8,82,(13:31) (Shotgun) T.Brady pass short middle to W.Welker to NE 48 for 30 yards (G.Quin; S.Keo).,7,3,2012 -20130113_HOU@NE,2,43,6,NE,HOU,1,10,52,(13:06) (No Huddle) S.Vereen left tackle to HST 30 for 22 yards (D.Manning; B.James).,7,3,2012 -20130113_HOU@NE,2,42,21,NE,HOU,1,10,30,(12:21) (No Huddle Shotgun) S.Vereen right guard to HST 22 for 8 yards (S.Keo; C.Barwin).,7,3,2012 -20130113_HOU@NE,2,41,41,NE,HOU,2,2,22,(11:41) (No Huddle Shotgun) T.Brady pass incomplete short left to W.Welker.,7,3,2012 -20130113_HOU@NE,2,41,36,NE,HOU,3,2,22,(11:36) S.Vereen left tackle to HST 16 for 6 yards (S.Keo).,7,3,2012 -20130113_HOU@NE,2,40,56,NE,HOU,1,10,16,(10:56) (Shotgun) T.Brady pass incomplete short left to B.Lloyd. PENALTY on NE-B.Lloyd Unsportsmanlike Conduct 15 yards enforced at HST 16.,7,3,2012 -20130113_HOU@NE,2,40,53,NE,HOU,2,25,31,(10:53) (Shotgun) T.Brady pass short left to S.Vereen to HST 19 for 12 yards (S.Keo; B.James).,7,3,2012 -20130113_HOU@NE,2,40,25,NE,HOU,3,13,19,(10:25) (Shotgun) T.Brady pass incomplete deep middle to A.Hernandez.,7,3,2012 -20130113_HOU@NE,2,40,20,NE,HOU,4,13,19,(10:20) S.Gostkowski 37 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,7,3,2012 -20130113_HOU@NE,2,40,20,NE,HOU,,,19,S.Gostkowski kicks 74 yards from NE 35 to HST -9. D.Manning Touchback.,10,3,2012 -20130113_HOU@NE,2,40,16,HOU,NE,1,10,80,(10:16) M.Schaub pass short left to A.Johnson to HST 33 for 13 yards (A.Talib).,3,10,2012 -20130113_HOU@NE,2,39,41,HOU,NE,1,10,67,(9:41) A.Foster left end to HST 40 for 7 yards (A.Talib).,3,10,2012 -20130113_HOU@NE,2,39,2,HOU,NE,2,3,60,(9:02) A.Foster right tackle to HST 39 for -1 yards (R.Ninkovich). PENALTY on HST-D.Newton Offensive Holding 10 yards enforced at HST 40 - No Play.,3,10,2012 -20130113_HOU@NE,2,38,40,HOU,NE,2,13,70,(8:40) M.Schaub pass deep left to D.Posey pushed ob at NE 46 for 24 yards (D.McCourty).,3,10,2012 -20130113_HOU@NE,2,38,6,HOU,NE,1,10,46,(8:06) M.Schaub pass incomplete short middle to O.Daniels (S.Gregory).,3,10,2012 -20130113_HOU@NE,2,38,2,HOU,NE,2,10,46,(8:02) (Shotgun) M.Schaub pass short right to D.Posey to NE 48 for -2 yards (D.Hightower).,3,10,2012 -20130113_HOU@NE,2,37,17,HOU,NE,3,12,48,(7:17) (Shotgun) M.Schaub pass short middle to G.Graham to NE 43 for 5 yards (S.Gregory).,3,10,2012 -20130113_HOU@NE,2,36,42,HOU,NE,4,7,43,(6:42) D.Jones punts 43 yards to end zone Center-J.Weeks Touchback.,3,10,2012 -20130113_HOU@NE,2,36,34,NE,HOU,1,10,80,(6:34) S.Ridley left guard to NE 19 for -1 yards (J.Watt).,10,3,2012 -20130113_HOU@NE,2,35,56,NE,HOU,2,11,81,(5:56) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,10,3,2012 -20130113_HOU@NE,2,35,53,NE,HOU,3,11,81,(5:53) (Shotgun) T.Brady pass short left to W.Welker to NE 32 for 13 yards (B.Harris).,10,3,2012 -20130113_HOU@NE,2,35,17,NE,HOU,1,10,68,(5:17) T.Brady pass short left to B.Lloyd to NE 39 for 7 yards (A.Ball).,10,3,2012 -20130113_HOU@NE,2,34,43,NE,HOU,2,3,61,(4:43) S.Ridley up the middle to NE 45 for 6 yards (J.Crick; B.James).,10,3,2012 -20130113_HOU@NE,2,34,6,NE,HOU,1,10,55,(4:06) T.Brady pass deep left to W.Welker pushed ob at HST 8 for 47 yards (G.Quin) [C.Barwin]. NE 83-Welker now has 59 career postseason receptions new franchise record (Troy Brown 58).,10,3,2012 -20130113_HOU@NE,2,33,43,NE,HOU,1,8,8,(3:43) (Shotgun) T.Brady pass short left to S.Vereen for 8 yards TOUCHDOWN.,10,3,2012 -20130113_HOU@NE,2,33,43,NE,HOU,,,8,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,10,3,2012 -20130113_HOU@NE,2,33,43,NE,HOU,,,8,S.Gostkowski kicks 62 yards from NE 35 to HST 3. D.Manning to HST 38 for 35 yards (S.Gostkowski). PENALTY on NE-S.Gostkowski Horse Collar Tackle 15 yards enforced at HST 38.,17,3,2012 -20130113_HOU@NE,2,33,30,HOU,NE,1,10,47,(3:30) A.Foster right tackle to NE 26 for 21 yards (D.McCourty).,3,17,2012 -20130113_HOU@NE,2,32,59,HOU,NE,1,10,26,(2:59) A.Foster right tackle pushed ob at NE 7 for 19 yards (D.McCourty).,3,17,2012 -20130113_HOU@NE,2,32,27,HOU,NE,1,7,7,(2:27) A.Foster left tackle to NE 5 for 2 yards (C.Jones; S.Gregory).,3,17,2012 -20130113_HOU@NE,2,32,0,HOU,NE,2,5,5,(2:00) A.Foster left tackle to NE 1 for 4 yards (A.Talib).,3,17,2012 -20130113_HOU@NE,2,31,20,HOU,NE,3,1,1,(1:20) A.Foster left guard for 1 yard TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,3,17,2012 -20130113_HOU@NE,2,31,20,HOU,NE,,,1,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,17,2012 -20130113_HOU@NE,2,31,9,NE,HOU,1,10,74,(1:09) (Shotgun) S.Vereen left guard to NE 30 for 4 yards (A.Smith).,17,10,2012 -20130113_HOU@NE,2,30,40,NE,HOU,2,6,70,(:40) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,17,10,2012 -20130113_HOU@NE,2,30,36,NE,HOU,3,6,70,(:36) (Shotgun) T.Brady pass incomplete short left to A.Hernandez [C.Barwin].,17,10,2012 -20130113_HOU@NE,2,30,31,NE,HOU,4,6,70,(:31) Z.Mesko punts 32 yards to HST 38 Center-D.Aiken out of bounds.,17,10,2012 -20130113_HOU@NE,2,30,24,HOU,NE,1,10,62,(:24) (Shotgun) M.Schaub pass short left to J.Casey to HST 47 for 9 yards (J.Mayo).,10,17,2012 -20130113_HOU@NE,2,30,18,HOU,NE,2,1,53,(:18) (Shotgun) M.Schaub pass short left to O.Daniels to NE 42 for 11 yards (S.Gregory; T.Wilson).,10,17,2012 -20130113_HOU@NE,2,30,11,HOU,NE,1,10,42,(:11) (Shotgun) M.Schaub pass incomplete short right to O.Daniels.,10,17,2012 -20130113_HOU@NE,2,30,7,HOU,NE,2,10,42,(:07) (Shotgun) M.Schaub pass short middle to O.Daniels to NE 37 for 5 yards (T.Wilson).,10,17,2012 -20130113_HOU@NE,2,30,2,HOU,NE,3,5,37,(:02) S.Graham 55 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,10,17,2012 -20130113_HOU@NE,3,30,0,HOU,NE,,,37,S.Graham kicks 53 yards from HST 35 to NE 12. M.Slater to NE 31 for 19 yards (Q.Demps; E.Pleasant).,13,17,2012 -20130113_HOU@NE,3,29,54,NE,HOU,1,10,69,(14:54) T.Brady pass incomplete deep left to B.Lloyd.,17,13,2012 -20130113_HOU@NE,3,29,50,NE,HOU,2,10,69,(14:50) (Shotgun) T.Brady pass short left to W.Welker to NE 37 for 6 yards (K.Jackson; J.Joseph).,17,13,2012 -20130113_HOU@NE,3,29,12,NE,HOU,3,4,63,(14:12) (Shotgun) T.Brady pass short middle to A.Hernandez to NE 43 for 6 yards (G.Quin; D.Manning).,17,13,2012 -20130113_HOU@NE,3,28,34,NE,HOU,1,10,57,(13:34) (Shotgun) T.Brady pass short right to W.Welker to NE 48 for 5 yards (K.Jackson; B.James).,17,13,2012 -20130113_HOU@NE,3,27,52,NE,HOU,2,5,52,(12:52) (No Huddle Shotgun) T.Brady pass short right to A.Hernandez to HST 12 for 40 yards (B.Harris).,17,13,2012 -20130113_HOU@NE,3,27,10,NE,HOU,1,10,12,(12:10) S.Ridley right guard to HST 8 for 4 yards (B.James; C.Barwin).,17,13,2012 -20130113_HOU@NE,3,26,34,NE,HOU,2,6,8,(11:34) S.Ridley right guard for 8 yards TOUCHDOWN.,17,13,2012 -20130113_HOU@NE,3,26,34,NE,HOU,,,8,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,17,13,2012 -20130113_HOU@NE,3,26,34,NE,HOU,,,8,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,24,13,2012 -20130113_HOU@NE,3,26,30,HOU,NE,1,10,80,(11:30) A.Foster right guard to HST 26 for 6 yards (B.Deaderick).,13,24,2012 -20130113_HOU@NE,3,25,56,HOU,NE,2,4,74,(10:56) M.Schaub pass short left to O.Daniels to HST 25 for -1 yards (J.Mayo).,13,24,2012 -20130113_HOU@NE,3,25,2,HOU,NE,3,5,75,(10:02) (Shotgun) M.Schaub pass incomplete short right to O.Daniels.,13,24,2012 -20130113_HOU@NE,3,24,55,HOU,NE,4,5,75,(9:55) D.Jones punts 40 yards to NE 35 Center-J.Weeks. W.Welker to NE 35 for no gain (Q.Demps).,13,24,2012 -20130113_HOU@NE,3,24,47,NE,HOU,1,10,65,(9:47) (Shotgun) T.Brady pass short left to S.Vereen to NE 40 for 5 yards (B.Ruud).,24,13,2012 -20130113_HOU@NE,3,24,9,NE,HOU,2,5,60,(9:09) (Shotgun) T.Brady pass incomplete short middle to W.Welker.,24,13,2012 -20130113_HOU@NE,3,24,5,NE,HOU,3,5,60,(9:05) (Shotgun) T.Brady pass incomplete short right to S.Vereen.,24,13,2012 -20130113_HOU@NE,3,23,57,NE,HOU,4,5,60,(8:57) Z.Mesko punts 50 yards to HST 10 Center-D.Aiken. K.Martin MUFFS catch ball out of bounds at HST 10.,24,13,2012 -20130113_HOU@NE,3,23,50,HOU,NE,1,10,90,(8:50) PENALTY on HST-G.Graham False Start 5 yards enforced at HST 10 - No Play.,13,24,2012 -20130113_HOU@NE,3,23,50,HOU,NE,1,15,95,(8:50) M.Schaub pass short left to A.Foster to HST 33 for 28 yards (R.Ninkovich).,13,24,2012 -20130113_HOU@NE,3,23,10,HOU,NE,1,10,67,(8:10) A.Foster left guard to HST 36 for 3 yards (V.Wilfork).,13,24,2012 -20130113_HOU@NE,3,22,35,HOU,NE,2,7,64,(7:35) M.Schaub sacked at HST 27 for -9 yards. FUMBLES and recovers at HST 27. M.Schaub to HST 27 for no gain (R.Ninkovich).,13,24,2012 -20130113_HOU@NE,3,22,0,HOU,NE,3,16,73,(7:00) (Shotgun) M.Schaub pass deep middle to A.Johnson to HST 49 for 22 yards (D.McCourty).,13,24,2012 -20130113_HOU@NE,3,21,29,HOU,NE,1,10,51,(6:29) A.Foster left end pushed ob at NE 44 for 7 yards (S.Gregory).,13,24,2012 -20130113_HOU@NE,3,20,54,HOU,NE,2,3,44,(5:54) M.Schaub pass short left to J.Casey to NE 39 for 5 yards (J.Mayo).,13,24,2012 -20130113_HOU@NE,3,20,26,HOU,NE,1,10,39,(5:26) A.Foster up the middle to NE 38 for 1 yard (B.Spikes).,13,24,2012 -20130113_HOU@NE,3,19,50,HOU,NE,2,9,38,(4:50) M.Schaub pass short left to A.Foster pushed ob at NE 37 for 1 yard (A.Talib).,13,24,2012 -20130113_HOU@NE,3,19,20,HOU,NE,3,8,37,(4:20) (Shotgun) M.Schaub pass short middle intended for J.Casey INTERCEPTED by R.Ninkovich at NE 31. R.Ninkovich to NE 37 for 6 yards (C.Myers).,13,24,2012 -20130113_HOU@NE,3,19,14,NE,HOU,1,10,63,(4:14) S.Ridley up the middle to NE 46 for 9 yards (B.Reed).,24,13,2012 -20130113_HOU@NE,3,18,36,NE,HOU,2,1,54,(3:36) (Shotgun) T.Brady pass short right to A.Hernandez to HST 40 for 14 yards (D.Manning).,24,13,2012 -20130113_HOU@NE,3,17,56,NE,HOU,1,10,40,(2:56) (Shotgun) T.Brady pass short left to B.Lloyd to HST 33 for 7 yards (J.Joseph).,24,13,2012 -20130113_HOU@NE,3,17,21,NE,HOU,2,3,33,(2:21) S.Ridley up the middle to HST 28 for 5 yards (J.Watt; B.Ruud).,24,13,2012 -20130113_HOU@NE,3,16,57,NE,HOU,1,10,28,(1:57) S.Ridley left tackle to HST 5 for 23 yards (D.Manning; G.Quin).,24,13,2012 -20130113_HOU@NE,3,16,25,NE,HOU,1,5,5,(1:25) T.Brady pass short left to B.Lloyd for 5 yards TOUCHDOWN. NE 12-Brady 40th career postseason pass TD 3rd player in NFL history with 40+ postseason pass TD.,24,13,2012 -20130113_HOU@NE,3,16,25,NE,HOU,,,5,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,24,13,2012 -20130113_HOU@NE,3,16,25,NE,HOU,,,5,S.Gostkowski kicks 69 yards from NE 35 to HST -4. D.Manning to HST 14 for 18 yards (M.Cole; N.Koutouvides).,31,13,2012 -20130113_HOU@NE,3,16,15,HOU,NE,1,10,86,(1:15) M.Schaub pass short middle to G.Graham to HST 22 for 8 yards (D.Hightower).,13,31,2012 -20130113_HOU@NE,3,15,49,HOU,NE,2,2,78,(:49) A.Foster up the middle to HST 23 for 1 yard (J.Mayo).,13,31,2012 -20130113_HOU@NE,3,15,15,HOU,NE,3,1,77,(:15) R.Harris reported in as eligible. A.Foster left guard to HST 23 for no gain (K.Love; J.Mayo). measurement,13,31,2012 -20130113_HOU@NE,4,15,0,HOU,NE,4,1,77,(15:00) A.Foster left end to HST 24 for 1 yard (A.Talib). New England challenged the first down ruling and the play was Upheld. (Timeout #1.),13,31,2012 -20130113_HOU@NE,4,14,18,HOU,NE,1,10,76,(14:18) M.Schaub scrambles right guard to HST 25 for 1 yard (V.Wilfork).,13,31,2012 -20130113_HOU@NE,4,13,51,HOU,NE,2,9,75,(13:51) M.Schaub pass incomplete short left to A.Foster.,13,31,2012 -20130113_HOU@NE,4,13,45,HOU,NE,3,9,75,(13:45) (Shotgun) M.Schaub pass short left to K.Walter to HST 33 for 8 yards (A.Dennard). FUMBLES (A.Dennard) ball out of bounds at HST 33.,13,31,2012 -20130113_HOU@NE,4,13,19,HOU,NE,4,1,67,(13:19) M.Schaub pass incomplete deep middle to D.Posey [D.Hightower].,13,31,2012 -20130113_HOU@NE,4,13,13,NE,HOU,1,10,33,(13:13) (Shotgun) T.Brady pass deep left to S.Vereen for 33 yards TOUCHDOWN. NE 12-Brady 5th career postseason 300-yard game. NE 34-Vereen 3rd TD of game ties franchise postseason game record (Martin Gronkowski),31,13,2012 -20130113_HOU@NE,4,13,13,NE,HOU,,,33,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,31,13,2012 -20130113_HOU@NE,4,13,13,NE,HOU,,,33,S.Gostkowski kicks 71 yards from NE 35 to HST -6. D.Manning to NE 37 for 69 yards (K.Arrington).,38,13,2012 -20130113_HOU@NE,4,12,58,HOU,NE,1,10,37,(12:58) (Shotgun) A.Foster up the middle to NE 30 for 7 yards (S.Gregory).,13,38,2012 -20130113_HOU@NE,4,12,39,HOU,NE,2,3,30,(12:39) (No Huddle Shotgun) M.Schaub pass incomplete short left to D.Posey.,13,38,2012 -20130113_HOU@NE,4,12,36,HOU,NE,3,3,30,(12:36) (Shotgun) A.Foster left tackle to NE 28 for 2 yards (J.Francis).,13,38,2012 -20130113_HOU@NE,4,12,7,HOU,NE,4,1,28,(12:07) A.Foster up the middle to NE 25 for 3 yards (B.Spikes).,13,38,2012 -20130113_HOU@NE,4,11,42,HOU,NE,1,10,25,(11:42) (Shotgun) M.Schaub pass incomplete deep right to D.Posey. Houston challenged the incomplete pass ruling and the play was REVERSED. (Shotgun) M.Schaub pass deep right to D.Posey for 25 yards TOUCHDOWN.,13,38,2012 -20130113_HOU@NE,4,11,42,HOU,NE,,,25,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,13,38,2012 -20130113_HOU@NE,4,11,42,HOU,NE,,,25,(Onside Kick formation) S.Graham kicks 74 yards from HST 35 to NE -9. W.Welker Touchback.,20,38,2012 -20130113_HOU@NE,4,11,35,NE,HOU,1,10,80,(11:35) T.Brady pass incomplete short middle to S.Ridley [A.Smith].,38,20,2012 -20130113_HOU@NE,4,11,31,NE,HOU,2,10,80,(11:31) (Shotgun) T.Brady pass short right to B.Lloyd to NE 25 for 5 yards (J.Joseph).,38,20,2012 -20130113_HOU@NE,4,10,50,NE,HOU,3,5,75,(10:50) (Shotgun) T.Brady pass short right to A.Hernandez to NE 46 for 21 yards (J.Watt). PENALTY on NE-A.Hernandez Offensive Pass Interference 10 yards enforced at NE 25 - No Play.,38,20,2012 -20130113_HOU@NE,4,10,17,NE,HOU,3,15,85,(10:17) (Shotgun) T.Brady pass incomplete deep middle to B.Lloyd.,38,20,2012 -20130113_HOU@NE,4,10,11,NE,HOU,4,15,85,(10:11) Z.Mesko punts 64 yards to HST 21 Center-D.Aiken downed by NE-M.Slater.,38,20,2012 -20130113_HOU@NE,4,9,58,HOU,NE,1,10,79,(9:58) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 24 for 3 yards (B.Spikes).,20,38,2012 -20130113_HOU@NE,4,9,58,HOU,NE,2,7,76,(9:58) (Shotgun) M.Schaub pass short middle to O.Daniels to HST 30 for 6 yards (B.Spikes).,20,38,2012 -20130113_HOU@NE,4,9,3,HOU,NE,3,1,70,(9:03) (No Huddle Shotgun) M.Schaub pass short middle to K.Walter to HST 37 for 7 yards (S.Gregory). PENALTY on NE-S.Gregory Unnecessary Roughness 15 yards enforced at HST 37.,20,38,2012 -20130113_HOU@NE,4,8,45,HOU,NE,1,10,48,(8:45) (Shotgun) M.Schaub pass short middle to A.Foster to NE 39 for 9 yards (S.Gregory).,20,38,2012 -20130113_HOU@NE,4,8,17,HOU,NE,2,1,39,(8:17) (Shotgun) M.Schaub pass short right to A.Foster to NE 40 for -1 yards (J.Mayo) [J.Francis].,20,38,2012 -20130113_HOU@NE,4,7,43,HOU,NE,3,2,40,(7:43) (Shotgun) M.Schaub pass short middle to O.Daniels to NE 16 for 24 yards (D.McCourty).,20,38,2012 -20130113_HOU@NE,4,7,15,HOU,NE,1,10,16,(7:15) (No Huddle Shotgun) M.Schaub pass short right to O.Daniels to NE 4 for 12 yards (S.Gregory; B.Spikes).,20,38,2012 -20130113_HOU@NE,4,6,45,HOU,NE,1,4,4,(6:45) A.Foster up the middle to NE 2 for 2 yards (T.Scott). HOU 23-Foster now has 515 career postseason rush yards tied for most ever for 1st 4 career postseason games (Terrell Davis).,20,38,2012 -20130113_HOU@NE,4,6,16,HOU,NE,2,2,2,(6:16) M.Schaub pass incomplete short middle to O.Daniels.,20,38,2012 -20130113_HOU@NE,4,6,13,HOU,NE,3,2,2,(6:13) (Shotgun) M.Schaub right tackle to NE 2 for no gain (D.McCourty). HST-D.Posey was injured during the play. PENALTY on NE-J.Francis Defensive Offside 1 yard enforced at NE 2 - No Play.,20,38,2012 -20130113_HOU@NE,4,5,55,HOU,NE,3,1,1,(5:55) M.Schaub pass short left to A.Johnson to NE 1 for no gain (A.Dennard; D.McCourty).,20,38,2012 -20130113_HOU@NE,4,5,15,HOU,NE,4,1,1,(5:15) (Shotgun) M.Schaub pass short left to A.Foster for 1 yard TOUCHDOWN.,20,38,2012 -20130113_HOU@NE,4,5,15,HOU,NE,,,1,TWO-POINT CONVERSION ATTEMPT. M.Schaub pass to A.Johnson is complete. ATTEMPT SUCCEEDS.,20,38,2012 -20130113_HOU@NE,4,5,15,HOU,NE,,,1,(Onside Kick formation) S.Graham kicks onside 12 yards from HST 35 to HST 47. R.Ninkovich (didn't try to advance) to HST 47 for no gain (W.Mercilus).,28,38,2012 -20130113_HOU@NE,4,5,8,NE,HOU,1,10,47,(5:08) S.Ridley right guard to HST 41 for 6 yards (E.Mitchell; B.James).,38,28,2012 -20130113_HOU@NE,4,4,24,NE,HOU,2,4,41,(4:24) S.Ridley left guard to HST 39 for 2 yards (B.James; W.Mercilus).,38,28,2012 -20130113_HOU@NE,4,4,17,NE,HOU,3,2,39,(4:17) T.Brady pass incomplete short left to W.Welker (A.Smith). PENALTY on HST-K.Jackson Defensive Holding 5 yards enforced at HST 39 - No Play.,38,28,2012 -20130113_HOU@NE,4,4,13,NE,HOU,1,10,34,(4:13) S.Ridley left end to HST 28 for 6 yards (E.Mitchell).,38,28,2012 -20130113_HOU@NE,4,4,7,NE,HOU,2,4,28,(4:07) S.Ridley up the middle to HST 26 for 2 yards (B.Ruud).,38,28,2012 -20130113_HOU@NE,4,4,3,NE,HOU,3,2,26,(4:03) (Shotgun) T.Brady pass short middle to B.Lloyd to HST 18 for 8 yards (J.Joseph).,38,28,2012 -20130113_HOU@NE,4,3,22,NE,HOU,1,10,18,(3:22) S.Ridley left end to HST 20 for -2 yards (E.Mitchell; C.Barwin).,38,28,2012 -20130113_HOU@NE,4,2,38,NE,HOU,2,12,20,(2:38) M.Cannon reported in as eligible. S.Vereen up the middle to HST 19 for 1 yard (B.James; C.Barwin).,38,28,2012 -20130113_HOU@NE,4,2,0,NE,HOU,3,11,19,(2:00) T.Brady kneels to HST 20 for -1 yards.,38,28,2012 -20130113_HOU@NE,4,1,18,NE,HOU,4,12,20,(1:18) S.Gostkowski 38 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,38,28,2012 -20130113_HOU@NE,4,1,18,NE,HOU,,,20,S.Gostkowski kicks 51 yards from NE 35 to HST 14. J.Casey to HST 28 for 14 yards (N.Ebner; M.Cole).,41,28,2012 -20130113_HOU@NE,4,1,9,HOU,NE,1,10,72,(1:09) (Shotgun) M.Schaub pass incomplete short left to J.Casey (R.Ninkovich).,28,41,2012 -20130113_HOU@NE,4,1,4,HOU,NE,2,10,72,(1:04) (Shotgun) M.Schaub pass short middle to A.Johnson to HST 44 for 16 yards (A.Talib).,28,41,2012 -20130113_HOU@NE,4,0,41,HOU,NE,1,10,56,(:41) (No Huddle Shotgun) M.Schaub pass short right to J.Casey to NE 41 for 15 yards (K.Arrington).,28,41,2012 -20130113_HOU@NE,4,0,21,HOU,NE,1,10,41,(:21) (No Huddle Shotgun) M.Schaub pass incomplete short right to L.Jean.,28,41,2012 -20130113_HOU@NE,4,0,17,HOU,NE,2,10,41,(:17) (Shotgun) M.Schaub pass short right to O.Daniels to NE 32 for 9 yards (T.Wilson).,28,41,2012 -20130113_HOU@NE,4,0,17,HOU,NE,,,41,                      ,28,41,2012 -20130120_SF@ATL,1,60,0,SF,ATL,1,10,65,(15:00) David Akers kicked the ball for 65 yards. Touchback ,0,0,2012 -20130120_SF@ATL,1,60,0,ATL,SF,1,10,80,(15:00) Michael Turner rushed for 3 yards. ,0,0,2012 -20130120_SF@ATL,1,59,18,ATL,SF,2,7,77,(14:18) Matt Ryan passed to Julio Jones for 13 yards. ,0,0,2012 -20130120_SF@ATL,1,58,41,ATL,SF,1,10,64,(13:41) Michael Turner rushed for 1 yard. ,0,0,2012 -20130120_SF@ATL,1,58,0,ATL,SF,2,9,63,(13:00) Matt Ryan passed incomplete to Roddy White. ,0,0,2012 -20130120_SF@ATL,1,57,55,ATL,SF,3,9,63,(12:55) Matt Ryan passed to Roddy White for 16 yards. ,0,0,2012 -20130120_SF@ATL,1,57,11,ATL,SF,1,10,47,(12:11) Jacquizz Rodgers rushed for 1 yard. ,0,0,2012 -20130120_SF@ATL,1,56,24,ATL,SF,2,9,46,(11:24) Touchdown. Matt Ryan passed to Julio Jones for 46 yards. ,0,0,2012 -20130120_SF@ATL,1,56,24,ATL,SF,,,46,(11:24) Matt Bryant made the extra point. ,0,0,2012 -20130120_SF@ATL,1,56,24,ATL,SF,1,1,65,(11:24) Matt Bosher kicked the ball for 65 yards. Touchback ,7,0,2012 -20130120_SF@ATL,1,56,24,SF,ATL,1,10,80,(11:24) Colin Kaepernick passed to Michael Crabtree for 1 yard. ,0,7,2012 -20130120_SF@ATL,1,55,44,SF,ATL,2,9,79,(10:44) Frank Gore rushed for no gain. ,0,7,2012 -20130120_SF@ATL,1,55,3,SF,ATL,3,9,79,(10:03) Colin Kaepernick passed incomplete to Vernon Davis. ,0,7,2012 -20130120_SF@ATL,1,54,57,SF,ATL,4,9,79,(9:57) Andy Lee punted for 62 yards. Harry Douglas returned a punt for 1 yard. ,0,7,2012 -20130120_SF@ATL,1,54,43,ATL,SF,1,10,82,(9:43) Matt Ryan passed to Julio Jones for 8 yards. ,7,0,2012 -20130120_SF@ATL,1,54,7,ATL,SF,2,2,74,(9:07) Michael Turner rushed for 3 yards. ,7,0,2012 -20130120_SF@ATL,1,53,27,ATL,SF,1,10,71,(8:27) Matt Ryan passed to Julio Jones for 6 yards. ,7,0,2012 -20130120_SF@ATL,1,52,46,ATL,SF,2,4,65,(7:46) Matt Ryan passed to Tony Gonzalez for 5 yards. ,7,0,2012 -20130120_SF@ATL,1,52,8,ATL,SF,1,10,60,(7:08) Matt Ryan passed to Roddy White for 10 yards. ,7,0,2012 -20130120_SF@ATL,1,51,26,ATL,SF,1,10,50,(6:26) Michael Turner rushed for no gain. ,7,0,2012 -20130120_SF@ATL,1,50,45,ATL,SF,2,10,50,(5:45) Matt Ryan passed incomplete to Julio Jones. ,7,0,2012 -20130120_SF@ATL,1,50,38,ATL,SF,3,10,50,(5:38) Matt Ryan passed to Julio Jones for 27 yards. ,7,0,2012 -20130120_SF@ATL,1,49,53,ATL,SF,1,10,23,(4:53) Jacquizz Rodgers lost 2 yards. ,7,0,2012 -20130120_SF@ATL,1,49,12,ATL,SF,2,12,25,(4:12) Matt Ryan passed to Tony Gonzalez for 8 yards. ,7,0,2012 -20130120_SF@ATL,1,48,28,ATL,SF,3,4,17,(3:28) Matt Ryan passed incomplete to Jacquizz Rodgers. ,7,0,2012 -20130120_SF@ATL,1,48,20,ATL,SF,4,4,17,(3:20) Matt Bryant made a field goal of 35 yards. ,7,0,2012 -20130120_SF@ATL,1,48,20,ATL,SF,1,10,65,(3:20) Matt Bosher kicked the ball for 70 yards. LaMichael James returned the kick for 25 yards. ,10,0,2012 -20130120_SF@ATL,1,48,12,SF,ATL,1,10,80,(3:12) Colin Kaepernick passed incomplete to Randy Moss. ,0,10,2012 -20130120_SF@ATL,1,48,8,SF,ATL,2,10,80,(3:08) Frank Gore rushed for 6 yards. ,0,10,2012 -20130120_SF@ATL,1,47,28,SF,ATL,3,4,74,(2:28) Corey Peters sacked Colin Kaepernick for a loss of 9 yards. ,0,10,2012 -20130120_SF@ATL,1,47,28,SF,ATL,4,13,83,(2:28) Andy Lee punted for 46 yards. Harry Douglas returned a punt for 6 yards. ,0,10,2012 -20130120_SF@ATL,1,46,49,ATL,SF,1,10,57,(1:49) Michael Turner rushed for 4 yards. ,10,0,2012 -20130120_SF@ATL,1,46,10,ATL,SF,2,6,53,(1:10) Michael Turner rushed for 10 yards. ,10,0,2012 -20130120_SF@ATL,1,45,26,ATL,SF,1,10,43,(0:26) Matt Ryan passed to Roddy White for 23 yards. ,10,0,2012 -20130120_SF@ATL,1,59,57,ATL,SF,1,10,20,(14:57) Touchdown. Matt Ryan passed to Julio Jones for 20 yards. ,10,0,2012 -20130120_SF@ATL,2,59,0,ATL,SF,,,20,(14:57) Matt Bryant made the extra point. ,10,0,2012 -20130120_SF@ATL,2,44,57,ATL,SF,1,1,65,(14:57) Matt Bosher kicked the ball for 65 yards. Touchback ,17,0,2012 -20130120_SF@ATL,2,44,54,SF,ATL,1,10,80,(14:54) Frank Gore rushed for 9 yards. ,0,17,2012 -20130120_SF@ATL,2,44,19,SF,ATL,2,1,71,(14:19) Frank Gore rushed for 1 yard. ,0,17,2012 -20130120_SF@ATL,2,43,37,SF,ATL,1,10,70,(13:37) Frank Gore rushed for 3 yards. ,0,17,2012 -20130120_SF@ATL,2,42,54,SF,ATL,2,7,67,(12:54) Frank Gore rushed for 7 yards. ,0,17,2012 -20130120_SF@ATL,2,42,19,SF,ATL,1,10,60,(12:19) Colin Kaepernick passed to Randy Moss for 8 yards. ,0,17,2012 -20130120_SF@ATL,2,41,45,SF,ATL,2,2,52,(11:45) Colin Kaepernick passed to Michael Crabtree for 7 yards. ,0,17,2012 -20130120_SF@ATL,2,41,8,SF,ATL,1,10,45,(11:08) Colin Kaepernick passed to Michael Crabtree for 4 yards. ,0,17,2012 -20130120_SF@ATL,2,40,24,SF,ATL,2,6,41,(10:24) Colin Kaepernick passed to LaMichael James for 4 yards. ,0,17,2012 -20130120_SF@ATL,2,39,32,SF,ATL,3,2,37,(9:32) SF was penalized 5 yards. ,0,17,2012 -20130120_SF@ATL,2,39,8,SF,ATL,3,7,42,(9:08) Colin Kaepernick passed to Vernon Davis for 27 yards. ,0,17,2012 -20130120_SF@ATL,2,38,20,SF,ATL,1,10,15,(8:20) Colin Kaepernick passed incomplete to Michael Crabtree. ,0,17,2012 -20130120_SF@ATL,2,38,8,SF,ATL,2,10,15,(8:08) Touchdown. LaMichael James rushed for 15 yards. ,0,17,2012 -20130120_SF@ATL,2,38,8,SF,ATL,,,15,(8:08) David Akers made the extra point. ,0,17,2012 -20130120_SF@ATL,2,38,8,SF,ATL,1,1,65,(8:08) David Akers kicked the ball for 65 yards. Touchback ,7,17,2012 -20130120_SF@ATL,2,38,8,ATL,SF,1,10,80,(8:08) Matt Ryan passed to Roddy White for 14 yards. ,17,7,2012 -20130120_SF@ATL,2,37,27,ATL,SF,1,10,66,(7:27) Michael Turner rushed for 6 yards. ,17,7,2012 -20130120_SF@ATL,2,36,40,ATL,SF,2,4,60,(6:40) Matt Ryan passed incomplete to Jacquizz Rodgers. ,17,7,2012 -20130120_SF@ATL,2,36,36,ATL,SF,3,4,60,(6:36) Matt Ryan passed incomplete to Jacquizz Rodgers. ,17,7,2012 -20130120_SF@ATL,2,36,32,ATL,SF,4,4,60,(6:32) Matt Bosher punted for 42 yards. Ted Ginn made a faircatch. ,17,7,2012 -20130120_SF@ATL,2,36,24,SF,ATL,1,10,82,(6:24) SF was penalized 9 yards. ,7,17,2012 -20130120_SF@ATL,2,35,54,SF,ATL,1,19,91,(5:54) LaMichael James rushed for 3 yards. ,7,17,2012 -20130120_SF@ATL,2,35,12,SF,ATL,2,16,88,(5:12) Colin Kaepernick passed to Vernon Davis for 19 yards. ,7,17,2012 -20130120_SF@ATL,2,34,25,SF,ATL,1,10,69,(4:25) Frank Gore rushed for no gain. ,7,17,2012 -20130120_SF@ATL,2,33,47,SF,ATL,2,10,69,(3:47) Colin Kaepernick rushed for 23 yards. ,7,17,2012 -20130120_SF@ATL,2,33,0,SF,ATL,1,10,46,(3:00) Frank Gore rushed for 2 yards. ATL was penalized 15 yards. ,7,17,2012 -20130120_SF@ATL,2,32,28,SF,ATL,1,10,29,(2:28) Colin Kaepernick passed to Vernon Davis for 25 yards. ,7,17,2012 -20130120_SF@ATL,2,31,55,SF,ATL,1,4,4,(1:55) Touchdown. Colin Kaepernick passed to Vernon Davis for 4 yards. ,7,17,2012 -20130120_SF@ATL,2,31,55,SF,ATL,,,4,(1:55) David Akers made the extra point. ,7,17,2012 -20130120_SF@ATL,2,31,55,SF,ATL,1,1,65,(1:55) David Akers kicked the ball for 65 yards. Touchback ,14,17,2012 -20130120_SF@ATL,2,31,55,ATL,SF,1,10,80,(1:55) Matt Ryan passed to Roddy White for 15 yards. ,17,14,2012 -20130120_SF@ATL,2,31,33,ATL,SF,1,10,65,(1:33) Matt Ryan passed incomplete to Roddy White. ,17,14,2012 -20130120_SF@ATL,2,31,4,ATL,SF,2,10,65,(1:04) Matt Ryan passed incomplete to Tony Gonzalez.,17,14,2012 -20130120_SF@ATL,2,31,8,ATL,SF,3,10,65,(1:08) SF was penalized 5 yards. ,17,14,2012 -20130120_SF@ATL,2,31,4,ATL,SF,1,10,44,(1:04) Matt Ryan passed to Roddy White for 13 yards. ,17,14,2012 -20130120_SF@ATL,2,30,57,ATL,SF,1,10,31,(0:57) Matt Ryan passed to Julio Jones for 15 yards. ,17,14,2012 -20130120_SF@ATL,2,30,37,ATL,SF,1,10,16,(0:37) Matt Ryan passed to Tony Gonzalez for 6 yards. ,17,14,2012 -20130120_SF@ATL,2,30,25,ATL,SF,2,4,10,(0:25) Touchdown. Matt Ryan passed to Tony Gonzalez for 10 yards. ,17,14,2012 -20130120_SF@ATL,2,30,25,ATL,SF,,,10,(0:25) Matt Bryant made the extra point. ,17,14,2012 -20130120_SF@ATL,2,30,25,ATL,SF,1,1,70,(0:25) Matt Bosher kicked the ball for 69 yards. LaMichael James returned the kick for 19 yards. ,24,14,2012 -20130120_SF@ATL,2,30,19,SF,ATL,1,10,85,(0:19) LaMichael James rushed for 1 yard. ,14,24,2012 -20130120_SF@ATL,2,45,0,ATL,SF,2,9,35,(15:00) Matt Bosher kicked the ball for 67 yards. LaMichael James returned the kick for 20 yards. ,24,14,2012 -20130120_SF@ATL,3,29,55,SF,ATL,1,10,82,(14:55) Colin Kaepernick passed to Randy Moss for 21 yards. ,14,24,2012 -20130120_SF@ATL,3,29,27,SF,ATL,1,10,61,(14:27) Frank Gore rushed for 6 yards. ,14,24,2012 -20130120_SF@ATL,3,28,41,SF,ATL,2,4,55,(13:41) Frank Gore rushed for 11 yards. ,14,24,2012 -20130120_SF@ATL,3,28,0,SF,ATL,1,10,44,(13:00) Frank Gore rushed for 2 yards. ,14,24,2012 -20130120_SF@ATL,3,27,14,SF,ATL,2,8,42,(12:14) Colin Kaepernick passed to Delanie Walker for 20 yards. ,14,24,2012 -20130120_SF@ATL,3,26,34,SF,ATL,1,10,22,(11:34) Colin Kaepernick passed to Randy Moss for 17 yards. ,14,24,2012 -20130120_SF@ATL,3,25,47,SF,ATL,1,5,5,(10:47) Touchdown. Frank Gore rushed for 5 yards. ,14,24,2012 -20130120_SF@ATL,3,25,47,SF,ATL,,,5,(10:47) David Akers made the extra point. ,14,24,2012 -20130120_SF@ATL,3,25,47,SF,ATL,1,1,65,(10:47) David Akers kicked the ball for 65 yards. Touchback ,21,24,2012 -20130120_SF@ATL,3,25,47,ATL,SF,1,10,80,(10:47) Michael Turner rushed for 3 yards. ,24,21,2012 -20130120_SF@ATL,3,25,5,ATL,SF,2,7,77,(10:05) Matt Ryan passed to Tony Gonzalez for 14 yards. ,24,21,2012 -20130120_SF@ATL,3,24,40,ATL,SF,1,10,63,(9:40) Jacquizz Rodgers rushed for 2 yards. ,24,21,2012 -20130120_SF@ATL,3,23,55,ATL,SF,2,8,61,(8:55) Matt Ryan passed to Tony Gonzalez for 14 yards. ,24,21,2012 -20130120_SF@ATL,3,23,19,ATL,SF,1,10,47,(8:19) Isaac Sopoaga sacked Matt Ryan. ,24,21,2012 -20130120_SF@ATL,3,22,46,ATL,SF,2,10,47,(7:46) Matt Ryan was intercepted. Chris Culliver returned the interception for 6 yards. ,24,21,2012 -20130120_SF@ATL,3,22,38,SF,ATL,1,10,56,(7:38) Colin Kaepernick passed to Vernon Davis for 31 yards. ,21,24,2012 -20130120_SF@ATL,3,22,14,SF,ATL,1,10,25,(7:14) Colin Kaepernick lost 2 yards. ,21,24,2012 -20130120_SF@ATL,3,21,43,SF,ATL,2,12,27,(6:43) LaMichael James rushed for 7 yards. ,21,24,2012 -20130120_SF@ATL,3,20,55,SF,ATL,3,5,20,(5:55) Colin Kaepernick passed incomplete to Chad Hall. ,21,24,2012 -20130120_SF@ATL,3,20,51,SF,ATL,4,5,20,(5:51) David Akers missed a field goal of 38 yards. ,21,24,2012 -20130120_SF@ATL,3,20,44,ATL,SF,1,10,72,(5:44) Jacquizz Rodgers rushed for 7 yards. ,24,21,2012 -20130120_SF@ATL,3,20,6,ATL,SF,2,3,65,(5:06) Jason Snelling rushed for 12 yards. ,24,21,2012 -20130120_SF@ATL,3,19,20,ATL,SF,1,10,53,(4:20) Jacquizz Rodgers rushed for 9 yards. ,24,21,2012 -20130120_SF@ATL,3,18,44,ATL,SF,2,1,44,(3:44) Jacquizz Rodgers rushed for 2 yards. ,24,21,2012 -20130120_SF@ATL,3,18,4,ATL,SF,1,10,42,(3:04) Matt Ryan passed incomplete to Roddy White. ,24,21,2012 -20130120_SF@ATL,3,17,57,ATL,SF,2,10,42,(2:57) Jason Snelling rushed for no gain. ,24,21,2012 -20130120_SF@ATL,3,17,20,ATL,SF,3,10,42,(2:20) Matt Ryan passed to Julio Jones for 13 yards. ,24,21,2012 -20130120_SF@ATL,3,16,42,ATL,SF,1,10,29,(1:42) Jacquizz Rodgers rushed for 1 yard. ,24,21,2012 -20130120_SF@ATL,3,16,2,ATL,SF,2,9,28,(1:02) Matt Ryan rushed for no gain. Aldon Smith recovered a fumble from Matt Ryan and returned it for 0 yards. ,24,21,2012 -20130120_SF@ATL,3,15,55,SF,ATL,1,10,63,(0:55) Frank Gore rushed for 3 yards. ,21,24,2012 -20130120_SF@ATL,3,15,15,SF,ATL,2,7,60,(0:15) Colin Kaepernick passed incomplete to Delanie Walker. ,21,24,2012 -20130120_SF@ATL,3,15,10,SF,ATL,3,7,60,(0:10) ATL was penalized 15 yards. ,21,24,2012 -20130120_SF@ATL,3,15,5,SF,ATL,1,10,45,(0:05) Frank Gore rushed for 2 yards. ,21,24,2012 -20130120_SF@ATL,3,30,0,SF,ATL,2,8,43,(15:00) Colin Kaepernick passed to Michael Crabtree for 33 yards. ,21,24,2012 -20130120_SF@ATL,4,14,18,SF,ATL,1,10,10,(14:18) Frank Gore rushed for 5 yards. ,21,24,2012 -20130120_SF@ATL,4,14,18,SF,ATL,2,5,5,(14:18) Colin Kaepernick passed to Michael Crabtree for 4 yards. William Moore recovered a fumble from Michael Crabtree and returned it for 0 yards. ,21,24,2012 -20130120_SF@ATL,4,13,24,ATL,SF,1,99,99,(13:24) Matt Ryan passed incomplete to Roddy White. ,24,21,2012 -20130120_SF@ATL,4,13,22,ATL,SF,2,99,99,(13:22) Mike Cox rushed for 4 yards. ,24,21,2012 -20130120_SF@ATL,4,12,40,ATL,SF,3,6,95,(12:40) Matt Ryan passed to Tony Gonzalez for 5 yards. ,24,21,2012 -20130120_SF@ATL,4,11,59,ATL,SF,4,1,90,(11:59) Matt Bosher punted for 48 yards. Ted Ginn returned a punt for 20 yards. ,24,21,2012 -20130120_SF@ATL,4,11,46,SF,ATL,1,10,38,(11:46) Frank Gore rushed for 7 yards. ,21,24,2012 -20130120_SF@ATL,4,11,11,SF,ATL,2,3,31,(11:11) Frank Gore rushed for 2 yards. ,21,24,2012 -20130120_SF@ATL,4,10,29,SF,ATL,3,1,29,(10:29) Anthony Dixon rushed for 4 yards. ,21,24,2012 -20130120_SF@ATL,4,9,49,SF,ATL,1,10,25,(9:49) LaMichael James rushed for 8 yards. ,21,24,2012 -20130120_SF@ATL,4,9,12,SF,ATL,2,2,17,(9:12) Colin Kaepernick passed to Michael Crabtree for 8 yards. ,21,24,2012 -20130120_SF@ATL,4,8,23,SF,ATL,1,9,9,(8:23) Touchdown. Frank Gore rushed for 9 yards. ,21,24,2012 -20130120_SF@ATL,4,8,23,SF,ATL,,,9,(8:23) David Akers made the extra point. ,21,24,2012 -20130120_SF@ATL,4,8,23,SF,ATL,1,1,65,(8:23) David Akers kicked the ball for 65 yards. Touchback ,28,24,2012 -20130120_SF@ATL,4,8,0,ATL,SF,1,10,80,(8:00) Matt Ryan passed to Roddy White for 9 yards. ,24,28,2012 -20130120_SF@ATL,4,7,45,ATL,SF,2,1,71,(7:45) Jacquizz Rodgers rushed for 2 yards. ,24,28,2012 -20130120_SF@ATL,4,7,3,ATL,SF,1,10,69,(7:03) Matt Ryan passed incomplete to Julio Jones. ,24,28,2012 -20130120_SF@ATL,4,7,1,ATL,SF,2,10,69,(7:01) Matt Ryan passed to Roddy White for 6 yards. ,24,28,2012 -20130120_SF@ATL,4,6,20,ATL,SF,3,4,63,(6:20) Matt Ryan passed to Julio Jones for 5 yards. ,24,28,2012 -20130120_SF@ATL,4,5,50,ATL,SF,1,10,58,(5:50) Matt Ryan rushed for 3 yards. ,24,28,2012 -20130120_SF@ATL,4,5,7,ATL,SF,2,7,55,(5:07) Matt Ryan passed to Julio Jones for 5 yards. ,24,28,2012 -20130120_SF@ATL,4,4,20,ATL,SF,3,2,50,(4:20) Matt Ryan passed to Harry Douglas for 22 yards. ,24,28,2012 -20130120_SF@ATL,4,3,53,ATL,SF,1,10,28,(3:53) Jacquizz Rodgers rushed for 9 yards. ,24,28,2012 -20130120_SF@ATL,4,3,8,ATL,SF,2,1,19,(3:08) Matt Ryan passed to Harry Douglas for 3 yards. ,24,28,2012 -20130120_SF@ATL,4,2,23,ATL,SF,1,10,16,(2:23) Jacquizz Rodgers rushed for 1 yard. ,24,28,2012 -20130120_SF@ATL,4,2,0,ATL,SF,2,9,15,(2:00) Matt Ryan passed to Jason Snelling for 5 yards. ,24,28,2012 -20130120_SF@ATL,4,1,15,ATL,SF,3,4,10,(1:15) Matt Ryan passed incomplete. ,24,28,2012 -20130120_SF@ATL,4,1,10,ATL,SF,4,4,10,(1:10) Matt Ryan passed incomplete to Roddy White. ,24,28,2012 -20130120_SF@ATL,4,1,9,SF,ATL,1,10,90,(1:09) Frank Gore rushed for 3 yards. ,28,24,2012 -20130120_SF@ATL,4,1,4,SF,ATL,2,7,87,(1:04) SF was penalized 5 yards. ,28,24,2012 -20130120_SF@ATL,4,1,4,SF,ATL,2,12,92,(1:04) Frank Gore lost 3 yards. ,28,24,2012 -20130120_SF@ATL,4,1,0,SF,ATL,3,15,95,(1:00) Frank Gore rushed for 10 yards. ,28,24,2012 -20130120_SF@ATL,4,0,13,SF,ATL,4,5,85,(0:13) Andy Lee punted for 42 yards. Harry Douglas returned a punt for a 2 yard loss. ,28,24,2012 -20130120_SF@ATL,4,0,5,ATL,SF,1,10,59,(0:05) Matt Ryan passed to Julio Jones for 24 yards. ,24,28,2012 -20130120_SF@ATL,4,0,5,ATL,SF,,,59,                      ,24,28,2012 -20130120_BAL@NE,1,0,0,BAL,NE,,,59,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20130120_BAL@NE,1,60,0,NE,BAL,1,10,80,(15:00) NE 12-Brady 24th career postseason start ties Brett Favre for most ever by a QB. S.Ridley right guard to NE 25 for 5 yards (H.Ngata; P.Kruger).,0,0,2012 -20130120_BAL@NE,1,59,39,NE,BAL,2,5,75,(14:39) (No Huddle) T.Brady pass short middle to A.Hernandez to NE 34 for 9 yards (D.Ellerbe; C.Graham).,0,0,2012 -20130120_BAL@NE,1,59,17,NE,BAL,1,10,66,(14:17) (No Huddle) S.Ridley left tackle to NE 37 for 3 yards (R.Lewis).,0,0,2012 -20130120_BAL@NE,1,58,40,NE,BAL,2,7,63,(13:40) (No Huddle) S.Ridley left tackle to NE 42 for 5 yards (D.Ellerbe; C.Williams).,0,0,2012 -20130120_BAL@NE,1,58,3,NE,BAL,3,2,58,(13:03) (No Huddle Shotgun) T.Brady pass incomplete deep left to W.Welker.,0,0,2012 -20130120_BAL@NE,1,57,57,NE,BAL,4,2,58,(12:57) Z.Mesko punts 45 yards to BLT 13 Center-D.Aiken fair catch by J.Jones.,0,0,2012 -20130120_BAL@NE,1,57,48,BAL,NE,1,10,87,(12:48) R.Rice right guard to BLT 15 for 2 yards (B.Spikes).,0,0,2012 -20130120_BAL@NE,1,57,17,BAL,NE,2,8,85,(12:17) (No Huddle) R.Rice left guard to BLT 19 for 4 yards (B.Spikes; R.Ninkovich).,0,0,2012 -20130120_BAL@NE,1,56,41,BAL,NE,3,4,81,(11:41) (Shotgun) J.Flacco pass incomplete short left to R.Rice.,0,0,2012 -20130120_BAL@NE,1,56,37,BAL,NE,4,4,81,(11:37) S.Koch punts 50 yards to NE 31 Center-M.Cox. W.Welker to NE 44 for 13 yards (D.Reed). Penalty on NE-P.Chung Offensive Holding declined. PENALTY on NE-A.Talib Offensive Holding 10 yards enforced at NE 31.,0,0,2012 -20130120_BAL@NE,1,56,24,NE,BAL,1,10,79,(11:24) T.Brady pass short left to B.Lloyd to NE 29 for 8 yards (C.Williams).,0,0,2012 -20130120_BAL@NE,1,56,0,NE,BAL,2,2,71,(11:00) S.Ridley right guard to NE 32 for 3 yards (T.Suggs).,0,0,2012 -20130120_BAL@NE,1,55,28,NE,BAL,1,10,68,(10:28) T.Brady pass short left to A.Hernandez to NE 40 for 8 yards (D.Ellerbe; R.Lewis).,0,0,2012 -20130120_BAL@NE,1,54,51,NE,BAL,2,2,60,(9:51) T.Brady pass incomplete short right to W.Welker.,0,0,2012 -20130120_BAL@NE,1,54,48,NE,BAL,3,2,60,(9:48) (Shotgun) T.Brady pass short middle to B.Lloyd to BLT 47 for 13 yards (E.Reed).,0,0,2012 -20130120_BAL@NE,1,54,14,NE,BAL,1,10,47,(9:14) (Shotgun) T.Brady pass incomplete deep left to B.Lloyd [D.Ellerbe].,0,0,2012 -20130120_BAL@NE,1,54,8,NE,BAL,2,10,47,(9:08) (Shotgun) T.Brady pass short right to A.Hernandez to BLT 37 for 10 yards (M.Kemoeatu).,0,0,2012 -20130120_BAL@NE,1,53,33,NE,BAL,1,10,37,(8:33) S.Ridley left tackle to BLT 36 for 1 yard (T.Suggs; R.Lewis).,0,0,2012 -20130120_BAL@NE,1,53,12,NE,BAL,2,9,36,(8:12) (No Huddle) T.Brady pass deep left to B.Lloyd to BLT 20 for 16 yards (C.Williams). NE 12-Brady now has 5693 career postseason passing yards passing Peyton Manning for 3rd all-time.,0,0,2012 -20130120_BAL@NE,1,52,48,NE,BAL,1,10,20,(7:48) (No Huddle) S.Ridley right guard to BLT 18 for 2 yards (P.Kruger; M.Kemoeatu).,0,0,2012 -20130120_BAL@NE,1,52,24,NE,BAL,2,8,18,(7:24) (No Huddle) A.Hernandez left end to BLT 12 for 6 yards (C.Graham). reverse,0,0,2012 -20130120_BAL@NE,1,51,59,NE,BAL,3,2,12,(6:59) (No Huddle) S.Ridley right guard to BLT 12 for no gain (C.Graham).,0,0,2012 -20130120_BAL@NE,1,51,25,NE,BAL,4,2,12,(6:25) S.Gostkowski 31 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,0,0,2012 -20130120_BAL@NE,1,51,25,NE,BAL,,,12,S.Gostkowski kicks 54 yards from NE 35 to BLT 11. J.Jones to BLT 20 for 9 yards (K.Arrington). PENALTY on BLT-J.Bynes Illegal Block Above the Waist 10 yards enforced at BLT 20.,3,0,2012 -20130120_BAL@NE,1,51,16,BAL,NE,1,10,90,(6:16) J.Flacco pass short right to V.Leach to BLT 27 for 17 yards (S.Gregory).,0,3,2012 -20130120_BAL@NE,1,50,52,BAL,NE,1,10,73,(5:52) R.Rice up the middle to BLT 30 for 3 yards (J.Francis).,0,3,2012 -20130120_BAL@NE,1,50,21,BAL,NE,2,7,70,(5:21) J.Flacco pass incomplete deep left to A.Boldin.,0,3,2012 -20130120_BAL@NE,1,50,15,BAL,NE,3,7,70,(5:15) (Shotgun) PENALTY on BLT-R.Rice False Start 5 yards enforced at BLT 30 - No Play.,0,3,2012 -20130120_BAL@NE,1,50,15,BAL,NE,3,12,75,(5:15) (Shotgun) J.Flacco pass incomplete short left to A.Boldin (A.Talib). NE-A.Talib was injured during the play.,0,3,2012 -20130120_BAL@NE,1,50,10,BAL,NE,4,12,75,(5:10) S.Koch punts 55 yards to NE 20 Center-M.Cox. W.Welker pushed ob at NE 33 for 13 yards (A.Allen).,0,3,2012 -20130120_BAL@NE,1,50,0,NE,BAL,1,10,67,(5:00) S.Vereen up the middle to NE 40 for 7 yards (R.Lewis).,3,0,2012 -20130120_BAL@NE,1,49,38,NE,BAL,2,3,60,(4:38) (No Huddle) S.Vereen right tackle to NE 41 for 1 yard (H.Ngata).,3,0,2012 -20130120_BAL@NE,1,48,57,NE,BAL,3,2,59,(3:57) (Shotgun) T.Brady pass short right to A.Hernandez to NE 49 for 8 yards (R.Lewis). PENALTY on BLT-R.Lewis Unnecessary Roughness 15 yards enforced at NE 49.,3,0,2012 -20130120_BAL@NE,1,48,35,NE,BAL,1,10,36,(3:35) T.Brady pass incomplete short right to A.Hernandez [A.Jones].,3,0,2012 -20130120_BAL@NE,1,48,30,NE,BAL,2,10,36,(3:30) S.Vereen right end to BLT 35 for 1 yard (B.Pollard).,3,0,2012 -20130120_BAL@NE,1,47,53,NE,BAL,3,9,35,(2:53) (Shotgun) T.Brady pass incomplete short right to B.Lloyd.,3,0,2012 -20130120_BAL@NE,1,47,48,NE,BAL,4,9,35,(2:48) Z.Mesko punts 27 yards to BLT 8 Center-D.Aiken fair catch by E.Reed.,3,0,2012 -20130120_BAL@NE,1,47,40,BAL,NE,1,10,92,(2:40) B.Pierce left tackle to BLT 19 for 11 yards (A.Dennard).,0,3,2012 -20130120_BAL@NE,1,47,11,BAL,NE,1,10,81,(2:11) B.Pierce left end to BLT 22 for 3 yards (R.Ninkovich).,0,3,2012 -20130120_BAL@NE,1,46,40,BAL,NE,2,7,78,(1:40) (No Huddle) J.Flacco pass incomplete short right to E.Dickson.,0,3,2012 -20130120_BAL@NE,1,46,35,BAL,NE,3,7,78,(1:35) (Shotgun) J.Flacco pass incomplete deep right to D.Pitta.,0,3,2012 -20130120_BAL@NE,1,46,28,BAL,NE,4,7,78,(1:28) S.Koch punts 59 yards to NE 19 Center-M.Cox. W.Welker to NE 47 for 28 yards (A.McClellan).,0,3,2012 -20130120_BAL@NE,1,46,14,NE,BAL,1,10,53,(1:14) T.Brady pass incomplete short middle to S.Vereen [H.Ngata].,3,0,2012 -20130120_BAL@NE,1,46,5,NE,BAL,2,10,53,(1:05) (Shotgun) T.Brady pass short right to A.Hernandez to BLT 45 for 8 yards (R.Lewis; T.Suggs).,3,0,2012 -20130120_BAL@NE,1,45,32,NE,BAL,3,2,45,(:32) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,3,0,2012 -20130120_BAL@NE,1,45,26,NE,BAL,4,2,45,(:26) Z.Mesko punts 35 yards to BLT 10 Center-D.Aiken fair catch by E.Reed.,3,0,2012 -20130120_BAL@NE,1,45,19,BAL,NE,1,10,90,(:19) R.Rice up the middle to BLT 13 for 3 yards (D.Hightower).,0,3,2012 -20130120_BAL@NE,2,45,0,BAL,NE,2,7,87,(15:00) J.Flacco pass short right to V.Leach to BLT 18 for 5 yards (J.Mayo). FUMBLES (J.Mayo) ball out of bounds at BLT 16.,0,3,2012 -20130120_BAL@NE,2,44,35,BAL,NE,3,4,84,(14:35) J.Flacco pass short middle to D.Pitta to BLT 33 for 17 yards (S.Gregory; K.Arrington).,0,3,2012 -20130120_BAL@NE,2,44,5,BAL,NE,1,10,67,(14:05) (No Huddle Shotgun) R.Rice up the middle to BLT 35 for 2 yards (M.Cole; R.Ninkovich).,0,3,2012 -20130120_BAL@NE,2,43,34,BAL,NE,2,8,65,(13:34) J.Flacco pass short right to R.Rice to BLT 46 for 11 yards (B.Spikes).,0,3,2012 -20130120_BAL@NE,2,42,59,BAL,NE,1,10,54,(12:59) (No Huddle) R.Rice left end to BLT 48 for 2 yards (R.Ninkovich).,0,3,2012 -20130120_BAL@NE,2,42,19,BAL,NE,2,8,52,(12:19) J.Flacco pass short right to B.Pierce to NE 44 for 8 yards (K.Arrington).,0,3,2012 -20130120_BAL@NE,2,41,44,BAL,NE,1,10,44,(11:44) (No Huddle) B.Pierce right end pushed ob at NE 40 for 4 yards (A.Dennard).,0,3,2012 -20130120_BAL@NE,2,41,24,BAL,NE,2,6,40,(11:24) (No Huddle) J.Flacco pass deep left to T.Smith to NE 15 for 25 yards (K.Arrington) [V.Wilfork].,0,3,2012 -20130120_BAL@NE,2,40,50,BAL,NE,1,10,15,(10:50) (No Huddle Shotgun) R.Rice left guard to NE 7 for 8 yards (D.McCourty; K.Arrington).,0,3,2012 -20130120_BAL@NE,2,40,15,BAL,NE,2,2,7,(10:15) (No Huddle) R.Rice right guard to NE 2 for 5 yards (B.Spikes).,0,3,2012 -20130120_BAL@NE,2,39,38,BAL,NE,1,2,2,(9:38) J.Flacco pass incomplete short left to D.Pitta.,0,3,2012 -20130120_BAL@NE,2,39,33,BAL,NE,2,2,2,(9:33) R.Rice left end for 2 yards TOUCHDOWN. NE-P.Chung was injured during the play.,0,3,2012 -20130120_BAL@NE,2,39,33,BAL,NE,,,2,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,3,2012 -20130120_BAL@NE,2,39,33,BAL,NE,,,2,J.Tucker kicks 66 yards from BLT 35 to NE -1. D.McCourty to NE 21 for 22 yards (C.Brown; S.Considine).,7,3,2012 -20130120_BAL@NE,2,39,22,NE,BAL,1,10,79,(9:22) (Shotgun) S.Ridley right guard to NE 24 for 3 yards (M.Kemoeatu). PENALTY on BLT-D.Ellerbe Unnecessary Roughness 15 yards enforced at NE 24.,3,7,2012 -20130120_BAL@NE,2,39,3,NE,BAL,1,10,61,(9:03) (Shotgun) T.Brady pass short left to W.Welker to NE 46 for 7 yards (D.Ellerbe).,3,7,2012 -20130120_BAL@NE,2,38,41,NE,BAL,2,3,54,(8:41) (No Huddle) T.Brady pass short left to B.Lloyd to NE 49 for 3 yards (R.Lewis; B.Pollard).,3,7,2012 -20130120_BAL@NE,2,38,1,NE,BAL,1,10,51,(8:01) S.Ridley up the middle to BLT 44 for 7 yards (A.Jones; M.Kemoeatu).,3,7,2012 -20130120_BAL@NE,2,37,37,NE,BAL,2,3,44,(7:37) (No Huddle) S.Ridley up the middle to BLT 40 for 4 yards (M.Kemoeatu; C.Graham).,3,7,2012 -20130120_BAL@NE,2,36,58,NE,BAL,1,10,40,(6:58) (No Huddle) T.Brady pass short right to W.Welker to BLT 16 for 24 yards (T.Suggs).,3,7,2012 -20130120_BAL@NE,2,36,29,NE,BAL,1,10,16,(6:29) (No Huddle) S.Ridley right guard to BLT 8 for 8 yards (R.Lewis; C.Graham).,3,7,2012 -20130120_BAL@NE,2,35,55,NE,BAL,2,2,8,(5:55) (No Huddle) T.Brady pass short right to A.Hernandez to BLT 1 for 7 yards (C.Brown).,3,7,2012 -20130120_BAL@NE,2,35,13,NE,BAL,1,1,1,(5:13) (No Huddle Shotgun) T.Brady pass incomplete short left to B.Lloyd (B.Pollard).,3,7,2012 -20130120_BAL@NE,2,35,9,NE,BAL,2,1,1,(5:09) D.Connolly and N.Solder reported in as eligible. S.Ridley up the middle to BLT 1 for no gain (A.Jones; T.Suggs).,3,7,2012 -20130120_BAL@NE,2,34,22,NE,BAL,3,1,1,(4:22) (Shotgun) T.Brady pass short right to W.Welker for 1 yard TOUCHDOWN.,3,7,2012 -20130120_BAL@NE,2,34,22,NE,BAL,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,3,7,2012 -20130120_BAL@NE,2,34,22,NE,BAL,,,1,S.Gostkowski kicks 60 yards from NE 35 to BLT 5. J.Jones to BLT 14 for 9 yards (K.Arrington).,10,7,2012 -20130120_BAL@NE,2,34,14,BAL,NE,1,10,86,(4:14) B.Pierce right end ran ob at BLT 13 for -1 yards.,7,10,2012 -20130120_BAL@NE,2,33,46,BAL,NE,2,11,87,(3:46) B.Pierce left end to BLT 18 for 5 yards (J.Mayo).,7,10,2012 -20130120_BAL@NE,2,33,10,BAL,NE,3,6,82,(3:10) (No Huddle Shotgun) J.Flacco sacked at BLT 14 for -4 yards (R.Ninkovich).,7,10,2012 -20130120_BAL@NE,2,32,41,BAL,NE,4,10,86,(2:41) S.Koch punts 44 yards to NE 42 Center-M.Cox. W.Welker ran ob at BLT 43 for 15 yards.,7,10,2012 -20130120_BAL@NE,2,32,32,NE,BAL,1,10,43,(2:32) S.Ridley left tackle to BLT 38 for 5 yards (C.Graham; P.Kruger).,10,7,2012 -20130120_BAL@NE,2,32,0,NE,BAL,2,5,38,(2:00) (Shotgun) T.Brady scrambles left guard to BLT 36 for 2 yards (R.Lewis).,10,7,2012 -20130120_BAL@NE,2,31,26,NE,BAL,3,3,36,(1:26) (Shotgun) D.Woodhead up the middle to BLT 34 for 2 yards (T.Suggs; P.Kruger).,10,7,2012 -20130120_BAL@NE,2,30,54,NE,BAL,4,1,34,(:54) (Shotgun) Direct snap to D.Woodhead. D.Woodhead left guard to BLT 27 for 7 yards (C.Graham; B.Pollard).,10,7,2012 -20130120_BAL@NE,2,30,44,NE,BAL,1,10,27,(:44) (Shotgun) T.Brady pass incomplete short middle to A.Hernandez.,10,7,2012 -20130120_BAL@NE,2,30,40,NE,BAL,2,10,27,(:40) (Shotgun) T.Brady pass incomplete deep middle to D.Branch.,10,7,2012 -20130120_BAL@NE,2,30,34,NE,BAL,3,10,27,(:34) (Shotgun) T.Brady pass short right to A.Hernandez to BLT 10 for 17 yards (J.Smith).,10,7,2012 -20130120_BAL@NE,2,30,26,NE,BAL,1,10,10,(:26) (Shotgun) T.Brady scrambles left tackle to BLT 7 for 3 yards (E.Reed).,10,7,2012 -20130120_BAL@NE,2,30,4,NE,BAL,2,7,7,(:04) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,10,7,2012 -20130120_BAL@NE,3,30,0,NE,BAL,,,7,S.Gostkowski kicks 54 yards from NE 35 to BLT 11. J.Jones to BLT 25 for 14 yards (N.Ebner).,13,7,2012 -20130120_BAL@NE,3,29,56,BAL,NE,1,10,75,(14:56) R.Rice right guard to BLT 26 for 1 yard (V.Wilfork; B.Deaderick).,7,13,2012 -20130120_BAL@NE,3,29,22,BAL,NE,2,9,74,(14:22) (No Huddle) J.Flacco pass incomplete deep middle to T.Smith [J.Mayo].,7,13,2012 -20130120_BAL@NE,3,29,15,BAL,NE,3,9,74,(14:15) (No Huddle Shotgun) J.Flacco pass deep left to A.Boldin to NE 48 for 26 yards (D.McCourty).,7,13,2012 -20130120_BAL@NE,3,28,31,BAL,NE,1,10,48,(13:31) R.Rice up the middle to 50 for -2 yards (B.Spikes; J.Mayo).,7,13,2012 -20130120_BAL@NE,3,28,5,BAL,NE,2,12,50,(13:05) (No Huddle Shotgun) J.Flacco pass incomplete short right to T.Smith.,7,13,2012 -20130120_BAL@NE,3,28,0,BAL,NE,3,12,50,(13:00) (No Huddle Shotgun) J.Flacco pass incomplete short left to T.Smith.,7,13,2012 -20130120_BAL@NE,3,27,55,BAL,NE,4,12,50,(12:55) S.Koch punts 41 yards to NE 9 Center-M.Cox fair catch by W.Welker.,7,13,2012 -20130120_BAL@NE,3,27,46,NE,BAL,1,10,91,(12:46) T.Brady pass short left to B.Lloyd to NE 15 for 6 yards (C.Williams). NE 12-Brady now has 5774 career postseason passing yards passing Joe Montana for 2nd all-time.,13,7,2012 -20130120_BAL@NE,3,27,14,NE,BAL,2,4,85,(12:14) S.Ridley left guard to NE 20 for 5 yards (R.Lewis).,13,7,2012 -20130120_BAL@NE,3,26,45,NE,BAL,1,10,80,(11:45) (Shotgun) T.Brady pass short left to A.Hernandez to NE 25 for 5 yards (C.Williams; B.Pollard).,13,7,2012 -20130120_BAL@NE,3,26,21,NE,BAL,2,5,75,(11:21) (No Huddle) T.Brady pass deep right to W.Welker to NE 49 for 24 yards (B.Pollard; C.Graham). PENALTY on BLT-B.Pollard Unnecessary Roughness 15 yards enforced at NE 49.,13,7,2012 -20130120_BAL@NE,3,26,4,NE,BAL,1,10,36,(11:04) (No Huddle Shotgun) T.Brady pass incomplete deep left to A.Hernandez.,13,7,2012 -20130120_BAL@NE,3,25,57,NE,BAL,2,10,36,(10:57) (Shotgun) D.Woodhead up the middle to BLT 34 for 2 yards (H.Ngata).,13,7,2012 -20130120_BAL@NE,3,25,15,NE,BAL,3,8,34,(10:15) (Shotgun) T.Brady pass incomplete short left to W.Welker.,13,7,2012 -20130120_BAL@NE,3,25,11,NE,BAL,4,8,34,(10:11) Z.Mesko punts 21 yards to BLT 13 Center-D.Aiken fair catch by E.Reed.,13,7,2012 -20130120_BAL@NE,3,25,3,BAL,NE,1,10,87,(10:03) (Shotgun) J.Flacco pass incomplete short right to T.Doss. PENALTY on NE-A.Dennard Defensive Pass Interference 15 yards enforced at BLT 13 - No Play.,7,13,2012 -20130120_BAL@NE,3,24,57,BAL,NE,1,10,72,(9:57) (Shotgun) J.Flacco pass incomplete deep left to T.Doss (K.Arrington).,7,13,2012 -20130120_BAL@NE,3,24,51,BAL,NE,2,10,72,(9:51) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to 50 for 22 yards (D.McCourty).,7,13,2012 -20130120_BAL@NE,3,24,24,BAL,NE,1,10,50,(9:24) (No Huddle Shotgun) J.Flacco pass incomplete deep left to T.Smith.,7,13,2012 -20130120_BAL@NE,3,24,16,BAL,NE,2,10,50,(9:16) (No Huddle Shotgun) J.Flacco pass short middle to R.Rice to NE 35 for 15 yards (D.McCourty).,7,13,2012 -20130120_BAL@NE,3,23,41,BAL,NE,1,10,35,(8:41) (No Huddle Shotgun) J.Flacco pass short left to T.Smith to NE 30 for 5 yards (M.Cole).,7,13,2012 -20130120_BAL@NE,3,23,10,BAL,NE,2,5,30,(8:10) (No Huddle Shotgun) B.Pierce left guard to NE 22 for 8 yards (J.Mayo).,7,13,2012 -20130120_BAL@NE,3,22,40,BAL,NE,1,10,22,(7:40) (No Huddle Shotgun) J.Flacco pass incomplete deep right to J.Jones.,7,13,2012 -20130120_BAL@NE,3,22,34,BAL,NE,2,10,22,(7:34) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to NE 10 for 12 yards (M.Cole).,7,13,2012 -20130120_BAL@NE,3,21,54,BAL,NE,1,10,10,(6:54) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to NE 5 for 5 yards (J.Mayo).,7,13,2012 -20130120_BAL@NE,3,21,14,BAL,NE,2,5,5,(6:14) (No Huddle Shotgun) J.Flacco pass short right to D.Pitta for 5 yards TOUCHDOWN.,7,13,2012 -20130120_BAL@NE,3,21,14,BAL,NE,,,5,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,13,2012 -20130120_BAL@NE,3,21,14,BAL,NE,,,5,J.Tucker kicks 64 yards from BLT 35 to NE 1. D.McCourty to NE 25 for 24 yards (S.Considine).,14,13,2012 -20130120_BAL@NE,3,21,6,NE,BAL,1,10,75,(6:06) (Shotgun) T.Brady pass short middle to W.Welker to NE 33 for 8 yards (D.Ellerbe).,13,14,2012 -20130120_BAL@NE,3,20,28,NE,BAL,2,2,67,(5:28) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,13,14,2012 -20130120_BAL@NE,3,20,24,NE,BAL,3,2,67,(5:24) (Shotgun) T.Brady pass short middle to D.Woodhead to NE 37 for 4 yards (C.Graham). PENALTY on NE-N.Solder Offensive Holding 10 yards enforced at NE 33 - No Play.,13,14,2012 -20130120_BAL@NE,3,20,1,NE,BAL,3,12,77,(5:01) (Shotgun) T.Brady pass incomplete short left to A.Hernandez.,13,14,2012 -20130120_BAL@NE,3,19,56,NE,BAL,4,12,77,(4:56) Z.Mesko punts 51 yards to BLT 26 Center-D.Aiken. J.Jones to BLT 37 for 11 yards (M.Cole).,13,14,2012 -20130120_BAL@NE,3,19,46,BAL,NE,1,10,63,(4:46) (Shotgun) J.Flacco pass short right to R.Rice to BLT 33 for -4 yards (D.Hightower).,14,13,2012 -20130120_BAL@NE,3,19,10,BAL,NE,2,14,67,(4:10) (Shotgun) J.Flacco pass deep right to T.Smith to NE 44 for 23 yards (D.McCourty).,14,13,2012 -20130120_BAL@NE,3,18,30,BAL,NE,1,10,44,(3:30) (Shotgun) R.Rice left guard to NE 40 for 4 yards (B.Spikes; J.Mayo). PENALTY on NE Defensive Offside 5 yards enforced at NE 44 - No Play.,14,13,2012 -20130120_BAL@NE,3,18,14,BAL,NE,1,5,39,(3:14) (Shotgun) R.Rice up the middle to NE 36 for 3 yards (B.Spikes; J.Mayo).,14,13,2012 -20130120_BAL@NE,3,17,38,BAL,NE,2,2,36,(2:38) (Shotgun) J.Flacco pass incomplete deep right to T.Smith.,14,13,2012 -20130120_BAL@NE,3,17,32,BAL,NE,3,2,36,(2:32) (Shotgun) B.Pierce right end ran ob at NE 25 for 11 yards.,14,13,2012 -20130120_BAL@NE,3,17,7,BAL,NE,1,10,25,(2:07) (No Huddle Shotgun) B.Pierce right guard to NE 19 for 6 yards (B.Spikes; R.Ninkovich).,14,13,2012 -20130120_BAL@NE,3,16,35,BAL,NE,2,4,19,(1:35) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta to NE 13 for 6 yards (J.Mayo).,14,13,2012 -20130120_BAL@NE,3,15,59,BAL,NE,1,10,13,(:59) (No Huddle Shotgun) J.Flacco pass short left to A.Boldin to NE 5 for 8 yards (M.Cole; D.McCourty).,14,13,2012 -20130120_BAL@NE,3,15,12,BAL,NE,2,2,5,(:12) (No Huddle Shotgun) R.Rice right guard to NE 3 for 2 yards (T.White; R.Ninkovich).,14,13,2012 -20130120_BAL@NE,4,15,0,BAL,NE,1,3,3,(15:00) J.Flacco pass short middle to A.Boldin for 3 yards TOUCHDOWN.,14,13,2012 -20130120_BAL@NE,4,15,0,BAL,NE,,,3,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,13,2012 -20130120_BAL@NE,4,15,0,BAL,NE,,,3,J.Tucker kicks 63 yards from BLT 35 to NE 2. D.McCourty to NE 16 for 14 yards (S.Considine).,21,13,2012 -20130120_BAL@NE,4,14,49,NE,BAL,1,10,84,(14:49) S.Ridley up the middle to NE 25 for 9 yards (R.Lewis; B.Pollard).,13,21,2012 -20130120_BAL@NE,4,14,18,NE,BAL,2,1,75,(14:18) S.Ridley left guard to NE 25 for no gain (T.Suggs; R.Lewis).,13,21,2012 -20130120_BAL@NE,4,13,45,NE,BAL,3,1,75,(13:45) S.Ridley left tackle to NE 27 for 2 yards (R.Lewis).,13,21,2012 -20130120_BAL@NE,4,13,17,NE,BAL,1,10,73,(13:17) T.Brady pass short right to B.Lloyd ran ob at NE 39 for 12 yards.,13,21,2012 -20130120_BAL@NE,4,12,55,NE,BAL,1,10,61,(12:55) (Shotgun) S.Ridley right tackle to NE 47 for 8 yards (B.Pollard). FUMBLES (B.Pollard) RECOVERED by BLT-A.Jones at NE 47. A.Jones to NE 47 for no gain (R.Wendell). NE-S.Ridley was injured during the play. The Replay Assistant challenged the fumble ruling and the play was Upheld.,13,21,2012 -20130120_BAL@NE,4,12,46,BAL,NE,1,10,47,(12:46) (Shotgun) J.Flacco pass deep left to T.Smith to NE 31 for 16 yards (K.Arrington).,21,13,2012 -20130120_BAL@NE,4,12,18,BAL,NE,1,10,31,(12:18) (No Huddle) J.Flacco scrambles left end ran ob at NE 17 for 14 yards.,21,13,2012 -20130120_BAL@NE,4,11,54,BAL,NE,1,10,17,(11:54) (No Huddle Shotgun) J.Flacco pass short middle to J.Jones to NE 11 for 6 yards (B.Spikes).,21,13,2012 -20130120_BAL@NE,4,11,19,BAL,NE,2,4,11,(11:19) (No Huddle Shotgun) J.Flacco pass short right to A.Boldin for 11 yards TOUCHDOWN.,21,13,2012 -20130120_BAL@NE,4,11,19,BAL,NE,,,11,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,13,2012 -20130120_BAL@NE,4,11,4,NE,BAL,1,10,71,(11:04) (Shotgun) T.Brady pass short right to B.Lloyd ran ob at NE 41 for 12 yards.,13,28,2012 -20130120_BAL@NE,4,10,46,NE,BAL,1,10,59,(10:46) (No Huddle Shotgun) T.Brady pass short right to S.Vereen to 50 for 9 yards (B.Pollard).,13,28,2012 -20130120_BAL@NE,4,10,27,NE,BAL,2,1,50,(10:27) (No Huddle Shotgun) T.Brady pass incomplete short right to B.Lloyd.,13,28,2012 -20130120_BAL@NE,4,10,19,NE,BAL,3,1,50,(10:19) (No Huddle Shotgun) S.Vereen up the middle to BLT 43 for 7 yards (C.Graham).,13,28,2012 -20130120_BAL@NE,4,9,53,NE,BAL,1,10,43,(9:53) (No Huddle Shotgun) T.Brady pass short left to W.Welker to BLT 38 for 5 yards (C.Williams; H.Ngata).,13,28,2012 -20130120_BAL@NE,4,9,23,NE,BAL,2,5,38,(9:23) (No Huddle Shotgun) T.Brady pass short left to S.Vereen ran ob at BLT 25 for 13 yards.,13,28,2012 -20130120_BAL@NE,4,9,9,NE,BAL,1,10,25,(9:09) (No Huddle Shotgun) T.Brady pass short middle to D.Branch to BLT 19 for 6 yards (J.Smith).,13,28,2012 -20130120_BAL@NE,4,8,42,NE,BAL,2,4,19,(8:42) (No Huddle Shotgun) T.Brady pass incomplete short left to S.Vereen. NE 12-Brady now has 5862 career postseason passing yards passing Brett Favre for most all-time.,13,28,2012 -20130120_BAL@NE,4,8,39,NE,BAL,3,4,19,(8:39) (Shotgun) T.Brady pass incomplete short right to W.Welker.,13,28,2012 -20130120_BAL@NE,4,8,35,NE,BAL,4,4,19,(8:35) (Shotgun) T.Brady pass incomplete deep middle to D.Branch [H.Ngata].,13,28,2012 -20130120_BAL@NE,4,8,27,BAL,NE,1,10,81,(8:27) (Shotgun) J.Flacco sacked at BLT 18 for -1 yards (R.Ninkovich).,28,13,2012 -20130120_BAL@NE,4,7,44,BAL,NE,2,11,82,(7:44) (Shotgun) J.Flacco pass incomplete short left to J.Jones [B.Spikes].,28,13,2012 -20130120_BAL@NE,4,7,39,BAL,NE,3,11,82,(7:39) (Shotgun) J.Flacco pass incomplete short right to A.Boldin.,28,13,2012 -20130120_BAL@NE,4,7,34,BAL,NE,4,11,82,(7:34) S.Koch punts 42 yards to NE 40 Center-M.Cox downed by BLT-J.Ihedigbo.,28,13,2012 -20130120_BAL@NE,4,7,25,NE,BAL,1,10,60,(7:25) (Shotgun) T.Brady pass deep left to W.Welker to BLT 24 for 36 yards (C.Graham). NE 83-Welker 3rd career 100-yard postseason game.,13,28,2012 -20130120_BAL@NE,4,6,57,NE,BAL,1,10,24,(6:57) (No Huddle Shotgun) T.Brady pass short middle intended for A.Hernandez INTERCEPTED by D.Ellerbe (P.McPhee) at BLT 16. D.Ellerbe to BLT 18 for 2 yards. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,13,28,2012 -20130120_BAL@NE,4,6,49,BAL,NE,1,10,82,(6:49) R.Rice left guard to BLT 18 for no gain (J.Francis).,28,13,2012 -20130120_BAL@NE,4,6,7,BAL,NE,2,10,82,(6:07) R.Rice left end to BLT 27 for 9 yards (J.Francis).,28,13,2012 -20130120_BAL@NE,4,5,21,BAL,NE,3,1,73,(5:21) R.Rice up the middle to BLT 29 for 2 yards (B.Spikes).,28,13,2012 -20130120_BAL@NE,4,4,38,BAL,NE,1,10,71,(4:38) B.Pierce up the middle to BLT 34 for 5 yards (J.Cunningham).,28,13,2012 -20130120_BAL@NE,4,3,56,BAL,NE,2,5,66,(3:56) V.Leach up the middle to BLT 38 for 4 yards (J.Francis).,28,13,2012 -20130120_BAL@NE,4,3,13,BAL,NE,3,1,62,(3:13) V.Leach up the middle to BLT 43 for 5 yards (J.Francis; D.McCourty).,28,13,2012 -20130120_BAL@NE,4,2,27,BAL,NE,1,10,57,(2:27) R.Rice left end to BLT 43 for no gain (D.Hightower; D.McCourty).,28,13,2012 -20130120_BAL@NE,4,2,20,BAL,NE,2,10,57,(2:20) R.Rice up the middle to BLT 45 for 2 yards (J.Mayo; B.Spikes).,28,13,2012 -20130120_BAL@NE,4,2,15,BAL,NE,3,8,55,(2:15) R.Rice right end to BLT 45 for no gain (B.Spikes).,28,13,2012 -20130120_BAL@NE,4,2,11,BAL,NE,4,8,55,(2:11) S.Koch punts 22 yards to NE 33 Center-M.Cox out of bounds.,28,13,2012 -20130120_BAL@NE,4,2,5,NE,BAL,1,10,67,(2:05) (Shotgun) T.Brady pass short right to D.Branch ran ob at NE 43 for 10 yards.,13,28,2012 -20130120_BAL@NE,4,2,2,NE,BAL,1,10,57,(2:02) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Woodhead [H.Ngata].,13,28,2012 -20130120_BAL@NE,4,1,58,NE,BAL,2,10,57,(1:58) (Shotgun) T.Brady pass short middle to W.Welker to BLT 45 for 12 yards (R.Lewis; C.Graham).,13,28,2012 -20130120_BAL@NE,4,1,45,NE,BAL,1,10,45,(1:45) T.Brady spiked the ball to stop the clock.,13,28,2012 -20130120_BAL@NE,4,1,44,NE,BAL,2,10,45,(1:44) (Shotgun) T.Brady pass short left to D.Woodhead ran ob at BLT 33 for 12 yards. NE 12-Brady 6th career 300-yard postseason game ties Joe Montana & Kurt Warner for 2nd all-time (Peyton Manning 8).,13,28,2012 -20130120_BAL@NE,4,1,40,NE,BAL,1,10,33,(1:40) (No Huddle Shotgun) T.Brady pass incomplete short left to D.Woodhead [T.Suggs].,13,28,2012 -20130120_BAL@NE,4,1,35,NE,BAL,2,10,33,(1:35) (No Huddle Shotgun) T.Brady pass incomplete short right to D.Branch (P.McPhee).,13,28,2012 -20130120_BAL@NE,4,1,31,NE,BAL,3,10,33,(1:31) (No Huddle Shotgun) T.Brady pass short left to A.Hernandez to BLT 22 for 11 yards (B.Pollard) [C.Upshaw].,13,28,2012 -20130120_BAL@NE,4,1,14,NE,BAL,1,10,22,(1:14) T.Brady spiked the ball to stop the clock.,13,28,2012 -20130120_BAL@NE,4,1,13,NE,BAL,2,10,22,(1:13) (No Huddle Shotgun) T.Brady pass deep left intended for B.Lloyd INTERCEPTED by C.Williams at BLT -5. Touchback.,13,28,2012 -20130120_BAL@NE,4,1,6,BAL,NE,1,10,80,(1:06) J.Flacco kneels dead ball declared at BLT 19 for -1 yards.,28,13,2012 -20130120_BAL@NE,4,0,36,BAL,NE,2,11,81,(:36) J.Flacco kneels dead ball declared at BLT 18 for -1 yards.,28,13,2012 -20130120_BAL@NE,4,0,36,BAL,NE,,,81,                      ,28,13,2012 -20130127_AFC@NFC,1,0,0,,NFC,,,81,P.Dawson kicks 70 yards from AFC 35 to NFC -5. L.Washington to NFC 17 for 22 yards (T.Hali).,0,0,2012 -20130127_AFC@NFC,1,60,0,,NFC,1,10,17,(15:00) D.Brees FUMBLES (Aborted) at NFC 17 RECOVERED by AFC-J.Byrd at NFC 17. J.Byrd to NFC 9 for 8 yards. Lateral to C.Bailey to NFC 7 for 2 yards.,0,0,2012 -20130127_AFC@NFC,1,59,43,,NFC,1,7,7,(14:43) P.Manning pass left to R.Wayne to NFC 6 for 1 yard.,0,0,2012 -20130127_AFC@NFC,1,59,18,,NFC,2,6,6,(14:18) P.Manning pass incomplete left to A.Johnson.,0,0,2012 -20130127_AFC@NFC,1,59,14,,NFC,3,6,6,(14:14) P.Manning pass incomplete left to J.Watt (C.Tillman).,0,0,2012 -20130127_AFC@NFC,1,59,7,,NFC,4,6,6,(14:07) P.Manning pass to A.Green for 6 yards TOUCHDOWN.,0,0,2012 -20130127_AFC@NFC,1,59,7,,NFC,,,6,P.Dawson extra point is GOOD Center-J.Denney Holder-D.Colquitt.,0,0,2012 -20130127_AFC@NFC,1,59,7,,NFC,,,6,P.Dawson kicks 74 yards from AFC 35 to NFC -9. L.Washington to NFC 19 for 28 yards (D.Thomas).,7,0,2012 -20130127_AFC@NFC,1,58,56,,NFC,1,10,19,(13:56) A.Peterson right tackle to NFC 23 for 4 yards (R.Starks).,7,0,2012 -20130127_AFC@NFC,1,58,22,,NFC,2,6,23,(13:22) D.Brees pass incomplete deep right to J.Witten.,7,0,2012 -20130127_AFC@NFC,1,58,17,,NFC,3,6,23,(13:17) (Shotgun) D.Brees pass deep right to K.Rudolph to NFC 46 for 23 yards (T.Hali).,7,0,2012 -20130127_AFC@NFC,1,57,44,,NFC,1,10,46,(12:44) A.Peterson up the middle to NFC 47 for 1 yard (J.Byrd; E.Berry).,7,0,2012 -20130127_AFC@NFC,1,57,11,,NFC,2,9,47,(12:11) (Shotgun) D.Brees pass short left to J.Witten to AFC 48 for 5 yards (E.Berry).,7,0,2012 -20130127_AFC@NFC,1,56,35,,NFC,3,4,48,(11:35) (Shotgun) D.Brees pass short middle to L.Fitzgerald to AFC 39 for 9 yards (J.Joseph).,7,0,2012 -20130127_AFC@NFC,1,55,58,,NFC,1,10,39,(10:58) A.Peterson left tackle to AFC 36 for 3 yards (J.Watt; T.Hali).,7,0,2012 -20130127_AFC@NFC,1,55,17,,NFC,2,7,36,(10:17) (Shotgun) D.Brees pass deep right to V.Jackson for 36 yards TOUCHDOWN.,7,0,2012 -20130127_AFC@NFC,1,55,17,,NFC,,,36,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,7,0,2012 -20130127_AFC@NFC,1,55,17,,NFC,,,36,B.Walsh kicks 65 yards from NFC 35 to end zone Touchback.,7,7,2012 -20130127_AFC@NFC,1,55,9,,NFC,1,10,20,(10:09) P.Manning pass short left to R.Wayne to AFC 31 for 11 yards (C.Greenway).,7,7,2012 -20130127_AFC@NFC,1,54,36,,NFC,1,10,31,(9:36) P.Manning pass short left to A.Johnson to AFC 40 for 9 yards (C.Tillman).,7,7,2012 -20130127_AFC@NFC,1,54,3,,NFC,2,1,40,(9:03) A.Foster right tackle to AFC 40 for no gain (N.Suh).,7,7,2012 -20130127_AFC@NFC,1,53,31,,NFC,3,1,40,(8:31) M.Reece up the middle to AFC 41 for 1 yard (J.Allen).,7,7,2012 -20130127_AFC@NFC,1,52,54,,NFC,1,10,41,(7:54) (Shotgun) P.Manning pass short left to A.Green to AFC 48 for 7 yards (L.Fletcher).,7,7,2012 -20130127_AFC@NFC,1,52,11,,NFC,2,3,48,(7:11) A.Foster right guard to AFC 48 for no gain (N.Suh).,7,7,2012 -20130127_AFC@NFC,1,51,35,,NFC,3,3,48,(6:35) (Shotgun) P.Manning pass incomplete short left to R.Wayne (P.Peterson).,7,7,2012 -20130127_AFC@NFC,1,51,30,,NFC,4,3,48,(6:30) D.Colquitt punts 47 yards to NFC 5 Center-J.Denney. L.Washington to NFC 17 for 12 yards (J.Denney).,7,7,2012 -20130127_AFC@NFC,1,51,18,,NFC,1,10,17,(6:18) D.Brees pass incomplete short left to V.Jackson.,7,7,2012 -20130127_AFC@NFC,1,51,14,,NFC,2,10,17,(6:14) D.Brees pass short right to V.Cruz to NFC 24 for 7 yards (D.Johnson).,7,7,2012 -20130127_AFC@NFC,1,50,45,,NFC,3,3,24,(5:45) (Shotgun) D.Brees scrambles right end to NFC 25 for 1 yard (G.Atkins).,7,7,2012 -20130127_AFC@NFC,1,50,7,,NFC,4,2,25,(5:07) T.Morstead punts 37 yards to AFC 38 Center-D.Muhlbach. J.Cribbs to AFC 41 for 3 yards (T.Jennings; T.DeCoud).,7,7,2012 -20130127_AFC@NFC,1,49,56,,NFC,1,10,41,(4:56) A.Foster up the middle to AFC 39 for -2 yards (G.McCoy).,7,7,2012 -20130127_AFC@NFC,1,49,20,,NFC,2,12,39,(4:20) (Shotgun) P.Manning pass incomplete short left to M.Reece.,7,7,2012 -20130127_AFC@NFC,1,48,46,,NFC,3,12,39,(3:46) (Shotgun) P.Manning pass incomplete deep right to A.Johnson.,7,7,2012 -20130127_AFC@NFC,1,48,39,,NFC,4,12,39,(3:39) D.Colquitt punts 55 yards to NFC 6 Center-J.Denney. L.Washington to NFC 20 for 14 yards (M.Slater).,7,7,2012 -20130127_AFC@NFC,1,48,27,,NFC,1,10,20,(3:27) D.Brees pass short left to V.Cruz to NFC 25 for 5 yards (A.Cromartie).,7,7,2012 -20130127_AFC@NFC,1,47,54,,NFC,2,5,25,(2:54) D.Brees pass deep middle to K.Rudolph to NFC 49 for 24 yards (E.Berry).,7,7,2012 -20130127_AFC@NFC,1,47,17,,NFC,1,10,49,(2:17) (Shotgun) A.Peterson up the middle to AFC 49 for 2 yards (J.Watt).,7,7,2012 -20130127_AFC@NFC,1,46,40,,NFC,2,8,49,(1:40) D.Brees pass short right to V.Jackson to AFC 27 for 22 yards (E.Berry).,7,7,2012 -20130127_AFC@NFC,1,46,5,,NFC,1,10,27,(1:05) A.Peterson left tackle pushed ob at AFC 24 for 3 yards (R.Mathis).,7,7,2012 -20130127_AFC@NFC,1,45,36,,NFC,2,7,24,(:36) D.Brees pass incomplete short left to K.Rudolph.,7,7,2012 -20130127_AFC@NFC,1,45,30,,NFC,3,7,24,(:30) (Shotgun) D.Brees sacked at AFC 30 for -6 yards (C.Wake).,7,7,2012 -20130127_AFC@NFC,2,45,0,,NFC,4,13,30,(15:00) B.Walsh 48 yard field goal is GOOD Center-D.Muhlbach Holder-T.Morstead.,7,7,2012 -20130127_AFC@NFC,2,45,0,,NFC,,,30,B.Walsh kicks 65 yards from NFC 35 to end zone Touchback.,7,10,2012 -20130127_AFC@NFC,2,44,54,,NFC,1,10,20,(14:54) (Shotgun) P.Manning sacked at AFC 8 for -12 yards (J.Pierre-Paul).,7,10,2012 -20130127_AFC@NFC,2,44,18,,NFC,2,22,8,(14:18) (Shotgun) P.Manning pass short right to A.Johnson to AFC 17 for 9 yards (A.Spencer).,7,10,2012 -20130127_AFC@NFC,2,43,40,,NFC,3,13,17,(13:40) (Shotgun) P.Manning pass incomplete deep left to O.Daniels.,7,10,2012 -20130127_AFC@NFC,2,43,34,,NFC,4,13,17,(13:34) D.Colquitt punts 46 yards to NFC 37 Center-J.Denney. L.Washington to NFC 35 for -2 yards. Lateral to E.Thomas to NFC 24 for -11 yards (E.Berry).,7,10,2012 -20130127_AFC@NFC,2,43,18,,NFC,1,10,24,(13:18) E.Manning pass incomplete deep left to V.Jackson.,7,10,2012 -20130127_AFC@NFC,2,43,11,,NFC,2,10,24,(13:11) (Shotgun) E.Manning pass short right to V.Jackson pushed ob at NFC 30 for 6 yards (C.Bailey).,7,10,2012 -20130127_AFC@NFC,2,42,36,,NFC,3,4,30,(12:36) E.Manning pass short right to L.Fitzgerald to NFC 37 for 7 yards (C.Bailey).,7,10,2012 -20130127_AFC@NFC,2,42,1,,NFC,1,10,37,(12:01) M.Lynch left guard to NFC 39 for 2 yards (D.Johnson).,7,10,2012 -20130127_AFC@NFC,2,41,24,,NFC,2,8,39,(11:24) E.Manning pass short middle intended for K.Rudolph INTERCEPTED by D.Johnson at NFC 42. D.Johnson for 42 yards TOUCHDOWN.,7,10,2012 -20130127_AFC@NFC,2,41,24,,NFC,,,39,P.Dawson extra point is GOOD Center-J.Denney Holder-D.Colquitt.,7,10,2012 -20130127_AFC@NFC,2,41,24,,NFC,,,39,P.Dawson kicks 63 yards from AFC 35 to NFC 2. L.Washington to NFC 27 for 25 yards (J.Houston).,14,10,2012 -20130127_AFC@NFC,2,41,8,,NFC,1,10,27,(11:08) E.Manning pass short right to V.Cruz ran ob at NFC 38 for 11 yards.,14,10,2012 -20130127_AFC@NFC,2,41,3,,NFC,1,10,38,(11:03) (Shotgun) M.Lynch right guard to NFC 44 for 6 yards (R.Mathis).,14,10,2012 -20130127_AFC@NFC,2,40,6,,NFC,2,4,44,(10:06) E.Manning pass short left to V.Jackson to AFC 44 for 12 yards (R.Mathis; J.Joseph).,14,10,2012 -20130127_AFC@NFC,2,39,33,,NFC,1,10,44,(9:33) E.Manning pass short right to V.Cruz to AFC 39 for 5 yards (C.Bailey).,14,10,2012 -20130127_AFC@NFC,2,38,59,,NFC,2,5,39,(8:59) E.Manning pass short left to V.Cruz to AFC 28 for 11 yards (J.Joseph).,14,10,2012 -20130127_AFC@NFC,2,38,23,,NFC,1,10,28,(8:23) (Shotgun) E.Manning pass incomplete short left to L.Fitzgerald.,14,10,2012 -20130127_AFC@NFC,2,38,17,,NFC,2,10,28,(8:17) (Shotgun) E.Manning pass incomplete short left to L.Fitzgerald.,14,10,2012 -20130127_AFC@NFC,2,38,12,,NFC,3,10,28,(8:12) (Shotgun) M.Lynch up the middle to AFC 16 for 12 yards (J.Byrd).,14,10,2012 -20130127_AFC@NFC,2,37,33,,NFC,1,10,16,(7:33) E.Manning pass short right to V.Cruz pushed ob at AFC 9 for 7 yards (L.Landry).,14,10,2012 -20130127_AFC@NFC,2,37,3,,NFC,2,3,9,(7:03) E.Manning pass short middle to V.Cruz for 9 yards TOUCHDOWN.,14,10,2012 -20130127_AFC@NFC,2,37,3,,NFC,,,9,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,14,10,2012 -20130127_AFC@NFC,2,37,3,,NFC,,,9,B.Walsh kicks 72 yards from NFC 35 to AFC -7. J.Cribbs to AFC 25 for 32 yards (L.Fletcher).,14,17,2012 -20130127_AFC@NFC,2,36,54,,NFC,1,10,25,(6:54) R.Wayne right end to AFC 20 for -5 yards (L.Alexander).,14,17,2012 -20130127_AFC@NFC,2,36,14,,NFC,2,15,20,(6:14) (Shotgun) M.Schaub pass incomplete short right to J.Gresham.,14,17,2012 -20130127_AFC@NFC,2,36,10,,NFC,3,15,20,(6:10) (Shotgun) M.Schaub pass deep left to A.Johnson to AFC 36 for 16 yards (C.Tillman).,14,17,2012 -20130127_AFC@NFC,2,35,31,,NFC,1,10,36,(5:31) J.Charles up the middle to AFC 38 for 2 yards (J.Peppers).,14,17,2012 -20130127_AFC@NFC,2,34,57,,NFC,2,8,38,(4:57) M.Schaub pass short right to D.Thomas to 50 for 12 yards (L.Alexander).,14,17,2012 -20130127_AFC@NFC,2,34,25,,NFC,1,10,50,(4:25) J.Charles right guard to NFC 43 for 7 yards (L.Alexander).,14,17,2012 -20130127_AFC@NFC,2,33,47,,NFC,2,3,43,(3:47) J.Charles up the middle to NFC 40 for 3 yards (T.DeCoud).,14,17,2012 -20130127_AFC@NFC,2,33,8,,NFC,1,10,40,(3:08) M.Schaub pass deep left intended for D.Thomas INTERCEPTED by W.Moore at NFC 1. W.Moore to NFC 28 for 27 yards (R.Wayne).,14,17,2012 -20130127_AFC@NFC,2,32,50,,NFC,1,10,28,(2:50) (Shotgun) E.Manning pass deep right to K.Rudolph to AFC 20 for 52 yards (E.Berry).,14,17,2012 -20130127_AFC@NFC,2,32,0,,NFC,1,10,20,(2:00) (Shotgun) E.Manning pass incomplete deep left to V.Jackson.,14,17,2012 -20130127_AFC@NFC,2,31,55,,NFC,2,10,20,(1:55) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,14,17,2012 -20130127_AFC@NFC,2,31,52,,NFC,3,10,20,(1:52) (Shotgun) E.Manning pass incomplete deep left to V.Jackson. PENALTY on AFC-C.Bailey Defensive Pass Interference 19 yards enforced at AFC 20 - No Play.,14,17,2012 -20130127_AFC@NFC,2,31,47,,NFC,1,1,1,(1:47) (Shotgun) M.Lynch up the middle for 1 yard TOUCHDOWN.,14,17,2012 -20130127_AFC@NFC,2,31,47,,NFC,,,1,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,14,17,2012 -20130127_AFC@NFC,2,31,47,,NFC,,,1,B.Walsh kicks 65 yards from NFC 35 to end zone Touchback.,14,24,2012 -20130127_AFC@NFC,2,31,41,,NFC,1,10,20,(1:41) (Shotgun) M.Schaub pass incomplete short right to D.Thomas.,14,24,2012 -20130127_AFC@NFC,2,31,36,,NFC,2,10,20,(1:36) (Shotgun) M.Schaub pass incomplete short right to J.Charles.,14,24,2012 -20130127_AFC@NFC,2,31,31,,NFC,3,10,20,(1:31) (Shotgun) M.Schaub sacked at AFC 14 for -6 yards (J.Peppers).,14,24,2012 -20130127_AFC@NFC,2,31,25,,NFC,4,16,14,(1:25) D.Colquitt punts 58 yards to NFC 28 Center-J.Denney. L.Washington to NFC 22 for -6 yards. Lateral to P.Peterson to NFC 29 for 7 yards (M.Slater).,14,24,2012 -20130127_AFC@NFC,2,31,8,,NFC,1,10,29,(1:08) (Shotgun) E.Manning pass short middle to K.Rudolph to NFC 49 for 20 yards (D.Johnson).,14,24,2012 -20130127_AFC@NFC,2,30,51,,NFC,1,10,49,(:51) (Shotgun) E.Manning pass short left to V.Cruz ran ob at AFC 40 for 11 yards.,14,24,2012 -20130127_AFC@NFC,2,30,45,,NFC,1,10,40,(:45) (Shotgun) E.Manning pass short left to D.Martin to AFC 35 for 5 yards (D.Johnson).,14,24,2012 -20130127_AFC@NFC,2,30,33,,NFC,2,5,35,(:33) (Shotgun) E.Manning pass short right to V.Jackson ran ob at AFC 25 for 10 yards (A.Cromartie).,14,24,2012 -20130127_AFC@NFC,2,30,28,,NFC,1,10,25,(:28) (Shotgun) E.Manning pass short middle to D.Martin to AFC 18 for 7 yards (E.Berry).,14,24,2012 -20130127_AFC@NFC,2,30,12,,NFC,2,3,18,(:12) E.Manning spiked the ball to stop the clock.,14,24,2012 -20130127_AFC@NFC,2,30,11,,NFC,3,3,18,(:11) (Shotgun) E.Manning pass short right to L.Fitzgerald pushed ob at AFC 3 for 15 yards (A.Cromartie).,14,24,2012 -20130127_AFC@NFC,2,30,6,,NFC,1,3,3,(:06) E.Manning pass short right to K.Rudolph for 3 yards TOUCHDOWN.,14,24,2012 -20130127_AFC@NFC,2,30,6,,NFC,,,3,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,14,24,2012 -20130127_AFC@NFC,3,30,0,,NFC,,,3,B.Walsh kicks 74 yards from NFC 35 to AFC -9. J.Cribbs pushed ob at AFC 22 for 31 yards (C.Tillman).,14,31,2012 -20130127_AFC@NFC,3,29,49,,NFC,1,10,22,(14:49) (Shotgun) M.Schaub pass short left to D.Thomas to AFC 36 for 14 yards (E.Thomas; A.Spencer).,14,31,2012 -20130127_AFC@NFC,3,29,13,,NFC,1,10,36,(14:13) (Shotgun) M.Schaub pass short left intended for D.Thomas INTERCEPTED by E.Thomas at AFC 43. E.Thomas to AFC 43 for no gain (D.Thomas).,14,31,2012 -20130127_AFC@NFC,3,29,8,,NFC,1,10,43,(14:08) R.Wilson pass short left to V.Cruz pushed ob at AFC 35 for 8 yards (J.Joseph).,14,31,2012 -20130127_AFC@NFC,3,28,45,,NFC,2,2,35,(13:45) R.Wilson pass short right to J.Witten to AFC 28 for 7 yards (C.Bailey).,14,31,2012 -20130127_AFC@NFC,3,28,6,,NFC,1,10,28,(13:06) (Shotgun) R.Wilson pass deep left to D.Martin for 28 yards TOUCHDOWN.,14,31,2012 -20130127_AFC@NFC,3,28,6,,NFC,,,28,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,14,31,2012 -20130127_AFC@NFC,3,28,6,,NFC,,,28,B.Walsh kicks 65 yards from NFC 35 to end zone Touchback.,14,38,2012 -20130127_AFC@NFC,3,27,56,,NFC,1,10,20,(12:56) (Shotgun) M.Schaub pass short right to A.Green pushed ob at AFC 26 for 6 yards (T.Jennings).,14,38,2012 -20130127_AFC@NFC,3,27,28,,NFC,2,4,26,(12:28) (Shotgun) M.Schaub pass short left to D.Thomas to AFC 32 for 6 yards (E.Thomas).,14,38,2012 -20130127_AFC@NFC,3,26,48,,NFC,1,10,32,(11:48) (Shotgun) M.Schaub pass incomplete short left to C.Spiller [J.Allen].,14,38,2012 -20130127_AFC@NFC,3,26,44,,NFC,2,10,32,(11:44) (Shotgun) M.Schaub pass short right to D.Thomas to AFC 44 for 12 yards (P.Peterson).,14,38,2012 -20130127_AFC@NFC,3,26,7,,NFC,1,10,44,(11:07) (Shotgun) M.Schaub pass short right to C.Spiller to NFC 49 for 7 yards (L.Fletcher).,14,38,2012 -20130127_AFC@NFC,3,25,37,,NFC,2,3,49,(10:37) (Shotgun) M.Schaub pass incomplete short left to D.Thomas.,14,38,2012 -20130127_AFC@NFC,3,25,33,,NFC,3,3,49,(10:33) (Shotgun) M.Schaub pass short right to O.Daniels to NFC 36 for 13 yards (T.Jennings).,14,38,2012 -20130127_AFC@NFC,3,24,53,,NFC,1,10,36,(9:53) (Shotgun) M.Schaub pass incomplete short middle to O.Daniels (H.Melton).,14,38,2012 -20130127_AFC@NFC,3,24,49,,NFC,2,10,36,(9:49) (Shotgun) M.Schaub pass incomplete deep right to O.Daniels.,14,38,2012 -20130127_AFC@NFC,3,24,43,,NFC,3,10,36,(9:43) (Shotgun) M.Schaub scrambles right end ran ob at NFC 25 for 11 yards.,14,38,2012 -20130127_AFC@NFC,3,24,9,,NFC,1,10,25,(9:09) (Shotgun) M.Schaub pass incomplete deep right to A.Green.,14,38,2012 -20130127_AFC@NFC,3,24,1,,NFC,2,10,25,(9:01) (Shotgun) M.Schaub pass short left to D.Thomas to NFC 17 for 8 yards (C.Tillman).,14,38,2012 -20130127_AFC@NFC,3,23,21,,NFC,3,2,17,(8:21) (Shotgun) M.Schaub pass short middle to M.Slater to NFC 4 for 13 yards (T.DeCoud; R.Kerrigan).,14,38,2012 -20130127_AFC@NFC,3,22,43,,NFC,1,4,4,(7:43) C.Spiller up the middle to NFC 6 for -2 yards (T.DeCoud).,14,38,2012 -20130127_AFC@NFC,3,22,3,,NFC,2,6,6,(7:03) M.Schaub pass short right to O.Daniels pushed ob at NFC 4 for 2 yards (R.Kerrigan).,14,38,2012 -20130127_AFC@NFC,3,24,1,,NFC,3,4,4,(9:01) (Shotgun) M.Schaub pass short left to J.Cribbs for 4 yards TOUCHDOWN.,14,38,2012 -20130127_AFC@NFC,3,24,1,,NFC,,,4,P.Dawson extra point is GOOD Center-J.Denney Holder-D.Colquitt.,14,38,2012 -20130127_AFC@NFC,3,24,1,,NFC,,,4,P.Dawson kicks 72 yards from AFC 35 to NFC -7. L.Washington to AFC 15 for 92 yards (M.Slater). Leon Washington sets the longest kickoff return in a Pro Bowl with 92 yards.,21,38,2012 -20130127_AFC@NFC,3,21,9,,NFC,1,10,15,(6:09) J.Felton right guard to AFC 8 for 7 yards (E.Dumervil).,21,38,2012 -20130127_AFC@NFC,3,20,34,,NFC,2,3,8,(5:34) R.Wilson sacked at AFC 17 for -9 yards (R.Mathis).,21,38,2012 -20130127_AFC@NFC,3,19,57,,NFC,3,12,17,(4:57) (Shotgun) PENALTY on NFC-J.Bushrod False Start 5 yards enforced at AFC 17 - No Play.,21,38,2012 -20130127_AFC@NFC,3,19,43,,NFC,3,17,22,(4:43) R.Wilson scrambles up the middle to AFC 9 for 13 yards (C.Bailey).,21,38,2012 -20130127_AFC@NFC,3,18,59,,NFC,4,4,9,(3:59) (Shotgun) R.Wilson pass short left to L.Fitzgerald for 9 yards TOUCHDOWN.,21,38,2012 -20130127_AFC@NFC,3,18,59,,NFC,,,9,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,21,38,2012 -20130127_AFC@NFC,3,18,59,,NFC,,,9,B.Walsh kicks 65 yards from NFC 35 to end zone Touchback.,21,45,2012 -20130127_AFC@NFC,3,18,52,,NFC,1,10,18,(3:52) A.Luck FUMBLES (Aborted) at AFC 20 RECOVERED by NFC-G.McCoy at AFC 18. G.McCoy to AFC 18 for no gain (A.Luck).,21,45,2012 -20130127_AFC@NFC,3,18,44,,NFC,1,10,18,(3:44) D.Martin up the middle to AFC 13 for 5 yards (J.Houston).,21,45,2012 -20130127_AFC@NFC,3,18,8,,NFC,2,5,13,(3:08) J.Felton up the middle to AFC 8 for 5 yards (J.Byrd).,21,45,2012 -20130127_AFC@NFC,3,17,34,,NFC,1,8,8,(2:34) J.Felton up the middle to AFC 5 for 3 yards (D.Johnson).,21,45,2012 -20130127_AFC@NFC,3,17,0,,NFC,2,5,5,(2:00) R.Wilson pass incomplete short right to K.Rudolph (J.Mayo).,21,45,2012 -20130127_AFC@NFC,3,18,44,,NFC,3,5,5,(3:44) (Shotgun) R.Wilson pass short right to V.Jackson for 5 yards TOUCHDOWN.,21,45,2012 -20130127_AFC@NFC,3,18,44,,NFC,,,5,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead.,21,45,2012 -20130127_AFC@NFC,3,16,46,,NFC,1,10,11,(1:46) D.Martin right guard to AFC 3 for 8 yards (D.Johnson).,21,52,2012 -20130127_AFC@NFC,3,16,3,,NFC,2,2,3,(1:03) D.Martin left guard to AFC 8 for -5 yards (J.Watt).,21,52,2012 -20130127_AFC@NFC,3,16,46,,NFC,3,7,8,(1:46) R.Wilson sacked at AFC 13 for -5 yards (J.Watt).,21,52,2012 -20130127_AFC@NFC,4,15,0,,NFC,4,12,13,(15:00) (Field Goal formation) T.Morstead pass short right intended for K.Rudolph INTERCEPTED by E.Berry at AFC 14. E.Berry for 86 yards TOUCHDOWN NULLIFIED by Penalty. PENALTY on AFC-A.Cromartie Defensive Offside 5 yards enforced at AFC 13 - No Play.,21,52,2012 -20130127_AFC@NFC,4,14,42,,NFC,4,7,8,(14:42) B.Walsh 26 yard field goal is GOOD Center-D.Muhlbach Holder-T.Morstead.,21,52,2012 -20130127_AFC@NFC,4,14,42,,NFC,,,8,T.Morstead kicks 60 yards from NFC 35 to AFC 5. C.Spiller to AFC 20 for 15 yards (V.Jackson).,21,55,2012 -20130127_AFC@NFC,4,14,27,,NFC,1,10,20,(14:27) (Shotgun) A.Luck pass incomplete short right to J.Cribbs.,21,55,2012 -20130127_AFC@NFC,4,14,23,,NFC,2,10,20,(14:23) (Shotgun) A.Luck pass short middle to C.Spiller to AFC 31 for 11 yards (T.Jennings).,21,55,2012 -20130127_AFC@NFC,4,13,54,,NFC,1,10,31,(13:54) (Shotgun) A.Luck pass deep right to J.Cribbs to NFC 30 for 39 yards (T.Jennings).,21,55,2012 -20130127_AFC@NFC,4,14,38,,NFC,1,10,30,(14:38) (Shotgun) A.Luck pass incomplete short middle to C.Spiller.,21,55,2012 -20130127_AFC@NFC,4,13,12,,NFC,2,10,30,(13:12) (Shotgun) A.Luck pass short middle to C.Spiller to NFC 27 for 3 yards (L.Alexander).,21,55,2012 -20130127_AFC@NFC,4,12,40,,NFC,3,7,27,(12:40) (Shotgun) A.Luck pass deep right to A.Green to NFC 4 for 23 yards (W.Moore).,21,55,2012 -20130127_AFC@NFC,4,11,52,,NFC,1,4,4,(11:52) A.Luck pass incomplete short right to J.Gresham.,21,55,2012 -20130127_AFC@NFC,4,14,38,,NFC,2,4,4,(14:38) (Shotgun) A.Luck pass incomplete short left to M.Slater.,21,55,2012 -20130127_AFC@NFC,4,14,38,,NFC,3,4,4,(14:38) (Shotgun) A.Luck pass short right to A.Green for 4 yards TOUCHDOWN.,21,55,2012 -20130127_AFC@NFC,4,14,38,,NFC,,,4,P.Dawson extra point is GOOD Center-J.Denney Holder-D.Colquitt.,21,55,2012 -20130127_AFC@NFC,4,14,38,,NFC,,,4,P.Dawson kicks onside 6 yards from AFC 35 to AFC 41. T.DeCoud (didn't try to advance) to AFC 41 for no gain.,28,55,2012 -20130127_AFC@NFC,4,11,36,,NFC,1,10,41,(11:36) R.Wilson pass incomplete deep right to V.Cruz.,28,55,2012 -20130127_AFC@NFC,4,11,29,,NFC,2,10,41,(11:29) R.Wilson pass short right to L.Fitzgerald to AFC 28 for 13 yards (J.Houston).,28,55,2012 -20130127_AFC@NFC,4,10,59,,NFC,1,10,28,(10:59) L.Washington up the middle to AFC 26 for 2 yards (R.Mathis).,28,55,2012 -20130127_AFC@NFC,4,10,20,,NFC,2,8,26,(10:20) (Shotgun) PENALTY on NFC-J.Witten False Start 5 yards enforced at AFC 26 - No Play.,28,55,2012 -20130127_AFC@NFC,4,10,5,,NFC,2,13,31,(10:05) (Shotgun) R.Wilson pass short right to L.Fitzgerald to AFC 25 for 6 yards (J.Houston).,28,55,2012 -20130127_AFC@NFC,4,9,23,,NFC,3,7,25,(9:23) (Shotgun) R.Wilson pass deep right to V.Cruz to AFC 3 for 22 yards (J.Byrd). Victor Cruz sets a Pro Bowl record with 10 receptions in a single game.,28,55,2012 -20130127_AFC@NFC,4,8,39,,NFC,1,3,3,(8:39) L.Washington up the middle to AFC 3 for no gain (J.Mayo; K.Williams).,28,55,2012 -20130127_AFC@NFC,4,9,23,,NFC,2,3,3,(9:23) J.Felton up the middle for 3 yards TOUCHDOWN.,28,55,2012 -20130127_AFC@NFC,4,9,23,,NFC,,,3,B.Walsh extra point is GOOD Center-D.Muhlbach Holder-T.Morstead. Most points scored by a team in Pro Bowl history.,28,55,2012 -20130127_AFC@NFC,4,9,23,,NFC,,,3,T.Morstead kicks 62 yards from NFC 35 to AFC 3. C.Spiller to AFC 0 for -3 yards. Lateral to A.Cromartie pushed ob at AFC 23 for 23 yards (D.Washington).,28,62,2012 -20130127_AFC@NFC,4,7,43,,NFC,1,10,23,(7:43) (Shotgun) A.Luck pass short middle to O.Daniels to AFC 40 for 17 yards (C.Greenway).,28,62,2012 -20130127_AFC@NFC,4,7,16,,NFC,1,10,40,(7:16) A.Luck pass incomplete short right to C.Spiller.,28,62,2012 -20130127_AFC@NFC,4,7,9,,NFC,2,10,40,(7:09) A.Luck sacked at AFC 38 for -2 yards (J.Peppers).,28,62,2012 -20130127_AFC@NFC,4,7,9,,NFC,3,12,38,(7:09) (Shotgun) A.Luck pass short left to O.Daniels to NFC 49 for 13 yards (L.Fletcher).,28,62,2012 -20130127_AFC@NFC,4,6,2,,NFC,1,10,49,(6:02) (Shotgun) A.Luck pass deep right to A.Green for 49 yards TOUCHDOWN.,28,62,2012 -20130127_AFC@NFC,4,6,2,,NFC,,,49,P.Dawson extra point is GOOD Center-J.Denney Holder-D.Colquitt.,28,62,2012 -20130127_AFC@NFC,4,6,2,,NFC,,,49,P.Dawson kicks 65 yards from AFC 35 to end zone Touchback.,35,62,2012 -20130127_AFC@NFC,4,5,54,,NFC,1,10,20,(5:54) L.Washington up the middle to NFC 22 for 2 yards (J.Watt).,35,62,2012 -20130127_AFC@NFC,4,5,11,,NFC,2,8,22,(5:11) L.Washington left tackle to NFC 26 for 4 yards (K.Williams).,35,62,2012 -20130127_AFC@NFC,4,4,20,,NFC,3,4,26,(4:20) L.Washington up the middle to NFC 25 for -1 yards (J.Mayo).,35,62,2012 -20130127_AFC@NFC,4,3,45,,NFC,4,5,25,(3:45) T.Morstead punts 30 yards to AFC 45 Center-D.Muhlbach out of bounds.,35,62,2012 -20130127_AFC@NFC,4,3,37,,NFC,1,10,45,(3:37) (Shotgun) A.Luck pass short right to J.Gresham to 50 for 5 yards (T.DeCoud).,35,62,2012 -20130127_AFC@NFC,4,3,10,,NFC,2,5,50,(3:10) (Shotgun) A.Luck pass deep left to A.Green to NFC 26 for 24 yards (W.Moore).,35,62,2012 -20130127_AFC@NFC,4,2,35,,NFC,1,10,26,(2:35) (Shotgun) A.Luck pass short left to J.Cribbs pushed ob at NFC 13 for 13 yards (P.Peterson).,35,62,2012 -20130127_AFC@NFC,4,2,11,,NFC,1,10,13,(2:11) (Shotgun) A.Luck pass incomplete short right to J.Gresham.,35,62,2012 -20130127_AFC@NFC,4,2,3,,NFC,2,10,13,(2:03) (Shotgun) A.Luck pass short left to C.Spiller to NFC 9 for 4 yards (L.Alexander).,35,62,2012 -20130127_AFC@NFC,4,1,54,,NFC,3,6,9,(1:54) (Shotgun) A.Luck pass short right intended for J.Watt INTERCEPTED by J.Pierre-Paul at NFC 0. Touchback.,35,62,2012 -20130127_AFC@NFC,4,1,46,,NFC,1,10,20,(1:46) R.Wilson kneels to NFC 19 for -1 yards.,35,62,2012 -20130127_AFC@NFC,4,1,2,,NFC,2,11,19,(1:02) R.Wilson kneels to NFC 18 for -1 yards.,35,62,2012 -20130127_AFC@NFC,4,0,25,,NFC,3,12,18,(:25) R.Wilson kneels to NFC 17 for -1 yards. Kyle Rudolph named MVP.,35,62,2012 -20130127_AFC@NFC,4,0,25,,NFC,,,18,                      ,35,62,2012 -20130203_BAL@SF,1,0,0,BAL,SF,,,18,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,0,0,2012 -20130203_BAL@SF,1,60,0,SF,BAL,1,10,80,(15:00) (Shotgun) C.Kaepernick pass deep left to V.Davis to SF 40 for 20 yards (B.Pollard). PENALTY on SF-V.Davis Illegal Formation 5 yards enforced at SF 20 - No Play.,0,0,2012 -20130203_BAL@SF,1,59,39,SF,BAL,1,15,85,(14:39) (Shotgun) F.Gore left tackle to SF 15 for no gain (D.Ellerbe).,0,0,2012 -20130203_BAL@SF,1,59,0,SF,BAL,2,15,85,(14:00) (Shotgun) C.Kaepernick pass incomplete short right to D.Walker. Walker caught the ball but was already out-of-bounds.,0,0,2012 -20130203_BAL@SF,1,58,55,SF,BAL,3,15,85,(13:55) (Shotgun) F.Gore left tackle to SF 18 for 3 yards (R.Lewis).,0,0,2012 -20130203_BAL@SF,1,58,16,SF,BAL,4,12,82,(13:16) A.Lee punts 50 yards to BLT 32 Center-B.Jennings. J.Jones pushed ob at BLT 49 for 17 yards (M.Wilhoite).,0,0,2012 -20130203_BAL@SF,1,58,5,BAL,SF,1,10,51,(13:05) J.Flacco pass short left to V.Leach to SF 43 for 8 yards (P.Willis D.Whitner). Pass 0 YAC 8,0,0,2012 -20130203_BAL@SF,1,57,29,BAL,SF,2,2,43,(12:29) R.Rice left guard to SF 39 for 4 yards (J.Smith D.Goldson).,0,0,2012 -20130203_BAL@SF,1,56,58,BAL,SF,1,10,39,(11:58) J.Flacco pass deep right to T.Smith to SF 19 for 20 yards (D.Whitner). Pass 21 YAC -1,0,0,2012 -20130203_BAL@SF,1,56,21,BAL,SF,1,10,19,(11:21) R.Rice left tackle to SF 18 for 1 yard (A.Brooks).,0,0,2012 -20130203_BAL@SF,1,55,56,BAL,SF,2,9,18,(10:56) J.Flacco pass incomplete deep right to T.Smith [N.Bowman].,0,0,2012 -20130203_BAL@SF,1,55,46,BAL,SF,3,9,18,(10:46) (Shotgun) J.Flacco pass incomplete deep middle to D.Pitta. PENALTY on SF-A.Brooks Defensive Offside 5 yards enforced at SF 18 - No Play.,0,0,2012 -20130203_BAL@SF,1,55,42,BAL,SF,3,4,13,(10:42) (Shotgun) J.Flacco pass short middle to A.Boldin for 13 yards TOUCHDOWN.,0,0,2012 -20130203_BAL@SF,1,55,42,BAL,SF,,,13,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20130203_BAL@SF,1,55,42,BAL,SF,,,13,J.Tucker kicks 74 yards from BLT 35 to SF -9. L.James Touchback.,7,0,2012 -20130203_BAL@SF,1,55,36,SF,BAL,1,10,80,(10:36) (Shotgun) F.Gore right guard to SF 19 for -1 yards (D.Ellerbe).,0,7,2012 -20130203_BAL@SF,1,54,58,SF,BAL,2,11,81,(9:58) C.Kaepernick pass short middle to M.Crabtree to SF 38 for 19 yards (C.Graham). Pass 5 YAC 14,0,7,2012 -20130203_BAL@SF,1,54,27,SF,BAL,1,10,62,(9:27) F.Gore right guard to SF 38 for no gain (D.Ellerbe).,0,7,2012 -20130203_BAL@SF,1,53,47,SF,BAL,2,10,62,(8:47) (Shotgun) F.Gore right guard to SF 47 for 9 yards (C.Graham).,0,7,2012 -20130203_BAL@SF,1,53,6,SF,BAL,3,1,53,(8:06) (Shotgun) C.Kaepernick right guard to BLT 44 for 9 yards (B.Pollard).,0,7,2012 -20130203_BAL@SF,1,52,28,SF,BAL,1,10,44,(7:28) (Shotgun) C.Kaepernick scrambles left tackle to BLT 37 for 7 yards (H.Ngata).,0,7,2012 -20130203_BAL@SF,1,51,40,SF,BAL,2,3,37,(6:40) (Shotgun) F.Gore left guard to BLT 32 for 5 yards (P.Kruger).,0,7,2012 -20130203_BAL@SF,1,51,1,SF,BAL,1,10,32,(6:01) C.Kaepernick pass deep left to V.Davis to BLT 8 for 24 yards (E.Reed). Pass 20 YAC 4,0,7,2012 -20130203_BAL@SF,1,50,15,SF,BAL,1,8,8,(5:15) (Shotgun) F.Gore left tackle to BLT 8 for no gain (A.McClellan).,0,7,2012 -20130203_BAL@SF,1,49,31,SF,BAL,2,8,8,(4:31) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree.,0,7,2012 -20130203_BAL@SF,1,49,26,SF,BAL,3,8,8,(4:26) C.Kaepernick sacked at BLT 18 for -10 yards (P.Kruger).,0,7,2012 -20130203_BAL@SF,1,49,3,SF,BAL,4,18,18,(4:03) D.Akers 36 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,7,2012 -20130203_BAL@SF,1,49,3,SF,BAL,,,18,D.Akers kicks 73 yards from SF 35 to BLT -8. J.Jones ran ob at BLT 22 for 30 yards (D.Walker).,3,7,2012 -20130203_BAL@SF,1,48,54,BAL,SF,1,10,78,(3:54) J.Flacco pass short left to D.Pitta pushed ob at BLT 31 for 9 yards (D.Whitner) [Ald.Smith]. Pass 9 YAC 0,7,3,2012 -20130203_BAL@SF,1,48,18,BAL,SF,2,1,69,(3:18) R.Rice right guard to BLT 31 for no gain (N.Bowman I.Sopoaga).,7,3,2012 -20130203_BAL@SF,1,47,43,BAL,SF,3,1,69,(2:43) R.Rice left tackle to BLT 33 for 2 yards (D.Whitner Ald.Smith).,7,3,2012 -20130203_BAL@SF,1,47,8,BAL,SF,1,10,67,(2:08) R.Rice left guard to BLT 36 for 3 yards (Ald.Smith).,7,3,2012 -20130203_BAL@SF,1,46,34,BAL,SF,2,7,64,(1:34) J.Flacco pass incomplete short left to A.Boldin.,7,3,2012 -20130203_BAL@SF,1,46,31,BAL,SF,3,7,64,(1:31) (Shotgun) J.Flacco pass deep right to A.Boldin pushed ob at SF 34 for 30 yards (C.Culliver) [A.Brooks]. Pass 29 YAC 1,7,3,2012 -20130203_BAL@SF,1,46,6,BAL,SF,1,10,34,(1:06) J.Flacco pass short right to V.Leach to SF 37 for -3 yards (N.Bowman). Pass -9 YAC 6,7,3,2012 -20130203_BAL@SF,1,45,23,BAL,SF,2,13,37,(:23) (Shotgun) J.Flacco pass incomplete deep right to T.Smith.,7,3,2012 -20130203_BAL@SF,1,45,17,BAL,SF,3,13,37,(:17) (Shotgun) J.Flacco sacked at SF 42 for -5 yards (R.McDonald).,7,3,2012 -20130203_BAL@SF,2,45,0,BAL,SF,4,18,42,(15:00) S.Koch punts 42 yards to end zone Center-M.Cox Touchback.,7,3,2012 -20130203_BAL@SF,2,44,52,SF,BAL,1,10,80,(14:52) (Shotgun) C.Kaepernick pass short middle to V.Davis to SF 49 for 29 yards (C.Williams). Pass 12 YAC 17,3,7,2012 -20130203_BAL@SF,2,44,10,SF,BAL,1,10,51,(14:10) (Shotgun) C.Kaepernick pass short right to V.Davis to BLT 40 for 11 yards (C.Upshaw). Pass 6 YAC 5,3,7,2012 -20130203_BAL@SF,2,43,24,SF,BAL,1,10,40,(13:24) (Shotgun) L.James left guard to BLT 31 for 9 yards (C.Upshaw; R.Lewis).,3,7,2012 -20130203_BAL@SF,2,42,46,SF,BAL,2,1,31,(12:46) (Shotgun) F.Gore left guard to BLT 24 for 7 yards (D.Ellerbe).,3,7,2012 -20130203_BAL@SF,2,42,4,SF,BAL,1,10,24,(12:04) (Shotgun) L.James right end to BLT 25 for -1 yards (C.Upshaw C.Graham). FUMBLES (C.Upshaw) RECOVERED by BLT-A.Jones at BLT 25. A.Jones to BLT 25 for no gain (D.Walker).,3,7,2012 -20130203_BAL@SF,2,41,53,BAL,SF,1,10,75,(11:53) B.Pierce left end pushed ob at BLT 30 for 5 yards (P.Willis).,7,3,2012 -20130203_BAL@SF,2,41,34,BAL,SF,2,5,70,(11:34) B.Pierce left tackle to BLT 34 for 4 yards (R.McDonald).,7,3,2012 -20130203_BAL@SF,2,40,55,BAL,SF,3,1,66,(10:55) B.Pierce left end to BLT 37 for 3 yards (R.Jean Francois).,7,3,2012 -20130203_BAL@SF,2,40,22,BAL,SF,1,10,63,(10:22) (Shotgun) J.Flacco pass short left to D.Pitta pushed ob at BLT 46 for 9 yards (D.Whitner). Pass -1 YAC 10,7,3,2012 -20130203_BAL@SF,2,40,3,BAL,SF,2,1,54,(10:03) B.Pierce right tackle to BLT 48 for 2 yards (P.Willis).,7,3,2012 -20130203_BAL@SF,2,39,16,BAL,SF,1,10,52,(9:16) J.Flacco pass deep left to E.Dickson to SF 29 for 23 yards (D.Goldson). Pass 17 YAC 6,7,3,2012 -20130203_BAL@SF,2,38,40,BAL,SF,1,10,29,(8:40) R.Rice right tackle to SF 22 for 7 yards (N.Bowman).,7,3,2012 -20130203_BAL@SF,2,38,10,BAL,SF,2,3,22,(8:10) J.Flacco pass short left to E.Dickson to SF 8 for 14 yards (D.Whitner). PENALTY on SF-D.Whitner Face Mask (15 Yards) 4 yards enforced at SF 8. Pass 14 YAC 4,7,3,2012 -20130203_BAL@SF,2,37,50,BAL,SF,1,4,4,(7:50) R.Rice right guard to SF 1 for 3 yards (D.Whitner).,7,3,2012 -20130203_BAL@SF,2,37,15,BAL,SF,2,1,1,(7:15) J.Flacco pass short right to D.Pitta for 1 yard TOUCHDOWN.,7,3,2012 -20130203_BAL@SF,2,37,15,BAL,SF,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,7,3,2012 -20130203_BAL@SF,2,37,15,BAL,SF,,,1,J.Tucker kicks 70 yards from BLT 35 to SF -5. L.James to SF 21 for 26 yards (A.Allen).,14,3,2012 -20130203_BAL@SF,2,37,6,SF,BAL,1,10,79,(7:06) (Shotgun) C.Kaepernick pass deep middle intended for R.Moss INTERCEPTED by E.Reed at SF 44. E.Reed to SF 38 for 6 yards (V.Davis). Penalty on SF-J.Staley Unnecessary Roughness offsetting. Penalty on BLT-C.Graham Unnecessary Roughness offsetting.,3,14,2012 -20130203_BAL@SF,2,36,55,BAL,SF,1,10,38,(6:55) R.Rice right guard to SF 33 for 5 yards (N.Bowman).,14,3,2012 -20130203_BAL@SF,2,36,23,BAL,SF,2,5,33,(6:23) J.Flacco pass short left to V.Leach to SF 28 for 5 yards (T.Brown). Pass 2 YAC 3,14,3,2012 -20130203_BAL@SF,2,35,45,BAL,SF,1,10,28,(5:45) R.Rice right tackle to SF 27 for 1 yard (I.Sopoaga).,14,3,2012 -20130203_BAL@SF,2,35,16,BAL,SF,2,9,27,(5:16) R.Rice left tackle to SF 22 for 5 yards (P.Willis).,14,3,2012 -20130203_BAL@SF,2,34,37,BAL,SF,3,4,22,(4:37) (Shotgun) J.Flacco pass short right to R.Rice to SF 15 for 7 yards (C.Culliver T.Brown). Pass 0 YAC 7,14,3,2012 -20130203_BAL@SF,2,34,0,BAL,SF,1,10,15,(4:00) B.Pierce right end pushed ob at SF 14 for 1 yard (D.Goldson).,14,3,2012 -20130203_BAL@SF,2,33,21,BAL,SF,2,9,14,(3:21) (Shotgun) J.Flacco pass incomplete short left to A.Boldin.,14,3,2012 -20130203_BAL@SF,2,33,17,BAL,SF,3,9,14,(3:17) (Shotgun) J.Flacco pass incomplete short right to T.Smith.,14,3,2012 -20130203_BAL@SF,2,33,12,BAL,SF,4,9,14,(3:12) (Field Goal formation) J.Tucker left end pushed ob at SF 6 for 8 yards (D.McBath). After setting up in Field Goal Formation the play was a direct snap to Tucker who rushed around left end.,14,3,2012 -20130203_BAL@SF,2,33,5,SF,BAL,1,10,94,(3:05) (Shotgun) F.Gore right end to SF 6 for no gain (C.Upshaw).,3,14,2012 -20130203_BAL@SF,2,32,37,SF,BAL,2,10,94,(2:37) (Shotgun) C.Kaepernick pass incomplete short left to R.Moss (C.Williams).,3,14,2012 -20130203_BAL@SF,2,32,31,SF,BAL,3,10,94,(2:31) (Shotgun) F.Gore right guard to SF 12 for 6 yards (D.Tyson).,3,14,2012 -20130203_BAL@SF,2,32,19,SF,BAL,4,4,88,(2:19) A.Lee punts 55 yards to BLT 33 Center-B.Jennings. J.Jones MUFFS catch and recovers at BLT 33. J.Jones pushed ob at BLT 44 for 11 yards (T.Gooden).,3,14,2012 -20130203_BAL@SF,2,32,7,BAL,SF,1,10,56,(2:07) (Shotgun) J.Flacco pass incomplete short right to J.Jones (C.Culliver).,14,3,2012 -20130203_BAL@SF,2,32,4,BAL,SF,2,10,56,(2:04) (Shotgun) J.Flacco pass incomplete deep right to T.Smith (C.Culliver).,14,3,2012 -20130203_BAL@SF,2,31,58,BAL,SF,3,10,56,(1:58) (Shotgun) J.Flacco pass deep middle to J.Jones for 56 yards TOUCHDOWN. Pass 47 YAC 9,14,3,2012 -20130203_BAL@SF,2,31,58,BAL,SF,,,56,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,14,3,2012 -20130203_BAL@SF,2,31,58,BAL,SF,,,56,J.Tucker kicks 74 yards from BLT 35 to SF -9. L.James Touchback.,21,3,2012 -20130203_BAL@SF,2,31,45,SF,BAL,1,10,80,(1:45) (Shotgun) C.Kaepernick pass short middle to M.Crabtree to SF 26 for 6 yards (E.Reed). Pass 3 YAC 3,3,21,2012 -20130203_BAL@SF,2,31,21,SF,BAL,2,4,74,(1:21) (Shotgun) C.Kaepernick pass short right to D.Walker ran ob at SF 40 for 14 yards (C.Graham) [H.Ngata]. PENALTY on BLT-H.Ngata Roughing the Passer 15 yards enforced at SF 40. Pass 13 YAC 1,3,21,2012 -20130203_BAL@SF,2,31,15,SF,BAL,1,10,45,(1:15) (Shotgun) C.Kaepernick pass incomplete short right to R.Moss (J.Smith).,3,21,2012 -20130203_BAL@SF,2,31,12,SF,BAL,2,10,45,(1:12) (Shotgun) C.Kaepernick pass deep middle to D.Walker to BLT 17 for 28 yards (E.Reed). Pass 28 YAC 0,3,21,2012 -20130203_BAL@SF,2,30,57,SF,BAL,1,10,17,(:57) (Shotgun) C.Kaepernick pass short middle to V.Davis to BLT 9 for 8 yards (B.Pollard R.Lewis). Pass 6 YAC 2,3,21,2012 -20130203_BAL@SF,2,30,25,SF,BAL,2,2,9,(:25) (Shotgun) F.Gore right guard to BLT 9 for no gain (A.Jones).,3,21,2012 -20130203_BAL@SF,2,30,21,SF,BAL,3,2,9,(:21) (Shotgun) C.Kaepernick sacked at BLT 9 for 0 yards (P.Kruger).,3,21,2012 -20130203_BAL@SF,2,30,3,SF,BAL,4,2,9,(:03) D.Akers 27 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,3,21,2012 -20130203_BAL@SF,3,30,0,SF,BAL,,,9,D.Akers kicks 73 yards from SF 35 to BLT -8. J.Jones for 108 yards TOUCHDOWN.,6,21,2012 -20130203_BAL@SF,3,30,0,BAL,SF,,,9,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,21,6,2012 -20130203_BAL@SF,3,30,0,BAL,SF,,,9,J.Tucker kicks 72 yards from BLT 35 to SF -7. L.James to SF 14 for 21 yards (J.Ihedigbo).,28,6,2012 -20130203_BAL@SF,3,29,44,SF,BAL,1,10,86,(14:44) (Shotgun) C.Kaepernick pass short left to M.Crabtree to SF 43 for 29 yards (C.Williams). Pass 13 YAC 16,6,28,2012 -20130203_BAL@SF,3,29,11,SF,BAL,1,10,57,(14:11) (Shotgun) F.Gore left guard to SF 46 for 3 yards (T.Suggs).,6,28,2012 -20130203_BAL@SF,3,28,28,SF,BAL,2,7,54,(13:28) (Shotgun) C.Kaepernick sacked at SF 40 for -6 yards (A.Jones). After this play the Superdome had a power failure that began at 7:38 p.m. local time. A delay ensued until 8:08 p.m. local time.,6,28,2012 -20130203_BAL@SF,3,28,4,SF,BAL,3,13,60,(13:04) (Shotgun) C.Kaepernick pass short right to D.Walker to SF 46 for 6 yards (J.Smith). Pass 6 YAC 0,6,28,2012 -20130203_BAL@SF,3,27,17,SF,BAL,4,7,54,(12:17) A.Lee punts 54 yards to end zone Center-B.Jennings Touchback.,6,28,2012 -20130203_BAL@SF,3,27,10,BAL,SF,1,10,80,(12:10) J.Flacco pass short right to T.Smith to BLT 35 for 15 yards (D.Whitner P.Willis). Pass 10 YAC 5,28,6,2012 -20130203_BAL@SF,3,26,40,BAL,SF,1,10,65,(11:40) R.Rice left guard to BLT 37 for 2 yards (P.Willis).,28,6,2012 -20130203_BAL@SF,3,26,11,BAL,SF,2,8,63,(11:11) J.Flacco pass incomplete short left to A.Boldin.,28,6,2012 -20130203_BAL@SF,3,26,7,BAL,SF,3,8,63,(11:07) (Shotgun) J.Flacco pass short middle to R.Rice to BLT 44 for 7 yards (D.Goldson). Pass 3 YAC 4,28,6,2012 -20130203_BAL@SF,3,25,35,BAL,SF,4,1,56,(10:35) S.Koch punts 56 yards to end zone Center-M.Cox Touchback.,28,6,2012 -20130203_BAL@SF,3,25,26,SF,BAL,1,10,80,(10:26) (Shotgun) C.Kaepernick scrambles left end ran ob at SF 25 for 5 yards (H.Ngata).,6,28,2012 -20130203_BAL@SF,3,24,55,SF,BAL,2,5,75,(9:55) (Shotgun) C.Kaepernick scrambles left end ran ob at SF 40 for 15 yards (D.Ellerbe).,6,28,2012 -20130203_BAL@SF,3,24,16,SF,BAL,1,10,60,(9:16) (Shotgun) F.Gore left guard to SF 42 for 2 yards (M.Kemoeatu T.Suggs).,6,28,2012 -20130203_BAL@SF,3,23,39,SF,BAL,2,8,58,(8:39) (Shotgun) C.Kaepernick pass incomplete deep right to M.Crabtree (C.Graham).,6,28,2012 -20130203_BAL@SF,3,23,32,SF,BAL,3,8,58,(8:32) (Shotgun) C.Kaepernick pass short left to R.Moss to BLT 49 for 9 yards (C.Williams). Pass 9 YAC 0,6,28,2012 -20130203_BAL@SF,3,22,53,SF,BAL,1,10,49,(7:53) (Shotgun) C.Kaepernick pass deep right to V.Davis ran ob at BLT 31 for 18 yards. No tackle - Davis ran out of bounds on his own.,6,28,2012 -20130203_BAL@SF,3,22,28,SF,BAL,1,10,31,(7:28) C.Kaepernick pass deep left to M.Crabtree for 31 yards TOUCHDOWN. Pass 16 YAC 15,6,28,2012 -20130203_BAL@SF,3,22,28,SF,BAL,,,31,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,6,28,2012 -20130203_BAL@SF,3,22,28,SF,BAL,,,31,D.Akers kicks 70 yards from SF 35 to BLT -5. J.Jones to BLT 17 for 22 yards (A.Dixon).,13,28,2012 -20130203_BAL@SF,3,22,15,BAL,SF,1,10,83,(7:15) J.Flacco pass incomplete deep left to A.Boldin.,28,13,2012 -20130203_BAL@SF,3,22,10,BAL,SF,2,10,83,(7:10) B.Pierce left end to BLT 17 for no gain (A.Brooks).,28,13,2012 -20130203_BAL@SF,3,21,27,BAL,SF,3,10,83,(6:27) (Shotgun) J.Flacco sacked at BLT 9 for -8 yards (A.Brooks).,28,13,2012 -20130203_BAL@SF,3,21,3,BAL,SF,4,18,91,(6:03) S.Koch punts 43 yards to SF 48 Center-M.Cox. T.Ginn pushed ob at BLT 20 for 32 yards (S.Koch).,28,13,2012 -20130203_BAL@SF,3,20,47,SF,BAL,1,10,20,(5:47) (Shotgun) C.Kaepernick pass short left to V.Davis to BLT 6 for 14 yards (C.Upshaw). Pass 5 YAC 9,13,28,2012 -20130203_BAL@SF,3,20,5,SF,BAL,1,6,6,(5:05) (Shotgun) F.Gore right end for 6 yards TOUCHDOWN. BLT-H.Ngata was injured during the play. His return is Doubtful.,13,28,2012 -20130203_BAL@SF,3,20,5,SF,BAL,,,6,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,13,28,2012 -20130203_BAL@SF,3,20,5,SF,BAL,,,6,D.Akers kicks 69 yards from SF 35 to BLT -4. J.Jones Touchback.,20,28,2012 -20130203_BAL@SF,3,19,59,BAL,SF,1,10,80,(4:59) R.Rice left guard to BLT 23 for 3 yards (J.Smith).,28,20,2012 -20130203_BAL@SF,3,19,17,BAL,SF,2,7,77,(4:17) (Shotgun) J.Flacco pass short left to R.Rice to BLT 24 for 1 yard (T.Brown). FUMBLES (T.Brown) RECOVERED by SF-T.Brown at BLT 24. T.Brown to BLT 24 for no gain (D.Pitta). Pass 1 YAC 0,28,20,2012 -20130203_BAL@SF,3,19,10,SF,BAL,1,10,24,(4:10) (Shotgun) C.Kaepernick pass incomplete deep left to V.Davis.,20,28,2012 -20130203_BAL@SF,3,19,5,SF,BAL,2,10,24,(4:05) (Shotgun) F.Gore left guard to BLT 21 for 3 yards (R.Lewis D.Tyson).,20,28,2012 -20130203_BAL@SF,3,18,25,SF,BAL,3,7,21,(3:25) (Shotgun) C.Kaepernick pass incomplete deep left to T.Ginn (C.Williams).,20,28,2012 -20130203_BAL@SF,3,18,19,SF,BAL,4,7,21,(3:19) D.Akers 39 yard field goal is No Good Wide Left Center-B.Jennings Holder-A.Lee. PENALTY on BLT-C.Brown Running Into the Kicker 5 yards enforced at BLT 21 - No Play.,20,28,2012 -20130203_BAL@SF,3,18,14,SF,BAL,4,2,16,(3:14) D.Akers 34 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,20,28,2012 -20130203_BAL@SF,3,18,14,SF,BAL,,,16,D.Akers kicks 62 yards from SF 35 to BLT 3. J.Jones to BLT 28 for 25 yards (D.Walker).,23,28,2012 -20130203_BAL@SF,3,18,4,BAL,SF,1,10,72,(3:04) B.Pierce right guard to BLT 32 for 4 yards (P.Willis).,28,23,2012 -20130203_BAL@SF,3,17,36,BAL,SF,2,6,68,(2:36) B.Pierce left end to BLT 35 for 3 yards (D.Goldson).,28,23,2012 -20130203_BAL@SF,3,16,59,BAL,SF,3,3,65,(1:59) (Shotgun) J.Flacco pass short right to A.Boldin pushed ob at SF 35 for 30 yards (C.Culliver). Pass 6 YAC 24,28,23,2012 -20130203_BAL@SF,3,16,30,BAL,SF,1,10,35,(1:30) J.Flacco pass short right to D.Pitta to SF 28 for 7 yards (P.Willis). Pass 1 YAC 6,28,23,2012 -20130203_BAL@SF,3,15,58,BAL,SF,2,3,28,(:58) R.Rice right tackle to SF 26 for 2 yards (A.Brooks).,28,23,2012 -20130203_BAL@SF,3,15,16,BAL,SF,3,1,26,(:16) B.Pierce left end pushed ob at SF 18 for 8 yards (D.Goldson).,28,23,2012 -20130203_BAL@SF,4,15,0,BAL,SF,1,10,18,(15:00) R.Rice right guard to SF 14 for 4 yards (I.Sopoaga).,28,23,2012 -20130203_BAL@SF,4,14,24,BAL,SF,2,6,14,(14:24) J.Flacco pass short right to A.Boldin ran ob at SF 5 for 9 yards (C.Rogers). Pass 5 YAC 4,28,23,2012 -20130203_BAL@SF,4,14,2,BAL,SF,1,5,5,(14:02) R.Rice left guard to SF 1 for 4 yards (R.Jean Francois; D.Goldson).,28,23,2012 -20130203_BAL@SF,4,13,30,BAL,SF,2,1,1,(13:30) R.Rice left guard to SF 1 for no gain (J.Smith).,28,23,2012 -20130203_BAL@SF,4,13,5,BAL,SF,3,1,1,(13:05) J.Flacco pass incomplete short right [I.Sopoaga].,28,23,2012 -20130203_BAL@SF,4,12,57,BAL,SF,4,1,1,(12:57) J.Tucker 19 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,28,23,2012 -20130203_BAL@SF,4,12,57,BAL,SF,,,1,J.Tucker kicks 69 yards from BLT 35 to SF -4. L.James to SF 24 for 28 yards (A.Allen).,31,23,2012 -20130203_BAL@SF,4,12,47,SF,BAL,1,10,76,(12:47) (Shotgun) F.Gore right end to SF 29 for 5 yards (D.Tyson; D.Ellerbe).,23,31,2012 -20130203_BAL@SF,4,12,0,SF,BAL,2,5,71,(12:00) (Shotgun) C.Kaepernick pass deep left to R.Moss pushed ob at BLT 39 for 32 yards (E.Reed). Pass 26 YAC 6,23,31,2012 -20130203_BAL@SF,4,11,34,SF,BAL,1,10,39,(11:34) (Shotgun) F.Gore left end to BLT 18 for 21 yards (C.Graham).,23,31,2012 -20130203_BAL@SF,4,10,44,SF,BAL,1,10,18,(10:44) (Shotgun) C.Kaepernick left guard to BLT 15 for 3 yards (R.Lewis T.Cody).,23,31,2012 -20130203_BAL@SF,4,10,4,SF,BAL,2,7,15,(10:04) (Shotgun) C.Kaepernick scrambles left end for 15 yards TOUCHDOWN.,23,31,2012 -20130203_BAL@SF,4,10,4,SF,BAL,,,15,(Pass formation) TWO-POINT CONVERSION ATTEMPT. C.Kaepernick pass to R.Moss is incomplete. ATTEMPT FAILS. Kaepernick in shotgun passed left for Moss but overthrew him.,23,31,2012 -20130203_BAL@SF,4,10,4,SF,BAL,,,15,D.Akers kicks 65 yards from SF 35 to BLT 0. J.Jones to BLT 21 for 21 yards (D.Walker).,29,31,2012 -20130203_BAL@SF,4,9,51,BAL,SF,1,10,79,(9:51) J.Flacco pass short middle to R.Rice to BLT 25 for 4 yards (I.Sopoaga P.Willis) [N.Bowman]. Pass -6 YAC 10,31,29,2012 -20130203_BAL@SF,4,9,18,BAL,SF,2,6,75,(9:18) R.Rice right end to BLT 22 for -3 yards (N.Bowman).,31,29,2012 -20130203_BAL@SF,4,8,35,BAL,SF,3,9,78,(8:35) (Shotgun) J.Flacco pass incomplete short right to T.Smith. PENALTY on SF-C.Culliver Defensive Pass Interference 14 yards enforced at BLT 22 - No Play.,31,29,2012 -20130203_BAL@SF,4,8,30,BAL,SF,1,10,64,(8:30) B.Pierce right tackle to BLT 38 for 2 yards (P.Willis).,31,29,2012 -20130203_BAL@SF,4,7,57,BAL,SF,2,8,62,(7:57) (Shotgun) J.Flacco pass short right to A.Boldin to BLT 46 for 8 yards (C.Rogers). Pass 5 YAC 3 The first down was measured for. San Francisco challenged the first down ruling and the play was REVERSED. (Shotgun) J.Flacco pass short right to A.Boldin to BLT 45 for 7 yards (C.Rogers). Pass 5 YAC 2 The first down was measured for.,31,29,2012 -20130203_BAL@SF,4,7,14,BAL,SF,3,1,55,(7:14) J.Flacco pass short right to A.Boldin to SF 40 for 15 yards (C.Rogers). Pass 15 YAC 0,31,29,2012 -20130203_BAL@SF,4,6,30,BAL,SF,1,10,40,(6:30) R.Rice left tackle to SF 28 for 12 yards (D.Goldson).,31,29,2012 -20130203_BAL@SF,4,5,51,BAL,SF,1,10,28,(5:51) R.Rice right tackle to SF 26 for 2 yards (N.Bowman).,31,29,2012 -20130203_BAL@SF,4,5,13,BAL,SF,2,8,26,(5:13) B.Pierce left tackle to SF 25 for 1 yard (N.Bowman).,31,29,2012 -20130203_BAL@SF,4,4,32,BAL,SF,3,7,25,(4:32) (Shotgun) J.Flacco pass incomplete [A.Brooks]. Penalty on SF-A.Brooks Defensive Offside declined. PENALTY on SF-Ald.Smith Defensive Offside 5 yards enforced at SF 25 - No Play.,31,29,2012 -20130203_BAL@SF,4,4,28,BAL,SF,3,2,20,(4:28) (Shotgun) J.Flacco pass incomplete short right to D.Pitta.,31,29,2012 -20130203_BAL@SF,4,4,23,BAL,SF,4,2,20,(4:23) J.Tucker 38 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,31,29,2012 -20130203_BAL@SF,4,4,23,BAL,SF,,,20,J.Tucker kicks 65 yards from BLT 35 to end zone Touchback.,34,29,2012 -20130203_BAL@SF,4,4,19,SF,BAL,1,10,80,(4:19) (Shotgun) F.Gore right guard to SF 28 for 8 yards (D.Ellerbe; R.Lewis).,29,34,2012 -20130203_BAL@SF,4,3,40,SF,BAL,2,2,72,(3:40) C.Kaepernick scrambles right end ran ob at SF 36 for 8 yards (D.Ellerbe).,29,34,2012 -20130203_BAL@SF,4,3,32,SF,BAL,1,10,64,(3:32) (Shotgun) C.Kaepernick pass incomplete deep right to V.Davis.,29,34,2012 -20130203_BAL@SF,4,3,25,SF,BAL,2,10,64,(3:25) (Shotgun) C.Kaepernick pass deep middle to M.Crabtree to BLT 40 for 24 yards (R.Lewis C.Graham). Pass 19 YAC 5,29,34,2012 -20130203_BAL@SF,4,2,47,SF,BAL,1,10,40,(2:47) (Shotgun) F.Gore left end pushed ob at BLT 7 for 33 yards (E.Reed).,29,34,2012 -20130203_BAL@SF,4,2,39,SF,BAL,1,7,7,(2:39) (Shotgun) L.James right guard to BLT 5 for 2 yards (D.Ellerbe; D.Tyson).,29,34,2012 -20130203_BAL@SF,4,2,0,SF,BAL,2,5,5,(2:00) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree (C.Graham).,29,34,2012 -20130203_BAL@SF,4,1,55,SF,BAL,3,5,5,(1:55) C.Kaepernick pass incomplete short right to M.Crabtree (J.Smith).,29,34,2012 -20130203_BAL@SF,4,1,50,SF,BAL,4,5,5,(1:50) (Shotgun) C.Kaepernick pass incomplete short right to M.Crabtree.,29,34,2012 -20130203_BAL@SF,4,1,46,BAL,SF,1,10,95,(1:46) R.Rice left guard to BLT 7 for 2 yards (N.Bowman; D.Goldson).,34,29,2012 -20130203_BAL@SF,4,1,42,BAL,SF,2,8,93,(1:42) B.Pierce left end to BLT 7 for no gain (A.Brooks).,34,29,2012 -20130203_BAL@SF,4,0,56,BAL,SF,3,8,93,(:56) V.Leach right guard to BLT 8 for 1 yard (R.McDonald; N.Bowman).,34,29,2012 -20130203_BAL@SF,4,0,12,BAL,SF,4,7,92,(:12) (Punt formation) S.Koch right end ran ob in End Zone for -8 yards SAFETY (C.Culliver).,34,29,2012 -20130203_BAL@SF,4,0,12,BAL,SF,,,92,S.Koch kicks 61 yards from BLT 20 to SF 19. T.Ginn to 50 for 31 yards (J.Bynes).,34,31,2012 -20130203_BAL@SF,4,0,12,BAL,SF,,,92,                      ,34,31,2012 diff --git a/examples/data/short.csv b/examples/data/short.csv deleted file mode 100644 index 3e71722..0000000 --- a/examples/data/short.csv +++ /dev/null @@ -1,3000 +0,0 @@ -gameid,qtr,min,sec,off,def,down,togo,ydline,description,offscore,defscore,season -20120905_DAL@NYG,1,,0,DAL,NYG,,,,D.Bailey kicks 69 yards from DAL 35 to NYG -4. D.Wilson to NYG 16 for 20 yards (A.Holmes).,0,0,2012 -20120905_DAL@NYG,1,59,56,NYG,DAL,1,10,84,(14:56) E.Manning pass incomplete deep left to H.Nicks.,0,0,2012 -20120905_DAL@NYG,1,59,49,NYG,DAL,2,10,84,(14:49) E.Manning pass short middle to V.Cruz to NYG 21 for 5 yards (S.Lee) [J.Hatcher].,0,0,2012 -20120905_DAL@NYG,1,59,5,NYG,DAL,3,5,79,(14:05) (Shotgun) E.Manning pass incomplete short middle to V.Cruz.,0,0,2012 -20120905_DAL@NYG,1,58,58,NYG,DAL,4,5,79,(13:58) S.Weatherford punts 56 yards to DAL 23 Center-Z.DeOssie. D.Bryant to DAL 24 for 1 yard (Z.DeOssie).,0,0,2012 -20120905_DAL@NYG,1,58,44,DAL,NYG,1,10,76,(13:44) D.Murray left guard to DAL 27 for 3 yards (C.Blackburn).,0,0,2012 -20120905_DAL@NYG,1,58,7,DAL,NYG,2,7,73,(13:07) T.Romo sacked at DAL 19 for -8 yards (R.Bernard).,0,0,2012 -20120905_DAL@NYG,1,57,27,DAL,NYG,3,15,81,(12:27) (Shotgun) T.Romo pass incomplete short left to F.Jones.,0,0,2012 -20120905_DAL@NYG,1,57,21,DAL,NYG,4,15,81,(12:21) C.Jones punts 60 yards to NYG 21 Center-L.Ladouceur. D.Hixon to NYG 31 for 10 yards (A.Albright L.Vickers). PENALTY on NYG-J.Hosley Clipping 13 yards enforced at NYG 26. Officially a return for 5 yards.,0,0,2012 -20120905_DAL@NYG,1,57,9,NYG,DAL,1,10,87,(12:09) A.Bradshaw left tackle to NYG 15 for 2 yards (J.Hatcher J.Price-Brent).,0,0,2012 -20120905_DAL@NYG,1,56,31,NYG,DAL,2,8,85,(11:31) D.Wilson right tackle to NYG 18 for 3 yards (D.Ware S.Lee).,0,0,2012 -20120905_DAL@NYG,1,55,50,NYG,DAL,3,5,82,(10:50) (Shotgun) E.Manning pass deep left to V.Cruz ran ob at NYG 44 for 26 yards (B.Carr).,0,0,2012 -20120905_DAL@NYG,1,55,20,NYG,DAL,1,10,56,(10:20) E.Manning pass short middle to M.Bennett to DAL 47 for 9 yards (B.Carter).,0,0,2012 -20120905_DAL@NYG,1,54,36,NYG,DAL,2,1,47,(9:36) PENALTY on NYG-V.Cruz False Start 5 yards enforced at DAL 47 - No Play.,0,0,2012 -20120905_DAL@NYG,1,54,12,NYG,DAL,2,6,52,(9:12) E.Manning pass short right to M.Bennett to DAL 42 for 10 yards (S.Lee B.Carter).,0,0,2012 -20120905_DAL@NYG,1,53,29,NYG,DAL,1,10,42,(8:29) A.Bradshaw left tackle to DAL 39 for 3 yards (D.Ware S.Lee).,0,0,2012 -20120905_DAL@NYG,1,52,53,NYG,DAL,2,7,39,(7:53) E.Manning pass short left to H.Nicks pushed ob at DAL 31 for 8 yards (M.Claiborne).,0,0,2012 -20120905_DAL@NYG,1,52,25,NYG,DAL,1,10,31,(7:25) A.Bradshaw right tackle to DAL 29 for 2 yards (D.Ware S.Lissemore).,0,0,2012 -20120905_DAL@NYG,1,51,43,NYG,DAL,2,8,29,(6:43) D.Wilson left end to DAL 27 for 2 yards (S.Lee). FUMBLES (S.Lee) RECOVERED by DAL-B.Church at DAL 28. B.Church to DAL 34 for 6 yards (C.Snee). Officially a rush for 1 yard.,0,0,2012 -20120905_DAL@NYG,1,51,33,DAL,NYG,1,10,66,(6:33) D.Murray left tackle to DAL 36 for 2 yards (L.Joseph R.Bernard).,0,0,2012 -20120905_DAL@NYG,1,50,54,DAL,NYG,2,8,64,(5:54) (Shotgun) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 36 - No Play.,0,0,2012 -20120905_DAL@NYG,1,50,39,DAL,NYG,2,13,69,(5:39) (Shotgun) T.Romo pass short middle to M.Austin to DAL 40 for 9 yards (K.Rivers J.Hosley).,0,0,2012 -20120905_DAL@NYG,1,50,1,DAL,NYG,3,4,60,(5:01) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 46 for 14 yards (J.Williams K.Phillips).,0,0,2012 -20120905_DAL@NYG,1,49,26,DAL,NYG,1,10,46,(4:26) PENALTY on DAL-J.Witten False Start 5 yards enforced at NYG 46 - No Play.,0,0,2012 -20120905_DAL@NYG,1,49,9,DAL,NYG,1,15,51,(4:09) D.Murray left guard to NYG 46 for 5 yards (K.Rivers).,0,0,2012 -20120905_DAL@NYG,1,48,22,DAL,NYG,2,10,46,(3:22) (Shotgun) T.Romo pass incomplete deep left to D.Bryant (C.Webster).,0,0,2012 -20120905_DAL@NYG,1,48,13,DAL,NYG,3,10,46,(3:13) (Shotgun) T.Romo pass short left to K.Ogletree to NYG 37 for 9 yards (A.Rolle M.Coe).,0,0,2012 -20120905_DAL@NYG,1,47,46,DAL,NYG,4,1,37,(2:46) L.Vickers left guard to NYG 37 for no gain (A.Rolle K.Rivers).,0,0,2012 -20120905_DAL@NYG,1,47,12,NYG,DAL,1,10,63,(2:12) E.Manning pass short right to H.Nicks to NYG 47 for 10 yards (M.Claiborne).,0,0,2012 -20120905_DAL@NYG,1,46,35,NYG,DAL,1,10,53,(1:35) A.Bradshaw left end to 50 for 3 yards (S.Lissemore A.Spencer).,0,0,2012 -20120905_DAL@NYG,1,45,58,NYG,DAL,2,7,50,(:58) A.Bradshaw right guard to DAL 45 for 5 yards (J.Hatcher).,0,0,2012 -20120905_DAL@NYG,1,45,21,NYG,DAL,3,2,45,(:21) (Shotgun) E.Manning pass short right to V.Cruz pushed ob at DAL 41 for 4 yards (O.Scandrick).,0,0,2012 -20120905_DAL@NYG,2,45,0,NYG,DAL,1,10,41,(15:00) E.Manning sacked at NYG 44 for -15 yards (D.Ware).,0,0,2012 -20120905_DAL@NYG,2,44,30,NYG,DAL,2,25,56,(14:30) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 45 for 11 yards (S.Lee).,0,0,2012 -20120905_DAL@NYG,2,43,46,NYG,DAL,3,14,45,(13:46) (Shotgun) E.Manning pass incomplete short right to H.Nicks.,0,0,2012 -20120905_DAL@NYG,2,43,36,NYG,DAL,4,14,45,(13:36) S.Weatherford punts 45 yards to end zone Center-Z.DeOssie Touchback.,0,0,2012 -20120905_DAL@NYG,2,43,27,DAL,NYG,1,10,80,(13:27) T.Romo pass short middle to D.Bryant to DAL 38 for 18 yards (C.Blackburn).,0,0,2012 -20120905_DAL@NYG,2,42,41,DAL,NYG,1,10,62,(12:41) D.Murray right end to DAL 37 for -1 yards (K.Rivers).,0,0,2012 -20120905_DAL@NYG,2,41,57,DAL,NYG,2,11,63,(11:57) T.Romo up the middle to DAL 45 for 8 yards (J.Tuck).,0,0,2012 -20120905_DAL@NYG,2,41,10,DAL,NYG,3,3,55,(11:10) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 45 - No Play.,0,0,2012 -20120905_DAL@NYG,2,40,46,DAL,NYG,3,8,60,(10:46) (Shotgun) T.Romo pass short middle intended for K.Ogletree INTERCEPTED by M.Boley at NYG 47. M.Boley pushed ob at DAL 2 for 51 yards (T.Smith). PENALTY on DAL-T.Smith Horse Collar Tackle 1 yard enforced at DAL 2.,0,0,2012 -20120905_DAL@NYG,2,40,30,NYG,DAL,1,1,1,(10:30) A.Bradshaw right end pushed ob at DAL 3 for -2 yards (A.Spencer).,0,0,2012 -20120905_DAL@NYG,2,40,5,NYG,DAL,2,3,3,(10:05) A.Bradshaw left tackle to DAL 4 for -1 yards (M.Spears J.Price-Brent).,0,0,2012 -20120905_DAL@NYG,2,39,23,NYG,DAL,3,4,4,(9:23) (Shotgun) E.Manning pass incomplete short middle to V.Cruz (O.Scandrick).,0,0,2012 -20120905_DAL@NYG,2,39,14,NYG,DAL,4,4,4,(9:14) L.Tynes 22 yard field goal is GOOD Center-Z.DeOssie Holder-S.Weatherford.,0,0,2012 -20120905_DAL@NYG,2,39,14,NYG,DAL,,,4,L.Tynes kicks 67 yards from NYG 35 to DAL -2. F.Jones to DAL 20 for 22 yards (W.Hill).,3,0,2012 -20120905_DAL@NYG,2,39,5,DAL,NYG,1,10,80,(9:05) D.Murray right tackle to DAL 22 for 2 yards (M.Coe K.Rivers).,0,3,2012 -20120905_DAL@NYG,2,38,33,DAL,NYG,2,8,78,(8:33) T.Romo pass short left to J.Hanna to DAL 32 for 10 yards (K.Rivers).,0,3,2012 -20120905_DAL@NYG,2,37,59,DAL,NYG,1,10,68,(7:59) D.Murray right tackle to DAL 35 for 3 yards (R.Bernard J.Pierre-Paul).,0,3,2012 -20120905_DAL@NYG,2,37,20,DAL,NYG,2,7,65,(7:20) PENALTY on DAL-D.Free False Start 5 yards enforced at DAL 35 - No Play.,0,3,2012 -20120905_DAL@NYG,2,36,52,DAL,NYG,2,12,70,(6:52) D.Murray left guard to DAL 27 for -3 yards (J.Pierre-Paul).,0,3,2012 -20120905_DAL@NYG,2,36,6,DAL,NYG,3,15,73,(6:06) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 36 for 9 yards (M.Coe).,0,3,2012 -20120905_DAL@NYG,2,35,28,DAL,NYG,4,6,64,(5:28) C.Jones punts 48 yards to NYG 16 Center-L.Ladouceur fair catch by D.Hixon.,0,3,2012 -20120905_DAL@NYG,2,35,18,NYG,DAL,1,10,84,(5:18) A.Bradshaw left guard to NYG 16 for no gain (B.Carter).,3,0,2012 -20120905_DAL@NYG,2,34,37,NYG,DAL,2,10,84,(4:37) A.Bradshaw right end to NYG 18 for 2 yards (K.Coleman A.Spencer).,3,0,2012 -20120905_DAL@NYG,2,33,50,NYG,DAL,3,8,82,(3:50) (Shotgun) E.Manning pass incomplete deep right to M.Bennett.,3,0,2012 -20120905_DAL@NYG,2,33,42,NYG,DAL,4,8,82,(3:42) S.Weatherford punts 54 yards to DAL 28 Center-Z.DeOssie. D.Bryant ran ob at DAL 27 for -1 yards.,3,0,2012 -20120905_DAL@NYG,2,33,34,DAL,NYG,1,10,73,(3:34) PENALTY on DAL-T.Smith False Start 5 yards enforced at DAL 27 - No Play.,0,3,2012 -20120905_DAL@NYG,2,33,34,DAL,NYG,1,15,78,(3:34) T.Romo pass short left to D.Bryant ran ob at DAL 35 for 13 yards.,0,3,2012 -20120905_DAL@NYG,2,33,11,DAL,NYG,2,2,65,(3:11) T.Romo pass short left to J.Witten to DAL 38 for 3 yards (C.Blackburn M.Coe).,0,3,2012 -20120905_DAL@NYG,2,32,34,DAL,NYG,1,10,62,(2:34) D.Murray left guard to DAL 47 for 9 yards (K.Phillips).,0,3,2012 -20120905_DAL@NYG,2,32,4,DAL,NYG,2,1,53,(2:04) T.Romo pass incomplete short right to K.Ogletree.,0,3,2012 -20120905_DAL@NYG,2,31,59,DAL,NYG,3,1,53,(1:59) (Shotgun) T.Romo pass deep right to D.Bryant to NYG 15 for 38 yards (K.Phillips).,0,3,2012 -20120905_DAL@NYG,2,31,15,DAL,NYG,1,10,15,(1:15) (Shotgun) T.Romo pass short right to K.Ogletree to NYG 10 for 5 yards (J.Williams).,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,2,5,10,(1:07) (Shotgun) T.Romo pass short middle to K.Ogletree for 10 yards TOUCHDOWN.,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,0,3,2012 -20120905_DAL@NYG,2,31,7,DAL,NYG,,,10,D.Bailey kicks 67 yards from DAL 35 to NYG -2. D.Wilson to NYG 30 for 32 yards (B.Church).,7,3,2012 -20120905_DAL@NYG,2,30,54,NYG,DAL,1,10,70,(:54) (Shotgun) E.Manning pass incomplete short left to V.Cruz.,3,7,2012 -20120905_DAL@NYG,2,30,48,NYG,DAL,2,10,70,(:48) (Shotgun) E.Manning sacked at NYG 24 for -6 yards (D.Ware).,3,7,2012 -20120905_DAL@NYG,2,30,4,NYG,DAL,3,16,76,(:04) (Shotgun) A.Bradshaw up the middle to NYG 29 for 5 yards (A.Spencer).,3,7,2012 -20120905_DAL@NYG,3,30,0,NYG,DAL,,,76,L.Tynes kicks 73 yards from NYG 35 to DAL -8. F.Jones Touchback.,3,7,2012 -20120905_DAL@NYG,3,30,0,DAL,NYG,1,10,80,(15:00) T.Romo pass short right to D.Murray to DAL 29 for 9 yards (M.Kiwanuka J.Tuck).,7,3,2012 -20120905_DAL@NYG,3,29,25,DAL,NYG,2,1,71,(14:25) D.Murray left guard to DAL 31 for 2 yards (J.Pierre-Paul J.Williams).,7,3,2012 -20120905_DAL@NYG,3,28,42,DAL,NYG,1,10,69,(13:42) T.Romo pass short left to D.Murray to DAL 31 for no gain (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,28,0,DAL,NYG,2,10,69,(13:00) D.Murray left tackle to DAL 40 for 9 yards (A.Rolle J.Williams).,7,3,2012 -20120905_DAL@NYG,3,27,8,DAL,NYG,3,1,60,(12:08) D.Murray left end to DAL 44 for 4 yards (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,26,27,DAL,NYG,1,10,56,(11:27) T.Romo pass incomplete short middle to F.Jones.,7,3,2012 -20120905_DAL@NYG,3,26,20,DAL,NYG,2,10,56,(11:20) T.Romo pass short right to D.Bryant to NYG 40 for 16 yards (A.Rolle).,7,3,2012 -20120905_DAL@NYG,3,25,42,DAL,NYG,1,10,40,(10:42) T.Romo pass incomplete short left to J.Witten.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,2,10,40,(10:32) T.Romo pass deep right to K.Ogletree for 40 yards TOUCHDOWN.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,7,3,2012 -20120905_DAL@NYG,3,25,32,DAL,NYG,,,40,D.Bailey kicks 61 yards from DAL 35 to NYG 4. A.Brown to NYG 11 for 7 yards (J.Hanna A.Albright).,14,3,2012 -20120905_DAL@NYG,3,25,19,NYG,DAL,1,10,89,(10:19) (Shotgun) E.Manning pass short right to D.Hixon to NYG 23 for 12 yards (B.Carter).,3,14,2012 -20120905_DAL@NYG,3,24,47,NYG,DAL,1,10,77,(9:47) A.Bradshaw left guard to NYG 25 for 2 yards (J.Hatcher).,3,14,2012 -20120905_DAL@NYG,3,24,11,NYG,DAL,2,8,75,(9:11) E.Manning pass short right to M.Bennett pushed ob at NYG 37 for 12 yards (A.Spencer; B.Church). PENALTY on NYG-V.Cruz Illegal Block Above the Waist 10 yards enforced at NYG 37.,3,14,2012 -20120905_DAL@NYG,3,23,46,NYG,DAL,2,6,73,(8:46) (Shotgun) E.Manning pass short right to A.Bradshaw to NYG 33 for 6 yards (S.Lee).,3,14,2012 -20120905_DAL@NYG,3,22,52,NYG,DAL,1,10,67,(7:52) E.Manning pass short left to H.Nicks to NYG 45 for 12 yards (M.Claiborne).,3,14,2012 -20120905_DAL@NYG,3,22,20,NYG,DAL,1,10,55,(7:20) A.Bradshaw left end to 50 for 5 yards (G.Sensabaugh).,3,14,2012 -20120905_DAL@NYG,3,21,48,NYG,DAL,2,5,50,(6:48) E.Manning pass short right to H.Hynoski to DAL 49 for 1 yard (A.Spencer) [V.Butler].,3,14,2012 -20120905_DAL@NYG,3,21,9,NYG,DAL,3,4,49,(6:09) (Shotgun) E.Manning pass deep left to D.Hixon to DAL 10 for 39 yards (M.Silva).,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,1,10,10,(5:19) A.Bradshaw left tackle for 10 yards TOUCHDOWN.,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,3,14,2012 -20120905_DAL@NYG,3,20,19,NYG,DAL,,,10,L.Tynes kicks 70 yards from NYG 35 to DAL -5. F.Jones to DAL 20 for 25 yards (J.Williams S.Paysinger).,10,14,2012 -20120905_DAL@NYG,3,20,4,DAL,NYG,1,10,80,(5:04) T.Romo pass short middle to J.Witten to DAL 27 for 7 yards (J.Williams).,14,10,2012 -20120905_DAL@NYG,3,19,35,DAL,NYG,2,3,73,(4:35) D.Murray right end to NYG 25 for 48 yards (A.Rolle).,14,10,2012 -20120905_DAL@NYG,3,18,42,DAL,NYG,1,10,25,(3:42) T.Romo pass short middle to J.Phillips to NYG 19 for 6 yards (C.Blackburn).,14,10,2012 -20120905_DAL@NYG,3,17,53,DAL,NYG,2,4,19,(2:53) (Shotgun) T.Romo scrambles up the middle to NYG 10 for 9 yards (M.Coe).,14,10,2012 -20120905_DAL@NYG,3,17,20,DAL,NYG,1,10,10,(2:20) D.Murray up the middle to NYG 6 for 4 yards (K.Rivers C.Blackburn).,14,10,2012 -20120905_DAL@NYG,3,16,33,DAL,NYG,2,6,6,(1:33) (Shotgun) T.Romo sacked at NYG 15 for -9 yards (L.Joseph).,14,10,2012 -20120905_DAL@NYG,3,15,53,DAL,NYG,3,15,15,(:53) (Shotgun) T.Romo pass incomplete short middle to K.Ogletree (M.Coe).,14,10,2012 -20120905_DAL@NYG,3,15,45,DAL,NYG,4,15,15,(:45) D.Bailey 33 yard field goal is GOOD Center-L.Ladouceur Holder-C.Jones.,14,10,2012 -20120905_DAL@NYG,3,15,45,DAL,NYG,,,15,D.Bailey kicks 69 yards from DAL 35 to NYG -4. A.Brown to NYG 18 for 22 yards (M.Silva).,17,10,2012 -20120905_DAL@NYG,3,15,34,NYG,DAL,1,10,82,(:34) A.Bradshaw left tackle to NYG 23 for 5 yards (M.Spears).,10,17,2012 -20120905_DAL@NYG,4,15,0,NYG,DAL,2,5,77,(15:00) E.Manning pass incomplete short right to V.Cruz.,10,17,2012 -20120905_DAL@NYG,4,14,55,NYG,DAL,3,5,77,(14:55) (Shotgun) E.Manning pass incomplete short left to A.Bradshaw [J.Hatcher]. PENALTY on DAL-J.Hatcher Roughing the Passer 15 yards enforced at NYG 23 - No Play.,10,17,2012 -20120905_DAL@NYG,4,14,49,NYG,DAL,1,10,62,(14:49) A.Bradshaw right tackle to NYG 38 for no gain (B.Carter).,10,17,2012 -20120905_DAL@NYG,4,14,13,NYG,DAL,2,10,62,(14:13) E.Manning pass short right to B.Pascoe to NYG 44 for 6 yards (S.Lee).,10,17,2012 -20120905_DAL@NYG,4,13,28,NYG,DAL,3,4,56,(13:28) (Shotgun) E.Manning sacked at NYG 39 for -5 yards (J.Hatcher).,10,17,2012 -20120905_DAL@NYG,4,13,17,NYG,DAL,4,9,61,(13:17) S.Weatherford punts 46 yards to DAL 15 Center-Z.DeOssie. D.Harris to DAL 18 for 3 yards (S.Brown).,10,17,2012 -20120905_DAL@NYG,4,13,3,DAL,NYG,1,10,82,(13:03) D.Murray up the middle to DAL 23 for 5 yards (J.Tryon M.Kuhn).,17,10,2012 -20120905_DAL@NYG,4,12,14,DAL,NYG,2,5,77,(12:14) (Shotgun) PENALTY on DAL-T.Romo Delay of Game 5 yards enforced at DAL 23 - No Play.,17,10,2012 -20120905_DAL@NYG,4,12,0,DAL,NYG,2,10,82,(12:00) (Shotgun) T.Romo pass short left to K.Ogletree to DAL 32 for 14 yards (A.Rolle J.Tryon).,17,10,2012 -20120905_DAL@NYG,4,11,27,DAL,NYG,1,10,68,(11:27) D.Murray left tackle to DAL 37 for 5 yards (M.Boley J.Tuck).,17,10,2012 -20120905_DAL@NYG,4,10,46,DAL,NYG,2,5,63,(10:46) T.Romo pass deep right to M.Austin to NYG 43 for 20 yards (C.Webster).,17,10,2012 -20120905_DAL@NYG,4,10,11,DAL,NYG,1,10,43,(10:11) D.Murray left tackle to NYG 34 for 9 yards (A.Rolle).,17,10,2012 -20120905_DAL@NYG,4,9,33,DAL,NYG,2,1,34,(9:33) D.Murray right guard to NYG 38 for -4 yards (M.Boley). PENALTY on NYG-L.Joseph Defensive Offside 5 yards enforced at NYG 34 - No Play.,17,10,2012 -20120905_DAL@NYG,4,9,8,DAL,NYG,1,10,29,(9:08) PENALTY on DAL-T.Smith False Start 5 yards enforced at NYG 29 - No Play.,17,10,2012 -20120905_DAL@NYG,4,8,45,DAL,NYG,1,15,34,(8:45) (Shotgun) T.Romo pass short right to M.Austin to NYG 24 for 10 yards (O.Umenyiora).,17,10,2012 -20120905_DAL@NYG,4,8,4,DAL,NYG,2,5,24,(8:04) D.Murray left tackle to NYG 22 for 2 yards (M.Boley C.Blackburn). PENALTY on DAL-D.Bryant Illegal Motion 5 yards enforced at NYG 24 - No Play.,17,10,2012 -20120905_DAL@NYG,4,7,48,DAL,NYG,2,10,29,(7:48) D.Murray left tackle to NYG 14 for 15 yards (C.Webster).,17,10,2012 -20120905_DAL@NYG,4,7,8,DAL,NYG,1,10,14,(7:08) D.Murray left end to NYG 11 for 3 yards (C.Blackburn). PENALTY on DAL-M.Bernadeau Illegal Use of Hands 10 yards enforced at NYG 14 - No Play.,17,10,2012 -20120905_DAL@NYG,4,6,39,DAL,NYG,1,20,24,(6:39) T.Romo pass short right to K.Ogletree to NYG 8 for 16 yards (J.Tryon). PENALTY on DAL-D.Free Offensive Holding 10 yards enforced at NYG 24 - No Play.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,1,30,34,(6:12) T.Romo pass deep left to M.Austin for 34 yards TOUCHDOWN.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey extra point is GOOD Center-L.Ladouceur Holder-C.Jones.,17,10,2012 -20120905_DAL@NYG,4,6,12,DAL,NYG,,,34,D.Bailey kicks 63 yards from DAL 35 to NYG 2. D.Wilson to NYG 21 for 19 yards (G.Sensabaugh).,24,10,2012 -20120905_DAL@NYG,4,5,51,NYG,DAL,1,10,79,(5:51) (Shotgun) E.Manning pass short middle to A.Bradshaw to NYG 30 for 9 yards (O.Scandrick J.Hatcher).,10,24,2012 -20120905_DAL@NYG,4,5,21,NYG,DAL,2,1,70,(5:21) (No Huddle Shotgun) E.Manning pass incomplete short right to D.Hixon (B.Carr).,10,24,2012 -20120905_DAL@NYG,4,5,14,NYG,DAL,3,1,70,(5:14) (Shotgun) A.Bradshaw right guard to DAL 37 for 33 yards (S.Lee).,10,24,2012 -20120905_DAL@NYG,4,4,44,NYG,DAL,1,10,37,(4:44) (No Huddle Shotgun) E.Manning pass incomplete short middle to M.Bennett.,10,24,2012 -20120905_DAL@NYG,4,4,38,NYG,DAL,2,10,37,(4:38) (Shotgun) E.Manning pass incomplete deep left to V.Cruz.,10,24,2012 -20120905_DAL@NYG,4,4,30,NYG,DAL,3,10,37,(4:30) (Shotgun) E.Manning pass short right to H.Nicks to DAL 29 for 8 yards (M.Claiborne).,10,24,2012 -20120905_DAL@NYG,4,4,3,NYG,DAL,4,2,29,(4:03) (Shotgun) E.Manning pass short middle to V.Cruz to DAL 22 for 7 yards (S.Lee). Penalty on DAL-D.Ware Defensive Offside declined.,10,24,2012 -20120905_DAL@NYG,4,3,56,NYG,DAL,1,10,22,(3:56) (No Huddle Shotgun) E.Manning pass incomplete deep middle to D.Hixon.,10,24,2012 -20120905_DAL@NYG,4,3,51,NYG,DAL,2,10,22,(3:51) (Shotgun) E.Manning pass short left to D.Hixon to DAL 18 for 4 yards (S.Lee).,10,24,2012 -20120905_DAL@NYG,4,3,27,NYG,DAL,3,6,18,(3:27) (Shotgun) E.Manning pass short right to V.Cruz to DAL 13 for 5 yards (B.Carr).,10,24,2012 -20120905_DAL@NYG,4,3,5,NYG,DAL,4,1,13,(3:05) (No Huddle Shotgun) A.Bradshaw left tackle to DAL 9 for 4 yards (S.Lee A.Spencer).,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,1,9,9,(2:42) (No Huddle Shotgun) E.Manning pass short middle to M.Bennett for 9 yards TOUCHDOWN. Penalty on DAL-B.Church Defensive Pass Interference declined.,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes extra point is GOOD Center-Z.DeOssie Holder-S.Weatherford.,10,24,2012 -20120905_DAL@NYG,4,2,42,NYG,DAL,,,9,L.Tynes kicks 53 yards from NYG 35 to DAL 12. F.Jones to DAL 26 for 14 yards (S.Brown).,17,24,2012 -20120905_DAL@NYG,4,2,31,DAL,NYG,1,10,74,(2:31) D.Murray right tackle to DAL 27 for 1 yard (J.Pierre-Paul J.Tuck).,24,17,2012 -20120905_DAL@NYG,4,2,26,DAL,NYG,2,9,73,(2:26) D.Murray right tackle to DAL 34 for 7 yards (C.Blackburn).,24,17,2012 -20120905_DAL@NYG,4,2,17,DAL,NYG,3,2,66,(2:17) D.Murray left end to DAL 37 for 3 yards (K.Phillips). PENALTY on DAL-J.Witten Offensive Holding 10 yards enforced at DAL 36. Officially a rush for 2 yards.,24,17,2012 -20120905_DAL@NYG,4,2,11,DAL,NYG,3,10,74,(2:11) T.Romo pass short left to K.Ogletree to DAL 39 for 13 yards (J.Tryon).,24,17,2012 -20120905_DAL@NYG,4,2,0,DAL,NYG,1,10,61,(2:00) T.Romo kneels to DAL 38 for -1 yards.,24,17,2012 -20120905_DAL@NYG,4,1,24,DAL,NYG,2,11,62,(1:24) T.Romo kneels to DAL 35 for -3 yards.,24,17,2012 -20120905_DAL@NYG,4,0,38,DAL,NYG,3,14,65,(:38) T.Romo kneels to DAL 34 for -1 yards.,24,17,2012 -20120905_DAL@NYG,4,0,38,DAL,NYG,,,65,                      ,24,17,2012 -20120909_IND@CHI,1,0,0,IND,CHI,,,65,P.McAfee kicks 67 yards from IND 35 to CHI -2. D.Hester to CHI 16 for 18 yards (J.Hickman).,0,0,2012 -20120909_IND@CHI,1,59,56,CHI,IND,1,10,84,(14:56) J.Cutler sacked at CHI 4 for -12 yards (R.Mathis).,0,0,2012 -20120909_IND@CHI,1,59,22,CHI,IND,2,22,96,(14:22) PENALTY on CHI-G.Carimi False Start 2 yards enforced at CHI 4 - No Play.,0,0,2012 -20120909_IND@CHI,1,59,1,CHI,IND,2,24,98,(14:01) M.Forte left guard to CHI 5 for 3 yards (J.King; M.Fokou).,0,0,2012 -20120909_IND@CHI,1,58,21,CHI,IND,3,21,95,(13:21) (Shotgun) J.Cutler pass incomplete short right to A.Jeffery.,0,0,2012 -20120909_IND@CHI,1,58,15,CHI,IND,4,21,95,(13:15) (Punt formation) A.Podlesh punts 45 yards to 50 Center-P.Mannelly fair catch by L.Brazill.,0,0,2012 -20120909_IND@CHI,1,58,8,IND,CHI,1,10,50,(13:08) A.Luck pass short right to D.Jones to CHI 42 for 8 yards (L.Briggs).,0,0,2012 -20120909_IND@CHI,1,57,28,IND,CHI,2,2,42,(12:28) D.Brown right tackle to CHI 44 for -2 yards (I.Idonije).,0,0,2012 -20120909_IND@CHI,1,56,45,IND,CHI,3,4,44,(11:45) (Shotgun) A.Luck pass incomplete short left to R.Wayne.,0,0,2012 -20120909_IND@CHI,1,56,40,IND,CHI,4,4,44,(11:40) (Punt formation) P.McAfee punts 41 yards to CHI 3 Center-M.Overton downed by IND-J.Hickman. CHI-C.Tillman was injured during the play. His return is Questionable.,0,0,2012 -20120909_IND@CHI,1,56,28,CHI,IND,1,10,97,(11:28) (Shotgun) J.Cutler pass short right intended for M.Forte INTERCEPTED by J.Freeman at CHI 4. J.Freeman for 4 yards TOUCHDOWN.,0,0,2012 -20120909_IND@CHI,1,56,28,IND,CHI,,,97,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,0,0,2012 -20120909_IND@CHI,1,56,28,IND,CHI,,,97,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,7,0,2012 -20120909_IND@CHI,1,56,23,CHI,IND,1,10,80,(11:23) M.Forte left tackle to CHI 20 for no gain (K.Conner).,0,7,2012 -20120909_IND@CHI,1,55,47,CHI,IND,2,10,80,(10:47) J.Cutler pass incomplete short right to E.Rodriguez [K.Conner].,0,7,2012 -20120909_IND@CHI,1,55,42,CHI,IND,3,10,80,(10:42) (Shotgun) J.Cutler pass short right to B.Marshall to CHI 33 for 13 yards (V.Davis).,0,7,2012 -20120909_IND@CHI,1,55,0,CHI,IND,1,10,67,(10:00) J.Cutler pass incomplete short left to M.Forte.,0,7,2012 -20120909_IND@CHI,1,54,56,CHI,IND,2,10,67,(9:56) M.Forte left end to IND 35 for 32 yards (A.Bethea).,0,7,2012 -20120909_IND@CHI,1,54,9,CHI,IND,1,10,35,(9:09) J.Cutler pass incomplete deep left to K.Davis.,0,7,2012 -20120909_IND@CHI,1,54,4,CHI,IND,2,10,35,(9:04) J.Cutler pass incomplete deep left to B.Marshall (J.Powers).,0,7,2012 -20120909_IND@CHI,1,53,56,CHI,IND,3,10,35,(8:56) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett. PENALTY on IND-J.King Defensive Pass Interference 19 yards enforced at IND 35 - No Play.,0,7,2012 -20120909_IND@CHI,1,53,49,CHI,IND,1,10,16,(8:49) J.Cutler pass incomplete deep left to A.Jeffery.,0,7,2012 -20120909_IND@CHI,1,53,45,CHI,IND,2,10,16,(8:45) M.Forte right tackle to IND 1 for 15 yards (T.Zbikowski).,0,7,2012 -20120909_IND@CHI,1,52,58,CHI,IND,1,1,1,(7:58) J.Cutler pass incomplete short left to B.Marshall. PENALTY on IND-C.Vaughn Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,0,7,2012 -20120909_IND@CHI,1,52,54,CHI,IND,1,1,1,(7:54) M.Bush right tackle to IND 1 for no gain (M.Harvey).,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,2,1,1,(7:21) C.Williams reported in as eligible. M.Bush right tackle for 1 yard TOUCHDOWN.,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,7,2012 -20120909_IND@CHI,1,52,21,CHI,IND,,,1,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,7,7,2012 -20120909_IND@CHI,1,52,19,IND,CHI,1,10,80,(7:19) (Shotgun) A.Luck pass short middle to R.Wayne to IND 28 for 8 yards (B.Urlacher).,7,7,2012 -20120909_IND@CHI,1,51,42,IND,CHI,2,2,72,(6:42) A.Luck pass incomplete short left to R.Wayne (B.Urlacher) [M.Toeaina].,7,7,2012 -20120909_IND@CHI,1,51,36,IND,CHI,3,2,72,(6:36) A.Luck scrambles left guard to IND 31 for 3 yards (H.Melton).,7,7,2012 -20120909_IND@CHI,1,50,51,IND,CHI,1,10,69,(5:51) D.Brown left guard to IND 27 for -4 yards (H.Melton).,7,7,2012 -20120909_IND@CHI,1,50,11,IND,CHI,2,14,73,(5:11) (Shotgun) A.Luck pass short right to L.Brazill to IND 37 for 10 yards (M.Wright).,7,7,2012 -20120909_IND@CHI,1,49,33,IND,CHI,3,4,63,(4:33) (Shotgun) A.Luck pass incomplete short left to R.Wayne [S.McClellin].,7,7,2012 -20120909_IND@CHI,1,49,28,IND,CHI,4,4,63,(4:28) (Punt formation) P.McAfee punts 63 yards to end zone Center-M.Overton Touchback.,7,7,2012 -20120909_IND@CHI,1,49,19,CHI,IND,1,10,80,(4:19) J.Cutler pass incomplete short left to B.Marshall (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,1,49,15,CHI,IND,2,10,80,(4:15) M.Bush left guard to CHI 23 for 3 yards (R.Mathis).,7,7,2012 -20120909_IND@CHI,1,48,35,CHI,IND,3,7,77,(3:35) (Shotgun) J.Cutler pass incomplete deep right to B.Marshall (A.Bethea).,7,7,2012 -20120909_IND@CHI,1,48,29,CHI,IND,4,7,77,(3:29) (Punt formation) A.Podlesh punts 33 yards to IND 44 Center-P.Mannelly out of bounds.,7,7,2012 -20120909_IND@CHI,1,48,21,IND,CHI,1,10,56,(3:21) V.Ballard left end to IND 45 for 1 yard (L.Briggs).,7,7,2012 -20120909_IND@CHI,1,47,36,IND,CHI,2,9,55,(2:36) (Shotgun) V.Ballard left tackle to IND 48 for 3 yards (J.Peppers).,7,7,2012 -20120909_IND@CHI,1,46,48,IND,CHI,3,6,52,(1:48) (Shotgun) A.Luck sacked at IND 40 for -8 yards (J.Peppers). FUMBLES (J.Peppers) and recovers at IND 38. A.Luck to IND 38 for no gain (J.Peppers). PENALTY on CHI-S.McClellin Neutral Zone Infraction 5 yards enforced at IND 48 - No Play.,7,7,2012 -20120909_IND@CHI,1,46,41,IND,CHI,3,1,47,(1:41) (Shotgun) A.Luck pass incomplete short right to D.Brown.,7,7,2012 -20120909_IND@CHI,1,46,38,IND,CHI,4,1,47,(1:38) (Punt formation) P.McAfee punts 42 yards to CHI 5 Center-M.Overton downed by IND-J.Hickman.,7,7,2012 -20120909_IND@CHI,1,46,25,CHI,IND,1,10,95,(1:25) J.Cutler pass short left to B.Marshall to CHI 12 for 7 yards (J.Powers).,7,7,2012 -20120909_IND@CHI,1,45,50,CHI,IND,2,3,88,(:50) M.Forte right tackle to CHI 15 for 3 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,1,45,9,CHI,IND,1,10,85,(:09) J.Cutler pass short left to M.Forte to CHI 16 for 1 yard (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,2,45,0,CHI,IND,2,9,84,(15:00) M.Forte left guard to CHI 21 for 5 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,2,44,18,CHI,IND,3,4,79,(14:18) (Shotgun) J.Cutler pass short left to E.Bennett to CHI 31 for 10 yards (R.Mathis).,7,7,2012 -20120909_IND@CHI,2,43,40,CHI,IND,1,10,69,(13:40) (No Huddle) J.Cutler pass deep left to B.Marshall pushed ob at CHI 47 for 16 yards (A.Bethea).,7,7,2012 -20120909_IND@CHI,2,43,18,CHI,IND,1,10,53,(13:18) (No Huddle) J.Cutler pass incomplete short left to B.Marshall (J.Powers).,7,7,2012 -20120909_IND@CHI,2,43,11,CHI,IND,2,10,53,(13:11) (No Huddle) M.Forte right guard to IND 49 for 4 yards (K.Conner). PENALTY on CHI-C.Spencer Offensive Holding 10 yards enforced at CHI 47 - No Play.,7,7,2012 -20120909_IND@CHI,2,42,33,CHI,IND,2,20,63,(12:33) (Shotgun) J.Cutler pass deep right to D.Hester to IND 34 for 29 yards (J.Freeman).,7,7,2012 -20120909_IND@CHI,2,41,45,CHI,IND,1,10,34,(11:45) M.Forte left guard to IND 34 for no gain (K.Conner).,7,7,2012 -20120909_IND@CHI,2,41,8,CHI,IND,2,10,34,(11:08) (Shotgun) J.Cutler pass short right to M.Forte pushed ob at IND 3 for 31 yards (T.Zbikowski).,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,1,3,3,(10:37) J.Cutler pass short right to B.Marshall for 3 yards TOUCHDOWN.,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,7,7,2012 -20120909_IND@CHI,2,40,37,CHI,IND,,,3,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,14,7,2012 -20120909_IND@CHI,2,40,33,IND,CHI,1,10,80,(10:33) A.Luck pass deep left to R.Wayne to IND 37 for 17 yards (K.Hayden).,7,14,2012 -20120909_IND@CHI,2,39,53,IND,CHI,1,10,63,(9:53) A.Luck pass deep right intended for D.Avery INTERCEPTED by T.Jennings at CHI 20. T.Jennings to CHI 37 for 17 yards (C.Fleener).,7,14,2012 -20120909_IND@CHI,2,39,40,CHI,IND,1,10,63,(9:40) J.Cutler pass deep middle to B.Marshall to IND 39 for 24 yards (A.Bethea).,14,7,2012 -20120909_IND@CHI,2,39,2,CHI,IND,1,10,39,(9:02) M.Bush left guard to IND 38 for 1 yard (D.Nevis).,14,7,2012 -20120909_IND@CHI,2,38,21,CHI,IND,2,9,38,(8:21) J.Cutler pass short middle to A.Jeffery to IND 23 for 15 yards (V.Davis).,14,7,2012 -20120909_IND@CHI,2,37,44,CHI,IND,1,10,23,(7:44) M.Bush left tackle to IND 23 for no gain (K.Conner).,14,7,2012 -20120909_IND@CHI,2,37,4,CHI,IND,2,10,23,(7:04) J.Cutler pass incomplete deep middle to D.Hester. PENALTY on CHI-D.Hester Offensive Pass Interference 10 yards enforced at IND 23 - No Play.,14,7,2012 -20120909_IND@CHI,2,36,57,CHI,IND,2,20,33,(6:57) (Shotgun) J.Cutler pass short left to B.Marshall to IND 24 for 9 yards (J.Powers).,14,7,2012 -20120909_IND@CHI,2,36,19,CHI,IND,3,11,24,(6:19) (Shotgun) M.Bush right guard to IND 17 for 7 yards (A.Bethea).,14,7,2012 -20120909_IND@CHI,2,35,36,CHI,IND,4,4,17,(5:36) (Field Goal formation) R.Gould 35 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,14,7,2012 -20120909_IND@CHI,2,35,36,CHI,IND,,,17,R.Gould kicks 70 yards from CHI 35 to IND -5. C.Vaughn pushed ob at IND 23 for 28 yards (D.Moore).,17,7,2012 -20120909_IND@CHI,2,35,26,IND,CHI,1,10,77,(5:26) A.Luck pass deep left to R.Wayne to IND 46 for 23 yards (C.Conte) [S.Paea]. IND-R.Wayne was injured during the play. His return is Probable.,7,17,2012 -20120909_IND@CHI,2,35,1,IND,CHI,1,10,54,(5:01) A.Luck pass incomplete short right to D.Avery (T.Jennings). PENALTY on CHI-T.Jennings Defensive Pass Interference 6 yards enforced at IND 46 - No Play.,7,17,2012 -20120909_IND@CHI,2,34,58,IND,CHI,1,10,48,(4:58) D.Brown left guard to CHI 30 for 18 yards (K.Hayden; M.Wright).,7,17,2012 -20120909_IND@CHI,2,34,14,IND,CHI,1,10,30,(4:14) (Shotgun) A.Luck pass incomplete short right to R.Wayne (C.Conte).,7,17,2012 -20120909_IND@CHI,2,34,10,IND,CHI,2,10,30,(4:10) A.Luck pass short left to R.Wayne to CHI 18 for 12 yards (B.Urlacher; K.Hayden).,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,1,10,18,(3:25) D.Brown left tackle for 18 yards TOUCHDOWN.,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,,,18,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,7,17,2012 -20120909_IND@CHI,2,33,25,IND,CHI,,,18,P.McAfee kicks 68 yards from IND 35 to CHI -3. D.Hester to CHI 28 for 31 yards (M.Harvey).,14,17,2012 -20120909_IND@CHI,2,33,7,CHI,IND,1,10,72,(3:07) J.Cutler pass deep left to K.Adams to CHI 45 for 17 yards (J.Powers).,17,14,2012 -20120909_IND@CHI,2,32,27,CHI,IND,1,10,55,(2:27) J.Cutler pass incomplete deep right to B.Marshall (J.King).,17,14,2012 -20120909_IND@CHI,2,32,22,CHI,IND,2,10,55,(2:22) J.Cutler pass incomplete short middle to M.Forte (C.Redding).,17,14,2012 -20120909_IND@CHI,2,32,17,CHI,IND,3,10,55,(2:17) (Shotgun) J.Cutler pass short middle to E.Bennett to IND 40 for 15 yards (J.King). Penalty on IND-T.Zbikowski Defensive Holding declined.,17,14,2012 -20120909_IND@CHI,2,32,0,CHI,IND,1,10,40,(2:00) (Shotgun) M.Forte left guard to IND 39 for 1 yard (M.Fokou).,17,14,2012 -20120909_IND@CHI,2,31,29,CHI,IND,2,9,39,(1:29) (Shotgun) J.Cutler pass short left to B.Marshall to IND 26 for 13 yards (T.Zbikowski).,17,14,2012 -20120909_IND@CHI,2,30,58,CHI,IND,1,10,26,(:58) (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett for 26 yards TOUCHDOWN. Penalty on IND-J.King Defensive Pass Interference declined. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. (No Huddle Shotgun) J.Cutler pass deep middle to E.Bennett to IND 1 for 25 yards (A.Bethea). Penalty on IND-J.King Defensive Pass Interference declined.,17,14,2012 -20120909_IND@CHI,2,30,50,CHI,IND,1,1,1,(:50) J.Cutler pass incomplete short right to B.Marshall. PENALTY on IND-V.Davis Defensive Pass Interference 0 yards enforced at IND 1 - No Play.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,1,1,1,(:46) M.Bush left guard for 1 yard TOUCHDOWN.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,17,14,2012 -20120909_IND@CHI,2,30,46,CHI,IND,,,1,R.Gould kicks 66 yards from CHI 35 to IND -1. C.Vaughn to IND 22 for 23 yards (B.Costanzo).,24,14,2012 -20120909_IND@CHI,2,30,39,IND,CHI,1,10,78,(:39) (Shotgun) A.Luck pass short middle to C.Fleener to IND 29 for 7 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,34,IND,CHI,2,3,71,(:34) (Shotgun) A.Luck pass short left to R.Wayne pushed ob at IND 37 for 8 yards (K.Hayden).,14,24,2012 -20120909_IND@CHI,2,30,27,IND,CHI,1,10,63,(:27) (No Huddle Shotgun) A.Luck pass short left to C.Fleener pushed ob at CHI 41 for 22 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,20,IND,CHI,1,10,41,(:20) (Shotgun) A.Luck pass deep middle to C.Fleener to CHI 19 for 22 yards (M.Wright).,14,24,2012 -20120909_IND@CHI,2,30,12,IND,CHI,1,10,19,(:12) (Shotgun) A.Luck pass incomplete deep right to D.Avery (T.Jennings).,14,24,2012 -20120909_IND@CHI,2,30,6,IND,CHI,2,10,19,(:06) (Field Goal formation) A.Vinatieri 37 yard field goal is No Good Wide Right Center-M.Overton Holder-P.McAfee.,14,24,2012 -20120909_IND@CHI,2,30,2,CHI,IND,1,10,73,(:02) J.Cutler kneels to CHI 26 for -1 yards.,24,14,2012 -20120909_IND@CHI,3,30,0,CHI,IND,,,73,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,24,14,2012 -20120909_IND@CHI,3,30,0,IND,CHI,1,10,80,(15:00) D.Brown right end pushed ob at IND 21 for 1 yard (T.Jennings).,14,24,2012 -20120909_IND@CHI,3,29,27,IND,CHI,2,9,79,(14:27) A.Luck pass incomplete short left to C.Fleener.,14,24,2012 -20120909_IND@CHI,3,29,22,IND,CHI,3,9,79,(14:22) (Shotgun) A.Luck pass incomplete short left to K.Adams.,14,24,2012 -20120909_IND@CHI,3,29,19,IND,CHI,4,9,79,(14:19) (Punt formation) P.McAfee punts 57 yards to CHI 22 Center-M.Overton. D.Hester pushed ob at CHI 45 for 23 yards (M.Fokou).,14,24,2012 -20120909_IND@CHI,3,29,2,CHI,IND,1,10,55,(14:02) M.Bush right end to IND 35 for 20 yards (A.Bethea). IND-A.Bethea was injured during the play. His return is Questionable.,24,14,2012 -20120909_IND@CHI,3,28,23,CHI,IND,1,10,35,(13:23) J.Cutler pass short right to A.Jeffery to IND 12 for 23 yards (V.Davis).,24,14,2012 -20120909_IND@CHI,3,27,37,CHI,IND,1,10,12,(12:37) M.Forte left guard to IND 6 for 6 yards (C.Redding; P.McAfee).,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,2,4,6,(11:57) M.Forte left tackle for 6 yards TOUCHDOWN.,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,24,14,2012 -20120909_IND@CHI,3,26,57,CHI,IND,,,6,R.Gould kicks 71 yards from CHI 35 to IND -6. L.Brazill to IND 9 for 15 yards (J.Thomas). FUMBLES (J.Thomas) RECOVERED by CHI-K.Hayden at IND 12. K.Hayden ran ob at IND 12 for no gain.,31,14,2012 -20120909_IND@CHI,3,26,46,CHI,IND,1,10,12,(11:46) D.Hester left end to IND 16 for -4 yards (J.Freeman).,31,14,2012 -20120909_IND@CHI,3,25,57,CHI,IND,2,14,16,(10:57) (Shotgun) J.Cutler pass short right to M.Forte to IND 8 for 8 yards (V.Davis).,31,14,2012 -20120909_IND@CHI,3,25,11,CHI,IND,3,6,8,(10:11) (Shotgun) J.Cutler pass incomplete short middle to B.Marshall (J.King).,31,14,2012 -20120909_IND@CHI,3,25,7,CHI,IND,4,6,8,(10:07) (Field Goal formation) R.Gould 26 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,31,14,2012 -20120909_IND@CHI,3,25,7,CHI,IND,,,8,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,34,14,2012 -20120909_IND@CHI,3,25,2,IND,CHI,1,10,80,(10:02) A.Luck pass short left to C.Fleener to IND 25 for 5 yards (N.Roach).,14,34,2012 -20120909_IND@CHI,3,24,20,IND,CHI,2,5,75,(9:20) D.Brown right guard to IND 22 for -3 yards (H.Melton; N.Roach).,14,34,2012 -20120909_IND@CHI,3,23,39,IND,CHI,3,8,78,(8:39) (Shotgun) A.Luck pass incomplete short right to L.Brazill (N.Roach) [S.Paea]. PENALTY on CHI-N.Roach Illegal Contact 5 yards enforced at IND 22 - No Play.,14,34,2012 -20120909_IND@CHI,3,23,32,IND,CHI,1,10,73,(8:32) A.Luck pass incomplete short left to D.Brown.,14,34,2012 -20120909_IND@CHI,3,23,26,IND,CHI,2,10,73,(8:26) (Shotgun) A.Luck pass short right to K.Adams to IND 40 for 13 yards (T.Jennings; N.Roach).,14,34,2012 -20120909_IND@CHI,3,22,46,IND,CHI,1,10,60,(7:46) D.Brown left end to IND 40 for no gain (M.Toeaina; G.Hayes).,14,34,2012 -20120909_IND@CHI,3,22,6,IND,CHI,2,10,60,(7:06) (Shotgun) A.Luck pass incomplete short left to D.Avery (K.Hayden).,14,34,2012 -20120909_IND@CHI,3,22,1,IND,CHI,3,10,60,(7:01) (Shotgun) A.Luck pass short middle to R.Wayne to CHI 41 for 19 yards (C.Conte).,14,34,2012 -20120909_IND@CHI,3,21,22,IND,CHI,1,10,41,(6:22) A.Luck pass deep middle to C.Fleener to CHI 17 for 24 yards (G.Hayes).,14,34,2012 -20120909_IND@CHI,3,20,42,IND,CHI,1,10,17,(5:42) A.Luck pass incomplete short right to R.Wayne.,14,34,2012 -20120909_IND@CHI,3,20,37,IND,CHI,2,10,17,(5:37) D.Brown right guard to CHI 10 for 7 yards (J.Peppers).,14,34,2012 -20120909_IND@CHI,3,19,57,IND,CHI,3,3,10,(4:57) (Shotgun) A.Luck pass short right intended for R.Wayne INTERCEPTED by C.Conte (T.Jennings) at CHI -3. C.Conte to CHI 32 for 35 yards (K.Adams).,14,34,2012 -20120909_IND@CHI,3,19,46,CHI,IND,1,10,68,(4:46) M.Forte right tackle to CHI 31 for -1 yards (R.Mathis).,34,14,2012 -20120909_IND@CHI,3,19,2,CHI,IND,2,11,69,(4:02) J.Cutler pass short left to D.Hester to CHI 29 for -2 yards (J.Powers).,34,14,2012 -20120909_IND@CHI,3,18,13,CHI,IND,3,13,71,(3:13) (Shotgun) J.Cutler sacked at CHI 22 for -7 yards (R.Mathis).,34,14,2012 -20120909_IND@CHI,3,17,46,CHI,IND,4,20,78,(2:46) (Punt formation) A.Podlesh punts 40 yards to IND 38 Center-P.Mannelly. L.Brazill to IND 46 for 8 yards (B.Costanzo).,34,14,2012 -20120909_IND@CHI,3,17,37,IND,CHI,1,10,54,(2:37) A.Luck pass incomplete short middle to C.Fleener.,14,34,2012 -20120909_IND@CHI,3,17,32,IND,CHI,2,10,54,(2:32) (Shotgun) D.Brown right tackle to CHI 41 for 13 yards (T.Jennings; C.Conte).,14,34,2012 -20120909_IND@CHI,3,16,53,IND,CHI,1,10,41,(1:53) A.Luck pass incomplete. Chicago challenged the incomplete pass ruling and the play was REVERSED. A.Luck sacked at CHI 45 for -4 yards (C.Wootton). FUMBLES (C.Wootton) RECOVERED by CHI-J.Peppers at CHI 41. J.Peppers to CHI 41 for no gain (A.Castonzo).,14,34,2012 -20120909_IND@CHI,3,16,49,CHI,IND,1,10,59,(1:49) M.Forte left end to CHI 38 for -3 yards (K.Conner).,34,14,2012 -20120909_IND@CHI,3,16,9,CHI,IND,2,13,62,(1:09) (Shotgun) J.Cutler pass incomplete deep middle to E.Bennett (A.Bethea).,34,14,2012 -20120909_IND@CHI,3,16,3,CHI,IND,3,13,62,(1:03) (Shotgun) J.Cutler pass short left to B.Marshall to 50 for 12 yards (J.Powers). Measurement. Chicago challenged the runner was down by contact ruling and the play was Upheld. (Timeout #1.),34,14,2012 -20120909_IND@CHI,3,15,20,CHI,IND,4,1,50,(:20) (Punt formation) A.Podlesh punts 50 yards to end zone Center-P.Mannelly Touchback.,34,14,2012 -20120909_IND@CHI,3,15,12,IND,CHI,1,10,80,(:12) A.Luck scrambles right end pushed ob at IND 26 for 6 yards (T.Jennings).,14,34,2012 -20120909_IND@CHI,4,15,0,IND,CHI,2,4,74,(15:00) A.Luck pass short right to R.Wayne to IND 46 for 20 yards (M.Wright).,14,34,2012 -20120909_IND@CHI,4,14,25,IND,CHI,1,10,54,(14:25) (Shotgun) V.Ballard left guard to IND 48 for 2 yards (M.Toeaina).,14,34,2012 -20120909_IND@CHI,4,13,49,IND,CHI,2,8,52,(13:49) A.Luck pass deep left to R.Wayne to CHI 31 for 21 yards (C.Conte).,14,34,2012 -20120909_IND@CHI,4,13,8,IND,CHI,1,10,31,(13:08) V.Ballard left end to CHI 31 for no gain (J.Peppers).,14,34,2012 -20120909_IND@CHI,4,12,25,IND,CHI,2,10,31,(12:25) (Shotgun) A.Luck pass incomplete deep left to C.Fleener.,14,34,2012 -20120909_IND@CHI,4,12,21,IND,CHI,3,10,31,(12:21) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,14,34,2012 -20120909_IND@CHI,4,12,16,IND,CHI,4,10,31,(12:16) (Shotgun) A.Luck pass short middle to K.Adams to CHI 18 for 13 yards (D.Moore).,14,34,2012 -20120909_IND@CHI,4,11,33,IND,CHI,1,10,18,(11:33) A.Luck pass short right to R.Wayne pushed ob at CHI 11 for 7 yards (K.Hayden).,14,34,2012 -20120909_IND@CHI,4,11,6,IND,CHI,2,3,11,(11:06) A.Luck pass short left to D.Avery to CHI 4 for 7 yards (K.Hayden).,14,34,2012 -20120909_IND@CHI,4,10,28,IND,CHI,1,4,4,(10:28) (Shotgun) A.Luck pass incomplete short middle to R.Wayne.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,2,4,4,(10:24) A.Luck pass short left to D.Avery for 4 yards TOUCHDOWN.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,,,4,A.Vinatieri extra point is GOOD Center-M.Overton Holder-P.McAfee.,14,34,2012 -20120909_IND@CHI,4,10,24,IND,CHI,,,4,P.McAfee kicks 65 yards from IND 35 to end zone Touchback.,21,34,2012 -20120909_IND@CHI,4,10,20,CHI,IND,1,10,80,(10:20) M.Forte right guard to CHI 21 for 1 yard (K.Conner).,34,21,2012 -20120909_IND@CHI,4,9,39,CHI,IND,2,9,79,(9:39) J.Cutler pass deep left to B.Marshall to CHI 43 for 22 yards (J.Powers).,34,21,2012 -20120909_IND@CHI,4,8,56,CHI,IND,1,10,57,(8:56) M.Forte right end pushed ob at CHI 46 for 3 yards (J.Freeman).,34,21,2012 -20120909_IND@CHI,4,8,20,CHI,IND,2,7,54,(8:20) M.Forte left guard to IND 48 for 6 yards (A.Bethea).,34,21,2012 -20120909_IND@CHI,4,7,40,CHI,IND,3,1,48,(7:40) M.Bush left tackle to IND 45 for 3 yards (J.Freeman).,34,21,2012 -20120909_IND@CHI,4,7,0,CHI,IND,1,10,45,(7:00) M.Forte right tackle to IND 42 for 3 yards (V.Davis).,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,2,7,42,(6:16) J.Cutler pass deep middle to A.Jeffery for 42 yards TOUCHDOWN.,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,34,21,2012 -20120909_IND@CHI,4,6,16,CHI,IND,,,42,R.Gould kicks 53 yards from CHI 35 to IND 12. M.Moore to IND 19 for 7 yards (A.Walters).,41,21,2012 -20120909_IND@CHI,4,6,2,IND,CHI,1,10,81,(6:02) (Shotgun) A.Luck pass incomplete short middle to R.Wayne (D.Moore).,21,41,2012 -20120909_IND@CHI,4,5,54,IND,CHI,2,10,81,(5:54) (Shotgun) A.Luck pass short left to M.Moore to IND 30 for 11 yards (K.Hayden).,21,41,2012 -20120909_IND@CHI,4,5,30,IND,CHI,1,10,70,(5:30) (No Huddle) A.Luck pass incomplete short right to R.Wayne (D.Moore).,21,41,2012 -20120909_IND@CHI,4,5,28,IND,CHI,2,10,70,(5:28) (Shotgun) A.Luck pass incomplete short middle to D.Avery.,21,41,2012 -20120909_IND@CHI,4,5,24,IND,CHI,3,10,70,(5:24) (Shotgun) A.Luck sacked at IND 21 for -9 yards (H.Melton).,21,41,2012 -20120909_IND@CHI,4,5,1,IND,CHI,4,19,79,(5:01) (Punt formation) P.McAfee punts 54 yards to CHI 25 Center-M.Overton downed by IND-J.Lefeged.,21,41,2012 -20120909_IND@CHI,4,4,48,CHI,IND,1,10,75,(4:48) M.Bush right end to CHI 46 for 21 yards (J.Hughes). PENALTY on CHI-K.Davis Offensive Holding 10 yards enforced at CHI 25 - No Play.,41,21,2012 -20120909_IND@CHI,4,4,16,CHI,IND,1,20,85,(4:16) M.Bush left tackle to CHI 18 for 3 yards (J.Freeman).,41,21,2012 -20120909_IND@CHI,4,3,30,CHI,IND,2,17,82,(3:30) M.Bush right tackle to CHI 15 for -3 yards (M.Harvey).,41,21,2012 -20120909_IND@CHI,4,2,43,CHI,IND,3,20,85,(2:43) M.Bush right tackle to CHI 21 for 6 yards (J.Lefeged).,41,21,2012 -20120909_IND@CHI,4,2,37,CHI,IND,4,14,79,(2:37) (Punt formation) A.Podlesh punts 40 yards to IND 39 Center-P.Mannelly. L.Brazill pushed ob at IND 43 for 4 yards (S.McManis).,41,21,2012 -20120909_IND@CHI,4,2,28,IND,CHI,1,10,57,(2:28) (Shotgun) A.Luck pass short right to C.Fleener to IND 45 for 2 yards (M.Wright).,21,41,2012 -20120909_IND@CHI,4,2,10,IND,CHI,2,8,55,(2:10) (No Huddle Shotgun) A.Luck pass incomplete short right to C.Fleener.,21,41,2012 -20120909_IND@CHI,4,2,4,IND,CHI,3,8,55,(2:04) (Shotgun) A.Luck sacked at IND 38 for -7 yards (H.Melton).,21,41,2012 -20120909_IND@CHI,4,1,59,IND,CHI,4,15,62,(1:59) (Shotgun) A.Luck pass deep left to D.Avery to CHI 36 for 26 yards (D.Moore).,21,41,2012 -20120909_IND@CHI,4,1,52,IND,CHI,1,10,36,(1:52) (Shotgun) A.Luck pass deep right intended for K.Adams INTERCEPTED by T.Jennings at CHI 15. T.Jennings to CHI 26 for 11 yards (A.Castonzo).,21,41,2012 -20120909_IND@CHI,4,1,42,CHI,IND,1,10,74,(1:42) J.Cutler kneels to CHI 25 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,58,CHI,IND,2,11,75,(:58) J.Cutler kneels to CHI 24 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,33,CHI,IND,3,12,76,(:33) J.Cutler kneels to CHI 23 for -1 yards.,41,21,2012 -20120909_IND@CHI,4,0,33,CHI,IND,,,76,                      ,41,21,2012 -20120909_PHI@CLE,1,0,0,CLE,PHI,,,76,P.Dawson kicks 57 yards from CLV 35 to PHI 8. S.Havili to PHI 26 for 18 yards (L.Fort).,0,0,2012 -20120909_PHI@CLE,1,59,56,PHI,CLE,1,10,74,(14:56) M.Vick pass short left to L.McCoy to PHI 20 for -6 yards (B.Winn).,0,0,2012 -20120909_PHI@CLE,1,59,16,PHI,CLE,2,16,80,(14:16) (Shotgun) M.Vick pass short middle to B.Celek to PHI 31 for 11 yards (D.Jackson; C.Robertson).,0,0,2012 -20120909_PHI@CLE,1,58,33,PHI,CLE,3,5,69,(13:33) (Shotgun) M.Vick pass short left to L.McCoy to CLV 45 for 24 yards (E.Hagg). PENALTY on PHI-J.Maclin Offensive Pass Interference 10 yards enforced at PHI 31 - No Play.,0,0,2012 -20120909_PHI@CLE,1,58,14,PHI,CLE,3,15,79,(13:14) (Shotgun) M.Vick scrambles up the middle to PHI 37 for 16 yards (T.Ward).,0,0,2012 -20120909_PHI@CLE,1,57,36,PHI,CLE,1,10,63,(12:36) M.Vick pass short left to D.Jackson to CLV 48 for 15 yards (J.Haden).,0,0,2012 -20120909_PHI@CLE,1,56,58,PHI,CLE,1,10,48,(11:58) D.Jackson right end to CLV 43 for 5 yards (A.Rubin).,0,0,2012 -20120909_PHI@CLE,1,56,18,PHI,CLE,2,5,43,(11:18) L.McCoy left end to CLV 48 for -5 yards (T.Ward). FUMBLES (T.Ward) RECOVERED by CLV-D.Jackson at CLV 49. D.Jackson to CLV 49 for no gain (M.Vick).,0,0,2012 -20120909_PHI@CLE,1,56,10,CLE,PHI,1,10,51,(11:10) T.Richardson right guard to 50 for 1 yard (M.Kendricks).,0,0,2012 -20120909_PHI@CLE,1,55,39,CLE,PHI,2,9,50,(10:39) B.Weeden pass short left to M.Massaquoi to PHI 26 for 24 yards (K.Coleman).,0,0,2012 -20120909_PHI@CLE,1,55,2,CLE,PHI,1,10,26,(10:02) T.Richardson left guard to PHI 25 for 1 yard (J.Babin).,0,0,2012 -20120909_PHI@CLE,1,54,25,CLE,PHI,2,9,25,(9:25) B.Weeden pass incomplete deep right to M.Massaquoi.,0,0,2012 -20120909_PHI@CLE,1,54,19,CLE,PHI,3,9,25,(9:19) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,0,0,2012 -20120909_PHI@CLE,1,54,16,CLE,PHI,4,9,25,(9:16) P.Dawson 43 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,0,0,2012 -20120909_PHI@CLE,1,54,16,CLE,PHI,,,25,P.Dawson kicks 68 yards from CLV 35 to PHI -3. B.Boykin to PHI 26 for 29 yards (T.Gipson).,3,0,2012 -20120909_PHI@CLE,1,54,7,PHI,CLE,1,10,79,(9:07) M.Vick FUMBLES (Aborted) at PHI 21 recovered by PHI-L.McCoy at PHI 21.,0,3,2012 -20120909_PHI@CLE,1,53,30,PHI,CLE,2,15,79,(8:30) (Shotgun) L.McCoy left tackle ran ob at PHI 30 for 9 yards (K.Maiava).,0,3,2012 -20120909_PHI@CLE,1,53,7,PHI,CLE,3,6,70,(8:07) (Shotgun) M.Vick pass short right to C.Harbor to PHI 35 for 5 yards (C.Robertson). PENALTY on CLV-B.Winn Neutral Zone Infraction 5 yards enforced at PHI 30 - No Play.,0,3,2012 -20120909_PHI@CLE,1,52,47,PHI,CLE,3,1,65,(7:47) M.Vick pass short left to L.McCoy to PHI 45 for 10 yards (S.Brown).,0,3,2012 -20120909_PHI@CLE,1,52,22,PHI,CLE,1,10,55,(7:22) L.McCoy left tackle to PHI 48 for 3 yards (B.Winn). PENALTY on PHI-E.Mathis Offensive Holding 10 yards enforced at PHI 45 - No Play.,0,3,2012 -20120909_PHI@CLE,1,52,6,PHI,CLE,1,20,65,(7:06) L.McCoy right guard to PHI 39 for 4 yards (J.Parker).,0,3,2012 -20120909_PHI@CLE,1,51,29,PHI,CLE,2,16,61,(6:29) (Shotgun) M.Vick pass short right to J.Avant to PHI 44 for 5 yards (C.Robertson) [J.Parker].,0,3,2012 -20120909_PHI@CLE,1,50,42,PHI,CLE,3,11,56,(5:42) (Shotgun) M.Vick pass deep left to D.Jackson to CLV 38 for 18 yards (J.Haden) [C.Robertson]. Penalty on CLV-J.Haden Defensive Pass Interference declined.,0,3,2012 -20120909_PHI@CLE,1,50,22,PHI,CLE,1,10,38,(5:22) M.Vick sacked at CLV 39 for -1 yards (L.Fort).,0,3,2012 -20120909_PHI@CLE,1,49,46,PHI,CLE,2,11,39,(4:46) (Shotgun) M.Vick pass incomplete short middle to J.Maclin. PENALTY on PHI-K.Dunlap Offensive Holding 10 yards enforced at CLV 39 - No Play.,0,3,2012 -20120909_PHI@CLE,1,49,41,PHI,CLE,2,21,49,(4:41) (Shotgun) M.Vick pass short middle intended for B.Celek INTERCEPTED by C.Robertson at CLV 39. C.Robertson to CLV 40 for 1 yard (L.McCoy).,0,3,2012 -20120909_PHI@CLE,1,49,32,CLE,PHI,1,10,60,(4:32) T.Richardson right tackle to CLV 42 for 2 yards (M.Kendricks).,3,0,2012 -20120909_PHI@CLE,1,48,53,CLE,PHI,2,8,58,(3:53) B.Weeden pass short right to A.Smith to CLV 41 for -1 yards (N.Allen).,3,0,2012 -20120909_PHI@CLE,1,48,12,CLE,PHI,3,9,59,(3:12) B.Weeden sacked at CLV 41 for 0 yards. FUMBLES recovered by CLV-J.Pinkston at CLV 38. J.Pinkston to CLV 38 for no gain (T.Cole). PENALTY on PHI-J.Babin Neutral Zone Infraction 5 yards enforced at CLV 41 - No Play.,3,0,2012 -20120909_PHI@CLE,1,47,56,CLE,PHI,3,4,54,(2:56) (Shotgun) B.Weeden pass short left to B.Watson to CLV 49 for 3 yards (D.Ryans).,3,0,2012 -20120909_PHI@CLE,1,47,14,CLE,PHI,4,1,51,(2:14) R.Hodges punts 44 yards to PHI 7 Center-C.Yount fair catch by D.Johnson. PENALTY on CLV-B.Skrine Interference with Opportunity to Catch 15 yards enforced at PHI 7.,3,0,2012 -20120909_PHI@CLE,1,47,5,PHI,CLE,1,10,78,(2:05) (Shotgun) M.Vick pass short left to J.Maclin to PHI 31 for 9 yards (S.Brown) [D.Patterson].,0,3,2012 -20120909_PHI@CLE,1,46,50,PHI,CLE,2,1,69,(1:50) L.McCoy right guard to PHI 40 for 9 yards (S.Brown; T.Ward). CLV-S.Brown was injured during the play. His return is Questionable.,0,3,2012 -20120909_PHI@CLE,1,46,18,PHI,CLE,1,10,60,(1:18) M.Vick pass deep right to D.Jackson ran ob at CLV 25 for 35 yards (E.Hagg) [A.Rubin].,0,3,2012 -20120909_PHI@CLE,1,45,47,PHI,CLE,1,10,25,(:47) (Shotgun) L.McCoy left tackle to CLV 23 for 2 yards (F.Rucker; D.Jackson).,0,3,2012 -20120909_PHI@CLE,1,45,10,PHI,CLE,2,8,23,(:10) M.Vick pass incomplete short left to D.Jackson.,0,3,2012 -20120909_PHI@CLE,1,45,1,PHI,CLE,3,8,23,(:01) (Shotgun) M.Vick pass incomplete deep left to D.Jackson [J.Parker].,0,3,2012 -20120909_PHI@CLE,2,45,0,PHI,CLE,4,8,23,(15:00) A.Henery 42 yard field goal is GOOD Center-J.Dorenbos Holder-C.Henry.,0,3,2012 -20120909_PHI@CLE,2,45,0,PHI,CLE,,,23,A.Henery kicks 70 yards from PHI 35 to CLV -5. J.Cribbs to CLV 34 for 39 yards (J.Chaney; C.Marsh).,3,3,2012 -20120909_PHI@CLE,2,44,52,CLE,PHI,1,10,66,(14:52) T.Richardson left guard to CLV 39 for 5 yards (B.Graham).,3,3,2012 -20120909_PHI@CLE,2,44,22,CLE,PHI,2,5,61,(14:22) B.Weeden pass short right to T.Benjamin to PHI 49 for 12 yards (D.Rodgers-Cromartie).,3,3,2012 -20120909_PHI@CLE,2,43,49,CLE,PHI,1,10,49,(13:49) T.Richardson left guard to PHI 48 for 1 yard (M.Kendricks; T.Cole).,3,3,2012 -20120909_PHI@CLE,2,43,10,CLE,PHI,2,9,48,(13:10) T.Benjamin left end to PHI 13 for 35 yards (N.Asomugha). 16 Cribbs hands off to 80 Benjamin on reverse,3,3,2012 -20120909_PHI@CLE,2,42,25,CLE,PHI,1,10,13,(12:25) (Shotgun) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 -20120909_PHI@CLE,2,42,20,CLE,PHI,2,10,13,(12:20) (Shotgun) B.Weeden pass short middle intended for G.Little INTERCEPTED by K.Coleman at PHI 1. K.Coleman to PHI 7 for 6 yards (G.Little). Ball deflected off 95 Kendricks,3,3,2012 -20120909_PHI@CLE,2,42,11,PHI,CLE,1,10,93,(12:11) M.Vick pass short left to J.Maclin to PHI 12 for 5 yards (D.Patterson).,3,3,2012 -20120909_PHI@CLE,2,41,46,PHI,CLE,2,5,88,(11:46) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,41,38,PHI,CLE,3,5,88,(11:38) (Shotgun) M.Vick pass short left to J.Maclin to PHI 15 for 3 yards (D.Patterson). PHI-J.Maclin was injured during the play. His return is Questionable.,3,3,2012 -20120909_PHI@CLE,2,41,12,PHI,CLE,4,2,85,(11:12) C.Henry punts 60 yards to CLV 25 Center-J.Dorenbos. J.Cribbs to CLV 31 for 6 yards (K.Coleman).,3,3,2012 -20120909_PHI@CLE,2,41,0,CLE,PHI,1,10,69,(11:00) B.Weeden pass incomplete short right to T.Richardson.,3,3,2012 -20120909_PHI@CLE,2,40,56,CLE,PHI,2,10,69,(10:56) T.Richardson left guard to CLV 40 for 9 yards (K.Coleman).,3,3,2012 -20120909_PHI@CLE,2,40,13,CLE,PHI,3,1,60,(10:13) T.Richardson left guard to CLV 39 for -1 yards (D.Ryans).,3,3,2012 -20120909_PHI@CLE,2,39,41,CLE,PHI,4,2,61,(9:41) R.Hodges punts 42 yards to PHI 19 Center-C.Yount downed by CLV-B.Skrine.,3,3,2012 -20120909_PHI@CLE,2,39,27,PHI,CLE,1,10,81,(9:27) M.Vick scrambles right guard to PHI 30 for 11 yards (C.Robertson).,3,3,2012 -20120909_PHI@CLE,2,38,47,PHI,CLE,1,10,70,(8:47) (Shotgun) M.Vick pass incomplete short left to B.Celek [B.Skrine].,3,3,2012 -20120909_PHI@CLE,2,38,43,PHI,CLE,2,10,70,(8:43) L.McCoy left tackle to PHI 47 for 17 yards (J.Parker). PENALTY on PHI-J.Kelce Offensive Holding 10 yards enforced at PHI 30 - No Play.,3,3,2012 -20120909_PHI@CLE,2,38,21,PHI,CLE,2,20,80,(8:21) (Shotgun) M.Vick pass short left to B.Celek to PHI 29 for 9 yards (B.Winn; J.Haden).,3,3,2012 -20120909_PHI@CLE,2,37,40,PHI,CLE,3,11,71,(7:40) M.Vick pass incomplete short left to L.McCoy.,3,3,2012 -20120909_PHI@CLE,2,37,33,PHI,CLE,4,11,71,(7:33) C.Henry punts 52 yards to CLV 19 Center-J.Dorenbos. J.Cribbs to CLV 36 for 17 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,37,22,CLE,PHI,1,10,64,(7:22) (Shotgun) B.Weeden pass incomplete short right to G.Little.,3,3,2012 -20120909_PHI@CLE,2,37,18,CLE,PHI,2,10,64,(7:18) T.Richardson left tackle to CLV 35 for -1 yards (C.Jenkins).,3,3,2012 -20120909_PHI@CLE,2,36,35,CLE,PHI,3,11,65,(6:35) (Shotgun) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 26. D.Rodgers-Cromartie to PHI 26 for no gain (T.Benjamin).,3,3,2012 -20120909_PHI@CLE,2,36,28,PHI,CLE,1,10,74,(6:28) M.Vick sacked at PHI 16 for -10 yards (T.Ward).,3,3,2012 -20120909_PHI@CLE,2,36,1,PHI,CLE,2,20,84,(6:01) (Shotgun) M.Vick pass short right to L.McCoy pushed ob at PHI 23 for 7 yards (C.Robertson).,3,3,2012 -20120909_PHI@CLE,2,35,32,PHI,CLE,3,13,77,(5:32) (Shotgun) M.Vick pass short right to C.Harbor to PHI 33 for 10 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,35,1,PHI,CLE,4,3,67,(5:01) C.Henry punts 54 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 36 for 23 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,34,47,CLE,PHI,1,10,64,(4:47) PENALTY on PHI-F.Cox Encroachment 5 yards enforced at CLV 36 - No Play.,3,3,2012 -20120909_PHI@CLE,2,34,47,CLE,PHI,1,5,59,(4:47) B.Weeden pass short left to M.Massaquoi to CLV 45 for 4 yards (M.Kendricks).,3,3,2012 -20120909_PHI@CLE,2,34,16,CLE,PHI,2,1,55,(4:16) T.Richardson up the middle to CLV 45 for no gain (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,33,34,CLE,PHI,3,1,55,(3:34) B.Weeden pass short right to B.Jackson to PHI 49 for 6 yards (N.Allen).,3,3,2012 -20120909_PHI@CLE,2,33,4,CLE,PHI,1,10,49,(3:04) B.Weeden pass incomplete deep right to O.Marecic.,3,3,2012 -20120909_PHI@CLE,2,32,55,CLE,PHI,2,10,49,(2:55) B.Weeden pass incomplete short right to J.Gordon (N.Asomugha).,3,3,2012 -20120909_PHI@CLE,2,32,52,CLE,PHI,3,10,49,(2:52) (Shotgun) B.Weeden pass incomplete deep right to M.Massaquoi [J.Babin].,3,3,2012 -20120909_PHI@CLE,2,32,45,CLE,PHI,4,10,49,(2:45) R.Hodges punts 49 yards to end zone Center-C.Yount Touchback.,3,3,2012 -20120909_PHI@CLE,2,32,37,PHI,CLE,1,10,80,(2:37) L.McCoy right guard to PHI 30 for 10 yards (K.Maiava). PENALTY on PHI-J.Maclin Offensive Holding 10 yards enforced at PHI 30.,3,3,2012 -20120909_PHI@CLE,2,32,29,PHI,CLE,1,10,80,(2:29) (Shotgun) M.Vick pass short left to J.Maclin to PHI 24 for 4 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,31,59,PHI,CLE,2,6,76,(1:59) L.McCoy left tackle pushed ob at PHI 46 for 22 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,31,53,PHI,CLE,1,10,54,(1:53) (Shotgun) M.Vick pass incomplete deep right to D.Jackson.,3,3,2012 -20120909_PHI@CLE,2,31,47,PHI,CLE,2,10,54,(1:47) (Shotgun) M.Vick pass incomplete short left to J.Maclin.,3,3,2012 -20120909_PHI@CLE,2,31,42,PHI,CLE,3,10,54,(1:42) (Shotgun) M.Vick pass incomplete short right to D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,31,35,PHI,CLE,4,10,54,(1:35) C.Henry punts 41 yards to CLV 13 Center-J.Dorenbos. J.Cribbs to CLV 18 for 5 yards (A.Jordan).,3,3,2012 -20120909_PHI@CLE,2,31,26,CLE,PHI,1,10,82,(1:26) T.Richardson left guard to CLV 21 for 3 yards (F.Cox).,3,3,2012 -20120909_PHI@CLE,2,31,6,CLE,PHI,2,7,79,(1:06) T.Richardson left guard to CLV 26 for 5 yards (J.Babin).,3,3,2012 -20120909_PHI@CLE,2,31,0,CLE,PHI,3,2,74,(1:00) B.Weeden pass incomplete short right to O.Marecic [J.Babin].,3,3,2012 -20120909_PHI@CLE,2,30,56,CLE,PHI,4,2,74,(:56) R.Hodges punts 49 yards to PHI 25 Center-C.Yount fair catch by D.Johnson.,3,3,2012 -20120909_PHI@CLE,2,30,49,PHI,CLE,1,10,74,(:49) (Shotgun) M.Vick pass incomplete short left to L.McCoy (C.Robertson) [E.Hagg].,3,3,2012 -20120909_PHI@CLE,2,30,43,PHI,CLE,2,10,74,(:43) (Shotgun) M.Vick pass short left to L.McCoy ran ob at PHI 36 for 10 yards (J.Haden).,3,3,2012 -20120909_PHI@CLE,2,30,35,PHI,CLE,1,10,64,(:35) (Shotgun) M.Vick pass incomplete short right to L.McCoy.,3,3,2012 -20120909_PHI@CLE,2,30,30,PHI,CLE,2,10,64,(:30) (Shotgun) M.Vick pass deep left to J.Maclin to CLV 18 for 46 yards (B.Skrine).,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,1,10,18,(:23) (Shotgun) M.Vick pass deep middle to J.Maclin for 18 yards TOUCHDOWN.,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,3,3,2012 -20120909_PHI@CLE,2,30,23,PHI,CLE,,,18,A.Henery kicks 40 yards from PHI 35 to CLV 25. E.Stephens to CLV 32 for 7 yards (C.Marsh).,10,3,2012 -20120909_PHI@CLE,2,30,14,CLE,PHI,1,10,68,(:14) (Shotgun) B.Weeden pass incomplete deep left to T.Benjamin.,3,10,2012 -20120909_PHI@CLE,2,30,9,CLE,PHI,2,10,68,(:09) (Shotgun) B.Weeden pass short right to J.Gordon ran ob at PHI 48 for 20 yards (D.Ryans).,3,10,2012 -20120909_PHI@CLE,2,30,1,CLE,PHI,1,10,48,(:01) (Shotgun) B.Weeden scrambles left end to PHI 23 for 25 yards (D.Ryans).,3,10,2012 -20120909_PHI@CLE,3,30,0,PHI,CLE,,,48,A.Henery kicks 71 yards from PHI 35 to CLV -6. J.Cribbs to CLV 13 for 19 yards (B.Rolle).,10,3,2012 -20120909_PHI@CLE,3,29,56,CLE,PHI,1,10,87,(14:56) T.Richardson right guard to CLV 14 for 1 yard (J.Babin).,3,10,2012 -20120909_PHI@CLE,3,29,16,CLE,PHI,2,9,86,(14:16) (Shotgun) B.Weeden pass short middle to J.Gordon to CLV 26 for 12 yards (K.Coleman).,3,10,2012 -20120909_PHI@CLE,3,28,42,CLE,PHI,1,10,74,(13:42) B.Weeden sacked at CLV 19 for -7 yards (J.Babin). FUMBLES (J.Babin) recovered by CLV-J.Thomas at CLV 19. J.Thomas to CLV 26 for 7 yards.,3,10,2012 -20120909_PHI@CLE,3,27,57,CLE,PHI,2,10,74,(12:57) T.Richardson left guard to CLV 31 for 5 yards (C.Jenkins).,3,10,2012 -20120909_PHI@CLE,3,27,16,CLE,PHI,3,5,69,(12:16) B.Weeden pass incomplete short right to M.Massaquoi (B.Boykin).,3,10,2012 -20120909_PHI@CLE,3,27,9,CLE,PHI,4,5,69,(12:09) R.Hodges punts 54 yards to PHI 15 Center-C.Yount. D.Johnson to PHI 21 for 6 yards (J.Bademosi). PENALTY on PHI-B.Rolle Illegal Block Above the Waist 10 yards enforced at PHI 21.,3,10,2012 -20120909_PHI@CLE,3,26,59,PHI,CLE,1,10,89,(11:59) (Shotgun) M.Vick pass incomplete short right to C.Harbor (K.Maiava).,10,3,2012 -20120909_PHI@CLE,3,26,54,PHI,CLE,2,10,89,(11:54) (Shotgun) L.McCoy left guard to PHI 6 for -5 yards (B.Skrine).,10,3,2012 -20120909_PHI@CLE,3,26,11,PHI,CLE,3,15,94,(11:11) (Shotgun) M.Vick pass incomplete deep right to J.Maclin (A.Rubin). Penalty on PHI-D.Watkins Offensive Holding declined.,10,3,2012 -20120909_PHI@CLE,3,26,5,PHI,CLE,4,15,94,(11:05) C.Henry punts 61 yards to CLV 33 Center-J.Dorenbos. J.Cribbs to CLV 39 for 6 yards (A.Jordan).,10,3,2012 -20120909_PHI@CLE,3,25,52,CLE,PHI,1,10,61,(10:52) B.Weeden pass deep right intended for T.Benjamin INTERCEPTED by D.Rodgers-Cromartie at PHI 34. D.Rodgers-Cromartie to PHI 34 for no gain (G.Little). PENALTY on PHI-P.Hunt Unnecessary Roughness 15 yards enforced at PHI 34.,3,10,2012 -20120909_PHI@CLE,3,25,46,PHI,CLE,1,10,81,(10:46) L.McCoy right tackle to PHI 19 for no gain (F.Rucker).,10,3,2012 -20120909_PHI@CLE,3,25,10,PHI,CLE,2,10,81,(10:10) M.Vick pass incomplete short left to C.Harbor (D.Jackson).,10,3,2012 -20120909_PHI@CLE,3,25,6,PHI,CLE,3,10,81,(10:06) M.Vick pass short left to D.Johnson to PHI 29 for 10 yards (B.Skrine).,10,3,2012 -20120909_PHI@CLE,3,24,37,PHI,CLE,1,10,71,(9:37) L.McCoy right tackle to PHI 35 for 6 yards (A.Rubin; K.Maiava). Deflected off 52 Jackson,10,3,2012 -20120909_PHI@CLE,3,24,2,PHI,CLE,2,4,65,(9:02) (Shotgun) L.McCoy left tackle to PHI 38 for 3 yards (J.Haden).,10,3,2012 -20120909_PHI@CLE,3,23,17,PHI,CLE,3,1,62,(8:17) L.McCoy left tackle to PHI 39 for 1 yard (L.Fort).,10,3,2012 -20120909_PHI@CLE,3,22,30,PHI,CLE,1,10,61,(7:30) M.Vick pass short middle intended for C.Harbor INTERCEPTED by L.Fort at CLV 47. L.Fort to PHI 43 for 10 yards (C.Harbor).,10,3,2012 -20120909_PHI@CLE,3,22,19,CLE,PHI,1,10,46,(7:19) B.Weeden FUMBLES (Aborted) at PHI 43 recovered by CLV-T.Richardson at PHI 46.,3,10,2012 -20120909_PHI@CLE,3,21,40,CLE,PHI,2,13,46,(6:40) (Shotgun) B.Weeden pass short left to M.Massaquoi to PHI 33 for 13 yards (N.Allen; B.Boykin).,3,10,2012 -20120909_PHI@CLE,3,21,7,CLE,PHI,1,10,33,(6:07) B.Weeden sacked at PHI 40 for -7 yards (F.Cox). PENALTY on PHI Roughing the Passer 15 yards enforced at PHI 40.,3,10,2012 -20120909_PHI@CLE,3,20,48,CLE,PHI,1,10,25,(5:48) B.Weeden pass incomplete short left to J.Gordon (N.Asomugha).,3,10,2012 -20120909_PHI@CLE,3,20,42,CLE,PHI,2,10,25,(5:42) T.Richardson left tackle to PHI 24 for 1 yard (D.Ryans).,3,10,2012 -20120909_PHI@CLE,3,20,5,CLE,PHI,3,9,24,(5:05) (Shotgun) B.Weeden pass incomplete short middle to M.Massaquoi.,3,10,2012 -20120909_PHI@CLE,3,20,1,CLE,PHI,4,9,24,(5:01) (Field Goal formation) P.Dawson 42 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,3,10,2012 -20120909_PHI@CLE,3,20,1,CLE,PHI,,,24,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,6,10,2012 -20120909_PHI@CLE,3,19,57,PHI,CLE,1,10,80,(4:57) M.Vick pass incomplete short left to B.Celek [T.Ward].,10,6,2012 -20120909_PHI@CLE,3,19,54,PHI,CLE,2,10,80,(4:54) M.Vick pass short middle to C.Harbor to PHI 22 for 2 yards (K.Maiava).,10,6,2012 -20120909_PHI@CLE,3,19,8,PHI,CLE,3,8,78,(4:08) M.Vick pass short middle to L.McCoy to PHI 28 for 6 yards (C.Robertson).,10,6,2012 -20120909_PHI@CLE,3,18,33,PHI,CLE,4,2,72,(3:33) C.Henry punts 62 yards to CLV 10 Center-J.Dorenbos. J.Cribbs to CLV 31 for 21 yards (B.Rolle).,10,6,2012 -20120909_PHI@CLE,3,18,20,CLE,PHI,1,10,69,(3:20) B.Weeden pass incomplete short right to G.Little.,6,10,2012 -20120909_PHI@CLE,3,18,15,CLE,PHI,2,10,69,(3:15) (Shotgun) B.Weeden pass incomplete short right to T.Benjamin (D.Rodgers-Cromartie).,6,10,2012 -20120909_PHI@CLE,3,18,13,CLE,PHI,3,10,69,(3:13) (Shotgun) B.Weeden pass incomplete short right to B.Jackson [J.Babin].,6,10,2012 -20120909_PHI@CLE,3,18,8,CLE,PHI,4,10,69,(3:08) R.Hodges punts 33 yards to PHI 36 Center-C.Yount downed by CLV-A.Smith.,6,10,2012 -20120909_PHI@CLE,3,17,57,PHI,CLE,1,10,64,(2:57) (Shotgun) M.Vick pass deep middle to B.Celek to CLV 36 for 28 yards (C.Robertson; E.Hagg).,10,6,2012 -20120909_PHI@CLE,3,17,15,PHI,CLE,1,10,36,(2:15) M.Vick pass incomplete short left to D.Jackson.,10,6,2012 -20120909_PHI@CLE,3,17,9,PHI,CLE,2,10,36,(2:09) (Shotgun) M.Vick pass incomplete short middle to D.Jackson (J.Sheard).,10,6,2012 -20120909_PHI@CLE,3,17,4,PHI,CLE,3,10,36,(2:04) (Shotgun) M.Vick pass short left intended for J.Maclin INTERCEPTED by J.Haden at CLV 28. J.Haden to PHI 22 for 50 yards (M.Vick). Penalty on PHI Offensive Holding declined.,10,6,2012 -20120909_PHI@CLE,3,16,53,CLE,PHI,1,10,22,(1:53) B.Weeden pass short right to T.Richardson to PHI 17 for 5 yards (M.Kendricks).,6,10,2012 -20120909_PHI@CLE,3,16,6,CLE,PHI,2,5,17,(1:06) T.Richardson right guard to PHI 12 for 5 yards (N.Allen).,6,10,2012 -20120909_PHI@CLE,3,15,21,CLE,PHI,1,10,12,(:21) (Shotgun) B.Weeden pass incomplete short right to A.Smith. PENALTY on PHI Defensive Holding 5 yards enforced at PHI 12 - No Play.,6,10,2012 -20120909_PHI@CLE,3,15,16,CLE,PHI,1,7,7,(:16) T.Richardson left guard to PHI 10 for -3 yards (C.Jenkins).,6,10,2012 -20120909_PHI@CLE,4,15,0,CLE,PHI,2,10,10,(15:00) (Shotgun) B.Weeden pass short right to B.Watson to PHI 4 for 6 yards (B.Boykin).,6,10,2012 -20120909_PHI@CLE,4,14,22,CLE,PHI,3,4,4,(14:22) B.Weeden pass incomplete short right to J.Cameron.,6,10,2012 -20120909_PHI@CLE,4,14,17,CLE,PHI,4,4,4,(14:17) P.Dawson 22 yard field goal is GOOD Center-C.Yount Holder-R.Hodges.,6,10,2012 -20120909_PHI@CLE,4,14,17,CLE,PHI,,,4,P.Dawson kicks 64 yards from CLV 35 to PHI 1. B.Boykin to PHI 18 for 17 yards (B.Skrine; C.Robertson).,9,10,2012 -20120909_PHI@CLE,4,14,15,PHI,CLE,1,10,82,(14:15) PENALTY on PHI-E.Mathis False Start 5 yards enforced at PHI 18 - No Play.,10,9,2012 -20120909_PHI@CLE,4,14,10,PHI,CLE,1,15,87,(14:10) M.Vick pass short left intended for J.Maclin INTERCEPTED by D.Jackson at PHI 27. D.Jackson for 27 yards TOUCHDOWN.,10,9,2012 -20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson extra point is GOOD Center-C.Yount Holder-R.Hodges.,9,10,2012 -20120909_PHI@CLE,4,14,10,CLE,PHI,,,87,P.Dawson kicks 65 yards from CLV 35 to end zone Touchback.,16,10,2012 -20120909_PHI@CLE,4,13,59,PHI,CLE,1,10,80,(13:59) L.McCoy right tackle to PHI 35 for 15 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,13,24,PHI,CLE,1,10,65,(13:24) L.McCoy right tackle ran ob at PHI 40 for 5 yards (K.Maiava).,10,16,2012 -20120909_PHI@CLE,4,13,3,PHI,CLE,2,5,60,(13:03) L.McCoy left tackle to PHI 47 for 7 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,12,25,PHI,CLE,1,10,53,(12:25) B.Brown right guard to CLV 49 for 4 yards (F.Rucker; C.Robertson).,10,16,2012 -20120909_PHI@CLE,4,11,50,PHI,CLE,2,6,49,(11:50) M.Vick pass incomplete short right to J.Maclin (B.Skrine).,10,16,2012 -20120909_PHI@CLE,4,11,46,PHI,CLE,3,6,49,(11:46) (Shotgun) M.Vick pass short left to J.Avant to CLV 41 for 8 yards (J.Haden).,10,16,2012 -20120909_PHI@CLE,4,11,9,PHI,CLE,1,10,41,(11:09) L.McCoy right tackle to CLV 28 for 13 yards (E.Stephens).,10,16,2012 -20120909_PHI@CLE,4,10,27,PHI,CLE,1,10,28,(10:27) (Shotgun) M.Vick pass short left to L.McCoy to CLV 29 for -1 yards (I.Kitchen).,10,16,2012 -20120909_PHI@CLE,4,9,51,PHI,CLE,2,11,29,(9:51) L.McCoy right tackle to CLV 27 for 2 yards (E.Stephens).,10,16,2012 -20120909_PHI@CLE,4,9,13,PHI,CLE,3,9,27,(9:13) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 -20120909_PHI@CLE,4,9,4,PHI,CLE,4,9,27,(9:04) A.Henery 45 yard field goal is No Good Wide Left Center-J.Dorenbos Holder-C.Henry.,10,16,2012 -20120909_PHI@CLE,4,9,1,CLE,PHI,1,10,65,(9:01) T.Richardson left guard to CLV 39 for 4 yards (K.Coleman).,16,10,2012 -20120909_PHI@CLE,4,8,24,CLE,PHI,2,6,61,(8:24) T.Richardson right guard to CLV 41 for 2 yards (D.Tapp).,16,10,2012 -20120909_PHI@CLE,4,7,49,CLE,PHI,3,4,59,(7:49) B.Weeden pass short right to B.Jackson pushed ob at PHI 45 for 14 yards (N.Allen).,16,10,2012 -20120909_PHI@CLE,4,7,24,CLE,PHI,1,10,45,(7:24) T.Richardson right guard to PHI 46 for -1 yards (T.Cole).,16,10,2012 -20120909_PHI@CLE,4,6,41,CLE,PHI,2,11,46,(6:41) B.Weeden pass incomplete short left to G.Little.,16,10,2012 -20120909_PHI@CLE,4,6,37,CLE,PHI,3,11,46,(6:37) (Shotgun) B.Weeden pass incomplete short left to B.Jackson (N.Asomugha).,16,10,2012 -20120909_PHI@CLE,4,6,33,CLE,PHI,4,11,46,(6:33) R.Hodges punts 37 yards to PHI 9 Center-C.Yount fair catch by D.Johnson.,16,10,2012 -20120909_PHI@CLE,4,6,25,PHI,CLE,1,10,91,(6:25) (Shotgun) M.Vick pass incomplete deep left to B.Celek.,10,16,2012 -20120909_PHI@CLE,4,6,20,PHI,CLE,2,10,91,(6:20) (Shotgun) M.Vick pass short middle to J.Avant to PHI 17 for 8 yards (D.Patterson).,10,16,2012 -20120909_PHI@CLE,4,5,56,PHI,CLE,3,2,83,(5:56) (No Huddle) M.Vick pass short left to J.Avant to PHI 23 for 6 yards (C.Robertson).,10,16,2012 -20120909_PHI@CLE,4,5,27,PHI,CLE,1,10,77,(5:27) (No Huddle) L.McCoy right guard to PHI 26 for 3 yards (J.Sheard).,10,16,2012 -20120909_PHI@CLE,4,4,58,PHI,CLE,2,7,74,(4:58) (No Huddle Shotgun) M.Vick pass incomplete deep left to J.Maclin. PENALTY on CLV-A.Rubin Roughing the Passer 15 yards enforced at PHI 26 - No Play. Penalty on CLV-B.Skrine Defensive Holding declined.,10,16,2012 -20120909_PHI@CLE,4,4,50,PHI,CLE,1,10,59,(4:50) (Shotgun) M.Vick pass short left to D.Jackson to 50 for 9 yards.,10,16,2012 -20120909_PHI@CLE,4,4,23,PHI,CLE,2,1,50,(4:23) (No Huddle) L.McCoy left tackle to CLV 43 for 7 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,3,56,PHI,CLE,1,10,43,(3:56) (No Huddle Shotgun) M.Vick pass short left to J.Maclin to CLV 32 for 11 yards (B.Skrine).,10,16,2012 -20120909_PHI@CLE,4,3,24,PHI,CLE,1,10,32,(3:24) (No Huddle Shotgun) M.Vick pass incomplete deep right to D.Jackson.,10,16,2012 -20120909_PHI@CLE,4,3,18,PHI,CLE,2,10,32,(3:18) (Shotgun) M.Vick pass incomplete short middle to J.Avant (E.Hagg).,10,16,2012 -20120909_PHI@CLE,4,3,14,PHI,CLE,3,10,32,(3:14) (Shotgun) M.Vick scrambles left end to CLV 23 for 9 yards (A.Rubin). FUMBLES (A.Rubin) and recovers at CLV 23. M.Vick to CLV 23 for no gain (A.Rubin).,10,16,2012 -20120909_PHI@CLE,4,2,50,PHI,CLE,4,1,23,(2:50) L.McCoy right tackle to CLV 20 for 3 yards (K.Maiava).,10,16,2012 -20120909_PHI@CLE,4,2,17,PHI,CLE,1,10,20,(2:17) M.Vick pass incomplete deep middle to J.Maclin [A.Rubin].,10,16,2012 -20120909_PHI@CLE,4,2,12,PHI,CLE,2,10,20,(2:12) M.Vick pass short right to B.Celek to CLV 3 for 17 yards (T.Ward).,10,16,2012 -20120909_PHI@CLE,4,2,0,PHI,CLE,1,3,3,(2:00) B.Brown right guard to CLV 4 for -1 yards (D.Jackson).,10,16,2012 -20120909_PHI@CLE,4,1,29,PHI,CLE,2,4,4,(1:29) M.Vick pass incomplete short right to J.Maclin (L.Fort).,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,3,4,4,(1:23) (Shotgun) M.Vick pass short right to C.Harbor for 4 yards TOUCHDOWN.,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery extra point is GOOD Center-J.Dorenbos Holder-C.Henry.,10,16,2012 -20120909_PHI@CLE,4,1,23,PHI,CLE,,,4,A.Henery kicks 68 yards from PHI 35 to CLV -3. J.Cribbs to CLV 30 for 33 yards (J.Avant). PHI-B.Boykin was injured during the play. His return is Questionable.,17,16,2012 -20120909_PHI@CLE,4,1,12,CLE,PHI,1,10,70,(1:12) (Shotgun) B.Weeden pass deep right intended for M.Massaquoi INTERCEPTED by K.Coleman at CLV 47. K.Coleman to CLV 40 for 7 yards.,16,17,2012 -20120909_PHI@CLE,4,1,5,PHI,CLE,1,10,40,(1:05) M.Vick kneels to CLV 41 for -1 yards.,17,16,2012 -20120909_PHI@CLE,4,1,2,PHI,CLE,2,11,41,(1:02) M.Vick kneels to CLV 43 for -2 yards.,17,16,2012 -20120909_PHI@CLE,4,0,29,PHI,CLE,3,13,43,(:29) M.Vick kneels to CLV 44 for -1 yards.,17,16,2012 -20120909_PHI@CLE,4,0,29,PHI,CLE,,,43,                      ,17,16,2012 -20120909_STL@DET,1,0,0,STL,DET,,,43,G.Zuerlein kicks 73 yards from SL 35 to DET -8. S.Logan Touchback.,0,0,2012 -20120909_STL@DET,1,60,0,DET,STL,1,10,80,(15:00) N.Burleson right end to DET 26 for 6 yards (J.Jenkins; Q.Mikell).,0,0,2012 -20120909_STL@DET,1,59,24,DET,STL,2,4,74,(14:24) (Shotgun) M.Stafford pass short right to C.Johnson to DET 30 for 4 yards (B.Fletcher).,0,0,2012 -20120909_STL@DET,1,58,45,DET,STL,1,10,70,(13:45) (Shotgun) K.Smith right tackle to DET 36 for 6 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,58,5,DET,STL,2,4,64,(13:05) (Shotgun) M.Stafford pass short right to W.Heller to DET 41 for 5 yards (J.Jenkins).,0,0,2012 -20120909_STL@DET,1,57,28,DET,STL,1,10,59,(12:28) M.Stafford pass short left to N.Burleson to DET 46 for 5 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,56,47,DET,STL,2,5,54,(11:47) (Shotgun) S.Logan right end to DET 47 for 1 yard (C.Finnegan; J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,56,9,DET,STL,3,4,53,(11:09) (Shotgun) M.Stafford pass short left to T.Scheffler to SL 43 for 10 yards (J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,55,40,DET,STL,1,10,43,(10:40) (No Huddle) PENALTY on SL-K.Langford Neutral Zone Infraction 5 yards enforced at SL 43 - No Play.,0,0,2012 -20120909_STL@DET,1,55,18,DET,STL,1,5,38,(10:18) (Shotgun) M.Stafford pass short left to B.Pettigrew to SL 32 for 6 yards (J.Dunbar).,0,0,2012 -20120909_STL@DET,1,54,47,DET,STL,1,10,32,(9:47) K.Smith left end to SL 26 for 6 yards (J.Laurinaitis).,0,0,2012 -20120909_STL@DET,1,54,9,DET,STL,2,4,26,(9:09) M.Stafford pass short right to K.Smith pushed ob at SL 17 for 9 yards (C.Finnegan).,0,0,2012 -20120909_STL@DET,1,53,38,DET,STL,1,10,17,(8:38) (Shotgun) M.Stafford pass incomplete deep middle to B.Pettigrew.,0,0,2012 -20120909_STL@DET,1,53,33,DET,STL,2,10,17,(8:33) (Shotgun) M.Stafford pass short middle to W.Heller to SL 3 for 14 yards (Q.Mikell).,0,0,2012 -20120909_STL@DET,1,52,54,DET,STL,1,3,3,(7:54) M.Stafford pass short right intended for T.Scheffler INTERCEPTED by J.Jenkins at SL 0. J.Jenkins to SL 34 for 34 yards (K.Smith).,0,0,2012 -20120909_STL@DET,1,52,46,STL,DET,1,10,66,(7:46) S.Jackson right tackle to SL 34 for no gain (J.Durant; D.Levy).,0,0,2012 -20120909_STL@DET,1,52,8,STL,DET,2,10,66,(7:08) S.Jackson left tackle to SL 36 for 2 yards (J.Durant). PENALTY on SL-R.Turner Offensive Holding 10 yards enforced at SL 34 - No Play.,0,0,2012 -20120909_STL@DET,1,51,46,STL,DET,2,20,76,(6:46) S.Bradford pass short right to S.Jackson to SL 36 for 12 yards (E.Coleman; S.Tulloch).,0,0,2012 -20120909_STL@DET,1,51,2,STL,DET,3,8,64,(6:02) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 49 for 15 yards (D.Levy).,0,0,2012 -20120909_STL@DET,1,50,23,STL,DET,1,10,49,(5:23) S.Bradford pass short right to L.Kendricks to DET 41 for 8 yards (J.Lacey).,0,0,2012 -20120909_STL@DET,1,49,48,STL,DET,2,2,41,(4:48) S.Jackson left tackle to DET 40 for 1 yard (SamL.Hill).,0,0,2012 -20120909_STL@DET,1,49,13,STL,DET,3,1,40,(4:13) S.Jackson left tackle to DET 33 for 7 yards (J.Durant).,0,0,2012 -20120909_STL@DET,1,48,34,STL,DET,1,10,33,(3:34) S.Jackson right tackle to DET 32 for 1 yard (SamL.Hill).,0,0,2012 -20120909_STL@DET,1,47,51,STL,DET,2,9,32,(2:51) (Shotgun) S.Bradford pass incomplete deep right to S.Smith. PENALTY on SL-B.Gibson Unnecessary Roughness 15 yards enforced at DET 32.,0,0,2012 -20120909_STL@DET,1,47,45,STL,DET,3,24,47,(2:45) (Shotgun) S.Bradford pass short left to D.Amendola to DET 30 for 17 yards (J.Lacey J.Wendling) [C.Avril].,0,0,2012 -20120909_STL@DET,1,47,2,STL,DET,4,7,30,(2:02) G.Zuerlein 48 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,0,0,2012 -20120909_STL@DET,1,47,2,STL,DET,,,30,G.Zuerlein kicks 74 yards from SL 35 to DET -9. S.Logan Touchback.,3,0,2012 -20120909_STL@DET,1,46,57,DET,STL,1,10,80,(1:57) (Shotgun) M.Stafford pass incomplete short left to N.Burleson [C.Long].,0,3,2012 -20120909_STL@DET,1,46,53,DET,STL,2,10,80,(1:53) (Shotgun) K.Smith left tackle to DET 25 for 5 yards (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,1,46,15,DET,STL,3,5,75,(1:15) (Shotgun) M.Stafford pass short right to N.Burleson to DET 30 for 5 yards (C.Dahl).,0,3,2012 -20120909_STL@DET,1,45,31,DET,STL,1,10,70,(:31) T.Young left end pushed ob at DET 41 for 11 yards (Q.Mikell).,0,3,2012 -20120909_STL@DET,2,45,0,DET,STL,1,10,59,(15:00) (Shotgun) M.Stafford pass short right to T.Scheffler to DET 49 for 8 yards (J.Jenkins; J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,44,17,DET,STL,2,2,51,(14:17) K.Smith left tackle to DET 47 for -2 yards (J.Dunbar).,0,3,2012 -20120909_STL@DET,2,43,36,DET,STL,3,4,53,(13:36) (Shotgun) M.Stafford pass short left to C.Johnson to SL 45 for 8 yards (B.Fletcher).,0,3,2012 -20120909_STL@DET,2,43,0,DET,STL,1,10,45,(13:00) K.Smith left tackle pushed ob at SL 26 for 19 yards (R.Quinn).,0,3,2012 -20120909_STL@DET,2,42,38,DET,STL,1,10,26,(12:38) (No Huddle Shotgun) M.Stafford pass short right to B.Pettigrew to SL 17 for 9 yards (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,42,8,DET,STL,2,1,17,(12:08) (No Huddle Shotgun) M.Stafford pass short left to T.Scheffler to SL 13 for 4 yards (C.Finnegan).,0,3,2012 -20120909_STL@DET,2,41,36,DET,STL,1,10,13,(11:36) (No Huddle) K.Williams left tackle to SL 11 for 2 yards (Q.Mikell J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,40,56,DET,STL,2,8,11,(10:56) (Shotgun) M.Stafford pass short middle to C.Johnson to SL 1 for 10 yards (C.Dahl).,0,3,2012 -20120909_STL@DET,2,40,24,DET,STL,1,1,1,(10:24) (No Huddle) K.Smith left tackle to SL 1 for no gain (J.Laurinaitis).,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,2,1,1,(9:46) J.Bell up the middle for 1 yard TOUCHDOWN.,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,0,3,2012 -20120909_STL@DET,2,39,46,DET,STL,,,1,J.Hanson kicks 73 yards from DET 35 to SL -8. I.Pead Touchback.,7,3,2012 -20120909_STL@DET,2,39,26,STL,DET,1,10,80,(9:26) S.Bradford pass incomplete short right to D.Amendola.,3,7,2012 -20120909_STL@DET,2,39,22,STL,DET,2,10,80,(9:22) S.Jackson up the middle to SL 18 for -2 yards (N.Suh).,3,7,2012 -20120909_STL@DET,2,38,42,STL,DET,3,12,82,(8:42) (Shotgun) S.Bradford pass incomplete deep right to C.Givens (D.Florence).,3,7,2012 -20120909_STL@DET,2,38,32,STL,DET,4,12,82,(8:32) J.Hekker to SL 6 for -12 yards. FUMBLES and recovers at SL 7. J.Hekker punts 50 yards to DET 32. S.Logan to SL 47 for 21 yards (C.Dahl). PENALTY on SL-C.Dahl Horse Collar Tackle 15 yards enforced at SL 47.,3,7,2012 -20120909_STL@DET,2,38,19,DET,STL,1,10,32,(8:19) (Shotgun) K.Smith up the middle to SL 30 for 2 yards (R.Quinn).,7,3,2012 -20120909_STL@DET,2,37,54,DET,STL,2,8,30,(7:54) (No Huddle Shotgun) M.Stafford pass short middle to T.Young to SL 16 for 14 yards (J.Jenkins).,7,3,2012 -20120909_STL@DET,2,37,17,DET,STL,1,10,16,(7:17) (Shotgun) M.Stafford pass short left intended for B.Pettigrew INTERCEPTED by J.Dunbar at SL 14. J.Dunbar to DET 44 for 42 yards (K.Smith).,7,3,2012 -20120909_STL@DET,2,37,5,STL,DET,1,10,44,(7:05) S.Jackson up the middle to DET 35 for 9 yards (E.Coleman J.Wendling).,3,7,2012 -20120909_STL@DET,2,36,33,STL,DET,2,1,35,(6:33) S.Jackson left tackle to DET 32 for 3 yards (E.Coleman).,3,7,2012 -20120909_STL@DET,2,35,54,STL,DET,1,10,32,(5:54) S.Bradford pass short right to S.Jackson to DET 22 for 10 yards (S.Tulloch) [C.Avril].,3,7,2012 -20120909_STL@DET,2,35,14,STL,DET,1,10,22,(5:14) D.Richardson left end to DET 11 for 11 yards (K.Vanden Bosch).,3,7,2012 -20120909_STL@DET,2,34,35,STL,DET,1,10,11,(4:35) S.Jackson left tackle to DET 10 for 1 yard (N.Fairley; S.Tulloch).,3,7,2012 -20120909_STL@DET,2,33,56,STL,DET,2,9,10,(3:56) (Shotgun) S.Bradford pass short left to S.Jackson to DET 6 for 4 yards (E.Coleman).,3,7,2012 -20120909_STL@DET,2,33,17,STL,DET,3,5,6,(3:17) (Shotgun) S.Bradford sacked at DET 11 for -5 yards (N.Fairley).,3,7,2012 -20120909_STL@DET,2,32,39,STL,DET,4,10,11,(2:39) G.Zuerlein 29 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,3,7,2012 -20120909_STL@DET,2,32,39,STL,DET,,,11,G.Zuerlein kicks 70 yards from SL 35 to DET -5. S.Logan to DET 13 for 18 yards (R.McLeod).,6,7,2012 -20120909_STL@DET,2,32,30,DET,STL,1,10,87,(2:30) (Shotgun) M.Stafford pass short left to K.Williams to DET 17 for 4 yards (J.Dunbar).,7,6,2012 -20120909_STL@DET,2,32,0,DET,STL,2,6,83,(2:00) (Shotgun) M.Stafford pass short left to K.Smith to DET 23 for 6 yards (J.Jenkins).,7,6,2012 -20120909_STL@DET,2,31,36,DET,STL,1,10,77,(1:36) (No Huddle Shotgun) M.Stafford pass short right intended for C.Johnson INTERCEPTED by C.Finnegan at DET 31. C.Finnegan for 31 yards TOUCHDOWN. PENALTY on DET-T.Young Unnecessary Roughness 15 yards enforced between downs. The Replay Assistant challenged the runner was in bounds ruling and the play was Upheld.,7,6,2012 -20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,6,7,2012 -20120909_STL@DET,2,31,36,STL,DET,,,77,G.Zuerlein kicks 27 yards from 50 to DET 23. W.Heller to DET 24 for 1 yard (Q.Pointer; M.Daniels).,13,7,2012 -20120909_STL@DET,2,31,24,DET,STL,1,10,76,(1:24) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 25 for 51 yards (C.Dahl).,7,13,2012 -20120909_STL@DET,2,30,43,DET,STL,1,10,25,(:43) (No Huddle Shotgun) K.Smith right tackle to SL 23 for 2 yards (J.Dunbar).,7,13,2012 -20120909_STL@DET,2,30,39,DET,STL,2,8,23,(:39) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,7,13,2012 -20120909_STL@DET,2,30,33,DET,STL,3,8,23,(:33) (Shotgun) M.Stafford pass incomplete deep right to T.Scheffler (B.Fletcher).,7,13,2012 -20120909_STL@DET,2,30,25,DET,STL,4,8,23,(:25) J.Hanson 41 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,7,13,2012 -20120909_STL@DET,2,30,25,DET,STL,,,23,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,10,13,2012 -20120909_STL@DET,2,30,18,STL,DET,1,10,80,(:18) S.Bradford kneels to SL 19 for -1 yards.,13,10,2012 -20120909_STL@DET,3,30,0,DET,STL,,,80,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead to SL 20 for 25 yards (K.Williams).,10,13,2012 -20120909_STL@DET,3,29,55,STL,DET,1,10,80,(14:55) S.Jackson right tackle to SL 26 for 6 yards (C.Williams; K.Vanden Bosch).,13,10,2012 -20120909_STL@DET,3,29,11,STL,DET,2,4,74,(14:11) S.Jackson left tackle to SL 27 for 1 yard (S.Tulloch; C.Avril).,13,10,2012 -20120909_STL@DET,3,28,31,STL,DET,3,3,73,(13:31) (Shotgun) PENALTY on SL-R.Saffold False Start 5 yards enforced at SL 27 - No Play.,13,10,2012 -20120909_STL@DET,3,28,7,STL,DET,3,8,78,(13:07) (Shotgun) S.Bradford sacked at SL 10 for -12 yards (N.Suh).,13,10,2012 -20120909_STL@DET,3,27,36,STL,DET,4,20,90,(12:36) J.Hekker punts 46 yards to DET 44 Center-J.McQuaide. S.Logan to SL 41 for 15 yards (J.Hull).,13,10,2012 -20120909_STL@DET,3,27,23,DET,STL,1,10,41,(12:23) M.Stafford pass short left to N.Burleson pushed ob at SL 31 for 10 yards (J.Jenkins).,10,13,2012 -20120909_STL@DET,3,26,56,DET,STL,1,10,31,(11:56) K.Smith left tackle to SL 30 for 1 yard (Q.Mikell).,10,13,2012 -20120909_STL@DET,3,26,13,DET,STL,2,9,30,(11:13) (Shotgun) M.Stafford sacked at SL 39 for -9 yards (R.Quinn).,10,13,2012 -20120909_STL@DET,3,25,36,DET,STL,3,18,39,(10:36) (Shotgun) PENALTY on SL-C.Long Neutral Zone Infraction 5 yards enforced at SL 39 - No Play.,10,13,2012 -20120909_STL@DET,3,25,17,DET,STL,3,13,34,(10:17) (Shotgun) M.Stafford pass short middle to N.Burleson to SL 26 for 8 yards (C.Dahl).,10,13,2012 -20120909_STL@DET,3,24,34,DET,STL,4,5,26,(9:34) J.Hanson 45 yard field goal is GOOD Center-D.Muhlbach Holder-B.Graham.,10,13,2012 -20120909_STL@DET,3,24,34,DET,STL,,,26,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,13,13,2012 -20120909_STL@DET,3,24,29,STL,DET,1,10,80,(9:29) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 29 for 9 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,23,49,STL,DET,2,1,71,(8:49) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 6 yards (S.Tulloch). PENALTY on SL-R.Watkins Offensive Holding 10 yards enforced at SL 29 - No Play.,13,13,2012 -20120909_STL@DET,3,23,24,STL,DET,2,11,81,(8:24) S.Bradford pass incomplete deep right to D.Amendola [C.Williams]. Game delayed due to injury to game official. #16-Paul Caldera out. Replaced by alternate official #124-Curtis Adams.,13,13,2012 -20120909_STL@DET,3,23,18,STL,DET,3,11,81,(8:18) (Shotgun) S.Bradford pass short right to S.Jackson to SL 24 for 5 yards (S.Tulloch).,13,13,2012 -20120909_STL@DET,3,22,43,STL,DET,4,6,76,(7:43) J.Hekker punts 45 yards to DET 31 Center-J.McQuaide. S.Logan pushed ob at DET 45 for 14 yards (R.McLeod).,13,13,2012 -20120909_STL@DET,3,22,30,DET,STL,1,10,55,(7:30) (Shotgun) K.Smith right tackle to SL 47 for 8 yards (K.Langford).,13,13,2012 -20120909_STL@DET,3,21,48,DET,STL,2,2,47,(6:48) (Shotgun) M.Stafford pass short right to S.Logan to SL 48 for -1 yards (C.Finnegan R.McIntosh).,13,13,2012 -20120909_STL@DET,3,21,7,DET,STL,3,3,48,(6:07) (Shotgun) M.Stafford pass incomplete short right to N.Burleson.,13,13,2012 -20120909_STL@DET,3,21,3,DET,STL,4,3,48,(6:03) B.Graham punts 40 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola. PENALTY on DET-D.Hogue Illegal Formation 5 yards enforced at SL 8.,13,13,2012 -20120909_STL@DET,3,20,55,STL,DET,1,10,87,(5:55) S.Jackson left tackle to SL 16 for 3 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,20,16,STL,DET,2,7,84,(5:16) S.Bradford pass short right to L.Kendricks to SL 24 for 8 yards (J.Durant).,13,13,2012 -20120909_STL@DET,3,19,36,STL,DET,1,10,76,(4:36) S.Bradford pass incomplete deep left to S.Smith [L.Jackson].,13,13,2012 -20120909_STL@DET,3,19,30,STL,DET,2,10,76,(4:30) (Shotgun) S.Bradford pass short left to B.Gibson to SL 31 for 7 yards (D.Bentley).,13,13,2012 -20120909_STL@DET,3,18,47,STL,DET,3,3,69,(3:47) (Shotgun) S.Bradford pass incomplete short middle to D.Amendola.,13,13,2012 -20120909_STL@DET,3,18,43,STL,DET,4,3,69,(3:43) J.Hekker punts 43 yards to DET 26 Center-J.McQuaide. S.Logan to DET 35 for 9 yards (C.Givens).,13,13,2012 -20120909_STL@DET,3,18,30,DET,STL,1,10,65,(3:30) M.Stafford pass incomplete deep left to T.Scheffler (C.Finnegan).,13,13,2012 -20120909_STL@DET,3,18,24,DET,STL,2,10,65,(3:24) (Shotgun) M.Stafford pass incomplete deep right to T.Young.,13,13,2012 -20120909_STL@DET,3,18,19,DET,STL,3,10,65,(3:19) (Shotgun) M.Stafford pass deep middle to N.Burleson to SL 44 for 21 yards (C.Finnegan).,13,13,2012 -20120909_STL@DET,3,17,37,DET,STL,1,10,44,(2:37) K.Smith left tackle to SL 47 for -3 yards (J.Dunbar).,13,13,2012 -20120909_STL@DET,3,16,58,DET,STL,2,13,47,(1:58) (Shotgun) M.Stafford pass short middle to M.Stafford to SL 44 for 3 yards (C.Finnegan). Ball was deflected at the line by SL #92-E. Sims.,13,13,2012 -20120909_STL@DET,3,16,10,DET,STL,3,10,44,(1:10) (Shotgun) M.Stafford pass incomplete short left to K.Smith.,13,13,2012 -20120909_STL@DET,3,16,5,DET,STL,4,10,44,(1:05) B.Graham punts 36 yards to SL 8 Center-D.Muhlbach fair catch by D.Amendola.,13,13,2012 -20120909_STL@DET,3,15,57,STL,DET,1,10,92,(:57) S.Jackson left tackle to SL 14 for 6 yards (C.Williams; J.Durant).,13,13,2012 -20120909_STL@DET,3,15,14,STL,DET,2,4,86,(:14) S.Jackson left end to SL 20 for 6 yards (J.Durant; E.Coleman).,13,13,2012 -20120909_STL@DET,4,15,0,STL,DET,1,10,80,(15:00) S.Jackson up the middle to SL 21 for 1 yard (S.Tulloch; K.Vanden Bosch).,13,13,2012 -20120909_STL@DET,4,14,22,STL,DET,2,9,79,(14:22) S.Bradford sacked at SL 16 for -5 yards (C.Williams). FUMBLES (C.Williams) recovered by SL-H.Dahl at SL 13. H.Dahl to SL 13 for no gain (J.Durant).,13,13,2012 -20120909_STL@DET,4,13,44,STL,DET,3,17,87,(13:44) (Shotgun) D.Richardson right end to SL 22 for 9 yards (S.Tulloch).,13,13,2012 -20120909_STL@DET,4,13,5,STL,DET,4,8,78,(13:05) J.Hekker punts 57 yards to DET 21 Center-J.McQuaide. S.Logan to DET 15 for -6 yards (Q.Pointer). PENALTY on DET-J.Green Offensive Holding 7 yards enforced at DET 15.,13,13,2012 -20120909_STL@DET,4,12,54,DET,STL,1,10,92,(12:54) (Shotgun) M.Stafford pass incomplete short right to K.Smith.,13,13,2012 -20120909_STL@DET,4,12,50,DET,STL,2,10,92,(12:50) M.Stafford pass incomplete deep middle to T.Young.,13,13,2012 -20120909_STL@DET,4,12,45,DET,STL,3,10,92,(12:45) (Shotgun) M.Stafford pass incomplete deep right to B.Pettigrew.,13,13,2012 -20120909_STL@DET,4,12,39,DET,STL,4,10,92,(12:39) B.Graham punts 45 yards to SL 47 Center-D.Muhlbach. D.Amendola to DET 47 for 6 yards (W.Heller).,13,13,2012 -20120909_STL@DET,4,12,27,STL,DET,1,10,47,(12:27) D.Amendola left end to DET 45 for 2 yards (C.Williams).,13,13,2012 -20120909_STL@DET,4,11,49,STL,DET,2,8,45,(11:49) S.Jackson up the middle to DET 40 for 5 yards (A.Spievey).,13,13,2012 -20120909_STL@DET,4,11,8,STL,DET,3,3,40,(11:08) S.Bradford pass short middle to S.Smith to DET 24 for 16 yards (D.Florence).,13,13,2012 -20120909_STL@DET,4,10,33,STL,DET,1,10,24,(10:33) S.Jackson left end to DET 23 for 1 yard (S.Tulloch; J.Wendling).,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,2,9,23,(9:51) (Shotgun) S.Bradford pass deep left to B.Gibson for 23 yards TOUCHDOWN. SL-R.Saffold was injured during the play. He is Out.,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein extra point is GOOD Center-J.McQuaide Holder-J.Hekker.,13,13,2012 -20120909_STL@DET,4,9,51,STL,DET,,,23,G.Zuerlein kicks 65 yards from SL 35 to end zone Touchback.,20,13,2012 -20120909_STL@DET,4,9,45,DET,STL,1,10,80,(9:45) M.Stafford pass short right to B.Pettigrew to DET 40 for 20 yards (J.Laurinaitis; B.Fletcher).,13,20,2012 -20120909_STL@DET,4,9,5,DET,STL,1,10,60,(9:05) (Shotgun) M.Stafford pass short right to B.Pettigrew pushed ob at SL 42 for 18 yards (Q.Mikell; J.Dunbar).,13,20,2012 -20120909_STL@DET,4,8,34,DET,STL,1,10,42,(8:34) (Shotgun) K.Smith left tackle to SL 29 for 13 yards (C.Dahl).,13,20,2012 -20120909_STL@DET,4,7,57,DET,STL,1,10,29,(7:57) (Shotgun) M.Stafford pass deep middle to B.Pettigrew to SL 5 for 24 yards (Q.Mikell) [R.Quinn].,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,1,5,5,(7:24) (No Huddle) K.Smith left tackle for 5 yards TOUCHDOWN.,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,13,20,2012 -20120909_STL@DET,4,7,24,DET,STL,,,5,J.Hanson kicks 70 yards from DET 35 to SL -5. I.Pead Touchback.,20,20,2012 -20120909_STL@DET,4,7,19,STL,DET,1,10,80,(7:19) S.Bradford pass incomplete short right to B.Gibson.,20,20,2012 -20120909_STL@DET,4,7,13,STL,DET,2,10,80,(7:13) (Shotgun) S.Bradford pass short middle to M.McNeill to SL 30 for 10 yards (J.Durant; D.Levy).,20,20,2012 -20120909_STL@DET,4,6,43,STL,DET,1,10,70,(6:43) S.Jackson up the middle to SL 31 for 1 yard (C.Williams; S.Tulloch).,20,20,2012 -20120909_STL@DET,4,6,5,STL,DET,2,9,69,(6:05) S.Bradford pass short right to B.Gibson pushed ob at SL 41 for 10 yards (J.Wendling).,20,20,2012 -20120909_STL@DET,4,5,41,STL,DET,1,10,59,(5:41) S.Jackson left end to SL 45 for 4 yards (D.Levy).,20,20,2012 -20120909_STL@DET,4,5,0,STL,DET,2,6,55,(5:00) S.Jackson left tackle to SL 46 for 1 yard (K.Vanden Bosch).,20,20,2012 -20120909_STL@DET,4,4,18,STL,DET,3,5,54,(4:18) (Shotgun) S.Bradford pass short middle to D.Amendola to DET 40 for 14 yards (E.Coleman).,20,20,2012 -20120909_STL@DET,4,3,42,STL,DET,1,10,40,(3:42) S.Jackson right tackle to DET 40 for no gain (D.Levy).,20,20,2012 -20120909_STL@DET,4,2,59,STL,DET,2,10,40,(2:59) (Shotgun) S.Bradford pass short right to B.Gibson to DET 29 for 11 yards (D.Florence) [N.Fairley].,20,20,2012 -20120909_STL@DET,4,2,51,STL,DET,1,10,29,(2:51) S.Jackson right tackle to DET 31 for -2 yards (J.Durant).,20,20,2012 -20120909_STL@DET,4,2,45,STL,DET,2,12,31,(2:45) (Shotgun) S.Bradford scrambles right end to DET 28 for 3 yards (J.Durant).,20,20,2012 -20120909_STL@DET,4,2,3,STL,DET,3,9,28,(2:03) (Shotgun) S.Bradford pass incomplete short left to D.Amendola.,20,20,2012 -20120909_STL@DET,4,2,0,STL,DET,4,9,28,(2:00) G.Zuerlein 46 yard field goal is GOOD Center-J.McQuaide Holder-J.Hekker.,20,20,2012 -20120909_STL@DET,4,2,0,STL,DET,,,28,G.Zuerlein kicks 72 yards from SL 35 to DET -7. S.Logan Touchback.,23,20,2012 -20120909_STL@DET,4,1,55,DET,STL,1,10,80,(1:55) (Shotgun) M.Stafford pass deep middle to C.Johnson to DET 40 for 20 yards (C.Dahl).,20,23,2012 -20120909_STL@DET,4,1,30,DET,STL,1,10,60,(1:30) (No Huddle Shotgun) M.Stafford pass incomplete short right to B.Pettigrew (B.Fletcher).,20,23,2012 -20120909_STL@DET,4,1,25,DET,STL,2,10,60,(1:25) (Shotgun) M.Stafford pass short left to N.Burleson to SL 40 for 20 yards (C.Dahl).,20,23,2012 -20120909_STL@DET,4,1,0,DET,STL,1,10,40,(1:00) (No Huddle Shotgun) M.Stafford pass short middle to T.Scheffler to SL 35 for 5 yards (C.Finnegan).,20,23,2012 -20120909_STL@DET,4,0,40,DET,STL,2,5,35,(:40) (No Huddle Shotgun) M.Stafford pass short middle to K.Smith to SL 26 for 9 yards (R.McIntosh).,20,23,2012 -20120909_STL@DET,4,0,35,DET,STL,1,10,26,(:35) (Shotgun) M.Stafford pass short right to T.Scheffler pushed ob at SL 23 for 3 yards (C.Finnegan).,20,23,2012 -20120909_STL@DET,4,0,30,DET,STL,2,7,23,(:30) (Shotgun) M.Stafford pass deep middle to C.Johnson to SL 5 for 18 yards (Q.Mikell).,20,23,2012 -20120909_STL@DET,4,0,17,DET,STL,1,5,5,(:17) (No Huddle) M.Stafford spiked the ball to stop the clock.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,2,5,5,(:15) M.Stafford pass short right to K.Smith for 5 yards TOUCHDOWN.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson extra point is GOOD Center-D.Muhlbach Holder-B.Graham.,20,23,2012 -20120909_STL@DET,4,0,15,DET,STL,,,5,J.Hanson kicks 72 yards from DET 35 to SL -7. I.Pead Touchback.,27,23,2012 -20120909_STL@DET,4,0,10,STL,DET,1,10,80,(:10) (Shotgun) S.Bradford pass short middle to D.Amendola to SL 35 for 15 yards. Lateral to R.Turner to SL 39 for 4 yards (D.Levy; J.Durant).,23,27,2012 -20120909_STL@DET,4,0,2,STL,DET,1,10,61,(:02) (Shotgun) S.Bradford scrambles up the middle to SL 40 for 1 yard (C.Avril).,23,27,2012 -20120909_STL@DET,4,0,2,STL,DET,,,61,                      ,23,27,2012 -20120909_MIA@HOU,1,0,0,HOU,MIA,,,61,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 28 for 31 yards (M.Alexander). PENALTY on MIA-J.Freeny Offensive Holding 10 yards enforced at MIA 28.,0,0,2012 -20120909_MIA@HOU,1,59,55,MIA,HOU,1,10,82,(14:55) R.Bush right tackle to MIA 19 for 1 yard (S.Cody).,0,0,2012 -20120909_MIA@HOU,1,59,26,MIA,HOU,2,9,81,(14:26) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 29 for 10 yards (K.Jackson; D.Manning).,0,0,2012 -20120909_MIA@HOU,1,58,58,MIA,HOU,1,10,71,(13:58) R.Bush up the middle to MIA 36 for 7 yards (S.Cody B.James).,0,0,2012 -20120909_MIA@HOU,1,58,30,MIA,HOU,2,3,64,(13:30) R.Bush left tackle to MIA 45 for 9 yards (J.Joseph).,0,0,2012 -20120909_MIA@HOU,1,57,55,MIA,HOU,1,10,55,(12:55) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 49 for 4 yards (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,57,23,MIA,HOU,2,6,51,(12:23) (Shotgun) R.Tannehill pass incomplete short right to D.Thomas.,0,0,2012 -20120909_MIA@HOU,1,57,19,MIA,HOU,3,6,49,(12:19) (Shotgun) R.Tannehill FUMBLES (Aborted) at MIA 49 recovered by MIA-D.Thomas at HST 49. D.Thomas to HST 49 for no gain (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,56,40,MIA,HOU,4,4,49,(11:40) B.Fields punts 39 yards to HST 10 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),0,0,2012 -20120909_MIA@HOU,1,56,32,HOU,MIA,1,10,90,(11:32) M.Schaub pass incomplete short middle to A.Foster.,0,0,2012 -20120909_MIA@HOU,1,56,27,HOU,MIA,2,10,90,(11:27) M.Schaub pass short right to A.Johnson pushed ob at HST 21 for 11 yards (C.Clemons).,0,0,2012 -20120909_MIA@HOU,1,55,59,HOU,MIA,1,10,79,(10:59) M.Schaub pass short middle to O.Daniels to HST 44 for 23 yards (C.Clemons).,0,0,2012 -20120909_MIA@HOU,1,55,15,HOU,MIA,1,10,56,(10:15) A.Foster left end pushed ob at 50 for 6 yards (K.Burnett).,0,0,2012 -20120909_MIA@HOU,1,54,49,HOU,MIA,2,4,50,(9:49) M.Schaub pass incomplete short right to K.Martin.,0,0,2012 -20120909_MIA@HOU,1,54,44,HOU,MIA,3,4,50,(9:44) M.Schaub pass short right to L.Jean to MIA 41 for 9 yards (R.Marshall).,0,0,2012 -20120909_MIA@HOU,1,54,10,HOU,MIA,1,10,41,(9:10) A.Foster left end to MIA 36 for 5 yards (K.Burnett).,0,0,2012 -20120909_MIA@HOU,1,53,30,HOU,MIA,2,5,36,(8:30) B.Tate right end pushed ob at MIA 30 for 6 yards (S.Smith).,0,0,2012 -20120909_MIA@HOU,1,52,58,HOU,MIA,1,10,30,(7:58) M.Schaub sacked at MIA 34 for -4 yards (R.Starks).,0,0,2012 -20120909_MIA@HOU,1,52,29,HOU,MIA,2,14,34,(7:29) M.Schaub pass incomplete deep left to L.Jean. Houston challenged the incomplete pass ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20120909_MIA@HOU,1,52,21,HOU,MIA,3,14,34,(7:21) (Shotgun) M.Schaub pass incomplete short right to A.Foster.,0,0,2012 -20120909_MIA@HOU,1,52,15,HOU,MIA,4,14,34,(7:15) S.Graham 52 yard field goal is No Good Short Center-J.Weeks Holder-D.Jones.,0,0,2012 -20120909_MIA@HOU,1,52,10,MIA,HOU,1,10,58,(7:10) R.Bush left guard to HST 47 for 11 yards (G.Quin).,0,0,2012 -20120909_MIA@HOU,1,51,45,MIA,HOU,1,10,47,(6:45) R.Bush left guard to HST 42 for 5 yards (B.Cushing).,0,0,2012 -20120909_MIA@HOU,1,51,16,MIA,HOU,2,5,42,(6:16) R.Bush left tackle to HST 34 for 8 yards (D.Manning G.Quin).,0,0,2012 -20120909_MIA@HOU,1,50,36,MIA,HOU,1,10,34,(5:36) R.Tannehill pass short left to A.Fasano to HST 22 for 12 yards (T.Dobbins).,0,0,2012 -20120909_MIA@HOU,1,49,59,MIA,HOU,1,10,22,(4:59) D.Thomas right tackle to HST 20 for 2 yards (J.Watt).,0,0,2012 -20120909_MIA@HOU,1,49,29,MIA,HOU,2,8,20,(4:29) R.Tannehill pass short middle to D.Bess to HST 14 for 6 yards (G.Quin).,0,0,2012 -20120909_MIA@HOU,1,49,29,MIA,HOU,3,2,14,(4:29) R.Bush up the middle to HST 19 for -5 yards (B.Cushing). FUMBLES (B.Cushing) recovered by MIA-J.Martin at HST 21. J.Martin to HST 21 for no gain (C.Barwin).,0,0,2012 -20120909_MIA@HOU,1,48,17,MIA,HOU,4,9,21,(3:17) D.Carpenter 39 yard field goal is GOOD Center-J.Denney Holder-B.Fields.,0,0,2012 -20120909_MIA@HOU,1,48,17,MIA,HOU,,,21,D.Carpenter kicks 71 yards from MIA 35 to HST -6. T.Holliday to HST 5 for 11 yards (J.Wilson). (The kick was muffed by # 16 Holliday but he recovered the ball himself. There was no fumble on the play.),3,0,2012 -20120909_MIA@HOU,1,48,7,HOU,MIA,1,10,95,(3:07) A.Foster right guard to HST 10 for 5 yards (K.Misi).,0,3,2012 -20120909_MIA@HOU,1,47,31,HOU,MIA,2,5,90,(2:31) A.Foster right end to HST 14 for 4 yards (K.Burnett R.Jones).,0,3,2012 -20120909_MIA@HOU,1,46,49,HOU,MIA,3,1,86,(1:49) A.Foster left tackle to HST 14 for no gain (R.Starks K.Dansby).,0,3,2012 -20120909_MIA@HOU,1,46,13,HOU,MIA,4,1,86,(1:13) D.Jones punts 48 yards to MIA 38 Center-J.Weeks fair catch by M.Thigpen. (The punt hang time was 4.5 seconds.),0,3,2012 -20120909_MIA@HOU,1,46,1,MIA,HOU,1,10,62,(1:01) (Shotgun) R.Tannehill pass short left to A.Fasano to MIA 42 for 4 yards (B.James).,3,0,2012 -20120909_MIA@HOU,1,45,30,MIA,HOU,2,6,58,(:30) D.Thomas up the middle to 50 for 8 yards (C.Barwin B.Cushing).,3,0,2012 -20120909_MIA@HOU,2,45,0,MIA,HOU,1,10,50,(15:00) R.Tannehill pass incomplete deep middle to B.Hartline [J.Watt]. PENALTY on MIA-J.Long Offensive Holding 10 yards enforced at 50 - No Play.,3,0,2012 -20120909_MIA@HOU,2,44,53,MIA,HOU,1,20,60,(14:53) (Shotgun) R.Tannehill pass incomplete short middle to D.Thomas.,3,0,2012 -20120909_MIA@HOU,2,44,47,MIA,HOU,2,20,60,(14:47) (Shotgun) R.Tannehill pass short right to D.Bess to MIA 49 for 9 yards (B.McCain).,3,0,2012 -20120909_MIA@HOU,2,44,7,MIA,HOU,3,11,51,(14:07) (Shotgun) R.Tannehill pass incomplete short left to A.Armstrong.,3,0,2012 -20120909_MIA@HOU,2,44,2,MIA,HOU,4,11,51,(14:02) B.Fields punts 38 yards to HST 13 Center-J.Denney fair catch by T.Holliday. (The punt hang time was 4.5 seconds.),3,0,2012 -20120909_MIA@HOU,2,43,53,HOU,MIA,1,10,87,(13:53) M.Schaub pass incomplete deep left to A.Johnson (R.Marshall).,0,3,2012 -20120909_MIA@HOU,2,43,46,HOU,MIA,2,10,87,(13:46) M.Schaub pass short middle to B.Tate to HST 21 for 8 yards (K.Misi K.Burnett).,0,3,2012 -20120909_MIA@HOU,2,43,4,HOU,MIA,3,2,79,(13:04) M.Schaub pass deep left to O.Daniels pushed ob at 50 for 29 yards (R.Jones).,0,3,2012 -20120909_MIA@HOU,2,42,34,HOU,MIA,1,10,50,(12:34) A.Foster left end to MIA 43 for 7 yards (K.Misi).,0,3,2012 -20120909_MIA@HOU,2,41,54,HOU,MIA,2,3,43,(11:54) A.Foster left tackle to MIA 42 for 1 yard (J.Odrick R.Starks).,0,3,2012 -20120909_MIA@HOU,2,41,13,HOU,MIA,3,2,42,(11:13) M.Schaub pass incomplete deep right to O.Daniels.,0,3,2012 -20120909_MIA@HOU,2,41,7,HOU,MIA,4,2,42,(11:07) D.Jones punts 36 yards to MIA 6 Center-J.Weeks downed by HST. (The punt hang time was 4.6 seconds.),0,3,2012 -20120909_MIA@HOU,2,40,58,MIA,HOU,1,10,94,(10:58) R.Bush left guard to MIA 13 for 7 yards (J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,40,27,MIA,HOU,2,3,87,(10:27) R.Bush left guard to MIA 15 for 2 yards (D.Manning B.Reed).,3,0,2012 -20120909_MIA@HOU,2,39,54,MIA,HOU,3,1,85,(9:54) R.Tannehill pass short right to J.Lane to MIA 39 for 24 yards (K.Jackson).,3,0,2012 -20120909_MIA@HOU,2,39,19,MIA,HOU,1,10,61,(9:19) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline (K.Jackson).,3,0,2012 -20120909_MIA@HOU,2,39,14,MIA,HOU,2,10,61,(9:14) R.Bush left end to MIA 37 for -2 yards (D.Manning J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,38,33,MIA,HOU,3,12,63,(8:33) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at 50 for 13 yards (J.Joseph).,3,0,2012 -20120909_MIA@HOU,2,38,7,MIA,HOU,1,10,50,(8:07) R.Tannehill sacked at MIA 47 for -3 yards (J.Watt).,3,0,2012 -20120909_MIA@HOU,2,37,35,MIA,HOU,2,13,53,(7:35) (Shotgun) R.Tannehill pass short middle intended for L.Naanee INTERCEPTED by J.Joseph at 50. J.Joseph pushed ob at MIA 14 for 36 yards (M.Pouncey). PENALTY on MIA-M.Pouncey Unnecessary Roughness 7 yards enforced at MIA 14.,3,0,2012 -20120909_MIA@HOU,2,37,23,HOU,MIA,1,7,7,(7:23) PENALTY on HST-O.Daniels False Start 5 yards enforced at MIA 7 - No Play.,0,3,2012 -20120909_MIA@HOU,2,37,23,HOU,MIA,1,12,12,(7:23) M.Schaub pass incomplete short left to J.Casey.,0,3,2012 -20120909_MIA@HOU,2,37,19,HOU,MIA,2,12,12,(7:19) M.Schaub sacked at MIA 20 for -8 yards (R.Starks).,0,3,2012 -20120909_MIA@HOU,2,36,51,HOU,MIA,3,20,20,(6:51) (Shotgun) A.Foster left end to MIA 17 for 3 yards (O.Vernon).,0,3,2012 -20120909_MIA@HOU,2,36,16,HOU,MIA,4,17,17,(6:16) S.Graham 35 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,0,3,2012 -20120909_MIA@HOU,2,36,16,HOU,MIA,,,17,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 17 for 17 yards (A.Ball).,3,3,2012 -20120909_MIA@HOU,2,36,6,MIA,HOU,1,10,83,(6:06) R.Bush right guard to MIA 27 for 10 yards (B.Cushing B.McCain).,3,3,2012 -20120909_MIA@HOU,2,35,31,MIA,HOU,1,10,73,(5:31) R.Bush left tackle to MIA 29 for 2 yards (J.Crick).,3,3,2012 -20120909_MIA@HOU,2,35,31,MIA,HOU,2,8,71,(5:31) PENALTY on MIA-A.Fasano False Start 5 yards enforced at MIA 29 - No Play.,3,3,2012 -20120909_MIA@HOU,2,34,44,MIA,HOU,2,13,76,(4:44) (Shotgun) R.Tannehill pass short left to D.Thomas to HST 44 for 32 yards (D.Manning).,3,3,2012 -20120909_MIA@HOU,2,34,14,MIA,HOU,1,10,44,(4:14) R.Tannehill pass incomplete short right to B.Hartline (J.Watt).,3,3,2012 -20120909_MIA@HOU,2,34,11,MIA,HOU,2,10,44,(4:11) (Shotgun) R.Tannehill pass incomplete short right to C.Clay.,3,3,2012 -20120909_MIA@HOU,2,34,6,MIA,HOU,3,10,44,(4:06) (Shotgun) R.Tannehill pass short left intended for L.Naanee INTERCEPTED by B.Cushing (J.Watt) at HST 45. B.Cushing to HST 46 for 1 yard (R.Incognito).,3,3,2012 -20120909_MIA@HOU,2,34,0,HOU,MIA,1,10,54,(4:00) M.Schaub pass incomplete deep right to A.Johnson.,3,3,2012 -20120909_MIA@HOU,2,33,53,HOU,MIA,2,10,54,(3:53) M.Schaub pass incomplete short middle to O.Daniels (K.Burnett).,3,3,2012 -20120909_MIA@HOU,2,33,47,HOU,MIA,3,10,54,(3:47) (Shotgun) M.Schaub pass deep middle to A.Johnson to MIA 30 for 24 yards (N.Carroll; C.Clemons).,3,3,2012 -20120909_MIA@HOU,2,33,13,HOU,MIA,1,10,30,(3:13) A.Foster right guard to MIA 27 for 3 yards (K.Misi).,3,3,2012 -20120909_MIA@HOU,2,32,30,HOU,MIA,2,7,27,(2:30) M.Schaub scrambles up the middle to MIA 25 for 2 yards (K.Misi).,3,3,2012 -20120909_MIA@HOU,2,32,3,HOU,MIA,3,5,25,(2:03) M.Schaub pass short middle to O.Daniels to MIA 14 for 11 yards (K.Dansby R.Jones).,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,1,10,14,(1:58) A.Foster right guard for 14 yards TOUCHDOWN.,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,3,3,2012 -20120909_MIA@HOU,2,31,58,HOU,MIA,,,14,S.Graham kicks 68 yards from HST 35 to MIA -3. M.Thigpen to MIA 29 for 32 yards (B.McCain T.Clutts).,10,3,2012 -20120909_MIA@HOU,2,31,44,MIA,HOU,1,10,71,(1:44) (Shotgun) R.Tannehill pass short middle intended for B.Hartline INTERCEPTED by K.Jackson (J.Watt) at MIA 30. K.Jackson to MIA 27 for 3 yards (B.Hartline).,3,10,2012 -20120909_MIA@HOU,2,31,36,HOU,MIA,1,10,27,(1:36) M.Schaub pass incomplete deep right to K.Walter. PENALTY on MIA-R.Marshall Defensive Pass Interference 26 yards enforced at MIA 27 - No Play.,10,3,2012 -20120909_MIA@HOU,2,31,29,HOU,MIA,1,1,1,(1:29) A.Foster left tackle to MIA 2 for -1 yards (K.Dansby).,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,2,2,2,(:49) A.Foster left tackle for 2 yards TOUCHDOWN.,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,10,3,2012 -20120909_MIA@HOU,2,30,49,HOU,MIA,,,2,S.Graham kicks 65 yards from HST 35 to MIA 0. M.Thigpen to MIA 30 for 30 yards (J.Nading; Q.Demps).,17,3,2012 -20120909_MIA@HOU,2,30,35,MIA,HOU,1,10,70,(:35) D.Thomas up the middle to MIA 31 for 1 yard (G.Quin). FUMBLES (G.Quin) RECOVERED by HST-D.Manning at MIA 32. D.Manning to MIA 31 for 1 yard (J.Jerry). MIA-D.Thomas was injured during the play. He is Out.,3,17,2012 -20120909_MIA@HOU,2,30,28,HOU,MIA,1,10,31,(:28) (Shotgun) M.Schaub pass short middle to B.Tate pushed ob at MIA 24 for 7 yards (K.Misi).,17,3,2012 -20120909_MIA@HOU,2,30,20,HOU,MIA,2,3,24,(:20) (Shotgun) M.Schaub pass short middle to A.Johnson to MIA 14 for 10 yards (R.Marshall).,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,1,10,14,(:12) (Shotgun) M.Schaub pass short right to A.Johnson for 14 yards TOUCHDOWN [C.Wake].,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham extra point is GOOD Center-J.Weeks Holder-D.Jones.,17,3,2012 -20120909_MIA@HOU,2,30,12,HOU,MIA,,,14,S.Graham kicks 44 yards from HST 35 to MIA 21. J.Lane to MIA 39 for 18 yards (B.McCain Q.Demps).,24,3,2012 -20120909_MIA@HOU,2,30,1,MIA,HOU,1,10,61,(:01) R.Tannehill kneels to MIA 38 for -1 yards.,3,24,2012 -20120909_MIA@HOU,3,30,0,MIA,HOU,,,61,D.Carpenter kicks 67 yards from MIA 35 to HST -2. T.Holliday to HST 15 for 17 yards (M.Moore).,3,24,2012 -20120909_MIA@HOU,3,29,53,HOU,MIA,1,10,85,(14:53) A.Foster right tackle to HST 19 for 4 yards (K.Misi K.Dansby).,24,3,2012 -20120909_MIA@HOU,3,29,13,HOU,MIA,2,6,81,(14:13) A.Foster right guard to HST 23 for 4 yards (K.Dansby; C.Wake).,24,3,2012 -20120909_MIA@HOU,3,28,35,HOU,MIA,3,2,77,(13:35) M.Schaub pass incomplete short middle to O.Daniels [C.Wake].,24,3,2012 -20120909_MIA@HOU,3,28,30,HOU,MIA,4,2,77,(13:30) D.Jones punts 49 yards to MIA 28 Center-J.Weeks. M.Thigpen for 72 yards TOUCHDOWN.,24,3,2012 -20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter extra point is GOOD Center-J.Denney Holder-B.Fields.,3,24,2012 -20120909_MIA@HOU,3,28,30,MIA,HOU,,,77,D.Carpenter kicks 70 yards from MIA 35 to HST -5. T.Holliday to HST 14 for 19 yards (N.Carroll).,10,24,2012 -20120909_MIA@HOU,3,28,8,HOU,MIA,1,10,86,(13:08) M.Schaub pass short left to A.Johnson pushed ob at HST 24 for 10 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,27,40,HOU,MIA,1,10,76,(12:40) M.Schaub pass short left to A.Johnson to HST 39 for 15 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,27,2,HOU,MIA,1,10,61,(12:02) B.Tate left end to HST 39 for no gain (C.Clemons K.Misi).,24,10,2012 -20120909_MIA@HOU,3,26,20,HOU,MIA,2,10,61,(11:20) M.Schaub pass short middle to K.Walter to HST 45 for 6 yards (R.Marshall).,24,10,2012 -20120909_MIA@HOU,3,25,39,HOU,MIA,3,4,55,(10:39) M.Schaub pass short middle to J.Casey to MIA 38 for 17 yards (K.Misi).,24,10,2012 -20120909_MIA@HOU,3,24,57,HOU,MIA,1,10,38,(9:57) B.Tate right guard to MIA 36 for 2 yards (J.Odrick).,24,10,2012 -20120909_MIA@HOU,3,24,15,HOU,MIA,2,8,36,(9:15) M.Schaub pass short right to K.Walter to MIA 26 for 10 yards (S.Smith).,24,10,2012 -20120909_MIA@HOU,3,23,38,HOU,MIA,1,10,26,(8:38) M.Schaub pass short left to A.Foster to MIA 30 for -4 yards (K.Misi).,24,10,2012 -20120909_MIA@HOU,3,22,53,HOU,MIA,2,14,30,(7:53) A.Foster right guard to MIA 18 for 12 yards (R.Jones).,24,10,2012 -20120909_MIA@HOU,3,22,13,HOU,MIA,3,2,18,(7:13) A.Foster left end to MIA 22 for -4 yards (R.Jones).,24,10,2012 -20120909_MIA@HOU,3,21,35,HOU,MIA,4,6,22,(6:35) S.Graham 40 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,24,10,2012 -20120909_MIA@HOU,3,21,35,HOU,MIA,,,22,S.Graham kicks 66 yards from HST 35 to MIA -1. M.Thigpen to MIA 26 for 27 yards (T.Dobbins).,27,10,2012 -20120909_MIA@HOU,3,21,24,MIA,HOU,1,10,74,(6:24) R.Bush left guard to MIA 29 for 3 yards (C.Barwin B.James).,10,27,2012 -20120909_MIA@HOU,3,20,52,MIA,HOU,2,7,71,(5:52) R.Tannehill sacked at MIA 21 for -8 yards (sack split by J.Watt and A.Smith).,10,27,2012 -20120909_MIA@HOU,3,20,17,MIA,HOU,3,15,79,(5:17) (Shotgun) R.Tannehill pass short middle to R.Bush to MIA 21 for no gain (B.Reed).,10,27,2012 -20120909_MIA@HOU,3,19,37,MIA,HOU,4,15,79,(4:37) B.Fields punts 56 yards to HST 23 Center-J.Denney. T.Holliday to HST 37 for 14 yards (J.Trusnik). PENALTY on HST-J.Nading Offensive Holding 10 yards enforced at HST 37.,10,27,2012 -20120909_MIA@HOU,3,19,21,HOU,MIA,1,10,73,(4:21) A.Foster left guard to HST 27 for no gain (R.Starks).,27,10,2012 -20120909_MIA@HOU,3,18,43,HOU,MIA,2,10,73,(3:43) M.Schaub pass short middle to O.Daniels to MIA 49 for 24 yards (R.Jones K.Burnett).,27,10,2012 -20120909_MIA@HOU,3,17,58,HOU,MIA,1,10,49,(2:58) A.Foster right end to HST 49 for -2 yards (P.Soliai).,27,10,2012 -20120909_MIA@HOU,3,17,12,HOU,MIA,2,12,51,(2:12) M.Schaub pass short middle to B.Tate to MIA 44 for 7 yards (K.Dansby).,27,10,2012 -20120909_MIA@HOU,3,16,25,HOU,MIA,3,5,44,(1:25) (Shotgun) M.Schaub pass short right to A.Johnson to MIA 38 for 6 yards (R.Jones).,27,10,2012 -20120909_MIA@HOU,3,15,44,HOU,MIA,1,10,38,(:44) A.Foster right tackle to MIA 32 for 6 yards (K.Randall).,27,10,2012 -20120909_MIA@HOU,4,15,0,HOU,MIA,2,4,32,(15:00) A.Foster left guard to MIA 32 for no gain (R.Starks).,27,10,2012 -20120909_MIA@HOU,4,14,18,HOU,MIA,3,4,32,(14:18) (Shotgun) M.Schaub pass deep right to A.Johnson pushed ob at MIA 3 for 29 yards (J.Wilson) [C.Wake].,27,10,2012 -20120909_MIA@HOU,4,13,49,HOU,MIA,1,3,3,(13:49) A.Foster left guard to MIA 1 for 2 yards (K.Misi).,27,10,2012 -20120909_MIA@HOU,4,13,9,HOU,MIA,2,1,1,(13:09) A.Foster right guard to MIA 1 for no gain (K.Dansby).,27,10,2012 -20120909_MIA@HOU,4,12,31,HOU,MIA,3,1,1,(12:31) M.Schaub pass incomplete short left to O.Daniels.,27,10,2012 -20120909_MIA@HOU,4,12,25,HOU,MIA,4,1,1,(12:25) S.Graham 19 yard field goal is GOOD Center-J.Weeks Holder-D.Jones.,27,10,2012 -20120909_MIA@HOU,4,12,25,HOU,MIA,,,1,S.Graham kicks 73 yards from HST 35 to MIA -8. M.Thigpen Touchback.,30,10,2012 -20120909_MIA@HOU,4,12,22,MIA,HOU,1,10,80,(12:22) (Shotgun) R.Tannehill pass short left to D.Bess to MIA 31 for 11 yards (B.McCain).,10,30,2012 -20120909_MIA@HOU,4,11,52,MIA,HOU,1,10,69,(11:52) (Shotgun) R.Bush left end to MIA 29 for -2 yards (C.Barwin). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at MIA 31 - No Play.,10,30,2012 -20120909_MIA@HOU,4,11,36,MIA,HOU,1,20,79,(11:36) (Shotgun) R.Tannehill pass short left to R.Bush to MIA 40 for 19 yards (Q.Demps).,10,30,2012 -20120909_MIA@HOU,4,11,1,MIA,HOU,2,1,60,(11:01) R.Bush up the middle to HST 47 for 13 yards (B.Cushing Q.Demps).,10,30,2012 -20120909_MIA@HOU,4,10,27,MIA,HOU,1,10,47,(10:27) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 40 for 7 yards (K.Jackson). PENALTY on HST-K.Jackson Face Mask (15 Yards) 15 yards enforced at HST 40.,10,30,2012 -20120909_MIA@HOU,4,10,0,MIA,HOU,1,10,25,(10:00) (Shotgun) R.Tannehill pass short left to B.Hartline to HST 16 for 9 yards (K.Jackson).,10,30,2012 -20120909_MIA@HOU,4,9,29,MIA,HOU,2,1,16,(9:29) (Shotgun) R.Bush up the middle to HST 18 for -2 yards (D.Manning B.Cushing). PENALTY on HST-C.Barwin Defensive Offside 5 yards enforced at HST 16 - No Play.,10,30,2012 -20120909_MIA@HOU,4,9,13,MIA,HOU,1,10,11,(9:13) (Shotgun) R.Tannehill pass incomplete short left to B.Hartline.,10,30,2012 -20120909_MIA@HOU,4,9,8,MIA,HOU,2,10,11,(9:08) (Shotgun) R.Tannehill pass incomplete short right to B.Hartline.,10,30,2012 -20120909_MIA@HOU,4,9,3,MIA,HOU,3,10,11,(9:03) (Shotgun) R.Tannehill pass short middle to R.Bush to HST 9 for 2 yards (G.Quin).,10,30,2012 -20120909_MIA@HOU,4,8,24,MIA,HOU,4,8,9,(8:24) (Shotgun) R.Tannehill pass short left to A.Fasano to HST 6 for 3 yards (J.Joseph).,10,30,2012 -20120909_MIA@HOU,4,8,16,HOU,MIA,1,10,94,(8:16) B.Tate left guard to HST 8 for 2 yards (C.Wake).,30,10,2012 -20120909_MIA@HOU,4,7,36,HOU,MIA,2,8,92,(7:36) B.Tate left tackle to HST 4 for -4 yards (P.Soliai).,30,10,2012 -20120909_MIA@HOU,4,6,51,HOU,MIA,3,12,96,(6:51) A.Foster up the middle to HST 11 for 7 yards (K.Dansby).,30,10,2012 -20120909_MIA@HOU,4,6,41,HOU,MIA,4,5,89,(6:41) D.Jones punts 30 yards to HST 41 Center-J.Weeks out of bounds.,30,10,2012 -20120909_MIA@HOU,4,6,32,MIA,HOU,1,10,41,(6:32) (Shotgun) R.Tannehill pass short right to D.Bess to HST 32 for 9 yards (B.McCain).,10,30,2012 -20120909_MIA@HOU,4,6,4,MIA,HOU,2,1,32,(6:04) (Shotgun) R.Bush left guard to HST 34 for -2 yards (J.Watt). PENALTY on MIA-R.Incognito Offensive Holding 10 yards enforced at HST 32 - No Play.,10,30,2012 -20120909_MIA@HOU,4,5,41,MIA,HOU,2,11,42,(5:41) (Shotgun) R.Tannehill pass deep right to B.Hartline to HST 8 for 34 yards (K.Jackson).,10,30,2012 -20120909_MIA@HOU,4,5,1,MIA,HOU,1,8,8,(5:01) (Shotgun) R.Tannehill pass short middle to A.Armstrong to HST 5 for 3 yards (G.Quin).,10,30,2012 -20120909_MIA@HOU,4,4,15,MIA,HOU,2,5,5,(4:15) (Shotgun) R.Tannehill pass incomplete short left to A.Fasano.,10,30,2012 -20120909_MIA@HOU,4,4,10,MIA,HOU,3,5,5,(4:10) (Shotgun) R.Tannehill pass incomplete short right to D.Bess. Miami challenged the incomplete pass ruling and the play was Upheld. (Timeout #2.),10,30,2012 -20120909_MIA@HOU,4,4,5,MIA,HOU,4,5,5,(4:05) (Shotgun) R.Tannehill pass incomplete short middle to A.Fasano (T.Jamison).,10,30,2012 -20120909_MIA@HOU,4,4,0,HOU,MIA,1,10,95,(4:00) A.Foster left guard to HST 4 for -1 yards (C.Wake).,30,10,2012 -20120909_MIA@HOU,4,3,16,HOU,MIA,2,11,96,(3:16) A.Foster left tackle to HST 5 for 1 yard (K.Dansby).,30,10,2012 -20120909_MIA@HOU,4,2,30,HOU,MIA,3,10,95,(2:30) A.Foster left guard to HST 6 for 1 yard (K.Randall).,30,10,2012 -20120909_MIA@HOU,4,2,24,HOU,MIA,4,9,94,(2:24) D.Jones punts 55 yards to MIA 39 Center-J.Weeks. M.Thigpen to MIA 43 for 4 yards (J.Casey). (The punt hang time was 4.8 seconds.),30,10,2012 -20120909_MIA@HOU,4,2,13,MIA,HOU,1,10,57,(2:13) (Shotgun) R.Tannehill pass incomplete short left to D.Bess.,10,30,2012 -20120909_MIA@HOU,4,2,8,MIA,HOU,2,10,57,(2:08) (Shotgun) R.Tannehill pass short left to R.Bush pushed ob at HST 49 for 8 yards (B.James).,10,30,2012 -20120909_MIA@HOU,4,2,0,MIA,HOU,3,2,49,(2:00) (Shotgun) R.Tannehill pass incomplete deep left to A.Armstrong.,10,30,2012 -20120909_MIA@HOU,4,1,56,MIA,HOU,4,2,49,(1:56) (Shotgun) R.Tannehill sacked at MIA 39 for -12 yards (T.Jamison).,10,30,2012 -20120909_MIA@HOU,4,1,44,HOU,MIA,1,10,39,(1:44) M.Schaub kneels to MIA 41 for -2 yards.,30,10,2012 -20120909_MIA@HOU,4,1,0,HOU,MIA,2,12,41,(1:00) M.Schaub kneels to MIA 42 for -1 yards.,30,10,2012 -20120909_MIA@HOU,4,0,31,HOU,MIA,3,13,42,(:31) M.Schaub kneels to MIA 43 for -1 yards.,30,10,2012 -20120909_MIA@HOU,4,0,31,HOU,MIA,,,42,                      ,30,10,2012 -20120909_ATL@KC,1,0,0,KC,ATL,,,42,R.Succop kicks 65 yards from KC 35 to end zone Touchback.,0,0,2012 -20120909_ATL@KC,1,60,0,ATL,KC,1,10,80,(15:00) M.Turner right guard to ATL 26 for 6 yards (J.Belcher).,0,0,2012 -20120909_ATL@KC,1,59,22,ATL,KC,2,4,74,(14:22) M.Turner up the middle to ATL 28 for 2 yards (D.Johnson).,0,0,2012 -20120909_ATL@KC,1,58,41,ATL,KC,3,2,72,(13:41) (Shotgun) M.Ryan pass short right to T.Gonzalez to ATL 31 for 3 yards (T.Daniels).,0,0,2012 -20120909_ATL@KC,1,58,1,ATL,KC,1,10,69,(13:01) M.Ryan pass short middle to J.Jones to KC 44 for 25 yards (D.Johnson).,0,0,2012 -20120909_ATL@KC,1,57,26,ATL,KC,1,10,44,(12:26) M.Ryan pass incomplete short right to T.Gonzalez (E.Berry).,0,0,2012 -20120909_ATL@KC,1,57,21,ATL,KC,2,10,44,(12:21) M.Turner up the middle to KC 42 for 2 yards (T.Jackson).,0,0,2012 -20120909_ATL@KC,1,56,38,ATL,KC,3,8,42,(11:38) (Shotgun) M.Ryan pass short right to J.Jones to KC 31 for 11 yards (J.Reeves).,0,0,2012 -20120909_ATL@KC,1,55,58,ATL,KC,1,10,31,(10:58) M.Ryan pass incomplete deep left to J.Jones.,0,0,2012 -20120909_ATL@KC,1,55,53,ATL,KC,2,10,31,(10:53) M.Ryan pass short left to R.White to KC 16 for 15 yards (A.Studebaker).,0,0,2012 -20120909_ATL@KC,1,55,19,ATL,KC,1,10,16,(10:19) M.Turner right guard to KC 14 for 2 yards (J.Powe).,0,0,2012 -20120909_ATL@KC,1,54,44,ATL,KC,2,8,14,(9:44) M.Ryan pass short right to M.Palmer to KC 8 for 6 yards (E.Berry).,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,3,2,8,(8:56) (Shotgun) M.Ryan pass short right to J.Jones for 8 yards TOUCHDOWN.,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,0,0,2012 -20120909_ATL@KC,1,53,56,ATL,KC,,,8,M.Bosher kicks 60 yards from ATL 35 to KC 5. J.Arenas to KC 23 for 18 yards (C.Owens).,7,0,2012 -20120909_ATL@KC,1,53,45,KC,ATL,1,10,77,(8:45) P.Hillis right tackle to KC 26 for 3 yards (T.DeCoud).,0,7,2012 -20120909_ATL@KC,1,53,5,KC,ATL,2,7,74,(8:05) M.Cassel pass short right to S.Breaston pushed ob at KC 32 for 6 yards (S.Weatherspoon).,0,7,2012 -20120909_ATL@KC,1,52,26,KC,ATL,3,1,68,(7:26) J.Charles up the middle to KC 34 for 2 yards (W.Moore).,0,7,2012 -20120909_ATL@KC,1,51,48,KC,ATL,1,10,66,(6:48) M.Cassel pass short left to T.Moeaki to ATL 48 for 18 yards (B.Grimes).,0,7,2012 -20120909_ATL@KC,1,51,41,KC,ATL,1,10,48,(6:41) M.Cassel pass incomplete short left to D.Bowe.,0,7,2012 -20120909_ATL@KC,1,51,36,KC,ATL,2,10,48,(6:36) J.Charles left guard to ATL 47 for 1 yard (S.Nicholas).,0,7,2012 -20120909_ATL@KC,1,50,55,KC,ATL,3,9,47,(5:55) (Shotgun) M.Cassel pass deep right to D.Bowe to ATL 24 for 23 yards (A.Samuel).,0,7,2012 -20120909_ATL@KC,1,50,12,KC,ATL,1,10,24,(5:12) M.Cassel pass incomplete short left to S.Breaston.,0,7,2012 -20120909_ATL@KC,1,50,6,KC,ATL,2,10,24,(5:06) J.Charles right tackle to ATL 22 for 2 yards (V.Walker).,0,7,2012 -20120909_ATL@KC,1,49,24,KC,ATL,3,8,22,(4:24) (Shotgun) M.Cassel pass short right to P.Hillis pushed ob at ATL 21 for 1 yard (A.Samuel) [S.Weatherspoon].,0,7,2012 -20120909_ATL@KC,1,49,6,KC,ATL,4,7,21,(4:06) R.Succop 39 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,7,2012 -20120909_ATL@KC,1,49,6,KC,ATL,,,21,R.Succop kicks 66 yards from KC 35 to ATL -1. Jz. Rodgers pushed ob at KC 24 for 77 yards (J.Arenas).,3,7,2012 -20120909_ATL@KC,1,48,51,ATL,KC,1,10,24,(3:51) M.Turner up the middle to KC 20 for 4 yards (J.Belcher).,7,3,2012 -20120909_ATL@KC,1,48,15,ATL,KC,2,6,20,(3:15) M.Turner left tackle to KC 18 for 2 yards (D.Johnson).,7,3,2012 -20120909_ATL@KC,1,48,15,ATL,KC,3,4,18,(3:15) (Shotgun) PENALTY on ATL-M.Ryan False Start 5 yards enforced at KC 18 - No Play.,7,3,2012 -20120909_ATL@KC,1,47,7,ATL,KC,3,9,23,(2:07) (Shotgun) M.Ryan pass short left to H.Douglas to KC 16 for 7 yards (S.Routt). FUMBLES (S.Routt) ball out of bounds at KC 16.,7,3,2012 -20120909_ATL@KC,1,46,57,ATL,KC,4,2,16,(1:57) M.Bryant 34 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,7,3,2012 -20120909_ATL@KC,1,46,57,ATL,KC,,,16,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 24 for 25 yards (J.Snelling).,10,3,2012 -20120909_ATL@KC,1,46,47,KC,ATL,1,10,76,(1:47) J.Charles left end to KC 23 for -1 yards (R.Edwards).,3,10,2012 -20120909_ATL@KC,1,46,17,KC,ATL,2,11,77,(1:17) P.Hillis left end to KC 30 for 7 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,1,45,37,KC,ATL,3,4,70,(:37) (No Huddle Shotgun) M.Cassel pass short middle to T.Moeaki to KC 41 for 11 yards (W.Moore).,3,10,2012 -20120909_ATL@KC,2,45,0,KC,ATL,1,10,59,(15:00) J.Charles right guard to ATL 48 for 11 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,2,44,21,KC,ATL,1,10,48,(14:21) M.Cassel sacked at KC 44 for -8 yards (S.Weatherspoon).,3,10,2012 -20120909_ATL@KC,2,43,40,KC,ATL,2,18,56,(13:40) (Shotgun) M.Cassel pass short right to D.McCluster to ATL 47 for 9 yards (A.Samuel).,3,10,2012 -20120909_ATL@KC,2,43,8,KC,ATL,3,9,47,(13:08) (No Huddle Shotgun) M.Cassel pass deep middle to D.Bowe to ATL 26 for 21 yards (B.Grimes).,3,10,2012 -20120909_ATL@KC,2,42,29,KC,ATL,1,10,26,(12:29) S.Draughn up the middle to ATL 22 for 4 yards (D.Robinson; S.Nicholas).,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,2,6,22,(11:45) (Shotgun) M.Cassel pass deep middle to K.Boss for 22 yards TOUCHDOWN.,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,10,2012 -20120909_ATL@KC,2,41,45,KC,ATL,,,22,R.Succop kicks 65 yards from KC 35 to ATL 0. Jz. Rodgers to ATL 27 for 27 yards (A.Studebaker).,10,10,2012 -20120909_ATL@KC,2,41,33,ATL,KC,1,10,73,(11:33) (Shotgun) Jz. Rodgers right tackle to ATL 30 for 3 yards (D.Johnson).,10,10,2012 -20120909_ATL@KC,2,40,56,ATL,KC,2,7,70,(10:56) (No Huddle Shotgun) M.Ryan pass short right to R.White to ATL 46 for 16 yards (A.Elam).,10,10,2012 -20120909_ATL@KC,2,40,26,ATL,KC,1,10,54,(10:26) (No Huddle) M.Ryan pass short right to R.White ran ob at KC 39 for 15 yards. Kansas City challenged the pass completion ruling and the play was Upheld. (Timeout #1.),10,10,2012 -20120909_ATL@KC,2,40,2,ATL,KC,1,10,39,(10:02) Jz. Rodgers up the middle to KC 33 for 6 yards (E.Jones).,10,10,2012 -20120909_ATL@KC,2,39,32,ATL,KC,2,4,33,(9:32) (No Huddle Shotgun) M.Ryan pass short left to Jz. Rodgers pushed ob at KC 27 for 6 yards (S.Routt).,10,10,2012 -20120909_ATL@KC,2,39,5,ATL,KC,1,10,27,(9:05) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 22 for 5 yards (R.Pitoitua).,10,10,2012 -20120909_ATL@KC,2,38,30,ATL,KC,2,5,22,(8:30) (No Huddle) M.Ryan pass short right to R.White pushed ob at KC 14 for 8 yards (A.Elam).,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,1,10,14,(7:55) (No Huddle) M.Ryan pass short left to J.Jones for 14 yards TOUCHDOWN.,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,10,10,2012 -20120909_ATL@KC,2,37,55,ATL,KC,,,14,M.Bosher kicks 74 yards from ATL 35 to KC -9. J.Arenas Touchback.,17,10,2012 -20120909_ATL@KC,2,37,48,KC,ATL,1,10,80,(7:48) J.Charles right end to ATL 34 for 46 yards (T.DeCoud).,10,17,2012 -20120909_ATL@KC,2,37,21,KC,ATL,1,10,34,(7:21) (No Huddle) P.Hillis up the middle to ATL 31 for 3 yards (S.Nicholas).,10,17,2012 -20120909_ATL@KC,2,36,44,KC,ATL,2,7,31,(6:44) (No Huddle Shotgun) M.Cassel pass short right to P.Hillis to ATL 28 for 3 yards (S.Weatherspoon).,10,17,2012 -20120909_ATL@KC,2,35,53,KC,ATL,3,4,28,(5:53) (No Huddle Shotgun) M.Cassel pass short left to D.McCluster pushed ob at ATL 19 for 9 yards (B.Grimes).,10,17,2012 -20120909_ATL@KC,2,35,24,KC,ATL,1,10,19,(5:24) (No Huddle Shotgun) J.Charles left end pushed ob at ATL 10 for 9 yards (B.Grimes).,10,17,2012 -20120909_ATL@KC,2,35,2,KC,ATL,2,1,10,(5:02) (No Huddle Shotgun) J.Charles left tackle to ATL 8 for 2 yards (S.Nicholas).,10,17,2012 -20120909_ATL@KC,2,34,25,KC,ATL,1,8,8,(4:25) P.Hillis up the middle to ATL 5 for 3 yards (K.Biermann).,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,2,5,5,(3:44) (Shotgun) M.Cassel up the middle for 5 yards TOUCHDOWN.,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,17,2012 -20120909_ATL@KC,2,33,44,KC,ATL,,,5,R.Succop kicks 73 yards from KC 35 to ATL -8. Jz. Rodgers Touchback.,17,17,2012 -20120909_ATL@KC,2,33,38,ATL,KC,1,10,80,(3:38) M.Ryan pass incomplete short right to H.Douglas.,17,17,2012 -20120909_ATL@KC,2,33,2,ATL,KC,2,10,80,(3:02) (No Huddle Shotgun) M.Ryan pass short left to H.Douglas to ATL 39 for 19 yards (T.Daniels).,17,17,2012 -20120909_ATL@KC,2,32,33,ATL,KC,1,10,61,(2:33) (No Huddle) M.Ryan pass incomplete deep left to J.Jones.,17,17,2012 -20120909_ATL@KC,2,32,27,ATL,KC,2,10,61,(2:27) (No Huddle Shotgun) M.Ryan pass short right to T.Gonzalez to KC 48 for 13 yards (D.Johnson).,17,17,2012 -20120909_ATL@KC,2,32,5,ATL,KC,1,10,48,(2:05) (No Huddle) M.Ryan up the middle to KC 37 for 11 yards (D.Johnson).,17,17,2012 -20120909_ATL@KC,2,31,55,ATL,KC,1,10,37,(1:55) M.Ryan scrambles right end pushed ob at KC 28 for 9 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,31,48,ATL,KC,2,1,28,(1:48) (No Huddle) M.Ryan pass short right to T.Gonzalez to KC 3 for 25 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,31,14,ATL,KC,1,3,3,(1:14) (No Huddle) M.Ryan sacked at KC 10 for -7 yards (J.Houston).,17,17,2012 -20120909_ATL@KC,2,30,53,ATL,KC,2,10,10,(:53) (Shotgun) M.Ryan pass short right to R.White to KC 3 for 7 yards (J.Reeves).,17,17,2012 -20120909_ATL@KC,2,30,17,ATL,KC,3,3,3,(:17) (Shotgun) M.Ryan pass incomplete short middle to R.White [D.Johnson].,17,17,2012 -20120909_ATL@KC,2,30,13,ATL,KC,4,3,3,(:13) M.Bryant 21 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,17,17,2012 -20120909_ATL@KC,2,30,13,ATL,KC,,,3,M.Bosher kicks 52 yards from ATL 35 to KC 13. T.Copper to KC 29 for 16 yards (K.Biermann).,20,17,2012 -20120909_ATL@KC,2,30,3,KC,ATL,1,10,71,(:03) M.Cassel kneels to KC 28 for -1 yards.,17,20,2012 -20120909_ATL@KC,3,30,0,ATL,KC,,,71,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,20,17,2012 -20120909_ATL@KC,3,30,0,KC,ATL,1,10,80,(15:00) (No Huddle) J.Charles right tackle to KC 24 for 4 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,29,23,KC,ATL,2,6,76,(14:23) (No Huddle) J.Charles up the middle to KC 29 for 5 yards (K.Biermann).,17,20,2012 -20120909_ATL@KC,3,28,52,KC,ATL,3,1,71,(13:52) (No Huddle) M.Cassel up the middle to KC 32 for 3 yards (T.DeCoud).,17,20,2012 -20120909_ATL@KC,3,28,15,KC,ATL,1,10,68,(13:15) (No Huddle) P.Hillis right end to KC 33 for 1 yard (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,27,35,KC,ATL,2,9,67,(12:35) (No Huddle) M.Cassel pass short middle to D.McCluster to ATL 46 for 21 yards (T.DeCoud; S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,26,55,KC,ATL,1,10,46,(11:55) (No Huddle) J.Charles up the middle to ATL 43 for 3 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,26,15,KC,ATL,2,7,43,(11:15) (No Huddle Shotgun) M.Cassel pass short middle to D.McCluster to ATL 28 for 15 yards (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,25,40,KC,ATL,1,10,28,(10:40) (No Huddle) P.Hillis up the middle to ATL 26 for 2 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,25,3,KC,ATL,2,8,26,(10:03) (Shotgun) M.Cassel pass short left to P.Hillis to ATL 22 for 4 yards (S.Nicholas).,17,20,2012 -20120909_ATL@KC,3,24,14,KC,ATL,3,4,22,(9:14) (No Huddle Shotgun) M.Cassel pass incomplete short middle to D.McCluster (S.Weatherspoon).,17,20,2012 -20120909_ATL@KC,3,24,9,KC,ATL,4,4,22,(9:09) R.Succop 40 yard field goal is No Good Hit Right Upright Center-T.Gafford Holder-D.Colquitt.,17,20,2012 -20120909_ATL@KC,3,24,7,ATL,KC,1,10,70,(9:07) M.Ryan pass incomplete short right to L.Polite [J.Houston].,20,17,2012 -20120909_ATL@KC,3,24,3,ATL,KC,2,10,70,(9:03) M.Turner up the middle to ATL 29 for -1 yards (D.Poe).,20,17,2012 -20120909_ATL@KC,3,23,26,ATL,KC,3,11,71,(8:26) (Shotgun) M.Ryan pass deep left to J.Jones to KC 40 for 31 yards (T.Daniels).,20,17,2012 -20120909_ATL@KC,3,22,41,ATL,KC,1,10,40,(7:41) M.Turner up the middle to KC 38 for 2 yards (T.Jackson).,20,17,2012 -20120909_ATL@KC,3,21,59,ATL,KC,2,8,38,(6:59) M.Ryan pass short left to J.Jones to KC 19 for 19 yards (A.Elam).,20,17,2012 -20120909_ATL@KC,3,21,21,ATL,KC,1,10,19,(6:21) M.Turner up the middle to KC 8 for 11 yards (A.Elam; A.Studebaker).,20,17,2012 -20120909_ATL@KC,3,20,44,ATL,KC,1,8,8,(5:44) M.Turner up the middle to KC 5 for 3 yards (J.Belcher).,20,17,2012 -20120909_ATL@KC,3,20,5,ATL,KC,2,5,5,(5:05) M.Ryan pass incomplete short right to J.Jones.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,3,5,5,(5:00) (Shotgun) M.Ryan scrambles right end for 5 yards TOUCHDOWN.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,20,17,2012 -20120909_ATL@KC,3,20,0,ATL,KC,,,5,M.Bosher kicks 71 yards from ATL 35 to KC -6. J.Arenas Touchback.,27,17,2012 -20120909_ATL@KC,3,19,54,KC,ATL,1,10,80,(4:54) J.Charles up the middle to KC 15 for -5 yards (J.Abraham).,17,27,2012 -20120909_ATL@KC,3,19,19,KC,ATL,2,15,85,(4:19) (No Huddle Shotgun) M.Cassel pass incomplete short middle to T.Moeaki (J.Babineaux).,17,27,2012 -20120909_ATL@KC,3,19,14,KC,ATL,3,15,85,(4:14) (No Huddle Shotgun) M.Cassel sacked at KC 6 for -9 yards (J.Abraham). FUMBLES (J.Abraham) RECOVERED by ATL-S.Nicholas at KC 7. S.Nicholas to KC 7 for no gain (R.Hudson).,17,27,2012 -20120909_ATL@KC,3,19,2,ATL,KC,1,7,7,(4:02) M.Ryan pass short middle to T.Gonzalez for 7 yards TOUCHDOWN.,27,17,2012 -20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bryant extra point is GOOD Center-J.Harris Holder-M.Bosher.,27,17,2012 -20120909_ATL@KC,3,19,2,ATL,KC,,,7,M.Bosher kicks 65 yards from ATL 35 to end zone Touchback.,34,17,2012 -20120909_ATL@KC,3,18,56,KC,ATL,1,10,80,(3:56) M.Cassel sacked at KC 19 for -1 yards (J.Babineaux).,17,34,2012 -20120909_ATL@KC,3,18,21,KC,ATL,2,11,81,(3:21) (No Huddle) P.Hillis left end to KC 16 for -3 yards (S.Weatherspoon).,17,34,2012 -20120909_ATL@KC,3,17,35,KC,ATL,3,14,84,(2:35) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 31 for 15 yards (D.Robinson).,17,34,2012 -20120909_ATL@KC,3,17,1,KC,ATL,1,10,69,(2:01) (No Huddle) S.Draughn up the middle to KC 32 for 1 yard (S.Weatherspoon).,17,34,2012 -20120909_ATL@KC,3,16,29,KC,ATL,2,9,68,(1:29) (No Huddle Shotgun) M.Cassel pass short middle intended for T.Moeaki INTERCEPTED by W.Moore at KC 45. W.Moore to KC 43 for 2 yards (D.McCluster). The Replay Assistant challenged the runner was down by contact ruling and the play was Upheld.,17,34,2012 -20120909_ATL@KC,3,16,20,ATL,KC,1,10,43,(1:20) M.Ryan pass deep left to R.White to KC 17 for 26 yards (A.Elam).,34,17,2012 -20120909_ATL@KC,3,15,42,ATL,KC,1,10,17,(:42) M.Turner left tackle to KC 18 for -1 yards (G.Dorsey).,34,17,2012 -20120909_ATL@KC,4,15,0,ATL,KC,2,11,18,(15:00) (Shotgun) M.Ryan pass short left to H.Douglas to KC 12 for 6 yards (D.Johnson).,34,17,2012 -20120909_ATL@KC,4,14,21,ATL,KC,3,5,12,(14:21) (Shotgun) M.Ryan pass incomplete short left to R.White.,34,17,2012 -20120909_ATL@KC,4,14,16,ATL,KC,4,5,12,(14:16) M.Bryant 30 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,34,17,2012 -20120909_ATL@KC,4,14,16,ATL,KC,,,12,M.Bosher kicks 66 yards from ATL 35 to KC -1. J.Arenas to KC 17 for 18 yards (R.James).,37,17,2012 -20120909_ATL@KC,4,14,6,KC,ATL,1,10,83,(14:06) J.Charles left end to KC 13 for -4 yards (W.Moore).,17,37,2012 -20120909_ATL@KC,4,13,31,KC,ATL,2,14,87,(13:31) (Shotgun) M.Cassel scrambles up the middle to KC 26 for 13 yards (W.Moore).,17,37,2012 -20120909_ATL@KC,4,12,52,KC,ATL,3,1,74,(12:52) M.Cassel pass short left intended for T.Moeaki INTERCEPTED by S.Nicholas [R.Edwards] at KC 34. S.Nicholas to KC 31 for 3 yards (T.Moeaki).,17,37,2012 -20120909_ATL@KC,4,12,44,ATL,KC,1,10,31,(12:44) Jz. Rodgers up the middle to KC 29 for 2 yards (J.Belcher).,37,17,2012 -20120909_ATL@KC,4,12,7,ATL,KC,2,8,29,(12:07) M.Ryan pass short middle to Jz. Rodgers to KC 22 for 7 yards (J.Houston; D.Johnson).,37,17,2012 -20120909_ATL@KC,4,11,24,ATL,KC,3,1,22,(11:24) Jz. Rodgers right end to KC 23 for -1 yards (J.Belcher).,37,17,2012 -20120909_ATL@KC,4,10,44,ATL,KC,4,2,23,(10:44) M.Bryant 41 yard field goal is GOOD Center-J.Harris Holder-M.Bosher.,37,17,2012 -20120909_ATL@KC,4,10,44,ATL,KC,,,23,M.Bosher kicks 73 yards from ATL 35 to KC -8. J.Arenas pushed ob at KC 10 for 18 yards (K.Biermann). Penalty on KC-S.Draughn Unnecessary Roughness offsetting. Penalty on ATL-C.Hope Unnecessary Roughness offsetting.,40,17,2012 -20120909_ATL@KC,4,10,33,KC,ATL,1,10,90,(10:33) J.Charles up the middle to KC 8 for -2 yards (J.Abraham).,17,40,2012 -20120909_ATL@KC,4,10,7,KC,ATL,2,12,92,(10:07) J.Charles right tackle to KC 14 for 6 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,9,20,KC,ATL,3,6,86,(9:20) (Shotgun) M.Cassel pass short left to D.Bowe to KC 23 for 9 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,8,48,KC,ATL,1,10,77,(8:48) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe.,17,40,2012 -20120909_ATL@KC,4,8,41,KC,ATL,2,10,77,(8:41) (No Huddle Shotgun) S.Draughn left end to KC 37 for 14 yards (R.Edwards).,17,40,2012 -20120909_ATL@KC,4,8,9,KC,ATL,1,10,63,(8:09) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe (A.Samuel).,17,40,2012 -20120909_ATL@KC,4,7,59,KC,ATL,2,10,63,(7:59) (No Huddle) S.Draughn right end pushed ob at KC 46 for 9 yards (W.Moore). PENALTY on KC-S.Draughn Face Mask (15 Yards) 15 yards enforced at KC 40.,17,40,2012 -20120909_ATL@KC,4,7,43,KC,ATL,2,22,75,(7:43) M.Cassel pass incomplete short left to D.McCluster (J.Abraham).,17,40,2012 -20120909_ATL@KC,4,7,40,KC,ATL,3,22,75,(7:40) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 38 for 13 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,7,5,KC,ATL,4,9,62,(7:05) D.Colquitt punts 47 yards to ATL 15 Center-T.Gafford fair catch by D.Franks. PENALTY on ATL Offensive Holding 7 yards enforced at ATL 15.,17,40,2012 -20120909_ATL@KC,4,6,58,ATL,KC,1,10,92,(6:58) Jz. Rodgers right tackle to ATL 14 for 6 yards (T.Jackson).,40,17,2012 -20120909_ATL@KC,4,6,13,ATL,KC,2,4,86,(6:13) Jz. Rodgers up the middle to ATL 19 for 5 yards (G.Dorsey).,40,17,2012 -20120909_ATL@KC,4,5,28,ATL,KC,1,10,81,(5:28) J.Snelling up the middle to ATL 21 for 2 yards (J.Powe).,40,17,2012 -20120909_ATL@KC,4,4,45,ATL,KC,2,8,79,(4:45) J.Snelling right guard to ATL 24 for 3 yards (E.Berry).,40,17,2012 -20120909_ATL@KC,4,4,0,ATL,KC,3,5,76,(4:00) Jz. Rodgers left end to ATL 25 for 1 yard (E.Jones; D.Poe).,40,17,2012 -20120909_ATL@KC,4,3,16,ATL,KC,4,4,75,(3:16) M.Bosher punts 52 yards to KC 23 Center-J.Harris. J.Arenas pushed ob at KC 41 for 18 yards (J.Harris). PENALTY on KC Illegal Block Above the Waist 10 yards enforced at KC 37.,40,17,2012 -20120909_ATL@KC,4,3,1,KC,ATL,1,10,73,(3:01) J.Charles up the middle to KC 35 for 8 yards (W.Moore).,17,40,2012 -20120909_ATL@KC,4,2,35,KC,ATL,2,2,65,(2:35) (No Huddle) M.Cassel pass incomplete short left to S.Breaston.,17,40,2012 -20120909_ATL@KC,4,2,31,KC,ATL,3,2,65,(2:31) (Shotgun) M.Cassel pass deep right to S.Breaston to ATL 41 for 24 yards (T.DeCoud).,17,40,2012 -20120909_ATL@KC,4,2,0,KC,ATL,1,10,41,(2:00) (Shotgun) M.Cassel pass incomplete short right to D.McCluster (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,1,55,KC,ATL,2,10,41,(1:55) (Shotgun) M.Cassel pass short right to S.Draughn pushed ob at ATL 32 for 9 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,1,47,KC,ATL,3,1,32,(1:47) S.Draughn up the middle to ATL 29 for 3 yards (C.Matthews).,17,40,2012 -20120909_ATL@KC,4,1,15,KC,ATL,1,10,29,(1:15) (Shotgun) M.Cassel pass short right to K.Boss pushed ob at ATL 15 for 14 yards (W.Moore).,17,40,2012 -20120909_ATL@KC,4,0,46,KC,ATL,1,10,15,(:46) (No Huddle Shotgun) M.Cassel pass short left to S.Draughn to ATL 12 for 3 yards (D.Robinson).,17,40,2012 -20120909_ATL@KC,4,0,21,KC,ATL,2,7,12,(:21) (No Huddle Shotgun) M.Cassel pass incomplete short left to D.McCluster.,17,40,2012 -20120909_ATL@KC,4,0,16,KC,ATL,3,7,12,(:16) (Shotgun) M.Cassel pass short left to T.Moeaki to ATL 4 for 8 yards (S.Nicholas).,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,1,4,4,(:09) (Shotgun) S.Draughn up the middle for 4 yards TOUCHDOWN.,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,17,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,R.Succop kicks 70 yards from KC 35 to ATL -5. H.Douglas to ATL 3 for 8 yards (S.Draughn).,24,40,2012 -20120909_ATL@KC,4,0,9,KC,ATL,,,4,                      ,24,40,2012 -20120909_JAC@MIN,1,0,0,JAC,MIN,,,4,J.Scobee kicks 59 yards from JAX 35 to MIN 6. M.Asiata to MIN 24 for 18 yards (J.Stanford; J.Parmele).,0,0,2012 -20120909_JAC@MIN,1,59,55,MIN,JAC,1,10,76,(14:55) C.Ponder pass short right to K.Rudolph to MIN 39 for 15 yards (K.Bosworth; R.Allen).,0,0,2012 -20120909_JAC@MIN,1,59,15,MIN,JAC,1,10,61,(14:15) A.Peterson right guard to MIN 43 for 4 yards (A.Ross).,0,0,2012 -20120909_JAC@MIN,1,58,42,MIN,JAC,2,6,57,(13:42) P.Harvin left end to MIN 47 for 4 yards (P.Posluszny).,0,0,2012 -20120909_JAC@MIN,1,58,4,MIN,JAC,3,2,53,(13:04) (Shotgun) C.Ponder scrambles up the middle to MIN 48 for 1 yard (T.Knighton).,0,0,2012 -20120909_JAC@MIN,1,57,24,MIN,JAC,4,1,52,(12:24) C.Kluwe punts 37 yards to JAX 15 Center-C.Loeffler. M.Thomas to JAX 22 for 7 yards (J.Sanford).,0,0,2012 -20120909_JAC@MIN,1,57,14,JAC,MIN,1,10,78,(12:14) R.Jennings right tackle to JAX 27 for 5 yards (B.Robison).,0,0,2012 -20120909_JAC@MIN,1,56,32,JAC,MIN,2,5,73,(11:32) B.Gabbert sacked at JAX 20 for -7 yards (J.Allen). PENALTY on MIN-J.Allen Defensive Offside 5 yards enforced at JAX 27 - No Play.,0,0,2012 -20120909_JAC@MIN,1,56,20,JAC,MIN,1,10,68,(11:20) M.Jones-Drew left guard to JAX 35 for 3 yards (L.Guion).,0,0,2012 -20120909_JAC@MIN,1,55,39,JAC,MIN,2,7,65,(10:39) B.Gabbert pass incomplete short left to G.Jones.,0,0,2012 -20120909_JAC@MIN,1,55,35,JAC,MIN,3,7,65,(10:35) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 43 for 8 yards (C.Cook).,0,0,2012 -20120909_JAC@MIN,1,54,56,JAC,MIN,1,10,57,(9:56) R.Jennings right end to JAX 39 for -4 yards (E.Henderson).,0,0,2012 -20120909_JAC@MIN,1,54,14,JAC,MIN,2,14,61,(9:14) R.Jennings up the middle to JAX 39 for no gain (C.Greenway). PENALTY on MIN-K.Williams Defensive Offside 5 yards enforced at JAX 39 - No Play.,0,0,2012 -20120909_JAC@MIN,1,53,46,JAC,MIN,2,9,56,(8:46) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Cook) [C.Greenway].,0,0,2012 -20120909_JAC@MIN,1,53,41,JAC,MIN,3,9,56,(8:41) (Shotgun) B.Gabbert pass short left to J.Blackmon to MIN 43 for 13 yards (J.Robinson).,0,0,2012 -20120909_JAC@MIN,1,53,1,JAC,MIN,1,10,43,(8:01) R.Jennings right tackle to MIN 40 for 3 yards (K.Williams; C.Greenway).,0,0,2012 -20120909_JAC@MIN,1,52,21,JAC,MIN,2,7,40,(7:21) M.Thomas right end to MIN 41 for -1 yards (B.Robison).,0,0,2012 -20120909_JAC@MIN,1,51,36,JAC,MIN,3,8,41,(6:36) (Shotgun) B.Gabbert pass short middle to M.Lewis to MIN 23 for 18 yards (J.Robinson).,0,0,2012 -20120909_JAC@MIN,1,50,52,JAC,MIN,1,10,23,(5:52) (Shotgun) B.Gabbert pass incomplete short left to L.Robinson (C.Cook).,0,0,2012 -20120909_JAC@MIN,1,50,47,JAC,MIN,2,10,23,(5:47) PENALTY on JAX-J.Blackmon False Start 5 yards enforced at MIN 23 - No Play.,0,0,2012 -20120909_JAC@MIN,1,50,47,JAC,MIN,2,15,28,(5:47) B.Gabbert pass short left to M.Lewis to MIN 15 for 13 yards (M.Raymond).,0,0,2012 -20120909_JAC@MIN,1,50,0,JAC,MIN,3,2,15,(5:00) R.Jennings left end pushed ob at MIN 5 for 10 yards (H.Smith).,0,0,2012 -20120909_JAC@MIN,1,49,28,JAC,MIN,1,5,5,(4:28) B.Gabbert pass incomplete short left to J.Blackmon.,0,0,2012 -20120909_JAC@MIN,1,49,23,JAC,MIN,2,5,5,(4:23) R.Jennings right guard to MIN 1 for 4 yards (C.Greenway).,0,0,2012 -20120909_JAC@MIN,1,48,39,JAC,MIN,3,1,1,(3:39) G.Whimper reported in as eligible. R.Jennings up the middle to MIN 1 for no gain (J.Brinkley).,0,0,2012 -20120909_JAC@MIN,1,47,56,JAC,MIN,4,1,1,(2:56) J.Scobee 19 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,0,0,2012 -20120909_JAC@MIN,1,47,56,JAC,MIN,,,1,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 23 for 28 yards (B.Marshall).,3,0,2012 -20120909_JAC@MIN,1,47,46,MIN,JAC,1,10,77,(2:46) T.Gerhart left tackle to MIN 23 for no gain (A.Branch).,0,3,2012 -20120909_JAC@MIN,1,47,7,MIN,JAC,2,10,77,(2:07) T.Gerhart up the middle to MIN 27 for 4 yards (P.Posluszny).,0,3,2012 -20120909_JAC@MIN,1,46,30,MIN,JAC,3,6,73,(1:30) (Shotgun) C.Ponder pass incomplete short middle to P.Harvin (C.Prosinski).,0,3,2012 -20120909_JAC@MIN,1,46,25,MIN,JAC,4,6,73,(1:25) C.Kluwe punts 52 yards to JAX 21 Center-C.Loeffler. M.Jones-Drew MUFFS catch ball out of bounds at JAX 21.,0,3,2012 -20120909_JAC@MIN,1,46,16,JAC,MIN,1,10,79,(1:16) M.Jones-Drew left tackle to JAX 32 for 11 yards (A.Winfield).,3,0,2012 -20120909_JAC@MIN,1,45,39,JAC,MIN,1,10,68,(:39) M.Jones-Drew left guard to JAX 35 for 3 yards (A.Winfield).,3,0,2012 -20120909_JAC@MIN,2,45,0,JAC,MIN,2,7,65,(15:00) B.Gabbert pass incomplete short right to M.Owens.,3,0,2012 -20120909_JAC@MIN,2,44,56,JAC,MIN,3,7,65,(14:56) (Shotgun) B.Gabbert pass incomplete short right to M.Owens [B.Robison].,3,0,2012 -20120909_JAC@MIN,2,44,52,JAC,MIN,4,7,65,(14:52) B.Anger punts 56 yards to MIN 9 Center-J.Cain. M.Sherels to MIN 24 for 15 yards (M.Owens). PENALTY on JAX Illegal Substitution 5 yards enforced at MIN 24.,3,0,2012 -20120909_JAC@MIN,2,44,38,MIN,JAC,1,10,71,(14:38) A.Peterson up the middle to MIN 38 for 9 yards (D.Landry).,0,3,2012 -20120909_JAC@MIN,2,43,59,MIN,JAC,2,1,62,(13:59) A.Peterson up the middle to MIN 36 for -2 yards (T.Knighton).,0,3,2012 -20120909_JAC@MIN,2,43,19,MIN,JAC,3,3,64,(13:19) A.Peterson left end to MIN 35 for -1 yards (Team).,0,3,2012 -20120909_JAC@MIN,2,42,42,MIN,JAC,4,4,65,(12:42) C.Kluwe punts 53 yards to JAX 12 Center-C.Loeffler. M.Thomas to JAX 21 for 9 yards. FUMBLES recovered by JAX-J.Stanford at JAX 22. J.Stanford to JAX 22 for no gain (M.Asiata).,0,3,2012 -20120909_JAC@MIN,2,42,30,JAC,MIN,1,10,78,(12:30) B.Gabbert pass short left to Z.Potter pushed ob at JAX 24 for 2 yards (J.Robinson). PENALTY on JAX-G.Whimper Offensive Holding 10 yards enforced at JAX 22 - No Play.,3,0,2012 -20120909_JAC@MIN,2,42,6,JAC,MIN,1,20,88,(12:06) (Shotgun) B.Gabbert pass short right to R.Jennings to JAX 21 for 9 yards (C.Greenway).,3,0,2012 -20120909_JAC@MIN,2,41,19,JAC,MIN,2,11,79,(11:19) B.Gabbert pass deep right to L.Robinson to JAX 47 for 26 yards (H.Smith; C.Cook).,3,0,2012 -20120909_JAC@MIN,2,40,37,JAC,MIN,1,10,53,(10:37) B.Gabbert pass short right to M.Jones-Drew pushed ob at MIN 45 for 8 yards (E.Henderson).,3,0,2012 -20120909_JAC@MIN,2,40,10,JAC,MIN,2,2,45,(10:10) R.Jennings right guard to MIN 41 for 4 yards (J.Brinkley).,3,0,2012 -20120909_JAC@MIN,2,39,33,JAC,MIN,1,10,41,(9:33) B.Gabbert scrambles right end ran ob at MIN 39 for 2 yards. PENALTY on MIN-J.Brinkley Defensive Holding 5 yards enforced at MIN 39.,3,0,2012 -20120909_JAC@MIN,2,39,6,JAC,MIN,1,10,34,(9:06) M.Jones-Drew left end to MIN 30 for 4 yards (C.Ballard).,3,0,2012 -20120909_JAC@MIN,2,38,21,JAC,MIN,2,6,30,(8:21) M.Jones-Drew up the middle to MIN 28 for 2 yards (E.Henderson; H.Smith).,3,0,2012 -20120909_JAC@MIN,2,37,35,JAC,MIN,3,4,28,(7:35) (Shotgun) B.Gabbert pass short left to C.Shorts to MIN 21 for 7 yards (J.Robinson).,3,0,2012 -20120909_JAC@MIN,2,36,53,JAC,MIN,1,10,21,(6:53) R.Jennings left tackle to MIN 12 for 9 yards (M.Raymond).,3,0,2012 -20120909_JAC@MIN,2,36,11,JAC,MIN,2,1,12,(6:11) M.Jones-Drew up the middle to MIN 1 for 11 yards (J.Brinkley; H.Smith).,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,1,1,1,(5:27) G.Whimper reported in as eligible. B.Gabbert pass short right to M.Lewis for 1 yard TOUCHDOWN.,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee extra point is Blocked (M.Kalil) Center-J.Cain Holder-B.Anger.,3,0,2012 -20120909_JAC@MIN,2,35,27,JAC,MIN,,,1,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,9,0,2012 -20120909_JAC@MIN,2,35,21,MIN,JAC,1,10,80,(5:21) C.Ponder pass incomplete short left to M.Jenkins.,0,9,2012 -20120909_JAC@MIN,2,35,17,MIN,JAC,2,10,80,(5:17) C.Ponder pass short right to K.Rudolph to MIN 22 for 2 yards (A.Ross; R.Allen).,0,9,2012 -20120909_JAC@MIN,2,34,34,MIN,JAC,3,8,78,(4:34) (Shotgun) C.Ponder pass short right to K.Rudolph to MIN 37 for 15 yards (D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,33,58,MIN,JAC,1,10,63,(3:58) C.Ponder pass incomplete short left to M.Jenkins (P.Posluszny).,0,9,2012 -20120909_JAC@MIN,2,33,51,MIN,JAC,2,10,63,(3:51) T.Gerhart left end to MIN 44 for 7 yards (W.Middleton).,0,9,2012 -20120909_JAC@MIN,2,33,11,MIN,JAC,3,3,56,(3:11) (Shotgun) C.Ponder pass incomplete short right to K.Rudolph (R.Mathis).,0,9,2012 -20120909_JAC@MIN,2,33,6,MIN,JAC,4,3,56,(3:06) C.Kluwe punts 41 yards to JAX 15 Center-C.Loeffler. M.Jones-Drew to JAX 19 for 4 yards (R.Ellison).,0,9,2012 -20120909_JAC@MIN,2,32,54,JAC,MIN,1,10,81,(2:54) M.Jones-Drew up the middle to JAX 20 for 1 yard (C.Greenway). JAX-U.Nwaneri was injured during the play. His return is Questionable.,9,0,2012 -20120909_JAC@MIN,2,32,46,JAC,MIN,2,9,80,(2:46) M.Jones-Drew right guard to JAX 21 for 1 yard (J.Brinkley).,9,0,2012 -20120909_JAC@MIN,2,32,42,JAC,MIN,3,8,79,(2:42) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [B.Robison].,9,0,2012 -20120909_JAC@MIN,2,32,40,JAC,MIN,4,8,79,(2:40) B.Anger punts 45 yards to MIN 34 Center-J.Cain. M.Sherels to MIN 41 for 7 yards (A.Blake).,9,0,2012 -20120909_JAC@MIN,2,32,28,MIN,JAC,1,10,59,(2:28) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 43 for 16 yards (A.Ross).,0,9,2012 -20120909_JAC@MIN,2,32,1,MIN,JAC,1,10,43,(2:01) (Shotgun) C.Ponder pass short left to P.Harvin ran ob at JAX 38 for 5 yards.,0,9,2012 -20120909_JAC@MIN,2,31,56,MIN,JAC,2,5,38,(1:56) (Shotgun) C.Ponder pass short right to P.Harvin pushed ob at JAX 27 for 11 yards (D.Landry).,0,9,2012 -20120909_JAC@MIN,2,31,50,MIN,JAC,1,10,27,(1:50) A.Peterson right tackle to JAX 19 for 8 yards (D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,31,29,MIN,JAC,2,2,19,(1:29) (Shotgun) C.Ponder pass short right to M.Jenkins to JAX 5 for 14 yards (A.Ross).,0,9,2012 -20120909_JAC@MIN,2,31,15,MIN,JAC,1,5,5,(1:15) A.Peterson right tackle to JAX 3 for 2 yards (R.Allen; D.Lowery).,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,2,3,3,(:45) A.Peterson up the middle for 3 yards TOUCHDOWN.,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,0,9,2012 -20120909_JAC@MIN,2,30,45,MIN,JAC,,,3,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 16 for 20 yards (C.Ballard).,7,9,2012 -20120909_JAC@MIN,2,30,37,JAC,MIN,1,10,84,(:37) B.Gabbert kneels to JAX 15 for -1 yards.,9,7,2012 -20120909_JAC@MIN,3,30,0,MIN,JAC,,,84,B.Walsh kicks 70 yards from MIN 35 to JAX -5. J.Parmele Touchback.,7,9,2012 -20120909_JAC@MIN,3,30,0,JAC,MIN,1,10,80,(15:00) M.Jones-Drew right tackle to JAX 23 for 3 yards (L.Guion; E.Henderson).,9,7,2012 -20120909_JAC@MIN,3,29,17,JAC,MIN,2,7,77,(14:17) PENALTY on JAX-G.Whimper False Start 5 yards enforced at JAX 23 - No Play.,9,7,2012 -20120909_JAC@MIN,3,29,2,JAC,MIN,2,12,82,(14:02) (Shotgun) B.Gabbert pass short left to L.Robinson to JAX 25 for 7 yards (C.Greenway).,9,7,2012 -20120909_JAC@MIN,3,28,18,JAC,MIN,3,5,75,(13:18) (Shotgun) B.Gabbert pass short right to M.Owens pushed ob at JAX 33 for 8 yards (A.Winfield) [E.Griffen].,9,7,2012 -20120909_JAC@MIN,3,28,0,JAC,MIN,1,10,67,(13:00) (Shotgun) M.Jones-Drew left guard to JAX 37 for 4 yards (C.Greenway).,9,7,2012 -20120909_JAC@MIN,3,27,20,JAC,MIN,2,6,63,(12:20) M.Jones-Drew left guard to JAX 44 for 7 yards (H.Smith).,9,7,2012 -20120909_JAC@MIN,3,26,41,MIN,JAC,1,10,56,(11:41) B.Gabbert FUMBLES (Aborted) at JAX 44 RECOVERED by MIN-K.Williams at JAX 44. K.Williams to JAX 44 for no gain (Team).,7,9,2012 -20120909_JAC@MIN,3,26,36,MIN,JAC,1,10,44,(11:36) A.Peterson right end pushed ob at JAX 25 for 19 yards (D.Landry).,7,9,2012 -20120909_JAC@MIN,3,26,17,MIN,JAC,1,10,25,(11:17) C.Ponder pass short middle to P.Harvin to JAX 6 for 19 yards (D.Lowery).,7,9,2012 -20120909_JAC@MIN,3,25,25,MIN,JAC,1,6,6,(10:25) A.Peterson up the middle to JAX 2 for 4 yards (T.Alualu).,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,2,2,2,(9:46) A.Peterson up the middle for 2 yards TOUCHDOWN.,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh extra point is GOOD Center-C.Loeffler Holder-C.Kluwe.,7,9,2012 -20120909_JAC@MIN,3,24,46,MIN,JAC,,,2,B.Walsh kicks 69 yards from MIN 35 to JAX -4. J.Parmele to JAX 18 for 22 yards (B.Burton).,14,9,2012 -20120909_JAC@MIN,3,24,38,JAC,MIN,1,10,82,(9:38) M.Jones-Drew left end to JAX 18 for no gain (C.Greenway; E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,23,59,JAC,MIN,2,10,82,(8:59) B.Gabbert pass short right to G.Jones to JAX 27 for 9 yards (H.Smith; E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,23,28,JAC,MIN,3,1,73,(8:28) (Shotgun) M.Jones-Drew left end to JAX 37 for 10 yards (C.Greenway).,9,14,2012 -20120909_JAC@MIN,3,22,46,JAC,MIN,1,10,63,(7:46) B.Gabbert pass short left to L.Robinson to JAX 43 for 6 yards (C.Greenway; J.Brinkley).,9,14,2012 -20120909_JAC@MIN,3,22,7,JAC,MIN,2,4,57,(7:07) J.Parmele up the middle to JAX 43 for no gain (C.Greenway).,9,14,2012 -20120909_JAC@MIN,3,21,22,JAC,MIN,3,4,57,(6:22) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (B.Robison).,9,14,2012 -20120909_JAC@MIN,3,21,18,JAC,MIN,4,4,57,(6:18) B.Anger punts 57 yards to end zone Center-J.Cain Touchback.,9,14,2012 -20120909_JAC@MIN,3,21,12,MIN,JAC,1,10,80,(6:12) C.Ponder sacked at MIN 16 for -4 yards (T.Knighton). FUMBLES (T.Knighton) RECOVERED by JAX-C.Mosley at MIN 16. C.Mosley to MIN 16 for no gain (Team).,14,9,2012 -20120909_JAC@MIN,3,21,5,JAC,MIN,1,10,16,(6:05) (Shotgun) B.Gabbert scrambles right tackle pushed ob at MIN 12 for 4 yards (E.Henderson).,9,14,2012 -20120909_JAC@MIN,3,20,33,JAC,MIN,2,6,12,(5:33) M.Jones-Drew left guard to MIN 8 for 4 yards (J.Brinkley).,9,14,2012 -20120909_JAC@MIN,3,19,48,JAC,MIN,3,2,8,(4:48) (Shotgun) B.Gabbert pass incomplete short middle to M.Jones-Drew [F.Evans].,9,14,2012 -20120909_JAC@MIN,3,19,44,JAC,MIN,4,2,8,(4:44) J.Scobee 26 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,9,14,2012 -20120909_JAC@MIN,3,19,44,JAC,MIN,,,8,J.Scobee kicks 72 yards from JAX 35 to MIN -7. P.Harvin to MIN 23 for 30 yards (K.Rutland).,12,14,2012 -20120909_JAC@MIN,3,19,35,MIN,JAC,1,10,77,(4:35) C.Ponder pass short right to M.Jenkins to MIN 38 for 15 yards (R.Allen; C.Mosley).,14,12,2012 -20120909_JAC@MIN,3,18,58,MIN,JAC,1,10,62,(3:58) T.Gerhart left end to MIN 44 for 6 yards (P.Posluszny).,14,12,2012 -20120909_JAC@MIN,3,18,22,MIN,JAC,2,4,56,(3:22) P.Harvin up the middle to JAX 47 for 9 yards (D.Landry).,14,12,2012 -20120909_JAC@MIN,3,17,45,MIN,JAC,1,10,47,(2:45) C.Ponder pass short left to P.Harvin pushed ob at JAX 34 for 13 yards (K.Rutland).,14,12,2012 -20120909_JAC@MIN,3,17,22,MIN,JAC,1,10,34,(2:22) T.Gerhart left end to JAX 32 for 2 yards (D.Lowery; W.Middleton).,14,12,2012 -20120909_JAC@MIN,3,16,43,MIN,JAC,2,8,32,(1:43) C.Ponder sacked at JAX 32 for 0 yards (T.Alualu).,14,12,2012 -20120909_JAC@MIN,3,15,57,MIN,JAC,3,8,32,(:57) (Shotgun) C.Ponder pass deep left to K.Rudolph to JAX 3 for 29 yards (K.Rutland).,14,12,2012 -20120909_JAC@MIN,3,15,28,MIN,JAC,1,3,3,(:28) P.Harvin up the middle to JAX 4 for -1 yards (K.Bosworth).,14,12,2012 -20120909_JAC@MIN,4,15,0,MIN,JAC,2,4,4,(15:00) C.Ponder pass short right to M.Asiata to JAX 2 for 2 yards (P.Posluszny).,14,12,2012 -20120909_JAC@MIN,4,14,17,MIN,JAC,3,2,2,(14:17) C.Ponder pass incomplete short right to J.Carlson (R.Allen).,14,12,2012 -20120909_JAC@MIN,4,14,12,MIN,JAC,4,2,2,(14:12) B.Walsh 20 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,14,12,2012 -20120909_JAC@MIN,4,14,12,MIN,JAC,,,2,B.Walsh kicks 71 yards from MIN 35 to JAX -6. J.Parmele Touchback.,17,12,2012 -20120909_JAC@MIN,4,14,9,JAC,MIN,1,10,80,(14:09) B.Gabbert pass deep middle to L.Robinson to JAX 39 for 19 yards (H.Smith).,12,17,2012 -20120909_JAC@MIN,4,13,32,JAC,MIN,1,10,61,(13:32) (Shotgun) B.Gabbert pass short left to J.Blackmon pushed ob at JAX 40 for 1 yard (J.Robinson).,12,17,2012 -20120909_JAC@MIN,4,12,50,JAC,MIN,2,9,60,(12:50) B.Gabbert sacked at JAX 40 for 0 yards (E.Henderson). PENALTY on MIN-L.Guion Unnecessary Roughness 15 yards enforced at JAX 40.,12,17,2012 -20120909_JAC@MIN,4,12,50,JAC,MIN,1,10,45,(12:50) M.Jones-Drew right end to MIN 44 for 1 yard (B.Robison).,12,17,2012 -20120909_JAC@MIN,4,11,49,JAC,MIN,2,9,44,(11:49) (Shotgun) B.Gabbert pass incomplete deep middle to M.Thomas (M.Raymond).,12,17,2012 -20120909_JAC@MIN,4,11,43,JAC,MIN,3,9,44,(11:43) (Shotgun) B.Gabbert pass short right to M.Lewis to MIN 32 for 12 yards (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,11,3,JAC,MIN,1,10,32,(11:03) M.Jones-Drew up the middle to MIN 29 for 3 yards (F.Evans).,12,17,2012 -20120909_JAC@MIN,4,10,24,JAC,MIN,2,7,29,(10:24) M.Jones-Drew right guard to MIN 29 for no gain (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,9,45,JAC,MIN,3,7,29,(9:45) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts (C.Greenway).,12,17,2012 -20120909_JAC@MIN,4,9,40,JAC,MIN,4,7,29,(9:40) J.Scobee 47 yard field goal is GOOD Center-J.Cain Holder-B.Anger.,12,17,2012 -20120909_JAC@MIN,4,9,40,JAC,MIN,,,29,J.Scobee kicks 65 yards from JAX 35 to end zone Touchback.,15,17,2012 -20120909_JAC@MIN,4,9,35,MIN,JAC,1,10,80,(9:35) A.Peterson up the middle to MIN 25 for 5 yards (T.Alualu; J.Mincey).,17,15,2012 -20120909_JAC@MIN,4,9,35,MIN,JAC,2,5,75,(9:35) C.Ponder pass deep right to M.Jenkins ran ob at MIN 41 for 16 yards.,17,15,2012 -20120909_JAC@MIN,4,8,42,MIN,JAC,1,10,59,(8:42) (Shotgun) C.Ponder pass short left to P.Harvin to JAX 39 for 20 yards (R.Mathis).,17,15,2012 -20120909_JAC@MIN,4,7,58,MIN,JAC,1,10,39,(7:58) A.Peterson left guard to JAX 38 for 1 yard (R.Allen; P.Posluszny).,17,15,2012 -20120909_JAC@MIN,4,7,25,MIN,JAC,2,9,38,(7:25) C.Ponder pass short left to D.Aromashodu to JAX 20 for 18 yards (R.Allen).,17,15,2012 -20120909_JAC@MIN,4,6,45,MIN,JAC,1,10,20,(6:45) P.Harvin up the middle to JAX 13 for 7 yards (J.Mincey).,17,15,2012 -20120909_JAC@MIN,4,6,8,MIN,JAC,2,3,13,(6:08) (Shotgun) C.Ponder pass incomplete short left to P.Harvin.,17,15,2012 -20120909_JAC@MIN,4,6,3,MIN,JAC,3,3,13,(6:03) (Shotgun) C.Ponder scrambles left end to JAX 11 for 2 yards (Team). PENALTY on MIN-C.Johnson Offensive Holding 10 yards enforced at JAX 13 - No Play.,17,15,2012 -20120909_JAC@MIN,4,5,43,MIN,JAC,3,13,23,(5:43) (Shotgun) C.Ponder pass incomplete short middle to K.Rudolph.,17,15,2012 -20120909_JAC@MIN,4,5,38,MIN,JAC,4,13,23,(5:38) B.Walsh 42 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,17,15,2012 -20120909_JAC@MIN,4,5,38,MIN,JAC,,,23,B.Walsh kicks 73 yards from MIN 35 to JAX -8. J.Parmele Touchback.,20,15,2012 -20120909_JAC@MIN,4,5,33,JAC,MIN,1,10,80,(5:33) B.Gabbert pass short left to L.Robinson to JAX 28 for 8 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,5,6,JAC,MIN,2,2,72,(5:06) (Shotgun) M.Jones-Drew left tackle to JAX 29 for 1 yard (E.Henderson).,15,20,2012 -20120909_JAC@MIN,4,4,21,JAC,MIN,3,1,71,(4:21) B.Gabbert up the middle to JAX 30 for 1 yard (Team).,15,20,2012 -20120909_JAC@MIN,4,3,41,JAC,MIN,1,10,70,(3:41) B.Gabbert sacked at JAX 19 for -11 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,3,6,JAC,MIN,2,21,81,(3:06) (Shotgun) B.Gabbert pass short right to M.Jones-Drew to JAX 22 for 3 yards (A.Winfield).,15,20,2012 -20120909_JAC@MIN,4,2,30,JAC,MIN,3,18,78,(2:30) (Shotgun) B.Gabbert pass short right to M.Lewis to JAX 30 for 8 yards (C.Cook).,15,20,2012 -20120909_JAC@MIN,4,2,0,JAC,MIN,4,10,70,(2:00) B.Anger punts 56 yards to MIN 14 Center-J.Cain fair catch by M.Sherels.,15,20,2012 -20120909_JAC@MIN,4,1,51,MIN,JAC,1,10,86,(1:51) A.Peterson left guard to MIN 15 for 1 yard (T.Alualu).,20,15,2012 -20120909_JAC@MIN,4,1,46,MIN,JAC,2,9,85,(1:46) A.Peterson right end to MIN 18 for 3 yards (A.Ross; P.Posluszny). Penalty on MIN-M.Jenkins Illegal Cut declined.,20,15,2012 -20120909_JAC@MIN,4,1,35,MIN,JAC,3,6,82,(1:35) T.Gerhart left guard to MIN 17 for -1 yards (J.Mincey).,20,15,2012 -20120909_JAC@MIN,4,1,31,MIN,JAC,4,7,83,(1:31) C.Kluwe punts 59 yards to JAX 24 Center-C.Loeffler downed by MIN-J.Sanford.,20,15,2012 -20120909_JAC@MIN,4,1,18,JAC,MIN,1,10,76,(1:18) (Shotgun) B.Gabbert pass short right to C.Shorts to JAX 44 for 20 yards (M.Raymond).,15,20,2012 -20120909_JAC@MIN,4,1,3,JAC,MIN,1,10,56,(1:03) (Shotgun) B.Gabbert pass short middle to M.Jones-Drew to MIN 49 for 7 yards (E.Henderson).,15,20,2012 -20120909_JAC@MIN,4,0,43,JAC,MIN,2,3,49,(:43) (Shotgun) B.Gabbert pass incomplete short right to C.Shorts.,15,20,2012 -20120909_JAC@MIN,4,0,36,JAC,MIN,3,3,49,(:36) (Shotgun) B.Gabbert pass incomplete short right to J.Blackmon (C.Greenway).,15,20,2012 -20120909_JAC@MIN,4,0,32,JAC,MIN,4,3,49,(:32) (Shotgun) B.Gabbert pass short left to J.Blackmon ran ob at MIN 39 for 10 yards.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,1,10,39,(:27) (Shotgun) B.Gabbert pass deep right to C.Shorts for 39 yards TOUCHDOWN.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,TWO-POINT CONVERSION ATTEMPT. B.Gabbert pass to J.Blackmon is complete. ATTEMPT SUCCEEDS.,15,20,2012 -20120909_JAC@MIN,4,0,27,JAC,MIN,,,39,J.Scobee kicks 56 yards from JAX 35 to MIN 9. M.Asiata to MIN 31 for 22 yards (M.Owens).,23,20,2012 -20120909_JAC@MIN,4,0,14,MIN,JAC,1,10,69,(:14) C.Ponder pass deep right to D.Aromashodu to JAX 43 for 26 yards (M.Owens).,20,23,2012 -20120909_JAC@MIN,4,0,7,MIN,JAC,1,10,43,(:07) (Shotgun) C.Ponder pass short right to K.Rudolph pushed ob at JAX 37 for 6 yards (D.Landry).,20,23,2012 -20120909_JAC@MIN,4,0,4,MIN,JAC,2,4,37,(:04) B.Walsh 55 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,20,23,2012 -20120909_JAC@MIN,5,0,0,JAC,MIN,,,37,J.Scobee kicks 70 yards from JAX 35 to MIN -5. P.Harvin to MIN 25 for 30 yards (W.Middleton).,23,23,2012 -20120909_JAC@MIN,5,-1,53,MIN,JAC,1,10,75,(14:53) A.Peterson right guard to MIN 35 for 10 yards (P.Posluszny; D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-1,13,MIN,JAC,1,10,65,(14:13) C.Ponder pass short middle to A.Peterson to MIN 38 for 3 yards (R.Allen; C.Mosley).,23,23,2012 -20120909_JAC@MIN,5,-2,38,MIN,JAC,2,7,62,(13:38) A.Peterson up the middle to JAX 42 for 20 yards (W.Middleton; D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-3,55,MIN,JAC,1,10,42,(12:55) C.Ponder pass deep right to D.Aromashodu pushed ob at JAX 25 for 17 yards (D.Landry).,23,23,2012 -20120909_JAC@MIN,5,-3,46,MIN,JAC,1,10,25,(12:46) P.Harvin left end to JAX 24 for 1 yard (A.Ross).,23,23,2012 -20120909_JAC@MIN,5,-3,8,MIN,JAC,2,9,24,(12:08) A.Peterson left guard to JAX 28 for -4 yards (DA.Smith). JAX-DA.Smith was injured during the play. His return is Probable.,23,23,2012 -20120909_JAC@MIN,5,-4,36,MIN,JAC,3,13,28,(11:36) (Shotgun) C.Ponder pass short left to T.Gerhart to JAX 20 for 8 yards (D.Lowery).,23,23,2012 -20120909_JAC@MIN,5,-4,11,MIN,JAC,4,5,20,(11:11) B.Walsh 38 yard field goal is GOOD Center-C.Loeffler Holder-C.Kluwe.,23,23,2012 -20120909_JAC@MIN,5,-4,11,MIN,JAC,,,20,B.Walsh kicks 63 yards from MIN 35 to JAX 2. J.Parmele to JAX 23 for 21 yards (T.McKenzie).,26,23,2012 -20120909_JAC@MIN,5,-4,0,JAC,MIN,1,10,77,(11:00) B.Gabbert pass incomplete short left to L.Robinson.,23,26,2012 -20120909_JAC@MIN,5,-5,57,JAC,MIN,2,10,77,(10:57) M.Jones-Drew right tackle to JAX 31 for 8 yards (K.Williams; C.Greenway).,23,26,2012 -20120909_JAC@MIN,5,-5,16,JAC,MIN,3,2,69,(10:16) (Shotgun) B.Gabbert pass incomplete short right to L.Robinson (H.Smith).,23,26,2012 -20120909_JAC@MIN,5,-5,12,JAC,MIN,4,2,69,(10:12) (Shotgun) B.Gabbert pass incomplete deep right to L.Robinson.,23,26,2012 -20120909_JAC@MIN,5,-5,12,JAC,MIN,,,69,                      ,23,26,2012 -20120909_WAS@NO,1,-5,0,WAS,NO,,,69,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,0,0,2012 -20120909_WAS@NO,1,60,0,NO,WAS,1,10,80,(15:00) D.Brees pass incomplete short left to M.Colston.,0,0,2012 -20120909_WAS@NO,1,59,57,NO,WAS,2,10,80,(14:57) D.Brees pass incomplete short left to L.Moore [A.Carriker].,0,0,2012 -20120909_WAS@NO,1,59,52,NO,WAS,3,10,80,(14:52) (Shotgun) D.Brees pass incomplete short middle (S.Bowen).,0,0,2012 -20120909_WAS@NO,1,59,47,NO,WAS,4,10,80,(14:47) T.Morstead punts 59 yards to WAS 21 Center-J.Drescher. B.Banks pushed ob at WAS 32 for 11 yards (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,59,34,WAS,NO,1,10,68,(14:34) (Shotgun) R.Griffin pass short left to P.Garcon to WAS 32 for no gain (C.White). Pass -4 YAC 4,0,0,2012 -20120909_WAS@NO,1,58,58,WAS,NO,2,10,68,(13:58) (Shotgun) R.Griffin right end to WAS 44 for 12 yards (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,58,25,WAS,NO,1,10,56,(13:25) (Shotgun) R.Griffin pass short left to P.Garcon to NO 44 for 12 yards (R.Harper). Pass -2 YAC 14,0,0,2012 -20120909_WAS@NO,1,57,44,WAS,NO,1,10,44,(12:44) (Shotgun) R.Griffin pass short right to P.Garcon to NO 35 for 9 yards (C.Lofton; C.White).,0,0,2012 -20120909_WAS@NO,1,57,0,WAS,NO,2,1,35,(12:00) (Shotgun) R.Griffin pass short left to A.Robinson to NO 30 for 5 yards (R.Harper). Pass -3 YAC 8,0,0,2012 -20120909_WAS@NO,1,56,23,WAS,NO,1,10,30,(11:23) A.Morris right tackle to NO 27 for 3 yards (C.Jordan).,0,0,2012 -20120909_WAS@NO,1,55,44,WAS,NO,2,7,27,(10:44) (Shotgun) A.Morris right guard to NO 25 for 2 yards (S.Shanle; B.Bunkley).,0,0,2012 -20120909_WAS@NO,1,55,3,WAS,NO,3,5,25,(10:03) (Shotgun) R.Griffin pass short left to B.Banks to NO 19 for 6 yards (C.Lofton). Pass -5 YAC 11,0,0,2012 -20120909_WAS@NO,1,54,17,WAS,NO,1,10,24,(9:17) (Shotgun) R.Griffin FUMBLES (Aborted) at NO 24 and recovers at NO 24. R.Griffin to NO 24 for no gain (S.Shanle).,0,0,2012 -20120909_WAS@NO,1,53,30,WAS,NO,2,15,24,(8:30) (Shotgun) A.Morris right guard to NO 22 for 2 yards (W.Smith).,0,0,2012 -20120909_WAS@NO,1,52,52,WAS,NO,3,13,22,(7:52) (Shotgun) R.Griffin pass short left to R.Helu to NO 19 for 3 yards (J.Casillas). Pass -4 YAC 7,0,0,2012 -20120909_WAS@NO,1,52,11,WAS,NO,4,10,19,(7:11) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,0,0,2012 -20120909_WAS@NO,1,52,11,WAS,NO,,,19,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,3,0,2012 -20120909_WAS@NO,1,52,5,NO,WAS,1,10,80,(7:05) P.Thomas left tackle to NO 26 for 6 yards (D.Gomes; P.Riley).,0,3,2012 -20120909_WAS@NO,1,51,31,NO,WAS,2,4,74,(6:31) (Shotgun) D.Brees pass short middle to J.Graham to NO 49 for 23 yards (D.Gomes; J.Wilson). Pass 13 YAC 10,0,3,2012 -20120909_WAS@NO,1,50,56,NO,WAS,1,10,51,(5:56) M.Ingram left guard to 50 for 1 yard (P.Riley).,0,3,2012 -20120909_WAS@NO,1,50,23,NO,WAS,2,9,50,(5:23) D.Brees pass short left to P.Thomas to WAS 38 for 12 yards (B.Orakpo). Pass -4 YAC 16,0,3,2012 -20120909_WAS@NO,1,49,49,NO,WAS,1,10,38,(4:49) M.Ingram left end to WAS 37 for 1 yard (A.Carriker).,0,3,2012 -20120909_WAS@NO,1,49,16,NO,WAS,2,9,37,(4:16) (Shotgun) D.Brees pass short right to D.Sproles to WAS 35 for 2 yards (R.Kerrigan). PENALTY on WAS-D.Gomes Personal Foul 15 yards enforced at WAS 35. Pass -5 YAC 5,0,3,2012 -20120909_WAS@NO,1,48,55,NO,WAS,1,10,20,(3:55) D.Brees pass deep middle to J.Graham for 20 yards TOUCHDOWN.,0,3,2012 -20120909_WAS@NO,1,48,55,NO,WAS,,,20,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,3,2012 -20120909_WAS@NO,1,48,41,WAS,NO,1,10,88,(3:41) R.Griffin pass deep left to P.Garcon for 88 yards TOUCHDOWN [M.Jenkins]. Pass 16 YAC 72,3,7,2012 -20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,3,7,2012 -20120909_WAS@NO,1,48,41,WAS,NO,,,88,B.Cundiff kicks 73 yards from WAS 35 to NO -8. D.Sproles to NO 18 for 26 yards (Mad.Williams).,10,7,2012 -20120909_WAS@NO,1,48,21,NO,WAS,1,10,82,(3:21) D.Brees pass incomplete short left to L.Moore.,7,10,2012 -20120909_WAS@NO,1,48,15,NO,WAS,2,10,82,(3:15) D.Brees pass incomplete short middle to J.Collins.,7,10,2012 -20120909_WAS@NO,1,48,15,NO,WAS,3,10,82,(3:15) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 18 - No Play.,7,10,2012 -20120909_WAS@NO,1,48,11,NO,WAS,3,15,87,(3:11) (Shotgun) PENALTY on NO-L.Moore False Start 5 yards enforced at NO 13 - No Play.,7,10,2012 -20120909_WAS@NO,1,48,11,NO,WAS,3,20,92,(3:11) (Shotgun) D.Brees pass incomplete short left to D.Sproles.,7,10,2012 -20120909_WAS@NO,1,48,4,NO,WAS,4,20,92,(3:04) T.Morstead punts 49 yards to WAS 43 Center-J.Drescher downed by NO-C.Roby.,7,10,2012 -20120909_WAS@NO,1,47,53,WAS,NO,1,10,57,(2:53) A.Morris left guard to WAS 45 for 2 yards (S.Ellis; C.Jordan).,10,7,2012 -20120909_WAS@NO,1,47,15,WAS,NO,2,8,55,(2:15) (Shotgun) A.Morris right tackle to WAS 47 for 2 yards (B.Bunkley).,10,7,2012 -20120909_WAS@NO,1,46,30,WAS,NO,3,6,53,(1:30) (Shotgun) R.Griffin right end to NO 48 for 5 yards (J.Patrick).,10,7,2012 -20120909_WAS@NO,1,46,4,WAS,NO,4,1,48,(1:04) D.Young right guard to NO 46 for 2 yards (C.Lofton).,10,7,2012 -20120909_WAS@NO,1,45,32,WAS,NO,1,10,46,(:32) (Shotgun) A.Morris right guard to NO 45 for 1 yard (S.Ellis).,10,7,2012 -20120909_WAS@NO,2,45,0,WAS,NO,2,9,45,(15:00) (Shotgun) R.Griffin pass deep right to F.Davis pushed ob at NO 19 for 26 yards (C.White). Pass 26 YAC 0,10,7,2012 -20120909_WAS@NO,2,44,29,WAS,NO,1,10,19,(14:29) (Shotgun) R.Griffin right end to NO 12 for 7 yards (J.Patrick).,10,7,2012 -20120909_WAS@NO,2,43,46,WAS,NO,2,3,12,(13:46) (Shotgun) A.Morris left guard to NO 10 for 2 yards (C.Lofton; S.Ellis).,10,7,2012 -20120909_WAS@NO,2,43,3,WAS,NO,3,1,10,(13:03) (Shotgun) A.Morris right guard to NO 6 for 4 yards (D.Hawthorne; S.Ellis).,10,7,2012 -20120909_WAS@NO,2,42,24,WAS,NO,1,6,6,(12:24) (Shotgun) R.Griffin pass incomplete short right to S.Moss (J.Patrick). NO-J.Patrick was injured during the play. His return is Questionable.,10,7,2012 -20120909_WAS@NO,2,42,18,WAS,NO,2,6,6,(12:18) (Shotgun) R.Griffin pass short right to R.Helu to NO 5 for 1 yard (R.Harper). Pass -4 YAC 5,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,3,5,5,(11:37) (Shotgun) R.Griffin pass short right to A.Robinson for 5 yards TOUCHDOWN. Pass 5 YAC 0,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,(Kick formation) PENALTY on NO-P.Robinson Defensive Offside 5 yards enforced between downs.,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,10,7,2012 -20120909_WAS@NO,2,41,37,WAS,NO,,,5,B.Cundiff kicks 60 yards from WAS 40 to end zone Touchback.,17,7,2012 -20120909_WAS@NO,2,41,33,NO,WAS,1,10,80,(11:33) M.Ingram left guard to NO 25 for 5 yards (J.Wilson).,7,17,2012 -20120909_WAS@NO,2,41,2,NO,WAS,2,5,75,(11:02) M.Ingram right guard to NO 25 for no gain (S.Bowen).,7,17,2012 -20120909_WAS@NO,2,40,25,NO,WAS,3,5,75,(10:25) (Shotgun) PENALTY on NO-Z.Strief False Start 5 yards enforced at NO 25 - No Play.,7,17,2012 -20120909_WAS@NO,2,40,2,NO,WAS,3,10,80,(10:02) (Shotgun) D.Brees sacked at NO 13 for -7 yards (D.Hall).,7,17,2012 -20120909_WAS@NO,2,39,25,NO,WAS,4,17,87,(9:25) T.Morstead punts 59 yards to WAS 28 Center-J.Drescher. B.Banks to WAS 48 for 20 yards (C.White).,7,17,2012 -20120909_WAS@NO,2,39,13,WAS,NO,1,10,52,(9:13) (Shotgun) R.Griffin left end to WAS 49 for 1 yard (C.Lofton).,17,7,2012 -20120909_WAS@NO,2,38,40,WAS,NO,2,9,51,(8:40) (Shotgun) A.Morris left end to NO 48 for 3 yards (S.Ellis).,17,7,2012 -20120909_WAS@NO,2,37,59,WAS,NO,3,6,48,(7:59) (Shotgun) R.Griffin pass deep left to S.Moss pushed ob at NO 21 for 27 yards (M.Jenkins). PENALTY on WAS-R.Helu Illegal Block Above the Waist 10 yards enforced at NO 21. Pass 16 YAC 11,17,7,2012 -20120909_WAS@NO,2,37,29,WAS,NO,1,10,31,(7:29) (Shotgun) R.Griffin pass incomplete short middle to J.Morgan.,17,7,2012 -20120909_WAS@NO,2,37,24,WAS,NO,2,10,31,(7:24) R.Griffin left end pushed ob at NO 23 for 8 yards (R.Harper).,17,7,2012 -20120909_WAS@NO,2,36,53,WAS,NO,3,2,23,(6:53) (Shotgun) R.Griffin right guard to NO 23 for no gain (C.Lofton).,17,7,2012 -20120909_WAS@NO,2,36,13,WAS,NO,4,2,23,(6:13) B.Cundiff 41 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,17,7,2012 -20120909_WAS@NO,2,36,13,WAS,NO,,,23,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,20,7,2012 -20120909_WAS@NO,2,36,8,NO,WAS,1,10,80,(6:08) (Shotgun) D.Brees pass short left to D.Sproles to NO 25 for 5 yards (P.Riley). Pass -2 YAC 7,7,20,2012 -20120909_WAS@NO,2,35,40,NO,WAS,2,5,75,(5:40) (Shotgun) D.Brees pass short middle to J.Graham to NO 45 for 20 yards (Mad.Williams). Pass 15 YAC 5,7,20,2012 -20120909_WAS@NO,2,35,10,NO,WAS,1,10,55,(5:10) (Shotgun) D.Brees pass short right to J.Graham to NO 49 for 4 yards (L.Fletcher). Pass 4 YAC 0,7,20,2012 -20120909_WAS@NO,2,34,19,NO,WAS,2,6,51,(4:19) M.Ingram left guard to WAS 45 for 6 yards (P.Riley).,7,20,2012 -20120909_WAS@NO,2,33,40,NO,WAS,1,10,45,(3:40) D.Brees pass incomplete short right to J.Collins.,7,20,2012 -20120909_WAS@NO,2,33,34,NO,WAS,2,10,45,(3:34) D.Brees pass short right to J.Graham to WAS 39 for 6 yards (D.Gomes). Pass 6 YAC 0,7,20,2012 -20120909_WAS@NO,2,32,47,NO,WAS,3,4,39,(2:47) (Shotgun) D.Brees pass short right to M.Colston to WAS 25 for 14 yards (C.Griffin). Pass 13 YAC 1,7,20,2012 -20120909_WAS@NO,2,32,11,NO,WAS,1,10,25,(2:11) P.Thomas left guard to WAS 22 for 3 yards (B.Orakpo).,7,20,2012 -20120909_WAS@NO,2,32,0,NO,WAS,2,7,22,(2:00) D.Brees pass incomplete deep left to D.Thomas.,7,20,2012 -20120909_WAS@NO,2,31,54,NO,WAS,3,7,22,(1:54) (Shotgun) D.Brees pass short right to M.Colston to WAS 3 for 19 yards (C.Griffin). FUMBLES (C.Griffin) ball out of bounds in End Zone Touchback. Pass 14 YAC 5 The Replay Assistant challenged the fumble ruling and the play was Upheld.,7,20,2012 -20120909_WAS@NO,2,31,46,WAS,NO,1,10,80,(1:46) R.Griffin right end to WAS 18 for -2 yards (J.Galette).,20,7,2012 -20120909_WAS@NO,2,31,1,WAS,NO,2,12,82,(1:01) E.Royster right tackle to WAS 26 for 8 yards (P.Robinson).,20,7,2012 -20120909_WAS@NO,2,30,52,WAS,NO,3,4,74,(:52) (Shotgun) E.Royster left guard to WAS 28 for 2 yards (C.Jordan; C.Lofton).,20,7,2012 -20120909_WAS@NO,2,30,46,WAS,NO,4,2,72,(:46) S.Rocca punt is BLOCKED by M.Wilson Center-N.Sundberg RECOVERED by NO-C.Roby at WAS 4. C.Roby for 4 yards TOUCHDOWN.,20,7,2012 -20120909_WAS@NO,2,30,46,NO,WAS,,,72,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,7,20,2012 -20120909_WAS@NO,2,30,46,,NO,,,72,T.Morstead kicks 70 yards from NO 30 to end zone Touchback.,20,14,2012 -20120909_WAS@NO,2,30,40,WAS,NO,1,10,80,(:40) R.Griffin kneels to WAS 19 for -1 yards.,20,14,2012 -20120909_WAS@NO,3,30,0,NO,WAS,,,80,T.Morstead kicks 64 yards from NO 35 to WAS 1. B.Banks to WAS 23 for 22 yards (T.Cadet).,14,20,2012 -20120909_WAS@NO,3,29,55,WAS,NO,1,10,77,(14:55) (Shotgun) R.Griffin pass short right to S.Moss to WAS 37 for 14 yards (C.White). Pass 12 YAC 2,20,14,2012 -20120909_WAS@NO,3,29,17,WAS,NO,1,10,63,(14:17) (Shotgun) R.Griffin pass short left to J.Morgan to NO 42 for 21 yards (P.Robinson). Pass 14 YAC 7,20,14,2012 -20120909_WAS@NO,3,28,44,WAS,NO,1,10,42,(13:44) A.Morris left end to NO 36 for 6 yards (W.Herring).,20,14,2012 -20120909_WAS@NO,3,28,9,WAS,NO,2,4,36,(13:09) (Shotgun) R.Griffin right end to NO 36 for no gain (C.Lofton; M.Jenkins). PENALTY on WAS-F.Davis Offensive Holding 10 yards enforced at NO 36 - No Play.,20,14,2012 -20120909_WAS@NO,3,27,42,WAS,NO,2,14,46,(12:42) (Shotgun) R.Griffin pass short right to F.Davis to NO 34 for 12 yards (D.Hawthorne; J.Murphy).,20,14,2012 -20120909_WAS@NO,3,26,59,WAS,NO,3,2,34,(11:59) (Shotgun) R.Helu right tackle to NO 33 for 1 yard (C.Jordan).,20,14,2012 -20120909_WAS@NO,3,26,35,WAS,NO,4,1,33,(11:35) R.Griffin pass incomplete deep right to A.Robinson. PENALTY on NO-R.Harper Defensive Pass Interference 32 yards enforced at NO 33 - No Play.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,1,1,1,(11:28) A.Morris left tackle for 1 yard TOUCHDOWN.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,20,14,2012 -20120909_WAS@NO,3,26,28,WAS,NO,,,1,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,27,14,2012 -20120909_WAS@NO,3,26,24,NO,WAS,1,10,80,(11:24) D.Brees pass incomplete short right to L.Moore (D.Gomes). PENALTY on NO-D.Thomas Offensive Holding 10 yards enforced at NO 20 - No Play.,14,27,2012 -20120909_WAS@NO,3,26,17,NO,WAS,1,20,90,(11:17) (Shotgun) D.Brees pass incomplete deep right to M.Colston.,14,27,2012 -20120909_WAS@NO,3,26,11,NO,WAS,2,20,90,(11:11) (Shotgun) D.Brees pass incomplete deep middle to M.Colston.,14,27,2012 -20120909_WAS@NO,3,26,6,NO,WAS,3,20,90,(11:06) (Shotgun) D.Brees pass incomplete deep middle to D.Henderson.,14,27,2012 -20120909_WAS@NO,3,26,0,NO,WAS,4,20,90,(11:00) T.Morstead punts 54 yards to WAS 36 Center-J.Drescher. B.Banks MUFFS catch and recovers at WAS 36. B.Banks to WAS 36 for no gain (C.Roby).,14,27,2012 -20120909_WAS@NO,3,25,50,WAS,NO,1,10,64,(10:50) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 -20120909_WAS@NO,3,25,44,WAS,NO,2,10,64,(10:44) (Shotgun) A.Morris left end pushed ob at NO 46 for 18 yards (W.Herring).,27,14,2012 -20120909_WAS@NO,3,25,20,WAS,NO,1,10,46,(10:20) R.Helu right tackle to NO 45 for 1 yard (C.Jordan).,27,14,2012 -20120909_WAS@NO,3,24,42,WAS,NO,2,9,45,(9:42) A.Morris left tackle to NO 43 for 2 yards (S.Ellis; C.Lofton). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45 - No Play.,27,14,2012 -20120909_WAS@NO,3,24,18,WAS,NO,2,19,55,(9:18) (Shotgun) R.Griffin pass short left to A.Robinson pushed ob at NO 26 for 29 yards (M.Jenkins) [C.White]. Pass 10 YAC 19,27,14,2012 -20120909_WAS@NO,3,23,41,WAS,NO,1,10,26,(8:41) A.Morris right end to NO 23 for 3 yards (C.Jordan).,27,14,2012 -20120909_WAS@NO,3,22,59,WAS,NO,2,7,23,(7:59) A.Morris left guard to NO 19 for 4 yards (C.Jordan; S.Ellis).,27,14,2012 -20120909_WAS@NO,3,22,19,WAS,NO,3,3,19,(7:19) (Shotgun) R.Griffin pass incomplete short left to F.Davis.,27,14,2012 -20120909_WAS@NO,3,22,15,WAS,NO,4,3,19,(7:15) B.Cundiff 37 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,27,14,2012 -20120909_WAS@NO,3,22,15,WAS,NO,,,19,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 20 for 29 yards (D.Hall). PENALTY on NO-R.Bush Offensive Holding 10 yards enforced at NO 20.,30,14,2012 -20120909_WAS@NO,3,22,0,NO,WAS,1,10,90,(7:00) D.Brees pass incomplete to M.Colston. PENALTY on WAS-Mad.Williams Defensive Pass Interference 15 yards enforced at NO 10 - No Play.,14,30,2012 -20120909_WAS@NO,3,21,59,NO,WAS,1,10,75,(6:59) P.Thomas right tackle to NO 34 for 9 yards (Mad.Williams).,14,30,2012 -20120909_WAS@NO,3,21,22,NO,WAS,2,1,66,(6:22) D.Brees pass incomplete short middle to M.Colston [R.Kerrigan].,14,30,2012 -20120909_WAS@NO,3,21,16,NO,WAS,3,1,66,(6:16) M.Ingram right guard to NO 36 for 2 yards (D.Gomes; L.Fletcher).,14,30,2012 -20120909_WAS@NO,3,20,45,NO,WAS,1,10,64,(5:45) D.Brees pass short right to D.Henderson to NO 47 for 11 yards (Mad.Williams). NO-D.Henderson was injured during the play. His return is Questionable. Pass 6 YAC 5,14,30,2012 -20120909_WAS@NO,3,20,19,NO,WAS,1,10,53,(5:19) P.Thomas left guard to NO 47 for no gain (D.Gomes). PENALTY on NO-J.Collins Offensive Holding 10 yards enforced at NO 47 - No Play.,14,30,2012 -20120909_WAS@NO,3,20,2,NO,WAS,1,20,63,(5:02) D.Brees pass incomplete short left to M.Ingram.,14,30,2012 -20120909_WAS@NO,3,19,57,NO,WAS,2,20,63,(4:57) (Shotgun) D.Brees pass incomplete short left to D.Sproles (R.Kerrigan). PENALTY on WAS-J.Jenkins Illegal Use of Hands 5 yards enforced at NO 37 - No Play.,14,30,2012 -20120909_WAS@NO,3,19,51,NO,WAS,1,10,58,(4:51) P.Thomas left tackle to NO 41 for -1 yards (D.Hall).,14,30,2012 -20120909_WAS@NO,3,19,11,NO,WAS,2,11,59,(4:11) (Shotgun) D.Brees pass deep right to M.Colston to WAS 34 for 25 yards (J.Wilson). Pass 25 YAC 0,14,30,2012 -20120909_WAS@NO,3,18,25,NO,WAS,1,10,34,(3:25) (Shotgun) D.Brees pass short right to D.Sproles to WAS 25 for 9 yards (L.Fletcher) [B.Cofield]. Pass 8 YAC 1,14,30,2012 -20120909_WAS@NO,3,17,42,NO,WAS,2,1,25,(2:42) (Shotgun) D.Brees pass incomplete deep middle to L.Moore. PENALTY on WAS-D.Gomes Defensive Pass Interference 17 yards enforced at WAS 25 - No Play.,14,30,2012 -20120909_WAS@NO,3,17,37,NO,WAS,1,8,8,(2:37) (Shotgun) D.Brees pass incomplete short left to J.Graham (S.Bowen).,14,30,2012 -20120909_WAS@NO,3,17,33,NO,WAS,2,8,8,(2:33) D.Brees pass short right to D.Thomas to WAS 3 for 5 yards (D.Gomes). Pass -1 YAC 6,14,30,2012 -20120909_WAS@NO,3,16,58,NO,WAS,3,3,3,(1:58) D.Brees pass incomplete short right to D.Sproles (L.Fletcher).,14,30,2012 -20120909_WAS@NO,3,16,54,NO,WAS,4,3,3,(1:54) G.Hartley 21 yard field goal is GOOD Center-J.Drescher Holder-C.Daniel.,14,30,2012 -20120909_WAS@NO,3,16,54,NO,WAS,,,3,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,17,30,2012 -20120909_WAS@NO,3,16,50,WAS,NO,1,10,80,(1:50) (Shotgun) R.Griffin pass incomplete short right to A.Robinson (P.Robinson).,30,17,2012 -20120909_WAS@NO,3,16,43,WAS,NO,2,10,80,(1:43) (Shotgun) A.Morris right end pushed ob at WAS 25 for 5 yards (D.Hawthorne).,30,17,2012 -20120909_WAS@NO,3,16,12,WAS,NO,3,5,75,(1:12) (Shotgun) R.Griffin pass incomplete short left to A.Robinson.,30,17,2012 -20120909_WAS@NO,3,16,7,WAS,NO,4,5,75,(1:07) S.Rocca punts 46 yards to NO 29 Center-N.Sundberg fair catch by D.Sproles. PENALTY on NO Defensive 12 On-field 5 yards enforced at WAS 25 - No Play.,30,17,2012 -20120909_WAS@NO,3,16,0,WAS,NO,1,10,70,(1:00) A.Morris left end to WAS 32 for 2 yards (T.Johnson; W.Smith).,30,17,2012 -20120909_WAS@NO,3,15,18,WAS,NO,2,8,68,(:18) A.Morris right end to WAS 43 for 11 yards (W.Smith; R.Harper).,30,17,2012 -20120909_WAS@NO,4,15,0,WAS,NO,1,10,57,(15:00) PENALTY on WAS-T.Williams False Start 5 yards enforced at WAS 43 - No Play.,30,17,2012 -20120909_WAS@NO,4,15,0,WAS,NO,1,15,62,(15:00) A.Morris left guard to WAS 48 for 10 yards (R.Harper).,30,17,2012 -20120909_WAS@NO,4,14,14,WAS,NO,2,5,52,(14:14) A.Morris right end to NO 45 for 7 yards (R.Harper). PENALTY on WAS-K.Lichtensteiger Offensive Holding 10 yards enforced at NO 45.,30,17,2012 -20120909_WAS@NO,4,13,50,WAS,NO,2,8,55,(13:50) (Shotgun) R.Griffin pass short left to R.Helu pushed ob at NO 34 for 21 yards (R.Harper). Pass 5 YAC 16,30,17,2012 -20120909_WAS@NO,4,13,2,WAS,NO,1,10,34,(13:02) A.Morris right tackle to NO 33 for 1 yard (C.Jordan; B.Bunkley).,30,17,2012 -20120909_WAS@NO,4,12,21,WAS,NO,2,9,33,(12:21) A.Morris left end to NO 32 for 1 yard (C.Lofton; D.Hawthorne).,30,17,2012 -20120909_WAS@NO,4,11,36,WAS,NO,3,8,32,(11:36) (Shotgun) R.Griffin pass short right to S.Moss to NO 31 for 1 yard (J.Galette). PENALTY on NO Defensive Offside 5 yards enforced at NO 32 - No Play.,30,17,2012 -20120909_WAS@NO,4,11,12,WAS,NO,3,3,27,(11:12) (Shotgun) R.Griffin pass incomplete short right to S.Moss.,30,17,2012 -20120909_WAS@NO,4,11,3,WAS,NO,4,3,27,(11:03) B.Cundiff 45 yard field goal is GOOD Center-N.Sundberg Holder-S.Rocca.,30,17,2012 -20120909_WAS@NO,4,11,3,WAS,NO,,,27,B.Cundiff kicks 74 yards from WAS 35 to NO -9. D.Sproles to NO 39 for 48 yards (R.Crawford). WAS-J.Bernstine was injured during the play. He is Out.,33,17,2012 -20120909_WAS@NO,4,10,52,NO,WAS,1,10,61,(10:52) (Shotgun) D.Brees pass incomplete short left to J.Morgan.,17,33,2012 -20120909_WAS@NO,4,10,46,NO,WAS,2,10,61,(10:46) (Shotgun) D.Brees pass incomplete short middle to J.Morgan. PENALTY on NO-J.Evans Offensive Holding 10 yards enforced at NO 39 - No Play.,17,33,2012 -20120909_WAS@NO,4,10,41,NO,WAS,2,20,71,(10:41) (Shotgun) D.Brees sacked at NO 23 for -6 yards (R.Kerrigan).,17,33,2012 -20120909_WAS@NO,4,10,2,NO,WAS,3,26,77,(10:02) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson). WAS-J.Wilson was injured during the play. His return is Questionable.,17,33,2012 -20120909_WAS@NO,4,9,55,NO,WAS,4,26,77,(9:55) T.Morstead punts 57 yards to WAS 20 Center-J.Drescher. B.Banks to WAS 23 for 3 yards (W.Herring). FUMBLES (W.Herring) and recovers at WAS 23. B.Banks to WAS 23 for no gain (I.Abdul-Quddus).,17,33,2012 -20120909_WAS@NO,4,9,37,WAS,NO,1,10,77,(9:37) A.Morris right end to WAS 25 for 2 yards (C.Jordan).,33,17,2012 -20120909_WAS@NO,4,8,53,WAS,NO,2,8,75,(8:53) A.Morris left guard to WAS 24 for -1 yards (D.Hawthorne).,33,17,2012 -20120909_WAS@NO,4,8,14,WAS,NO,3,9,76,(8:14) (Shotgun) R.Griffin pass short right to S.Moss to WAS 30 for 6 yards (J.Murphy). Pass 6 YAC 0,33,17,2012 -20120909_WAS@NO,4,8,14,WAS,NO,4,3,70,(8:14) S.Rocca punts 51 yards to NO 19 Center-N.Sundberg downed by WAS-R.Crawford. PENALTY on WAS Ineligible Downfield Kick 5 yards enforced at WAS 30 - No Play. Penalty on WAS Illegal Touch Kick declined.,33,17,2012 -20120909_WAS@NO,4,7,35,WAS,NO,4,8,75,(7:35) S.Rocca punts 38 yards to NO 37 Center-N.Sundberg. D.Sproles to NO 42 for 5 yards (R.Doughty).,33,17,2012 -20120909_WAS@NO,4,7,23,NO,WAS,1,10,58,(7:23) (Shotgun) D.Brees pass short right to L.Moore ran ob at WAS 46 for 12 yards. Pass 12 YAC 0,17,33,2012 -20120909_WAS@NO,4,7,7,NO,WAS,1,10,46,(7:07) (Shotgun) D.Brees pass short right to M.Colston to WAS 33 for 13 yards (D.Hall; J.Wilson). Pass 7 YAC 6,17,33,2012 -20120909_WAS@NO,4,6,41,NO,WAS,1,10,33,(6:41) (Shotgun) D.Brees pass incomplete short middle to J.Graham (Mad.Williams).,17,33,2012 -20120909_WAS@NO,4,6,37,NO,WAS,2,10,33,(6:37) (Shotgun) D.Brees pass incomplete deep right to J.Morgan (C.Griffin).,17,33,2012 -20120909_WAS@NO,4,6,30,NO,WAS,3,10,33,(6:30) (Shotgun) D.Brees pass incomplete short left to L.Moore (B.Orakpo).,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,4,10,33,(6:25) (Shotgun) D.Brees pass deep left to L.Moore for 33 yards TOUCHDOWN. Pass 33 YAC 0,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,,,33,TWO-POINT CONVERSION ATTEMPT. D.Sproles rushes left guard. ATTEMPT SUCCEEDS.,17,33,2012 -20120909_WAS@NO,4,6,25,NO,WAS,,,33,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,25,33,2012 -20120909_WAS@NO,4,6,19,WAS,NO,1,10,80,(6:19) R.Griffin pass short middle to A.Robinson to WAS 33 for 13 yards (M.Jenkins). Pass 13 YAC 0,33,25,2012 -20120909_WAS@NO,4,5,42,WAS,NO,1,10,67,(5:42) A.Morris left tackle to WAS 36 for 3 yards (B.Bunkley).,33,25,2012 -20120909_WAS@NO,4,4,58,WAS,NO,2,7,64,(4:58) R.Griffin sacked at WAS 27 for -9 yards (P.Robinson).,33,25,2012 -20120909_WAS@NO,4,4,20,WAS,NO,3,16,73,(4:20) (Shotgun) R.Griffin scrambles left end to WAS 39 for 12 yards (J.Galette).,33,25,2012 -20120909_WAS@NO,4,3,49,WAS,NO,4,4,61,(3:49) S.Rocca punts 43 yards to NO 18 Center-N.Sundberg. D.Sproles to NO 27 for 9 yards (R.Doughty).,33,25,2012 -20120909_WAS@NO,4,3,39,NO,WAS,1,10,73,(3:39) (Shotgun) D.Brees pass deep middle intended for L.Moore INTERCEPTED by D.Gomes at WAS 48. D.Gomes pushed ob at NO 3 for 49 yards (J.Morgan).,25,33,2012 -20120909_WAS@NO,4,3,23,WAS,NO,1,3,3,(3:23) A.Morris left tackle for 3 yards TOUCHDOWN.,33,25,2012 -20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff extra point is GOOD Center-N.Sundberg Holder-S.Rocca.,33,25,2012 -20120909_WAS@NO,4,3,23,WAS,NO,,,3,B.Cundiff kicks 65 yards from WAS 35 to end zone Touchback.,40,25,2012 -20120909_WAS@NO,4,3,18,NO,WAS,1,10,80,(3:18) (Shotgun) D.Brees pass short right to J.Graham pushed ob at NO 32 for 12 yards (P.Riley). Pass 11 YAC 1,25,40,2012 -20120909_WAS@NO,4,3,11,NO,WAS,1,10,68,(3:11) (Shotgun) D.Brees pass incomplete short left to M.Colston (J.Wilson).,25,40,2012 -20120909_WAS@NO,4,3,9,NO,WAS,2,10,68,(3:09) (Shotgun) D.Brees pass short right to L.Moore ran ob at NO 49 for 17 yards (C.Griffin). Pass 13 YAC 4,25,40,2012 -20120909_WAS@NO,4,3,4,NO,WAS,1,10,51,(3:04) (Shotgun) D.Brees pass incomplete short left to J.Graham.,25,40,2012 -20120909_WAS@NO,4,3,0,NO,WAS,2,10,51,(3:00) (Shotgun) D.Brees pass incomplete short middle to J.Graham. PENALTY on WAS-Mad.Williams Personal Foul 15 yards enforced at NO 49 - No Play.,25,40,2012 -20120909_WAS@NO,4,2,55,NO,WAS,1,10,36,(2:55) (Shotgun) D.Brees pass deep right to L.Moore ran ob at WAS 19 for 17 yards. Pass 17 YAC 0,25,40,2012 -20120909_WAS@NO,4,2,47,NO,WAS,1,10,19,(2:47) (Shotgun) D.Brees pass short left to D.Sproles pushed ob at WAS 2 for 17 yards (J.Wilson). WAS-D.Gomes was injured during the play. His return is Probable. Pass 1 YAC 16,25,40,2012 -20120909_WAS@NO,4,2,40,NO,WAS,1,2,2,(2:40) D.Brees pass incomplete short left to M.Colston (B.Orakpo).,25,40,2012 -20120909_WAS@NO,4,2,38,NO,WAS,2,2,2,(2:38) (Shotgun) D.Brees pass incomplete short left to D.Sproles (B.Orakpo).,25,40,2012 -20120909_WAS@NO,4,2,34,NO,WAS,3,2,2,(2:34) (Shotgun) D.Brees pass incomplete short right to J.Graham.,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,4,2,2,(2:29) (Shotgun) D.Brees pass short left to D.Sproles for 2 yards TOUCHDOWN. Pass 0 YAC 2,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,,,2,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,25,40,2012 -20120909_WAS@NO,4,2,29,NO,WAS,,,2,T.Morstead kicks 65 yards from NO 35 to end zone Touchback.,32,40,2012 -20120909_WAS@NO,4,2,25,WAS,NO,1,10,80,(2:25) A.Morris left end to WAS 17 for -3 yards (W.Smith; R.Harper).,40,32,2012 -20120909_WAS@NO,4,2,22,WAS,NO,2,13,83,(2:22) R.Griffin pass short middle to L.Paulsen to WAS 39 for 22 yards (M.Jenkins; W.Herring). Pass 11 YAC 11,40,32,2012 -20120909_WAS@NO,4,2,13,WAS,NO,1,10,61,(2:13) A.Morris right end to WAS 39 for no gain (C.Lofton; C.Jordan).,40,32,2012 -20120909_WAS@NO,4,2,0,WAS,NO,2,10,61,(2:00) D.Young right guard to WAS 40 for 1 yard (W.Herring; C.Jordan).,40,32,2012 -20120909_WAS@NO,4,1,17,WAS,NO,3,9,60,(1:17) A.Morris right guard to WAS 42 for 2 yards (S.Ellis; M.Jenkins).,40,32,2012 -20120909_WAS@NO,4,0,28,WAS,NO,4,7,58,(:28) S.Rocca punts 58 yards to end zone Center-N.Sundberg Touchback.,40,32,2012 -20120909_WAS@NO,4,0,22,NO,WAS,1,10,80,(:22) (Shotgun) D.Brees pass short right to L.Moore pushed ob at NO 35 for 15 yards (Mad.Williams). Pass 15 YAC 0,32,40,2012 -20120909_WAS@NO,4,0,16,NO,WAS,1,10,65,(:16) (Shotgun) D.Brees pass deep middle to L.Moore to WAS 39 for 26 yards. Pass 24 YAC 2,32,40,2012 -20120909_WAS@NO,4,0,2,NO,WAS,1,10,39,(:02) D.Brees spiked the ball to stop the clock.,32,40,2012 -20120909_WAS@NO,4,0,1,NO,WAS,2,10,39,(:01) (Shotgun) D.Brees pass short right INTERCEPTED by R.Doughty (C.Griffin) at WAS 39. R.Doughty to WAS 3 for -36 yards (J.Morgan).,32,40,2012 -20120909_WAS@NO,4,0,1,NO,WAS,,,39,                      ,32,40,2012 -20120909_BUF@NYJ,1,0,0,BUF,NYJ,,,39,J.Potter kicks 70 yards from BUF 35 to NYJ -5. J.McKnight to NYJ 19 for 24 yards (C.White).,0,0,2012 -20120909_BUF@NYJ,1,59,57,NYJ,BUF,1,10,81,(14:57) M.Sanchez pass incomplete short left to S.Hill.,0,0,2012 -20120909_BUF@NYJ,1,59,53,NYJ,BUF,2,10,81,(14:53) S.Greene right guard to NYJ 23 for 4 yards (M.Dareus).,0,0,2012 -20120909_BUF@NYJ,1,59,17,NYJ,BUF,3,6,77,(14:17) (Shotgun) M.Sanchez pass short left to S.Hill to NYJ 30 for 7 yards (S.Gilmore).,0,0,2012 -20120909_BUF@NYJ,1,58,31,NYJ,BUF,1,10,70,(13:31) (Shotgun) Direct snap to T.Tebow. J.McKnight right end to NYJ 33 for 3 yards (M.Williams).,0,0,2012 -20120909_BUF@NYJ,1,57,50,NYJ,BUF,2,7,67,(12:50) M.Sanchez pass short right to J.Cumberland to NYJ 44 for 11 yards (N.Barnett).,0,0,2012 -20120909_BUF@NYJ,1,57,29,NYJ,BUF,1,10,56,(12:29) S.Greene right tackle to NYJ 47 for 3 yards (N.Barnett; A.Moats).,0,0,2012 -20120909_BUF@NYJ,1,56,53,NYJ,BUF,2,7,53,(11:53) M.Sanchez pass short left intended for J.Cumberland INTERCEPTED by B.Scott at BUF 46. B.Scott ran ob at BUF 46 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,0,2012 -20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,10,54,(11:46) PENALTY on BUF-S.Chandler False Start 5 yards enforced at BUF 46 - No Play.,0,0,2012 -20120909_BUF@NYJ,1,56,46,BUF,NYJ,1,15,59,(11:46) F.Jackson right tackle to BUF 43 for 2 yards (C.Pace).,0,0,2012 -20120909_BUF@NYJ,1,56,7,BUF,NYJ,2,13,57,(11:07) R.Fitzpatrick pass short right to S.Chandler pushed ob at NYJ 44 for 13 yards (L.Landry).,0,0,2012 -20120909_BUF@NYJ,1,55,37,BUF,NYJ,1,10,44,(10:37) F.Jackson right guard to NYJ 47 for -3 yards (C.Pace).,0,0,2012 -20120909_BUF@NYJ,1,54,56,BUF,NYJ,2,13,47,(9:56) R.Fitzpatrick pass short left intended for St.Johnson INTERCEPTED by D.Revis at NYJ 38. D.Revis ran ob at NYJ 39 for 1 yard.,0,0,2012 -20120909_BUF@NYJ,1,54,51,NYJ,BUF,1,10,61,(9:51) S.Greene left tackle to NYJ 41 for 2 yards (A.Moats).,0,0,2012 -20120909_BUF@NYJ,1,54,17,NYJ,BUF,2,8,59,(9:17) S.Greene up the middle to NYJ 42 for 1 yard (B.Scott).,0,0,2012 -20120909_BUF@NYJ,1,53,41,NYJ,BUF,3,7,58,(8:41) (Shotgun) M.Sanchez pass deep right to J.Kerley to BUF 37 for 21 yards (L.McKelvin).,0,0,2012 -20120909_BUF@NYJ,1,53,17,NYJ,BUF,1,10,37,(8:17) (Shotgun) Direct snap to T.Tebow. B.Powell left end to BUF 33 for 4 yards (G.Wilson).,0,0,2012 -20120909_BUF@NYJ,1,52,39,NYJ,BUF,2,6,33,(7:39) M.Sanchez pass incomplete short right to S.Holmes.,0,0,2012 -20120909_BUF@NYJ,1,52,34,NYJ,BUF,3,6,33,(7:34) (Shotgun) M.Sanchez pass incomplete short right to S.Hill. PENALTY on BUF-A.Williams Defensive Pass Interference 5 yards enforced at BUF 33 - No Play.,0,0,2012 -20120909_BUF@NYJ,1,52,20,NYJ,BUF,1,10,28,(7:20) S.Greene up the middle to BUF 16 for 12 yards (J.Byrd).,0,0,2012 -20120909_BUF@NYJ,1,51,45,NYJ,BUF,1,10,16,(6:45) (Shotgun) Direct snap to T.Tebow. T.Tebow left tackle to BUF 12 for 4 yards (C.Kelsay).,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,2,6,12,(6:07) M.Sanchez pass short right to J.Kerley for 12 yards TOUCHDOWN.,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,0,0,2012 -20120909_BUF@NYJ,1,51,7,NYJ,BUF,,,12,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin Touchback.,7,0,2012 -20120909_BUF@NYJ,1,51,2,BUF,NYJ,1,10,80,(6:02) (Shotgun) C.Spiller left tackle to BUF 23 for 3 yards (L.Landry).,0,7,2012 -20120909_BUF@NYJ,1,50,20,BUF,NYJ,2,7,77,(5:20) (Shotgun) R.Fitzpatrick pass short right to D.Jones to BUF 29 for 6 yards (D.Harris).,0,7,2012 -20120909_BUF@NYJ,1,49,39,BUF,NYJ,3,1,71,(4:39) R.Fitzpatrick pass short right to L.Smith to BUF 34 for 5 yards (L.Landry).,0,7,2012 -20120909_BUF@NYJ,1,48,58,BUF,NYJ,1,10,66,(3:58) (Shotgun) R.Fitzpatrick scrambles up the middle to BUF 43 for 9 yards (Y.Bell).,0,7,2012 -20120909_BUF@NYJ,1,48,16,BUF,NYJ,2,1,57,(3:16) F.Jackson left tackle to BUF 47 for 4 yards (D.Harris; B.Thomas).,0,7,2012 -20120909_BUF@NYJ,1,47,37,BUF,NYJ,1,10,53,(2:37) R.Fitzpatrick pass incomplete short left to S.Chandler.,0,7,2012 -20120909_BUF@NYJ,1,47,30,BUF,NYJ,2,10,53,(2:30) (Shotgun) R.Fitzpatrick pass short right intended for D.Nelson INTERCEPTED by K.Wilson at NYJ 43. K.Wilson to NYJ 48 for 5 yards (S.Chandler).,0,7,2012 -20120909_BUF@NYJ,1,47,24,NYJ,BUF,1,10,52,(2:24) B.Powell left end to NYJ 48 for no gain (N.Barnett).,7,0,2012 -20120909_BUF@NYJ,1,46,48,NYJ,BUF,2,10,52,(1:48) (Shotgun) M.Sanchez pass short middle to D.Keller to BUF 45 for 7 yards (S.Gilmore; G.Wilson).,7,0,2012 -20120909_BUF@NYJ,1,46,14,NYJ,BUF,3,3,45,(1:14) (Shotgun) M.Sanchez pass short left to S.Holmes to BUF 36 for 9 yards (L.McKelvin).,7,0,2012 -20120909_BUF@NYJ,1,45,38,NYJ,BUF,1,10,36,(:38) (Shotgun) Direct snap to T.Tebow. T.Tebow right tackle to BUF 33 for 3 yards (Sp.Johnson; J.Byrd).,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,2,7,33,(15:00) M.Sanchez pass deep left to S.Hill for 33 yards TOUCHDOWN.,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,7,0,2012 -20120909_BUF@NYJ,2,45,0,NYJ,BUF,,,33,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,14,0,2012 -20120909_BUF@NYJ,2,44,53,BUF,NYJ,1,10,80,(14:53) (Shotgun) F.Jackson left end to BUF 22 for 2 yards (M.Wilkerson; D.Harris).,0,14,2012 -20120909_BUF@NYJ,2,44,12,BUF,NYJ,2,8,78,(14:12) (Shotgun) PENALTY on BUF-A.Levitre False Start 5 yards enforced at BUF 22 - No Play.,0,14,2012 -20120909_BUF@NYJ,2,43,55,BUF,NYJ,2,13,83,(13:55) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,14,2012 -20120909_BUF@NYJ,2,43,49,BUF,NYJ,3,13,83,(13:49) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson to BUF 29 for 12 yards (D.Revis) [C.Pace].,0,14,2012 -20120909_BUF@NYJ,2,43,49,BUF,NYJ,4,1,71,(13:49) (Punt formation) PENALTY on BUF-B.Moorman Delay of Game 5 yards enforced at BUF 29 - No Play.,0,14,2012 -20120909_BUF@NYJ,2,42,56,BUF,NYJ,4,6,76,(12:56) B.Moorman punts 44 yards to NYJ 32 Center-G.Sanborn. J.Kerley for 68 yards TOUCHDOWN.,0,14,2012 -20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,14,0,2012 -20120909_BUF@NYJ,2,42,56,NYJ,BUF,,,76,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,21,0,2012 -20120909_BUF@NYJ,2,42,40,BUF,NYJ,1,10,80,(12:40) F.Jackson left guard to BUF 23 for 3 yards (D.Harris).,0,21,2012 -20120909_BUF@NYJ,2,42,1,BUF,NYJ,2,7,77,(12:01) R.Fitzpatrick pass short right to St.Johnson to BUF 30 for 7 yards (D.Revis).,0,21,2012 -20120909_BUF@NYJ,2,41,17,BUF,NYJ,1,10,70,(11:17) (Shotgun) F.Jackson right tackle to BUF 37 for 7 yards (C.Pace; L.Landry). BUF-F.Jackson was injured during the play.,0,21,2012 -20120909_BUF@NYJ,2,40,48,BUF,NYJ,2,3,63,(10:48) C.Spiller up the middle to BUF 37 for no gain (Q.Coples).,0,21,2012 -20120909_BUF@NYJ,2,40,7,BUF,NYJ,3,3,63,(10:07) (Shotgun) R.Fitzpatrick pass short right to St.Johnson to BUF 44 for 7 yards (D.Revis) [L.Landry].,0,21,2012 -20120909_BUF@NYJ,2,39,23,BUF,NYJ,1,10,56,(9:23) R.Fitzpatrick pass incomplete deep right to D.Jones.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,2,10,56,(9:17) (Shotgun) C.Spiller left tackle for 56 yards TOUCHDOWN.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,21,2012 -20120909_BUF@NYJ,2,39,17,BUF,NYJ,,,56,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,7,21,2012 -20120909_BUF@NYJ,2,39,6,NYJ,BUF,1,10,80,(9:06) S.Greene up the middle to NYJ 22 for 2 yards (Ky.Williams).,21,7,2012 -20120909_BUF@NYJ,2,38,32,NYJ,BUF,2,8,78,(8:32) (Shotgun) M.Sanchez pass short left to S.Holmes to NYJ 39 for 17 yards (K.Sheppard).,21,7,2012 -20120909_BUF@NYJ,2,38,6,NYJ,BUF,1,10,61,(8:06) S.Greene right tackle to NYJ 43 for 4 yards (K.Sheppard; A.Moats).,21,7,2012 -20120909_BUF@NYJ,2,38,6,NYJ,BUF,2,6,57,(8:06) (Shotgun) S.Greene right tackle to NYJ 47 for 4 yards (A.Moats).,21,7,2012 -20120909_BUF@NYJ,2,36,42,NYJ,BUF,3,2,53,(6:42) (Shotgun) M.Sanchez pass short left to S.Hill to BUF 48 for 5 yards (T.McGee).,21,7,2012 -20120909_BUF@NYJ,2,36,1,NYJ,BUF,1,10,48,(6:01) (Shotgun) M.Sanchez pass incomplete deep middle to S.Holmes.,21,7,2012 -20120909_BUF@NYJ,2,35,56,NYJ,BUF,2,10,48,(5:56) S.Greene right guard to BUF 43 for 5 yards (B.Scott). FUMBLES (B.Scott) and recovers at BUF 43.,21,7,2012 -20120909_BUF@NYJ,2,35,8,NYJ,BUF,3,5,43,(5:08) (Shotgun) M.Sanchez pass short right to S.Holmes ran ob at BUF 26 for 17 yards.,21,7,2012 -20120909_BUF@NYJ,2,34,49,NYJ,BUF,1,10,26,(4:49) S.Greene up the middle to BUF 25 for 1 yard (Sp.Johnson; N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,34,15,NYJ,BUF,2,9,25,(4:15) M.Sanchez pass incomplete short right to S.Greene.,21,7,2012 -20120909_BUF@NYJ,2,34,10,NYJ,BUF,3,9,25,(4:10) (Shotgun) M.Sanchez pass short right to J.Cumberland to BUF 16 for 9 yards (K.Sheppard).,21,7,2012 -20120909_BUF@NYJ,2,34,10,NYJ,BUF,1,10,16,(4:10) S.Greene up the middle to BUF 12 for 4 yards (N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,32,47,NYJ,BUF,2,6,12,(2:47) (Shotgun) T.Tebow left tackle to BUF 12 for no gain (Ky.Williams; N.Barnett).,21,7,2012 -20120909_BUF@NYJ,2,32,6,NYJ,BUF,3,6,12,(2:06) (Shotgun) M.Sanchez pass short right to J.Kerley ran ob at BUF 7 for 5 yards. New York Jets challenged the first down ruling and the play was Upheld. (Timeout #2.),21,7,2012 -20120909_BUF@NYJ,2,32,0,NYJ,BUF,4,1,7,(2:00) N.Folk 25 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,21,7,2012 -20120909_BUF@NYJ,2,32,0,NYJ,BUF,,,7,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,24,7,2012 -20120909_BUF@NYJ,2,31,57,BUF,NYJ,1,10,80,(1:57) (Shotgun) R.Fitzpatrick pass deep left to C.Spiller to 50 for 30 yards (L.Landry). FUMBLES (L.Landry) RECOVERED by NYJ-Y.Bell at NYJ 30. Y.Bell to NYJ 38 for 8 yards. Lateral to L.Landry to NYJ 47 for 9 yards (A.Levitre). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,7,24,2012 -20120909_BUF@NYJ,2,31,36,NYJ,BUF,1,10,53,(1:36) M.Sanchez pass short middle to B.Powell to BUF 37 for 16 yards (G.Wilson).,24,7,2012 -20120909_BUF@NYJ,2,31,11,NYJ,BUF,1,10,37,(1:11) (No Huddle Shotgun) M.Sanchez pass short right to C.Schilens to BUF 29 for 8 yards (A.Williams).,24,7,2012 -20120909_BUF@NYJ,2,30,54,NYJ,BUF,2,2,29,(:54) (No Huddle Shotgun) B.Powell up the middle to BUF 23 for 6 yards (Ky.Williams).,24,7,2012 -20120909_BUF@NYJ,2,30,36,NYJ,BUF,1,10,23,(:36) M.Sanchez pass short right to J.Kerley to BUF 16 for 7 yards (L.McKelvin).,24,7,2012 -20120909_BUF@NYJ,2,30,21,NYJ,BUF,2,3,16,(:21) M.Sanchez spiked the ball to stop the clock.,24,7,2012 -20120909_BUF@NYJ,2,30,21,NYJ,BUF,3,3,16,(:21) PENALTY on NYJ-M.Sanchez Delay of Game 5 yards enforced at BUF 16 - No Play.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,3,8,21,(:19) M.Sanchez pass incomplete deep left to S.Holmes. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,4,8,21,(:19) N.Folk 39 yard field goal is GOOD Center-T.Purdum Holder-R.Malone.,24,7,2012 -20120909_BUF@NYJ,2,30,19,NYJ,BUF,,,21,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,27,7,2012 -20120909_BUF@NYJ,2,30,12,BUF,NYJ,1,10,80,(:12) R.Fitzpatrick kneels to BUF 19 for -1 yards.,7,27,2012 -20120909_BUF@NYJ,3,30,0,NYJ,BUF,,,80,N.Folk kicks 68 yards from NYJ 35 to BUF -3. L.McKelvin to BUF 20 for 23 yards (N.Bellore; G.McIntyre).,27,7,2012 -20120909_BUF@NYJ,3,29,52,BUF,NYJ,1,10,80,(14:52) (Shotgun) C.Spiller up the middle to BUF 28 for 8 yards (B.Scott).,7,27,2012 -20120909_BUF@NYJ,3,29,24,BUF,NYJ,2,2,72,(14:24) (Shotgun) C.Spiller right end to BUF 36 for 8 yards (L.Landry).,7,27,2012 -20120909_BUF@NYJ,3,29,24,BUF,NYJ,1,10,64,(14:24) (Shotgun) R.Fitzpatrick pass short left intended for D.Nelson INTERCEPTED by A.Cromartie at BUF 40. A.Cromartie for 40 yards TOUCHDOWN.,7,27,2012 -20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,27,7,2012 -20120909_BUF@NYJ,3,29,24,NYJ,BUF,,,64,N.Folk kicks 65 yards from NYJ 35 to end zone Touchback.,34,7,2012 -20120909_BUF@NYJ,3,28,41,BUF,NYJ,1,10,80,(13:41) (Shotgun) T.Choice left end to BUF 20 for no gain. PENALTY on BUF-C.Glenn Offensive Holding 10 yards enforced at BUF 20 - No Play.,7,34,2012 -20120909_BUF@NYJ,3,28,20,BUF,NYJ,1,20,90,(13:20) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson [C.Pace].,7,34,2012 -20120909_BUF@NYJ,3,28,16,BUF,NYJ,2,20,90,(13:16) (Shotgun) C.Spiller left tackle to BUF 16 for 6 yards (D.Harris; Y.Bell).,7,34,2012 -20120909_BUF@NYJ,3,27,33,BUF,NYJ,3,14,84,(12:33) (Shotgun) R.Fitzpatrick pass short left to C.Spiller to BUF 11 for -5 yards (E.Lankster).,7,34,2012 -20120909_BUF@NYJ,3,27,33,BUF,NYJ,4,19,89,(12:33) B.Moorman punts 37 yards to BUF 48 Center-G.Sanborn out of bounds.,7,34,2012 -20120909_BUF@NYJ,3,26,48,NYJ,BUF,1,10,48,(11:48) M.Sanchez pass deep left to S.Hill to BUF 21 for 27 yards (G.Wilson; J.Byrd). Flea flicker- Sanchez hands to Greene who tosses back to Sanchez to pass.,34,7,2012 -20120909_BUF@NYJ,3,26,5,NYJ,BUF,1,10,21,(11:05) S.Greene right tackle to BUF 18 for 3 yards (K.Sheppard).,34,7,2012 -20120909_BUF@NYJ,3,25,23,NYJ,BUF,2,7,18,(10:23) S.Greene up the middle to BUF 17 for 1 yard (N.Barnett).,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,3,6,17,(9:45) M.Sanchez pass short right to S.Hill for 17 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,34,7,2012 -20120909_BUF@NYJ,3,24,45,NYJ,BUF,,,17,N.Folk kicks 64 yards from NYJ 35 to BUF 1. L.McKelvin to BUF 23 for 22 yards (J.Bush).,41,7,2012 -20120909_BUF@NYJ,3,24,32,BUF,NYJ,1,10,77,(9:32) C.Spiller up the middle to BUF 28 for 5 yards (B.Scott).,7,41,2012 -20120909_BUF@NYJ,3,24,0,BUF,NYJ,2,5,72,(9:00) C.Spiller left end pushed ob at BUF 33 for 5 yards (A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,23,26,BUF,NYJ,1,10,67,(8:26) R.Fitzpatrick pass incomplete short left to St.Johnson (D.Revis).,7,41,2012 -20120909_BUF@NYJ,3,23,20,BUF,NYJ,2,10,67,(8:20) R.Fitzpatrick pass short right to D.Jones to BUF 39 for 6 yards (D.Revis; A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,22,33,BUF,NYJ,3,4,61,(7:33) (Shotgun) R.Fitzpatrick pass short left to D.Nelson to BUF 49 for 10 yards (L.Landry). Pass intended for #84Chandler tipped by #52 Harris and caught by Nelson.,7,41,2012 -20120909_BUF@NYJ,3,21,52,BUF,NYJ,1,10,51,(6:52) (Shotgun) C.Spiller up the middle to NYJ 2 for 49 yards (A.Cromartie).,7,41,2012 -20120909_BUF@NYJ,3,21,3,BUF,NYJ,1,2,2,(6:03) T.Choice right tackle to NYJ 1 for 1 yard (C.Pace; B.Scott).,7,41,2012 -20120909_BUF@NYJ,3,21,3,BUF,NYJ,2,1,1,(6:03) T.Choice up the middle to NYJ 1 for no gain (C.Pace).,7,41,2012 -20120909_BUF@NYJ,3,19,52,BUF,NYJ,3,1,1,(4:52) T.Choice up the middle for 1 yard TOUCHDOWN NULLIFIED by Penalty. PENALTY on BUF False Start 4 yards enforced at NYJ 1 - No Play.,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,3,5,5,(4:30) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 5 yards TOUCHDOWN [L.Landry].,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,41,2012 -20120909_BUF@NYJ,3,19,30,BUF,NYJ,,,5,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,14,41,2012 -20120909_BUF@NYJ,3,19,26,NYJ,BUF,1,10,80,(4:26) S.Greene left end to NYJ 19 for -1 yards (C.Kelsay).,41,14,2012 -20120909_BUF@NYJ,3,18,48,NYJ,BUF,2,11,81,(3:48) M.Sanchez pass short middle to J.Cumberland to NYJ 32 for 13 yards (D.Searcy).,41,14,2012 -20120909_BUF@NYJ,3,18,11,NYJ,BUF,1,10,68,(3:11) S.Greene left end to NYJ 38 for 6 yards (J.Byrd).,41,14,2012 -20120909_BUF@NYJ,3,17,32,NYJ,BUF,2,4,62,(2:32) S.Greene up the middle to NYJ 41 for 3 yards (N.Barnett).,41,14,2012 -20120909_BUF@NYJ,3,16,50,NYJ,BUF,3,1,59,(1:50) S.Greene up the middle to NYJ 44 for 3 yards (Sp.Johnson).,41,14,2012 -20120909_BUF@NYJ,3,16,11,NYJ,BUF,1,10,56,(1:11) (Shotgun) T.Tebow left tackle to NYJ 47 for 3 yards (K.Sheppard).,41,14,2012 -20120909_BUF@NYJ,3,15,34,NYJ,BUF,2,7,53,(:34) S.Greene right guard to BUF 49 for 4 yards (K.Sheppard; A.Moats).,41,14,2012 -20120909_BUF@NYJ,4,15,0,NYJ,BUF,3,3,49,(15:00) M.Sanchez scrambles up the middle to BUF 46 for 3 yards (C.Kelsay). FUMBLES (C.Kelsay) recovered by NYJ-C.Schilens at BUF 41. PENALTY on NYJ-N.Mangold Offensive Holding 10 yards enforced at BUF 49 - No Play.,41,14,2012 -20120909_BUF@NYJ,4,14,26,NYJ,BUF,3,13,59,(14:26) (Shotgun) M.Sanchez pass incomplete short right to S.Holmes.,41,14,2012 -20120909_BUF@NYJ,4,14,20,NYJ,BUF,4,13,59,(14:20) R.Malone punts 55 yards to BUF 4 Center-T.Purdum downed by NYJ-I.Trufant.,41,14,2012 -20120909_BUF@NYJ,4,14,11,BUF,NYJ,1,10,96,(14:11) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Nelson.,14,41,2012 -20120909_BUF@NYJ,4,14,7,BUF,NYJ,2,10,96,(14:07) C.Spiller right end to BUF 8 for 4 yards (B.Scott; A.Cromartie).,14,41,2012 -20120909_BUF@NYJ,4,13,43,BUF,NYJ,3,6,92,(13:43) (Shotgun) R.Fitzpatrick pass deep middle to D.Nelson to BUF 29 for 21 yards (D.Harris).,14,41,2012 -20120909_BUF@NYJ,4,12,54,BUF,NYJ,1,10,71,(12:54) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson (D.Revis).,14,41,2012 -20120909_BUF@NYJ,4,12,24,BUF,NYJ,2,10,71,(12:24) (Shotgun) R.Fitzpatrick pass incomplete deep right to St.Johnson [M.Wilkerson]. BUF-D.Nelson was injured during the play.,14,41,2012 -20120909_BUF@NYJ,4,12,5,BUF,NYJ,3,10,71,(12:05) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 40 for 11 yards (E.Lankster).,14,41,2012 -20120909_BUF@NYJ,4,11,22,BUF,NYJ,1,10,60,(11:22) (Shotgun) C.Spiller up the middle to BUF 42 for 2 yards (K.Ellis).,14,41,2012 -20120909_BUF@NYJ,4,10,46,BUF,NYJ,2,8,58,(10:46) R.Fitzpatrick pass short right to S.Chandler to 50 for 8 yards (Y.Bell).,14,41,2012 -20120909_BUF@NYJ,4,10,21,BUF,NYJ,1,10,50,(10:21) (Shotgun) C.Spiller left guard to NYJ 44 for 6 yards (M.Dixon; M.Devito).,14,41,2012 -20120909_BUF@NYJ,4,9,45,BUF,NYJ,2,4,44,(9:45) (Shotgun) C.Spiller right guard to NYJ 30 for 14 yards (D.Revis). NYJ-D.Revis was injured during the play.,14,41,2012 -20120909_BUF@NYJ,4,9,4,BUF,NYJ,1,10,30,(9:04) R.Fitzpatrick pass short left to D.Jones to NYJ 18 for 12 yards (Y.Bell). PENALTY on NYJ-Q.Coples Roughing the Passer 9 yards enforced at NYJ 18.,14,41,2012 -20120909_BUF@NYJ,4,8,39,BUF,NYJ,1,9,9,(8:39) C.Spiller left end to NYJ 6 for 3 yards (M.Devito).,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,2,6,6,(8:02) R.Fitzpatrick pass short left to D.Jones for 6 yards TOUCHDOWN.,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,41,2012 -20120909_BUF@NYJ,4,8,2,BUF,NYJ,,,6,J.Potter kicks 65 yards from BUF 35 to end zone Touchback.,21,41,2012 -20120909_BUF@NYJ,4,7,57,NYJ,BUF,1,10,80,(7:57) S.Greene left end to NYJ 20 for no gain (N.Barnett; D.Searcy).,41,21,2012 -20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,10,80,(7:51) PENALTY on NYJ-B.Moore False Start 5 yards enforced at NYJ 20 - No Play.,41,21,2012 -20120909_BUF@NYJ,4,7,51,NYJ,BUF,2,15,85,(7:51) S.Greene left tackle to NYJ 18 for 3 yards (K.Sheppard; S.Gilmore).,41,21,2012 -20120909_BUF@NYJ,4,7,46,NYJ,BUF,3,12,82,(7:46) S.Greene up the middle to NYJ 20 for 2 yards.,41,21,2012 -20120909_BUF@NYJ,4,7,4,NYJ,BUF,4,10,80,(7:04) R.Malone punts 48 yards to BUF 32 Center-T.Purdum. L.McKelvin to NYJ 41 for 27 yards (T.Purdum).,41,21,2012 -20120909_BUF@NYJ,4,6,52,BUF,NYJ,1,10,41,(6:52) (Shotgun) R.Fitzpatrick pass short right to S.Chandler to NYJ 29 for 12 yards (E.Lankster).,21,41,2012 -20120909_BUF@NYJ,4,6,22,BUF,NYJ,1,10,29,(6:22) (No Huddle Shotgun) R.Fitzpatrick pass incomplete deep middle to S.Chandler (Y.Bell).,21,41,2012 -20120909_BUF@NYJ,4,6,15,BUF,NYJ,2,10,29,(6:15) (Shotgun) R.Fitzpatrick pass incomplete short right to C.Spiller (I.Trufant).,21,41,2012 -20120909_BUF@NYJ,4,6,10,BUF,NYJ,3,10,29,(6:10) (Shotgun) R.Fitzpatrick pass incomplete short right to St.Johnson.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,4,10,29,(6:06) (Shotgun) R.Fitzpatrick pass short middle to St.Johnson for 29 yards TOUCHDOWN.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,41,2012 -20120909_BUF@NYJ,4,6,6,BUF,NYJ,,,29,J.Potter kicks onside 14 yards from BUF 35 to BUF 49. T.Tebow (didn't try to advance) to BUF 49 for no gain.,28,41,2012 -20120909_BUF@NYJ,4,5,54,NYJ,BUF,1,10,49,(5:54) S.Greene up the middle to BUF 46 for 3 yards.,41,28,2012 -20120909_BUF@NYJ,4,5,54,NYJ,BUF,2,7,46,(5:54) M.Sanchez pass short middle to S.Holmes to BUF 21 for 25 yards (J.Byrd).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,10,21,(5:19) S.Greene up the middle to BUF 19 for 2 yards (A.Moats).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,2,8,19,(5:19) S.Greene left guard to BUF 16 for 3 yards (K.Sheppard).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,3,5,16,(5:19) S.Greene right tackle to BUF 2 for 14 yards (G.Wilson).,41,28,2012 -20120909_BUF@NYJ,4,5,19,NYJ,BUF,1,2,2,(5:19) (Shotgun) PENALTY on NYJ-T.Tebow Delay of Game 5 yards enforced at BUF 2 - No Play.,41,28,2012 -20120909_BUF@NYJ,4,2,6,NYJ,BUF,1,7,7,(2:06) (Shotgun) T.Tebow left end to BUF 6 for 1 yard (S.Gilmore).,41,28,2012 -20120909_BUF@NYJ,4,2,0,NYJ,BUF,2,6,6,(2:00) S.Greene right tackle to BUF 1 for 5 yards (A.Williams). FUMBLES (A.Williams) and recovers at BUF 1.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,3,1,1,(1:54) S.Greene up the middle for 1 yard TOUCHDOWN.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk extra point is GOOD Center-T.Purdum Holder-R.Malone.,41,28,2012 -20120909_BUF@NYJ,4,1,54,NYJ,BUF,,,1,N.Folk kicks 73 yards from NYJ 35 to BUF -8. L.McKelvin to BUF 18 for 26 yards (I.Trufant).,48,28,2012 -20120909_BUF@NYJ,4,1,11,BUF,NYJ,1,10,82,(1:11) (Shotgun) T.Choice up the middle to BUF 25 for 7 yards (D.Harris).,28,48,2012 -20120909_BUF@NYJ,4,0,25,BUF,NYJ,2,3,75,(:25) (Shotgun) T.Choice left end to BUF 20 for -5 yards (B.Scott).,28,48,2012 -20120909_BUF@NYJ,4,0,25,BUF,NYJ,,,75,                      ,28,48,2012 -20120909_NE@TEN,1,0,0,NE,TEN,,,75,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,0,0,2012 -20120909_NE@TEN,1,60,0,TEN,NE,1,10,80,(15:00) J.Locker right end pushed ob at TEN 22 for 2 yards (D.Hightower).,0,0,2012 -20120909_NE@TEN,1,59,33,TEN,NE,2,8,78,(14:33) C.Johnson left guard to TEN 23 for 1 yard (P.Chung; J.Mayo).,0,0,2012 -20120909_NE@TEN,1,58,51,TEN,NE,3,7,77,(13:51) (Shotgun) J.Locker pass short middle to K.Wright to TEN 40 for 17 yards (S.Gregory).,0,0,2012 -20120909_NE@TEN,1,58,12,TEN,NE,1,10,60,(13:12) C.Johnson left guard to TEN 45 for 5 yards (J.Mayo).,0,0,2012 -20120909_NE@TEN,1,57,35,TEN,NE,2,5,55,(12:35) J.Locker pass incomplete short left to D.Williams. PENALTY on NE-R.Dowling Defensive Pass Interference 9 yards enforced at TEN 45 - No Play.,0,0,2012 -20120909_NE@TEN,1,57,33,TEN,NE,1,10,46,(12:33) (Shotgun) J.Locker pass short right to D.Reynaud to NE 42 for 4 yards (D.Hightower).,0,0,2012 -20120909_NE@TEN,1,56,54,TEN,NE,2,6,42,(11:54) C.Johnson up the middle to NE 38 for 4 yards (P.Chung).,0,0,2012 -20120909_NE@TEN,1,56,18,TEN,NE,3,2,38,(11:18) C.Johnson up the middle to NE 37 for 1 yard (J.Mayo).,0,0,2012 -20120909_NE@TEN,1,55,37,TEN,NE,4,1,37,(10:37) (Shotgun) J.Locker pass deep left to N.Washington to NE 13 for 24 yards (K.Arrington).,0,0,2012 -20120909_NE@TEN,1,55,11,TEN,NE,1,10,13,(10:11) J.Locker pass short right to D.Williams pushed ob at NE 12 for 1 yard (D.McCourty).,0,0,2012 -20120909_NE@TEN,1,54,33,TEN,NE,2,9,12,(9:33) C.Johnson right tackle to NE 10 for 2 yards (K.Love).,0,0,2012 -20120909_NE@TEN,1,53,53,TEN,NE,3,7,10,(8:53) (Shotgun) J.Locker pass incomplete short right to D.Williams (D.McCourty).,0,0,2012 -20120909_NE@TEN,1,53,47,TEN,NE,4,7,10,(8:47) (Field Goal formation) R.Bironas 28 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,0,0,2012 -20120909_NE@TEN,1,53,47,TEN,NE,,,10,R.Bironas kicks 67 yards from TEN 35 to NE -2. D.McCourty pushed ob at NE 26 for 28 yards (T.Campbell).,3,0,2012 -20120909_NE@TEN,1,53,37,NE,TEN,1,10,74,(8:37) T.Brady pass short right to A.Hernandez to NE 34 for 8 yards (C.McCarthy).,0,3,2012 -20120909_NE@TEN,1,53,2,NE,TEN,2,2,66,(8:02) S.Ridley left guard to NE 35 for 1 yard (K.Wimbley).,0,3,2012 -20120909_NE@TEN,1,52,43,NE,TEN,3,1,65,(7:43) (No Huddle) S.Ridley left tackle to TEN 48 for 17 yards (R.Mouton).,0,3,2012 -20120909_NE@TEN,1,52,20,NE,TEN,1,10,48,(7:20) (No Huddle) T.Brady pass incomplete deep left to B.Lloyd.,0,3,2012 -20120909_NE@TEN,1,52,13,NE,TEN,2,10,48,(7:13) S.Ridley up the middle to TEN 46 for 2 yards (D.Morgan).,0,3,2012 -20120909_NE@TEN,1,51,33,NE,TEN,3,8,46,(6:33) (Shotgun) T.Brady pass incomplete deep middle to W.Welker.,0,3,2012 -20120909_NE@TEN,1,51,29,NE,TEN,4,8,46,(6:29) (Punt formation) Z.Mesko punts 28 yards to TEN 18 Center-D.Aiken downed by NE-T.Scott.,0,3,2012 -20120909_NE@TEN,1,51,20,TEN,NE,1,10,82,(6:20) C.Johnson up the middle to TEN 15 for -3 yards (C.Jones).,3,0,2012 -20120909_NE@TEN,1,50,42,TEN,NE,2,13,85,(5:42) C.Johnson left tackle to TEN 17 for 2 yards (J.Mayo).,3,0,2012 -20120909_NE@TEN,1,49,58,TEN,NE,3,11,83,(4:58) (Shotgun) J.Locker pass short left to J.Harper to TEN 25 for 8 yards (J.Mayo; R.Dowling).,3,0,2012 -20120909_NE@TEN,1,49,18,TEN,NE,4,3,75,(4:18) (Punt formation) B.Kern punts 56 yards to NE 19 Center-B.Brinkley. J.Edelman to NE 33 for 14 yards (T.Campbell).,3,0,2012 -20120909_NE@TEN,1,49,5,NE,TEN,1,10,67,(4:05) S.Ridley right tackle to NE 33 for no gain (C.McCarthy).,0,3,2012 -20120909_NE@TEN,1,48,30,NE,TEN,2,10,67,(3:30) T.Brady pass short left to R.Gronkowski pushed ob at TEN 39 for 28 yards (R.Johnson).,0,3,2012 -20120909_NE@TEN,1,48,8,NE,TEN,1,10,39,(3:08) S.Ridley left end pushed ob at TEN 22 for 17 yards (R.Johnson).,0,3,2012 -20120909_NE@TEN,1,47,45,NE,TEN,1,10,22,(2:45) S.Ridley left guard to TEN 23 for -1 yards (A.Ayers).,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,2,11,23,(2:05) T.Brady pass deep middle to A.Hernandez for 23 yards TOUCHDOWN.,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,0,3,2012 -20120909_NE@TEN,1,47,5,NE,TEN,,,23,S.Gostkowski kicks 69 yards from NE 35 to TEN -4. D.Reynaud to TEN 18 for 22 yards (T.White).,7,3,2012 -20120909_NE@TEN,1,46,51,TEN,NE,1,10,82,(1:51) J.Locker pass incomplete deep middle to N.Washington.,3,7,2012 -20120909_NE@TEN,1,46,47,TEN,NE,2,10,82,(1:47) J.Locker pass short middle to C.Johnson to TEN 22 for 4 yards (B.Spikes).,3,7,2012 -20120909_NE@TEN,1,46,4,TEN,NE,3,6,78,(1:04) (Shotgun) J.Locker pass deep middle to J.Cook to TEN 41 for 19 yards (S.Gregory; P.Chung).,3,7,2012 -20120909_NE@TEN,1,45,18,TEN,NE,1,10,59,(:18) (Shotgun) J.Locker pass short left to J.Cook to TEN 45 for 4 yards (P.Chung).,3,7,2012 -20120909_NE@TEN,2,45,0,TEN,NE,2,6,55,(15:00) J.Locker pass short right to D.Reynaud pushed ob at NE 48 for 7 yards (J.Mayo; D.McCourty).,3,7,2012 -20120909_NE@TEN,2,44,26,TEN,NE,1,10,48,(14:26) J.Locker pass deep left intended for N.Washington INTERCEPTED by T.Wilson (K.Arrington) at NE -3. Touchback.,3,7,2012 -20120909_NE@TEN,2,44,14,NE,TEN,1,10,80,(14:14) T.Brady pass deep left to B.Lloyd ran ob at NE 47 for 27 yards. Tennessee challenged the pass completion ruling and the play was Upheld. (Timeout #1.),7,3,2012 -20120909_NE@TEN,2,44,3,NE,TEN,1,10,53,(14:03) T.Brady pass short left to S.Ridley to TEN 46 for 7 yards (C.McCarthy).,7,3,2012 -20120909_NE@TEN,2,43,29,NE,TEN,2,3,46,(13:29) S.Ridley right end to TEN 47 for -1 yards (A.Verner).,7,3,2012 -20120909_NE@TEN,2,42,49,NE,TEN,3,4,47,(12:49) (Shotgun) T.Brady sacked at NE 45 for -8 yards (K.Wimbley).,7,3,2012 -20120909_NE@TEN,2,42,17,NE,TEN,4,12,55,(12:17) (Punt formation) Z.Mesko punts 45 yards to TEN 10 Center-D.Aiken downed by NE-D.Aiken.,7,3,2012 -20120909_NE@TEN,2,42,6,TEN,NE,1,10,90,(12:06) J.Locker pass incomplete short right to N.Washington.,3,7,2012 -20120909_NE@TEN,2,42,1,TEN,NE,2,10,90,(12:01) C.Johnson up the middle to TEN 7 for -3 yards (D.Hightower).,3,7,2012 -20120909_NE@TEN,2,41,16,TEN,NE,3,13,93,(11:16) (Shotgun) J.Locker sacked at TEN 1 for -6 yards (C.Jones). FUMBLES (C.Jones) RECOVERED by NE-D.Hightower at TEN 6. D.Hightower for 6 yards TOUCHDOWN.,3,7,2012 -20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,7,3,2012 -20120909_NE@TEN,2,41,16,NE,TEN,,,93,S.Gostkowski kicks 67 yards from NE 35 to TEN -2. D.Reynaud pushed ob at TEN 38 for 40 yards (S.Gostkowski). PENALTY on TEN-A.Afalava Offensive Holding 10 yards enforced at TEN 28.,14,3,2012 -20120909_NE@TEN,2,40,59,TEN,NE,1,10,82,(10:59) (Shotgun) C.Johnson left tackle to TEN 18 for no gain (J.Mayo; C.Jones).,3,14,2012 -20120909_NE@TEN,2,40,17,TEN,NE,2,10,82,(10:17) (Shotgun) J.Locker pass short left to L.Hawkins to TEN 20 for 2 yards (J.Mayo).,3,14,2012 -20120909_NE@TEN,2,39,38,TEN,NE,3,8,80,(9:38) (Shotgun) J.Locker scrambles left end pushed ob at TEN 29 for 9 yards (K.Arrington).,3,14,2012 -20120909_NE@TEN,2,39,6,TEN,NE,1,10,71,(9:06) (Shotgun) D.Reynaud left tackle to TEN 29 for no gain (C.Jones; J.Cunningham).,3,14,2012 -20120909_NE@TEN,2,38,20,TEN,NE,2,10,71,(8:20) (Shotgun) J.Locker pass incomplete short right to N.Washington.,3,14,2012 -20120909_NE@TEN,2,38,15,TEN,NE,3,10,71,(8:15) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 38 for 9 yards (T.Wilson; D.McCourty) [T.Scott].,3,14,2012 -20120909_NE@TEN,2,37,27,TEN,NE,4,1,62,(7:27) (Punt formation) B.Kern punts 44 yards to NE 18 Center-B.Brinkley. J.Edelman MUFFS catch recovered by NE-R.Dowling at NE 19. R.Dowling to NE 19 for no gain (C.Sensabaugh). PENALTY on TEN-T.Campbell Interference with Opportunity to Catch 15 yards enforced at NE 18.,3,14,2012 -20120909_NE@TEN,2,37,17,NE,TEN,1,10,67,(7:17) S.Ridley left end to NE 48 for 15 yards (D.Morgan).,14,3,2012 -20120909_NE@TEN,2,36,50,NE,TEN,1,10,52,(6:50) (No Huddle) T.Brady pass short left to B.Lloyd ran ob at TEN 43 for 9 yards.,14,3,2012 -20120909_NE@TEN,2,36,34,NE,TEN,2,1,43,(6:34) (No Huddle) T.Brady up the middle to TEN 41 for 2 yards (Mi.Martin).,14,3,2012 -20120909_NE@TEN,2,36,15,NE,TEN,1,10,41,(6:15) (No Huddle) T.Brady pass incomplete deep left to W.Welker.,14,3,2012 -20120909_NE@TEN,2,36,9,NE,TEN,2,10,41,(6:09) D.Woodhead right tackle to TEN 35 for 6 yards (M.Griffin). TEN-C.McCarthy was injured during the play. His return is Questionable.,14,3,2012 -20120909_NE@TEN,2,35,39,NE,TEN,3,4,35,(5:39) (Shotgun) Direct snap to A.Hernandez. A.Hernandez left tackle to TEN 30 for 5 yards (A.Verner).,14,3,2012 -20120909_NE@TEN,2,35,8,NE,TEN,1,10,30,(5:08) (No Huddle Shotgun) T.Brady pass short middle to R.Gronkowski to TEN 23 for 7 yards (R.Mouton).,14,3,2012 -20120909_NE@TEN,2,34,35,NE,TEN,2,3,23,(4:35) (No Huddle Shotgun) T.Brady pass short left to J.Edelman to TEN 16 for 7 yards (A.Verner).,14,3,2012 -20120909_NE@TEN,2,34,4,NE,TEN,1,10,16,(4:04) (No Huddle Shotgun) T.Brady pass short right to W.Welker to TEN 11 for 5 yards (R.Mouton).,14,3,2012 -20120909_NE@TEN,2,33,29,NE,TEN,2,5,11,(3:29) D.Woodhead up the middle to TEN 10 for 1 yard (J.Casey).,14,3,2012 -20120909_NE@TEN,2,32,48,NE,TEN,3,4,10,(2:48) S.Ridley left guard to TEN 2 for 8 yards (A.Ayers).,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,1,2,2,(2:06) T.Brady pass short right to R.Gronkowski for 2 yards TOUCHDOWN. The Replay Assistant challenged the pass completion ruling and the play was Upheld.,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,14,3,2012 -20120909_NE@TEN,2,32,6,NE,TEN,,,2,S.Gostkowski kicks 73 yards from NE 35 to TEN -8. D.Reynaud to TEN 18 for 26 yards (N.Ebner).,21,3,2012 -20120909_NE@TEN,2,31,56,TEN,NE,1,10,82,(1:56) (Shotgun) J.Locker pass short middle to J.Cook to TEN 24 for 6 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,2,31,31,TEN,NE,2,4,76,(1:31) (No Huddle Shotgun) J.Locker pass short middle to D.Reynaud pushed ob at TEN 30 for 6 yards (R.Dowling).,3,21,2012 -20120909_NE@TEN,2,31,23,TEN,NE,1,10,70,(1:23) (Shotgun) J.Locker sacked at TEN 23 for -7 yards (J.Cunningham).,3,21,2012 -20120909_NE@TEN,2,30,58,TEN,NE,2,17,77,(:58) (No Huddle Shotgun) J.Locker pass short left to D.Williams to TEN 35 for 12 yards (J.Mayo).,3,21,2012 -20120909_NE@TEN,2,30,52,TEN,NE,3,5,65,(:52) (Shotgun) J.Locker pass short right to D.Williams to TEN 38 for 3 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,2,30,44,TEN,NE,4,2,62,(:44) (Punt formation) B.Kern punts 54 yards to NE 8 Center-B.Brinkley. J.Edelman pushed ob at NE 12 for 4 yards (J.Babineaux).,3,21,2012 -20120909_NE@TEN,2,30,34,NE,TEN,1,10,88,(:34) T.Brady kneels to NE 11 for -1 yards.,21,3,2012 -20120909_NE@TEN,3,30,0,TEN,NE,,,88,R.Bironas kicks 74 yards from TEN 35 to NE -9. D.McCourty Touchback.,3,21,2012 -20120909_NE@TEN,3,30,0,NE,TEN,1,10,80,(15:00) T.Brady pass short left to A.Hernandez to NE 24 for 4 yards (R.Mouton; A.Ayers).,21,3,2012 -20120909_NE@TEN,3,29,24,NE,TEN,2,6,76,(14:24) S.Ridley right end to NE 30 for 6 yards (A.Ayers).,21,3,2012 -20120909_NE@TEN,3,28,52,NE,TEN,1,10,70,(13:52) S.Ridley left tackle to NE 38 for 8 yards (A.Verner).,21,3,2012 -20120909_NE@TEN,3,28,15,NE,TEN,2,2,62,(13:15) T.Brady pass short left to A.Hernandez to 50 for 12 yards (A.Ayers).,21,3,2012 -20120909_NE@TEN,3,27,44,NE,TEN,1,10,50,(12:44) S.Ridley right end to NE 49 for -1 yards (D.Morgan).,21,3,2012 -20120909_NE@TEN,3,27,1,NE,TEN,2,11,51,(12:01) T.Brady pass incomplete short middle to S.Ridley.,21,3,2012 -20120909_NE@TEN,3,26,58,NE,TEN,3,11,51,(11:58) (Shotgun) T.Brady pass incomplete short left to J.Edelman.,21,3,2012 -20120909_NE@TEN,3,26,54,NE,TEN,4,11,51,(11:54) (Punt formation) Z.Mesko punts 51 yards to end zone Center-D.Aiken Touchback.,21,3,2012 -20120909_NE@TEN,3,26,47,TEN,NE,1,10,80,(11:47) (Shotgun) J.Locker pass deep right to J.Cook to NE 45 for 35 yards (D.McCourty).,3,21,2012 -20120909_NE@TEN,3,26,9,TEN,NE,1,10,45,(11:09) (Shotgun) J.Locker pass incomplete short right to K.Wright (D.McCourty).,3,21,2012 -20120909_NE@TEN,3,26,3,TEN,NE,2,10,45,(11:03) (Shotgun) J.Locker pass short middle to C.Johnson to NE 29 for 16 yards (T.Wilson).,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,1,10,29,(10:25) (Shotgun) J.Locker pass deep right to N.Washington for 29 yards TOUCHDOWN.,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas extra point is GOOD Center-B.Brinkley Holder-B.Kern.,3,21,2012 -20120909_NE@TEN,3,25,25,TEN,NE,,,29,R.Bironas kicks 65 yards from TEN 35 to end zone Touchback.,10,21,2012 -20120909_NE@TEN,3,25,17,NE,TEN,1,10,80,(10:17) (Shotgun) T.Brady pass incomplete short left to B.Lloyd.,21,10,2012 -20120909_NE@TEN,3,25,14,NE,TEN,2,10,80,(10:14) S.Ridley left end to NE 24 for 4 yards (K.Wimbley; A.Ayers).,21,10,2012 -20120909_NE@TEN,3,24,30,NE,TEN,3,6,76,(9:30) (Shotgun) T.Brady pass short left to R.Gronkowski to NE 31 for 7 yards (J.Babineaux).,21,10,2012 -20120909_NE@TEN,3,23,58,NE,TEN,1,10,69,(8:58) S.Ridley right end to NE 27 for -4 yards (J.McCourty).,21,10,2012 -20120909_NE@TEN,3,23,18,NE,TEN,2,14,73,(8:18) T.Brady pass short right to A.Hernandez to NE 32 for 5 yards (D.Morgan).,21,10,2012 -20120909_NE@TEN,3,22,44,NE,TEN,3,9,68,(7:44) (Shotgun) T.Brady pass short middle to R.Gronkowski to NE 41 for 9 yards (R.Mouton; W.Witherspoon).,21,10,2012 -20120909_NE@TEN,3,22,14,NE,TEN,1,10,59,(7:14) T.Brady pass short left to B.Lloyd ran ob at TEN 48 for 11 yards.,21,10,2012 -20120909_NE@TEN,3,21,45,NE,TEN,1,10,48,(6:45) T.Brady pass short left to W.Welker to TEN 47 for 1 yard (A.Verner).,21,10,2012 -20120909_NE@TEN,3,21,15,NE,TEN,2,9,47,(6:15) (Shotgun) T.Brady pass short middle to A.Hernandez to TEN 40 for 7 yards (A.Ayers).,21,10,2012 -20120909_NE@TEN,3,20,47,NE,TEN,3,2,40,(5:47) (Shotgun) T.Brady pass incomplete short left to B.Lloyd [K.Dawson].,21,10,2012 -20120909_NE@TEN,3,20,44,NE,TEN,4,2,40,(5:44) (Punt formation) Z.Mesko punts 30 yards to TEN 10 Center-D.Aiken fair catch by D.Reynaud.,21,10,2012 -20120909_NE@TEN,3,20,36,TEN,NE,1,10,90,(5:36) (Shotgun) J.Locker pass short left to C.Johnson pushed ob at TEN 10 for no gain (D.Hightower).,10,21,2012 -20120909_NE@TEN,3,19,57,TEN,NE,2,10,90,(4:57) (Shotgun) J.Locker pass short right intended for D.Reynaud INTERCEPTED by D.McCourty at TEN 18. D.McCourty to TEN 18 for no gain (N.Washington). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. (Shotgun) J.Locker pass incomplete short right to D.Reynaud.,10,21,2012 -20120909_NE@TEN,3,19,53,TEN,NE,3,10,90,(4:53) (Shotgun) J.Locker up the middle to TEN 31 for 21 yards (K.Arrington). PENALTY on TEN-S.Hutchinson Offensive Holding 5 yards enforced at TEN 10 - No Play.,10,21,2012 -20120909_NE@TEN,3,19,30,TEN,NE,3,15,95,(4:30) (Shotgun) J.Locker pass short left to K.Wright to TEN 2 for -3 yards (R.Dowling).,10,21,2012 -20120909_NE@TEN,3,18,41,TEN,NE,4,18,98,(3:41) (Punt formation) B.Kern punts 55 yards to NE 43 Center-B.Brinkley. J.Edelman to TEN 48 for 9 yards (J.Babineaux).,10,21,2012 -20120909_NE@TEN,3,18,29,NE,TEN,1,10,48,(3:29) T.Brady pass short right to R.Gronkowski to TEN 41 for 7 yards (M.Griffin) [J.Casey].,21,10,2012 -20120909_NE@TEN,3,17,57,NE,TEN,2,3,41,(2:57) S.Ridley left tackle to TEN 26 for 15 yards (A.Verner; A.Ayers).,21,10,2012 -20120909_NE@TEN,3,17,25,NE,TEN,1,10,26,(2:25) T.Brady pass short left to B.Lloyd ran ob at TEN 20 for 6 yards.,21,10,2012 -20120909_NE@TEN,3,17,12,NE,TEN,2,4,20,(2:12) S.Ridley right end to TEN 15 for 5 yards (Mi.Martin; R.Johnson).,21,10,2012 -20120909_NE@TEN,3,16,45,NE,TEN,1,10,15,(1:45) (No Huddle) S.Ridley right guard to TEN 1 for 14 yards (R.Johnson).,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,1,1,1,(1:08) S.Ridley left tackle for 1 yard TOUCHDOWN.,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski extra point is GOOD Center-D.Aiken Holder-Z.Mesko.,21,10,2012 -20120909_NE@TEN,3,16,8,NE,TEN,,,1,S.Gostkowski kicks 64 yards from NE 35 to TEN 1. D.Reynaud to TEN 21 for 20 yards (N.Ebner).,28,10,2012 -20120909_NE@TEN,3,15,59,TEN,NE,1,10,79,(:59) (Shotgun) C.Johnson right tackle to TEN 21 for no gain (D.McCourty).,10,28,2012 -20120909_NE@TEN,3,15,30,TEN,NE,2,10,79,(:30) (No Huddle Shotgun) J.Locker pass incomplete short middle to N.Washington [V.Wilfork].,10,28,2012 -20120909_NE@TEN,3,15,25,TEN,NE,3,10,79,(:25) (Shotgun) J.Locker pass short right to D.Williams to TEN 31 for 10 yards (D.McCourty).,10,28,2012 -20120909_NE@TEN,3,15,3,TEN,NE,1,10,69,(:03) (No Huddle Shotgun) J.Locker pass short right to K.Wright to TEN 43 for 12 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,14,59,TEN,NE,1,10,57,(14:59) (Shotgun) J.Locker pass short middle to C.Johnson to TEN 47 for 4 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,14,34,TEN,NE,2,6,53,(14:34) (No Huddle Shotgun) J.Locker sacked at TEN 42 for -5 yards (C.Jones). PENALTY on NE-C.Jones Defensive Offside 5 yards enforced at TEN 47 - No Play.,10,28,2012 -20120909_NE@TEN,4,14,12,TEN,NE,2,1,48,(14:12) J.Locker pass deep middle to N.Washington to NE 25 for 23 yards (J.Mayo). FUMBLES (J.Mayo) RECOVERED by NE-P.Chung at NE 25. P.Chung to TEN 26 for 49 yards (J.Locker). The Replay Assistant challenged the pass completion ruling and the play was REVERSED. J.Locker pass incomplete deep middle to N.Washington (J.Mayo T.Wilson). TEN-J.Locker was injured during the play. His return is Questionable. TEN-N.Washington was injured during the play. His return is Questionable.,10,28,2012 -20120909_NE@TEN,4,14,7,TEN,NE,3,1,48,(14:07) M.Hasselbeck pass short right to C.Johnson to NE 34 for 14 yards (B.Deaderick).,10,28,2012 -20120909_NE@TEN,4,13,23,TEN,NE,1,10,34,(13:23) (Shotgun) M.Hasselbeck pass short right to D.Williams to NE 27 for 7 yards (D.McCourty).,10,28,2012 -20120909_NE@TEN,4,12,59,TEN,NE,2,3,27,(12:59) (No Huddle Shotgun) M.Hasselbeck pass short right to L.Hawkins to NE 21 for 6 yards (C.Jones). Penalty on NE-B.Spikes Defensive Holding declined.,10,28,2012 -20120909_NE@TEN,4,12,31,TEN,NE,1,10,21,(12:31) D.Reynaud up the middle to NE 19 for 2 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,11,59,TEN,NE,2,8,19,(11:59) (No Huddle Shotgun) M.Hasselbeck pass short middle to K.Wright to NE 13 for 6 yards (J.Mayo). PENALTY on NE-J.Mayo Defensive Pass Interference 6 yards enforced at NE 19 - No Play.,10,28,2012 -20120909_NE@TEN,4,11,37,TEN,NE,1,10,13,(11:37) M.Hasselbeck pass short right to C.Stevens to NE 8 for 5 yards (K.Love; D.Hightower).,10,28,2012 -20120909_NE@TEN,4,10,52,TEN,NE,2,5,8,(10:52) M.Hasselbeck pass short left to K.Wright to NE 1 for 7 yards (J.Mayo).,10,28,2012 -20120909_NE@TEN,4,10,13,TEN,NE,1,1,1,(10:13) C.Johnson right tackle to NE 6 for -5 yards (V.Wilfork).,10,28,2012 -20120909_NE@TEN,4,9,29,TEN,NE,2,6,6,(9:29) (Shotgun) M.Hasselbeck pass incomplete short left to L.Hawkins.,10,28,2012 -20120909_NE@TEN,4,9,25,TEN,NE,3,6,6,(9:25) (Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,10,28,2012 -20120909_NE@TEN,4,9,20,TEN,NE,4,6,6,(9:20) (Field Goal formation) R.Bironas 24 yard field goal is GOOD Center-B.Brinkley Holder-B.Kern.,10,28,2012 -20120909_NE@TEN,4,9,20,TEN,NE,,,6,R.Bironas kicks 67 yards from TEN 35 to NE -2. M.Slater to NE 17 for 19 yards (P.Bailey).,13,28,2012 -20120909_NE@TEN,4,9,11,NE,TEN,1,10,83,(9:11) T.Brady pass short left to S.Ridley to NE 37 for 20 yards (A.Verner) [K.Wimbley].,28,13,2012 -20120909_NE@TEN,4,8,54,NE,TEN,1,10,63,(8:54) (No Huddle) D.Woodhead right tackle to NE 40 for 3 yards (R.Mouton; W.Witherspoon).,28,13,2012 -20120909_NE@TEN,4,8,25,NE,TEN,2,7,60,(8:25) (No Huddle Shotgun) T.Brady pass short right to B.Lloyd to TEN 44 for 16 yards (J.McCourty).,28,13,2012 -20120909_NE@TEN,4,7,47,NE,TEN,1,10,44,(7:47) (No Huddle) D.Woodhead right guard to TEN 42 for 2 yards (D.Morgan).,28,13,2012 -20120909_NE@TEN,4,7,18,NE,TEN,2,8,42,(7:18) (No Huddle) T.Brady pass short left to W.Welker to TEN 34 for 8 yards (A.Ayers; A.Verner).,28,13,2012 -20120909_NE@TEN,4,6,45,NE,TEN,1,10,34,(6:45) (No Huddle) D.Woodhead left end to TEN 28 for 6 yards (M.Griffin; K.Wimbley).,28,13,2012 -20120909_NE@TEN,4,6,8,NE,TEN,2,4,28,(6:08) (No Huddle) D.Woodhead left end pushed ob at TEN 26 for 2 yards (A.Verner; M.Griffin).,28,13,2012 -20120909_NE@TEN,4,5,42,NE,TEN,3,2,26,(5:42) (No Huddle) S.Ridley left tackle to TEN 10 for 16 yards (R.Johnson; Z.Brown).,28,13,2012 -20120909_NE@TEN,4,5,15,NE,TEN,1,10,10,(5:15) (No Huddle) S.Ridley left end to TEN 9 for 1 yard (A.Ayers).,28,13,2012 -20120909_NE@TEN,4,4,33,NE,TEN,2,9,9,(4:33) S.Ridley up the middle to TEN 7 for 2 yards (J.Babineaux).,28,13,2012 -20120909_NE@TEN,4,4,26,NE,TEN,3,7,7,(4:26) (Shotgun) T.Brady pass incomplete short right to A.Hernandez.,28,13,2012 -20120909_NE@TEN,4,4,19,NE,TEN,4,7,7,(4:19) (Field Goal formation) S.Gostkowski 25 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,28,13,2012 -20120909_NE@TEN,4,4,19,NE,TEN,,,7,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,31,13,2012 -20120909_NE@TEN,4,4,15,TEN,NE,1,10,80,(4:15) (Shotgun) M.Hasselbeck pass short left to K.Wright to TEN 24 for 4 yards (R.Dowling).,13,31,2012 -20120909_NE@TEN,4,3,53,TEN,NE,2,6,76,(3:53) (No Huddle Shotgun) M.Hasselbeck pass incomplete short left to J.Cook.,13,31,2012 -20120909_NE@TEN,4,3,49,TEN,NE,3,6,76,(3:49) (Shotgun) M.Hasselbeck pass incomplete short middle to L.Hawkins.,13,31,2012 -20120909_NE@TEN,4,3,46,TEN,NE,4,6,76,(3:46) (Shotgun) M.Hasselbeck pass incomplete short left to C.Johnson.,13,31,2012 -20120909_NE@TEN,4,3,43,NE,TEN,1,10,24,(3:43) B.Bolden up the middle to TEN 15 for 9 yards (W.Witherspoon).,31,13,2012 -20120909_NE@TEN,4,3,0,NE,TEN,2,1,15,(3:00) B.Bolden right tackle to TEN 13 for 2 yards (A.Ayers; D.Morgan).,31,13,2012 -20120909_NE@TEN,4,2,16,NE,TEN,1,10,13,(2:16) B.Bolden up the middle to TEN 11 for 2 yards (Mi.Martin; Z.Brown).,31,13,2012 -20120909_NE@TEN,4,2,0,NE,TEN,2,8,11,(2:00) B.Bolden left tackle to TEN 11 for no gain (D.Morgan).,31,13,2012 -20120909_NE@TEN,4,1,14,NE,TEN,3,8,11,(1:14) B.Bolden left end to TEN 13 for -2 yards (Z.Brown).,31,13,2012 -20120909_NE@TEN,4,0,35,NE,TEN,4,10,13,(:35) (Field Goal formation) S.Gostkowski 31 yard field goal is GOOD Center-D.Aiken Holder-Z.Mesko.,31,13,2012 -20120909_NE@TEN,4,0,35,NE,TEN,,,13,S.Gostkowski kicks 65 yards from NE 35 to end zone Touchback.,34,13,2012 -20120909_NE@TEN,4,0,31,TEN,NE,1,10,80,(:31) J.Harper left guard to TEN 23 for 3 yards (J.Cunningham).,13,34,2012 -20120909_NE@TEN,4,0,31,TEN,NE,,,80,                      ,13,34,2012 -20120909_SEA@ARI,1,0,0,ARI,SEA,,,80,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 23 for 28 yards (M.Adams).,0,0,2012 -20120909_SEA@ARI,1,59,53,SEA,ARI,1,10,77,(14:53) M.Lynch left tackle to SEA 25 for 2 yards (D.Dockett).,0,0,2012 -20120909_SEA@ARI,1,59,12,SEA,ARI,2,8,75,(14:12) R.Wilson pass short right to S.Rice to SEA 34 for 9 yards (A.Wilson).,0,0,2012 -20120909_SEA@ARI,1,58,31,SEA,ARI,1,10,66,(13:31) M.Lynch up the middle to SEA 35 for 1 yard (D.Williams).,0,0,2012 -20120909_SEA@ARI,1,57,53,SEA,ARI,2,9,65,(12:53) R.Wilson pass incomplete deep left to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 28 yards enforced at SEA 35 - No Play.,0,0,2012 -20120909_SEA@ARI,1,57,45,SEA,ARI,1,10,37,(12:45) R.Turbin up the middle to ARZ 36 for 1 yard (D.Washington).,0,0,2012 -20120909_SEA@ARI,1,57,6,SEA,ARI,2,9,36,(12:06) M.Lynch right tackle to ARZ 32 for 4 yards (W.Gay).,0,0,2012 -20120909_SEA@ARI,1,56,25,SEA,ARI,3,5,32,(11:25) (Shotgun) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 -20120909_SEA@ARI,1,56,20,SEA,ARI,4,5,32,(11:20) S.Hauschka 50 yard field goal is BLOCKED (C.Campbell) Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120909_SEA@ARI,1,56,15,ARI,SEA,1,10,60,(11:15) R.Williams up the middle to ARZ 42 for 2 yards (K.Wright; B.Mebane).,0,0,2012 -20120909_SEA@ARI,1,55,38,ARI,SEA,2,8,58,(10:38) (Shotgun) R.Williams up the middle to ARZ 42 for no gain (K.Wright). FUMBLES (K.Wright) RECOVERED by SEA-B.Mebane at ARZ 42. B.Mebane to ARZ 42 for no gain (J.Skelton). The Replay Assistant challenged the fumble ruling and the play was Upheld.,0,0,2012 -20120909_SEA@ARI,1,55,24,SEA,ARI,1,10,42,(10:24) R.Wilson pass short left to S.Rice to ARZ 31 for 11 yards (R.Walker).,0,0,2012 -20120909_SEA@ARI,1,54,47,SEA,ARI,1,10,31,(9:47) R.Wilson scrambles right end ran ob at ARZ 27 for 4 yards (D.Dockett).,0,0,2012 -20120909_SEA@ARI,1,54,17,SEA,ARI,2,6,27,(9:17) M.Lynch left tackle to ARZ 17 for 10 yards (P.Lenon).,0,0,2012 -20120909_SEA@ARI,1,53,35,SEA,ARI,1,10,17,(8:35) R.Wilson pass incomplete short right to S.Rice.,0,0,2012 -20120909_SEA@ARI,1,53,30,SEA,ARI,2,10,17,(8:30) R.Turbin up the middle to ARZ 13 for 4 yards (N.Eason).,0,0,2012 -20120909_SEA@ARI,1,52,54,SEA,ARI,3,6,13,(7:54) (Shotgun) R.Wilson left end pushed ob at ARZ 9 for 4 yards (K.Rhodes).,0,0,2012 -20120909_SEA@ARI,1,52,31,SEA,ARI,4,2,9,(7:31) S.Hauschka 27 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,0,0,2012 -20120909_SEA@ARI,1,52,31,SEA,ARI,,,9,S.Hauschka kicks 65 yards from SEA 35 to ARZ 0. L.Stephens-Howling to ARZ 22 for 22 yards (M.Smith).,3,0,2012 -20120909_SEA@ARI,1,52,19,ARI,SEA,1,10,78,(7:19) J.Skelton pass incomplete deep left to L.Fitzgerald.,0,3,2012 -20120909_SEA@ARI,1,52,11,ARI,SEA,2,10,78,(7:11) R.Williams left tackle to ARZ 24 for 2 yards (B.Mebane B.Wagner).,0,3,2012 -20120909_SEA@ARI,1,51,23,ARI,SEA,3,8,76,(6:23) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald. PENALTY on SEA-R.Sherman Defensive Pass Interference 12 yards enforced at ARZ 24 - No Play.,0,3,2012 -20120909_SEA@ARI,1,51,18,ARI,SEA,1,10,64,(6:18) J.Skelton pass short left to L.Fitzgerald to ARZ 39 for 3 yards.,0,3,2012 -20120909_SEA@ARI,1,50,42,ARI,SEA,2,7,61,(5:42) A.Roberts left tackle to SEA 46 for 15 yards (B.Wagner).,0,3,2012 -20120909_SEA@ARI,1,50,1,ARI,SEA,1,10,46,(5:01) (Shotgun) R.Williams left tackle to SEA 42 for 4 yards (J.Jones; L.Hill).,0,3,2012 -20120909_SEA@ARI,1,49,20,ARI,SEA,2,6,42,(4:20) J.Skelton pass short left to A.Roberts to SEA 35 for 7 yards (B.Browner).,0,3,2012 -20120909_SEA@ARI,1,48,36,ARI,SEA,1,10,35,(3:36) (Shotgun) J.Skelton pass short middle to A.Roberts to SEA 16 for 19 yards (K.Chancellor B.Browner).,0,3,2012 -20120909_SEA@ARI,1,47,53,ARI,SEA,1,10,16,(2:53) R.Williams right tackle to SEA 14 for 2 yards (K.Chancellor K.Wright).,0,3,2012 -20120909_SEA@ARI,1,47,13,ARI,SEA,2,8,14,(2:13) (Shotgun) J.Skelton pass short left to R.Williams to SEA 2 for 12 yards (M.Trufant B.Browner).,0,3,2012 -20120909_SEA@ARI,1,46,32,ARI,SEA,1,2,2,(1:32) R.Williams up the middle to SEA 3 for -1 yards (C.McDonald).,0,3,2012 -20120909_SEA@ARI,1,45,49,ARI,SEA,2,3,3,(:49) J.Skelton pass incomplete short middle to L.Fitzgerald (B.Mebane).,0,3,2012 -20120909_SEA@ARI,1,45,45,ARI,SEA,3,3,3,(:45) (Shotgun) J.Skelton pass incomplete short left to R.Williams.,0,3,2012 -20120909_SEA@ARI,1,45,38,ARI,SEA,4,3,3,(:38) J.Feely 21 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,0,3,2012 -20120909_SEA@ARI,1,45,38,ARI,SEA,,,3,J.Feely kicks 70 yards from ARZ 35 to SEA -5. L.Washington to SEA 17 for 22 yards (R.Johnson).,3,3,2012 -20120909_SEA@ARI,1,45,27,SEA,ARI,1,10,83,(:27) PENALTY on ARZ-A.Wilson Neutral Zone Infraction 5 yards enforced at SEA 17 - No Play.,3,3,2012 -20120909_SEA@ARI,1,45,27,SEA,ARI,1,5,78,(:27) R.Wilson sacked at SEA 17 for -5 yards (P.Lenon). Penalty on ARZ-S.Acho Personal Foul declined. Penalty on SEA-C.McDonald Personal Foul declined.,3,3,2012 -20120909_SEA@ARI,2,45,0,SEA,ARI,2,10,83,(15:00) M.Lynch left tackle to SEA 23 for 6 yards (W.Gay V.Holliday).,3,3,2012 -20120909_SEA@ARI,2,44,28,SEA,ARI,3,4,77,(14:28) (Shotgun) R.Wilson pass short right to B.Edwards to SEA 25 for 2 yards (J.Fleming). PENALTY on ARZ-R.Walker Roughing the Passer 15 yards enforced at SEA 25.,3,3,2012 -20120909_SEA@ARI,2,43,59,SEA,ARI,1,10,60,(13:59) R.Wilson pass incomplete deep left to B.Obomanu.,3,3,2012 -20120909_SEA@ARI,2,43,52,SEA,ARI,2,10,60,(13:52) R.Wilson scrambles left end to SEA 40 for no gain. PENALTY on SEA-M.Lynch Offensive Holding 10 yards enforced at SEA 40 - No Play.,3,3,2012 -20120909_SEA@ARI,2,43,22,SEA,ARI,2,20,70,(13:22) R.Wilson scrambles right end to SEA 31 for 1 yard (R.Walker).,3,3,2012 -20120909_SEA@ARI,2,42,32,SEA,ARI,3,19,69,(12:32) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at SEA 31 - No Play.,3,3,2012 -20120909_SEA@ARI,2,42,13,SEA,ARI,3,24,74,(12:13) (Shotgun) L.Washington left tackle to SEA 29 for 3 yards (D.Dockett).,3,3,2012 -20120909_SEA@ARI,2,41,32,SEA,ARI,4,21,71,(11:32) J.Ryan punts 46 yards to ARZ 25 Center-C.Gresham. P.Peterson to ARZ 42 for 17 yards (C.Gresham).,3,3,2012 -20120909_SEA@ARI,2,41,20,ARI,SEA,1,10,58,(11:20) C.Wells left tackle to ARZ 43 for 1 yard (A.Branch).,3,3,2012 -20120909_SEA@ARI,2,40,42,ARI,SEA,2,9,57,(10:42) (Shotgun) J.Skelton pass deep right to E.Doucet to SEA 39 for 18 yards (E.Thomas).,3,3,2012 -20120909_SEA@ARI,2,40,0,ARI,SEA,1,10,39,(10:00) C.Wells right tackle to SEA 37 for 2 yards (K.Wright).,3,3,2012 -20120909_SEA@ARI,2,39,22,ARI,SEA,2,8,37,(9:22) J.Skelton pass short left to J.King to SEA 32 for 5 yards (E.Thomas).,3,3,2012 -20120909_SEA@ARI,2,38,38,ARI,SEA,3,3,32,(8:38) (Shotgun) J.Skelton pass short right to E.Doucet to SEA 18 for 14 yards (R.Sherman).,3,3,2012 -20120909_SEA@ARI,2,37,53,ARI,SEA,1,10,18,(7:53) C.Wells left tackle to SEA 17 for 1 yard (C.McDonald).,3,3,2012 -20120909_SEA@ARI,2,37,9,ARI,SEA,2,9,17,(7:09) J.Skelton pass incomplete short right to T.Heap [L.Hill].,3,3,2012 -20120909_SEA@ARI,2,37,4,ARI,SEA,3,9,17,(7:04) (Shotgun) J.Skelton pass short middle to T.Heap to SEA 4 for 13 yards (K.Chancellor). PENALTY on SEA-K.Chancellor Face Mask (15 Yards) 2 yards enforced at SEA 4.,3,3,2012 -20120909_SEA@ARI,2,36,39,ARI,SEA,1,2,2,(6:39) C.Wells up the middle to SEA 1 for 1 yard (K.Wright; B.Mebane).,3,3,2012 -20120909_SEA@ARI,2,36,3,ARI,SEA,2,1,1,(6:03) J.Skelton pass incomplete short right to J.King (R.Bryant).,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,3,1,1,(5:58) L.Stephens-Howling up the middle for 1 yard TOUCHDOWN.,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,3,3,2012 -20120909_SEA@ARI,2,35,58,ARI,SEA,,,1,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,10,3,2012 -20120909_SEA@ARI,2,35,58,SEA,ARI,1,10,80,(5:58) M.Lynch up the middle to SEA 23 for 3 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,2,35,23,SEA,ARI,2,7,77,(5:23) M.Lynch left tackle to SEA 25 for 2 yards (C.Campbell).,3,10,2012 -20120909_SEA@ARI,2,34,38,SEA,ARI,3,5,75,(4:38) (Shotgun) R.Wilson pass short left to S.Rice to SEA 31 for 6 yards (M.Adams).,3,10,2012 -20120909_SEA@ARI,2,34,3,SEA,ARI,1,10,69,(4:03) R.Wilson pass short right to D.Baldwin to SEA 35 for 4 yards (P.Peterson).,3,10,2012 -20120909_SEA@ARI,2,33,28,SEA,ARI,2,6,65,(3:28) M.Lynch left tackle to SEA 43 for 8 yards (R.Walker O.Schofield).,3,10,2012 -20120909_SEA@ARI,2,32,51,SEA,ARI,1,10,57,(2:51) M.Lynch left tackle to SEA 45 for 2 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,2,32,12,SEA,ARI,2,8,55,(2:12) M.Lynch left tackle to SEA 47 for 2 yards (R.Walker).,3,10,2012 -20120909_SEA@ARI,2,32,0,SEA,ARI,3,6,53,(2:00) (Shotgun) R.Wilson pass incomplete short left to A.McCoy.,3,10,2012 -20120909_SEA@ARI,2,31,58,SEA,ARI,4,6,53,(1:58) J.Ryan punts 40 yards to ARZ 13 Center-C.Gresham fair catch by P.Peterson. PENALTY on SEA-J.Lane Offensive Holding 10 yards enforced at SEA 47 - No Play.,3,10,2012 -20120909_SEA@ARI,2,31,47,SEA,ARI,4,16,63,(1:47) J.Ryan punts 47 yards to ARZ 16 Center-C.Gresham. P.Peterson pushed ob at ARZ 23 for 7 yards (C.Maragos).,3,10,2012 -20120909_SEA@ARI,2,31,35,ARI,SEA,1,10,77,(1:35) (Shotgun) J.Skelton pass deep right to L.Fitzgerald to ARZ 46 for 23 yards (R.Sherman).,10,3,2012 -20120909_SEA@ARI,2,31,15,ARI,SEA,1,10,54,(1:15) (Shotgun) J.Skelton pass short left to E.Doucet ran ob at SEA 49 for 5 yards (B.Browner).,10,3,2012 -20120909_SEA@ARI,2,31,8,ARI,SEA,2,5,49,(1:08) PENALTY on ARZ-M.Floyd False Start 5 yards enforced at SEA 49 - No Play.,10,3,2012 -20120909_SEA@ARI,2,31,8,ARI,SEA,2,10,54,(1:08) J.Skelton pass short middle to A.Roberts to SEA 49 for 5 yards (K.Wright).,10,3,2012 -20120909_SEA@ARI,2,31,2,ARI,SEA,3,5,49,(1:02) PENALTY on ARZ-J.Skelton Delay of Game 5 yards enforced at SEA 49 - No Play.,10,3,2012 -20120909_SEA@ARI,2,31,2,ARI,SEA,3,10,54,(1:02) (Shotgun) J.Skelton pass incomplete short right to M.Floyd [C.Clemons].,10,3,2012 -20120909_SEA@ARI,2,30,55,ARI,SEA,4,10,54,(:55) D.Zastudil punts 39 yards to SEA 15 Center-M.Leach. B.Browner to SEA 14 for -1 yards (M.Adams).,10,3,2012 -20120909_SEA@ARI,2,30,45,SEA,ARI,1,10,86,(:45) L.Washington up the middle to SEA 16 for 2 yards (D.Dockett).,3,10,2012 -20120909_SEA@ARI,2,30,24,SEA,ARI,2,8,84,(:24) (Shotgun) R.Wilson pass deep middle to Z.Miller to SEA 43 for 27 yards (K.Rhodes).,3,10,2012 -20120909_SEA@ARI,2,30,17,SEA,ARI,1,10,57,(:17) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin. PENALTY on ARZ-R.Walker Defensive Offside 5 yards enforced at SEA 43 - No Play.,3,10,2012 -20120909_SEA@ARI,2,30,10,SEA,ARI,1,5,52,(:10) (Shotgun) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 48 - No Play.,3,10,2012 -20120909_SEA@ARI,2,30,10,SEA,ARI,1,10,57,(:10) (Shotgun) R.Wilson pass deep middle intended for D.Baldwin INTERCEPTED by A.Wilson at ARZ 12. A.Wilson to ARZ 10 for -2 yards. Lateral to P.Peterson to ARZ 28 for 18 yards (B.Giacomini).,3,10,2012 -20120909_SEA@ARI,3,30,0,SEA,ARI,,,57,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,3,10,2012 -20120909_SEA@ARI,3,30,0,ARI,SEA,1,10,80,(15:00) C.Wells up the middle to ARZ 29 for 9 yards (R.Bryant; A.Branch).,10,3,2012 -20120909_SEA@ARI,3,29,15,ARI,SEA,2,1,71,(14:15) J.Skelton pass incomplete short left to A.Roberts (B.Mebane).,10,3,2012 -20120909_SEA@ARI,3,29,11,ARI,SEA,3,1,71,(14:11) C.Wells up the middle to ARZ 29 for no gain (A.Branch; K.Wright).,10,3,2012 -20120909_SEA@ARI,3,28,27,ARI,SEA,4,1,71,(13:27) D.Zastudil punts 47 yards to SEA 24 Center-M.Leach. B.Browner to SEA 19 for -5 yards (Q.Groves; R.Walker). PENALTY on SEA-B.Browner Defensive Holding 5 yards enforced at SEA 19.,10,3,2012 -20120909_SEA@ARI,3,28,14,SEA,ARI,1,10,86,(13:14) M.Lynch up the middle to SEA 23 for 9 yards (W.Gay). FUMBLES (W.Gay) recovered by SEA-R.Wilson at SEA 22. R.Wilson to SEA 22 for no gain (P.Lenon).,3,10,2012 -20120909_SEA@ARI,3,27,34,SEA,ARI,2,2,78,(12:34) M.Lynch left tackle to SEA 23 for 1 yard (D.Williams).,3,10,2012 -20120909_SEA@ARI,3,26,54,SEA,ARI,3,1,77,(11:54) R.Wilson scrambles right end to SEA 25 for 2 yards (D.Washington).,3,10,2012 -20120909_SEA@ARI,3,26,8,ARI,SEA,1,10,83,(11:08) R.Wilson pass incomplete short left to M.Lynch (S.Acho). Arizona challenged the incomplete pass ruling and the play was REVERSED. R.Wilson FUMBLES (Aborted) at SEA 17 RECOVERED by ARZ-P.Lenon at SEA 17. P.Lenon to SEA 17 for no gain (P.McQuistan).,10,3,2012 -20120909_SEA@ARI,3,26,3,ARI,SEA,1,10,17,(11:03) R.Williams up the middle to SEA 18 for -1 yards (B.Wagner; R.Bryant).,10,3,2012 -20120909_SEA@ARI,3,25,21,ARI,SEA,2,11,18,(10:21) J.Skelton pass incomplete short right to L.Fitzgerald (K.Chancellor).,10,3,2012 -20120909_SEA@ARI,3,25,15,ARI,SEA,3,11,18,(10:15) (Shotgun) J.Skelton pass deep right intended for L.Fitzgerald INTERCEPTED by K.Chancellor at SEA 0. Touchback. PENALTY on SEA-M.Trufant Defensive Offside 5 yards enforced at SEA 18 - No Play.,10,3,2012 -20120909_SEA@ARI,3,25,8,ARI,SEA,3,6,13,(10:08) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,10,3,2012 -20120909_SEA@ARI,3,25,3,ARI,SEA,4,6,13,(10:03) J.Feely 31 yard field goal is GOOD Center-M.Leach Holder-D.Zastudil.,10,3,2012 -20120909_SEA@ARI,3,25,3,ARI,SEA,,,13,J.Feely kicks 72 yards from ARZ 35 to SEA -7. L.Washington pushed ob at ARZ 24 for 83 yards (R.Housler).,13,3,2012 -20120909_SEA@ARI,3,24,47,SEA,ARI,1,10,24,(9:47) R.Wilson pass short left to B.Edwards to ARZ 18 for 6 yards (W.Gay).,3,13,2012 -20120909_SEA@ARI,3,24,17,SEA,ARI,2,4,18,(9:17) M.Lynch right tackle to ARZ 11 for 7 yards (A.Wilson).,3,13,2012 -20120909_SEA@ARI,3,23,46,SEA,ARI,1,10,11,(8:46) R.Wilson pass short right to D.Baldwin to ARZ 10 for 1 yard (P.Peterson).,3,13,2012 -20120909_SEA@ARI,3,23,1,SEA,ARI,2,9,10,(8:01) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (C.Campbell).,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,3,9,10,(7:57) R.Wilson pass short middle to S.Rice for 10 yards TOUCHDOWN.,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka extra point is GOOD Center-C.Gresham Holder-J.Ryan.,3,13,2012 -20120909_SEA@ARI,3,22,57,SEA,ARI,,,10,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,10,13,2012 -20120909_SEA@ARI,3,22,51,ARI,SEA,1,10,80,(7:51) J.Skelton pass short right intended for L.Fitzgerald INTERCEPTED by R.Sherman [C.Clemons] at ARZ 34. R.Sherman ran ob at ARZ 34 for no gain. The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,13,10,2012 -20120909_SEA@ARI,3,22,42,SEA,ARI,1,10,34,(7:42) M.Lynch up the middle to ARZ 30 for 4 yards (P.Lenon Q.Groves).,10,13,2012 -20120909_SEA@ARI,3,22,5,SEA,ARI,2,6,30,(7:05) R.Wilson scrambles right end ran ob at ARZ 29 for 1 yard (D.Washington).,10,13,2012 -20120909_SEA@ARI,3,21,26,SEA,ARI,3,5,29,(6:26) (Shotgun) PENALTY on SEA-R.Wilson Delay of Game 5 yards enforced at ARZ 29 - No Play.,10,13,2012 -20120909_SEA@ARI,3,21,1,SEA,ARI,3,10,34,(6:01) (Shotgun) R.Wilson scrambles up the middle to ARZ 29 for 5 yards (D.Dockett; Q.Groves).,10,13,2012 -20120909_SEA@ARI,3,20,19,SEA,ARI,4,5,29,(5:19) S.Hauschka 47 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,10,13,2012 -20120909_SEA@ARI,3,20,19,SEA,ARI,,,29,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,13,13,2012 -20120909_SEA@ARI,3,20,13,ARI,SEA,1,10,80,(5:13) C.Wells up the middle to ARZ 20 for no gain (R.Bryant).,13,13,2012 -20120909_SEA@ARI,3,19,31,ARI,SEA,2,10,80,(4:31) (Shotgun) J.Skelton pass short left to J.King to ARZ 23 for 3 yards (E.Thomas).,13,13,2012 -20120909_SEA@ARI,3,18,52,ARI,SEA,3,7,77,(3:52) (Shotgun) J.Skelton pass incomplete short right to L.Fitzgerald [K.Wright]. Penalty on ARZ-L.Sendlein Offensive Holding declined.,13,13,2012 -20120909_SEA@ARI,3,18,45,ARI,SEA,4,7,77,(3:45) D.Zastudil punts 50 yards to SEA 27 Center-M.Leach. L.Washington to SEA 31 for 4 yards (R.Johnson).,13,13,2012 -20120909_SEA@ARI,3,18,32,SEA,ARI,1,10,69,(3:32) M.Lynch left tackle to SEA 34 for 3 yards (O.Schofield).,13,13,2012 -20120909_SEA@ARI,3,17,48,SEA,ARI,2,7,66,(2:48) M.Lynch up the middle to SEA 38 for 4 yards (P.Lenon).,13,13,2012 -20120909_SEA@ARI,3,17,6,SEA,ARI,3,3,62,(2:06) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (W.Gay).,13,13,2012 -20120909_SEA@ARI,3,17,1,SEA,ARI,4,3,62,(2:01) J.Ryan punts 48 yards to ARZ 14 Center-C.Gresham. P.Peterson ran ob at ARZ 20 for 6 yards (B.Obomanu).,13,13,2012 -20120909_SEA@ARI,3,16,52,ARI,SEA,1,10,80,(1:52) R.Williams left tackle to ARZ 21 for 1 yard (B.Mebane).,13,13,2012 -20120909_SEA@ARI,3,16,10,ARI,SEA,2,9,79,(1:10) (Shotgun) J.Skelton scrambles left end to ARZ 23 for 2 yards (L.Hill).,13,13,2012 -20120909_SEA@ARI,3,15,29,ARI,SEA,3,7,77,(:29) (Shotgun) J.Skelton pass incomplete short right to A.Roberts.,13,13,2012 -20120909_SEA@ARI,3,15,23,ARI,SEA,4,7,77,(:23) D.Zastudil punts 49 yards to SEA 28 Center-M.Leach fair catch by L.Washington.,13,13,2012 -20120909_SEA@ARI,3,15,15,SEA,ARI,1,10,72,(:15) R.Wilson pass short right to Z.Miller to SEA 32 for 4 yards (M.Adams; O.Schofield).,13,13,2012 -20120909_SEA@ARI,4,15,0,SEA,ARI,2,6,68,(15:00) PENALTY on SEA-R.Okung False Start 5 yards enforced at SEA 32 - No Play.,13,13,2012 -20120909_SEA@ARI,4,14,59,SEA,ARI,2,11,73,(14:59) R.Wilson pass short right to B.Edwards to SEA 43 for 16 yards (W.Gay).,13,13,2012 -20120909_SEA@ARI,4,14,20,SEA,ARI,1,10,57,(14:20) M.Lynch left tackle to SEA 43 for no gain (S.Acho).,13,13,2012 -20120909_SEA@ARI,4,13,45,SEA,ARI,2,10,57,(13:45) R.Wilson pass incomplete short right to S.Rice.,13,13,2012 -20120909_SEA@ARI,4,13,40,SEA,ARI,3,10,57,(13:40) R.Wilson pass short right to R.Turbin to SEA 45 for 2 yards (D.Washington) [O.Schofield].,13,13,2012 -20120909_SEA@ARI,4,12,44,SEA,ARI,4,8,55,(12:44) J.Ryan punts 44 yards to ARZ 11 Center-C.Gresham. P.Peterson ran ob at ARZ 18 for 7 yards (B.Wagner).,13,13,2012 -20120909_SEA@ARI,4,12,33,ARI,SEA,1,10,82,(12:33) J.Skelton pass incomplete short right to L.Fitzgerald (R.Sherman).,13,13,2012 -20120909_SEA@ARI,4,12,24,ARI,SEA,2,10,82,(12:24) R.Williams left tackle to ARZ 21 for 3 yards (B.Wagner). PENALTY on ARZ-D.Batiste Offensive Holding 8 yards enforced at ARZ 18 - No Play.,13,13,2012 -20120909_SEA@ARI,4,11,56,ARI,SEA,2,18,90,(11:56) (Shotgun) J.Skelton pass short right to R.Williams to ARZ 15 for 5 yards (K.Chancellor).,13,13,2012 -20120909_SEA@ARI,4,11,22,ARI,SEA,3,13,85,(11:22) (Shotgun) J.Skelton pass incomplete short right to A.Sherman (J.Jones).,13,13,2012 -20120909_SEA@ARI,4,11,15,ARI,SEA,4,13,85,(11:15) D.Zastudil punts 53 yards to SEA 32 Center-M.Leach. L.Washington to ARZ 16 for 52 yards (M.Leach).,13,13,2012 -20120909_SEA@ARI,4,10,58,SEA,ARI,1,10,16,(10:58) M.Lynch up the middle to ARZ 15 for 1 yard (D.Washington).,13,13,2012 -20120909_SEA@ARI,4,10,17,SEA,ARI,2,9,15,(10:17) R.Wilson pass incomplete short right to S.Rice [Q.Groves]. PENALTY on SEA-R.Wilson Intentional Grounding 12 yards enforced at ARZ 15.,13,13,2012 -20120909_SEA@ARI,4,10,11,SEA,ARI,3,21,27,(10:11) (Shotgun) R.Wilson pass incomplete short right to D.Baldwin (C.Campbell). PENALTY on SEA-R.Okung False Start 5 yards enforced at ARZ 27 - No Play.,13,13,2012 -20120909_SEA@ARI,4,10,11,SEA,ARI,3,26,32,(10:11) M.Lynch up the middle to ARZ 21 for 11 yards (P.Lenon).,13,13,2012 -20120909_SEA@ARI,4,9,25,SEA,ARI,4,15,21,(9:25) S.Hauschka 39 yard field goal is GOOD Center-C.Gresham Holder-J.Ryan.,13,13,2012 -20120909_SEA@ARI,4,9,25,SEA,ARI,,,21,S.Hauschka kicks 65 yards from SEA 35 to end zone Touchback.,16,13,2012 -20120909_SEA@ARI,4,8,37,ARI,SEA,1,10,80,(8:37) J.Skelton sacked at ARZ 14 for -6 yards (C.Clemons). FUMBLES (C.Clemons) and recovers at ARZ 15.,13,16,2012 -20120909_SEA@ARI,4,8,33,ARI,SEA,2,15,85,(8:33) J.Skelton pass short right to A.Roberts to ARZ 32 for 17 yards (R.Sherman) [B.Irvin]. ARZ-J.Skelton was injured during the play.,13,16,2012 -20120909_SEA@ARI,4,8,18,ARI,SEA,1,10,68,(8:18) K.Kolb pass incomplete deep right to L.Fitzgerald.,13,16,2012 -20120909_SEA@ARI,4,8,13,ARI,SEA,2,10,68,(8:13) (Shotgun) K.Kolb pass short left to L.Fitzgerald to ARZ 46 for 14 yards (K.Wright).,13,16,2012 -20120909_SEA@ARI,4,7,40,ARI,SEA,1,10,54,(7:40) K.Kolb pass incomplete short right to A.Roberts (J.Jones).,13,16,2012 -20120909_SEA@ARI,4,7,36,ARI,SEA,2,10,54,(7:36) K.Kolb pass short right to L.Fitzgerald to SEA 31 for 23 yards (K.Wright).,13,16,2012 -20120909_SEA@ARI,4,6,56,ARI,SEA,1,10,31,(6:56) K.Kolb pass incomplete deep right to A.Roberts. PENALTY on ARZ-D.Colledge Offensive Holding 10 yards enforced at SEA 31 - No Play.,13,16,2012 -20120909_SEA@ARI,4,6,50,ARI,SEA,1,20,41,(6:50) (Shotgun) K.Kolb pass incomplete short right to A.Roberts (R.Sherman). PENALTY on SEA-R.Sherman Defensive Pass Interference 9 yards enforced at SEA 41 - No Play.,13,16,2012 -20120909_SEA@ARI,4,6,18,ARI,SEA,1,10,32,(6:18) K.Kolb pass short left to T.Heap to SEA 21 for 11 yards (C.Clemons M.Trufant).,13,16,2012 -20120909_SEA@ARI,4,5,48,ARI,SEA,1,10,21,(5:48) L.Stephens-Howling up the middle to SEA 18 for 3 yards (L.Hill).,13,16,2012 -20120909_SEA@ARI,4,5,5,ARI,SEA,2,7,18,(5:05) K.Kolb pass short left to T.Heap to SEA 10 for 8 yards (K.Chancellor).,13,16,2012 -20120909_SEA@ARI,4,4,59,ARI,SEA,1,10,10,(4:59) (Shotgun) K.Kolb pass short right to L.Stephens-Howling ran ob at SEA 6 for 4 yards (R.Sherman).,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,2,6,6,(6:16) K.Kolb pass short left to A.Roberts for 6 yards TOUCHDOWN.,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely extra point is GOOD Center-M.Leach Holder-D.Zastudil.,13,16,2012 -20120909_SEA@ARI,4,6,16,ARI,SEA,,,6,J.Feely kicks 65 yards from ARZ 35 to end zone Touchback.,20,16,2012 -20120909_SEA@ARI,4,4,58,SEA,ARI,1,10,80,(4:58) R.Wilson pass short left to B.Edwards pushed ob at SEA 31 for 11 yards (W.Gay).,16,20,2012 -20120909_SEA@ARI,4,4,26,SEA,ARI,1,10,69,(4:26) M.Lynch right tackle to SEA 35 for 4 yards (P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,3,49,SEA,ARI,2,6,65,(3:49) R.Wilson sacked at SEA 27 for -8 yards (P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,3,12,SEA,ARI,3,14,73,(3:12) (Shotgun) R.Wilson pass short right to C.Martin to SEA 42 for 15 yards (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,2,37,SEA,ARI,1,10,58,(2:37) R.Wilson pass short right to Z.Miller to ARZ 49 for 9 yards (K.Rhodes).,16,20,2012 -20120909_SEA@ARI,4,2,10,SEA,ARI,2,1,49,(2:10) R.Wilson pass short middle to M.Lynch to ARZ 42 for 7 yards (D.Washington P.Lenon).,16,20,2012 -20120909_SEA@ARI,4,2,0,SEA,ARI,1,10,42,(2:00) (Shotgun) R.Wilson pass incomplete short left to D.Baldwin [D.Dockett].,16,20,2012 -20120909_SEA@ARI,4,1,57,SEA,ARI,2,10,42,(1:57) R.Wilson pass short left to B.Edwards pushed ob at ARZ 34 for 8 yards (W.Gay).,16,20,2012 -20120909_SEA@ARI,4,1,51,SEA,ARI,3,2,34,(1:51) (Shotgun) R.Wilson scrambles right end to ARZ 31 for 3 yards (O.Schofield).,16,20,2012 -20120909_SEA@ARI,4,1,39,SEA,ARI,1,10,31,(1:39) (Shotgun) R.Wilson pass incomplete deep left to D.Baldwin [C.Campbell].,16,20,2012 -20120909_SEA@ARI,4,1,31,SEA,ARI,2,10,31,(1:31) (Shotgun) R.Wilson pass short right to M.Lynch to ARZ 26 for 5 yards (D.Washington).,16,20,2012 -20120909_SEA@ARI,4,1,5,SEA,ARI,3,5,26,(1:05) (Shotgun) R.Wilson sacked at ARZ 27 for -1 yards (D.Washington).,16,20,2012 -20120909_SEA@ARI,4,0,59,SEA,ARI,4,6,27,(:59) (Shotgun) R.Wilson pass incomplete deep right to S.Rice. PENALTY on ARZ-P.Peterson Defensive Pass Interference 14 yards enforced at ARZ 27 - No Play.,16,20,2012 -20120909_SEA@ARI,4,0,52,SEA,ARI,1,10,13,(:52) (Shotgun) R.Wilson pass incomplete short left to B.Edwards (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,47,SEA,ARI,2,10,13,(:47) (Shotgun) R.Wilson pass incomplete short middle to D.Baldwin (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,42,SEA,ARI,3,10,13,(:42) (Shotgun) R.Wilson pass incomplete short right to B.Edwards. PENALTY on ARZ-W.Gay Defensive Pass Interference 7 yards enforced at ARZ 13 - No Play.,16,20,2012 -20120909_SEA@ARI,4,0,38,SEA,ARI,1,6,6,(:38) M.Lynch up the middle to ARZ 4 for 2 yards (O.Schofield).,16,20,2012 -20120909_SEA@ARI,4,0,30,SEA,ARI,2,4,4,(:30) R.Wilson pass incomplete short right to S.Rice (P.Peterson).,16,20,2012 -20120909_SEA@ARI,4,0,25,SEA,ARI,3,4,4,(:25) R.Wilson pass incomplete short right to C.Martin (M.Adams).,16,20,2012 -20120909_SEA@ARI,4,0,21,SEA,ARI,4,4,4,(:21) R.Wilson pass incomplete short right to B.Edwards.,16,20,2012 -20120909_SEA@ARI,4,0,18,ARI,SEA,1,10,96,(:18) K.Kolb kneels to ARZ 3 for -1 yards.,20,16,2012 -20120909_SEA@ARI,4,0,18,ARI,SEA,,,96,                      ,20,16,2012 -20120909_SF@GB,1,0,0,GB,SF,,,96,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,0,0,2012 -20120909_SF@GB,1,60,0,SF,GB,1,10,80,(15:00) F.Gore left guard to SF 25 for 5 yards (A.Hawk C.Wilson).,0,0,2012 -20120909_SF@GB,1,59,21,SF,GB,2,5,75,(14:21) K.Hunter right end to SF 29 for 4 yards (C.Wilson).,0,0,2012 -20120909_SF@GB,1,58,36,SF,GB,3,1,71,(13:36) (Shotgun) A.Smith sacked at SF 24 for -5 yards (C.Matthews).,0,0,2012 -20120909_SF@GB,1,58,14,SF,GB,4,6,76,(13:14) A.Lee punts 61 yards to GB 15 Center-B.Jennings. R.Cobb MUFFS catch touched at GB 15 and recovers at GB 15. R.Cobb to GB 19 for 4 yards (T.Brown). PENALTY on SF-C.Spillman Illegal Block Above the Waist 10 yards enforced at GB 19.,0,0,2012 -20120909_SF@GB,1,58,3,GB,SF,1,10,71,(13:03) (Shotgun) A.Rodgers pass short left to G.Jennings to GB 39 for 10 yards (P.Willis).,0,0,2012 -20120909_SF@GB,1,57,30,GB,SF,1,10,61,(12:30) (Shotgun) C.Benson right guard to GB 40 for 1 yard (N.Bowman Ald.Smith).,0,0,2012 -20120909_SF@GB,1,56,56,GB,SF,2,9,60,(11:56) (No Huddle) A.Rodgers sacked at GB 30 for -10 yards (Ald.Smith). PENALTY on SF-Ald.Smith Unsportsmanlike Conduct 15 yards enforced at GB 30.,0,0,2012 -20120909_SF@GB,1,56,56,GB,SF,1,10,55,(11:56) (Shotgun) C.Benson right guard to GB 46 for 1 yard (N.Bowman).,0,0,2012 -20120909_SF@GB,1,56,8,GB,SF,2,9,54,(11:08) (No Huddle Shotgun) A.Rodgers left end ran ob at SF 46 for 8 yards (C.Culliver).,0,0,2012 -20120909_SF@GB,1,56,1,GB,SF,3,1,46,(11:01) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to SF 42 for 4 yards (N.Bowman). San Francisco challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,0,2012 -20120909_SF@GB,1,55,41,GB,SF,1,10,42,(10:41) (Shotgun) C.Benson right tackle to SF 38 for 4 yards (N.Bowman; P.Willis).,0,0,2012 -20120909_SF@GB,1,55,0,GB,SF,2,6,38,(10:00) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings.,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,3,6,38,(9:56) (No Huddle Shotgun) PENALTY on GB-M.Newhouse False Start 5 yards enforced at SF 38 - No Play.,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,3,11,43,(9:56) (Shotgun) A.Rodgers sacked at 50 for -7 yards (C.Rogers).,0,0,2012 -20120909_SF@GB,1,54,56,GB,SF,4,18,50,(9:56) PENALTY on GB-S.Shields False Start 5 yards enforced at 50 - No Play.,0,0,2012 -20120909_SF@GB,1,54,19,GB,SF,4,23,55,(9:19) T.Masthay punts 55 yards to end zone Center-B.Goode Touchback.,0,0,2012 -20120909_SF@GB,1,54,11,SF,GB,1,10,80,(9:11) A.Smith pass short right to M.Crabtree to SF 31 for 11 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,53,30,SF,GB,1,10,69,(8:30) A.Smith right tackle to SF 36 for 5 yards (C.Wilson).,0,0,2012 -20120909_SF@GB,1,52,47,SF,GB,2,5,64,(7:47) (Shotgun) A.Smith pass short middle to M.Crabtree to SF 44 for 8 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,52,11,SF,GB,1,10,56,(7:11) K.Hunter right end to GB 48 for 8 yards (A.Hawk).,0,0,2012 -20120909_SF@GB,1,51,32,SF,GB,2,2,48,(6:32) L.Davis reported in as eligible. A.Smith pass deep left to R.Moss to GB 28 for 20 yards (J.Bush).,0,0,2012 -20120909_SF@GB,1,50,49,SF,GB,1,10,28,(5:49) A.Smith pass short middle to M.Manningham to GB 24 for 4 yards (C.Woodson). FUMBLES (C.Woodson) ball out of bounds at GB 26.,0,0,2012 -20120909_SF@GB,1,50,31,SF,GB,2,8,26,(5:31) K.Hunter left end pushed ob at GB 22 for 4 yards (M.Burnett).,0,0,2012 -20120909_SF@GB,1,50,1,SF,GB,3,4,22,(5:01) (Shotgun) A.Smith pass incomplete short left to D.Walker.,0,0,2012 -20120909_SF@GB,1,49,58,SF,GB,4,4,22,(4:58) D.Akers 40 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,0,0,2012 -20120909_SF@GB,1,49,58,SF,GB,,,22,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,3,0,2012 -20120909_SF@GB,1,49,53,GB,SF,1,10,80,(4:53) (Shotgun) C.Benson up the middle to GB 23 for 3 yards (R.McDonald; N.Bowman).,0,3,2012 -20120909_SF@GB,1,49,24,GB,SF,2,7,77,(4:24) (No Huddle Shotgun) A.Rodgers pass short right to J.Finley to GB 27 for 4 yards (C.Culliver).,0,3,2012 -20120909_SF@GB,1,48,54,GB,SF,3,3,73,(3:54) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 38 for 11 yards (P.Cox).,0,3,2012 -20120909_SF@GB,1,48,23,GB,SF,1,10,62,(3:23) (No Huddle) A.Rodgers pass short left to G.Jennings pushed ob at GB 44 for 6 yards (T.Brown).,0,3,2012 -20120909_SF@GB,1,48,4,GB,SF,2,4,56,(3:04) (No Huddle) A.Rodgers right end ran ob at GB 48 for 4 yards (Ald.Smith).,0,3,2012 -20120909_SF@GB,1,47,40,GB,SF,1,10,52,(2:40) (No Huddle Shotgun) C.Benson right end to 50 for 2 yards (R.McDonald).,0,3,2012 -20120909_SF@GB,1,47,6,GB,SF,2,8,50,(2:06) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones (T.Brown).,0,3,2012 -20120909_SF@GB,1,46,59,GB,SF,3,8,50,(1:59) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to SF 45 for 5 yards (T.Brown).,0,3,2012 -20120909_SF@GB,1,46,27,GB,SF,4,3,45,(1:27) T.Masthay punts 37 yards to SF 8 Center-B.Goode fair catch by K.Williams.,0,3,2012 -20120909_SF@GB,1,46,20,SF,GB,1,10,92,(1:20) F.Gore right guard to SF 13 for 5 yards (B.Raji; N.Perry).,3,0,2012 -20120909_SF@GB,1,45,35,SF,GB,2,5,87,(:35) F.Gore left end to SF 15 for 2 yards (T.Williams).,3,0,2012 -20120909_SF@GB,2,45,0,SF,GB,3,3,85,(15:00) (Shotgun) A.Smith pass incomplete short middle to K.Williams. PENALTY on GB-J.Bush Defensive Pass Interference 7 yards enforced at SF 15 - No Play.,3,0,2012 -20120909_SF@GB,2,44,56,SF,GB,1,10,78,(14:56) L.Davis and D.Kilgore reported in as eligible. F.Gore right end to SF 25 for 3 yards (D.Smith).,3,0,2012 -20120909_SF@GB,2,44,12,SF,GB,2,7,75,(14:12) (Shotgun) A.Smith pass incomplete deep right to D.Walker [C.Matthews]. PENALTY on GB-C.Matthews Roughing the Passer 15 yards enforced at SF 25 - No Play.,3,0,2012 -20120909_SF@GB,2,44,7,SF,GB,1,10,60,(14:07) F.Gore right end to 50 for 10 yards (C.Wilson; A.Hawk).,3,0,2012 -20120909_SF@GB,2,43,25,SF,GB,1,10,50,(13:25) A.Smith pass short right to V.Davis pushed ob at GB 40 for 10 yards (C.Woodson).,3,0,2012 -20120909_SF@GB,2,42,57,SF,GB,1,10,40,(12:57) W.Tukuafu reported in as eligible. A.Smith pass short left to M.Crabtree pushed ob at GB 31 for 9 yards (T.Williams).,3,0,2012 -20120909_SF@GB,2,42,29,SF,GB,2,1,31,(12:29) (Shotgun) A.Smith pass short middle to M.Crabtree to GB 15 for 16 yards (N.Perry).,3,0,2012 -20120909_SF@GB,2,41,54,SF,GB,1,10,15,(11:54) L.Davis and W.Tukuafu reported in as eligible. K.Hunter right end to GB 14 for 1 yard (N.Perry).,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,2,9,14,(11:14) (Shotgun) A.Smith pass short middle to R.Moss for 14 yards TOUCHDOWN.,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,3,0,2012 -20120909_SF@GB,2,41,14,SF,GB,,,14,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,10,0,2012 -20120909_SF@GB,2,41,10,GB,SF,1,10,80,(11:10) (Shotgun) A.Rodgers pass deep left to J.Nelson to GB 48 for 28 yards (T.Brown).,0,10,2012 -20120909_SF@GB,2,40,34,GB,SF,1,10,52,(10:34) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb to SF 46 for 6 yards (T.Brown N.Bowman).,0,10,2012 -20120909_SF@GB,2,40,1,GB,SF,2,4,46,(10:01) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 43 for 3 yards (N.Bowman).,0,10,2012 -20120909_SF@GB,2,39,30,GB,SF,3,1,43,(9:30) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 38 for 5 yards (D.Goldson).,0,10,2012 -20120909_SF@GB,2,39,2,GB,SF,1,10,38,(9:02) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones. PENALTY on SF-Ald.Smith Defensive Offside 5 yards enforced at SF 38 - No Play.,0,10,2012 -20120909_SF@GB,2,38,56,GB,SF,1,5,33,(8:56) (No Huddle Shotgun) A.Rodgers pass short middle to Ja.Jones to SF 33 for no gain (D.Goldson C.Culliver). PENALTY on GB-T.Lang Illegal Use of Hands 10 yards enforced at SF 33 - No Play.,0,10,2012 -20120909_SF@GB,2,38,29,GB,SF,1,15,43,(8:29) (No Huddle Shotgun) A.Rodgers pass incomplete short right to J.Finley.,0,10,2012 -20120909_SF@GB,2,38,24,GB,SF,2,15,43,(8:24) (No Huddle Shotgun) A.Rodgers pass short middle to J.Nelson to SF 30 for 13 yards (T.Brown).,0,10,2012 -20120909_SF@GB,2,37,40,GB,SF,3,2,30,(7:40) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones to SF 2 for 28 yards (C.Culliver). PENALTY on GB-Ja.Jones Offensive Pass Interference 10 yards enforced at SF 30 - No Play.,0,10,2012 -20120909_SF@GB,2,37,11,GB,SF,3,12,40,(7:11) (Shotgun) A.Rodgers pass short right to J.Finley to SF 24 for 16 yards (C.Rogers).,0,10,2012 -20120909_SF@GB,2,36,33,GB,SF,1,10,24,(6:33) (No Huddle) C.Benson right end to SF 23 for 1 yard (P.Willis).,0,10,2012 -20120909_SF@GB,2,35,53,GB,SF,2,9,23,(5:53) (No Huddle Shotgun) A.Rodgers pass short right to R.Cobb to SF 11 for 12 yards (P.Cox).,0,10,2012 -20120909_SF@GB,2,35,5,GB,SF,1,10,11,(5:05) (No Huddle Shotgun) PENALTY on GB-A.Rodgers Delay of Game 5 yards enforced at SF 11 - No Play.,0,10,2012 -20120909_SF@GB,2,34,47,GB,SF,1,15,16,(4:47) (No Huddle Shotgun) A.Rodgers pass incomplete deep middle to J.Finley. PENALTY on SF-D.Goldson Defensive Pass Interference 15 yards enforced at SF 16 - No Play.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,1,1,1,(4:43) (Shotgun) A.Rodgers pass short right to J.Finley for 1 yard TOUCHDOWN.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,0,10,2012 -20120909_SF@GB,2,34,43,GB,SF,,,1,M.Crosby kicks 74 yards from GB 35 to SF -9. K.Hunter Touchback.,7,10,2012 -20120909_SF@GB,2,34,40,SF,GB,1,10,80,(4:40) A.Smith pass short right to M.Manningham pushed ob at SF 31 for 11 yards (T.Williams).,10,7,2012 -20120909_SF@GB,2,34,40,SF,GB,1,10,69,(4:40) W.Tukuafu reported in as eligible. A.Smith pass short middle to R.Moss to SF 42 for 11 yards (M.Burnett).,10,7,2012 -20120909_SF@GB,2,33,27,SF,GB,1,10,58,(3:27) F.Gore left tackle to SF 47 for 5 yards (N.Perry).,10,7,2012 -20120909_SF@GB,2,32,52,SF,GB,2,5,53,(2:52) A.Smith pass incomplete short middle to V.Davis.,10,7,2012 -20120909_SF@GB,2,32,47,SF,GB,3,5,53,(2:47) (Shotgun) A.Smith pass incomplete short right to V.Davis. PENALTY on GB-C.Woodson Defensive Holding 5 yards enforced at SF 47 - No Play.,10,7,2012 -20120909_SF@GB,2,32,43,SF,GB,1,10,48,(2:43) F.Gore left tackle to GB 45 for 3 yards (D.Smith A.Hawk).,10,7,2012 -20120909_SF@GB,2,32,0,SF,GB,2,7,45,(2:00) (Shotgun) A.Smith pass short left to M.Manningham to GB 34 for 11 yards (J.Bush).,10,7,2012 -20120909_SF@GB,2,31,55,SF,GB,1,10,34,(1:55) (Shotgun) A.Smith pass incomplete short left to D.Walker.,10,7,2012 -20120909_SF@GB,2,31,50,SF,GB,2,10,34,(1:50) A.Smith pass short middle to M.Crabtree to GB 25 for 9 yards (A.Hawk M.Burnett).,10,7,2012 -20120909_SF@GB,2,31,5,SF,GB,3,1,25,(1:05) W.Tukuafu and L.Davis reported in as eligible. F.Gore right tackle to GB 25 for no gain (C.Woodson; A.Hawk).,10,7,2012 -20120909_SF@GB,2,30,59,SF,GB,4,1,25,(:59) W.Tukuafu D.Kilgore and A.Davis reported in as eligible. D.Akers 43 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,10,7,2012 -20120909_SF@GB,2,30,59,SF,GB,,,25,D.Akers kicks 65 yards from SF 35 to end zone Touchback.,13,7,2012 -20120909_SF@GB,2,30,55,GB,SF,1,10,80,(:55) (Shotgun) PENALTY on GB-B.Bulaga False Start 5 yards enforced at GB 20 - No Play.,7,13,2012 -20120909_SF@GB,2,30,55,GB,SF,1,15,85,(:55) (Shotgun) A.Rodgers pass incomplete short right.,7,13,2012 -20120909_SF@GB,2,30,48,GB,SF,2,15,85,(:48) (Shotgun) A.Rodgers pass short middle to J.Finley to GB 22 for 7 yards (N.Bowman).,7,13,2012 -20120909_SF@GB,2,30,39,GB,SF,3,8,78,(:39) (Shotgun) A.Rodgers pass incomplete short left.,7,13,2012 -20120909_SF@GB,2,30,32,GB,SF,4,8,78,(:32) T.Masthay punts 60 yards to SF 18 Center-B.Goode. K.Williams to SF 38 for 20 yards (R.Francois).,7,13,2012 -20120909_SF@GB,2,30,18,SF,GB,1,10,62,(:18) (Shotgun) C.Kaepernick left tackle to GB 45 for 17 yards (S.Shields).,13,7,2012 -20120909_SF@GB,2,30,11,SF,GB,1,10,45,(:11) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 -20120909_SF@GB,2,30,6,SF,GB,2,10,45,(:06) (Shotgun) A.Smith pass incomplete short right to M.Crabtree.,13,7,2012 -20120909_SF@GB,2,30,2,SF,GB,3,10,45,(:02) D.Akers 63 yard field goal is GOOD Center-B.Jennings Holder-A.Lee.,13,7,2012 -20120909_SF@GB,3,30,0,SF,GB,,,45,D.Akers kicks 68 yards from SF 35 to GB -3. R.Cobb to GB 21 for 24 yards (L.Grant).,16,7,2012 -20120909_SF@GB,3,29,54,GB,SF,1,10,79,(14:54) C.Benson left tackle to GB 23 for 2 yards (J.Smith).,7,16,2012 -20120909_SF@GB,3,29,11,GB,SF,2,8,77,(14:11) (Shotgun) A.Rodgers pass short right to J.Nelson pushed ob at GB 30 for 7 yards (C.Culliver).,7,16,2012 -20120909_SF@GB,3,28,41,GB,SF,3,1,70,(13:41) A.Rodgers pass incomplete deep middle to J.Nelson.,7,16,2012 -20120909_SF@GB,3,28,33,GB,SF,4,1,70,(13:33) T.Masthay punts 54 yards to SF 16 Center-B.Goode fair catch by K.Williams.,7,16,2012 -20120909_SF@GB,3,28,25,SF,GB,1,10,84,(13:25) A.Smith sacked at SF 13 for -3 yards (C.Woodson).,16,7,2012 -20120909_SF@GB,3,27,49,SF,GB,2,13,87,(12:49) (Shotgun) A.Smith pass short right to M.Manningham pushed ob at SF 18 for 5 yards (A.Hawk).,16,7,2012 -20120909_SF@GB,3,27,17,SF,GB,3,8,82,(12:17) (Shotgun) A.Smith pass short right to M.Crabtree pushed ob at SF 38 for 20 yards (D.Smith).,16,7,2012 -20120909_SF@GB,3,26,28,SF,GB,1,10,62,(11:28) F.Gore right end to GB 41 for 21 yards (A.Hawk).,16,7,2012 -20120909_SF@GB,3,25,48,SF,GB,1,10,41,(10:48) F.Gore right tackle to GB 38 for 3 yards (A.Hawk M.Burnett).,16,7,2012 -20120909_SF@GB,3,25,6,SF,GB,2,7,38,(10:06) A.Smith pass short middle to V.Davis to GB 9 for 29 yards (J.Bush).,16,7,2012 -20120909_SF@GB,3,24,17,SF,GB,1,9,9,(9:17) L.Davis reported in as eligible. K.Hunter left end for 9 yards TOUCHDOWN. The Replay Assistant challenged the runner broke the plane ruling and the play was REVERSED. L.Davis and L.Davis reported in as eligible. K.Hunter left end ran ob at GB 1 for 8 yards (M.Burnett).,16,7,2012 -20120909_SF@GB,3,24,13,SF,GB,2,1,1,(9:13) W.Tukuafu reported in as eligible. PENALTY on SF-W.Tukuafu False Start 5 yards enforced at GB 1 - No Play.,16,7,2012 -20120909_SF@GB,3,24,3,SF,GB,2,6,6,(9:03) (Shotgun) A.Smith pass short right to R.Moss to GB 4 for 2 yards (T.Williams; M.Burnett).,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,3,4,4,(8:21) (Shotgun) A.Smith pass short left to V.Davis for 4 yards TOUCHDOWN.,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,16,7,2012 -20120909_SF@GB,3,23,21,SF,GB,,,4,D.Akers kicks 70 yards from SF 35 to GB -5. R.Cobb to GB 23 for 28 yards (D.Walker).,23,7,2012 -20120909_SF@GB,3,23,10,GB,SF,1,10,77,(8:10) (Shotgun) A.Rodgers pass short left to J.Finley pushed ob at GB 33 for 10 yards (P.Willis; D.Whitner).,7,23,2012 -20120909_SF@GB,3,22,44,GB,SF,1,10,67,(7:44) C.Benson right end to GB 34 for 1 yard (C.Rogers).,7,23,2012 -20120909_SF@GB,3,22,3,GB,SF,2,9,66,(7:03) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 43 for 9 yards (P.Willis).,7,23,2012 -20120909_SF@GB,3,21,21,GB,SF,1,10,57,(6:21) C.Benson left guard to GB 46 for 3 yards (R.McDonald D.Goldson).,7,23,2012 -20120909_SF@GB,3,20,39,GB,SF,2,7,54,(5:39) A.Rodgers right guard to SF 49 for 5 yards (P.Willis).,7,23,2012 -20120909_SF@GB,3,19,50,GB,SF,3,2,49,(4:50) (Shotgun) A.Rodgers pass incomplete short right to J.Finley.,7,23,2012 -20120909_SF@GB,3,19,46,GB,SF,4,2,49,(4:46) T.Masthay punts 45 yards to SF 4 Center-B.Goode out of bounds.,7,23,2012 -20120909_SF@GB,3,19,36,SF,GB,1,10,96,(4:36) L.Davis reported in as eligible. F.Gore left end pushed ob at SF 11 for 7 yards (A.Hawk).,23,7,2012 -20120909_SF@GB,3,19,10,SF,GB,2,3,89,(4:10) K.Hunter left tackle to SF 15 for 4 yards (D.Smith N.Perry).,23,7,2012 -20120909_SF@GB,3,18,28,SF,GB,1,10,85,(3:28) A.Smith sacked at SF 10 for -5 yards (sack split by C.Woodson and C.Matthews).,23,7,2012 -20120909_SF@GB,3,17,51,SF,GB,2,15,90,(2:51) F.Gore left end pushed ob at SF 26 for 16 yards (J.McMillian).,23,7,2012 -20120909_SF@GB,3,17,28,SF,GB,1,10,74,(2:28) L.Davis and D.Kilgore reported in as eligible. K.Hunter right end to SF 31 for 5 yards (D.Smith).,23,7,2012 -20120909_SF@GB,3,16,43,SF,GB,2,5,69,(1:43) A.Smith pass incomplete deep right to V.Davis.,23,7,2012 -20120909_SF@GB,3,16,37,SF,GB,3,5,69,(1:37) (Shotgun) A.Smith pass short left to M.Crabtree pushed ob at SF 34 for 3 yards (J.Bush) [C.Matthews].,23,7,2012 -20120909_SF@GB,3,15,53,SF,GB,4,2,66,(:53) A.Lee punts 47 yards to GB 19 Center-B.Jennings fair catch by R.Cobb.,23,7,2012 -20120909_SF@GB,3,15,46,GB,SF,1,10,81,(:46) (Shotgun) A.Rodgers pass incomplete short middle to J.Finley [A.Brooks].,7,23,2012 -20120909_SF@GB,3,15,41,GB,SF,2,10,81,(:41) (Shotgun) A.Rodgers pass short middle to R.Cobb to GB 35 for 16 yards (D.Whitner).,7,23,2012 -20120909_SF@GB,3,15,4,GB,SF,1,10,65,(:04) (No Huddle Shotgun) A.Rodgers pass short right to Ja.Jones to GB 48 for 13 yards (R.McDonald).,7,23,2012 -20120909_SF@GB,4,15,0,GB,SF,1,10,52,(15:00) (Shotgun) A.Rodgers pass short left to G.Jennings pushed ob at SF 48 for 4 yards (T.Brown).,7,23,2012 -20120909_SF@GB,4,14,24,GB,SF,2,6,48,(14:24) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Finley (N.Bowman).,7,23,2012 -20120909_SF@GB,4,14,20,GB,SF,3,6,48,(14:20) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to G.Jennings.,7,23,2012 -20120909_SF@GB,4,14,13,GB,SF,4,6,48,(14:13) T.Masthay punts 38 yards to SF 10 Center-B.Goode fair catch by K.Williams.,7,23,2012 -20120909_SF@GB,4,14,6,SF,GB,1,10,90,(14:06) W.Tukuafu reported in as eligible. F.Gore left tackle to SF 13 for 3 yards (D.Smith M.Burnett).,23,7,2012 -20120909_SF@GB,4,13,22,SF,GB,2,7,87,(13:22) A.Smith sacked at SF 13 for 0 yards (M.Burnett). PENALTY on SF-J.Staley Offensive Holding 7 yards enforced at SF 13 - No Play.,23,7,2012 -20120909_SF@GB,4,13,1,SF,GB,2,14,94,(13:01) K.Hunter right end to SF 8 for 2 yards (N.Perry).,23,7,2012 -20120909_SF@GB,4,12,17,SF,GB,3,12,92,(12:17) (Shotgun) F.Gore up the middle to SF 14 for 6 yards (N.Perry).,23,7,2012 -20120909_SF@GB,4,11,35,SF,GB,4,6,86,(11:35) A.Lee punts 61 yards to GB 25 Center-B.Jennings. R.Cobb for 75 yards TOUCHDOWN.,23,7,2012 -20120909_SF@GB,4,11,35,GB,SF,,,86,TWO-POINT CONVERSION ATTEMPT. A.Rodgers pass to J.Nelson is complete. ATTEMPT SUCCEEDS.,7,23,2012 -20120909_SF@GB,4,11,35,GB,SF,,,86,M.Crosby kicks 72 yards from GB 35 to SF -7. K.Hunter Touchback.,15,23,2012 -20120909_SF@GB,4,11,16,SF,GB,1,10,80,(11:16) (Shotgun) A.Smith up the middle to SF 25 for 5 yards (N.Perry).,23,15,2012 -20120909_SF@GB,4,10,35,SF,GB,2,5,75,(10:35) K.Williams right tackle to SF 28 for 3 yards (D.Smith).,23,15,2012 -20120909_SF@GB,4,9,53,SF,GB,3,2,72,(9:53) (Shotgun) A.Smith pass short left to F.Gore to SF 29 for 1 yard (S.Shields). San Francisco challenged the runner was down by contact ruling and the play was Upheld. (Timeout #2.),23,15,2012 -20120909_SF@GB,4,9,6,SF,GB,4,1,71,(9:06) A.Lee punts 46 yards to GB 25 Center-B.Jennings fair catch by R.Cobb.,23,15,2012 -20120909_SF@GB,4,8,59,GB,SF,1,10,75,(8:59) A.Rodgers pass short middle intended for G.Jennings INTERCEPTED by N.Bowman at GB 34. N.Bowman to GB 23 for 11 yards (C.Benson).,15,23,2012 -20120909_SF@GB,4,8,50,SF,GB,1,10,23,(8:50) L.Davis and D.Kilgore reported in as eligible. F.Gore right end for 23 yards TOUCHDOWN.,23,15,2012 -20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers extra point is GOOD Center-B.Jennings Holder-A.Lee.,23,15,2012 -20120909_SF@GB,4,8,50,SF,GB,,,23,D.Akers kicks 62 yards from SF 35 to GB 3. R.Cobb to GB 24 for 21 yards (C.Culliver).,30,15,2012 -20120909_SF@GB,4,8,36,GB,SF,1,10,76,(8:36) (Shotgun) A.Rodgers pass incomplete short middle to G.Jennings. PENALTY on SF-C.Rogers Defensive Pass Interference 4 yards enforced at GB 24 - No Play.,15,30,2012 -20120909_SF@GB,4,8,32,GB,SF,1,10,72,(8:32) (Shotgun) A.Rodgers pass short left to R.Cobb pushed ob at GB 35 for 7 yards (C.Rogers).,15,30,2012 -20120909_SF@GB,4,8,11,GB,SF,2,3,65,(8:11) (No Huddle Shotgun) A.Rodgers pass short left to R.Cobb ran ob at GB 47 for 12 yards. PENALTY on GB-B.Bulaga Offensive Holding 10 yards enforced at GB 35 - No Play.,15,30,2012 -20120909_SF@GB,4,7,44,GB,SF,2,13,75,(7:44) (Shotgun) A.Rodgers pass short right to J.Nelson to GB 32 for 7 yards (D.Whitner).,15,30,2012 -20120909_SF@GB,4,7,15,GB,SF,3,6,68,(7:15) (No Huddle Shotgun) A.Rodgers pass deep right to Ja.Jones pushed ob at SF 19 for 49 yards (N.Bowman).,15,30,2012 -20120909_SF@GB,4,6,50,GB,SF,1,10,19,(6:50) (Shotgun) A.Rodgers pass short left to Ja.Jones to SF 10 for 9 yards (D.Whitner).,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,2,1,10,(6:09) (No Huddle Shotgun) A.Rodgers pass short left to Ja.Jones for 10 yards TOUCHDOWN.,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,15,30,2012 -20120909_SF@GB,4,6,9,GB,SF,,,10,M.Crosby kicks 70 yards from GB 35 to SF -5. K.Hunter to SF 26 for 31 yards (C.Hayward J.Bush).,22,30,2012 -20120909_SF@GB,4,5,58,SF,GB,1,10,74,(5:58) K.Hunter right guard to SF 31 for 5 yards (R.Pickett A.Hawk).,30,22,2012 -20120909_SF@GB,4,5,18,SF,GB,2,5,69,(5:18) L.Davis and D.Kilgore reported in as eligible. A.Smith pass short right to B.Miller to SF 46 for 15 yards (A.Hawk).,30,22,2012 -20120909_SF@GB,4,4,46,SF,GB,1,10,54,(4:46) F.Gore right tackle to SF 46 for no gain (D.Smith).,30,22,2012 -20120909_SF@GB,4,4,1,SF,GB,2,10,54,(4:01) (Shotgun) A.Smith sacked at SF 39 for -7 yards (C.Matthews).,30,22,2012 -20120909_SF@GB,4,3,56,SF,GB,3,17,61,(3:56) (Shotgun) A.Smith right tackle to SF 44 for 5 yards (D.Smith).,30,22,2012 -20120909_SF@GB,4,3,45,SF,GB,4,12,56,(3:45) A.Lee punts 41 yards to GB 15 Center-B.Jennings. R.Cobb to GB 16 for 1 yard (T.Brock).,30,22,2012 -20120909_SF@GB,4,3,37,GB,SF,1,10,84,(3:37) (Shotgun) A.Rodgers pass incomplete short left to G.Jennings (D.Whitner).,22,30,2012 -20120909_SF@GB,4,3,34,GB,SF,2,10,84,(3:34) (Shotgun) A.Rodgers left guard to GB 17 for 1 yard (A.Brooks).,22,30,2012 -20120909_SF@GB,4,3,0,GB,SF,3,9,83,(3:00) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to GB 27 for 10 yards (N.Bowman).,22,30,2012 -20120909_SF@GB,4,2,35,GB,SF,1,10,73,(2:35) (No Huddle Shotgun) A.Rodgers pass short middle to J.Finley to GB 32 for 5 yards (N.Bowman).,22,30,2012 -20120909_SF@GB,4,2,10,GB,SF,2,5,68,(2:10) (No Huddle Shotgun) A.Rodgers pass short middle to G.Jennings to GB 41 for 9 yards (C.Culliver).,22,30,2012 -20120909_SF@GB,4,2,0,GB,SF,1,10,59,(2:00) (Shotgun) PENALTY on SF-A.Brooks Neutral Zone Infraction 5 yards enforced at GB 41 - No Play.,22,30,2012 -20120909_SF@GB,4,2,0,GB,SF,1,5,54,(2:00) (Shotgun) A.Rodgers right end ran ob at SF 45 for 9 yards (D.Goldson).,22,30,2012 -20120909_SF@GB,4,1,53,GB,SF,1,10,45,(1:53) (Shotgun) A.Rodgers pass incomplete short left to Ja.Jones [A.Brooks].,22,30,2012 -20120909_SF@GB,4,1,50,GB,SF,2,10,45,(1:50) (No Huddle Shotgun) A.Rodgers sacked at GB 48 for -7 yards (A.Brooks).,22,30,2012 -20120909_SF@GB,4,1,22,GB,SF,3,17,52,(1:22) (No Huddle Shotgun) A.Rodgers pass short middle to R.Cobb to SF 45 for 7 yards (D.Goldson).,22,30,2012 -20120909_SF@GB,4,0,54,GB,SF,4,10,45,(:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep right to J.Nelson (C.Culliver).,22,30,2012 -20120909_SF@GB,4,0,49,SF,GB,1,10,55,(:49) A.Smith kneels to SF 44 for -1 yards.,30,22,2012 -20120909_SF@GB,4,0,26,SF,GB,2,11,56,(:26) A.Smith kneels to SF 43 for -1 yards.,30,22,2012 -20120909_SF@GB,4,0,26,SF,GB,,,56,                      ,30,22,2012 -20120909_CAR@TB,1,0,0,TB,CAR,,,56,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,0,0,2012 -20120909_CAR@TB,1,60,0,CAR,TB,1,10,80,(15:00) D.Williams right end to CAR 16 for -4 yards (M.Foster).,0,0,2012 -20120909_CAR@TB,1,59,27,CAR,TB,2,14,84,(14:27) (Shotgun) C.Newton pass short middle to G.Olsen to CAR 36 for 20 yards (R.Barber).,0,0,2012 -20120909_CAR@TB,1,58,49,CAR,TB,1,10,64,(13:49) (Shotgun) D.Williams left guard to CAR 33 for -3 yards (G.McCoy).,0,0,2012 -20120909_CAR@TB,1,58,5,CAR,TB,2,13,67,(13:05) (Shotgun) C.Newton pass incomplete short middle to G.Olsen (M.Barron).,0,0,2012 -20120909_CAR@TB,1,57,57,CAR,TB,3,13,67,(12:57) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,0,2012 -20120909_CAR@TB,1,57,51,CAR,TB,4,13,67,(12:51) (Punt formation) B.Nortman punts 47 yards to TB 20 Center-J.Jansen. P.Parker to TB 20 for no gain (T.Davis).,0,0,2012 -20120909_CAR@TB,1,57,40,TB,CAR,1,10,80,(12:40) J.Freeman pass short left to M.Williams pushed ob at TB 26 for 6 yards (J.Norman).,0,0,2012 -20120909_CAR@TB,1,57,25,TB,CAR,2,4,74,(12:25) D.Martin right tackle to TB 30 for 4 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,56,39,TB,CAR,1,10,70,(11:39) D.Martin right tackle to TB 34 for 4 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,55,57,TB,CAR,2,6,66,(10:57) J.Freeman pass short right to E.Lorig to TB 39 for 5 yards (L.Kuechly).,0,0,2012 -20120909_CAR@TB,1,55,27,TB,CAR,3,1,61,(10:27) J.Freeman up the middle to TB 41 for 2 yards (G.Hardy).,0,0,2012 -20120909_CAR@TB,1,54,45,TB,CAR,1,10,59,(9:45) J.Freeman pass short right to E.Lorig to CAR 44 for 15 yards (H.Nakamura).,0,0,2012 -20120909_CAR@TB,1,54,13,TB,CAR,1,10,44,(9:13) D.Martin left tackle to CAR 43 for 1 yard (J.Beason).,0,0,2012 -20120909_CAR@TB,1,53,36,TB,CAR,2,9,43,(8:36) J.Freeman pass short left to D.Martin to CAR 32 for 11 yards (L.Kuechly).,0,0,2012 -20120909_CAR@TB,1,52,42,TB,CAR,1,10,32,(7:42) D.Martin up the middle to CAR 26 for 6 yards (C.Godfrey).,0,0,2012 -20120909_CAR@TB,1,51,58,TB,CAR,2,4,26,(6:58) (Shotgun) J.Freeman pass short left to D.Martin pushed ob at CAR 24 for 2 yards (J.Anderson).,0,0,2012 -20120909_CAR@TB,1,51,27,TB,CAR,3,2,24,(6:27) (Shotgun) J.Freeman pass short left to V.Jackson to CAR 17 for 7 yards (J.Norman).,0,0,2012 -20120909_CAR@TB,1,51,0,TB,CAR,1,10,17,(6:00) D.Martin left end pushed ob at CAR 6 for 11 yards (J.Beason H.Nakamura).,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,1,6,6,(5:28) J.Freeman pass short middle to M.Williams for 6 yards TOUCHDOWN.,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,,,6,C.Barth extra point is GOOD Center-A.Economos Holder-M.Koenen.,0,0,2012 -20120909_CAR@TB,1,50,28,TB,CAR,,,6,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,7,0,2012 -20120909_CAR@TB,1,50,20,CAR,TB,1,10,80,(5:20) (Shotgun) M.Tolbert right guard to CAR 22 for 2 yards (L.David; Q.Black).,0,7,2012 -20120909_CAR@TB,1,49,46,CAR,TB,2,8,78,(4:46) (Shotgun) C.Newton pass short left to G.Olsen to CAR 26 for 4 yards (L.David).,0,7,2012 -20120909_CAR@TB,1,49,2,CAR,TB,3,4,74,(4:02) (Shotgun) C.Newton pass incomplete short left to K.Pilares (R.Barber).,0,7,2012 -20120909_CAR@TB,1,48,56,CAR,TB,4,4,74,(3:56) (Punt formation) B.Nortman punts 39 yards to TB 35 Center-J.Jansen fair catch by S.Stroughter. PENALTY on CAR-C.Munnerlyn Fair Catch Interference 15 yards enforced at TB 35.,0,7,2012 -20120909_CAR@TB,1,48,47,TB,CAR,1,10,50,(3:47) J.Freeman pass deep right to D.Clark to CAR 17 for 33 yards (J.Beason).,7,0,2012 -20120909_CAR@TB,1,48,0,TB,CAR,1,10,17,(3:00) D.Martin left end to CAR 18 for -1 yards (J.Beason; C.Munnerlyn).,7,0,2012 -20120909_CAR@TB,1,47,14,TB,CAR,2,11,18,(2:14) D.Martin left guard to CAR 18 for no gain (J.Anderson).,7,0,2012 -20120909_CAR@TB,1,46,30,TB,CAR,3,11,18,(1:30) (Shotgun) J.Freeman pass incomplete short middle to V.Jackson (F.Alexander).,7,0,2012 -20120909_CAR@TB,1,46,25,TB,CAR,4,11,18,(1:25) (Field Goal formation) C.Barth 36 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,7,0,2012 -20120909_CAR@TB,1,46,25,TB,CAR,,,18,M.Koenen kicks 74 yards from TB 35 to CAR -9. K.Pilares Touchback.,10,0,2012 -20120909_CAR@TB,1,46,20,CAR,TB,1,10,80,(1:20) (Shotgun) C.Newton pass short right to L.Murphy to CAR 30 for 10 yards (A.Talib).,0,10,2012 -20120909_CAR@TB,1,45,41,CAR,TB,1,10,70,(:41) C.Newton pass short middle to D.Williams to CAR 35 for 5 yards (Q.Black).,0,10,2012 -20120909_CAR@TB,2,45,0,CAR,TB,2,5,65,(15:00) (Shotgun) K.Pilares left end to CAR 40 for 5 yards (M.Barron).,0,10,2012 -20120909_CAR@TB,2,44,19,CAR,TB,1,10,60,(14:19) C.Newton pass short right to M.Tolbert to CAR 34 for -6 yards (R.Barber).,0,10,2012 -20120909_CAR@TB,2,43,34,CAR,TB,2,16,66,(13:34) (Shotgun) C.Newton pass short right to S.Smith to TB 35 for 31 yards (E.Wright).,0,10,2012 -20120909_CAR@TB,2,43,16,CAR,TB,1,10,35,(13:16) (Shotgun) C.Newton pass short left to L.Murphy to TB 33 for 2 yards (B.McDonald A.Talib).,0,10,2012 -20120909_CAR@TB,2,42,37,CAR,TB,2,8,33,(12:37) C.Newton left tackle to TB 38 for -5 yards (Q.Black).,0,10,2012 -20120909_CAR@TB,2,41,52,CAR,TB,3,13,38,(11:52) (Shotgun) C.Newton pass incomplete deep right to S.Smith (E.Wright).,0,10,2012 -20120909_CAR@TB,2,41,44,CAR,TB,4,13,38,(11:44) (Punt formation) B.Nortman punts 30 yards to TB 8 Center-J.Jansen fair catch by S.Stroughter.,0,10,2012 -20120909_CAR@TB,2,41,38,TB,CAR,1,10,92,(11:38) J.Freeman pass incomplete short left to V.Jackson (F.Alexander).,10,0,2012 -20120909_CAR@TB,2,41,31,TB,CAR,2,10,92,(11:31) L.Blount up the middle to TB 12 for 4 yards (G.Hardy).,10,0,2012 -20120909_CAR@TB,2,40,48,TB,CAR,3,6,88,(10:48) (Shotgun) J.Freeman pass short left to M.Williams to TB 20 for 8 yards (C.Gamble). PENALTY on CAR-C.Gamble Defensive Pass Interference 8 yards enforced at TB 12 - No Play.,10,0,2012 -20120909_CAR@TB,2,40,23,TB,CAR,1,10,80,(10:23) L.Blount left guard to TB 23 for 3 yards (L.Kuechly; D.Edwards).,10,0,2012 -20120909_CAR@TB,2,39,41,TB,CAR,2,7,77,(9:41) J.Freeman pass incomplete deep left to V.Jackson. PENALTY on CAR-J.Norman Defensive Pass Interference 22 yards enforced at TB 23 - No Play.,10,0,2012 -20120909_CAR@TB,2,39,33,TB,CAR,1,10,55,(9:33) J.Freeman pass short right to L.Blount to TB 47 for 2 yards (J.Anderson).,10,0,2012 -20120909_CAR@TB,2,38,49,TB,CAR,2,8,53,(8:49) L.Blount left tackle to TB 48 for 1 yard (D.Edwards).,10,0,2012 -20120909_CAR@TB,2,38,11,TB,CAR,3,7,52,(8:11) (Shotgun) J.Freeman pass deep middle to V.Jackson to CAR 31 for 21 yards (H.Nakamura).,10,0,2012 -20120909_CAR@TB,2,37,23,TB,CAR,1,10,31,(7:23) J.Freeman scrambles left end to CAR 19 for 12 yards (F.Kearse; L.Kuechly).,10,0,2012 -20120909_CAR@TB,2,36,33,TB,CAR,1,10,19,(6:33) D.Martin left tackle to CAR 19 for no gain (C.Godfrey G.Hardy).,10,0,2012 -20120909_CAR@TB,2,36,0,TB,CAR,2,10,19,(6:00) J.Freeman pass short left to V.Jackson to CAR 4 for 15 yards (J.Norman; H.Nakamura).,10,0,2012 -20120909_CAR@TB,2,35,9,TB,CAR,1,4,4,(5:09) D.Martin right guard to CAR 1 for 3 yards (J.Beason).,10,0,2012 -20120909_CAR@TB,2,34,26,TB,CAR,2,1,1,(4:26) D.Martin left guard to CAR 1 for no gain (J.Beason T.Davis).,10,0,2012 -20120909_CAR@TB,2,33,43,TB,CAR,3,1,1,(3:43) J.Freeman pass short right to E.Lorig to CAR 2 for -1 yards (T.Davis).,10,0,2012 -20120909_CAR@TB,2,32,59,TB,CAR,4,2,2,(2:59) (Field Goal formation) C.Barth 20 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,10,0,2012 -20120909_CAR@TB,2,32,59,TB,CAR,,,2,M.Koenen kicks 65 yards from TB 35 to end zone Touchback.,13,0,2012 -20120909_CAR@TB,2,32,55,CAR,TB,1,10,80,(2:55) (Shotgun) C.Newton pass short left to S.Smith to CAR 31 for 11 yards (E.Wright).,0,13,2012 -20120909_CAR@TB,2,32,34,CAR,TB,1,10,69,(2:34) (Shotgun) C.Newton pass deep left to S.Smith ran ob at CAR 47 for 16 yards. Tampa Bay challenged the pass completion ruling and the play was Upheld. (Timeout #1.),0,13,2012 -20120909_CAR@TB,2,32,14,CAR,TB,1,10,53,(2:14) (Shotgun) C.Newton pass short left to M.Tolbert to CAR 41 for -6 yards (M.Foster A.Clayborn) [G.McCoy].,0,13,2012 -20120909_CAR@TB,2,32,0,CAR,TB,2,16,59,(2:00) (Shotgun) PENALTY on CAR-A.Silatolu False Start 5 yards enforced at CAR 41 - No Play.,0,13,2012 -20120909_CAR@TB,2,32,0,CAR,TB,2,21,64,(2:00) (Shotgun) C.Newton scrambles right end to CAR 40 for 4 yards (M.Foster).,0,13,2012 -20120909_CAR@TB,2,31,16,CAR,TB,3,17,60,(1:16) (Shotgun) C.Newton pass deep middle to B.LaFell to TB 41 for 19 yards (R.Barber; L.David).,0,13,2012 -20120909_CAR@TB,2,30,50,CAR,TB,1,10,41,(:50) C.Newton pass short right to G.Olsen pushed ob at TB 35 for 6 yards (M.Barron).,0,13,2012 -20120909_CAR@TB,2,30,46,CAR,TB,2,4,35,(:46) (Shotgun) C.Newton sacked ob at TB 37 for -2 yards (R.Barber).,0,13,2012 -20120909_CAR@TB,2,30,36,CAR,TB,3,6,37,(:36) (Shotgun) PENALTY on CAR-G.Hangartner False Start 5 yards enforced at TB 37 - No Play.,0,13,2012 -20120909_CAR@TB,2,30,36,CAR,TB,3,11,42,(:36) (Shotgun) C.Newton pass incomplete deep left to S.Smith.,0,13,2012 -20120909_CAR@TB,2,30,29,CAR,TB,4,11,42,(:29) (Punt formation) B.Nortman punts 36 yards to TB 6 Center-J.Jansen downed by CAR-C.Jones.,0,13,2012 -20120909_CAR@TB,2,30,15,TB,CAR,1,10,94,(:15) J.Freeman kneels to TB 5 for -1 yards.,13,0,2012 -20120909_CAR@TB,3,30,0,CAR,TB,,,94,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 10 for 15 yards (S.Martin).,0,13,2012 -20120909_CAR@TB,3,29,56,TB,CAR,1,10,90,(14:56) (Shotgun) D.Martin left guard to TB 15 for 5 yards (R.Edwards).,13,0,2012 -20120909_CAR@TB,3,29,16,TB,CAR,2,5,85,(14:16) J.Freeman scrambles left tackle to TB 22 for 7 yards (C.Johnson).,13,0,2012 -20120909_CAR@TB,3,28,29,TB,CAR,1,10,78,(13:29) D.Martin left tackle to TB 24 for 2 yards (D.Edwards).,13,0,2012 -20120909_CAR@TB,3,27,45,TB,CAR,2,8,76,(12:45) PENALTY on TB-T.Larsen False Start 5 yards enforced at TB 24 - No Play.,13,0,2012 -20120909_CAR@TB,3,27,19,TB,CAR,2,13,81,(12:19) J.Freeman pass incomplete short left to V.Jackson (C.Johnson).,13,0,2012 -20120909_CAR@TB,3,27,12,TB,CAR,3,13,81,(12:12) (Shotgun) D.Ware up the middle to TB 25 for 6 yards (C.Godfrey).,13,0,2012 -20120909_CAR@TB,3,26,35,TB,CAR,4,7,75,(11:35) (Punt formation) M.Koenen punts 52 yards to CAR 23 Center-A.Economos. J.Adams to CAR 30 for 7 yards (E.Lorig).,13,0,2012 -20120909_CAR@TB,3,26,21,CAR,TB,1,10,70,(11:21) D.Williams up the middle to CAR 30 for no gain (L.David).,0,13,2012 -20120909_CAR@TB,3,25,46,CAR,TB,2,10,70,(10:46) (Shotgun) C.Newton pass short left to S.Smith to CAR 35 for 5 yards (R.Miller).,0,13,2012 -20120909_CAR@TB,3,25,2,CAR,TB,3,5,65,(10:02) (Shotgun) C.Newton pass short right to G.Olsen ran ob at CAR 46 for 11 yards.,0,13,2012 -20120909_CAR@TB,3,24,37,CAR,TB,1,10,54,(9:37) (Shotgun) C.Newton pass short middle to S.Smith pushed ob at TB 22 for 32 yards (M.Barron).,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,1,10,22,(9:03) (Shotgun) C.Newton pass deep middle to B.LaFell for 22 yards TOUCHDOWN.,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,13,2012 -20120909_CAR@TB,3,24,3,CAR,TB,,,22,J.Medlock kicks 64 yards from CAR 35 to TB 1. M.Smith to TB 18 for 17 yards (J.Phillips K.Onatolu).,7,13,2012 -20120909_CAR@TB,3,23,49,TB,CAR,1,10,82,(8:49) D.Martin left tackle to TB 23 for 5 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,23,12,TB,CAR,2,5,77,(8:12) J.Freeman pass deep middle to V.Jackson to CAR 46 for 31 yards (J.Norman). PENALTY on TB-T.Larsen Offensive Holding 10 yards enforced at TB 23 - No Play.,13,7,2012 -20120909_CAR@TB,3,22,41,TB,CAR,2,15,87,(7:41) (Shotgun) J.Freeman pass short right to D.Martin to TB 21 for 8 yards (F.Alexander).,13,7,2012 -20120909_CAR@TB,3,21,54,TB,CAR,3,7,79,(6:54) (Shotgun) J.Freeman sacked at TB 14 for -7 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,3,21,18,TB,CAR,4,14,86,(6:18) (Punt formation) M.Koenen punts 48 yards to CAR 38 Center-A.Economos. J.Adams to TB 41 for 21 yards (C.Grimm).,13,7,2012 -20120909_CAR@TB,3,21,3,CAR,TB,1,10,41,(6:03) C.Newton pass short right intended for B.LaFell INTERCEPTED by R.Barber (E.Wright) at TB 26. R.Barber to TB 26 for no gain (J.Gross). 21 tipped the ball in the air and 20 caught it,7,13,2012 -20120909_CAR@TB,3,20,49,TB,CAR,1,10,50,(5:49) D.Martin right guard to CAR 45 for 5 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,3,20,11,TB,CAR,2,5,45,(5:11) D.Martin left guard to CAR 38 for 7 yards (J.Beason).,13,7,2012 -20120909_CAR@TB,3,19,29,TB,CAR,1,10,38,(4:29) D.Martin left guard to CAR 40 for -2 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,18,48,TB,CAR,2,12,40,(3:48) D.Martin left tackle to CAR 40 for no gain (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,18,4,TB,CAR,3,12,40,(3:04) (Shotgun) J.Freeman sacked at CAR 43 for -3 yards (G.Hardy).,13,7,2012 -20120909_CAR@TB,3,17,35,TB,CAR,4,15,43,(2:35) (Punt formation) M.Koenen punts 43 yards to end zone Center-A.Economos Touchback.,13,7,2012 -20120909_CAR@TB,3,17,23,CAR,TB,1,10,80,(2:23) D.Williams right end to CAR 21 for 1 yard (R.Miller).,7,13,2012 -20120909_CAR@TB,3,16,37,CAR,TB,2,9,79,(1:37) (Shotgun) C.Newton pass short right to G.Olsen to CAR 33 for 12 yards (Q.Black).,7,13,2012 -20120909_CAR@TB,3,16,25,CAR,TB,1,10,67,(1:25) D.Williams up the middle to CAR 40 for 7 yards (L.David).,7,13,2012 -20120909_CAR@TB,3,16,5,CAR,TB,2,3,60,(1:05) C.Newton scrambles right end pushed ob at CAR 41 for 1 yard (Q.Black).,7,13,2012 -20120909_CAR@TB,3,15,34,CAR,TB,3,2,59,(:34) (Shotgun) C.Newton up the middle to TB 45 for 14 yards (A.Talib). PENALTY on CAR-A.Silatolu Offensive Holding 10 yards enforced at CAR 41 - No Play.,7,13,2012 -20120909_CAR@TB,3,15,7,CAR,TB,3,12,69,(:07) (Shotgun) C.Newton pass deep left intended for S.Smith INTERCEPTED by A.Black at TB 40. A.Black to TB 40 for no gain (S.Smith).,7,13,2012 -20120909_CAR@TB,4,15,0,TB,CAR,1,10,60,(15:00) J.Freeman pass incomplete short right to V.Jackson (C.Gamble).,13,7,2012 -20120909_CAR@TB,4,14,56,TB,CAR,2,10,60,(14:56) D.Martin right tackle to TB 43 for 3 yards (J.Anderson).,13,7,2012 -20120909_CAR@TB,4,14,12,TB,CAR,3,7,57,(14:12) (Shotgun) J.Freeman pass short left to D.Martin to TB 45 for 2 yards (A.Applewhite; G.Hardy).,13,7,2012 -20120909_CAR@TB,4,13,34,TB,CAR,4,5,55,(13:34) (Punt formation) M.Koenen punts 43 yards to CAR 12 Center-A.Economos. J.Adams MUFFS catch touched at CAR 12 and recovers at CAR 12. J.Adams to CAR 12 for no gain (E.Lorig).,13,7,2012 -20120909_CAR@TB,4,13,21,CAR,TB,1,10,88,(13:21) (Shotgun) C.Newton pass deep left to B.LaFell ran ob at CAR 36 for 24 yards. PENALTY on TB-M.Bennett Roughing the Passer 15 yards enforced at CAR 36.,7,13,2012 -20120909_CAR@TB,4,12,54,CAR,TB,1,10,49,(12:54) (Shotgun) D.Williams left tackle to CAR 49 for -2 yards (M.Foster).,7,13,2012 -20120909_CAR@TB,4,12,13,CAR,TB,2,12,51,(12:13) (Shotgun) C.Newton pass short right to G.Olsen to TB 48 for 3 yards (D.Watson).,7,13,2012 -20120909_CAR@TB,4,11,28,CAR,TB,3,9,48,(11:28) (Shotgun) C.Newton pass incomplete deep right to L.Murphy (M.Barron).,7,13,2012 -20120909_CAR@TB,4,11,19,CAR,TB,4,9,48,(11:19) (Punt formation) B.Nortman punt is BLOCKED by A.Talib Center-J.Jansen RECOVERED by TB-A.Clayborn at CAR 42. A.Clayborn to CAR 42 for no gain (J.Anderson).,7,13,2012 -20120909_CAR@TB,4,11,10,TB,CAR,1,10,42,(11:10) PENALTY on TB-L.Stocker False Start 5 yards enforced at CAR 42 - No Play.,13,7,2012 -20120909_CAR@TB,4,11,10,TB,CAR,1,15,47,(11:10) D.Martin right end to CAR 35 for 12 yards (J.Beason).,13,7,2012 -20120909_CAR@TB,4,10,23,TB,CAR,2,3,35,(10:23) (Shotgun) J.Freeman pass incomplete short right to V.Jackson.,13,7,2012 -20120909_CAR@TB,4,10,18,TB,CAR,3,3,35,(10:18) (Shotgun) D.Ware right end to CAR 27 for 8 yards (J.Norman).,13,7,2012 -20120909_CAR@TB,4,9,31,TB,CAR,1,10,27,(9:31) D.Martin right guard to CAR 24 for 3 yards (D.Edwards).,13,7,2012 -20120909_CAR@TB,4,8,52,TB,CAR,2,7,24,(8:52) J.Freeman pass short left to E.Lorig to CAR 22 for 2 yards (J.Anderson).,13,7,2012 -20120909_CAR@TB,4,8,8,TB,CAR,3,5,22,(8:08) (Shotgun) J.Freeman pass incomplete short middle to P.Parker (C.Munnerlyn).,13,7,2012 -20120909_CAR@TB,4,8,3,TB,CAR,4,5,22,(8:03) (Field Goal formation) C.Barth 40 yard field goal is GOOD Center-A.Economos Holder-M.Koenen.,13,7,2012 -20120909_CAR@TB,4,8,3,TB,CAR,,,22,M.Koenen kicks 74 yards from TB 35 to CAR -9. J.Adams to CAR 22 for 31 yards (K.Tandy).,16,7,2012 -20120909_CAR@TB,4,7,52,CAR,TB,1,10,78,(7:52) (Shotgun) C.Newton sacked at CAR 14 for -8 yards (G.McCoy).,7,16,2012 -20120909_CAR@TB,4,7,9,CAR,TB,2,18,86,(7:09) (Shotgun) C.Newton pass incomplete short right to B.LaFell.,7,16,2012 -20120909_CAR@TB,4,7,3,CAR,TB,3,18,86,(7:03) (Shotgun) C.Newton sacked at CAR 12 for -2 yards (M.Bennett). FUMBLES (M.Bennett) and recovers at CAR 12. C.Newton to CAR 12 for no gain (M.Bennett).,7,16,2012 -20120909_CAR@TB,4,6,21,CAR,TB,4,20,88,(6:21) (Punt formation) B.Nortman punts 47 yards to TB 41 Center-J.Jansen fair catch by S.Stroughter.,7,16,2012 -20120909_CAR@TB,4,6,14,TB,CAR,1,10,59,(6:14) D.Martin left guard to TB 45 for 4 yards (C.Johnson).,16,7,2012 -20120909_CAR@TB,4,5,32,TB,CAR,2,6,55,(5:32) J.Freeman pass incomplete short right to M.Williams.,16,7,2012 -20120909_CAR@TB,4,5,25,TB,CAR,3,6,55,(5:25) (Shotgun) J.Freeman pass incomplete short right to V.Jackson (C.Munnerlyn).,16,7,2012 -20120909_CAR@TB,4,5,17,TB,CAR,4,6,55,(5:17) (Punt formation) M.Koenen punts 44 yards to CAR 11 Center-A.Economos out of bounds.,16,7,2012 -20120909_CAR@TB,4,5,6,CAR,TB,1,10,89,(5:06) (Shotgun) C.Newton pass short right to M.Tolbert ran ob at CAR 31 for 20 yards.,7,16,2012 -20120909_CAR@TB,4,4,58,CAR,TB,1,10,69,(4:58) (Shotgun) C.Newton pass deep right to L.Murphy pushed ob at TB 18 for 51 yards (A.Talib).,7,16,2012 -20120909_CAR@TB,4,4,48,CAR,TB,1,10,18,(4:48) (Shotgun) C.Newton pass short right to S.Smith pushed ob at TB 11 for 7 yards (E.Wright).,7,16,2012 -20120909_CAR@TB,4,4,40,CAR,TB,2,3,11,(4:40) (Shotgun) C.Newton pass short right to S.Smith to TB 7 for 4 yards (E.Wright).,7,16,2012 -20120909_CAR@TB,4,4,2,CAR,TB,1,7,7,(4:02) (Shotgun) C.Newton right tackle to TB 3 for 4 yards (M.Foster).,7,16,2012 -20120909_CAR@TB,4,3,34,CAR,TB,2,3,3,(3:34) (Shotgun) C.Newton pass incomplete short left to L.Murphy (A.Talib).,7,16,2012 -20120909_CAR@TB,4,3,28,CAR,TB,3,3,3,(3:28) (Shotgun) C.Newton up the middle to TB 3 for no gain (L.David R.Barber).,7,16,2012 -20120909_CAR@TB,4,2,50,CAR,TB,4,3,3,(2:50) (Field Goal formation) J.Medlock 21 yard field goal is GOOD Center-J.Jansen Holder-B.Nortman.,7,16,2012 -20120909_CAR@TB,4,2,50,CAR,TB,,,3,J.Medlock kicks 70 yards from CAR 35 to TB -5. M.Smith to TB 18 for 23 yards (K.Onatolu).,10,16,2012 -20120909_CAR@TB,4,2,41,TB,CAR,1,10,82,(2:41) D.Martin left tackle to TB 22 for 4 yards (J.Beason).,16,10,2012 -20120909_CAR@TB,4,2,33,TB,CAR,2,6,78,(2:33) D.Martin up the middle to TB 26 for 4 yards (F.Kearse).,16,10,2012 -20120909_CAR@TB,4,2,28,TB,CAR,3,2,74,(2:28) J.Freeman pass short middle to V.Jackson to TB 30 for 4 yards (J.Beason).,16,10,2012 -20120909_CAR@TB,4,2,22,TB,CAR,1,10,70,(2:22) D.Martin up the middle to TB 45 for 15 yards (C.Godfrey).,16,10,2012 -20120909_CAR@TB,4,2,0,TB,CAR,1,10,55,(2:00) J.Freeman kneels to TB 43 for -2 yards.,16,10,2012 -20120909_CAR@TB,4,1,14,TB,CAR,2,12,57,(1:14) J.Freeman kneels to TB 40 for -3 yards.,16,10,2012 -20120909_CAR@TB,4,0,35,TB,CAR,3,15,60,(:35) J.Freeman kneels to TB 38 for -2 yards.,16,10,2012 -20120909_CAR@TB,4,0,35,TB,CAR,,,60,                      ,16,10,2012 -20120909_PIT@DEN,1,0,0,PIT,DEN,,,60,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,0,0,2012 -20120909_PIT@DEN,1,60,0,DEN,PIT,1,10,80,(15:00) W.McGahee left tackle to DEN 25 for 5 yards (I.Taylor).,0,0,2012 -20120909_PIT@DEN,1,59,23,DEN,PIT,2,5,75,(14:23) (Shotgun) P.Manning pass short right to E.Decker to DEN 38 for 13 yards (K.Lewis).,0,0,2012 -20120909_PIT@DEN,1,58,46,DEN,PIT,1,10,62,(13:46) W.McGahee up the middle to DEN 41 for 3 yards (C.Hampton; L.Foote).,0,0,2012 -20120909_PIT@DEN,1,58,9,DEN,PIT,2,7,59,(13:09) (Shotgun) P.Manning pass incomplete short right to J.Dreessen (L.Foote K.Lewis).,0,0,2012 -20120909_PIT@DEN,1,58,3,DEN,PIT,3,7,59,(13:03) (Shotgun) P.Manning pass short left to B.Stokley to 50 for 9 yards (C.Allen).,0,0,2012 -20120909_PIT@DEN,1,57,20,DEN,PIT,1,10,50,(12:20) K.Moreno up the middle to 50 for no gain (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,56,35,DEN,PIT,2,10,50,(11:35) (Shotgun) P.Manning pass incomplete short left to D.Thomas (I.Taylor). Penalty on DEN Illegal Formation declined.,0,0,2012 -20120909_PIT@DEN,1,56,30,DEN,PIT,3,10,50,(11:30) (Shotgun) P.Manning sacked at DEN 45 for -5 yards (L.Foote).,0,0,2012 -20120909_PIT@DEN,1,56,0,DEN,PIT,4,15,55,(11:00) B.Colquitt punts 44 yards to PIT 11 Center-A.Brewer. A.Brown to PIT 11 for no gain (J.Tamme).,0,0,2012 -20120909_PIT@DEN,1,55,49,PIT,DEN,1,10,89,(10:49) I.Redman up the middle to PIT 14 for 3 yards (T.Warren).,0,0,2012 -20120909_PIT@DEN,1,55,5,PIT,DEN,2,7,86,(10:05) I.Redman left tackle to PIT 17 for 3 yards (T.Porter). PENALTY on PIT-H.Miller Offensive Holding 8 yards enforced at PIT 14 - No Play.,0,0,2012 -20120909_PIT@DEN,1,54,38,PIT,DEN,2,15,94,(9:38) I.Redman right tackle to PIT 6 for no gain (D.Wolfe).,0,0,2012 -20120909_PIT@DEN,1,54,38,PIT,DEN,3,15,94,(9:38) (Shotgun) B.Roethlisberger pass short left to M.Wallace to PIT 20 for 14 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,53,29,PIT,DEN,4,1,80,(8:29) D.Butler punts 52 yards to DEN 28 Center-G.Warren. J.Leonhard to DEN 40 for 12 yards (J.Worilds).,0,0,2012 -20120909_PIT@DEN,1,53,16,DEN,PIT,1,10,60,(8:16) W.McGahee right end to DEN 44 for 4 yards (L.Foote).,0,0,2012 -20120909_PIT@DEN,1,52,39,DEN,PIT,2,6,56,(7:39) P.Manning pass short right to D.Thomas to DEN 49 for 5 yards (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,52,21,DEN,PIT,3,1,51,(7:21) W.McGahee right tackle to DEN 48 for -1 yards. FUMBLES RECOVERED by PIT-L.Woodley at DEN 48. L.Woodley to DEN 48 for no gain (M.Ramirez).,0,0,2012 -20120909_PIT@DEN,1,52,16,PIT,DEN,1,10,47,(7:16) Direction Change. I.Redman right guard to DEN 44 for 3 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,51,36,PIT,DEN,2,7,44,(6:36) C.Rainey right end to DEN 46 for -2 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,50,49,PIT,DEN,3,9,46,(5:49) (Shotgun) B.Roethlisberger pass short left to E.Sanders to DEN 33 for 13 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,50,6,PIT,DEN,1,10,33,(5:06) I.Redman left end to DEN 39 for -6 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,1,49,19,PIT,DEN,2,16,39,(4:19) I.Redman left guard to DEN 36 for 3 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,1,48,35,PIT,DEN,3,13,36,(3:35) (Shotgun) B.Roethlisberger sacked at DEN 45 for -9 yards (D.Wolfe).,0,0,2012 -20120909_PIT@DEN,1,48,6,PIT,DEN,4,22,45,(3:06) D.Butler punts 44 yards to DEN 1 Center-G.Warren downed by PIT-D.Van Dyke.,0,0,2012 -20120909_PIT@DEN,1,47,58,DEN,PIT,1,10,99,(2:58) W.McGahee left guard to DEN 3 for 2 yards (B.Keisel).,0,0,2012 -20120909_PIT@DEN,1,47,17,DEN,PIT,2,8,97,(2:17) W.McGahee right guard to DEN 5 for 2 yards (E.Hood).,0,0,2012 -20120909_PIT@DEN,1,46,32,DEN,PIT,3,6,95,(1:32) (Shotgun) P.Manning pass short right to B.Stokley to DEN 22 for 17 yards (T.Polamalu).,0,0,2012 -20120909_PIT@DEN,1,45,54,DEN,PIT,1,10,78,(:54) (Shotgun) P.Manning sacked at DEN 14 for -8 yards (J.Worilds). Penalty on DEN Illegal Formation declined.,0,0,2012 -20120909_PIT@DEN,1,45,30,DEN,PIT,2,18,86,(:30) K.Moreno left tackle to DEN 15 for 1 yard (L.Woodley; C.Heyward).,0,0,2012 -20120909_PIT@DEN,1,45,30,DEN,PIT,3,17,85,(:30) (Shotgun) P.Manning pass incomplete deep right to D.Thomas (R.Mundy).,0,0,2012 -20120909_PIT@DEN,1,45,5,DEN,PIT,4,17,85,(:05) B.Colquitt punts 46 yards to PIT 39 Center-A.Brewer. A.Brown pushed ob at DEN 38 for 23 yards (Q.Carter).,0,0,2012 -20120909_PIT@DEN,2,45,0,PIT,DEN,1,10,38,(15:00) A.Brown left end to DEN 34 for 4 yards (W.Woodyard).,0,0,2012 -20120909_PIT@DEN,2,44,20,PIT,DEN,2,6,34,(14:20) J.Dwyer left tackle to DEN 23 for 11 yards (T.Porter). PENALTY on PIT-M.Wallace Offensive Holding 10 yards enforced at DEN 23.,0,0,2012 -20120909_PIT@DEN,2,44,20,PIT,DEN,2,5,33,(14:20) B.Roethlisberger pass short left to W.Johnson to DEN 21 for 12 yards (T.Porter).,0,0,2012 -20120909_PIT@DEN,2,43,22,PIT,DEN,1,10,21,(13:22) B.Roethlisberger pass short right to H.Miller to DEN 19 for 2 yards (M.Adams). PENALTY on DEN-V.Miller Defensive Offside 5 yards enforced at DEN 21 - No Play.,0,0,2012 -20120909_PIT@DEN,2,43,0,PIT,DEN,1,5,16,(13:00) J.Dwyer left guard to DEN 14 for 2 yards (E.Dumervil; J.Bannan).,0,0,2012 -20120909_PIT@DEN,2,42,16,PIT,DEN,2,3,14,(12:16) J.Dwyer left end to DEN 13 for 1 yard (K.Brooking).,0,0,2012 -20120909_PIT@DEN,2,41,37,PIT,DEN,3,2,13,(11:37) B.Roethlisberger pass short right to A.Brown to DEN 8 for 5 yards (C.Harris).,0,0,2012 -20120909_PIT@DEN,2,40,51,PIT,DEN,1,8,8,(10:51) B.Roethlisberger pass short middle to H.Miller to DEN 2 for 6 yards (R.Moore). PENALTY on DEN-K.Vickerson Encroachment 5 yards enforced at DEN 8 - No Play.,0,0,2012 -20120909_PIT@DEN,2,40,25,PIT,DEN,1,3,3,(10:25) B.Roethlisberger pass incomplete short right to A.Brown (C.Bailey).,0,0,2012 -20120909_PIT@DEN,2,40,22,PIT,DEN,2,3,3,(10:22) B.Roethlisberger pass incomplete short left to H.Miller.,0,0,2012 -20120909_PIT@DEN,2,40,18,PIT,DEN,3,3,3,(10:18) (Shotgun) B.Roethlisberger pass incomplete short left to H.Miller (T.Porter).,0,0,2012 -20120909_PIT@DEN,2,40,13,PIT,DEN,4,3,3,(10:13) S.Suisham 21 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,0,0,2012 -20120909_PIT@DEN,2,40,13,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,3,0,2012 -20120909_PIT@DEN,2,40,10,DEN,PIT,1,10,80,(10:10) (Shotgun) P.Manning pass short middle to J.Dreessen to DEN 26 for 6 yards (L.Timmons).,0,3,2012 -20120909_PIT@DEN,2,39,43,DEN,PIT,2,4,74,(9:43) W.McGahee left guard to DEN 29 for 3 yards (C.Hampton).,0,3,2012 -20120909_PIT@DEN,2,39,17,DEN,PIT,3,1,71,(9:17) (Shotgun) P.Manning pass short left to D.Thomas to DEN 35 for 6 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,38,53,DEN,PIT,1,10,65,(8:53) (Shotgun) P.Manning pass deep left to D.Thomas to PIT 45 for 20 yards (I.Taylor).,0,3,2012 -20120909_PIT@DEN,2,38,25,DEN,PIT,1,10,45,(8:25) (Shotgun) P.Manning pass short middle to J.Tamme to PIT 41 for 4 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,37,55,DEN,PIT,2,6,41,(7:55) P.Manning scrambles right end ran ob at PIT 34 for 7 yards.,0,3,2012 -20120909_PIT@DEN,2,37,30,DEN,PIT,1,10,34,(7:30) P.Manning pass incomplete short middle to W.McGahee [L.Foote].,0,3,2012 -20120909_PIT@DEN,2,37,25,DEN,PIT,2,10,34,(7:25) (Shotgun) P.Manning pass short right to E.Decker to PIT 25 for 9 yards (K.Lewis).,0,3,2012 -20120909_PIT@DEN,2,36,57,DEN,PIT,3,1,25,(6:57) (Shotgun) W.McGahee up the middle to PIT 20 for 5 yards (L.Woodley).,0,3,2012 -20120909_PIT@DEN,2,36,24,DEN,PIT,1,10,20,(6:24) (Shotgun) P.Manning pass short right to J.Tamme to PIT 11 for 9 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,35,48,DEN,PIT,2,1,11,(5:48) (Shotgun) W.McGahee up the middle to PIT 7 for 4 yards (L.Foote).,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,1,7,7,(5:22) (Shotgun) K.Moreno left guard for 7 yards TOUCHDOWN.,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,0,3,2012 -20120909_PIT@DEN,2,35,22,DEN,PIT,,,7,M.Prater kicks 71 yards from DEN 35 to PIT -6. E.Sanders to PIT 21 for 27 yards (O.Bolden).,7,3,2012 -20120909_PIT@DEN,2,35,11,PIT,DEN,1,10,79,(5:11) (Shotgun) I.Redman up the middle to PIT 23 for 2 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,34,37,PIT,DEN,2,8,77,(4:37) (Shotgun) B.Roethlisberger pass short right to I.Redman to PIT 28 for 5 yards (R.Moore).,3,7,2012 -20120909_PIT@DEN,2,33,48,PIT,DEN,3,3,72,(3:48) I.Redman left end to PIT 34 for 6 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,33,6,PIT,DEN,1,10,66,(3:06) (Shotgun) B.Roethlisberger pass incomplete short right (M.Adams). PIT-M.Gilbert was injured during the play.,3,7,2012 -20120909_PIT@DEN,2,32,56,PIT,DEN,2,10,66,(2:56) (Shotgun) B.Batch up the middle to PIT 33 for -1 yards (V.Miller). Penalty on PIT Illegal Formation declined.,3,7,2012 -20120909_PIT@DEN,2,32,31,PIT,DEN,3,11,67,(2:31) (Shotgun) B.Roethlisberger pass deep right to A.Brown pushed ob at DEN 44 for 23 yards (C.Bailey).,3,7,2012 -20120909_PIT@DEN,2,32,8,PIT,DEN,1,10,44,(2:08) (Shotgun) B.Roethlisberger pass incomplete short right to A.Brown. PENALTY on PIT-M.Adams Illegal Formation 5 yards enforced at DEN 44 - No Play.,3,7,2012 -20120909_PIT@DEN,2,32,2,PIT,DEN,1,15,49,(2:02) (Shotgun) I.Redman left end to DEN 45 for 4 yards (R.Ayers; M.Unrein).,3,7,2012 -20120909_PIT@DEN,2,31,56,PIT,DEN,2,11,45,(1:56) B.Roethlisberger pass deep left to A.Brown pushed ob at DEN 18 for 27 yards (C.Harris).,3,7,2012 -20120909_PIT@DEN,2,31,44,PIT,DEN,1,10,18,(1:44) (Shotgun) J.Dwyer left tackle to DEN 16 for 2 yards (W.Woodyard).,3,7,2012 -20120909_PIT@DEN,2,31,10,PIT,DEN,2,8,16,(1:10) (Shotgun) PENALTY on PIT-M.Starks False Start 5 yards enforced at DEN 16 - No Play.,3,7,2012 -20120909_PIT@DEN,2,31,8,PIT,DEN,2,13,21,(1:08) (Shotgun) B.Roethlisberger pass incomplete short left to J.Dwyer.,3,7,2012 -20120909_PIT@DEN,2,31,4,PIT,DEN,3,13,21,(1:04) (Shotgun) B.Roethlisberger pass deep left to E.Sanders to DEN 4 for 17 yards (T.Porter).,3,7,2012 -20120909_PIT@DEN,2,30,36,PIT,DEN,1,4,4,(:36) B.Roethlisberger spiked the ball to stop the clock.,3,7,2012 -20120909_PIT@DEN,2,30,36,PIT,DEN,2,4,4,(:36) (Shotgun) B.Roethlisberger pass incomplete short left to M.Wallace.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,3,4,4,(:32) B.Roethlisberger pass short middle to H.Miller for 4 yards TOUCHDOWN.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham extra point is GOOD Center-G.Warren Holder-D.Butler.,3,7,2012 -20120909_PIT@DEN,2,30,32,PIT,DEN,,,4,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,10,7,2012 -20120909_PIT@DEN,2,30,28,DEN,PIT,1,10,80,(:28) P.Manning kneels to DEN 19 for -1 yards.,7,10,2012 -20120909_PIT@DEN,3,30,0,DEN,PIT,,,80,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,7,10,2012 -20120909_PIT@DEN,3,30,0,PIT,DEN,1,10,80,(15:00) B.Roethlisberger pass incomplete short right to J.Dwyer.,10,7,2012 -20120909_PIT@DEN,3,29,56,PIT,DEN,2,10,80,(14:56) (Shotgun) J.Dwyer right guard to PIT 23 for 3 yards (D.Wolfe).,10,7,2012 -20120909_PIT@DEN,3,29,13,PIT,DEN,3,7,77,(14:13) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at PIT 23 - No Play.,10,7,2012 -20120909_PIT@DEN,3,28,57,PIT,DEN,3,12,82,(13:57) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 33 for 15 yards (J.Mays).,10,7,2012 -20120909_PIT@DEN,3,28,19,PIT,DEN,1,10,67,(13:19) (Shotgun) J.Dwyer left tackle to PIT 38 for 5 yards (R.Ayers).,10,7,2012 -20120909_PIT@DEN,3,27,42,PIT,DEN,2,5,62,(12:42) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 47 for 15 yards (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,27,8,PIT,DEN,1,10,47,(12:08) B.Roethlisberger pass short left to J.Dwyer to DEN 47 for no gain (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,26,29,PIT,DEN,2,10,47,(11:29) (Shotgun) PENALTY on DEN-K.Vickerson Neutral Zone Infraction 5 yards enforced at DEN 47 - No Play.,10,7,2012 -20120909_PIT@DEN,3,26,9,PIT,DEN,2,5,42,(11:09) (Shotgun) B.Roethlisberger pass short left to I.Redman to DEN 40 for 2 yards (R.Moore).,10,7,2012 -20120909_PIT@DEN,3,25,29,PIT,DEN,3,3,40,(10:29) (Shotgun) B.Roethlisberger up the middle to DEN 38 for 2 yards (E.Dumervil).,10,7,2012 -20120909_PIT@DEN,3,24,58,PIT,DEN,4,1,38,(9:58) B.Roethlisberger up the middle to DEN 36 for 2 yards (E.Dumervil; R.Moore).,10,7,2012 -20120909_PIT@DEN,3,24,33,PIT,DEN,1,10,36,(9:33) (Shotgun) PENALTY on PIT-W.Colon False Start 5 yards enforced at DEN 36 - No Play.,10,7,2012 -20120909_PIT@DEN,3,24,9,PIT,DEN,1,15,41,(9:09) (Shotgun) I.Redman right guard to DEN 38 for 3 yards (J.Bannan).,10,7,2012 -20120909_PIT@DEN,3,23,31,PIT,DEN,2,12,38,(8:31) (Shotgun) B.Roethlisberger sacked at DEN 47 for -9 yards (C.Harris). PENALTY on PIT-A.Brown False Start 5 yards enforced at DEN 38 - No Play.,10,7,2012 -20120909_PIT@DEN,3,23,8,PIT,DEN,2,17,43,(8:08) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 30 for 13 yards (T.Porter).,10,7,2012 -20120909_PIT@DEN,3,22,34,PIT,DEN,3,4,30,(7:34) (Shotgun) B.Roethlisberger pass short left to M.Wallace to DEN 23 for 7 yards (W.Woodyard).,10,7,2012 -20120909_PIT@DEN,3,21,59,PIT,DEN,1,10,23,(6:59) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams) [E.Dumervil].,10,7,2012 -20120909_PIT@DEN,3,21,52,PIT,DEN,2,10,23,(6:52) (Shotgun) J.Dwyer up the middle to DEN 16 for 7 yards (M.Adams).,10,7,2012 -20120909_PIT@DEN,3,21,14,PIT,DEN,3,3,16,(6:14) (Shotgun) B.Roethlisberger pass incomplete deep middle to A.Brown [E.Dumervil].,10,7,2012 -20120909_PIT@DEN,3,21,9,PIT,DEN,4,3,16,(6:09) S.Suisham 35 yard field goal is GOOD Center-G.Warren Holder-D.Butler.,10,7,2012 -20120909_PIT@DEN,3,21,9,PIT,DEN,,,16,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,13,7,2012 -20120909_PIT@DEN,3,21,5,DEN,PIT,1,10,80,(6:05) (Shotgun) P.Manning pass short right to E.Decker to DEN 29 for 9 yards (K.Lewis).,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,2,1,71,(5:41) (Shotgun) P.Manning pass short left to D.Thomas for 71 yards TOUCHDOWN.,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater extra point is GOOD Center-A.Brewer Holder-B.Colquitt.,7,13,2012 -20120909_PIT@DEN,3,20,41,DEN,PIT,,,71,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,14,13,2012 -20120909_PIT@DEN,3,20,29,PIT,DEN,1,10,80,(5:29) B.Roethlisberger pass incomplete deep middle to A.Brown (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,20,24,PIT,DEN,2,10,80,(5:24) (Shotgun) B.Roethlisberger pass incomplete short left to E.Sanders (T.Porter).,13,14,2012 -20120909_PIT@DEN,3,20,17,PIT,DEN,3,10,80,(5:17) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders (R.Moore). PENALTY on DEN-R.Moore Unnecessary Roughness 15 yards enforced at PIT 20.,13,14,2012 -20120909_PIT@DEN,3,20,11,PIT,DEN,1,10,65,(5:11) (Shotgun) B.Roethlisberger pass short left to C.Rainey to PIT 34 for -1 yards (K.Vickerson).,13,14,2012 -20120909_PIT@DEN,3,19,31,PIT,DEN,2,11,66,(4:31) B.Roethlisberger sacked at PIT 27 for -7 yards (sack split by J.Mays and C.Harris).,13,14,2012 -20120909_PIT@DEN,3,18,53,PIT,DEN,3,18,73,(3:53) (Shotgun) B.Roethlisberger pass short middle to H.Miller to 50 for 23 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,18,18,PIT,DEN,1,10,50,(3:18) J.Dwyer left end to DEN 47 for 3 yards (E.Dumervil). PENALTY on DEN-E.Dumervil Face Mask (15 Yards) 14 yards enforced at DEN 47.,13,14,2012 -20120909_PIT@DEN,3,17,48,PIT,DEN,1,10,33,(2:48) (Shotgun) B.Roethlisberger pass short left to J.Dwyer to DEN 22 for 11 yards (R.Moore).,13,14,2012 -20120909_PIT@DEN,3,17,7,PIT,DEN,1,10,22,(2:07) B.Roethlisberger pass incomplete short middle to J.Cotchery.,13,14,2012 -20120909_PIT@DEN,3,17,3,PIT,DEN,2,10,22,(2:03) (Shotgun) I.Redman up the middle to DEN 19 for 3 yards (W.Woodyard).,13,14,2012 -20120909_PIT@DEN,3,16,18,PIT,DEN,3,7,19,(1:18) (Shotgun) B.Roethlisberger pass short right to H.Miller to DEN 11 for 8 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,3,15,33,PIT,DEN,1,10,11,(:33) (Shotgun) J.Dwyer right end for 11 yards TOUCHDOWN. The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Dwyer right end to DEN 2 for 9 yards (M.Adams).,13,14,2012 -20120909_PIT@DEN,4,15,0,PIT,DEN,2,1,2,(15:00) I.Redman left guard to DEN 3 for -1 yards (V.Miller).,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,3,2,3,(14:15) (Shotgun) B.Roethlisberger pass short left to M.Wallace for 3 yards TOUCHDOWN.,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,TWO-POINT CONVERSION ATTEMPT. B.Roethlisberger pass to L.Pope is incomplete. ATTEMPT FAILS.,13,14,2012 -20120909_PIT@DEN,4,14,15,PIT,DEN,,,3,S.Suisham kicks 65 yards from PIT 35 to end zone Touchback.,19,14,2012 -20120909_PIT@DEN,4,14,11,DEN,PIT,1,10,80,(14:11) (Shotgun) W.McGahee up the middle to DEN 29 for 9 yards (C.Carter).,14,19,2012 -20120909_PIT@DEN,4,13,46,DEN,PIT,2,1,71,(13:46) (Shotgun) W.McGahee up the middle to DEN 41 for 12 yards (R.Mundy).,14,19,2012 -20120909_PIT@DEN,4,13,14,DEN,PIT,1,10,59,(13:14) (Shotgun) P.Manning pass short left to D.Thomas to DEN 49 for 8 yards (T.Polamalu).,14,19,2012 -20120909_PIT@DEN,4,12,42,DEN,PIT,2,2,51,(12:42) (Shotgun) K.Moreno left tackle to PIT 49 for 2 yards (E.Hood).,14,19,2012 -20120909_PIT@DEN,4,12,18,DEN,PIT,1,10,49,(12:18) (Shotgun) P.Manning pass short right to E.Decker to PIT 43 for 6 yards (W.Allen; L.Woodley).,14,19,2012 -20120909_PIT@DEN,4,11,53,DEN,PIT,2,4,43,(11:53) (Shotgun) P.Manning pass short left to M.Willis to PIT 29 for 14 yards (K.Lewis).,14,19,2012 -20120909_PIT@DEN,4,11,24,DEN,PIT,1,10,29,(11:24) (Shotgun) P.Manning pass incomplete short middle to E.Decker (K.Lewis).,14,19,2012 -20120909_PIT@DEN,4,11,18,DEN,PIT,2,10,29,(11:18) (Shotgun) P.Manning pass short right to J.Tamme to PIT 18 for 11 yards (L.Timmons).,14,19,2012 -20120909_PIT@DEN,4,10,45,DEN,PIT,1,10,18,(10:45) (Shotgun) P.Manning pass short right to E.Decker to PIT 1 for 17 yards (R.Mundy). Pittsburgh challenged the first down ruling and the play was Upheld. (Timeout #1.),14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,1,1,1,(9:28) (Shotgun) P.Manning pass short left to J.Tamme for 1 yard TOUCHDOWN.,14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,TWO-POINT CONVERSION ATTEMPT. P.Manning pass to W.McGahee is complete. ATTEMPT SUCCEEDS.,14,19,2012 -20120909_PIT@DEN,4,9,28,DEN,PIT,,,1,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,22,19,2012 -20120909_PIT@DEN,4,9,23,PIT,DEN,1,10,80,(9:23) C.Rainey left end to PIT 27 for 7 yards (T.Porter).,19,22,2012 -20120909_PIT@DEN,4,8,42,PIT,DEN,2,3,73,(8:42) (Shotgun) B.Roethlisberger pass incomplete deep left to M.Wallace (T.Porter) [V.Miller].,19,22,2012 -20120909_PIT@DEN,4,8,35,PIT,DEN,3,3,73,(8:35) B.Roethlisberger pass incomplete short middle to H.Miller (T.Porter).,19,22,2012 -20120909_PIT@DEN,4,8,29,PIT,DEN,4,3,73,(8:29) D.Butler punts 46 yards to DEN 27 Center-G.Warren. J.Leonhard to DEN 37 for 10 yards (Cu.Brown).,19,22,2012 -20120909_PIT@DEN,4,8,18,DEN,PIT,1,10,63,(8:18) W.McGahee right end to DEN 42 for 5 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,52,DEN,PIT,2,5,58,(7:52) (Shotgun) W.McGahee left guard to DEN 45 for 3 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,31,DEN,PIT,3,2,55,(7:31) (Shotgun) K.Moreno right guard to DEN 48 for 3 yards (L.Timmons).,22,19,2012 -20120909_PIT@DEN,4,7,1,DEN,PIT,1,10,52,(7:01) (Shotgun) L.Ball up the middle to PIT 41 for 11 yards (T.Polamalu).,22,19,2012 -20120909_PIT@DEN,4,6,27,DEN,PIT,1,10,41,(6:27) (Shotgun) L.Ball up the middle to PIT 38 for 3 yards (C.Heyward).,22,19,2012 -20120909_PIT@DEN,4,5,50,DEN,PIT,2,7,38,(5:50) (Shotgun) P.Manning pass short right to J.Tamme pushed ob at PIT 20 for 18 yards (C.Allen).,22,19,2012 -20120909_PIT@DEN,4,5,25,DEN,PIT,1,10,20,(5:25) W.McGahee left tackle to PIT 20 for no gain (C.Heyward).,22,19,2012 -20120909_PIT@DEN,4,4,44,DEN,PIT,2,10,20,(4:44) W.McGahee right end to PIT 12 for 8 yards (J.Worilds).,22,19,2012 -20120909_PIT@DEN,4,3,55,DEN,PIT,3,2,12,(3:55) PENALTY on DEN Delay of Game 5 yards enforced at PIT 12 - No Play.,22,19,2012 -20120909_PIT@DEN,4,3,55,DEN,PIT,3,7,17,(3:55) (Shotgun) P.Manning pass incomplete short right to E.Decker. PENALTY on PIT-K.Lewis Defensive Pass Interference 9 yards enforced at PIT 17 - No Play.,22,19,2012 -20120909_PIT@DEN,4,3,51,DEN,PIT,1,8,8,(3:51) W.McGahee right tackle to PIT 8 for no gain (L.Foote).,22,19,2012 -20120909_PIT@DEN,4,3,12,DEN,PIT,2,8,8,(3:12) (Shotgun) P.Manning pass incomplete short middle to B.Stokley.,22,19,2012 -20120909_PIT@DEN,4,3,7,DEN,PIT,3,8,8,(3:07) (Shotgun) P.Manning pass incomplete short right to E.Decker (K.Lewis).,22,19,2012 -20120909_PIT@DEN,4,3,3,DEN,PIT,4,8,8,(3:03) M.Prater 26 yard field goal is GOOD Center-A.Brewer Holder-B.Colquitt.,22,19,2012 -20120909_PIT@DEN,4,3,3,DEN,PIT,,,8,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,25,19,2012 -20120909_PIT@DEN,4,3,0,PIT,DEN,1,10,87,(3:00) (Shotgun) B.Roethlisberger FUMBLES (Aborted) at PIT 13 and recovers at PIT 13. B.Roethlisberger pass short middle to A.Brown to PIT 39 for 19 yards (C.Harris).,19,25,2012 -20120909_PIT@DEN,4,2,16,PIT,DEN,1,10,61,(2:16) (Shotgun) B.Roethlisberger pass incomplete deep left to E.Sanders.,19,25,2012 -20120909_PIT@DEN,4,2,10,PIT,DEN,2,10,61,(2:10) (Shotgun) B.Roethlisberger pass intended for E.Sanders INTERCEPTED by T.Porter at PIT 43. T.Porter for 43 yards TOUCHDOWN.,19,25,2012 -20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,TWO-POINT CONVERSION ATTEMPT. W.McGahee rushes left tackle. ATTEMPT FAILS.,25,19,2012 -20120909_PIT@DEN,4,2,10,DEN,PIT,,,61,M.Prater kicks 65 yards from DEN 35 to end zone Touchback.,31,19,2012 -20120909_PIT@DEN,4,1,58,PIT,DEN,1,10,80,(1:58) (Shotgun) B.Roethlisberger sacked at PIT 15 for -5 yards (V.Miller).,19,31,2012 -20120909_PIT@DEN,4,1,27,PIT,DEN,2,15,85,(1:27) (Shotgun) B.Roethlisberger pass short middle to E.Sanders to PIT 25 for 10 yards (J.Leonhard).,19,31,2012 -20120909_PIT@DEN,4,1,1,PIT,DEN,3,5,75,(1:01) (Shotgun) B.Roethlisberger sacked at PIT 15 for -10 yards (V.Miller).,19,31,2012 -20120909_PIT@DEN,4,0,54,PIT,DEN,4,15,85,(:54) (Shotgun) B.Roethlisberger sacked at PIT 10 for -5 yards (W.Woodyard).,19,31,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,1,9,9,(:42) Direction Change. P.Manning kneels to PIT 11 for -2 yards.,31,19,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,2,11,11,(:42) P.Manning kneels to PIT 12 for -1 yards.,31,19,2012 -20120909_PIT@DEN,4,0,42,DEN,PIT,,,11,                      ,31,19,2012 -20120910_CIN@BAL,1,0,0,CIN,BAL,,,11,M.Nugent kicks 71 yards from CIN 35 to BLT -6. D.Thompson to BLT 21 for 27 yards (B.Leonard).,0,0,2012 -20120910_CIN@BAL,1,59,55,BAL,CIN,1,10,79,(14:55) J.Flacco pass deep middle to T.Smith to CIN 27 for 52 yards (L.Hall).,0,0,2012 -20120910_CIN@BAL,1,59,7,BAL,CIN,1,10,27,(14:07) (No Huddle Shotgun) R.Rice left guard to CIN 21 for 6 yards (T.Mays).,0,0,2012 -20120910_CIN@BAL,1,58,31,BAL,CIN,2,4,21,(13:31) (No Huddle Shotgun) J.Flacco pass incomplete short left to D.Pitta.,0,0,2012 -20120910_CIN@BAL,1,58,27,BAL,CIN,3,4,21,(13:27) (No Huddle Shotgun) J.Flacco sacked at CIN 28 for -7 yards (G.Atkins).,0,0,2012 -20120910_CIN@BAL,1,57,59,BAL,CIN,4,11,28,(12:59) (Field Goal formation) J.Tucker 46 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,0,0,2012 -20120910_CIN@BAL,1,57,59,BAL,CIN,,,28,J.Tucker kicks 69 yards from BLT 35 to CIN -4. B.Tate to CIN 21 for 25 yards (C.Brown).,3,0,2012 -20120910_CIN@BAL,1,57,47,CIN,BAL,1,10,79,(12:47) A.Dalton pass incomplete short left to A.Green.,0,3,2012 -20120910_CIN@BAL,1,57,43,CIN,BAL,2,10,79,(12:43) B.Green-Ellis right tackle to CIN 24 for 3 yards (R.Lewis J.McClain).,0,3,2012 -20120910_CIN@BAL,1,57,4,CIN,BAL,3,7,76,(12:04) (Shotgun) A.Dalton pass incomplete short middle to J.Gresham (B.Pollard).,0,3,2012 -20120910_CIN@BAL,1,56,59,CIN,BAL,4,7,76,(11:59) (Punt formation) K.Huber punts 39 yards to BLT 37 Center-C.Harris downed by CIN-V.Burfict.,0,3,2012 -20120910_CIN@BAL,1,56,48,BAL,CIN,1,10,63,(11:48) T.Smith left end pushed ob at CIN 50 for 13 yards (T.Mays). T. Smith runs a reverse after fake to Rice.,3,0,2012 -20120910_CIN@BAL,1,56,14,BAL,CIN,1,10,50,(11:14) (No Huddle) J.Flacco pass short left to V.Leach pushed ob at CIN 40 for 10 yards (M.Lawson).,3,0,2012 -20120910_CIN@BAL,1,55,40,BAL,CIN,1,10,50,(10:40) J.Flacco FUMBLES (Aborted) at CIN 50 recovered by BLT-A.Boldin at CIN 50. A.Boldin to CIN 50 for no gain (Mich.Johnson).,3,0,2012 -20120910_CIN@BAL,1,55,25,BAL,CIN,2,20,50,(10:25) J.Flacco pass short right to J.Jones to CIN 45 for 5 yards (T.Newman).,3,0,2012 -20120910_CIN@BAL,1,54,46,BAL,CIN,3,15,45,(9:46) (Shotgun) J.Flacco pass short right to J.Jones to CIN 29 for 16 yards (T.Newman).,3,0,2012 -20120910_CIN@BAL,1,54,14,BAL,CIN,1,10,29,(9:14) (No Huddle) A.Boldin left end to CIN 26 for 3 yards (L.Hall).,3,0,2012 -20120910_CIN@BAL,1,53,43,BAL,CIN,2,7,26,(8:43) R.Rice left guard to CIN 25 for 1 yard (R.Maualuga).,3,0,2012 -20120910_CIN@BAL,1,53,7,BAL,CIN,3,6,25,(8:07) (No Huddle Shotgun) J.Flacco pass short middle to A.Boldin to CIN 20 for 5 yards (T.Howard).,3,0,2012 -20120910_CIN@BAL,1,52,22,BAL,CIN,4,1,20,(7:22) J.Flacco pass short right to R.Rice to CIN 19 for 1 yard (N.Clements).,3,0,2012 -20120910_CIN@BAL,1,51,45,BAL,CIN,1,10,19,(6:45) (No Huddle Shotgun) J.Flacco pass incomplete short middle to D.Pitta (T.Howard).,3,0,2012 -20120910_CIN@BAL,1,51,39,BAL,CIN,2,10,19,(6:39) (Shotgun) J.Flacco pass short left to D.Pitta to CIN 7 for 12 yards (M.Lawson).,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,1,7,7,(6:08) (No Huddle) R.Rice right tackle for 7 yards TOUCHDOWN.,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,3,0,2012 -20120910_CIN@BAL,1,51,8,BAL,CIN,,,7,J.Tucker kicks 72 yards from BLT 35 to CIN -7. B.Tate to CIN 8 for 15 yards.,10,0,2012 -20120910_CIN@BAL,1,51,3,CIN,BAL,1,10,92,(6:03) B.Green-Ellis up the middle to CIN 10 for 2 yards (M.Kemoeatu).,0,10,2012 -20120910_CIN@BAL,1,50,53,CIN,BAL,2,8,90,(5:53) (Shotgun) PENALTY on BLT Illegal Substitution 5 yards enforced at CIN 10 - No Play.,0,10,2012 -20120910_CIN@BAL,1,50,53,CIN,BAL,2,3,85,(5:53) A.Dalton pass short left to A.Hawkins to CIN 23 for 8 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,1,49,16,CIN,BAL,1,10,77,(4:16) A.Dalton pass deep middle to A.Green to CIN 42 for 19 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,1,48,39,CIN,BAL,1,10,58,(3:39) B.Green-Ellis left tackle to CIN 45 for 3 yards (R.Lewis B.Pollard).,0,10,2012 -20120910_CIN@BAL,1,48,6,CIN,BAL,2,7,55,(3:06) A.Dalton pass incomplete deep middle to A.Green.,0,10,2012 -20120910_CIN@BAL,1,48,6,CIN,BAL,3,7,55,(3:06) (Shotgun) PENALTY on BLT-P.McPhee Defensive Offside 5 yards enforced at CIN 45 - No Play.,0,10,2012 -20120910_CIN@BAL,1,47,51,CIN,BAL,3,2,50,(2:51) B.Green-Ellis right guard to BLT 37 for 13 yards (R.Lewis).,0,10,2012 -20120910_CIN@BAL,1,47,9,CIN,BAL,1,10,37,(2:09) (Shotgun) A.Dalton pass incomplete deep middle to A.Green (C.Williams).,0,10,2012 -20120910_CIN@BAL,1,47,1,CIN,BAL,2,10,37,(2:01) A.Dalton pass short left to A.Binns to BLT 28 for 9 yards (C.Williams).,0,10,2012 -20120910_CIN@BAL,1,46,22,CIN,BAL,3,1,28,(1:22) A.Dalton up the middle to BLT 23 for 5 yards (E.Reed).,0,10,2012 -20120910_CIN@BAL,1,45,47,CIN,BAL,1,10,23,(:47) B.Green-Ellis right tackle to BLT 20 for 3 yards (R.Lewis).,0,10,2012 -20120910_CIN@BAL,1,45,9,CIN,BAL,2,7,20,(:09) A.Dalton pass short right to A.Binns to BLT 16 for 4 yards (L.Webb).,0,10,2012 -20120910_CIN@BAL,2,45,0,CIN,BAL,3,3,16,(15:00) A.Dalton pass incomplete short middle to J.Gresham.,0,10,2012 -20120910_CIN@BAL,2,44,56,CIN,BAL,4,3,16,(14:56) (Field Goal formation) M.Nugent 34 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,0,10,2012 -20120910_CIN@BAL,2,44,56,CIN,BAL,,,16,M.Nugent kicks 70 yards from CIN 35 to BLT -5. D.Thompson to BLT 18 for 23 yards (D.Skuta).,3,10,2012 -20120910_CIN@BAL,2,44,46,BAL,CIN,1,10,82,(14:46) (Shotgun) R.Rice left guard to BLT 34 for 16 yards (T.Mays).,10,3,2012 -20120910_CIN@BAL,2,44,12,BAL,CIN,1,10,66,(14:12) (No Huddle) R.Rice left guard to BLT 35 for 1 yard (D.Peko).,10,3,2012 -20120910_CIN@BAL,2,43,40,BAL,CIN,2,9,65,(13:40) (Shotgun) J.Flacco pass short right to J.Jones to CIN 40 for 25 yards (R.Nelson).,10,3,2012 -20120910_CIN@BAL,2,43,6,BAL,CIN,1,10,40,(13:06) (No Huddle Shotgun) R.Rice right guard to CIN 34 for 6 yards (T.Howard).,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,2,4,34,(12:34) (No Huddle) J.Flacco pass deep middle to A.Boldin for 34 yards TOUCHDOWN.,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,10,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,18,3,2012 -20120910_CIN@BAL,2,42,34,BAL,CIN,,,34,J.Tucker kicks 73 yards from BLT 35 to CIN -8. B.Tate Touchback.,17,3,2012 -20120910_CIN@BAL,2,42,25,CIN,BAL,1,10,80,(12:25) A.Dalton pass to A.Green to CIN 25 for 5 yards (E.Reed).,3,17,2012 -20120910_CIN@BAL,2,42,2,CIN,BAL,2,5,75,(12:02) B.Green-Ellis left tackle to CIN 29 for 4 yards (H.Ngata).,3,17,2012 -20120910_CIN@BAL,2,41,25,CIN,BAL,3,1,71,(11:25) B.Green-Ellis left end to CIN 41 for 12 yards (A.Jones).,3,17,2012 -20120910_CIN@BAL,2,40,43,CIN,BAL,1,10,59,(10:43) (Shotgun) A.Dalton pass short right to A.Hawkins to CIN 47 for 6 yards (D.Ellerbe P.Kruger).,3,17,2012 -20120910_CIN@BAL,2,40,10,CIN,BAL,2,4,53,(10:10) B.Green-Ellis left guard to CIN 49 for 2 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,39,26,CIN,BAL,3,2,51,(9:26) A.Dalton sacked at CIN 46 for -3 yards (H.Ngata).,3,17,2012 -20120910_CIN@BAL,2,38,58,CIN,BAL,4,5,54,(8:58) (Punt formation) K.Huber punts 39 yards to BLT 15 Center-C.Harris. L.Webb to BLT 24 for 9 yards (C.Harris).,3,17,2012 -20120910_CIN@BAL,2,38,45,BAL,CIN,1,10,76,(8:45) B.Pierce right guard to BLT 27 for 3 yards (D.Still).,17,3,2012 -20120910_CIN@BAL,2,38,21,BAL,CIN,2,7,73,(8:21) J.Flacco pass incomplete short middle to E.Dickson. PENALTY on CIN-T.Mays Personal Foul 15 yards enforced at BLT 27 - No Play.,17,3,2012 -20120910_CIN@BAL,2,38,16,BAL,CIN,1,10,58,(8:16) J.Flacco pass short right to A.Boldin to CIN 44 for 14 yards (N.Clements R.Nelson).,17,3,2012 -20120910_CIN@BAL,2,37,41,BAL,CIN,1,10,44,(7:41) J.Flacco pass short left to V.Leach to CIN 31 for 13 yards (M.Lawson T.Mays). PENALTY on BLT-T.Smith Illegal Block Above the Waist 10 yards enforced at CIN 41.,17,3,2012 -20120910_CIN@BAL,2,36,45,BAL,CIN,1,17,51,(6:45) J.Flacco pass short middle to R.Rice to CIN 45 for 6 yards (R.Maualuga).,17,3,2012 -20120910_CIN@BAL,2,36,35,BAL,CIN,2,11,45,(6:35) (No Huddle Shotgun) J.Flacco pass incomplete short right to A.Boldin (R.Maualuga).,17,3,2012 -20120910_CIN@BAL,2,36,31,BAL,CIN,3,11,45,(6:31) J.Flacco sacked at BLT 49 for -6 yards (T.Howard).,17,3,2012 -20120910_CIN@BAL,2,36,2,BAL,CIN,4,17,51,(6:02) (Punt formation) S.Koch punts 37 yards to CIN 14 Center-M.Cox. B.Tate to CIN 19 for 5 yards (C.Graham).,17,3,2012 -20120910_CIN@BAL,2,35,52,CIN,BAL,1,10,81,(5:52) A.Dalton pass incomplete deep left to A.Green (B.Pollard).,3,17,2012 -20120910_CIN@BAL,2,35,46,CIN,BAL,2,10,81,(5:46) (Shotgun) A.Dalton pass short left to A.Hawkins pushed ob at CIN 46 for 27 yards (L.Webb).,3,17,2012 -20120910_CIN@BAL,2,35,21,CIN,BAL,1,10,54,(5:21) (Shotgun) A.Dalton pass short middle to B.Green-Ellis to CIN 50 for 4 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,34,41,CIN,BAL,2,6,50,(4:41) (Shotgun) B.Green-Ellis right guard to BLT 43 for 7 yards (D.Ellerbe R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,34,1,CIN,BAL,1,10,43,(4:01) (Shotgun) A.Dalton pass short left to B.Tate pushed ob at BLT 40 for 3 yards (C.Williams).,3,17,2012 -20120910_CIN@BAL,2,33,28,CIN,BAL,2,7,40,(3:28) A.Dalton pass short middle to A.Hawkins to BLT 34 for 6 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,33,5,CIN,BAL,3,1,34,(3:05) (No Huddle) A.Dalton up the middle to BLT 34 for no gain (C.Upshaw H.Ngata). QB sneak by Andy Dalton comes up short.,3,17,2012 -20120910_CIN@BAL,2,32,36,CIN,BAL,4,1,34,(2:36) B.Green-Ellis right guard to BLT 30 for 4 yards (A.Jones).,3,17,2012 -20120910_CIN@BAL,2,32,0,CIN,BAL,1,10,30,(2:00) (Shotgun) A.Dalton pass short middle to A.Green to BLT 15 for 15 yards (A.McClellan).,3,17,2012 -20120910_CIN@BAL,2,31,28,CIN,BAL,1,10,15,(1:28) B.Green-Ellis right tackle to BLT 12 for 3 yards (R.Lewis).,3,17,2012 -20120910_CIN@BAL,2,30,50,CIN,BAL,2,7,12,(:50) (Shotgun) A.Dalton pass short right to J.Gresham to BLT 6 for 6 yards (B.Pollard).,3,17,2012 -20120910_CIN@BAL,2,30,35,CIN,BAL,3,1,6,(:35) A.Dalton pass incomplete short right to J.Gresham (E.Reed).,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,4,1,6,(:27) B.Green-Ellis left guard for 6 yards TOUCHDOWN.,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent extra point is GOOD Center-C.Harris Holder-K.Huber.,3,17,2012 -20120910_CIN@BAL,2,30,27,CIN,BAL,,,6,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 25 for 28 yards (C.Peerman). PENALTY on BLT-S.Considine Offensive Holding 10 yards enforced at BLT 21.,10,17,2012 -20120910_CIN@BAL,2,30,18,BAL,CIN,1,10,89,(:18) J.Flacco kneels to BLT 10 for -1 yards.,17,10,2012 -20120910_CIN@BAL,3,30,0,BAL,CIN,,,89,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,17,10,2012 -20120910_CIN@BAL,3,30,0,CIN,BAL,1,10,80,(15:00) A.Dalton pass short left to A.Green to CIN 34 for 14 yards (C.Williams R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,29,21,CIN,BAL,1,10,66,(14:21) B.Green-Ellis left guard to CIN 43 for 9 yards (J.McClain R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,28,50,CIN,BAL,2,1,57,(13:50) B.Green-Ellis left tackle to CIN 45 for 2 yards (D.Ellerbe B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,28,16,CIN,BAL,1,10,55,(13:16) (Shotgun) A.Dalton pass deep right to A.Green to BLT 38 for 17 yards (B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,27,34,CIN,BAL,1,10,38,(12:34) B.Green-Ellis left tackle to BLT 36 for 2 yards (L.Webb).,10,17,2012 -20120910_CIN@BAL,3,26,59,CIN,BAL,2,8,36,(11:59) (Shotgun) A.Dalton pass short right to A.Hawkins pushed ob at BLT 25 for 11 yards (R.Lewis).,10,17,2012 -20120910_CIN@BAL,3,26,35,CIN,BAL,1,10,25,(11:35) B.Leonard up the middle to BLT 22 for 3 yards (D.Ellerbe).,10,17,2012 -20120910_CIN@BAL,3,25,57,CIN,BAL,2,7,22,(10:57) A.Dalton pass short left to A.Hawkins pushed ob at BLT 8 for 14 yards (C.Williams).,10,17,2012 -20120910_CIN@BAL,3,25,30,CIN,BAL,1,8,8,(10:30) B.Green-Ellis left guard to BLT 7 for 1 yard (B.Pollard).,10,17,2012 -20120910_CIN@BAL,3,24,51,CIN,BAL,2,7,7,(9:51) (Shotgun) A.Dalton pass incomplete short middle to A.Green.,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,3,7,7,(9:47) (Shotgun) A.Dalton up the middle to BLT 1 for 6 yards (L.Webb).,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,4,1,1,(9:47) (Field Goal formation) M.Nugent 19 yard field goal is GOOD Center-C.Harris Holder-K.Huber.,10,17,2012 -20120910_CIN@BAL,3,24,47,CIN,BAL,,,1,M.Nugent kicks 68 yards from CIN 35 to BLT -3. D.Thompson to BLT 11 for 14 yards (C.Peerman).,13,17,2012 -20120910_CIN@BAL,3,23,54,BAL,CIN,1,10,89,(8:54) PENALTY on BLT-T.Smith False Start 5 yards enforced at BLT 11 - No Play.,17,13,2012 -20120910_CIN@BAL,3,23,54,BAL,CIN,1,15,94,(8:54) J.Flacco pass deep middle to D.Pitta to BLT 29 for 23 yards (R.Maualuga).,17,13,2012 -20120910_CIN@BAL,3,23,24,BAL,CIN,1,10,71,(8:24) (No Huddle) J.Flacco pass short left to D.Pitta to BLT 32 for 3 yards (R.Nelson).,17,13,2012 -20120910_CIN@BAL,3,22,59,BAL,CIN,2,7,68,(7:59) (No Huddle) J.Flacco pass incomplete short left to A.Boldin (L.Hall). PENALTY on CIN-L.Hall Defensive Pass Interference 6 yards enforced at BLT 32 - No Play.,17,13,2012 -20120910_CIN@BAL,3,22,54,BAL,CIN,1,10,62,(7:54) J.Flacco pass incomplete short middle to D.Pitta (R.Nelson).,17,13,2012 -20120910_CIN@BAL,3,22,49,BAL,CIN,2,10,62,(7:49) (No Huddle Shotgun) J.Flacco pass short left to R.Rice pushed ob at CIN 44 for 18 yards.,17,13,2012 -20120910_CIN@BAL,3,22,21,BAL,CIN,1,10,44,(7:21) (No Huddle) R.Rice left guard to CIN 31 for 13 yards (L.Hall J.Miles).,17,13,2012 -20120910_CIN@BAL,3,21,49,BAL,CIN,1,10,31,(6:49) (No Huddle) J.Flacco pass deep left to E.Dickson to CIN 12 for 19 yards (J.Miles).,17,13,2012 -20120910_CIN@BAL,3,21,11,BAL,CIN,1,10,12,(6:11) (No Huddle) B.Pierce left guard to CIN 10 for 2 yards (M.Lawson D.Peko).,17,13,2012 -20120910_CIN@BAL,3,20,33,BAL,CIN,2,8,10,(5:33) (No Huddle) J.Flacco pass incomplete short left to R.Rice (L.Hall) [D.Peko].,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,3,8,10,(5:25) (No Huddle Shotgun) J.Flacco pass short middle to D.Pitta for 10 yards TOUCHDOWN.,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,17,13,2012 -20120910_CIN@BAL,3,20,25,BAL,CIN,,,10,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,24,13,2012 -20120910_CIN@BAL,3,20,18,CIN,BAL,1,10,80,(5:18) A.Dalton pass incomplete short right to A.Hawkins.,13,24,2012 -20120910_CIN@BAL,3,20,13,CIN,BAL,2,10,80,(5:13) (Shotgun) A.Dalton pass incomplete short left to A.Binns (C.Williams).,13,24,2012 -20120910_CIN@BAL,3,20,9,CIN,BAL,3,10,80,(5:09) (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 40 for 20 yards (B.Pollard). Baltimore challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) A.Dalton pass short middle to A.Hawkins to CIN 26 for 6 yards (R.Lewis).,13,24,2012 -20120910_CIN@BAL,3,19,33,CIN,BAL,4,4,74,(4:33) (Punt formation) K.Huber punts 57 yards to BLT 17 Center-C.Harris. J.Jones to BLT 26 for 9 yards (C.Harris).,13,24,2012 -20120910_CIN@BAL,3,19,22,BAL,CIN,1,10,74,(4:22) J.Flacco pass deep middle to D.Pitta to CIN 49 for 25 yards (R.Nelson).,24,13,2012 -20120910_CIN@BAL,3,18,45,BAL,CIN,1,10,49,(3:45) J.Flacco pass short left to A.Boldin to CIN 39 for 10 yards (L.Hall).,24,13,2012 -20120910_CIN@BAL,3,18,3,BAL,CIN,1,10,39,(3:03) J.Flacco pass short right to E.Dickson to CIN 36 for 3 yards (J.Miles).,24,13,2012 -20120910_CIN@BAL,3,17,26,BAL,CIN,2,7,36,(2:26) (No Huddle) R.Rice left guard to CIN 26 for 10 yards (R.Nelson T.Newman).,24,13,2012 -20120910_CIN@BAL,3,16,49,BAL,CIN,1,10,26,(1:49) J.Flacco pass short left to T.Smith pushed ob at CIN 21 for 5 yards (R.Nelson).,24,13,2012 -20120910_CIN@BAL,3,16,29,BAL,CIN,2,5,21,(1:29) (No Huddle) J.Flacco pass incomplete deep middle to T.Smith.,24,13,2012 -20120910_CIN@BAL,3,16,23,BAL,CIN,3,5,21,(1:23) (Shotgun) J.Flacco pass incomplete deep middle to E.Dickson (N.Clements).,24,13,2012 -20120910_CIN@BAL,3,16,18,BAL,CIN,4,5,21,(1:18) (Field Goal formation) J.Tucker 40 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,24,13,2012 -20120910_CIN@BAL,3,16,18,BAL,CIN,,,21,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,27,13,2012 -20120910_CIN@BAL,3,16,13,CIN,BAL,1,10,80,(1:13) B.Green-Ellis left tackle to CIN 21 for 1 yard (A.Jones).,13,27,2012 -20120910_CIN@BAL,3,15,29,CIN,BAL,2,9,79,(:29) A.Dalton pass incomplete deep left to A.Green.,13,27,2012 -20120910_CIN@BAL,3,15,22,CIN,BAL,3,9,79,(:22) (Shotgun) A.Dalton pass short left intended for B.Tate INTERCEPTED by E.Reed at CIN 34. E.Reed for 34 yards TOUCHDOWN. Ed Reed is now NFL's all-time leader with 1497 interception return yards.,13,27,2012 -20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,27,13,2012 -20120910_CIN@BAL,3,15,22,BAL,CIN,,,79,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback. BLT-C.Graham was injured during the play.,34,13,2012 -20120910_CIN@BAL,3,15,13,CIN,BAL,1,10,80,(:13) A.Dalton pass short left to A.Binns to CIN 28 for 8 yards (C.Williams D.Ellerbe).,13,34,2012 -20120910_CIN@BAL,4,15,0,CIN,BAL,2,2,72,(15:00) (Shotgun) A.Dalton pass incomplete short middle to B.Green-Ellis (H.Ngata) [L.Webb].,13,34,2012 -20120910_CIN@BAL,4,14,57,CIN,BAL,3,2,72,(14:57) (Shotgun) A.Dalton sacked at CIN 28 for 0 yards (R.Lewis). FUMBLES (R.Lewis) RECOVERED by BLT-L.Webb at CIN 28. L.Webb to CIN 28 for no gain (A.Smith).,13,34,2012 -20120910_CIN@BAL,4,14,48,BAL,CIN,1,10,28,(14:48) R.Rice left end to CIN 21 for 7 yards (M.Lawson R.Maualuga).,34,13,2012 -20120910_CIN@BAL,4,14,18,BAL,CIN,2,3,21,(14:18) J.Flacco pass incomplete deep right to T.Smith. PENALTY on CIN-N.Clements Defensive Pass Interference 20 yards enforced at CIN 21 - No Play.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,1,1,1,(14:09) R.Rice left guard for 1 yard TOUCHDOWN.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker extra point is GOOD Center-M.Cox Holder-S.Koch.,34,13,2012 -20120910_CIN@BAL,4,14,9,BAL,CIN,,,1,J.Tucker kicks 74 yards from BLT 35 to CIN -9. B.Tate Touchback.,41,13,2012 -20120910_CIN@BAL,4,14,4,CIN,BAL,1,10,80,(14:04) (Shotgun) A.Dalton pass short left to J.Gresham pushed ob at CIN 33 for 13 yards (B.Pollard).,13,41,2012 -20120910_CIN@BAL,4,13,42,CIN,BAL,1,10,67,(13:42) (Shotgun) A.Dalton pass short right to J.Gresham to CIN 44 for 11 yards (D.Ellerbe).,13,41,2012 -20120910_CIN@BAL,4,13,10,CIN,BAL,1,10,56,(13:10) (Shotgun) A.Dalton pass incomplete short right to J.Gresham [L.Webb]. PENALTY on BLT-L.Webb Personal Foul 15 yards enforced at CIN 44 - No Play.,13,41,2012 -20120910_CIN@BAL,4,13,4,CIN,BAL,1,10,41,(13:04) (Shotgun) B.Green-Ellis right guard to BLT 27 for 14 yards (L.Webb J.Ihedigbo).,13,41,2012 -20120910_CIN@BAL,4,12,28,CIN,BAL,1,10,27,(12:28) (Shotgun) A.Dalton sacked at BLT 40 for -13 yards (H.Ngata).,13,41,2012 -20120910_CIN@BAL,4,11,54,CIN,BAL,2,23,40,(11:54) (Shotgun) A.Dalton pass incomplete short right to J.Gresham.,13,41,2012 -20120910_CIN@BAL,4,11,47,CIN,BAL,3,23,40,(11:47) (Shotgun) A.Dalton pass short middle to A.Hawkins to BLT 32 for 8 yards (D.Ellerbe).,13,41,2012 -20120910_CIN@BAL,4,11,6,CIN,BAL,4,15,32,(11:06) (Shotgun) A.Dalton sacked at BLT 44 for -12 yards (sack split by P.McPhee and C.Upshaw).,13,41,2012 -20120910_CIN@BAL,4,10,57,BAL,CIN,1,10,56,(10:57) B.Pierce right end to BLT 47 for 3 yards (D.Peko).,41,13,2012 -20120910_CIN@BAL,4,10,23,BAL,CIN,2,7,53,(10:23) J.Flacco pass incomplete deep left to D.Pitta.,41,13,2012 -20120910_CIN@BAL,4,10,16,BAL,CIN,3,7,53,(10:16) (Shotgun) J.Flacco sacked at BLT 39 for -8 yards (G.Atkins).,41,13,2012 -20120910_CIN@BAL,4,9,59,BAL,CIN,4,15,61,(9:59) (Punt formation) S.Koch punts 50 yards to CIN 11 Center-M.Cox. B.Tate to CIN 25 for 14 yards (A.Allen).,41,13,2012 -20120910_CIN@BAL,4,9,47,CIN,BAL,1,10,75,(9:47) A.Dalton pass short left to A.Binns to CIN 32 for 7 yards (C.Williams).,13,41,2012 -20120910_CIN@BAL,4,9,16,CIN,BAL,2,3,68,(9:16) (Shotgun) B.Leonard right guard to CIN 33 for 1 yard (A.Jones).,13,41,2012 -20120910_CIN@BAL,4,8,35,CIN,BAL,3,2,67,(8:35) (Shotgun) A.Dalton pass incomplete short right to J.Gresham (L.Webb J.McClain).,13,41,2012 -20120910_CIN@BAL,4,8,30,CIN,BAL,4,2,67,(8:30) (Punt formation) K.Huber punts 48 yards to BLT 19 Center-C.Harris fair catch by L.Webb.,13,41,2012 -20120910_CIN@BAL,4,8,23,BAL,CIN,1,10,81,(8:23) B.Pierce right end to BLT 30 for 11 yards (N.Clements).,41,13,2012 -20120910_CIN@BAL,4,7,40,BAL,CIN,1,10,70,(7:40) A.Allen up the middle to BLT 36 for 6 yards (D.Still).,41,13,2012 -20120910_CIN@BAL,4,6,55,BAL,CIN,2,4,64,(6:55) A.Allen right guard to BLT 43 for 7 yards (M.Lawson R.Maualuga).,41,13,2012 -20120910_CIN@BAL,4,6,13,BAL,CIN,1,10,57,(6:13) A.Allen left tackle to BLT 43 for no gain (D.Skuta D.Peko).,41,13,2012 -20120910_CIN@BAL,4,5,35,BAL,CIN,2,10,57,(5:35) T.Taylor pass short left to V.Leach to BLT 48 for 5 yards (R.Nelson).,41,13,2012 -20120910_CIN@BAL,4,4,51,BAL,CIN,3,5,52,(4:51) (Shotgun) T.Taylor pass short left to D.Thompson pushed ob at CIN 27 for 25 yards (R.Nelson).,41,13,2012 -20120910_CIN@BAL,4,4,25,BAL,CIN,1,10,27,(4:25) A.Allen right tackle to CIN 27 for no gain (B.Thompson).,41,13,2012 -20120910_CIN@BAL,4,4,3,BAL,CIN,2,10,27,(4:03) T.Taylor scrambles left end to CIN 20 for 7 yards (Mich.Johnson).,41,13,2012 -20120910_CIN@BAL,4,3,14,BAL,CIN,3,3,20,(3:14) (Shotgun) T.Taylor pass incomplete deep left to D.Thompson (L.Hall).,41,13,2012 -20120910_CIN@BAL,4,3,6,BAL,CIN,4,3,20,(3:06) (Field Goal formation) J.Tucker 39 yard field goal is GOOD Center-M.Cox Holder-S.Koch.,41,13,2012 -20120910_CIN@BAL,4,3,6,BAL,CIN,,,20,J.Tucker kicks 67 yards from BLT 35 to CIN -2. B.Tate to CIN 22 for 24 yards (C.Brown).,44,13,2012 -20120910_CIN@BAL,4,2,55,CIN,BAL,1,10,78,(2:55) B.Leonard right tackle to CIN 23 for 1 yard (A.McClellan C.Upshaw).,13,44,2012 -20120910_CIN@BAL,4,2,21,CIN,BAL,2,9,77,(2:21) C.Peerman up the middle to CIN 31 for 8 yards (C.Upshaw; C.Graham).,13,44,2012 -20120910_CIN@BAL,4,2,0,CIN,BAL,3,1,69,(2:00) C.Peerman right guard to CIN 44 for 13 yards (C.Graham).,13,44,2012 -20120910_CIN@BAL,4,1,24,CIN,BAL,1,10,56,(1:24) C.Peerman right guard to CIN 45 for 1 yard (T.Cody).,13,44,2012 -20120910_CIN@BAL,4,0,41,CIN,BAL,2,9,60,(:41) B.Gradkowski FUMBLES (Aborted) at CIN 45 and recovers at CIN 40. B.Gradkowski to CIN 40 for no gain (J.Ihedigbo).,13,44,2012 -20120910_CIN@BAL,4,0,41,CIN,BAL,,,60,                      ,13,44,2012 -20120910_SD@OAK,1,0,0,SD,OAK,,,60,N.Kaeding kicks 57 yards from SD 35 to OAK 8. T.Jones to OAK 14 for 6 yards (S.Wright J.Battle).,0,0,2012 -20120910_SD@OAK,1,59,56,OAK,SD,1,10,86,(14:56) C.Palmer pass short left to D.McFadden to OAK 23 for 9 yards (T.Spikes).,0,0,2012 -20120910_SD@OAK,1,59,19,OAK,SD,2,1,77,(14:19) D.McFadden up the middle to OAK 26 for 3 yards (A.Bigby).,0,0,2012 -20120910_SD@OAK,1,58,43,OAK,SD,1,10,74,(13:43) C.Palmer pass incomplete short right to D.Heyward-Bey (A.Cason).,0,0,2012 -20120910_SD@OAK,1,58,36,OAK,SD,2,10,74,(13:36) D.McFadden up the middle to OAK 26 for no gain (C.Liuget).,0,0,2012 -20120910_SD@OAK,1,58,0,OAK,SD,3,10,74,(13:00) (Shotgun) C.Palmer pass short left to D.Hagan to OAK 39 for 13 yards (A.Cason).,0,0,2012 -20120910_SD@OAK,1,57,34,OAK,SD,1,10,61,(12:34) C.Palmer pass short right to D.Heyward-Bey to OAK 48 for 9 yards (Q.Jammer T.Spikes).,0,0,2012 -20120910_SD@OAK,1,56,47,OAK,SD,2,1,52,(11:47) D.McFadden left end to SD 44 for 8 yards (E.Weddle).,0,0,2012 -20120910_SD@OAK,1,56,17,OAK,SD,1,10,44,(11:17) (Shotgun) C.Palmer pass short right to D.McFadden to SD 45 for -1 yards (A.Bigby).,0,0,2012 -20120910_SD@OAK,1,55,41,OAK,SD,2,11,45,(10:41) M.Goodson right tackle to SD 43 for 2 yards (C.Liuget).,0,0,2012 -20120910_SD@OAK,1,55,3,OAK,SD,3,9,43,(10:03) (Shotgun) C.Palmer pass incomplete short left to D.Hagan. PENALTY on SD-M.Ingram Defensive Offside 5 yards enforced at SD 43 - No Play.,0,0,2012 -20120910_SD@OAK,1,54,58,OAK,SD,3,4,38,(9:58) (Shotgun) C.Palmer pass short middle to R.Streater to SD 30 for 8 yards (M.Ingram). FUMBLES (M.Ingram) RECOVERED by SD-A.Barnes at SD 29. A.Barnes to SD 29 for no gain (M.Brisiel).,0,0,2012 -20120910_SD@OAK,1,54,49,SD,OAK,1,10,71,(9:49) R.Brown right end to SD 29 for no gain (R.Seymour).,0,0,2012 -20120910_SD@OAK,1,54,9,SD,OAK,2,10,71,(9:09) (Shotgun) P.Rivers pass short left to R.Brown to SD 33 for 4 yards (M.Huff P.Wheeler).,0,0,2012 -20120910_SD@OAK,1,53,24,SD,OAK,3,6,67,(8:24) (Shotgun) P.Rivers sacked at SD 28 for -5 yards (sack split by M.Shaughnessy and P.Wheeler).,0,0,2012 -20120910_SD@OAK,1,53,0,SD,OAK,4,11,72,(8:00) M.Scifres punts 53 yards to OAK 19 Center-M.Windt. P.Adams to OAK 34 for 15 yards (D.Stuckey).,0,0,2012 -20120910_SD@OAK,1,52,51,OAK,SD,1,10,66,(7:51) D.McFadden left end to OAK 41 for 7 yards (J.Johnson).,0,0,2012 -20120910_SD@OAK,1,52,14,OAK,SD,2,3,59,(7:14) C.Palmer pass short right to D.McFadden to 50 for 9 yards (D.Butler).,0,0,2012 -20120910_SD@OAK,1,51,52,OAK,SD,1,10,50,(6:52) C.Palmer pass short right to D.Heyward-Bey to SD 37 for 13 yards (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,51,22,OAK,SD,1,10,37,(6:22) D.McFadden right tackle to SD 37 for no gain (D.Butler J.Johnson).,0,0,2012 -20120910_SD@OAK,1,50,44,OAK,SD,2,10,37,(5:44) (Shotgun) C.Palmer pass incomplete short right to D.McFadden (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,50,40,OAK,SD,3,10,37,(5:40) (Shotgun) C.Palmer pass short middle to R.Streater to SD 33 for 4 yards (Q.Jammer).,0,0,2012 -20120910_SD@OAK,1,50,2,OAK,SD,4,6,33,(5:02) S.Janikowski 51 yard field goal is GOOD Center-J.Condo Holder-S.Lechler.,0,0,2012 -20120910_SD@OAK,1,50,2,OAK,SD,,,33,S.Janikowski kicks 69 yards from OAK 35 to SD -4. R.Goodman to SD 21 for 25 yards (T.Jones D.Ausberry).,3,0,2012 -20120910_SD@OAK,1,49,51,SD,OAK,1,10,79,(4:51) E.Royal right end to SD 32 for 11 yards (M.Huff).,0,3,2012 -20120910_SD@OAK,1,49,20,SD,OAK,1,10,68,(4:20) (Shotgun) P.Rivers pass incomplete short right to C.Brinkley.,0,3,2012 -20120910_SD@OAK,1,49,13,SD,OAK,2,10,68,(4:13) C.Brinkley right tackle to SD 34 for 2 yards (R.McClain).,0,3,2012 -20120910_SD@OAK,1,48,29,SD,OAK,3,8,66,(3:29) (Shotgun) P.Rivers pass deep right to R.Meachem to OAK 20 for 46 yards (R.Bartell).,0,3,2012 -20120910_SD@OAK,1,47,43,SD,OAK,1,10,20,(2:43) P.Rivers pass short right to C.Brinkley to OAK 8 for 12 yards (P.Wheeler).,0,3,2012 -20120910_SD@OAK,1,46,56,SD,OAK,1,8,8,(1:56) P.Rivers pass short middle to L.McClain to OAK 5 for 3 yards (P.Wheeler; T.Kelly).,0,3,2012 -20120910_SD@OAK,1,46,13,SD,OAK,2,5,5,(1:13) (Shotgun) P.Rivers pass incomplete short left to M.Floyd.,0,3,2012 -20120910_SD@OAK,1,46,7,SD,OAK,3,5,5,(1:07) (Shotgun) P.Rivers pass incomplete short middle to A.Gates.,0,3,2012 -20120910_SD@OAK,1,46,4,SD,OAK,4,5,5,(1:04) N.Kaeding 23 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,0,3,2012 -20120910_SD@OAK,1,46,0,OAK,SD,1,10,90,(1:00) D.McFadden right tackle to OAK 14 for 4 yards (A.Franklin).,3,3,2012 -20120910_SD@OAK,1,45,22,OAK,SD,2,6,86,(:22) D.McFadden right guard to OAK 19 for 5 yards (D.Butler).,3,3,2012 -20120910_SD@OAK,2,45,0,OAK,SD,3,1,81,(15:00) D.McFadden right tackle to OAK 20 for 1 yard (V.Martin).,3,3,2012 -20120910_SD@OAK,2,44,19,OAK,SD,1,10,80,(14:19) C.Palmer pass short middle to R.Streater to OAK 33 for 13 yards (D.Butler).,3,3,2012 -20120910_SD@OAK,2,43,39,OAK,SD,1,10,90,(13:39) M.Reece FUMBLES (Aborted) at OAK 26 recovered by OAK-T.Jones at OAK 10. T.Jones to OAK 8 for -2 yards (A.Bigby).,3,3,2012 -20120910_SD@OAK,2,42,49,OAK,SD,2,35,92,(12:49) M.Goodson left tackle to OAK 19 for 11 yards (E.Weddle).,3,3,2012 -20120910_SD@OAK,2,42,8,OAK,SD,3,24,81,(12:08) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 22 for 3 yards (Q.Jammer).,3,3,2012 -20120910_SD@OAK,2,41,34,OAK,SD,4,21,78,(11:34) S.Lechler punts 62 yards to SD 16 Center-J.Condo. E.Royal to OAK 38 for 46 yards (M.Giordano). OAK-J.Condo was injured during the play. His return is Questionable. PENALTY on SD-D.Stuckey Illegal Block Above the Waist 10 yards enforced at SD 20.,3,3,2012 -20120910_SD@OAK,2,41,16,SD,OAK,1,10,90,(11:16) C.Brinkley right guard to SD 12 for 2 yards (R.McClain M.Burris).,3,3,2012 -20120910_SD@OAK,2,40,35,SD,OAK,2,8,88,(10:35) (Shotgun) P.Rivers pass short right to E.Royal to SD 19 for 7 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,40,4,SD,OAK,3,1,81,(10:04) PENALTY on OAK-T.Kelly Encroachment 5 yards enforced at SD 19 - No Play.,3,3,2012 -20120910_SD@OAK,2,39,45,SD,OAK,1,10,76,(9:45) P.Rivers pass incomplete short left to C.Brinkley. PENALTY on OAK-T.Branch Defensive Holding 5 yards enforced at SD 24 - No Play.,3,3,2012 -20120910_SD@OAK,2,39,38,SD,OAK,1,10,71,(9:38) (Shotgun) P.Rivers pass short right to R.Brown to SD 35 for 6 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,39,0,SD,OAK,2,4,65,(9:00) R.Brown up the middle to SD 36 for 1 yard (R.McClain).,3,3,2012 -20120910_SD@OAK,2,38,19,SD,OAK,3,3,64,(8:19) (Shotgun) P.Rivers pass incomplete deep right to A.Gates. PENALTY on OAK-T.Kelly Defensive Offside 5 yards enforced at SD 36 - No Play.,3,3,2012 -20120910_SD@OAK,2,38,13,SD,OAK,1,10,59,(8:13) (Shotgun) P.Rivers pass short right to E.Royal to SD 38 for -3 yards (M.Burris).,3,3,2012 -20120910_SD@OAK,2,37,26,SD,OAK,2,13,62,(7:26) P.Rivers pass deep right to M.Floyd to OAK 39 for 23 yards (R.Bartell).,3,3,2012 -20120910_SD@OAK,2,36,57,SD,OAK,1,10,39,(6:57) (Shotgun) P.Rivers pass short middle to A.Gates to OAK 29 for 10 yards (T.Branch R.Bartell).,3,3,2012 -20120910_SD@OAK,2,36,13,SD,OAK,1,10,29,(6:13) P.Rivers pass short right to L.McClain to OAK 22 for 7 yards (L.Houston).,3,3,2012 -20120910_SD@OAK,2,35,35,SD,OAK,2,3,22,(5:35) C.Brinkley left tackle to OAK 24 for -2 yards (M.Burris).,3,3,2012 -20120910_SD@OAK,2,34,52,SD,OAK,3,5,24,(4:52) (Shotgun) P.Rivers pass deep left to A.Gates to OAK 7 for 17 yards (T.Branch).,3,3,2012 -20120910_SD@OAK,2,34,9,SD,OAK,1,7,7,(4:09) C.Brinkley left guard to OAK 6 for 1 yard (R.Seymour).,3,3,2012 -20120910_SD@OAK,2,33,24,SD,OAK,2,6,6,(3:24) (Shotgun) P.Rivers pass incomplete short left to D.Rosario.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,3,6,6,(3:17) (Shotgun) P.Rivers pass short middle to M.Floyd for 6 yards TOUCHDOWN.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding extra point is GOOD Center-M.Windt Holder-M.Scifres.,3,3,2012 -20120910_SD@OAK,2,33,17,SD,OAK,,,6,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,10,3,2012 -20120910_SD@OAK,2,33,10,OAK,SD,1,10,80,(3:10) C.Palmer pass incomplete short right to D.McFadden.,3,10,2012 -20120910_SD@OAK,2,33,5,OAK,SD,2,10,80,(3:05) D.McFadden right tackle to OAK 27 for 7 yards (D.Butler; A.Bigby).,3,10,2012 -20120910_SD@OAK,2,32,28,OAK,SD,3,3,73,(2:28) C.Palmer pass short middle to M.Reece to OAK 42 for 15 yards (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,32,0,OAK,SD,1,10,58,(2:00) C.Palmer pass short middle to D.McFadden to OAK 46 for 4 yards (J.Johnson).,3,10,2012 -20120910_SD@OAK,2,31,26,OAK,SD,2,6,54,(1:26) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,3,10,2012 -20120910_SD@OAK,2,31,20,OAK,SD,3,6,54,(1:20) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 42 for 12 yards (E.Weddle).,3,10,2012 -20120910_SD@OAK,2,31,12,OAK,SD,1,10,42,(1:12) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,3,10,2012 -20120910_SD@OAK,2,31,8,OAK,SD,2,10,42,(1:08) (Shotgun) C.Palmer pass short right to D.Hagan to SD 32 for 10 yards (Q.Jammer).,3,10,2012 -20120910_SD@OAK,2,30,44,OAK,SD,1,10,32,(:44) (No Huddle Shotgun) C.Palmer pass short middle to D.Hagan to SD 28 for 4 yards (D.Williams).,3,10,2012 -20120910_SD@OAK,2,30,38,OAK,SD,2,6,28,(:38) (Shotgun) C.Palmer pass short left to D.McFadden to SD 11 for 17 yards (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,30,26,OAK,SD,1,10,11,(:26) C.Palmer pass incomplete short left to R.Streater.,3,10,2012 -20120910_SD@OAK,2,30,23,OAK,SD,2,10,11,(:23) C.Palmer pass incomplete short middle to D.Hagan (A.Bigby).,3,10,2012 -20120910_SD@OAK,2,30,16,OAK,SD,3,10,11,(:16) (Shotgun) PENALTY on OAK-C.Palmer Delay of Game 5 yards enforced at SD 11 - No Play.,3,10,2012 -20120910_SD@OAK,2,30,16,OAK,SD,3,15,16,(:16) (Shotgun) C.Palmer pass short middle to D.McFadden to SD 1 for 15 yards (Q.Jammer; M.Gilchrist). The Replay Assistant challenged the first down ruling and the play was REVERSED. (Shotgun) C.Palmer pass short middle to D.McFadden to SD 2 for 14 yards (Q.Jammer M.Gilchrist).,3,10,2012 -20120910_SD@OAK,2,30,7,OAK,SD,4,1,2,(:07) S.Janikowski 19 yard field goal is GOOD Center-T.Goethel Holder-S.Lechler.,3,10,2012 -20120910_SD@OAK,2,30,7,OAK,SD,,,2,S.Janikowski kicks 49 yards from OAK 35 to SD 16. R.Goodman to SD 33 for 17 yards (P.Lee).,6,10,2012 -20120910_SD@OAK,3,30,0,OAK,SD,,,2,S.Janikowski kicks 70 yards from OAK 35 to SD -5. R.Goodman to SD 29 for 34 yards (M.Mitchell).,6,10,2012 -20120910_SD@OAK,3,29,54,SD,OAK,1,10,71,(14:54) C.Brinkley left guard to SD 29 for no gain (L.Houston).,10,6,2012 -20120910_SD@OAK,3,29,10,SD,OAK,2,10,71,(14:10) (Shotgun) P.Rivers pass short right to R.Brown to SD 33 for 4 yards (T.Kelly).,10,6,2012 -20120910_SD@OAK,3,28,25,SD,OAK,3,6,67,(13:25) (Shotgun) P.Rivers pass short middle to A.Gates to SD 38 for 5 yards (R.McClain; P.Wheeler).,10,6,2012 -20120910_SD@OAK,3,27,34,SD,OAK,4,1,62,(12:34) M.Scifres punts 55 yards to OAK 7 Center-M.Windt fair catch by P.Adams.,10,6,2012 -20120910_SD@OAK,3,27,25,OAK,SD,1,10,93,(12:25) D.McFadden right end to OAK 12 for 5 yards (T.Spikes).,6,10,2012 -20120910_SD@OAK,3,26,43,OAK,SD,2,5,88,(11:43) (No Huddle) D.McFadden right tackle to OAK 15 for 3 yards (T.Spikes).,6,10,2012 -20120910_SD@OAK,3,26,2,OAK,SD,3,2,85,(11:02) (Shotgun) C.Palmer pass incomplete short middle to D.Hagan (Q.Jammer). PENALTY on SD-Q.Jammer Defensive Pass Interference 17 yards enforced at OAK 15 - No Play.,6,10,2012 -20120910_SD@OAK,3,25,56,OAK,SD,1,10,68,(10:56) C.Palmer pass short left to D.Ausberry to OAK 44 for 12 yards (A.Bigby).,6,10,2012 -20120910_SD@OAK,3,25,49,OAK,SD,1,10,56,(10:49) (No Huddle) PENALTY on SD-V.Martin Neutral Zone Infraction 5 yards enforced at OAK 44 - No Play.,6,10,2012 -20120910_SD@OAK,3,25,24,OAK,SD,1,5,51,(10:24) (No Huddle Shotgun) D.McFadden left tackle to SD 49 for 2 yards (J.Johnson).,6,10,2012 -20120910_SD@OAK,3,25,6,OAK,SD,2,3,49,(10:06) D.McFadden left tackle to SD 48 for 1 yard (C.Liuget).,6,10,2012 -20120910_SD@OAK,3,24,25,OAK,SD,3,2,48,(9:25) C.Palmer pass short left to B.Myers to SD 48 for no gain (E.Weddle).,6,10,2012 -20120910_SD@OAK,3,24,16,OAK,SD,4,2,48,(9:16) (Punt formation) PENALTY on OAK Illegal Substitution 5 yards enforced at SD 48 - No Play.,6,10,2012 -20120910_SD@OAK,3,24,16,OAK,SD,4,7,61,(9:16) (Punt formation) S.Lechler Aborted. T.Goethel FUMBLES at OAK 36 recovered by OAK-S.Lechler at OAK 39. S.Lechler to OAK 39 for no gain (A.Gachkar).,6,10,2012 -20120910_SD@OAK,3,23,43,SD,OAK,1,10,39,(8:43) P.Rivers pass short right to C.Brinkley to OAK 35 for 4 yards (M.Burris).,10,6,2012 -20120910_SD@OAK,3,23,10,SD,OAK,2,6,35,(8:10) (Shotgun) P.Rivers pass short left to R.Brown to OAK 28 for 7 yards (M.Shaughnessy).,10,6,2012 -20120910_SD@OAK,3,22,45,SD,OAK,1,10,28,(7:45) P.Rivers pass short right to C.Brinkley to OAK 16 for 12 yards (P.Wheeler T.Kelly).,10,6,2012 -20120910_SD@OAK,3,21,58,SD,OAK,1,10,16,(6:58) C.Brinkley left end to OAK 10 for 6 yards (M.Huff).,10,6,2012 -20120910_SD@OAK,3,21,18,SD,OAK,2,4,10,(6:18) P.Rivers pass incomplete short left to C.Brinkley.,10,6,2012 -20120910_SD@OAK,3,21,10,SD,OAK,3,4,10,(6:10) (Shotgun) P.Rivers pass incomplete short right to M.Floyd.,10,6,2012 -20120910_SD@OAK,3,21,5,SD,OAK,4,4,10,(6:05) N.Kaeding 28 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,10,6,2012 -20120910_SD@OAK,3,21,5,SD,OAK,,,10,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,13,6,2012 -20120910_SD@OAK,3,21,1,OAK,SD,1,10,80,(6:01) C.Palmer pass short middle to D.McFadden to OAK 27 for 7 yards (T.Spikes).,6,13,2012 -20120910_SD@OAK,3,20,23,OAK,SD,2,3,73,(5:23) C.Palmer pass incomplete short right to R.Streater.,6,13,2012 -20120910_SD@OAK,3,20,19,OAK,SD,3,3,73,(5:19) (Shotgun) C.Palmer pass short left to D.McFadden to OAK 29 for 2 yards (A.Cason).,6,13,2012 -20120910_SD@OAK,3,19,31,OAK,SD,4,1,71,(4:31) S.Lechler punt is BLOCKED by D.Rosario Center-T.Goethel RECOVERED by SD-C.Lynch at OAK 8. C.Lynch to OAK 8 for no gain (M.Mitchell).,6,13,2012 -20120910_SD@OAK,3,19,20,SD,OAK,1,8,8,(4:20) C.Brinkley left tackle to OAK 3 for 5 yards (M.Burris M.Huff).,13,6,2012 -20120910_SD@OAK,3,19,10,SD,OAK,2,3,3,(4:10) PENALTY on SD-R.McMichael False Start 5 yards enforced at OAK 3 - No Play.,13,6,2012 -20120910_SD@OAK,3,18,17,SD,OAK,2,8,8,(3:17) (Shotgun) R.Brown up the middle to OAK 6 for 2 yards (R.McClain).,13,6,2012 -20120910_SD@OAK,3,17,34,SD,OAK,3,6,6,(2:34) (Shotgun) P.Rivers pass short middle to R.Brown to OAK 1 for 5 yards (P.Wheeler M.Huff).,13,6,2012 -20120910_SD@OAK,3,16,53,SD,OAK,4,1,1,(1:53) N.Kaeding 19 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,13,6,2012 -20120910_SD@OAK,3,16,53,SD,OAK,,,1,N.Kaeding kicks 72 yards from SD 35 to OAK -7. T.Jones Touchback.,16,6,2012 -20120910_SD@OAK,3,16,49,OAK,SD,1,10,80,(1:49) D.McFadden left end to OAK 17 for -3 yards (D.Butler Q.Jammer).,6,16,2012 -20120910_SD@OAK,3,16,12,OAK,SD,2,13,83,(1:12) C.Palmer pass incomplete short middle to D.McFadden.,6,16,2012 -20120910_SD@OAK,3,16,7,OAK,SD,3,13,83,(1:07) (Shotgun) C.Palmer pass incomplete short left to D.McFadden.,6,16,2012 -20120910_SD@OAK,3,16,2,OAK,SD,4,13,83,(1:02) S.Lechler punts 52 yards to SD 31 Center-T.Goethel. E.Royal to SD 45 for 14 yards (P.Adams).,6,16,2012 -20120910_SD@OAK,3,15,50,SD,OAK,1,10,55,(:50) C.Brinkley left tackle to SD 48 for 3 yards (M.Burris).,16,6,2012 -20120910_SD@OAK,3,15,12,SD,OAK,2,7,52,(:12) P.Rivers pass incomplete deep left to A.Gates.,16,6,2012 -20120910_SD@OAK,3,15,5,SD,OAK,3,7,52,(:05) (Shotgun) P.Rivers pass short right to A.Gates to OAK 41 for 11 yards (M.Huff).,16,6,2012 -20120910_SD@OAK,4,15,0,SD,OAK,1,10,41,(15:00) (Shotgun) P.Rivers pass short middle to R.Meachem to OAK 38 for 3 yards (S.Spencer).,16,6,2012 -20120910_SD@OAK,4,14,19,SD,OAK,2,7,38,(14:19) P.Rivers pass short middle to M.Floyd to OAK 26 for 12 yards (P.Lee).,16,6,2012 -20120910_SD@OAK,4,13,37,SD,OAK,1,10,26,(13:37) P.Rivers pass short right to L.McClain to OAK 23 for 3 yards (M.Burris; P.Lee).,16,6,2012 -20120910_SD@OAK,4,13,5,SD,OAK,2,7,23,(13:05) P.Rivers pass incomplete short left to A.Gates (P.Wheeler).,16,6,2012 -20120910_SD@OAK,4,12,58,SD,OAK,3,7,23,(12:58) (Shotgun) P.Rivers pass incomplete short right to A.Gates [M.Giordano].,16,6,2012 -20120910_SD@OAK,4,12,53,SD,OAK,4,7,23,(12:53) N.Kaeding 41 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,16,6,2012 -20120910_SD@OAK,4,12,53,SD,OAK,,,23,N.Kaeding kicks 65 yards from SD 35 to end zone Touchback.,19,6,2012 -20120910_SD@OAK,4,12,48,OAK,SD,1,10,80,(12:48) C.Palmer pass incomplete deep left to R.Streater [C.Liuget].,6,19,2012 -20120910_SD@OAK,4,12,40,OAK,SD,2,10,80,(12:40) (Shotgun) C.Palmer pass deep left to D.Heyward-Bey to OAK 41 for 21 yards (A.Cason).,6,19,2012 -20120910_SD@OAK,4,12,2,OAK,SD,1,10,59,(12:02) (Shotgun) C.Palmer sacked at OAK 34 for -7 yards (D.Butler).,6,19,2012 -20120910_SD@OAK,4,11,34,OAK,SD,2,17,66,(11:34) (Shotgun) C.Palmer pass short middle to B.Myers to SD 40 for 26 yards (E.Weddle).,6,19,2012 -20120910_SD@OAK,4,10,52,OAK,SD,1,10,40,(10:52) C.Palmer pass incomplete deep middle to D.Heyward-Bey (Q.Jammer).,6,19,2012 -20120910_SD@OAK,4,10,47,OAK,SD,2,10,40,(10:47) (Shotgun) D.McFadden left end to OAK 49 for -11 yards (M.Gilchrist).,6,19,2012 -20120910_SD@OAK,4,10,4,OAK,SD,3,21,51,(10:04) (Shotgun) C.Palmer pass incomplete deep right to R.Streater.,6,19,2012 -20120910_SD@OAK,4,9,58,OAK,SD,4,21,58,(9:58) S.Lechler Aborted. T.Goethel FUMBLES at OAK 37 touched at OAK 37 recovered by OAK-D.Ausberry at OAK 42. D.Ausberry to OAK 42 for no gain (J.Battle).,6,19,2012 -20120910_SD@OAK,4,9,52,SD,OAK,1,10,42,(9:52) C.Brinkley left tackle to OAK 42 for no gain (M.Shaughnessy).,19,6,2012 -20120910_SD@OAK,4,9,13,SD,OAK,2,10,42,(9:13) E.Royal left end to OAK 41 for 1 yard (M.Shaughnessy).,19,6,2012 -20120910_SD@OAK,4,8,36,SD,OAK,3,9,41,(8:36) (Shotgun) P.Rivers pass deep left to M.Floyd to OAK 16 for 25 yards (T.Branch).,19,6,2012 -20120910_SD@OAK,4,7,47,SD,OAK,1,10,16,(7:47) C.Brinkley left end to OAK 21 for -5 yards (D.Tollefson R.Seymour).,19,6,2012 -20120910_SD@OAK,4,7,2,SD,OAK,2,15,21,(7:02) P.Rivers pass short left to L.McClain to OAK 19 for 2 yards (P.Wheeler). PENALTY on SD-N.Hardwick Illegal Block Above the Waist 10 yards enforced at OAK 19.,19,6,2012 -20120910_SD@OAK,4,6,36,SD,OAK,2,23,29,(6:36) (Shotgun) R.Brown up the middle to OAK 25 for 4 yards (M.Burris).,19,6,2012 -20120910_SD@OAK,4,5,53,SD,OAK,3,19,25,(5:53) R.Brown left tackle to OAK 27 for -2 yards (T.Kelly D.Tollefson).,19,6,2012 -20120910_SD@OAK,4,5,12,SD,OAK,4,21,27,(5:12) N.Kaeding 45 yard field goal is GOOD Center-M.Windt Holder-M.Scifres.,19,6,2012 -20120910_SD@OAK,4,5,12,SD,OAK,,,27,N.Kaeding kicks 70 yards from SD 35 to OAK -5. T.Jones Touchback.,22,6,2012 -20120910_SD@OAK,4,5,6,OAK,SD,1,10,80,(5:06) (Shotgun) C.Palmer sacked at OAK 11 for -9 yards (S.Phillips).,6,22,2012 -20120910_SD@OAK,4,4,40,OAK,SD,2,19,89,(4:40) (Shotgun) C.Palmer pass short right to M.Reece to OAK 16 for 5 yards (D.Butler).,6,22,2012 -20120910_SD@OAK,4,4,13,OAK,SD,3,10,80,(4:13) (Shotgun) C.Palmer pass short middle to B.Myers to OAK 36 for 16 yards (J.Johnson).,6,22,2012 -20120910_SD@OAK,4,3,48,OAK,SD,1,10,64,(3:48) (No Huddle Shotgun) C.Palmer pass incomplete short left to R.Streater.,6,22,2012 -20120910_SD@OAK,4,3,43,OAK,SD,2,10,64,(3:43) (Shotgun) C.Palmer pass short right to D.McFadden to OAK 37 for 1 yard (D.Williams).,6,22,2012 -20120910_SD@OAK,4,3,19,OAK,SD,3,9,63,(3:19) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to OAK 42 for 5 yards (D.Williams).,6,22,2012 -20120910_SD@OAK,4,2,51,OAK,SD,4,4,58,(2:51) C.Palmer pass incomplete short middle to D.Heyward-Bey. PENALTY on SD-A.Cason Defensive Pass Interference 8 yards enforced at OAK 42 - No Play.,6,22,2012 -20120910_SD@OAK,4,2,47,OAK,SD,1,10,50,(2:47) (Shotgun) C.Palmer pass deep right to D.Hagan to SD 33 for 17 yards (M.Gilchrist).,6,22,2012 -20120910_SD@OAK,4,2,18,OAK,SD,1,10,33,(2:18) (No Huddle Shotgun) C.Palmer sacked at SD 38 for -5 yards (S.Phillips).,6,22,2012 -20120910_SD@OAK,4,2,0,OAK,SD,2,15,38,(2:00) (Shotgun) C.Palmer pass short middle to B.Myers to SD 30 for 8 yards (E.Weddle).,6,22,2012 -20120910_SD@OAK,4,1,33,OAK,SD,3,7,30,(1:33) (No Huddle Shotgun) C.Palmer pass short middle to D.McFadden to SD 26 for 4 yards (E.Weddle) [K.Reyes].,6,22,2012 -20120910_SD@OAK,4,1,24,OAK,SD,4,3,26,(1:24) (Shotgun) C.Palmer pass incomplete deep left to D.Hagan [M.Ingram]. PENALTY on SD-M.Ingram Roughing the Passer 13 yards enforced at SD 26 - No Play.,6,22,2012 -20120910_SD@OAK,4,1,20,OAK,SD,1,10,13,(1:20) C.Palmer pass short middle to B.Myers to SD 2 for 11 yards (A.Bigby).,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,1,2,2,(:57) (No Huddle) C.Palmer pass short right to R.Streater for 2 yards TOUCHDOWN.,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,,,2,TWO-POINT CONVERSION ATTEMPT. C.Palmer pass to R.Streater is complete. ATTEMPT SUCCEEDS.,6,22,2012 -20120910_SD@OAK,4,0,57,OAK,SD,,,2,S.Janikowski kicks onside 23 yards from OAK 35 to SD 42. M.Ingram (didn't try to advance) to SD 42 for no gain.,14,22,2012 -20120910_SD@OAK,4,0,54,SD,OAK,1,10,58,(:54) L.McClain up the middle to SD 46 for 4 yards (M.Burris).,22,14,2012 -20120910_SD@OAK,4,0,50,SD,OAK,2,6,54,(:50) L.McClain up the middle to SD 47 for 1 yard (Team).,22,14,2012 -20120910_SD@OAK,4,0,46,SD,OAK,3,5,53,(:46) P.Rivers kneels to SD 45 for -2 yards.,22,14,2012 -20120910_SD@OAK,4,0,40,SD,OAK,4,7,55,(:40) (Run formation) PENALTY on SD-P.Rivers Delay of Game 5 yards enforced at SD 45 - No Play.,22,14,2012 -20120910_SD@OAK,4,0,3,SD,OAK,4,12,60,(:03) M.Scifres punts 55 yards to OAK 5 Center-M.Windt downed by SD.,22,14,2012 -20120910_SD@OAK,4,0,3,SD,OAK,,,60,                      ,22,14,2012 -20120913_CHI@GB,1,0,0,CHI,GB,,,60,R.Gould kicks 69 yards from CHI 35 to GB -4. R.Cobb to GB 17 for 21 yards (S.McManis).,0,0,2012 -20120913_CHI@GB,1,59,56,GB,CHI,1,10,83,(14:56) C.Benson right end to GB 19 for 2 yards (S.Paea).,0,0,2012 -20120913_CHI@GB,1,59,27,GB,CHI,2,8,81,(14:27) (No Huddle Shotgun) C.Benson left guard to GB 26 for 7 yards (B.Urlacher N.Roach).,0,0,2012 -20120913_CHI@GB,1,58,49,GB,CHI,3,1,74,(13:49) (No Huddle Shotgun) A.Rodgers pass incomplete short middle to J.Nelson (T.Jennings).,0,0,2012 -20120913_CHI@GB,1,58,45,GB,CHI,4,1,74,(13:45) T.Masthay punts 56 yards to CHI 18 Center-B.Goode fair catch by D.Hester.,0,0,2012 -20120913_CHI@GB,1,58,37,CHI,GB,1,10,82,(13:37) J.Cutler sacked at CHI 5 for -13 yards (D.Smith).,0,0,2012 -20120913_CHI@GB,1,58,0,CHI,GB,2,23,95,(13:00) M.Forte right tackle to CHI 9 for 4 yards (J.Worthy).,0,0,2012 -20120913_CHI@GB,1,57,18,CHI,GB,3,19,91,(12:18) (Shotgun) M.Forte up the middle to CHI 17 for 8 yards (C.Matthews; D.Smith).,0,0,2012 -20120913_CHI@GB,1,56,35,CHI,GB,4,11,83,(11:35) A.Podlesh punts 41 yards to GB 42 Center-P.Mannelly. S.Shields MUFFS catch and recovers at GB 29. S.Shields to GB 29 for no gain (E.Weems; S.McManis).,0,0,2012 -20120913_CHI@GB,1,56,26,GB,CHI,1,10,71,(11:26) A.Rodgers pass short right to J.Finley to GB 45 for 16 yards (B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,56,1,GB,CHI,1,10,55,(11:01) (No Huddle) C.Benson right end to GB 46 for 1 yard (H.Melton; I.Idonije).,0,0,2012 -20120913_CHI@GB,1,55,27,GB,CHI,2,9,54,(10:27) (No Huddle Shotgun) A.Rodgers pass deep middle to J.Nelson to CHI 33 for 21 yards (C.Tillman).,0,0,2012 -20120913_CHI@GB,1,54,46,GB,CHI,1,10,33,(9:46) (No Huddle Shotgun) R.Cobb left end to CHI 26 for 7 yards (M.Wright J.Peppers). PENALTY on GB-T.Lang Offensive Holding 10 yards enforced at CHI 33 - No Play.,0,0,2012 -20120913_CHI@GB,1,54,17,GB,CHI,1,20,43,(9:17) C.Benson right guard to CHI 39 for 4 yards (H.Melton B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,53,45,GB,CHI,2,16,39,(8:45) (No Huddle Shotgun) A.Rodgers sacked at CHI 49 for -10 yards (sack split by C.Wootton and S.McClellin).,0,0,2012 -20120913_CHI@GB,1,53,9,GB,CHI,3,26,49,(8:09) (No Huddle Shotgun) A.Rodgers pass incomplete short right.,0,0,2012 -20120913_CHI@GB,1,53,4,GB,CHI,4,26,49,(8:04) T.Masthay punts 32 yards to CHI 17 Center-B.Goode out of bounds.,0,0,2012 -20120913_CHI@GB,1,52,57,CHI,GB,1,10,83,(7:57) J.Cutler pass incomplete short left to K.Davis (C.Matthews).,0,0,2012 -20120913_CHI@GB,1,52,53,CHI,GB,2,10,83,(7:53) M.Forte right end to CHI 23 for 6 yards (B.Raji; C.Matthews).,0,0,2012 -20120913_CHI@GB,1,52,6,CHI,GB,3,4,77,(7:06) (Shotgun) PENALTY on CHI-J.Cutler Delay of Game 5 yards enforced at CHI 23 - No Play.,0,0,2012 -20120913_CHI@GB,1,51,43,CHI,GB,3,9,82,(6:43) (Shotgun) J.Cutler pass incomplete short middle to M.Forte.,0,0,2012 -20120913_CHI@GB,1,51,39,CHI,GB,4,9,82,(6:39) A.Podlesh punts 48 yards to GB 34 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 -20120913_CHI@GB,1,51,31,GB,CHI,1,10,66,(6:31) C.Benson left tackle to GB 41 for 7 yards (A.Okoye N.Roach).,0,0,2012 -20120913_CHI@GB,1,50,59,GB,CHI,2,3,59,(5:59) (No Huddle) C.Benson left end to GB 47 for 6 yards (A.Okoye).,0,0,2012 -20120913_CHI@GB,1,50,25,GB,CHI,1,10,53,(5:25) (No Huddle) A.Rodgers pass incomplete short right.,0,0,2012 -20120913_CHI@GB,1,50,19,GB,CHI,2,10,53,(5:19) (No Huddle) A.Rodgers pass incomplete deep right to J.Nelson.,0,0,2012 -20120913_CHI@GB,1,50,13,GB,CHI,3,10,53,(5:13) (No Huddle Shotgun) A.Rodgers sacked at GB 43 for -4 yards (J.Peppers).,0,0,2012 -20120913_CHI@GB,1,49,47,GB,CHI,4,14,57,(4:47) T.Masthay punts 57 yards to end zone Center-B.Goode Touchback.,0,0,2012 -20120913_CHI@GB,1,49,37,CHI,GB,1,10,80,(4:37) (Shotgun) J.Cutler pass incomplete deep right to K.Davis (D.Smith). PENALTY on GB-D.Smith Defensive Pass Interference 24 yards enforced at CHI 20 - No Play.,0,0,2012 -20120913_CHI@GB,1,49,32,CHI,GB,1,10,56,(4:32) (Shotgun) J.Cutler sacked at CHI 34 for -10 yards (sack split by C.Matthews and E.Walden).,0,0,2012 -20120913_CHI@GB,1,48,54,CHI,GB,2,20,66,(3:54) (Shotgun) J.Cutler pass short left to M.Forte to CHI 32 for -2 yards (A.Hawk).,0,0,2012 -20120913_CHI@GB,1,48,14,CHI,GB,3,22,68,(3:14) (Shotgun) M.Forte left tackle to CHI 39 for 7 yards (M.Burnett).,0,0,2012 -20120913_CHI@GB,1,47,42,CHI,GB,4,15,61,(2:42) A.Podlesh punts 40 yards to GB 21 Center-P.Mannelly fair catch by R.Cobb.,0,0,2012 -20120913_CHI@GB,1,47,35,GB,CHI,1,10,79,(2:35) C.Benson up the middle to GB 21 for no gain (M.Wright; L.Briggs).,0,0,2012 -20120913_CHI@GB,1,47,3,GB,CHI,2,10,79,(2:03) A.Rodgers pass short middle to C.Benson to GB 38 for 17 yards (L.Briggs).,0,0,2012 -20120913_CHI@GB,1,46,29,GB,CHI,1,10,62,(1:29) (No Huddle) A.Rodgers pass short middle to C.Benson to GB 46 for 8 yards (L.Briggs).,0,0,2012 -20120913_CHI@GB,1,45,56,GB,CHI,2,2,54,(:56) (No Huddle Shotgun) C.Benson up the middle to CHI 49 for 5 yards (N.Roach; B.Urlacher).,0,0,2012 -20120913_CHI@GB,1,45,21,GB,CHI,1,10,49,(:21) (No Huddle) C.Benson left tackle to CHI 42 for 7 yards (N.Roach).,0,0,2012 -20120913_CHI@GB,2,45,0,GB,CHI,2,3,42,(15:00) (Shotgun) A.Rodgers pass incomplete deep middle to J.Finley.,0,0,2012 -20120913_CHI@GB,2,44,54,GB,CHI,3,3,42,(14:54) (No Huddle Shotgun) A.Rodgers pass incomplete deep left to Ja.Jones. Green Bay challenged the too many players on field ruling and the play was REVERSED. (No Huddle Shotgun) PENALTY on CHI-N.Roach Defensive 12 On-field 5 yards enforced at CHI 42 - No Play.,0,0,2012 -20120913_CHI@GB,2,44,48,GB,CHI,1,10,37,(14:48) A.Rodgers pass short right to Ja.Jones to CHI 42 for -5 yards (T.Jennings).,0,0,2012 -20120913_CHI@GB,2,44,17,GB,CHI,2,15,42,(14:17) (No Huddle Shotgun) A.Rodgers pass short left to J.Nelson to CHI 34 for 8 yards (C.Tillman).,0,0,2012 -20120913_CHI@GB,2,43,45,GB,CHI,3,7,34,(13:45) (No Huddle Shotgun) A.Rodgers pass short left to J.Kuhn to CHI 29 for 5 yards (L.Briggs; S.McClellin).,0,0,2012 -20120913_CHI@GB,2,43,1,GB,CHI,4,2,29,(13:01) M.Crosby 48 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,0,0,2012 -20120913_CHI@GB,2,43,1,GB,CHI,,,29,M.Crosby kicks 66 yards from GB 35 to CHI -1. D.Hester to CHI 37 for 38 yards (J.Bush).,3,0,2012 -20120913_CHI@GB,2,42,50,CHI,GB,1,10,63,(12:50) M.Bush up the middle to CHI 44 for 7 yards (A.Hawk; D.Smith).,0,3,2012 -20120913_CHI@GB,2,42,15,CHI,GB,2,3,56,(12:15) M.Bush up the middle to CHI 46 for 2 yards (E.Walden).,0,3,2012 -20120913_CHI@GB,2,41,39,CHI,GB,3,1,54,(11:39) M.Bush right tackle to CHI 49 for 3 yards (P.Merling).,0,3,2012 -20120913_CHI@GB,2,41,0,CHI,GB,1,10,51,(11:00) M.Bush up the middle to GB 47 for 4 yards (C.Woodson; M.Burnett).,0,3,2012 -20120913_CHI@GB,2,40,21,CHI,GB,2,6,47,(10:21) (Shotgun) J.Cutler pass short left to E.Bennett to GB 37 for 10 yards (T.Williams) [M.Burnett].,0,3,2012 -20120913_CHI@GB,2,39,42,CHI,GB,1,10,37,(9:42) M.Bush left tackle to GB 38 for -1 yards (J.McMillian; R.Pickett). PENALTY on CHI-G.Carimi Unnecessary Roughness 15 yards enforced at GB 38.,0,3,2012 -20120913_CHI@GB,2,39,12,CHI,GB,2,26,53,(9:12) (Shotgun) J.Cutler sacked at CHI 40 for -7 yards (C.Matthews).,0,3,2012 -20120913_CHI@GB,2,38,35,CHI,GB,3,33,60,(8:35) (Shotgun) J.Cutler pass short left to A.Jeffery to CHI 47 for 7 yards (C.Hayward).,0,3,2012 -20120913_CHI@GB,2,38,4,CHI,GB,4,26,53,(8:04) A.Podlesh punts 53 yards to end zone Center-P.Mannelly Touchback.,0,3,2012 -20120913_CHI@GB,2,37,54,GB,CHI,1,10,80,(7:54) C.Benson right end to GB 21 for 1 yard (I.Idonije).,3,0,2012 -20120913_CHI@GB,2,37,15,GB,CHI,2,9,79,(7:15) A.Rodgers pass short middle to J.Kuhn to GB 23 for 2 yards (I.Idonije).,3,0,2012 -20120913_CHI@GB,2,36,34,GB,CHI,3,7,77,(6:34) (Shotgun) A.Rodgers pass short right to R.Cobb to GB 43 for 20 yards (M.Wright).,3,0,2012 -20120913_CHI@GB,2,35,53,GB,CHI,1,10,57,(5:53) A.Rodgers pass short left to J.Nelson to GB 49 for 6 yards (C.Tillman).,3,0,2012 -20120913_CHI@GB,2,35,13,GB,CHI,2,4,51,(5:13) A.Rodgers pass short right to C.Benson to CHI 46 for 5 yards (L.Briggs).,3,0,2012 -20120913_CHI@GB,2,34,33,GB,CHI,1,10,46,(4:33) A.Green up the middle to CHI 44 for 2 yards (C.Wootton).,3,0,2012 -20120913_CHI@GB,2,33,56,GB,CHI,2,8,44,(3:56) C.Benson right guard to CHI 39 for 5 yards (L.Briggs).,3,0,2012 -20120913_CHI@GB,2,33,17,GB,CHI,3,3,39,(3:17) (Shotgun) R.Cobb right end to CHI 11 for 28 yards (D.Moore).,3,0,2012 -20120913_CHI@GB,2,32,33,GB,CHI,1,10,11,(2:33) (Shotgun) A.Rodgers sacked at CHI 18 for -7 yards (J.Peppers).,3,0,2012 -20120913_CHI@GB,2,32,9,GB,CHI,2,17,18,(2:09) (Shotgun) A.Rodgers sacked at CHI 27 for -9 yards (H.Melton).,3,0,2012 -20120913_CHI@GB,2,32,0,GB,CHI,3,26,27,(2:00) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,4,26,27,(1:56) T.Masthay pass short middle to T.Crabtree for 27 yards TOUCHDOWN. Field goal formation.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,3,0,2012 -20120913_CHI@GB,2,31,56,GB,CHI,,,27,M.Crosby kicks 72 yards from GB 35 to CHI -7. D.Hester Touchback.,10,0,2012 -20120913_CHI@GB,2,31,50,CHI,GB,1,10,80,(1:50) (Shotgun) PENALTY on CHI-J.Webb False Start 5 yards enforced at CHI 20 - No Play.,0,10,2012 -20120913_CHI@GB,2,31,50,CHI,GB,1,15,85,(1:50) (Shotgun) J.Cutler pass incomplete short left to E.Bennett.,0,10,2012 -20120913_CHI@GB,2,31,45,CHI,GB,2,15,85,(1:45) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 37 for 22 yards (M.Burnett C.Hayward).,0,10,2012 -20120913_CHI@GB,2,31,18,CHI,GB,1,10,63,(1:18) (No Huddle Shotgun) J.Cutler pass incomplete deep right to A.Jeffery (M.Burnett).,0,10,2012 -20120913_CHI@GB,2,31,13,CHI,GB,2,10,63,(1:13) (Shotgun) J.Cutler pass short middle intended for E.Bennett INTERCEPTED by T.Williams at CHI 48. T.Williams to CHI 48 for no gain (E.Bennett). The Replay Assistant challenged the incomplete pass ruling and the play was Upheld.,0,10,2012 -20120913_CHI@GB,2,31,7,GB,CHI,1,10,48,(1:07) (Shotgun) A.Rodgers pass short right to J.Nelson to CHI 40 for 8 yards (L.Briggs).,10,0,2012 -20120913_CHI@GB,2,30,58,GB,CHI,2,2,40,(:58) (Shotgun) A.Rodgers pass short right to J.Finley to CHI 39 for 1 yard (T.Jennings).,10,0,2012 -20120913_CHI@GB,2,30,36,GB,CHI,3,1,39,(:36) (No Huddle Shotgun) J.Kuhn up the middle to CHI 38 for 1 yard (B.Urlacher M.Wright). The Replay Assistant challenged the first down ruling and the play was Upheld.,10,0,2012 -20120913_CHI@GB,2,30,31,GB,CHI,1,10,38,(:31) (Shotgun) A.Rodgers pass incomplete short middle to R.Cobb. PENALTY on CHI-M.Wright Illegal Contact 5 yards enforced at CHI 38 - No Play.,10,0,2012 -20120913_CHI@GB,2,30,26,GB,CHI,1,10,33,(:26) (Shotgun) A.Rodgers pass incomplete short middle to Ja.Jones (L.Briggs).,10,0,2012 -20120913_CHI@GB,2,30,21,GB,CHI,2,10,33,(:21) (Shotgun) A.Rodgers pass short middle to J.Kuhn to CHI 17 for 16 yards (D.Moore C.Conte).,10,0,2012 -20120913_CHI@GB,2,30,1,GB,CHI,1,10,17,(:01) M.Crosby 35 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,10,0,2012 -20120913_CHI@GB,3,30,0,GB,CHI,,,17,M.Crosby kicks 65 yards from GB 35 to end zone Touchback.,13,0,2012 -20120913_CHI@GB,3,30,0,CHI,GB,1,10,80,(15:00) M.Forte up the middle to CHI 23 for 3 yards (B.Raji).,0,13,2012 -20120913_CHI@GB,3,29,26,CHI,GB,2,7,77,(14:26) M.Forte right end to CHI 25 for 2 yards (D.Smith; J.McMillian).,0,13,2012 -20120913_CHI@GB,3,28,47,CHI,GB,3,5,75,(13:47) (Shotgun) J.Cutler pass short middle to M.Forte to CHI 40 for 15 yards (D.Smith C.Woodson).,0,13,2012 -20120913_CHI@GB,3,28,7,CHI,GB,1,10,60,(13:07) M.Forte right tackle to CHI 41 for 1 yard (C.Matthews).,0,13,2012 -20120913_CHI@GB,3,27,26,CHI,GB,2,9,59,(12:26) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,0,13,2012 -20120913_CHI@GB,3,27,20,CHI,GB,3,9,59,(12:20) (Shotgun) J.Cutler pass short left to M.Forte to GB 45 for 14 yards (C.Woodson).,0,13,2012 -20120913_CHI@GB,3,26,38,CHI,GB,1,10,45,(11:38) J.Cutler pass incomplete short right to K.Davis [R.Pickett].,0,13,2012 -20120913_CHI@GB,3,26,32,CHI,GB,2,10,45,(11:32) (Shotgun) M.Bush up the middle to GB 37 for 8 yards (M.Burnett; C.Woodson).,0,13,2012 -20120913_CHI@GB,3,25,51,CHI,GB,3,2,37,(10:51) J.Cutler pass short middle to M.Spaeth to GB 33 for 4 yards (R.Pickett).,0,13,2012 -20120913_CHI@GB,3,25,13,CHI,GB,1,10,33,(10:13) M.Bush up the middle to GB 25 for 8 yards (T.Williams A.Hawk).,0,13,2012 -20120913_CHI@GB,3,24,38,CHI,GB,2,2,25,(9:38) M.Bush left tackle to GB 27 for -2 yards (J.Worthy).,0,13,2012 -20120913_CHI@GB,3,23,59,CHI,GB,3,4,27,(8:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,0,13,2012 -20120913_CHI@GB,3,23,53,CHI,GB,4,4,27,(8:53) R.Gould 45 yard field goal is GOOD Center-P.Mannelly Holder-A.Podlesh.,0,13,2012 -20120913_CHI@GB,3,23,53,CHI,GB,,,27,R.Gould kicks 72 yards from CHI 35 to GB -7. R.Cobb Touchback.,3,13,2012 -20120913_CHI@GB,3,23,49,GB,CHI,1,10,80,(8:49) A.Rodgers pass short left to C.Benson pushed ob at GB 25 for 5 yards (M.Wright).,13,3,2012 -20120913_CHI@GB,3,23,23,GB,CHI,2,5,75,(8:23) C.Benson left guard to GB 29 for 4 yards (H.Melton).,13,3,2012 -20120913_CHI@GB,3,22,38,GB,CHI,3,1,71,(7:38) C.Benson right tackle to GB 29 for no gain (B.Urlacher).,13,3,2012 -20120913_CHI@GB,3,22,0,GB,CHI,4,1,71,(7:00) T.Masthay punts 54 yards to CHI 17 Center-B.Goode. D.Hester to CHI 24 for 7 yards (J.Kuhn).,13,3,2012 -20120913_CHI@GB,3,21,49,CHI,GB,1,10,76,(6:49) M.Bush right end to CHI 29 for 5 yards (D.Smith).,3,13,2012 -20120913_CHI@GB,3,21,15,CHI,GB,2,5,71,(6:15) M.Bush up the middle to CHI 33 for 4 yards (M.Burnett).,3,13,2012 -20120913_CHI@GB,3,20,35,CHI,GB,3,1,67,(5:35) M.Bush right guard to CHI 37 for 4 yards (R.Pickett; D.Smith).,3,13,2012 -20120913_CHI@GB,3,20,1,CHI,GB,1,10,63,(5:01) M.Bush right tackle to CHI 44 for 7 yards (A.Hawk).,3,13,2012 -20120913_CHI@GB,3,19,26,CHI,GB,2,3,56,(4:26) A.Allen right guard to CHI 41 for -3 yards (R.Pickett).,3,13,2012 -20120913_CHI@GB,3,18,43,CHI,GB,3,6,59,(3:43) (Shotgun) PENALTY on CHI-K.Davis False Start 5 yards enforced at CHI 41 - No Play.,3,13,2012 -20120913_CHI@GB,3,18,18,CHI,GB,3,11,64,(3:18) (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to CHI 47 for 6 yards (E.Bennett). The Replay Assistant challenged the runner was down by contact ruling and the play was REVERSED. (Shotgun) J.Cutler pass deep middle intended for E.Bennett INTERCEPTED by C.Woodson [E.Walden] at GB 47. C.Woodson to GB 47 for no gain (E.Bennett).,3,13,2012 -20120913_CHI@GB,3,18,11,GB,CHI,1,10,53,(3:11) (Shotgun) A.Rodgers pass short middle to J.Nelson to CHI 38 for 15 yards (C.Conte C.Tillman).,13,3,2012 -20120913_CHI@GB,3,17,29,GB,CHI,1,10,38,(2:29) (Shotgun) C.Benson up the middle to CHI 27 for 11 yards (C.Conte; C.Tillman).,13,3,2012 -20120913_CHI@GB,3,16,51,GB,CHI,1,10,27,(1:51) C.Benson right guard to CHI 23 for 4 yards (L.Briggs; S.McClellin).,13,3,2012 -20120913_CHI@GB,3,16,8,GB,CHI,2,6,23,(1:08) (Shotgun) A.Rodgers pass incomplete deep right to Ja.Jones.,13,3,2012 -20120913_CHI@GB,3,16,2,GB,CHI,3,6,23,(1:02) (Shotgun) A.Rodgers pass short left to J.Finley to CHI 19 for 4 yards (C.Tillman). FUMBLES (C.Tillman) RECOVERED by CHI-C.Tillman at CHI 19. C.Tillman to CHI 20 for 1 yard (J.Finley).,13,3,2012 -20120913_CHI@GB,3,15,53,CHI,GB,1,10,80,(:53) M.Bush up the middle to CHI 23 for 3 yards (M.Burnett A.Hawk).,3,13,2012 -20120913_CHI@GB,3,15,12,CHI,GB,2,7,77,(:12) J.Cutler pass incomplete short middle to M.Spaeth (B.Raji).,3,13,2012 -20120913_CHI@GB,3,15,9,CHI,GB,3,7,77,(:09) (Shotgun) J.Cutler pass incomplete short right to D.Hester.,3,13,2012 -20120913_CHI@GB,3,15,4,CHI,GB,4,7,77,(:04) A.Podlesh punts 50 yards to GB 27 Center-P.Mannelly. R.Cobb pushed ob at GB 43 for 16 yards (P.Mannelly).,3,13,2012 -20120913_CHI@GB,4,15,0,GB,CHI,1,10,57,(15:00) (Shotgun) C.Benson up the middle to GB 49 for 6 yards (S.Paea; H.Melton).,13,3,2012 -20120913_CHI@GB,4,14,24,GB,CHI,2,4,51,(14:24) A.Rodgers pass short right to D.Williams to CHI 45 for 6 yards (B.Urlacher S.Paea).,13,3,2012 -20120913_CHI@GB,4,13,44,GB,CHI,1,10,45,(13:44) A.Rodgers pass short right to J.Finley to CHI 40 for 5 yards (T.Jennings).,13,3,2012 -20120913_CHI@GB,4,13,6,GB,CHI,2,5,40,(13:06) (Shotgun) A.Rodgers pass short right to Ja.Jones to CHI 36 for 4 yards (T.Jennings; M.Wright).,13,3,2012 -20120913_CHI@GB,4,12,28,GB,CHI,3,1,36,(12:28) J.Kuhn up the middle to CHI 36 for no gain (L.Briggs B.Urlacher).,13,3,2012 -20120913_CHI@GB,4,11,43,GB,CHI,4,1,36,(11:43) M.Crosby 54 yard field goal is GOOD Center-B.Goode Holder-T.Masthay.,13,3,2012 -20120913_CHI@GB,4,11,43,GB,CHI,,,36,M.Crosby kicks 58 yards from GB 35 to CHI 7. D.Hester ran ob at CHI 26 for 19 yards (D.Moses).,16,3,2012 -20120913_CHI@GB,4,11,37,CHI,GB,1,10,74,(11:37) J.Cutler pass deep left intended for B.Marshall INTERCEPTED by T.Williams [A.Hawk] at GB 36. T.Williams ran ob at CHI 26 for 38 yards (R.Garza).,3,16,2012 -20120913_CHI@GB,4,11,22,GB,CHI,1,10,26,(11:22) (Shotgun) A.Rodgers pass deep middle to D.Driver for 26 yards TOUCHDOWN.,16,3,2012 -20120913_CHI@GB,4,11,22,GB,CHI,,,26,M.Crosby extra point is GOOD Center-B.Goode Holder-T.Masthay.,16,3,2012 -20120913_CHI@GB,4,11,17,CHI,GB,1,10,65,(11:17) J.Cutler left end to CHI 47 for 12 yards (T.Williams).,3,23,2012 -20120913_CHI@GB,4,10,34,CHI,GB,1,10,53,(10:34) M.Bush left tackle to CHI 49 for 2 yards (E.Walden R.Pickett).,3,23,2012 -20120913_CHI@GB,4,10,0,CHI,GB,2,8,51,(10:00) (Shotgun) J.Cutler pass short left to E.Bennett to GB 40 for 11 yards (T.Williams).,3,23,2012 -20120913_CHI@GB,4,9,20,CHI,GB,1,10,40,(9:20) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 -20120913_CHI@GB,4,9,14,CHI,GB,2,10,40,(9:14) (Shotgun) J.Cutler pass incomplete short middle to K.Davis (D.Smith). PENALTY on CHI-G.Carimi Offensive Holding 10 yards enforced at GB 40 - No Play.,3,23,2012 -20120913_CHI@GB,4,9,7,CHI,GB,2,20,50,(9:07) (Shotgun) J.Cutler sacked at CHI 49 for -1 yards (M.Daniels).,3,23,2012 -20120913_CHI@GB,4,8,28,CHI,GB,3,21,51,(8:28) (Shotgun) J.Cutler pass incomplete deep middle to K.Davis.,3,23,2012 -20120913_CHI@GB,4,8,21,CHI,GB,4,21,51,(8:21) A.Podlesh punts 36 yards to GB 15 Center-P.Mannelly fair catch by R.Cobb. PENALTY on CHI-E.Weems Face Mask (15 Yards) 15 yards enforced at GB 15.,3,23,2012 -20120913_CHI@GB,4,8,14,GB,CHI,1,10,70,(8:14) A.Rodgers pass short right intended for Ja.Jones INTERCEPTED by T.Jennings at GB 44. T.Jennings to GB 24 for 20 yards (C.Benson).,23,3,2012 -20120913_CHI@GB,4,8,4,CHI,GB,1,10,24,(8:04) J.Cutler sacked at GB 31 for -7 yards (C.Matthews).,3,23,2012 -20120913_CHI@GB,4,7,24,CHI,GB,2,17,31,(7:24) (Shotgun) J.Cutler pass short left to B.Marshall ran ob at GB 21 for 10 yards (C.Woodson).,3,23,2012 -20120913_CHI@GB,4,6,59,CHI,GB,3,7,21,(6:59) (Shotgun) J.Cutler pass incomplete deep left to B.Marshall.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,4,7,21,(6:54) (Shotgun) J.Cutler pass deep middle to K.Davis for 21 yards TOUCHDOWN.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould extra point is GOOD Center-P.Mannelly Holder-A.Podlesh.,3,23,2012 -20120913_CHI@GB,4,6,54,CHI,GB,,,21,R.Gould kicks 65 yards from CHI 35 to end zone Touchback.,10,23,2012 -20120913_CHI@GB,4,6,49,GB,CHI,1,10,80,(6:49) C.Benson left end to GB 19 for -1 yards (M.Wright).,23,10,2012 -20120913_CHI@GB,4,6,6,GB,CHI,2,11,81,(6:06) A.Rodgers pass incomplete short right to J.Nelson.,23,10,2012 -20120913_CHI@GB,4,6,2,GB,CHI,3,11,81,(6:02) (Shotgun) A.Rodgers pass short middle to J.Nelson to GB 45 for 26 yards (T.Jennings).,23,10,2012 -20120913_CHI@GB,4,5,19,GB,CHI,1,10,55,(5:19) C.Benson right guard to GB 45 for no gain (C.Tillman).,23,10,2012 -20120913_CHI@GB,4,4,34,GB,CHI,2,10,55,(4:34) A.Green up the middle to GB 45 for no gain (L.Briggs).,23,10,2012 -20120913_CHI@GB,4,4,27,GB,CHI,3,10,55,(4:27) (Shotgun) A.Rodgers sacked at GB 44 for -1 yards (S.McClellin).,23,10,2012 -20120913_CHI@GB,4,4,19,GB,CHI,4,11,56,(4:19) T.Masthay punts 39 yards to CHI 17 Center-B.Goode. D.Hester pushed ob at CHI 18 for 1 yard (R.Francois).,23,10,2012 -20120913_CHI@GB,4,4,9,CHI,GB,1,10,82,(4:09) J.Cutler sacked at CHI 14 for -4 yards (J.Worthy). GB-B.Raji was injured during the play.,10,23,2012 -20120913_CHI@GB,4,3,49,CHI,GB,2,14,86,(3:49) (Shotgun) J.Cutler sacked at CHI 4 for -10 yards (C.Matthews).,10,23,2012 -20120913_CHI@GB,4,3,21,CHI,GB,3,24,96,(3:21) (No Huddle Shotgun) M.Bush up the middle to CHI 15 for 11 yards (D.Smith). PENALTY on GB Defensive 12 On-field 5 yards enforced at CHI 4 - No Play.,10,23,2012 -20120913_CHI@GB,4,3,16,CHI,GB,3,19,91,(3:16) (Shotgun) J.Cutler pass short left to B.Marshall pushed ob at CHI 23 for 14 yards (C.Hayward).,10,23,2012 -20120913_CHI@GB,4,3,7,CHI,GB,4,5,77,(3:07) (Shotgun) J.Cutler pass short left intended for E.Bennett INTERCEPTED by J.McMillian at CHI 30. J.McMillian to CHI 30 for no gain (E.Bennett).,10,23,2012 -20120913_CHI@GB,4,3,0,GB,CHI,1,10,30,(3:00) C.Benson left guard to CHI 24 for 6 yards (C.Wootton).,23,10,2012 -20120913_CHI@GB,4,2,20,GB,CHI,2,4,24,(2:20) C.Benson right end to CHI 18 for 6 yards (C.Conte).,23,10,2012 -20120913_CHI@GB,4,2,0,GB,CHI,1,10,18,(2:00) A.Rodgers kneels to CHI 20 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,1,18,GB,CHI,2,12,20,(1:18) A.Rodgers kneels to CHI 22 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,0,39,GB,CHI,3,14,22,(:39) A.Rodgers kneels to CHI 24 for -2 yards.,23,10,2012 -20120913_CHI@GB,4,0,39,GB,CHI,,,22,                      ,23,10,2012 -20120916_KC@BUF,1,0,0,BUF,KC,,,22,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,0,0,2012 -20120916_KC@BUF,1,60,0,KC,BUF,1,10,80,(15:00) M.Cassel pass short left to P.Hillis to KC 35 for 15 yards (G.Wilson; N.Barnett). Screen pass caught at KC 20.,0,0,2012 -20120916_KC@BUF,1,59,36,KC,BUF,1,10,65,(14:36) M.Cassel pass short right to D.Bowe to KC 39 for 4 yards (A.Williams). Slant pattern caught at KC 39.,0,0,2012 -20120916_KC@BUF,1,58,53,KC,BUF,2,6,61,(13:53) J.Charles right guard to KC 47 for 8 yards (G.Wilson).,0,0,2012 -20120916_KC@BUF,1,58,7,KC,BUF,1,10,53,(13:07) J.Charles left guard to KC 44 for -3 yards (M.Anderson).,0,0,2012 -20120916_KC@BUF,1,57,22,KC,BUF,2,13,56,(12:22) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver in flat at BUF 38.,0,0,2012 -20120916_KC@BUF,1,57,22,KC,BUF,3,13,56,(12:22) (Shotgun) M.Cassel pass short left to J.Charles pushed ob at BUF 46 for 10 yards (S.Gilmore). Flare pass caught at KC 41.,0,0,2012 -20120916_KC@BUF,1,56,49,KC,BUF,4,3,46,(11:49) (Run formation) PENALTY on KC-M.Cassel Delay of Game 5 yards enforced at BUF 46 - No Play.,0,0,2012 -20120916_KC@BUF,1,56,35,KC,BUF,4,8,51,(11:35) D.Colquitt punts 35 yards to BUF 16 Center-T.Gafford fair catch by L.McKelvin.,0,0,2012 -20120916_KC@BUF,1,56,35,BUF,KC,1,10,84,(11:35) C.Spiller left tackle to BUF 17 for 1 yard (G.Dorsey D.Poe).,0,0,2012 -20120916_KC@BUF,1,55,52,BUF,KC,2,9,83,(10:52) C.Spiller up the middle to BUF 25 for 8 yards (D.Johnson; J.Arenas).,0,0,2012 -20120916_KC@BUF,1,55,11,BUF,KC,3,1,75,(10:11) R.Fitzpatrick pass incomplete short right to S.Chandler. Underthrown receiver at BUF 37.,0,0,2012 -20120916_KC@BUF,1,55,6,BUF,KC,4,1,75,(10:06) B.Moorman punts 60 yards to KC 15 Center-G.Sanborn. J.Arenas to KC 30 for 15 yards (C.White).,0,0,2012 -20120916_KC@BUF,1,54,52,KC,BUF,1,10,70,(9:52) P.Hillis up the middle to KC 34 for 4 yards (M.Williams).,0,0,2012 -20120916_KC@BUF,1,54,24,KC,BUF,2,6,66,(9:24) (No Huddle) J.Charles right guard to KC 29 for -5 yards (M.Dareus K.Williams).,0,0,2012 -20120916_KC@BUF,1,53,43,KC,BUF,3,11,71,(8:43) (Shotgun) M.Cassel pass short middle to J.Charles to KC 31 for 2 yards (S.Gilmore). Screen pass caught at KC 23.,0,0,2012 -20120916_KC@BUF,1,53,4,KC,BUF,4,9,69,(8:04) D.Colquitt punts 46 yards to BUF 23 Center-T.Gafford. L.McKelvin to BUF 26 for 3 yards (B.Siler). PENALTY on BUF-D.Searcy Offensive Holding 10 yards enforced at BUF 26.,0,0,2012 -20120916_KC@BUF,1,52,53,BUF,KC,1,10,84,(7:53) C.Spiller up the middle to BUF 21 for 5 yards (D.Johnson Ty.Jackson).,0,0,2012 -20120916_KC@BUF,1,52,16,BUF,KC,2,5,79,(7:16) Wildcat formation direct snap to B.Smith (R.Fitzpatrick at WR). (Shotgun) C.Spiller right end to BUF 28 for 7 yards (J.Arenas).,0,0,2012 -20120916_KC@BUF,1,51,46,BUF,KC,1,10,72,(6:46) C.Spiller right guard to BUF 28 for no gain (J.Houston).,0,0,2012 -20120916_KC@BUF,1,51,6,BUF,KC,2,10,72,(6:06) (Shotgun) R.Fitzpatrick pass short middle to C.Spiller to BUF 47 for 19 yards (A.Elam). Caught at BUF 30 crossing from right.,0,0,2012 -20120916_KC@BUF,1,50,21,BUF,KC,1,10,53,(5:21) T.Choice up the middle to KC 45 for 8 yards (D.Johnson T.Daniels).,0,0,2012 -20120916_KC@BUF,1,49,41,BUF,KC,2,2,45,(4:41) T.Choice right guard to KC 43 for 2 yards (T.Hali; D.Johnson).,0,0,2012 -20120916_KC@BUF,1,49,41,BUF,KC,1,10,43,(4:41) Wildcat formation (R.Fitzpatrick at WR). Direct snap to B.Smith. B.Smith left guard to KC 45 for -2 yards (D.Johnson J.Houston). PENALTY on BUF-A.Levitre Offensive Holding 10 yards enforced at KC 43 - No Play.,0,0,2012 -20120916_KC@BUF,1,48,26,BUF,KC,1,20,53,(3:26) R.Fitzpatrick pass deep right to B.Smith ran ob at KC 37 for 16 yards. Caught along sideline at KC 37.,0,0,2012 -20120916_KC@BUF,1,48,4,BUF,KC,2,4,37,(3:04) (Shotgun) R.Fitzpatrick pass incomplete short right to S.Chandler [J.Houston]. Dropped by receiver at KC 37. Thrown under pressure.,0,0,2012 -20120916_KC@BUF,1,47,58,BUF,KC,3,4,37,(2:58) (Shotgun) R.Fitzpatrick scrambles right tackle to KC 17 for 20 yards (B.Flowers).,0,0,2012 -20120916_KC@BUF,1,47,12,BUF,KC,1,10,17,(2:12) R.Fitzpatrick pass incomplete short right to St.Johnson. Dropped in flat at KC 8.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,2,10,17,(2:07) (Shotgun) C.Spiller left guard for 17 yards TOUCHDOWN.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,,,17,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,0,0,2012 -20120916_KC@BUF,1,47,7,BUF,KC,,,17,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,7,0,2012 -20120916_KC@BUF,1,47,1,KC,BUF,1,10,80,(2:01) P.Hillis up the middle to KC 20 for no gain (K.Sheppard N.Barnett).,0,7,2012 -20120916_KC@BUF,1,46,21,KC,BUF,2,10,80,(1:21) M.Cassel pass short right to D.McCluster to KC 24 for 4 yards (G.Wilson; B.Scott). Dump pass caught at KC 22.,0,7,2012 -20120916_KC@BUF,1,45,41,KC,BUF,3,6,76,(:41) (Shotgun) M.Cassel pass incomplete short middle to J.Charles [M.Anderson]. Overthrown receiver at KC 25.,0,7,2012 -20120916_KC@BUF,1,45,36,KC,BUF,4,6,76,(:36) D.Colquitt punts 50 yards to BUF 26 Center-T.Gafford. L.McKelvin to BUF 33 for 7 yards (E.Jones). Penalty on KC-E.Jones Face Mask (15 Yards) offsetting enforced at BUF 33. Penalty on BUF-C.McIntyre Illegal Block Above the Waist offsetting.,0,7,2012 -20120916_KC@BUF,1,45,24,BUF,KC,1,10,67,(:24) (Shotgun) C.Spiller up the middle to BUF 37 for 4 yards (Ty.Jackson G.Dorsey).,7,0,2012 -20120916_KC@BUF,2,45,0,BUF,KC,2,6,63,(15:00) (Shotgun) R.Fitzpatrick scrambles right end pushed ob at BUF 45 for 8 yards (E.Berry).,7,0,2012 -20120916_KC@BUF,2,44,34,BUF,KC,1,10,55,(14:34) Wildcat formation snap to B.Smith (R.Fitzpatrick at WR). B.Smith right tackle to 50 for 5 yards (J.Houston A.Elam).,7,0,2012 -20120916_KC@BUF,2,43,50,BUF,KC,2,5,50,(13:50) C.Spiller up the middle to KC 12 for 38 yards (A.Elam). Key block: C.Hairston.,7,0,2012 -20120916_KC@BUF,2,43,1,BUF,KC,1,10,12,(13:01) (Shotgun) R.Fitzpatrick right tackle to KC 5 for 7 yards (J.Arenas).,7,0,2012 -20120916_KC@BUF,2,42,38,BUF,KC,2,3,5,(12:38) R.Fitzpatrick pass incomplete short right to St.Johnson (B.Flowers). Receiver and breakup 4 yds. into end zone along sideline.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,3,3,5,(12:34) (Shotgun) C.Spiller left tackle for 5 yards TOUCHDOWN. Key block: C.Glenn.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,,,5,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,7,0,2012 -20120916_KC@BUF,2,42,34,BUF,KC,,,5,J.Potter kicks 72 yards from BUF 35 to KC -7. J.Arenas Touchback.,14,0,2012 -20120916_KC@BUF,2,42,29,KC,BUF,1,10,80,(12:29) P.Hillis right tackle to KC 24 for 4 yards (A.Moats T.McGee).,0,14,2012 -20120916_KC@BUF,2,41,47,KC,BUF,2,6,76,(11:47) M.Cassel pass short middle to D.Bowe to KC 43 for 19 yards (J.Byrd). Caught at KC 37 slanting from right.,0,14,2012 -20120916_KC@BUF,2,41,5,KC,BUF,1,10,57,(11:05) J.Charles left tackle to KC 44 for 1 yard (M.Anderson).,0,14,2012 -20120916_KC@BUF,2,40,21,KC,BUF,2,9,56,(10:21) (Shotgun) M.Cassel pass incomplete short left to D.McCluster. Overthrown receiver along sideline at BUF 47.,0,14,2012 -20120916_KC@BUF,2,40,17,KC,BUF,3,9,56,(10:17) (Shotgun) M.Cassel sacked at KC 36 for -8 yards (M.Dareus).,0,14,2012 -20120916_KC@BUF,2,39,50,KC,BUF,4,17,64,(9:50) D.Colquitt punts 40 yards to BUF 24 Center-T.Gafford out of bounds.,0,14,2012 -20120916_KC@BUF,2,39,42,BUF,KC,1,10,76,(9:42) (Shotgun) R.Fitzpatrick pass short right to C.Spiller to BUF 25 for 1 yard (J.Houston). Screen pass caught at BUF 22.,14,0,2012 -20120916_KC@BUF,2,39,2,BUF,KC,2,9,75,(9:02) (Shotgun) R.Fitzpatrick pass incomplete short left to S.Chandler. Thrown wide of receiver at BUF 36 crossing from middle.,14,0,2012 -20120916_KC@BUF,2,38,57,BUF,KC,3,9,75,(8:57) (Shotgun) R.Fitzpatrick pass short middle to D.Jones to BUF 24 for -1 yards (A.Elam). Screen pass caught at BUF 24.,14,0,2012 -20120916_KC@BUF,2,38,23,BUF,KC,4,10,76,(8:23) B.Moorman punts 51 yards to KC 25 Center-G.Sanborn out of bounds. J.Arenas caught ball out of bounds.,14,0,2012 -20120916_KC@BUF,2,38,16,KC,BUF,1,10,75,(8:16) P.Hillis right guard pushed ob at KC 31 for 6 yards (T.McGee).,0,14,2012 -20120916_KC@BUF,2,37,37,KC,BUF,2,4,69,(7:37) M.Cassel pass incomplete deep middle to T.Moeaki (T.McGee M.Anderson). Underthrown receiver at KC 47.,0,14,2012 -20120916_KC@BUF,2,37,30,KC,BUF,3,4,69,(7:30) (Shotgun) M.Cassel pass short right to D.Bowe pushed ob at KC 41 for 10 yards (T.McGee). Caught along sideline at KC 41.,0,14,2012 -20120916_KC@BUF,2,37,5,KC,BUF,1,10,59,(7:05) M.Cassel sacked at KC 38 for -3 yards (A.Carrington). FUMBLES (A.Carrington) RECOVERED by BUF-M.Williams at KC 43. M.Williams to KC 43 for no gain (E.Winston).,0,14,2012 -20120916_KC@BUF,2,36,58,BUF,KC,1,10,43,(6:58) C.Spiller up the middle to KC 42 for 1 yard (D.Johnson).,14,0,2012 -20120916_KC@BUF,2,36,15,BUF,KC,2,9,42,(6:15) C.Spiller up the middle to KC 36 for 6 yards (E.Berry R.Pitoitua).,14,0,2012 -20120916_KC@BUF,2,35,34,BUF,KC,3,3,36,(5:34) (Shotgun) R.Fitzpatrick pass short left to St.Johnson to KC 29 for 7 yards (S.Routt). Curl pattern caught at KC 30 slanting to middle.,14,0,2012 -20120916_KC@BUF,2,34,49,BUF,KC,1,10,29,(4:49) R.Fitzpatrick pass short left to C.Spiller pushed ob at KC 2 for 27 yards (T.Hali). Screen pass caught at KC 30.,14,0,2012 -20120916_KC@BUF,2,34,21,BUF,KC,1,2,2,(4:21) D.Dickerson left end to KC 10 for -8 yards (A.Elam; E.Berry).,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,2,10,10,(3:33) (Shotgun) R.Fitzpatrick pass short left to S.Chandler for 10 yards TOUCHDOWN. Caught in flat 5 yds. into end zone.,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,,,10,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,14,0,2012 -20120916_KC@BUF,2,33,33,BUF,KC,,,10,J.Potter kicks 60 yards from BUF 35 to KC 5. J.Arenas to KC 22 for 17 yards (R.Martin A.Moats).,21,0,2012 -20120916_KC@BUF,2,33,25,KC,BUF,1,10,78,(3:25) PENALTY on KC-E.Winston False Start 5 yards enforced at KC 22 - No Play.,0,21,2012 -20120916_KC@BUF,2,33,25,KC,BUF,1,15,83,(3:25) P.Hillis up the middle to KC 25 for 8 yards (K.Sheppard N.Barnett).,0,21,2012 -20120916_KC@BUF,2,32,49,KC,BUF,2,7,75,(2:49) M.Cassel pass short right to D.Bowe ran ob at KC 34 for 9 yards. Caught along sideline at KC 34.,0,21,2012 -20120916_KC@BUF,2,32,31,KC,BUF,1,10,66,(2:31) M.Cassel pass deep middle to K.Boss to BUF 46 for 20 yards (G.Wilson). BUF-G.Wilson was injured during the play. His return is Questionable. Caught at 50. PENALTY on KC-P.Hillis Chop Block 15 yards enforced at KC 34 - No Play.,0,21,2012 -20120916_KC@BUF,2,32,10,KC,BUF,1,25,81,(2:10) M.Cassel pass short middle to J.Charles to KC 26 for 7 yards (K.Sheppard). Caught at 22 slanting from left.,0,21,2012 -20120916_KC@BUF,2,32,0,KC,BUF,2,18,74,(2:00) (Shotgun) M.Cassel pass deep middle to K.Boss to BUF 45 for 29 yards (D.Searcy). KC-K.Boss was injured during the play. Caught at 50. PENALTY on BUF-D.Searcy Unnecessary Roughness 15 yards enforced at BUF 45.,0,21,2012 -20120916_KC@BUF,2,31,43,KC,BUF,1,10,25,(1:43) S.Draughn left guard to BUF 22 for 3 yards (N.Barnett).,0,21,2012 -20120916_KC@BUF,2,31,6,KC,BUF,2,7,22,(1:06) (No Huddle Shotgun) M.Cassel pass incomplete deep right to D.Bowe. Overthrown receiver 3 yds. into end zone.,0,21,2012 -20120916_KC@BUF,2,31,1,KC,BUF,3,7,22,(1:01) (Shotgun) M.Cassel scrambles left guard to BUF 1 for 21 yards (J.Rogers; J.Byrd).,0,21,2012 -20120916_KC@BUF,2,30,49,KC,BUF,1,1,1,(:49) M.Cassel pass incomplete short left to D.Bowe (S.Gilmore). Overthrown receiver and coverage in rear corner of end zone.,0,21,2012 -20120916_KC@BUF,2,30,45,KC,BUF,2,1,1,(:45) P.Hillis up the middle to BUF 1 for no gain (N.Barnett). FUMBLES (N.Barnett) RECOVERED by BUF-B.Scott at BUF -1. Touchback. Play Challenged by Replay Assistant and Upheld.,0,21,2012 -20120916_KC@BUF,2,30,38,BUF,KC,1,10,80,(:38) R.Fitzpatrick kneels to BUF 19 for -1 yards.,21,0,2012 -20120916_KC@BUF,3,30,0,KC,BUF,,,80,R.Succop kicks 70 yards from KC 35 to BUF -5. L.McKelvin Touchback.,0,21,2012 -20120916_KC@BUF,3,30,0,BUF,KC,1,10,80,(15:00) (Shotgun) R.Fitzpatrick pass incomplete short left to St.Johnson (S.Routt). Receiver and breakup along sideline at BUF 30.,21,0,2012 -20120916_KC@BUF,3,29,56,BUF,KC,2,10,80,(14:56) (Shotgun) R.Fitzpatrick pass short right to T.Graham to BUF 27 for 7 yards (E.Berry). Screen pass caught at BUF 18.,21,0,2012 -20120916_KC@BUF,3,29,14,BUF,KC,3,3,73,(14:14) (Shotgun) R.Fitzpatrick pass incomplete short left to D.Jones (D.Poe). Underthrown receiver at BUF 39 slanting to middle. Pass tipped at line.,21,0,2012 -20120916_KC@BUF,3,29,9,BUF,KC,4,3,73,(14:09) B.Moorman punts 43 yards to KC 30 Center-G.Sanborn. J.Arenas ran ob at KC 32 for 2 yards.,21,0,2012 -20120916_KC@BUF,3,29,2,KC,BUF,1,10,68,(14:02) J.Charles up the middle to KC 34 for 2 yards (M.Williams).,0,21,2012 -20120916_KC@BUF,3,28,26,KC,BUF,2,8,66,(13:26) M.Cassel pass incomplete short left to D.Bowe (M.Williams S.Gilmore). Underthrown receiver in coverage (S.Gilmore) near sideline at KC 41. Pass tipped at line (M.Williams).,0,21,2012 -20120916_KC@BUF,3,28,20,KC,BUF,3,8,66,(13:20) (Shotgun) M.Cassel pass incomplete short right to T.Moeaki. Thrown wide of receiver in flat at KC 37.,0,21,2012 -20120916_KC@BUF,3,28,13,KC,BUF,4,8,66,(13:13) D.Colquitt punts 66 yards to end zone Center-T.Gafford Touchback. Kick into end zone.,0,21,2012 -20120916_KC@BUF,3,28,6,BUF,KC,1,10,95,(13:06) Wildcat snap to B.Smith (R.Fitzpatrick at WR). B.Smith FUMBLES (Aborted) at BUF 15 and recovers at BUF 5. B.Smith to BUF 5 for no gain (T.Hali).,21,0,2012 -20120916_KC@BUF,3,27,29,BUF,KC,2,25,95,(12:29) C.Spiller right guard to BUF 12 for 7 yards (Ty.Jackson J.Houston).,21,0,2012 -20120916_KC@BUF,3,26,56,BUF,KC,3,18,88,(11:56) C.Spiller up the middle to BUF 18 for 6 yards (D.Johnson).,21,0,2012 -20120916_KC@BUF,3,26,16,BUF,KC,4,12,82,(11:16) B.Moorman punts 43 yards to KC 39 Center-G.Sanborn. J.Arenas to BUF 38 for 23 yards (N.Bradham).,21,0,2012 -20120916_KC@BUF,3,26,5,KC,BUF,1,10,38,(11:05) M.Cassel pass incomplete deep left to J.Baldwin. Overthrown receiver in coverage at BUF 3.,0,21,2012 -20120916_KC@BUF,3,26,2,KC,BUF,2,10,38,(11:02) M.Cassel pass short left to D.McCluster to BUF 28 for 10 yards (S.Gilmore). Penalty on BUF Defensive 12 On-field declined. WR screen caught at BUF 40.,0,21,2012 -20120916_KC@BUF,3,25,18,KC,BUF,1,10,28,(10:18) (Shotgun) M.Cassel pass short left to J.Baldwin to BUF 18 for 10 yards (S.Gilmore). Caught along sideline at BUF 18.,0,21,2012 -20120916_KC@BUF,3,24,37,KC,BUF,1,10,18,(9:37) (Shotgun) M.Cassel pass short middle to D.McCluster to BUF 12 for 6 yards (A.Williams). Caught at BUF 13 crossing from right.,0,21,2012 -20120916_KC@BUF,3,23,53,KC,BUF,2,4,12,(8:53) J.Charles left tackle to BUF 12 for no gain (S.Gilmore).,0,21,2012 -20120916_KC@BUF,3,23,10,KC,BUF,3,4,12,(8:10) M.Cassel sacked at BUF 15 for -3 yards (K.Williams).,0,21,2012 -20120916_KC@BUF,3,22,36,KC,BUF,4,7,15,(7:36) R.Succop 33 yard field goal is GOOD Center-T.Gafford Holder-D.Colquitt.,0,21,2012 -20120916_KC@BUF,3,22,36,KC,BUF,,,15,R.Succop kicks 73 yards from KC 35 to BUF -8. L.McKelvin Touchback.,3,21,2012 -20120916_KC@BUF,3,22,32,BUF,KC,1,10,80,(7:32) C.Spiller right tackle pushed ob at BUF 22 for 2 yards (J.Belcher). PENALTY on BUF-L.Smith Offensive Holding 10 yards enforced at BUF 20 - No Play.,21,3,2012 -20120916_KC@BUF,3,22,4,BUF,KC,1,20,90,(7:04) R.Fitzpatrick pass short right to S.Chandler pushed ob at KC 47 for 43 yards (A.Elam). Flat pass caught at BUF 21.,21,3,2012 -20120916_KC@BUF,3,21,30,BUF,KC,1,10,47,(6:30) C.Spiller right tackle to KC 49 for -2 yards (J.Houston).,21,3,2012 -20120916_KC@BUF,3,20,49,BUF,KC,2,12,49,(5:49) R.Fitzpatrick pass incomplete short left to D.Jones. Thrown wide of receiver along sideline at KC 38.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,3,12,49,(5:45) (Shotgun) R.Fitzpatrick pass short right to St.Johnson for 49 yards TOUCHDOWN. Caught in flat at KC 42 crossing to middle. Cut back from left at KC20 to end zone.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,,,49,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,21,3,2012 -20120916_KC@BUF,3,20,45,BUF,KC,,,49,J.Potter kicks 59 yards from BUF 35 to KC 6. J.Arenas to KC 29 for 23 yards (D.Searcy).,28,3,2012 -20120916_KC@BUF,3,20,29,KC,BUF,1,10,71,(5:29) (Shotgun) M.Cassel pass short middle to D.McCluster to KC 41 for 12 yards (J.Byrd). Caught at KC 39 slanting from left.,3,28,2012 -20120916_KC@BUF,3,19,52,KC,BUF,1,10,59,(4:52) M.Cassel pass incomplete short middle to P.Hillis. Overthrown under pressure PENALTY on KC-M.Cassel Intentional Grounding 8 yards enforced at KC 41.,3,28,2012 -20120916_KC@BUF,3,19,47,KC,BUF,2,18,67,(4:47) (Shotgun) M.Cassel pass incomplete deep right to J.Baldwin. Overthrown receiver along sideline at BUF 37. Penalty on KC-E.Winston Offensive Holding declined.,3,28,2012 -20120916_KC@BUF,3,19,40,KC,BUF,3,18,67,(4:40) (Shotgun) M.Cassel pass short middle to P.Hillis to KC 43 for 10 yards (N.Barnett J.Byrd). Dump pass caught at KC 32.,3,28,2012 -20120916_KC@BUF,3,19,5,KC,BUF,4,8,57,(4:05) D.Colquitt punts 45 yards to BUF 12 Center-T.Gafford. L.McKelvin for 88 yards TOUCHDOWN.,3,28,2012 -20120916_KC@BUF,3,19,5,BUF,KC,,,57,R.Lindell extra point is GOOD Center-G.Sanborn Holder-B.Moorman.,28,3,2012 -20120916_KC@BUF,3,19,5,BUF,KC,,,57,J.Potter kicks 65 yards from BUF 35 to end zone Touchback. Kick through end zone.,35,3,2012 -20120916_KC@BUF,3,18,45,KC,BUF,1,10,80,(3:45) P.Hillis up the middle to KC 23 for 3 yards (M.Anderson).,3,35,2012 -20120916_KC@BUF,3,18,9,KC,BUF,2,7,77,(3:09) M.Cassel sacked at KC 13 for -10 yards (K.Sheppard).,3,35,2012 -20120916_KC@BUF,3,17,32,KC,BUF,3,17,87,(2:32) (Shotgun) P.Hillis right tackle to KC 31 for 18 yards (J.Byrd; T.McGee).,3,35,2012 -20120916_KC@BUF,3,16,46,KC,BUF,1,10,69,(1:46) M.Cassel pass incomplete deep left to J.Baldwin (S.Gilmore). Receiver and coverage along sideline at BUF 35.,3,35,2012 -20120916_KC@BUF,3,16,39,KC,BUF,2,10,69,(1:39) S.Draughn up the middle to BUF 44 for 25 yards (G.Wilson).,3,35,2012 -20120916_KC@BUF,3,15,51,KC,BUF,1,10,44,(:51) M.Cassel pass short middle to D.Bowe to BUF 30 for 14 yards (G.Wilson). Caught at BUF 38 crossing from right.,3,35,2012 -20120916_KC@BUF,3,15,51,KC,BUF,1,10,30,(:51) M.Cassel sacked at BUF 38 for -8 yards (K.Williams).,3,35,2012 -20120916_KC@BUF,4,15,0,KC,BUF,2,18,38,(15:00) M.Cassel scrambles up the middle to BUF 34 for 4 yards (Sp.Johnson).,3,35,2012 -20120916_KC@BUF,4,14,16,KC,BUF,3,14,34,(14:16) (Shotgun) M.Cassel pass incomplete short left to S.Draughn. Thrown away under pressure from C.Kelsay.,3,35,2012 -20120916_KC@BUF,4,14,9,KC,BUF,4,14,34,(14:09) D.Colquitt punts 31 yards to BUF 3 Center-T.Gafford downed by KC-S.Draughn.,3,35,2012 -20120916_KC@BUF,4,14,1,BUF,KC,1,10,97,(14:01) T.Choice left guard to BUF 4 for 1 yard (D.Poe).,35,3,2012 -20120916_KC@BUF,4,13,21,BUF,KC,2,9,96,(13:21) T.Choice right tackle to BUF 10 for 6 yards (T.Hali R.Pitoitua).,35,3,2012 -20120916_KC@BUF,4,12,38,BUF,KC,3,3,90,(12:38) (Shotgun) T.Choice up the middle to BUF 16 for 6 yards (R.Pitoitua A.Elam).,35,3,2012 -20120916_KC@BUF,4,11,55,BUF,KC,1,10,84,(11:55) (Shotgun) T.Choice up the middle to BUF 25 for 9 yards (D.Johnson).,35,3,2012 -20120916_KC@BUF,4,11,11,BUF,KC,2,1,75,(11:11) (Shotgun) C.Spiller up the middle to BUF 45 for 20 yards (A.Elam). C.Spiller bounced off to left soon after crossing line.,35,3,2012 -20120916_KC@BUF,4,10,21,BUF,KC,1,10,55,(10:21) Wildcat formation snap to J.White (R.Fitzpatrick at WR). T.Choice left tackle pushed ob at BUF 47 for 2 yards (S.Routt).,35,3,2012 -20120916_KC@BUF,4,9,37,BUF,KC,2,8,53,(9:37) T.Choice up the middle to 50 for 3 yards (D.Poe J.Belcher).,35,3,2012 -20120916_KC@BUF,4,8,54,BUF,KC,3,5,50,(8:54) (Shotgun) R.Fitzpatrick pass incomplete short left to T.Choice (T.Hartman). Receiver and coverage at KC 47.,35,3,2012 -20120916_KC@BUF,4,8,46,BUF,KC,4,5,50,(8:46) B.Moorman punts 50 yards to end zone Center-G.Sanborn Touchback. Kick through end zone.,35,3,2012 -20120916_KC@BUF,4,8,39,KC,BUF,1,10,80,(8:39) S.Draughn left guard pushed ob at KC 21 for 1 yard (J.Byrd).,3,35,2012 -20120916_KC@BUF,4,8,7,KC,BUF,2,9,79,(8:07) S.Draughn up the middle to KC 30 for 9 yards (A.Moats).,3,35,2012 -20120916_KC@BUF,4,7,37,KC,BUF,1,10,70,(7:37) (No Huddle Shotgun) M.Cassel pass short right to D.Bowe to KC 41 for 11 yards (A.Williams). Caught near sideline at KC 40.,3,35,2012 -20120916_KC@BUF,4,6,57,KC,BUF,1,10,59,(6:57) (Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 33 for 26 yards (S.Gilmore). Caught near sideline at BUF 40.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,1,10,33,(6:32) (No Huddle Shotgun) M.Cassel pass deep right to D.Bowe for 33 yards TOUCHDOWN. Caught along sideline in coverage at BUF 5.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,3,35,2012 -20120916_KC@BUF,4,6,32,KC,BUF,,,33,R.Succop kicks 50 yards from KC 35 to BUF 15. B.Smith pushed ob at BUF 20 for 5 yards (T.Hartman).,10,35,2012 -20120916_KC@BUF,4,6,23,BUF,KC,1,10,80,(6:23) T.Thigpen in at QB. (Shotgun) J.White right guard to BUF 24 for 4 yards (A.Elam G.Dorsey).,35,10,2012 -20120916_KC@BUF,4,5,36,BUF,KC,2,6,76,(5:36) (Shotgun) J.White up the middle to BUF 24 for no gain (D.Johnson).,35,10,2012 -20120916_KC@BUF,4,4,54,BUF,KC,3,6,76,(4:54) (Shotgun) J.White up the middle to BUF 29 for 5 yards (D.Johnson Ty.Jackson).,35,10,2012 -20120916_KC@BUF,4,4,9,BUF,KC,4,1,71,(4:09) B.Moorman punts 54 yards to KC 17 Center-G.Sanborn out of bounds. S.Breaston caught ball out of bounds.,35,10,2012 -20120916_KC@BUF,4,4,1,KC,BUF,1,10,83,(4:01) (Shotgun) P.Hillis right guard to KC 34 for 17 yards (D.Searcy).,10,35,2012 -20120916_KC@BUF,4,3,27,KC,BUF,1,10,66,(3:27) (Shotgun) P.Hillis right guard to KC 38 for 4 yards (D.Searcy; N.Bradham).,10,35,2012 -20120916_KC@BUF,4,2,54,KC,BUF,2,6,62,(2:54) (No Huddle Shotgun) M.Cassel pass incomplete short right to D.Bowe (A.Williams). Receiver and coverage along sideline at BUF 49.,10,35,2012 -20120916_KC@BUF,4,2,49,KC,BUF,3,6,62,(2:49) (Shotgun) M.Cassel pass short right to S.Draughn to BUF 39 for 23 yards (C.White). Screen pass caught at KC 34.,10,35,2012 -20120916_KC@BUF,4,2,15,KC,BUF,1,10,39,(2:15) (No Huddle Shotgun) M.Cassel pass incomplete deep left to D.Bowe. Overthrown receiver along sideline at BUF 13.,10,35,2012 -20120916_KC@BUF,4,2,11,KC,BUF,2,10,39,(2:11) (Shotgun) M.Cassel pass short middle to T.Moeaki to BUF 30 for 9 yards (J.Byrd). Caught at BUF 30.,10,35,2012 -20120916_KC@BUF,4,2,0,KC,BUF,3,1,30,(2:00) P.Hillis left tackle to BUF 28 for 2 yards (C.White).,10,35,2012 -20120916_KC@BUF,4,1,29,KC,BUF,1,10,28,(1:29) (No Huddle Shotgun) M.Cassel pass deep left to J.Baldwin to BUF 2 for 26 yards (S.Gilmore). BUF-S.Gilmore was injured during the play. Caught in coverage at BUF 5. S.Gilmore walks off.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,1,2,2,(1:14) (Shotgun) M.Cassel pass short left to D.Bowe for 2 yards TOUCHDOWN. Caught 5 yds. into end zone along sideline.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop extra point is GOOD Center-T.Gafford Holder-D.Colquitt.,10,35,2012 -20120916_KC@BUF,4,1,14,KC,BUF,,,2,R.Succop kicks 65 yards from KC 35 to end zone Touchback. Kick through end zone.,17,35,2012 -20120916_KC@BUF,4,1,10,BUF,KC,1,10,80,(1:10) T.Thigpen kneels to BUF 19 for -1 yards.,35,17,2012 -20120916_KC@BUF,4,1,7,BUF,KC,2,11,81,(1:07) J.White left guard to BUF 21 for 2 yards (J.Powe).,35,17,2012 -20120916_KC@BUF,4,1,0,BUF,KC,3,9,79,(1:00) J.White up the middle to BUF 21 for no gain (E.Jones).,35,17,2012 -20120916_KC@BUF,4,0,50,BUF,KC,4,9,79,(:50) B.Moorman punts 48 yards to KC 31 Center-G.Sanborn. S.Breaston MUFFS catch and recovers at KC 31. S.Breaston to BUF 48 for 21 yards (N.Bradham).,35,17,2012 -20120916_KC@BUF,4,0,35,KC,BUF,1,10,48,(:35) (Shotgun) M.Cassel pass incomplete deep middle to T.Moeaki. Thrown behind receiver at BUF 30.,17,35,2012 -20120916_KC@BUF,4,0,30,KC,BUF,2,10,48,(:30) (No Huddle Shotgun) S.Draughn right guard to BUF 30 for 18 yards (T.McGee).,17,35,2012 -20120916_KC@BUF,4,0,14,KC,BUF,1,10,30,(:14) (No Huddle) M.Cassel spiked the ball to stop the clock.,17,35,2012 -20120916_KC@BUF,4,0,12,KC,BUF,2,10,30,(:12) (Shotgun) M.Cassel pass incomplete deep right to D.Bowe (G.Wilson). Receiver and coverage along sideline at goal line.,17,35,2012 -20120916_KC@BUF,4,0,5,KC,BUF,3,10,30,(:05) (Shotgun) M.Cassel pass deep middle intended for S.Breaston INTERCEPTED by J.Byrd at BUF -9. Touchback.,17,35,2012 -20120916_KC@BUF,4,0,5,KC,BUF,,,30,                      ,17,35,2012 -20120916_NO@CAR,1,0,0,CAR,NO,,,30,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,0,0,2012 -20120916_NO@CAR,1,60,0,NO,CAR,1,10,80,(15:00) P.Thomas left guard to NO 22 for 2 yards (J.Anderson).,0,0,2012 -20120916_NO@CAR,1,59,34,NO,CAR,2,8,78,(14:34) (Shotgun) D.Brees pass short right to D.Sproles to NO 27 for 5 yards (C.Munnerlyn; J.Beason).,0,0,2012 -20120916_NO@CAR,1,58,56,NO,CAR,3,3,73,(13:56) (Shotgun) D.Brees pass short right to D.Sproles to NO 45 for 18 yards (H.Nakamura).,0,0,2012 -20120916_NO@CAR,1,58,35,NO,CAR,1,10,55,(13:35) M.Ingram right tackle to NO 49 for 4 yards (C.Gamble).,0,0,2012 -20120916_NO@CAR,1,57,58,NO,CAR,2,6,51,(12:58) (Shotgun) D.Brees pass short right to D.Sproles to CAR 48 for 3 yards (T.Davis).,0,0,2012 -20120916_NO@CAR,1,57,18,NO,CAR,3,3,48,(12:18) (Shotgun) D.Brees pass short right to D.Sproles to CAR 23 for 25 yards (H.Nakamura).,0,0,2012 -20120916_NO@CAR,1,56,46,NO,CAR,1,10,23,(11:46) M.Ingram up the middle to CAR 18 for 5 yards (A.Applewhite; L.Kuechly).,0,0,2012 -20120916_NO@CAR,1,56,24,NO,CAR,2,5,18,(11:24) M.Ingram up the middle to CAR 6 for 12 yards (H.Nakamura; C.Gamble).,0,0,2012 -20120916_NO@CAR,1,55,49,NO,CAR,1,6,6,(10:49) (Shotgun) D.Brees pass short left to D.Sproles to CAR 3 for 3 yards (C.Godfrey; J.Norman).,0,0,2012 -20120916_NO@CAR,1,55,16,NO,CAR,2,3,3,(10:16) M.Ingram left tackle to CAR 1 for 2 yards (J.Norman; J.Anderson).,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,3,1,1,(9:43) D.Brees pass short right to J.Graham for 1 yard TOUCHDOWN.,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,,,1,G.Hartley extra point is GOOD Center-J.Drescher Holder-C.Daniel.,0,0,2012 -20120916_NO@CAR,1,54,43,NO,CAR,,,1,T.Morstead kicks 69 yards from NO 35 to CAR -4. J.Adams to CAR 20 for 24 yards (M.Wilson; J.Casillas).,7,0,2012 -20120916_NO@CAR,1,54,35,CAR,NO,1,10,80,(9:35) C.Newton pass deep left to B.LaFell ran ob at CAR 47 for 27 yards.,0,7,2012 -20120916_NO@CAR,1,54,12,CAR,NO,1,10,53,(9:12) (Shotgun) D.Williams up the middle to NO 45 for 8 yards (M.Jenkins).,0,7,2012 -20120916_NO@CAR,1,53,50,CAR,NO,2,2,45,(8:50) D.Williams up the middle to NO 42 for 3 yards (C.Jordan).,0,7,2012 -20120916_NO@CAR,1,53,10,CAR,NO,1,10,42,(8:10) (Shotgun) C.Newton sacked at CAR 49 for -9 yards (C.Jordan).,0,7,2012 -20120916_NO@CAR,1,52,34,CAR,NO,2,19,51,(7:34) (Shotgun) J.Stewart left end to CAR 47 for -2 yards (C.Lofton).,0,7,2012 -20120916_NO@CAR,1,51,55,CAR,NO,3,21,53,(6:55) (Shotgun) C.Newton scrambles left end to NO 44 for 9 yards (J.Casillas).,0,7,2012 -20120916_NO@CAR,1,51,18,CAR,NO,4,12,44,(6:18) B.Nortman punts 37 yards to NO 7 Center-J.Jansen fair catch by D.Sproles.,0,7,2012 -20120916_NO@CAR,1,51,11,NO,CAR,1,10,93,(6:11) P.Thomas up the middle to NO 9 for 2 yards (G.Hardy).,7,0,2012 -20120916_NO@CAR,1,50,41,NO,CAR,2,8,91,(5:41) D.Brees pass short right intended for D.Thomas INTERCEPTED by C.Godfrey at NO 9. C.Godfrey for 9 yards TOUCHDOWN.,7,0,2012 -20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock extra point is GOOD Center-J.Jansen Holder-B.Nortman.,0,7,2012 -20120916_NO@CAR,1,50,41,CAR,NO,,,91,J.Medlock kicks 65 yards from CAR 35 to end zone Touchback.,7,7,2012 diff --git a/examples/nfl_plays.rs b/examples/nfl_plays.rs index fdfef22..a3990f4 100644 --- a/examples/nfl_plays.rs +++ b/examples/nfl_plays.rs @@ -2,7 +2,6 @@ extern crate csv; extern crate serialize; use std::path::Path; -use csv::Decoder; #[allow(dead_code)] #[deriving(Decodable)] @@ -25,8 +24,8 @@ struct Play { fn main() { let fp = &Path::new("./data/2012_nfl_pbp_data.csv"); - let mut dec = Decoder::from_file(fp); - match dec.decode_all::() { + let mut dec = csv::Reader::from_file(fp); + match csv::collect(dec.decode::()) { Err(err) => fail!("{}", err), Ok(plays) => { println!("Found {} plays.", plays.len()); diff --git a/examples/simple.rs b/examples/simple.rs index 7fed7e0..038fcd1 100644 --- a/examples/simple.rs +++ b/examples/simple.rs @@ -4,10 +4,10 @@ use std::path::Path; fn main() { let fp = &Path::new("./data/simple.csv"); - let mut rdr = csv::Decoder::from_file(fp); + let mut rdr = csv::Reader::from_file(fp); - for record in rdr.iter_decode::<(String, String, uint)>() { - let (s1, s2, dist) = record.unwrap(); + for record in rdr.decode() { + let (s1, s2, dist): (String, String, uint) = record.unwrap(); println!("({}, {}): {}", s1, s2, dist); } } diff --git a/examples/simple_missing.rs b/examples/simple_missing.rs index 04ba82e..64e891e 100644 --- a/examples/simple_missing.rs +++ b/examples/simple_missing.rs @@ -12,10 +12,10 @@ struct Record { fn main() { let fp = &Path::new("./data/simple_missing.csv"); - let mut rdr = csv::Decoder::from_file(fp); + let mut rdr = csv::Reader::from_file(fp); - for record in rdr.iter_decode::() { - let record = record.unwrap(); + for record in rdr.decode() { + let record: Record = record.unwrap(); println!("({}, {}): {}", record.s1, record.s2, record.dist); } } diff --git a/examples/simple_struct.rs b/examples/simple_struct.rs index f29bb41..4fc5aef 100644 --- a/examples/simple_struct.rs +++ b/examples/simple_struct.rs @@ -12,10 +12,10 @@ struct Record { fn main() { let fp = &Path::new("./data/simple.csv"); - let mut rdr = csv::Decoder::from_file(fp); + let mut rdr = csv::Reader::from_file(fp); - for record in rdr.iter_decode::() { - let record = record.unwrap(); + for record in rdr.decode() { + let record: Record = record.unwrap(); println!("({}, {}): {}", record.s1, record.s2, record.dist); } } diff --git a/examples/stream.rs b/examples/stream.rs index 4fd9ebd..f635e89 100644 --- a/examples/stream.rs +++ b/examples/stream.rs @@ -1,32 +1,30 @@ extern crate csv; use std::comm::channel; -use std::io::{ChanReader, ChanWriter, Reader, Writer}; -use std::io::timer::sleep; +use std::io; use std::task::spawn; use std::time::Duration; -use csv::{Decoder, Encoder}; - fn main() { let (send, recv) = channel(); spawn(proc() { - let mut w = ChanWriter::new(send); - let mut enc = Encoder::to_writer(&mut w as &mut Writer); + let w = io::ChanWriter::new(send); + let mut enc = csv::Writer::from_writer(w); for x in range(1u, 6) { match enc.encode((x, x * x)) { Ok(_) => {}, Err(err) => fail!("Failed encoding: {}", err), } - sleep(Duration::milliseconds(500)); + io::timer::sleep(Duration::milliseconds(500)); } }); - let mut r = ChanReader::new(recv); + let r = io::ChanReader::new(recv); // We create a CSV reader with a small buffer so that we can see streaming // in action on small inputs. - let mut dec = Decoder::from_reader_capacity(&mut r as &mut Reader, 1); - for r in dec.iter() { + let buf = io::BufferedReader::with_capacity(1, r); + let mut dec = csv::Reader::from_buffer(buf); + for r in dec.records() { println!("Record: {}", r); } } diff --git a/src/bench.rs b/src/bench.rs index 9957f00..ff0f716 100644 --- a/src/bench.rs +++ b/src/bench.rs @@ -1,11 +1,12 @@ use std::fmt::Show; use std::io; +use std::io::Reader as IoReader; +use std::io::Writer as IoWriter; use stdtest::Bencher; -use super::Decoder; -static CSV_SHORT: &'static str = "./examples/data/short.csv"; -static CSV_MEDIUM: &'static str = "./examples/data/medium.csv"; -static CSV_LARGE: &'static str = "./examples/data/large.csv"; +use Reader; + +static CSV_DATA: &'static str = "./examples/data/bench.csv"; fn ordie(r: Result) -> T { r.or_else(|e: E| -> Result fail!(e.to_string())).unwrap() @@ -19,33 +20,38 @@ fn file_to_mem(fp: &str) -> io::MemReader { io::MemReader::new(bs) } +fn reader<'a>(rdr: &'a mut io::MemReader) + -> Reader> { + let _ = ordie(rdr.seek(0, io::SeekSet)); + Reader::from_reader(rdr.by_ref()) +} + #[bench] -fn short_raw_records(b: &mut Bencher) { - let mut data = file_to_mem(CSV_SHORT); +fn raw_records(b: &mut Bencher) { + let mut data = file_to_mem(CSV_DATA); b.iter(|| { - let _ = ordie(data.seek(0, io::SeekSet)); - let mut dec = Decoder::from_reader(&mut data as &mut io::Reader); - for _ in dec.iter() {} + let mut dec = reader(&mut data); + while !dec.done() { + for r in dec { let _ = r.unwrap(); } + } }) } #[bench] -fn medium_raw_records(b: &mut Bencher) { - let mut data = file_to_mem(CSV_MEDIUM); +fn byte_records(b: &mut Bencher) { + let mut data = file_to_mem(CSV_DATA); b.iter(|| { - let _ = ordie(data.seek(0, io::SeekSet)); - let mut dec = Decoder::from_reader(&mut data as &mut io::Reader); - for _ in dec.iter() {} + let mut dec = reader(&mut data); + for r in dec.byte_records() { let _ = r.unwrap(); } }) } #[bench] -fn large_raw_records(b: &mut Bencher) { - let mut data = file_to_mem(CSV_LARGE); +fn string_records(b: &mut Bencher) { + let mut data = file_to_mem(CSV_DATA); b.iter(|| { - let _ = ordie(data.seek(0, io::SeekSet)); - let mut dec = Decoder::from_reader(&mut data as &mut io::Reader); - for _ in dec.iter() {} + let mut dec = reader(&mut data); + for r in dec.records() { let _ = r.unwrap(); } }) } @@ -68,14 +74,10 @@ struct Play { } #[bench] -fn short_decoded_records(b: &mut Bencher) { - let mut data = file_to_mem(CSV_SHORT); +fn decoded_records(b: &mut Bencher) { + let mut data = file_to_mem(CSV_DATA); b.iter(|| { - let _ = ordie(data.seek(0, io::SeekSet)); - let mut dec = Decoder::from_reader(&mut data as &mut io::Reader); - match dec.decode_all::() { - Ok(_) => {} - Err(err) => fail!("{}", err), - } + let mut dec = reader(&mut data); + for r in dec.decode::() { let _ = r.unwrap(); } }) } diff --git a/src/bytestr.rs b/src/bytestr.rs new file mode 100644 index 0000000..0b4dbc0 --- /dev/null +++ b/src/bytestr.rs @@ -0,0 +1,90 @@ +use std::fmt; +use std::hash; + +/// A type that represents unadulterated byte strings. +/// +/// Byte strings represent *any* 8 bit character encoding. There are no +/// restrictions placed on the type of encoding used. (This means that there +/// may be *multiple* encodings in any particular byte string!) +/// +/// Many CSV files in the wild aren't just malformed with respect to RFC 4180, +/// but they are commonly *not* UTF-8 encoded. Even worse, some of them are +/// encoded improperly. Therefore, any useful CSV parser must be flexible with +/// respect to encodings. +/// +/// Thus, this CSV parser uses byte strings internally. This means that +/// quotes and field and record separators *must* be ASCII. Otherwise, +/// the parser places no other restrictions on the content of data in each +/// cell. +/// +/// Note that most of the methods in the encoder/decoder will assume UTF-8 +/// encoding, but they also expose some lower level methods that use byte +/// strings when absolutely necessary. This type is exposed in case you need +/// to deal with the raw bytes directly. +#[deriving(Clone, PartialEq, Eq, PartialOrd, Ord)] +pub struct ByteString(Vec); + +impl ByteString { + /// Create a new byte string from a vector or slice of bytes. + pub fn from_bytes>(bs: S) -> ByteString { + ByteString(bs.into_vec()) + } + + /// Consumes this byte string into a vector of bytes. + pub fn into_bytes(self) -> Vec { + let ByteString(chars) = self; + chars + } + + /// Returns this byte string as a slice of bytes. + pub fn as_bytes<'a>(&'a self) -> &'a [u8] { + let &ByteString(ref chars) = self; + chars.as_slice() + } + + /// Consumes the byte string and decodes it into a Unicode string. If the + /// decoding fails, then the original ByteString is returned. + pub fn as_utf8_string(self) -> Result { + String::from_utf8(self.into_bytes()).map_err(ByteString) + } +} + +impl fmt::Show for ByteString { + /// Writes the underlying bytes as a `&[u8]`. + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + let ByteString(ref chars) = *self; + // XXX: Ideally, we could just do this: + // + // f.write(chars.as_slice()) + // + // and let the output device figure out how to render it. But it seems + // the formatting infrastructure assumes that the data is UTF-8 + // encodable, which obviously doesn't work with raw byte strings. + // + // For now, we just show the bytes, e.g., `[255, 50, 48, 49, ...]`. + write!(f, "{}", chars.as_slice()) + } +} + +impl Slice for ByteString { + fn as_slice<'a>(&'a self) -> &'a [u8] { + let ByteString(ref chars) = *self; + chars.as_slice() + } +} + +impl hash::Hash for ByteString { + fn hash(&self, hasher: &mut H) { + self.as_slice().hash(hasher); + } +} + +impl Equiv for ByteString { + fn equiv(&self, other: &S) -> bool { + self.as_bytes() == other.as_slice().as_bytes() + } +} + +impl Collection for ByteString { + fn len(&self) -> uint { self.as_bytes().len() } +} diff --git a/src/decoder.rs b/src/decoder.rs index 8d67b96..24bfbdb 100644 --- a/src/decoder.rs +++ b/src/decoder.rs @@ -1,358 +1,93 @@ use std::default::Default; use std::from_str::FromStr; -use std::io::{MemReader, BufferedReader, File, IoResult}; use serialize; -use serialize::Decodable; -use {ByteString, Parser}; -use {Error, ErrEOF}; +use {ByteString, CsvResult, Error, ErrDecode}; -/// A decoder can decode CSV values (or entire documents) into values with -/// Rust types automatically. +/// A record to be decoded. /// -/// Raw records (as strings) can also be accessed with any of the `record` -/// or `iter` methods. -pub struct Decoder { - stack: Vec, - p: Parser, -} - -/// A representation of a value found in a CSV document. -/// A CSV document's structure is simple (non-recursive). -enum Value { - Record(Vec), - Field(String), -} - -impl Value { - fn is_record(&self) -> bool { - match *self { - Record(_) => true, - Field(_) => false, - } - } - - fn is_string(&self) -> bool { - !self.is_record() - } -} - -impl Decoder> { - /// Creates a new CSV decoder from a file using the file path given. - pub fn from_file(path: &Path) -> Decoder> { - Decoder::from_reader(File::open(path)) - } -} - -impl Decoder { - /// Creates a new CSV decoder that reads CSV data from the string given. - pub fn from_str(s: &str) -> Decoder { - Decoder::from_bytes(s.as_bytes()) - } - - /// Creates a new CSV decoder that reads CSV data from the bytes given. - pub fn from_bytes(bytes: &[u8]) -> Decoder { - let r = MemReader::new(bytes.to_vec()); - Decoder::from_reader(r) - } -} - -impl Decoder { - /// Creates a new CSV decoder that reads CSV data from the `Reader` given. - /// Note that the `Reader` given may be a stream. Data is only read as it - /// is decoded. - /// - /// The reader given is wrapped in a `BufferedReader` for you. - pub fn from_reader(r: R) -> Decoder { - Decoder::from_buffer(BufferedReader::new(r)) - } - - /// This is just like `from_reader`, except it allows you to specify - /// the capacity used in the underlying buffer. - pub fn from_reader_capacity(r: R, cap: uint) -> Decoder { - Decoder::from_buffer(BufferedReader::with_capacity(cap, r)) - } - - fn from_buffer(buf: BufferedReader) -> Decoder { - Decoder { - stack: vec!(), - p: Parser { - buf: buf, - sep: b',', - same_len: true, - first_len: 0, - no_headers: false, - first_record: None, - cur: Some(0), - look: None, - line: 0, - col: 0, - byte: 0, - byte_record_start: 0, - returned_non_header: false, - }, - } - } - - /// Sets the separator character that delimits values in a record. - /// - /// This may be changed at any time. - pub fn separator(mut self, c: u8) -> Decoder { - self.p.sep = c; - self - } - - /// When `yes` is `true`, all records decoded must have the same length. - /// If a record is decoded that has a different length than other records - /// already decoded, the decoding will fail. - /// - /// This may be toggled at any time. - pub fn enforce_same_length(mut self, yes: bool) -> Decoder { - self.p.same_len = yes; - self - } - - /// When called, the first record is not interpreted as a header - /// row. Otherwise, the first record is always saved as headers and not - /// returned by the normal record iterators. (The header row can be - /// retrieved with the `headers` method.) - /// - /// Calling this method after the first row has been decoded will result - /// in a task failure. - pub fn no_headers(mut self) -> Decoder { - assert!(self.p.first_len == 0); - self.p.no_headers = true; - self - } -} - -/// The following methods provide type-aware decoding of CSV records. -impl Decoder { - /// Decodes the next record for some type. Note that since this decodes - /// records, only types corresponding to a record (like structs, tuples or - /// vectors) can be used. - pub fn decode, Error>> - (&mut self) -> Result { - Decodable::decode(self) - } - - /// Provides an iterator to decode one record at a time. Note that this - /// usually needs to have its type parameter `D` instantiated explicitly. - /// For example: - /// - /// ```no_run - /// let mut dec = csv::Decoder::from_str("abc,1"); - /// let mut iter = dec.iter_decode::<(String, uint)>(); - /// ``` - pub fn iter_decode<'a, D: Decodable, Error>> - (&'a mut self) -> Records<'a, R, D> { - Records { - decoder: self, - decode: |d| d.decode(), - errored: false, - } - } - - /// Calls `decode` on every record in the CSV data until EOF and returns - /// them as a vector. If there was an error decoding a vector, parsing is - /// stopped and the error is returned. - pub fn decode_all, Error>> - (&mut self) -> Result, Error> { - let mut records: Vec = vec!(); - loop { - match self.decode() { - Ok(r) => records.push(r), - Err(ErrEOF) => break, - Err(err) => return Err(err), - } - } - Ok(records) - } -} - -/// The following methods provide direct access to CSV records as Unicode -/// strings or as byte strings. -impl Decoder { - /// Circumvents the decoding interface and forces the parsing of the next - /// record and returns it. A record returned by this method will never be - /// decoded. - pub fn record(&mut self) -> Result, Error> { - to_utf8_record(try!(self.record_bytes())).or_else(|m| self.err(m)) - } - - /// Returns the next record as a vector of raw byte strings. - pub fn record_bytes(&mut self) -> Result, Error> { - self.p.parse_record(false) - } - - /// Circumvents the decoding interface and iterates over the records as - /// vectors of strings. A record returned by this method will never be - /// decoded. - pub fn iter<'a>(&'a mut self) -> Records<'a, R, Vec> { - Records { - decoder: self, - decode: |d| d.record(), - errored: false, - } - } - - /// Circumvents the decoding interface and iterates over the records as - /// vectors of byte strings. A record returned by this method will never be - /// decoded. - pub fn iter_bytes<'a>(&'a mut self) -> Records<'a, R, Vec> { - Records { - decoder: self, - decode: |d| d.record_bytes(), - errored: false, - } - } - - /// Returns the header record for the underlying CSV data. This method may - /// be called repeatedly and at any time. - pub fn headers(&mut self) -> Result, Error> { - to_utf8_record(try!(self.headers_bytes())).or_else(|m| self.err(m)) - } - - /// Returns the headers as raw byte strings. - pub fn headers_bytes(&mut self) -> Result, Error> { - if self.p.first_record.is_none() { - let _ = try!(self.p.parse_record(true)); - assert!(self.p.first_record.is_some()); - } - Ok(self.p.first_record.clone().unwrap()) - } - - /// Returns the byte offset in the data stream that corresponds to the - /// start of the previously read record. The "start" of the record - /// corresponds to a position at which this decoder would return that - /// record if it started reading at that offset. - pub fn byte_offset(&self) -> u64 { - self.p.byte_record_start - } -} - -/// An iterator that yields records of various types. All yielded records are -/// wrapped in a `Result`. -/// -/// `'a` corresponds to the lifetime of the decoder. -/// -/// `R` corresponds to the underlying reader of the decoder. This must satisfy -/// the `Reader` constraint. +/// This is a "wrapper" type that allows the `Decoder` machinery from the +/// `serialize` crate to decode a *single* CSV record into your custom types. /// -/// `T` corresponds to the type of the value yielded. When using the `iter` -/// or `iter_bytes` methods, this type corresponds to `Vec` and -/// `Vec`, respectively. When using `iter_decode`, the type varies -/// depending on what the record is being decoded into. -pub struct Records<'a, R: 'a, T> { - decoder: &'a mut Decoder, - decode: |&mut Decoder|:'a -> Result, - errored: bool, +/// Generally, you should not need to use this type directly. Instead, you +/// should prefer the `decode` or `decode_all` methods defined on `CsvReader`. +pub struct Decoded { + stack: Vec, + popped: uint, } -impl<'a, R: Reader, T> Iterator> for Records<'a, R, T> { - fn next(&mut self) -> Option> { - if self.errored { - return None; - } - let ref mut d = self.decoder; - match (self.decode)(*d) { - Ok(r) => Some(Ok(r)), - Err(ErrEOF) => None, - Err(err) => { self.errored = true; Some(Err(err)) } - } +impl Decoded { + /// Creates a new decodable record from a record of byte strings. + pub fn new(mut bytes: Vec) -> Decoded { + bytes.reverse(); + Decoded { stack: bytes, popped: 0 } } } -impl Decoder { - fn pop(&mut self) -> Result { - if self.stack.len() == 0 { - try!(self.read_to_stack()) - } - // On successful return, read_to_stack guarantees a non-empty stack. - assert!(self.stack.len() > 0); - Ok(self.stack.pop().unwrap()) - } - - fn read_to_stack(&mut self) -> Result<(), Error> { - let r = try!(self.record()); - self.push_record(r); - Ok(()) - } +impl Collection for Decoded { + fn len(&self) -> uint { self.stack.len() } +} - fn pop_record(&mut self) -> Result, Error> { - match try!(self.pop()) { - Record(r) => Ok(r), - Field(s) => { - self.err(format!("Expected record but got value '{}'.", s)) - } +impl Decoded { + fn pop(&mut self) -> CsvResult { + self.popped += 1; + match self.stack.pop() { + None => self.err(format!( + "Expected a record with length at least {}, \ + but got a record with length {}.", + self.popped, self.popped - 1)), + Some(bytes) => Ok(bytes), } } - fn pop_string(&mut self) -> Result { - match try!(self.pop()) { - Record(_) => { - self.err(format!("Expected value but got record.")) - } - Field(s) => Ok(s), - } + fn pop_string(&mut self) -> CsvResult { + {try!(self.pop())}.as_utf8_string().map_err(|bytes| { + ErrDecode(format!("Could not convert bytes '{}' to UTF-8.", bytes)) + }) } - fn pop_from_str(&mut self) -> Result { + fn pop_from_str(&mut self) -> CsvResult { let s = try!(self.pop_string()); let s = s.as_slice().trim(); match FromStr::from_str(s) { Some(t) => Ok(t), - None => { - self.err(format!("Failed converting '{}' from str.", s)) - } + None => self.err(format!("Failed converting '{}' from str.", s)), } } - fn push_record(&mut self, r: Vec) { - self.stack.push(Record(r)) + fn push(&mut self, s: ByteString) { + self.stack.push(s); } fn push_string(&mut self, s: String) { - self.stack.push(Field(s)) - } - - fn num_strings_on_top(&self) -> uint { - let mut count = 0; - for v in self.stack.iter().rev() { - if v.is_string() { - count += 1; - } else { - break - } - } - count + self.push(ByteString::from_bytes(s.into_bytes())); } - fn err(&self, msg: S) -> Result { - Err(self.p.err(msg)) + fn err(&self, msg: S) -> CsvResult { + Err(ErrDecode(msg.into_string())) } } -impl serialize::Decoder for Decoder { +impl serialize::Decoder for Decoded { fn error(&mut self, err: &str) -> Error { - self.p.err(err) - } - fn read_nil(&mut self) -> Result<(), Error> { unimplemented!() } - fn read_uint(&mut self) -> Result { self.pop_from_str() } - fn read_u64(&mut self) -> Result { self.pop_from_str() } - fn read_u32(&mut self) -> Result { self.pop_from_str() } - fn read_u16(&mut self) -> Result { self.pop_from_str() } - fn read_u8(&mut self) -> Result { self.pop_from_str() } - fn read_int(&mut self) -> Result { self.pop_from_str() } - fn read_i64(&mut self) -> Result { self.pop_from_str() } - fn read_i32(&mut self) -> Result { self.pop_from_str() } - fn read_i16(&mut self) -> Result { self.pop_from_str() } - fn read_i8(&mut self) -> Result { self.pop_from_str() } - fn read_bool(&mut self) -> Result { self.pop_from_str() } - fn read_f64(&mut self) -> Result { self.pop_from_str() } - fn read_f32(&mut self) -> Result { self.pop_from_str() } - fn read_char(&mut self) -> Result { + ErrDecode(err.into_string()) + } + fn read_nil(&mut self) -> CsvResult<()> { unimplemented!() } + fn read_uint(&mut self) -> CsvResult { self.pop_from_str() } + fn read_u64(&mut self) -> CsvResult { self.pop_from_str() } + fn read_u32(&mut self) -> CsvResult { self.pop_from_str() } + fn read_u16(&mut self) -> CsvResult { self.pop_from_str() } + fn read_u8(&mut self) -> CsvResult { self.pop_from_str() } + fn read_int(&mut self) -> CsvResult { self.pop_from_str() } + fn read_i64(&mut self) -> CsvResult { self.pop_from_str() } + fn read_i32(&mut self) -> CsvResult { self.pop_from_str() } + fn read_i16(&mut self) -> CsvResult { self.pop_from_str() } + fn read_i8(&mut self) -> CsvResult { self.pop_from_str() } + fn read_bool(&mut self) -> CsvResult { self.pop_from_str() } + fn read_f64(&mut self) -> CsvResult { self.pop_from_str() } + fn read_f32(&mut self) -> CsvResult { self.pop_from_str() } + fn read_char(&mut self) -> CsvResult { let s = try!(self.pop_string()); let chars: Vec = s.as_slice().chars().collect(); if chars.len() != 1 { @@ -361,17 +96,17 @@ impl serialize::Decoder for Decoder { } Ok(chars[0]) } - fn read_str(&mut self) -> Result { + fn read_str(&mut self) -> CsvResult { self.pop_string() } fn read_enum(&mut self, _: &str, - f: |&mut Decoder| -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { f(self) } fn read_enum_variant(&mut self, names: &[&str], - f: |&mut Decoder, uint| -> Result) - -> Result { + f: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { let variant = to_lower(try!(self.pop_string()).as_slice()); match names.iter().position(|&name| to_lower(name) == variant) { Some(idx) => return f(self, idx), @@ -405,75 +140,57 @@ impl serialize::Decoder for Decoder { "Could not load value into any variant in {}", names)) } fn read_enum_variant_arg(&mut self, _: uint, - f: |&mut Decoder| -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { f(self) } fn read_enum_struct_variant(&mut self, names: &[&str], - f: |&mut Decoder, uint| - -> Result) - -> Result { + f: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { self.read_enum_variant(names, f) } fn read_enum_struct_variant_field(&mut self, _: &str, f_idx: uint, - f: |&mut Decoder| - -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { self.read_enum_variant_arg(f_idx, f) } fn read_struct(&mut self, s_name: &str, len: uint, - f: |&mut Decoder| -> Result) - -> Result { - let r = try!(self.pop_record()); - if r.len() < len { + f: |&mut Decoded| -> CsvResult) -> CsvResult { + if self.len() < len { return self.err( format!("Struct '{}' has {} fields but current record \ - has {} fields.", s_name, len, r.len())); - } - for v in r.into_iter().rev() { - self.push_string(v) - } - let result = f(self); - match result { - err @ Err(_) => err, - ok @ Ok(_) => { - assert!(self.num_strings_on_top() == 0); - ok - } + has {} fields.", s_name, len, self.len())); } + f(self) } fn read_struct_field(&mut self, _: &str, _: uint, - f: |&mut Decoder| -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { f(self) } - fn read_tuple(&mut self, f: |&mut Decoder, uint| -> Result) - -> Result { - let r = try!(self.pop_record()); - let len = r.len(); - for v in r.into_iter().rev() { - self.push_string(v) - } + fn read_tuple(&mut self, f: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { + let len = self.len(); f(self, len) } fn read_tuple_arg(&mut self, _: uint, - f: |&mut Decoder| -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { f(self) } fn read_tuple_struct(&mut self, _: &str, - _: |&mut Decoder, uint| -> Result) - -> Result { + _: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { unimplemented!() } fn read_tuple_struct_arg(&mut self, _: uint, - _: |&mut Decoder| -> Result) - -> Result { + _: |&mut Decoded| -> CsvResult) + -> CsvResult { unimplemented!() } fn read_option(&mut self, - f: |&mut Decoder, bool| -> Result) - -> Result { + f: |&mut Decoded, bool| -> CsvResult) + -> CsvResult { let s = try!(self.pop_string()); if s.is_empty() { f(self, false) @@ -485,39 +202,28 @@ impl serialize::Decoder for Decoder { } } } - fn read_seq(&mut self, f: |&mut Decoder, uint| -> Result) - -> Result { - match self.num_strings_on_top() { - 0 => { - let r = try!(self.pop_record()); - let len = r.len(); - for v in r.into_iter().rev() { - self.push_string(v) - } - f(self, len) - } - n => { - f(self, n) - } - } + fn read_seq(&mut self, f: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { + let len = self.len(); + f(self, len) } fn read_seq_elt(&mut self, _: uint, - f: |&mut Decoder| -> Result) - -> Result { + f: |&mut Decoded| -> CsvResult) + -> CsvResult { f(self) } - fn read_map(&mut self, _: |&mut Decoder, uint| -> Result) - -> Result { + fn read_map(&mut self, _: |&mut Decoded, uint| -> CsvResult) + -> CsvResult { unimplemented!() } fn read_map_elt_key(&mut self, _: uint, - _: |&mut Decoder| -> Result) - -> Result { + _: |&mut Decoded| -> CsvResult) + -> CsvResult { unimplemented!() } fn read_map_elt_val(&mut self, _: uint, - _: |&mut Decoder| -> Result) - -> Result { + _: |&mut Decoded| -> CsvResult) + -> CsvResult { unimplemented!() } } @@ -525,17 +231,3 @@ impl serialize::Decoder for Decoder { fn to_lower(s: &str) -> String { s.chars().map(|c| c.to_lowercase()).collect() } - -fn to_utf8_record(raw: Vec) -> Result, String> { - let mut strs = Vec::with_capacity(raw.len()); - for bytes in raw.into_iter() { - match bytes.to_utf8_string() { - Err(bytes) => { - return Err(format!( - "Could not decode bytes as UTF-8: {}", bytes)); - } - Ok(s) => strs.push(s), - } - } - Ok(strs) -} diff --git a/src/encoder.rs b/src/encoder.rs index 7b329fb..e1f4b76 100644 --- a/src/encoder.rs +++ b/src/encoder.rs @@ -1,354 +1,161 @@ use std::fmt; -use std::io::{MemWriter, BufferedWriter, File, IoResult}; -use std::str; use serialize; -use serialize::Encodable; -use ByteString; -use {Error, ErrEncode}; - -/// An encoder can encode Rust values into CSV records or documents. -pub struct Encoder { - buf: BufferedWriter, - sep: u8, - same_len: bool, - first_len: uint, - use_crlf: bool, -} - -impl Encoder { - /// Creates a new CSV in memory encoder. At any time, `to_string` or - /// `to_bytes` can be called to retrieve the cumulative CSV data. - pub fn mem_encoder() -> Encoder { - Encoder::to_writer(MemWriter::new()) - } - - /// Returns the encoded CSV data as a string. - pub fn to_string<'r>(&'r mut self) -> &'r str { - match self.buf.flush() { - // shouldn't fail with MemWriter - Err(err) => fail!("Error flushing to MemWriter: {}", err), - Ok(()) => str::from_utf8(self.buf.get_ref().get_ref()).unwrap(), - } - } - - /// Returns the encoded CSV data as raw bytes. - pub fn to_bytes<'r>(&'r mut self) -> &'r [u8] { - match self.buf.flush() { - // shouldn't fail with MemWriter - Err(err) => fail!("Error flushing to MemWriter: {}", err), - Ok(()) => self.buf.get_ref().get_ref(), - } - } -} - -impl Encoder> { - /// Creates an encoder that writes the file given. If the file doesn't - /// exist, then it is created. If it already exists, then it is truncated - /// before writing. - pub fn to_file(path: &Path) -> Encoder> { - Encoder::to_writer(File::create(path)) - } +use {ByteString, CsvResult, Error, ErrEncode}; + +/// A record to be encoded. +/// +/// This is a "wrapper" type that allows the `Encoder` machinery from the +/// `serialize` crate to encode a *single* CSV record from your custom types. +/// +/// Generally, you should not need to use this type directly. Instead, you +/// should prefer the `encode` or `encode_all` methods defined on `CsvWriter`. +pub struct Encoded { + record: Vec, } -impl Encoder { - /// Creates an encoder that encodes CSV data with the `Writer` given. - /// - /// The writer given in wrapped in a `BufferedWriter` for you. - pub fn to_writer(w: W) -> Encoder { - Encoder::from_buffer(BufferedWriter::new(w)) - } - - /// This is just like `to_writer`, except you can specify the capacity - /// used in the underlying buffer. - pub fn to_writer_capacity(w: W, cap: uint) -> Encoder { - Encoder::from_buffer(BufferedWriter::with_capacity(cap, w)) - } - - fn from_buffer(buf: BufferedWriter) -> Encoder { - Encoder { - buf: buf, - sep: b',', - same_len: true, - first_len: 0, - use_crlf: false, - } - } - - /// Sets the separator character that delimits values in a record. - /// - /// This may be changed at any time. - pub fn separator(mut self, c: u8) -> Encoder { - self.sep = c; - self - } - - /// When `yes` is `true`, all records written must have the same length. - /// If a record is written that has a different length than other records - /// already written, the encoding will fail. - /// - /// This may be changed at any time. - pub fn enforce_same_length(mut self, yes: bool) -> Encoder { - self.same_len = yes; - self - } - - /// When `yes` is `true`, CRLF (`\r\n`) line endings will be used. - /// - /// This may be changed at any time. - pub fn crlf(mut self, yes: bool) -> Encoder { - self.use_crlf = yes; - self - } - - fn err(&self, msg: S) -> Result<(), Error> { - Err(ErrEncode(msg.into_string())) - } - - fn write_bytes(&mut self, s: &[u8]) -> Result<(), Error> { - self.buf.write(s).map_err(Error::io) - } - - fn write_string(&mut self, s: S) -> Result<(), Error> { - self.write_bytes(s.into_string().into_bytes().as_slice()) - } - - fn write_to_string(&mut self, t: T) -> Result<(), Error> { - self.write_string(t.to_string()) - } - - fn write_user_string(&mut self, s: &[u8]) -> Result<(), Error> { - let sep = self.sep; - let quotable = |&c: &u8| c == sep || c == b'\n' || c == b'"'; - if s.len() == 0 || s.iter().any(quotable) { - self.write_bytes(quote(s).as_slice()) - } else { - self.write_bytes(s) - } - } +impl Encoded { + /// Creates a new encodable record. The value returned can be passed to + /// `Encodable::encode`. + pub fn new() -> Encoded { Encoded { record: vec![] } } - fn write_lineterm(&mut self) -> Result<(), Error> { - if self.use_crlf { - self.write_bytes(b"\r\n") - } else { - self.write_bytes(b"\n") - } - } + /// Once a record has been encoded into this value, `unwrap` can be used + /// to access the raw CSV record. + pub fn unwrap(self) -> Vec { self.record } - fn set_first_len(&mut self, cur_len: uint) -> Result<(), Error> { - if cur_len == 0 { - return self.err("Records must have length bigger than 0.") - } - if self.same_len { - if self.first_len == 0 { - self.first_len = cur_len - } else if self.first_len != cur_len { - return self.err(format!( - "Record has length {} but other records have length {}", - cur_len, self.first_len)) - } - } + fn push_bytes>(&mut self, s: S) -> CsvResult<()> { + self.record.push(ByteString::from_bytes(s)); Ok(()) } -} -/// The following methods provide type-aware encoding of CSV records. -impl Encoder { - /// Encodes a record as CSV data. Only values with types that correspond - /// to records can be given here (i.e., structs, tuples or vectors). - pub fn encode, Error>> - (&mut self, e: E) -> Result<(), Error> { - e.encode(self) + fn push_string(&mut self, s: S) -> CsvResult<()> { + self.push_bytes(s.into_string().into_bytes()) } - /// Calls `encode` on each element in the iterator given. - pub fn encode_all, Error>, I: Iterator> - (&mut self, mut es: I) -> Result<(), Error> { - for e in es { - try!(self.encode(e)) - } - Ok(()) + fn push_to_string(&mut self, t: T) -> CsvResult<()> { + self.push_string(t.to_string()) } } -/// The following methods provide direct access to writing CSV records as -/// UTF-8 encoding strings or as raw byte strings. -impl Encoder { - pub fn record<'a, S: StrSlice<'a>, I: Iterator> - (&mut self, r: I) -> Result<(), Error> { - self.record_bytes(r.map(|r| r.as_bytes())) - } - - pub fn record_bytes, I: Iterator> - (&mut self, r: I) -> Result<(), Error> { - let mut count = 0; - let sep = self.sep; - for (i, field) in r.enumerate() { - count += 1; - if i > 0 { - try!(self.write_bytes([sep])); - } - try!(self.write_bytes(field.as_slice())); - } - try!(self.write_lineterm()); - self.set_first_len(count) - } - - /// Flushes the underlying buffer. - pub fn flush(&mut self) -> Result<(), Error> { - self.buf.flush().map_err(Error::io) - } -} - -impl serialize::Encoder for Encoder { - fn emit_nil(&mut self) -> Result<(), Error> { unimplemented!() } - fn emit_uint(&mut self, v: uint) -> Result<(), Error> { - self.write_to_string(v) - } - fn emit_u64(&mut self, v: u64) -> Result<(), Error> { self.write_to_string(v) } - fn emit_u32(&mut self, v: u32) -> Result<(), Error> { self.write_to_string(v) } - fn emit_u16(&mut self, v: u16) -> Result<(), Error> { self.write_to_string(v) } - fn emit_u8(&mut self, v: u8) -> Result<(), Error> { self.write_to_string(v) } - fn emit_int(&mut self, v: int) -> Result<(), Error> { self.write_to_string(v) } - fn emit_i64(&mut self, v: i64) -> Result<(), Error> { self.write_to_string(v) } - fn emit_i32(&mut self, v: i32) -> Result<(), Error> { self.write_to_string(v) } - fn emit_i16(&mut self, v: i16) -> Result<(), Error> { self.write_to_string(v) } - fn emit_i8(&mut self, v: i8) -> Result<(), Error> { self.write_to_string(v) } - fn emit_bool(&mut self, v: bool) -> Result<(), Error> { self.write_to_string(v) } - fn emit_f64(&mut self, v: f64) -> Result<(), Error> { - self.write_string(::std::f64::to_str_digits(v, 10)) - } - fn emit_f32(&mut self, v: f32) -> Result<(), Error> { - self.write_string(::std::f32::to_str_digits(v, 10)) - } - fn emit_char(&mut self, v: char) -> Result<(), Error> { +impl serialize::Encoder for Encoded { + fn emit_nil(&mut self) -> CsvResult<()> { unimplemented!() } + fn emit_uint(&mut self, v: uint) -> CsvResult<()> { self.push_to_string(v) } + fn emit_u64(&mut self, v: u64) -> CsvResult<()> { self.push_to_string(v) } + fn emit_u32(&mut self, v: u32) -> CsvResult<()> { self.push_to_string(v) } + fn emit_u16(&mut self, v: u16) -> CsvResult<()> { self.push_to_string(v) } + fn emit_u8(&mut self, v: u8) -> CsvResult<()> { self.push_to_string(v) } + fn emit_int(&mut self, v: int) -> CsvResult<()> { self.push_to_string(v) } + fn emit_i64(&mut self, v: i64) -> CsvResult<()> { self.push_to_string(v) } + fn emit_i32(&mut self, v: i32) -> CsvResult<()> { self.push_to_string(v) } + fn emit_i16(&mut self, v: i16) -> CsvResult<()> { self.push_to_string(v) } + fn emit_i8(&mut self, v: i8) -> CsvResult<()> { self.push_to_string(v) } + fn emit_bool(&mut self, v: bool) -> CsvResult<()> { self.push_to_string(v) } + fn emit_f64(&mut self, v: f64) -> CsvResult<()> { + self.push_string(::std::f64::to_str_digits(v, 10)) + } + fn emit_f32(&mut self, v: f32) -> CsvResult<()> { + self.push_string(::std::f32::to_str_digits(v, 10)) + } + fn emit_char(&mut self, v: char) -> CsvResult<()> { let mut bytes = [0u8, ..4]; let n = v.encode_utf8(bytes.as_mut_slice()).unwrap_or(0); - self.write_user_string(bytes.slice_to(n)) + self.push_bytes(bytes.slice_to(n)) } - fn emit_str(&mut self, v: &str) -> Result<(), Error> { - self.write_user_string(v.as_bytes()) + fn emit_str(&mut self, v: &str) -> CsvResult<()> { + self.push_string(v) } - fn emit_enum(&mut self, _: &str, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + fn emit_enum(&mut self, _: &str, f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { f(self) } fn emit_enum_variant(&mut self, v_name: &str, _: uint, len: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { match len { - 0 => self.write_bytes(v_name.as_bytes()), + 0 => self.push_string(v_name), 1 => f(self), - _ => self.err("Cannot encode enum variants \ - with more than one argument."), + _ => Err(ErrEncode("Cannot encode enum variants \ + with more than one argument.".to_string())), } } fn emit_enum_variant_arg(&mut self, _: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { f(self) } fn emit_enum_struct_variant(&mut self, v_name: &str, v_id: uint, len: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { self.emit_enum_variant(v_name, v_id, len, f) } fn emit_enum_struct_variant_field(&mut self, _: &str, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { - self.err("Cannot encode enum variants with arguments.") + _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { + Err(ErrEncode("Cannot encode enum \ + variants with arguments.".to_string())) } fn emit_struct(&mut self, _: &str, len: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) -> CsvResult<()> { self.emit_seq(len, f) } fn emit_struct_field(&mut self, _: &str, f_idx: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { self.emit_seq_elt(f_idx, f) } fn emit_tuple(&mut self, len: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) -> CsvResult<()> { self.emit_seq(len, f) } fn emit_tuple_arg(&mut self, idx: uint, - f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { self.emit_seq_elt(idx, f) } fn emit_tuple_struct(&mut self, _: &str, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { unimplemented!() } fn emit_tuple_struct_arg(&mut self, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { unimplemented!() } - fn emit_option(&mut self, f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + fn emit_option(&mut self, f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { f(self) } - fn emit_option_none(&mut self) -> Result<(), Error> { Ok(()) } - fn emit_option_some(&mut self, f: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + fn emit_option_none(&mut self) -> CsvResult<()> { + self.push_bytes::<&[u8]>([]) + } + fn emit_option_some(&mut self, f: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { f(self) } - fn emit_seq(&mut self, len: uint, - f: |this: &mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { - try!(self.set_first_len(len)); - try!(f(self)); - self.write_lineterm() + fn emit_seq(&mut self, _: uint, + f: |this: &mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { + f(self) } - fn emit_seq_elt(&mut self, idx: uint, - f: |this: &mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { - if idx > 0 { - let sep = self.sep; - try!(self.write_bytes([sep])); - } + fn emit_seq_elt(&mut self, _: uint, + f: |this: &mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { f(self) } - fn emit_map(&mut self, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + fn emit_map(&mut self, _: uint, _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { unimplemented!() } fn emit_map_elt_key(&mut self, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { unimplemented!() } fn emit_map_elt_val(&mut self, _: uint, - _: |&mut Encoder| -> Result<(), Error>) - -> Result<(), Error> { + _: |&mut Encoded| -> CsvResult<()>) + -> CsvResult<()> { unimplemented!() } } - -fn quote(mut s: &[u8]) -> ByteString { - let mut buf = Vec::with_capacity(s.len() + 2); - - buf.push(b'"'); - loop { - match s.position_elem(&b'"') { - None => { - buf.push_all(s); - break - } - Some(next_quote) => { - buf.push_all(s.slice_to(next_quote + 1)); - buf.push(b'"'); - s = s.slice_from(next_quote + 1); - } - } - } - buf.push(b'"'); - ByteString(buf) -} diff --git a/src/lib.rs b/src/lib.rs index d65a10e..9a9dbe3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,696 +4,320 @@ #![license = "UNLICENSE"] #![doc(html_root_url = "http://burntsushi.net/rustdoc/csv")] -//! This crate provides a streaming CSV (comma separated values) encoder and -//! decoder that works with the `Encoder` and `Decoder` traits in Rust's -//! `serialize` crate. -//! -//! A CSV file is composed of a list of records where each record starts on -//! a new line. A record is composed of 1 or more values delimited by a comma -//! or some other character. The first record may optionally correspond to a -//! record of labels corresponding to their respective positions. -//! -//! Example data: -//! -//! ```ignore -//! 1997,Ford,, -//! "1997", "Ford", "E350", "Super, luxurious truck" -//! 1997,Ford,E350, "Go get one now -//! they are going fast" -//! ``` +#![experimental] + +#![deny(missing_doc)] + +//! This crate provides a streaming CSV (comma separated values) writer and +//! reader that works with the `serialize` crate to do type based encoding +//! and decoding. There are two primary goals of this project: //! -//! Note that in the above data, there is a total of 3 records. Each record -//! has length 4. +//! 1. The default mode of parsing should *just work*. This means the parser +//! will bias toward providing *a* parse over a *correct* parse (with +//! respect to RFC 4180). +//! 2. Convenient to use by default, but when performance is needed, the +//! API will provide an escape hatch. //! -//! If this data is in a file called `foo.csv`, then its records can be -//! read as vectors of strings using an iterator: +//! ## Simple example //! -//! ```no_run -//! let mut rdr = csv::Decoder::from_file(&Path::new("foo.csv")).no_headers(); -//! for record in rdr.iter() { -//! println!("{}", record); +//! This shows how you can decode records into Rust types. This saves a ton +//! of boiler plate, e.g., converting strings to numeric types. +//! +//! ```rust +//! let data = " +//! sticker,mortals,7 +//! bribed,personae,7 +//! wobbling,poncing,4 +//! interposed,emmett,9 +//! chocolate,refile,7"; +//! +//! let mut rdr = csv::Reader::from_string(data).no_headers(); +//! for row in rdr.decode() { +//! let (n1, n2, dist): (String, String, uint) = row.unwrap(); +//! println!("{}, {}: {:u}", n1, n2, dist); //! } //! ``` //! +//! If you just want a `Vec` of all the records, then you can use the +//! convenience `collect` function: //! -//! ## Headers and delimiters -//! -//! By default, the decoder in this crate assumes that the CSV data contains -//! a header record. The header record will be omitted from standard record -//! traversal, but we can access the header record at any time with the -//! `headers` method: -//! -//! ``` -//! let mut rdr = csv::Decoder::from_str("abc,xyz\n1,2"); -//! -//! assert_eq!(rdr.headers().unwrap(), vec!("abc".to_string(), "xyz".to_string())); -//! assert_eq!(rdr.iter().next().unwrap().unwrap(), -//! vec!("1".to_string(), "2".to_string())); -//! assert_eq!(rdr.headers().unwrap(), vec!("abc".to_string(), "xyz".to_string())); +//! ```rust +//! let data = " +//! sticker,mortals,7 +//! bribed,personae,7 +//! wobbling,poncing,4 +//! interposed,emmett,9 +//! chocolate,refile,7"; +//! +//! let mut rdr = csv::Reader::from_string(data).no_headers(); +//! let rows = csv::collect(rdr.decode::<(String, String, uint)>()).unwrap(); +//! assert_eq!(rows.len(), 5); //! ``` //! -//! The decoder also assumes that a comma (`,`) is the delimiter used to -//! separate values in a record. This can be changed with the `separator` -//! method. For example, to read tab separated values: +//! Please see the `Reader` type for more documentation and examples. //! -//! ``` -//! let mut rdr = csv::Decoder::from_str("a\tb\ny\tz") -//! .no_headers() -//! .separator(b'\t'); -//! -//! assert_eq!(rdr.iter().next().unwrap().unwrap(), -//! vec!("a".to_string(), "b".to_string())); -//! assert_eq!(rdr.iter().next().unwrap().unwrap(), -//! vec!("y".to_string(), "z".to_string())); -//! ``` +//! ## Iteratoring over records //! -//! Note that the delimiter is using a byte character literal: `b'\t'`. This is -//! because CSV parsing makes no assumptions about the encoding of the data -//! being read (other than the use of a few standard ASCII characters like the -//! field/record separators and `"`). +//! This crate exposes **4** distinct ways of iterating over CSV records. In +//! the majority of use cases, you should use the `decode` method as shown +//! above because it is the most convenient. But other types of iterators are +//! exposed for when you need them. //! +//! The iterators listed below are presented in order of performance. The first +//! (type based decoding) is the slowest and the last (zero allocation) is the +//! fastest. There is clear evidence of this claim in the benchmarks. (Just +//! run `cargo bench`.) //! -//! ## Decoding +//! ### Decoded records //! -//! Like the `serialize::json` crate, this crate supports encoding and decoding -//! into Rust values with types that satisfy the `Encodable` and/or -//! `Decodable` traits. In this crate, encoding and decoding always works at -//! the level of a CSV record. That is, only types corresponding to CSV -//! records can be given to the encode/decode methods. (Includes, but is not -//! limited to, structs, vectors and tuples.) +//! As shown above. This uses type based decoding on each record. //! -//! Given the simple structure of a CSV file, this makes it -//! very simple to retrieve records as tuples. For example: +//! ### String records //! -//! ``` -//! let mut rdr = csv::Decoder::from_str("andrew,1987\nkait,1989").no_headers(); -//! let record: (String, uint) = rdr.decode().unwrap(); -//! assert_eq!(record, ("andrew".to_string(), 1987)); -//! ``` -//! -//! An iterator is provided to repeat this for all records in the CSV data: +//! Yields each record as a `Vec`. Namely, this assumes that all CSV +//! data is UTF-8 encoded. This is the standard CSV interface that you've +//! probably come to expect from using other CSV parsers. //! //! ```rust -//! let mut rdr = csv::Decoder::from_str("andrew,1987\nkait,1989").no_headers(); -//! for record in rdr.iter_decode::<(String, uint)>() { -//! let (name, birth) = record.unwrap(); -//! println!("Name: {}, Born: {}", name, birth); +//! let data = " +//! sticker,mortals,7 +//! bribed,personae,7 +//! wobbling,poncing,4 +//! interposed,emmett,9 +//! chocolate,refile,7"; +//! +//! let mut rdr = csv::Reader::from_string(data).no_headers(); +//! for row in rdr.records() { +//! let row = row.unwrap(); +//! println!("{}", row); //! } //! ``` //! -//! Note that `iter_decode` is *explicitly* instantiated with the type -//! of the record. -//! -//! While this is convenient, CSV data in the real world can often be messy -//! or incomplete. For example, maybe some records don't have a birth year: -//! -//! ```ignore -//! andrew, "" -//! kait, -//! ``` +//! ### Byte string records //! -//! Using the above code, this would produce a decoding error since the empty -//! value `""` cannot be decoded into a value with type `uint`. Thankfully this -//! is easily fixed with an `Option` type. We only need to change the type -//! in our previous example: +//! Yields each record as a `Vec`. Namely, this allows reading CSV +//! data that is not UTF-8 encoded (or improperly encoded!). //! -//! ``` -//! let mut rdr = csv::Decoder::from_str("andrew, \"\"\nkait,").no_headers(); -//! let record1: (String, Option) = rdr.decode().unwrap(); -//! let record2: (String, Option) = rdr.decode().unwrap(); -//! -//! assert_eq!(record1, ("andrew".to_string(), None)); -//! assert_eq!(record2, ("kait".to_string(), None)); -//! ``` -//! -//! The `None` value here basically represents the fact that the decoder could -//! not decode the value to a `uint`. In particular, if the value were `"abc"` -//! instead of `""`, then the output would be the same. Therefore, `None` -//! represents a *conversion failure* rather than just an empty or NULL value. -//! -//! We can take this one step further with enumerations. For example, sometimes -//! values are encoded with a variety of different types. As a contrived -//! example, consider values that use any of `1`, `0`, `true` or `false`. -//! None of these values are invalid, so we'd like to decode any of them. This -//! can be expressed with an `enum` type: -//! -//! ``` -//! extern crate csv; -//! extern crate serialize; -//! -//! #[deriving(PartialEq, Show, Decodable)] -//! enum Truthy { -//! Uint(uint), -//! Bool(bool), -//! } -//! -//! fn main() { -//! let mut rdr = csv::Decoder::from_str("andrew,false\nkait,1").no_headers(); -//! let record: (String, Truthy) = rdr.decode().unwrap(); -//! assert_eq!(record, ("andrew".to_string(), Bool(false))); +//! ```rust +//! let data = b" +//! sti\xffcker,mortals,7 +//! chocolate,refile,7"; +//! +//! let mut rdr = csv::Reader::from_bytes(data).no_headers(); +//! for row in rdr.byte_records() { +//! let row = row.unwrap(); +//! println!("{}", row); //! } //! ``` //! -//! When the decoder sees an enum, it first tries to match CSV values with -//! the names of the value constructors (case insensitive). If that fails, then -//! it will try to match the CSV value against the first argument type. The -//! first match with a successful conversion will be used. -//! -//! Currently, the decoder only supports enum types with any mix of value -//! constructors that have 0 or 1 arguments. Using a value constructor with -//! more than one argument will result in a decoding error. -//! -//! Finally, decoding also works with structs by matching values in a record -//! to fields in a struct based on position. If a struct has a different -//! number of fields than a CSV record, an error is returned. -//! -//! -//! ## Encoding -//! -//! Using the encoder in this crate is almost exactly like using the -//! decoder: -//! -//! ``` -//! let mut enc = csv::Encoder::mem_encoder(); -//! enc.encode(("andrew", 1987u)).unwrap(); -//! enc.encode(("kait", 1989u)).unwrap(); -//! assert_eq!(enc.to_string(), "andrew,1987\nkait,1989\n"); -//! ``` +//! ### Byte slice records //! -//! Note that `Encoder::mem_encoder` creates a convenience encoder for -//! strings. You can encode to any `Writer` (with `to_writer`) or to a file: +//! This iterator is defined on the `Reader` type itself and yields *fields* +//! instead of records (unlike the other iterators). Each field is a `&[u8]`. +//! No allocation is performed during parsing (unlike the other iterators, +//! which at least allocate a `Vec` for each field and a `Vec<_>` for each +//! record). //! -//! ```no_run -//! let mut enc = csv::Encoder::to_file(&Path::new("foo.csv")); -//! let records = vec!(("andrew", 1987u), ("kait", 1989u)); -//! match enc.encode_all(records.iter()) { -//! Ok(_) => {}, -//! Err(err) => fail!("Error encoding: {}", err), -//! } -//! ``` +//! This is the lowest level interface and should only be used when you need +//! the performance. //! -//! The encoder in this crate supports all of the same things as the decoder, -//! including writing enum and option types. The encoder will make sure that -//! values containing special characters (like quotes, new lines or the -//! delimiter) are appropriately quoted. Quoting only occurs when it is -//! necessary. -//! -//! -//! ## Streaming -//! -//! All decoding and encoding in this crate is done on demand. That is, you -//! can safely pass a reader to a decoder and expect that it won't be -//! completely consumed immediately. -//! -//! Here's an example that demonstrates streaming with channels: -//! -//! ```no_run -//! extern crate csv; -//! -//! use std::comm::channel; -//! use std::io::{ChanReader, ChanWriter, Reader, Writer}; -//! use std::io::timer::sleep; -//! use std::task::spawn; -//! use std::time::Duration; -//! -//! use csv::{Decoder, Encoder}; -//! -//! fn main() { -//! let (send, recv) = channel(); -//! spawn(proc() { -//! let mut w = ChanWriter::new(send); -//! let mut enc = Encoder::to_writer(&mut w as &mut Writer); -//! for x in range(1u, 6) { -//! match enc.encode((x, x * x)) { -//! Ok(_) => {}, -//! Err(err) => fail!("Failed encoding: {}", err), -//! } -//! sleep(Duration::seconds(1)); -//! } -//! }); -//! -//! let mut r = ChanReader::new(recv); -//! // We create a CSV reader with a small buffer so that we can see streaming -//! // in action on small inputs. -//! let mut dec = Decoder::from_reader_capacity(&mut r as &mut Reader, 1); -//! for r in dec.iter() { -//! println!("Record: {}", r); +//! ```rust +//! let data = " +//! sticker,mortals,7 +//! bribed,personae,7 +//! wobbling,poncing,4 +//! interposed,emmett,9 +//! chocolate,refile,7"; +//! +//! let mut rdr = csv::Reader::from_string(data); +//! while !rdr.done() { +//! for field in rdr { +//! let field = field.unwrap(); +//! print!("{}", field); //! } +//! println!(""); //! } //! ``` //! +//! There is more explanation for how this iterator interface works on the +//! `Reader` type. //! //! ## Compliance with RFC 4180 //! -//! RFC 4180 seems to the closest thing to an official specification for CSV. -//! This crate should conform to the specification with these exceptions: -//! (which are mostly used for making the decoder more permissive) +//! [RFC 4180](http://tools.ietf.org/html/rfc4180) seems to the closest thing +//! to an official specification for CSV. +//! Currently, the parser in this crate will read a strict superset of +//! RFC 4180 while the writer will always write CSV data that conforms to +//! RFC 4180. This approach was taken because CSV data is commonly malformed +//! and there is nothing worse than trying to read busted CSV data with a +//! library that says it can't do it. +//! +//! With that said, a "strict" mode may be added that will only read CSV data +//! that conforms to RFC 4180. +//! +//! Here are a few notes on compatibility with RFC 4180: //! //! * Both CRLF and LF line endings are supported. This is seamless in the -//! decoder. By default, the encoder uses LF line endings but can be +//! parser. By default, the encoder uses LF line endings but can be //! instructed to use CRLF with the `crlf` method. //! * The first record is read as a "header" by default, but this can be -//! disabled by calling `no_headers` before decoding any records. +//! disabled by calling `no_headers` before reading any records. //! (N.B. The encoder has no explicit support for headers. Simply encode a //! vector of strings instead.) //! * By default, the delimiter is a comma, but it can be changed to any -//! unicode character with the `separator` method (for either encoding -//! or decoding). +//! **ASCII** byte character with the `delimiter` method (for either +//! writing or reading). //! * The decoder interprets `\"` as an escaped quote in addition to the //! standard `""`. -//! * By default, both the encoder and decoder will enforce the invariant +//! * By default, both the writer and reader will enforce the invariant //! that all records are the same length. (This is what RFC 4180 demands.) //! If a record with a different length is found, an error is returned. -//! This behavior may be turned off by calling `enforce_same_length` with -//! `false`. +//! This behavior may be turned off by calling `flexible` with `true`. //! * Empty lines (that do not include other whitespace) are ignored -//! by the decoder. -//! * Currently, this crate biases toward UTF-8 support. However, both -//! the `Decoder` and the `Encoder` expose methods for dealing with raw -//! encoding agnostic byte strings. The only restriction is that the field -//! delimiter must be a single 8-bit encoded character, quotations must -//! be the ASCII `"` and record separators must be the ASCII `\n` or `\r\n` -//! characters. -//! -//! Everything else should be supported, including new lines in quoted values. +//! by the parser. +//! * This crates parses CSV data at the *byte* level, which means all +//! delimiter and quote characters must be ASCII. While unfortunate, this +//! means that CSV data that is not UTF-8 encoded can be parsed. In +//! general, the writer and reader API biases toward using Unicode strings +//! while providing an outlet to use byte strings. #![feature(default_type_params, phase)] -#[phase(plugin, link)] extern crate log; extern crate rand; extern crate serialize; extern crate "test" as stdtest; -#[cfg(test)] -extern crate quickcheck; - use std::fmt; -use std::hash; use std::io; -pub use encoder::{Encoder}; -pub use decoder::{Decoder, Records}; +pub use bytestr::ByteString; +pub use encoder::Encoded; +pub use decoder::Decoded; +pub use reader::{Reader, DecodedRecords, StringRecords, ByteRecords}; +pub use writer::{Writer}; +mod bytestr; mod encoder; mod decoder; +mod reader; +mod writer; #[cfg(test)] mod bench; #[cfg(test)] mod test; -/// A type that represents unadulterated byte strings. +/// A convenience type for representing the result of most CSV reader/writer +/// operations. +pub type CsvResult = Result; + +/// Collects an iterator of result records into a single vector. /// -/// Byte strings represent *any* 8 bit character encoding. There are no -/// restrictions placed on the type of encoding used. (This means that there -/// may be *multiple* encodings in any particular byte string!) +/// If you just want to put all the records from CSV data into memory, this +/// function is useful for lifting the error reporting from each individual +/// record to the entire collection of records. /// -/// Many CSV files in the wild aren't just malformed with respect to RFC 4180, -/// but they are commonly *not* UTF-8 encoded. Even worse, some of them are -/// encoded improperly. Therefore, any useful CSV parser must be flexible with -/// respect to encodings. +/// ### Example /// -/// Thus, this CSV parser uses byte strings internally. This means that -/// quotes and field and record separators *must* be ASCII. Otherwise, -/// the parser places no other restrictions on the content of data in each -/// cell. +/// Put all records from CSV data into a single vector: /// -/// Note that most of the methods in the encoder/decoder will assume UTF-8 -/// encoding, but they also expose some lower level methods that use byte -/// strings when absolutely necessary. This type is exposed in case you need -/// to deal with the raw bytes directly. -#[deriving(Clone, PartialEq, Eq, PartialOrd, Ord)] -pub struct ByteString(Vec); - -impl ByteString { - /// Create a new byte string from a vector or slice of bytes. - pub fn from_bytes>(bs: S) -> ByteString { - ByteString(bs.into_vec()) - } - - /// Consumes this byte string into a vector of bytes. - pub fn into_bytes(self) -> Vec { - let ByteString(chars) = self; - chars - } - - /// Returns this byte string as a slice of bytes. - pub fn as_bytes<'a>(&'a self) -> &'a [u8] { - let &ByteString(ref chars) = self; - chars.as_slice() - } - - /// Consumes the byte string and decodes it into a Unicode string. If the - /// decoding fails, then the original ByteString is returned. - pub fn to_utf8_string(self) -> Result { - String::from_utf8(self.into_bytes()).map_err(ByteString) - } -} - -impl fmt::Show for ByteString { - /// Writes the raw bytes to `f`. (There is no conversion to UTF-8 - /// encoding.) - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - let ByteString(ref chars) = *self; - // XXX: Ideally, we could just do this: - // - // f.write(chars.as_slice()) - // - // and let the output device figure out how to render it. But it seems - // the formatting infrastructure assumes that the data is UTF-8 - // encodable, which obviously doesn't work with raw byte strings. - // - // For now, we just show the bytes, e.g., `[255, 50, 48, 49, ...]`. - write!(f, "{}", chars.as_slice()) - } -} - -impl Slice for ByteString { - fn as_slice<'a>(&'a self) -> &'a [u8] { - let ByteString(ref chars) = *self; - chars.as_slice() - } -} - -impl hash::Hash for ByteString { - fn hash(&self, hasher: &mut H) { - self.as_slice().hash(hasher); - } -} - -impl Equiv for ByteString { - fn equiv(&self, other: &S) -> bool { - self.as_bytes() == other.as_slice().as_bytes() - } +/// ```rust +/// let data = " +/// sticker,mortals,7 +/// bribed,personae,7 +/// wobbling,poncing,4 +/// interposed,emmett,9 +/// chocolate,refile,7"; +/// +/// let mut rdr = csv::Reader::from_string(data).no_headers(); +/// let rows = csv::collect(rdr.records()).unwrap(); +/// +/// assert_eq!(rows[2][2], "4".to_string()); +/// ``` +pub fn collect>>(mut it: I) -> CsvResult> { + let mut records = vec![]; + for r in it { records.push(try!(r)); } + Ok(records) } -/// A type that encapsulates any type of error that can be generated by -/// reading and writing CSV data. +/// An error produced by an operation on CSV data. #[deriving(Clone)] pub enum Error { - /// An error caused by invalid encoding. (Such as trying to write records - /// of varying length when `enforce_same_length` is enabled.) + /// An error reported by the type-based encoder. ErrEncode(String), - - /// An error caused by parsing or decoding a single CSV record. - ErrRecord(RecordError), - - /// An IO error that occurred when reading or writing CSV data. + /// An error reported by the type-based decoder. + ErrDecode(String), + /// An error reported by the CSV parser. + ErrParse(ParseError), + /// An error originating from reading or writing to the underlying buffer. ErrIo(io::IoError), +} - /// EOF is reached. This is only exposed through the `record`, - /// `record_bytes` and `decode` methods in the decoder. - ErrEOF, +impl Error { + /// Returns true if this is an IO error corresponding to `EndOfFile`. + pub fn is_eof(&self) -> bool { + match self { + &ErrIo(io::IoError { kind: io::EndOfFile, .. }) => true, + _ => false, + } + } } -/// An error caused by parsing or decoding a single record. +/// A description of a CSV parse error. #[deriving(Clone)] -pub struct RecordError { - /// The line on which the error occurred. +pub struct ParseError { + /// The line number of the parse error. pub line: uint, - - /// The column where the error occurred. - pub col: uint, - - /// A message describing the error. - pub msg: String, + /// The column (byte offset) of the parse error. + pub column: uint, + /// The type of parse error. + pub kind: ParseErrorKind, } -impl Error { - fn record(line: uint, col: uint, msg: S) -> Error { - ErrRecord(RecordError { - line: line, - col: col, - msg: msg.into_string(), - }) - } - fn eof() -> Error { ErrEOF } - fn io(e: io::IoError) -> Error { ErrIo(e) } +/// The different types of parse errors. +/// +/// Currently, the CSV parser is extremely liberal in what it accepts, so +/// there aren't many possible parse errors. (Instead, there are just +/// variations in what the parse returns.) +/// +/// If and when a "strict" mode is added to this crate, this list of errors +/// will expand. +#[deriving(Clone)] +pub enum ParseErrorKind { + /// This error occurs when a record has a different number of fields + /// than the first record parsed. + UnequalLengths(uint, uint), - /// Returns true if this error is an EOF error. - pub fn is_eof(&self) -> bool { - match self { &ErrEOF => true, _ => false } - } + /// This error occurs when parsing CSV data as Unicode. + InvalidUTF8, } impl fmt::Show for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { - &ErrEncode(ref msg) => write!(f, "Encode error: {}", msg), - &ErrRecord(ref re) => write!(f, "{}", re), - &ErrIo(ref ie) => { - try!(write!(f, "IO error ({}): {}", ie.kind, ie.desc)); - match ie.detail { - None => {}, - Some(ref det) => try!(write!(f, " (detail: {})", det)), - } - Ok(()) - } - &ErrEOF => write!(f, "EOF"), + &ErrEncode(ref msg) => write!(f, "CSV encode error: {}", msg), + &ErrDecode(ref msg) => write!(f, "CSV decode error: {}", msg), + &ErrParse(ref err) => write!(f, "{}", err), + &ErrIo(ref err) => write!(f, "{}", err), } } } -impl fmt::Show for RecordError { +impl fmt::Show for ParseError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "Parse error:{}:{}: {}", self.line, self.col, self.msg) + write!(f, "CSV parse error:{:u}:{:u}: {}", + self.line, self.column, self.kind) } } -/// The parser state used in the decoder. -struct Parser { - buf: io::BufferedReader, // buffer to read CSV data from - sep: u8, // separator character to use - same_len: bool, // whether to enforce all rows be of same length - first_len: uint, // length of first row - no_headers: bool, // interpret first record as headers when true - first_record: Option>, // the first record in the CSV data - cur: Option, // the current character - look: Option, // one character look-ahead - line: uint, // current line - col: uint, // current column - byte: u64, // current byte offset - byte_record_start: u64, // byte offset of previous read record - returned_non_header: bool, // whether normal records have parsed or not -} - -impl Parser { - fn parse_record(&mut self, as_header: bool) - -> Result, Error> { - if self.no_headers - && self.first_record.is_some() && !self.returned_non_header { - self.returned_non_header = true; - return Ok(self.first_record.clone().unwrap()); - } - - self.line += 1; - try!(self.eat_lineterms()); - if try!(self.peek()).is_none() { - return Err(Error::eof()) - } - - self.byte_record_start = self.byte; - let mut vals = Vec::with_capacity(self.first_len); - while !self.is_eof() { - let val = try!(self.parse_value()); - vals.push(val); - if self.is_lineterm() { - try!(self.eat_lineterm()); - break - } - } - if self.is_eof() && vals.len() == 0 { - return Err(Error::eof()) - } - - // This is a bit hokey, but if an error is generated at this point - // (like a decoding error), then the line number will be off by one. - // We correct this here, but we have to offset this correction the - // next time `parse_record` is called. - self.line -= 1; - - if self.same_len { - if self.first_len == 0 { - self.first_len = vals.len() - } else if self.first_len != vals.len() { - return Err(self.err(format!( - "Record has length {} but other records have length {}", - vals.len(), self.first_len).as_slice())) - } - } else if self.first_len == 0 { - // This isn't used to enforce same length records, but as a hint - // for how big to make a vector holding the record. - self.first_len = vals.len() - } - // If this assertion fails, then there is a bug in the above code. - // Namely, the only way `vals` should be empty is if we've hit EOF, - // which should be returned as en error. - // - // This assertion is important because most of the decoder relies on - // records having non-zero length. For example, if `headers` has zero - // length, then that indicates that it hasn't been filled yet. - assert!(vals.len() > 0); - if !as_header { - self.returned_non_header = true; - } - if self.first_record.is_none() { - self.first_record = Some(vals); - if as_header || self.no_headers { - return Ok(self.first_record.clone().unwrap()) - } - return self.parse_record(false) - } - Ok(vals) - } - - fn parse_value(&mut self) -> Result { - let mut only_whitespace = true; - let mut res = Vec::with_capacity(4); - loop { - try!(self.next_byte()); - if self.is_end_of_val() { - break - } else if only_whitespace { - if self.cur_is(b'"') { - // Throw away any leading whitespace. - return self.parse_quoted_value() - } else if self.is_blank() { - res.push(self.cur.unwrap()); - continue - } - } - only_whitespace = false; - res.push(self.cur.unwrap()); - } - Ok(ByteString(res)) - } - - fn parse_quoted_value(&mut self) -> Result { - // Assumes that " has already been read. - let mut res = Vec::with_capacity(4); - loop { - try!(self.next_byte()); - if self.is_eof() { - return Err(self.err("EOF while parsing quoted value.")) - } else if self.cur_is(b'"') { - if self.peek_is(b'"') { - try!(self.next_byte()); // throw away second " - res.push(b'"'); - continue - } - - // Eat and spit out everything up to next separator. - // If we see something that isn't whitespace, it's an error. - try!(self.next_byte()); - loop { - if self.is_end_of_val() { - break - } else if !self.is_blank() { - let msg = format!( - "Expected EOF, line terminator, separator or \ - whitespace following quoted value but found \ - '{}' instead.", self.cur.unwrap()); - return Err(self.err(msg.as_slice())); - } - try!(self.next_byte()); - } - break - } else if self.cur_is(b'\\') && self.peek_is(b'"') { - // We also try to support \ escaped quotes even though - // the spec says "" is used. - try!(self.next_byte()); // throw away the " - res.push(b'"'); - continue - } - res.push(self.cur.unwrap()); - } - Ok(ByteString(res)) - } - - fn next_byte(&mut self) -> Result<(), Error> { - self.cur = try!(self.read_next_byte()); - if !self.is_eof() { - self.byte += 1; - if self.cur_is(b'\n') { - self.line += 1; - self.col = 1; - } else { - self.col += 1; - } - } - Ok(()) - } - - fn read_next_byte(&mut self) -> Result, Error> { - match self.look { - Some(c) => { self.look = None; Ok(Some(c)) } - None => match self.buf.read_byte() { - Ok(c) => Ok(Some(c)), - Err(io::IoError { kind: io::EndOfFile, .. }) => Ok(None), - Err(err) => Err(Error::io(err)), - } - } - } - - fn peek(&mut self) -> Result, Error> { - match self.look { - Some(c) => Ok(Some(c)), - None => { - self.look = try!(self.read_next_byte()); - Ok(self.look) - } - } - } - - fn cur_is(&self, c: u8) -> bool { - self.cur == Some(c) - } - - fn peek_is(&mut self, c: u8) -> bool { - match self.peek() { - Ok(Some(p)) => p == c, - _ => false, - } - } - - fn is_end_of_val(&mut self) -> bool { - self.cur_is(self.sep) || self.is_lineterm() || self.is_eof() - } - - fn is_eof(&self) -> bool { - self.cur.is_none() - } - - fn is_blank(&self) -> bool { - return self.cur == Some(b' ') || self.cur == Some(b'\t') - } - - fn is_lineterm(&mut self) -> bool { - if self.cur_is(b'\n') { - return true - } - if self.cur_is(b'\r') { - return self.peek_is(b'\n') - } - false - } - - fn eat_lineterms(&mut self) -> Result<(), Error> { - while self.peek_is(b'\n') || self.peek_is(b'\r') { - try!(self.next_byte()); // read a '\r' or a '\n' - try!(self.eat_lineterm()); // read a '\n' if read '\r' - } - Ok(()) - } - - fn eat_lineterm(&mut self) -> Result<(), Error> { - if self.cur_is(b'\r') { - try!(self.next_byte()); +impl fmt::Show for ParseErrorKind { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { + match self { + &UnequalLengths(first, cur) => + write!(f, "First record has length {:u}, but found record \ + with length {:u}.", first, cur), + &InvalidUTF8 => + write!(f, "Invalid UTF8 encoding."), } - Ok(()) - } - - fn err(&self, msg: S) -> Error { - Error::record(self.line, self.col, msg) } } diff --git a/src/reader.rs b/src/reader.rs new file mode 100644 index 0000000..3a31188 --- /dev/null +++ b/src/reader.rs @@ -0,0 +1,814 @@ +use std::io::{mod, MemReader}; +use std::mem::transmute; + +use serialize::Decodable; + +use { + ByteString, CsvResult, Decoded, + Error, ErrDecode, ErrIo, ErrParse, + ParseError, + ParseErrorKind, UnequalLengths, +}; + +// TODO: Make these parameters? +static QUOTE: u8 = b'"'; +static ESCAPE: u8 = b'\\'; + +/// A CSV reader. +/// +/// This reader parses CSV data and exposes records via iterators. +/// +/// ### Example +/// +/// This example shows how to do type-based decoding for each record in the +/// CSV data. +/// +/// ```rust +/// let data = " +/// sticker,mortals,7 +/// bribed,personae,7 +/// wobbling,poncing,4 +/// interposed,emmett,9 +/// chocolate,refile,7"; +/// +/// let mut rdr = csv::Reader::from_string(data).no_headers(); +/// for row in rdr.decode() { +/// let (n1, n2, dist): (String, String, uint) = row.unwrap(); +/// println!("{}, {}: {:u}", n1, n2, dist); +/// } +/// ``` +/// +/// Here's another example that parses tab-delimited values with records of +/// varying length: +/// +/// ```rust +/// let data = " +/// sticker\tmortals\t7 +/// bribed\tpersonae\t7 +/// wobbling +/// interposed\temmett\t9 +/// chocolate\trefile\t7"; +/// +/// let mut rdr = csv::Reader::from_string(data) +/// .no_headers() +/// .delimiter(b'\t') +/// .flexible(true); +/// for row in rdr.records() { +/// let row = row.unwrap(); +/// println!("{}", row); +/// } +/// ``` +pub struct Reader { + delimiter: u8, + flexible: bool, // true => records of varying length are allowed + buffer: io::BufferedReader, + fieldbuf: Vec, // reusable buffer used to store fields + state: ParseState, // current state in parsing machine + err: Option, // current error; when `Some`, parsing is done forever + + // Keep a copy of the first record parsed. + first_record: Vec, + + // When this is true, the first record is interpreted as a "header" row. + // This is opaque to the raw iterator, but is used in any iterator that + // allocates. + has_headers: bool, + + // Various book-keeping counts. + field_count: uint, // number of fields in current record + column: uint, // current column (by byte, *shrug*) + line_record: uint, // line at which current record started + line_current: uint, // current line + byte_offset: u64, // current byte offset +} + +impl Reader> { + /// Creates a new CSV reader for the data at the file path given. + pub fn from_file(path: &Path) -> Reader> { + Reader::from_reader(io::File::open(path)) + } +} + +impl Reader { + /// Returns a *copy* of the first record in the CSV data as strings. + /// + /// This method may be called at any time and regardless of whether + /// `no_headers` is set or not. + /// + /// ### Example + /// + /// ```rust + /// let mut rdr = csv::Reader::from_string("a,b,c\n1,2,3"); + /// + /// let headers1 = rdr.headers().unwrap(); + /// let rows = csv::collect(rdr.records()).unwrap(); + /// let headers2 = rdr.headers().unwrap(); + /// + /// let s = |s: &'static str| s.to_string(); + /// assert_eq!(headers1, headers2); + /// assert_eq!(headers1, vec![s("a"), s("b"), s("c")]); + /// assert_eq!(rows.len(), 1); + /// assert_eq!(rows[0], vec![s("1"), s("2"), s("3")]); + /// ``` + /// + /// Note that if `no_headers` is called on the CSV reader, the rows + /// returned in this example include the first record: + /// + /// ```rust + /// let mut rdr = csv::Reader::from_string("a,b,c\n1,2,3").no_headers(); + /// + /// let headers1 = rdr.headers().unwrap(); + /// let rows = csv::collect(rdr.records()).unwrap(); + /// let headers2 = rdr.headers().unwrap(); + /// + /// let s = |s: &'static str| s.to_string(); + /// assert_eq!(headers1, headers2); + /// assert_eq!(headers1, vec![s("a"), s("b"), s("c")]); + /// + /// // The header rows are now part of the record iterators. + /// assert_eq!(rows.len(), 2); + /// assert_eq!(rows[0], headers1); + /// assert_eq!(rows[1], vec![s("1"), s("2"), s("3")]); + /// ``` + pub fn headers(&mut self) -> CsvResult> { + byte_record_to_utf8(try!(self.byte_headers())) + } + + /// Uses type-based decoding to read a single record from CSV data. + /// + /// The type that is being decoded into should correspond to *one full + /// CSV record*. A tuple, struct or `Vec` fit this category. A tuple, + /// struct or `Vec` should consist of primitive types like integers, + /// floats, characters and strings which map to single fields. If a field + /// cannot be decoded into the type requested, an error is returned. + /// + /// Enums are also supported in a limited way. Namely, its variants must + /// have exactly `0` or `1` parameters. Variants with `0` parameters decode + /// based on a case-insensitive string match. Variants with `1` decode + /// based on its constituent type. Examples follow. + /// + /// ### Examples + /// + /// This example shows how to decode records into a struct. (Note that + /// currently, the *names* of the struct members are irrelevant.) + /// + /// ```rust + /// extern crate serialize; + /// # extern crate csv; + /// # fn main() { + /// + /// #[deriving(Decodable)] + /// struct Pair { + /// name1: String, + /// name2: String, + /// dist: uint, + /// } + /// + /// let mut rdr = csv::Reader::from_string("foo,bar,1\nfoo,baz,2") + /// .no_headers(); + /// // Instantiating a specific type when decoding is usually necessary. + /// let rows = csv::collect(rdr.decode::()).unwrap(); + /// + /// assert_eq!(rows[0].dist, 1); + /// assert_eq!(rows[1].dist, 2); + /// # } + /// ``` + /// + /// We can get a little crazier with custon enum types or `Option` types. + /// An `Option` type in particular is useful when a column doesn't contain + /// valid data in every record (whether it be empty or malformed). + /// + /// ```rust + /// extern crate serialize; + /// # extern crate csv; + /// # fn main() { + /// + /// #[deriving(Decodable, PartialEq, Show)] + /// struct MyUint(uint); + /// + /// #[deriving(Decodable, PartialEq, Show)] + /// enum Color { Red, Green, Blue }; + /// + /// #[deriving(Decodable)] + /// struct Pair { + /// name1: String, + /// name2: String, + /// dist: Option, + /// color: Color, + /// } + /// + /// let mut rdr = csv::Reader::from_string("foo,bar,1,red\nfoo,baz,,green") + /// .no_headers(); + /// let rows = csv::collect(rdr.decode::()).unwrap(); + /// + /// assert_eq!(rows[0].dist, Some(MyUint(1))); + /// assert_eq!(rows[1].dist, None); + /// + /// assert_eq!(rows[0].color, Red); + /// assert_eq!(rows[1].color, Green); + /// # } + /// ``` + /// + /// Finally, as a special case, a tuple/struct/`Vec` can be used as the + /// "tail" of another tuple/struct/`Vec` to capture all remaining fields: + /// + /// ```rust + /// extern crate serialize; + /// # extern crate csv; + /// # fn main() { + /// + /// #[deriving(Decodable)] + /// struct Pair { + /// name1: String, + /// name2: String, + /// attrs: Vec, + /// } + /// + /// let mut rdr = csv::Reader::from_string("a,b,1,2,3,4\ny,z,5,6,7,8") + /// .no_headers(); + /// let rows = csv::collect(rdr.decode::()).unwrap(); + /// + /// assert_eq!(rows[0].attrs, vec![1,2,3,4]); + /// assert_eq!(rows[1].attrs, vec![5,6,7,8]); + /// # } + /// ``` + /// + /// If a tuple/struct/`Vec` appears any where other than the "tail" of a + /// record, then the behavior is undefined. (You'll likely get a runtime + /// error. I believe this is a limitation of the current decoding machinery + /// in the `serialize` crate.) + /// ``` + pub fn decode<'a, D: Decodable> + (&'a mut self) -> DecodedRecords<'a, R, D> { + DecodedRecords { p: self.byte_records() } + } + + /// Returns an iterator of records in the CSV data where each field is + /// a `String`. + /// + /// ### Example + /// + /// This is your standard CSV interface with no type decoding magic. + /// + /// ```rust + /// let data = " + /// sticker,mortals,7 + /// bribed,personae,7 + /// wobbling,poncing,4 + /// interposed,emmett,9 + /// chocolate,refile,7"; + /// + /// let mut rdr = csv::Reader::from_string(data).no_headers(); + /// for row in rdr.records() { + /// let row = row.unwrap(); + /// println!("{}", row); + /// } + /// ``` + pub fn records<'a>(&'a mut self) -> StringRecords<'a, R> { + StringRecords { p: self.byte_records() } + } +} + +impl Reader { + /// Creates a new CSV reader from an arbitrary `io::Reader`. + /// + /// The reader is buffered for you automatically. + pub fn from_reader(rdr: R) -> Reader { + Reader::from_buffer(io::BufferedReader::new(rdr)) + } + + /// Creates a new CSV reader from a buffer. + /// + /// This allows you to create your own buffer with a capacity of your + /// choosing. In all other constructors, a buffer with default capacity + /// is created for you. + pub fn from_buffer(buf: io::BufferedReader) -> Reader { + Reader { + delimiter: b',', + flexible: false, + buffer: buf, + fieldbuf: Vec::with_capacity(1024), + state: StartRecord, + err: None, + first_record: vec![], + has_headers: true, + field_count: 0, + column: 1, + line_record: 1, + line_current: 1, + byte_offset: 0, + } + } + + /// The delimiter to use when reading CSV data. + /// + /// Since the CSV reader is meant to be mostly encoding agnostic, you must + /// specify the delimiter as a single ASCII byte. For example, to read + /// tab-delimited data, you would use `b'\t'`. + /// + /// The default value is `b','`. + pub fn delimiter(mut self, delimiter: u8) -> Reader { + self.delimiter = delimiter; + self + } + + /// Whether to allow flexible length records when reading CSV data. + /// + /// When this is set to `true`, records in the CSV data can have different + /// lengths. By default, this is disabled, which will cause the CSV reader + /// to return an error if it tries to read a record that has a different + /// length than the first record that it read. + pub fn flexible(mut self, yes: bool) -> Reader { + self.flexible = yes; + self + } + + /// Do not treat the first row as a special header row. + /// + /// By default, the first row is treated as a special header row, which + /// means it is excluded from iterators returned by the `decode`, `records` + /// or `byte_records` methods. When `no_headers` is called, the first row + /// is included in those iterators. + /// + /// Note that the `headers` method is unaffected by whether this is set. + pub fn no_headers(mut self) -> Reader { + self.has_headers = false; + self + } +} + +impl Reader { + /// Creates a CSV reader for an in memory string buffer. + pub fn from_string(s: S) -> Reader { + Reader::from_bytes(s.into_string().into_bytes()) + } + + /// Creates a CSV reader for an in memory buffer of bytes. + pub fn from_bytes>(bytes: V) -> Reader { + Reader::from_reader(MemReader::new(bytes.into_vec())) + } +} + +/// These are low level methods for dealing with the raw bytes of CSV records. +/// You should only need to use these when you need the performance or if +/// your CSV data isn't UTF-8 encoded. +impl Reader { + /// This is just like `headers`, except fields are `ByteString`s instead + /// of `String`s. + pub fn byte_headers(&mut self) -> CsvResult> { + if !self.first_record.is_empty() { + Ok(self.first_record.clone()) + } else { + let mut headers = vec![]; + for field in self { + headers.push(ByteString::from_bytes(try!(field))); + } + assert!(headers.len() > 0 || self.done()); + Ok(headers) + } + } + + /// This is just like `records`, except fields are `ByteString`s instead + /// of `String`s. + pub fn byte_records<'a>(&'a mut self) -> ByteRecords<'a, R> { + ByteRecords { p: self, first: false } + } + + /// Returns `true` if the CSV parser has reached its final state. When + /// this method returns `true`, all iterators will always return `None`. + /// + /// This is not needed in typical usage since the record iterators will + /// stop for you when the parser completes. This method is useful when + /// you're accessing the parser's lowest-level iterator. + /// + /// ### Example + /// + /// This is the *fastest* way to compute the number of records in CSV data + /// using this crate. (It is fast because it does not allocate space for + /// every field.) + /// + /// ```rust + /// let data = " + /// sticker,mortals,7 + /// bribed,personae,7 + /// wobbling,poncing,4 + /// interposed,emmett,9 + /// chocolate,refile,7"; + /// + /// let mut rdr = csv::Reader::from_string(data); + /// let mut count = 0u; + /// while !rdr.done() { + /// for field in rdr { let _ = field.unwrap(); } + /// count += 1; + /// } + /// + /// assert_eq!(count, 5); + /// ``` + pub fn done(&self) -> bool { + self.err.is_some() + } + + fn parse_err(&self, kind: ParseErrorKind) -> Error { + ErrParse(ParseError { + line: self.line_record, + column: self.column, + kind: kind, + }) + } +} + +/// An iterator over fields in the current record. +/// +/// This provides low level access to CSV records as raw byte slices. Namely, +/// no allocation is performed. Unlike other iterators in this crate, this +/// yields *fields* instead of records. +/// +/// The semantics of this iterator are a little strange. The iterator will +/// produce `None` at the end of a record, but the next invocation of the +/// iterator will restart at the next record. Once all CSV data has been +/// parsed, `None` will be returned indefinitely. +/// +/// This iterator always returns all records (i.e., it won't skip the header +/// row). +/// +/// (N.B. I would love to find a way to turn this into an iterator of +/// iterators.) +/// +/// ### Example +/// +/// Typically, once an iterator returns `None`, it will always return `None`. +/// Since this iterator varies from that behavior, it should be used in +/// conjunction with the `done` method to traverse records. +/// +/// ```rust +/// let data = " +/// sticker,mortals,7 +/// bribed,personae,7 +/// wobbling,poncing,4 +/// interposed,emmett,9 +/// chocolate,refile,7"; +/// +/// let mut rdr = csv::Reader::from_string(data); +/// while !rdr.done() { +/// for field in rdr { +/// let field = field.unwrap(); +/// print!("{}", field); +/// } +/// println!(""); +/// } +/// ``` +impl<'a, R: io::Reader> Iterator> for Reader { + fn next(&mut self) -> Option> { + unsafe { self.fieldbuf.set_len(0); } + + // The EndRecord state indicates what you'd expect: stop the current + // iteration, check for same-length records and reset a little + // record-based book keeping. + if self.state == EndRecord { + if !self.flexible && self.first_record.len() != self.field_count { + let err = self.parse_err(UnequalLengths(self.first_record.len(), + self.field_count)); + self.err = Some(err.clone()); + return Some(Err(err)); + } + // After processing an EndRecord (and determined there are no + // errors), we should always start parsing the next record. + self.state = StartRecord; + self.line_record = self.line_current; + self.field_count = 0; + return None; + } + + // Check to see if we've recorded an error and quit parsing if we have. + // This serves two purposes: + // 1) When CSV parsing reaches an error, it is unrecoverable. So the + // parse function will initially return that error (unless it is + // EOF) and then return `None` indefinitely. + // 2) EOF errors are handled specially and can be returned "lazily". + // e.g., EOF in the middle of parsing a field. First we have to + // return the field and then return EOF on the next call. + match self.err { + None => {}, + // We don't return the error here because it is always returned + // immediately when it is first found (unless it's EOF, but if it's + // EOF, we just want to stop the iteration anyway). + Some(_) => return None, + } + + // A parser machine encapsulates the main parsing state transitions. + // Normally, the state machine would be written as methods on the + // Reader type, but mutable borrows become troublesome. So we isolate + // the things we need to mutate during state transitions with + // the ParseMachine type. + let mut pmachine = ParseMachine { + fieldbuf: unsafe { transmute(&mut self.fieldbuf) }, + state: unsafe { transmute(&mut self.state) }, + delimiter: self.delimiter, + }; + let mut consumed = 0; // tells the buffer how much we consumed + 'TOPLOOP: loop { + // The following code is basically, "fill a buffer with data from + // the underlying reader if it's empty, and then run the parser + // over each byte in the slice returned." + // + // This technique is critical for performance, because it lifts + // a lot of case analysis off of each byte. (i.e., This loop could + // be more simply written with `buf.read_byte()`, but it is much + // slower.) + match self.buffer.fill_buf() { + Err(err) => { + // The error is processed below. + // We don't handle it here because we need to do some + // book keeping first. + self.err = Some(ErrIo(err)); + break 'TOPLOOP; + } + Ok(bs) => { + // This "batch" processing of bytes is critical for + // performance. + for &b in bs.iter() { + pmachine.parse_byte(b); + if *pmachine.state == EndRecord { + // Don't consume the byte we just read, because + // it is the first byte of the next record. + break 'TOPLOOP; + } else { + consumed += 1; + self.column += 1; + self.byte_offset += 1; + if is_crlf(b) { + if b == b'\n' { + self.line_current += 1; + } + self.column = 1; + } + if *pmachine.state == StartField { + break 'TOPLOOP + } + } + } + } + } + self.buffer.consume(consumed); + consumed = 0; + } + // We get here when we break out of the loop, so make sure the buffer + // knows how much we read. + self.buffer.consume(consumed); + + // Handle the error. EOF is a bit tricky, but otherwise, we just stop + // the parser cold. + match self.err { + None => {} + Some(ErrIo(io::IoError { kind: io::EndOfFile, .. })) => { + // If we get EOF while we're trying to parse a new record + // but haven't actually seen any fields yet (i.e., trailing + // new lines in a file), then we should immediately stop the + // parser. + if *pmachine.state == StartRecord { + return None; + } + *pmachine.state = EndRecord; + // fallthrough to return current field. + // On the next call, `None` will be returned. + } + Some(ref err) => { + // Reset the state to the beginning so that bad errors + // are always reported. (i.e., Don't let an EndRecord state + // slip in here.) + *pmachine.state = StartRecord; + return Some(Err(err.clone())); + } + } + if self.line_record == 1 { + // This is only copying bytes for the first record. + let bytes = ByteString::from_bytes(pmachine.fieldbuf.as_slice()); + self.first_record.push(bytes); + } + self.field_count += 1; + Some(Ok(pmachine.fieldbuf.as_slice())) + } +} + +#[deriving(Eq, PartialEq, Show)] +enum ParseState { + StartRecord, + EndRecord, + StartField, + EatCRLF, + InField, + InQuotedField, + InQuotedFieldEscape, + InQuotedFieldQuote, +} + +struct ParseMachine<'a> { + fieldbuf: &'a mut Vec, + state: &'a mut ParseState, + delimiter: u8, +} + +impl<'a> ParseMachine<'a> { + #[inline] + fn parse_byte(&mut self, b: u8) { + match *self.state { + StartRecord => self.parse_start_record(b), + EndRecord => unreachable!(), + StartField => self.parse_start_field(b), + EatCRLF => self.parse_eat_crlf(b), + InField => self.parse_in_field(b), + InQuotedField => self.parse_in_quoted_field(b), + InQuotedFieldEscape => self.parse_in_quoted_field_escape(b), + InQuotedFieldQuote => self.parse_in_quoted_field_quote(b), + } + } + + #[inline] + fn parse_start_record(&mut self, b: u8) { + if !is_crlf(b) { + *self.state = StartField; + self.parse_start_field(b); + } + } + + #[inline] + fn parse_start_field(&mut self, b: u8) { + if is_crlf(b) { + *self.state = EatCRLF; + } else if b == QUOTE { + *self.state = InQuotedField; + } else if b == self.delimiter { + // empty field, so return in StartField state, + // which causes a new empty field to be returned + } else { + *self.state = InField; + self.fieldbuf.push(b); + } + } + + #[inline] + fn parse_eat_crlf(&mut self, b: u8) { + if !is_crlf(b) { + *self.state = EndRecord; + } + } + + #[inline] + fn parse_in_field(&mut self, b: u8) { + if is_crlf(b) { + *self.state = EatCRLF; + } else if b == self.delimiter { + *self.state = StartField; + } else { + self.fieldbuf.push(b); + } + } + + #[inline] + fn parse_in_quoted_field(&mut self, b: u8) { + if b == ESCAPE { + *self.state = InQuotedFieldEscape; + } else if b == QUOTE { + *self.state = InQuotedFieldQuote; + } else { + self.fieldbuf.push(b); + } + } + + #[inline] + fn parse_in_quoted_field_escape(&mut self, b: u8) { + *self.state = InQuotedField; + self.fieldbuf.push(b); + } + + #[inline] + fn parse_in_quoted_field_quote(&mut self, b: u8) { + if b == QUOTE { + *self.state = InQuotedField; + self.fieldbuf.push(b); + } else if b == self.delimiter { + *self.state = StartField; + } else if is_crlf(b) { + *self.state = EatCRLF; + } else { + // Should we provide a strict variant that disallows + // random chars after a quote? + *self.state = InField; + self.fieldbuf.push(b); + } + } +} + +/// An iterator of decoded records. +/// +/// The lifetime parameter `'a` refers to the lifetime of the underlying +/// CSV reader. +/// +/// The `R` type parameter refers to the type of the underlying reader. +/// +/// The `D` type parameter refers to the decoded type. +pub struct DecodedRecords<'a, R: 'a, D> { + p: ByteRecords<'a, R>, +} + +impl<'a, R: io::Reader, D: Decodable> Iterator> + for DecodedRecords<'a, R, D> { + fn next(&mut self) -> Option> { + self.p.next().map(|res| { + res.and_then(|byte_record| { + Decodable::decode(&mut Decoded::new(byte_record)) + }) + }) + } +} + +/// An iterator of `String` records. +/// +/// The lifetime parameter `'a` refers to the lifetime of the underlying +/// CSV reader. +/// +/// The `R` type parameter refers to the type of the underlying reader. +pub struct StringRecords<'a, R: 'a> { + p: ByteRecords<'a, R>, +} + +impl<'a, R: io::Reader> Iterator>> + for StringRecords<'a, R> { + fn next(&mut self) -> Option>> { + self.p.next().map(|res| { + res.and_then(|byte_record| { + byte_record_to_utf8(byte_record) + }) + }) + } +} + +/// An iterator of `ByteString` records. +/// +/// The lifetime parameter `'a` refers to the lifetime of the underlying +/// CSV reader. +/// +/// The `R` type parameter refers to the type of the underlying reader. +pub struct ByteRecords<'a, R: 'a> { + p: &'a mut Reader, + first: bool, +} + +impl<'a, R: io::Reader> Iterator>> + for ByteRecords<'a, R> { + fn next(&mut self) -> Option>> { + if self.p.done() { + return None; + } + if !self.first { + // Never do this special first record processing again. + self.first = true; + + // Always consume the header record. This let's us choose to + // return it or ignore it and move on to the next record. + // If headers have been read before this point, then this is + // equivalent to a harmless clone (and no parser progression). + let headers = self.p.byte_headers(); + + // If the header row is empty, then the CSV data contains + // no records. Never return zero-length records! + if headers.as_ref().map(|r| r.is_empty()).unwrap_or(false) { + assert!(self.p.done()); + return None; + } + + // This is important. If the client says this CSV data has no + // headers but calls `headers` before iterating records (which is + // perfectly valid), then we need to make sure to return that + // first record. + // + // If the client says the CSV data has headers, then the first + // record should always be ignored. + if !self.p.has_headers { + return Some(headers); + } + } + + let mut record = Vec::with_capacity(self.p.first_record.len()); + for field in self.p { + match field { + Err(err) => return Some(Err(err)), + Ok(bytes) => record.push(ByteString::from_bytes(bytes)), + } + } + Some(Ok(record)) + } +} + +#[inline] +fn is_crlf(b: u8) -> bool { b == b'\n' || b == b'\r' } + +fn byte_record_to_utf8(record: Vec) -> CsvResult> { + for bytes in record.iter() { + if !::std::str::is_utf8(bytes.as_slice()) { + return Err(ErrDecode(format!( + "Could not decode the following bytes as UTF-8: {}", bytes))); + } + } + Ok(unsafe { transmute(record) }) +} diff --git a/src/test.rs b/src/test.rs index 5e52836..5f5f630 100644 --- a/src/test.rs +++ b/src/test.rs @@ -1,5 +1,6 @@ -use quickcheck::{TestResult, quickcheck}; -use {Encoder, Decoder, ByteString, Error}; +use std::io::Reader as IoReader; +use std::io::Writer as IoWriter; +use {Reader, Writer, ByteString, CsvResult, collect}; fn ordie(res: Result) -> T { match res { @@ -8,54 +9,37 @@ fn ordie(res: Result) -> T { } } -#[test] -fn same_record() { - fn prop(input: Vec) -> TestResult { - if input.len() == 0 { - return TestResult::discard() - } - if input.iter().any(|s| s.len() == 0) { - return TestResult::discard() - } - - let mut senc = Encoder::mem_encoder(); - ordie(senc.encode(input.as_slice())); - - let mut dec = Decoder::from_str(senc.to_string()).no_headers(); - let output: Vec = ordie(dec.decode()); - - TestResult::from_bool(input == output) - } - quickcheck(prop); +fn bytes>(bs: S) -> ByteString { + ByteString::from_bytes(bs) } #[test] fn encoder_simple() { - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(("springsteen", 's', 1i, 0.14f64, false))); - assert_eq!("springsteen,s,1,0.14,false\n", senc.to_string()); + assert_eq!("springsteen,s,1,0.14,false\n", senc.as_string()); } #[test] fn encoder_simple_crlf() { - let mut senc = Encoder::mem_encoder().crlf(true); + let mut senc = Writer::from_memory().crlf(true); ordie(senc.encode(("springsteen", 's', 1i, 0.14f64, false))); - assert_eq!("springsteen,s,1,0.14,false\r\n", senc.to_string()); + assert_eq!("springsteen,s,1,0.14,false\r\n", senc.as_string()); } #[test] fn encoder_simple_tabbed() { - let mut senc = Encoder::mem_encoder().separator(b'\t'); + let mut senc = Writer::from_memory().delimiter(b'\t'); ordie(senc.encode(("springsteen", 's', 1i, 0.14f64, false))); - assert_eq!("springsteen\ts\t1\t0.14\tfalse\n", senc.to_string()); + assert_eq!("springsteen\ts\t1\t0.14\tfalse\n", senc.as_string()); } #[test] fn encoder_same_length_records() { - let mut senc = Encoder::mem_encoder().enforce_same_length(true); + let mut senc = Writer::from_memory().flexible(false); ordie(senc.encode(vec!('a'))); match senc.encode(vec!('a', 'b')) { - Ok(_) => fail!("Encoder should report an error when records of \ + Ok(_) => fail!("Writer should report an error when records of \ varying length are added and records of same \ length is enabled."), Err(_) => {} @@ -64,30 +48,30 @@ fn encoder_same_length_records() { #[test] fn encoder_quoted_quotes() { - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(vec!("sprin\"g\"steen"))); - assert_eq!("\"sprin\"\"g\"\"steen\"\n", senc.to_string()); + assert_eq!("\"sprin\"\"g\"\"steen\"\n", senc.as_string()); } #[test] fn encoder_quoted_sep() { - let mut senc = Encoder::mem_encoder().separator(b','); + let mut senc = Writer::from_memory().delimiter(b','); ordie(senc.encode(vec!("spring,steen"))); - assert_eq!("\"spring,steen\"\n", senc.to_string()); + assert_eq!("\"spring,steen\"\n", senc.as_string()); } #[test] fn encoder_quoted_newlines() { - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(vec!("spring\nsteen"))); - assert_eq!("\"spring\nsteen\"\n", senc.to_string()); + assert_eq!("\"spring\nsteen\"\n", senc.as_string()); } #[test] fn encoder_zero() { - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); match senc.encode::>(vec!()) { - Ok(_) => fail!("Encoder should report an error when trying to \ + Ok(_) => fail!("Writer should report an error when trying to \ encode records of length 0."), Err(_) => {} } @@ -95,47 +79,49 @@ fn encoder_zero() { #[test] fn decoder_simple_nonl() { - let mut d = Decoder::from_str("springsteen,s,1,0.14,false").no_headers(); - let r: (String, char, int, f64, bool) = ordie(d.decode()); - assert_eq!(r, ("springsteen".to_string(), 's', 1, 0.14, false)); + let mut d = Reader::from_string("springsteen,s,1,0.14,false").no_headers(); + let r: Vec<(String, char, int, f64, bool)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("springsteen".to_string(), 's', 1, 0.14, false)]); } #[test] fn decoder_simple_nonl_comma() { - let mut d = Decoder::from_str("springsteen,s,").no_headers(); - let r: (String, char, Option) = ordie(d.decode()); - assert_eq!(r, ("springsteen".to_string(), 's', None)); + let mut d = Reader::from_string("springsteen,s,").no_headers(); + let r: Vec<(String, char, Option)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("springsteen".to_string(), 's', None)]); } #[test] fn decoder_simple() { - let mut d = Decoder::from_str("springsteen,s,1,0.14,false\n").no_headers(); - let r: (String, char, int, f64, bool) = ordie(d.decode()); - assert_eq!(r, ("springsteen".to_string(), 's', 1, 0.14, false)); + let mut d = Reader::from_string("springsteen,s,1,0.14,false\n") + .no_headers(); + let r: Vec<(String, char, int, f64, bool)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("springsteen".to_string(), 's', 1, 0.14, false)]); } #[test] fn decoder_simple_crlf() { - let mut d = Decoder::from_str("springsteen,s,1,0.1,false\r\n").no_headers(); - let r: (String, char, int, f64, bool) = ordie(d.decode()); - assert_eq!(r, ("springsteen".to_string(), 's', 1, 0.1, false)); + let mut d = Reader::from_string("springsteen,s,1,0.1,false\r\n") + .no_headers(); + let r: Vec<(String, char, int, f64, bool)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("springsteen".to_string(), 's', 1, 0.1, false)]); } #[test] fn decoder_simple_tabbed() { - let mut d = Decoder::from_str("springsteen\ts\t1\t0.14\tfalse\r\n") - .no_headers() - .separator(b'\t'); - let r: (String, char, int, f64, bool) = ordie(d.decode()); - assert_eq!(r, ("springsteen".to_string(), 's', 1, 0.14, false)); + let mut d = Reader::from_string("springsteen\ts\t1\t0.14\tfalse\r\n") + .no_headers() + .delimiter(b'\t'); + let r: Vec<(String, char, int, f64, bool)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("springsteen".to_string(), 's', 1, 0.14, false)]); } #[test] fn decoder_same_length_records() { - let mut d = Decoder::from_str("a\na,b") - .no_headers() - .enforce_same_length(true); - match d.decode_all::>() { + let mut d = Reader::from_string("a\na,b") + .no_headers() + .flexible(false); + match collect(d.decode::>()) { Ok(_) => fail!("Decoder should report an error when records of \ varying length are decoded and records of same \ length if enabled."), @@ -145,99 +131,100 @@ fn decoder_same_length_records() { #[test] fn decoder_different_length_records() { - let mut d = Decoder::from_str("a\na,b") + let mut d = Reader::from_string("a\na,b") .no_headers() - .enforce_same_length(false); - let rs = ordie(d.decode_all::>()); + .flexible(true); + let rs = ordie(collect(d.decode::>())); assert_eq!(rs, vec!(vec!("a".to_string()), vec!("a".to_string(), "b".to_string()))); } #[test] fn decoder_headers() { - let mut d = Decoder::from_str("a,b,c\n1,2,3"); + let mut d = Reader::from_string("a,b,c\n1,2,3"); assert_eq!(ordie(d.headers()), vec!("a".to_string(), "b".to_string(), "c".to_string())); - let r: (uint, uint, uint) = ordie(d.decode()); - assert_eq!(r, (1, 2, 3)); + let r: Vec<(uint, uint, uint)> = ordie(collect(d.decode())); + assert_eq!(r, vec![(1, 2, 3)]); } #[test] fn decoder_empty_lines() { - let mut d = Decoder::from_str("1,2\n\n3,4\n\n\n\n5,6\n\n").no_headers(); - let vals: Vec<(uint, uint)> = ordie(d.decode_all()); + let mut d = Reader::from_string("1,2\n\n3,4\n\n\n\n5,6\n\n").no_headers(); + let vals: Vec<(uint, uint)> = ordie(collect(d.decode())); assert_eq!(vals, vec!((1, 2), (3, 4), (5, 6))); } #[test] fn decoder_empty_lines_crlf() { - let mut d = Decoder::from_str("1,2\r\n\r\n3,4\r\n\r\n\r\n\r\n5,6\r\n\r\n") + let mut d = Reader::from_string("1,2\r\n\r\n3,4\r\n\r\n\r\n\r\n5,6\r\n\r\n") .no_headers(); - let vals: Vec<(uint, uint)> = ordie(d.decode_all()); + let vals: Vec<(uint, uint)> = ordie(collect(d.decode())); assert_eq!(vals, vec!((1, 2), (3, 4), (5, 6))); } #[test] fn decoder_empties_headers() { - let mut d = Decoder::from_str("a,b,c\n\n\n\n"); + let mut d = Reader::from_string("a,b,c\n\n\n\n"); assert_eq!(ordie(d.headers()), vec!("a".to_string(), "b".to_string(), "c".to_string())); - assert!(d.iter().next().is_none()); + assert!(d.next().is_none()); } #[test] fn decoder_all_empties() { - let mut d = Decoder::from_str("\n\n\n\n").no_headers(); - assert!(d.iter().next().is_none()); + let mut d = Reader::from_string("\n\n\n\n").no_headers(); + assert!(d.next().is_none()); } #[test] fn decoder_all_empties_crlf() { - let mut d = Decoder::from_str("\r\n\r\n\r\n\r\n").no_headers(); - assert!(d.iter().next().is_none()); + let mut d = Reader::from_string("\r\n\r\n\r\n\r\n").no_headers(); + assert!(d.next().is_none()); } #[test] fn decoder_empty_strings() { - let mut d = Decoder::from_str("\"\"").no_headers(); - let r: (String,) = ordie(d.decode()); - assert_eq!(r, ("".to_string(),)); + let mut d = Reader::from_string("\"\"").no_headers(); + let r: Vec<(String,)> = ordie(collect(d.decode())); + assert_eq!(r, vec![("".to_string(),)]); } #[test] fn decoder_quotes() { - let mut d = Decoder::from_str("\" a \", \"1\" ,\"1\", 1 ") + let mut d = Reader::from_string("\" a \", \"1\" ,\"1\", 1 ") .no_headers(); - let r: (String, String, uint, uint) = ordie(d.decode()); - assert_eq!(r, (" a ".to_string(), "1".to_string(), 1, 1)); + let r: Vec<(String, String, uint, uint)> = ordie(collect(d.decode())); + assert_eq!(r, vec![(" a ".to_string(), " \"1\" ".to_string(), 1, 1)]); } #[test] fn decoder_headers_eof() { - let mut d = Decoder::from_str(""); - assert!(d.headers().is_err()); + let mut d = Reader::from_string(""); + assert!(d.headers().is_ok()); + assert!(d.done()); } #[test] fn decoder_no_headers_first_record() { - let mut d = Decoder::from_str("a,b").no_headers(); + let mut d = Reader::from_string("a,b").no_headers(); let r = ordie(d.headers()); assert_eq!(r, vec!("a".to_string(), "b".to_string())); } #[test] fn decoder_no_headers_no_skip() { - let mut d = Decoder::from_str("a,b\nc,d").no_headers(); + let mut d = Reader::from_string("a,b\nc,d").no_headers(); let _ = ordie(d.headers()); - let rows: Vec, Error>> = d.iter().collect(); + let rows: Vec>> = d.records().collect(); assert_eq!(rows.len(), 2); } #[test] fn decoder_empty_string() { - let mut d = Decoder::from_str(""); - let rows: Vec, Error>> = d.iter().collect(); + let mut d = Reader::from_string(""); + let rows: Vec>> = d.records().collect(); assert!(rows.len() == 0); } @@ -255,90 +242,101 @@ enum Color { #[test] fn decoder_enum() { - let mut d = Decoder::from_str("ReD").no_headers(); - let r: (Color,) = ordie(d.decode()); - assert_eq!(r, (Red,)); + let mut d = Reader::from_string("ReD").no_headers(); + let r: Vec<(Color,)> = ordie(collect(d.decode())); + assert_eq!(r, vec![(Red,)]); } #[test] fn decoder_enum_arg() { - let mut d = Decoder::from_str("false,-5,5").no_headers(); - let r: (Val, Val, Val) = ordie(d.decode()); - assert_eq!(r, (Bool(false), Signed(-5), Unsigned(5))); + let mut d = Reader::from_string("false,-5,5").no_headers(); + let r: Vec<(Val, Val, Val)> = ordie(collect(d.decode())); + assert_eq!(r, vec![(Bool(false), Signed(-5), Unsigned(5))]); } #[test] fn decoder_option() { - let mut d = Decoder::from_str(",1").no_headers(); - let r: (Option, uint) = ordie(d.decode()); - assert_eq!(r, (None, 1)); + let mut d = Reader::from_string(",1").no_headers(); + let r: Vec<(Option, uint)> = ordie(collect(d.decode())); + assert_eq!(r, vec![(None, 1)]); } #[test] fn encoder_enum() { let r = (Red,); - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(r)); - assert_eq!("Red\n", senc.to_string()); + assert_eq!("Red\n", senc.as_string()); } #[test] fn encoder_enum_arg() { let r = (Bool(false), Signed(-5), Unsigned(5)); - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(r)); - assert_eq!("false,-5,5\n", senc.to_string()); + assert_eq!("false,-5,5\n", senc.as_string()); } #[test] fn encoder_option() { let r: (Option, uint) = (None, 1); - let mut senc = Encoder::mem_encoder(); + let mut senc = Writer::from_memory(); ordie(senc.encode(r)); - assert_eq!(",1\n", senc.to_string()); + assert_eq!(",1\n", senc.as_string()); +} + +#[test] +fn trailing_lines_no_record() { + let s = " +a,b,c +d,e,f +"; + let mut rdr = Reader::from_string(s); + let mut count = 0u; + while !rdr.done() { + for r in rdr { let _ = ordie(r); } + count += 1; + } + assert_eq!(count, 2); } #[test] fn decoder_sample() { let s = "1997,Ford,E350,\n\ - \"1997\", \"Ford\", \"E350\", \"Super, luxurious truck\"\n\ - 1997,Ford,E350, \"Go get one now\n\ + \"1997\", \"Ford\",\"E350\",\"Super, luxurious truck\"\n\ + 1997,Ford,E350,\"Go get one now\n\ they are going fast\""; - let mut d = Decoder::from_str(s); - let r: Vec<(uint, String, String, String)> = ordie(d.decode_all()); - assert_eq!(*r.get(1).ref0(), 1997); -} - -fn bytes>(bs: S) -> ByteString { - ByteString::from_bytes(bs) + let mut d = Reader::from_string(s); + let r: Vec<(uint, String, String, String)> = ordie(collect(d.decode())); + assert_eq!(*r[1].ref0(), 1997); } #[test] fn decoder_byte_strings() { - let mut d = Decoder::from_str("abc,xyz").no_headers(); - let r = ordie(d.record_bytes()); - assert_eq!(r, vec!(bytes(b"abc"), bytes(b"xyz"))); + let mut d = Reader::from_string("abc,xyz").no_headers(); + let r = ordie(d.byte_records().next().unwrap()); + assert_eq!(r, vec![bytes(b"abc"), bytes(b"xyz")]); } #[test] fn decoder_byte_strings_invalid_utf8() { - let mut d = Decoder::from_bytes(b"a\xffbc,xyz").no_headers(); - let r = ordie(d.record_bytes()); - assert_eq!(r, vec!(bytes(b"a\xffbc"), bytes(b"xyz"))); + let mut d = Reader::from_bytes(b"a\xffbc,xyz").no_headers(); + let r = ordie(d.byte_records().next().unwrap()); + assert_eq!(r, vec![bytes(b"a\xffbc"), bytes(b"xyz")]); } #[test] #[should_fail] fn decoder_invalid_utf8() { - let mut d = Decoder::from_bytes(b"a\xffbc,xyz").no_headers(); - ordie(d.record()); + let mut d = Reader::from_bytes(b"a\xffbc,xyz").no_headers(); + ordie(d.records().next().unwrap()); } #[test] fn decoder_iter() { - let mut d = Decoder::from_str("andrew,1\nkait,2\ncauchy,3\nplato,4") - .no_headers(); - let rs: Vec = d.iter_decode::<(String, uint)>() + let mut d = Reader::from_string("andrew,1\nkait,2\ncauchy,3\nplato,4") + .no_headers(); + let rs: Vec = d.decode::<(String, uint)>() .map(|r| r.unwrap().val1()).collect(); assert_eq!(rs, vec!(1u, 2, 3, 4)); } @@ -351,15 +349,15 @@ fn decoder_reset() { let mut buf = io::MemReader::new(data.as_bytes().to_vec()); { - let mut d = Decoder::from_reader(buf.by_ref()).no_headers(); - let vals: Vec<(uint, uint)> = ordie(d.decode_all()); + let mut d = Reader::from_reader(buf.by_ref()).no_headers(); + let vals: Vec<(uint, uint)> = ordie(collect(d.decode())); assert_eq!(vals, vec!((1, 2), (3, 4), (5, 6))); } buf.seek(0, io::SeekSet).unwrap(); { - let mut d = Decoder::from_reader(buf.by_ref()).no_headers(); - let vals: Vec<(uint, uint)> = ordie(d.decode_all()); + let mut d = Reader::from_reader(buf.by_ref()).no_headers(); + let vals: Vec<(uint, uint)> = ordie(collect(d.decode())); assert_eq!(vals, vec!((1, 2), (3, 4), (5, 6))); } } diff --git a/src/writer.rs b/src/writer.rs new file mode 100644 index 0000000..3c05590 --- /dev/null +++ b/src/writer.rs @@ -0,0 +1,363 @@ +use std::io; +use std::str; + +use serialize::Encodable; + +use { + ByteString, CsvResult, Encoded, + Error, ErrEncode, ErrIo, +}; + +/// A CSV writer. +/// +/// This writer provides a convenient interface for encoding CSV data. While +/// creating CSV data is much easier than parsing it, having a writer can +/// be convenient because it can handle quoting for you automatically. +/// Moreover, this particular writer supports `Encodable` types, which makes +/// it easy to write your custom types as CSV records. +/// +/// All CSV data produced by this writer, with default options, conforms with +/// [RFC 4180](http://tools.ietf.org/html/rfc4180). (If certain options like +/// flexible record lengths are enabled, then compliance with RFC 4180 cannot +/// be guaranteed.) +/// +/// ### Example +/// +/// Here's an example that encodes word pairs and their edit distances: +/// +/// ```rust +/// let records = vec![ +/// ("sticker", "mortals", 7u), +/// ("bribed", "personae", 7u), +/// ("wobbling", "poncing", 4u), +/// ("interposed", "emmett", 9u), +/// ("chocolate", "refile", 7u), +/// ]; +/// +/// let mut wtr = csv::Writer::from_memory(); +/// for record in records.into_iter() { +/// let result = wtr.encode(record); +/// assert!(result.is_ok()); +/// } +/// ``` +pub struct Writer { + buf: io::BufferedWriter, + delimiter: u8, + flexible: bool, + crlf: bool, + first_len: uint, +} + +impl Writer> { + /// Creates a new `Writer` that writes CSV data to the file path given. + /// + /// The file is created if it does not already exist and is truncated + /// otherwise. + pub fn from_file(path: &Path) -> Writer> { + Writer::from_writer(io::File::create(path)) + } +} + +impl Writer { + /// Writes a record by encoding any `Encodable` value. + /// + /// This is the most convenient way to write CSV data. Most Rust types + /// map to CSV data in a straight forward way. A vector is just a sequence + /// of fields. Similarly for a struct. Enumerations of zero or one + /// arguments are supported too. (Enums with zero arguments encode to their + /// name, while enums of one argument encode to their constituent value.) + /// Option types are also supported (`None` encodes to an empty field). + /// + /// ### Example + /// + /// This example encodes word pairs that may or may not have their + /// edit distances computed. + /// + /// ```rust + /// extern crate serialize; + /// # extern crate csv; + /// # fn main() { + /// + /// #[deriving(Encodable)] + /// struct Distance { + /// name1: &'static str, + /// name2: &'static str, + /// dist: Option, + /// } + /// + /// let records = vec![ + /// Distance { name1: "sticker", name2: "mortals", dist: None }, + /// Distance { name1: "bribed", name2: "personae", dist: Some(7) }, + /// ]; + /// + /// let mut wtr = csv::Writer::from_memory(); + /// for record in records.into_iter() { + /// let result = wtr.encode(record); + /// assert!(result.is_ok()); + /// } + /// assert_eq!(wtr.as_string(), "sticker,mortals,\nbribed,personae,7\n"); + /// # } + /// ``` + pub fn encode> + (&mut self, e: E) -> CsvResult<()> { + let mut erecord = Encoded::new(); + try!(e.encode(&mut erecord)); + self.write_bytes(erecord.unwrap().into_iter()) + } + + /// Writes a record of Unicode strings. + /// + /// This is meant to be the standard method provided by most CSV writers. + /// That is, it writes a record of strings---no more and no less. + /// + /// This method accepts an iterator of *fields* for a single record. Each + /// field must be a `&str`, which allows the caller to control allocation. + /// + /// ### Example + /// + /// This shows how to write string records. + /// + /// ```rust + /// let records = vec![ + /// vec!["sticker", "mortals", "7"], + /// vec!["bribed", "personae", "7"], + /// vec!["wobbling", "poncing", "4"], + /// vec!["interposed", "emmett", "9"], + /// vec!["chocolate", "refile", "7"], + /// ]; + /// + /// let mut wtr = csv::Writer::from_memory(); + /// for record in records.into_iter() { + /// let result = wtr.write(record.into_iter()); + /// assert!(result.is_ok()); + /// } + /// ``` + /// + /// Here's a similar example, but with `String` values instead of `&str`. + /// + /// ```rust + /// let records: Vec> = vec![ + /// vec!["sticker", "mortals", "7"], + /// vec!["bribed", "personae", "7"], + /// vec!["wobbling", "poncing", "4"], + /// vec!["interposed", "emmett", "9"], + /// vec!["chocolate", "refile", "7"], + /// ].into_iter() + /// .map(|r| r.into_iter().map(|f| f.to_string()).collect()) + /// .collect(); + /// + /// let mut wtr = csv::Writer::from_memory(); + /// for record in records.into_iter() { + /// // It is important to use `iter()` here instead of `into_iter()`. + /// // Capturing the strings by reference requires that they live + /// // long enough! + /// let result = wtr.write(record.iter().map(|f| f.as_slice())); + /// assert!(result.is_ok()); + /// } + /// ``` + /// + /// If you think this is stupidly inconvenient for such a simple thing, then + /// you're right. You should just use the `encode` method. Generally, you + /// should reach for these raw `write` and `write_bytes` methods only when + /// you need the performance. (i.e., The iterator may let you avoid + /// allocating intermediate data.) + pub fn write<'a, I: Iterator<&'a str>> + (&mut self, r: I) -> CsvResult<()> { + self.write_bytes(r.map(|r| r.as_bytes())) + } + + /// Writes a record of *byte strings*. + /// + /// This is useful when you need to create CSV data that is not UTF-8 + /// encoded, or more likely, if you are transforming CSV data that you + /// do not control with an unknown or malformed encoding. + /// + /// Note that this writes a *single* record. It accepts an iterator of + /// *fields* for that record. Each field must satisfy the `Slice` trait. + /// For example, your iterator can produce `Vec` or `&[u8]`, which + /// allows you to avoid allocation if possible. + /// + /// ### Example + /// + /// This shows how to write records that do not correspond to a valid UTF-8 + /// encoding. (Note the use of Rust's byte string syntax!) + /// + /// ```rust + /// let mut wtr = csv::Writer::from_memory(); + /// let result = wtr.write_bytes(vec![b"\xff", b"\x00"].into_iter()); + /// assert!(result.is_ok()); + /// + /// assert_eq!(wtr.as_bytes(), b"\xff,\x00\n"); + /// ``` + pub fn write_bytes, I: Iterator> + (&mut self, r: I) -> CsvResult<()> { + let mut count = 0; + let delim = self.delimiter; + for (i, field) in r.enumerate() { + count += 1; + if i > 0 { + try!(self.w_bytes([delim])); + } + try!(self.w_user_bytes(field.as_slice())); + } + try!(self.w_lineterm()); + self.set_first_len(count) + } +} + +impl Writer { + /// Creates a new CSV writer that writes to the `io::Writer` given. + /// + /// Note that the writer is buffered for you automatically. + pub fn from_writer(w: W) -> Writer { + Writer::from_buffer(io::BufferedWriter::new(w)) + } + + /// Creates a new CSV writer that writes to the buffer given. + /// + /// This lets you specify your own buffered writer (e.g., use a different + /// capacity). All other constructors wrap the writer given in a buffer + /// with default capacity. + pub fn from_buffer(buf: io::BufferedWriter) -> Writer { + Writer { + buf: buf, + delimiter: b',', + flexible: false, + crlf: false, + first_len: 0, + } + } + + /// The delimiter to use when writing CSV data. + /// + /// Since the CSV writer is meant to be mostly encoding agnostic, you must + /// specify the delimiter as a single ASCII byte. For example, to write + /// tab-delimited data, you would use `b'\t'`. + /// + /// The default value is `b','`. + pub fn delimiter(mut self, delimiter: u8) -> Writer { + self.delimiter = delimiter; + self + } + + /// Whether to allow flexible length records when writing CSV data. + /// + /// When this is set to `true`, records in the CSV data can have different + /// lengths. By default, this is disabled, which will cause the CSV writer + /// to return an error if it tries to write a record that has a different + /// length than other records it has already written. + pub fn flexible(mut self, yes: bool) -> Writer { + self.flexible = yes; + self + } + + /// Whether to use CRLF (i.e., `\r\n`) line endings or not. + /// + /// By default, this is disabled. LF (`\n`) line endings are used. + pub fn crlf(mut self, yes: bool) -> Writer { + self.crlf = yes; + self + } + + /// Flushes the underlying buffer. + pub fn flush(&mut self) -> CsvResult<()> { + self.buf.flush().map_err(ErrIo) + } +} + +impl Writer { + /// Creates a new CSV writer that writes to an in memory buffer. At any + /// time, `to_string` or `to_bytes` can be called to retrieve the + /// cumulative CSV data. + pub fn from_memory() -> Writer { + Writer::from_writer(io::MemWriter::new()) + } + + /// Returns the written CSV data as a string. + pub fn as_string<'r>(&'r mut self) -> &'r str { + match self.buf.flush() { + // shouldn't fail with MemWriter + Err(err) => fail!("Error flushing to MemWriter: {}", err), + // This seems suspicious. If the client only writes `String` + // values, then this can never fail. If the client is writing + // byte strings, then they should be calling `to_bytes` instead. + Ok(()) => str::from_utf8(self.buf.get_ref().get_ref()).unwrap(), + } + } + + /// Returns the encoded CSV data as raw bytes. + pub fn as_bytes<'r>(&'r mut self) -> &'r [u8] { + match self.buf.flush() { + // shouldn't fail with MemWriter + Err(err) => fail!("Error flushing to MemWriter: {}", err), + Ok(()) => self.buf.get_ref().get_ref(), + } + } +} + +impl Writer { + fn err(&self, msg: S) -> CsvResult<()> { + Err(ErrEncode(msg.into_string())) + } + + fn w_bytes(&mut self, s: &[u8]) -> CsvResult<()> { + self.buf.write(s).map_err(ErrIo) + } + + fn w_user_bytes(&mut self, s: &[u8]) -> CsvResult<()> { + let delim = self.delimiter; + let quotable = |&c: &u8| { + c == delim || c == b'\n' || c == b'\r' || c == b'"' + }; + if s.iter().any(quotable) { + self.w_bytes(quote(s).as_slice()) + } else { + self.w_bytes(s) + } + } + + fn w_lineterm(&mut self) -> CsvResult<()> { + if self.crlf { + self.w_bytes(b"\r\n") + } else { + self.w_bytes(b"\n") + } + } + + fn set_first_len(&mut self, cur_len: uint) -> CsvResult<()> { + if cur_len == 0 { + return self.err("Records must have length greater than 0.") + } + if !self.flexible { + if self.first_len == 0 { + self.first_len = cur_len; + } else if self.first_len != cur_len { + return self.err(format!( + "Record has length {} but other records have length {}", + cur_len, self.first_len)) + } + } + Ok(()) + } +} + +fn quote(mut s: &[u8]) -> ByteString { + let mut buf = Vec::with_capacity(s.len() + 2); + + buf.push(b'"'); + loop { + match s.position_elem(&b'"') { + None => { + buf.push_all(s); + break + } + Some(next_quote) => { + buf.push_all(s.slice_to(next_quote + 1)); + buf.push(b'"'); + s = s.slice_from(next_quote + 1); + } + } + } + buf.push(b'"'); + ByteString::from_bytes(buf) +}