greenmonster 0.4.0.dev → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. data/.rspec +2 -0
  2. data/README.markdown +19 -52
  3. data/Rakefile +3 -0
  4. data/greenmonster.gemspec +12 -13
  5. data/lib/greenmonster.rb +47 -43
  6. data/lib/greenmonster/spider.rb +107 -142
  7. data/lib/greenmonster/version.rb +2 -2
  8. data/{test/games/mlb → spec/games/tst}/year_2012/month_03/day_27/gid_2012_03_27_aaamlb_aabmlb_1/blank.txt +0 -0
  9. data/{test/games/tst/year_2012/month_03/day_27/gid_2012_03_27_aaamlb_aabmlb_1 → spec/games/tst/year_2012/month_03/day_27/gid_2012_03_27_aaamlb_aabmlb_1_bak}/blank.txt +0 -0
  10. data/spec/games/tst/year_2012/month_03/day_27/not_2012_03_27_aaamlb_aabmlb_1/blank.txt +0 -0
  11. data/spec/greenmonster/spider_spec.rb +85 -0
  12. data/spec/greenmonster_spec.rb +45 -0
  13. data/spec/spec_helper.rb +25 -0
  14. metadata +52 -71
  15. data/lib/generators/greenmonster/install_mlb_games_generator.rb +0 -20
  16. data/lib/generators/greenmonster/install_players_generator.rb +0 -20
  17. data/lib/generators/templates/install_greenmonster_mlb_games_migration.rb +0 -54
  18. data/lib/generators/templates/install_greenmonster_players_migration.rb +0 -37
  19. data/lib/greenmonster/model_extensions/mlb_game.rb +0 -106
  20. data/lib/greenmonster/model_extensions/mlb_probable_pitcher.rb +0 -11
  21. data/lib/greenmonster/model_extensions/player.rb +0 -16
  22. data/lib/greenmonster/parser.rb +0 -27
  23. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/boxscore.xml +0 -5
  24. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/eventLog.xml +0 -1
  25. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/inning/inning_all.xml +0 -1
  26. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/inning/inning_hit.xml +0 -1
  27. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/linescore.xml +0 -117
  28. data/test/games/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/players.xml +0 -56
  29. data/test/test_create_mlb_game_from_gameday_xml_game.rb +0 -12
  30. data/test/test_create_players_from_gameday_xml_game.rb +0 -8
  31. data/test/test_greenmonster.rb +0 -12
  32. data/test/test_greenmonster_player.rb +0 -7
  33. data/test/test_greenmonster_spider.rb +0 -107
  34. data/test/test_greenmonster_traversal.rb +0 -31
  35. data/test/test_helper.rb +0 -78
  36. data/test/test_line_score.rb +0 -12
  37. data/test/test_parse_mlb_probable_pitchers_from_linescore_data.rb +0 -14
  38. data/test/test_parse_players_from_gameday_xml_files.rb +0 -21
  39. data/test/test_update_mlb_game_with_linescore_data.rb +0 -23
@@ -1,37 +0,0 @@
1
- class InstallGreenmonsterPlayers < ActiveRecord::Migration
2
- def self.up
3
- create_table "players", :force => true do |t|
4
- t.string "first"
5
- t.string "last"
6
- t.integer "bis_id"
7
- t.string "retrosheet_id"
8
- t.integer "baseball_db_id"
9
- t.string "baseball_prospectus_id"
10
- t.string "baseball_reference_id"
11
- t.string "lahman_id"
12
- t.integer "westbay_id"
13
- t.integer "korea_kbo_id"
14
- t.integer "japan_npb_id"
15
- t.string "uuid", :limit => 150
16
- t.boolean "current"
17
- t.boolean "duplicate"
18
- t.datetime "created_at"
19
- t.datetime "updated_at"
20
- end
21
-
22
- add_index "players", ["baseball_db_id"], :name => "players-baseball_db_id"
23
- add_index "players", ["baseball_prospectus_id"], :name => "players-baseball_prospectus_id"
24
- add_index "players", ["baseball_reference_id"], :name => "players-baseball_reference_id"
25
- add_index "players", ["bis_id"], :name => "players-bis_id"
26
- add_index "players", ["japan_npb_id"], :name => "players-japan_npb_id"
27
- add_index "players", ["korea_kbo_id"], :name => "players-korea_kbo_id"
28
- add_index "players", ["lahman_id"], :name => "players-lahman_id"
29
- add_index "players", ["retrosheet_id"], :name => "players-retrosheet_id"
30
- add_index "players", ["uuid"], :name => "players-uuid"
31
- add_index "players", ["westbay_id"], :name => "players-westbay_id"
32
- end
33
-
34
- def self.down
35
- drop_table :players
36
- end
37
- end
@@ -1,106 +0,0 @@
1
- module Greenmonster
2
- module MlbGame
3
- def to_s
4
- "Game #{self.game_pk}: #{self.game_id[15,6]} @ #{self.game_id[22,6]}"
5
- rescue
6
- "Game #{self.game_pk}: (Game ID not valid.)"
7
- end
8
-
9
- def update_with_line_score_data(line_score)
10
- # Set Game Primary Key
11
- self.game_pk = line_score.attributes['game_pk'].value.to_i
12
- self.game_id = if line_score.has_attribute?('gameday_link')
13
- line_score.attribute('gameday_link').value.gsub('_','')
14
- elsif line_score.has_attribute?('id')
15
- line_score.attribute('id').value.gsub('/','').gsub('-','')
16
- else
17
- raise "Unknown game_id, need new method for game."
18
- end
19
-
20
- self.game_num = self.game_id[20].to_i
21
-
22
- # Set date
23
- self.date = case
24
- when line_score.attributes['id']
25
- Date.new(
26
- line_score.attributes['id'].value[0,4].to_i,
27
- line_score.attributes['id'].value[5,2].to_i,
28
- line_score.attributes['id'].value[8,2].to_i
29
- )
30
- when line_score.attributes['gameday_link']
31
- Date.new(
32
- line_score.attributes['gameday_link'].value[0,4].to_i,
33
- line_score.attributes['gameday_link'].value[5,2].to_i,
34
- line_score.attributes['gameday_link'].value[8,2].to_i
35
- )
36
- else
37
- Date.new(0000,00,00)
38
- end
39
-
40
- # Set start time
41
- if line_score.attributes['time'] and line_score.attributes['time'].value.include?(':')
42
- self.game_time = Time.parse("#{self.date} #{line_score.attributes['time'].value} #{line_score.attributes['ampm']}")
43
- else
44
- self.game_time = Time.new(self.date.year,self.date.month,self.date.day,19,30)
45
- end
46
-
47
- # Set game status and type
48
- self.game_status = line_score.attributes['ind'].value if line_score.attributes['ind']
49
- self.game_type = line_score.attributes['game_type'].value if line_score.attributes['game_type']
50
-
51
- # Set venue information
52
- if line_score and line_score.attributes["venue"] and line_score.attributes["venue"].value and line_score.attributes['venue_id']
53
- self.venue_id = line_score.attributes['venue_id'].value.to_i
54
- self.game_venue = line_score.attributes['venue'].value
55
- end
56
-
57
- # Set leagues
58
- self.home_league_id = line_score.attributes["home_league_id"].value.to_i if line_score.attributes["home_league_id"]
59
- self.away_league_id = line_score.attributes["away_league_id"].value.to_i if line_score.attributes["away_league_id"]
60
-
61
- # Set divisions
62
- self.home_division = line_score.attributes["home_division"].value if line_score.attributes["home_division"]
63
- self.away_division = line_score.attributes["away_division"].value if line_score.attributes["away_division"]
64
-
65
- # Set sport codes
66
- self.home_sport_code = line_score.attributes["home_sport_code"].value if line_score.attributes["home_sport_code"]
67
- self.away_sport_code = line_score.attributes["away_sport_code"].value if line_score.attributes["away_sport_code"]
68
- self.sport_code = self.home_sport_code
69
-
70
- # Set teams
71
- self.home_team_id = line_score.attributes["home_team_id"].value.to_i if line_score.attributes["home_team_id"]
72
- self.away_team_id = line_score.attributes["away_team_id"].value.to_i if line_score.attributes["away_team_id"]
73
-
74
- possible_duplicate = self.class.where(:id => self.game_pk, :game_status => ["F","FR"]).where("date <= '#{self.date}'").first
75
-
76
- raise "Gotcha" if possible_duplicate
77
-
78
- begin
79
- puts "PD: #{possible_duplicate}"
80
- puts "PD_id: #{self.game_id}"
81
- rescue
82
- puts "rescued"
83
- end
84
-
85
- return false if possible_duplicate and possible_duplicate.game_id != self.game_id
86
-
87
- return self.save
88
- end
89
-
90
-
91
- def self.included(k)
92
- def k.create_from_gameday_xml_game(gid, args = {})
93
- line_score = Greenmonster::Parser.load_line_score(gid, args)
94
-
95
- if line_score
96
- game = self.find_or_initialize_by_id(line_score.attributes["game_pk"].value.to_i)
97
-
98
- game.save!
99
- return game
100
- else
101
- return false
102
- end
103
- end
104
- end
105
- end
106
- end
@@ -1,11 +0,0 @@
1
- module Greenmonster
2
- module MlbProbablePitcher
3
-
4
- def self.included(k)
5
- def k.create_from_gameday_xml(node)
6
-
7
-
8
- end
9
- end
10
- end
11
- end
@@ -1,16 +0,0 @@
1
- module Greenmonster
2
- module Player
3
- def to_s
4
- "#{self.first} #{self.last}"
5
- end
6
-
7
- def self.included(k)
8
- def k.create_from_gameday_xml_game(gid, args = {})
9
- Greenmonster::Parser.extract_players_from_game(gid, args = {}) do |p|
10
- player = self.find_or_initialize_by_id(p[:id])
11
- player.update_attributes!(p) if player.new_record?
12
- end
13
- end
14
- end
15
- end
16
- end
@@ -1,27 +0,0 @@
1
- module Greenmonster
2
- module Parser
3
- def self.load_line_score(gid, args = {})
4
- Nokogiri::XML(File.open(game_path(gid, args) + 'linescore.xml')).search("game").first
5
- rescue
6
- false
7
- end
8
-
9
- def self.extract_players_from_game(gid, args = {})
10
- Nokogiri::XML(open(game_path(gid,args) + 'players.xml')).search('player').each do |p|
11
- hash = {:id => p.attribute('id').value.to_i, :first => p.attribute('first').value, :last => p.attribute('last').value}
12
- yield hash
13
- end
14
- end
15
-
16
- def self.game_path(gid,args)
17
- game_path = Pathname.new(args[:games_folder] || Greenmonster.games_folder)
18
- game_path += args[:sport_code] || gid[25,3]
19
- game_path += Greenmonster.format_date_as_folder(date_from_game_id(gid))
20
- game_path += gid
21
- end
22
-
23
- def self.date_from_game_id(gid)
24
- Date.new(gid[4,4].to_i, gid[9,2].to_i, gid[12,2].to_i)
25
- end
26
- end
27
- end
@@ -1,5 +0,0 @@
1
- <!--Copyright 2012 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt--><boxscore game_id="2011/07/04/tormlb-bosmlb-1" game_pk="288186" venue_id="3" venue_name="Fenway Park" home_sport_code="mlb" away_team_code="tor" home_team_code="bos" away_id="141" home_id="111" away_fname="Toronto Blue Jays" home_fname="Boston Red Sox" away_sname="Toronto" home_sname="Boston" date="July 4, 2011" away_wins="42" away_loss="44" home_wins="49" home_loss="35" status_ind="F"><linescore away_team_runs="9" home_team_runs="7" away_team_hits="13" home_team_hits="11" away_team_errors="0" home_team_errors="2"><inning_line_score away="1" home="0" inning="1" /><inning_line_score away="2" home="0" inning="2" /><inning_line_score away="4" home="0" inning="3" /><inning_line_score away="0" home="0" inning="4" /><inning_line_score away="0" home="4" inning="5" /><inning_line_score away="0" home="0" inning="6" /><inning_line_score away="1" home="0" inning="7" /><inning_line_score away="1" home="3" inning="8" /><inning_line_score away="0" home="0" inning="9" /></linescore><pitching team_flag="away" out="27" h="11" r="7" er="7" bb="3" so="12" hr="0" bf="40" era="4.15"><pitcher id="453344" name="Morrow" name_display_first_last="Brandon Morrow" pos="P" out="15" bf="23" er="4" r="4" h="5" so="5" hr="0" bb="3" w="5" l="4" sv="0" bs="0" hld="0" era="4.72" note="(W, 5-4)"/><pitcher id="469802" name="Perez, L" name_display_first_last="Luis Perez" pos="P" out="6" bf="7" er="0" r="0" h="2" so="2" hr="0" bb="0" w="1" l="1" sv="0" bs="1" hld="2" era="3.45" note="(H, 2)"/><pitcher id="430630" name="Frasor" name_display_first_last="Jason Frasor" pos="P" out="3" bf="6" er="3" r="3" h="3" so="2" hr="0" bb="0" w="2" l="1" sv="0" bs="2" hld="7" era="3.41"/><pitcher id="407911" name="Francisco, F" name_display_first_last="Frank Francisco" pos="P" out="3" bf="4" er="0" r="0" h="1" so="3" hr="0" bb="0" w="1" l="4" sv="10" bs="4" hld="0" era="4.81" note="(S, 10)"/></pitching><batting team_flag="home" ab="35" r="7" h="11" d="2" t="2" hr="0" rbi="6" bb="3" po="27" da="8" so="12" lob="15" avg=".275"><batter id="453056" name="Ellsbury" name_display_first_last="Jacoby Ellsbury" pos="CF" bo="100" ab="5" po="2" r="1" a="0" bb="0" sac="0" t="1" sf="0" h="4" e="0" d="0" hbp="0" so="0" hr="0" rbi="2" lob="1" fldg="1.000" sb="1" s_hr="9" s_rbi="42" avg=".310"/><batter id="456030" name="Pedroia" name_display_first_last="Dustin Pedroia" pos="2B" bo="200" ab="4" po="1" r="1" a="1" bb="1" sac="0" t="0" sf="0" h="1" e="0" d="0" hbp="0" so="1" hr="0" rbi="0" lob="2" fldg="1.000" sb="0" s_hr="7" s_rbi="38" avg=".278"/><batter id="408236" name="Gonzalez, Ad" name_display_first_last="Adrian Gonzalez" pos="1B" bo="300" ab="5" po="12" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="1" e="0" d="1" hbp="0" so="2" hr="0" rbi="1" lob="4" fldg="1.000" sb="0" s_hr="16" s_rbi="75" avg=".348"/><batter id="425903" name="Youkilis" name_display_first_last="Kevin Youkilis" pos="3B" bo="400" ab="1" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="1" d="0" hbp="1" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="11" s_rbi="57" avg=".270"/><batter id="501605" name="Navarro" name_display_first_last="Yamaico Navarro" pos="PR-3B" bo="401" ab="3" po="0" r="1" a="4" bb="0" sac="0" t="0" sf="0" h="1" e="1" d="0" hbp="0" so="1" hr="0" rbi="0" lob="2" fldg=".800" sb="0" s_hr="1" s_rbi="1" avg=".429" note="1-"/><batter id="120074" name="Ortiz" name_display_first_last="David Ortiz" pos="DH" bo="500" ab="3" po="0" r="1" a="0" bb="1" sac="0" t="0" sf="0" h="1" e="0" d="1" hbp="0" so="1" hr="0" rbi="0" lob="1" fldg=".000" sb="0" s_hr="17" s_rbi="49" avg=".301"/><batter id="502210" name="Reddick" name_display_first_last="Josh Reddick" pos="LF" bo="600" ab="2" po="2" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="1" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="1" s_rbi="10" avg=".404"/><batter id="150021" name="McDonald, D" name_display_first_last="Darnell McDonald" pos="PH-LF" bo="601" ab="2" po="1" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="2" hr="0" rbi="0" lob="3" fldg="1.000" sb="0" s_hr="2" s_rbi="6" avg=".117" note="a-"/><batter id="457454" name="Saltalamacchia" name_display_first_last="Jarrod Saltalamacchia" pos="C" bo="700" ab="4" po="3" r="1" a="0" bb="0" sac="0" t="1" sf="0" h="1" e="0" d="0" hbp="0" so="1" hr="0" rbi="2" lob="1" fldg="1.000" sb="0" s_hr="5" s_rbi="23" avg=".251"/><batter id="136770" name="Drew, J" name_display_first_last="J.D. Drew" pos="RF" bo="800" ab="3" po="4" r="1" a="0" bb="0" sac="0" t="0" sf="1" h="1" e="0" d="0" hbp="0" so="2" hr="0" rbi="1" lob="1" fldg="1.000" sb="0" s_hr="4" s_rbi="19" avg=".233"/><batter id="340192" name="Scutaro" name_display_first_last="Marco Scutaro" pos="SS" bo="900" ab="3" po="2" r="1" a="1" bb="1" sac="0" t="0" sf="0" h="1" e="0" d="0" hbp="0" so="1" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="3" s_rbi="14" avg=".268"/><batter id="407793" name="Lackey" name_display_first_last="John Lackey" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="1" avg=".333"/><batter id="235095" name="Wheeler" name_display_first_last="Dan Wheeler" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="469686" name="Aceves" name_display_first_last="Alfredo Aceves" pos="P" ab="0" po="0" r="0" a="1" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="462985" name="Morales, F" name_display_first_last="Franklin Morales" pos="P" ab="0" po="0" r="0" a="1" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="458006" name="Albers" name_display_first_last="Matt Albers" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="0" avg=".000"/>
2
- <note>
3
- <![CDATA[a-Struck out for Reddick in the 6th. <br/>1-Ran for Youkilis in the 4th. ]]>
4
- </note><text_data><![CDATA[<b>BATTING</b><br/><b>2B</b>: Gonzalez, Ad (28, Morrow), Ortiz (21, Frasor).<br/><b>3B</b>: Ellsbury (1, Morrow), Saltalamacchia (2, Frasor).<br/><b>TB</b>: Ellsbury 6; Pedroia; Gonzalez, Ad 2; Navarro; Ortiz 2; Saltalamacchia 3; Drew, J; Scutaro.<br/><b>RBI</b>: Ellsbury 2 (42), Gonzalez, Ad (75), Saltalamacchia 2 (23), Drew, J (19).<br/><b>2-out RBI</b>: Ellsbury 2; Gonzalez, Ad.<br/><b>Runners left in scoring position, 2 out</b>: Navarro 2; Drew, J.<br/><b>SF</b>: Drew, J.<br/><b>GIDP</b>: Gonzalez, Ad.<br/><b>Team RISP</b>: 2-for-9.<br/><b>Team LOB</b>: 6.<br/> <br/><b>BASERUNNING</b><br/><b>SB</b>: Ellsbury (27, 2nd base off Francisco, F/Molina, J).<br/><b>CS</b>: Pedroia (3, 2nd base by Morrow/Molina, J).<br/><b>PO</b>: Reddick (1st base by Molina, J).<br/> <br/><b>FIELDING</b><br/><b>E</b>: Youkilis (6, missed catch), Navarro (1, fielding).<br/><b>Pickoffs</b>: Morales, F (Thames, E at 1st base).<br/> <br/>]]></text_data></batting><pitching team_flag="home" out="27" h="13" r="9" er="8" bb="3" so="3" hr="1" bf="43" era="3.97"><pitcher id="407793" name="Lackey" name_display_first_last="John Lackey" pos="P" out="7" bf="16" er="7" r="7" h="9" so="2" hr="1" bb="0" w="5" l="8" sv="0" bs="0" hld="0" era="7.47" note="(L, 5-8)"/><pitcher id="235095" name="Wheeler" name_display_first_last="Dan Wheeler" pos="P" out="8" bf="8" er="0" r="0" h="0" so="0" hr="0" bb="0" w="1" l="1" sv="0" bs="0" hld="2" era="5.33"/><pitcher id="469686" name="Aceves" name_display_first_last="Alfredo Aceves" pos="P" out="8" bf="13" er="1" r="2" h="3" so="1" hr="0" bb="1" w="3" l="1" sv="1" bs="1" hld="6" era="3.74"/><pitcher id="462985" name="Morales, F" name_display_first_last="Franklin Morales" pos="P" out="1" bf="1" er="0" r="0" h="0" so="0" hr="0" bb="1" w="0" l="1" sv="0" bs="0" hld="3" era="3.79"/><pitcher id="458006" name="Albers" name_display_first_last="Matt Albers" pos="P" out="3" bf="5" er="0" r="0" h="1" so="0" hr="0" bb="1" w="2" l="3" sv="0" bs="1" hld="7" era="2.87"/></pitching><batting team_flag="away" ab="39" r="9" h="13" d="5" t="0" hr="1" rbi="7" bb="3" po="27" da="10" so="3" lob="13" avg=".254"><batter id="434658" name="Davis, R" name_display_first_last="Rajai Davis" pos="CF" bo="100" ab="5" po="0" r="1" a="0" bb="0" sac="0" t="0" sf="0" h="2" e="0" d="2" hbp="0" so="0" hr="0" rbi="1" lob="2" fldg=".000" sb="1" s_hr="1" s_rbi="18" avg=".237"/><batter id="519346" name="Thames, E" name_display_first_last="Eric Thames" pos="LF" bo="200" ab="4" po="3" r="1" a="0" bb="1" sac="0" t="0" sf="0" h="1" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="1" fldg="1.000" sb="0" s_hr="3" s_rbi="9" avg=".325"/><batter id="430832" name="Bautista" name_display_first_last="Jose Bautista" pos="3B" bo="300" ab="5" po="1" r="1" a="2" bb="0" sac="0" t="0" sf="0" h="1" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="27" s_rbi="56" avg=".329"/><batter id="452252" name="Lind" name_display_first_last="Adam Lind" pos="1B" bo="400" ab="3" po="6" r="2" a="1" bb="2" sac="0" t="0" sf="0" h="1" e="0" d="0" hbp="0" so="1" hr="0" rbi="1" lob="0" fldg="1.000" sb="0" s_hr="16" s_rbi="50" avg=".310"/><batter id="429665" name="Encarnacion" name_display_first_last="Edwin Encarnacion" pos="DH" bo="500" ab="5" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="3" fldg=".000" sb="0" s_hr="6" s_rbi="19" avg=".244"/><batter id="431094" name="Hill, A" name_display_first_last="Aaron Hill" pos="2B" bo="600" ab="5" po="2" r="2" a="2" bb="0" sac="0" t="0" sf="0" h="3" e="0" d="0" hbp="0" so="0" hr="1" rbi="2" lob="1" fldg="1.000" sb="0" s_hr="4" s_rbi="33" avg=".246"/><batter id="501983" name="Snider" name_display_first_last="Travis Snider" pos="RF" bo="700" ab="5" po="1" r="1" a="0" bb="0" sac="0" t="0" sf="0" h="3" e="0" d="3" hbp="0" so="0" hr="0" rbi="2" lob="2" fldg="1.000" sb="0" s_hr="1" s_rbi="14" avg=".207"/><batter id="150040" name="Molina, J" name_display_first_last="Jose Molina" pos="C" bo="800" ab="3" po="11" r="0" a="2" bb="0" sac="1" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="2" hr="0" rbi="0" lob="2" fldg="1.000" sb="0" s_hr="2" s_rbi="7" avg=".292"/><batter id="150348" name="McDonald, Jo" name_display_first_last="John McDonald" pos="SS" bo="900" ab="4" po="2" r="1" a="3" bb="0" sac="0" t="0" sf="0" h="2" e="0" d="0" hbp="0" so="0" hr="0" rbi="1" lob="2" fldg="1.000" sb="0" s_hr="2" s_rbi="14" avg=".206"/><batter id="453344" name="Morrow" name_display_first_last="Brandon Morrow" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="469802" name="Perez, L" name_display_first_last="Luis Perez" pos="P" ab="0" po="1" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg="1.000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="430630" name="Frasor" name_display_first_last="Jason Frasor" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><batter id="407911" name="Francisco, F" name_display_first_last="Frank Francisco" pos="P" ab="0" po="0" r="0" a="0" bb="0" sac="0" t="0" sf="0" h="0" e="0" d="0" hbp="0" so="0" hr="0" rbi="0" lob="0" fldg=".000" sb="0" s_hr="0" s_rbi="0" avg=".000"/><text_data><![CDATA[<b>BATTING</b><br/><b>2B</b>: Davis, R 2 (15, Lackey, Aceves), Snider 3 (7, Lackey, Lackey, Aceves).<br/><b>HR</b>: Hill, A (4, 2nd inning off Lackey, 0 on, 1 out).<br/><b>TB</b>: Davis, R 4; Thames, E; Bautista; Lind; Hill, A 6; Snider 6; McDonald, Jo 2.<br/><b>RBI</b>: Hill, A 2 (33), McDonald, Jo (14), Lind (50), Snider 2 (14), Davis, R (18).<br/><b>2-out RBI</b>: McDonald, Jo; Davis, R.<br/><b>Runners left in scoring position, 2 out</b>: McDonald, Jo; Davis, R; Hill, A; Snider.<br/><b>SAC</b>: Molina, J.<br/><b>Team RISP</b>: 4-for-13.<br/><b>Team LOB</b>: 7.<br/> <br/><b>BASERUNNING</b><br/><b>SB</b>: Davis, R (22, 3rd base off Lackey/Saltalamacchia).<br/><b>PO</b>: Thames, E (1st base by Morales, F).<br/> <br/><b>FIELDING</b><br/><b>PB</b>: Molina, J (6).<br/><b>DP</b>: 2 (Lind-McDonald, Jo-Perez, L, Molina, J-McDonald, Jo).<br/><b>Pickoffs</b>: Molina, J (Reddick at 1st base).<br/> <br/>]]></text_data></batting>
5
- <game_info><![CDATA[Morrow pitched to 1 batter in the 6th.<br/> <br/><b>WP</b>: Morrow.<br/><b>HBP</b>: Youkilis (by Morrow).<br/><b>Pitches-strikes</b>: Morrow 98-56, Perez, L 30-21, Frasor 22-13, Francisco, F 19-11, Lackey 65-41, Wheeler 25-18, Aceves 52-33, Morales, F 5-1, Albers 18-9.<br/><b>Groundouts-flyouts</b>: Morrow 5-3, Perez, L 3-0, Frasor 0-1, Francisco, F 0-0, Lackey 1-3, Wheeler 2-4, Aceves 5-1, Morales, F 0-0, Albers 2-0.<br/><b>Batters faced</b>: Morrow 23, Perez, L 7, Frasor 6, Francisco, F 4, Lackey 16, Wheeler 8, Aceves 13, Morales, F 1, Albers 5.<br/><b>Inherited runners-scored</b>: Perez, L 1-0, Wheeler 1-0, Morales, F 1-0.<br/><b>Umpires</b>: HP: Jerry Layne. 1B: Brian Knight. 2B: Tim McClelland. 3B: Bob Davidson.<br/><b>Weather</b>: 83 degrees, partly cloudy.<br/><b>Wind</b>: 8 mph, Out to LF.<br/><b>T</b>: 3:37.<br/><b>Att</b>: 38,072.<br/>]]></game_info></boxscore>
@@ -1 +0,0 @@
1
- <!--Copyright 2012 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt--><game id="2011/07/04/tormlb-bosmlb-1" pk="288186"><team id="141" name="Toronto" home_team="false"><event number="8" inning="1" description="Rajai Davis doubles (14) on a line drive to left fielder Josh Reddick. "/><event number="14" inning="1" description="Eric Thames flies out to center fielder Jacoby Ellsbury. "/><event number="23" inning="1" description="With Jose Bautista batting, Rajai Davis steals (22) 3rd base, Rajai Davis scores. Missed catch error by third baseman Kevin Youkilis. "/><event number="27" inning="1" description="Jose Bautista grounds out, second baseman Dustin Pedroia to first baseman Adrian Gonzalez. "/><event number="34" inning="1" description="Adam Lind strikes out swinging. "/><event number="69" inning="2" description="Edwin Encarnacion flies out to left fielder Josh Reddick. "/><event number="75" inning="2" description="Aaron Hill homers (4) on a fly ball to left field. "/><event number="81" inning="2" description="Travis Snider doubles (5) on a line drive to center fielder Jacoby Ellsbury. "/><event number="88" inning="2" description="Jose Molina strikes out swinging. "/><event number="95" inning="2" description="John McDonald singles on a soft fly ball to center fielder Jacoby Ellsbury. Travis Snider scores. "/><event number="103" inning="2" description="Rajai Davis pops out to second baseman Dustin Pedroia. "/><event number="141" inning="3" description="Eric Thames singles on a line drive to left fielder Josh Reddick. "/><event number="153" inning="3" description="Jose Bautista singles on a sharp ground ball to left fielder Josh Reddick. Eric Thames to 2nd. "/><event number="166" inning="3" description="Adam Lind singles on a line drive to center fielder Jacoby Ellsbury. Eric Thames scores. Jose Bautista to 2nd. "/><event number="174" inning="3" description="Edwin Encarnacion flies out to center fielder Jacoby Ellsbury. "/><event number="187" inning="3" description="Aaron Hill singles on a line drive to center fielder Jacoby Ellsbury. Jose Bautista scores. Adam Lind to 2nd. "/><event number="199" inning="3" description="Travis Snider doubles (6) on a line drive to right fielder J. D. Drew. Adam Lind scores. Aaron Hill scores. "/><event number="201" inning="3" description="Pitcher Change: Dan Wheeler replaces John Lackey. "/><event number="206" inning="3" description="Jose Molina flies out to right fielder J. D. Drew. "/><event number="212" inning="3" description="John McDonald flies out to left fielder Josh Reddick. "/><event number="253" inning="4" description="Rajai Davis flies out to right fielder J. Drew. "/><event number="260" inning="4" description="Eric Thames pops out to first baseman Adrian Gonzalez. "/><event number="269" inning="4" description="Jose Bautista flies out to right fielder J. D. Drew. "/><event number="305" inning="5" description="Yamaico Navarro remains in the game as the third baseman. "/><event number="310" inning="5" description="Adam Lind grounds out to first baseman Adrian Gonzalez. "/><event number="316" inning="5" description="Edwin Encarnacion lines out to shortstop Marco Scutaro. "/><event number="321" inning="5" description="Aaron Hill grounds out, shortstop Marco Scutaro to first baseman Adrian Gonzalez. "/><event number="397" inning="6" description="Pitcher Change: Alfredo Aceves replaces Dan Wheeler. "/><event number="402" inning="6" description="Travis Snider doubles (7) on a ground ball to right fielder J. D. Drew. "/><event number="407" inning="6" description="Jose Molina out on a sacrifice bunt, pitcher Alfredo Aceves to first baseman Adrian Gonzalez. Travis Snider to 3rd. "/><event number="417" inning="6" description="John McDonald pops out to first baseman Adrian Gonzalez in foul territory. "/><event number="426" inning="6" description="Rajai Davis pops out to shortstop Marco Scutaro. "/><event number="466" inning="7" description="Darnell McDonald remains in the game as the left fielder. "/><event number="472" inning="7" description="Eric Thames flies out to right fielder J. D. Drew. "/><event number="476" inning="7" description="Jose Bautista grounds out sharply, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. "/><event number="484" inning="7" description="Adam Lind walks. "/><event number="498" inning="7" description="Edwin Encarnacion reaches on fielding error by third baseman Yamaico Navarro. Adam Lind scores. Edwin Encarnacion to 2nd. "/><event number="510" inning="7" description="Aaron Hill grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. "/><event number="554" inning="8" description="Travis Snider grounds out to first baseman Adrian Gonzalez. "/><event number="560" inning="8" description="Jose Molina strikes out swinging. "/><event number="567" inning="8" description="John McDonald singles on a ground ball to left fielder Darnell McDonald. "/><event number="576" inning="8" description="Rajai Davis doubles (15) on a fly ball to center fielder Jacoby Ellsbury. John McDonald scores. Rajai Davis to 3rd on the throw. "/><event number="578" inning="8" description="Pitcher Change: Franklin Morales replaces Alfredo Aceves. "/><event number="587" inning="8" description="Eric Thames walks. "/><event number="592" inning="8" description="With Jose Bautista batting, Franklin Morales picks off Eric Thames at 1st on throw to Adrian Gonzalez. "/><event number="647" inning="9" description="Pitcher Change: Matt Albers replaces Franklin Morales. "/><event number="654" inning="9" description="Jose Bautista grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. "/><event number="661" inning="9" description="Adam Lind walks. "/><event number="668" inning="9" description="Edwin Encarnacion lines out to left fielder Darnell McDonald. "/><event number="677" inning="9" description="Aaron Hill singles on a ground ball to shortstop Marco Scutaro. Adam Lind to 2nd. "/><event number="681" inning="9" description="Travis Snider grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. "/></team><team id="111" name="Boston" home_team="true"><event number="40" inning="1" description="Jacoby Ellsbury singles on a line drive to center fielder Rajai Davis. "/><event number="48" inning="1" description="Dustin Pedroia grounds into a force out, shortstop John McDonald to second baseman Aaron Hill. Jacoby Ellsbury out at 2nd. Dustin Pedroia to 1st. "/><event number="60" inning="1" description="Adrian Gonzalez strikes out swinging and Dustin Pedroia caught stealing 2nd, catcher Jose Molina to shortstop John McDonald. "/><event number="110" inning="2" description="Kevin Youkilis pops out to second baseman Aaron Hill. "/><event number="119" inning="2" description="David Ortiz strikes out swinging. "/><event number="127" inning="2" description="Josh Reddick strikes out swinging. Wild pitch by pitcher Brandon Morrow. Josh Reddick to 1st. "/><event number="133" inning="2" description="With Jarrod Saltalamacchia batting, Jose Molina picks off Josh Reddick at 1st on throw to Adam Lind. "/><event number="219" inning="3" description="Jarrod Saltalamacchia grounds out to first baseman Adam Lind. "/><event number="228" inning="3" description="J. D. Drew strikes out swinging. "/><event number="237" inning="3" description="Marco Scutaro singles on a line drive to left fielder Eric Thames. "/><event number="244" inning="3" description="Jacoby Ellsbury flies out to right fielder Travis Snider. "/><event number="276" inning="4" description="Dustin Pedroia flies out to left fielder Eric Thames. "/><event number="285" inning="4" description="Adrian Gonzalez grounds out, second baseman Aaron Hill to first baseman Adam Lind. "/><event number="290" inning="4" description="Kevin Youkilis hit by pitch. "/><event number="292" inning="4" description="Offensive Substitution: Pinch runner Yamaico Navarro replaces Kevin Youkilis. "/><event number="301" inning="4" description="David Ortiz grounds into a force out, shortstop John McDonald to third baseman Jose Bautista. Yamaico Navarro out at 2nd. "/><event number="327" inning="5" description="Josh Reddick flies out to left fielder Eric Thames. "/><event number="338" inning="5" description="Jarrod Saltalamacchia strikes out swinging. "/><event number="344" inning="5" description="J. D. Drew singles on a ground ball to center fielder Rajai Davis. "/><event number="353" inning="5" description="Marco Scutaro walks. J. D. Drew to 2nd. "/><event number="364" inning="5" description="Jacoby Ellsbury triples (1) on a fly ball to right fielder Travis Snider. J. D. Drew scores. Marco Scutaro scores. "/><event number="377" inning="5" description="Dustin Pedroia walks. Passed ball by catcher Jose Molina. Jacoby Ellsbury scores. "/><event number="386" inning="5" description="Adrian Gonzalez doubles (28) on a fly ball to left fielder Eric Thames. Dustin Pedroia scores. "/><event number="393" inning="5" description="Yamaico Navarro grounds out, second baseman Aaron Hill to first baseman Adam Lind. "/><event number="435" inning="6" description="David Ortiz walks. "/><event number="438" inning="6" description="Pitcher Change: Luis Perez replaces Brandon Morrow. "/><event number="440" inning="6" description="Offensive Substitution: Pinch hitter Darnell McDonald replaces Josh Reddick. "/><event number="448" inning="6" description="Darnell McDonald strikes out swinging. "/><event number="453" inning="6" description="Jarrod Saltalamacchia grounds out, third baseman Jose Bautista to first baseman Adam Lind. David Ortiz to 2nd. "/><event number="462" inning="6" description="J. D. Drew strikes out swinging. "/><event number="521" inning="7" description="Marco Scutaro grounds out, third baseman Jose Bautista to first baseman Adam Lind. "/><event number="527" inning="7" description="Jacoby Ellsbury singles on a ground ball to shortstop John McDonald, deflected by pitcher Luis Perez. "/><event number="538" inning="7" description="Dustin Pedroia singles on a soft line drive to center fielder Rajai Davis. Jacoby Ellsbury to 2nd. "/><event number="545" inning="7" description="Adrian Gonzalez grounds into double play, first baseman Adam Lind to shortstop John McDonald to pitcher Luis Perez. Dustin Pedroia out at 2nd. "/><event number="596" inning="8" description="Pitcher Change: Jason Frasor replaces Luis Perez. "/><event number="604" inning="8" description="Yamaico Navarro singles on a ground ball to center fielder Rajai Davis. "/><event number="609" inning="8" description="David Ortiz hits a ground-rule double (21) on a fly ball down the left-field line. Yamaico Navarro to 3rd. "/><event number="617" inning="8" description="Darnell McDonald strikes out swinging. "/><event number="627" inning="8" description="Jarrod Saltalamacchia triples (2) on a fly ball to left fielder Eric Thames. Yamaico Navarro scores. David Ortiz scores. "/><event number="636" inning="8" description="J. D. Drew out on a sacrifice fly to left fielder Eric Thames. Jarrod Saltalamacchia scores. "/><event number="644" inning="8" description="Marco Scutaro called out on strikes. "/><event number="685" inning="9" description="Pitcher Change: Frank Francisco replaces Jason Frasor. "/><event number="692" inning="9" description="Jacoby Ellsbury singles on a ground ball to right fielder Travis Snider, deflected by second baseman Aaron Hill. "/><event number="701" inning="9" description="With Dustin Pedroia batting, Jacoby Ellsbury steals (27) 2nd base. "/><event number="704" inning="9" description="Dustin Pedroia strikes out swinging. "/><event number="712" inning="9" description="Adrian Gonzalez strikes out swinging. "/><event number="719" inning="9" description="Yamaico Navarro strikes out swinging. "/></team></game>
@@ -1 +0,0 @@
1
- <!--Copyright 2012 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt--><game atBat="501605" deck="120074" hole="150021" ind="F"><inning num="1" away_team="tor" home_team="bos" next="Y"><top><atbat num="1" b="1" s="1" o="0" start_tfs="133534" start_tfs_zulu="2011-07-04T17:35:34Z" batter="434658" stand="R" b_height="5-10" pitcher="407793" p_throws="R" des="Rajai Davis doubles (14) on a line drive to left fielder Josh Reddick. " event="Double"><pitch des="Called Strike" id="3" type="S" tfs="133558" tfs_zulu="2011-07-04T17:35:58Z" x="90.13" y="143.33" sv_id="110704_133559" start_speed="92.6" end_speed="84.9" sz_top="3.55" sz_bot="1.51" pfx_x="-2.29" pfx_z="8.38" px="-0.354" pz="1.973" x0="-2.626" y0="50.0" z0="6.156" vx0="6.85" vy0="-135.39" vz0="-8.029" ax="-4.226" ay="31.34" az="-16.641" break_y="23.8" break_angle="8.4" break_length="4.1" pitch_type="FF" type_confidence=".937" zone="7" nasty="56" spin_dir="195.218" spin_rate="1724.952" cc="" mt=""/><pitch des="Ball" id="4" type="B" tfs="133611" tfs_zulu="2011-07-04T17:36:11Z" x="132.19" y="147.65" sv_id="110704_133610" start_speed="93.2" end_speed="86.7" sz_top="3.39" sz_bot="1.51" pfx_x="-2.71" pfx_z="8.31" px="-1.793" pz="3.361" x0="-2.977" y0="50.0" z0="6.188" vx0="4.165" vy0="-136.604" vz0="-4.666" ax="-5.183" ay="26.944" az="-16.22" break_y="23.8" break_angle="14.4" break_length="3.7" pitch_type="FF" type_confidence=".939" zone="11" nasty="35" spin_dir="197.996" spin_rate="1781.541" cc="" mt=""/><pitch des="In play, no out" id="5" type="X" tfs="133626" tfs_zulu="2011-07-04T17:36:26Z" x="88.41" y="117.43" sv_id="110704_133622" start_speed="93.3" end_speed="86.7" sz_top="3.39" sz_bot="1.51" pfx_x="-5.22" pfx_z="10.15" px="-0.813" pz="2.816" x0="-2.841" y0="50.0" z0="6.114" vx0="7.332" vy0="-136.499" vz0="-6.582" ax="-9.968" ay="26.71" az="-12.729" break_y="23.8" break_angle="31.5" break_length="3.5" pitch_type="FF" type_confidence=".915" zone="11" nasty="53" spin_dir="207.139" spin_rate="2322.445" cc="" mt=""/><runner id="434658" start="" end="2B" event="Double"/></atbat><atbat num="2" b="1" s="1" o="1" start_tfs="133653" start_tfs_zulu="2011-07-04T17:36:53Z" batter="519346" stand="L" b_height="6-1" pitcher="407793" p_throws="R" des="Eric Thames flies out to center fielder Jacoby Ellsbury. " event="Flyout"><pitch des="Called Strike" id="9" type="S" tfs="133722" tfs_zulu="2011-07-04T17:37:22Z" x="111.59" y="118.29" on_2b="434658" sv_id="110704_133723" start_speed="79.8" end_speed="72.7" sz_top="3.38" sz_bot="1.5" pfx_x="4.18" pfx_z="-2.78" px="-0.436" pz="3.084" x0="-2.605" y0="50.0" z0="6.706" vx0="3.723" vy0="-116.991" vz0="-0.443" ax="5.658" ay="26.859" az="-35.868" break_y="23.7" break_angle="-10.1" break_length="11.0" pitch_type="CU" type_confidence=".902" zone="1" nasty="82" spin_dir="56.860" spin_rate="837.936" cc="" mt=""/><pitch des="Ball" id="10" type="B" tfs="133742" tfs_zulu="2011-07-04T17:37:42Z" x="70.39" y="94.12" on_2b="434658" sv_id="110704_133744" start_speed="87.3" end_speed="79.7" sz_top="3.41" sz_bot="1.5" pfx_x="3.17" pfx_z="3.43" px="0.738" pz="4.101" x0="-2.475" y0="50.0" z0="6.6" vx0="7.028" vy0="-127.808" vz0="-0.983" ax="5.167" ay="29.825" az="-26.51" break_y="23.7" break_angle="-14.1" break_length="6.9" pitch_type="FC" type_confidence=".813" zone="12" nasty="40" spin_dir="137.628" spin_rate="870.271" cc="" mt=""/><pitch des="In play, out(s)" id="11" type="X" tfs="133805" tfs_zulu="2011-07-04T17:38:05Z" x="109.87" y="151.10" on_2b="434658" sv_id="110704_133803" start_speed="84.2" end_speed="76.9" sz_top="3.38" sz_bot="1.5" pfx_x="-7.77" pfx_z="8.05" px="-0.779" pz="1.395" x0="-2.452" y0="50.0" z0="6.341" vx0="6.471" vy0="-123.095" vz0="-7.82" ax="-11.737" ay="27.835" az="-19.927" break_y="23.7" break_angle="25.6" break_length="6.5" pitch_type="CH" type_confidence=".841" zone="13" nasty="61" spin_dir="223.781" spin_rate="1999.248" cc="" mt=""/></atbat><action b="1" s="1" o="1" des="With Jose Bautista batting, Rajai Davis steals (22) 3rd base, Rajai Davis scores. Missed catch error by third baseman Kevin Youkilis. " event="Stolen Base 3B" event2="Error" tfs="134047" tfs_zulu="2011-07-04T17:40:47Z" player="434658" pitch="2" score="T" home_team_runs="0" away_team_runs="1"/><atbat num="3" b="1" s="2" o="2" start_tfs="133819" start_tfs_zulu="2011-07-04T17:38:19Z" batter="430832" stand="R" b_height="6-0" pitcher="407793" p_throws="R" des="Jose Bautista grounds out, second baseman Dustin Pedroia to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Called Strike" id="15" type="S" tfs="133908" tfs_zulu="2011-07-04T17:39:08Z" x="73.82" y="120.88" on_2b="434658" sv_id="110704_133907" start_speed="93.2" end_speed="86.2" sz_top="3.54" sz_bot="1.51" pfx_x="-3.24" pfx_z="8.92" px="0.668" pz="2.829" x0="-2.418" y0="50.0" z0="6.296" vx0="9.452" vy0="-136.238" vz0="-6.509" ax="-6.122" ay="28.714" az="-15.269" break_y="23.8" break_angle="14.2" break_length="3.7" pitch_type="FF" type_confidence=".934" zone="6" nasty="63" spin_dir="199.906" spin_rate="1914.602" cc="" mt=""/><pitch des="Ball" id="16" type="B" tfs="134008" tfs_zulu="2011-07-04T17:40:08Z" x="63.52" y="101.02" on_2b="434658" sv_id="110704_133944" start_speed="95.2" end_speed="87.1" sz_top="3.63" sz_bot="1.65" pfx_x="-4.55" pfx_z="10.7" px="1.809" pz="1.287" x0="-2.173" y0="50.0" z0="6.039" vx0="12.476" vy0="-138.573" vz0="-10.872" ax="-8.799" ay="32.782" az="-11.422" break_y="23.8" break_angle="23.1" break_length="3.2" pitch_type="FF" type_confidence=".915" zone="14" nasty="38" spin_dir="202.976" spin_rate="2359.850" cc="" mt=""/><runner id="434658" start="2B" end="" event="Stolen Base 3B" score="T" earned="T"/><pitch des="Foul" id="23" type="S" tfs="134056" tfs_zulu="2011-07-04T17:40:56Z" x="65.24" y="107.07" sv_id="110704_134021" start_speed="94.5" end_speed="86.2" sz_top="3.29" sz_bot="1.51" pfx_x="-3.9" pfx_z="8.84" px="0.849" pz="2.96" x0="-2.367" y0="50.0" z0="6.119" vx0="10.102" vy0="-138.151" vz0="-5.776" ax="-7.452" ay="33.956" az="-15.211" break_y="23.7" break_angle="16.9" break_length="3.7" pitch_type="FF" type_confidence=".924" zone="12" nasty="59" spin_dir="203.715" spin_rate="1945.672" cc="" mt=""/><pitch des="In play, out(s)" id="24" type="X" tfs="134112" tfs_zulu="2011-07-04T17:41:12Z" x="87.55" y="101.89" sv_id="110704_134111" start_speed="94.6" end_speed="86.9" sz_top="3.29" sz_bot="1.51" pfx_x="-6.12" pfx_z="6.72" px="1.322" pz="3.17" x0="-2.483" y0="50.0" z0="6.106" vx0="12.531" vy0="-138.128" vz0="-4.488" ax="-11.791" ay="31.322" az="-19.139" break_y="23.8" break_angle="24.1" break_length="4.6" pitch_type="FF" type_confidence=".686" zone="12" nasty="33" spin_dir="222.130" spin_rate="1846.107" cc="" mt=""/></atbat><atbat num="4" b="1" s="3" o="3" start_tfs="134147" start_tfs_zulu="2011-07-04T17:41:47Z" batter="452252" stand="L" b_height="6-1" pitcher="407793" p_throws="R" des="Adam Lind strikes out swinging. " event="Strikeout"><pitch des="Swinging Strike" id="28" type="S" tfs="134151" tfs_zulu="2011-07-04T17:41:51Z" x="106.44" y="129.52" sv_id="110704_134152" start_speed="95.1" end_speed="87.1" sz_top="3.59" sz_bot="1.73" pfx_x="-4.27" pfx_z="7.01" px="-0.92" pz="3.346" x0="-2.951" y0="50.0" z0="5.988" vx0="7.09" vy0="-139.249" vz0="-3.89" ax="-8.334" ay="32.823" az="-18.41" break_y="23.8" break_angle="19.1" break_length="4.3" pitch_type="FF" type_confidence=".924" zone="11" nasty="77" spin_dir="211.193" spin_rate="1676.405" cc="" mt=""/><pitch des="Foul" id="29" type="S" tfs="134207" tfs_zulu="2011-07-04T17:42:07Z" x="80.69" y="126.06" sv_id="110704_134207" start_speed="91.5" end_speed="83.9" sz_top="3.59" sz_bot="1.73" pfx_x="-2.12" pfx_z="3.45" px="0.811" pz="2.25" x0="-2.535" y0="50.0" z0="6.28" vx0="9.522" vy0="-133.737" vz0="-5.673" ax="-3.799" ay="31.354" az="-25.91" break_y="23.8" break_angle="3.6" break_length="6.2" pitch_type="FF" type_confidence=".909" zone="14" nasty="54" spin_dir="211.235" spin_rate="794.725" cc="" mt=""/><pitch des="Ball" id="30" type="B" tfs="134244" tfs_zulu="2011-07-04T17:42:44Z" x="129.61" y="97.57" sv_id="110704_134245" start_speed="94.3" end_speed="86.8" sz_top="3.59" sz_bot="1.73" pfx_x="0.17" pfx_z="7.25" px="-1.78" pz="3.728" x0="-3.029" y0="50.0" z0="6.08" vx0="3.345" vy0="-138.262" vz0="-3.102" ax="0.334" ay="31.183" az="-18.091" break_y="23.8" break_angle="-3.2" break_length="4.0" pitch_type="FF" type_confidence=".938" zone="11" nasty="38" spin_dir="178.643" spin_rate="1478.144" cc="" mt=""/><pitch des="Swinging Strike" id="31" type="S" tfs="134308" tfs_zulu="2011-07-04T17:43:08Z" x="119.31" y="145.06" sv_id="110704_134309" start_speed="89.0" end_speed="82.0" sz_top="3.59" sz_bot="1.73" pfx_x="2.83" pfx_z="2.36" px="-1.433" pz="3.383" x0="-2.847" y0="50.0" z0="6.414" vx0="2.694" vy0="-130.476" vz0="-2.342" ax="4.85" ay="28.547" az="-28.047" break_y="23.8" break_angle="-10.7" break_length="6.9" pitch_type="FC" type_confidence=".911" zone="11" nasty="34" spin_dir="130.396" spin_rate="708.095" cc="John Lackey is getting squeezed this inning by home plate ump Jerry Layne." mt=""/></atbat></top><bottom><atbat num="5" b="1" s="0" o="0" start_tfs="134558" start_tfs_zulu="2011-07-04T17:45:58Z" batter="453056" stand="L" b_height="6-1" pitcher="453344" p_throws="R" des="Jacoby Ellsbury singles on a line drive to center fielder Rajai Davis. " event="Single"><pitch des="Ball" id="36" type="B" tfs="134600" tfs_zulu="2011-07-04T17:46:00Z" x="137.34" y="92.39" sv_id="110704_134600" start_speed="91.9" end_speed="84.1" sz_top="3.36" sz_bot="1.56" pfx_x="-3.68" pfx_z="9.87" px="-1.425" pz="3.827" x0="-2.895" y0="50.0" z0="5.895" vx0="5.165" vy0="-134.702" vz0="-2.83" ax="-6.717" ay="30.933" az="-14.084" break_y="23.8" break_angle="20.6" break_length="3.5" pitch_type="FF" type_confidence=".911" zone="11" nasty="44" spin_dir="200.369" spin_rate="2078.324" cc="" mt=""/><pitch des="In play, no out" id="37" type="X" tfs="134616" tfs_zulu="2011-07-04T17:46:16Z" x="103.00" y="133.84" sv_id="110704_134615" start_speed="89.7" end_speed="82.6" sz_top="3.36" sz_bot="1.56" pfx_x="-6.17" pfx_z="6.87" px="-0.618" pz="2.476" x0="-2.705" y0="50.0" z0="5.651" vx0="7.487" vy0="-131.324" vz0="-4.346" ax="-10.762" ay="28.162" az="-20.112" break_y="23.8" break_angle="23.7" break_length="5.3" pitch_type="FF" type_confidence=".810" zone="4" nasty="40" spin_dir="221.739" spin_rate="1785.822" cc="" mt=""/><runner id="453056" start="" end="1B" event="Single"/></atbat><atbat num="6" b="1" s="2" o="1" start_tfs="134630" start_tfs_zulu="2011-07-04T17:46:30Z" batter="456030" stand="R" b_height="5-9" pitcher="453344" p_throws="R" des="Dustin Pedroia grounds into a force out, shortstop John McDonald to second baseman Aaron Hill. Jacoby Ellsbury out at 2nd. Dustin Pedroia to 1st. " event="Forceout"><pitch des="Pitchout" id="41" type="B" tfs="134659" tfs_zulu="2011-07-04T17:46:59Z" x="42.92" y="87.21" on_1b="453056" sv_id="110704_134659" start_speed="89.3" end_speed="81.0" sz_top="3.38" sz_bot="1.71" pfx_x="-6.53" pfx_z="7.27" px="2.546" pz="4.49" x0="-2.288" y0="50.0" z0="5.859" vx0="14.51" vy0="-130.095" vz0="0.379" ax="-11.045" ay="30.645" az="-19.8" break_y="23.7" break_angle="21.2" break_length="5.1" pitch_type="PO" type_confidence=".000" zone="12" nasty="0" spin_dir="221.751" spin_rate="1849.665" cc="" mt=""/><pitch des="Called Strike" id="42" type="S" tfs="134723" tfs_zulu="2011-07-04T17:47:23Z" x="82.40" y="135.56" on_1b="453056" sv_id="110704_134720" start_speed="87.9" end_speed="81.3" sz_top="3.38" sz_bot="1.51" pfx_x="2.78" pfx_z="4.38" px="0.702" pz="2.725" x0="-2.223" y0="50.0" z0="6.131" vx0="6.511" vy0="-128.651" vz0="-3.78" ax="4.669" ay="26.593" az="-24.757" break_y="23.8" break_angle="-13.0" break_length="6.3" pitch_type="SL" type_confidence=".886" zone="6" nasty="42" spin_dir="147.811" spin_rate="988.330" cc="" mt=""/><pitch des="Called Strike" id="43" type="S" tfs="134810" tfs_zulu="2011-07-04T17:48:10Z" x="77.25" y="150.24" on_1b="453056" sv_id="110704_134805" start_speed="87.9" end_speed="80.1" sz_top="3.38" sz_bot="1.52" pfx_x="1.55" pfx_z="1.66" px="0.543" pz="2.506" x0="-2.36" y0="50.0" z0="5.996" vx0="6.811" vy0="-128.634" vz0="-2.971" ax="2.557" ay="31.047" az="-29.372" break_y="23.7" break_angle="-7.7" break_length="7.5" pitch_type="SL" type_confidence=".866" zone="6" nasty="32" spin_dir="137.619" spin_rate="427.827" cc="" mt=""/><pitch des="In play, out(s)" id="44" type="X" tfs="134852" tfs_zulu="2011-07-04T17:48:52Z" x="94.42" y="111.39" on_1b="453056" sv_id="110704_134833" start_speed="88.4" end_speed="80.5" sz_top="3.38" sz_bot="1.71" pfx_x="3.01" pfx_z="1.27" px="0.071" pz="2.487" x0="-2.373" y0="50.0" z0="6.061" vx0="5.207" vy0="-129.466" vz0="-3.142" ax="5.008" ay="32.031" az="-29.995" break_y="23.7" break_angle="-11.4" break_length="7.7" pitch_type="SL" type_confidence=".891" zone="5" nasty="16" spin_dir="113.515" spin_rate="612.011" cc="" mt=""/><runner id="453056" start="1B" end="" event="Forceout"/><runner id="456030" start="" end="1B" event="Forceout"/></atbat><atbat num="7" b="3" s="3" o="3" start_tfs="134908" start_tfs_zulu="2011-07-04T17:49:08Z" batter="408236" stand="L" b_height="6-2" pitcher="453344" p_throws="R" des="Adrian Gonzalez strikes out swinging and Dustin Pedroia caught stealing 2nd, catcher Jose Molina to shortstop John McDonald. " event="Strikeout - DP" event2="Caught Stealing 2B"><pitch des="Ball" id="49" type="B" tfs="134925" tfs_zulu="2011-07-04T17:49:25Z" x="128.76" y="148.51" on_1b="456030" sv_id="110704_134925" start_speed="93.0" end_speed="84.8" sz_top="3.73" sz_bot="1.88" pfx_x="-5.32" pfx_z="8.76" px="-1.641" pz="2.323" x0="-2.554" y0="50.0" z0="5.782" vx0="4.288" vy0="-136.23" vz0="-6.294" ax="-9.871" ay="33.463" az="-15.841" break_y="23.7" break_angle="27.0" break_length="4.3" pitch_type="FF" type_confidence=".912" zone="13" nasty="44" spin_dir="211.146" spin_rate="2032.364" cc="" mt=""/><pitch des="Foul" id="50" type="S" tfs="134947" tfs_zulu="2011-07-04T17:49:47Z" x="86.70" y="140.74" on_1b="456030" sv_id="110704_134945" start_speed="87.8" end_speed="80.0" sz_top="3.56" sz_bot="1.68" pfx_x="4.88" pfx_z="4.74" px="0.721" pz="2.76" x0="-2.331" y0="50.0" z0="5.91" vx0="6.099" vy0="-128.608" vz0="-3.114" ax="8.024" ay="31.201" az="-24.311" break_y="23.7" break_angle="-20.6" break_length="6.6" pitch_type="SL" type_confidence=".892" zone="12" nasty="40" spin_dir="134.420" spin_rate="1267.312" cc="" mt=""/><pitch des="Ball" id="51" type="B" tfs="135020" tfs_zulu="2011-07-04T17:50:20Z" x="72.10" y="151.10" on_1b="456030" sv_id="110704_135018" start_speed="88.1" end_speed="80.2" sz_top="3.86" sz_bot="1.77" pfx_x="-8.16" pfx_z="3.0" px="-0.337" pz="1.299" x0="-2.495" y0="50.0" z0="5.508" vx0="8.115" vy0="-128.884" vz0="-5.249" ax="-13.468" ay="31.429" az="-27.152" break_y="23.7" break_angle="22.2" break_length="7.6" pitch_type="FS" type_confidence=".717" zone="13" nasty="20" spin_dir="249.550" spin_rate="1617.992" cc="" mt=""/><pitch des="Swinging Strike" id="52" type="S" tfs="135040" tfs_zulu="2011-07-04T17:50:40Z" x="98.71" y="121.75" on_1b="456030" sv_id="110704_135040" start_speed="90.0" end_speed="83.4" sz_top="3.56" sz_bot="1.68" pfx_x="1.28" pfx_z="4.6" px="0.454" pz="2.364" x0="-2.362" y0="50.0" z0="5.884" vx0="6.901" vy0="-131.713" vz0="-4.562" ax="2.249" ay="27.025" az="-23.996" break_y="23.8" break_angle="-8.1" break_length="5.8" pitch_type="SL" type_confidence=".723" zone="6" nasty="30" spin_dir="164.625" spin_rate="934.226" cc="" mt=""/><pitch des="Foul" id="53" type="S" tfs="135105" tfs_zulu="2011-07-04T17:51:05Z" x="120.17" y="125.20" on_1b="456030" sv_id="110704_135107" start_speed="94.3" end_speed="86.2" sz_top="3.56" sz_bot="1.68" pfx_x="-7.11" pfx_z="10.76" px="-0.657" pz="2.86" x0="-2.537" y0="50.0" z0="5.653" vx0="7.611" vy0="-137.986" vz0="-5.472" ax="-13.613" ay="32.611" az="-11.493" break_y="23.7" break_angle="42.8" break_length="3.7" pitch_type="FF" type_confidence=".873" zone="4" nasty="44" spin_dir="213.353" spin_rate="2603.177" cc="" mt=""/><pitch des="Ball" id="54" type="B" tfs="135134" tfs_zulu="2011-07-04T17:51:34Z" x="69.53" y="92.39" on_1b="456030" sv_id="110704_135135" start_speed="95.5" end_speed="88.1" sz_top="3.74" sz_bot="1.86" pfx_x="-5.48" pfx_z="10.05" px="0.661" pz="4.235" x0="-2.331" y0="50.0" z0="5.812" vx0="10.236" vy0="-139.666" vz0="-2.164" ax="-10.876" ay="29.836" az="-12.136" break_y="23.8" break_angle="34.6" break_length="3.1" pitch_type="FF" type_confidence=".914" zone="12" nasty="42" spin_dir="208.490" spin_rate="2368.282" cc="" mt=""/><po des="Pickoff Attempt 1B"/><pitch des="Swinging Strike" id="56" type="S" tfs="135249" tfs_zulu="2011-07-04T17:52:49Z" x="92.70" y="123.47" on_1b="456030" sv_id="110704_135220" start_speed="89.0" end_speed="83.0" sz_top="3.56" sz_bot="1.68" pfx_x="1.59" pfx_z="1.3" px="0.387" pz="2.238" x0="-2.385" y0="50.0" z0="5.846" vx0="6.62" vy0="-130.259" vz0="-3.53" ax="2.748" ay="25.155" az="-29.839" break_y="23.9" break_angle="-7.3" break_length="7.2" pitch_type="SL" type_confidence=".879" zone="9" nasty="32" spin_dir="130.356" spin_rate="401.632" cc="Brandon Morrow is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="456030" start="1B" end="" event="Pickoff Attempt 1B"/></atbat></bottom></inning><inning num="2" away_team="tor" home_team="bos" next="Y"><top><atbat num="8" b="2" s="2" o="1" start_tfs="135404" start_tfs_zulu="2011-07-04T17:54:04Z" batter="429665" stand="R" b_height="6-2" pitcher="407793" p_throws="R" des="Edwin Encarnacion flies out to left fielder Josh Reddick. " event="Flyout"><pitch des="Ball" id="62" type="B" tfs="135425" tfs_zulu="2011-07-04T17:54:25Z" x="133.91" y="92.39" sv_id="110704_135427" start_speed="91.8" end_speed="84.4" sz_top="3.55" sz_bot="1.65" pfx_x="-2.59" pfx_z="9.05" px="-1.066" pz="4.189" x0="-2.737" y0="50.0" z0="6.388" vx0="5.329" vy0="-134.459" vz0="-2.914" ax="-4.746" ay="29.1" az="-15.522" break_y="23.8" break_angle="12.6" break_length="3.7" pitch_type="FF" type_confidence=".934" zone="11" nasty="64" spin_dir="195.907" spin_rate="1868.263" cc="" mt=""/><pitch des="Ball" id="63" type="B" tfs="135438" tfs_zulu="2011-07-04T17:54:38Z" x="109.87" y="86.35" sv_id="110704_135440" start_speed="91.7" end_speed="85.5" sz_top="3.51" sz_bot="1.65" pfx_x="-2.2" pfx_z="9.81" px="-0.239" pz="4.093" x0="-2.708" y0="50.0" z0="6.334" vx0="7.349" vy0="-134.263" vz0="-3.375" ax="-4.074" ay="24.674" az="-13.907" break_y="23.9" break_angle="10.7" break_length="3.2" pitch_type="FF" type_confidence=".931" zone="11" nasty="27" spin_dir="192.571" spin_rate="2022.339" cc="" mt=""/><pitch des="Foul" id="64" type="S" tfs="135454" tfs_zulu="2011-07-04T17:54:54Z" x="90.99" y="133.84" sv_id="110704_135455" start_speed="92.1" end_speed="84.2" sz_top="3.55" sz_bot="1.65" pfx_x="-1.36" pfx_z="10.23" px="0.44" pz="2.812" x0="-2.432" y0="50.0" z0="6.252" vx0="8.073" vy0="-134.609" vz0="-6.564" ax="-2.473" ay="31.522" az="-13.493" break_y="23.7" break_angle="2.5" break_length="3.4" pitch_type="FF" type_confidence=".936" zone="6" nasty="38" spin_dir="187.539" spin_rate="2030.957" cc="" mt=""/><pitch des="Swinging Strike" id="65" type="S" tfs="135515" tfs_zulu="2011-07-04T17:55:15Z" x="91.85" y="152.83" sv_id="110704_135516" start_speed="92.5" end_speed="85.2" sz_top="3.55" sz_bot="1.65" pfx_x="-2.2" pfx_z="10.25" px="0.588" pz="1.928" x0="-2.325" y0="50.0" z0="6.185" vx0="8.529" vy0="-135.135" vz0="-8.882" ax="-4.067" ay="29.718" az="-13.17" break_y="23.8" break_angle="8.6" break_length="3.4" pitch_type="FF" type_confidence=".937" zone="9" nasty="51" spin_dir="192.078" spin_rate="2086.429" cc="" mt=""/><pitch des="In play, out(s)" id="66" type="X" tfs="135546" tfs_zulu="2011-07-04T17:55:46Z" x="109.87" y="130.38" sv_id="110704_135536" start_speed="93.0" end_speed="85.1" sz_top="3.55" sz_bot="1.65" pfx_x="-7.86" pfx_z="9.63" px="-1.114" pz="2.58" x0="-2.813" y0="50.0" z0="5.963" vx0="7.281" vy0="-136.005" vz0="-6.419" ax="-14.63" ay="31.444" az="-14.164" break_y="23.8" break_angle="39.7" break_length="4.4" pitch_type="FT" type_confidence=".540" zone="13" nasty="54" spin_dir="219.087" spin_rate="2475.134" cc="" mt=""/></atbat><atbat num="9" b="1" s="0" o="1" start_tfs="135552" start_tfs_zulu="2011-07-04T17:55:52Z" batter="431094" stand="R" b_height="5-11" pitcher="407793" p_throws="R" des="Aaron Hill homers (4) on a fly ball to left field. " event="Home Run" score="T" home_team_runs="0" away_team_runs="2"><pitch des="Ball" id="70" type="B" tfs="135607" tfs_zulu="2011-07-04T17:56:07Z" x="66.95" y="172.69" sv_id="110704_135609" start_speed="92.7" end_speed="86.2" sz_top="3.45" sz_bot="1.69" pfx_x="-4.28" pfx_z="9.83" px="0.802" pz="1.725" x0="-2.542" y0="50.0" z0="6.091" vx0="10.464" vy0="-135.269" vz0="-9.157" ax="-8.017" ay="26.515" az="-13.698" break_y="23.8" break_angle="21.4" break_length="3.6" pitch_type="FF" type_confidence=".927" zone="14" nasty="79" spin_dir="203.455" spin_rate="2160.089" cc="" mt=""/><pitch des="In play, run(s)" id="71" type="X" tfs="135648" tfs_zulu="2011-07-04T17:56:48Z" x="101.29" y="100.16" sv_id="110704_135622" start_speed="92.6" end_speed="85.5" sz_top="3.09" sz_bot="1.46" pfx_x="-4.09" pfx_z="7.2" px="0.034" pz="2.897" x0="-2.553" y0="50.0" z0="6.182" vx0="8.35" vy0="-135.471" vz0="-5.308" ax="-7.617" ay="28.82" az="-18.679" break_y="23.8" break_angle="16.6" break_length="4.5" pitch_type="FF" type_confidence=".927" zone="2" nasty="33" spin_dir="209.440" spin_rate="1659.520" cc="" mt=""/><runner id="431094" start="" end="" event="Home Run" score="T" rbi="T" earned="T"/></atbat><atbat num="10" b="2" s="0" o="1" start_tfs="135655" start_tfs_zulu="2011-07-04T17:56:55Z" batter="501983" stand="L" b_height="6-0" pitcher="407793" p_throws="R" des="Travis Snider doubles (5) on a line drive to center fielder Jacoby Ellsbury. " event="Double"><pitch des="Ball" id="76" type="B" tfs="135705" tfs_zulu="2011-07-04T17:57:05Z" x="102.15" y="95.84" sv_id="110704_135704" start_speed="93.3" end_speed="85.0" sz_top="3.56" sz_bot="1.68" pfx_x="-3.68" pfx_z="8.22" px="-0.981" pz="3.369" x0="-2.968" y0="50.0" z0="6.166" vx0="6.614" vy0="-136.676" vz0="-4.387" ax="-6.875" ay="33.666" az="-16.745" break_y="23.7" break_angle="16.5" break_length="4.1" pitch_type="FF" type_confidence=".933" zone="11" nasty="78" spin_dir="204.016" spin_rate="1792.982" cc="" mt=""/><pitch des="Ball" id="77" type="B" tfs="135717" tfs_zulu="2011-07-04T17:57:17Z" x="102.15" y="93.25" sv_id="110704_135716" start_speed="79.1" end_speed="72.8" sz_top="3.42" sz_bot="1.71" pfx_x="3.87" pfx_z="-3.79" px="-0.671" pz="3.729" x0="-2.914" y0="50.0" z0="6.639" vx0="3.966" vy0="-115.869" vz0="1.534" ax="5.218" ay="23.513" az="-37.209" break_y="23.8" break_angle="-9.1" break_length="11.3" pitch_type="CU" type_confidence=".909" zone="11" nasty="50" spin_dir="46.022" spin_rate="907.904" cc="" mt=""/><pitch des="In play, no out" id="78" type="X" tfs="135735" tfs_zulu="2011-07-04T17:57:35Z" x="105.58" y="132.97" sv_id="110704_135729" start_speed="91.5" end_speed="84.3" sz_top="3.56" sz_bot="1.68" pfx_x="-2.15" pfx_z="9.35" px="-0.373" pz="1.862" x0="-2.958" y0="50.0" z0="5.971" vx0="7.56" vy0="-133.749" vz0="-7.967" ax="-3.882" ay="29.149" az="-15.187" break_y="23.8" break_angle="7.8" break_length="3.8" pitch_type="FF" type_confidence=".933" zone="7" nasty="42" spin_dir="192.871" spin_rate="1890.091" cc="" mt=""/><runner id="501983" start="" end="2B" event="Double"/></atbat><atbat num="11" b="1" s="3" o="2" start_tfs="135750" start_tfs_zulu="2011-07-04T17:57:50Z" batter="150040" stand="R" b_height="6-2" pitcher="407793" p_throws="R" des="Jose Molina strikes out swinging. " event="Strikeout"><pitch des="Called Strike" id="82" type="S" tfs="135818" tfs_zulu="2011-07-04T17:58:18Z" x="74.68" y="144.20" on_2b="501983" sv_id="110704_135818" start_speed="92.7" end_speed="84.3" sz_top="3.8" sz_bot="1.91" pfx_x="-1.33" pfx_z="8.8" px="0.704" pz="3.059" x0="-2.378" y0="50.0" z0="6.244" vx0="8.655" vy0="-135.566" vz0="-5.472" ax="-2.433" ay="33.633" az="-15.964" break_y="23.7" break_angle="1.2" break_length="3.8" pitch_type="FF" type_confidence=".937" zone="6" nasty="63" spin_dir="188.534" spin_rate="1754.171" cc="" mt=""/><pitch des="Swinging Strike" id="83" type="S" tfs="135835" tfs_zulu="2011-07-04T17:58:35Z" x="64.38" y="160.60" on_2b="501983" sv_id="110704_135837" start_speed="88.9" end_speed="81.2" sz_top="3.62" sz_bot="1.74" pfx_x="0.88" pfx_z="3.29" px="1.197" pz="1.738" x0="-2.297" y0="50.0" z0="6.348" vx0="8.607" vy0="-129.918" vz0="-6.522" ax="1.478" ay="31.597" az="-26.567" break_y="23.7" break_angle="-6.9" break_length="6.9" pitch_type="FC" type_confidence=".856" zone="14" nasty="66" spin_dir="165.234" spin_rate="647.516" cc="" mt=""/><pitch des="Ball" id="84" type="B" tfs="135859" tfs_zulu="2011-07-04T17:58:59Z" x="63.52" y="178.73" on_2b="501983" sv_id="110704_135859" start_speed="88.2" end_speed="80.1" sz_top="3.78" sz_bot="1.74" pfx_x="-0.11" pfx_z="2.35" px="1.295" pz="1.557" x0="-2.252" y0="50.0" z0="6.324" vx0="8.969" vy0="-128.867" vz0="-6.399" ax="-0.184" ay="32.706" az="-28.248" break_y="23.7" break_angle="-3.6" break_length="7.4" pitch_type="FC" type_confidence=".804" zone="14" nasty="35" spin_dir="182.681" spin_rate="442.473" cc="" mt=""/><pitch des="Swinging Strike" id="85" type="S" tfs="135952" tfs_zulu="2011-07-04T17:59:52Z" x="69.53" y="176.14" on_2b="501983" sv_id="110704_135953" start_speed="87.6" end_speed="80.8" sz_top="3.62" sz_bot="1.74" pfx_x="-0.06" pfx_z="3.83" px="1.166" pz="1.375" x0="-2.264" y0="50.0" z0="6.275" vx0="8.667" vy0="-128.044" vz0="-7.241" ax="-0.097" ay="28.057" az="-25.78" break_y="23.8" break_angle="-3.4" break_length="6.7" pitch_type="FC" type_confidence=".871" zone="14" nasty="62" spin_dir="180.867" spin_rate="724.545" cc="" mt=""/></atbat><atbat num="12" b="0" s="1" o="2" start_tfs="140012" start_tfs_zulu="2011-07-04T18:00:12Z" batter="150348" stand="R" b_height="5-9" pitcher="407793" p_throws="R" des="John McDonald singles on a soft fly ball to center fielder Jacoby Ellsbury. Travis Snider scores. " event="Single" score="T" home_team_runs="0" away_team_runs="3"><pitch des="Foul" id="89" type="S" tfs="140026" tfs_zulu="2011-07-04T18:00:26Z" x="90.99" y="145.92" on_2b="501983" sv_id="110704_140028" start_speed="93.5" end_speed="85.4" sz_top="3.24" sz_bot="1.59" pfx_x="-1.04" pfx_z="10.09" px="0.55" pz="2.142" x0="-2.423" y0="50.0" z0="6.053" vx0="8.348" vy0="-136.65" vz0="-8.048" ax="-1.941" ay="32.949" az="-13.205" break_y="23.7" break_angle=".0" break_length="3.3" pitch_type="FF" type_confidence=".940" zone="6" nasty="59" spin_dir="185.841" spin_rate="2024.412" cc="" mt=""/><pitch des="In play, run(s)" id="90" type="X" tfs="140105" tfs_zulu="2011-07-04T18:01:05Z" x="100.43" y="141.61" on_2b="501983" sv_id="110704_140055" start_speed="87.5" end_speed="81.7" sz_top="3.24" sz_bot="1.59" pfx_x="3.75" pfx_z="3.15" px="0.956" pz="2.919" x0="-2.244" y0="50.0" z0="6.432" vx0="6.886" vy0="-128.048" vz0="-3.642" ax="6.299" ay="23.772" az="-26.806" break_y="23.9" break_angle="-15.2" break_length="6.9" pitch_type="FC" type_confidence=".852" zone="12" nasty="61" spin_dir="130.438" spin_rate="937.674" cc="" mt=""/><runner id="501983" start="2B" end="" event="Single" score="T" rbi="T" earned="T"/><runner id="150348" start="" end="1B" event="Single"/></atbat><atbat num="13" b="1" s="2" o="3" start_tfs="140131" start_tfs_zulu="2011-07-04T18:01:31Z" batter="434658" stand="R" b_height="5-10" pitcher="407793" p_throws="R" des="Rajai Davis pops out to second baseman Dustin Pedroia. " event="Pop Out"><pitch des="Called Strike" id="96" type="S" tfs="140139" tfs_zulu="2011-07-04T18:01:39Z" x="84.12" y="150.24" on_1b="150348" sv_id="110704_140140" start_speed="93.1" end_speed="86.1" sz_top="3.51" sz_bot="1.56" pfx_x="-3.24" pfx_z="8.96" px="-0.624" pz="2.103" x0="-2.852" y0="50.0" z0="6.033" vx0="7.136" vy0="-136.211" vz0="-7.762" ax="-6.119" ay="28.885" az="-15.21" break_y="23.8" break_angle="15.5" break_length="3.8" pitch_type="FF" type_confidence=".937" zone="7" nasty="64" spin_dir="199.833" spin_rate="1920.783" cc="John Lackey went back to the four-seam fastball even though Rajai Davis hit for a double last time up." mt=""/><pitch des="Swinging Strike" id="97" type="S" tfs="140201" tfs_zulu="2011-07-04T18:02:01Z" x="61.80" y="174.42" on_1b="150348" sv_id="110704_140156" start_speed="82.0" end_speed="76.2" sz_top="3.39" sz_bot="1.51" pfx_x="0.5" pfx_z="-2.38" px="1.272" pz="1.35" x0="-2.296" y0="50.0" z0="6.333" vx0="8.275" vy0="-119.839" vz0="-4.243" ax="0.722" ay="23.996" az="-35.553" break_y="23.8" break_angle="-3.3" break_length="10.2" pitch_type="CU" type_confidence=".817" zone="14" nasty="55" spin_dir="12.060" spin_rate="418.299" cc="" mt=""/><pitch des="Ball" id="98" type="B" tfs="140214" tfs_zulu="2011-07-04T18:02:14Z" x="53.22" y="118.29" on_1b="150348" sv_id="110704_140216" start_speed="93.3" end_speed="86.6" sz_top="3.39" sz_bot="1.51" pfx_x="-3.09" pfx_z="9.41" px="1.342" pz="3.365" x0="-2.451" y0="50.0" z0="6.06" vx0="11.337" vy0="-136.283" vz0="-4.65" ax="-5.879" ay="27.16" az="-14.218" break_y="23.8" break_angle="13.7" break_length="3.3" pitch_type="FF" type_confidence=".932" zone="12" nasty="32" spin_dir="198.128" spin_rate="2011.328" cc="" mt=""/><po des="Pickoff Attempt 1B"/><pitch des="In play, out(s)" id="100" type="X" tfs="140301" tfs_zulu="2011-07-04T18:03:01Z" x="97.00" y="151.10" on_1b="150348" sv_id="110704_140252" start_speed="89.1" end_speed="83.0" sz_top="3.39" sz_bot="1.51" pfx_x="4.03" pfx_z="6.35" px="0.744" pz="1.787" x0="-2.307" y0="50.0" z0="6.272" vx0="6.517" vy0="-130.288" vz0="-7.48" ax="6.984" ay="25.479" az="-21.11" break_y="23.9" break_angle="-19.8" break_length="5.6" pitch_type="FC" type_confidence=".933" zone="14" nasty="59" spin_dir="147.740" spin_rate="1456.917" cc="John Lackey is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="150348" start="1B" end="" event="Pickoff Attempt 1B"/></atbat></top><bottom><atbat num="14" b="0" s="1" o="1" start_tfs="140459" start_tfs_zulu="2011-07-04T18:04:59Z" batter="425903" stand="R" b_height="6-1" pitcher="453344" p_throws="R" des="Kevin Youkilis pops out to second baseman Aaron Hill. " event="Pop Out"><pitch des="Called Strike" id="106" type="S" tfs="140513" tfs_zulu="2011-07-04T18:05:13Z" x="97.00" y="151.10" sv_id="110704_140514" start_speed="93.5" end_speed="85.5" sz_top="3.52" sz_bot="1.64" pfx_x="-5.14" pfx_z="9.2" px="0.098" pz="1.717" x0="-2.341" y0="50.0" z0="5.734" vx0="8.352" vy0="-136.693" vz0="-8.042" ax="-9.639" ay="32.535" az="-14.84" break_y="23.7" break_angle="24.8" break_length="4.0" pitch_type="FF" type_confidence=".914" zone="8" nasty="54" spin_dir="209.076" spin_rate="2105.043" cc="" mt=""/><pitch des="In play, out(s)" id="107" type="X" tfs="140530" tfs_zulu="2011-07-04T18:05:30Z" x="103.00" y="140.74" sv_id="110704_140527" start_speed="93.8" end_speed="85.1" sz_top="3.52" sz_bot="1.71" pfx_x="-5.65" pfx_z="8.37" px="-0.911" pz="2.828" x0="-2.603" y0="50.0" z0="5.736" vx0="6.531" vy0="-137.406" vz0="-4.797" ax="-10.621" ay="35.121" az="-16.37" break_y="23.7" break_angle="27.1" break_length="4.3" pitch_type="FF" type_confidence=".911" zone="11" nasty="53" spin_dir="213.902" spin_rate="2010.452" cc="" mt=""/></atbat><atbat num="15" b="3" s="3" o="2" start_tfs="140546" start_tfs_zulu="2011-07-04T18:05:46Z" batter="120074" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="David Ortiz strikes out swinging. " event="Strikeout"><pitch des="Ball" id="111" type="B" tfs="140617" tfs_zulu="2011-07-04T18:06:17Z" x="108.15" y="88.07" sv_id="110704_140614" start_speed="88.1" end_speed="81.6" sz_top="3.93" sz_bot="1.86" pfx_x="1.39" pfx_z="2.6" px="-0.346" pz="3.67" x0="-2.583" y0="50.0" z0="5.992" vx0="5.254" vy0="-129.153" vz0="-0.511" ax="2.351" ay="25.912" az="-27.686" break_y="23.8" break_angle="-6.9" break_length="6.7" pitch_type="SL" type_confidence=".829" zone="1" nasty="69" spin_dir="152.354" spin_rate="569.122" cc="" mt=""/><pitch des="Called Strike" id="112" type="S" tfs="140633" tfs_zulu="2011-07-04T18:06:33Z" x="98.71" y="91.53" sv_id="110704_140628" start_speed="92.8" end_speed="84.2" sz_top="3.85" sz_bot="1.86" pfx_x="-5.63" pfx_z="9.06" px="-0.509" pz="3.636" x0="-2.705" y0="50.0" z0="5.668" vx0="7.8" vy0="-135.886" vz0="-2.524" ax="-10.368" ay="33.942" az="-15.42" break_y="23.7" break_angle="27.8" break_length="4.0" pitch_type="FF" type_confidence=".912" zone="1" nasty="48" spin_dir="211.750" spin_rate="2103.540" cc="" mt=""/><pitch des="Ball" id="113" type="B" tfs="140644" tfs_zulu="2011-07-04T18:06:44Z" x="109.87" y="167.51" sv_id="110704_140643" start_speed="87.5" end_speed="80.6" sz_top="4.0" sz_bot="1.97" pfx_x="-7.23" pfx_z="2.25" px="-0.38" pz="1.694" x0="-2.515" y0="50.0" z0="5.552" vx0="7.755" vy0="-128.02" vz0="-4.112" ax="-11.953" ay="27.39" az="-28.373" break_y="23.8" break_angle="19.6" break_length="7.6" pitch_type="FS" type_confidence=".872" zone="13" nasty="43" spin_dir="252.359" spin_rate="1421.408" cc="" mt=""/><pitch des="Ball" id="114" type="B" tfs="140703" tfs_zulu="2011-07-04T18:07:03Z" x="136.48" y="106.20" sv_id="110704_140704" start_speed="88.0" end_speed="81.9" sz_top="3.88" sz_bot="1.94" pfx_x="-7.18" pfx_z="3.89" px="-1.494" pz="4.309" x0="-2.552" y0="50.0" z0="5.795" vx0="5.101" vy0="-128.918" vz0="1.17" ax="-12.252" ay="23.37" az="-25.457" break_y="23.9" break_angle="24.2" break_length="6.6" pitch_type="FS" type_confidence=".908" zone="11" nasty="8" spin_dir="241.266" spin_rate="1572.394" cc="" mt=""/><pitch des="Foul" id="115" type="S" tfs="140728" tfs_zulu="2011-07-04T18:07:28Z" x="107.30" y="144.20" sv_id="110704_140725" start_speed="87.2" end_speed="80.8" sz_top="3.73" sz_bot="1.78" pfx_x="1.02" pfx_z="2.17" px="0.208" pz="2.628" x0="-2.591" y0="50.0" z0="5.88" vx0="6.732" vy0="-127.759" vz0="-2.561" ax="1.681" ay="25.881" az="-28.513" break_y="23.8" break_angle="-5.8" break_length="7.1" pitch_type="SL" type_confidence=".886" zone="5" nasty="19" spin_dir="155.339" spin_rate="457.459" cc="" mt=""/><pitch des="Swinging Strike" id="116" type="S" tfs="140755" tfs_zulu="2011-07-04T18:07:55Z" x="71.24" y="166.65" sv_id="110704_140746" start_speed="96.4" end_speed="88.5" sz_top="3.73" sz_bot="1.78" pfx_x="-1.87" pfx_z="12.31" px="0.808" pz="1.654" x0="-2.398" y0="50.0" z0="5.561" vx0="9.572" vy0="-140.737" vz0="-9.498" ax="-3.749" ay="32.778" az="-7.471" break_y="23.8" break_angle="9.2" break_length="2.0" pitch_type="FF" type_confidence=".916" zone="14" nasty="64" spin_dir="188.628" spin_rate="2575.658" cc="" mt=""/></atbat><atbat num="16" b="0" s="3" o="2" start_tfs="140806" start_tfs_zulu="2011-07-04T18:08:06Z" batter="502210" stand="L" b_height="6-2" pitcher="453344" p_throws="R" des="Josh Reddick strikes out swinging. Wild pitch by pitcher Brandon Morrow. Josh Reddick to 1st. " event="Strikeout" event2="Wild Pitch"><pitch des="Called Strike" id="120" type="S" tfs="140818" tfs_zulu="2011-07-04T18:08:18Z" x="104.72" y="133.84" sv_id="110704_140819" start_speed="79.6" end_speed="73.6" sz_top="3.35" sz_bot="1.74" pfx_x="2.52" pfx_z="-1.71" px="-0.356" pz="2.729" x0="-2.476" y0="50.0" z0="6.133" vx0="4.12" vy0="-116.684" vz0="-0.33" ax="3.457" ay="23.034" az="-34.451" break_y="23.8" break_angle="-6.9" break_length="10.3" pitch_type="CU" type_confidence=".902" zone="4" nasty="71" spin_dir="56.628" spin_rate="514.684" cc="" mt=""/><pitch des="Foul" id="121" type="S" tfs="140832" tfs_zulu="2011-07-04T18:08:32Z" x="115.88" y="133.84" sv_id="110704_140833" start_speed="87.8" end_speed="80.6" sz_top="3.47" sz_bot="1.69" pfx_x="-6.4" pfx_z="5.71" px="-0.82" pz="2.966" x0="-2.639" y0="50.0" z0="5.663" vx0="6.714" vy0="-128.539" vz0="-2.381" ax="-10.668" ay="27.42" az="-22.583" break_y="23.8" break_angle="21.9" break_length="6.1" pitch_type="FS" type_confidence=".842" zone="11" nasty="41" spin_dir="228.042" spin_rate="1619.135" cc="" mt=""/><pitch des="Swinging Strike" id="122" type="S" tfs="140914" tfs_zulu="2011-07-04T18:09:14Z" x="76.39" y="177.87" sv_id="110704_140855" start_speed="89.6" end_speed="82.2" sz_top="3.47" sz_bot="1.69" pfx_x="0.16" pfx_z="2.46" px="1.033" pz="0.666" x0="-2.391" y0="50.0" z0="5.759" vx0="8.75" vy0="-130.959" vz0="-7.667" ax="0.277" ay="31.209" az="-27.887" break_y="23.8" break_angle="-4.1" break_length="7.1" pitch_type="FC" type_confidence=".634" zone="14" nasty="48" spin_dir="176.305" spin_rate="475.910" cc="" mt=""/><runner id="502210" start="" end="1B" event="Wild Pitch"/></atbat><action b="1" s="0" o="3" des="With Jarrod Saltalamacchia batting, Jose Molina picks off Josh Reddick at 1st on throw to Adam Lind. " event="Pickoff 1B" tfs="141014" tfs_zulu="2011-07-04T18:10:14Z" player="502210" pitch="1"/><atbat num="17" b="1" s="0" o="3" start_tfs="140926" start_tfs_zulu="2011-07-04T18:09:26Z" batter="457454" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="With Jarrod Saltalamacchia batting, Jose Molina picks off Josh Reddick at 1st on throw to Adam Lind. " event="Runner Out"><pitch des="Ball" id="128" type="B" tfs="171636" tfs_zulu="2011-07-04T21:16:36Z" x="0.00" y="0.00" on_1b="502210" sv_id="110704_140942" start_speed="93.2" end_speed="85.1" sz_top="3.65" sz_bot="1.68" pfx_x="-5.52" pfx_z="8.98" px="-0.396" pz="3.757" x0="-2.497" y0="50.0" z0="5.872" vx0="7.568" vy0="-136.497" vz0="-2.836" ax="-10.334" ay="32.263" az="-15.287" break_y="23.7" break_angle="28.3" break_length="3.9" pitch_type="FF" type_confidence=".913" zone="11" nasty="68" spin_dir="211.463" spin_rate="2104.269" cc="Brandon Morrow is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><po des="Pickoff Attempt 1B"/><po des="Pickoff 1B"/><runner id="502210" start="1B" end="" event="Pickoff 1B"/></atbat></bottom></inning><inning num="3" away_team="tor" home_team="bos" next="Y"><top><atbat num="18" b="1" s="2" o="0" start_tfs="141137" start_tfs_zulu="2011-07-04T18:11:37Z" batter="519346" stand="L" b_height="6-1" pitcher="407793" p_throws="R" des="Eric Thames singles on a line drive to left fielder Josh Reddick. " event="Single"><pitch des="Swinging Strike" id="135" type="S" tfs="141159" tfs_zulu="2011-07-04T18:11:59Z" x="72.10" y="142.47" sv_id="110704_141201" start_speed="88.2" end_speed="81.5" sz_top="3.38" sz_bot="1.5" pfx_x="2.19" pfx_z="6.64" px="0.861" pz="2.528" x0="-2.435" y0="50.0" z0="6.356" vx0="7.666" vy0="-129.071" vz0="-5.643" ax="3.696" ay="27.262" az="-20.911" break_y="23.8" break_angle="-13.2" break_length="5.5" pitch_type="FC" type_confidence=".915" zone="12" nasty="63" spin_dir="161.834" spin_rate="1332.404" cc="" mt=""/><pitch des="Ball" id="136" type="B" tfs="141216" tfs_zulu="2011-07-04T18:12:16Z" x="82.40" y="88.94" sv_id="110704_141216" start_speed="88.0" end_speed="80.4" sz_top="3.34" sz_bot="1.5" pfx_x="-0.65" pfx_z="6.89" px="0.781" pz="3.433" x0="-2.407" y0="50.0" z0="6.477" vx0="8.276" vy0="-128.679" vz0="-3.61" ax="-1.083" ay="29.398" az="-20.678" break_y="23.7" break_angle="-1.9" break_length="5.3" pitch_type="FC" type_confidence=".567" zone="12" nasty="61" spin_dir="185.380" spin_rate="1301.847" cc="" mt=""/><pitch des="Foul" id="137" type="S" tfs="141230" tfs_zulu="2011-07-04T18:12:30Z" x="106.44" y="144.20" sv_id="110704_141229" start_speed="79.2" end_speed="72.7" sz_top="3.38" sz_bot="1.5" pfx_x="3.29" pfx_z="-2.35" px="-0.204" pz="1.412" x0="-2.796" y0="50.0" z0="6.434" vx0="4.921" vy0="-115.94" vz0="-3.649" ax="4.39" ay="25.437" az="-35.239" break_y="23.8" break_angle="-8.4" break_length="11.1" pitch_type="CU" type_confidence=".896" zone="13" nasty="36" spin_dir="55.077" spin_rate="669.969" cc="" mt=""/><pitch des="In play, no out" id="138" type="X" tfs="141251" tfs_zulu="2011-07-04T18:12:51Z" x="97.85" y="153.69" sv_id="110704_141250" start_speed="93.5" end_speed="86.5" sz_top="3.38" sz_bot="1.5" pfx_x="-3.4" pfx_z="9.15" px="-0.133" pz="1.444" x0="-2.796" y0="50.0" z0="5.912" vx0="8.385" vy0="-136.567" vz0="-9.331" ax="-6.444" ay="29.046" az="-14.764" break_y="23.8" break_angle="15.9" break_length="3.7" pitch_type="FF" type_confidence=".937" zone="13" nasty="38" spin_dir="200.310" spin_rate="1972.128" cc="" mt=""/><runner id="519346" start="" end="1B" event="Single"/></atbat><atbat num="19" b="3" s="2" o="0" start_tfs="141306" start_tfs_zulu="2011-07-04T18:13:06Z" batter="430832" stand="R" b_height="6-0" pitcher="407793" p_throws="R" des="Jose Bautista singles on a sharp ground ball to left fielder Josh Reddick. Eric Thames to 2nd. " event="Single"><po des="Pickoff Attempt 1B"/><pitch des="Called Strike" id="143" type="S" tfs="141344" tfs_zulu="2011-07-04T18:13:44Z" x="66.09" y="139.88" on_1b="519346" sv_id="110704_141344" start_speed="93.2" end_speed="85.5" sz_top="3.48" sz_bot="1.51" pfx_x="-3.05" pfx_z="9.29" px="0.821" pz="2.881" x0="-2.231" y0="50.0" z0="6.217" vx0="9.255" vy0="-136.204" vz0="-6.213" ax="-5.701" ay="31.078" az="-14.727" break_y="23.8" break_angle="12.8" break_length="3.6" pitch_type="FF" type_confidence=".935" zone="12" nasty="70" spin_dir="198.094" spin_rate="1955.070" cc="" mt=""/><pitch des="Foul" id="144" type="S" tfs="141401" tfs_zulu="2011-07-04T18:14:01Z" x="84.12" y="135.56" on_1b="519346" sv_id="110704_141403" start_speed="93.3" end_speed="85.6" sz_top="3.29" sz_bot="1.51" pfx_x="-4.73" pfx_z="8.99" px="0.964" pz="2.628" x0="-2.308" y0="50.0" z0="6.199" vx0="10.441" vy0="-136.342" vz0="-6.758" ax="-8.872" ay="31.239" az="-15.249" break_y="23.8" break_angle="21.3" break_length="3.9" pitch_type="FF" type_confidence=".911" zone="12" nasty="53" spin_dir="207.662" spin_rate="2033.382" cc="" mt=""/><pitch des="Ball" id="145" type="B" tfs="141453" tfs_zulu="2011-07-04T18:14:53Z" x="60.09" y="129.52" on_1b="519346" sv_id="110704_141454" start_speed="93.8" end_speed="86.7" sz_top="3.51" sz_bot="1.69" pfx_x="-5.24" pfx_z="9.52" px="1.945" pz="2.944" x0="-2.168" y0="50.0" z0="6.161" vx0="12.981" vy0="-136.753" vz0="-6.137" ax="-9.987" ay="28.187" az="-13.94" break_y="23.8" break_angle="25.9" break_length="3.6" pitch_type="FF" type_confidence=".876" zone="12" nasty="25" spin_dir="208.709" spin_rate="2205.552" cc="" mt=""/><pitch des="Ball" id="146" type="B" tfs="141517" tfs_zulu="2011-07-04T18:15:17Z" x="57.51" y="166.65" on_1b="519346" sv_id="110704_141516" start_speed="92.8" end_speed="86.0" sz_top="3.24" sz_bot="1.65" pfx_x="-2.62" pfx_z="10.3" px="2.128" pz="1.97" x0="-2.116" y0="50.0" z0="6.191" vx0="12.277" vy0="-135.19" vz0="-8.898" ax="-4.884" ay="27.313" az="-12.885" break_y="23.8" break_angle="9.7" break_length="3.2" pitch_type="FF" type_confidence=".935" zone="14" nasty="29" spin_dir="194.207" spin_rate="2135.309" cc="" mt=""/><pitch des="Foul" id="147" type="S" tfs="141543" tfs_zulu="2011-07-04T18:15:43Z" x="68.67" y="141.61" on_1b="519346" sv_id="110704_141541" start_speed="93.6" end_speed="85.8" sz_top="3.29" sz_bot="1.51" pfx_x="-4.08" pfx_z="9.76" px="1.495" pz="2.091" x0="-2.342" y0="50.0" z0="6.041" vx0="11.75" vy0="-136.588" vz0="-8.075" ax="-7.672" ay="31.501" az="-13.747" break_y="23.8" break_angle="18.0" break_length="3.5" pitch_type="FF" type_confidence=".923" zone="14" nasty="25" spin_dir="202.603" spin_rate="2120.103" cc="" mt=""/><pitch des="Ball In Dirt" id="148" type="B" tfs="141609" tfs_zulu="2011-07-04T18:16:09Z" x="70.39" y="189.10" on_1b="519346" sv_id="110704_141607" start_speed="90.0" end_speed="83.2" sz_top="3.43" sz_bot="1.68" pfx_x="1.23" pfx_z="4.82" px="2.223" pz="0.865" x0="-2.042" y0="50.0" z0="6.119" vx0="10.617" vy0="-131.201" vz0="-9.0" ax="2.145" ay="28.647" az="-23.736" break_y="23.8" break_angle="-9.3" break_length="6.1" pitch_type="FC" type_confidence=".824" zone="14" nasty="27" spin_dir="165.739" spin_rate="962.725" cc="" mt=""/><pitch des="In play, no out" id="149" type="X" tfs="141648" tfs_zulu="2011-07-04T18:16:48Z" x="78.97" y="147.65" on_1b="519346" sv_id="110704_141640" start_speed="94.3" end_speed="86.9" sz_top="3.29" sz_bot="1.51" pfx_x="-3.25" pfx_z="9.65" px="0.202" pz="2.92" x0="-2.346" y0="50.0" z0="6.18" vx0="8.091" vy0="-137.865" vz0="-6.401" ax="-6.272" ay="30.106" az="-13.501" break_y="23.8" break_angle="17.0" break_length="3.3" pitch_type="FF" type_confidence=".937" zone="2" nasty="33" spin_dir="198.565" spin_rate="2072.882" cc="John Lackey had Jose Bautista down 0-2 but could not put him away." mt=""/><runner id="519346" start="1B" end="2B" event="Pickoff Attempt 1B"/><runner id="430832" start="" end="1B" event="Pickoff Attempt 1B"/></atbat><atbat num="20" b="3" s="2" o="0" start_tfs="141731" start_tfs_zulu="2011-07-04T18:17:31Z" batter="452252" stand="L" b_height="6-1" pitcher="407793" p_throws="R" des="Adam Lind singles on a line drive to center fielder Jacoby Ellsbury. Eric Thames scores. Jose Bautista to 2nd. " event="Single" score="T" home_team_runs="0" away_team_runs="4"><pitch des="Ball" id="154" type="B" tfs="141740" tfs_zulu="2011-07-04T18:17:40Z" x="72.10" y="115.70" on_1b="430832" on_2b="519346" sv_id="110704_141734" start_speed="88.5" end_speed="81.0" sz_top="3.41" sz_bot="1.64" pfx_x="3.11" pfx_z="3.46" px="0.961" pz="3.501" x0="-2.228" y0="50.0" z0="6.477" vx0="7.087" vy0="-129.528" vz0="-2.408" ax="5.22" ay="30.042" az="-26.295" break_y="23.8" break_angle="-14.1" break_length="6.7" pitch_type="FC" type_confidence=".899" zone="12" nasty="80" spin_dir="138.399" spin_rate="880.586" cc="" mt=""/><pitch des="Ball" id="155" type="B" tfs="141752" tfs_zulu="2011-07-04T18:17:52Z" x="74.68" y="138.15" on_1b="430832" on_2b="519346" sv_id="110704_141751" start_speed="85.5" end_speed="77.9" sz_top="3.37" sz_bot="1.58" pfx_x="-8.87" pfx_z="2.67" px="0.495" pz="1.71" x0="-2.389" y0="50.0" z0="6.097" vx0="9.874" vy0="-124.927" vz0="-5.036" ax="-13.779" ay="29.099" az="-27.952" break_y="23.7" break_angle="21.8" break_length="8.2" pitch_type="CH" type_confidence=".788" zone="9" nasty="46" spin_dir="252.964" spin_rate="1673.592" cc="" mt=""/><pitch des="Foul" id="156" type="S" tfs="141819" tfs_zulu="2011-07-04T18:18:19Z" x="89.27" y="150.24" on_1b="430832" on_2b="519346" sv_id="110704_141813" start_speed="79.6" end_speed="73.3" sz_top="3.59" sz_bot="1.73" pfx_x="3.13" pfx_z="-3.51" px="-0.109" pz="3.226" x0="-2.555" y0="50.0" z0="6.557" vx0="4.675" vy0="-116.604" vz0="0.411" ax="4.266" ay="24.089" az="-36.875" break_y="23.8" break_angle="-7.9" break_length="11.1" pitch_type="CU" type_confidence=".906" zone="2" nasty="24" spin_dir="42.222" spin_rate="789.826" cc="" mt=""/><pitch des="Ball" id="157" type="B" tfs="141858" tfs_zulu="2011-07-04T18:18:58Z" x="63.52" y="100.16" on_1b="430832" on_2b="519346" sv_id="110704_141856" start_speed="87.1" end_speed="79.8" sz_top="3.45" sz_bot="1.62" pfx_x="2.58" pfx_z="3.84" px="1.432" pz="3.599" x0="-2.236" y0="50.0" z0="6.436" vx0="8.346" vy0="-127.391" vz0="-1.938" ax="4.198" ay="28.732" az="-25.863" break_y="23.8" break_angle="-12.8" break_length="6.7" pitch_type="FC" type_confidence=".828" zone="12" nasty="35" spin_dir="146.370" spin_rate="863.209" cc="" mt=""/><pitch des="Foul" id="158" type="S" tfs="141921" tfs_zulu="2011-07-04T18:19:21Z" x="103.00" y="118.29" on_1b="430832" on_2b="519346" sv_id="110704_141914" start_speed="92.9" end_speed="85.2" sz_top="3.59" sz_bot="1.73" pfx_x="-4.77" pfx_z="9.27" px="-1.196" pz="2.968" x0="-2.859" y0="50.0" z0="6.083" vx0="6.116" vy0="-136.059" vz0="-5.584" ax="-8.895" ay="31.325" az="-14.82" break_y="23.8" break_angle="25.1" break_length="3.9" pitch_type="FF" type_confidence=".924" zone="11" nasty="50" spin_dir="207.137" spin_rate="2079.352" cc="" mt=""/><pitch des="In play, run(s)" id="159" type="X" tfs="141953" tfs_zulu="2011-07-04T18:19:53Z" x="91.85" y="139.88" on_1b="430832" on_2b="519346" sv_id="110704_141945" start_speed="93.1" end_speed="86.2" sz_top="3.59" sz_bot="1.73" pfx_x="-5.82" pfx_z="10.85" px="-0.922" pz="2.694" x0="-2.86" y0="50.0" z0="5.997" vx0="7.266" vy0="-136.216" vz0="-6.765" ax="-11.004" ay="27.914" az="-11.561" break_y="23.8" break_angle="36.5" break_length="3.4" pitch_type="FF" type_confidence=".894" zone="11" nasty="49" spin_dir="208.094" spin_rate="2488.651" cc="" mt=""/><runner id="430832" start="1B" end="2B" event="Single"/><runner id="519346" start="2B" end="" event="Single" score="T" rbi="T" earned="T"/><runner id="452252" start="" end="1B" event="Single"/></atbat><action b="3" s="2" o="0" des="Coaching visit to mound. " event="Game Advisory" tfs="142009" tfs_zulu="2011-07-04T18:20:09Z" player="429665" pitch="6"/><atbat num="21" b="2" s="1" o="1" start_tfs="142050" start_tfs_zulu="2011-07-04T18:20:50Z" batter="429665" stand="R" b_height="6-2" pitcher="407793" p_throws="R" des="Edwin Encarnacion flies out to center fielder Jacoby Ellsbury. " event="Flyout"><pitch des="Ball" id="168" type="B" tfs="142103" tfs_zulu="2011-07-04T18:21:03Z" x="95.28" y="87.21" on_1b="452252" on_2b="430832" sv_id="110704_142104" start_speed="84.7" end_speed="77.8" sz_top="3.35" sz_bot="1.65" pfx_x="5.95" pfx_z="1.0" px="0.014" pz="4.602" x0="-2.443" y0="50.0" z0="6.644" vx0="4.113" vy0="-124.104" vz0="1.268" ax="9.213" ay="26.574" az="-30.552" break_y="23.8" break_angle="-18.3" break_length="8.4" pitch_type="SL" type_confidence=".951" zone="12" nasty="45" spin_dir="99.985" spin_rate="1093.568" cc="" mt=""/><pitch des="Foul" id="169" type="S" tfs="142126" tfs_zulu="2011-07-04T18:21:26Z" x="111.59" y="141.61" on_1b="452252" on_2b="430832" sv_id="110704_142124" start_speed="87.6" end_speed="80.8" sz_top="3.55" sz_bot="1.65" pfx_x="3.02" pfx_z="4.17" px="-0.506" pz="2.593" x0="-2.362" y0="50.0" z0="6.332" vx0="3.702" vy0="-128.321" vz0="-4.488" ax="5.028" ay="27.297" az="-25.167" break_y="23.8" break_angle="-12.4" break_length="6.5" pitch_type="FC" type_confidence=".922" zone="4" nasty="41" spin_dir="144.339" spin_rate="975.055" cc="John Lackey is trying to tie up Edwin Encarnacion with fastballs inside, where Edwin Encarnacion hits .310." mt=""/><pitch des="Ball" id="170" type="B" tfs="142158" tfs_zulu="2011-07-04T18:21:58Z" x="103.00" y="91.53" on_1b="452252" on_2b="430832" sv_id="110704_142158" start_speed="87.6" end_speed="79.9" sz_top="3.47" sz_bot="1.65" pfx_x="-1.32" pfx_z="3.99" px="0.139" pz="3.72" x0="-2.336" y0="50.0" z0="6.486" vx0="6.664" vy0="-128.235" vz0="-1.892" ax="-2.175" ay="29.723" az="-25.539" break_y="23.7" break_angle="1.6" break_length="6.4" pitch_type="FC" type_confidence=".656" zone="12" nasty="40" spin_dir="198.148" spin_rate="789.951" cc="" mt=""/><pitch des="In play, out(s)" id="171" type="X" tfs="142224" tfs_zulu="2011-07-04T18:22:24Z" x="99.57" y="132.11" on_1b="452252" on_2b="430832" sv_id="110704_142217" start_speed="87.1" end_speed="79.9" sz_top="3.55" sz_bot="1.65" pfx_x="-0.57" pfx_z="4.26" px="0.144" pz="2.53" x0="-2.398" y0="50.0" z0="6.38" vx0="6.558" vy0="-127.426" vz0="-4.63" ax="-0.934" ay="28.353" az="-25.165" break_y="23.8" break_angle="-.9" break_length="6.5" pitch_type="FC" type_confidence=".839" zone="5" nasty="22" spin_dir="187.589" spin_rate="805.049" cc="" mt=""/></atbat><atbat num="22" b="3" s="2" o="1" start_tfs="142248" start_tfs_zulu="2011-07-04T18:22:48Z" batter="431094" stand="R" b_height="5-11" pitcher="407793" p_throws="R" des="Aaron Hill singles on a line drive to center fielder Jacoby Ellsbury. Jose Bautista scores. Adam Lind to 2nd. " event="Single" score="T" home_team_runs="0" away_team_runs="5"><pitch des="Ball" id="175" type="B" tfs="142304" tfs_zulu="2011-07-04T18:23:04Z" x="60.94" y="173.55" on_1b="452252" on_2b="430832" sv_id="110704_142303" start_speed="87.7" end_speed="80.6" sz_top="3.39" sz_bot="1.64" pfx_x="4.13" pfx_z="5.55" px="1.677" pz="1.437" x0="-2.006" y0="50.0" z0="6.342" vx0="7.927" vy0="-128.174" vz0="-7.796" ax="6.795" ay="29.238" az="-22.973" break_y="23.8" break_angle="-18.8" break_length="6.4" pitch_type="FC" type_confidence=".928" zone="14" nasty="52" spin_dir="143.555" spin_rate="1294.663" cc="" mt=""/><pitch des="Swinging Strike" id="176" type="S" tfs="142326" tfs_zulu="2011-07-04T18:23:26Z" x="88.41" y="143.33" on_1b="452252" on_2b="430832" sv_id="110704_142323" start_speed="92.8" end_speed="84.5" sz_top="3.09" sz_bot="1.46" pfx_x="-2.08" pfx_z="8.6" px="0.244" pz="3.014" x0="-2.491" y0="50.0" z0="5.976" vx0="8.01" vy0="-135.73" vz0="-4.848" ax="-3.833" ay="33.15" az="-16.252" break_y="23.7" break_angle="6.3" break_length="3.9" pitch_type="FF" type_confidence=".937" zone="3" nasty="39" spin_dir="193.534" spin_rate="1750.481" cc="John Lackey went back to the four-seam fastball even though Aaron Hill hit for a home run last time up." mt=""/><pitch des="Ball" id="177" type="B" tfs="142347" tfs_zulu="2011-07-04T18:23:47Z" x="99.57" y="178.73" on_1b="452252" on_2b="430832" sv_id="110704_142345" start_speed="88.5" end_speed="80.7" sz_top="3.44" sz_bot="1.46" pfx_x="0.36" pfx_z="5.95" px="1.313" pz="1.373" x0="-2.253" y0="50.0" z0="6.213" vx0="8.919" vy0="-129.301" vz0="-7.88" ax="0.592" ay="31.478" az="-22.2" break_y="23.7" break_angle="-6.1" break_length="5.9" pitch_type="FC" type_confidence=".732" zone="14" nasty="40" spin_dir="176.605" spin_rate="1121.072" cc="" mt=""/><pitch des="Ball" id="178" type="B" tfs="142407" tfs_zulu="2011-07-04T18:24:07Z" x="63.52" y="151.10" on_1b="452252" on_2b="430832" sv_id="110704_142408" start_speed="87.1" end_speed="80.8" sz_top="3.4" sz_bot="1.46" pfx_x="3.3" pfx_z="4.73" px="1.247" pz="2.579" x0="-2.111" y0="50.0" z0="6.469" vx0="7.375" vy0="-127.4" vz0="-4.966" ax="5.437" ay="25.669" az="-24.31" break_y="23.8" break_angle="-15.0" break_length="6.4" pitch_type="FC" type_confidence=".907" zone="12" nasty="46" spin_dir="145.342" spin_rate="1088.715" cc="" mt=""/><pitch des="Called Strike" id="179" type="S" tfs="142434" tfs_zulu="2011-07-04T18:24:34Z" x="78.97" y="135.56" on_1b="452252" on_2b="430832" sv_id="110704_142433" start_speed="92.8" end_speed="84.7" sz_top="3.42" sz_bot="1.61" pfx_x="-1.64" pfx_z="7.13" px="1.013" pz="2.607" x0="-2.479" y0="50.0" z0="5.989" vx0="9.873" vy0="-135.656" vz0="-5.452" ax="-3.026" ay="32.939" az="-18.979" break_y="23.7" break_angle="2.1" break_length="4.5" pitch_type="FF" type_confidence=".934" zone="12" nasty="47" spin_dir="192.915" spin_rate="1447.780" cc="" mt=""/><pitch des="In play, run(s)" id="180" type="X" tfs="142518" tfs_zulu="2011-07-04T18:25:18Z" x="102.15" y="117.43" on_1b="452252" on_2b="430832" sv_id="110704_142459" start_speed="93.5" end_speed="86.0" sz_top="3.09" sz_bot="1.46" pfx_x="-2.24" pfx_z="7.94" px="0.206" pz="3.484" x0="-2.574" y0="50.0" z0="6.053" vx0="8.291" vy0="-136.789" vz0="-3.776" ax="-4.235" ay="30.203" az="-17.067" break_y="23.8" break_angle="7.8" break_length="3.9" pitch_type="FF" type_confidence=".937" zone="12" nasty="44" spin_dir="195.658" spin_rate="1664.014" cc="" mt=""/><runner id="452252" start="1B" end="2B" event="Single"/><runner id="430832" start="2B" end="" event="Single" score="T" rbi="T" earned="T"/><runner id="431094" start="" end="1B" event="Single"/></atbat><atbat num="23" b="1" s="2" o="1" start_tfs="142533" start_tfs_zulu="2011-07-04T18:25:33Z" batter="501983" stand="L" b_height="6-0" pitcher="407793" p_throws="R" des="Travis Snider doubles (6) on a line drive to right fielder J. D. Drew. Adam Lind scores. Aaron Hill scores. " event="Double" score="T" home_team_runs="0" away_team_runs="7"><pitch des="Foul" id="188" type="S" tfs="142548" tfs_zulu="2011-07-04T18:25:48Z" x="110.73" y="132.97" on_1b="431094" on_2b="452252" sv_id="110704_142548" start_speed="91.6" end_speed="85.0" sz_top="3.56" sz_bot="1.68" pfx_x="-1.54" pfx_z="8.55" px="0.953" pz="3.194" x0="-2.424" y0="50.0" z0="6.298" vx0="9.49" vy0="-133.899" vz0="-5.135" ax="-2.829" ay="26.607" az="-16.446" break_y="23.8" break_angle="3.3" break_length="3.9" pitch_type="FF" type_confidence=".925" zone="12" nasty="75" spin_dir="190.195" spin_rate="1731.460" cc="John Lackey went back to the four-seam fastball even though Travis Snider hit for a double last time up." mt=""/><pitch des="Swinging Strike" id="189" type="S" tfs="142614" tfs_zulu="2011-07-04T18:26:14Z" x="98.71" y="143.33" on_1b="431094" on_2b="452252" sv_id="110704_142613" start_speed="85.4" end_speed="78.3" sz_top="3.56" sz_bot="1.68" pfx_x="-4.67" pfx_z="7.23" px="-0.094" pz="2.491" x0="-2.459" y0="50.0" z0="6.271" vx0="7.304" vy0="-124.885" vz0="-5.071" ax="-7.323" ay="26.747" az="-20.759" break_y="23.8" break_angle="15.0" break_length="5.8" pitch_type="CH" type_confidence=".494" zone="5" nasty="21" spin_dir="212.680" spin_rate="1575.493" cc="" mt=""/><pitch des="Ball" id="190" type="B" tfs="142636" tfs_zulu="2011-07-04T18:26:36Z" x="71.24" y="127.79" on_1b="431094" on_2b="452252" sv_id="110704_142635" start_speed="92.5" end_speed="86.4" sz_top="3.34" sz_bot="1.42" pfx_x="-1.75" pfx_z="6.7" px="-0.283" pz="4.329" x0="-2.896" y0="50.0" z0="6.103" vx0="7.653" vy0="-135.396" vz0="-1.171" ax="-3.317" ay="24.532" az="-19.428" break_y="23.9" break_angle="5.7" break_length="4.2" pitch_type="FF" type_confidence=".928" zone="11" nasty="30" spin_dir="194.585" spin_rate="1411.237" cc="" mt=""/><pitch des="In play, run(s)" id="191" type="X" tfs="142713" tfs_zulu="2011-07-04T18:27:13Z" x="91.85" y="145.06" on_1b="431094" on_2b="452252" sv_id="110704_142653" start_speed="81.2" end_speed="75.3" sz_top="3.56" sz_bot="1.68" pfx_x="3.39" pfx_z="-1.1" px="-0.081" pz="2.223" x0="-2.594" y0="50.0" z0="6.363" vx0="4.863" vy0="-119.025" vz0="-2.536" ax="4.849" ay="23.679" az="-33.676" break_y="23.8" break_angle="-9.4" break_length="9.8" pitch_type="CU" type_confidence=".681" zone="8" nasty="18" spin_dir="72.789" spin_rate="618.744" cc="John Lackey had Travis Snider down 0-2 but could not put him away." mt=""/><runner id="431094" start="1B" end="" event="Double" score="T" rbi="T" earned="T"/><runner id="452252" start="2B" end="" event="Double" score="T" rbi="T" earned="T"/><runner id="501983" start="" end="2B" event="Double"/></atbat><action b="0" s="0" o="1" des="Pitcher Change: Dan Wheeler replaces John Lackey. " event="Pitching Substitution" tfs="142747" tfs_zulu="2011-07-04T18:27:47Z" player="235095" pitch="4"/><action b="0" s="0" o="1" des="Coaching visit to mound. " event="Game Advisory" tfs="142725" tfs_zulu="2011-07-04T18:27:25Z" player="150040" pitch="4"/><atbat num="24" b="0" s="0" o="2" start_tfs="142954" start_tfs_zulu="2011-07-04T18:29:54Z" batter="150040" stand="R" b_height="6-2" pitcher="235095" p_throws="R" des="Jose Molina flies out to right fielder J. D. Drew. " event="Flyout"><pitch des="In play, out(s)" id="203" type="X" tfs="143012" tfs_zulu="2011-07-04T18:30:12Z" x="97.85" y="135.56" on_2b="501983" sv_id="110704_143009" start_speed="89.0" end_speed="81.2" sz_top="3.62" sz_bot="1.74" pfx_x="-6.49" pfx_z="9.34" px="-0.0030" pz="3.319" x0="-1.675" y0="50.0" z0="5.744" vx0="6.448" vy0="-130.405" vz0="-3.066" ax="-11.076" ay="29.837" az="-16.169" break_y="23.7" break_angle="29.7" break_length="4.6" pitch_type="FT" type_confidence=".937" zone="2" nasty="39" spin_dir="214.683" spin_rate="2165.383" cc="" mt=""/></atbat><atbat num="25" b="0" s="2" o="3" start_tfs="143033" start_tfs_zulu="2011-07-04T18:30:33Z" batter="150348" stand="R" b_height="5-9" pitcher="235095" p_throws="R" des="John McDonald flies out to left fielder Josh Reddick. " event="Flyout"><pitch des="Foul" id="207" type="S" tfs="143110" tfs_zulu="2011-07-04T18:31:10Z" x="89.27" y="126.93" on_2b="501983" sv_id="110704_143104" start_speed="85.8" end_speed="79.9" sz_top="3.24" sz_bot="1.59" pfx_x="1.44" pfx_z="4.76" px="0.503" pz="1.679" x0="-1.7" y0="50.0" z0="5.734" vx0="5.014" vy0="-125.661" vz0="-5.177" ax="2.325" ay="23.791" az="-24.442" break_y="23.9" break_angle="-7.1" break_length="6.4" pitch_type="SL" type_confidence=".513" zone="9" nasty="77" spin_dir="163.266" spin_rate="932.160" cc="" mt=""/><pitch des="Foul" id="208" type="S" tfs="143133" tfs_zulu="2011-07-04T18:31:33Z" x="102.15" y="99.30" on_2b="501983" sv_id="110704_143135" start_speed="89.0" end_speed="82.8" sz_top="3.24" sz_bot="1.59" pfx_x="-3.54" pfx_z="10.6" px="0.211" pz="3.542" x0="-1.592" y0="50.0" z0="5.779" vx0="5.86" vy0="-130.37" vz0="-3.16" ax="-6.18" ay="23.968" az="-13.616" break_y="23.9" break_angle="19.9" break_length="3.5" pitch_type="FC" type_confidence=".628" zone="12" nasty="51" spin_dir="198.417" spin_rate="2176.669" cc="Dan Wheeler went back to the cutter even though John McDonald hit for a single last time up." mt=""/><pitch des="In play, out(s)" id="209" type="X" tfs="143209" tfs_zulu="2011-07-04T18:32:09Z" x="93.56" y="121.75" on_2b="501983" sv_id="110704_143207" start_speed="84.0" end_speed="78.4" sz_top="3.24" sz_bot="1.59" pfx_x="2.58" pfx_z="-1.24" px="0.078" pz="2.399" x0="-1.709" y0="50.0" z0="5.754" vx0="3.54" vy0="-123.151" vz0="-1.211" ax="3.997" ay="22.614" az="-34.026" break_y="23.9" break_angle="-7.6" break_length="9.0" pitch_type="SL" type_confidence=".938" zone="5" nasty="17" spin_dir="65.139" spin_rate="518.957" cc="Dan Wheeler is getting a generous strike zone this inning from home plate ump Jerry Layne." mt=""/><runner id="501983" start="2B" end="" event="Flyout"/></atbat></top><bottom><atbat num="26" b="0" s="1" o="1" start_tfs="143432" start_tfs_zulu="2011-07-04T18:34:32Z" batter="457454" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="Jarrod Saltalamacchia grounds out to first baseman Adam Lind. " event="Groundout"><pitch des="Called Strike" id="215" type="S" tfs="143445" tfs_zulu="2011-07-04T18:34:45Z" x="118.45" y="147.65" sv_id="110704_143442" start_speed="90.6" end_speed="82.4" sz_top="3.69" sz_bot="1.68" pfx_x="-6.87" pfx_z="11.67" px="-0.787" pz="2.045" x0="-2.608" y0="50.0" z0="5.76" vx0="7.05" vy0="-132.476" vz0="-7.42" ax="-12.036" ay="31.982" az="-11.645" break_y="23.7" break_angle="37.7" break_length="3.9" pitch_type="FF" type_confidence=".889" zone="13" nasty="73" spin_dir="210.382" spin_rate="2606.095" cc="" mt=""/><pitch des="In play, out(s)" id="216" type="X" tfs="143456" tfs_zulu="2011-07-04T18:34:56Z" x="98.71" y="139.88" sv_id="110704_143455" start_speed="87.4" end_speed="80.4" sz_top="3.46" sz_bot="1.68" pfx_x="3.97" pfx_z="-0.07" px="0.536" pz="2.306" x0="-2.302" y0="50.0" z0="5.797" vx0="5.848" vy0="-127.987" vz0="-2.392" ax="6.537" ay="28.5" az="-32.213" break_y="23.8" break_angle="-13.2" break_length="8.3" pitch_type="SL" type_confidence=".892" zone="6" nasty="36" spin_dir="89.658" spin_rate="741.007" cc="" mt=""/></atbat><atbat num="27" b="3" s="3" o="2" start_tfs="143520" start_tfs_zulu="2011-07-04T18:35:20Z" batter="136770" stand="L" b_height="6-1" pitcher="453344" p_throws="R" des="J. D. Drew strikes out swinging. " event="Strikeout"><pitch des="Called Strike" id="220" type="S" tfs="143531" tfs_zulu="2011-07-04T18:35:31Z" x="100.43" y="133.84" sv_id="110704_143528" start_speed="92.8" end_speed="83.9" sz_top="3.51" sz_bot="1.74" pfx_x="-9.11" pfx_z="8.0" px="-0.683" pz="3.166" x0="-2.717" y0="50.0" z0="5.674" vx0="8.545" vy0="-135.821" vz0="-3.387" ax="-16.686" ay="35.249" az="-17.455" break_y="23.7" break_angle="38.4" break_length="5.2" pitch_type="SI" type_confidence=".929" zone="1" nasty="65" spin_dir="228.583" spin_rate="2376.672" cc="" mt=""/><pitch des="Ball" id="221" type="B" tfs="143542" tfs_zulu="2011-07-04T18:35:42Z" x="129.61" y="158.88" sv_id="110704_143540" start_speed="92.2" end_speed="83.8" sz_top="3.51" sz_bot="1.54" pfx_x="-5.56" pfx_z="10.98" px="0.854" pz="2.122" x0="-2.628" y0="50.0" z0="5.52" vx0="11.102" vy0="-134.533" vz0="-6.663" ax="-10.062" ay="32.627" az="-12.223" break_y="23.7" break_angle="28.3" break_length="3.5" pitch_type="FF" type_confidence=".912" zone="14" nasty="56" spin_dir="206.762" spin_rate="2409.618" cc="" mt=""/><pitch des="Ball" id="222" type="B" tfs="143610" tfs_zulu="2011-07-04T18:36:10Z" x="127.90" y="141.61" sv_id="110704_143554" start_speed="88.1" end_speed="81.4" sz_top="3.51" sz_bot="1.47" pfx_x="2.99" pfx_z="4.2" px="1.479" pz="2.511" x0="-2.328" y0="50.0" z0="5.864" vx0="8.691" vy0="-128.891" vz0="-3.593" ax="5.01" ay="27.443" az="-25.054" break_y="23.8" break_angle="-14.6" break_length="6.4" pitch_type="SL" type_confidence=".899" zone="12" nasty="13" spin_dir="144.869" spin_rate="979.938" cc="" mt=""/><pitch des="Ball" id="223" type="B" tfs="143614" tfs_zulu="2011-07-04T18:36:14Z" x="90.99" y="175.28" sv_id="110704_143609" start_speed="91.8" end_speed="82.5" sz_top="3.34" sz_bot="1.39" pfx_x="-8.39" pfx_z="7.73" px="-1.461" pz="3.279" x0="-3.073" y0="50.0" z0="5.593" vx0="7.081" vy0="-134.446" vz0="-2.584" ax="-14.965" ay="36.205" az="-18.323" break_y="23.6" break_angle="34.6" break_length="5.3" pitch_type="SI" type_confidence=".835" zone="11" nasty="39" spin_dir="227.213" spin_rate="2200.378" cc="" mt=""/><pitch des="Foul" id="224" type="S" tfs="143623" tfs_zulu="2011-07-04T18:36:23Z" x="95.28" y="146.79" sv_id="110704_143625" start_speed="92.4" end_speed="83.7" sz_top="3.51" sz_bot="1.74" pfx_x="-5.42" pfx_z="8.75" px="0.108" pz="2.037" x0="-2.58" y0="50.0" z0="5.416" vx0="8.978" vy0="-135.153" vz0="-5.884" ax="-9.848" ay="34.527" az="-16.221" break_y="23.7" break_angle="23.3" break_length="4.3" pitch_type="FF" type_confidence=".913" zone="8" nasty="34" spin_dir="211.686" spin_rate="2012.462" cc="" mt=""/><pitch des="Swinging Strike" id="225" type="S" tfs="143645" tfs_zulu="2011-07-04T18:36:45Z" x="105.58" y="145.06" sv_id="110704_143645" start_speed="95.0" end_speed="87.2" sz_top="3.51" sz_bot="1.74" pfx_x="-4.03" pfx_z="8.84" px="-0.965" pz="2.907" x0="-2.591" y0="50.0" z0="5.711" vx0="5.897" vy0="-139.084" vz0="-4.99" ax="-7.879" ay="31.889" az="-14.82" break_y="23.8" break_angle="22.4" break_length="3.6" pitch_type="FF" type_confidence=".915" zone="11" nasty="54" spin_dir="204.417" spin_rate="1988.025" cc="" mt=""/></atbat><atbat num="28" b="3" s="2" o="2" start_tfs="143655" start_tfs_zulu="2011-07-04T18:36:55Z" batter="340192" stand="R" b_height="5-10" pitcher="453344" p_throws="R" des="Marco Scutaro singles on a line drive to left fielder Eric Thames. " event="Single"><pitch des="Ball" id="229" type="B" tfs="143725" tfs_zulu="2011-07-04T18:37:25Z" x="63.52" y="126.06" sv_id="110704_143726" start_speed="94.1" end_speed="87.6" sz_top="3.31" sz_bot="1.56" pfx_x="-7.88" pfx_z="7.65" px="1.01" pz="3.081" x0="-2.314" y0="50.0" z0="5.541" vx0="11.881" vy0="-137.39" vz0="-3.562" ax="-15.313" ay="25.725" az="-17.232" break_y="23.9" break_angle="36.3" break_length="4.6" pitch_type="FF" type_confidence=".642" zone="12" nasty="77" spin_dir="225.702" spin_rate="2259.238" cc="" mt=""/><pitch des="Ball" id="230" type="B" tfs="143741" tfs_zulu="2011-07-04T18:37:41Z" x="127.90" y="102.75" sv_id="110704_143739" start_speed="93.8" end_speed="87.4" sz_top="3.31" sz_bot="1.56" pfx_x="-6.22" pfx_z="9.9" px="-0.749" pz="3.872" x0="-2.613" y0="50.0" z0="5.842" vx0="7.301" vy0="-137.355" vz0="-3.021" ax="-12.077" ay="25.65" az="-12.87" break_y="23.9" break_angle="38.6" break_length="3.6" pitch_type="FF" type_confidence=".909" zone="11" nasty="45" spin_dir="212.030" spin_rate="2405.091" cc="" mt=""/><pitch des="Ball" id="231" type="B" tfs="143754" tfs_zulu="2011-07-04T18:37:54Z" x="92.70" y="91.53" sv_id="110704_143755" start_speed="92.4" end_speed="84.7" sz_top="3.31" sz_bot="1.56" pfx_x="-4.69" pfx_z="8.56" px="0.227" pz="3.783" x0="-2.434" y0="50.0" z0="5.77" vx0="8.718" vy0="-135.214" vz0="-2.238" ax="-8.651" ay="30.37" az="-16.306" break_y="23.8" break_angle="21.8" break_length="4.0" pitch_type="FF" type_confidence=".912" zone="12" nasty="27" spin_dir="208.597" spin_rate="1939.147" cc="" mt=""/><pitch des="Called Strike" id="232" type="S" tfs="143809" tfs_zulu="2011-07-04T18:38:09Z" x="90.99" y="132.11" sv_id="110704_143810" start_speed="93.5" end_speed="85.2" sz_top="3.24" sz_bot="1.56" pfx_x="-3.57" pfx_z="10.41" px="-0.153" pz="2.426" x0="-2.424" y0="50.0" z0="5.647" vx0="7.348" vy0="-136.85" vz0="-6.318" ax="-6.688" ay="33.608" az="-12.589" break_y="23.7" break_angle="19.2" break_length="3.3" pitch_type="FF" type_confidence=".915" zone="5" nasty="25" spin_dir="198.853" spin_rate="2193.978" cc="" mt=""/><pitch des="Called Strike" id="233" type="S" tfs="143823" tfs_zulu="2011-07-04T18:38:23Z" x="82.40" y="141.61" sv_id="110704_143825" start_speed="94.6" end_speed="87.1" sz_top="3.31" sz_bot="1.56" pfx_x="-5.68" pfx_z="8.7" px="-0.136" pz="2.843" x0="-2.385" y0="50.0" z0="5.799" vx0="8.16" vy0="-138.365" vz0="-5.292" ax="-11.015" ay="30.63" az="-15.225" break_y="23.8" break_angle="29.5" break_length="3.9" pitch_type="FF" type_confidence=".912" zone="2" nasty="31" spin_dir="213.018" spin_rate="2119.457" cc="Brandon Morrow battled back from 3-0 to retire Marco Scutaro." mt=""/><pitch des="In play, no out" id="234" type="X" tfs="143845" tfs_zulu="2011-07-04T18:38:45Z" x="93.56" y="131.24" sv_id="110704_143841" start_speed="95.6" end_speed="88.5" sz_top="3.31" sz_bot="1.56" pfx_x="-2.72" pfx_z="9.54" px="-0.774" pz="2.591" x0="-2.443" y0="50.0" z0="5.701" vx0="5.606" vy0="-140.034" vz0="-6.263" ax="-5.441" ay="29.869" az="-13.054" break_y="23.8" break_angle="16.6" break_length="3.0" pitch_type="FF" type_confidence=".915" zone="11" nasty="48" spin_dir="195.883" spin_rate="2059.518" cc="" mt=""/><runner id="340192" start="" end="1B" event="Single"/></atbat><atbat num="29" b="1" s="2" o="3" start_tfs="143917" start_tfs_zulu="2011-07-04T18:39:17Z" batter="453056" stand="L" b_height="6-1" pitcher="453344" p_throws="R" des="Jacoby Ellsbury flies out to right fielder Travis Snider. " event="Flyout"><pitch des="Called Strike" id="238" type="S" tfs="143928" tfs_zulu="2011-07-04T18:39:28Z" x="103.86" y="149.38" on_1b="340192" sv_id="110704_143927" start_speed="94.0" end_speed="84.9" sz_top="3.36" sz_bot="1.56" pfx_x="-5.46" pfx_z="11.83" px="-0.409" pz="3.064" x0="-2.431" y0="50.0" z0="5.618" vx0="7.35" vy0="-137.51" vz0="-5.046" ax="-10.248" ay="35.867" az="-9.878" break_y="23.7" break_angle="36.8" break_length="3.0" pitch_type="FF" type_confidence=".914" zone="1" nasty="60" spin_dir="204.684" spin_rate="2588.894" cc="Brandon Morrow went back to the four-seam fastball even though Jacoby Ellsbury hit for a single last time up." mt=""/><pitch des="Ball" id="239" type="B" tfs="143944" tfs_zulu="2011-07-04T18:39:44Z" x="129.61" y="93.25" on_1b="340192" sv_id="110704_143943" start_speed="88.9" end_speed="82.6" sz_top="3.69" sz_bot="1.63" pfx_x="-6.42" pfx_z="8.82" px="-1.437" pz="4.089" x0="-2.716" y0="50.0" z0="5.72" vx0="5.468" vy0="-130.299" vz0="-0.979" ax="-11.174" ay="24.178" az="-16.754" break_y="23.8" break_angle="31.0" break_length="4.6" pitch_type="FS" type_confidence=".736" zone="11" nasty="30" spin_dir="215.928" spin_rate="2120.293" cc="" mt=""/><pitch des="Swinging Strike" id="240" type="S" tfs="144003" tfs_zulu="2011-07-04T18:40:03Z" x="108.15" y="113.11" on_1b="340192" sv_id="110704_144001" start_speed="86.5" end_speed="80.7" sz_top="3.36" sz_bot="1.56" pfx_x="-4.34" pfx_z="5.58" px="-0.884" pz="2.953" x0="-2.568" y0="50.0" z0="5.72" vx0="5.659" vy0="-126.668" vz0="-2.409" ax="-7.151" ay="22.369" az="-22.901" break_y="23.9" break_angle="14.9" break_length="5.9" pitch_type="FS" type_confidence=".875" zone="11" nasty="44" spin_dir="217.637" spin_rate="1341.202" cc="" mt=""/><pitch des="In play, out(s)" id="241" type="X" tfs="144033" tfs_zulu="2011-07-04T18:40:33Z" x="111.59" y="126.06" on_1b="340192" sv_id="110704_144023" start_speed="95.5" end_speed="87.6" sz_top="3.36" sz_bot="1.56" pfx_x="-4.46" pfx_z="6.91" px="0.534" pz="2.655" x0="-2.243" y0="50.0" z0="5.718" vx0="9.24" vy0="-139.697" vz0="-5.076" ax="-8.777" ay="32.631" az="-18.494" break_y="23.8" break_angle="18.8" break_length="4.3" pitch_type="FF" type_confidence=".915" zone="6" nasty="39" spin_dir="212.683" spin_rate="1687.966" cc="Brandon Morrow is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="340192" start="1B" end="" event="Flyout"/></atbat></bottom></inning><inning num="4" away_team="tor" home_team="bos" next="Y"><top><atbat num="30" b="1" s="2" o="1" start_tfs="144233" start_tfs_zulu="2011-07-04T18:42:33Z" batter="434658" stand="R" b_height="5-10" pitcher="235095" p_throws="R" des="Rajai Davis flies out to right fielder J. Drew. " event="Flyout"><pitch des="Swinging Strike" id="247" type="S" tfs="144249" tfs_zulu="2011-07-04T18:42:49Z" x="69.53" y="158.01" sv_id="110704_144248" start_speed="85.4" end_speed="78.1" sz_top="3.39" sz_bot="1.51" pfx_x="0.12" pfx_z="3.0" px="1.118" pz="1.532" x0="-1.647" y0="50.0" z0="5.805" vx0="6.742" vy0="-124.992" vz0="-4.881" ax="0.181" ay="28.862" az="-27.431" break_y="23.7" break_angle="-3.2" break_length="7.5" pitch_type="FC" type_confidence=".793" zone="14" nasty="77" spin_dir="177.816" spin_rate="550.921" cc="" mt=""/><pitch des="Ball" id="248" type="B" tfs="144309" tfs_zulu="2011-07-04T18:43:09Z" x="68.67" y="177.01" sv_id="110704_144307" start_speed="85.7" end_speed="78.5" sz_top="3.56" sz_bot="1.58" pfx_x="1.32" pfx_z="4.02" px="1.188" pz="1.303" x0="-1.661" y0="50.0" z0="5.763" vx0="6.59" vy0="-125.329" vz0="-5.732" ax="2.066" ay="28.454" az="-25.797" break_y="23.8" break_angle="-7.2" break_length="7.1" pitch_type="FC" type_confidence=".799" zone="14" nasty="63" spin_dir="162.050" spin_rate="775.962" cc="" mt=""/><pitch des="Foul" id="249" type="S" tfs="144326" tfs_zulu="2011-07-04T18:43:26Z" x="76.39" y="157.15" sv_id="110704_144327" start_speed="86.4" end_speed="79.8" sz_top="3.39" sz_bot="1.51" pfx_x="1.65" pfx_z="6.15" px="0.92" pz="1.644" x0="-1.693" y0="50.0" z0="5.702" vx0="5.984" vy0="-126.465" vz0="-5.68" ax="2.661" ay="26.351" az="-22.162" break_y="23.8" break_angle="-9.3" break_length="5.9" pitch_type="FC" type_confidence=".928" zone="14" nasty="60" spin_dir="165.118" spin_rate="1188.432" cc="" mt=""/><pitch des="In play, out(s)" id="250" type="X" tfs="144400" tfs_zulu="2011-07-04T18:44:00Z" x="80.69" y="145.06" sv_id="110704_144353" start_speed="88.2" end_speed="80.7" sz_top="3.39" sz_bot="1.51" pfx_x="-4.81" pfx_z="9.36" px="0.998" pz="3.117" x0="-1.552" y0="50.0" z0="5.743" vx0="8.067" vy0="-129.069" vz0="-3.445" ax="-8.07" ay="28.395" az="-16.414" break_y="23.8" break_angle="20.3" break_length="4.4" pitch_type="FT" type_confidence=".667" zone="12" nasty="68" spin_dir="207.114" spin_rate="1990.219" cc="" mt=""/></atbat><atbat num="31" b="1" s="2" o="2" start_tfs="144408" start_tfs_zulu="2011-07-04T18:44:08Z" batter="519346" stand="L" b_height="6-1" pitcher="235095" p_throws="R" des="Eric Thames pops out to first baseman Adrian Gonzalez. " event="Pop Out"><pitch des="Called Strike" id="254" type="S" tfs="144435" tfs_zulu="2011-07-04T18:44:35Z" x="84.12" y="149.38" sv_id="110704_144434" start_speed="88.0" end_speed="80.6" sz_top="3.26" sz_bot="1.47" pfx_x="0.1" pfx_z="4.14" px="-0.919" pz="1.821" x0="-1.681" y0="50.0" z0="5.739" vx0="1.897" vy0="-128.985" vz0="-4.954" ax="0.171" ay="29.857" az="-25.202" break_y="23.8" break_angle="-1.3" break_length="6.4" pitch_type="FC" type_confidence=".737" zone="13" nasty="72" spin_dir="178.597" spin_rate="784.424" cc="" mt=""/><pitch des="Foul" id="255" type="S" tfs="144450" tfs_zulu="2011-07-04T18:44:50Z" x="111.59" y="145.92" sv_id="110704_144452" start_speed="83.3" end_speed="76.2" sz_top="3.38" sz_bot="1.5" pfx_x="-1.91" pfx_z="7.85" px="-0.782" pz="2.433" x0="-1.608" y0="50.0" z0="5.812" vx0="2.576" vy0="-122.086" vz0="-3.861" ax="-2.853" ay="26.443" az="-20.379" break_y="23.7" break_angle="6.3" break_length="5.8" pitch_type="FS" type_confidence=".930" zone="13" nasty="35" spin_dir="193.596" spin_rate="1442.053" cc="" mt=""/><pitch des="Ball" id="256" type="B" tfs="144517" tfs_zulu="2011-07-04T18:45:17Z" x="99.57" y="78.57" sv_id="110704_144519" start_speed="89.3" end_speed="81.6" sz_top="3.33" sz_bot="1.5" pfx_x="-3.01" pfx_z="10.99" px="-0.573" pz="5.122" x0="-2.093" y0="50.0" z0="5.581" vx0="4.925" vy0="-130.912" vz0="1.363" ax="-5.195" ay="29.136" az="-13.14" break_y="23.7" break_angle="17.7" break_length="3.2" pitch_type="FF" type_confidence=".824" zone="11" nasty="37" spin_dir="195.264" spin_rate="2186.525" cc="Dan Wheeler went back to the four-seam fastball even though Eric Thames hit for a single last time up." mt=""/><pitch des="In play, out(s)" id="257" type="X" tfs="144545" tfs_zulu="2011-07-04T18:45:45Z" x="113.30" y="150.24" sv_id="110704_144540" start_speed="84.1" end_speed="77.5" sz_top="3.38" sz_bot="1.5" pfx_x="2.0" pfx_z="5.65" px="0.793" pz="2.637" x0="-1.573" y0="50.0" z0="5.765" vx0="5.113" vy0="-123.18" vz0="-2.764" ax="3.065" ay="25.359" az="-23.46" break_y="23.8" break_angle="-9.6" break_length="6.5" pitch_type="SL" type_confidence=".188" zone="12" nasty="43" spin_dir="160.623" spin_rate="1087.947" cc="" mt=""/></atbat><atbat num="32" b="3" s="2" o="3" start_tfs="144559" start_tfs_zulu="2011-07-04T18:45:59Z" batter="430832" stand="R" b_height="6-0" pitcher="235095" p_throws="R" des="Jose Bautista flies out to right fielder J. D. Drew. " event="Flyout"><pitch des="Swinging Strike" id="261" type="S" tfs="144622" tfs_zulu="2011-07-04T18:46:22Z" x="63.52" y="164.92" sv_id="110704_144623" start_speed="85.2" end_speed="78.8" sz_top="3.29" sz_bot="1.51" pfx_x="1.21" pfx_z="5.38" px="1.704" pz="1.773" x0="-1.416" y0="50.0" z0="5.708" vx0="7.287" vy0="-124.632" vz0="-4.876" ax="1.907" ay="25.173" az="-23.646" break_y="23.8" break_angle="-7.5" break_length="6.4" pitch_type="FC" type_confidence=".762" zone="14" nasty="44" spin_dir="167.397" spin_rate="1017.221" cc="" mt=""/><pitch des="Ball" id="262" type="B" tfs="144643" tfs_zulu="2011-07-04T18:46:43Z" x="72.10" y="194.28" sv_id="110704_144641" start_speed="82.6" end_speed="75.7" sz_top="3.41" sz_bot="1.69" pfx_x="4.17" pfx_z="2.49" px="0.885" pz="0.82" x0="-1.59" y0="50.0" z0="5.537" vx0="4.587" vy0="-120.887" vz0="-5.18" ax="6.069" ay="26.991" az="-28.48" break_y="23.8" break_angle="-13.2" break_length="8.5" pitch_type="SL" type_confidence=".798" zone="14" nasty="44" spin_dir="121.328" spin_rate="852.659" cc="" mt=""/><pitch des="Ball" id="263" type="B" tfs="144705" tfs_zulu="2011-07-04T18:47:05Z" x="60.09" y="194.28" sv_id="110704_144706" start_speed="85.4" end_speed="79.3" sz_top="3.57" sz_bot="1.69" pfx_x="0.62" pfx_z="2.93" px="1.868" pz="1.539" x0="-1.545" y0="50.0" z0="5.57" vx0="8.225" vy0="-124.858" vz0="-4.386" ax="0.979" ay="24.425" az="-27.46" break_y="23.8" break_angle="-4.9" break_length="7.3" pitch_type="FC" type_confidence=".690" zone="14" nasty="43" spin_dir="168.269" spin_rate="559.429" cc="" mt=""/><pitch des="Called Strike" id="264" type="S" tfs="144730" tfs_zulu="2011-07-04T18:47:30Z" x="103.86" y="105.34" sv_id="110704_144728" start_speed="83.5" end_speed="76.6" sz_top="3.44" sz_bot="1.61" pfx_x="4.81" pfx_z="3.33" px="0.071" pz="3.487" x0="-1.742" y0="50.0" z0="5.784" vx0="2.864" vy0="-122.468" vz0="0.089" ax="7.244" ay="26.185" az="-27.087" break_y="23.8" break_angle="-16.1" break_length="7.6" pitch_type="SL" type_confidence=".914" zone="12" nasty="34" spin_dir="125.079" spin_rate="1048.595" cc="" mt=""/><pitch des="Ball" id="265" type="B" tfs="144750" tfs_zulu="2011-07-04T18:47:50Z" x="70.39" y="88.94" sv_id="110704_144752" start_speed="88.8" end_speed="83.1" sz_top="3.48" sz_bot="1.51" pfx_x="-2.14" pfx_z="8.87" px="1.145" pz="4.146" x0="-1.391" y0="50.0" z0="5.698" vx0="7.287" vy0="-130.054" vz0="-0.809" ax="-3.738" ay="22.228" az="-16.611" break_y="23.9" break_angle="8.6" break_length="3.9" pitch_type="FC" type_confidence=".935" zone="12" nasty="53" spin_dir="193.504" spin_rate="1785.463" cc="" mt=""/><pitch des="In play, out(s)" id="266" type="X" tfs="144821" tfs_zulu="2011-07-04T18:48:21Z" x="68.67" y="151.97" sv_id="110704_144815" start_speed="82.2" end_speed="76.2" sz_top="3.29" sz_bot="1.51" pfx_x="4.87" pfx_z="3.21" px="1.223" pz="2.837" x0="-1.495" y0="50.0" z0="5.906" vx0="4.959" vy0="-120.485" vz0="-1.544" ax="7.16" ay="23.42" az="-27.385" break_y="23.8" break_angle="-16.2" break_length="8.0" pitch_type="SL" type_confidence=".864" zone="12" nasty="50" spin_dir="123.777" spin_rate="1037.222" cc="Dan Wheeler is getting a generous strike zone this inning from home plate ump Jerry Layne." mt=""/></atbat></top><bottom><atbat num="33" b="2" s="0" o="1" start_tfs="145029" start_tfs_zulu="2011-07-04T18:50:29Z" batter="456030" stand="R" b_height="5-9" pitcher="453344" p_throws="R" des="Dustin Pedroia flies out to left fielder Eric Thames. " event="Flyout"><pitch des="Ball" id="271" type="B" tfs="145044" tfs_zulu="2011-07-04T18:50:44Z" x="65.24" y="154.56" sv_id="110704_145041" start_speed="86.8" end_speed="79.3" sz_top="3.53" sz_bot="1.59" pfx_x="1.83" pfx_z="4.41" px="0.948" pz="1.746" x0="-2.316" y0="50.0" z0="5.992" vx0="7.536" vy0="-126.929" vz0="-5.546" ax="2.935" ay="29.75" az="-25.018" break_y="23.7" break_angle="-9.8" break_length="6.8" pitch_type="SL" type_confidence=".901" zone="14" nasty="88" spin_dir="157.701" spin_rate="884.044" cc="" mt=""/><pitch des="Ball" id="272" type="B" tfs="145056" tfs_zulu="2011-07-04T18:50:56Z" x="127.04" y="111.39" sv_id="110704_145054" start_speed="93.5" end_speed="85.9" sz_top="3.49" sz_bot="1.55" pfx_x="-5.19" pfx_z="9.19" px="-0.259" pz="3.567" x0="-2.451" y0="50.0" z0="5.731" vx0="7.742" vy0="-136.901" vz0="-3.131" ax="-9.841" ay="30.535" az="-14.681" break_y="23.8" break_angle="27.9" break_length="3.7" pitch_type="FF" type_confidence=".914" zone="11" nasty="44" spin_dir="209.359" spin_rate="2127.000" cc="" mt=""/><pitch des="In play, out(s)" id="273" type="X" tfs="145117" tfs_zulu="2011-07-04T18:51:17Z" x="97.00" y="110.52" sv_id="110704_145111" start_speed="94.1" end_speed="86.2" sz_top="3.38" sz_bot="1.71" pfx_x="-2.81" pfx_z="11.34" px="-0.249" pz="3.12" x0="-2.227" y0="50.0" z0="5.855" vx0="6.357" vy0="-137.699" vz0="-5.503" ax="-5.38" ay="31.772" az="-10.419" break_y="23.8" break_angle="18.6" break_length="2.6" pitch_type="FF" type_confidence=".915" zone="1" nasty="39" spin_dir="193.889" spin_rate="2361.132" cc="Brandon Morrow has Red Sox batters hitting the ball into the ground so far." mt=""/></atbat><atbat num="34" b="1" s="2" o="2" start_tfs="145135" start_tfs_zulu="2011-07-04T18:51:35Z" batter="408236" stand="L" b_height="6-2" pitcher="453344" p_throws="R" des="Adrian Gonzalez grounds out, second baseman Aaron Hill to first baseman Adam Lind. " event="Groundout"><pitch des="Swinging Strike" id="277" type="S" tfs="145204" tfs_zulu="2011-07-04T18:52:04Z" x="99.57" y="111.39" sv_id="110704_145203" start_speed="94.4" end_speed="85.1" sz_top="3.56" sz_bot="1.68" pfx_x="-5.03" pfx_z="8.63" px="-0.165" pz="3.692" x0="-2.517" y0="50.0" z0="5.742" vx0="8.118" vy0="-138.246" vz0="-2.62" ax="-9.508" ay="37.496" az="-15.794" break_y="23.7" break_angle="24.0" break_length="3.9" pitch_type="FF" type_confidence=".914" zone="11" nasty="60" spin_dir="210.132" spin_rate="1987.555" cc="" mt=""/><pitch des="Foul" id="278" type="S" tfs="145221" tfs_zulu="2011-07-04T18:52:21Z" x="104.72" y="143.33" sv_id="110704_145220" start_speed="88.8" end_speed="82.1" sz_top="3.56" sz_bot="1.68" pfx_x="3.18" pfx_z="2.48" px="-0.624" pz="2.602" x0="-2.483" y0="50.0" z0="5.949" vx0="3.714" vy0="-130.207" vz0="-3.182" ax="5.458" ay="27.658" az="-27.844" break_y="23.8" break_angle="-12.2" break_length="6.9" pitch_type="SL" type_confidence=".892" zone="4" nasty="34" spin_dir="128.427" spin_rate="776.268" cc="" mt=""/><pitch des="Foul" id="279" type="S" tfs="145247" tfs_zulu="2011-07-04T18:52:47Z" x="127.04" y="142.47" sv_id="110704_145245" start_speed="89.1" end_speed="82.2" sz_top="3.56" sz_bot="1.68" pfx_x="2.24" pfx_z="0.15" px="-0.731" pz="2.907" x0="-2.478" y0="50.0" z0="5.882" vx0="3.75" vy0="-130.665" vz0="-1.483" ax="3.853" ay="28.483" az="-31.836" break_y="23.8" break_angle="-8.1" break_length="7.7" pitch_type="SL" type_confidence=".878" zone="11" nasty="42" spin_dir="95.013" spin_rate="429.444" cc="" mt=""/><pitch des="Ball" id="280" type="B" tfs="145307" tfs_zulu="2011-07-04T18:53:07Z" x="127.90" y="142.47" sv_id="110704_145308" start_speed="95.1" end_speed="86.5" sz_top="3.94" sz_bot="1.95" pfx_x="-5.08" pfx_z="8.8" px="-1.407" pz="3.357" x0="-2.657" y0="50.0" z0="5.673" vx0="5.227" vy0="-139.37" vz0="-3.595" ax="-9.873" ay="34.956" az="-15.014" break_y="23.7" break_angle="28.4" break_length="3.8" pitch_type="FF" type_confidence=".914" zone="11" nasty="24" spin_dir="209.913" spin_rate="2060.837" cc="" mt=""/><pitch des="Foul" id="281" type="S" tfs="145330" tfs_zulu="2011-07-04T18:53:30Z" x="85.84" y="144.20" sv_id="110704_145325" start_speed="96.6" end_speed="88.0" sz_top="3.56" sz_bot="1.68" pfx_x="-3.77" pfx_z="10.51" px="-0.148" pz="3.023" x0="-2.253" y0="50.0" z0="5.748" vx0="7.203" vy0="-141.323" vz0="-5.577" ax="-7.54" ay="35.415" az="-11.071" break_y="23.7" break_angle="24.8" break_length="2.8" pitch_type="FF" type_confidence=".916" zone="2" nasty="31" spin_dir="199.660" spin_rate="2300.502" cc="" mt=""/><pitch des="In play, out(s)" id="282" type="X" tfs="145412" tfs_zulu="2011-07-04T18:54:12Z" x="96.14" y="142.47" sv_id="110704_145411" start_speed="90.4" end_speed="83.2" sz_top="3.56" sz_bot="1.68" pfx_x="-6.26" pfx_z="4.3" px="-0.24" pz="2.006" x0="-2.384" y0="50.0" z0="5.63" vx0="7.711" vy0="-132.34" vz0="-4.755" ax="-11.055" ay="29.208" az="-24.508" break_y="23.8" break_angle="20.3" break_length="6.3" pitch_type="FF" type_confidence=".784" zone="7" nasty="38" spin_dir="235.260" spin_rate="1474.779" cc="" mt=""/></atbat><atbat num="35" b="1" s="1" o="2" start_tfs="145430" start_tfs_zulu="2011-07-04T18:54:30Z" batter="425903" stand="R" b_height="6-1" pitcher="453344" p_throws="R" des="Kevin Youkilis hit by pitch. " event="Hit By Pitch"><pitch des="Foul" id="286" type="S" tfs="145445" tfs_zulu="2011-07-04T18:54:45Z" x="98.71" y="138.15" sv_id="110704_145442" start_speed="94.4" end_speed="85.4" sz_top="3.52" sz_bot="1.71" pfx_x="-4.81" pfx_z="9.78" px="-0.286" pz="3.026" x0="-2.439" y0="50.0" z0="5.679" vx0="7.51" vy0="-138.113" vz0="-4.67" ax="-9.123" ay="36.152" az="-13.56" break_y="23.7" break_angle="26.0" break_length="3.5" pitch_type="FF" type_confidence=".915" zone="1" nasty="52" spin_dir="206.109" spin_rate="2177.486" cc="" mt=""/><pitch des="Ball" id="287" type="B" tfs="145513" tfs_zulu="2011-07-04T18:55:13Z" x="69.53" y="174.42" sv_id="110704_145515" start_speed="94.3" end_speed="86.4" sz_top="3.52" sz_bot="1.71" pfx_x="-6.91" pfx_z="8.81" px="0.511" pz="1.299" x0="-2.594" y0="50.0" z0="5.514" vx0="10.85" vy0="-137.608" vz0="-8.608" ax="-13.188" ay="31.989" az="-15.285" break_y="23.8" break_angle="31.9" break_length="4.3" pitch_type="FF" type_confidence=".873" zone="14" nasty="55" spin_dir="217.984" spin_rate="2259.131" cc="" mt=""/><pitch des="Hit By Pitch" id="288" type="B" tfs="145602" tfs_zulu="2011-07-04T18:56:02Z" x="153.65" y="83.76" sv_id="110704_145532" start_speed="93.1" end_speed="85.1" sz_top="3.52" sz_bot="1.71" pfx_x="-1.62" pfx_z="10.73" px="-2.547" pz="4.968" x0="-2.509" y0="50.0" z0="5.778" vx0="0.461" vy0="-136.54" vz0="0.052" ax="-3.03" ay="31.877" az="-11.975" break_y="23.7" break_angle="13.7" break_length="2.7" pitch_type="FF" type_confidence=".892" zone="11" nasty="25" spin_dir="188.529" spin_rate="2170.223" cc="" mt=""/><runner id="425903" start="" end="1B" event="Hit By Pitch"/></atbat><action b="0" s="0" o="2" des="Offensive Substitution: Pinch runner Yamaico Navarro replaces Kevin Youkilis. " event="Offensive sub" tfs="145659" tfs_zulu="2011-07-04T18:56:59Z" player="501605" pitch="3"/><action b="0" s="0" o="2" des="Injury Delay. " event="Game Advisory" tfs="145606" tfs_zulu="2011-07-04T18:56:06Z" player="120074" pitch="3"/><atbat num="36" b="1" s="2" o="3" start_tfs="145713" start_tfs_zulu="2011-07-04T18:57:13Z" batter="120074" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="David Ortiz grounds into a force out, shortstop John McDonald to third baseman Jose Bautista. Yamaico Navarro out at 2nd. " event="Forceout"><pitch des="Foul" id="294" type="S" tfs="145721" tfs_zulu="2011-07-04T18:57:21Z" x="97.85" y="127.79" on_1b="501605" sv_id="110704_145723" start_speed="87.3" end_speed="80.2" sz_top="3.73" sz_bot="1.78" pfx_x="1.21" pfx_z="3.21" px="0.313" pz="2.951" x0="-2.244" y0="50.0" z0="6.038" vx0="6.041" vy0="-127.85" vz0="-2.447" ax="1.997" ay="27.91" az="-26.814" break_y="23.8" break_angle="-6.7" break_length="6.8" pitch_type="SL" type_confidence=".836" zone="6" nasty="58" spin_dir="159.567" spin_rate="649.071" cc="" mt=""/><pitch des="Ball In Dirt" id="295" type="B" tfs="145751" tfs_zulu="2011-07-04T18:57:51Z" x="127.90" y="187.37" on_1b="501605" sv_id="110704_145748" start_speed="87.8" end_speed="82.3" sz_top="3.73" sz_bot="1.78" pfx_x="-7.25" pfx_z="5.75" px="1.082" pz="1.073" x0="-2.311" y0="50.0" z0="5.622" vx0="11.055" vy0="-128.086" vz0="-7.201" ax="-12.274" ay="21.901" az="-22.366" break_y="23.9" break_angle="24.1" break_length="6.2" pitch_type="FS" type_confidence=".910" zone="14" nasty="37" spin_dir="231.371" spin_rate="1779.571" cc="" mt=""/><pitch des="Called Strike" id="296" type="S" tfs="145819" tfs_zulu="2011-07-04T18:58:19Z" x="106.44" y="157.15" on_1b="501605" sv_id="110704_145811" start_speed="94.7" end_speed="87.4" sz_top="3.76" sz_bot="1.78" pfx_x="-5.66" pfx_z="12.27" px="-1.076" pz="2.247" x0="-2.596" y0="50.0" z0="5.637" vx0="6.181" vy0="-138.524" vz0="-7.8" ax="-11.055" ay="29.641" az="-8.144" break_y="23.8" break_angle="44.9" break_length="2.9" pitch_type="FF" type_confidence=".913" zone="13" nasty="55" spin_dir="204.703" spin_rate="2770.249" cc="" mt=""/><pitch des="In play, out(s)" id="297" type="X" tfs="145834" tfs_zulu="2011-07-04T18:58:34Z" x="115.88" y="148.51" on_1b="501605" sv_id="110704_145830" start_speed="87.1" end_speed="80.7" sz_top="3.73" sz_bot="1.78" pfx_x="1.6" pfx_z="2.56" px="-0.81" pz="2.615" x0="-2.557" y0="50.0" z0="5.962" vx0="3.881" vy0="-127.651" vz0="-2.917" ax="2.638" ay="25.822" az="-27.874" break_y="23.8" break_angle="-6.7" break_length="7.0" pitch_type="SL" type_confidence=".832" zone="13" nasty="42" spin_dir="148.473" spin_rate="573.342" cc="" mt=""/><runner id="501605" start="1B" end="" event="Forceout"/></atbat></bottom></inning><inning num="5" away_team="tor" home_team="bos" next="Y"><top><action b="0" s="0" o="0" des="Yamaico Navarro remains in the game as the third baseman. " event="Defensive Switch" tfs="145945" tfs_zulu="2011-07-04T18:59:45Z" player="501605" pitch="4"/><atbat num="37" b="1" s="0" o="1" start_tfs="150048" start_tfs_zulu="2011-07-04T19:00:48Z" batter="452252" stand="L" b_height="6-1" pitcher="235095" p_throws="R" des="Adam Lind grounds out to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Ball" id="306" type="B" tfs="150102" tfs_zulu="2011-07-04T19:01:02Z" x="134.76" y="149.38" sv_id="110704_150100" start_speed="84.5" end_speed="77.1" sz_top="3.56" sz_bot="1.73" pfx_x="2.56" pfx_z="5.96" px="-1.593" pz="2.494" x0="-1.775" y0="50.0" z0="5.911" vx0="-0.364" vy0="-123.924" vz0="-3.59" ax="3.919" ay="28.073" az="-22.969" break_y="23.7" break_angle="-9.2" break_length="6.4" pitch_type="SL" type_confidence=".602" zone="13" nasty="48" spin_dir="156.940" spin_rate="1171.233" cc="" mt=""/><pitch des="In play, out(s)" id="307" type="X" tfs="150123" tfs_zulu="2011-07-04T19:01:23Z" x="96.14" y="146.79" sv_id="110704_150118" start_speed="89.0" end_speed="81.6" sz_top="3.59" sz_bot="1.73" pfx_x="-5.83" pfx_z="7.4" px="0.054" pz="2.179" x0="-1.643" y0="50.0" z0="5.627" vx0="6.294" vy0="-130.335" vz0="-5.061" ax="-9.959" ay="29.014" az="-19.45" break_y="23.8" break_angle="22.7" break_length="5.3" pitch_type="FT" type_confidence=".891" zone="8" nasty="33" spin_dir="218.049" spin_rate="1798.579" cc="Dan Wheeler has Blue Jays batters hitting the ball into the ground so far." mt=""/></atbat><atbat num="38" b="0" s="2" o="2" start_tfs="150133" start_tfs_zulu="2011-07-04T19:01:33Z" batter="429665" stand="R" b_height="6-2" pitcher="235095" p_throws="R" des="Edwin Encarnacion lines out to shortstop Marco Scutaro. " event="Lineout"><pitch des="Called Strike" id="311" type="S" tfs="150155" tfs_zulu="2011-07-04T19:01:55Z" x="77.25" y="150.24" sv_id="110704_150154" start_speed="89.0" end_speed="81.5" sz_top="3.55" sz_bot="1.65" pfx_x="-4.97" pfx_z="7.26" px="0.631" pz="2.558" x0="-1.645" y0="50.0" z0="5.619" vx0="7.491" vy0="-130.297" vz0="-4.007" ax="-8.481" ay="29.341" az="-19.706" break_y="23.8" break_angle="18.4" break_length="5.2" pitch_type="FT" type_confidence=".630" zone="6" nasty="50" spin_dir="214.223" spin_rate="1678.968" cc="" mt=""/><pitch des="Foul" id="312" type="S" tfs="150210" tfs_zulu="2011-07-04T19:02:10Z" x="125.32" y="148.51" sv_id="110704_150211" start_speed="83.9" end_speed="77.8" sz_top="3.55" sz_bot="1.65" pfx_x="5.85" pfx_z="6.1" px="-0.245" pz="1.584" x0="-1.684" y0="50.0" z0="5.803" vx0="1.648" vy0="-122.877" vz0="-5.562" ax="8.963" ay="23.819" az="-22.746" break_y="23.8" break_angle="-21.2" break_length="6.7" pitch_type="SL" type_confidence=".920" zone="13" nasty="44" spin_dir="136.449" spin_rate="1535.892" cc="" mt=""/><pitch des="In play, out(s)" id="313" type="X" tfs="150237" tfs_zulu="2011-07-04T19:02:37Z" x="96.14" y="146.79" sv_id="110704_150236" start_speed="84.1" end_speed="78.5" sz_top="3.55" sz_bot="1.65" pfx_x="0.81" pfx_z="3.76" px="1.283" pz="1.545" x0="-1.52" y0="50.0" z0="5.724" vx0="6.578" vy0="-123.058" vz0="-4.801" ax="1.257" ay="22.371" az="-26.288" break_y="23.9" break_angle="-4.9" break_length="7.1" pitch_type="SL" type_confidence=".528" zone="14" nasty="59" spin_dir="167.947" spin_rate="709.573" cc="" mt=""/></atbat><atbat num="39" b="1" s="0" o="3" start_tfs="150251" start_tfs_zulu="2011-07-04T19:02:51Z" batter="431094" stand="R" b_height="5-11" pitcher="235095" p_throws="R" des="Aaron Hill grounds out, shortstop Marco Scutaro to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Ball" id="317" type="B" tfs="150311" tfs_zulu="2011-07-04T19:03:11Z" x="64.38" y="149.38" sv_id="110704_150313" start_speed="86.5" end_speed="79.8" sz_top="3.4" sz_bot="1.46" pfx_x="1.35" pfx_z="5.15" px="1.436" pz="2.454" x0="-1.536" y0="50.0" z0="5.704" vx0="6.984" vy0="-126.612" vz0="-3.361" ax="2.187" ay="26.359" az="-23.753" break_y="23.8" break_angle="-8.2" break_length="6.2" pitch_type="FC" type_confidence=".951" zone="12" nasty="33" spin_dir="165.443" spin_rate="996.929" cc="" mt=""/><pitch des="In play, out(s)" id="318" type="X" tfs="150334" tfs_zulu="2011-07-04T19:03:34Z" x="87.55" y="147.65" sv_id="110704_150333" start_speed="85.8" end_speed="79.4" sz_top="3.09" sz_bot="1.46" pfx_x="-0.71" pfx_z="1.19" px="0.272" pz="2.468" x0="-1.677" y0="50.0" z0="5.673" vx0="5.069" vy0="-125.739" vz0="-1.883" ax="-1.135" ay="25.233" az="-30.189" break_y="23.8" break_angle=".4" break_length="7.7" pitch_type="FC" type_confidence=".916" zone="6" nasty="28" spin_dir="209.759" spin_rate="263.827" cc="" mt=""/></atbat></top><bottom><atbat num="40" b="0" s="1" o="1" start_tfs="150556" start_tfs_zulu="2011-07-04T19:05:56Z" batter="502210" stand="L" b_height="6-2" pitcher="453344" p_throws="R" des="Josh Reddick flies out to left fielder Eric Thames. " event="Flyout"><pitch des="Foul" id="323" type="S" tfs="150614" tfs_zulu="2011-07-04T19:06:14Z" x="97.85" y="123.47" sv_id="110704_150615" start_speed="93.0" end_speed="84.7" sz_top="3.47" sz_bot="1.69" pfx_x="-6.35" pfx_z="6.91" px="-0.2" pz="3.263" x0="-2.677" y0="50.0" z0="5.783" vx0="8.82" vy0="-136.107" vz0="-3.127" ax="-11.756" ay="33.318" az="-19.298" break_y="23.7" break_angle="25.7" break_length="4.9" pitch_type="FF" type_confidence=".899" zone="2" nasty="55" spin_dir="222.396" spin_rate="1858.467" cc="" mt=""/><pitch des="In play, out(s)" id="324" type="X" tfs="150636" tfs_zulu="2011-07-04T19:06:36Z" x="106.44" y="138.15" sv_id="110704_150634" start_speed="86.2" end_speed="79.3" sz_top="3.47" sz_bot="1.69" pfx_x="-7.35" pfx_z="4.9" px="-0.2" pz="2.172" x0="-2.364" y0="50.0" z0="5.664" vx0="7.754" vy0="-126.18" vz0="-3.808" ax="-11.8" ay="26.757" az="-24.243" break_y="23.8" break_angle="22.3" break_length="6.8" pitch_type="FS" type_confidence=".937" zone="8" nasty="26" spin_dir="236.093" spin_rate="1634.702" cc="" mt=""/></atbat><atbat num="41" b="3" s="3" o="2" start_tfs="150703" start_tfs_zulu="2011-07-04T19:07:03Z" batter="457454" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="Jarrod Saltalamacchia strikes out swinging. " event="Strikeout"><pitch des="Called Strike" id="328" type="S" tfs="150710" tfs_zulu="2011-07-04T19:07:10Z" x="103.86" y="121.75" sv_id="110704_150710" start_speed="94.7" end_speed="87.1" sz_top="3.69" sz_bot="1.68" pfx_x="-1.97" pfx_z="9.66" px="-0.34" pz="3.238" x0="-2.563" y0="50.0" z0="5.717" vx0="6.787" vy0="-138.71" vz0="-4.36" ax="-3.83" ay="31.134" az="-13.295" break_y="23.8" break_angle="9.3" break_length="3.0" pitch_type="FF" type_confidence=".915" zone="1" nasty="56" spin_dir="191.466" spin_rate="2014.798" cc="" mt=""/><pitch des="Swinging Strike" id="329" type="S" tfs="150725" tfs_zulu="2011-07-04T19:07:25Z" x="101.29" y="142.47" sv_id="110704_150724" start_speed="96.1" end_speed="88.0" sz_top="3.46" sz_bot="1.68" pfx_x="-6.39" pfx_z="11.0" px="-0.562" pz="1.945" x0="-2.574" y0="50.0" z0="5.543" vx0="7.863" vy0="-140.531" vz0="-8.112" ax="-12.697" ay="33.51" az="-10.226" break_y="23.8" break_angle="41.8" break_length="3.3" pitch_type="FF" type_confidence=".903" zone="7" nasty="50" spin_dir="210.048" spin_rate="2617.649" cc="" mt=""/><pitch des="Ball" id="330" type="B" tfs="150745" tfs_zulu="2011-07-04T19:07:45Z" x="128.76" y="112.25" sv_id="110704_150744" start_speed="96.4" end_speed="88.5" sz_top="3.69" sz_bot="1.68" pfx_x="-7.34" pfx_z="9.26" px="-1.412" pz="3.348" x0="-2.379" y0="50.0" z0="5.707" vx0="5.353" vy0="-141.208" vz0="-4.161" ax="-14.806" ay="32.624" az="-13.433" break_y="23.8" break_angle="43.4" break_length="4.0" pitch_type="FF" type_confidence=".791" zone="11" nasty="30" spin_dir="218.309" spin_rate="2453.855" cc="" mt=""/><pitch des="Ball" id="331" type="B" tfs="150759" tfs_zulu="2011-07-04T19:07:59Z" x="127.90" y="129.52" sv_id="110704_150800" start_speed="89.6" end_speed="83.9" sz_top="3.62" sz_bot="1.68" pfx_x="3.26" pfx_z="4.11" px="-0.766" pz="3.934" x0="-2.458" y0="50.0" z0="5.916" vx0="3.313" vy0="-131.407" vz0="-0.438" ax="5.8" ay="23.135" az="-24.787" break_y="23.9" break_angle="-14.3" break_length="5.8" pitch_type="SL" type_confidence=".878" zone="11" nasty="58" spin_dir="141.863" spin_rate="1036.901" cc="" mt=""/><pitch des="Foul" id="332" type="S" tfs="150820" tfs_zulu="2011-07-04T19:08:20Z" x="90.99" y="152.83" sv_id="110704_150818" start_speed="90.5" end_speed="82.5" sz_top="3.46" sz_bot="1.68" pfx_x="-9.44" pfx_z="4.03" px="0.285" pz="1.739" x0="-2.302" y0="50.0" z0="5.499" vx0="9.897" vy0="-132.223" vz0="-4.944" ax="-16.507" ay="31.403" az="-25.049" break_y="23.7" break_angle="28.6" break_length="6.9" pitch_type="SI" type_confidence=".910" zone="9" nasty="48" spin_dir="246.653" spin_rate="1972.705" cc="Brandon Morrow is trying to tie up Jarrod Saltalamacchia with fastballs inside, where Jarrod Saltalamacchia hits .182." mt=""/><pitch des="Ball" id="333" type="B" tfs="150852" tfs_zulu="2011-07-04T19:08:52Z" x="129.61" y="97.57" sv_id="110704_150851" start_speed="89.3" end_speed="81.6" sz_top="3.46" sz_bot="1.68" pfx_x="1.5" pfx_z="2.02" px="-0.722" pz="4.063" x0="-2.45" y0="50.0" z0="5.99" vx0="3.945" vy0="-130.935" vz0="0.6" ax="2.584" ay="30.26" az="-28.633" break_y="23.7" break_angle="-6.9" break_length="6.8" pitch_type="SL" type_confidence=".757" zone="11" nasty="37" spin_dir="143.882" spin_rate="485.708" cc="" mt=""/><pitch des="Foul" id="334" type="S" tfs="150910" tfs_zulu="2011-07-04T19:09:10Z" x="98.71" y="108.80" sv_id="110704_150910" start_speed="96.5" end_speed="87.6" sz_top="3.46" sz_bot="1.68" pfx_x="-4.91" pfx_z="9.6" px="0.042" pz="3.565" x0="-2.357" y0="50.0" z0="5.812" vx0="8.415" vy0="-141.209" vz0="-3.889" ax="-9.781" ay="36.235" az="-12.97" break_y="23.7" break_angle="28.7" break_length="3.3" pitch_type="FF" type_confidence=".914" zone="12" nasty="37" spin_dir="206.989" spin_rate="2214.189" cc="" mt=""/><pitch des="Swinging Strike" id="335" type="S" tfs="150941" tfs_zulu="2011-07-04T19:09:41Z" x="98.71" y="96.71" sv_id="110704_150938" start_speed="97.0" end_speed="88.9" sz_top="3.46" sz_bot="1.68" pfx_x="-2.07" pfx_z="9.57" px="-0.615" pz="3.859" x0="-2.361" y0="50.0" z0="5.723" vx0="5.64" vy0="-142.077" vz0="-2.968" ax="-4.207" ay="33.617" az="-12.615" break_y="23.8" break_angle="12.2" break_length="2.7" pitch_type="FF" type_confidence=".915" zone="11" nasty="58" spin_dir="192.137" spin_rate="2042.894" cc="" mt=""/></atbat><atbat num="42" b="1" s="1" o="2" start_tfs="150943" start_tfs_zulu="2011-07-04T19:09:43Z" batter="136770" stand="L" b_height="6-1" pitcher="453344" p_throws="R" des="J. D. Drew singles on a ground ball to center fielder Rajai Davis. " event="Single"><pitch des="Ball" id="339" type="B" tfs="151010" tfs_zulu="2011-07-04T19:10:10Z" x="110.73" y="88.07" sv_id="110704_151009" start_speed="93.2" end_speed="84.3" sz_top="3.46" sz_bot="1.61" pfx_x="-6.96" pfx_z="7.72" px="-0.607" pz="3.712" x0="-2.673" y0="50.0" z0="5.564" vx0="7.933" vy0="-136.435" vz0="-1.62" ax="-12.882" ay="35.04" az="-17.802" break_y="23.7" break_angle="30.8" break_length="4.7" pitch_type="FF" type_confidence=".859" zone="11" nasty="75" spin_dir="221.870" spin_rate="2052.295" cc="" mt=""/><pitch des="Foul" id="340" type="S" tfs="151024" tfs_zulu="2011-07-04T19:10:24Z" x="108.15" y="101.02" sv_id="110704_151022" start_speed="94.2" end_speed="85.9" sz_top="3.51" sz_bot="1.74" pfx_x="-3.54" pfx_z="11.51" px="-0.252" pz="3.339" x0="-2.342" y0="50.0" z0="5.729" vx0="6.917" vy0="-137.974" vz0="-4.614" ax="-6.761" ay="33.634" az="-10.143" break_y="23.7" break_angle="24.4" break_length="2.6" pitch_type="FF" type_confidence=".915" zone="1" nasty="41" spin_dir="197.059" spin_rate="2423.167" cc="" mt=""/><pitch des="In play, no out" id="341" type="X" tfs="151114" tfs_zulu="2011-07-04T19:11:14Z" x="117.60" y="126.06" sv_id="110704_151113" start_speed="94.7" end_speed="85.6" sz_top="3.51" sz_bot="1.74" pfx_x="-7.0" pfx_z="7.78" px="-0.93" pz="2.855" x0="-2.667" y0="50.0" z0="5.452" vx0="7.176" vy0="-138.618" vz0="-3.874" ax="-13.353" ay="36.549" az="-17.247" break_y="23.7" break_angle="32.2" break_length="4.6" pitch_type="FF" type_confidence=".819" zone="11" nasty="53" spin_dir="221.813" spin_rate="2096.132" cc="" mt=""/><runner id="136770" start="" end="1B" event="Single"/></atbat><atbat num="43" b="4" s="1" o="2" start_tfs="151130" start_tfs_zulu="2011-07-04T19:11:30Z" batter="340192" stand="R" b_height="5-10" pitcher="453344" p_throws="R" des="Marco Scutaro walks. J. D. Drew to 2nd. " event="Walk"><pitch des="Called Strike" id="345" type="S" tfs="151151" tfs_zulu="2011-07-04T19:11:51Z" x="78.97" y="145.06" on_1b="136770" sv_id="110704_151153" start_speed="87.2" end_speed="81.4" sz_top="3.16" sz_bot="1.56" pfx_x="3.6" pfx_z="3.06" px="0.25" pz="2.277" x0="-2.225" y0="50.0" z0="5.968" vx0="5.081" vy0="-127.714" vz0="-4.015" ax="6.0" ay="23.818" az="-26.99" break_y="23.9" break_angle="-13.9" break_length="6.9" pitch_type="SL" type_confidence=".880" zone="6" nasty="55" spin_dir="130.828" spin_rate="900.739" cc="" mt=""/><pitch des="Ball" id="346" type="B" tfs="151209" tfs_zulu="2011-07-04T19:12:09Z" x="67.81" y="158.88" on_1b="136770" sv_id="110704_151209" start_speed="89.4" end_speed="82.9" sz_top="3.31" sz_bot="1.56" pfx_x="1.56" pfx_z="2.93" px="0.81" pz="1.98" x0="-2.345" y0="50.0" z0="5.744" vx0="7.632" vy0="-130.86" vz0="-4.503" ax="2.707" ay="27.271" az="-27.016" break_y="23.8" break_angle="-8.5" break_length="6.6" pitch_type="SL" type_confidence=".853" zone="14" nasty="49" spin_dir="152.310" spin_rate="645.811" cc="" mt=""/><pitch des="Ball" id="347" type="B" tfs="151231" tfs_zulu="2011-07-04T19:12:31Z" x="72.10" y="148.51" on_1b="136770" sv_id="110704_151229" start_speed="88.6" end_speed="81.6" sz_top="3.31" sz_bot="1.56" pfx_x="3.32" pfx_z="0.8" px="0.443" pz="1.232" x0="-2.186" y0="50.0" z0="5.719" vx0="5.61" vy0="-129.727" vz0="-5.416" ax="5.605" ay="29.547" az="-30.758" break_y="23.8" break_angle="-11.9" break_length="7.9" pitch_type="SL" type_confidence=".895" zone="14" nasty="46" spin_dir="104.178" spin_rate="646.520" cc="" mt=""/><pitch des="Ball" id="348" type="B" tfs="151251" tfs_zulu="2011-07-04T19:12:51Z" x="56.65" y="113.11" on_1b="136770" sv_id="110704_151249" start_speed="96.0" end_speed="87.8" sz_top="3.16" sz_bot="1.56" pfx_x="-2.47" pfx_z="10.69" px="1.194" pz="3.453" x0="-2.256" y0="50.0" z0="5.767" vx0="10.423" vy0="-140.284" vz0="-4.423" ax="-4.904" ay="33.236" az="-10.902" break_y="23.8" break_angle="11.7" break_length="2.5" pitch_type="FF" type_confidence=".915" zone="12" nasty="64" spin_dir="192.980" spin_rate="2257.600" cc="Brandon Morrow went back to the four-seam fastball even though Marco Scutaro hit for a single last time up." mt=""/><pitch des="Ball" id="349" type="B" tfs="151309" tfs_zulu="2011-07-04T19:13:09Z" x="56.65" y="87.21" on_1b="136770" sv_id="110704_151309" start_speed="95.6" end_speed="87.3" sz_top="3.31" sz_bot="1.56" pfx_x="-4.68" pfx_z="7.97" px="0.998" pz="3.748" x0="-2.444" y0="50.0" z0="5.663" vx0="11.138" vy0="-139.805" vz0="-2.276" ax="-9.191" ay="33.914" az="-16.445" break_y="23.7" break_angle="21.0" break_length="3.8" pitch_type="FF" type_confidence=".915" zone="12" nasty="48" spin_dir="210.298" spin_rate="1890.460" cc="" mt=""/><runner id="136770" start="1B" end="2B" event="Walk"/><runner id="340192" start="" end="1B" event="Walk"/></atbat><atbat num="44" b="2" s="1" o="2" start_tfs="151357" start_tfs_zulu="2011-07-04T19:13:57Z" batter="453056" stand="L" b_height="6-1" pitcher="453344" p_throws="R" des="Jacoby Ellsbury triples (1) on a fly ball to right fielder Travis Snider. J. D. Drew scores. Marco Scutaro scores. " event="Triple" score="T" home_team_runs="2" away_team_runs="7"><pitch des="Ball" id="354" type="B" tfs="151413" tfs_zulu="2011-07-04T19:14:13Z" x="133.05" y="156.29" on_1b="340192" on_2b="136770" sv_id="110704_151411" start_speed="95.3" end_speed="86.8" sz_top="3.36" sz_bot="1.56" pfx_x="-5.73" pfx_z="8.5" px="-1.316" pz="1.914" x0="-2.448" y0="50.0" z0="5.723" vx0="5.135" vy0="-139.501" vz0="-7.588" ax="-11.147" ay="35.231" az="-15.579" break_y="23.7" break_angle="29.5" break_length="4.2" pitch_type="FF" type_confidence=".909" zone="13" nasty="45" spin_dir="213.888" spin_rate="2079.048" cc="Brandon Morrow went back to the four-seam fastball even though Jacoby Ellsbury hit for a single last time up." mt=""/><pitch des="Called Strike" id="355" type="S" tfs="151437" tfs_zulu="2011-07-04T19:14:37Z" x="107.30" y="97.57" on_1b="340192" on_2b="136770" sv_id="110704_151432" start_speed="94.6" end_speed="86.9" sz_top="3.73" sz_bot="1.62" pfx_x="-3.93" pfx_z="7.87" px="-0.757" pz="3.599" x0="-2.629" y0="50.0" z0="5.703" vx0="6.509" vy0="-138.518" vz0="-2.673" ax="-7.622" ay="31.287" az="-16.833" break_y="23.8" break_angle="19.5" break_length="3.9" pitch_type="FF" type_confidence=".915" zone="11" nasty="60" spin_dir="206.419" spin_rate="1794.141" cc="" mt=""/><pitch des="Ball" id="356" type="B" tfs="151450" tfs_zulu="2011-07-04T19:14:50Z" x="97.85" y="158.01" on_1b="340192" on_2b="136770" sv_id="110704_151450" start_speed="88.9" end_speed="81.9" sz_top="3.5" sz_bot="1.81" pfx_x="-6.04" pfx_z="4.57" px="-0.028" pz="1.661" x0="-2.441" y0="50.0" z0="5.439" vx0="8.204" vy0="-130.046" vz0="-4.96" ax="-10.33" ay="27.731" az="-24.281" break_y="23.8" break_angle="18.9" break_length="6.4" pitch_type="FC" type_confidence=".597" zone="13" nasty="44" spin_dir="232.616" spin_rate="1450.305" cc="" mt=""/><pitch des="In play, run(s)" id="357" type="X" tfs="151523" tfs_zulu="2011-07-04T19:15:23Z" x="97.85" y="139.02" on_1b="340192" on_2b="136770" sv_id="110704_151511" start_speed="95.1" end_speed="86.6" sz_top="3.36" sz_bot="1.56" pfx_x="-6.31" pfx_z="5.98" px="-0.072" pz="2.48" x0="-2.764" y0="50.0" z0="5.361" vx0="9.59" vy0="-139.119" vz0="-4.117" ax="-12.207" ay="34.763" az="-20.525" break_y="23.7" break_angle="24.6" break_length="5.0" pitch_type="FF" type_confidence=".887" zone="5" nasty="19" spin_dir="226.339" spin_rate="1759.613" cc="" mt=""/><runner id="340192" start="1B" end="" event="Triple" score="T" rbi="T" earned="T"/><runner id="136770" start="2B" end="" event="Triple" score="T" rbi="T" earned="T"/><runner id="453056" start="" end="3B" event="Triple"/></atbat><action b="2" s="1" o="2" des="Coaching visit to mound. " event="Game Advisory" tfs="151548" tfs_zulu="2011-07-04T19:15:48Z" player="456030" pitch="4"/><atbat num="45" b="4" s="2" o="2" start_tfs="151648" start_tfs_zulu="2011-07-04T19:16:48Z" batter="456030" stand="R" b_height="5-9" pitcher="453344" p_throws="R" des="Dustin Pedroia walks. Passed ball by catcher Jose Molina. Jacoby Ellsbury scores. " event="Walk" event2="Passed Ball" score="T" home_team_runs="3" away_team_runs="7"><pitch des="Called Strike" id="366" type="S" tfs="151651" tfs_zulu="2011-07-04T19:16:51Z" x="77.25" y="150.24" on_3b="453056" sv_id="110704_151650" start_speed="96.8" end_speed="87.6" sz_top="3.53" sz_bot="1.43" pfx_x="-2.48" pfx_z="12.99" px="0.73" pz="2.14" x0="-2.39" y0="50.0" z0="5.638" vx0="9.535" vy0="-141.441" vz0="-8.558" ax="-4.926" ay="37.914" az="-6.288" break_y="23.7" break_angle="15.7" break_length="1.8" pitch_type="FF" type_confidence=".916" zone="14" nasty="66" spin_dir="190.773" spin_rate="2702.815" cc="" mt=""/><pitch des="Ball" id="367" type="B" tfs="151705" tfs_zulu="2011-07-04T19:17:05Z" x="86.70" y="171.83" on_3b="453056" sv_id="110704_151707" start_speed="96.9" end_speed="89.9" sz_top="3.38" sz_bot="1.67" pfx_x="-4.4" pfx_z="12.41" px="0.861" pz="1.761" x0="-2.267" y0="50.0" z0="5.482" vx0="10.384" vy0="-141.452" vz0="-9.253" ax="-9.015" ay="28.821" az="-6.665" break_y="23.8" break_angle="39.1" break_length="2.2" pitch_type="FF" type_confidence=".916" zone="14" nasty="64" spin_dir="199.462" spin_rate="2774.869" cc="" mt=""/><pitch des="Ball" id="368" type="B" tfs="151727" tfs_zulu="2011-07-04T19:17:27Z" x="70.39" y="159.74" on_3b="453056" sv_id="110704_151727" start_speed="89.9" end_speed="82.9" sz_top="3.38" sz_bot="1.62" pfx_x="1.27" pfx_z="5.33" px="1.001" pz="1.8" x0="-2.349" y0="50.0" z0="5.759" vx0="8.252" vy0="-131.408" vz0="-5.856" ax="2.222" ay="28.648" az="-22.813" break_y="23.8" break_angle="-9.2" break_length="5.7" pitch_type="SL" type_confidence=".746" zone="14" nasty="55" spin_dir="166.649" spin_rate="1062.197" cc="" mt=""/><pitch des="Ball" id="369" type="B" tfs="151751" tfs_zulu="2011-07-04T19:17:51Z" x="69.53" y="194.28" on_3b="453056" sv_id="110704_151749" start_speed="89.3" end_speed="82.3" sz_top="3.38" sz_bot="1.71" pfx_x="4.31" pfx_z="2.12" px="1.344" pz="1.573" x0="-2.117" y0="50.0" z0="5.765" vx0="7.463" vy0="-130.709" vz0="-5.247" ax="7.405" ay="29.608" az="-28.465" break_y="23.8" break_angle="-16.8" break_length="7.3" pitch_type="SL" type_confidence=".897" zone="14" nasty="32" spin_dir="116.606" spin_rate="919.241" cc="" mt=""/><pitch des="Foul" id="370" type="S" tfs="151814" tfs_zulu="2011-07-04T19:18:14Z" x="107.30" y="104.48" on_3b="453056" sv_id="110704_151814" start_speed="96.7" end_speed="87.2" sz_top="3.38" sz_bot="1.71" pfx_x="-3.21" pfx_z="10.97" px="0.18" pz="2.872" x0="-2.404" y0="50.0" z0="5.518" vx0="8.301" vy0="-141.488" vz0="-5.449" ax="-6.365" ay="39.1" az="-10.363" break_y="23.7" break_angle="19.1" break_length="2.6" pitch_type="FF" type_confidence=".916" zone="2" nasty="30" spin_dir="196.267" spin_rate="2329.729" cc="" mt=""/><pitch des="Ball" id="371" type="B" tfs="151851" tfs_zulu="2011-07-04T19:18:51Z" x="75.54" y="77.71" on_3b="453056" sv_id="110704_151840" start_speed="98.0" end_speed="89.9" sz_top="3.31" sz_bot="1.51" pfx_x="-6.65" pfx_z="8.32" px="-1.355" pz="4.801" x0="-2.382" y0="50.0" z0="5.859" vx0="5.358" vy0="-143.655" vz0="-0.396" ax="-13.878" ay="33.895" az="-14.749" break_y="23.8" break_angle="40.4" break_length="3.8" pitch_type="FF" type_confidence=".868" zone="11" nasty="25" spin_dir="218.534" spin_rate="2249.690" cc="" mt=""/><runner id="453056" start="3B" end="" event="Passed Ball" score="T" earned="T"/><runner id="456030" start="" end="1B" event="Passed Ball"/></atbat><atbat num="46" b="1" s="1" o="2" start_tfs="151923" start_tfs_zulu="2011-07-04T19:19:23Z" batter="408236" stand="L" b_height="6-2" pitcher="453344" p_throws="R" des="Adrian Gonzalez doubles (28) on a fly ball to left fielder Eric Thames. Dustin Pedroia scores. " event="Double" score="T" home_team_runs="4" away_team_runs="7"><pitch des="Called Strike" id="378" type="S" tfs="151941" tfs_zulu="2011-07-04T19:19:41Z" x="115.88" y="130.38" on_1b="456030" sv_id="110704_151943" start_speed="88.9" end_speed="81.6" sz_top="3.87" sz_bot="1.82" pfx_x="3.1" pfx_z="1.11" px="-0.552" pz="3.396" x0="-2.504" y0="50.0" z0="5.793" vx0="3.974" vy0="-130.335" vz0="-0.256" ax="5.297" ay="29.457" az="-30.211" break_y="23.8" break_angle="-11.5" break_length="7.4" pitch_type="SL" type_confidence=".889" zone="1" nasty="72" spin_dir="110.334" spin_rate="628.804" cc="" mt=""/><pitch des="Ball" id="379" type="B" tfs="152005" tfs_zulu="2011-07-04T19:20:05Z" x="119.31" y="82.03" on_1b="456030" sv_id="110704_152005" start_speed="92.5" end_speed="85.2" sz_top="3.83" sz_bot="1.76" pfx_x="-2.84" pfx_z="8.91" px="-1.706" pz="4.826" x0="-2.64" y0="50.0" z0="5.699" vx0="3.492" vy0="-135.665" vz0="0.539" ax="-5.301" ay="28.931" az="-15.449" break_y="23.8" break_angle="16.6" break_length="3.5" pitch_type="FF" type_confidence=".906" zone="11" nasty="22" spin_dir="197.585" spin_rate="1876.235" cc="" mt=""/><pitch des="In play, run(s)" id="380" type="X" tfs="152059" tfs_zulu="2011-07-04T19:20:59Z" x="122.75" y="145.92" on_1b="456030" sv_id="110704_152031" start_speed="94.6" end_speed="86.4" sz_top="3.56" sz_bot="1.68" pfx_x="-4.51" pfx_z="9.16" px="-0.96" pz="2.563" x0="-2.412" y0="50.0" z0="5.847" vx0="5.546" vy0="-138.518" vz0="-6.284" ax="-8.673" ay="33.828" az="-14.488" break_y="23.7" break_angle="24.7" break_length="3.7" pitch_type="FF" type_confidence=".915" zone="13" nasty="49" spin_dir="206.121" spin_rate="2063.101" cc="" mt=""/><runner id="456030" start="1B" end="" event="Double" score="T" rbi="T" earned="T"/><runner id="408236" start="" end="2B" event="Double"/></atbat><atbat num="47" b="1" s="2" o="3" start_tfs="152120" start_tfs_zulu="2011-07-04T19:21:20Z" batter="501605" stand="R" b_height="5-11" pitcher="453344" p_throws="R" des="Yamaico Navarro grounds out, second baseman Aaron Hill to first baseman Adam Lind. " event="Groundout"><pitch des="Called Strike" id="387" type="S" tfs="152130" tfs_zulu="2011-07-04T19:21:30Z" x="78.97" y="137.29" on_2b="408236" sv_id="110704_152130" start_speed="87.0" end_speed="80.6" sz_top="3.47" sz_bot="1.72" pfx_x="4.07" pfx_z="0.49" px="0.581" pz="1.634" x0="-2.442" y0="50.0" z0="5.753" vx0="6.264" vy0="-127.308" vz0="-4.114" ax="6.669" ay="26.637" az="-31.293" break_y="23.8" break_angle="-13.7" break_length="8.2" pitch_type="SL" type_confidence=".898" zone="14" nasty="83" spin_dir="97.526" spin_rate="766.592" cc="" mt=""/><pitch des="Ball" id="388" type="B" tfs="152145" tfs_zulu="2011-07-04T19:21:45Z" x="69.53" y="153.69" on_2b="408236" sv_id="110704_152146" start_speed="88.6" end_speed="81.4" sz_top="3.34" sz_bot="1.69" pfx_x="3.12" pfx_z="0.79" px="0.939" pz="1.941" x0="-2.256" y0="50.0" z0="5.794" vx0="7.115" vy0="-129.682" vz0="-3.787" ax="5.253" ay="29.753" az="-30.768" break_y="23.8" break_angle="-12.0" break_length="7.8" pitch_type="SL" type_confidence=".894" zone="14" nasty="53" spin_dir="104.985" spin_rate="608.351" cc="" mt=""/><pitch des="Swinging Strike" id="389" type="S" tfs="152205" tfs_zulu="2011-07-04T19:22:05Z" x="81.55" y="101.89" on_2b="408236" sv_id="110704_152207" start_speed="95.5" end_speed="87.3" sz_top="3.34" sz_bot="1.69" pfx_x="-4.39" pfx_z="10.29" px="0.517" pz="3.525" x0="-2.359" y0="50.0" z0="5.812" vx0="9.479" vy0="-139.699" vz0="-4.13" ax="-8.626" ay="33.393" az="-11.896" break_y="23.7" break_angle="26.4" break_length="3.0" pitch_type="FF" type_confidence=".915" zone="12" nasty="54" spin_dir="203.043" spin_rate="2288.498" cc="" mt=""/><pitch des="In play, out(s)" id="390" type="X" tfs="152310" tfs_zulu="2011-07-04T19:23:10Z" x="104.72" y="141.61" on_2b="408236" sv_id="110704_152309" start_speed="91.4" end_speed="83.6" sz_top="3.34" sz_bot="1.69" pfx_x="0.5" pfx_z="2.58" px="0.571" pz="2.089" x0="-2.449" y0="50.0" z0="5.85" vx0="7.76" vy0="-133.775" vz0="-4.642" ax="0.898" ay="32.49" az="-27.493" break_y="23.7" break_angle="-5.3" break_length="6.5" pitch_type="FC" type_confidence=".551" zone="9" nasty="48" spin_dir="169.142" spin_rate="516.909" cc="Brandon Morrow is getting a generous strike zone this inning from home plate ump Jerry Layne." mt=""/><runner id="408236" start="2B" end="" event="Groundout"/></atbat></bottom></inning><inning num="6" away_team="tor" home_team="bos" next="Y"><top><action b="0" s="0" o="0" des="Pitcher Change: Alfredo Aceves replaces Dan Wheeler. " event="Pitching Substitution" tfs="152426" tfs_zulu="2011-07-04T19:24:26Z" player="469686" pitch="4"/><atbat num="48" b="1" s="0" o="0" start_tfs="152640" start_tfs_zulu="2011-07-04T19:26:40Z" batter="501983" stand="L" b_height="6-0" pitcher="469686" p_throws="R" des="Travis Snider doubles (7) on a ground ball to right fielder J. D. Drew. " event="Double"><pitch des="Ball" id="398" type="B" tfs="152657" tfs_zulu="2011-07-04T19:26:57Z" x="127.04" y="190.82" sv_id="110704_152656" start_speed="94.0" end_speed="85.8" sz_top="3.37" sz_bot="1.62" pfx_x="-6.0" pfx_z="9.68" px="0.803" pz="2.314" x0="-1.657" y0="50.0" z0="5.506" vx0="8.76" vy0="-137.498" vz0="-6.096" ax="-11.391" ay="32.961" az="-13.731" break_y="23.7" break_angle="31.6" break_length="3.8" pitch_type="FF" type_confidence=".899" zone="14" nasty="66" spin_dir="211.700" spin_rate="2287.221" cc="Alfredo Aceves went back to the four-seam fastball even though Travis Snider hit for a double last time up." mt=""/><pitch des="In play, no out" id="399" type="X" tfs="152717" tfs_zulu="2011-07-04T19:27:17Z" x="103.86" y="138.15" sv_id="110704_152714" start_speed="92.3" end_speed="84.9" sz_top="3.56" sz_bot="1.68" pfx_x="-0.01" pfx_z="8.77" px="0.594" pz="1.856" x0="-1.834" y0="50.0" z0="5.432" vx0="6.472" vy0="-135.001" vz0="-6.53" ax="-0.023" ay="29.866" az="-15.951" break_y="23.8" break_angle="-4.4" break_length="3.8" pitch_type="FC" type_confidence=".909" zone="9" nasty="56" spin_dir="180.079" spin_rate="1743.399" cc="Alfredo Aceves is trying to tie up Travis Snider with fastballs inside, where Travis Snider hits .154." mt=""/><runner id="501983" start="" end="2B" event="Double"/></atbat><atbat num="49" b="0" s="0" o="1" start_tfs="152801" start_tfs_zulu="2011-07-04T19:28:01Z" batter="150040" stand="R" b_height="6-2" pitcher="469686" p_throws="R" des="Jose Molina out on a sacrifice bunt, pitcher Alfredo Aceves to first baseman Adrian Gonzalez. Travis Snider to 3rd. " event="Sac Bunt"><pitch des="In play, out(s)" id="403" type="X" tfs="152815" tfs_zulu="2011-07-04T19:28:15Z" x="74.68" y="138.15" on_2b="501983" sv_id="110704_152808" start_speed="89.9" end_speed="82.5" sz_top="3.62" sz_bot="1.74" pfx_x="1.4" pfx_z="7.59" px="1.058" pz="3.502" x0="-2.347" y0="50.0" z0="5.932" vx0="8.35" vy0="-131.497" vz0="-2.652" ax="2.433" ay="29.178" az="-18.879" break_y="23.8" break_angle="-12.2" break_length="4.6" pitch_type="FC" type_confidence=".900" zone="12" nasty="76" spin_dir="169.631" spin_rate="1491.172" cc="" mt=""/><runner id="501983" start="2B" end="3B" event="Sac Bunt"/></atbat><action b="0" s="0" o="1" des="Coaching visit to mound. " event="Game Advisory" tfs="152921" tfs_zulu="2011-07-04T19:29:21Z" player="150348" pitch="0"/><atbat num="50" b="1" s="2" o="2" start_tfs="152843" start_tfs_zulu="2011-07-04T19:28:43Z" batter="150348" stand="R" b_height="5-9" pitcher="469686" p_throws="R" des="John McDonald pops out to first baseman Adrian Gonzalez in foul territory. " event="Pop Out"><pitch des="Ball" id="409" type="B" tfs="152904" tfs_zulu="2011-07-04T19:29:04Z" x="65.24" y="189.96" on_3b="501983" sv_id="110704_152903" start_speed="81.3" end_speed="74.8" sz_top="3.31" sz_bot="1.59" pfx_x="3.72" pfx_z="-4.85" px="1.46" pz="1.384" x0="-2.49" y0="50.0" z0="5.714" vx0="8.087" vy0="-118.938" vz0="-1.75" ax="5.238" ay="26.305" az="-38.937" break_y="23.8" break_angle="-9.7" break_length="11.5" pitch_type="CU" type_confidence=".896" zone="14" nasty="75" spin_dir="37.757" spin_rate="1043.428" cc="" mt=""/><pitch des="Foul" id="410" type="S" tfs="153014" tfs_zulu="2011-07-04T19:30:14Z" x="85.84" y="153.69" on_3b="501983" sv_id="110704_153013" start_speed="92.4" end_speed="85.4" sz_top="3.24" sz_bot="1.59" pfx_x="-2.01" pfx_z="8.74" px="0.258" pz="2.199" x0="-2.488" y0="50.0" z0="5.574" vx0="8.037" vy0="-135.081" vz0="-6.049" ax="-3.733" ay="28.092" az="-15.866" break_y="23.8" break_angle="7.1" break_length="3.8" pitch_type="FF" type_confidence=".944" zone="6" nasty="29" spin_dir="192.892" spin_rate="1796.796" cc="" mt=""/><pitch des="Called Strike" id="411" type="S" tfs="153103" tfs_zulu="2011-07-04T19:31:03Z" x="80.69" y="132.97" on_3b="501983" sv_id="110704_153103" start_speed="87.4" end_speed="81.5" sz_top="3.24" sz_bot="1.41" pfx_x="-7.53" pfx_z="6.17" px="0.669" pz="2.316" x0="-2.184" y0="50.0" z0="5.879" vx0="9.723" vy0="-127.761" vz0="-4.742" ax="-12.611" ay="23.044" az="-21.774" break_y="23.9" break_angle="25.9" break_length="6.1" pitch_type="CH" type_confidence=".833" zone="6" nasty="39" spin_dir="230.488" spin_rate="1856.179" cc="" mt=""/><pitch des="Foul" id="412" type="S" tfs="153156" tfs_zulu="2011-07-04T19:31:56Z" x="105.58" y="103.61" on_3b="501983" sv_id="110704_153158" start_speed="93.1" end_speed="84.5" sz_top="3.24" sz_bot="1.59" pfx_x="-4.93" pfx_z="10.81" px="0.58" pz="3.735" x0="-2.434" y0="50.0" z0="5.724" vx0="9.765" vy0="-136.155" vz0="-3.057" ax="-9.135" ay="33.608" az="-12.08" break_y="23.7" break_angle="27.7" break_length="3.2" pitch_type="FF" type_confidence=".888" zone="12" nasty="41" spin_dir="204.446" spin_rate="2351.960" cc="" mt=""/><pitch des="Foul" id="413" type="S" tfs="153246" tfs_zulu="2011-07-04T19:32:46Z" x="105.58" y="146.79" on_3b="501983" sv_id="110704_153247" start_speed="94.0" end_speed="84.4" sz_top="3.24" sz_bot="1.59" pfx_x="-5.85" pfx_z="7.5" px="0.217" pz="2.634" x0="-2.494" y0="50.0" z0="5.546" vx0="9.299" vy0="-137.466" vz0="-4.427" ax="-10.879" ay="38.456" az="-18.145" break_y="23.6" break_angle="23.3" break_length="4.6" pitch_type="FF" type_confidence=".916" zone="5" nasty="31" spin_dir="217.791" spin_rate="1873.597" cc="" mt=""/><pitch des="In play, out(s)" id="414" type="X" tfs="153333" tfs_zulu="2011-07-04T19:33:33Z" x="113.30" y="148.51" on_3b="501983" sv_id="110704_153322" start_speed="92.6" end_speed="84.2" sz_top="3.24" sz_bot="1.59" pfx_x="-3.89" pfx_z="8.68" px="0.79" pz="3.785" x0="-2.255" y0="50.0" z0="5.833" vx0="9.444" vy0="-135.497" vz0="-2.406" ax="-7.141" ay="33.227" az="-16.182" break_y="23.7" break_angle="16.2" break_length="3.9" pitch_type="FF" type_confidence=".886" zone="12" nasty="46" spin_dir="204.061" spin_rate="1875.238" cc="" mt=""/></atbat><atbat num="51" b="3" s="2" o="3" start_tfs="153425" start_tfs_zulu="2011-07-04T19:34:25Z" batter="434658" stand="R" b_height="5-10" pitcher="469686" p_throws="R" des="Rajai Davis pops out to shortstop Marco Scutaro. " event="Pop Out"><pitch des="Ball" id="418" type="B" tfs="153432" tfs_zulu="2011-07-04T19:34:32Z" x="99.57" y="187.37" on_3b="501983" sv_id="110704_153423" start_speed="91.2" end_speed="83.9" sz_top="3.39" sz_bot="1.51" pfx_x="-0.81" pfx_z="9.17" px="1.387" pz="2.598" x0="-2.409" y0="50.0" z0="5.673" vx0="10.258" vy0="-133.307" vz0="-5.113" ax="-1.454" ay="29.241" az="-15.627" break_y="23.8" break_angle="-2.4" break_length="3.8" pitch_type="FC" type_confidence=".880" zone="12" nasty="35" spin_dir="185.020" spin_rate="1807.752" cc="" mt=""/><pitch des="Ball" id="419" type="B" tfs="153458" tfs_zulu="2011-07-04T19:34:58Z" x="64.38" y="110.52" on_3b="501983" sv_id="110704_153456" start_speed="90.0" end_speed="82.9" sz_top="3.39" sz_bot="1.51" pfx_x="1.59" pfx_z="5.79" px="1.388" pz="3.541" x0="-2.326" y0="50.0" z0="5.979" vx0="9.112" vy0="-131.682" vz0="-2.101" ax="2.777" ay="28.63" az="-21.967" break_y="23.8" break_angle="-11.8" break_length="5.3" pitch_type="FC" type_confidence=".899" zone="12" nasty="35" spin_dir="164.782" spin_rate="1165.414" cc="" mt=""/><pitch des="Ball" id="420" type="B" tfs="153522" tfs_zulu="2011-07-04T19:35:22Z" x="99.57" y="94.98" on_3b="501983" sv_id="110704_153519" start_speed="90.8" end_speed="84.5" sz_top="3.47" sz_bot="1.65" pfx_x="0.46" pfx_z="7.02" px="-0.669" pz="3.533" x0="-2.767" y0="50.0" z0="5.736" vx0="5.379" vy0="-133.082" vz0="-2.145" ax="0.83" ay="25.523" az="-19.372" break_y="23.9" break_angle="-5.3" break_length="4.4" pitch_type="FC" type_confidence=".906" zone="11" nasty="57" spin_dir="176.292" spin_rate="1398.529" cc="" mt=""/><pitch des="Called Strike" id="421" type="S" tfs="153540" tfs_zulu="2011-07-04T19:35:40Z" x="71.24" y="138.15" on_3b="501983" sv_id="110704_153541" start_speed="91.2" end_speed="83.5" sz_top="3.39" sz_bot="1.51" pfx_x="1.29" pfx_z="5.12" px="0.894" pz="3.182" x0="-2.403" y0="50.0" z0="5.812" vx0="8.214" vy0="-133.478" vz0="-2.531" ax="2.314" ay="31.245" az="-22.949" break_y="23.8" break_angle="-10.0" break_length="5.4" pitch_type="FC" type_confidence=".912" zone="12" nasty="59" spin_dir="165.920" spin_rate="1033.735" cc="" mt=""/><pitch des="Foul" id="422" type="S" tfs="153606" tfs_zulu="2011-07-04T19:36:06Z" x="89.27" y="120.88" on_3b="501983" sv_id="110704_153603" start_speed="90.6" end_speed="83.3" sz_top="3.39" sz_bot="1.51" pfx_x="-0.65" pfx_z="4.41" px="0.535" pz="3.321" x0="-2.713" y0="50.0" z0="5.798" vx0="8.709" vy0="-132.612" vz0="-1.826" ax="-1.158" ay="29.474" az="-24.286" break_y="23.8" break_angle="-1.6" break_length="5.7" pitch_type="FC" type_confidence=".910" zone="3" nasty="50" spin_dir="188.350" spin_rate="872.201" cc="Alfredo Aceves battled back from 3-0 to retire Rajai Davis." mt=""/><pitch des="In play, out(s)" id="423" type="X" tfs="153709" tfs_zulu="2011-07-04T19:37:09Z" x="103.00" y="147.65" on_3b="501983" sv_id="110704_153709" start_speed="89.9" end_speed="83.6" sz_top="3.39" sz_bot="1.51" pfx_x="2.32" pfx_z="7.52" px="-0.025" pz="2.388" x0="-2.807" y0="50.0" z0="5.669" vx0="6.468" vy0="-131.608" vz0="-4.944" ax="4.093" ay="25.869" az="-18.813" break_y="23.8" break_angle="-15.0" break_length="4.7" pitch_type="FC" type_confidence=".899" zone="5" nasty="18" spin_dir="162.970" spin_rate="1540.411" cc="" mt=""/><runner id="501983" start="3B" end="" event="Pop Out"/></atbat></top><bottom><atbat num="52" b="4" s="0" o="0" start_tfs="153922" start_tfs_zulu="2011-07-04T19:39:22Z" batter="120074" stand="L" b_height="6-4" pitcher="453344" p_throws="R" des="David Ortiz walks. " event="Walk"><pitch des="Ball" id="429" type="B" tfs="153939" tfs_zulu="2011-07-04T19:39:39Z" x="132.19" y="108.80" sv_id="110704_153938" start_speed="90.5" end_speed="82.2" sz_top="3.83" sz_bot="1.89" pfx_x="-5.95" pfx_z="7.34" px="-1.761" pz="3.574" x0="-2.825" y0="50.0" z0="5.635" vx0="4.776" vy0="-132.637" vz0="-1.67" ax="-10.439" ay="32.285" az="-19.226" break_y="23.7" break_angle="25.3" break_length="5.0" pitch_type="FF" type_confidence=".882" zone="11" nasty="47" spin_dir="218.876" spin_rate="1819.207" cc="" mt=""/><pitch des="Ball" id="430" type="B" tfs="153953" tfs_zulu="2011-07-04T19:39:53Z" x="130.47" y="94.12" sv_id="110704_153954" start_speed="92.0" end_speed="83.7" sz_top="3.73" sz_bot="1.78" pfx_x="-7.63" pfx_z="7.5" px="-0.792" pz="3.39" x0="-2.448" y0="50.0" z0="5.881" vx0="6.996" vy0="-134.784" vz0="-3.095" ax="-13.84" ay="33.104" az="-18.498" break_y="23.7" break_angle="32.3" break_length="5.1" pitch_type="FF" type_confidence=".737" zone="11" nasty="57" spin_dir="225.341" spin_rate="2094.314" cc="Dangerous count for Brandon Morrow; David Ortiz is a dead-red fastball hitter, with a 1.080 OPS against them and .933 against everything else." mt=""/><pitch des="Ball" id="431" type="B" tfs="154015" tfs_zulu="2011-07-04T19:40:15Z" x="120.17" y="111.39" sv_id="110704_154013" start_speed="91.6" end_speed="84.2" sz_top="3.89" sz_bot="1.78" pfx_x="-4.3" pfx_z="8.16" px="-0.838" pz="3.646" x0="-2.559" y0="50.0" z0="5.887" vx0="6.036" vy0="-134.173" vz0="-2.676" ax="-7.837" ay="29.341" az="-17.251" break_y="23.8" break_angle="20.2" break_length="4.2" pitch_type="FF" type_confidence=".909" zone="11" nasty="61" spin_dir="207.705" spin_rate="1822.568" cc="" mt=""/><pitch des="Ball" id="432" type="B" tfs="154033" tfs_zulu="2011-07-04T19:40:33Z" x="100.43" y="86.35" sv_id="110704_154031" start_speed="91.5" end_speed="82.5" sz_top="3.73" sz_bot="1.78" pfx_x="-4.51" pfx_z="8.22" px="-0.558" pz="4.427" x0="-2.776" y0="50.0" z0="5.689" vx0="7.344" vy0="-134.029" vz0="0.022" ax="-8.025" ay="34.764" az="-17.461" break_y="23.7" break_angle="19.4" break_length="4.2" pitch_type="FF" type_confidence=".907" zone="11" nasty="38" spin_dir="208.608" spin_rate="1814.088" cc="Brandon Morrow is having trouble locating his four-seam fastball." mt=""/><runner id="120074" start="" end="1B" event="Walk"/></atbat><action b="0" s="0" o="0" des="Pitcher Change: Luis Perez replaces Brandon Morrow. " event="Pitching Substitution" tfs="154201" tfs_zulu="2011-07-04T19:42:01Z" player="453344" pitch="4"/><action b="0" s="0" o="0" des="Offensive Substitution: Pinch hitter Darnell McDonald replaces Josh Reddick. " event="Offensive sub" tfs="154349" tfs_zulu="2011-07-04T19:43:49Z" player="150021" pitch="4"/><action b="0" s="0" o="0" des="Coaching visit to mound. " event="Game Advisory" tfs="154047" tfs_zulu="2011-07-04T19:40:47Z" player="150021" pitch="4"/><atbat num="53" b="1" s="3" o="1" start_tfs="154407" start_tfs_zulu="2011-07-04T19:44:07Z" batter="150021" stand="R" b_height="5-11" pitcher="469802" p_throws="L" des="Darnell McDonald strikes out swinging. " event="Strikeout"><pitch des="Ball" id="442" type="B" tfs="154410" tfs_zulu="2011-07-04T19:44:10Z" x="134.76" y="177.01" on_1b="120074" sv_id="110704_154408" start_speed="92.6" end_speed="85.3" sz_top="3.52" sz_bot="1.64" pfx_x="10.71" pfx_z="6.28" px="-1.29" pz="1.953" x0="1.04" y0="50.0" z0="5.507" vx0="-9.946" vy0="-135.266" vz0="-5.672" ax="19.878" ay="29.018" az="-20.441" break_y="23.8" break_angle="-39.5" break_length="6.1" pitch_type="FT" type_confidence=".977" zone="13" nasty="67" spin_dir="120.552" spin_rate="2475.682" cc="" mt=""/><pitch des="Foul" id="443" type="S" tfs="154430" tfs_zulu="2011-07-04T19:44:30Z" x="119.31" y="143.33" on_1b="120074" sv_id="110704_154431" start_speed="92.4" end_speed="85.6" sz_top="3.37" sz_bot="1.59" pfx_x="11.18" pfx_z="6.9" px="-0.775" pz="2.284" x0="1.071" y0="50.0" z0="5.564" vx0="-8.831" vy0="-135.096" vz0="-5.178" ax="20.824" ay="27.237" az="-19.252" break_y="23.8" break_angle="-43.3" break_length="6.1" pitch_type="FT" type_confidence=".997" zone="13" nasty="57" spin_dir="121.822" spin_rate="2631.834" cc="" mt=""/><pitch des="Foul" id="444" type="S" tfs="154459" tfs_zulu="2011-07-04T19:44:59Z" x="97.00" y="151.10" on_1b="120074" sv_id="110704_154500" start_speed="93.0" end_speed="84.8" sz_top="3.37" sz_bot="1.59" pfx_x="11.78" pfx_z="3.15" px="-0.152" pz="1.814" x0="1.112" y0="50.0" z0="5.413" vx0="-7.456" vy0="-136.08" vz0="-4.702" ax="21.808" ay="33.454" az="-26.267" break_y="23.7" break_angle="-36.2" break_length="7.5" pitch_type="FT" type_confidence="1.000" zone="8" nasty="45" spin_dir="105.156" spin_rate="2408.784" cc="" mt=""/><pitch des="Swinging Strike" id="445" type="S" tfs="154526" tfs_zulu="2011-07-04T19:45:26Z" x="119.31" y="162.33" on_1b="120074" sv_id="110704_154526" start_speed="91.8" end_speed="85.1" sz_top="3.37" sz_bot="1.59" pfx_x="10.0" pfx_z="3.07" px="-1.211" pz="1.586" x0="0.83" y0="50.0" z0="5.563" vx0="-8.874" vy0="-134.169" vz0="-5.577" ax="18.339" ay="27.377" az="-26.469" break_y="23.8" break_angle="-31.1" break_length="7.1" pitch_type="FT" type_confidence=".921" zone="13" nasty="72" spin_dir="107.281" spin_rate="2076.750" cc="" mt=""/></atbat><atbat num="54" b="0" s="0" o="2" start_tfs="154532" start_tfs_zulu="2011-07-04T19:45:32Z" batter="457454" stand="R" b_height="6-4" pitcher="469802" p_throws="L" des="Jarrod Saltalamacchia grounds out, third baseman Jose Bautista to first baseman Adam Lind. David Ortiz to 2nd. " event="Groundout"><pitch des="In play, out(s)" id="449" type="X" tfs="154626" tfs_zulu="2011-07-04T19:46:26Z" x="107.30" y="146.79" on_1b="120074" sv_id="110704_154607" start_speed="84.1" end_speed="76.2" sz_top="3.46" sz_bot="1.68" pfx_x="3.65" pfx_z="6.14" px="0.328" pz="2.838" x0="1.054" y0="50.0" z0="5.694" vx0="-2.891" vy0="-123.3" vz0="-2.159" ax="5.506" ay="29.254" az="-22.846" break_y="23.7" break_angle="-11.7" break_length="6.5" pitch_type="CH" type_confidence=".909" zone="6" nasty="55" spin_dir="149.449" spin_rate="1274.498" cc="Luis Perez got Jarrod Saltalamacchia to chase a changeup that he doesn't like to hit." mt=""/><runner id="120074" start="1B" end="2B" event="Groundout"/></atbat><atbat num="55" b="3" s="3" o="3" start_tfs="154643" start_tfs_zulu="2011-07-04T19:46:43Z" batter="136770" stand="L" b_height="6-1" pitcher="469802" p_throws="L" des="J. D. Drew strikes out swinging. " event="Strikeout"><pitch des="Ball" id="454" type="B" tfs="154710" tfs_zulu="2011-07-04T19:47:10Z" x="132.19" y="156.29" on_2b="120074" sv_id="110704_154709" start_speed="92.5" end_speed="84.6" sz_top="3.51" sz_bot="1.7" pfx_x="12.6" pfx_z="6.51" px="-0.663" pz="1.907" x0="1.172" y0="50.0" z0="5.464" vx0="-9.239" vy0="-135.283" vz0="-5.686" ax="23.172" ay="31.694" az="-20.136" break_y="23.7" break_angle="-44.5" break_length="6.6" pitch_type="FT" type_confidence="1.000" zone="7" nasty="64" spin_dir="117.453" spin_rate="2800.303" cc="" mt=""/><pitch des="Called Strike" id="455" type="S" tfs="154725" tfs_zulu="2011-07-04T19:47:25Z" x="79.83" y="158.01" on_2b="120074" sv_id="110704_154726" start_speed="83.0" end_speed="76.8" sz_top="3.39" sz_bot="1.58" pfx_x="-1.29" pfx_z="-1.31" px="0.239" pz="1.879" x0="1.207" y0="50.0" z0="5.723" vx0="-1.922" vy0="-121.756" vz0="-2.125" ax="-1.922" ay="24.872" az="-34.061" break_y="23.8" break_angle="3.8" break_length="9.4" pitch_type="SL" type_confidence=".920" zone="9" nasty="36" spin_dir="314.474" spin_rate="320.942" cc="" mt=""/><pitch des="Ball" id="456" type="B" tfs="154755" tfs_zulu="2011-07-04T19:47:55Z" x="120.17" y="170.10" on_2b="120074" sv_id="110704_154747" start_speed="82.3" end_speed="76.3" sz_top="3.45" sz_bot="1.58" pfx_x="-1.68" pfx_z="-3.85" px="0.282" pz="1.699" x0="1.075" y0="50.0" z0="5.637" vx0="-1.366" vy0="-120.66" vz0="-1.43" ax="-2.474" ay="24.225" az="-37.756" break_y="23.8" break_angle="4.1" break_length="10.5" pitch_type="SL" type_confidence=".913" zone="9" nasty="37" spin_dir="336.098" spin_rate="734.131" cc="" mt=""/><pitch des="Ball" id="457" type="B" tfs="154809" tfs_zulu="2011-07-04T19:48:09Z" x="129.61" y="158.88" on_2b="120074" sv_id="110704_154809" start_speed="93.5" end_speed="85.2" sz_top="3.42" sz_bot="1.56" pfx_x="11.86" pfx_z="3.77" px="-0.945" pz="1.63" x0="1.038" y0="50.0" z0="5.426" vx0="-9.445" vy0="-136.759" vz0="-5.521" ax="22.14" ay="34.141" az="-25.059" break_y="23.7" break_angle="-37.0" break_length="7.2" pitch_type="FT" type_confidence="1.000" zone="13" nasty="68" spin_dir="107.816" spin_rate="2466.981" cc="J.D. Drew may sit on the two-seam fastball here, since Luis Perez would rather go after him than on-deck hitter David Ortiz." mt=""/><pitch des="Called Strike" id="458" type="S" tfs="154833" tfs_zulu="2011-07-04T19:48:33Z" x="97.00" y="153.69" on_2b="120074" sv_id="110704_154832" start_speed="93.5" end_speed="86.2" sz_top="3.47" sz_bot="1.55" pfx_x="12.64" pfx_z="2.68" px="0.117" pz="2.197" x0="1.299" y0="50.0" z0="5.333" vx0="-7.631" vy0="-136.873" vz0="-3.477" ax="23.981" ay="30.191" az="-27.006" break_y="23.8" break_angle="-38.9" break_length="7.6" pitch_type="FT" type_confidence="1.000" zone="5" nasty="37" spin_dir="102.162" spin_rate="2600.215" cc="" mt=""/><pitch des="Swinging Strike" id="459" type="S" tfs="154856" tfs_zulu="2011-07-04T19:48:56Z" x="83.26" y="135.56" on_2b="120074" sv_id="110704_154855" start_speed="83.1" end_speed="75.5" sz_top="3.51" sz_bot="1.74" pfx_x="-2.0" pfx_z="-1.82" px="0.174" pz="2.51" x0="1.04" y0="50.0" z0="5.729" vx0="-1.445" vy0="-121.862" vz0="-0.374" ax="-2.941" ay="29.142" az="-34.768" break_y="23.7" break_angle="5.3" break_length="9.7" pitch_type="SL" type_confidence=".922" zone="5" nasty="25" spin_dir="311.414" spin_rate="466.862" cc="Luis Perez is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="120074" start="2B" end="" event="Strikeout"/></atbat></bottom></inning><inning num="7" away_team="tor" home_team="bos" next="Y"><top><action b="0" s="0" o="0" des="Darnell McDonald remains in the game as the left fielder. " event="Defensive Switch" tfs="155142" tfs_zulu="2011-07-04T19:51:42Z" player="150021" pitch="6"/><atbat num="56" b="0" s="2" o="1" start_tfs="155112" start_tfs_zulu="2011-07-04T19:51:12Z" batter="519346" stand="L" b_height="6-1" pitcher="469686" p_throws="R" des="Eric Thames flies out to right fielder J. D. Drew. " event="Flyout"><pitch des="Called Strike" id="467" type="S" tfs="155147" tfs_zulu="2011-07-04T19:51:47Z" x="80.69" y="125.20" sv_id="110704_155136" start_speed="90.0" end_speed="83.0" sz_top="2.99" sz_bot="1.35" pfx_x="0.01" pfx_z="5.7" px="0.317" pz="2.958" x0="-1.804" y0="50.0" z0="5.673" vx0="5.515" vy0="-131.868" vz0="-2.826" ax="0.024" ay="28.245" az="-22.068" break_y="23.8" break_angle="-2.9" break_length="5.2" pitch_type="FC" type_confidence=".901" zone="3" nasty="59" spin_dir="179.866" spin_rate="1111.843" cc="" mt=""/><pitch des="Called Strike" id="468" type="S" tfs="155154" tfs_zulu="2011-07-04T19:51:54Z" x="87.55" y="132.97" sv_id="110704_155155" start_speed="79.1" end_speed="72.1" sz_top="3.07" sz_bot="1.39" pfx_x="9.3" pfx_z="-5.2" px="-0.611" pz="2.333" x0="-1.749" y0="50.0" z0="5.788" vx0="-0.145" vy0="-116.053" vz0="0.766" ax="12.372" ay="26.616" az="-39.022" break_y="23.7" break_angle="-17.6" break_length="12.5" pitch_type="CU" type_confidence=".898" zone="4" nasty="34" spin_dir="61.035" spin_rate="1767.743" cc="" mt=""/><pitch des="In play, out(s)" id="469" type="X" tfs="155226" tfs_zulu="2011-07-04T19:52:26Z" x="88.41" y="145.92" sv_id="110704_155220" start_speed="93.6" end_speed="85.9" sz_top="3.38" sz_bot="1.5" pfx_x="-8.12" pfx_z="8.55" px="0.734" pz="3.115" x0="-1.249" y0="50.0" z0="5.633" vx0="8.207" vy0="-137.035" vz0="-3.867" ax="-15.392" ay="30.996" az="-15.883" break_y="23.8" break_angle="39.0" break_length="4.6" pitch_type="FF" type_confidence=".919" zone="12" nasty="53" spin_dir="223.374" spin_rate="2372.776" cc="Alfredo Aceves has been getting the ball up so far; he has allowed 4 HR in 50.1 IP this year." mt=""/></atbat><atbat num="57" b="0" s="0" o="2" start_tfs="155255" start_tfs_zulu="2011-07-04T19:52:55Z" batter="430832" stand="R" b_height="6-0" pitcher="469686" p_throws="R" des="Jose Bautista grounds out sharply, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="In play, out(s)" id="473" type="X" tfs="155259" tfs_zulu="2011-07-04T19:52:59Z" x="94.42" y="143.33" sv_id="110704_155255" start_speed="91.8" end_speed="84.1" sz_top="3.29" sz_bot="1.51" pfx_x="-1.17" pfx_z="8.44" px="0.316" pz="2.431" x0="-2.688" y0="50.0" z0="5.637" vx0="8.335" vy0="-134.229" vz0="-5.287" ax="-2.111" ay="30.984" az="-16.816" break_y="23.8" break_angle=".8" break_length="4.0" pitch_type="FC" type_confidence=".801" zone="6" nasty="44" spin_dir="187.825" spin_rate="1675.540" cc="Alfredo Aceves has Blue Jays batters hitting the ball into the ground so far." mt=""/></atbat><atbat num="58" b="4" s="1" o="2" start_tfs="155347" start_tfs_zulu="2011-07-04T19:53:47Z" batter="452252" stand="L" b_height="6-1" pitcher="469686" p_throws="R" des="Adam Lind walks. " event="Walk"><pitch des="Foul" id="477" type="S" tfs="155354" tfs_zulu="2011-07-04T19:53:54Z" x="98.71" y="100.16" sv_id="110704_155356" start_speed="92.5" end_speed="84.9" sz_top="3.59" sz_bot="1.73" pfx_x="-7.49" pfx_z="10.39" px="-0.56" pz="3.526" x0="-1.487" y0="50.0" z0="5.5" vx0="5.079" vy0="-135.506" vz0="-2.876" ax="-13.893" ay="30.175" az="-12.826" break_y="23.8" break_angle="43.5" break_length="4.1" pitch_type="FF" type_confidence=".913" zone="1" nasty="70" spin_dir="215.679" spin_rate="2550.194" cc="Alfredo Aceves went back to the four-seam fastball even though Adam Lind hit for a single last time up." mt=""/><pitch des="Ball" id="478" type="B" tfs="155421" tfs_zulu="2011-07-04T19:54:21Z" x="49.79" y="165.78" sv_id="110704_155420" start_speed="93.7" end_speed="84.7" sz_top="3.46" sz_bot="1.63" pfx_x="-8.1" pfx_z="10.36" px="2.439" pz="1.55" x0="-1.261" y0="50.0" z0="5.419" vx0="12.701" vy0="-136.557" vz0="-7.936" ax="-15.006" ay="35.391" az="-12.902" break_y="23.7" break_angle="38.3" break_length="4.2" pitch_type="FT" type_confidence=".918" zone="14" nasty="43" spin_dir="217.905" spin_rate="2594.934" cc="" mt=""/><pitch des="Ball" id="479" type="B" tfs="155452" tfs_zulu="2011-07-04T19:54:52Z" x="38.63" y="158.01" sv_id="110704_155443" start_speed="94.9" end_speed="87.0" sz_top="3.3" sz_bot="1.58" pfx_x="-6.55" pfx_z="8.58" px="2.863" pz="2.673" x0="-0.983" y0="50.0" z0="5.592" vx0="12.827" vy0="-138.561" vz0="-5.143" ax="-12.689" ay="31.912" az="-15.465" break_y="23.8" break_angle="30.5" break_length="4.0" pitch_type="FF" type_confidence=".908" zone="12" nasty="25" spin_dir="217.212" spin_rate="2196.782" cc="" mt=""/><pitch des="Ball" id="480" type="B" tfs="155522" tfs_zulu="2011-07-04T19:55:22Z" x="127.90" y="138.15" sv_id="110704_155512" start_speed="91.8" end_speed="83.7" sz_top="3.47" sz_bot="1.73" pfx_x="0.23" pfx_z="4.67" px="-1.312" pz="2.61" x0="-1.865" y0="50.0" z0="5.568" vx0="1.384" vy0="-134.636" vz0="-3.345" ax="0.412" ay="33.029" az="-23.639" break_y="23.7" break_angle="-1.7" break_length="5.5" pitch_type="FC" type_confidence=".943" zone="11" nasty="21" spin_dir="177.238" spin_rate="920.767" cc="" mt=""/><pitch des="Ball" id="481" type="B" tfs="155546" tfs_zulu="2011-07-04T19:55:46Z" x="68.67" y="149.38" sv_id="110704_155549" start_speed="80.0" end_speed="73.9" sz_top="3.19" sz_bot="1.43" pfx_x="7.71" pfx_z="-5.55" px="0.437" pz="3.752" x0="-1.555" y0="50.0" z0="5.93" vx0="2.29" vy0="-117.271" vz0="3.572" ax="10.704" ay="22.885" az="-39.799" break_y="23.8" break_angle="-15.8" break_length="11.9" pitch_type="CU" type_confidence=".898" zone="12" nasty="26" spin_dir="54.535" spin_rate="1625.841" cc="" mt=""/><runner id="452252" start="" end="1B" event="Walk"/></atbat><atbat num="59" b="3" s="2" o="2" start_tfs="155610" start_tfs_zulu="2011-07-04T19:56:10Z" batter="429665" stand="R" b_height="6-2" pitcher="469686" p_throws="R" des="Edwin Encarnacion reaches on fielding error by third baseman Yamaico Navarro. Adam Lind scores. Edwin Encarnacion to 2nd. " event="Field Error" event2="Error" score="T" home_team_runs="4" away_team_runs="8"><pitch des="Ball" id="485" type="B" tfs="155620" tfs_zulu="2011-07-04T19:56:20Z" x="104.72" y="91.53" on_1b="452252" sv_id="110704_155621" start_speed="90.3" end_speed="83.4" sz_top="3.24" sz_bot="1.49" pfx_x="-1.92" pfx_z="7.77" px="0.064" pz="3.659" x0="-2.521" y0="50.0" z0="5.734" vx0="7.41" vy0="-132.226" vz0="-1.932" ax="-3.407" ay="26.98" az="-18.284" break_y="23.8" break_angle="5.9" break_length="4.3" pitch_type="FF" type_confidence=".863" zone="12" nasty="37" spin_dir="193.780" spin_rate="1569.185" cc="" mt=""/><pitch des="Called Strike" id="486" type="S" tfs="155640" tfs_zulu="2011-07-04T19:56:40Z" x="120.17" y="126.93" on_1b="452252" sv_id="110704_155640" start_speed="77.4" end_speed="70.6" sz_top="3.21" sz_bot="1.57" pfx_x="9.01" pfx_z="-5.67" px="-0.745" pz="3.224" x0="-2.768" y0="50.0" z0="5.812" vx0="1.906" vy0="-113.532" vz0="3.104" ax="11.508" ay="24.867" az="-39.346" break_y="23.7" break_angle="-17.0" break_length="12.9" pitch_type="CU" type_confidence=".898" zone="11" nasty="51" spin_dir="58.067" spin_rate="1732.772" cc="" mt=""/><pitch des="Swinging Strike" id="487" type="S" tfs="155703" tfs_zulu="2011-07-04T19:57:03Z" x="78.11" y="140.74" on_1b="452252" sv_id="110704_155704" start_speed="91.2" end_speed="83.4" sz_top="3.55" sz_bot="1.65" pfx_x="-1.35" pfx_z="4.73" px="1.087" pz="2.474" x0="-2.426" y0="50.0" z0="5.618" vx0="9.667" vy0="-133.33" vz0="-3.725" ax="-2.397" ay="31.359" az="-23.667" break_y="23.8" break_angle=".6" break_length="5.6" pitch_type="FC" type_confidence=".868" zone="14" nasty="46" spin_dir="195.735" spin_rate="961.702" cc="" mt=""/><pitch des="Ball" id="488" type="B" tfs="155729" tfs_zulu="2011-07-04T19:57:29Z" x="46.35" y="150.24" on_1b="452252" sv_id="110704_155727" start_speed="93.5" end_speed="84.0" sz_top="3.55" sz_bot="1.65" pfx_x="-7.84" pfx_z="10.15" px="2.371" pz="2.456" x0="-2.137" y0="50.0" z0="5.547" vx0="14.701" vy0="-136.259" vz0="-5.695" ax="-14.369" ay="36.838" az="-13.493" break_y="23.6" break_angle="34.8" break_length="4.1" pitch_type="FT" type_confidence=".915" zone="14" nasty="29" spin_dir="217.566" spin_rate="2509.335" cc="" mt=""/><po des="Pickoff Attempt 1B"/><pitch des="Ball" id="490" type="B" tfs="155814" tfs_zulu="2011-07-04T19:58:14Z" x="60.94" y="189.10" on_1b="452252" sv_id="110704_155808" start_speed="83.1" end_speed="77.1" sz_top="3.48" sz_bot="1.65" pfx_x="6.46" pfx_z="-3.56" px="2.025" pz="1.748" x0="-2.424" y0="50.0" z0="5.716" vx0="8.639" vy0="-121.507" vz0="-1.683" ax="9.605" ay="25.125" az="-37.39" break_y="23.8" break_angle="-16.4" break_length="10.7" pitch_type="CU" type_confidence=".892" zone="14" nasty="23" spin_dir="61.495" spin_rate="1305.020" cc="" mt=""/><pitch des="In play, run(s)" id="491" type="X" tfs="155905" tfs_zulu="2011-07-04T19:59:05Z" x="95.28" y="148.51" on_1b="452252" sv_id="110704_155839" start_speed="92.5" end_speed="84.6" sz_top="3.55" sz_bot="1.65" pfx_x="-4.76" pfx_z="9.44" px="-0.011" pz="2.772" x0="-2.537" y0="50.0" z0="5.454" vx0="8.374" vy0="-135.296" vz0="-4.385" ax="-8.773" ay="31.252" az="-14.707" break_y="23.8" break_angle="23.7" break_length="3.8" pitch_type="FF" type_confidence=".881" zone="5" nasty="19" spin_dir="206.667" spin_rate="2095.965" cc="" mt=""/><runner id="452252" start="1B" end="" event="Field Error" score="T"/><runner id="429665" start="" end="2B" event="Field Error"/></atbat><atbat num="60" b="3" s="2" o="3" start_tfs="155927" start_tfs_zulu="2011-07-04T19:59:27Z" batter="431094" stand="R" b_height="5-11" pitcher="469686" p_throws="R" des="Aaron Hill grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Ball" id="499" type="B" tfs="155947" tfs_zulu="2011-07-04T19:59:47Z" x="69.53" y="115.70" on_2b="429665" sv_id="110704_155949" start_speed="92.7" end_speed="83.9" sz_top="3.44" sz_bot="1.57" pfx_x="-6.98" pfx_z="8.88" px="0.819" pz="2.655" x0="-2.384" y0="50.0" z0="5.565" vx0="10.896" vy0="-135.484" vz0="-4.724" ax="-12.721" ay="34.807" az="-15.907" break_y="23.7" break_angle="30.3" break_length="4.4" pitch_type="FF" type_confidence=".856" zone="12" nasty="66" spin_dir="218.025" spin_rate="2211.275" cc="Alfredo Aceves went back to the four-seam fastball even though Aaron Hill hit for a home run last time up." mt=""/><pitch des="Called Strike" id="500" type="S" tfs="160018" tfs_zulu="2011-07-04T20:00:18Z" x="84.98" y="151.10" on_2b="429665" sv_id="110704_160014" start_speed="78.0" end_speed="71.0" sz_top="3.26" sz_bot="1.5" pfx_x="10.97" pfx_z="-5.87" px="0.788" pz="2.542" x0="-2.375" y0="50.0" z0="6.114" vx0="3.887" vy0="-114.266" vz0="0.934" ax="14.083" ay="26.805" az="-39.635" break_y="23.7" break_angle="-20.6" break_length="13.4" pitch_type="CU" type_confidence=".898" zone="12" nasty="39" spin_dir="62.085" spin_rate="2023.484" cc="" mt=""/><pitch des="Foul" id="501" type="S" tfs="160039" tfs_zulu="2011-07-04T20:00:39Z" x="92.70" y="145.92" on_2b="429665" sv_id="110704_160037" start_speed="90.0" end_speed="82.3" sz_top="3.09" sz_bot="1.46" pfx_x="1.41" pfx_z="6.39" px="0.888" pz="2.3" x0="-2.396" y0="50.0" z0="5.621" vx0="8.021" vy0="-131.648" vz0="-4.53" ax="2.444" ay="30.881" az="-21.013" break_y="23.7" break_angle="-10.8" break_length="5.3" pitch_type="FC" type_confidence=".901" zone="12" nasty="46" spin_dir="167.650" spin_rate="1259.104" cc="" mt=""/><pitch des="Ball" id="502" type="B" tfs="160117" tfs_zulu="2011-07-04T20:01:17Z" x="100.43" y="85.48" on_2b="429665" sv_id="110704_160116" start_speed="91.8" end_speed="83.1" sz_top="3.4" sz_bot="1.46" pfx_x="-8.24" pfx_z="3.92" px="-0.676" pz="3.832" x0="-2.553" y0="50.0" z0="5.744" vx0="7.755" vy0="-134.411" vz0="-0.282" ax="-14.807" ay="33.948" az="-25.053" break_y="23.7" break_angle="27.2" break_length="6.4" pitch_type="FT" type_confidence=".824" zone="11" nasty="50" spin_dir="244.316" spin_rate="1773.429" cc="" mt=""/><pitch des="Foul" id="503" type="S" tfs="160145" tfs_zulu="2011-07-04T20:01:45Z" x="72.10" y="105.34" on_2b="429665" sv_id="110704_160144" start_speed="92.8" end_speed="84.3" sz_top="3.09" sz_bot="1.46" pfx_x="-5.46" pfx_z="9.37" px="0.409" pz="3.603" x0="-2.604" y0="50.0" z0="5.65" vx0="9.917" vy0="-135.73" vz0="-2.672" ax="-10.06" ay="33.314" az="-14.848" break_y="23.7" break_angle="26.3" break_length="3.8" pitch_type="FF" type_confidence=".893" zone="12" nasty="35" spin_dir="210.139" spin_rate="2141.469" cc="" mt=""/><pitch des="Foul" id="504" type="S" tfs="160237" tfs_zulu="2011-07-04T20:02:37Z" x="90.13" y="145.92" on_2b="429665" sv_id="110704_160232" start_speed="92.0" end_speed="83.2" sz_top="3.09" sz_bot="1.46" pfx_x="-6.1" pfx_z="7.29" px="0.116" pz="3.316" x0="-2.562" y0="50.0" z0="5.482" vx0="9.141" vy0="-134.634" vz0="-2.108" ax="-10.98" ay="34.62" az="-18.993" break_y="23.7" break_angle="23.9" break_length="4.8" pitch_type="FF" type_confidence=".906" zone="12" nasty="43" spin_dir="219.794" spin_rate="1848.596" cc="" mt=""/><pitch des="Foul" id="505" type="S" tfs="160313" tfs_zulu="2011-07-04T20:03:13Z" x="96.14" y="105.34" on_2b="429665" sv_id="110704_160312" start_speed="92.2" end_speed="83.9" sz_top="3.09" sz_bot="1.46" pfx_x="-6.31" pfx_z="7.48" px="0.172" pz="3.701" x0="-2.582" y0="50.0" z0="5.617" vx0="9.467" vy0="-134.844" vz0="-1.596" ax="-11.494" ay="32.145" az="-18.461" break_y="23.7" break_angle="26.2" break_length="4.7" pitch_type="FF" type_confidence=".902" zone="12" nasty="25" spin_dir="219.968" spin_rate="1925.099" cc="" mt=""/><pitch des="Ball" id="506" type="B" tfs="160353" tfs_zulu="2011-07-04T20:03:53Z" x="90.99" y="100.16" on_2b="429665" sv_id="110704_160352" start_speed="91.7" end_speed="85.2" sz_top="3.28" sz_bot="1.46" pfx_x="-4.93" pfx_z="8.11" px="0.979" pz="3.584" x0="-2.491" y0="50.0" z0="5.71" vx0="10.931" vy0="-133.958" vz0="-2.426" ax="-9.069" ay="25.384" az="-17.165" break_y="23.8" break_angle="21.8" break_length="4.2" pitch_type="FF" type_confidence=".871" zone="12" nasty="67" spin_dir="211.141" spin_rate="1899.188" cc="" mt=""/><pitch des="In play, out(s)" id="507" type="X" tfs="160422" tfs_zulu="2011-07-04T20:04:22Z" x="106.44" y="133.84" on_2b="429665" sv_id="110704_160420" start_speed="91.6" end_speed="83.7" sz_top="3.09" sz_bot="1.46" pfx_x="-5.7" pfx_z="7.85" px="0.534" pz="2.707" x0="-2.398" y0="50.0" z0="5.49" vx0="9.679" vy0="-133.948" vz0="-3.927" ax="-10.275" ay="31.109" az="-17.955" break_y="23.7" break_angle="23.2" break_length="4.6" pitch_type="FF" type_confidence=".876" zone="3" nasty="46" spin_dir="215.852" spin_rate="1900.067" cc="Alfredo Aceves is getting a generous strike zone this inning from home plate ump Jerry Layne." mt=""/><runner id="429665" start="2B" end="" event="Groundout"/></atbat></top><bottom><atbat num="61" b="2" s="2" o="1" start_tfs="160846" start_tfs_zulu="2011-07-04T20:08:46Z" batter="340192" stand="R" b_height="5-10" pitcher="469802" p_throws="L" des="Marco Scutaro grounds out, third baseman Jose Bautista to first baseman Adam Lind. " event="Groundout"><pitch des="Ball" id="513" type="B" tfs="160900" tfs_zulu="2011-07-04T20:09:00Z" x="138.20" y="87.21" sv_id="110704_160857" start_speed="91.7" end_speed="84.0" sz_top="3.31" sz_bot="1.56" pfx_x="12.14" pfx_z="5.37" px="-0.371" pz="3.79" x0="1.073" y0="50.0" z0="5.776" vx0="-7.992" vy0="-134.316" vz0="-1.04" ax="22.077" ay="30.296" az="-22.327" break_y="23.8" break_angle="-42.0" break_length="6.8" pitch_type="FT" type_confidence="1.000" zone="11" nasty="40" spin_dir="114.039" spin_rate="2611.041" cc="" mt=""/><pitch des="Ball" id="514" type="B" tfs="160913" tfs_zulu="2011-07-04T20:09:13Z" x="140.77" y="139.02" sv_id="110704_160914" start_speed="93.7" end_speed="84.5" sz_top="3.31" sz_bot="1.56" pfx_x="10.67" pfx_z="3.47" px="-1.091" pz="2.738" x0="0.887" y0="50.0" z0="5.579" vx0="-9.004" vy0="-137.116" vz0="-2.831" ax="19.851" ay="36.848" az="-25.656" break_y="23.7" break_angle="-33.5" break_length="7.0" pitch_type="FT" type_confidence=".839" zone="11" nasty="61" spin_dir="108.178" spin_rate="2210.698" cc="Marco Scutaro may sit on the two-seam fastball here, since Luis Perez would rather go after him than on-deck hitter David Ortiz." mt=""/><pitch des="Called Strike" id="515" type="S" tfs="160933" tfs_zulu="2011-07-04T20:09:33Z" x="77.25" y="147.65" sv_id="110704_160932" start_speed="92.6" end_speed="84.2" sz_top="3.31" sz_bot="1.56" pfx_x="11.58" pfx_z="4.6" px="0.57" pz="2.793" x0="1.235" y0="50.0" z0="5.498" vx0="-5.76" vy0="-135.737" vz0="-2.754" ax="21.245" ay="34.261" az="-23.658" break_y="23.7" break_angle="-39.2" break_length="7.0" pitch_type="FT" type_confidence="1.000" zone="3" nasty="53" spin_dir="111.844" spin_rate="2446.339" cc="" mt=""/><pitch des="Foul" id="516" type="S" tfs="160948" tfs_zulu="2011-07-04T20:09:48Z" x="133.05" y="170.96" sv_id="110704_160948" start_speed="93.7" end_speed="86.1" sz_top="3.31" sz_bot="1.56" pfx_x="12.72" pfx_z="4.5" px="-0.665" pz="1.858" x0="1.067" y0="50.0" z0="5.409" vx0="-9.142" vy0="-137.005" vz0="-5.234" ax="24.112" ay="30.951" az="-23.563" break_y="23.8" break_angle="-41.8" break_length="7.1" pitch_type="FT" type_confidence="1.000" zone="7" nasty="61" spin_dir="109.653" spin_rate="2711.220" cc="Luis Perez is trying to tie up Marco Scutaro with fastballs inside, where Marco Scutaro hits .241." mt=""/><pitch des="Foul" id="517" type="S" tfs="161016" tfs_zulu="2011-07-04T20:10:16Z" x="113.30" y="95.84" sv_id="110704_161013" start_speed="82.9" end_speed="75.4" sz_top="3.31" sz_bot="1.56" pfx_x="3.44" pfx_z="8.11" px="0.631" pz="3.717" x0="1.132" y0="50.0" z0="5.844" vx0="-2.256" vy0="-121.51" vz0="-0.851" ax="5.067" ay="26.921" az="-20.14" break_y="23.7" break_angle="-12.7" break_length="5.8" pitch_type="CH" type_confidence=".903" zone="12" nasty="56" spin_dir="157.168" spin_rate="1558.984" cc="" mt=""/><pitch des="In play, out(s)" id="518" type="X" tfs="161041" tfs_zulu="2011-07-04T20:10:41Z" x="90.99" y="139.88" sv_id="110704_161036" start_speed="82.7" end_speed="76.2" sz_top="3.31" sz_bot="1.56" pfx_x="6.57" pfx_z="6.32" px="-0.511" pz="2.038" x0="0.867" y0="50.0" z0="5.682" vx0="-5.329" vy0="-121.077" vz0="-3.942" ax="9.735" ay="24.074" az="-22.744" break_y="23.8" break_angle="-20.4" break_length="6.9" pitch_type="CH" type_confidence=".887" zone="7" nasty="41" spin_dir="134.089" spin_rate="1624.013" cc="" mt=""/></atbat><atbat num="62" b="1" s="1" o="1" start_tfs="161057" start_tfs_zulu="2011-07-04T20:10:57Z" batter="453056" stand="L" b_height="6-1" pitcher="469802" p_throws="L" des="Jacoby Ellsbury singles on a ground ball to shortstop John McDonald, deflected by pitcher Luis Perez. " event="Single"><pitch des="Called Strike" id="522" type="S" tfs="161116" tfs_zulu="2011-07-04T20:11:16Z" x="99.57" y="116.57" sv_id="110704_161115" start_speed="93.7" end_speed="85.5" sz_top="3.36" sz_bot="1.56" pfx_x="10.83" pfx_z="5.2" px="-0.112" pz="2.671" x0="0.979" y0="50.0" z0="5.471" vx0="-6.727" vy0="-137.147" vz0="-3.417" ax="20.412" ay="33.176" az="-22.288" break_y="23.7" break_angle="-39.2" break_length="6.4" pitch_type="FT" type_confidence=".996" zone="5" nasty="35" spin_dir="115.843" spin_rate="2399.159" cc="" mt=""/><pitch des="Ball" id="523" type="B" tfs="161147" tfs_zulu="2011-07-04T20:11:47Z" x="133.91" y="197.73" sv_id="110704_161145" start_speed="84.3" end_speed="77.4" sz_top="3.58" sz_bot="1.7" pfx_x="5.53" pfx_z="6.04" px="-1.641" pz="0.384" x0="0.792" y0="50.0" z0="5.348" vx0="-7.634" vy0="-123.251" vz0="-7.305" ax="8.422" ay="26.722" az="-22.899" break_y="23.8" break_angle="-15.8" break_length="6.8" pitch_type="CH" type_confidence=".910" zone="13" nasty="21" spin_dir="137.761" spin_rate="1474.689" cc="" mt=""/><pitch des="In play, no out" id="524" type="X" tfs="161228" tfs_zulu="2011-07-04T20:12:28Z" x="94.42" y="136.43" sv_id="110704_161213" start_speed="93.7" end_speed="86.2" sz_top="3.36" sz_bot="1.56" pfx_x="10.05" pfx_z="5.65" px="-0.032" pz="3.227" x0="0.981" y0="50.0" z0="5.546" vx0="-6.279" vy0="-137.227" vz0="-2.347" ax="19.155" ay="30.515" az="-21.323" break_y="23.8" break_angle="-39.2" break_length="6.0" pitch_type="FT" type_confidence=".946" zone="2" nasty="43" spin_dir="119.531" spin_rate="2327.450" cc="" mt=""/><runner id="453056" start="" end="1B" event="Single"/></atbat><atbat num="63" b="2" s="2" o="1" start_tfs="161239" start_tfs_zulu="2011-07-04T20:12:39Z" batter="456030" stand="R" b_height="5-9" pitcher="469802" p_throws="L" des="Dustin Pedroia singles on a soft line drive to center fielder Rajai Davis. Jacoby Ellsbury to 2nd. " event="Single"><pitch des="Called Strike" id="528" type="S" tfs="161303" tfs_zulu="2011-07-04T20:13:03Z" x="122.75" y="120.88" on_1b="453056" sv_id="110704_161301" start_speed="93.2" end_speed="83.1" sz_top="3.54" sz_bot="1.71" pfx_x="9.32" pfx_z="4.24" px="0.534" pz="3.004" x0="1.008" y0="50.0" z0="5.63" vx0="-4.451" vy0="-136.544" vz0="-2.373" ax="16.939" ay="40.373" az="-24.389" break_y="23.6" break_angle="-32.0" break_length="6.7" pitch_type="FT" type_confidence=".587" zone="3" nasty="53" spin_dir="114.684" spin_rate="1980.749" cc="" mt=""/><pitch des="Foul" id="529" type="S" tfs="161324" tfs_zulu="2011-07-04T20:13:24Z" x="121.89" y="151.10" on_1b="453056" sv_id="110704_161323" start_speed="82.4" end_speed="74.7" sz_top="3.38" sz_bot="1.71" pfx_x="4.97" pfx_z="6.81" px="-0.455" pz="1.7" x0="0.823" y0="50.0" z0="5.696" vx0="-4.534" vy0="-120.687" vz0="-4.703" ax="7.166" ay="28.557" az="-22.295" break_y="23.7" break_angle="-14.7" break_length="6.8" pitch_type="CH" type_confidence=".896" zone="13" nasty="48" spin_dir="144.045" spin_rate="1467.089" cc="" mt=""/><pitch des="Foul" id="530" type="S" tfs="161354" tfs_zulu="2011-07-04T20:13:54Z" x="99.57" y="146.79" on_1b="453056" sv_id="110704_161353" start_speed="84.4" end_speed="77.6" sz_top="3.38" sz_bot="1.71" pfx_x="6.91" pfx_z="7.21" px="-0.525" pz="2.29" x0="0.782" y0="50.0" z0="5.807" vx0="-5.367" vy0="-123.605" vz0="-4.256" ax="10.636" ay="25.727" az="-20.992" break_y="23.8" break_angle="-23.7" break_length="6.3" pitch_type="CH" type_confidence=".893" zone="4" nasty="39" spin_dir="136.435" spin_rate="1811.349" cc="" mt=""/><pitch des="Ball In Dirt" id="531" type="B" tfs="161424" tfs_zulu="2011-07-04T20:14:24Z" x="115.88" y="198.59" on_1b="453056" sv_id="110704_161420" start_speed="82.3" end_speed="76.2" sz_top="3.27" sz_bot="1.48" pfx_x="-0.49" pfx_z="1.44" px="-2.449" pz="1.162" x0="0.605" y0="50.0" z0="5.736" vx0="-7.095" vy0="-120.415" vz0="-4.531" ax="-0.719" ay="24.43" az="-29.992" break_y="23.8" break_angle="3.7" break_length="8.6" pitch_type="CH" type_confidence=".613" zone="13" nasty="34" spin_dir="198.236" spin_rate="276.796" cc="" mt=""/><pitch des="Foul" id="532" type="S" tfs="161454" tfs_zulu="2011-07-04T20:14:54Z" x="89.27" y="143.33" on_1b="453056" sv_id="110704_161452" start_speed="93.9" end_speed="85.5" sz_top="3.38" sz_bot="1.71" pfx_x="10.76" pfx_z="3.45" px="-0.636" pz="2.337" x0="0.752" y0="50.0" z0="5.692" vx0="-7.5" vy0="-137.388" vz0="-4.298" ax="20.272" ay="34.452" az="-25.608" break_y="23.7" break_angle="-34.7" break_length="7.0" pitch_type="FT" type_confidence=".996" zone="4" nasty="53" spin_dir="107.947" spin_rate="2250.158" cc="Luis Perez is trying to tie up Dustin Pedroia with fastballs inside, where Dustin Pedroia hits .269." mt=""/><pitch des="Ball" id="533" type="B" tfs="161604" tfs_zulu="2011-07-04T20:16:04Z" x="57.51" y="107.07" on_1b="453056" sv_id="110704_161605" start_speed="92.6" end_speed="84.3" sz_top="3.38" sz_bot="1.55" pfx_x="10.54" pfx_z="3.43" px="1.211" pz="3.289" x0="1.062" y0="50.0" z0="5.719" vx0="-3.242" vy0="-135.788" vz0="-1.636" ax="19.389" ay="33.806" az="-25.788" break_y="23.7" break_angle="-35.4" break_length="7.1" pitch_type="FT" type_confidence=".999" zone="12" nasty="70" spin_dir="108.230" spin_rate="2181.022" cc="" mt=""/><pitch des="In play, no out" id="534" type="X" tfs="161645" tfs_zulu="2011-07-04T20:16:45Z" x="100.43" y="169.24" on_1b="453056" sv_id="110704_161625" start_speed="84.1" end_speed="77.2" sz_top="3.38" sz_bot="1.71" pfx_x="4.38" pfx_z="5.94" px="-0.033" pz="1.459" x0="0.787" y0="50.0" z0="5.637" vx0="-3.362" vy0="-123.169" vz0="-5.362" ax="6.664" ay="26.591" az="-23.055" break_y="23.8" break_angle="-13.9" break_length="6.6" pitch_type="CH" type_confidence=".895" zone="13" nasty="36" spin_dir="143.842" spin_rate="1330.352" cc="Luis Perez had Dustin Pedroia down 0-2 but could not put him away." mt=""/><runner id="453056" start="1B" end="2B" event="Single"/><runner id="456030" start="" end="1B" event="Single"/></atbat><atbat num="64" b="0" s="2" o="3" start_tfs="161744" start_tfs_zulu="2011-07-04T20:17:44Z" batter="408236" stand="L" b_height="6-2" pitcher="469802" p_throws="L" des="Adrian Gonzalez grounds into double play, first baseman Adam Lind to shortstop John McDonald to pitcher Luis Perez. Dustin Pedroia out at 2nd. " event="Grounded Into DP"><pitch des="Called Strike" id="539" type="S" tfs="161747" tfs_zulu="2011-07-04T20:17:47Z" x="121.89" y="145.92" on_1b="456030" on_2b="453056" sv_id="110704_161744" start_speed="93.7" end_speed="85.4" sz_top="3.86" sz_bot="1.82" pfx_x="13.14" pfx_z="5.44" px="-0.623" pz="2.063" x0="1.084" y0="50.0" z0="5.522" vx0="-9.185" vy0="-137.052" vz0="-5.256" ax="24.709" ay="33.528" az="-21.868" break_y="23.7" break_angle="-44.3" break_length="7.0" pitch_type="FT" type_confidence="1.000" zone="7" nasty="62" spin_dir="112.641" spin_rate="2834.002" cc="" mt=""/><pitch des="Foul" id="540" type="S" tfs="161809" tfs_zulu="2011-07-04T20:18:09Z" x="103.86" y="150.24" on_1b="456030" on_2b="453056" sv_id="110704_161806" start_speed="92.1" end_speed="84.9" sz_top="3.56" sz_bot="1.68" pfx_x="12.46" pfx_z="4.5" px="0.113" pz="2.419" x0="1.046" y0="50.0" z0="5.584" vx0="-6.788" vy0="-134.827" vz0="-3.948" ax="22.918" ay="29.42" az="-23.824" break_y="23.8" break_angle="-41.1" break_length="7.2" pitch_type="FT" type_confidence="1.000" zone="5" nasty="35" spin_dir="110.019" spin_rate="2624.631" cc="" mt=""/><pitch des="In play, out(s)" id="541" type="X" tfs="161850" tfs_zulu="2011-07-04T20:18:50Z" x="104.72" y="143.33" on_1b="456030" on_2b="453056" sv_id="110704_161834" start_speed="82.9" end_speed="76.4" sz_top="3.56" sz_bot="1.68" pfx_x="1.22" pfx_z="0.86" px="-0.016" pz="2.093" x0="0.954" y0="50.0" z0="5.756" vx0="-2.7" vy0="-121.48" vz0="-2.324" ax="1.813" ay="25.044" az="-30.818" break_y="23.8" break_angle="-2.4" break_length="8.6" pitch_type="CH" type_confidence=".895" zone="8" nasty="25" spin_dir="126.795" spin_rate="270.380" cc="Luis Perez is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="456030" start="1B" end="" event="Grounded Into DP"/><runner id="453056" start="2B" end="" event="Grounded Into DP"/></atbat></bottom></inning><inning num="8" away_team="tor" home_team="bos" next="Y"><top><atbat num="65" b="2" s="1" o="1" start_tfs="162119" start_tfs_zulu="2011-07-04T20:21:19Z" batter="501983" stand="L" b_height="6-0" pitcher="469686" p_throws="R" des="Travis Snider grounds out to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Ball" id="548" type="B" tfs="162122" tfs_zulu="2011-07-04T20:21:22Z" x="41.20" y="185.64" sv_id="110704_162122" start_speed="93.0" end_speed="84.4" sz_top="3.4" sz_bot="1.47" pfx_x="-3.5" pfx_z="8.85" px="2.714" pz="1.818" x0="-1.296" y0="50.0" z0="5.477" vx0="11.876" vy0="-135.703" vz0="-6.754" ax="-6.419" ay="34.233" az="-15.866" break_y="23.7" break_angle="11.4" break_length="4.0" pitch_type="FF" type_confidence=".871" zone="14" nasty="46" spin_dir="201.484" spin_rate="1873.662" cc="Alfredo Aceves went back to the four-seam fastball even though Travis Snider hit for a double last time up." mt=""/><pitch des="Ball" id="549" type="B" tfs="162148" tfs_zulu="2011-07-04T20:21:48Z" x="49.79" y="170.96" sv_id="110704_162147" start_speed="93.8" end_speed="84.8" sz_top="3.3" sz_bot="1.51" pfx_x="-5.85" pfx_z="10.16" px="1.752" pz="1.64" x0="-1.191" y0="50.0" z0="5.428" vx0="9.926" vy0="-137.037" vz0="-7.707" ax="-10.892" ay="35.972" az="-13.169" break_y="23.7" break_angle="28.8" break_length="3.8" pitch_type="FF" type_confidence=".906" zone="14" nasty="33" spin_dir="209.816" spin_rate="2319.029" cc="" mt=""/><pitch des="Foul" id="550" type="S" tfs="162224" tfs_zulu="2011-07-04T20:22:24Z" x="103.00" y="105.34" sv_id="110704_162213" start_speed="89.7" end_speed="82.9" sz_top="3.56" sz_bot="1.68" pfx_x="-1.63" pfx_z="9.6" px="0.107" pz="2.64" x0="-1.723" y0="50.0" z0="5.637" vx0="5.301" vy0="-131.326" vz0="-4.847" ax="-2.852" ay="26.699" az="-15.258" break_y="23.8" break_angle="6.4" break_length="3.8" pitch_type="FC" type_confidence=".799" zone="5" nasty="26" spin_dir="189.568" spin_rate="1895.115" cc="" mt=""/><pitch des="In play, out(s)" id="551" type="X" tfs="162240" tfs_zulu="2011-07-04T20:22:40Z" x="85.84" y="122.61" sv_id="110704_162239" start_speed="85.4" end_speed="77.8" sz_top="3.56" sz_bot="1.68" pfx_x="-10.09" pfx_z="9.11" px="-0.021" pz="2.141" x0="-1.666" y0="50.0" z0="5.503" vx0="7.249" vy0="-124.955" vz0="-4.613" ax="-15.763" ay="27.984" az="-17.871" break_y="23.7" break_angle="36.9" break_length="6.2" pitch_type="CH" type_confidence=".906" zone="8" nasty="25" spin_dir="227.779" spin_rate="2471.273" cc="" mt=""/></atbat><atbat num="66" b="0" s="3" o="2" start_tfs="162310" start_tfs_zulu="2011-07-04T20:23:10Z" batter="150040" stand="R" b_height="6-2" pitcher="469686" p_throws="R" des="Jose Molina strikes out swinging. " event="Strikeout"><pitch des="Swinging Strike" id="555" type="S" tfs="162323" tfs_zulu="2011-07-04T20:23:23Z" x="58.37" y="168.37" sv_id="110704_162322" start_speed="92.7" end_speed="84.7" sz_top="3.62" sz_bot="1.74" pfx_x="-9.35" pfx_z="9.05" px="1.367" pz="2.025" x0="-2.298" y0="50.0" z0="5.564" vx0="12.983" vy0="-135.147" vz0="-6.511" ax="-17.183" ay="31.178" az="-15.472" break_y="23.7" break_angle="40.1" break_length="4.9" pitch_type="FT" type_confidence=".908" zone="14" nasty="40" spin_dir="225.812" spin_rate="2572.362" cc="" mt=""/><pitch des="Called Strike" id="556" type="S" tfs="162343" tfs_zulu="2011-07-04T20:23:43Z" x="73.82" y="147.65" sv_id="110704_162342" start_speed="80.2" end_speed="73.3" sz_top="3.62" sz_bot="1.74" pfx_x="7.93" pfx_z="-6.91" px="0.319" pz="3.694" x0="-2.561" y0="50.0" z0="5.811" vx0="4.265" vy0="-117.443" vz0="4.159" ax="10.886" ay="25.836" az="-41.581" break_y="23.7" break_angle="-16.1" break_length="12.6" pitch_type="CU" type_confidence=".898" zone="12" nasty="37" spin_dir="49.168" spin_rate="1777.284" cc="" mt=""/><pitch des="Swinging Strike" id="557" type="S" tfs="162403" tfs_zulu="2011-07-04T20:24:03Z" x="90.99" y="151.10" sv_id="110704_162405" start_speed="79.7" end_speed="72.2" sz_top="3.62" sz_bot="1.74" pfx_x="7.91" pfx_z="-9.12" px="0.798" pz="2.336" x0="-2.44" y0="50.0" z0="5.754" vx0="5.037" vy0="-116.82" vz0="1.973" ax="10.551" ay="29.169" az="-44.267" break_y="23.7" break_angle="-14.9" break_length="13.9" pitch_type="CU" type_confidence=".898" zone="14" nasty="42" spin_dir="41.103" spin_rate="1993.094" cc="" mt=""/></atbat><atbat num="67" b="1" s="2" o="2" start_tfs="162427" start_tfs_zulu="2011-07-04T20:24:27Z" batter="150348" stand="R" b_height="5-9" pitcher="469686" p_throws="R" des="John McDonald singles on a ground ball to left fielder Darnell McDonald. " event="Single"><pitch des="Ball" id="561" type="B" tfs="162440" tfs_zulu="2011-07-04T20:24:40Z" x="54.94" y="175.28" sv_id="110704_162442" start_speed="79.3" end_speed="73.0" sz_top="3.24" sz_bot="1.59" pfx_x="7.32" pfx_z="-6.65" px="1.388" pz="1.921" x0="-2.489" y0="50.0" z0="5.777" vx0="6.663" vy0="-116.065" vz0="0.243" ax="9.808" ay="25.254" az="-41.015" break_y="23.8" break_angle="-15.0" break_length="12.9" pitch_type="CU" type_confidence=".898" zone="14" nasty="66" spin_dir="47.967" spin_rate="1650.534" cc="" mt=""/><pitch des="Called Strike" id="562" type="S" tfs="162459" tfs_zulu="2011-07-04T20:24:59Z" x="78.11" y="137.29" sv_id="110704_162458" start_speed="78.7" end_speed="71.6" sz_top="3.35" sz_bot="1.44" pfx_x="8.64" pfx_z="-6.59" px="0.739" pz="2.502" x0="-2.529" y0="50.0" z0="5.862" vx0="4.839" vy0="-115.311" vz0="1.494" ax="11.303" ay="27.07" az="-40.726" break_y="23.7" break_angle="-16.9" break_length="13.2" pitch_type="CU" type_confidence=".898" zone="12" nasty="36" spin_dir="52.888" spin_rate="1783.264" cc="" mt=""/><pitch des="Called Strike" id="563" type="S" tfs="162516" tfs_zulu="2011-07-04T20:25:16Z" x="82.40" y="149.38" sv_id="110704_162517" start_speed="91.1" end_speed="84.6" sz_top="3.24" sz_bot="1.45" pfx_x="-3.91" pfx_z="7.08" px="0.76" pz="2.164" x0="-2.564" y0="50.0" z0="5.56" vx0="10.111" vy0="-133.131" vz0="-5.307" ax="-7.082" ay="26.18" az="-19.272" break_y="23.8" break_angle="14.3" break_length="4.7" pitch_type="FF" type_confidence=".892" zone="14" nasty="45" spin_dir="208.761" spin_rate="1603.868" cc="" mt=""/><pitch des="In play, no out" id="564" type="X" tfs="162550" tfs_zulu="2011-07-04T20:25:50Z" x="86.70" y="146.79" sv_id="110704_162542" start_speed="79.9" end_speed="73.2" sz_top="3.24" sz_bot="1.59" pfx_x="7.13" pfx_z="-4.96" px="0.382" pz="2.442" x0="-2.5" y0="50.0" z0="5.762" vx0="4.491" vy0="-117.026" vz0="0.862" ax="9.706" ay="25.875" az="-38.854" break_y="23.8" break_angle="-15.3" break_length="12.0" pitch_type="CU" type_confidence=".898" zone="6" nasty="22" spin_dir="55.462" spin_rate="1460.696" cc="" mt=""/><runner id="150348" start="" end="1B" event="Single"/></atbat><atbat num="68" b="1" s="0" o="2" start_tfs="162600" start_tfs_zulu="2011-07-04T20:26:00Z" batter="434658" stand="R" b_height="5-10" pitcher="469686" p_throws="R" des="Rajai Davis doubles (15) on a fly ball to center fielder Jacoby Ellsbury. John McDonald scores. Rajai Davis to 3rd on the throw. " event="Double" score="T" home_team_runs="4" away_team_runs="9"><pitch des="Ball" id="568" type="B" tfs="162621" tfs_zulu="2011-07-04T20:26:21Z" x="60.09" y="180.46" on_1b="150348" sv_id="110704_162622" start_speed="92.1" end_speed="83.8" sz_top="3.39" sz_bot="1.51" pfx_x="-5.02" pfx_z="9.82" px="1.785" pz="1.75" x0="-2.226" y0="50.0" z0="5.434" vx0="12.295" vy0="-134.407" vz0="-6.987" ax="-9.056" ay="33.04" az="-14.394" break_y="23.7" break_angle="20.8" break_length="3.9" pitch_type="FF" type_confidence=".820" zone="14" nasty="48" spin_dir="206.990" spin_rate="2153.763" cc="Alfredo Aceves went back to the four-seam fastball even though Rajai Davis hit for a double last time up." mt=""/><pitch des="In play, run(s)" id="569" type="X" tfs="162745" tfs_zulu="2011-07-04T20:27:45Z" x="94.42" y="139.02" on_1b="150348" sv_id="110704_162644" start_speed="91.2" end_speed="82.9" sz_top="3.39" sz_bot="1.51" pfx_x="-6.13" pfx_z="9.29" px="0.524" pz="3.026" x0="-2.416" y0="50.0" z0="5.493" vx0="9.779" vy0="-133.289" vz0="-3.485" ax="-10.897" ay="31.799" az="-15.587" break_y="23.7" break_angle="27.7" break_length="4.2" pitch_type="FF" type_confidence=".849" zone="3" nasty="47" spin_dir="213.302" spin_rate="2160.161" cc="" mt=""/><runner id="150348" start="1B" end="" event="Double" score="T" rbi="T" earned="T"/><runner id="434658" start="" end="3B" event="Double"/></atbat><action b="0" s="0" o="2" des="Pitcher Change: Franklin Morales replaces Alfredo Aceves. " event="Pitching Substitution" tfs="162826" tfs_zulu="2011-07-04T20:28:26Z" player="462985" pitch="2"/><action b="0" s="0" o="2" des="Coaching visit to mound. " event="Game Advisory" tfs="162802" tfs_zulu="2011-07-04T20:28:02Z" player="519346" pitch="2"/><atbat num="69" b="4" s="1" o="2" start_tfs="163033" start_tfs_zulu="2011-07-04T20:30:33Z" batter="519346" stand="L" b_height="6-1" pitcher="462985" p_throws="L" des="Eric Thames walks. " event="Walk"><pitch des="Called Strike" id="580" type="S" tfs="163056" tfs_zulu="2011-07-04T20:30:56Z" x="122.75" y="145.92" on_3b="434658" sv_id="110704_163055" start_speed="79.3" end_speed="73.3" sz_top="3.21" sz_bot="1.39" pfx_x="-2.56" pfx_z="1.52" px="-0.936" pz="3.098" x0="2.126" y0="50.0" z0="6.038" vx0="-6.255" vy0="-116.21" vz0="-0.185" ax="-3.483" ay="22.421" az="-30.026" break_y="23.8" break_angle="8.7" break_length="9.1" pitch_type="SL" type_confidence=".961" zone="11" nasty="89" spin_dir="238.337" spin_rate="510.862" cc="" mt=""/><pitch des="Ball" id="581" type="B" tfs="163117" tfs_zulu="2011-07-04T20:31:17Z" x="153.65" y="160.60" on_3b="434658" sv_id="110704_163119" start_speed="77.7" end_speed="71.9" sz_top="3.38" sz_bot="1.5" pfx_x="-2.11" pfx_z="-2.2" px="-1.759" pz="2.027" x0="2.107" y0="50.0" z0="5.898" vx0="-8.035" vy0="-113.607" vz0="-0.848" ax="-2.744" ay="21.997" az="-34.957" break_y="23.8" break_angle="6.6" break_length="11.0" pitch_type="SL" type_confidence=".843" zone="13" nasty="20" spin_dir="315.405" spin_rate="499.094" cc="" mt=""/><pitch des="Ball" id="582" type="B" tfs="163148" tfs_zulu="2011-07-04T20:31:48Z" x="116.74" y="181.33" on_3b="434658" sv_id="110704_163149" start_speed="83.5" end_speed="77.7" sz_top="3.38" sz_bot="1.5" pfx_x="8.9" pfx_z="2.52" px="-0.905" pz="1.769" x0="1.608" y0="50.0" z0="5.98" vx0="-8.871" vy0="-122.101" vz0="-4.329" ax="13.528" ay="22.622" az="-28.268" break_y="23.8" break_angle="-22.5" break_length="8.4" pitch_type="CH" type_confidence=".934" zone="13" nasty="57" spin_dir="106.106" spin_rate="1673.033" cc="" mt=""/><pitch des="Ball" id="583" type="B" tfs="163213" tfs_zulu="2011-07-04T20:32:13Z" x="72.10" y="88.07" on_3b="434658" sv_id="110704_163214" start_speed="94.9" end_speed="86.0" sz_top="3.38" sz_bot="1.5" pfx_x="5.62" pfx_z="10.46" px="0.242" pz="4.482" x0="1.844" y0="50.0" z0="6.063" vx0="-6.353" vy0="-138.96" vz0="-2.118" ax="10.83" ay="35.539" az="-11.95" break_y="23.7" break_angle="-36.4" break_length="3.3" pitch_type="FF" type_confidence=".941" zone="12" nasty="29" spin_dir="151.832" spin_rate="2395.128" cc="Franklin Morales went back to the four-seam fastball even though Eric Thames hit for a single last time up." mt=""/><pitch des="Ball" id="584" type="B" tfs="163240" tfs_zulu="2011-07-04T20:32:40Z" x="134.76" y="133.84" on_3b="434658" sv_id="110704_163237" start_speed="94.8" end_speed="87.1" sz_top="3.38" sz_bot="1.5" pfx_x="8.15" pfx_z="12.19" px="-1.211" pz="2.049" x0="1.878" y0="50.0" z0="5.792" vx0="-11.328" vy0="-138.248" vz0="-8.67" ax="15.792" ay="30.377" az="-8.472" break_y="23.8" break_angle="-52.2" break_length="3.5" pitch_type="FT" type_confidence=".815" zone="13" nasty="60" spin_dir="146.327" spin_rate="2988.821" cc="Franklin Morales is getting a generous strike zone this inning from home plate ump Jerry Layne." mt=""/><runner id="519346" start="" end="1B" event="Walk"/></atbat><action b="0" s="0" o="3" des="With Jose Bautista batting, Franklin Morales picks off Eric Thames at 1st on throw to Adrian Gonzalez. " event="Pickoff 1B" tfs="163356" tfs_zulu="2011-07-04T20:33:56Z" player="519346" pitch="0"/><atbat num="70" b="0" s="0" o="3" start_tfs="163331" start_tfs_zulu="2011-07-04T20:33:31Z" batter="430832" stand="R" b_height="6-0" pitcher="462985" p_throws="L" des="With Jose Bautista batting, Franklin Morales picks off Eric Thames at 1st on throw to Adrian Gonzalez. " event="Runner Out"><po des="Pickoff Attempt 1B"/><po des="Pickoff 1B"/><runner id="519346" start="1B" end="" event="Pickoff 1B"/><runner id="434658" start="3B" end="" event="Pickoff 1B"/></atbat></top><bottom><action b="0" s="0" o="0" des="Pitcher Change: Jason Frasor replaces Luis Perez. " event="Pitching Substitution" tfs="163528" tfs_zulu="2011-07-04T20:35:28Z" player="430630" pitch="0"/><atbat num="71" b="2" s="2" o="0" start_tfs="163617" start_tfs_zulu="2011-07-04T20:36:17Z" batter="501605" stand="R" b_height="5-11" pitcher="430630" p_throws="R" des="Yamaico Navarro singles on a ground ball to center fielder Rajai Davis. " event="Single"><pitch des="Foul" id="597" type="S" tfs="163625" tfs_zulu="2011-07-04T20:36:25Z" x="98.71" y="135.56" sv_id="110704_163626" start_speed="93.4" end_speed="84.8" sz_top="3.34" sz_bot="1.69" pfx_x="-6.67" pfx_z="9.05" px="0.21" pz="2.509" x0="-2.028" y0="50.0" z0="5.684" vx0="8.316" vy0="-136.595" vz0="-5.666" ax="-12.423" ay="34.128" az="-15.249" break_y="23.7" break_angle="32.0" break_length="4.3" pitch_type="FF" type_confidence=".844" zone="5" nasty="42" spin_dir="216.278" spin_rate="2229.880" cc="" mt=""/><pitch des="Ball" id="598" type="B" tfs="163651" tfs_zulu="2011-07-04T20:36:51Z" x="61.80" y="176.14" sv_id="110704_163653" start_speed="84.1" end_speed="78.8" sz_top="3.34" sz_bot="1.69" pfx_x="6.07" pfx_z="2.21" px="1.245" pz="1.56" x0="-2.013" y0="50.0" z0="5.586" vx0="6.028" vy0="-123.119" vz0="-3.952" ax="9.406" ay="22.12" az="-28.679" break_y="23.9" break_angle="-19.4" break_length="8.1" pitch_type="SL" type_confidence=".915" zone="14" nasty="60" spin_dir="110.384" spin_rate="1182.403" cc="" mt=""/><pitch des="Foul" id="599" type="S" tfs="163712" tfs_zulu="2011-07-04T20:37:12Z" x="91.85" y="135.56" sv_id="110704_163713" start_speed="93.9" end_speed="87.0" sz_top="3.34" sz_bot="1.69" pfx_x="-3.91" pfx_z="9.67" px="0.59" pz="2.854" x0="-1.783" y0="50.0" z0="5.748" vx0="7.842" vy0="-137.337" vz0="-5.399" ax="-7.533" ay="27.904" az="-13.473" break_y="23.8" break_angle="22.3" break_length="3.3" pitch_type="FF" type_confidence=".928" zone="3" nasty="44" spin_dir="201.939" spin_rate="2129.761" cc="" mt=""/><pitch des="Ball" id="600" type="B" tfs="163746" tfs_zulu="2011-07-04T20:37:46Z" x="66.09" y="175.28" sv_id="110704_163743" start_speed="86.7" end_speed="80.4" sz_top="3.36" sz_bot="1.76" pfx_x="-6.09" pfx_z="0.32" px="0.704" pz="1.738" x0="-1.679" y0="50.0" z0="5.618" vx0="7.958" vy0="-126.836" vz0="-3.427" ax="-9.947" ay="25.33" az="-31.571" break_y="23.8" break_angle="14.8" break_length="8.3" pitch_type="CH" type_confidence=".918" zone="14" nasty="57" spin_dir="266.531" spin_rate="1139.852" cc="" mt=""/><pitch des="In play, no out" id="601" type="X" tfs="163813" tfs_zulu="2011-07-04T20:38:13Z" x="92.70" y="124.34" sv_id="110704_163808" start_speed="93.6" end_speed="85.0" sz_top="3.34" sz_bot="1.69" pfx_x="-5.4" pfx_z="8.28" px="0.07" pz="3.093" x0="-1.875" y0="50.0" z0="5.766" vx0="7.109" vy0="-137.053" vz0="-4.101" ax="-10.109" ay="34.584" az="-16.589" break_y="23.7" break_angle="25.4" break_length="4.2" pitch_type="FF" type_confidence=".887" zone="2" nasty="35" spin_dir="212.968" spin_rate="1966.419" cc="" mt=""/><runner id="501605" start="" end="1B" event="Single"/></atbat><atbat num="72" b="0" s="0" o="0" start_tfs="163900" start_tfs_zulu="2011-07-04T20:39:00Z" batter="120074" stand="L" b_height="6-4" pitcher="430630" p_throws="R" des="David Ortiz hits a ground-rule double (21) on a fly ball down the left-field line. Yamaico Navarro to 3rd. " event="Double"><pitch des="In play, no out" id="605" type="X" tfs="163905" tfs_zulu="2011-07-04T20:39:05Z" x="112.45" y="142.47" on_1b="501605" sv_id="110704_163856" start_speed="94.6" end_speed="85.5" sz_top="3.73" sz_bot="1.78" pfx_x="-4.4" pfx_z="9.78" px="-1.087" pz="2.395" x0="-2.018" y0="50.0" z0="5.612" vx0="4.071" vy0="-138.555" vz0="-6.24" ax="-8.381" ay="36.85" az="-13.471" break_y="23.7" break_angle="25.9" break_length="3.6" pitch_type="FF" type_confidence=".899" zone="13" nasty="70" spin_dir="204.136" spin_rate="2145.987" cc="" mt=""/><runner id="501605" start="1B" end="3B" event="Double"/><runner id="120074" start="" end="2B" event="Double"/></atbat><atbat num="73" b="2" s="3" o="1" start_tfs="163937" start_tfs_zulu="2011-07-04T20:39:37Z" batter="150021" stand="R" b_height="5-11" pitcher="430630" p_throws="R" des="Darnell McDonald strikes out swinging. " event="Strikeout"><pitch des="Swinging Strike" id="610" type="S" tfs="163959" tfs_zulu="2011-07-04T20:39:59Z" x="90.99" y="140.74" on_2b="120074" on_3b="501605" sv_id="110704_163958" start_speed="86.1" end_speed="78.5" sz_top="3.37" sz_bot="1.59" pfx_x="0.78" pfx_z="1.23" px="1.016" pz="2.122" x0="-2.111" y0="50.0" z0="5.578" vx0="7.472" vy0="-126.006" vz0="-2.428" ax="1.233" ay="29.777" az="-30.154" break_y="23.7" break_angle="-5.3" break_length="8.0" pitch_type="SL" type_confidence=".870" zone="14" nasty="79" spin_dir="148.602" spin_rate="272.478" cc="" mt=""/><pitch des="Called Strike" id="611" type="S" tfs="164030" tfs_zulu="2011-07-04T20:40:30Z" x="108.15" y="150.24" on_2b="120074" on_3b="501605" sv_id="110704_164020" start_speed="94.5" end_speed="85.7" sz_top="3.37" sz_bot="1.59" pfx_x="-2.73" pfx_z="11.24" px="0.531" pz="2.021" x0="-1.743" y0="50.0" z0="5.568" vx0="7.118" vy0="-138.275" vz0="-7.632" ax="-5.184" ay="35.986" az="-10.725" break_y="23.7" break_angle="14.9" break_length="2.8" pitch_type="FF" type_confidence=".930" zone="9" nasty="44" spin_dir="193.586" spin_rate="2315.226" cc="" mt=""/><pitch des="Ball In Dirt" id="612" type="B" tfs="164044" tfs_zulu="2011-07-04T20:40:44Z" x="53.22" y="190.82" on_2b="120074" on_3b="501605" sv_id="110704_164044" start_speed="94.0" end_speed="85.7" sz_top="3.37" sz_bot="1.59" pfx_x="-4.92" pfx_z="11.38" px="1.679" pz="2.14" x0="-1.624" y0="50.0" z0="5.683" vx0="10.633" vy0="-137.22" vz0="-7.588" ax="-9.293" ay="33.226" az="-10.627" break_y="23.7" break_angle="28.6" break_length="3.1" pitch_type="FF" type_confidence=".923" zone="14" nasty="25" spin_dir="203.329" spin_rate="2480.938" cc="" mt=""/><pitch des="Ball" id="613" type="B" tfs="164120" tfs_zulu="2011-07-04T20:41:20Z" x="56.65" y="192.55" on_2b="120074" on_3b="501605" sv_id="110704_164120" start_speed="86.9" end_speed="80.7" sz_top="3.37" sz_bot="1.59" pfx_x="2.6" pfx_z="1.76" px="2.363" pz="1.364" x0="-1.863" y0="50.0" z0="5.506" vx0="9.751" vy0="-127.044" vz0="-4.561" ax="4.246" ay="26.088" az="-29.22" break_y="23.8" break_angle="-11.3" break_length="7.6" pitch_type="SL" type_confidence=".884" zone="14" nasty="32" spin_dir="124.828" spin_rate="590.674" cc="" mt=""/><pitch des="Swinging Strike" id="614" type="S" tfs="164145" tfs_zulu="2011-07-04T20:41:45Z" x="99.57" y="147.65" on_2b="120074" on_3b="501605" sv_id="110704_164146" start_speed="83.2" end_speed="76.1" sz_top="3.37" sz_bot="1.59" pfx_x="4.29" pfx_z="0.97" px="-0.147" pz="2.143" x0="-2.186" y0="50.0" z0="5.545" vx0="3.55" vy0="-122.031" vz0="-1.733" ax="6.36" ay="27.634" az="-30.658" break_y="23.7" break_angle="-12.9" break_length="8.7" pitch_type="SL" type_confidence=".914" zone="8" nasty="24" spin_dir="103.407" spin_rate="777.301" cc="" mt=""/></atbat><atbat num="74" b="2" s="0" o="1" start_tfs="164207" start_tfs_zulu="2011-07-04T20:42:07Z" batter="457454" stand="L" b_height="6-4" pitcher="430630" p_throws="R" des="Jarrod Saltalamacchia triples (2) on a fly ball to left fielder Eric Thames. Yamaico Navarro scores. David Ortiz scores. " event="Triple" score="T" home_team_runs="6" away_team_runs="9"><pitch des="Ball" id="618" type="B" tfs="164241" tfs_zulu="2011-07-04T20:42:41Z" x="131.33" y="142.47" on_2b="120074" on_3b="501605" sv_id="110704_164242" start_speed="83.5" end_speed="77.9" sz_top="3.46" sz_bot="1.68" pfx_x="5.27" pfx_z="3.41" px="-1.584" pz="2.712" x0="-2.577" y0="50.0" z0="5.588" vx0="0.747" vy0="-122.459" vz0="-1.451" ax="8.084" ay="21.765" az="-26.872" break_y="23.9" break_angle="-16.8" break_length="7.5" pitch_type="SL" type_confidence=".914" zone="11" nasty="48" spin_dir="123.260" spin_rate="1145.327" cc="" mt=""/><pitch des="Ball" id="619" type="B" tfs="164305" tfs_zulu="2011-07-04T20:43:05Z" x="89.27" y="177.01" on_2b="120074" on_3b="501605" sv_id="110704_164302" start_speed="94.4" end_speed="85.9" sz_top="3.46" sz_bot="1.78" pfx_x="-4.42" pfx_z="12.24" px="0.125" pz="1.698" x0="-1.819" y0="50.0" z0="5.553" vx0="6.823" vy0="-138.006" vz0="-8.826" ax="-8.417" ay="34.285" az="-8.787" break_y="23.7" break_angle="31.7" break_length="2.8" pitch_type="FF" type_confidence=".923" zone="14" nasty="40" spin_dir="199.792" spin_rate="2612.928" cc="Jarrod Saltalamacchia may sit on the two-seam fastball here, since Jason Frasor would rather go after him than on-deck hitter David Ortiz." mt=""/><pitch des="In play, run(s)" id="620" type="X" tfs="164339" tfs_zulu="2011-07-04T20:43:39Z" x="99.57" y="146.79" on_2b="120074" on_3b="501605" sv_id="110704_164328" start_speed="94.2" end_speed="85.5" sz_top="3.46" sz_bot="1.68" pfx_x="-3.41" pfx_z="10.74" px="-0.036" pz="1.95" x0="-2.057" y0="50.0" z0="5.494" vx0="6.652" vy0="-137.754" vz0="-7.397" ax="-6.445" ay="35.042" az="-11.778" break_y="23.7" break_angle="19.4" break_length="3.1" pitch_type="FF" type_confidence=".923" zone="8" nasty="32" spin_dir="197.535" spin_rate="2252.735" cc="Jarrod Saltalamacchia may sit on the two-seam fastball here, since Jason Frasor would rather go after him than on-deck hitter David Ortiz." mt=""/><runner id="120074" start="2B" end="" event="Triple" score="T" rbi="T" earned="T"/><runner id="501605" start="3B" end="" event="Triple" score="T" rbi="T" earned="T"/><runner id="457454" start="" end="3B" event="Triple"/></atbat><atbat num="75" b="1" s="1" o="2" start_tfs="164413" start_tfs_zulu="2011-07-04T20:44:13Z" batter="136770" stand="L" b_height="6-1" pitcher="430630" p_throws="R" des="J. D. Drew out on a sacrifice fly to left fielder Eric Thames. Jarrod Saltalamacchia scores. " event="Sac Fly" score="T" home_team_runs="7" away_team_runs="9"><pitch des="Foul" id="628" type="S" tfs="164446" tfs_zulu="2011-07-04T20:44:46Z" x="107.30" y="126.93" on_3b="457454" sv_id="110704_164442" start_speed="94.6" end_speed="84.9" sz_top="3.51" sz_bot="1.74" pfx_x="-3.24" pfx_z="10.61" px="0.178" pz="3.003" x0="-1.928" y0="50.0" z0="5.653" vx0="6.82" vy0="-138.458" vz0="-4.927" ax="-6.109" ay="38.847" az="-12.072" break_y="23.6" break_angle="17.5" break_length="3.1" pitch_type="FF" type_confidence=".926" zone="2" nasty="48" spin_dir="196.902" spin_rate="2201.433" cc="Jason Frasor went back to the four-seam fastball even though J.D. Drew hit for a single last time up." mt=""/><pitch des="Ball" id="629" type="B" tfs="164521" tfs_zulu="2011-07-04T20:45:21Z" x="69.53" y="112.25" on_3b="457454" sv_id="110704_164510" start_speed="94.1" end_speed="86.2" sz_top="3.51" sz_bot="1.74" pfx_x="-5.13" pfx_z="9.12" px="1.429" pz="3.132" x0="-1.78" y0="50.0" z0="5.692" vx0="10.506" vy0="-137.546" vz0="-4.233" ax="-9.788" ay="31.51" az="-14.682" break_y="23.8" break_angle="25.4" break_length="3.7" pitch_type="FF" type_confidence=".925" zone="12" nasty="29" spin_dir="209.229" spin_rate="2114.198" cc="" mt=""/><po des="Pickoff Attempt 3B"/><pitch des="In play, run(s)" id="631" type="X" tfs="164556" tfs_zulu="2011-07-04T20:45:56Z" x="91.85" y="140.74" on_3b="457454" sv_id="110704_164540" start_speed="94.4" end_speed="85.9" sz_top="3.51" sz_bot="1.74" pfx_x="-3.67" pfx_z="11.74" px="-0.836" pz="3.497" x0="-1.878" y0="50.0" z0="5.795" vx0="4.125" vy0="-138.355" vz0="-4.48" ax="-7.031" ay="34.165" az="-9.606" break_y="23.7" break_angle="29.4" break_length="2.6" pitch_type="FF" type_confidence=".933" zone="11" nasty="64" spin_dir="197.303" spin_rate="2478.654" cc="" mt=""/><runner id="457454" start="3B" end="" event="Pickoff Attempt 3B" score="T" rbi="T" earned="T"/></atbat><atbat num="76" b="2" s="3" o="3" start_tfs="164622" start_tfs_zulu="2011-07-04T20:46:22Z" batter="340192" stand="R" b_height="5-10" pitcher="430630" p_throws="R" des="Marco Scutaro called out on strikes. " event="Strikeout"><pitch des="Ball" id="637" type="B" tfs="164641" tfs_zulu="2011-07-04T20:46:41Z" x="110.73" y="83.76" sv_id="110704_164643" start_speed="83.5" end_speed="76.6" sz_top="3.31" sz_bot="1.56" pfx_x="4.27" pfx_z="1.79" px="-0.131" pz="4.077" x0="-2.291" y0="50.0" z0="5.842" vx0="3.868" vy0="-122.326" vz0="1.857" ax="6.429" ay="25.722" az="-29.412" break_y="23.8" break_angle="-13.9" break_length="8.1" pitch_type="SL" type_confidence=".914" zone="11" nasty="49" spin_dir="113.250" spin_rate="829.865" cc="" mt=""/><pitch des="Foul" id="638" type="S" tfs="164701" tfs_zulu="2011-07-04T20:47:01Z" x="101.29" y="198.59" sv_id="110704_164659" start_speed="84.5" end_speed="77.3" sz_top="3.31" sz_bot="1.56" pfx_x="2.29" pfx_z="0.74" px="0.336" pz="1.467" x0="-2.156" y0="50.0" z0="5.56" vx0="5.323" vy0="-123.755" vz0="-3.543" ax="3.497" ay="28.682" az="-30.972" break_y="23.7" break_angle="-8.2" break_length="8.6" pitch_type="SL" type_confidence=".911" zone="14" nasty="42" spin_dir="108.969" spin_rate="433.495" cc="" mt=""/><pitch des="Ball" id="639" type="B" tfs="164725" tfs_zulu="2011-07-04T20:47:25Z" x="103.00" y="200.32" sv_id="110704_164726" start_speed="87.9" end_speed="80.6" sz_top="3.31" sz_bot="1.56" pfx_x="-6.48" pfx_z="-0.51" px="-0.287" pz="0.775" x0="-1.799" y0="50.0" z0="5.565" vx0="5.94" vy0="-128.688" vz0="-5.577" ax="-10.713" ay="30.144" az="-32.952" break_y="23.8" break_angle="15.4" break_length="8.7" pitch_type="CH" type_confidence=".891" zone="13" nasty="24" spin_dir="274.154" spin_rate="1210.926" cc="" mt=""/><pitch des="Called Strike" id="640" type="S" tfs="164956" tfs_zulu="2011-07-04T20:49:56Z" x="111.59" y="145.92" sv_id="110704_164753" start_speed="93.1" end_speed="84.5" sz_top="3.39" sz_bot="1.64" pfx_x="-0.52" pfx_z="10.3" px="0.325" pz="3.412" x0="-1.923" y0="50.0" z0="5.728" vx0="6.193" vy0="-136.365" vz0="-3.763" ax="-0.972" ay="34.482" az="-13.009" break_y="23.7" break_angle="-2.3" break_length="3.1" pitch_type="FF" type_confidence=".928" zone="12" nasty="49" spin_dir="182.902" spin_rate="2041.578" cc="Jason Frasor went back to the four-seam fastball even though Marco Scutaro hit for a single last time up." mt=""/><pitch des="Called Strike" id="641" type="S" tfs="165032" tfs_zulu="2011-07-04T20:50:32Z" x="92.70" y="139.88" sv_id="110704_164816" start_speed="93.3" end_speed="85.1" sz_top="3.31" sz_bot="1.56" pfx_x="-3.53" pfx_z="11.2" px="0.154" pz="2.899" x0="-1.987" y0="50.0" z0="5.609" vx0="6.983" vy0="-136.589" vz0="-5.206" ax="-6.613" ay="32.691" az="-11.143" break_y="23.7" break_angle="21.9" break_length="2.9" pitch_type="FF" type_confidence=".926" zone="2" nasty="33" spin_dir="197.454" spin_rate="2341.640" cc="Jason Frasor is getting squeezed this inning by home plate ump Jerry Layne." mt=""/></atbat></bottom></inning><inning num="9" away_team="tor" home_team="bos" next="N"><top><action b="0" s="0" o="0" des="Pitcher Change: Matt Albers replaces Franklin Morales. " event="Pitching Substitution" tfs="165103" tfs_zulu="2011-07-04T20:51:03Z" player="458006" pitch="5"/><atbat num="77" b="1" s="2" o="1" start_tfs="165055" start_tfs_zulu="2011-07-04T20:50:55Z" batter="430832" stand="R" b_height="6-0" pitcher="458006" p_throws="R" des="Jose Bautista grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="Foul" id="648" type="S" tfs="165116" tfs_zulu="2011-07-04T20:51:16Z" x="98.71" y="141.61" sv_id="110704_165115" start_speed="88.6" end_speed="82.2" sz_top="3.29" sz_bot="1.51" pfx_x="1.26" pfx_z="3.53" px="-0.106" pz="2.715" x0="-1.681" y0="50.0" z0="5.492" vx0="3.626" vy0="-129.899" vz0="-2.068" ax="2.162" ay="25.908" az="-26.044" break_y="23.8" break_angle="-6.1" break_length="6.3" pitch_type="SL" type_confidence=".930" zone="2" nasty="54" spin_dir="160.574" spin_rate="725.965" cc="" mt=""/><pitch des="Called Strike" id="649" type="S" tfs="165137" tfs_zulu="2011-07-04T20:51:37Z" x="74.68" y="126.93" sv_id="110704_165137" start_speed="94.2" end_speed="86.4" sz_top="3.47" sz_bot="1.67" pfx_x="-6.83" pfx_z="6.09" px="0.539" pz="2.205" x0="-1.484" y0="50.0" z0="5.361" vx0="7.901" vy0="-137.856" vz0="-4.811" ax="-13.079" ay="31.957" az="-20.441" break_y="23.8" break_angle="27.7" break_length="5.2" pitch_type="SI" type_confidence=".760" zone="9" nasty="48" spin_dir="228.104" spin_rate="1849.104" cc="" mt=""/><pitch des="Ball" id="650" type="B" tfs="165157" tfs_zulu="2011-07-04T20:51:57Z" x="121.89" y="87.21" sv_id="110704_165159" start_speed="93.9" end_speed="86.5" sz_top="3.44" sz_bot="1.61" pfx_x="-5.29" pfx_z="7.27" px="-0.455" pz="4.414" x0="-1.439" y0="50.0" z0="5.533" vx0="4.549" vy0="-137.715" vz0="0.278" ax="-10.189" ay="29.9" az="-18.1" break_y="23.8" break_angle="27.0" break_length="4.3" pitch_type="SI" type_confidence=".633" zone="11" nasty="40" spin_dir="215.902" spin_rate="1830.407" cc="" mt=""/><pitch des="In play, out(s)" id="651" type="X" tfs="165235" tfs_zulu="2011-07-04T20:52:35Z" x="105.58" y="117.43" sv_id="110704_165223" start_speed="95.2" end_speed="87.6" sz_top="3.29" sz_bot="1.51" pfx_x="-8.63" pfx_z="6.71" px="0.483" pz="2.029" x0="-1.421" y0="50.0" z0="5.252" vx0="8.321" vy0="-139.289" vz0="-5.423" ax="-16.96" ay="31.219" az="-18.919" break_y="23.8" break_angle="37.0" break_length="5.2" pitch_type="SI" type_confidence=".887" zone="9" nasty="48" spin_dir="231.990" spin_rate="2241.990" cc="" mt=""/></atbat><atbat num="78" b="4" s="0" o="1" start_tfs="165247" start_tfs_zulu="2011-07-04T20:52:47Z" batter="452252" stand="L" b_height="6-1" pitcher="458006" p_throws="R" des="Adam Lind walks. " event="Walk"><pitch des="Ball" id="655" type="B" tfs="165304" tfs_zulu="2011-07-04T20:53:04Z" x="139.06" y="138.15" sv_id="110704_165306" start_speed="86.4" end_speed="79.5" sz_top="3.46" sz_bot="1.73" pfx_x="1.31" pfx_z="3.2" px="-1.699" pz="2.493" x0="-1.932" y0="50.0" z0="5.498" vx0="0.156" vy0="-126.732" vz0="-2.109" ax="2.124" ay="27.146" az="-26.925" break_y="23.8" break_angle="-4.5" break_length="6.9" pitch_type="SL" type_confidence=".908" zone="13" nasty="46" spin_dir="157.971" spin_rate="648.217" cc="" mt=""/><pitch des="Ball" id="656" type="B" tfs="165324" tfs_zulu="2011-07-04T20:53:24Z" x="133.05" y="148.51" sv_id="110704_165325" start_speed="88.1" end_speed="79.6" sz_top="3.34" sz_bot="1.73" pfx_x="0.03" pfx_z="1.69" px="-1.667" pz="2.766" x0="-1.97" y0="50.0" z0="5.395" vx0="0.756" vy0="-129.144" vz0="-0.829" ax="0.045" ay="32.846" az="-29.32" break_y="23.7" break_angle="-.4" break_length="7.3" pitch_type="SL" type_confidence=".921" zone="11" nasty="17" spin_dir="179.099" spin_rate="320.653" cc="" mt=""/><pitch des="Ball" id="657" type="B" tfs="165346" tfs_zulu="2011-07-04T20:53:46Z" x="132.19" y="170.10" sv_id="110704_165347" start_speed="93.5" end_speed="85.4" sz_top="3.38" sz_bot="1.73" pfx_x="-8.85" pfx_z="6.56" px="-1.522" pz="1.704" x0="-1.773" y0="50.0" z0="5.093" vx0="3.766" vy0="-136.901" vz0="-5.448" ax="-16.635" ay="33.04" az="-19.777" break_y="23.7" break_angle="36.8" break_length="5.7" pitch_type="SI" type_confidence=".737" zone="13" nasty="40" spin_dir="233.304" spin_rate="2198.549" cc="" mt=""/><pitch des="Ball" id="658" type="B" tfs="165408" tfs_zulu="2011-07-04T20:54:08Z" x="133.05" y="151.10" sv_id="110704_165409" start_speed="94.3" end_speed="85.6" sz_top="3.46" sz_bot="1.73" pfx_x="-10.12" pfx_z="3.87" px="-1.383" pz="2.026" x0="-1.721" y0="50.0" z0="5.103" vx0="4.461" vy0="-138.188" vz0="-3.759" ax="-19.213" ay="36.144" az="-24.747" break_y="23.7" break_angle="35.1" break_length="6.8" pitch_type="SI" type_confidence=".907" zone="13" nasty="35" spin_dir="248.865" spin_rate="2162.560" cc="" mt=""/><runner id="452252" start="" end="1B" event="Walk"/></atbat><atbat num="79" b="1" s="2" o="2" start_tfs="165441" start_tfs_zulu="2011-07-04T20:54:41Z" batter="429665" stand="R" b_height="6-2" pitcher="458006" p_throws="R" des="Edwin Encarnacion lines out to left fielder Darnell McDonald. " event="Lineout"><pitch des="Ball" id="662" type="B" tfs="165444" tfs_zulu="2011-07-04T20:54:44Z" x="55.79" y="195.14" on_1b="452252" sv_id="110704_165445" start_speed="89.2" end_speed="81.5" sz_top="3.47" sz_bot="1.65" pfx_x="-0.2" pfx_z="1.79" px="2.038" pz="1.558" x0="-1.348" y0="50.0" z0="5.255" vx0="8.733" vy0="-130.528" vz0="-3.79" ax="-0.341" ay="31.498" az="-29.052" break_y="23.7" break_angle="-3.1" break_length="7.2" pitch_type="SL" type_confidence=".914" zone="14" nasty="63" spin_dir="186.232" spin_rate="349.065" cc="" mt=""/><pitch des="Called Strike" id="663" type="S" tfs="165514" tfs_zulu="2011-07-04T20:55:14Z" x="92.70" y="120.02" on_1b="452252" sv_id="110704_165515" start_speed="86.8" end_speed="79.9" sz_top="3.35" sz_bot="1.65" pfx_x="0.5" pfx_z="1.5" px="0.198" pz="2.923" x0="-1.58" y0="50.0" z0="5.405" vx0="4.3" vy0="-127.268" vz0="-0.313" ax="0.812" ay="27.077" az="-29.656" break_y="23.8" break_angle="-3.2" break_length="7.4" pitch_type="SL" type_confidence=".918" zone="2" nasty="27" spin_dir="162.128" spin_rate="301.593" cc="" mt=""/><pitch des="Swinging Strike" id="664" type="S" tfs="165538" tfs_zulu="2011-07-04T20:55:38Z" x="88.41" y="175.28" on_1b="452252" sv_id="110704_165538" start_speed="94.5" end_speed="85.5" sz_top="3.55" sz_bot="1.65" pfx_x="-10.75" pfx_z="6.2" px="0.527" pz="1.339" x0="-1.309" y0="50.0" z0="5.151" vx0="8.728" vy0="-138.12" vz0="-6.542" ax="-20.348" ay="36.483" az="-20.368" break_y="23.7" break_angle="39.4" break_length="6.1" pitch_type="SI" type_confidence=".922" zone="14" nasty="60" spin_dir="239.877" spin_rate="2471.008" cc="" mt=""/><pitch des="In play, out(s)" id="665" type="X" tfs="165609" tfs_zulu="2011-07-04T20:56:09Z" x="92.70" y="141.61" on_1b="452252" sv_id="110704_165605" start_speed="88.3" end_speed="81.1" sz_top="3.55" sz_bot="1.65" pfx_x="4.47" pfx_z="3.46" px="0.767" pz="2.2" x0="-1.637" y0="50.0" z0="5.366" vx0="4.644" vy0="-129.366" vz0="-2.898" ax="7.521" ay="29.0" az="-26.279" break_y="23.8" break_angle="-17.5" break_length="6.8" pitch_type="SL" type_confidence=".937" zone="14" nasty="46" spin_dir="128.090" spin_rate="1071.659" cc="" mt=""/></atbat><atbat num="80" b="3" s="1" o="2" start_tfs="165638" start_tfs_zulu="2011-07-04T20:56:38Z" batter="431094" stand="R" b_height="5-11" pitcher="458006" p_throws="R" des="Aaron Hill singles on a ground ball to shortstop Marco Scutaro. Adam Lind to 2nd. " event="Single"><pitch des="Ball" id="669" type="B" tfs="165649" tfs_zulu="2011-07-04T20:56:49Z" x="99.57" y="183.92" on_1b="452252" sv_id="110704_165648" start_speed="95.6" end_speed="86.1" sz_top="3.09" sz_bot="1.46" pfx_x="-6.83" pfx_z="7.36" px="-0.019" pz="1.368" x0="-1.3" y0="50.0" z0="5.154" vx0="5.913" vy0="-139.886" vz0="-7.062" ax="-13.184" ay="39.342" az="-17.911" break_y="23.7" break_angle="30.2" break_length="4.9" pitch_type="SI" type_confidence=".632" zone="13" nasty="51" spin_dir="222.748" spin_rate="2014.388" cc="" mt=""/><pitch des="Ball" id="670" type="B" tfs="165711" tfs_zulu="2011-07-04T20:57:11Z" x="64.38" y="168.37" on_1b="452252" sv_id="110704_165712" start_speed="96.4" end_speed="87.1" sz_top="3.09" sz_bot="1.46" pfx_x="-6.79" pfx_z="8.29" px="1.228" pz="1.844" x0="-1.193" y0="50.0" z0="5.264" vx0="9.106" vy0="-140.999" vz0="-6.577" ax="-13.381" ay="38.378" az="-15.77" break_y="23.7" break_angle="32.0" break_length="4.3" pitch_type="SI" type_confidence=".837" zone="14" nasty="61" spin_dir="219.204" spin_rate="2178.182" cc="Dangerous count for Matt Albers; Aaron Hill is a dead-red fastball hitter, with a .730 OPS against them and .621 against everything else." mt=""/><pitch des="Ball" id="671" type="B" tfs="165739" tfs_zulu="2011-07-04T20:57:39Z" x="70.39" y="150.24" on_1b="452252" sv_id="110704_165739" start_speed="95.4" end_speed="85.8" sz_top="3.09" sz_bot="1.46" pfx_x="-10.45" pfx_z="5.19" px="0.926" pz="1.691" x0="-1.407" y0="50.0" z0="5.153" vx0="10.032" vy0="-139.518" vz0="-5.355" ax="-20.042" ay="39.377" az="-22.159" break_y="23.6" break_angle="36.2" break_length="6.2" pitch_type="SI" type_confidence=".908" zone="14" nasty="66" spin_dir="243.448" spin_rate="2329.786" cc="" mt=""/><pitch des="Called Strike" id="672" type="S" tfs="165804" tfs_zulu="2011-07-04T20:58:04Z" x="93.56" y="149.38" on_1b="452252" sv_id="110704_165804" start_speed="96.0" end_speed="86.8" sz_top="3.09" sz_bot="1.46" pfx_x="-9.94" pfx_z="5.44" px="0.395" pz="2.344" x0="-1.425" y0="50.0" z0="5.267" vx0="8.548" vy0="-140.552" vz0="-4.147" ax="-19.482" ay="37.907" az="-21.434" break_y="23.7" break_angle="37.4" break_length="5.9" pitch_type="SI" type_confidence=".908" zone="6" nasty="39" spin_dir="241.132" spin_rate="2296.266" cc="Matt Albers battled back from 3-0 to retire Aaron Hill." mt=""/><pitch des="In play, no out" id="673" type="X" tfs="165843" tfs_zulu="2011-07-04T20:58:43Z" x="91.85" y="147.65" on_1b="452252" sv_id="110704_165827" start_speed="95.8" end_speed="87.1" sz_top="3.09" sz_bot="1.46" pfx_x="-9.11" pfx_z="4.98" px="-0.05" pz="1.836" x0="-1.509" y0="50.0" z0="5.288" vx0="7.259" vy0="-140.142" vz0="-5.429" ax="-17.851" ay="36.143" az="-22.34" break_y="23.7" break_angle="34.1" break_length="6.0" pitch_type="SI" type_confidence=".889" zone="8" nasty="35" spin_dir="241.149" spin_rate="2109.839" cc="Dangerous count for Matt Albers; Aaron Hill is a dead-red fastball hitter, with a .730 OPS against them and .621 against everything else." mt=""/><runner id="452252" start="1B" end="2B" event="Single"/><runner id="431094" start="" end="1B" event="Single"/></atbat><atbat num="81" b="0" s="0" o="3" start_tfs="165901" start_tfs_zulu="2011-07-04T20:59:01Z" batter="501983" stand="L" b_height="6-0" pitcher="458006" p_throws="R" des="Travis Snider grounds out, third baseman Yamaico Navarro to first baseman Adrian Gonzalez. " event="Groundout"><pitch des="In play, out(s)" id="678" type="X" tfs="165928" tfs_zulu="2011-07-04T20:59:28Z" x="105.58" y="143.33" on_1b="431094" on_2b="452252" sv_id="110704_165919" start_speed="94.7" end_speed="85.6" sz_top="3.56" sz_bot="1.68" pfx_x="-7.77" pfx_z="6.13" px="-0.892" pz="1.672" x0="-1.7" y0="50.0" z0="5.067" vx0="4.918" vy0="-138.653" vz0="-5.443" ax="-14.797" ay="37.184" az="-20.431" break_y="23.7" break_angle="31.7" break_length="5.5" pitch_type="SI" type_confidence=".777" zone="13" nasty="79" spin_dir="231.563" spin_rate="1976.584" cc="Matt Albers is getting squeezed this inning by home plate ump Jerry Layne." mt=""/><runner id="431094" start="1B" end="" event="Groundout"/><runner id="452252" start="2B" end="" event="Groundout"/></atbat></top><bottom><action b="0" s="0" o="0" des="Pitcher Change: Frank Francisco replaces Jason Frasor. " event="Pitching Substitution" tfs="170020" tfs_zulu="2011-07-04T21:00:20Z" player="407911" pitch="1"/><atbat num="82" b="2" s="1" o="0" start_tfs="170221" start_tfs_zulu="2011-07-04T21:02:21Z" batter="453056" stand="L" b_height="6-1" pitcher="407911" p_throws="R" des="Jacoby Ellsbury singles on a ground ball to right fielder Travis Snider, deflected by second baseman Aaron Hill. " event="Single"><pitch des="Ball" id="686" type="B" tfs="170245" tfs_zulu="2011-07-04T21:02:45Z" x="78.97" y="196.87" sv_id="110704_170245" start_speed="94.2" end_speed="86.3" sz_top="3.36" sz_bot="1.56" pfx_x="-5.72" pfx_z="12.53" px="0.334" pz="1.101" x0="-1.566" y0="50.0" z0="5.554" vx0="7.163" vy0="-137.609" vz0="-10.555" ax="-10.914" ay="32.106" az="-8.212" break_y="23.8" break_angle="41.1" break_length="3.0" pitch_type="FF" type_confidence=".907" zone="14" nasty="47" spin_dir="204.487" spin_rate="2775.963" cc="Frank Francisco went back to the four-seam fastball even though Jacoby Ellsbury hit for a single last time up." mt=""/><pitch des="Called Strike" id="687" type="S" tfs="170303" tfs_zulu="2011-07-04T21:03:03Z" x="83.26" y="142.47" sv_id="110704_170302" start_speed="95.2" end_speed="85.5" sz_top="3.36" sz_bot="1.56" pfx_x="-5.01" pfx_z="11.79" px="0.275" pz="1.887" x0="-1.596" y0="50.0" z0="5.677" vx0="6.842" vy0="-139.169" vz0="-8.523" ax="-9.562" ay="39.277" az="-9.612" break_y="23.6" break_angle="32.6" break_length="3.1" pitch_type="FF" type_confidence=".905" zone="9" nasty="39" spin_dir="202.966" spin_rate="2554.509" cc="Frank Francisco is trying to tie up Jacoby Ellsbury with fastballs inside, where Jacoby Ellsbury hits .362." mt=""/><pitch des="Ball" id="688" type="B" tfs="170320" tfs_zulu="2011-07-04T21:03:20Z" x="54.94" y="130.38" sv_id="110704_170322" start_speed="94.9" end_speed="85.2" sz_top="3.6" sz_bot="1.56" pfx_x="-4.05" pfx_z="10.49" px="1.848" pz="2.87" x0="-1.401" y0="50.0" z0="5.747" vx0="10.208" vy0="-138.642" vz0="-5.527" ax="-7.668" ay="38.738" az="-12.231" break_y="23.6" break_angle="19.5" break_length="3.1" pitch_type="FF" type_confidence=".908" zone="12" nasty="24" spin_dir="201.030" spin_rate="2235.826" cc="" mt=""/><pitch des="In play, no out" id="689" type="X" tfs="170354" tfs_zulu="2011-07-04T21:03:54Z" x="96.14" y="137.29" sv_id="110704_170342" start_speed="94.9" end_speed="84.7" sz_top="3.36" sz_bot="1.56" pfx_x="-0.48" pfx_z="12.71" px="-0.186" pz="3.028" x0="-1.516" y0="50.0" z0="5.78" vx0="3.765" vy0="-138.938" vz0="-5.944" ax="-0.912" ay="40.862" az="-8.095" break_y="23.6" break_angle="-1.0" break_length="2.1" pitch_type="FF" type_confidence=".904" zone="2" nasty="36" spin_dir="182.167" spin_rate="2516.117" cc="" mt=""/><runner id="453056" start="" end="1B" event="Single"/></atbat><action b="3" s="2" o="0" des="With Dustin Pedroia batting, Jacoby Ellsbury steals (27) 2nd base. " event="Stolen Base 2B" tfs="170646" tfs_zulu="2011-07-04T21:06:46Z" player="453056" pitch="5"/><atbat num="83" b="3" s="3" o="1" start_tfs="170404" start_tfs_zulu="2011-07-04T21:04:04Z" batter="456030" stand="R" b_height="5-9" pitcher="407911" p_throws="R" des="Dustin Pedroia strikes out swinging. " event="Strikeout"><pitch des="Ball" id="693" type="B" tfs="170431" tfs_zulu="2011-07-04T21:04:31Z" x="99.57" y="171.83" on_1b="453056" sv_id="110704_170429" start_speed="95.8" end_speed="86.6" sz_top="3.38" sz_bot="1.71" pfx_x="-2.0" pfx_z="11.59" px="0.595" pz="4.028" x0="-1.465" y0="50.0" z0="5.775" vx0="6.373" vy0="-140.284" vz0="-3.087" ax="-3.91" ay="37.136" az="-9.424" break_y="23.7" break_angle="12.3" break_length="2.2" pitch_type="FF" type_confidence=".905" zone="12" nasty="55" spin_dir="189.750" spin_rate="2387.244" cc="" mt=""/><pitch des="Ball" id="694" type="B" tfs="170450" tfs_zulu="2011-07-04T21:04:50Z" x="49.79" y="109.66" on_1b="453056" sv_id="110704_170452" start_speed="95.4" end_speed="86.0" sz_top="3.38" sz_bot="1.71" pfx_x="-4.77" pfx_z="12.39" px="1.778" pz="3.109" x0="-1.292" y0="50.0" z0="5.712" vx0="10.063" vy0="-139.414" vz0="-5.591" ax="-9.197" ay="37.508" az="-8.228" break_y="23.7" break_angle="33.8" break_length="2.5" pitch_type="FF" type_confidence=".908" zone="12" nasty="30" spin_dir="201.009" spin_rate="2669.361" cc="" mt=""/><pitch des="Ball" id="695" type="B" tfs="170541" tfs_zulu="2011-07-04T21:05:41Z" x="61.80" y="154.56" on_1b="453056" sv_id="110704_170541" start_speed="96.4" end_speed="87.5" sz_top="3.38" sz_bot="1.71" pfx_x="-4.94" pfx_z="10.7" px="1.295" pz="2.21" x0="-1.532" y0="50.0" z0="5.666" vx0="9.584" vy0="-140.795" vz0="-7.576" ax="-9.776" ay="36.09" az="-10.92" break_y="23.7" break_angle="29.8" break_length="3.0" pitch_type="FF" type_confidence=".908" zone="14" nasty="26" spin_dir="204.699" spin_rate="2410.620" cc="" mt=""/><pitch des="Called Strike" id="696" type="S" tfs="170608" tfs_zulu="2011-07-04T21:06:08Z" x="113.30" y="119.16" on_1b="453056" sv_id="110704_170609" start_speed="95.1" end_speed="85.9" sz_top="3.53" sz_bot="1.48" pfx_x="-2.79" pfx_z="10.05" px="-0.676" pz="2.957" x0="-1.659" y0="50.0" z0="5.716" vx0="3.664" vy0="-139.338" vz0="-5.183" ax="-5.363" ay="37.474" az="-12.757" break_y="23.7" break_angle="17.3" break_length="3.1" pitch_type="FF" type_confidence=".906" zone="1" nasty="50" spin_dir="195.439" spin_rate="2097.388" cc="Frank Francisco is trying to tie up Dustin Pedroia with fastballs inside, where Dustin Pedroia hits .269." mt=""/><pitch des="Swinging Strike" id="697" type="S" tfs="170645" tfs_zulu="2011-07-04T21:06:45Z" x="98.71" y="95.84" on_1b="453056" sv_id="110704_170634" start_speed="95.9" end_speed="87.5" sz_top="3.38" sz_bot="1.71" pfx_x="-3.13" pfx_z="12.83" px="-0.959" pz="3.345" x0="-1.627" y0="50.0" z0="5.767" vx0="2.965" vy0="-140.474" vz0="-5.485" ax="-6.191" ay="34.408" az="-6.678" break_y="23.7" break_angle="34.3" break_length="2.0" pitch_type="FF" type_confidence=".906" zone="11" nasty="65" spin_dir="193.647" spin_rate="2709.684" cc="" mt=""/><runner id="453056" start="1B" end="2B" event="Stolen Base 2B"/><pitch des="Swinging Strike" id="701" type="S" tfs="170723" tfs_zulu="2011-07-04T21:07:23Z" x="105.58" y="148.51" on_2b="453056" sv_id="110704_170722" start_speed="97.2" end_speed="87.2" sz_top="3.38" sz_bot="1.71" pfx_x="-4.72" pfx_z="8.7" px="0.266" pz="1.708" x0="-1.546" y0="50.0" z0="5.581" vx0="6.711" vy0="-142.151" vz0="-8.057" ax="-9.367" ay="41.653" az="-14.829" break_y="23.6" break_angle="23.5" break_length="3.9" pitch_type="FF" type_confidence=".903" zone="14" nasty="45" spin_dir="208.370" spin_rate="2011.861" cc="Frank Francisco battled back from 3-0 to retire Dustin Pedroia." mt=""/></atbat><atbat num="84" b="2" s="3" o="2" start_tfs="170734" start_tfs_zulu="2011-07-04T21:07:34Z" batter="408236" stand="L" b_height="6-2" pitcher="407911" p_throws="R" des="Adrian Gonzalez strikes out swinging. " event="Strikeout"><pitch des="Ball" id="705" type="B" tfs="170810" tfs_zulu="2011-07-04T21:08:10Z" x="66.95" y="135.56" on_2b="453056" sv_id="110704_170811" start_speed="96.5" end_speed="87.7" sz_top="3.77" sz_bot="1.74" pfx_x="-4.88" pfx_z="8.35" px="1.112" pz="2.354" x0="-1.399" y0="50.0" z0="5.615" vx0="8.705" vy0="-141.153" vz0="-6.233" ax="-9.703" ay="36.511" az="-15.492" break_y="23.7" break_angle="23.7" break_length="3.8" pitch_type="FF" type_confidence=".908" zone="14" nasty="70" spin_dir="210.183" spin_rate="1983.530" cc="Frank Francisco went back to the four-seam fastball even though Adrian Gonzalez hit for a double last time up." mt=""/><pitch des="Foul" id="706" type="S" tfs="170843" tfs_zulu="2011-07-04T21:08:43Z" x="100.43" y="132.11" on_2b="453056" sv_id="110704_170838" start_speed="87.1" end_speed="79.7" sz_top="3.56" sz_bot="1.68" pfx_x="-4.2" pfx_z="2.85" px="0.236" pz="2.332" x0="-1.602" y0="50.0" z0="5.737" vx0="5.975" vy0="-127.642" vz0="-3.064" ax="-6.851" ay="29.245" az="-27.454" break_y="23.7" break_angle="11.2" break_length="7.2" pitch_type="FS" type_confidence=".885" zone="5" nasty="24" spin_dir="235.434" spin_rate="945.600" cc="" mt=""/><pitch des="Swinging Strike" id="707" type="S" tfs="170912" tfs_zulu="2011-07-04T21:09:12Z" x="100.43" y="96.71" on_2b="453056" sv_id="110704_170912" start_speed="96.3" end_speed="88.1" sz_top="3.56" sz_bot="1.68" pfx_x="-3.59" pfx_z="12.26" px="0.074" pz="3.415" x0="-1.621" y0="50.0" z0="5.724" vx0="6.002" vy0="-140.95" vz0="-5.058" ax="-7.185" ay="33.244" az="-7.53" break_y="23.8" break_angle="33.6" break_length="2.1" pitch_type="FF" type_confidence=".906" zone="2" nasty="34" spin_dir="196.253" spin_rate="2642.188" cc="" mt=""/><pitch des="Ball" id="708" type="B" tfs="170943" tfs_zulu="2011-07-04T21:09:43Z" x="53.22" y="142.47" on_2b="453056" sv_id="110704_170942" start_speed="96.7" end_speed="87.6" sz_top="3.72" sz_bot="1.89" pfx_x="-4.75" pfx_z="13.49" px="1.355" pz="2.383" x0="-1.526" y0="50.0" z0="5.575" vx0="9.689" vy0="-141.3" vz0="-7.899" ax="-9.446" ay="36.829" az="-5.256" break_y="23.7" break_angle="43.5" break_length="2.1" pitch_type="FF" type_confidence=".907" zone="14" nasty="27" spin_dir="199.335" spin_rate="2929.007" cc="" mt=""/><pitch des="Swinging Strike" id="709" type="S" tfs="171011" tfs_zulu="2011-07-04T21:10:11Z" x="98.71" y="150.24" on_2b="453056" sv_id="110704_171012" start_speed="87.1" end_speed="79.9" sz_top="3.56" sz_bot="1.68" pfx_x="-2.83" pfx_z="8.14" px="0.399" pz="2.059" x0="-1.495" y0="50.0" z0="5.717" vx0="5.676" vy0="-127.557" vz0="-5.439" ax="-4.621" ay="28.1" az="-18.788" break_y="23.8" break_angle="9.8" break_length="5.0" pitch_type="FS" type_confidence=".825" zone="9" nasty="35" spin_dir="199.044" spin_rate="1610.634" cc="" mt=""/></atbat><atbat num="85" b="1" s="3" o="3" start_tfs="171032" start_tfs_zulu="2011-07-04T21:10:32Z" batter="501605" stand="R" b_height="5-11" pitcher="407911" p_throws="R" des="Yamaico Navarro strikes out swinging. " event="Strikeout"><pitch des="Swinging Strike" id="713" type="S" tfs="171110" tfs_zulu="2011-07-04T21:11:10Z" x="110.73" y="123.47" on_2b="453056" sv_id="110704_171110" start_speed="96.5" end_speed="87.1" sz_top="3.34" sz_bot="1.69" pfx_x="-4.21" pfx_z="12.33" px="-0.169" pz="3.083" x0="-1.426" y0="50.0" z0="5.692" vx0="4.987" vy0="-141.369" vz0="-5.834" ax="-8.347" ay="38.378" az="-7.661" break_y="23.7" break_angle="37.2" break_length="2.4" pitch_type="FF" type_confidence=".906" zone="2" nasty="52" spin_dir="198.803" spin_rate="2657.460" cc="Frank Francisco went back to the four-seam fastball even though Yamaico Navarro hit for a single last time up." mt=""/><pitch des="Ball" id="714" type="B" tfs="171138" tfs_zulu="2011-07-04T21:11:38Z" x="71.24" y="101.89" on_2b="453056" sv_id="110704_171134" start_speed="96.8" end_speed="87.8" sz_top="3.34" sz_bot="1.69" pfx_x="-3.21" pfx_z="10.11" px="0.682" pz="3.409" x0="-1.283" y0="50.0" z0="5.717" vx0="6.622" vy0="-141.742" vz0="-4.287" ax="-6.432" ay="37.104" az="-11.848" break_y="23.7" break_angle="20.0" break_length="2.8" pitch_type="FF" type_confidence=".906" zone="12" nasty="60" spin_dir="197.558" spin_rate="2182.120" cc="" mt=""/><pitch des="Called Strike" id="715" type="S" tfs="171159" tfs_zulu="2011-07-04T21:11:59Z" x="77.25" y="142.47" on_2b="453056" sv_id="110704_171159" start_speed="97.1" end_speed="87.5" sz_top="3.34" sz_bot="1.69" pfx_x="-3.47" pfx_z="12.7" px="0.882" pz="2.42" x0="-1.372" y0="50.0" z0="5.59" vx0="7.507" vy0="-141.973" vz0="-7.589" ax="-6.928" ay="39.148" az="-6.754" break_y="23.7" break_angle="28.9" break_length="2.1" pitch_type="FF" type_confidence=".906" zone="14" nasty="51" spin_dir="195.244" spin_rate="2692.344" cc="" mt=""/><pitch des="Swinging Strike" id="716" type="S" tfs="171228" tfs_zulu="2011-07-04T21:12:28Z" x="96.14" y="150.24" on_2b="453056" sv_id="110704_171229" start_speed="96.4" end_speed="87.3" sz_top="3.34" sz_bot="1.69" pfx_x="-4.57" pfx_z="10.76" px="-0.442" pz="2.624" x0="-1.438" y0="50.0" z0="5.572" vx0="4.394" vy0="-141.177" vz0="-6.209" ax="-9.058" ay="37.426" az="-10.773" break_y="23.7" break_angle="32.5" break_length="3.0" pitch_type="FF" type_confidence=".906" zone="4" nasty="36" spin_dir="202.939" spin_rate="2388.115" cc="Frank Francisco is trying to tie up Yamaico Navarro with fastballs inside, where Yamaico Navarro hits .000." mt=""/><runner id="453056" start="2B" end="" event="Strikeout"/></atbat></bottom></inning></game>
@@ -1 +0,0 @@
1
- <!--Copyright 2012 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt--><hitchart><hip des="Double" x="60.24" y="121.49" batter="434658" pitcher="407793" type="H" team="A" inning="1"/><hip des="Flyout" x="126.51" y="106.43" batter="519346" pitcher="407793" type="O" team="A" inning="1"/><hip des="Error" x="63.52" y="101.02" batter="430832" pitcher="407793" type="E" team="A" inning="1"/><hip des="Groundout" x="135.54" y="151.61" batter="430832" pitcher="407793" type="O" team="A" inning="1"/><hip des="Single" x="118.47" y="106.43" batter="453056" pitcher="453344" type="H" team="H" inning="1"/><hip des="Groundout" x="100.40" y="154.62" batter="456030" pitcher="453344" type="O" team="H" inning="1"/><hip des="Flyout" x="75.30" y="102.41" batter="429665" pitcher="407793" type="O" team="A" inning="2"/><hip des="Home Run" x="60.24" y="59.24" batter="431094" pitcher="407793" type="H" team="A" inning="2"/><hip des="Double" x="93.37" y="61.24" batter="501983" pitcher="407793" type="H" team="A" inning="2"/><hip des="Single" x="142.57" y="119.48" batter="150348" pitcher="407793" type="H" team="A" inning="2"/><hip des="Pop Out" x="138.55" y="142.57" batter="434658" pitcher="407793" type="O" team="A" inning="2"/><hip des="Pop Out" x="150.60" y="134.54" batter="425903" pitcher="453344" type="O" team="H" inning="2"/><hip des="Single" x="77.31" y="129.52" batter="519346" pitcher="407793" type="H" team="A" inning="3"/><hip des="Single" x="83.33" y="101.41" batter="430832" pitcher="407793" type="H" team="A" inning="3"/><hip des="Single" x="132.53" y="102.41" batter="452252" pitcher="407793" type="H" team="A" inning="3"/><hip des="Flyout" x="95.38" y="54.22" batter="429665" pitcher="407793" type="O" team="A" inning="3"/><hip des="Single" x="116.47" y="106.43" batter="431094" pitcher="407793" type="H" team="A" inning="3"/><hip des="Double" x="206.83" y="100.40" batter="501983" pitcher="407793" type="H" team="A" inning="3"/><hip des="Flyout" x="178.71" y="105.42" batter="150040" pitcher="235095" type="O" team="A" inning="3"/><hip des="Flyout" x="90.36" y="91.37" batter="150348" pitcher="235095" type="O" team="A" inning="3"/><hip des="Groundout" x="158.63" y="165.66" batter="457454" pitcher="453344" type="O" team="H" inning="3"/><hip des="Single" x="61.24" y="100.40" batter="340192" pitcher="453344" type="H" team="H" inning="3"/><hip des="Flyout" x="169.68" y="63.25" batter="453056" pitcher="453344" type="O" team="H" inning="3"/><hip des="Flyout" x="170.68" y="122.49" batter="434658" pitcher="235095" type="O" team="A" inning="4"/><hip des="Pop Out" x="157.63" y="164.66" batter="519346" pitcher="235095" type="O" team="A" inning="4"/><hip des="Flyout" x="151.61" y="106.43" batter="430832" pitcher="235095" type="O" team="A" inning="4"/><hip des="Flyout" x="67.27" y="106.43" batter="456030" pitcher="453344" type="O" team="H" inning="4"/><hip des="Groundout" x="141.57" y="157.63" batter="408236" pitcher="453344" type="O" team="H" inning="4"/><hip des="Groundout" x="134.54" y="147.59" batter="120074" pitcher="453344" type="O" team="H" inning="4"/><hip des="Groundout" x="153.61" y="167.67" batter="452252" pitcher="235095" type="O" team="A" inning="5"/><hip des="Lineout" x="106.43" y="156.63" batter="429665" pitcher="235095" type="O" team="A" inning="5"/><hip des="Groundout" x="113.45" y="160.64" batter="431094" pitcher="235095" type="O" team="A" inning="5"/><hip des="Flyout" x="63.25" y="128.51" batter="502210" pitcher="453344" type="O" team="H" inning="5"/><hip des="Single" x="136.55" y="112.45" batter="136770" pitcher="453344" type="H" team="H" inning="5"/><hip des="Triple" x="136.55" y="37.15" batter="453056" pitcher="453344" type="H" team="H" inning="5"/><hip des="Double" x="93.37" y="119.48" batter="408236" pitcher="453344" type="H" team="H" inning="5"/><hip des="Groundout" x="133.53" y="154.62" batter="501605" pitcher="453344" type="O" team="H" inning="5"/><hip des="Double" x="214.86" y="102.41" batter="501983" pitcher="469686" type="H" team="A" inning="6"/><hip des="Bunt Groundout" x="130.52" y="192.77" batter="150040" pitcher="469686" type="O" team="A" inning="6"/><hip des="Pop Out" x="165.66" y="177.71" batter="150348" pitcher="469686" type="O" team="A" inning="6"/><hip des="Pop Out" x="125.50" y="159.64" batter="434658" pitcher="469686" type="O" team="A" inning="6"/><hip des="Groundout" x="100.40" y="175.70" batter="457454" pitcher="469802" type="O" team="H" inning="6"/><hip des="Flyout" x="174.70" y="107.43" batter="519346" pitcher="469686" type="O" team="A" inning="7"/><hip des="Groundout" x="98.39" y="169.68" batter="430832" pitcher="469686" type="O" team="A" inning="7"/><hip des="Field Error" x="40.16" y="114.46" batter="429665" pitcher="469686" type="E" team="A" inning="7"/><hip des="Groundout" x="103.41" y="171.69" batter="431094" pitcher="469686" type="O" team="A" inning="7"/><hip des="Groundout" x="103.41" y="172.69" batter="340192" pitcher="469802" type="O" team="H" inning="7"/><hip des="Single" x="127.51" y="167.67" batter="453056" pitcher="469802" type="H" team="H" inning="7"/><hip des="Single" x="137.55" y="107.43" batter="456030" pitcher="469802" type="H" team="H" inning="7"/><hip des="Groundout" x="154.62" y="169.68" batter="408236" pitcher="469802" type="O" team="H" inning="7"/><hip des="Groundout" x="158.63" y="168.67" batter="501983" pitcher="469686" type="O" team="A" inning="8"/><hip des="Single" x="66.27" y="121.49" batter="150348" pitcher="469686" type="H" team="A" inning="8"/><hip des="Double" x="128.51" y="38.15" batter="434658" pitcher="469686" type="H" team="A" inning="8"/><hip des="Single" x="112.45" y="96.39" batter="501605" pitcher="430630" type="H" team="H" inning="8"/><hip des="Double" x="59.24" y="143.57" batter="120074" pitcher="430630" type="H" team="H" inning="8"/><hip des="Triple" x="124.50" y="82.33" batter="457454" pitcher="430630" type="H" team="H" inning="8"/><hip des="Flyout" x="75.30" y="95.38" batter="136770" pitcher="430630" type="O" team="H" inning="8"/><hip des="Groundout" x="108.43" y="160.64" batter="430832" pitcher="458006" type="O" team="A" inning="9"/><hip des="Lineout" x="81.33" y="89.36" batter="429665" pitcher="458006" type="O" team="A" inning="9"/><hip des="Single" x="102.41" y="154.62" batter="431094" pitcher="458006" type="H" team="A" inning="9"/><hip des="Groundout" x="112.45" y="172.69" batter="501983" pitcher="458006" type="O" team="A" inning="9"/><hip des="Single" x="165.66" y="119.48" batter="453056" pitcher="407911" type="H" team="H" inning="9"/></hitchart>
@@ -1,117 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?><!--Copyright 2011 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt-->
2
- <game id="2011/07/04/tormlb-bosmlb-1" venue="Fenway Park" game_pk="288186"
3
- time="1:35"
4
- time_zone="ET"
5
- ampm="PM"
6
- away_time="1:35"
7
- away_time_zone="ET"
8
- away_ampm="PM"
9
- home_time="1:35"
10
- home_time_zone="ET"
11
- home_ampm="PM"
12
- game_type="R"
13
- time_aw_lg="1:35"
14
- aw_lg_ampm="PM"
15
- tz_aw_lg_gen="ET"
16
- time_hm_lg="1:35"
17
- hm_lg_ampm="PM"
18
- tz_hm_lg_gen="ET"
19
- venue_id="3"
20
- scheduled_innings="9"
21
- away_name_abbrev="TOR"
22
- home_name_abbrev="BOS"
23
- away_code="tor"
24
- away_file_code="tor"
25
- away_team_id="141"
26
- away_team_city="Toronto"
27
- away_team_name="Blue Jays"
28
- away_division="E"
29
- away_league_id="103"
30
- away_sport_code="mlb"
31
- home_code="bos"
32
- home_file_code="bos"
33
- home_team_id="111"
34
- home_team_city="Boston"
35
- home_team_name="Red Sox"
36
- home_division="E"
37
- home_league_id="103"
38
- home_sport_code="mlb"
39
- day="MON"
40
- gameday_sw="P"
41
- away_games_back="9.5"
42
- home_games_back="1.5"
43
- away_games_back_wildcard="8.0"
44
- home_games_back_wildcard="-"
45
- venue_w_chan_loc="USMA0046"
46
- gameday_link="2011_07_04_tormlb_bosmlb_1"
47
- away_win="42"
48
- away_loss="44"
49
- home_win="49"
50
- home_loss="35"
51
- league="AA"
52
- top_inning="N"
53
- inning_state=""
54
- status="Final"
55
- ind="F"
56
- inning="9"
57
- outs="3"
58
- away_team_runs="9"
59
- home_team_runs="7"
60
- away_team_hits="13"
61
- home_team_hits="11"
62
- away_team_errors="0"
63
- home_team_errors="2"
64
- wrapup_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=wrap&amp;c_id=mlb"
65
- home_preview_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=preview&amp;c_id=mlb"
66
- away_preview_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=preview&amp;c_id=mlb"
67
- preview="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=preview&amp;c_id=mlb"
68
- tv_station="NESN, MLBN"
69
- home_recap_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=recap&amp;c_id=bos"
70
- away_recap_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=recap&amp;c_id=tor"
71
- photos_link="/mlb/gameday/index.jsp?gid=2011_07_04_tormlb_bosmlb_1&amp;mode=photos">
72
- <linescore inning="1" home_inning_runs="0" away_inning_runs="1"/>
73
- <linescore inning="2" home_inning_runs="0" away_inning_runs="2"/>
74
- <linescore inning="3" home_inning_runs="0" away_inning_runs="4"/>
75
- <linescore inning="4" home_inning_runs="0" away_inning_runs="0"/>
76
- <linescore inning="5" home_inning_runs="4" away_inning_runs="0"/>
77
- <linescore inning="6" home_inning_runs="0" away_inning_runs="0"/>
78
- <linescore inning="7" home_inning_runs="0" away_inning_runs="1"/>
79
- <linescore inning="8" home_inning_runs="3" away_inning_runs="1"/>
80
- <linescore inning="9" home_inning_runs="0" away_inning_runs="0"/>
81
- <winning_pitcher first_name="Brandon" first="Brandon" id="453344" last_name="Morrow"
82
- last="Morrow"
83
- name_display_roster="Morrow"
84
- wins="5"
85
- losses="4"
86
- era="4.72"
87
- s_wins=""
88
- s_losses=""
89
- s_era=""/>
90
- <losing_pitcher first_name="John" first="John" id="407793" last_name="Lackey" last="Lackey"
91
- name_display_roster="Lackey"
92
- wins="5"
93
- losses="8"
94
- era="7.47"
95
- s_wins=""
96
- s_losses=""
97
- s_era=""/>
98
- <save_pitcher first_name="Frank" first="Frank" id="407911" last_name="Francisco"
99
- last="Francisco"
100
- name_display_roster="Francisco, F"
101
- wins="1"
102
- losses="4"
103
- era="4.81"
104
- s_wins=""
105
- s_losses=""
106
- s_era=""
107
- saves="10"/>
108
- <game_media>
109
- <media type="game" calendar_event_id="14-288186-2011-07-04"
110
- start="2011-07-04T13:35:00-0400"
111
- title="TOR @ BOS"
112
- has_mlbtv="true"
113
- free="NO"
114
- media_state="media_archive"
115
- thumbnail="http://mediadownloads.mlb.com/mlbam/preview/torbos_288186_preview.jpg"/>
116
- </game_media>
117
- </game>
@@ -1,56 +0,0 @@
1
- <!--Copyright 2012 MLB Advanced Media, L.P. Use of any content on this page acknowledges agreement to the terms posted here http://gdx.mlb.com/components/copyright.txt--><game venue="Fenway Park" date="July 4, 2011">
2
- <team type="away" id="TOR" name="Toronto Blue Jays">
3
- <player id="136734" first="Octavio" last="Dotel" num="29" boxname="Dotel" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="1" era="3.86"/>
4
- <player id="150040" first="Jose" last="Molina" num="8" boxname="Molina, J" rl="R" position="C" status="A" bat_order="8" game_position="C" avg=".301" hr="2" rbi="7"/>
5
- <player id="150348" first="John" last="McDonald" num="6" boxname="McDonald, Jo" rl="R" position="2B" status="A" bat_order="9" game_position="SS" avg=".197" hr="2" rbi="13"/>
6
- <player id="279913" first="Corey" last="Patterson" num="16" boxname="Patterson, C" rl="R" position="LF" status="A" avg=".258" hr="6" rbi="31"/>
7
- <player id="400010" first="Jon" last="Rauch" num="60" boxname="Rauch" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="3" era="4.11"/>
8
- <player id="407911" first="Frank" last="Francisco" num="50" boxname="Francisco, F" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="4" era="5.01"/>
9
- <player id="425861" first="Shawn" last="Camp" num="57" boxname="Camp" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="1" era="4.00"/>
10
- <player id="429665" first="Edwin" last="Encarnacion" num="10" boxname="Encarnacion" rl="R" position="3B" status="A" bat_order="5" game_position="DH" avg=".250" hr="6" rbi="19"/>
11
- <player id="430630" first="Jason" last="Frasor" num="54" boxname="Frasor" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="1" era="2.70"/>
12
- <player id="430832" first="Jose" last="Bautista" num="19" boxname="Bautista" rl="R" position="RF" status="A" bat_order="3" game_position="3B" avg=".331" hr="27" rbi="56"/>
13
- <player id="431094" first="Aaron" last="Hill" num="2" boxname="Hill, A" rl="R" position="2B" status="A" bat_order="6" game_position="2B" avg=".240" hr="3" rbi="31"/>
14
- <player id="434658" first="Rajai" last="Davis" num="11" boxname="Davis, R" rl="R" position="CF" status="A" bat_order="1" game_position="CF" avg=".233" hr="1" rbi="17"/>
15
- <player id="446399" first="Brett" last="Cecil" num="27" boxname="Cecil" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="3" era="7.24"/>
16
- <player id="450317" first="J.P." last="Arencibia" num="9" boxname="Arencibia" rl="R" position="C" status="A" avg=".216" hr="12" rbi="36"/>
17
- <player id="452252" first="Adam" last="Lind" num="26" boxname="Lind" rl="L" position="1B" status="A" bat_order="4" game_position="1B" avg=".310" hr="16" rbi="49"/>
18
- <player id="453344" first="Brandon" last="Morrow" num="23" boxname="Morrow" rl="R" position="P" status="A" bat_order="0" game_position="P" avg=".000" hr="0" rbi="0" wins="4" losses="4" era="4.56"/>
19
- <player id="453454" first="Mike" last="McCoy" num="18" boxname="McCoy" rl="R" position="2B" status="A" avg=".217" hr="1" rbi="4"/>
20
- <player id="453646" first="Carlos" last="Villanueva" num="33" boxname="Villanueva" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="5" losses="1" era="3.24"/>
21
- <player id="457456" first="Jo-Jo" last="Reyes" num="37" boxname="Reyes, Jo" rl="L" position="P" status="A" avg=".250" hr="0" rbi="0" wins="3" losses="7" era="4.85"/>
22
- <player id="460069" first="Ricky" last="Romero" num="24" boxname="Romero, R" rl="L" position="P" status="A" avg=".167" hr="0" rbi="2" wins="7" losses="7" era="2.75"/>
23
- <player id="469802" first="Luis" last="Perez" num="47" boxname="Perez, L" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="1" era="3.71"/>
24
- <player id="488862" first="Yunel" last="Escobar" num="5" boxname="Escobar, Y" rl="R" position="SS" status="A" avg=".289" hr="9" rbi="29"/>
25
- <player id="501983" first="Travis" last="Snider" num="45" boxname="Snider" rl="L" position="RF" status="A" bat_order="7" game_position="RF" avg=".184" hr="1" rbi="12"/>
26
- <player id="519240" first="Marc" last="Rzepczynski" num="34" boxname="Rzepczynski" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="2" era="3.12"/>
27
- <player id="519346" first="Eric" last="Thames" num="14" boxname="Thames, E" rl="R" position="LF" status="A" bat_order="2" game_position="LF" avg=".329" hr="3" rbi="9"/>
28
- <coach position="manager" first="John" last="Farrell" id="114023" num="52"/><coach position="batting_coach" first="Dwayne" last="Murphy" id="119551" num="41"/><coach position="pitching_coach" first="Bruce" last="Walton" id="123899" num="53"/><coach position="first_base_coach" first="Torey" last="Lovullo" id="117950" num="7"/><coach position="third_base_coach" first="Brian" last="Butterfield" id="427047" num="55"/><coach position="bench_coach" first="Don" last="Wakamatsu" id="123798" num="22"/><coach position="bullpen_coach" first="Pat" last="Hentgen" id="115797" num="41"/><coach position="bullpen_catcher" first="Alex" last="Andreopoulos" id="432938" num="61"/><coach position="coach" first="Luis" last="Rivera" id="121248" num="63"/> </team>
29
- <team type="home" id="BOS" name="Boston Red Sox">
30
- <player id="120074" first="David" last="Ortiz" num="34" boxname="Ortiz" rl="L" position="D" status="A" bat_order="5" game_position="DH" avg=".301" hr="17" rbi="49"/>
31
- <player id="123660" first="Jason" last="Varitek" num="33" boxname="Varitek" rl="R" position="C" status="A" avg=".250" hr="5" rbi="17"/>
32
- <player id="123801" first="Tim" last="Wakefield" num="49" boxname="Wakefield" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="4" losses="3" era="4.82"/>
33
- <player id="136770" first="J.D." last="Drew" num="7" boxname="Drew, J" rl="R" position="RF" status="A" bat_order="8" game_position="RF" avg=".231" hr="4" rbi="18"/>
34
- <player id="150021" first="Darnell" last="McDonald" num="54" boxname="McDonald, D" rl="R" position="CF" status="A" avg=".121" hr="2" rbi="6"/>
35
- <player id="235095" first="Dan" last="Wheeler" num="35" boxname="Wheeler" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="1" era="5.92"/>
36
- <player id="277417" first="Josh" last="Beckett" num="19" boxname="Beckett" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="7" losses="3" era="2.12"/>
37
- <player id="340192" first="Marco" last="Scutaro" num="10" boxname="Scutaro" rl="R" position="SS" status="A" bat_order="9" game_position="SS" avg=".267" hr="3" rbi="14"/>
38
- <player id="407793" first="John" last="Lackey" num="41" boxname="Lackey" rl="R" position="P" status="A" bat_order="0" game_position="P" avg=".333" hr="0" rbi="1" wins="5" losses="7" era="6.81"/>
39
- <player id="408057" first="Bobby" last="Jenks" num="52" boxname="Jenks" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="2" era="6.75"/>
40
- <player id="408236" first="Adrian" last="Gonzalez" num="28" boxname="Gonzalez, Ad" rl="L" position="1B" status="A" bat_order="3" game_position="1B" avg=".350" hr="16" rbi="74"/>
41
- <player id="425903" first="Kevin" last="Youkilis" num="20" boxname="Youkilis" rl="R" position="3B" status="A" bat_order="4" game_position="3B" avg=".271" hr="11" rbi="57"/>
42
- <player id="449097" first="Jonathan" last="Papelbon" num="58" boxname="Papelbon" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="0" era="3.58"/>
43
- <player id="450300" first="Drew" last="Sutton" num="44" boxname="Sutton" rl="R" position="3B" status="A" avg=".318" hr="0" rbi="7"/>
44
- <player id="452657" first="Jon" last="Lester" num="31" boxname="Lester" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="10" losses="4" era="3.43"/>
45
- <player id="453056" first="Jacoby" last="Ellsbury" num="2" boxname="Ellsbury" rl="L" position="CF" status="A" bat_order="1" game_position="CF" avg=".302" hr="9" rbi="40"/>
46
- <player id="453192" first="Andrew" last="Miller" num="30" boxname="Miller, A" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="0" era="3.06"/>
47
- <player id="453268" first="Daniel" last="Bard" num="51" boxname="Bard" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="1" losses="4" era="2.25"/>
48
- <player id="456030" first="Dustin" last="Pedroia" num="15" boxname="Pedroia" rl="R" position="2B" status="A" bat_order="2" game_position="2B" avg=".278" hr="7" rbi="38"/>
49
- <player id="457454" first="Jarrod" last="Saltalamacchia" num="39" boxname="Saltalamacchia" rl="R" position="C" status="A" bat_order="7" game_position="C" avg=".251" hr="5" rbi="21"/>
50
- <player id="458006" first="Matt" last="Albers" num="32" boxname="Albers" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="2" losses="3" era="2.97"/>
51
- <player id="462985" first="Franklin" last="Morales" num="46" boxname="Morales, F" rl="L" position="P" status="A" avg=".000" hr="0" rbi="0" wins="0" losses="1" era="3.86"/>
52
- <player id="469686" first="Alfredo" last="Aceves" num="91" boxname="Aceves" rl="R" position="P" status="A" avg=".000" hr="0" rbi="0" wins="3" losses="1" era="3.75"/>
53
- <player id="501605" first="Yamaico" last="Navarro" num="60" boxname="Navarro" rl="R" position="3B" status="A" avg=".500" hr="1" rbi="1"/>
54
- <player id="502210" first="Josh" last="Reddick" num="16" boxname="Reddick" rl="R" position="RF" status="A" bat_order="6" game_position="LF" avg=".422" hr="1" rbi="10"/>
55
- <coach position="manager" first="Terry" last="Francona" id="114378" num="47"/><coach position="batting_coach" first="Dave" last="Magadan" id="118132" num="29"/><coach position="pitching_coach" first="Curt" last="Young" id="124689" num="40"/><coach position="first_base_coach" first="Ron" last="Johnson" id="116622" num="50"/><coach position="third_base_coach" first="Tim" last="Bogar" id="111148" num="17"/><coach position="bench_coach" first="DeMarlo" last="Hale" id="427204" num="22"/><coach position="bullpen_coach" first="Gary" last="Tuck" id="492898" num="57"/> </team>
56
- <umpires><umpire position="home" name="Jerry Layne" id="427299"/><umpire position="first" name="Brian Knight" id="427286"/><umpire position="second" name="Tim McClelland" id="427326"/><umpire position="third" name="Bob Davidson" id="427099"/></umpires></game>
@@ -1,12 +0,0 @@
1
- require './test/test_helper.rb'
2
-
3
- class TestCreateMlbGameFromGamedayXMLGame < MiniTest::Unit::TestCase
4
- def test_create_game_data_from_gameday_xml_game
5
- GamedayGame.create_from_gameday_xml_game('gid_2011_07_04_tormlb_bosmlb_1')
6
- assert_equal 1, GamedayGame.all.count
7
- end
8
-
9
- def test_fail_gracefully_if_game_does_not_have_data
10
- refute GamedayGame.create_from_gameday_xml_game('gid_2011_07_04_tormlb_bosmlb_8')
11
- end
12
- end
@@ -1,8 +0,0 @@
1
- require './test/test_helper.rb'
2
-
3
- class TestCreatePlayersFromGamedayXMLGame < MiniTest::Unit::TestCase
4
- def test_create_players_from_gameday_xml_game
5
- Athlete.create_from_gameday_xml_game('gid_2011_07_04_tormlb_bosmlb_1')
6
- assert_equal 50, Athlete.all.count
7
- end
8
- end
@@ -1,12 +0,0 @@
1
- require './test/test_helper.rb'
2
-
3
- class GreenmonsterTest < MiniTest::Unit::TestCase
4
- def test_set_games_folder_location
5
- Greenmonster.set_games_folder('./test_greenmonster_folder')
6
- assert_equal './test_greenmonster_folder', Greenmonster.games_folder.to_s
7
- end
8
-
9
- def teardown
10
- Greenmonster.set_games_folder('./test/games')
11
- end
12
- end
@@ -1,7 +0,0 @@
1
- require './test/test_helper.rb'
2
-
3
- class GreenmonsterPlayerTest < MiniTest::Unit::TestCase
4
- def test_to_s
5
- assert_equal "Roy Hobbs", Athlete.new({:first => 'Roy', :last => 'Hobbs'}).to_s
6
- end
7
- end
@@ -1,107 +0,0 @@
1
- require './test/test_helper.rb'
2
-
3
- class GreenmonsterSpiderTest < MiniTest::Unit::TestCase
4
- def setup
5
- @local_test_data_location = "./greenmonster_test_games"
6
- FileUtils.mkdir_p @local_test_data_location
7
- end
8
-
9
- def test_format_date_as_folder
10
- assert_equal "year_2011/month_07/day_04", Greenmonster::Spider.format_date_as_folder(Date.new(2011,7,4))
11
- assert_equal "year_2012/month_12/day_31", Greenmonster::Spider.format_date_as_folder(Date.new(2012,12,31))
12
- end
13
-
14
- def test_copy_gameday_xml
15
- paths = {
16
- :localGameFolder => "#{@local_test_data_location}/mlb/year_2011/month_05/day_03/gid_2011_05_03_sfnmlb_nynmlb_1/",
17
- :mlbGameFolder => "http://gd2.mlb.com/components/game/mlb/year_2011/month_05/day_03/gid_2011_05_03_sfnmlb_nynmlb_1/"
18
- }
19
- FileUtils.mkdir_p paths[:localGameFolder] + 'inning'
20
-
21
- %w(linescore.xml inning_all.xml).each do |f|
22
- Greenmonster::Spider.copy_gameday_xml(f,paths)
23
- end
24
-
25
- assert_equal 287337, Nokogiri::XML(open(paths[:localGameFolder] + 'linescore.xml')).search("game").first.attribute('game_pk').value.to_i
26
- assert_equal 10, Nokogiri::XML(open(paths[:localGameFolder] + 'inning/inning_all.xml')).search("inning").count
27
- assert_equal 400023, Nokogiri::XML(open(paths[:localGameFolder] + 'inning/inning_all.xml')).search("atbat").first.attribute('batter').value.to_i
28
- end
29
-
30
- def test_pull_day
31
- Greenmonster::Spider.pull_day({:print_games => false, :games_folder => @local_test_data_location, :date => Date.new(2011,6,7)})
32
-
33
- assert_equal 17, Dir.entries(@local_test_data_location + '/mlb/year_2011/month_06/day_07/').count
34
-
35
- game_location = @local_test_data_location + '/mlb/year_2011/month_06/day_07/gid_2011_06_07_bosmlb_nyamlb_1'
36
- %w(linescore.xml boxscore.xml players.xml eventLog.xml inning).each do |f|
37
- assert Dir.entries(game_location).include? f
38
- end
39
-
40
- boxscore = Nokogiri::XML(open(game_location + '/boxscore.xml'))
41
- eventlog = Nokogiri::XML(open(game_location + '/eventLog.xml'))
42
- players = Nokogiri::XML(open(game_location + '/players.xml'))
43
- innings = Nokogiri::XML(open(game_location + '/inning/inning_all.xml'))
44
-
45
- assert_equal 8, boxscore.search('pitcher').count
46
- assert_equal 147, boxscore.search('boxscore').first.attribute('home_id').value.to_i
47
- assert eventlog.search("event[number='19']").attribute('description').value.include?('Pedroia walks.')
48
- assert_equal 'Magadan', players.search("team[type='away']").search("coach[position='batting_coach']").attribute('last').value
49
- assert_equal 'Strikeout', innings.search('atbat').last.attribute('event').value
50
- end
51
-
52
- def test_pull_non_mlb_sport_code_games
53
- Greenmonster::Spider.pull_day({:sport_code => 'asx', :print_games => false, :games_folder => @local_test_data_location, :date => Date.new(2011,9,12)})
54
-
55
- assert_equal 4, Dir.entries(@local_test_data_location + '/asx/year_2011/month_09/day_12/').count
56
- %w(linescore.xml boxscore.xml players.xml eventLog.xml inning).each do |f|
57
- assert Dir.entries(@local_test_data_location + '/asx/year_2011/month_09/day_12/gid_2011_09_12_staasx_aubasx_1/').include? f
58
- end
59
- end
60
-
61
- def test_pull_games_prior_to_2008
62
- Greenmonster::Spider.pull_game('gid_2007_04_15_detmlb_tormlb_1', {:games_folder => @local_test_data_location, :print_games => false})
63
- assert_equal 12, Dir.entries(@local_test_data_location + '/mlb/year_2007/month_04/day_15/gid_2007_04_15_detmlb_tormlb_1/inning/').count
64
- end
65
-
66
- def test_pull_all_sport_codes_for_day
67
- Greenmonster::Spider.pull_day({:all_sport_codes => true, :print_games => false, :games_folder => @local_test_data_location, :date => Date.new(2011,9,13)})
68
- assert_equal 8, Dir.entries(@local_test_data_location).count
69
- end
70
-
71
- def test_pull_days
72
- Greenmonster::Spider.pull_days((Date.new(2011,10,9)..Date.new(2011,10,10)), {:print_games => false, :games_folder => @local_test_data_location})
73
- assert_equal 4, Dir.entries(@local_test_data_location + '/mlb/year_2011/month_10/').count
74
- assert_equal 6, Dir.entries(@local_test_data_location + '/mlb/year_2011/month_10/day_09').count
75
- end
76
-
77
- def test_pull_day_with_default_folder_location
78
- Greenmonster.set_games_folder @local_test_data_location
79
- Greenmonster::Spider.pull_day({:date => Date.new(2011,7,4), :print_games => false})
80
- assert_equal 288186, Nokogiri::XML(open(@local_test_data_location + '/mlb/year_2011/month_07/day_04/gid_2011_07_04_tormlb_bosmlb_1/boxscore.xml')).search('boxscore').first.attribute('game_pk').value.to_i
81
- end
82
-
83
- def test_pull_single_game_by_game_id
84
- Greenmonster::Spider.pull_game('gid_2011_07_04_tormlb_bosmlb_1', {:games_folder => @local_test_data_location, :print_games => false})
85
- end
86
-
87
- def test_no_exception_raised_if_game_data_not_available
88
- assert_output(nil,'') do
89
- Greenmonster::Spider.pull_game('gid_2011_07_04_zzzmlb_yyymlb_1', {:games_folder => @local_test_data_location, :print_games => false})
90
- end
91
- end
92
-
93
- def test_local_file_not_created_if_remote_file_does_not_exist
94
- Greenmonster::Spider.pull_game('gid_2011_07_01_xxxmlb_yyymlb_1', {:games_folder => @local_test_data_location, :print_games => false})
95
- assert_equal 3, Dir.entries(@local_test_data_location + '/mlb/year_2011/month_07/day_01/gid_2011_07_01_xxxmlb_yyymlb_1').count
96
- end
97
-
98
- def test_sport_code_argument_as_array
99
- Greenmonster::Spider.pull_day({:date => Date.new(2011,9,16), :sport_code => ['mlb','rok'], :print_games => false, :games_folder => @local_test_data_location})
100
- assert_equal 4, Dir.entries(@local_test_data_location).count
101
- end
102
-
103
- def teardown
104
- FileUtils.remove_dir @local_test_data_location
105
- Greenmonster.set_games_folder('./test/games')
106
- end
107
- end