diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 01b78fe5..37a1daf1 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1633,7 +1633,12 @@ class Database: pdata[p]['street3CheckCallRaiseChance'], pdata[p]['street3CheckCallRaiseDone'], pdata[p]['street4CheckCallRaiseChance'], - pdata[p]['street4CheckCallRaiseDone'] + pdata[p]['street4CheckCallRaiseDone'], + pdata[p]['street0Raises'], + pdata[p]['street1Raises'], + pdata[p]['street2Raises'], + pdata[p]['street3Raises'], + pdata[p]['street4Raises'] ) ) q = self.sql.query['store_hands_players'] @@ -1662,7 +1667,7 @@ class Database: #print "DEBUG: %s %s %s" %(hid, pids, pdata) inserts = [] for p in pdata: - line = [0]*61 + line = [0]*76 line[0] = 1 # HDs if pdata[p]['street0VPI']: line[1] = 1 @@ -1719,13 +1724,29 @@ class Database: if pdata[p]['street3CheckCallRaiseDone']: line[52] = 1 if pdata[p]['street4CheckCallRaiseChance']: line[53] = 1 if pdata[p]['street4CheckCallRaiseDone']: line[54] = 1 - line[55] = gid # gametypeId - line[56] = pids[p] # playerId - line[57] = len(pids) # activeSeats + if pdata[p]['street0Calls']: line[55] = 1 + if pdata[p]['street1Calls']: line[56] = 1 + if pdata[p]['street2Calls']: line[57] = 1 + if pdata[p]['street3Calls']: line[58] = 1 + if pdata[p]['street4Calls']: line[59] = 1 + if pdata[p]['street0Bets']: line[60] = 1 + if pdata[p]['street1Bets']: line[61] = 1 + if pdata[p]['street2Bets']: line[62] = 1 + if pdata[p]['street3Bets']: line[63] = 1 + if pdata[p]['street4Bets']: line[64] = 1 + if pdata[p]['street0Raises']: line[65] = 1 + if pdata[p]['street1Raises']: line[66] = 1 + if pdata[p]['street2Raises']: line[67] = 1 + if pdata[p]['street3Raises']: line[68] = 1 + if pdata[p]['street4Raises']: line[69] = 1 + + line[70] = gid # gametypeId + line[71] = pids[p] # playerId + line[72] = len(pids) # activeSeats pos = {'B':'B', 'S':'S', 0:'D', 1:'C', 2:'M', 3:'M', 4:'M', 5:'E', 6:'E', 7:'E', 8:'E', 9:'E' } - line[58] = pos[pdata[p]['position']] - line[59] = pdata[p]['tourneyTypeId'] - line[60] = styleKey # styleKey + line[73] = pos[pdata[p]['position']] + line[74] = pdata[p]['tourneyTypeId'] + line[75] = styleKey # styleKey inserts.append(line) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index b222fc01..d730c232 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -62,6 +62,7 @@ class DerivedStats(): for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 self.handsplayers[player[1]]['street%dBets' % i] = 0 + self.handsplayers[player[1]]['street%dRaises' % i] = 0 for i in range(1,5): self.handsplayers[player[1]]['street%dCBChance' %i] = False self.handsplayers[player[1]]['street%dCBDone' %i] = False diff --git a/pyfpdb/GuiPlayerStats.py b/pyfpdb/GuiPlayerStats.py index 41e82ed8..5a1acc4d 100644 --- a/pyfpdb/GuiPlayerStats.py +++ b/pyfpdb/GuiPlayerStats.py @@ -93,10 +93,13 @@ class GuiPlayerStats (threading.Thread): , ["plposition", False, "Posn", 1.0, "%s", "str"] # true not allowed for this line (set in code) , ["pname", False, "Name", 0.0, "%s", "str"] # true not allowed for this line (set in code) , ["n", True, "Hds", 1.0, "%1.0f", "str"] - , ["avgseats", False, "Seats", 1.0, "%3.1f", "str"] + , ["avgseats", False, "Seats", 1.0, "%3.1f", "str"] , ["vpip", True, "VPIP", 1.0, "%3.1f", "str"] , ["pfr", True, "PFR", 1.0, "%3.1f", "str"] , ["pf3", True, "PF3", 1.0, "%3.1f", "str"] + , ["aggfac", True, "AggFac", 1.0, "%2.2f", "str"] + , ["aggfrq", True, "AggFreq", 1.0, "%3.1f", "str"] + , ["conbet", True, "ContBet", 1.0, "%3.1f", "str"] , ["steals", True, "Steals", 1.0, "%3.1f", "str"] , ["saw_f", True, "Saw_F", 1.0, "%3.1f", "str"] , ["sawsd", True, "SawSD", 1.0, "%3.1f", "str"] diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index 1a5f77fa..a70d2b67 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -508,6 +508,9 @@ Left-Drag to Move" + + + diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index af1d9395..8966eb78 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -570,6 +570,9 @@ Left-Drag to Move" + + + diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 24dee18e..940a58ff 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -819,7 +819,6 @@ class Sql: street2Raises INT, street3Raises INT, street4Raises INT, - actionString REAL) """ @@ -1337,6 +1336,21 @@ class Sql: sum(hc.street3CheckCallRaiseDone) AS ccr_3, sum(hc.street4CheckCallRaiseChance) AS ccr_opp_4, sum(hc.street4CheckCallRaiseDone) AS ccr_4 + sum(hc.street0Calls) AS call_0, + sum(hc.street1Calls) AS call_1, + sum(hc.street2Calls) AS call_2, + sum(hc.street3Calls) AS call_3, + sum(hc.street4Calls) AS call_4, + sum(hc.street0Bets) AS bet_0, + sum(hc.street1Bets) AS bet_1, + sum(hc.street2Bets) AS bet_2, + sum(hc.street3Bets) AS bet_3, + sum(hc.street4Bets) AS bet_4, + sum(hc.street0Raises) AS raise_0, + sum(hc.street1Raises) AS raise_1, + sum(hc.street2Raises) AS raise_2, + sum(hc.street3Raises) AS raise_3, + sum(hc.street4Raises) AS raise_4 FROM Hands h INNER JOIN HandsPlayers hp ON (hp.handId = h.id) INNER JOIN HudCache hc ON ( hc.PlayerId = hp.PlayerId+0 @@ -1420,7 +1434,22 @@ class Sql: sum(hc.street3CheckCallRaiseChance) AS ccr_opp_3, sum(hc.street3CheckCallRaiseDone) AS ccr_3, sum(hc.street4CheckCallRaiseChance) AS ccr_opp_4, - sum(hc.street4CheckCallRaiseDone) AS ccr_4 + sum(hc.street4CheckCallRaiseDone) AS ccr_4, + sum(hc.street0Calls) AS call_0, + sum(hc.street1Calls) AS call_1, + sum(hc.street2Calls) AS call_2, + sum(hc.street3Calls) AS call_3, + sum(hc.street4Calls) AS call_4, + sum(hc.street0Bets) AS bet_0, + sum(hc.street1Bets) AS bet_1, + sum(hc.street2Bets) AS bet_2, + sum(hc.street3Bets) AS bet_3, + sum(hc.street4Bets) AS bet_4, + sum(hc.street0Raises) AS raise_0, + sum(hc.street1Raises) AS raise_1, + sum(hc.street2Raises) AS raise_2, + sum(hc.street3Raises) AS raise_3, + sum(hc.street4Raises) AS raise_4 FROM Hands h INNER JOIN HandsPlayers hp ON (hp.handId = h.id) INNER JOIN HudCache hc ON (hc.playerId = hp.playerId) @@ -1531,7 +1560,22 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 FROM Hands h INNER JOIN Hands h2 ON (h2.id > %s AND h2.tableName = h.tableName) @@ -1618,8 +1662,23 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 - FROM Hands h /* this hand */ + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 + FROM Hands h /* this hand */ INNER JOIN Hands h2 ON ( h2.id > %s /* other hands */ AND h2.tableName = h.tableName) INNER JOIN HandsPlayers hp ON (h.id = hp.handId) /* players in this hand */ @@ -1706,8 +1765,23 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 - FROM Hands h /* this hand */ + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 + FROM Hands h /* this hand */ INNER JOIN Hands h2 ON ( h2.id > %s /* other hands */ AND h2.tableName = h.tableName) INNER JOIN HandsPlayers hp ON (h.id = hp.handId) /* players in this hand */ @@ -1913,6 +1987,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -1998,6 +2084,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -2084,6 +2182,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -2632,6 +2742,7 @@ class Sql: GROUP BY h.handStart, hp.handId, hp.sawShowdown, hp.totalProfit ORDER BY h.handStart""" + #################################### # Session stats query #################################### @@ -2743,6 +2854,21 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -2818,6 +2944,21 @@ class Sql: ,sum(street3CheckCallRaiseDone) ,sum(street4CheckCallRaiseChance) ,sum(street4CheckCallRaiseDone) + ,sum(street0Calls) + ,sum(street1Calls) + ,sum(street2Calls) + ,sum(street3Calls) + ,sum(street4Calls) + ,sum(street0Bets) + ,sum(street1Bets) + ,sum(street2Bets) + ,sum(street3Bets) + ,sum(street4Bets) + ,sum(hp.street0Raises) + ,sum(hp.street1Raises) + ,sum(hp.street2Raises) + ,sum(hp.street3Raises) + ,sum(hp.street4Raises) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -2892,6 +3033,21 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -2967,6 +3123,21 @@ class Sql: ,sum(CAST(street3CheckCallRaiseDone as integer)) ,sum(CAST(street4CheckCallRaiseChance as integer)) ,sum(CAST(street4CheckCallRaiseDone as integer)) + ,sum(CAST(street0Calls as integer)) + ,sum(CAST(street1Calls as integer)) + ,sum(CAST(street2Calls as integer)) + ,sum(CAST(street3Calls as integer)) + ,sum(CAST(street4Calls as integer)) + ,sum(CAST(street0Bets as integer)) + ,sum(CAST(street1Bets as integer)) + ,sum(CAST(street2Bets as integer)) + ,sum(CAST(street3Bets as integer)) + ,sum(CAST(street4Bets as integer)) + ,sum(CAST(hp.street0Raises as integer)) + ,sum(CAST(hp.street1Raises as integer)) + ,sum(CAST(hp.street2Raises as integer)) + ,sum(CAST(hp.street3Raises as integer)) + ,sum(CAST(hp.street4Raises as integer)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -3041,6 +3212,21 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -3116,6 +3302,21 @@ class Sql: ,sum(CAST(street3CheckCallRaiseDone as integer)) ,sum(CAST(street4CheckCallRaiseChance as integer)) ,sum(CAST(street4CheckCallRaiseDone as integer)) + ,sum(CAST(street0Calls as integer)) + ,sum(CAST(street1Calls as integer)) + ,sum(CAST(street2Calls as integer)) + ,sum(CAST(street3Calls as integer)) + ,sum(CAST(street4Calls as integer)) + ,sum(CAST(street0Bets as integer)) + ,sum(CAST(street1Bets as integer)) + ,sum(CAST(street2Bets as integer)) + ,sum(CAST(street3Bets as integer)) + ,sum(CAST(street4Bets as integer)) + ,sum(CAST(hp.street0Raises as integer)) + ,sum(CAST(hp.street1Raises as integer)) + ,sum(CAST(hp.street2Raises as integer)) + ,sum(CAST(hp.street3Raises as integer)) + ,sum(CAST(hp.street4Raises as integer)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -3189,7 +3390,22 @@ class Sql: street3CheckCallRaiseChance, street3CheckCallRaiseDone, street4CheckCallRaiseChance, - street4CheckCallRaiseDone) + street4CheckCallRaiseDone, + street0Calls, + street1Calls, + street2Calls, + street3Calls, + street4Calls, + street0Bets, + street1Bets, + street2Bets, + street3Bets, + street4Bets, + street0Raises, + street1Raises, + street2Raises, + street3Raises, + street4Raises) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, @@ -3202,6 +3418,9 @@ class Sql: %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, %s)""" self.query['update_hudcache'] = """ @@ -3260,7 +3479,22 @@ class Sql: street3CheckCallRaiseChance=street3CheckCallRaiseChance+%s, street3CheckCallRaiseDone=street3CheckCallRaiseDone+%s, street4CheckCallRaiseChance=street4CheckCallRaiseChance+%s, - street4CheckCallRaiseDone=street4CheckCallRaiseDone+%s + street4CheckCallRaiseDone=street4CheckCallRaiseDone+%s, + street0Calls=street0Calls+%s, + street1Calls=street1Calls+%s, + street2Calls=street2Calls+%s, + street3Calls=street3Calls+%s, + street4Calls=street4Calls+%s, + street0Bets=street0Bets+%s, + street1Bets=street1Bets+%s, + street2Bets=street2Bets+%s, + street3Bets=street3Bets+%s, + street4Bets=street4Bets+%s, + street0Raises=street0Raises+%s, + street1Raises=street1Raises+%s, + street2Raises=street2Raises+%s, + street3Raises=street3Raises+%s, + street4Raises=street4Raises+%s WHERE gametypeId+0=%s AND playerId=%s AND activeSeats=%s @@ -3586,7 +3820,12 @@ class Sql: street3CheckCallRaiseChance, street3CheckCallRaiseDone, street4CheckCallRaiseChance, - street4CheckCallRaiseDone + street4CheckCallRaiseDone, + street0Raises, + street1Raises, + street2Raises, + street3Raises, + street4Raises ) VALUES ( %s, %s, %s, %s, %s, @@ -3604,6 +3843,7 @@ class Sql: %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, %s, %s, %s, %s, %s )""" diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 799103e1..ca42fbeb 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -504,6 +504,91 @@ def a_freq_123(stat_dict, player): '(%d/%d)' % (0, 0), 'Post-Flop Aggression Freq' ) + +def agg_freq(stat_dict, player): + """ Post-Flop aggression frequency.""" + """ Aggression frequency % = (times bet or raised post-flop) * 100 / (times bet, raised, called, or folded post-flop) """ + stat = 0.0 + try: + """ Agression on the flop and all streets """ + bet_raise = stat_dict[player]['aggr_1'] + stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] + stat_dict[player]['aggr_4'] + """ number post flop streets seen, this must be number of post-flop calls !! """ + post_call = stat_dict[player]['call_1'] + stat_dict[player]['call_2'] + stat_dict[player]['call_3'] + stat_dict[player]['call_4'] + """ Number of post flop folds this info is not yet in the database """ + post_fold = stat_dict[player]['f_freq_1'] + stat_dict[player]['f_freq_2'] + stat_dict[player]['f_freq_3'] + stat_dict[player]['f_freq_4'] + + stat = float (bet_raise) / float(post_call + post_fold + bet_raise) + + return (stat, + '%3.1f' % (100*stat) + '%', + 'afr=%3.1f' % (100*stat) + '%', + 'agg_fr=%3.1f' % (100*stat) + '%', + '(%d/%d)' % (bet_raise, (post_call + post_fold + bet_raise)), + 'Aggression Freq' + ) + except: + return (stat, + '%2.1f' % (0) + '%', + 'af=%3.1f' % (0) + '%', + 'agg_f=%3.1f' % (0) + '%', + '(%d/%d)' % (0, 0), + 'Aggression Freq' + ) + +def agg_fact(stat_dict, player): + """ Post-Flop aggression frequency.""" + """ Aggression factor = (times bet or raised post-flop) / (times called post-flop) """ + stat = 0.0 + try: + bet_raise = stat_dict[player]['aggr_1'] + stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] + stat_dict[player]['aggr_4'] + post_call = stat_dict[player]['call_1'] + stat_dict[player]['call_2'] + stat_dict[player]['call_3'] + stat_dict[player]['call_4'] + + if post_call > 0: + stat = float (bet_raise) / float(post_call) + else: + stat = float (bet_raise) + return (stat, + '%2.2f' % (stat) , + 'afa=%2.2f' % (stat) , + 'agg_fa=%2.2f' % (stat) , + '(%d/%d)' % (bet_raise, post_call), + 'Aggression Factor' + ) + except: + return (stat, + '%2.2f' % (0) , + 'afa=%2.2f' % (0) , + 'agg_fa=%2.2f' % (0), + '(%d/%d)' % (0, 0), + 'Aggression Factor' + ) + + +def cbet(stat_dict, player): + + """ Flop continuation bet.""" + """ Continuation bet % = (times made a continuation bet on the flop) * 100 / (number of opportunities to make a continuation bet on the flop) """ + + stat = 0.0 + try: + cbets = stat_dict[player]['cb_1']+stat_dict[player]['cb_2']+stat_dict[player]['cb_3']+stat_dict[player]['cb_4'] + oppt = stat_dict[player]['cb_opp_1']+stat_dict[player]['cb_opp_2']+stat_dict[player]['cb_opp_3']+stat_dict[player]['cb_opp_4'] + stat = float(cbets)/float(oppt) + return (stat, + '%3.1f' % (100*stat) + '%', + 'cbet=%3.1f' % (100*stat) + '%', + 'cbet=%3.1f' % (100*stat) + '%', + '(%d/%d)' % (cbets, oppt), + '% continuation bet ' + ) + except: + return (stat, + '%3.1f' % (0) + '%', + 'cbet=%3.1f' % (0) + '%', + 'cbet=%3.1f' % (0) + '%', + '(%d/%d)' % (0, 0), + '% continuation bet ' + ) def cb1(stat_dict, player): """ Flop continuation bet.""" diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt index 7ffad80f..a7be25b2 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt @@ -1,137 +1,137 @@ -PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($20 in chips) -Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [2h Th] -Player0: calls $0.25 -Player1: checks -*** FLOP *** [4c 8c Ac] -Player1: checks -Player0: checks -*** TURN *** [4c 8c Ac] [7s] -Player1: checks -Player0: bets $1 -Player1: folds -Uncalled bet ($1) returned to Player0 -Player0 collected $0.95 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0.05 -Board [4c 8c Ac 7s] -Seat 1: Player0 (button) (small blind) collected ($0.95) -Seat 2: Player1 (big blind) folded on the Turn - - - -PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($20.45 in chips) -Seat 2: Player1 ($50 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [7h Kh] -Player1: raises $1 to $1.50 -Player0: folds -Uncalled bet ($1) returned to Player1 -Player1 collected $1 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop -Seat 2: Player1 (button) (small blind) collected ($1) - - - -PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($19.95 in chips) -Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [5c 8c] -Player0: folds -Uncalled bet ($0.25) returned to Player1 -Player1 collected $0.50 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop -Seat 2: Player1 (big blind) collected ($0.50) - - - -PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($19.70 in chips) -Seat 2: Player1 ($50.75 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [Ks 9c] -Player1: raises $1 to $1.50 -Player0: calls $1 -*** FLOP *** [3d As 4s] -Player0: checks -Player1: bets $2 -Player0: calls $2 -*** TURN *** [3d As 4s] [Jd] -Player0: checks -Player1: checks -*** RIVER *** [3d As 4s Jd] [3h] -Player0: checks -Player1: checks -*** SHOW DOWN *** -Player0: shows [Ks 9c] (a pair of Threes) -Player1: mucks hand -Player0 collected $6.70 from pot -*** SUMMARY *** -Total pot $7 | Rake $0.30 -Board [3d As 4s Jd 3h] -Seat 1: Player0 (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes -Seat 2: Player1 (button) (small blind) mucked [6c 5s] - - - -PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($22.90 in chips) -Seat 2: Player1 ($50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [Ts 3d] -Player0: folds -Uncalled bet ($0.25) returned to Player1 -Player1 collected $0.50 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop -Seat 2: Player1 (big blind) collected ($0.50) - - - -PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($22.65 in chips) -Seat 2: Player1 ($50.25 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [4h Ks] -Player1: raises $1 to $1.50 -Player0: folds -Uncalled bet ($1) returned to Player1 -Player1 collected $1 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop -Seat 2: Player1 (button) (small blind) collected ($1) - +PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($20 in chips) +Seat 2: Player1 ($50.50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [2h Th] +Player0: calls $0.25 +Player1: checks +*** FLOP *** [4c 8c Ac] +Player1: checks +Player0: checks +*** TURN *** [4c 8c Ac] [7s] +Player1: checks +Player0: bets $1 +Player1: folds +Uncalled bet ($1) returned to Player0 +Player0 collected $0.95 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0.05 +Board [4c 8c Ac 7s] +Seat 1: Player0 (button) (small blind) collected ($0.95) +Seat 2: Player1 (big blind) folded on the Turn + + + +PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($20.45 in chips) +Seat 2: Player1 ($50 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [7h Kh] +Player1: raises $1 to $1.50 +Player0: folds +Uncalled bet ($1) returned to Player1 +Player1 collected $1 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 1: Player0 (big blind) folded before Flop +Seat 2: Player1 (button) (small blind) collected ($1) + + + +PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($19.95 in chips) +Seat 2: Player1 ($50.50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [5c 8c] +Player0: folds +Uncalled bet ($0.25) returned to Player1 +Player1 collected $0.50 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $0.50 | Rake $0 +Seat 1: Player0 (button) (small blind) folded before Flop +Seat 2: Player1 (big blind) collected ($0.50) + + + +PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($19.70 in chips) +Seat 2: Player1 ($50.75 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [Ks 9c] +Player1: raises $1 to $1.50 +Player0: calls $1 +*** FLOP *** [3d As 4s] +Player0: checks +Player1: bets $2 +Player0: calls $2 +*** TURN *** [3d As 4s] [Jd] +Player0: checks +Player1: checks +*** RIVER *** [3d As 4s Jd] [3h] +Player0: checks +Player1: checks +*** SHOW DOWN *** +Player0: shows [Ks 9c] (a pair of Threes) +Player1: mucks hand +Player0 collected $6.70 from pot +*** SUMMARY *** +Total pot $7 | Rake $0.30 +Board [3d As 4s Jd 3h] +Seat 1: Player0 (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes +Seat 2: Player1 (button) (small blind) mucked [6c 5s] + + + +PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($22.90 in chips) +Seat 2: Player1 ($50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [Ts 3d] +Player0: folds +Uncalled bet ($0.25) returned to Player1 +Player1 collected $0.50 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $0.50 | Rake $0 +Seat 1: Player0 (button) (small blind) folded before Flop +Seat 2: Player1 (big blind) collected ($0.50) + + + +PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($22.65 in chips) +Seat 2: Player1 ($50.25 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [4h Ks] +Player1: raises $1 to $1.50 +Player0: folds +Uncalled bet ($1) returned to Player1 +Player1 collected $1 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 1: Player0 (big blind) folded before Flop +Seat 2: Player1 (button) (small blind) collected ($1) + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt index 9114b678..df2f01aa 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt @@ -1,49 +1,49 @@ -PokerStars Game #42738187409: Hold'em No Limit ($0.01/$0.02 USD) - 2010/04/16 11:14:06 WET [2010/04/16 6:14:06 ET] -Table 'Circinus V' 9-max Seat #4 is the button -Seat 1: Player2 ($4.26 in chips) -Seat 2: Player1 ($0.35 in chips) -Seat 3: Player7 ($8.34 in chips) -Seat 4: Player5 ($3.70 in chips) -Seat 5: Player6 ($4.98 in chips) -Seat 7: Player3 ($2.55 in chips) -Seat 8: Player0 ($4.91 in chips) -Seat 9: Player4 ($1.31 in chips) -Player6: posts small blind $0.01 -Alehta: is sitting out -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [3d Ks] -Alehta leaves the table -Player0: calls $0.02 -Player4: raises $0.06 to $0.08 -Player2: raises $0.16 to $0.24 -AFMAT joins the table at seat #6 -Player1: folds -Player7: folds -Player5: folds -Player6: folds -Player3: folds -Player0: calls $0.22 -Player4: raises $1.07 to $1.31 and is all-in -Player2: calls $1.07 -Player0: folds -*** FLOP *** [7c Ac 6s] -*** TURN *** [7c Ac 6s] [5d] -*** RIVER *** [7c Ac 6s 5d] [Qh] -*** SHOW DOWN *** -Player4: shows [As Qs] (two pair, Aces and Queens) -Player2: shows [Jc Jd] (a pair of Jacks) -Player4 collected $2.79 from pot -*** SUMMARY *** -Total pot $2.89 | Rake $0.10 -Board [7c Ac 6s 5d Qh] -Seat 1: Player2 showed [Jc Jd] and lost with a pair of Jacks -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player7 folded before Flop (didn't bet) -Seat 4: Player5 (button) folded before Flop (didn't bet) -Seat 5: Player6 (small blind) folded before Flop -Seat 7: Player3 (big blind) folded before Flop -Seat 8: Player0 folded before Flop +PokerStars Game #42738187409: Hold'em No Limit ($0.01/$0.02 USD) - 2010/04/16 11:14:06 WET [2010/04/16 6:14:06 ET] +Table 'Circinus V' 9-max Seat #4 is the button +Seat 1: Player2 ($4.26 in chips) +Seat 2: Player1 ($0.35 in chips) +Seat 3: Player7 ($8.34 in chips) +Seat 4: Player5 ($3.70 in chips) +Seat 5: Player6 ($4.98 in chips) +Seat 7: Player3 ($2.55 in chips) +Seat 8: Player0 ($4.91 in chips) +Seat 9: Player4 ($1.31 in chips) +Player6: posts small blind $0.01 +Alehta: is sitting out +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [3d Ks] +Alehta leaves the table +Player0: calls $0.02 +Player4: raises $0.06 to $0.08 +Player2: raises $0.16 to $0.24 +AFMAT joins the table at seat #6 +Player1: folds +Player7: folds +Player5: folds +Player6: folds +Player3: folds +Player0: calls $0.22 +Player4: raises $1.07 to $1.31 and is all-in +Player2: calls $1.07 +Player0: folds +*** FLOP *** [7c Ac 6s] +*** TURN *** [7c Ac 6s] [5d] +*** RIVER *** [7c Ac 6s 5d] [Qh] +*** SHOW DOWN *** +Player4: shows [As Qs] (two pair, Aces and Queens) +Player2: shows [Jc Jd] (a pair of Jacks) +Player4 collected $2.79 from pot +*** SUMMARY *** +Total pot $2.89 | Rake $0.10 +Board [7c Ac 6s 5d Qh] +Seat 1: Player2 showed [Jc Jd] and lost with a pair of Jacks +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player7 folded before Flop (didn't bet) +Seat 4: Player5 (button) folded before Flop (didn't bet) +Seat 5: Player6 (small blind) folded before Flop +Seat 7: Player3 (big blind) folded before Flop +Seat 8: Player0 folded before Flop Seat 9: Player4 showed [As Qs] and won ($2.79) with two pair, Aces and Queens diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt index 8b1fbab3..1843bbf5 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt @@ -1,4854 +1,4854 @@ -PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($0.97 in chips) -Seat 3: Player23 ($1.53 in chips) -Seat 4: Player17 ($1.60 in chips) -Seat 5: Player5 ($2.91 in chips) -Seat 6: Player22 ($2.45 in chips) -Seat 7: Player19 ($2.56 in chips) -Seat 8: Player3 ($3.01 in chips) -Seat 9: Player21 ($0.58 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2d Kc] -Player3: folds -Player21: folds -Player14: calls $0.02 -Player23: calls $0.02 -Player17: checks -Player5: folds -Player22: calls $0.01 -Player19: checks -*** FLOP *** [Qh 8d 7s] -Player22: bets $0.06 -Player19: folds -Player14: calls $0.06 -Player23: folds -Player17: folds -*** TURN *** [Qh 8d 7s] [3s] -Player22: bets $0.30 -Player14: folds -Uncalled bet ($0.30) returned to Player22 -Player22 collected $0.22 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.22 | Rake $0 -Board [Qh 8d 7s 3s] -Seat 2: Player14 folded on the Turn -Seat 3: Player23 folded on the Flop -Seat 4: Player17 folded on the Flop -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) collected ($0.22) -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.91 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($2.54 in chips) -Seat 8: Player3 ($3.01 in chips) -Seat 9: Player21 ($0.58 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3h Td] -Player21: folds -Player14: folds -Player23: folds -Player17: folds -Player5: raises $0.10 to $0.12 -Player22: calls $0.12 -Player11 joins the table at seat #1 -Player19: folds -Player3: folds -*** FLOP *** [Js Qh 9s] -Player5: checks -Player22: bets $0.25 -Player5: folds -Uncalled bet ($0.25) returned to Player22 -Player22 collected $0.27 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.27 | Rake $0 -Board [Js Qh 9s] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded on the Flop -Seat 6: Player22 (button) collected ($0.27) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player3: posts small blind $0.01 -Player21: posts big blind $0.02 -Player11: sits out -*** HOLE CARDS *** -Dealt to Player17 [Qc 5d] -Player14: folds -Player23: folds -Player17: raises $0.04 to $0.06 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player21 (big blind) folded before Flop - - - -PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player11 ($1.60 in chips) -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.56 in chips) -Player21: posts small blind $0.01 -Player11: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d Qc] -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: calls $0.01 -Player11: checks -*** FLOP *** [7s 3s Kd] -Player21: bets $0.02 -Player11: folds -Uncalled bet ($0.02) returned to Player21 -Player21 collected $0.04 from pot -Player21: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Board [7s 3s Kd] -Seat 1: Player11 (big blind) folded on the Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player21 (small blind) collected ($0.04) - - - -PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player11 ($1.58 in chips) -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player11: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d 7d] -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player21: folds -Player11: calls $0.01 -Player14: checks -*** FLOP *** [5s 9c 4c] -Player11: bets $0.08 -Player14: calls $0.08 -Player17: calls $0.08 -Player19: folds -*** TURN *** [5s 9c 4c] [Td] -Player11: bets $0.04 -Player14: calls $0.04 -Player17: calls $0.04 -*** RIVER *** [5s 9c 4c Td] [Kh] -Player11: checks -Player14: bets $0.10 -Player17: folds -Player11: folds -Uncalled bet ($0.10) returned to Player14 -Player14 collected $0.44 from pot -*** SUMMARY *** -Total pot $0.44 | Rake $0 -Board [5s 9c 4c Td Kh] -Seat 1: Player11 (small blind) folded on the River -Seat 2: Player14 (big blind) collected ($0.44) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player11 ($1.44 in chips) -Seat 2: Player14 ($1.19 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.47 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player14: posts small blind $0.01 -Player23: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3s 5d] -Player17: folds -Player5: folds -Player22: raises $0.02 to $0.04 -Player19: folds -Player3: folds -Player21: folds -Player11: raises $0.14 to $0.18 -Player14: folds -Player23: calls $0.16 -Player22: calls $0.14 -*** FLOP *** [4h 6d 4s] -Player23: checks -Player22: checks -Player11: bets $0.55 -Player23: folds -Player22: folds -Uncalled bet ($0.55) returned to Player11 -Player11 collected $0.55 from pot -*** SUMMARY *** -Total pot $0.55 | Rake $0 -Board [4h 6d 4s] -Seat 1: Player11 (button) collected ($0.55) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player23 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.18 in chips) -Seat 3: Player23 ($2.13 in chips) -Seat 4: Player17 ($1.47 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player23: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c 5d] -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: calls $0.02 -Player23: calls $0.01 -Player17: checks -*** FLOP *** [8s 4s Ah] -Player23: checks -Player17: checks -Player14: bets $0.06 -Player23: folds -Player17: calls $0.06 -*** TURN *** [8s 4s Ah] [Qs] -Player17: bets $0.10 -Player14: calls $0.10 -*** RIVER *** [8s 4s Ah Qs] [9h] -Player17: checks -Player14: checks -*** SHOW DOWN *** -Player17: shows [2c 5d] (high card Ace) -Player14: shows [Ac Jc] (a pair of Aces) -Player14 collected $0.38 from pot -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [8s 4s Ah Qs 9h] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces -Seat 3: Player23 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.11 in chips) -Seat 4: Player17 ($1.29 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4h Qh] -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: folds -Player23: raises $0.04 to $0.06 -Player17: calls $0.05 -Player5: calls $0.04 -*** FLOP *** [7s 3s Ah] -Player17: bets $0.20 -Player5: folds -Player23: raises $1.85 to $2.05 and is all-in -Player17: folds -Uncalled bet ($1.85) returned to Player23 -Player23 collected $0.58 from pot -Player23: doesn't show hand -*** SUMMARY *** -Total pot $0.58 | Rake $0 -Board [7s 3s Ah] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 (button) collected ($0.58) -Seat 4: Player17 (small blind) folded on the Flop -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.43 in chips) -Seat 4: Player17 ($1.03 in chips) -Seat 5: Player5 ($2.73 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc 4s] -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: folds -Player23: raises $0.04 to $0.06 -Player17: folds -Player5: folds -Player22: calls $0.04 -*** FLOP *** [2h 7d 3s] -Player22: checks -Player23: checks -*** TURN *** [2h 7d 3s] [Ks] -Player22: bets $0.04 -Player23: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.13 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.13 | Rake $0 -Board [2h 7d 3s Ks] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded on the Turn -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) collected ($0.13) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.83 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.63 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 3s] -Player3: folds -Player21: folds -Player11: folds -Player14 has timed out -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: folds -Player19: calls $0.06 -*** FLOP *** [6d Jd 7c] -Player19: bets $0.04 -Player17: calls $0.04 -*** TURN *** [6d Jd 7c] [Js] -Player19: checks -Player17: bets $0.26 -Player19: folds -Uncalled bet ($0.26) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.25 | Rake $0 -Board [6d Jd 7c Js] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($2.39 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c 8c] -Player21: raises $0.06 to $0.08 -Player11: raises $0.10 to $0.18 -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: raises $0.40 to $0.58 and is all-in -Player11: calls $0.40 -*** FLOP *** [Qs Jh 6h] -*** TURN *** [Qs Jh 6h] [Jc] -*** RIVER *** [Qs Jh 6h Jc] [4h] -*** SHOW DOWN *** -Player21: shows [Ah Qh] (a flush, Ace high) -Player11: shows [Ac Qd] (two pair, Queens and Jacks) -Player21 collected $1.14 from pot -*** SUMMARY *** -Total pot $1.19 | Rake $0.05 -Board [Qs Jh 6h Jc 4h] -Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high - - - -PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player11 ($1.23 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($2.38 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.14 in chips) -Player3: posts small blind $0.01 -Player21: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 4h] -Player11: raises $0.04 to $0.06 -Player14: folds -Player23: folds -Player17: calls $0.06 -Player5: calls $0.06 -Player22: calls $0.06 -Player19: raises $0.18 to $0.24 -Player3: folds -Player21: folds -Player11: calls $0.18 -Player17: calls $0.18 -Player5: folds -Player22: folds -*** FLOP *** [Th 7c 5s] -Player11: bets $0.23 -Player17: folds -Player19: raises $1.91 to $2.14 and is all-in -Player11: calls $0.76 and is all-in -Uncalled bet ($1.15) returned to Player19 -*** TURN *** [Th 7c 5s] [Td] -*** RIVER *** [Th 7c 5s Td] [4s] -*** SHOW DOWN *** -Player11: shows [Kh Qh] (a pair of Tens) -Player19: shows [As Ac] (two pair, Aces and Tens) -Player19 collected $2.75 from pot -*** SUMMARY *** -Total pot $2.85 | Rake $0.10 -Board [Th 7c 5s Td 4s] -Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player5 folded before Flop -Seat 6: Player22 folded before Flop -Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player21 (big blind) folded before Flop - - - -PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.72 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.12 in chips) -Player21: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3d 4d] -Player23: folds -Player17: calls $0.02 -Player11 leaves the table -Player5: folds -Player22: folds -Player19: folds -Player3: calls $0.02 -Player21: folds -Player14: checks -*** FLOP *** [8s Ad 8h] -Player14: checks -Player17: checks -Player3: checks -*** TURN *** [8s Ad 8h] [8c] -Player14: bets $0.06 -Player17: folds -Player3: folds -Uncalled bet ($0.06) returned to Player14 -Player14 collected $0.07 from pot -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [8s Ad 8h 8c] -Seat 2: Player14 (big blind) collected ($0.07) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded on the Turn -Seat 9: Player21 (small blind) folded before Flop - - - -PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 2: Player14 ($1.43 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.70 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.11 in chips) -Player14: posts small blind $0.01 -Player23: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad Kd] -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player14: calls $0.01 -Player23: checks -*** FLOP *** [5c 9s Kh] -Player14: checks -Player23: checks -Player17: checks -*** TURN *** [5c 9s Kh] [7s] -Player14: bets $0.04 -Player23: calls $0.04 -Player21 leaves the table -Player17: calls $0.04 -*** RIVER *** [5c 9s Kh 7s] [3s] -Player14: bets $0.04 -Player23: raises $0.04 to $0.08 -Player17: folds -Player18 joins the table at seat #1 -Player14: calls $0.04 -*** SHOW DOWN *** -Player23: shows [Qs Ts] (a flush, Queen high) -Player14: mucks hand -Player23 collected $0.34 from pot -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [5c 9s Kh 7s 3s] -Seat 2: Player14 (small blind) mucked [Kc Td] -Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 (button) folded before Flop (didn't bet) - - - -PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 2: Player14 ($1.29 in chips) -Seat 3: Player23 ($2.57 in chips) -Seat 4: Player17 ($1.64 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Player23: posts small blind $0.01 -Player17: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [4c Js] -Player5: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player14: calls $0.02 -Player23: calls $0.01 -Player17: raises $0.12 to $0.14 -Player22: folds -Player14: folds -Player23: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Seat 2: Player14 (button) folded before Flop -Seat 3: Player23 (small blind) folded before Flop -Seat 4: Player17 (big blind) collected ($0.08) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) - - - -PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.70 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ts Qc] -Player9 joins the table at seat #9 -Player22: folds -Player19: folds -Player3: folds -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.04 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.04) -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) - - - -PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.72 in chips) -Seat 5: Player5 ($2.64 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($1.85 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -Player9: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [6d Ac] -Player19: folds -Player3: folds -Player9: checks -Player14: folds -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: checks -*** FLOP *** [7s 2d 3h] -Player22: checks -Player9: checks -Player17: bets $0.04 -Player22: calls $0.04 -Player9: folds -*** TURN *** [7s 2d 3h] [5d] -Player22: checks -Player17: checks -*** RIVER *** [7s 2d 3h 5d] [7c] -Player22: bets $0.02 -Player17: raises $0.06 to $0.08 -Player22: raises $0.06 to $0.14 -Player17: folds -Uncalled bet ($0.06) returned to Player22 -Player22 collected $0.31 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.31 | Rake $0 -Board [7s 2d 3h 5d 7c] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) collected ($0.31) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.71 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($1.83 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [9s Kd] -Player3: folds -Player9: calls $0.02 -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: calls $0.01 -Player19: checks -*** FLOP *** [9c Qh Tc] -Player22: bets $0.06 -Player19: folds -Player9: calls $0.06 -*** TURN *** [9c Qh Tc] [5h] -Player22: bets $0.12 -Player9: calls $0.12 -*** RIVER *** [9c Qh Tc 5h] [2c] -Player22: bets $0.12 -Player9: raises $0.12 to $0.24 -Player22: calls $0.12 -*** SHOW DOWN *** -Player9: shows [Ac Qc] (a flush, Ace high) -Player22: mucks hand -Player9 collected $0.90 from pot -*** SUMMARY *** -Total pot $0.90 | Rake $0 -Board [9c Qh Tc 5h 2c] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) mucked [Js 8c] -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high - - - -PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.27 in chips) -Seat 7: Player19 ($3.88 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.29 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ts 9h] -Player9: calls $0.02 -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: calls $0.08 -Player19: folds -Player3: folds -Player9: calls $0.06 -*** FLOP *** [Ad 8s Js] -Player9: checks -Player17: checks -Player22: bets $0.08 -Player9: folds -Player17: calls $0.08 -*** TURN *** [Ad 8s Js] [3s] -Player17: checks -Player22: bets $0.08 -Player17: calls $0.08 -*** RIVER *** [Ad 8s Js 3s] [Jh] -Player17: checks -Player22: bets $0.25 -Player17: folds -Uncalled bet ($0.25) returned to Player22 -Player22 collected $0.59 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.59 | Rake $0 -Board [Ad 8s Js 3s Jh] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) collected ($0.59) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.21 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [3c Tc] -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: raises $0.04 to $0.06 -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.05 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 collected ($0.05) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.80 in chips) -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.65 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.19 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6c Qs] -Player14: folds -Player23: folds -Player17: raises $0.04 to $0.06 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Player18: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 (big blind) folded before Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded before Flop - - - -PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.78 in chips) -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($2.17 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.65 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.18 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6c Ac] -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: calls $0.02 -Player3: folds -Player9: calls $0.02 -Player18: calls $0.01 -Player14: checks -*** FLOP *** [3s 7s Qh] -Player18: checks -Player14: checks -Player17: checks -Player22: checks -Player19: checks -Player9: checks -*** TURN *** [3s 7s Qh] [Ah] -Player23 leaves the table -Player18: checks -Player14: checks -Player17: checks -Player22: checks -Player19: checks -Player9: bets $0.02 -Player18: calls $0.02 -Player24 joins the table at seat #3 -Player14: calls $0.02 -Player17: folds -Player22: folds -Player19: folds -*** RIVER *** [3s 7s Qh Ah] [5d] -Player18: checks -Player14: checks -Player9: bets $0.02 -Player18: folds -Player14: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [3s 7s Qh Ah 5d] -Seat 1: Player18 (small blind) folded on the River -Seat 2: Player14 (big blind) folded on the River -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Turn -Seat 7: Player19 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) collected ($0.18) - - - -PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.23 in chips) -Seat 3: Player24 ($2 in chips) -Seat 4: Player17 ($2.15 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.63 in chips) -Seat 7: Player19 ($3.85 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c Qc] -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: calls $0.02 -Player3: calls $0.02 -Player9: folds -Player18: folds -Player14: calls $0.01 -Player24: checks -*** FLOP *** [5d 2s 3c] -Player14: checks -Player24: checks -Player17: bets $0.08 -Player22: folds -Player19: folds -Player3: folds -Player14: calls $0.08 -Player24: folds -*** TURN *** [5d 2s 3c] [9d] -Player14: checks -Player17: bets $0.20 -Player14: calls $0.20 -*** RIVER *** [5d 2s 3c 9d] [Jc] -Player14: checks -Player17: checks -*** SHOW DOWN *** -Player14: shows [4c 4s] (a pair of Fours) -Player17: mucks hand -Player14 collected $0.68 from pot -*** SUMMARY *** -Total pot $0.68 | Rake $0 -Board [5d 2s 3c 9d Jc] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 mucked [2c Qc] -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.98 in chips) -Seat 4: Player17 ($1.85 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($3.83 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc Td] -Player5: folds -Player22: folds -Player19: raises $0.06 to $0.08 -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: calls $0.07 -Player17: raises $0.40 to $0.48 -Player19: raises $3.35 to $3.83 and is all-in -Player24: folds -Player17: calls $1.37 and is all-in -Uncalled bet ($1.98) returned to Player19 -*** FLOP *** [3s 5c 7c] -*** TURN *** [3s 5c 7c] [Th] -*** RIVER *** [3s 5c 7c Th] [Jh] -*** SHOW DOWN *** -Player17: shows [Tc Td] (three of a kind, Tens) -Player19: shows [Ac As] (a pair of Aces) -Player17 collected $3.63 from pot -*** SUMMARY *** -Total pot $3.78 | Rake $0.15 -Board [3s 5c 7c Th Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 showed [Ac As] and lost with a pair of Aces -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.63 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 2s] -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.01 -Player5: checks -*** FLOP *** [6d 7h 3s] -Player17: bets $0.06 -Player5: folds -Player9: calls $0.06 -*** TURN *** [6d 7h 3s] [Kc] -Player17: checks -Player9: bets $0.04 -Player17: calls $0.04 -*** RIVER *** [6d 7h 3s Kc] [5d] -Player17: checks -Player9: bets $0.04 -Player17: raises $0.22 to $0.26 -Player9: calls $0.22 -*** SHOW DOWN *** -Player17: shows [Ad 2s] (high card Ace) -Player9: shows [Jc Js] (a pair of Jacks) -Player9 collected $0.78 from pot -*** SUMMARY *** -Total pot $0.78 | Rake $0 -Board [6d 7h 3s Kc 5d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks - - - -PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.25 in chips) -Seat 5: Player5 ($2.61 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.72 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 3s] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.02 -Player5: raises $0.10 to $0.12 -Player22: folds -Player9: calls $0.10 -Player17: calls $0.10 -*** FLOP *** [6h 2c Jd] -Player5: bets $0.29 -Player9: folds -Player17: folds -Uncalled bet ($0.29) returned to Player5 -Player5 collected $0.38 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [6h 2c Jd] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Flop -Seat 5: Player5 (small blind) collected ($0.38) -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.13 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd Th] -Player3: folds -Player9 said, "tu pua madre farolero" -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: folds -Player19: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded before Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.58 in chips) -Seat 7: Player19 ($1.96 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks 4h] -Player9 has timed out -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player5: folds -Player22: raises $0.02 to $0.04 -Player19: folds -Player3: folds -Uncalled bet ($0.02) returned to Player22 -Player22 collected $0.05 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) collected ($0.05) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jd Th] -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: checks -*** FLOP *** [4d 7d Kh] -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [4d 7d Kh] [3c] -Player9: checks -Player24: checks -Player17: bets $0.06 -Player9: folds -Player24: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [4d 7d Kh 3c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Turn -Seat 4: Player17 collected ($0.07) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded on the Turn - - - -PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.58 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9s 3d] -Player14: folds -Player24: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.01 -Player18: checks -*** FLOP *** [3c Ac Kc] -Player9: bets $0.02 -Player18: calls $0.02 -*** TURN *** [3c Ac Kc] [Qc] -Player9: bets $0.04 -Player18: folds -Uncalled bet ($0.04) returned to Player9 -Player9 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [3c Ac Kc Qc] -Seat 1: Player18 (big blind) folded on the Turn -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) collected ($0.08) - - - -PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.70 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.62 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6h 5c] -Player24: folds -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: checks -*** FLOP *** [4c 7c 6s] -Player14: checks -Player17: bets $0.08 -Player22: folds -Player9: calls $0.08 -Player14: folds -*** TURN *** [4c 7c 6s] [Th] -Player17: bets $0.32 -Player9: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.25 | Rake $0 -Board [4c 7c 6s Th] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded on the Turn - - - -PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.59 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.36 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.52 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [7c Tc] -Player17: calls $0.02 -Player5: raises $0.10 to $0.12 -Player22: calls $0.12 -Player19: folds -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.10 -*** FLOP *** [Jh 6c 5d] -Player17: checks -Player5: bets $0.29 -Player22: folds -Player17: calls $0.29 -*** TURN *** [Jh 6c 5d] [9d] -Player17: bets $0.32 -Player5: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.97 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.97 | Rake $0 -Board [Jh 6c 5d 9d] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 collected ($0.97) -Seat 5: Player5 folded on the Turn -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.86 in chips) -Seat 4: Player17 ($3.92 in chips) -Seat 5: Player5 ($2.46 in chips) -Seat 6: Player22 ($2.47 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.52 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 3s] -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.01 -Player17: checks -*** FLOP *** [2s Jd Qd] -Player24: checks -Player17: folds -Player9: checks -*** TURN *** [2s Jd Qd] [7h] -Player24: bets $0.06 -Player9: folds -Uncalled bet ($0.06) returned to Player24 -Player24 collected $0.06 from pot -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [2s Jd Qd 7h] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) collected ($0.06) -Seat 4: Player17 (big blind) folded on the Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.90 in chips) -Seat 5: Player5 ($2.46 in chips) -Seat 6: Player22 ($2.47 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.50 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [As 3c] -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player5: checks -*** FLOP *** [6s Js 9d] -Player5: checks -Player22: bets $0.04 -Player9: folds -Player5: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.07 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [6s Js 9d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 collected ($0.07) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.89 in chips) -Seat 5: Player5 ($2.44 in chips) -Seat 6: Player22 ($2.52 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.48 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d 6h] -Player19: raises $0.04 to $0.06 -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.06 -Player5: folds -Player22: folds -*** FLOP *** [5c 4h 3h] -Player19: bets $0.08 -Player17: calls $0.08 -*** TURN *** [5c 4h 3h] [5s] -Player19: bets $0.10 -Player17: calls $0.10 -*** RIVER *** [5c 4h 3h 5s] [9s] -Player19: bets $0.14 -Player17: folds -Uncalled bet ($0.14) returned to Player19 -Player19 collected $0.51 from pot -Player19: doesn't show hand -*** SUMMARY *** -Total pot $0.51 | Rake $0 -Board [5c 4h 3h 5s 9s] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 collected ($0.51) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.65 in chips) -Seat 5: Player5 ($2.43 in chips) -Seat 6: Player22 ($2.50 in chips) -Seat 7: Player19 ($2.22 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.48 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2s 4c] -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: checks -*** FLOP *** [Jh 9h Ac] -Player19: checks -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [Jh 9h Ac] [2d] -Player19: checks -Player9: bets $0.02 -Player24: calls $0.02 -Player17: calls $0.02 -Player19: folds -*** RIVER *** [Jh 9h Ac 2d] [Kd] -Player9: bets $0.02 -Player24: calls $0.02 -Player17: folds -*** SHOW DOWN *** -Player9: shows [Qc Qd] (a pair of Queens) -Player24: shows [7d Ad] (a pair of Aces) -Player24 collected $0.19 from pot -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [Jh 9h Ac 2d Kd] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces -Seat 4: Player17 folded on the River -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens - - - -PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.61 in chips) -Seat 5: Player5 ($2.43 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.20 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.42 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd 9d] -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player5: calls $0.06 -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.04 -*** FLOP *** [Tc Ts 8s] -Player9: checks -Player17: checks -Player5: checks -*** TURN *** [Tc Ts 8s] [Jh] -Player9: checks -Player17: bets $0.12 -Player5: folds -Player9: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [Tc Ts 8s Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.21) -Seat 5: Player5 folded on the Turn -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.76 in chips) -Seat 5: Player5 ($2.37 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.36 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ah Ad] -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player5 leaves the table -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.79 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.34 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8h 8s] -Player14: folds -Player24: folds -Player17: calls $0.02 -Player22: folds -Player19: folds -Player3: calls $0.02 -Player9: calls $0.01 -Player18: checks -*** FLOP *** [Ts 5c 5h] -Player0 joins the table at seat #5 -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** TURN *** [Ts 5c 5h] [9h] -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** RIVER *** [Ts 5c 5h 9h] [2d] -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** SHOW DOWN *** -Player9: shows [8d Qh] (a pair of Fives) -Player18: mucks hand -Player17: shows [8h 8s] (two pair, Eights and Fives) -Player3: mucks hand -Player17 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [Ts 5c 5h 9h 2d] -Seat 1: Player18 (big blind) mucked [Js 3h] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) mucked [Ac 3c] -Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives - - - -PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.67 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.60 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9h Kc] -Player24: folds -Player17: folds -Player0: raises $0.04 to $0.06 -Player22: calls $0.06 -Player19: folds -Player3: folds -Player9: calls $0.06 -Player18: folds -Player14: calls $0.04 -*** FLOP *** [As 4s Js] -Player14: checks -Player0: checks -Player22: checks -Player9: bets $0.10 -Player14: folds -Player0: folds -Player22: calls $0.10 -*** TURN *** [As 4s Js] [4c] -Player22: checks -Player9: bets $0.16 -Player22: calls $0.16 -*** RIVER *** [As 4s Js 4c] [Jc] -Player22: checks -Player9: bets $0.16 -Player22: raises $0.36 to $0.52 -Player9: calls $0.36 -*** SHOW DOWN *** -Player22: shows [Ks Qd] (two pair, Jacks and Fours) -Player9: shows [Ad 8h] (two pair, Aces and Jacks) -Player9 collected $1.76 from pot -*** SUMMARY *** -Total pot $1.81 | Rake $0.05 -Board [As 4s Js 4c Jc] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 folded on the Flop -Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and Jacks - - - -PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.52 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.54 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.24 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6h 8d] -Player17: folds -Player0: raises $0.02 to $0.04 -Player22: raises $0.04 to $0.08 -Player19: calls $0.08 -Player3: folds -Player9: calls $0.08 -Player18: folds -Player14: folds -Player24: folds -Player0: calls $0.04 -*** FLOP *** [4d Td 4s] -Player0: bets $0.22 -Player22: folds -Player19: folds -Player9: folds -Uncalled bet ($0.22) returned to Player0 -Player0 collected $0.35 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot $0.35 | Rake $0 -Board [4d Td 4s] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 collected ($0.35) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.51 in chips) -Seat 3: Player24 ($2.01 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.81 in chips) -Seat 6: Player22 ($1.57 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.16 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d Jd] -Player0: folds -Player22: calls $0.02 -Player19: folds -Player3: calls $0.02 -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.01 -Player17: raises $0.02 to $0.04 -Player22: calls $0.02 -Player3: calls $0.02 -Player9: calls $0.02 -Player24: calls $0.02 -*** FLOP *** [6d 9s 3d] -Player24: checks -Player17: bets $0.02 -Player22: folds -Player3: folds -Player9: calls $0.02 -Player24: calls $0.02 -*** TURN *** [6d 9s 3d] [3c] -Player24: checks -Player17: bets $0.02 -Player9: calls $0.02 -Player24: folds -*** RIVER *** [6d 9s 3d 3c] [5c] -Player17: bets $0.02 -Player9: calls $0.02 -*** SHOW DOWN *** -Player17: shows [8d Jd] (a pair of Threes) -Player9: shows [Ts 6s] (two pair, Sixes and Threes) -Player9 collected $0.34 from pot -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [6d 9s 3d 3c 5c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) folded on the Turn -Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes -Seat 5: Player0 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded on the Flop -Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes - - - -PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.51 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.75 in chips) -Seat 5: Player0 ($1.81 in chips) -Seat 6: Player22 ($1.53 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.40 in chips) -Player17: posts small blind $0.01 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5c As] -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: calls $0.02 -Player24: folds -Player17: calls $0.01 -Player0: checks -*** FLOP *** [3s 2c 5s] -Player17: checks -Player0: bets $0.04 -Player9: calls $0.04 -Player14: folds -Player17: raises $0.22 to $0.26 -Player0: raises $0.22 to $0.48 -Player9: folds -Player17: calls $0.22 -*** TURN *** [3s 2c 5s] [2h] -Player17: bets $0.36 -Player0: calls $0.36 -*** RIVER *** [3s 2c 5s 2h] [3d] -Player17: bets $0.90 -Player0: raises $0.05 to $0.95 and is all-in -Player17: calls $0.05 -*** SHOW DOWN *** -Player0: shows [5d 3h] (a full house, Threes full of Fives) -Player17: shows [5c As] (two pair, Fives and Threes) -Player0 collected $3.55 from pot -*** SUMMARY *** -Total pot $3.70 | Rake $0.15 -Board [3s 2c 5s 2h 3d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded on the Flop -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes -Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($1.94 in chips) -Seat 5: Player0 ($3.55 in chips) -Seat 6: Player22 ($1.53 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.34 in chips) -Player0: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kc 9d] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player0: calls $0.01 -Player22: checks -*** FLOP *** [6h 2s Ad] -Player9 said, "jajajaja tonto" -Player0: checks -Player22: bets $0.02 -Player9: calls $0.02 -Player0: calls $0.02 -*** TURN *** [6h 2s Ad] [9s] -Player0: checks -Player22: checks -Player9: checks -*** RIVER *** [6h 2s Ad 9s] [Jh] -Player0: checks -Player22: bets $0.06 -Player9: calls $0.06 -Player0: folds -*** SHOW DOWN *** -Player22: shows [As 5d] (a pair of Aces) -Player9: mucks hand -Player22 collected $0.24 from pot -*** SUMMARY *** -Total pot $0.24 | Rake $0 -Board [6h 2s Ad 9s Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player0 (small blind) folded on the River -Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 mucked [Ts Qs] - - - -PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.54 in chips) -Seat 5: Player0 ($3.51 in chips) -Seat 6: Player22 ($1.67 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.24 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 6c] -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.02 -Player0: calls $0.02 -Player22: calls $0.01 -Player19: checks -*** FLOP *** [Jh 7d 8h] -Player22: checks -Player19: checks -Player9: checks -Player17: bets $0.06 -Player0: calls $0.06 -Player22: folds -Player19: folds -Player9: calls $0.06 -*** TURN *** [Jh 7d 8h] [Qc] -Player9: checks -Player17: checks -Player0: checks -*** RIVER *** [Jh 7d 8h Qc] [5c] -Player9: bets $0.04 -Player17: folds -Player0: calls $0.04 -*** SHOW DOWN *** -Player9: shows [Ah Kh] (high card Ace) -Player0: shows [As 8s] (a pair of Eights) -Player0 collected $0.36 from pot -*** SUMMARY *** -Total pot $0.36 | Rake $0 -Board [Jh 7d 8h Qc 5c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights -Seat 6: Player22 (small blind) folded on the Flop -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Ah Kh] and lost with high card Ace - - - -PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.46 in chips) -Seat 5: Player0 ($3.75 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.09 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.12 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kh 2h] -Player9: folds -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player0: raises $0.04 to $0.06 -Player22: folds -Player19: folds -Player3: folds -Player24: calls $0.04 -Player17: calls $0.04 -*** FLOP *** [2s 2d Kc] -Player24: checks -Player17: bets $0.06 -Player0: calls $0.06 -Player24: folds -*** TURN *** [2s 2d Kc] [7h] -Player17: bets $0.20 -Player0: calls $0.20 -*** RIVER *** [2s 2d Kc 7h] [5s] -Player17: bets $3.04 -Player0 said, "lol" -Player0 said, "such bs" -Player0: folds -Uncalled bet ($3.04) returned to Player17 -Player17 collected $0.73 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.73 | Rake $0 -Board [2s 2d Kc 7h 5s] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.73) -Seat 5: Player0 folded on the River -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) -Seat 5: Player0 ($3.43 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.08 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.12 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c Ad] -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player0: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player9: checks -*** FLOP *** [2h Kd 8d] -Player9: bets $0.02 -Player19: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.05 from pot -Player0 leaves the table -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Board [2h Kd 8d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded on the Flop -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) collected ($0.05) - - - -PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.06 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.15 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4h Ah] -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player22: calls $0.06 -Player19: calls $0.06 -Player3: folds -Player9: folds -Player18: folds -*** FLOP *** [Qs 5c Qc] -Player17: checks -Player22: bets $0.09 -Player19: folds -Player17: folds -Uncalled bet ($0.09) returned to Player22 -Player22 collected $0.21 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [Qs 5c Qc] -Seat 1: Player18 (big blind) folded before Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 6: Player22 collected ($0.21) -Seat 7: Player19 folded on the Flop -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded before Flop - - - -PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.64 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.81 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.14 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd 6c] -Player24: folds -Player17: raises $0.06 to $0.08 -Player22: folds -Player19: calls $0.08 -Player3: folds -Player9: calls $0.08 -Player18: folds -Player14: folds -*** FLOP *** [8s 3d 7h] -Player17: bets $0.18 -Player15 joins the table at seat #5 -Player19: raises $0.18 to $0.36 -Player9: folds -Player17: folds -Uncalled bet ($0.18) returned to Player19 -Player19 collected $0.63 from pot -Player19: doesn't show hand -*** SUMMARY *** -Total pot $0.63 | Rake $0 -Board [8s 3d 7h] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded before Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 collected ($0.63) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded on the Flop - - - -PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.63 in chips) -Seat 2: Player14 ($1.47 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.55 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.37 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.06 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -Player15: sits out -*** HOLE CARDS *** -Dealt to Player17 [5d Ks] -Player17: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: checks -*** FLOP *** [3h Kh 2c] -Player24: checks -Player19: bets $0.02 -Player9 said, "maumont paga botes que tonto eres" -Player9: calls $0.02 -Player18 leaves the table -Player24: folds -*** TURN *** [3h Kh 2c] [Jd] -Player19: checks -Player9: bets $0.04 -Player19: folds -Uncalled bet ($0.04) returned to Player9 -Player9 collected $0.11 from pot -*** SUMMARY *** -Total pot $0.11 | Rake $0 -Board [3h Kh 2c Jd] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 collected ($0.11) - - - -PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 2: Player14 ($1.46 in chips) -Seat 3: Player24 ($1.87 in chips) -Seat 4: Player17 ($3.55 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -Player15: sits out -*** HOLE CARDS *** -Dealt to Player17 [8s 2h] -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Player14: calls $0.02 -Player24: calls $0.01 -Player17: raises $0.12 to $0.14 -Player14: calls $0.12 -Player24: folds -*** FLOP *** [3h As 7h] -Player17: checks -Player14: bets $0.20 -Player17: folds -Uncalled bet ($0.20) returned to Player14 -Player14 collected $0.30 from pot -*** SUMMARY *** -Total pot $0.30 | Rake $0 -Board [3h As 7h] -Seat 2: Player14 (button) collected ($0.30) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.41 in chips) -Seat 5: Player15 ($1 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player17: posts small blind $0.01 -Player15: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad Qh] -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: folds -Player14: folds -Player24: folds -Player17: raises $0.92 to $0.94 -Player15: folds -Player22: folds -Uncalled bet ($0.92) returned to Player17 -Player17 collected $0.06 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.06) -Seat 5: Player15 (big blind) folded before Flop -Seat 6: Player22 folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.45 in chips) -Seat 5: Player15 ($0.98 in chips) -Seat 6: Player22 ($1.78 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player15: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3h Qh] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player14: folds -Player24: calls $0.02 -Player17: raises $0.04 to $0.06 -Player15: folds -Player22: folds -Player9: calls $0.04 -Player24: calls $0.04 -*** FLOP *** [3c 4s 7h] -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [3c 4s 7h] [3s] -Player9: checks -Player24: checks -Player17: bets $0.14 -Player9: folds -Player24: folds -Uncalled bet ($0.14) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [3c 4s 7h 3s] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Turn -Seat 4: Player17 (button) collected ($0.21) -Seat 5: Player15 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.79 in chips) -Seat 4: Player17 ($3.60 in chips) -Seat 5: Player15 ($0.97 in chips) -Seat 6: Player22 ($1.76 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.07 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Td 8d] -Player3: folds -Player9: calls $0.02 -Player14: folds -Player24: calls $0.02 -Player17: raises $0.16 to $0.18 -Player15: folds -Player22: folds -Player19: folds -Player9: calls $0.16 -Player24: calls $0.16 -*** FLOP *** [2d 9s Ts] -Player9: checks -Player24: checks -Player17: bets $0.42 -Player9: folds -Player24: folds -Uncalled bet ($0.42) returned to Player17 -Player17 collected $0.57 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.57 | Rake $0 -Board [2d 9s Ts] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.57) -Seat 5: Player15 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded before Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) -Seat 5: Player15 ($0.97 in chips) -Seat 6: Player22 ($1.75 in chips) -Seat 7: Player19 ($2.31 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.89 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5s 7d] -Player20 joins the table at seat #1 -Player9: calls $0.02 -Player14: folds -Player24: folds -Player17: folds -Player15: folds -Player15 leaves the table -Player22: calls $0.02 -Player19: raises $0.04 to $0.06 -Player3: folds -Player9: calls $0.04 -Player22: calls $0.04 -*** FLOP *** [8d Jh 7c] -Player19: bets $0.10 -Player12 joins the table at seat #5 -Player9: calls $0.10 -Player22: calls $0.10 -*** TURN *** [8d Jh 7c] [5c] -Player19: bets $0.30 -Player9: calls $0.30 -Player22: folds -*** RIVER *** [8d Jh 7c 5c] [Qc] -Player19: bets $0.22 -Player9: raises $2.21 to $2.43 and is all-in -Player19 has timed out -Player19: folds -Uncalled bet ($2.21) returned to Player9 -Player9 collected $1.49 from pot -*** SUMMARY *** -Total pot $1.54 | Rake $0.05 -Board [8d Jh 7c 5c Qc] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player15 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded on the Turn -Seat 7: Player19 (small blind) folded on the River -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 collected ($1.49) - - - -PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) -Seat 5: Player12 ($1 in chips) -Seat 6: Player22 ($1.59 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.70 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -Player20: sits out -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 2c] -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.07) -Seat 5: Player12 folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5 in chips) -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) -Seat 5: Player12 ($0.98 in chips) -Seat 6: Player22 ($1.59 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.68 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9d Tc] -Player14: folds -Player24: folds -Player14 leaves the table -Player17: folds -Player12: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.01 -Player20: checks -*** FLOP *** [7d 4h Qs] -Player9: checks -Player20: checks -Player22: checks -*** TURN *** [7d 4h Qs] [3c] -Player9: bets $0.02 -Player20: calls $0.02 -Player22: calls $0.02 -*** RIVER *** [7d 4h Qs 3c] [Kd] -Player9: bets $0.04 -Player20: folds -Player22: raises $0.05 to $0.09 -Player9: calls $0.05 -*** SHOW DOWN *** -Player22: shows [Ts Kh] (a pair of Kings) -Player9: mucks hand -Player22 collected $0.30 from pot -*** SUMMARY *** -Total pot $0.30 | Rake $0 -Board [7d 4h Qs 3c Kd] -Seat 1: Player20 (big blind) folded on the River -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) mucked [Jh Qd] - - - -PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($4.96 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) -Seat 5: Player12 ($0.98 in chips) -Seat 6: Player22 ($1.76 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.55 in chips) -Player20: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2h 7h] -Player17: raises $0.04 to $0.06 -Player12: calls $0.06 -Player22: calls $0.06 -Player19: folds -Player3: folds -Player9: calls $0.06 -Player2 joins the table at seat #2 -Player20: folds -Player24: calls $0.04 -*** FLOP *** [2d 4s 5d] -Player24: checks -Player17: checks -Player12: checks -Player22: bets $0.06 -Player9: calls $0.06 -Player24: folds -Player17: calls $0.06 -Player12: folds -*** TURN *** [2d 4s 5d] [Kc] -Player17: checks -Player22: checks -Player9: checks -*** RIVER *** [2d 4s 5d Kc] [Ks] -Player17: checks -Player22: checks -Player9: bets $0.40 -Player17: folds -Player22: folds -Uncalled bet ($0.40) returned to Player9 -Player9 collected $0.49 from pot -*** SUMMARY *** -Total pot $0.49 | Rake $0 -Board [2d 4s 5d Kc Ks] -Seat 1: Player20 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded on the River -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded on the River -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) collected ($0.49) - - - -PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($4.95 in chips) -Seat 3: Player24 ($1.55 in chips) -Seat 4: Player17 ($3.92 in chips) -Seat 5: Player12 ($0.92 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.92 in chips) -Player2 will be allowed to play after the button -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8h Qd] -Player12: calls $0.02 -Player22: folds -Player19: folds -Player19 leaves the table -Player3: folds -Player9: calls $0.02 -Player20: raises $0.10 to $0.12 -Player24: folds -Player17: folds -Player12: calls $0.10 -Player9: folds -*** FLOP *** [3h Js Td] -Player12: checks -Player20: bets $0.20 -Player12: folds -Uncalled bet ($0.20) returned to Player20 -Player20 collected $0.29 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.29 | Rake $0 -Board [3h Js Td] -Seat 1: Player20 (button) collected ($0.29) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop - - - -PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.12 in chips) -Seat 2: Player2 ($1 in chips) -Seat 3: Player24 ($1.54 in chips) -Seat 4: Player17 ($3.90 in chips) -Seat 5: Player12 ($0.80 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.90 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jh Ah] -Player22: folds -Player3: folds -Player9: calls $0.02 -Player20: folds -Player2: checks -Player8 joins the table at seat #7 -Player24: calls $0.02 -Player17: raises $0.08 to $0.10 -Player12: folds -Player9: folds -Player2: folds -Player24: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.10 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.10 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player2 folded before Flop -Seat 3: Player24 (button) folded before Flop -Seat 4: Player17 (small blind) collected ($0.10) -Seat 5: Player12 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop - - - -PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.12 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.78 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 7: Player8 ($1.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.88 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player8: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jc 2h] -Player8: checks -Player3: folds -Player9: calls $0.02 -Player20: calls $0.02 -Player2: folds -Player24: folds -Player17: folds -Player12: calls $0.01 -Player22: checks -*** FLOP *** [Jh Tc 2d] -Player12: checks -Player22: bets $0.02 -Player8: calls $0.02 -Player9: folds -Player20: calls $0.02 -Player12: calls $0.02 -*** TURN *** [Jh Tc 2d] [Js] -Player12: checks -Player22: bets $0.08 -Player8: folds -Player20: folds -Player12: folds -Uncalled bet ($0.08) returned to Player22 -Player22 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Jh Tc 2d Js] -Seat 1: Player20 folded on the Turn -Seat 2: Player2 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded on the Turn -Seat 6: Player22 (big blind) collected ($0.18) -Seat 7: Player8 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.08 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.74 in chips) -Seat 6: Player22 ($1.78 in chips) -Seat 7: Player8 ($1.07 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.86 in chips) -Player22: posts small blind $0.01 -Player8: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kc 7s] -Player3: folds -Player9: folds -Player20: calls $0.02 -Player2: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player8: checks -*** FLOP *** [Th 5d 7h] -Player8: checks -Player20: checks -Player12: checks -*** TURN *** [Th 5d 7h] [6s] -Player8: checks -Player20: checks -Player12: checks -*** RIVER *** [Th 5d 7h 6s] [8s] -Player8: checks -Player20: bets $0.04 -Player12: folds -Player8: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.07 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [Th 5d 7h 6s 8s] -Seat 1: Player20 collected ($0.07) -Seat 2: Player2 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded on the River -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player8 (big blind) folded on the River -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.13 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.72 in chips) -Seat 6: Player22 ($1.77 in chips) -Seat 7: Player8 ($1.05 in chips) -Seat 9: Player9 ($3.86 in chips) -Player8: posts small blind $0.01 -Player3: is sitting out -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ah 2c] -Player20: folds -Player2: calls $0.02 -Player3 leaves the table -Player24: folds -Player17: folds -Player12: raises $0.06 to $0.08 -Player22: calls $0.08 -Player8: calls $0.07 -Player9: folds -Player2: calls $0.06 -*** FLOP *** [6h Js 3h] -Player8: checks -Player2: bets $0.90 and is all-in -Player12: folds -Player22: folds -Player8: calls $0.90 -*** TURN *** [6h Js 3h] [5h] -*** RIVER *** [6h Js 3h 5h] [8d] -*** SHOW DOWN *** -Player8: shows [6s 9s] (a pair of Sixes) -Player2: shows [Qc Jd] (a pair of Jacks) -Player2 collected $2.04 from pot -*** SUMMARY *** -Total pot $2.14 | Rake $0.10 -Board [6h Js 3h 5h 8d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Flop -Seat 6: Player22 (button) folded on the Flop -Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.13 in chips) -Seat 2: Player2 ($2.04 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.64 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($3.84 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks 9d] -Player2: raises $0.06 to $0.08 -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Player8: folds -Player9: calls $0.07 -Player20: folds -*** FLOP *** [Js Tc 8s] -Player9: bets $0.04 -Player2: raises $0.12 to $0.16 -Player9: calls $0.12 -*** TURN *** [Js Tc 8s] [Ad] -Player9: bets $0.10 -Player2: raises $1.70 to $1.80 and is all-in -Player9: folds -Uncalled bet ($1.70) returned to Player2 -Player2 collected $0.70 from pot -*** SUMMARY *** -Total pot $0.70 | Rake $0 -Board [Js Tc 8s Ad] -Seat 1: Player20 (big blind) folded before Flop -Seat 2: Player2 collected ($0.70) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded on the Turn - - - -PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.11 in chips) -Seat 2: Player2 ($2.40 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.64 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($3.50 in chips) -Player20: posts small blind $0.01 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 4s] -Player24: folds -Player17: raises $0.04 to $0.06 -Player12: calls $0.06 -Player22: folds -Player8: folds -Player9: calls $0.06 -Player20: folds -Player2: folds -*** FLOP *** [As 6c 5c] -Player17: bets $0.08 -Player12: calls $0.08 -Player9: raises $0.08 to $0.16 -Player17: folds -Player12: raises $0.42 to $0.58 and is all-in -Player9: calls $0.42 -*** TURN *** [As 6c 5c] [Qd] -*** RIVER *** [As 6c 5c Qd] [9d] -*** SHOW DOWN *** -Player12: shows [Ac Tc] (a pair of Aces) -Player9: mucks hand -Player12 collected $1.40 from pot -*** SUMMARY *** -Total pot $1.45 | Rake $0.05 -Board [As 6c 5c Qd 9d] -Seat 1: Player20 (small blind) folded before Flop -Seat 2: Player2 (big blind) folded before Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 (button) mucked [8d Ah] - - - -PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.10 in chips) -Seat 2: Player2 ($2.38 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.84 in chips) -Seat 5: Player12 ($1.40 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($2.86 in chips) -Player2: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5c 5d] -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player8: folds -Player9: folds -Player20: calls $0.06 -Player2: folds -Player24: folds -*** FLOP *** [7d 4s 8h] -Player2 leaves the table -Player17: checks -Player20: checks -*** TURN *** [7d 4s 8h] [Th] -Player17: checks -Player13 joins the table at seat #8 -Player20: bets $0.08 -Player17: raises $0.12 to $0.20 -Player20: calls $0.12 -*** RIVER *** [7d 4s 8h Th] [4h] -Player17: checks -Player20: checks -*** SHOW DOWN *** -Player17: shows [5c 5d] (two pair, Fives and Fours) -Player20: shows [Jc Tc] (two pair, Tens and Fours) -Player20 collected $0.55 from pot -*** SUMMARY *** -Total pot $0.55 | Rake $0 -Board [7d 4s 8h Th 4h] -Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours -Seat 2: Player2 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 3: Player24 ($1.50 in chips) -Seat 4: Player17 ($3.58 in chips) -Seat 5: Player12 ($1.40 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($2.86 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player13: sits out -*** HOLE CARDS *** -Dealt to Player17 [Kd 7d] -Player22: calls $0.02 -Player8: folds -Player10 joins the table at seat #2 -Player9: folds -Player20: folds -Player24: calls $0.02 -Player17: calls $0.01 -Player12: checks -*** FLOP *** [6s 9d 6d] -Player17: bets $0.08 -Player12: folds -Player22: calls $0.08 -Player24: folds -*** TURN *** [6s 9d 6d] [2c] -Player17: checks -Player22: checks -*** RIVER *** [6s 9d 6d 2c] [8h] -Player17: checks -Player22: checks -*** SHOW DOWN *** -Player17: shows [Kd 7d] (a pair of Sixes) -Player22: shows [5h 5s] (two pair, Sixes and Fives) -Player22 collected $0.24 from pot -*** SUMMARY *** -Total pot $0.24 | Rake $0 -Board [6s 9d 6d 2c 8h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded on the Flop -Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes -Seat 5: Player12 (big blind) folded on the Flop -Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.48 in chips) -Seat 5: Player12 ($1.38 in chips) -Seat 6: Player22 ($1.83 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 8: Player13 ($5 in chips) -Seat 9: Player9 ($2.86 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player13: posts big blind $0.02 -Player10: sits out -*** HOLE CARDS *** -Dealt to Player17 [5d 7c] -Player8: folds -Player13: checks -Player9: folds -Player20: folds -Player24: folds -Player17: calls $0.02 -Player12: calls $0.01 -Player22: checks -*** FLOP *** [7d Kd Jh] -Player12: checks -Player22: checks -Player13: checks -Player17: checks -*** TURN *** [7d Kd Jh] [7s] -Player12: checks -Player22: checks -Player13: checks -Player17: bets $0.08 -Player12: folds -Player22: folds -Player13: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [7d Kd Jh 7s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) collected ($0.08) -Seat 5: Player12 (small blind) folded on the Turn -Seat 6: Player22 (big blind) folded on the Turn -Seat 7: Player8 folded before Flop (didn't bet) -Seat 8: Player13 folded on the Turn -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.29 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.54 in chips) -Seat 5: Player12 ($1.36 in chips) -Seat 6: Player22 ($1.81 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 8: Player13 ($4.98 in chips) -Seat 9: Player9 ($2.86 in chips) -Player22: posts small blind $0.01 -Player8: posts big blind $0.02 -Player10: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d Js] -Player13: folds -Player9: folds -Player20: folds -Player10: checks -Player24: folds -Player17: raises $0.06 to $0.08 -Player12: calls $0.08 -Player22: calls $0.07 -Player8: calls $0.05 and is all-in -Player10: calls $0.06 -*** FLOP *** [9c 9s Ah] -Player22: bets $0.04 -Player10: folds -Player17: folds -Player12: calls $0.04 -*** TURN *** [9c 9s Ah] [Td] -Player22: bets $0.08 -Player12: folds -Uncalled bet ($0.08) returned to Player22 -*** RIVER *** [9c 9s Ah Td] [3d] -*** SHOW DOWN *** -Player22: shows [Ac 6c] (two pair, Aces and Nines) -Player22 collected $0.12 from side pot -Player8: shows [Kh Th] (two pair, Tens and Nines) -Player22 collected $0.35 from main pot -*** SUMMARY *** -Total pot $0.47 Main pot $0.35. Side pot $0.12. | Rake $0 -Board [9c 9s Ah Td 3d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player12 (button) folded on the Turn -Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines -Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines -Seat 8: Player13 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.21 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.46 in chips) -Seat 5: Player12 ($1.24 in chips) -Seat 6: Player22 ($2.16 in chips) -Seat 8: Player13 ($4.98 in chips) -Seat 9: Player9 ($2.86 in chips) -Player13: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [7s 5h] -Player20: folds -Player10: calls $0.02 -Player8 leaves the table -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: folds -Player13: folds -Player9: checks -*** FLOP *** [5s 8d Kc] -Player9: checks -Player10: bets $0.06 -Player17: raises $0.08 to $0.14 -Player12: folds -Player9: folds -Player10: calls $0.08 -*** TURN *** [5s 8d Kc] [4c] -Player10: checks -Player13 leaves the table -Player17: checks -*** RIVER *** [5s 8d Kc 4c] [3s] -Player10: checks -Player7 joins the table at seat #8 -Player17: checks -*** SHOW DOWN *** -Player10: shows [2c 2h] (a pair of Deuces) -Player17: shows [7s 5h] (a pair of Fives) -Player17 collected $0.37 from pot -*** SUMMARY *** -Total pot $0.37 | Rake $0 -Board [5s 8d Kc 4c 3s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives -Seat 5: Player12 folded on the Flop -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 8: Player13 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded on the Flop - - - -PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.05 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) -Seat 5: Player12 ($1.22 in chips) -Seat 9: Player9 ($2.84 in chips) -Player20: posts small blind $0.01 -Player10: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [Js 6c] -Player24: folds -Player17: folds -Player12: folds -Player9: calls $0.02 -Player20: raises $0.04 to $0.06 -Player10: raises $0.04 to $0.10 -Player9: calls $0.08 -Player20: raises $0.30 to $0.40 -Player10: raises $0.30 to $0.70 -Player9: calls $0.60 -Player20: raises $4.69 to $5.39 and is all-in -Player10: calls $0.35 and is all-in -Player9: calls $2.14 and is all-in -Uncalled bet ($2.55) returned to Player20 -*** FLOP *** [2c 2s Ts] -*** TURN *** [2c 2s Ts] [Kd] -*** RIVER *** [2c 2s Ts Kd] [9s] -*** SHOW DOWN *** -Player20: shows [Ad Ah] (two pair, Aces and Deuces) -Player9: shows [Qs 7h] (a pair of Deuces) -Player20 collected $3.43 from side pot -Player10: shows [Kh Ks] (a full house, Kings full of Deuces) -Player10 collected $3 from main pot -*** SUMMARY *** -Total pot $6.73 Main pot $3. Side pot $3.43. | Rake $0.30 -Board [2c 2s Ts Kd 9s] -Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces -Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces - - - -PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.98 in chips) -Seat 2: Player10 ($3 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) -Seat 5: Player12 ($1.22 in chips) -Player10: posts small blind $0.01 -Player24: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [6c Tc] -Player17: raises $0.04 to $0.06 -Player12: folds -Player16 joins the table at seat #7 -Player20 said, "lol everytime" -Player20: folds -Player10: raises $0.04 to $0.10 -Player24: folds -Player17: calls $0.04 -*** FLOP *** [5c Kc Jh] -Player10: checks -Player17: bets $0.08 -Player10: calls $0.08 -*** TURN *** [5c Kc Jh] [5h] -Player10: checks -Player17: checks -*** RIVER *** [5c Kc Jh 5h] [Ts] -Player10: checks -Player17: checks -*** SHOW DOWN *** -Player10: shows [Ad Ac] (two pair, Aces and Fives) -Player17: mucks hand -Player10 collected $0.38 from pot -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [5c Kc Jh 5h Ts] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 mucked [6c Tc] -Seat 5: Player12 folded before Flop (didn't bet) - - - -PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.98 in chips) -Seat 2: Player10 ($3.20 in chips) -Seat 3: Player24 ($1.46 in chips) -Seat 4: Player17 ($3.49 in chips) -Seat 5: Player12 ($1.22 in chips) -Seat 9: Player9 ($1.80 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [As 7h] -Player12: calls $0.02 -Player20 said, "haha nice" -Player9: calls $0.02 -Player20: calls $0.02 -Player10: calls $0.02 -Player24: calls $0.01 -Player17: checks -*** FLOP *** [Qs Qh Ad] -Player24: checks -Player17: bets $0.12 -Player12: folds -Player9: calls $0.12 -Player20: folds -Player10: folds -Player24: folds -*** TURN *** [Qs Qh Ad] [5h] -Player17: bets $0.10 -Player9: calls $0.10 -*** RIVER *** [Qs Qh Ad 5h] [Ah] -Player17: bets $0.12 -Player9: raises $1.44 to $1.56 and is all-in -Player17: calls $1.44 -*** SHOW DOWN *** -Player9: shows [Kh Jh] (a flush, Ace high) -Player17: shows [As 7h] (a full house, Aces full of Queens) -Player17 collected $3.53 from pot -*** SUMMARY *** -Total pot $3.68 | Rake $0.15 -Board [Qs Qh Ad 5h Ah] -Seat 1: Player20 folded on the Flop -Seat 2: Player10 (button) folded on the Flop -Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens -Seat 5: Player12 folded on the Flop -Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high - - - -PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 2: Player10 ($3.18 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.22 in chips) -Seat 5: Player12 ($1.20 in chips) -Seat 6: Player22 ($2.16 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ac 7s] -Player22: folds -Player20: folds -Player10: folds -Player24: folds -Player22 said, "nh" -Player17: raises $0.08 to $0.10 -Player12: calls $0.08 -*** FLOP *** [8c 5d Qh] -Player17 said, "tyty" -Player17: checks -Player12: checks -*** TURN *** [8c 5d Qh] [Tc] -Player17: checks -Player12: bets $0.10 -Player17: folds -Uncalled bet ($0.10) returned to Player12 -Player12 collected $0.20 from pot -*** SUMMARY *** -Total pot $0.20 | Rake $0 -Board [8c 5d Qh Tc] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded on the Turn -Seat 5: Player12 (big blind) collected ($0.20) -Seat 6: Player22 folded before Flop (didn't bet) - - - -PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 2: Player10 ($3.18 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.12 in chips) -Seat 5: Player12 ($1.30 in chips) -Seat 6: Player22 ($2.16 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [As Qc] -Player20: folds -Player10: calls $0.02 -Player24: folds -Player17: calls $0.02 -Player12: calls $0.01 -Player22: checks -*** FLOP *** [8s 8h Kd] -Player12: checks -Player22: checks -Player10: checks -Player17: checks -*** TURN *** [8s 8h Kd] [9h] -Player12: bets $0.06 -Player22: folds -Player10: calls $0.06 -Player17: folds -*** RIVER *** [8s 8h Kd 9h] [6s] -Player12: bets $0.24 -Player10: folds -Uncalled bet ($0.24) returned to Player12 -Player12 collected $0.20 from pot -Player10 leaves the table -*** SUMMARY *** -Total pot $0.20 | Rake $0 -Board [8s 8h Kd 9h 6s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded on the River -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Turn -Seat 5: Player12 (small blind) collected ($0.20) -Seat 6: Player22 (big blind) folded on the Turn - - - -PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.10 in chips) -Seat 5: Player12 ($1.42 in chips) -Seat 6: Player22 ($2.14 in chips) -Seat 7: Player16 ($1.60 in chips) -Seat 9: Player9 ($1 in chips) -Player22: posts small blind $0.01 -Player16: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [5c 8c] -Player9: calls $0.02 -Player20: folds -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: folds -Player16: checks -*** FLOP *** [Ad Kd Qh] -Player16: checks -Player9: checks -Player17: checks -Player12: checks -*** TURN *** [Ad Kd Qh] [9c] -Player16: checks -Player9: bets $0.02 -Player17: folds -Player12: calls $0.02 -Player16: folds -*** RIVER *** [Ad Kd Qh 9c] [7d] -Player9: checks -Player4 joins the table at seat #2 -Player12: checks -*** SHOW DOWN *** -Player9: shows [6c Jd] (high card Ace) -Player12: shows [5h Kh] (a pair of Kings) -Player12 collected $0.13 from pot -*** SUMMARY *** -Total pot $0.13 | Rake $0 -Board [Ad Kd Qh 9c 7d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player16 (big blind) folded on the Turn -Seat 9: Player9 showed [6c Jd] and lost with high card Ace - - - -PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.94 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.15 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($0.94 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -Player4: sits out -*** HOLE CARDS *** -Dealt to Player17 [4h As] -Player20: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: calls $0.01 -Player9: checks -*** FLOP *** [Qh 5c 9c] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** TURN *** [Qh 5c 9c] [7d] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** RIVER *** [Qh 5c 9c 7d] [Qd] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** SHOW DOWN *** -Player7: shows [4s 5s] (two pair, Queens and Fives) -Player9: mucks hand -Player12: mucks hand -Player22: mucks hand -Player7 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [Qh 5c 9c 7d Qd] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 mucked [3h 2s] -Seat 6: Player22 mucked [Ts 6s] -Seat 7: Player16 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) showed [4s 5s] and won ($0.08) with two pair, Queens and Fives -Seat 9: Player9 (big blind) mucked [6c 2d] - - - -PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.94 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.13 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2.06 in chips) -Seat 9: Player9 ($0.92 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -Player4: sits out -*** HOLE CARDS *** -Dealt to Player17 [5s Ks] -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player16: folds -Player7: calls $0.02 -Player9: calls $0.01 -Player20: checks -*** FLOP *** [Qc 9c 5h] -Player9: checks -Player20: checks -Player12: checks -Player7: bets $0.06 -Player9: calls $0.06 -Player20: folds -Player12: calls $0.06 -*** TURN *** [Qc 9c 5h] [Td] -Player9: checks -Player12: checks -Player7: checks -*** RIVER *** [Qc 9c 5h Td] [Jh] -Player9: bets $0.20 -Player12: folds -Player7: folds -Uncalled bet ($0.20) returned to Player9 -Player9 collected $0.26 from pot -*** SUMMARY *** -Total pot $0.26 | Rake $0 -Board [Qc 9c 5h Td Jh] -Seat 1: Player20 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the River -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded on the River -Seat 9: Player9 (small blind) collected ($0.26) - - - -PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.92 in chips) -Seat 2: Player4 ($1 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.05 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.10 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ts 8s] -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: calls $0.02 -Player16: calls $0.02 -Player7: calls $0.02 -Player9: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [9d 3c Js] -Player20: checks -Player4: checks -Player17: checks -Player12: checks -Player22: checks -Player16: bets $0.10 -Player7: folds -Player20: calls $0.10 -Player4: calls $0.10 -Player17: calls $0.10 -Player12: folds -Player22: folds -*** TURN *** [9d 3c Js] [Qh] -Player20: checks -Player4: checks -Player17: checks -Player16: checks -*** RIVER *** [9d 3c Js Qh] [2s] -Player20: bets $0.26 -Player4: folds -Player17: calls $0.26 -Player16: folds -*** SHOW DOWN *** -Player20: shows [2h Jh] (two pair, Jacks and Deuces) -Player17: shows [Ts 8s] (a straight, Eight to Queen) -Player17 collected $1.01 from pot -*** SUMMARY *** -Total pot $1.06 | Rake $0.05 -Board [9d 3c Js Qh 2s] -Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces -Seat 2: Player4 (big blind) folded on the River -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded on the Flop -Seat 7: Player16 folded on the River -Seat 8: Player7 folded on the Flop -Seat 9: Player9 (button) folded before Flop (didn't bet) - - - -PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.54 in chips) -Seat 2: Player4 ($0.88 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.71 in chips) -Seat 5: Player12 ($1.03 in chips) -Seat 6: Player22 ($2.52 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.10 in chips) -Player4: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5h Qh] -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: calls $0.01 -Player24: checks -*** FLOP *** [6c 7s 9h] -Player4: bets $0.02 -Player24: calls $0.02 -Player12: calls $0.02 -Player22: calls $0.02 -Player9: calls $0.02 -*** TURN *** [6c 7s 9h] [3h] -Player4: bets $0.02 -Player24: folds -Player12: folds -Player22: calls $0.02 -Player9: calls $0.02 -*** RIVER *** [6c 7s 9h 3h] [2h] -Player4: checks -Player22: checks -Player9: bets $0.02 -Player4: folds -Player22: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.26 from pot -*** SUMMARY *** -Total pot $0.26 | Rake $0 -Board [6c 7s 9h 3h 2h] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded on the River -Seat 3: Player24 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Turn -Seat 6: Player22 folded on the River -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 collected ($0.26) - - - -PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.54 in chips) -Seat 2: Player4 ($0.82 in chips) -Seat 3: Player24 ($1.40 in chips) -Seat 4: Player17 ($5.71 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.46 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.30 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 7s] -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: calls $0.02 -Player4: calls $0.02 -Player24: calls $0.01 -Player17: checks -*** FLOP *** [7c Qs Th] -Player24: checks -Player17: checks -Player12: checks -Player22: bets $0.10 -Player9: folds -Player20: folds -Player4: calls $0.10 -Player24: folds -Player17: folds -Player12: folds -*** TURN *** [7c Qs Th] [Qd] -Player22: checks -Player4: checks -*** RIVER *** [7c Qs Th Qd] [6h] -Player22: bets $0.50 -Player4: folds -Uncalled bet ($0.50) returned to Player22 -Player22 collected $0.34 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [7c Qs Th Qd 6h] -Seat 1: Player20 folded on the Flop -Seat 2: Player4 (button) folded on the River -Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) folded on the Flop -Seat 5: Player12 folded on the Flop -Seat 6: Player22 collected ($0.34) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.52 in chips) -Seat 2: Player4 ($0.70 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.69 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.68 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [As Kd] -Player22: folds -Player16: folds -Player7: folds -Player9: folds -Player20: folds -Player4: raises $0.04 to $0.06 -Player24: folds -Player17: calls $0.05 -Player12: calls $0.04 -*** FLOP *** [Kh 3c Ah] -Player17: checks -Player12: checks -Player4: checks -*** TURN *** [Kh 3c Ah] [Jh] -Player17: checks -Player12: checks -Player4: checks -*** RIVER *** [Kh 3c Ah Jh] [5c] -Player17: checks -Player12: checks -Player4: checks -*** SHOW DOWN *** -Player17: shows [As Kd] (two pair, Aces and Kings) -Player12: mucks hand -Player4: mucks hand -Player17 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Kh 3c Ah Jh 5c] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 mucked [7s 8s] -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings -Seat 5: Player12 (big blind) mucked [Ts 3s] -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.52 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.91 in chips) -Seat 6: Player22 ($2.68 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9s 2d] -Player16: folds -Player7: folds -Player9 has timed out -Player9: folds -Player20: raises $0.04 to $0.06 -Player4: folds -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.05 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player20 collected ($0.05) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.90 in chips) -Seat 6: Player22 ($2.66 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player22: posts small blind $0.01 -Player16: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kh 5c] -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: calls $0.01 -Player16: checks -*** FLOP *** [8d 5s Ts] -Player22: checks -Player16: checks -Player9: checks -Player12: checks -*** TURN *** [8d 5s Ts] [9h] -Player22: bets $0.04 -Player16: folds -Player9: folds -Player12: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.08 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [8d 5s Ts 9h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded on the Turn -Seat 6: Player22 (small blind) collected ($0.08) -Seat 7: Player16 (big blind) folded on the Turn -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.88 in chips) -Seat 6: Player22 ($2.72 in chips) -Seat 7: Player16 ($1.43 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.26 in chips) -Player16: posts small blind $0.01 -Player7: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qs 6h] -Player9 has timed out -Player9: folds -Player20: folds -Player4: calls $0.02 -Player24: calls $0.02 -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: checks -*** FLOP *** [5d Th 9c] -Player7: checks -Player4: checks -Player24: checks -Player12: bets $0.02 -Player22: folds -Player7: folds -Player4: folds -Player24: calls $0.02 -*** TURN *** [5d Th 9c] [2d] -Player24: checks -Player12: checks -*** RIVER *** [5d Th 9c 2d] [9s] -Player24: checks -Player12: bets $0.06 -Player24: folds -Uncalled bet ($0.06) returned to Player12 -Player12 collected $0.15 from pot -*** SUMMARY *** -Total pot $0.15 | Rake $0 -Board [5d Th 9c 2d 9s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded on the Flop -Seat 3: Player24 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 collected ($0.15) -Seat 6: Player22 (button) folded on the Flop -Seat 7: Player16 (small blind) folded before Flop -Seat 8: Player7 (big blind) folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.62 in chips) -Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.70 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.26 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4d 9d] -Player20: folds -Player4: folds -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Player16: folds -Player7: raises $0.06 to $0.08 -Player9 has timed out -Player9: folds -Uncalled bet ($0.06) returned to Player7 -Player7 collected $0.04 from pot -Player7: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) collected ($0.04) -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.62 in chips) -Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.70 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Js 7d] -Player24: folds -Player17: folds -Player24 leaves the table -Player12: folds -Player22: calls $0.02 -Player16: folds -Player1 joins the table at seat #3 -Player7: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [Jc 2d 9d] -Player20: checks -Player4: checks -Player22: checks -*** TURN *** [Jc 2d 9d] [Ac] -Player20: checks -Player4: checks -Player22: bets $0.04 -Player20: folds -Player4: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.06 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [Jc 2d 9d Ac] -Seat 1: Player20 (small blind) folded on the Turn -Seat 2: Player4 (big blind) folded on the Turn -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 collected ($0.06) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.53 in chips) -Seat 2: Player4 ($0.60 in chips) -Seat 3: Player1 ($2 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.24 in chips) -Player4: posts small blind $0.01 -Player1: posts big blind $0.02 -Player9: posts small blind $0.01 -*** HOLE CARDS *** -Dealt to Player17 [9c 8s] -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: calls $0.01 -Player1: checks -*** FLOP *** [Td 3s Th] -Player4: checks -Player1: checks -Player12: checks -Player22: checks -Player9: checks -*** TURN *** [Td 3s Th] [9s] -Player4: checks -Player1: checks -Player12: checks -Player22: bets $0.08 -Player9: folds -Player4: folds -Player1: folds -Player12: folds -Uncalled bet ($0.08) returned to Player22 -Player22 collected $0.11 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.11 | Rake $0 -Board [Td 3s Th 9s] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded on the Turn -Seat 3: Player1 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Turn -Seat 6: Player22 collected ($0.11) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.53 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.98 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.21 in chips) -Player1: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9d Qc] -Player12: folds -Player22: folds -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: raises $0.04 to $0.06 -Player4: folds -Player1: folds -Player17: folds -Player9: calls $0.04 -*** FLOP *** [6d 4d Qh] -Player9: checks -Player20: checks -*** TURN *** [6d 4d Qh] [Ac] -Player9: checks -Player20: checks -*** RIVER *** [6d 4d Qh Ac] [Ah] -Player9: bets $0.02 -Player20: calls $0.02 -*** SHOW DOWN *** -Player9: shows [2d Qd] (two pair, Aces and Queens) -Player20: mucks hand -Player9 collected $0.19 from pot -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [6d 4d Qh Ac Ah] -Seat 1: Player20 mucked [Kc Jd] -Seat 2: Player4 (button) folded before Flop (didn't bet) -Seat 3: Player1 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens - - - -PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.45 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.97 in chips) -Seat 4: Player17 ($5.79 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Td 2h] -Player22: folds -Player16: raises $0.06 to $0.08 -Player7: folds -Player9: folds -Player20: folds -Player4: folds -Player1: calls $0.08 -Player17: folds -Player12: folds -*** FLOP *** [9c 7d 3h] -Player16: checks -Player1: checks -*** TURN *** [9c 7d 3h] [9h] -Player16: bets $0.06 -Player1: folds -Uncalled bet ($0.06) returned to Player16 -Player16 collected $0.19 from pot -Player16: doesn't show hand -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [9c 7d 3h 9h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 (button) folded on the Turn -Seat 4: Player17 (small blind) folded before Flop -Seat 5: Player12 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 collected ($0.19) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.45 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.95 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.53 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 6s] -Player16: folds -Player16 leaves the table -Player7: folds -Player9: folds -Player20: raises $0.04 to $0.06 -Player4: folds -Player1: folds -Player17: folds -Player12: calls $0.05 -Player22: calls $0.04 -*** FLOP *** [Ts Kc Jd] -Player6 joins the table at seat #7 -Player12: checks -Player22: bets $0.06 -Player20: folds -Player12: folds -Uncalled bet ($0.06) returned to Player22 -Player22 collected $0.18 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Ts Kc Jd] -Seat 1: Player20 folded on the Flop -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded on the Flop -Seat 6: Player22 (big blind) collected ($0.18) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($2.95 in chips) -Seat 7: Player6 ($2 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player22: posts small blind $0.01 -Player6: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks Jd] -Player7: calls $0.02 -Player9: folds -Player20: folds -Player4: calls $0.02 -Player1: raises $0.04 to $0.06 -Player17: folds -Player12: folds -Player22: calls $0.05 -Player6: calls $0.04 -Player7: calls $0.04 -Player4: calls $0.04 -*** FLOP *** [5c 3h 4s] -Player22: bets $0.04 -Player6: calls $0.04 -Player7: folds -Player4: calls $0.04 -Player1: calls $0.04 -*** TURN *** [5c 3h 4s] [Qh] -Player22: checks -Player6: checks -Player4: checks -Player1: checks -*** RIVER *** [5c 3h 4s Qh] [6h] -Player22: bets $0.04 -Player6: folds -Player4: folds -Player1: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.46 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.46 | Rake $0 -Board [5c 3h 4s Qh 6h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded on the River -Seat 3: Player1 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) collected ($0.46) -Seat 7: Player6 (big blind) folded on the River -Seat 8: Player7 folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.90 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.32 in chips) -Player6: posts small blind $0.01 -Player7: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qs 9s] -Player9: folds -Player20: folds -Player4: folds -Player1: folds -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player7 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.32 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4d Js] -Player20: folds -Player4: folds -Player1: folds -Player17: folds -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Uncalled bet ($0.01) returned to Player9 -Player9 collected $0.02 from pot -*** SUMMARY *** -Total pot $0.02 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) folded before Flop -Seat 9: Player9 (big blind) collected ($0.02) - - - -PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.33 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qd 2s] -Player4: folds -Player1 has timed out -Player1: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player6: folds -Player7: folds -Player9: calls $0.01 -Player20: checks -*** FLOP *** [Qs 6d 4s] -Player9: checks -Player20: checks -Player12: bets $0.02 -Player9: folds -Player20: folds -Uncalled bet ($0.02) returned to Player12 -Player12 collected $0.06 from pot -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [Qs 6d 4s] -Seat 1: Player20 (big blind) folded on the Flop -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 collected ($0.06) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded on the Flop - - - -PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.37 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.93 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.31 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc 6c] -Player1: folds -Player17: folds -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Player9: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [4h 7d Td] -Player20: checks -Player4: checks -*** TURN *** [4h 7d Td] [3d] -Player20: checks -Player4: checks -*** RIVER *** [4h 7d Td 3d] [Qs] -Player20: bets $0.04 -Player4: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.04 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Board [4h 7d Td 3d Qs] -Seat 1: Player20 (small blind) collected ($0.04) -Seat 2: Player4 (big blind) folded on the River -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded before Flop (didn't bet) - - - +PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($0.97 in chips) +Seat 3: Player23 ($1.53 in chips) +Seat 4: Player17 ($1.60 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.45 in chips) +Seat 7: Player19 ($2.56 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2d Kc] +Player3: folds +Player21: folds +Player14: calls $0.02 +Player23: calls $0.02 +Player17: checks +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Qh 8d 7s] +Player22: bets $0.06 +Player19: folds +Player14: calls $0.06 +Player23: folds +Player17: folds +*** TURN *** [Qh 8d 7s] [3s] +Player22: bets $0.30 +Player14: folds +Uncalled bet ($0.30) returned to Player22 +Player22 collected $0.22 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.22 | Rake $0 +Board [Qh 8d 7s 3s] +Seat 2: Player14 folded on the Turn +Seat 3: Player23 folded on the Flop +Seat 4: Player17 folded on the Flop +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.22) +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($2.54 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Td] +Player21: folds +Player14: folds +Player23: folds +Player17: folds +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player11 joins the table at seat #1 +Player19: folds +Player3: folds +*** FLOP *** [Js Qh 9s] +Player5: checks +Player22: bets $0.25 +Player5: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.27 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.27 | Rake $0 +Board [Js Qh 9s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded on the Flop +Seat 6: Player22 (button) collected ($0.27) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +Player11: sits out +*** HOLE CARDS *** +Dealt to Player17 [Qc 5d] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player11 ($1.60 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.56 in chips) +Player21: posts small blind $0.01 +Player11: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d Qc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: calls $0.01 +Player11: checks +*** FLOP *** [7s 3s Kd] +Player21: bets $0.02 +Player11: folds +Uncalled bet ($0.02) returned to Player21 +Player21 collected $0.04 from pot +Player21: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [7s 3s Kd] +Seat 1: Player11 (big blind) folded on the Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player21 (small blind) collected ($0.04) + + + +PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player11 ($1.58 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player11: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 7d] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player21: folds +Player11: calls $0.01 +Player14: checks +*** FLOP *** [5s 9c 4c] +Player11: bets $0.08 +Player14: calls $0.08 +Player17: calls $0.08 +Player19: folds +*** TURN *** [5s 9c 4c] [Td] +Player11: bets $0.04 +Player14: calls $0.04 +Player17: calls $0.04 +*** RIVER *** [5s 9c 4c Td] [Kh] +Player11: checks +Player14: bets $0.10 +Player17: folds +Player11: folds +Uncalled bet ($0.10) returned to Player14 +Player14 collected $0.44 from pot +*** SUMMARY *** +Total pot $0.44 | Rake $0 +Board [5s 9c 4c Td Kh] +Seat 1: Player11 (small blind) folded on the River +Seat 2: Player14 (big blind) collected ($0.44) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player11 ($1.44 in chips) +Seat 2: Player14 ($1.19 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3s 5d] +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Player21: folds +Player11: raises $0.14 to $0.18 +Player14: folds +Player23: calls $0.16 +Player22: calls $0.14 +*** FLOP *** [4h 6d 4s] +Player23: checks +Player22: checks +Player11: bets $0.55 +Player23: folds +Player22: folds +Uncalled bet ($0.55) returned to Player11 +Player11 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [4h 6d 4s] +Seat 1: Player11 (button) collected ($0.55) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player23 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.18 in chips) +Seat 3: Player23 ($2.13 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 5d] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: checks +*** FLOP *** [8s 4s Ah] +Player23: checks +Player17: checks +Player14: bets $0.06 +Player23: folds +Player17: calls $0.06 +*** TURN *** [8s 4s Ah] [Qs] +Player17: bets $0.10 +Player14: calls $0.10 +*** RIVER *** [8s 4s Ah Qs] [9h] +Player17: checks +Player14: checks +*** SHOW DOWN *** +Player17: shows [2c 5d] (high card Ace) +Player14: shows [Ac Jc] (a pair of Aces) +Player14 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [8s 4s Ah Qs 9h] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces +Seat 3: Player23 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.11 in chips) +Seat 4: Player17 ($1.29 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Qh] +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: calls $0.05 +Player5: calls $0.04 +*** FLOP *** [7s 3s Ah] +Player17: bets $0.20 +Player5: folds +Player23: raises $1.85 to $2.05 and is all-in +Player17: folds +Uncalled bet ($1.85) returned to Player23 +Player23 collected $0.58 from pot +Player23: doesn't show hand +*** SUMMARY *** +Total pot $0.58 | Rake $0 +Board [7s 3s Ah] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) collected ($0.58) +Seat 4: Player17 (small blind) folded on the Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.43 in chips) +Seat 4: Player17 ($1.03 in chips) +Seat 5: Player5 ($2.73 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 4s] +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: folds +Player5: folds +Player22: calls $0.04 +*** FLOP *** [2h 7d 3s] +Player22: checks +Player23: checks +*** TURN *** [2h 7d 3s] [Ks] +Player22: bets $0.04 +Player23: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.13 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [2h 7d 3s Ks] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded on the Turn +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.13) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.83 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player3: folds +Player21: folds +Player11: folds +Player14 has timed out +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: calls $0.06 +*** FLOP *** [6d Jd 7c] +Player19: bets $0.04 +Player17: calls $0.04 +*** TURN *** [6d Jd 7c] [Js] +Player19: checks +Player17: bets $0.26 +Player19: folds +Uncalled bet ($0.26) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [6d Jd 7c Js] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.39 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 8c] +Player21: raises $0.06 to $0.08 +Player11: raises $0.10 to $0.18 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: raises $0.40 to $0.58 and is all-in +Player11: calls $0.40 +*** FLOP *** [Qs Jh 6h] +*** TURN *** [Qs Jh 6h] [Jc] +*** RIVER *** [Qs Jh 6h Jc] [4h] +*** SHOW DOWN *** +Player21: shows [Ah Qh] (a flush, Ace high) +Player11: shows [Ac Qd] (two pair, Queens and Jacks) +Player21 collected $1.14 from pot +*** SUMMARY *** +Total pot $1.19 | Rake $0.05 +Board [Qs Jh 6h Jc 4h] +Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high + + + +PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player11 ($1.23 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.38 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.14 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 4h] +Player11: raises $0.04 to $0.06 +Player14: folds +Player23: folds +Player17: calls $0.06 +Player5: calls $0.06 +Player22: calls $0.06 +Player19: raises $0.18 to $0.24 +Player3: folds +Player21: folds +Player11: calls $0.18 +Player17: calls $0.18 +Player5: folds +Player22: folds +*** FLOP *** [Th 7c 5s] +Player11: bets $0.23 +Player17: folds +Player19: raises $1.91 to $2.14 and is all-in +Player11: calls $0.76 and is all-in +Uncalled bet ($1.15) returned to Player19 +*** TURN *** [Th 7c 5s] [Td] +*** RIVER *** [Th 7c 5s Td] [4s] +*** SHOW DOWN *** +Player11: shows [Kh Qh] (a pair of Tens) +Player19: shows [As Ac] (two pair, Aces and Tens) +Player19 collected $2.75 from pot +*** SUMMARY *** +Total pot $2.85 | Rake $0.10 +Board [Th 7c 5s Td 4s] +Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player5 folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.12 in chips) +Player21: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3d 4d] +Player23: folds +Player17: calls $0.02 +Player11 leaves the table +Player5: folds +Player22: folds +Player19: folds +Player3: calls $0.02 +Player21: folds +Player14: checks +*** FLOP *** [8s Ad 8h] +Player14: checks +Player17: checks +Player3: checks +*** TURN *** [8s Ad 8h] [8c] +Player14: bets $0.06 +Player17: folds +Player3: folds +Uncalled bet ($0.06) returned to Player14 +Player14 collected $0.07 from pot +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [8s Ad 8h 8c] +Seat 2: Player14 (big blind) collected ($0.07) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded on the Turn +Seat 9: Player21 (small blind) folded before Flop + + + +PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 2: Player14 ($1.43 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.11 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Kd] +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player14: calls $0.01 +Player23: checks +*** FLOP *** [5c 9s Kh] +Player14: checks +Player23: checks +Player17: checks +*** TURN *** [5c 9s Kh] [7s] +Player14: bets $0.04 +Player23: calls $0.04 +Player21 leaves the table +Player17: calls $0.04 +*** RIVER *** [5c 9s Kh 7s] [3s] +Player14: bets $0.04 +Player23: raises $0.04 to $0.08 +Player17: folds +Player18 joins the table at seat #1 +Player14: calls $0.04 +*** SHOW DOWN *** +Player23: shows [Qs Ts] (a flush, Queen high) +Player14: mucks hand +Player23 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [5c 9s Kh 7s 3s] +Seat 2: Player14 (small blind) mucked [Kc Td] +Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.29 in chips) +Seat 3: Player23 ($2.57 in chips) +Seat 4: Player17 ($1.64 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [4c Js] +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: raises $0.12 to $0.14 +Player22: folds +Player14: folds +Player23: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Seat 2: Player14 (button) folded before Flop +Seat 3: Player23 (small blind) folded before Flop +Seat 4: Player17 (big blind) collected ($0.08) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts Qc] +Player9 joins the table at seat #9 +Player22: folds +Player19: folds +Player3: folds +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.04 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.04) +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.64 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.85 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [6d Ac] +Player19: folds +Player3: folds +Player9: checks +Player14: folds +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: checks +*** FLOP *** [7s 2d 3h] +Player22: checks +Player9: checks +Player17: bets $0.04 +Player22: calls $0.04 +Player9: folds +*** TURN *** [7s 2d 3h] [5d] +Player22: checks +Player17: checks +*** RIVER *** [7s 2d 3h 5d] [7c] +Player22: bets $0.02 +Player17: raises $0.06 to $0.08 +Player22: raises $0.06 to $0.14 +Player17: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.31 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.31 | Rake $0 +Board [7s 2d 3h 5d 7c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.31) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.71 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.83 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [9s Kd] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [9c Qh Tc] +Player22: bets $0.06 +Player19: folds +Player9: calls $0.06 +*** TURN *** [9c Qh Tc] [5h] +Player22: bets $0.12 +Player9: calls $0.12 +*** RIVER *** [9c Qh Tc 5h] [2c] +Player22: bets $0.12 +Player9: raises $0.12 to $0.24 +Player22: calls $0.12 +*** SHOW DOWN *** +Player9: shows [Ac Qc] (a flush, Ace high) +Player22: mucks hand +Player9 collected $0.90 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0 +Board [9c Qh Tc 5h 2c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) mucked [Js 8c] +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high + + + +PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.27 in chips) +Seat 7: Player19 ($3.88 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.29 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts 9h] +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: calls $0.08 +Player19: folds +Player3: folds +Player9: calls $0.06 +*** FLOP *** [Ad 8s Js] +Player9: checks +Player17: checks +Player22: bets $0.08 +Player9: folds +Player17: calls $0.08 +*** TURN *** [Ad 8s Js] [3s] +Player17: checks +Player22: bets $0.08 +Player17: calls $0.08 +*** RIVER *** [Ad 8s Js 3s] [Jh] +Player17: checks +Player22: bets $0.25 +Player17: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.59 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.59 | Rake $0 +Board [Ad 8s Js 3s Jh] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.59) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.21 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [3c Tc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: raises $0.04 to $0.06 +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.05) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.80 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.19 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Qs] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.78 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($2.17 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.18 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Ac] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: calls $0.01 +Player14: checks +*** FLOP *** [3s 7s Qh] +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: checks +*** TURN *** [3s 7s Qh] [Ah] +Player23 leaves the table +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: bets $0.02 +Player18: calls $0.02 +Player24 joins the table at seat #3 +Player14: calls $0.02 +Player17: folds +Player22: folds +Player19: folds +*** RIVER *** [3s 7s Qh Ah] [5d] +Player18: checks +Player14: checks +Player9: bets $0.02 +Player18: folds +Player14: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [3s 7s Qh Ah 5d] +Seat 1: Player18 (small blind) folded on the River +Seat 2: Player14 (big blind) folded on the River +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Turn +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.18) + + + +PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.23 in chips) +Seat 3: Player24 ($2 in chips) +Seat 4: Player17 ($2.15 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($3.85 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Qc] +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: calls $0.02 +Player9: folds +Player18: folds +Player14: calls $0.01 +Player24: checks +*** FLOP *** [5d 2s 3c] +Player14: checks +Player24: checks +Player17: bets $0.08 +Player22: folds +Player19: folds +Player3: folds +Player14: calls $0.08 +Player24: folds +*** TURN *** [5d 2s 3c] [9d] +Player14: checks +Player17: bets $0.20 +Player14: calls $0.20 +*** RIVER *** [5d 2s 3c 9d] [Jc] +Player14: checks +Player17: checks +*** SHOW DOWN *** +Player14: shows [4c 4s] (a pair of Fours) +Player17: mucks hand +Player14 collected $0.68 from pot +*** SUMMARY *** +Total pot $0.68 | Rake $0 +Board [5d 2s 3c 9d Jc] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 mucked [2c Qc] +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.98 in chips) +Seat 4: Player17 ($1.85 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($3.83 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc Td] +Player5: folds +Player22: folds +Player19: raises $0.06 to $0.08 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.07 +Player17: raises $0.40 to $0.48 +Player19: raises $3.35 to $3.83 and is all-in +Player24: folds +Player17: calls $1.37 and is all-in +Uncalled bet ($1.98) returned to Player19 +*** FLOP *** [3s 5c 7c] +*** TURN *** [3s 5c 7c] [Th] +*** RIVER *** [3s 5c 7c Th] [Jh] +*** SHOW DOWN *** +Player17: shows [Tc Td] (three of a kind, Tens) +Player19: shows [Ac As] (a pair of Aces) +Player17 collected $3.63 from pot +*** SUMMARY *** +Total pot $3.78 | Rake $0.15 +Board [3s 5c 7c Th Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 showed [Ac As] and lost with a pair of Aces +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.63 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 2s] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.01 +Player5: checks +*** FLOP *** [6d 7h 3s] +Player17: bets $0.06 +Player5: folds +Player9: calls $0.06 +*** TURN *** [6d 7h 3s] [Kc] +Player17: checks +Player9: bets $0.04 +Player17: calls $0.04 +*** RIVER *** [6d 7h 3s Kc] [5d] +Player17: checks +Player9: bets $0.04 +Player17: raises $0.22 to $0.26 +Player9: calls $0.22 +*** SHOW DOWN *** +Player17: shows [Ad 2s] (high card Ace) +Player9: shows [Jc Js] (a pair of Jacks) +Player9 collected $0.78 from pot +*** SUMMARY *** +Total pot $0.78 | Rake $0 +Board [6d 7h 3s Kc 5d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks + + + +PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.25 in chips) +Seat 5: Player5 ($2.61 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.72 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: folds +Player9: calls $0.10 +Player17: calls $0.10 +*** FLOP *** [6h 2c Jd] +Player5: bets $0.29 +Player9: folds +Player17: folds +Uncalled bet ($0.29) returned to Player5 +Player5 collected $0.38 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [6h 2c Jd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Flop +Seat 5: Player5 (small blind) collected ($0.38) +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.13 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd Th] +Player3: folds +Player9 said, "tu pua madre farolero" +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.58 in chips) +Seat 7: Player19 ($1.96 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 4h] +Player9 has timed out +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Uncalled bet ($0.02) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.05) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jd Th] +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: checks +*** FLOP *** [4d 7d Kh] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [4d 7d Kh] [3c] +Player9: checks +Player24: checks +Player17: bets $0.06 +Player9: folds +Player24: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [4d 7d Kh 3c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 collected ($0.07) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Turn + + + +PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.58 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 3d] +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.01 +Player18: checks +*** FLOP *** [3c Ac Kc] +Player9: bets $0.02 +Player18: calls $0.02 +*** TURN *** [3c Ac Kc] [Qc] +Player9: bets $0.04 +Player18: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [3c Ac Kc Qc] +Seat 1: Player18 (big blind) folded on the Turn +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) collected ($0.08) + + + +PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.70 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.62 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 5c] +Player24: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: checks +*** FLOP *** [4c 7c 6s] +Player14: checks +Player17: bets $0.08 +Player22: folds +Player9: calls $0.08 +Player14: folds +*** TURN *** [4c 7c 6s] [Th] +Player17: bets $0.32 +Player9: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [4c 7c 6s Th] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Turn + + + +PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.59 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.36 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7c Tc] +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.10 +*** FLOP *** [Jh 6c 5d] +Player17: checks +Player5: bets $0.29 +Player22: folds +Player17: calls $0.29 +*** TURN *** [Jh 6c 5d] [9d] +Player17: bets $0.32 +Player5: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.97 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.97 | Rake $0 +Board [Jh 6c 5d 9d] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 collected ($0.97) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.86 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 3s] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: checks +*** FLOP *** [2s Jd Qd] +Player24: checks +Player17: folds +Player9: checks +*** TURN *** [2s Jd Qd] [7h] +Player24: bets $0.06 +Player9: folds +Uncalled bet ($0.06) returned to Player24 +Player24 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [2s Jd Qd 7h] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) collected ($0.06) +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.50 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As 3c] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: checks +*** FLOP *** [6s Js 9d] +Player5: checks +Player22: bets $0.04 +Player9: folds +Player5: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.07 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [6s Js 9d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 collected ($0.07) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.89 in chips) +Seat 5: Player5 ($2.44 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 6h] +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.06 +Player5: folds +Player22: folds +*** FLOP *** [5c 4h 3h] +Player19: bets $0.08 +Player17: calls $0.08 +*** TURN *** [5c 4h 3h] [5s] +Player19: bets $0.10 +Player17: calls $0.10 +*** RIVER *** [5c 4h 3h 5s] [9s] +Player19: bets $0.14 +Player17: folds +Uncalled bet ($0.14) returned to Player19 +Player19 collected $0.51 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.51 | Rake $0 +Board [5c 4h 3h 5s 9s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 collected ($0.51) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.65 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.50 in chips) +Seat 7: Player19 ($2.22 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2s 4c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: checks +*** FLOP *** [Jh 9h Ac] +Player19: checks +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [Jh 9h Ac] [2d] +Player19: checks +Player9: bets $0.02 +Player24: calls $0.02 +Player17: calls $0.02 +Player19: folds +*** RIVER *** [Jh 9h Ac 2d] [Kd] +Player9: bets $0.02 +Player24: calls $0.02 +Player17: folds +*** SHOW DOWN *** +Player9: shows [Qc Qd] (a pair of Queens) +Player24: shows [7d Ad] (a pair of Aces) +Player24 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [Jh 9h Ac 2d Kd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces +Seat 4: Player17 folded on the River +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens + + + +PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.61 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.20 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.42 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 9d] +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player5: calls $0.06 +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.04 +*** FLOP *** [Tc Ts 8s] +Player9: checks +Player17: checks +Player5: checks +*** TURN *** [Tc Ts 8s] [Jh] +Player9: checks +Player17: bets $0.12 +Player5: folds +Player9: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Tc Ts 8s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.21) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.76 in chips) +Seat 5: Player5 ($2.37 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.36 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player5 leaves the table +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.79 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.34 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h 8s] +Player14: folds +Player24: folds +Player17: calls $0.02 +Player22: folds +Player19: folds +Player3: calls $0.02 +Player9: calls $0.01 +Player18: checks +*** FLOP *** [Ts 5c 5h] +Player0 joins the table at seat #5 +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** TURN *** [Ts 5c 5h] [9h] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** RIVER *** [Ts 5c 5h 9h] [2d] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** SHOW DOWN *** +Player9: shows [8d Qh] (a pair of Fives) +Player18: mucks hand +Player17: shows [8h 8s] (two pair, Eights and Fives) +Player3: mucks hand +Player17 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Ts 5c 5h 9h 2d] +Seat 1: Player18 (big blind) mucked [Js 3h] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) mucked [Ac 3c] +Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives + + + +PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.67 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.60 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9h Kc] +Player24: folds +Player17: folds +Player0: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player18: folds +Player14: calls $0.04 +*** FLOP *** [As 4s Js] +Player14: checks +Player0: checks +Player22: checks +Player9: bets $0.10 +Player14: folds +Player0: folds +Player22: calls $0.10 +*** TURN *** [As 4s Js] [4c] +Player22: checks +Player9: bets $0.16 +Player22: calls $0.16 +*** RIVER *** [As 4s Js 4c] [Jc] +Player22: checks +Player9: bets $0.16 +Player22: raises $0.36 to $0.52 +Player9: calls $0.36 +*** SHOW DOWN *** +Player22: shows [Ks Qd] (two pair, Jacks and Fours) +Player9: shows [Ad 8h] (two pair, Aces and Jacks) +Player9 collected $1.76 from pot +*** SUMMARY *** +Total pot $1.81 | Rake $0.05 +Board [As 4s Js 4c Jc] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded on the Flop +Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and Jacks + + + +PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.52 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.54 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 8d] +Player17: folds +Player0: raises $0.02 to $0.04 +Player22: raises $0.04 to $0.08 +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +Player24: folds +Player0: calls $0.04 +*** FLOP *** [4d Td 4s] +Player0: bets $0.22 +Player22: folds +Player19: folds +Player9: folds +Uncalled bet ($0.22) returned to Player0 +Player0 collected $0.35 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot $0.35 | Rake $0 +Board [4d Td 4s] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 collected ($0.35) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($2.01 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.57 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.16 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Jd] +Player0: folds +Player22: calls $0.02 +Player19: folds +Player3: calls $0.02 +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: raises $0.02 to $0.04 +Player22: calls $0.02 +Player3: calls $0.02 +Player9: calls $0.02 +Player24: calls $0.02 +*** FLOP *** [6d 9s 3d] +Player24: checks +Player17: bets $0.02 +Player22: folds +Player3: folds +Player9: calls $0.02 +Player24: calls $0.02 +*** TURN *** [6d 9s 3d] [3c] +Player24: checks +Player17: bets $0.02 +Player9: calls $0.02 +Player24: folds +*** RIVER *** [6d 9s 3d 3c] [5c] +Player17: bets $0.02 +Player9: calls $0.02 +*** SHOW DOWN *** +Player17: shows [8d Jd] (a pair of Threes) +Player9: shows [Ts 6s] (two pair, Sixes and Threes) +Player9 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [6d 9s 3d 3c 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded on the Turn +Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded on the Flop +Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes + + + +PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.75 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.40 in chips) +Player17: posts small blind $0.01 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c As] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: calls $0.02 +Player24: folds +Player17: calls $0.01 +Player0: checks +*** FLOP *** [3s 2c 5s] +Player17: checks +Player0: bets $0.04 +Player9: calls $0.04 +Player14: folds +Player17: raises $0.22 to $0.26 +Player0: raises $0.22 to $0.48 +Player9: folds +Player17: calls $0.22 +*** TURN *** [3s 2c 5s] [2h] +Player17: bets $0.36 +Player0: calls $0.36 +*** RIVER *** [3s 2c 5s 2h] [3d] +Player17: bets $0.90 +Player0: raises $0.05 to $0.95 and is all-in +Player17: calls $0.05 +*** SHOW DOWN *** +Player0: shows [5d 3h] (a full house, Threes full of Fives) +Player17: shows [5c As] (two pair, Fives and Threes) +Player0 collected $3.55 from pot +*** SUMMARY *** +Total pot $3.70 | Rake $0.15 +Board [3s 2c 5s 2h 3d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded on the Flop +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes +Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($1.94 in chips) +Seat 5: Player0 ($3.55 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.34 in chips) +Player0: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 9d] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: calls $0.01 +Player22: checks +*** FLOP *** [6h 2s Ad] +Player9 said, "jajajaja tonto" +Player0: checks +Player22: bets $0.02 +Player9: calls $0.02 +Player0: calls $0.02 +*** TURN *** [6h 2s Ad] [9s] +Player0: checks +Player22: checks +Player9: checks +*** RIVER *** [6h 2s Ad 9s] [Jh] +Player0: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player0: folds +*** SHOW DOWN *** +Player22: shows [As 5d] (a pair of Aces) +Player9: mucks hand +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6h 2s Ad 9s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player0 (small blind) folded on the River +Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 mucked [Ts Qs] + + + +PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player0 ($3.51 in chips) +Seat 6: Player22 ($1.67 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player0: calls $0.02 +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Jh 7d 8h] +Player22: checks +Player19: checks +Player9: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player22: folds +Player19: folds +Player9: calls $0.06 +*** TURN *** [Jh 7d 8h] [Qc] +Player9: checks +Player17: checks +Player0: checks +*** RIVER *** [Jh 7d 8h Qc] [5c] +Player9: bets $0.04 +Player17: folds +Player0: calls $0.04 +*** SHOW DOWN *** +Player9: shows [Ah Kh] (high card Ace) +Player0: shows [As 8s] (a pair of Eights) +Player0 collected $0.36 from pot +*** SUMMARY *** +Total pot $0.36 | Rake $0 +Board [Jh 7d 8h Qc 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights +Seat 6: Player22 (small blind) folded on the Flop +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ah Kh] and lost with high card Ace + + + +PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player0 ($3.75 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.09 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 2h] +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player0: raises $0.04 to $0.06 +Player22: folds +Player19: folds +Player3: folds +Player24: calls $0.04 +Player17: calls $0.04 +*** FLOP *** [2s 2d Kc] +Player24: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player24: folds +*** TURN *** [2s 2d Kc] [7h] +Player17: bets $0.20 +Player0: calls $0.20 +*** RIVER *** [2s 2d Kc 7h] [5s] +Player17: bets $3.04 +Player0 said, "lol" +Player0 said, "such bs" +Player0: folds +Uncalled bet ($3.04) returned to Player17 +Player17 collected $0.73 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.73 | Rake $0 +Board [2s 2d Kc 7h 5s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.73) +Seat 5: Player0 folded on the River +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 5: Player0 ($3.43 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.08 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: checks +*** FLOP *** [2h Kd 8d] +Player9: bets $0.02 +Player19: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.05 from pot +Player0 leaves the table +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Board [2h Kd 8d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded on the Flop +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.05) + + + +PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.06 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.15 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Ah] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: calls $0.06 +Player3: folds +Player9: folds +Player18: folds +*** FLOP *** [Qs 5c Qc] +Player17: checks +Player22: bets $0.09 +Player19: folds +Player17: folds +Uncalled bet ($0.09) returned to Player22 +Player22 collected $0.21 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Qs 5c Qc] +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 collected ($0.21) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.64 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.81 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.14 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 6c] +Player24: folds +Player17: raises $0.06 to $0.08 +Player22: folds +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +*** FLOP *** [8s 3d 7h] +Player17: bets $0.18 +Player15 joins the table at seat #5 +Player19: raises $0.18 to $0.36 +Player9: folds +Player17: folds +Uncalled bet ($0.18) returned to Player19 +Player19 collected $0.63 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.63 | Rake $0 +Board [8s 3d 7h] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 collected ($0.63) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Flop + + + +PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.63 in chips) +Seat 2: Player14 ($1.47 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.37 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.06 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d Ks] +Player17: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: checks +*** FLOP *** [3h Kh 2c] +Player24: checks +Player19: bets $0.02 +Player9 said, "maumont paga botes que tonto eres" +Player9: calls $0.02 +Player18 leaves the table +Player24: folds +*** TURN *** [3h Kh 2c] [Jd] +Player19: checks +Player9: bets $0.04 +Player19: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.11 from pot +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [3h Kh 2c Jd] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.11) + + + +PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.46 in chips) +Seat 3: Player24 ($1.87 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [8s 2h] +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player14: calls $0.02 +Player24: calls $0.01 +Player17: raises $0.12 to $0.14 +Player14: calls $0.12 +Player24: folds +*** FLOP *** [3h As 7h] +Player17: checks +Player14: bets $0.20 +Player17: folds +Uncalled bet ($0.20) returned to Player14 +Player14 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [3h As 7h] +Seat 2: Player14 (button) collected ($0.30) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.41 in chips) +Seat 5: Player15 ($1 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player17: posts small blind $0.01 +Player15: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Qh] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: folds +Player14: folds +Player24: folds +Player17: raises $0.92 to $0.94 +Player15: folds +Player22: folds +Uncalled bet ($0.92) returned to Player17 +Player17 collected $0.06 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.06) +Seat 5: Player15 (big blind) folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.45 in chips) +Seat 5: Player15 ($0.98 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player15: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Qh] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.04 to $0.06 +Player15: folds +Player22: folds +Player9: calls $0.04 +Player24: calls $0.04 +*** FLOP *** [3c 4s 7h] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [3c 4s 7h] [3s] +Player9: checks +Player24: checks +Player17: bets $0.14 +Player9: folds +Player24: folds +Uncalled bet ($0.14) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [3c 4s 7h 3s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 (button) collected ($0.21) +Seat 5: Player15 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.79 in chips) +Seat 4: Player17 ($3.60 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.07 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 8d] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.16 to $0.18 +Player15: folds +Player22: folds +Player19: folds +Player9: calls $0.16 +Player24: calls $0.16 +*** FLOP *** [2d 9s Ts] +Player9: checks +Player24: checks +Player17: bets $0.42 +Player9: folds +Player24: folds +Uncalled bet ($0.42) returned to Player17 +Player17 collected $0.57 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.57 | Rake $0 +Board [2d 9s Ts] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.57) +Seat 5: Player15 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.75 in chips) +Seat 7: Player19 ($2.31 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.89 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5s 7d] +Player20 joins the table at seat #1 +Player9: calls $0.02 +Player14: folds +Player24: folds +Player17: folds +Player15: folds +Player15 leaves the table +Player22: calls $0.02 +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: calls $0.04 +Player22: calls $0.04 +*** FLOP *** [8d Jh 7c] +Player19: bets $0.10 +Player12 joins the table at seat #5 +Player9: calls $0.10 +Player22: calls $0.10 +*** TURN *** [8d Jh 7c] [5c] +Player19: bets $0.30 +Player9: calls $0.30 +Player22: folds +*** RIVER *** [8d Jh 7c 5c] [Qc] +Player19: bets $0.22 +Player9: raises $2.21 to $2.43 and is all-in +Player19 has timed out +Player19: folds +Uncalled bet ($2.21) returned to Player9 +Player9 collected $1.49 from pot +*** SUMMARY *** +Total pot $1.54 | Rake $0.05 +Board [8d Jh 7c 5c Qc] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player15 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded on the Turn +Seat 7: Player19 (small blind) folded on the River +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 collected ($1.49) + + + +PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player12 ($1 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.70 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player20: sits out +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 2c] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.07) +Seat 5: Player12 folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5 in chips) +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.68 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Tc] +Player14: folds +Player24: folds +Player14 leaves the table +Player17: folds +Player12: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [7d 4h Qs] +Player9: checks +Player20: checks +Player22: checks +*** TURN *** [7d 4h Qs] [3c] +Player9: bets $0.02 +Player20: calls $0.02 +Player22: calls $0.02 +*** RIVER *** [7d 4h Qs 3c] [Kd] +Player9: bets $0.04 +Player20: folds +Player22: raises $0.05 to $0.09 +Player9: calls $0.05 +*** SHOW DOWN *** +Player22: shows [Ts Kh] (a pair of Kings) +Player9: mucks hand +Player22 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [7d 4h Qs 3c Kd] +Seat 1: Player20 (big blind) folded on the River +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) mucked [Jh Qd] + + + +PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($4.96 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.55 in chips) +Player20: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2h 7h] +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player2 joins the table at seat #2 +Player20: folds +Player24: calls $0.04 +*** FLOP *** [2d 4s 5d] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player24: folds +Player17: calls $0.06 +Player12: folds +*** TURN *** [2d 4s 5d] [Kc] +Player17: checks +Player22: checks +Player9: checks +*** RIVER *** [2d 4s 5d Kc] [Ks] +Player17: checks +Player22: checks +Player9: bets $0.40 +Player17: folds +Player22: folds +Uncalled bet ($0.40) returned to Player9 +Player9 collected $0.49 from pot +*** SUMMARY *** +Total pot $0.49 | Rake $0 +Board [2d 4s 5d Kc Ks] +Seat 1: Player20 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded on the River +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the River +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.49) + + + +PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($4.95 in chips) +Seat 3: Player24 ($1.55 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player12 ($0.92 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.92 in chips) +Player2 will be allowed to play after the button +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h Qd] +Player12: calls $0.02 +Player22: folds +Player19: folds +Player19 leaves the table +Player3: folds +Player9: calls $0.02 +Player20: raises $0.10 to $0.12 +Player24: folds +Player17: folds +Player12: calls $0.10 +Player9: folds +*** FLOP *** [3h Js Td] +Player12: checks +Player20: bets $0.20 +Player12: folds +Uncalled bet ($0.20) returned to Player20 +Player20 collected $0.29 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.29 | Rake $0 +Board [3h Js Td] +Seat 1: Player20 (button) collected ($0.29) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($1 in chips) +Seat 3: Player24 ($1.54 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player12 ($0.80 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.90 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jh Ah] +Player22: folds +Player3: folds +Player9: calls $0.02 +Player20: folds +Player2: checks +Player8 joins the table at seat #7 +Player24: calls $0.02 +Player17: raises $0.08 to $0.10 +Player12: folds +Player9: folds +Player2: folds +Player24: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.10 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 folded before Flop +Seat 3: Player24 (button) folded before Flop +Seat 4: Player17 (small blind) collected ($0.10) +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.78 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player8 ($1.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.88 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jc 2h] +Player8: checks +Player3: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.01 +Player22: checks +*** FLOP *** [Jh Tc 2d] +Player12: checks +Player22: bets $0.02 +Player8: calls $0.02 +Player9: folds +Player20: calls $0.02 +Player12: calls $0.02 +*** TURN *** [Jh Tc 2d] [Js] +Player12: checks +Player22: bets $0.08 +Player8: folds +Player20: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Jh Tc 2d Js] +Seat 1: Player20 folded on the Turn +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player8 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.08 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.74 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player8 ($1.07 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 7s] +Player3: folds +Player9: folds +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player8: checks +*** FLOP *** [Th 5d 7h] +Player8: checks +Player20: checks +Player12: checks +*** TURN *** [Th 5d 7h] [6s] +Player8: checks +Player20: checks +Player12: checks +*** RIVER *** [Th 5d 7h 6s] [8s] +Player8: checks +Player20: bets $0.04 +Player12: folds +Player8: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.07 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [Th 5d 7h 6s 8s] +Seat 1: Player20 collected ($0.07) +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the River +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player8 (big blind) folded on the River +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.72 in chips) +Seat 6: Player22 ($1.77 in chips) +Seat 7: Player8 ($1.05 in chips) +Seat 9: Player9 ($3.86 in chips) +Player8: posts small blind $0.01 +Player3: is sitting out +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah 2c] +Player20: folds +Player2: calls $0.02 +Player3 leaves the table +Player24: folds +Player17: folds +Player12: raises $0.06 to $0.08 +Player22: calls $0.08 +Player8: calls $0.07 +Player9: folds +Player2: calls $0.06 +*** FLOP *** [6h Js 3h] +Player8: checks +Player2: bets $0.90 and is all-in +Player12: folds +Player22: folds +Player8: calls $0.90 +*** TURN *** [6h Js 3h] [5h] +*** RIVER *** [6h Js 3h 5h] [8d] +*** SHOW DOWN *** +Player8: shows [6s 9s] (a pair of Sixes) +Player2: shows [Qc Jd] (a pair of Jacks) +Player2 collected $2.04 from pot +*** SUMMARY *** +Total pot $2.14 | Rake $0.10 +Board [6h Js 3h 5h 8d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($2.04 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.84 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 9d] +Player2: raises $0.06 to $0.08 +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player8: folds +Player9: calls $0.07 +Player20: folds +*** FLOP *** [Js Tc 8s] +Player9: bets $0.04 +Player2: raises $0.12 to $0.16 +Player9: calls $0.12 +*** TURN *** [Js Tc 8s] [Ad] +Player9: bets $0.10 +Player2: raises $1.70 to $1.80 and is all-in +Player9: folds +Uncalled bet ($1.70) returned to Player2 +Player2 collected $0.70 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0 +Board [Js Tc 8s Ad] +Seat 1: Player20 (big blind) folded before Flop +Seat 2: Player2 collected ($0.70) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Turn + + + +PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.11 in chips) +Seat 2: Player2 ($2.40 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.50 in chips) +Player20: posts small blind $0.01 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 4s] +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: folds +Player8: folds +Player9: calls $0.06 +Player20: folds +Player2: folds +*** FLOP *** [As 6c 5c] +Player17: bets $0.08 +Player12: calls $0.08 +Player9: raises $0.08 to $0.16 +Player17: folds +Player12: raises $0.42 to $0.58 and is all-in +Player9: calls $0.42 +*** TURN *** [As 6c 5c] [Qd] +*** RIVER *** [As 6c 5c Qd] [9d] +*** SHOW DOWN *** +Player12: shows [Ac Tc] (a pair of Aces) +Player9: mucks hand +Player12 collected $1.40 from pot +*** SUMMARY *** +Total pot $1.45 | Rake $0.05 +Board [As 6c 5c Qd 9d] +Seat 1: Player20 (small blind) folded before Flop +Seat 2: Player2 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 (button) mucked [8d Ah] + + + +PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.10 in chips) +Seat 2: Player2 ($2.38 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.84 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player2: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c 5d] +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player8: folds +Player9: folds +Player20: calls $0.06 +Player2: folds +Player24: folds +*** FLOP *** [7d 4s 8h] +Player2 leaves the table +Player17: checks +Player20: checks +*** TURN *** [7d 4s 8h] [Th] +Player17: checks +Player13 joins the table at seat #8 +Player20: bets $0.08 +Player17: raises $0.12 to $0.20 +Player20: calls $0.12 +*** RIVER *** [7d 4s 8h Th] [4h] +Player17: checks +Player20: checks +*** SHOW DOWN *** +Player17: shows [5c 5d] (two pair, Fives and Fours) +Player20: shows [Jc Tc] (two pair, Tens and Fours) +Player20 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [7d 4s 8h Th 4h] +Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours +Seat 2: Player2 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.50 in chips) +Seat 4: Player17 ($3.58 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player13: sits out +*** HOLE CARDS *** +Dealt to Player17 [Kd 7d] +Player22: calls $0.02 +Player8: folds +Player10 joins the table at seat #2 +Player9: folds +Player20: folds +Player24: calls $0.02 +Player17: calls $0.01 +Player12: checks +*** FLOP *** [6s 9d 6d] +Player17: bets $0.08 +Player12: folds +Player22: calls $0.08 +Player24: folds +*** TURN *** [6s 9d 6d] [2c] +Player17: checks +Player22: checks +*** RIVER *** [6s 9d 6d 2c] [8h] +Player17: checks +Player22: checks +*** SHOW DOWN *** +Player17: shows [Kd 7d] (a pair of Sixes) +Player22: shows [5h 5s] (two pair, Sixes and Fives) +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6s 9d 6d 2c 8h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded on the Flop +Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes +Seat 5: Player12 (big blind) folded on the Flop +Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.48 in chips) +Seat 5: Player12 ($1.38 in chips) +Seat 6: Player22 ($1.83 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($5 in chips) +Seat 9: Player9 ($2.86 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player13: posts big blind $0.02 +Player10: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d 7c] +Player8: folds +Player13: checks +Player9: folds +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [7d Kd Jh] +Player12: checks +Player22: checks +Player13: checks +Player17: checks +*** TURN *** [7d Kd Jh] [7s] +Player12: checks +Player22: checks +Player13: checks +Player17: bets $0.08 +Player12: folds +Player22: folds +Player13: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [7d Kd Jh 7s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) collected ($0.08) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) folded on the Turn +Seat 7: Player8 folded before Flop (didn't bet) +Seat 8: Player13 folded on the Turn +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.29 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player12 ($1.36 in chips) +Seat 6: Player22 ($1.81 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +Player10: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Js] +Player13: folds +Player9: folds +Player20: folds +Player10: checks +Player24: folds +Player17: raises $0.06 to $0.08 +Player12: calls $0.08 +Player22: calls $0.07 +Player8: calls $0.05 and is all-in +Player10: calls $0.06 +*** FLOP *** [9c 9s Ah] +Player22: bets $0.04 +Player10: folds +Player17: folds +Player12: calls $0.04 +*** TURN *** [9c 9s Ah] [Td] +Player22: bets $0.08 +Player12: folds +Uncalled bet ($0.08) returned to Player22 +*** RIVER *** [9c 9s Ah Td] [3d] +*** SHOW DOWN *** +Player22: shows [Ac 6c] (two pair, Aces and Nines) +Player22 collected $0.12 from side pot +Player8: shows [Kh Th] (two pair, Tens and Nines) +Player22 collected $0.35 from main pot +*** SUMMARY *** +Total pot $0.47 Main pot $0.35. Side pot $0.12. | Rake $0 +Board [9c 9s Ah Td 3d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines +Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines +Seat 8: Player13 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.21 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player12 ($1.24 in chips) +Seat 6: Player22 ($2.16 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player13: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7s 5h] +Player20: folds +Player10: calls $0.02 +Player8 leaves the table +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player13: folds +Player9: checks +*** FLOP *** [5s 8d Kc] +Player9: checks +Player10: bets $0.06 +Player17: raises $0.08 to $0.14 +Player12: folds +Player9: folds +Player10: calls $0.08 +*** TURN *** [5s 8d Kc] [4c] +Player10: checks +Player13 leaves the table +Player17: checks +*** RIVER *** [5s 8d Kc 4c] [3s] +Player10: checks +Player7 joins the table at seat #8 +Player17: checks +*** SHOW DOWN *** +Player10: shows [2c 2h] (a pair of Deuces) +Player17: shows [7s 5h] (a pair of Fives) +Player17 collected $0.37 from pot +*** SUMMARY *** +Total pot $0.37 | Rake $0 +Board [5s 8d Kc 4c 3s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 8: Player13 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Flop + + + +PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.05 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($2.84 in chips) +Player20: posts small blind $0.01 +Player10: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Js 6c] +Player24: folds +Player17: folds +Player12: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player10: raises $0.04 to $0.10 +Player9: calls $0.08 +Player20: raises $0.30 to $0.40 +Player10: raises $0.30 to $0.70 +Player9: calls $0.60 +Player20: raises $4.69 to $5.39 and is all-in +Player10: calls $0.35 and is all-in +Player9: calls $2.14 and is all-in +Uncalled bet ($2.55) returned to Player20 +*** FLOP *** [2c 2s Ts] +*** TURN *** [2c 2s Ts] [Kd] +*** RIVER *** [2c 2s Ts Kd] [9s] +*** SHOW DOWN *** +Player20: shows [Ad Ah] (two pair, Aces and Deuces) +Player9: shows [Qs 7h] (a pair of Deuces) +Player20 collected $3.43 from side pot +Player10: shows [Kh Ks] (a full house, Kings full of Deuces) +Player10 collected $3 from main pot +*** SUMMARY *** +Total pot $6.73 Main pot $3. Side pot $3.43. | Rake $0.30 +Board [2c 2s Ts Kd 9s] +Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces +Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces + + + +PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Player10: posts small blind $0.01 +Player24: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [6c Tc] +Player17: raises $0.04 to $0.06 +Player12: folds +Player16 joins the table at seat #7 +Player20 said, "lol everytime" +Player20: folds +Player10: raises $0.04 to $0.10 +Player24: folds +Player17: calls $0.04 +*** FLOP *** [5c Kc Jh] +Player10: checks +Player17: bets $0.08 +Player10: calls $0.08 +*** TURN *** [5c Kc Jh] [5h] +Player10: checks +Player17: checks +*** RIVER *** [5c Kc Jh 5h] [Ts] +Player10: checks +Player17: checks +*** SHOW DOWN *** +Player10: shows [Ad Ac] (two pair, Aces and Fives) +Player17: mucks hand +Player10 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [5c Kc Jh 5h Ts] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 mucked [6c Tc] +Seat 5: Player12 folded before Flop (didn't bet) + + + +PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3.20 in chips) +Seat 3: Player24 ($1.46 in chips) +Seat 4: Player17 ($3.49 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($1.80 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As 7h] +Player12: calls $0.02 +Player20 said, "haha nice" +Player9: calls $0.02 +Player20: calls $0.02 +Player10: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [Qs Qh Ad] +Player24: checks +Player17: bets $0.12 +Player12: folds +Player9: calls $0.12 +Player20: folds +Player10: folds +Player24: folds +*** TURN *** [Qs Qh Ad] [5h] +Player17: bets $0.10 +Player9: calls $0.10 +*** RIVER *** [Qs Qh Ad 5h] [Ah] +Player17: bets $0.12 +Player9: raises $1.44 to $1.56 and is all-in +Player17: calls $1.44 +*** SHOW DOWN *** +Player9: shows [Kh Jh] (a flush, Ace high) +Player17: shows [As 7h] (a full house, Aces full of Queens) +Player17 collected $3.53 from pot +*** SUMMARY *** +Total pot $3.68 | Rake $0.15 +Board [Qs Qh Ad 5h Ah] +Seat 1: Player20 folded on the Flop +Seat 2: Player10 (button) folded on the Flop +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens +Seat 5: Player12 folded on the Flop +Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high + + + +PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.22 in chips) +Seat 5: Player12 ($1.20 in chips) +Seat 6: Player22 ($2.16 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ac 7s] +Player22: folds +Player20: folds +Player10: folds +Player24: folds +Player22 said, "nh" +Player17: raises $0.08 to $0.10 +Player12: calls $0.08 +*** FLOP *** [8c 5d Qh] +Player17 said, "tyty" +Player17: checks +Player12: checks +*** TURN *** [8c 5d Qh] [Tc] +Player17: checks +Player12: bets $0.10 +Player17: folds +Uncalled bet ($0.10) returned to Player12 +Player12 collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8c 5d Qh Tc] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded on the Turn +Seat 5: Player12 (big blind) collected ($0.20) +Seat 6: Player22 folded before Flop (didn't bet) + + + +PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.12 in chips) +Seat 5: Player12 ($1.30 in chips) +Seat 6: Player22 ($2.16 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As Qc] +Player20: folds +Player10: calls $0.02 +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [8s 8h Kd] +Player12: checks +Player22: checks +Player10: checks +Player17: checks +*** TURN *** [8s 8h Kd] [9h] +Player12: bets $0.06 +Player22: folds +Player10: calls $0.06 +Player17: folds +*** RIVER *** [8s 8h Kd 9h] [6s] +Player12: bets $0.24 +Player10: folds +Uncalled bet ($0.24) returned to Player12 +Player12 collected $0.20 from pot +Player10 leaves the table +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8s 8h Kd 9h 6s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Turn +Seat 5: Player12 (small blind) collected ($0.20) +Seat 6: Player22 (big blind) folded on the Turn + + + +PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.10 in chips) +Seat 5: Player12 ($1.42 in chips) +Seat 6: Player22 ($2.14 in chips) +Seat 7: Player16 ($1.60 in chips) +Seat 9: Player9 ($1 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [5c 8c] +Player9: calls $0.02 +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player16: checks +*** FLOP *** [Ad Kd Qh] +Player16: checks +Player9: checks +Player17: checks +Player12: checks +*** TURN *** [Ad Kd Qh] [9c] +Player16: checks +Player9: bets $0.02 +Player17: folds +Player12: calls $0.02 +Player16: folds +*** RIVER *** [Ad Kd Qh 9c] [7d] +Player9: checks +Player4 joins the table at seat #2 +Player12: checks +*** SHOW DOWN *** +Player9: shows [6c Jd] (high card Ace) +Player12: shows [5h Kh] (a pair of Kings) +Player12 collected $0.13 from pot +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [Ad Kd Qh 9c 7d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player16 (big blind) folded on the Turn +Seat 9: Player9 showed [6c Jd] and lost with high card Ace + + + +PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.15 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($0.94 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [4h As] +Player20: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: calls $0.01 +Player9: checks +*** FLOP *** [Qh 5c 9c] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** TURN *** [Qh 5c 9c] [7d] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** RIVER *** [Qh 5c 9c 7d] [Qd] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** SHOW DOWN *** +Player7: shows [4s 5s] (two pair, Queens and Fives) +Player9: mucks hand +Player12: mucks hand +Player22: mucks hand +Player7 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Qh 5c 9c 7d Qd] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 mucked [3h 2s] +Seat 6: Player22 mucked [Ts 6s] +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) showed [4s 5s] and won ($0.08) with two pair, Queens and Fives +Seat 9: Player9 (big blind) mucked [6c 2d] + + + +PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.13 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2.06 in chips) +Seat 9: Player9 ($0.92 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [5s Ks] +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player16: folds +Player7: calls $0.02 +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qc 9c 5h] +Player9: checks +Player20: checks +Player12: checks +Player7: bets $0.06 +Player9: calls $0.06 +Player20: folds +Player12: calls $0.06 +*** TURN *** [Qc 9c 5h] [Td] +Player9: checks +Player12: checks +Player7: checks +*** RIVER *** [Qc 9c 5h Td] [Jh] +Player9: bets $0.20 +Player12: folds +Player7: folds +Uncalled bet ($0.20) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [Qc 9c 5h Td Jh] +Seat 1: Player20 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the River +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded on the River +Seat 9: Player9 (small blind) collected ($0.26) + + + +PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.92 in chips) +Seat 2: Player4 ($1 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.05 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ts 8s] +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player16: calls $0.02 +Player7: calls $0.02 +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [9d 3c Js] +Player20: checks +Player4: checks +Player17: checks +Player12: checks +Player22: checks +Player16: bets $0.10 +Player7: folds +Player20: calls $0.10 +Player4: calls $0.10 +Player17: calls $0.10 +Player12: folds +Player22: folds +*** TURN *** [9d 3c Js] [Qh] +Player20: checks +Player4: checks +Player17: checks +Player16: checks +*** RIVER *** [9d 3c Js Qh] [2s] +Player20: bets $0.26 +Player4: folds +Player17: calls $0.26 +Player16: folds +*** SHOW DOWN *** +Player20: shows [2h Jh] (two pair, Jacks and Deuces) +Player17: shows [Ts 8s] (a straight, Eight to Queen) +Player17 collected $1.01 from pot +*** SUMMARY *** +Total pot $1.06 | Rake $0.05 +Board [9d 3c Js Qh 2s] +Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the Flop +Seat 7: Player16 folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + +PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.88 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($1.03 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player4: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5h Qh] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player24: checks +*** FLOP *** [6c 7s 9h] +Player4: bets $0.02 +Player24: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player9: calls $0.02 +*** TURN *** [6c 7s 9h] [3h] +Player4: bets $0.02 +Player24: folds +Player12: folds +Player22: calls $0.02 +Player9: calls $0.02 +*** RIVER *** [6c 7s 9h 3h] [2h] +Player4: checks +Player22: checks +Player9: bets $0.02 +Player4: folds +Player22: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [6c 7s 9h 3h 2h] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the River +Seat 3: Player24 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 folded on the River +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.26) + + + +PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.82 in chips) +Seat 3: Player24 ($1.40 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.46 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.30 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 7s] +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player4: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [7c Qs Th] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.10 +Player9: folds +Player20: folds +Player4: calls $0.10 +Player24: folds +Player17: folds +Player12: folds +*** TURN *** [7c Qs Th] [Qd] +Player22: checks +Player4: checks +*** RIVER *** [7c Qs Th Qd] [6h] +Player22: bets $0.50 +Player4: folds +Uncalled bet ($0.50) returned to Player22 +Player22 collected $0.34 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [7c Qs Th Qd 6h] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 (button) folded on the River +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 collected ($0.34) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.70 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.69 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As Kd] +Player22: folds +Player16: folds +Player7: folds +Player9: folds +Player20: folds +Player4: raises $0.04 to $0.06 +Player24: folds +Player17: calls $0.05 +Player12: calls $0.04 +*** FLOP *** [Kh 3c Ah] +Player17: checks +Player12: checks +Player4: checks +*** TURN *** [Kh 3c Ah] [Jh] +Player17: checks +Player12: checks +Player4: checks +*** RIVER *** [Kh 3c Ah Jh] [5c] +Player17: checks +Player12: checks +Player4: checks +*** SHOW DOWN *** +Player17: shows [As Kd] (two pair, Aces and Kings) +Player12: mucks hand +Player4: mucks hand +Player17 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Kh 3c Ah Jh 5c] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 mucked [7s 8s] +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings +Seat 5: Player12 (big blind) mucked [Ts 3s] +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.91 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 2d] +Player16: folds +Player7: folds +Player9 has timed out +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.05 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 collected ($0.05) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.90 in chips) +Seat 6: Player22 ($2.66 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 5c] +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.01 +Player16: checks +*** FLOP *** [8d 5s Ts] +Player22: checks +Player16: checks +Player9: checks +Player12: checks +*** TURN *** [8d 5s Ts] [9h] +Player22: bets $0.04 +Player16: folds +Player9: folds +Player12: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.08 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [8d 5s Ts 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) collected ($0.08) +Seat 7: Player16 (big blind) folded on the Turn +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.88 in chips) +Seat 6: Player22 ($2.72 in chips) +Seat 7: Player16 ($1.43 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player16: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 6h] +Player9 has timed out +Player9: folds +Player20: folds +Player4: calls $0.02 +Player24: calls $0.02 +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: checks +*** FLOP *** [5d Th 9c] +Player7: checks +Player4: checks +Player24: checks +Player12: bets $0.02 +Player22: folds +Player7: folds +Player4: folds +Player24: calls $0.02 +*** TURN *** [5d Th 9c] [2d] +Player24: checks +Player12: checks +*** RIVER *** [5d Th 9c 2d] [9s] +Player24: checks +Player12: bets $0.06 +Player24: folds +Uncalled bet ($0.06) returned to Player12 +Player12 collected $0.15 from pot +*** SUMMARY *** +Total pot $0.15 | Rake $0 +Board [5d Th 9c 2d 9s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the Flop +Seat 3: Player24 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.15) +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player16 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d 9d] +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player16: folds +Player7: raises $0.06 to $0.08 +Player9 has timed out +Player9: folds +Uncalled bet ($0.06) returned to Player7 +Player7 collected $0.04 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) collected ($0.04) +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Js 7d] +Player24: folds +Player17: folds +Player24 leaves the table +Player12: folds +Player22: calls $0.02 +Player16: folds +Player1 joins the table at seat #3 +Player7: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [Jc 2d 9d] +Player20: checks +Player4: checks +Player22: checks +*** TURN *** [Jc 2d 9d] [Ac] +Player20: checks +Player4: checks +Player22: bets $0.04 +Player20: folds +Player4: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.06 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Jc 2d 9d Ac] +Seat 1: Player20 (small blind) folded on the Turn +Seat 2: Player4 (big blind) folded on the Turn +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.06) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.60 in chips) +Seat 3: Player1 ($2 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.24 in chips) +Player4: posts small blind $0.01 +Player1: posts big blind $0.02 +Player9: posts small blind $0.01 +*** HOLE CARDS *** +Dealt to Player17 [9c 8s] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player1: checks +*** FLOP *** [Td 3s Th] +Player4: checks +Player1: checks +Player12: checks +Player22: checks +Player9: checks +*** TURN *** [Td 3s Th] [9s] +Player4: checks +Player1: checks +Player12: checks +Player22: bets $0.08 +Player9: folds +Player4: folds +Player1: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.11 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [Td 3s Th 9s] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the Turn +Seat 3: Player1 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 collected ($0.11) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.98 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.21 in chips) +Player1: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Qc] +Player12: folds +Player22: folds +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player9: calls $0.04 +*** FLOP *** [6d 4d Qh] +Player9: checks +Player20: checks +*** TURN *** [6d 4d Qh] [Ac] +Player9: checks +Player20: checks +*** RIVER *** [6d 4d Qh Ac] [Ah] +Player9: bets $0.02 +Player20: calls $0.02 +*** SHOW DOWN *** +Player9: shows [2d Qd] (two pair, Aces and Queens) +Player20: mucks hand +Player9 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [6d 4d Qh Ac Ah] +Seat 1: Player20 mucked [Kc Jd] +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player1 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens + + + +PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.97 in chips) +Seat 4: Player17 ($5.79 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 2h] +Player22: folds +Player16: raises $0.06 to $0.08 +Player7: folds +Player9: folds +Player20: folds +Player4: folds +Player1: calls $0.08 +Player17: folds +Player12: folds +*** FLOP *** [9c 7d 3h] +Player16: checks +Player1: checks +*** TURN *** [9c 7d 3h] [9h] +Player16: bets $0.06 +Player1: folds +Uncalled bet ($0.06) returned to Player16 +Player16 collected $0.19 from pot +Player16: doesn't show hand +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [9c 7d 3h 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 (button) folded on the Turn +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 collected ($0.19) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.95 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.53 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6s] +Player16: folds +Player16 leaves the table +Player7: folds +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player12: calls $0.05 +Player22: calls $0.04 +*** FLOP *** [Ts Kc Jd] +Player6 joins the table at seat #7 +Player12: checks +Player22: bets $0.06 +Player20: folds +Player12: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.18 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Ts Kc Jd] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Flop +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($2.95 in chips) +Seat 7: Player6 ($2 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player22: posts small blind $0.01 +Player6: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks Jd] +Player7: calls $0.02 +Player9: folds +Player20: folds +Player4: calls $0.02 +Player1: raises $0.04 to $0.06 +Player17: folds +Player12: folds +Player22: calls $0.05 +Player6: calls $0.04 +Player7: calls $0.04 +Player4: calls $0.04 +*** FLOP *** [5c 3h 4s] +Player22: bets $0.04 +Player6: calls $0.04 +Player7: folds +Player4: calls $0.04 +Player1: calls $0.04 +*** TURN *** [5c 3h 4s] [Qh] +Player22: checks +Player6: checks +Player4: checks +Player1: checks +*** RIVER *** [5c 3h 4s Qh] [6h] +Player22: bets $0.04 +Player6: folds +Player4: folds +Player1: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.46 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.46 | Rake $0 +Board [5c 3h 4s Qh 6h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the River +Seat 3: Player1 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.46) +Seat 7: Player6 (big blind) folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.90 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player6: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 9s] +Player9: folds +Player20: folds +Player4: folds +Player1: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d Js] +Player20: folds +Player4: folds +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.01) returned to Player9 +Player9 collected $0.02 from pot +*** SUMMARY *** +Total pot $0.02 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.02) + + + +PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.33 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qd 2s] +Player4: folds +Player1 has timed out +Player1: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player6: folds +Player7: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qs 6d 4s] +Player9: checks +Player20: checks +Player12: bets $0.02 +Player9: folds +Player20: folds +Uncalled bet ($0.02) returned to Player12 +Player12 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Qs 6d 4s] +Seat 1: Player20 (big blind) folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.06) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Flop + + + +PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.37 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.93 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.31 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 6c] +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [4h 7d Td] +Player20: checks +Player4: checks +*** TURN *** [4h 7d Td] [3d] +Player20: checks +Player4: checks +*** RIVER *** [4h 7d Td 3d] [Qs] +Player20: bets $0.04 +Player4: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.04 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [4h 7d Td 3d Qs] +Seat 1: Player20 (small blind) collected ($0.04) +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt index 543c3f1e..bdbf1305 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt @@ -1,45 +1,45 @@ -PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] -Table '999999999' 9-max Seat #1 is the button -Seat 1: Player2 ($0.88 in chips) -Seat 2: Player0 ($1.61 in chips) -Seat 3: Player5 ($5.27 in chips) -Seat 5: Player1 ($2.15 in chips) -Seat 6: Player3 ($2.55 in chips) -Seat 7: Player6 ($2.90 in chips) -Seat 9: Player4 ($1.93 in chips) -Player0: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player0 [Td Qc] -Player1: folds -Player3: calls $0.02 -Player3 said, "":D"" -Player6: folds -Player4: folds -Player2 has timed out -Player2: folds -Player0: calls $0.01 -Player5: checks -*** FLOP *** [7d 2s Jc] -Player0: checks -Player5: checks -Player3: checks -*** TURN *** [7d 2s Jc] [2h] -Player0: folds -Player5: bets $0.06 -Player3: folds -Uncalled bet ($0.06) returned to Player5 -Player5 collected $0.06 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [7d 2s Jc 2h] -Seat 1: Player2 (button) folded before Flop (didn't bet) -Seat 2: Player0 (small blind) folded on the Turn -Seat 3: Player5 (big blind) collected ($0.06) -Seat 5: Player1 folded before Flop (didn't bet) -Seat 6: Player3 folded on the Turn -Seat 7: Player6 folded before Flop (didn't bet) -Seat 9: Player4 folded before Flop (didn't bet) +PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] +Table '999999999' 9-max Seat #1 is the button +Seat 1: Player2 ($0.88 in chips) +Seat 2: Player0 ($1.61 in chips) +Seat 3: Player5 ($5.27 in chips) +Seat 5: Player1 ($2.15 in chips) +Seat 6: Player3 ($2.55 in chips) +Seat 7: Player6 ($2.90 in chips) +Seat 9: Player4 ($1.93 in chips) +Player0: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player0 [Td Qc] +Player1: folds +Player3: calls $0.02 +Player3 said, "":D"" +Player6: folds +Player4: folds +Player2 has timed out +Player2: folds +Player0: calls $0.01 +Player5: checks +*** FLOP *** [7d 2s Jc] +Player0: checks +Player5: checks +Player3: checks +*** TURN *** [7d 2s Jc] [2h] +Player0: folds +Player5: bets $0.06 +Player3: folds +Uncalled bet ($0.06) returned to Player5 +Player5 collected $0.06 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [7d 2s Jc 2h] +Seat 1: Player2 (button) folded before Flop (didn't bet) +Seat 2: Player0 (small blind) folded on the Turn +Seat 3: Player5 (big blind) collected ($0.06) +Seat 5: Player1 folded before Flop (didn't bet) +Seat 6: Player3 folded on the Turn +Seat 7: Player6 folded before Flop (didn't bet) +Seat 9: Player4 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt index 98ce48d6..feaf8194 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt @@ -1,33 +1,33 @@ -PokerStars Game #42875758685: Hold'em No Limit ($0.05/$0.10 USD) - 2010/04/19 0:19:11 WET [2010/04/18 19:19:11 ET] -Table 'gimick VI' 9-max Seat #4 is the button -Seat 3: Player1 ($5.55 in chips) -Seat 4: Player0 ($2.40 in chips) -Seat 8: Player2 ($3.90 in chips) -Player2: posts small blind $0.05 -Player1: posts big blind $0.10 -*** HOLE CARDS *** +PokerStars Game #42875758685: Hold'em No Limit ($0.05/$0.10 USD) - 2010/04/19 0:19:11 WET [2010/04/18 19:19:11 ET] +Table 'gimick VI' 9-max Seat #4 is the button +Seat 3: Player1 ($5.55 in chips) +Seat 4: Player0 ($2.40 in chips) +Seat 8: Player2 ($3.90 in chips) +Player2: posts small blind $0.05 +Player1: posts big blind $0.10 +*** HOLE CARDS *** Dealt to Player0 [7d 8d] -Player0: raises $0.30 to $0.40 -Player2: calls $0.35 -Player1: folds -*** FLOP *** [2h 2d Qd] -Player2: checks -Player0: bets $0.60 -Player2: raises $0.60 to $1.20 -Player0: calls $0.60 -*** TURN *** [2h 2d Qd] [5d] -Player2: bets $0.90 -Player0: calls $0.80 and is all-in -Uncalled bet ($0.10) returned to Player2 -*** RIVER *** [2h 2d Qd 5d] [4d] -*** SHOW DOWN *** -Player2: shows [9d As] (a flush, Queen high) -Player0: shows [7d 8d] (a flush, Queen high - lower cards) -Player2 collected $4.70 from pot -*** SUMMARY *** -Total pot $4.90 | Rake $0.20 -Board [2h 2d Qd 5d 4d] -Seat 3: Player1 (big blind) folded before Flop -Seat 4: Player0 (button) showed [7d 8d] and lost with a flush, Queen high -Seat 8: Player2 (small blind) showed [9d As] and won ($4.70) with a flush, Queen high +Player0: raises $0.30 to $0.40 +Player2: calls $0.35 +Player1: folds +*** FLOP *** [2h 2d Qd] +Player2: checks +Player0: bets $0.60 +Player2: raises $0.60 to $1.20 +Player0: calls $0.60 +*** TURN *** [2h 2d Qd] [5d] +Player2: bets $0.90 +Player0: calls $0.80 and is all-in +Uncalled bet ($0.10) returned to Player2 +*** RIVER *** [2h 2d Qd 5d] [4d] +*** SHOW DOWN *** +Player2: shows [9d As] (a flush, Queen high) +Player0: shows [7d 8d] (a flush, Queen high - lower cards) +Player2 collected $4.70 from pot +*** SUMMARY *** +Total pot $4.90 | Rake $0.20 +Board [2h 2d Qd 5d 4d] +Seat 3: Player1 (big blind) folded before Flop +Seat 4: Player0 (button) showed [7d 8d] and lost with a flush, Queen high +Seat 8: Player2 (small blind) showed [9d As] and won ($4.70) with a flush, Queen high diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt index 8ca829fe..01e448cf 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt @@ -1,158 +1,158 @@ - -PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET] -Table '99999999I' 9-max Seat #3 is the button -Seat 2: Player5 ($0.58 in chips) -Seat 3: Player1 ($0.65 in chips) -Seat 6: Player4 ($1.92 in chips) -Seat 7: Player6 ($2.81 in chips) -Seat 8: Player3 ($2.50 in chips) -Seat 9: Player2 ($0.80 in chips) -Player0 will be allowed to play after the button -Player4: posts small blind $0.01 -Player6: posts big blind $0.02 -Player3: posts big blind $0.02 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [8d As 2h Ks] -Player3: checks -Player2: checks -Player5: raises $0.02 to $0.04 -Player1: raises $0.02 to $0.06 -Player4: calls $0.05 -Player6: folds -Player3: calls $0.04 -Player2: calls $0.04 -Player5: calls $0.02 -*** FLOP *** [Qh 7c Qs] -Player4: checks -Player3: checks -Player2: bets $0.31 -Player5: folds -Player1: folds -Player4: folds -Player3: folds -Uncalled bet ($0.31) returned to Player2 -Player2 collected $0.31 from pot -*** SUMMARY *** -Total pot $0.32 | Rake $0.01 -Board [Qh 7c Qs] -Seat 2: Player5 folded on the Flop -Seat 3: Player1 (button) folded on the Flop -Seat 6: Player4 (small blind) folded on the Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player3 folded on the Flop -Seat 9: Player2 collected ($0.31) - - - -PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET] -Table '99999999I' 9-max Seat #6 is the button -Seat 2: Player5 ($0.52 in chips) -Seat 3: Player1 ($0.59 in chips) -Seat 5: Player0 ($0.90 in chips) -Seat 6: Player4 ($1.86 in chips) -Seat 7: Player6 ($2.79 in chips) -Seat 8: Player3 ($5 in chips) -Seat 9: Player2 ($1.05 in chips) -Player6: posts small blind $0.01 -Player3: posts big blind $0.02 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [6d 3c 5s As] -Player2: calls $0.02 -Player5: calls $0.02 -Player1: calls $0.02 -Player0: raises $0.06 to $0.08 -Player4: calls $0.08 -Player6: folds -Player3: folds -Player2: calls $0.06 -Player5: calls $0.06 -Player1: raises $0.06 to $0.14 -Player0: raises $0.55 to $0.69 -Player4: calls $0.61 -Player2: raises $0.36 to $1.05 and is all-in -Player5: folds -Player1: calls $0.45 and is all-in -Player0: calls $0.21 and is all-in -Player4: calls $0.36 -*** FLOP *** [6c Kc Qc] -*** TURN *** [6c Kc Qc] [Jc] -*** RIVER *** [6c Kc Qc Jc] [4c] -*** SHOW DOWN *** -Player2: shows [Js Ah 5d 9h] (a pair of Jacks) -Player4: shows [9c 9d 7d 7h] (a pair of Nines) -Player2 collected $0.29 from side pot-2 -Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace) -Player0 collected $0.88 from side pot-1 -Player1: shows [6d 3c 5s As] (a pair of Sixes) -Player0 collected $2.35 from main pot -*** SUMMARY *** -Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18 -Board [6c Kc Qc Jc 4c] -Seat 2: Player5 folded before Flop -Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes -Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace -Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks - - - -PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET] -Table '99999999I' 9-max Seat #7 is the button -Seat 2: Player5 ($0.44 in chips) -Seat 3: Player1 ($0.80 in chips) -Seat 5: Player0 ($3.23 in chips) -Seat 6: Player4 ($0.81 in chips) -Seat 7: Player6 ($2.78 in chips) -Seat 8: Player3 ($4.98 in chips) -Seat 9: Player2 ($0.29 in chips) -Player3: posts small blind $0.01 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [2c 4c 3s 7c] -Player5: calls $0.02 -Player1: calls $0.02 -Player0: calls $0.02 -Player4: folds -Player6: calls $0.02 -Player3: folds -Player2: checks -*** FLOP *** [7h 8s 4s] -Player2: checks -Player5: bets $0.02 -Player1: raises $0.02 to $0.04 -Player0: raises $0.14 to $0.18 -Player6: calls $0.18 -Player2: raises $0.09 to $0.27 and is all-in -Player5: calls $0.25 -Player1: raises $0.51 to $0.78 and is all-in -Player0: calls $0.60 -Player6: folds -Player5: calls $0.15 and is all-in -*** TURN *** [7h 8s 4s] [2s] -*** RIVER *** [7h 8s 4s 2s] [2h] -*** SHOW DOWN *** -Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) -Player0: shows [6h 3h Tc 9c] (a pair of Deuces) -Player1 collected $0.69 from side pot-2 -Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens) -Player1 collected $0.42 from side pot-1 -Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces) -Player1 collected $1.31 from main pot -*** SUMMARY *** -Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12 -Board [7h 8s 4s 2s 2h] -Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens -Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens -Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces -Seat 6: Player4 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded on the Flop -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player2 (big blind) showed [5s 7d Kd 9h] and lost with two pair, Sevens and Deuces - - - + +PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET] +Table '99999999I' 9-max Seat #3 is the button +Seat 2: Player5 ($0.58 in chips) +Seat 3: Player1 ($0.65 in chips) +Seat 6: Player4 ($1.92 in chips) +Seat 7: Player6 ($2.81 in chips) +Seat 8: Player3 ($2.50 in chips) +Seat 9: Player2 ($0.80 in chips) +Player0 will be allowed to play after the button +Player4: posts small blind $0.01 +Player6: posts big blind $0.02 +Player3: posts big blind $0.02 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [8d As 2h Ks] +Player3: checks +Player2: checks +Player5: raises $0.02 to $0.04 +Player1: raises $0.02 to $0.06 +Player4: calls $0.05 +Player6: folds +Player3: calls $0.04 +Player2: calls $0.04 +Player5: calls $0.02 +*** FLOP *** [Qh 7c Qs] +Player4: checks +Player3: checks +Player2: bets $0.31 +Player5: folds +Player1: folds +Player4: folds +Player3: folds +Uncalled bet ($0.31) returned to Player2 +Player2 collected $0.31 from pot +*** SUMMARY *** +Total pot $0.32 | Rake $0.01 +Board [Qh 7c Qs] +Seat 2: Player5 folded on the Flop +Seat 3: Player1 (button) folded on the Flop +Seat 6: Player4 (small blind) folded on the Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player3 folded on the Flop +Seat 9: Player2 collected ($0.31) + + + +PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET] +Table '99999999I' 9-max Seat #6 is the button +Seat 2: Player5 ($0.52 in chips) +Seat 3: Player1 ($0.59 in chips) +Seat 5: Player0 ($0.90 in chips) +Seat 6: Player4 ($1.86 in chips) +Seat 7: Player6 ($2.79 in chips) +Seat 8: Player3 ($5 in chips) +Seat 9: Player2 ($1.05 in chips) +Player6: posts small blind $0.01 +Player3: posts big blind $0.02 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [6d 3c 5s As] +Player2: calls $0.02 +Player5: calls $0.02 +Player1: calls $0.02 +Player0: raises $0.06 to $0.08 +Player4: calls $0.08 +Player6: folds +Player3: folds +Player2: calls $0.06 +Player5: calls $0.06 +Player1: raises $0.06 to $0.14 +Player0: raises $0.55 to $0.69 +Player4: calls $0.61 +Player2: raises $0.36 to $1.05 and is all-in +Player5: folds +Player1: calls $0.45 and is all-in +Player0: calls $0.21 and is all-in +Player4: calls $0.36 +*** FLOP *** [6c Kc Qc] +*** TURN *** [6c Kc Qc] [Jc] +*** RIVER *** [6c Kc Qc Jc] [4c] +*** SHOW DOWN *** +Player2: shows [Js Ah 5d 9h] (a pair of Jacks) +Player4: shows [9c 9d 7d 7h] (a pair of Nines) +Player2 collected $0.29 from side pot-2 +Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace) +Player0 collected $0.88 from side pot-1 +Player1: shows [6d 3c 5s As] (a pair of Sixes) +Player0 collected $2.35 from main pot +*** SUMMARY *** +Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18 +Board [6c Kc Qc Jc 4c] +Seat 2: Player5 folded before Flop +Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes +Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace +Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks + + + +PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET] +Table '99999999I' 9-max Seat #7 is the button +Seat 2: Player5 ($0.44 in chips) +Seat 3: Player1 ($0.80 in chips) +Seat 5: Player0 ($3.23 in chips) +Seat 6: Player4 ($0.81 in chips) +Seat 7: Player6 ($2.78 in chips) +Seat 8: Player3 ($4.98 in chips) +Seat 9: Player2 ($0.29 in chips) +Player3: posts small blind $0.01 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [2c 4c 3s 7c] +Player5: calls $0.02 +Player1: calls $0.02 +Player0: calls $0.02 +Player4: folds +Player6: calls $0.02 +Player3: folds +Player2: checks +*** FLOP *** [7h 8s 4s] +Player2: checks +Player5: bets $0.02 +Player1: raises $0.02 to $0.04 +Player0: raises $0.14 to $0.18 +Player6: calls $0.18 +Player2: raises $0.09 to $0.27 and is all-in +Player5: calls $0.25 +Player1: raises $0.51 to $0.78 and is all-in +Player0: calls $0.60 +Player6: folds +Player5: calls $0.15 and is all-in +*** TURN *** [7h 8s 4s] [2s] +*** RIVER *** [7h 8s 4s 2s] [2h] +*** SHOW DOWN *** +Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) +Player0: shows [6h 3h Tc 9c] (a pair of Deuces) +Player1 collected $0.69 from side pot-2 +Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens) +Player1 collected $0.42 from side pot-1 +Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces) +Player1 collected $1.31 from main pot +*** SUMMARY *** +Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12 +Board [7h 8s 4s 2s 2h] +Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens +Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens +Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces +Seat 6: Player4 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded on the Flop +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player2 (big blind) showed [5s 7d Kd 9h] and lost with two pair, Sevens and Deuces + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt index 2674d01d..25720a16 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt @@ -1,1510 +1,1510 @@ -PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (300 in chips) -Seat 2: Player21 (300 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (300 in chips) -Seat 6: Player0 (300 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player21: posts small blind 25 -Player12: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [4s 9d] -Player11: raises 540 to 590 and is all-in -Player18: calls 290 and is all-in -Player0: folds -Player6: calls 290 and is all-in -Player21: folds -Player12: calls 240 and is all-in -Uncalled bet (300) returned to Player11 -*** FLOP *** [4c 5d Ts] -*** TURN *** [4c 5d Ts] [Js] -*** RIVER *** [4c 5d Ts Js] [7c] -*** SHOW DOWN *** -Player12: shows [3c Kh] (high card King) -Player11: shows [8h 7s] (a pair of Sevens) -Player18: shows [4s 9d] (a pair of Fours) -Player6: shows [Qc Td] (a pair of Tens) -Player6 collected 1245 from pot -Player18 re-buys and receives 600 chips for 2 FPPs -Player12 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 1245 | Rake 0 -Board [4c 5d Ts Js 7c] -Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens -Seat 2: Player21 (small blind) folded before Flop -Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King -Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens -Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours -Seat 6: Player0 folded before Flop (didn't bet) - - - -PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (1245 in chips) -Seat 2: Player21 (265 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (300 in chips) -Seat 5: Player18 (600 in chips) -Seat 6: Player0 (290 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player12: posts small blind 25 -Player11: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [Qs 7c] -Player18: raises 540 to 590 and is all-in -Player0: folds -Player6: raises 540 to 1130 -Player21: folds -Player12: calls 265 and is all-in -Player11: calls 240 and is all-in -Uncalled bet (540) returned to Player6 -*** FLOP *** [Jc 4c 5d] -*** TURN *** [Jc 4c 5d] [3c] -*** RIVER *** [Jc 4c 5d 3c] [3h] -*** SHOW DOWN *** -Player18: shows [Qs 7c] (a pair of Threes) -Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) -Player6 collected 600 from side pot -Player12: shows [8s Qd] (a pair of Threes - lower kicker) -Player11: shows [2c Jh] (two pair, Jacks and Threes) -Player11 collected 1220 from main pot -Player18 re-buys and receives 600 chips for 2 FPPs -Player12 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 -Board [Jc 4c 5d 3c 3h] -Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes -Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes -Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes -Seat 6: Player0 folded before Flop (didn't bet) - - - -PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (1245 in chips) -Seat 2: Player21 (255 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (1220 in chips) -Seat 5: Player18 (600 in chips) -Seat 6: Player0 (280 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player11: posts small blind 25 -Player18: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [2h Qd] -Player0: raises 150 to 200 -Player6: folds -Player21: folds -Player12: folds -Player11: folds -Player18: raises 350 to 550 -Player0: calls 70 and is all-in -Uncalled bet (280) returned to Player18 -*** FLOP *** [9s Ks Th] -*** TURN *** [9s Ks Th] [Jc] -*** RIVER *** [9s Ks Th Jc] [5h] -*** SHOW DOWN *** -Player18: shows [2h Qd] (a straight, Nine to King) -Player0: shows [As Jd] (a pair of Jacks) -Player18 collected 625 from pot -Player0 finished the tournament in 273rd place -*** SUMMARY *** -Total pot 625 | Rake 0 -Board [9s Ks Th Jc 5h] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player12 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King -Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks - - - -PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (1235 in chips) -Seat 2: Player21 (245 in chips) -Seat 3: Player12 (290 in chips) -Seat 4: Player11 (1185 in chips) -Seat 5: Player18 (945 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player18: posts small blind 25 -Player6: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [6d Jc] -Player21: raises 185 to 235 and is all-in -Player12: folds -Player11: calls 235 -Player18: raises 185 to 420 -Player6: raises 805 to 1225 and is all-in -Player11: calls 940 and is all-in -Player18: calls 515 and is all-in -Uncalled bet (50) returned to Player6 -Player13 is connected -*** FLOP *** [5c As Ts] -*** TURN *** [5c As Ts] [6c] -*** RIVER *** [5c As Ts 6c] [6h] -*** SHOW DOWN *** -Player6: shows [8h 9d] (a pair of Sixes) -Player11: shows [2h 2s] (two pair, Sixes and Deuces) -Player11 collected 480 from side pot-2 -Player18: shows [6d Jc] (three of a kind, Sixes) -Player18 collected 2100 from side pot-1 -Player21: shows [Tc Ah] (two pair, Aces and Tens) -Player18 collected 990 from main pot -Player21 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 -Board [5c As Ts 6c 6h] -Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes -Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces -Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes - - - -PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (50 in chips) -Seat 2: Player21 (300 in chips) -Seat 3: Player12 (280 in chips) -Seat 4: Player11 (480 in chips) -Seat 5: Player18 (3090 in chips) -Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player6: posts small blind 25 -Player21: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [9h Qd] -Player6 re-buys and receives 300 chips for 1 FPPs -Player12: raises 220 to 270 and is all-in -Player11: folds -Player18: raises 1230 to 1500 -Player6: calls 15 and is all-in -Player21: folds -Uncalled bet (1230) returned to Player18 -*** FLOP *** [2h 8c 5h] -*** TURN *** [2h 8c 5h] [Ac] -*** RIVER *** [2h 8c 5h Ac] [2s] -*** SHOW DOWN *** -Player12: shows [Kh 6h] (a pair of Deuces) -Player18: shows [9h Qd] (a pair of Deuces - lower kicker) -Player12 collected 470 from side pot -Player6: shows [As 8s] (two pair, Aces and Eights) -Player12 is sitting out -Player6 collected 210 from main pot -*** SUMMARY *** -Total pot 680 Main pot 210. Side pot 470. | Rake 0 -Board [2h 8c 5h Ac 2s] -Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces and Eights -Seat 2: Player21 (big blind) folded before Flop -Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces -Seat 4: Player11 folded before Flop (didn't bet) -Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces - - - -PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (510 in chips) -Seat 2: Player21 (240 in chips) -Seat 3: Player12 (470 in chips) is sitting out -Seat 4: Player11 (470 in chips) -Seat 5: Player18 (2810 in chips) -Seat 6: Player13 (1475 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player21: posts small blind 50 -Player12: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [Jc Td] -Player11: raises 350 to 450 and is all-in -Player18: raises 2340 to 2790 and is all-in -Player13: folds -Player6: calls 490 and is all-in -Player21: folds -Player12: folds -Uncalled bet (2300) returned to Player18 -*** FLOP *** [2c 4h 3c] -*** TURN *** [2c 4h 3c] [Ac] -*** RIVER *** [2c 4h 3c Ac] [9c] -*** SHOW DOWN *** -Player18: shows [Jc Td] (a flush, Ace high) -Player6: shows [Th Ks] (high card Ace) -Player18 collected 80 from side pot -Player11: shows [8h 9d] (a pair of Nines) -Player18 collected 1620 from main pot -Player11 re-buys and receives 600 chips for 2 FPPs -Player6 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1700 Main pot 1620. Side pot 80. | Rake 0 -Board [2c 4h 3c Ac 9c] -Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace -Seat 2: Player21 (small blind) folded before Flop -Seat 3: Player12 (big blind) folded before Flop -Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines -Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high -Seat 6: Player13 folded before Flop (didn't bet) - - - -PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (600 in chips) -Seat 2: Player21 (170 in chips) -Seat 3: Player12 (350 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (4000 in chips) -Seat 6: Player13 (1455 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player12: posts small blind 50 -Player11: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [Jd 6s] -Player18: raises 3880 to 3980 and is all-in -Player13: calls 1435 and is all-in -Player6: folds -Player21: folds -Player12: folds -Player11: calls 480 and is all-in -Uncalled bet (2545) returned to Player18 -*** FLOP *** [Kd 9s Qh] -*** TURN *** [Kd 9s Qh] [Ts] -*** RIVER *** [Kd 9s Qh Ts] [7c] -*** SHOW DOWN *** -Player18: shows [Jd 6s] (a straight, Nine to King) -Player13: shows [Kc As] (a pair of Kings) -Player18 collected 1710 from side pot -Player11: shows [8s 4h] (high card King) -Player18 collected 1910 from main pot -Player13 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3620 Main pot 1910. Side pot 1710. | Rake 0 -Board [Kd 9s Qh Ts 7c] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player12 (small blind) folded before Flop -Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King -Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King -Seat 6: Player13 showed [Kc As] and lost with a pair of Kings - - - -PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (580 in chips) -Seat 2: Player21 (150 in chips) -Seat 3: Player12 (280 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (6165 in chips) -Seat 6: Player13 (600 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player11: posts small blind 50 -Player18: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [6s Kd] -Player13: raises 480 to 580 and is all-in -Player6: folds -Player21: folds -Player12: folds -Player11: calls 530 and is all-in -Player18: calls 480 -*** FLOP *** [Tc 6c 7c] -*** TURN *** [Tc 6c 7c] [2c] -*** RIVER *** [Tc 6c 7c 2c] [Qs] -*** SHOW DOWN *** -Player11: shows [Ks 3h] (high card King) -Player18: shows [6s Kd] (a pair of Sixes) -Player13: shows [9s 2d] (a pair of Deuces) -Player18 collected 1860 from pot -Player13 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1860 | Rake 0 -Board [Tc 6c 7c 2c Qs] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player12 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King -Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes -Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces - - - -PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (560 in chips) -Seat 2: Player21 (130 in chips) -Seat 3: Player12 (260 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7425 in chips) -Seat 6: Player13 (600 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player18: posts small blind 50 -Player13: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [8d 9h] -Player6: raises 440 to 540 and is all-in -Player21: calls 110 and is all-in -Player12: folds -Player11: calls 540 -Player18: calls 490 -Player13: raises 40 to 580 and is all-in -Player11: calls 40 and is all-in -Player18: calls 40 -*** FLOP *** [Td 4s Th] -*** TURN *** [Td 4s Th] [Qd] -*** RIVER *** [Td 4s Th Qd] [Qs] -*** SHOW DOWN *** -Player18: shows [8d 9h] (two pair, Queens and Tens) -Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) -Player11: shows [9c 3s] (two pair, Queens and Tens) -Player18 collected 60 from side pot-2 -Player11 collected 60 from side pot-2 -Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) -Player6 collected 1720 from side pot-1 -Player21: shows [Kd Qc] (a full house, Queens full of Tens) -Player21 collected 670 from main pot -Player13 has timed out while disconnected -Player13 is sitting out -Player13 finished the tournament in 224th place -*** SUMMARY *** -Total pot 2510 Main pot 670. Side pot-1 1720. Side pot-2 120. | Rake 0 -Board [Td 4s Th Qd Qs] -Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens -Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens -Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens -Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens - - - -PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (1720 in chips) -Seat 2: Player21 (670 in chips) -Seat 3: Player12 (240 in chips) is sitting out -Seat 4: Player11 (60 in chips) -Seat 5: Player18 (6885 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player12: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player6: posts small blind 100 -Player21: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Td 9d] -Player12: folds -Player11: calls 20 and is all-in -Player7 is connected -Player18: raises 6645 to 6845 and is all-in -Player6: folds -Player21: folds -Uncalled bet (6645) returned to Player18 -*** FLOP *** [9s As 2s] -*** TURN *** [9s As 2s] [4h] -*** RIVER *** [9s As 2s 4h] [5h] -*** SHOW DOWN *** -Player18: shows [Td 9d] (a pair of Nines) -Player18 collected 440 from side pot -Player11: shows [Jh 7s] (high card Ace) -Player18 collected 280 from main pot -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 720 Main pot 280. Side pot 440. | Rake 0 -Board [9s As 2s 4h 5h] -Seat 1: Player6 (small blind) folded before Flop -Seat 2: Player21 (big blind) folded before Flop -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 showed [Jh 7s] and lost with high card Ace -Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines - - - -PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (1580 in chips) -Seat 2: Player21 (430 in chips) -Seat 3: Player12 (200 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7365 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player12: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player21: posts small blind 100 -Player12: posts big blind 160 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [2c 4d] -Player11: raises 400 to 560 and is all-in -Player18: raises 6765 to 7325 and is all-in -Player7: calls 560 and is all-in -Player6: folds -Player21: calls 290 and is all-in -Player12: folds -Uncalled bet (6765) returned to Player18 -*** FLOP *** [3s Js 5c] -*** TURN *** [3s Js 5c] [9c] -*** RIVER *** [3s Js 5c 9c] [7d] -*** SHOW DOWN *** -Player11: shows [Qc Jc] (a pair of Jacks) -Player18: shows [2c 4d] (high card Jack) -Player7: shows [Qd Jh] (a pair of Jacks) -Player11 collected 255 from side pot-2 -Player7 collected 255 from side pot-2 -Player21: shows [As Ac] (a pair of Aces) -Player21 collected 920 from side pot-1 -Player21 collected 1040 from main pot -Player12 finished the tournament in 214th place -*** SUMMARY *** -Total pot 2470 Main pot 1040. Side pot-1 920. Side pot-2 510. | Rake 0 -Board [3s Js 5c 9c 7d] -Seat 1: Player6 (button) folded before Flop (didn't bet) -Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces -Seat 3: Player12 (big blind) folded before Flop -Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks -Seat 5: Player18 showed [2c 4d] and lost with high card Jack -Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks - - - -PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (1540 in chips) -Seat 2: Player21 (1960 in chips) -Seat 4: Player11 (255 in chips) -Seat 5: Player18 (6765 in chips) -Seat 6: Player7 (255 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player11: posts small blind 100 -Player18: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Ts 9h] -Player7: raises 15 to 215 and is all-in -Player6: calls 215 -Player21: folds -Player11: calls 115 and is all-in -Player16 is connected -Player18: calls 15 -*** FLOP *** [8h Td 7s] -Player18: checks -Player6: bets 400 -Player18: raises 800 to 1200 -Player6: raises 85 to 1285 and is all-in -Player18: calls 85 -*** TURN *** [8h Td 7s] [6s] -*** RIVER *** [8h Td 7s 6s] [Kd] -*** SHOW DOWN *** -Player18: shows [Ts 9h] (a straight, Six to Ten) -Player6: shows [Jh Tc] (a pair of Tens) -Player18 collected 2570 from side pot -Player7: shows [Ah 9d] (a straight, Six to Ten) -Player11: shows [9s Qd] (a straight, Six to Ten) -Player11 collected 354 from main pot -Player18 collected 353 from main pot -Player7 collected 353 from main pot -Player6 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3630 Main pot 1060. Side pot 2570. | Rake 0 -Board [8h Td 7s 6s Kd] -Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten -Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten -Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten - - - -PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (600 in chips) -Seat 2: Player21 (1920 in chips) -Seat 3: Player16 (3020 in chips) -Seat 4: Player11 (354 in chips) -Seat 5: Player18 (8148 in chips) -Seat 6: Player7 (353 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player16: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player18: posts small blind 100 -Player7: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Ks 4c] -Player6 said, "dikhead" -Player6: folds -Player18 said, "chatban" -Player21: folds -Player16: raises 200 to 400 -Player11: calls 314 and is all-in -Player18: calls 300 -Player7: calls 113 and is all-in -*** FLOP *** [9c 5d 2d] -Player18: checks -Player16: checks -*** TURN *** [9c 5d 2d] [Kh] -Player18: checks -Player16: checks -*** RIVER *** [9c 5d 2d Kh] [9d] -Player18: checks -Player16: checks -*** SHOW DOWN *** -Player18: shows [Ks 4c] (two pair, Kings and Nines) -Player16: mucks hand -Player18 collected 172 from side pot-2 -Player11: mucks hand -Player6 said, "cok face dip shiit" -Player18 collected 3 from side pot-1 -Player7: mucks hand -Player18 collected 1492 from main pot -Player7 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1667 Main pot 1492. Side pot-1 3. Side pot-2 172. | Rake 0 -Board [9c 5d 2d Kh 9d] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player16 mucked [Ad 5c] -Seat 4: Player11 (button) mucked [4h 4d] -Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines -Seat 6: Player7 (big blind) mucked [Qh 2s] - - - -PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (560 in chips) -Seat 2: Player21 (1880 in chips) -Seat 3: Player16 (2580 in chips) -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (9375 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player11: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player7: posts small blind 200 -Player6: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [As Ad] -Player18 said, "chatban" -Player21: raises 1400 to 1800 and is all-in -Player16: folds -Player11: calls 520 and is all-in -Player18: raises 7495 to 9295 and is all-in -Player7: calls 320 and is all-in -Player6: calls 80 and is all-in -Uncalled bet (7495) returned to Player18 -*** FLOP *** [6h 8d 2c] -*** TURN *** [6h 8d 2c] [8s] -Player11 is disconnected -*** RIVER *** [6h 8d 2c 8s] [8h] -*** SHOW DOWN *** -Player21: shows [5d 5s] (a full house, Eights full of Fives) -Player18: shows [As Ad] (a full house, Eights full of Aces) -Player6 said, "cok face dik sucker" -Player18 collected 2560 from side pot-2 -Player7: shows [3h Jh] (three of a kind, Eights) -Player11: shows [5h Kd] (three of a kind, Eights) -Player18 collected 160 from side pot-1 -Player6: shows [3d Tc] (three of a kind, Eights) -Player18 collected 2880 from main pot -Player6 said, "cok head" -Player7 re-buys and receives 600 chips for 2 FPPs -Player18 said, "lol" -Player6 said, "dik" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dikd" -Player6 said, "idk" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dik" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "hahahahaha" -Player6 said, "dik" -Player6 said, "dio" -Player11 has timed out while disconnected -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 re-buys and receives 300 chips for 1 FPPs -Player11 finished the tournament in 185th place -*** SUMMARY *** -Total pot 5600 Main pot 2880. Side pot-1 160. Side pot-2 2560. | Rake 0 -Board [6h 8d 2c 8s 8h] -Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights -Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives -Seat 3: Player16 folded before Flop (didn't bet) -Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights -Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces -Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights - - - -PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player6 (300 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (2500 in chips) -Seat 5: Player18 (13095 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player6: posts small blind 200 -Player21: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [3s 4d] -Player16: folds -Player18: raises 400 to 800 -Player7: folds -Player6: calls 20 and is all-in -Player21: calls 120 and is all-in -Uncalled bet (280) returned to Player18 -*** FLOP *** [Kh Jc 7c] -*** TURN *** [Kh Jc 7c] [Kd] -*** RIVER *** [Kh Jc 7c Kd] [3c] -*** SHOW DOWN *** -Player21: shows [5h Qc] (a pair of Kings) -Player18: shows [3s 4d] (two pair, Kings and Threes) -Player1 is connected -Player6 said, "haha dik" -Player18 collected 600 from side pot -Player6: shows [4s 7d] (two pair, Kings and Sevens) -Player6 collected 1060 from main pot -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 said, "dik head" -*** SUMMARY *** -Total pot 1660 Main pot 1060. Side pot 600. | Rake 0 -Board [Kh Jc 7c Kd 3c] -Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens -Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings -Seat 3: Player16 folded before Flop (didn't bet) -Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (1060 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (2420 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13095 in chips) -Seat 6: Player7 (520 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player1: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player21: posts small blind 200 -Player16: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [5d 6c] -Player18 said, "hahahaha" -Player1: raises 120 to 520 and is all-in -Player18: calls 520 -Player7: calls 440 and is all-in -Player6: folds -Player21: calls 320 and is all-in -Player16: calls 120 -*** FLOP *** [8d 8c 7d] -Player16: checks -Player18: checks -*** TURN *** [8d 8c 7d] [Qd] -Player16: checks -Player18: checks -*** RIVER *** [8d 8c 7d Qd] [Ah] -Player16: checks -Player18: checks -*** SHOW DOWN *** -Player21: shows [Th Ts] (two pair, Tens and Eights) -Player16: mucks hand -Player1: mucks hand -Player18: mucks hand -Player21 collected 320 from side pot -Player7: shows [Td Qc] (two pair, Queens and Eights) -Player6 said, "dik" -Player7 collected 2680 from main pot -Player1 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3000 Main pot 2680. Side pot 320. | Rake 0 -Board [8d 8c 7d Qd Ah] -Seat 1: Player6 (button) folded before Flop (didn't bet) -Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights -Seat 3: Player16 (big blind) mucked [Js 2c] -Seat 4: Player1 mucked [2h 9d] -Seat 5: Player18 mucked [5d 6c] -Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights - - - -PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (980 in chips) -Seat 2: Player21 (320 in chips) -Seat 3: Player16 (1820 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (12495 in chips) -Seat 6: Player7 (2680 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player16: posts small blind 300 -Player1: posts big blind 480 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [2c 9h] -Player18: folds -Player7: folds -Player6: raises 380 to 860 and is all-in -Player21: folds -Player16: calls 560 -*** FLOP *** [Kd 7c Ad] -Player6 said, "bye dik head" -*** TURN *** [Kd 7c Ad] [4d] -*** RIVER *** [Kd 7c Ad 4d] [6d] -*** SHOW DOWN *** -Player16: shows [Jh 3h] (high card Ace) -Player6: shows [Jc 9c] (high card Ace - King+Jack+Nine kicker) -Player6 collected 760 from side pot -Player1: shows [Js 7h] (a pair of Sevens) -Player1 collected 2160 from main pot -*** SUMMARY *** -Total pot 2920 Main pot 2160. Side pot 760. | Rake 0 -Board [Kd 7c Ad 4d 6d] -Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace -Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (760 in chips) -Seat 2: Player21 (200 in chips) -Seat 3: Player16 (840 in chips) -Seat 4: Player1 (2160 in chips) -Seat 5: Player18 (12375 in chips) -Seat 6: Player7 (2560 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player1: posts small blind 300 -Player18: posts big blind 600 -*** HOLE CARDS *** -Dealt to Player18 [2d 4h] -Player7: folds -Player6 said, "dik face" -Player6: raises 40 to 640 and is all-in -Player21: calls 80 and is all-in -Player16: folds -Player1: folds -Player18: calls 40 -*** FLOP *** [5h 4d 9h] -Player6 said, "bye dumb shiiit" -*** TURN *** [5h 4d 9h] [6d] -*** RIVER *** [5h 4d 9h 6d] [Jd] -*** SHOW DOWN *** -Player18: shows [2d 4h] (a pair of Fours) -Player6: shows [Jc Ad] (a pair of Jacks) -Player6 collected 1340 from side pot -Player21: shows [7h 7d] (a pair of Sevens) -Player6 collected 1040 from main pot -Player6 said, "ok" -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 said, "not yet" -*** SUMMARY *** -Total pot 2380 Main pot 1040. Side pot 1340. | Rake 0 -Board [5h 4d 9h 6d Jd] -Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks -Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens -Seat 3: Player16 (button) folded before Flop (didn't bet) -Seat 4: Player1 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (2380 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (720 in chips) -Seat 4: Player1 (1740 in chips) -Seat 5: Player18 (11615 in chips) -Seat 6: Player7 (2440 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player18: posts small blind 300 -Player7: posts big blind 600 -*** HOLE CARDS *** -Dealt to Player18 [Jd Js] -Player6: raises 1660 to 2260 and is all-in -Player21: folds -Player16: calls 600 and is all-in -Player1: calls 1620 and is all-in -Player18: calls 1960 -Player7: folds -*** FLOP *** [Kc 8d Qh] -Player6 said, "comn dik face omg ur so **** dik heads" -*** TURN *** [Kc 8d Qh] [5s] -*** RIVER *** [Kc 8d Qh 5s] [9s] -*** SHOW DOWN *** -Player18: shows [Jd Js] (a pair of Jacks) -Player6: shows [4c 4s] (a pair of Fours) -Player18 collected 1280 from side pot-2 -Player1: shows [As 4d] (high card Ace) -Player18 collected 3060 from side pot-1 -Player16: shows [Td Ks] (a pair of Kings) -Player6 said, "bye **** head" -Player16 collected 3720 from main pot -Player18 said, "byebye" -Player1 re-buys and receives 600 chips for 2 FPPs -Player6 finished the tournament in 155th place -*** SUMMARY *** -Total pot 8060 Main pot 3720. Side pot-1 3060. Side pot-2 1280. | Rake 0 -Board [Kc 8d Qh 5s 9s] -Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings -Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace -Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks -Seat 6: Player7 (big blind) folded before Flop - - - -PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 2: Player21 (480 in chips) -Seat 3: Player16 (3720 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13575 in chips) -Seat 6: Player7 (1720 in chips) -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player7: posts small blind 300 -Player21: posts big blind 360 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [Qh 3s] -Player16: folds -Player1: calls 480 and is all-in -Player18: folds -Player7: calls 180 -*** FLOP *** [8h 5c 3d] -*** TURN *** [8h 5c 3d] [7d] -*** RIVER *** [8h 5c 3d 7d] [2s] -*** SHOW DOWN *** -Player7: shows [9s Ac] (high card Ace) -Player1: shows [5h Qs] (a pair of Fives) -Player1 collected 240 from side pot -Player21: shows [6c Ks] (high card King) -Player1 collected 1680 from main pot -Player5 is connected -Player21 finished the tournament in 148th place -*** SUMMARY *** -Total pot 1920 Main pot 1680. Side pot 240. | Rake 0 -Board [8h 5c 3d 7d 2s] -Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King -Seat 3: Player16 folded before Flop (didn't bet) -Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives -Seat 5: Player18 (button) folded before Flop (didn't bet) -Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace - - - -PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) -Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) -Seat 3: Player16 (4100 in chips) -Seat 4: Player1 (2420 in chips) -Seat 5: Player18 (13955 in chips) -Seat 6: Player7 (1620 in chips) -Player16: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player16: posts small blind 400 -Player1: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [Qs 4h] -Player18: folds -Player7: folds -Player16: raises 3140 to 3940 and is all-in -Player1: calls 1460 and is all-in -Uncalled bet (1680) returned to Player16 -*** FLOP *** [2d 7c Jh] -*** TURN *** [2d 7c Jh] [3c] -*** RIVER *** [2d 7c Jh 3c] [5h] -*** SHOW DOWN *** -Player16: shows [Ah Kh] (high card Ace) -Player1: shows [Tc 5s] (a pair of Fives) -Player1 collected 5160 from pot -*** SUMMARY *** -Total pot 5160 | Rake 0 -Board [2d 7c Jh 3c 5h] -Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace -Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player5 (1940 in chips) -Seat 2: Player4 (3540 in chips) -Seat 3: Player16 (1680 in chips) -Seat 4: Player1 (5160 in chips) -Seat 5: Player18 (13795 in chips) -Seat 6: Player7 (1460 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player16: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player1: posts small blind 400 -Player18: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [Ac Th] -Player7: folds -Player5: folds -Player4: folds -Player16: raises 720 to 1520 and is all-in -Player1: raises 3480 to 5000 and is all-in -Player18: folds -Uncalled bet (3480) returned to Player1 -*** FLOP *** [4s 3c Kc] -*** TURN *** [4s 3c Kc] [7s] -*** RIVER *** [4s 3c Kc 7s] [9s] -*** SHOW DOWN *** -Player1: shows [Qs Kh] (a pair of Kings) -Player16: shows [9d Qc] (a pair of Nines) -Player1 collected 4800 from pot -Player16 finished the tournament in 120th place -*** SUMMARY *** -Total pot 4800 | Rake 0 -Board [4s 3c Kc 7s 9s] -Seat 1: Player5 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines -Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings -Seat 5: Player18 (big blind) folded before Flop -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player5 (1780 in chips) -Seat 2: Player4 (3380 in chips) -Seat 4: Player1 (8280 in chips) -Seat 5: Player18 (12835 in chips) -Seat 6: Player7 (1300 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player18: posts small blind 400 -Player7: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [9d 7d] -Player5: folds -Player4: folds -Player1: calls 800 -Player9 is connected -Player18: calls 400 -Player7: checks -*** FLOP *** [Tc Qd 9c] -Player18: checks -Player7: bets 340 and is all-in -Player1: calls 340 -Player18: calls 340 -*** TURN *** [Tc Qd 9c] [Td] -Player18: checks -Player1: checks -*** RIVER *** [Tc Qd 9c Td] [Jh] -Player18: checks -Player1: bets 2400 -Player18: folds -Uncalled bet (2400) returned to Player1 -*** SHOW DOWN *** -Player1: shows [6c 8d] (a straight, Eight to Queen) -Player7: shows [Jc 8c] (a straight, Eight to Queen) -Player7 collected 2110 from pot -Player1 collected 2110 from pot -*** SUMMARY *** -Total pot 4220 | Rake 0 -Board [Tc Qd 9c Td Jh] -Seat 1: Player5 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen -Seat 5: Player18 (small blind) folded on the River -Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen - - - -PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player5 (1620 in chips) -Seat 2: Player4 (3220 in chips) -Seat 3: Player9 (3065 in chips) -Seat 4: Player1 (9090 in chips) -Seat 5: Player18 (11535 in chips) -Seat 6: Player7 (2110 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player7: posts small blind 400 -Player5: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [3c Kd] -Player4: folds -Player9: folds -Player1: folds -Player18: folds -Player7: folds -Uncalled bet (400) returned to Player5 -Player5 collected 1760 from pot -*** SUMMARY *** -Total pot 1760 | Rake 0 -Seat 1: Player5 (big blind) collected (1760) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player9 folded before Flop (didn't bet) -Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 (button) folded before Flop (didn't bet) -Seat 6: Player7 (small blind) folded before Flop - - - -PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player5 (2820 in chips) -Seat 2: Player4 (3060 in chips) -Seat 3: Player9 (2905 in chips) -Seat 4: Player1 (8930 in chips) -Seat 5: Player18 (11375 in chips) -Seat 6: Player7 (1550 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player5: posts small blind 400 -Player4: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [2h Qc] -Player9: folds -Player1: folds -Player18: folds -Player7: folds -Player5: calls 400 -Player4: checks -*** FLOP *** [9c 6d Td] -Player5: checks -Player4: checks -*** TURN *** [9c 6d Td] [4d] -Player5: checks -Player4: bets 2100 and is all-in -Player5: folds -Uncalled bet (2100) returned to Player4 -Player4 collected 2560 from pot -Player4: doesn't show hand -*** SUMMARY *** -Total pot 2560 | Rake 0 -Board [9c 6d Td 4d] -Seat 1: Player5 (small blind) folded on the Turn -Seat 2: Player4 (big blind) collected (2560) -Seat 3: Player9 folded before Flop (didn't bet) -Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player5 (1860 in chips) -Seat 2: Player4 (4660 in chips) -Seat 3: Player9 (2745 in chips) -Seat 4: Player1 (8770 in chips) -Seat 5: Player18 (11215 in chips) -Seat 6: Player7 (1390 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player4: posts small blind 400 -Player9: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [3s 3c] -Player1: raises 4800 to 5600 -Player18: folds -Player7: folds -Player5: folds -Player4: folds -Player9: folds -Uncalled bet (4800) returned to Player1 -Player1 collected 2960 from pot -*** SUMMARY *** -Total pot 2960 | Rake 0 -Seat 1: Player5 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded before Flop -Seat 3: Player9 (big blind) folded before Flop -Seat 4: Player1 collected (2960) -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player5 (1700 in chips) -Seat 2: Player4 (4100 in chips) -Seat 3: Player9 (1785 in chips) -Seat 4: Player1 (10770 in chips) -Seat 5: Player18 (11055 in chips) -Seat 6: Player7 (1230 in chips) -Player5: posts the ante 240 -Player4: posts the ante 240 -Player9: posts the ante 240 -Player1: posts the ante 240 -Player18: posts the ante 240 -Player7: posts the ante 240 -Player9: posts small blind 600 -Player1: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2c 6d] -Player18: folds -Player7: calls 990 and is all-in -Player5: raises 260 to 1460 and is all-in -Player4: folds -Player9: folds -Player1: calls 260 -*** FLOP *** [Ts 7d Js] -*** TURN *** [Ts 7d Js] [4c] -*** RIVER *** [Ts 7d Js 4c] [3d] -*** SHOW DOWN *** -Player1: shows [2h 9s] (high card Jack) -Player5: shows [Jc Jd] (three of a kind, Jacks) -Player5 collected 940 from side pot -Player7: shows [4d Ac] (a pair of Fours) -Player5 collected 5010 from main pot -*** SUMMARY *** -Total pot 5950 Main pot 5010. Side pot 940. | Rake 0 -Board [Ts 7d Js 4c 3d] -Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks -Seat 2: Player4 (button) folded before Flop (didn't bet) -Seat 3: Player9 (small blind) folded before Flop -Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours - - - -PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] -Table '999999998 48' 6-max Seat #1 is the button -Seat 1: Player17 (14798 in chips) -Seat 2: Player3 (7215 in chips) -Seat 3: Player15 (6378 in chips) -Seat 4: Player18 (10815 in chips) -Seat 5: Player2 (8520 in chips) -Seat 6: Player22 (11935 in chips) -Player17: posts the ante 240 -Player3: posts the ante 240 -Player15: posts the ante 240 -Player18: posts the ante 240 -Player2: posts the ante 240 -Player22: posts the ante 240 -Player3: posts small blind 600 -Player15: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2s Td] -Player18: folds -Player2: raises 7080 to 8280 and is all-in -Player22: calls 8280 -Player17: folds -Player3: folds -Player15: calls 4938 and is all-in -*** FLOP *** [Ac Th 9d] -*** TURN *** [Ac Th 9d] [3c] -*** RIVER *** [Ac Th 9d 3c] [4d] -*** SHOW DOWN *** -Player2: shows [Kd 5s] (high card Ace) -Player22: shows [2c Ah] (a pair of Aces) -Player22 collected 4284 from side pot -Player15: shows [7d 7c] (a pair of Sevens) -Player22 collected 20454 from main pot -Player2 finished the tournament in 74th place -Player15 finished the tournament in 75th place -*** SUMMARY *** -Total pot 24738 Main pot 20454. Side pot 4284. | Rake 0 -Board [Ac Th 9d 3c 4d] -Seat 1: Player17 (button) folded before Flop (didn't bet) -Seat 2: Player3 (small blind) folded before Flop -Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens -Seat 4: Player18 folded before Flop (didn't bet) -Seat 5: Player2 showed [Kd 5s] and lost with high card Ace -Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces - - - -PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] -Table '999999998 48' 6-max Seat #2 is the button -Seat 1: Player17 (14558 in chips) -Seat 2: Player3 (6375 in chips) -Seat 4: Player18 (10575 in chips) -Seat 6: Player22 (28153 in chips) -Player17: posts the ante 240 -Player3: posts the ante 240 -Player18: posts the ante 240 -Player22: posts the ante 240 -Player18: posts small blind 600 -Player22: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [6h Jd] -Player17: folds -Player3: raises 4935 to 6135 and is all-in -Player18: folds -Player19 is connected -Player22: calls 4935 -Player10 is connected -*** FLOP *** [2s Kh 9s] -*** TURN *** [2s Kh 9s] [Kc] -*** RIVER *** [2s Kh 9s Kc] [3c] -*** SHOW DOWN *** -Player22: shows [Ah Tc] (a pair of Kings) -Player3: shows [5h As] (a pair of Kings - lower kicker) -Player22 collected 13830 from pot -Player3 finished the tournament in 70th place -*** SUMMARY *** -Total pot 13830 | Rake 0 -Board [2s Kh 9s Kc 3c] -Seat 1: Player17 folded before Flop (didn't bet) -Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings -Seat 4: Player18 (small blind) folded before Flop -Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings - - - -PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] -Table '999999998 48' 6-max Seat #4 is the button -Seat 1: Player17 (14318 in chips) -Seat 3: Player19 (1508 in chips) -Seat 4: Player18 (9735 in chips) -Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) -Seat 6: Player22 (35608 in chips) -Player17: posts the ante 240 -Player19: posts the ante 240 -Player18: posts the ante 240 -Player22: posts the ante 240 -Player22: posts small blind 600 -Player17: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2s Ac] -Player19: folds -Player18: raises 8295 to 9495 and is all-in -Player22: folds -Player17: calls 8295 -*** FLOP *** [Kc 5d 3d] -*** TURN *** [Kc 5d 3d] [6c] -*** RIVER *** [Kc 5d 3d 6c] [Ad] -*** SHOW DOWN *** -Player17: shows [Jh Qd] (high card Ace) -Player18: shows [2s Ac] (a pair of Aces) -Player18 collected 20550 from pot -*** SUMMARY *** -Total pot 20550 | Rake 0 -Board [Kc 5d 3d 6c Ad] -Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace -Seat 3: Player19 folded before Flop (didn't bet) -Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces -Seat 6: Player22 (small blind) folded before Flop - - - -PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] -Table '999999998 48' 6-max Seat #6 is the button -Seat 1: Player17 (4583 in chips) -Seat 3: Player19 (1268 in chips) -Seat 4: Player18 (20550 in chips) -Seat 5: Player10 (5690 in chips) -Seat 6: Player22 (34768 in chips) -Player17: posts the ante 240 -Player19: posts the ante 240 -Player18: posts the ante 240 -Player10: posts the ante 240 -Player22: posts the ante 240 -Player17: posts small blind 600 -Player19: posts big blind 1028 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [3d 6c] -Player18: folds -Player10: folds -Player22: raises 1372 to 2400 -Player17: calls 1800 -*** FLOP *** [9c 4s Ac] -Player17: checks -Player22: bets 1200 -Player17: folds -Uncalled bet (1200) returned to Player22 -*** TURN *** [9c 4s Ac] [Kc] -*** RIVER *** [9c 4s Ac Kc] [Qs] -*** SHOW DOWN *** -Player22: shows [Jd Qd] (a pair of Queens) -Player22 collected 2744 from side pot -Player19: shows [7s 4c] (a pair of Fours) -Player22 collected 4284 from main pot -*** SUMMARY *** -Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 -Board [9c 4s Ac Kc Qs] -Seat 1: Player17 (small blind) folded on the Flop -Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours -Seat 4: Player18 folded before Flop (didn't bet) -Seat 5: Player10 folded before Flop (didn't bet) -Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens - - - -PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] -Table '999999998 5' 6-max Seat #4 is the button -Seat 1: Player14 (5780 in chips) -Seat 2: Player17 (1943 in chips) -Seat 3: Player18 (20310 in chips) -Seat 4: Player20 (23421 in chips) -Seat 5: Player8 (19258 in chips) -Seat 6: Player23 (26326 in chips) -Player14: posts the ante 240 -Player17: posts the ante 240 -Player18: posts the ante 240 -Player20: posts the ante 240 -Player8: posts the ante 240 -Player23: posts the ante 240 -Player8: posts small blind 600 -Player23: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [7d As] -Player14: folds -Player17: folds -Player18: raises 18000 to 19200 -Player20: raises 3981 to 23181 and is all-in -Player8: folds -Player23: folds -Player18: calls 870 and is all-in -Uncalled bet (3111) returned to Player20 -*** FLOP *** [7h 4h 3s] -*** TURN *** [7h 4h 3s] [Th] -*** RIVER *** [7h 4h 3s Th] [Ah] -*** SHOW DOWN *** -Player18: shows [7d As] (two pair, Aces and Sevens) -Player20: shows [Ad Kh] (a flush, Ace high) -Player20 collected 43380 from pot -Player18 finished the tournament in 54th place -*** SUMMARY *** -Total pot 43380 | Rake 0 -Board [7h 4h 3s Th Ah] -Seat 1: Player14 folded before Flop (didn't bet) -Seat 2: Player17 folded before Flop (didn't bet) -Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens -Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high -Seat 5: Player8 (small blind) folded before Flop -Seat 6: Player23 (big blind) folded before Flop - - - +PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (300 in chips) +Seat 6: Player0 (300 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player21: posts small blind 25 +Player12: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [4s 9d] +Player11: raises 540 to 590 and is all-in +Player18: calls 290 and is all-in +Player0: folds +Player6: calls 290 and is all-in +Player21: folds +Player12: calls 240 and is all-in +Uncalled bet (300) returned to Player11 +*** FLOP *** [4c 5d Ts] +*** TURN *** [4c 5d Ts] [Js] +*** RIVER *** [4c 5d Ts Js] [7c] +*** SHOW DOWN *** +Player12: shows [3c Kh] (high card King) +Player11: shows [8h 7s] (a pair of Sevens) +Player18: shows [4s 9d] (a pair of Fours) +Player6: shows [Qc Td] (a pair of Tens) +Player6 collected 1245 from pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1245 | Rake 0 +Board [4c 5d Ts Js 7c] +Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King +Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens +Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (265 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (300 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (290 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player12: posts small blind 25 +Player11: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [Qs 7c] +Player18: raises 540 to 590 and is all-in +Player0: folds +Player6: raises 540 to 1130 +Player21: folds +Player12: calls 265 and is all-in +Player11: calls 240 and is all-in +Uncalled bet (540) returned to Player6 +*** FLOP *** [Jc 4c 5d] +*** TURN *** [Jc 4c 5d] [3c] +*** RIVER *** [Jc 4c 5d 3c] [3h] +*** SHOW DOWN *** +Player18: shows [Qs 7c] (a pair of Threes) +Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) +Player6 collected 600 from side pot +Player12: shows [8s Qd] (a pair of Threes - lower kicker) +Player11: shows [2c Jh] (two pair, Jacks and Threes) +Player11 collected 1220 from main pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 +Board [Jc 4c 5d 3c 3h] +Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes +Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes +Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (255 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (1220 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (280 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player11: posts small blind 25 +Player18: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [2h Qd] +Player0: raises 150 to 200 +Player6: folds +Player21: folds +Player12: folds +Player11: folds +Player18: raises 350 to 550 +Player0: calls 70 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [9s Ks Th] +*** TURN *** [9s Ks Th] [Jc] +*** RIVER *** [9s Ks Th Jc] [5h] +*** SHOW DOWN *** +Player18: shows [2h Qd] (a straight, Nine to King) +Player0: shows [As Jd] (a pair of Jacks) +Player18 collected 625 from pot +Player0 finished the tournament in 273rd place +*** SUMMARY *** +Total pot 625 | Rake 0 +Board [9s Ks Th Jc 5h] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King +Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks + + + +PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (1235 in chips) +Seat 2: Player21 (245 in chips) +Seat 3: Player12 (290 in chips) +Seat 4: Player11 (1185 in chips) +Seat 5: Player18 (945 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player18: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [6d Jc] +Player21: raises 185 to 235 and is all-in +Player12: folds +Player11: calls 235 +Player18: raises 185 to 420 +Player6: raises 805 to 1225 and is all-in +Player11: calls 940 and is all-in +Player18: calls 515 and is all-in +Uncalled bet (50) returned to Player6 +Player13 is connected +*** FLOP *** [5c As Ts] +*** TURN *** [5c As Ts] [6c] +*** RIVER *** [5c As Ts 6c] [6h] +*** SHOW DOWN *** +Player6: shows [8h 9d] (a pair of Sixes) +Player11: shows [2h 2s] (two pair, Sixes and Deuces) +Player11 collected 480 from side pot-2 +Player18: shows [6d Jc] (three of a kind, Sixes) +Player18 collected 2100 from side pot-1 +Player21: shows [Tc Ah] (two pair, Aces and Tens) +Player18 collected 990 from main pot +Player21 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 +Board [5c As Ts 6c 6h] +Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes +Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces +Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes + + + +PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (50 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (280 in chips) +Seat 4: Player11 (480 in chips) +Seat 5: Player18 (3090 in chips) +Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player6: posts small blind 25 +Player21: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [9h Qd] +Player6 re-buys and receives 300 chips for 1 FPPs +Player12: raises 220 to 270 and is all-in +Player11: folds +Player18: raises 1230 to 1500 +Player6: calls 15 and is all-in +Player21: folds +Uncalled bet (1230) returned to Player18 +*** FLOP *** [2h 8c 5h] +*** TURN *** [2h 8c 5h] [Ac] +*** RIVER *** [2h 8c 5h Ac] [2s] +*** SHOW DOWN *** +Player12: shows [Kh 6h] (a pair of Deuces) +Player18: shows [9h Qd] (a pair of Deuces - lower kicker) +Player12 collected 470 from side pot +Player6: shows [As 8s] (two pair, Aces and Eights) +Player12 is sitting out +Player6 collected 210 from main pot +*** SUMMARY *** +Total pot 680 Main pot 210. Side pot 470. | Rake 0 +Board [2h 8c 5h Ac 2s] +Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces and Eights +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces +Seat 4: Player11 folded before Flop (didn't bet) +Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces + + + +PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (510 in chips) +Seat 2: Player21 (240 in chips) +Seat 3: Player12 (470 in chips) is sitting out +Seat 4: Player11 (470 in chips) +Seat 5: Player18 (2810 in chips) +Seat 6: Player13 (1475 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player21: posts small blind 50 +Player12: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jc Td] +Player11: raises 350 to 450 and is all-in +Player18: raises 2340 to 2790 and is all-in +Player13: folds +Player6: calls 490 and is all-in +Player21: folds +Player12: folds +Uncalled bet (2300) returned to Player18 +*** FLOP *** [2c 4h 3c] +*** TURN *** [2c 4h 3c] [Ac] +*** RIVER *** [2c 4h 3c Ac] [9c] +*** SHOW DOWN *** +Player18: shows [Jc Td] (a flush, Ace high) +Player6: shows [Th Ks] (high card Ace) +Player18 collected 80 from side pot +Player11: shows [8h 9d] (a pair of Nines) +Player18 collected 1620 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1700 Main pot 1620. Side pot 80. | Rake 0 +Board [2c 4h 3c Ac 9c] +Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines +Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high +Seat 6: Player13 folded before Flop (didn't bet) + + + +PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (170 in chips) +Seat 3: Player12 (350 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (4000 in chips) +Seat 6: Player13 (1455 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player12: posts small blind 50 +Player11: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jd 6s] +Player18: raises 3880 to 3980 and is all-in +Player13: calls 1435 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 480 and is all-in +Uncalled bet (2545) returned to Player18 +*** FLOP *** [Kd 9s Qh] +*** TURN *** [Kd 9s Qh] [Ts] +*** RIVER *** [Kd 9s Qh Ts] [7c] +*** SHOW DOWN *** +Player18: shows [Jd 6s] (a straight, Nine to King) +Player13: shows [Kc As] (a pair of Kings) +Player18 collected 1710 from side pot +Player11: shows [8s 4h] (high card King) +Player18 collected 1910 from main pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3620 Main pot 1910. Side pot 1710. | Rake 0 +Board [Kd 9s Qh Ts 7c] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) folded before Flop +Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King +Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King +Seat 6: Player13 showed [Kc As] and lost with a pair of Kings + + + +PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (580 in chips) +Seat 2: Player21 (150 in chips) +Seat 3: Player12 (280 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (6165 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player11: posts small blind 50 +Player18: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [6s Kd] +Player13: raises 480 to 580 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 530 and is all-in +Player18: calls 480 +*** FLOP *** [Tc 6c 7c] +*** TURN *** [Tc 6c 7c] [2c] +*** RIVER *** [Tc 6c 7c 2c] [Qs] +*** SHOW DOWN *** +Player11: shows [Ks 3h] (high card King) +Player18: shows [6s Kd] (a pair of Sixes) +Player13: shows [9s 2d] (a pair of Deuces) +Player18 collected 1860 from pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1860 | Rake 0 +Board [Tc 6c 7c 2c Qs] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King +Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes +Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces + + + +PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (130 in chips) +Seat 3: Player12 (260 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7425 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player18: posts small blind 50 +Player13: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [8d 9h] +Player6: raises 440 to 540 and is all-in +Player21: calls 110 and is all-in +Player12: folds +Player11: calls 540 +Player18: calls 490 +Player13: raises 40 to 580 and is all-in +Player11: calls 40 and is all-in +Player18: calls 40 +*** FLOP *** [Td 4s Th] +*** TURN *** [Td 4s Th] [Qd] +*** RIVER *** [Td 4s Th Qd] [Qs] +*** SHOW DOWN *** +Player18: shows [8d 9h] (two pair, Queens and Tens) +Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) +Player11: shows [9c 3s] (two pair, Queens and Tens) +Player18 collected 60 from side pot-2 +Player11 collected 60 from side pot-2 +Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) +Player6 collected 1720 from side pot-1 +Player21: shows [Kd Qc] (a full house, Queens full of Tens) +Player21 collected 670 from main pot +Player13 has timed out while disconnected +Player13 is sitting out +Player13 finished the tournament in 224th place +*** SUMMARY *** +Total pot 2510 Main pot 670. Side pot-1 1720. Side pot-2 120. | Rake 0 +Board [Td 4s Th Qd Qs] +Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens +Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens +Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens +Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens + + + +PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (1720 in chips) +Seat 2: Player21 (670 in chips) +Seat 3: Player12 (240 in chips) is sitting out +Seat 4: Player11 (60 in chips) +Seat 5: Player18 (6885 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player6: posts small blind 100 +Player21: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Td 9d] +Player12: folds +Player11: calls 20 and is all-in +Player7 is connected +Player18: raises 6645 to 6845 and is all-in +Player6: folds +Player21: folds +Uncalled bet (6645) returned to Player18 +*** FLOP *** [9s As 2s] +*** TURN *** [9s As 2s] [4h] +*** RIVER *** [9s As 2s 4h] [5h] +*** SHOW DOWN *** +Player18: shows [Td 9d] (a pair of Nines) +Player18 collected 440 from side pot +Player11: shows [Jh 7s] (high card Ace) +Player18 collected 280 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 720 Main pot 280. Side pot 440. | Rake 0 +Board [9s As 2s 4h 5h] +Seat 1: Player6 (small blind) folded before Flop +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 showed [Jh 7s] and lost with high card Ace +Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines + + + +PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1580 in chips) +Seat 2: Player21 (430 in chips) +Seat 3: Player12 (200 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7365 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player21: posts small blind 100 +Player12: posts big blind 160 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 4d] +Player11: raises 400 to 560 and is all-in +Player18: raises 6765 to 7325 and is all-in +Player7: calls 560 and is all-in +Player6: folds +Player21: calls 290 and is all-in +Player12: folds +Uncalled bet (6765) returned to Player18 +*** FLOP *** [3s Js 5c] +*** TURN *** [3s Js 5c] [9c] +*** RIVER *** [3s Js 5c 9c] [7d] +*** SHOW DOWN *** +Player11: shows [Qc Jc] (a pair of Jacks) +Player18: shows [2c 4d] (high card Jack) +Player7: shows [Qd Jh] (a pair of Jacks) +Player11 collected 255 from side pot-2 +Player7 collected 255 from side pot-2 +Player21: shows [As Ac] (a pair of Aces) +Player21 collected 920 from side pot-1 +Player21 collected 1040 from main pot +Player12 finished the tournament in 214th place +*** SUMMARY *** +Total pot 2470 Main pot 1040. Side pot-1 920. Side pot-2 510. | Rake 0 +Board [3s Js 5c 9c 7d] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks +Seat 5: Player18 showed [2c 4d] and lost with high card Jack +Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks + + + +PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1540 in chips) +Seat 2: Player21 (1960 in chips) +Seat 4: Player11 (255 in chips) +Seat 5: Player18 (6765 in chips) +Seat 6: Player7 (255 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player11: posts small blind 100 +Player18: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ts 9h] +Player7: raises 15 to 215 and is all-in +Player6: calls 215 +Player21: folds +Player11: calls 115 and is all-in +Player16 is connected +Player18: calls 15 +*** FLOP *** [8h Td 7s] +Player18: checks +Player6: bets 400 +Player18: raises 800 to 1200 +Player6: raises 85 to 1285 and is all-in +Player18: calls 85 +*** TURN *** [8h Td 7s] [6s] +*** RIVER *** [8h Td 7s 6s] [Kd] +*** SHOW DOWN *** +Player18: shows [Ts 9h] (a straight, Six to Ten) +Player6: shows [Jh Tc] (a pair of Tens) +Player18 collected 2570 from side pot +Player7: shows [Ah 9d] (a straight, Six to Ten) +Player11: shows [9s Qd] (a straight, Six to Ten) +Player11 collected 354 from main pot +Player18 collected 353 from main pot +Player7 collected 353 from main pot +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3630 Main pot 1060. Side pot 2570. | Rake 0 +Board [8h Td 7s 6s Kd] +Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten +Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten +Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten + + + +PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (1920 in chips) +Seat 3: Player16 (3020 in chips) +Seat 4: Player11 (354 in chips) +Seat 5: Player18 (8148 in chips) +Seat 6: Player7 (353 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player16: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player18: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ks 4c] +Player6 said, "dikhead" +Player6: folds +Player18 said, "chatban" +Player21: folds +Player16: raises 200 to 400 +Player11: calls 314 and is all-in +Player18: calls 300 +Player7: calls 113 and is all-in +*** FLOP *** [9c 5d 2d] +Player18: checks +Player16: checks +*** TURN *** [9c 5d 2d] [Kh] +Player18: checks +Player16: checks +*** RIVER *** [9c 5d 2d Kh] [9d] +Player18: checks +Player16: checks +*** SHOW DOWN *** +Player18: shows [Ks 4c] (two pair, Kings and Nines) +Player16: mucks hand +Player18 collected 172 from side pot-2 +Player11: mucks hand +Player6 said, "cok face dip shiit" +Player18 collected 3 from side pot-1 +Player7: mucks hand +Player18 collected 1492 from main pot +Player7 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1667 Main pot 1492. Side pot-1 3. Side pot-2 172. | Rake 0 +Board [9c 5d 2d Kh 9d] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 mucked [Ad 5c] +Seat 4: Player11 (button) mucked [4h 4d] +Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines +Seat 6: Player7 (big blind) mucked [Qh 2s] + + + +PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (1880 in chips) +Seat 3: Player16 (2580 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (9375 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player11: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player7: posts small blind 200 +Player6: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [As Ad] +Player18 said, "chatban" +Player21: raises 1400 to 1800 and is all-in +Player16: folds +Player11: calls 520 and is all-in +Player18: raises 7495 to 9295 and is all-in +Player7: calls 320 and is all-in +Player6: calls 80 and is all-in +Uncalled bet (7495) returned to Player18 +*** FLOP *** [6h 8d 2c] +*** TURN *** [6h 8d 2c] [8s] +Player11 is disconnected +*** RIVER *** [6h 8d 2c 8s] [8h] +*** SHOW DOWN *** +Player21: shows [5d 5s] (a full house, Eights full of Fives) +Player18: shows [As Ad] (a full house, Eights full of Aces) +Player6 said, "cok face dik sucker" +Player18 collected 2560 from side pot-2 +Player7: shows [3h Jh] (three of a kind, Eights) +Player11: shows [5h Kd] (three of a kind, Eights) +Player18 collected 160 from side pot-1 +Player6: shows [3d Tc] (three of a kind, Eights) +Player18 collected 2880 from main pot +Player6 said, "cok head" +Player7 re-buys and receives 600 chips for 2 FPPs +Player18 said, "lol" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dikd" +Player6 said, "idk" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "hahahahaha" +Player6 said, "dik" +Player6 said, "dio" +Player11 has timed out while disconnected +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 300 chips for 1 FPPs +Player11 finished the tournament in 185th place +*** SUMMARY *** +Total pot 5600 Main pot 2880. Side pot-1 160. Side pot-2 2560. | Rake 0 +Board [6h 8d 2c 8s 8h] +Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights +Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights +Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces +Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights + + + +PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2500 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player6: posts small blind 200 +Player21: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [3s 4d] +Player16: folds +Player18: raises 400 to 800 +Player7: folds +Player6: calls 20 and is all-in +Player21: calls 120 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [Kh Jc 7c] +*** TURN *** [Kh Jc 7c] [Kd] +*** RIVER *** [Kh Jc 7c Kd] [3c] +*** SHOW DOWN *** +Player21: shows [5h Qc] (a pair of Kings) +Player18: shows [3s 4d] (two pair, Kings and Threes) +Player1 is connected +Player6 said, "haha dik" +Player18 collected 600 from side pot +Player6: shows [4s 7d] (two pair, Kings and Sevens) +Player6 collected 1060 from main pot +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "dik head" +*** SUMMARY *** +Total pot 1660 Main pot 1060. Side pot 600. | Rake 0 +Board [Kh Jc 7c Kd 3c] +Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens +Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings +Seat 3: Player16 folded before Flop (didn't bet) +Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1060 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2420 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (520 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player1: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player21: posts small blind 200 +Player16: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [5d 6c] +Player18 said, "hahahaha" +Player1: raises 120 to 520 and is all-in +Player18: calls 520 +Player7: calls 440 and is all-in +Player6: folds +Player21: calls 320 and is all-in +Player16: calls 120 +*** FLOP *** [8d 8c 7d] +Player16: checks +Player18: checks +*** TURN *** [8d 8c 7d] [Qd] +Player16: checks +Player18: checks +*** RIVER *** [8d 8c 7d Qd] [Ah] +Player16: checks +Player18: checks +*** SHOW DOWN *** +Player21: shows [Th Ts] (two pair, Tens and Eights) +Player16: mucks hand +Player1: mucks hand +Player18: mucks hand +Player21 collected 320 from side pot +Player7: shows [Td Qc] (two pair, Queens and Eights) +Player6 said, "dik" +Player7 collected 2680 from main pot +Player1 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3000 Main pot 2680. Side pot 320. | Rake 0 +Board [8d 8c 7d Qd Ah] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights +Seat 3: Player16 (big blind) mucked [Js 2c] +Seat 4: Player1 mucked [2h 9d] +Seat 5: Player18 mucked [5d 6c] +Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights + + + +PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (980 in chips) +Seat 2: Player21 (320 in chips) +Seat 3: Player16 (1820 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (12495 in chips) +Seat 6: Player7 (2680 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player16: posts small blind 300 +Player1: posts big blind 480 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 9h] +Player18: folds +Player7: folds +Player6: raises 380 to 860 and is all-in +Player21: folds +Player16: calls 560 +*** FLOP *** [Kd 7c Ad] +Player6 said, "bye dik head" +*** TURN *** [Kd 7c Ad] [4d] +*** RIVER *** [Kd 7c Ad 4d] [6d] +*** SHOW DOWN *** +Player16: shows [Jh 3h] (high card Ace) +Player6: shows [Jc 9c] (high card Ace - King+Jack+Nine kicker) +Player6 collected 760 from side pot +Player1: shows [Js 7h] (a pair of Sevens) +Player1 collected 2160 from main pot +*** SUMMARY *** +Total pot 2920 Main pot 2160. Side pot 760. | Rake 0 +Board [Kd 7c Ad 4d 6d] +Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (760 in chips) +Seat 2: Player21 (200 in chips) +Seat 3: Player16 (840 in chips) +Seat 4: Player1 (2160 in chips) +Seat 5: Player18 (12375 in chips) +Seat 6: Player7 (2560 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player1: posts small blind 300 +Player18: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [2d 4h] +Player7: folds +Player6 said, "dik face" +Player6: raises 40 to 640 and is all-in +Player21: calls 80 and is all-in +Player16: folds +Player1: folds +Player18: calls 40 +*** FLOP *** [5h 4d 9h] +Player6 said, "bye dumb shiiit" +*** TURN *** [5h 4d 9h] [6d] +*** RIVER *** [5h 4d 9h 6d] [Jd] +*** SHOW DOWN *** +Player18: shows [2d 4h] (a pair of Fours) +Player6: shows [Jc Ad] (a pair of Jacks) +Player6 collected 1340 from side pot +Player21: shows [7h 7d] (a pair of Sevens) +Player6 collected 1040 from main pot +Player6 said, "ok" +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "not yet" +*** SUMMARY *** +Total pot 2380 Main pot 1040. Side pot 1340. | Rake 0 +Board [5h 4d 9h 6d Jd] +Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks +Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens +Seat 3: Player16 (button) folded before Flop (didn't bet) +Seat 4: Player1 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (2380 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (720 in chips) +Seat 4: Player1 (1740 in chips) +Seat 5: Player18 (11615 in chips) +Seat 6: Player7 (2440 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player18: posts small blind 300 +Player7: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [Jd Js] +Player6: raises 1660 to 2260 and is all-in +Player21: folds +Player16: calls 600 and is all-in +Player1: calls 1620 and is all-in +Player18: calls 1960 +Player7: folds +*** FLOP *** [Kc 8d Qh] +Player6 said, "comn dik face omg ur so **** dik heads" +*** TURN *** [Kc 8d Qh] [5s] +*** RIVER *** [Kc 8d Qh 5s] [9s] +*** SHOW DOWN *** +Player18: shows [Jd Js] (a pair of Jacks) +Player6: shows [4c 4s] (a pair of Fours) +Player18 collected 1280 from side pot-2 +Player1: shows [As 4d] (high card Ace) +Player18 collected 3060 from side pot-1 +Player16: shows [Td Ks] (a pair of Kings) +Player6 said, "bye **** head" +Player16 collected 3720 from main pot +Player18 said, "byebye" +Player1 re-buys and receives 600 chips for 2 FPPs +Player6 finished the tournament in 155th place +*** SUMMARY *** +Total pot 8060 Main pot 3720. Side pot-1 3060. Side pot-2 1280. | Rake 0 +Board [Kc 8d Qh 5s 9s] +Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings +Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace +Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks +Seat 6: Player7 (big blind) folded before Flop + + + +PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 2: Player21 (480 in chips) +Seat 3: Player16 (3720 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13575 in chips) +Seat 6: Player7 (1720 in chips) +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player7: posts small blind 300 +Player21: posts big blind 360 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [Qh 3s] +Player16: folds +Player1: calls 480 and is all-in +Player18: folds +Player7: calls 180 +*** FLOP *** [8h 5c 3d] +*** TURN *** [8h 5c 3d] [7d] +*** RIVER *** [8h 5c 3d 7d] [2s] +*** SHOW DOWN *** +Player7: shows [9s Ac] (high card Ace) +Player1: shows [5h Qs] (a pair of Fives) +Player1 collected 240 from side pot +Player21: shows [6c Ks] (high card King) +Player1 collected 1680 from main pot +Player5 is connected +Player21 finished the tournament in 148th place +*** SUMMARY *** +Total pot 1920 Main pot 1680. Side pot 240. | Rake 0 +Board [8h 5c 3d 7d 2s] +Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace + + + +PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) +Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) +Seat 3: Player16 (4100 in chips) +Seat 4: Player1 (2420 in chips) +Seat 5: Player18 (13955 in chips) +Seat 6: Player7 (1620 in chips) +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player16: posts small blind 400 +Player1: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Qs 4h] +Player18: folds +Player7: folds +Player16: raises 3140 to 3940 and is all-in +Player1: calls 1460 and is all-in +Uncalled bet (1680) returned to Player16 +*** FLOP *** [2d 7c Jh] +*** TURN *** [2d 7c Jh] [3c] +*** RIVER *** [2d 7c Jh 3c] [5h] +*** SHOW DOWN *** +Player16: shows [Ah Kh] (high card Ace) +Player1: shows [Tc 5s] (a pair of Fives) +Player1 collected 5160 from pot +*** SUMMARY *** +Total pot 5160 | Rake 0 +Board [2d 7c Jh 3c 5h] +Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player5 (1940 in chips) +Seat 2: Player4 (3540 in chips) +Seat 3: Player16 (1680 in chips) +Seat 4: Player1 (5160 in chips) +Seat 5: Player18 (13795 in chips) +Seat 6: Player7 (1460 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player1: posts small blind 400 +Player18: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Ac Th] +Player7: folds +Player5: folds +Player4: folds +Player16: raises 720 to 1520 and is all-in +Player1: raises 3480 to 5000 and is all-in +Player18: folds +Uncalled bet (3480) returned to Player1 +*** FLOP *** [4s 3c Kc] +*** TURN *** [4s 3c Kc] [7s] +*** RIVER *** [4s 3c Kc 7s] [9s] +*** SHOW DOWN *** +Player1: shows [Qs Kh] (a pair of Kings) +Player16: shows [9d Qc] (a pair of Nines) +Player1 collected 4800 from pot +Player16 finished the tournament in 120th place +*** SUMMARY *** +Total pot 4800 | Rake 0 +Board [4s 3c Kc 7s 9s] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines +Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings +Seat 5: Player18 (big blind) folded before Flop +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player5 (1780 in chips) +Seat 2: Player4 (3380 in chips) +Seat 4: Player1 (8280 in chips) +Seat 5: Player18 (12835 in chips) +Seat 6: Player7 (1300 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player18: posts small blind 400 +Player7: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [9d 7d] +Player5: folds +Player4: folds +Player1: calls 800 +Player9 is connected +Player18: calls 400 +Player7: checks +*** FLOP *** [Tc Qd 9c] +Player18: checks +Player7: bets 340 and is all-in +Player1: calls 340 +Player18: calls 340 +*** TURN *** [Tc Qd 9c] [Td] +Player18: checks +Player1: checks +*** RIVER *** [Tc Qd 9c Td] [Jh] +Player18: checks +Player1: bets 2400 +Player18: folds +Uncalled bet (2400) returned to Player1 +*** SHOW DOWN *** +Player1: shows [6c 8d] (a straight, Eight to Queen) +Player7: shows [Jc 8c] (a straight, Eight to Queen) +Player7 collected 2110 from pot +Player1 collected 2110 from pot +*** SUMMARY *** +Total pot 4220 | Rake 0 +Board [Tc Qd 9c Td Jh] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen +Seat 5: Player18 (small blind) folded on the River +Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen + + + +PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player5 (1620 in chips) +Seat 2: Player4 (3220 in chips) +Seat 3: Player9 (3065 in chips) +Seat 4: Player1 (9090 in chips) +Seat 5: Player18 (11535 in chips) +Seat 6: Player7 (2110 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player7: posts small blind 400 +Player5: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3c Kd] +Player4: folds +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Uncalled bet (400) returned to Player5 +Player5 collected 1760 from pot +*** SUMMARY *** +Total pot 1760 | Rake 0 +Seat 1: Player5 (big blind) collected (1760) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) folded before Flop + + + +PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (2820 in chips) +Seat 2: Player4 (3060 in chips) +Seat 3: Player9 (2905 in chips) +Seat 4: Player1 (8930 in chips) +Seat 5: Player18 (11375 in chips) +Seat 6: Player7 (1550 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player5: posts small blind 400 +Player4: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [2h Qc] +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Player5: calls 400 +Player4: checks +*** FLOP *** [9c 6d Td] +Player5: checks +Player4: checks +*** TURN *** [9c 6d Td] [4d] +Player5: checks +Player4: bets 2100 and is all-in +Player5: folds +Uncalled bet (2100) returned to Player4 +Player4 collected 2560 from pot +Player4: doesn't show hand +*** SUMMARY *** +Total pot 2560 | Rake 0 +Board [9c 6d Td 4d] +Seat 1: Player5 (small blind) folded on the Turn +Seat 2: Player4 (big blind) collected (2560) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player5 (1860 in chips) +Seat 2: Player4 (4660 in chips) +Seat 3: Player9 (2745 in chips) +Seat 4: Player1 (8770 in chips) +Seat 5: Player18 (11215 in chips) +Seat 6: Player7 (1390 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player4: posts small blind 400 +Player9: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3s 3c] +Player1: raises 4800 to 5600 +Player18: folds +Player7: folds +Player5: folds +Player4: folds +Player9: folds +Uncalled bet (4800) returned to Player1 +Player1 collected 2960 from pot +*** SUMMARY *** +Total pot 2960 | Rake 0 +Seat 1: Player5 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded before Flop +Seat 3: Player9 (big blind) folded before Flop +Seat 4: Player1 collected (2960) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player5 (1700 in chips) +Seat 2: Player4 (4100 in chips) +Seat 3: Player9 (1785 in chips) +Seat 4: Player1 (10770 in chips) +Seat 5: Player18 (11055 in chips) +Seat 6: Player7 (1230 in chips) +Player5: posts the ante 240 +Player4: posts the ante 240 +Player9: posts the ante 240 +Player1: posts the ante 240 +Player18: posts the ante 240 +Player7: posts the ante 240 +Player9: posts small blind 600 +Player1: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2c 6d] +Player18: folds +Player7: calls 990 and is all-in +Player5: raises 260 to 1460 and is all-in +Player4: folds +Player9: folds +Player1: calls 260 +*** FLOP *** [Ts 7d Js] +*** TURN *** [Ts 7d Js] [4c] +*** RIVER *** [Ts 7d Js 4c] [3d] +*** SHOW DOWN *** +Player1: shows [2h 9s] (high card Jack) +Player5: shows [Jc Jd] (three of a kind, Jacks) +Player5 collected 940 from side pot +Player7: shows [4d Ac] (a pair of Fours) +Player5 collected 5010 from main pot +*** SUMMARY *** +Total pot 5950 Main pot 5010. Side pot 940. | Rake 0 +Board [Ts 7d Js 4c 3d] +Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player9 (small blind) folded before Flop +Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours + + + +PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] +Table '999999998 48' 6-max Seat #1 is the button +Seat 1: Player17 (14798 in chips) +Seat 2: Player3 (7215 in chips) +Seat 3: Player15 (6378 in chips) +Seat 4: Player18 (10815 in chips) +Seat 5: Player2 (8520 in chips) +Seat 6: Player22 (11935 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player15: posts the ante 240 +Player18: posts the ante 240 +Player2: posts the ante 240 +Player22: posts the ante 240 +Player3: posts small blind 600 +Player15: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Td] +Player18: folds +Player2: raises 7080 to 8280 and is all-in +Player22: calls 8280 +Player17: folds +Player3: folds +Player15: calls 4938 and is all-in +*** FLOP *** [Ac Th 9d] +*** TURN *** [Ac Th 9d] [3c] +*** RIVER *** [Ac Th 9d 3c] [4d] +*** SHOW DOWN *** +Player2: shows [Kd 5s] (high card Ace) +Player22: shows [2c Ah] (a pair of Aces) +Player22 collected 4284 from side pot +Player15: shows [7d 7c] (a pair of Sevens) +Player22 collected 20454 from main pot +Player2 finished the tournament in 74th place +Player15 finished the tournament in 75th place +*** SUMMARY *** +Total pot 24738 Main pot 20454. Side pot 4284. | Rake 0 +Board [Ac Th 9d 3c 4d] +Seat 1: Player17 (button) folded before Flop (didn't bet) +Seat 2: Player3 (small blind) folded before Flop +Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player2 showed [Kd 5s] and lost with high card Ace +Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces + + + +PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] +Table '999999998 48' 6-max Seat #2 is the button +Seat 1: Player17 (14558 in chips) +Seat 2: Player3 (6375 in chips) +Seat 4: Player18 (10575 in chips) +Seat 6: Player22 (28153 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player18: posts small blind 600 +Player22: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [6h Jd] +Player17: folds +Player3: raises 4935 to 6135 and is all-in +Player18: folds +Player19 is connected +Player22: calls 4935 +Player10 is connected +*** FLOP *** [2s Kh 9s] +*** TURN *** [2s Kh 9s] [Kc] +*** RIVER *** [2s Kh 9s Kc] [3c] +*** SHOW DOWN *** +Player22: shows [Ah Tc] (a pair of Kings) +Player3: shows [5h As] (a pair of Kings - lower kicker) +Player22 collected 13830 from pot +Player3 finished the tournament in 70th place +*** SUMMARY *** +Total pot 13830 | Rake 0 +Board [2s Kh 9s Kc 3c] +Seat 1: Player17 folded before Flop (didn't bet) +Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings +Seat 4: Player18 (small blind) folded before Flop +Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings + + + +PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] +Table '999999998 48' 6-max Seat #4 is the button +Seat 1: Player17 (14318 in chips) +Seat 3: Player19 (1508 in chips) +Seat 4: Player18 (9735 in chips) +Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) +Seat 6: Player22 (35608 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player22: posts small blind 600 +Player17: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Ac] +Player19: folds +Player18: raises 8295 to 9495 and is all-in +Player22: folds +Player17: calls 8295 +*** FLOP *** [Kc 5d 3d] +*** TURN *** [Kc 5d 3d] [6c] +*** RIVER *** [Kc 5d 3d 6c] [Ad] +*** SHOW DOWN *** +Player17: shows [Jh Qd] (high card Ace) +Player18: shows [2s Ac] (a pair of Aces) +Player18 collected 20550 from pot +*** SUMMARY *** +Total pot 20550 | Rake 0 +Board [Kc 5d 3d 6c Ad] +Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace +Seat 3: Player19 folded before Flop (didn't bet) +Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces +Seat 6: Player22 (small blind) folded before Flop + + + +PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] +Table '999999998 48' 6-max Seat #6 is the button +Seat 1: Player17 (4583 in chips) +Seat 3: Player19 (1268 in chips) +Seat 4: Player18 (20550 in chips) +Seat 5: Player10 (5690 in chips) +Seat 6: Player22 (34768 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player10: posts the ante 240 +Player22: posts the ante 240 +Player17: posts small blind 600 +Player19: posts big blind 1028 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [3d 6c] +Player18: folds +Player10: folds +Player22: raises 1372 to 2400 +Player17: calls 1800 +*** FLOP *** [9c 4s Ac] +Player17: checks +Player22: bets 1200 +Player17: folds +Uncalled bet (1200) returned to Player22 +*** TURN *** [9c 4s Ac] [Kc] +*** RIVER *** [9c 4s Ac Kc] [Qs] +*** SHOW DOWN *** +Player22: shows [Jd Qd] (a pair of Queens) +Player22 collected 2744 from side pot +Player19: shows [7s 4c] (a pair of Fours) +Player22 collected 4284 from main pot +*** SUMMARY *** +Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 +Board [9c 4s Ac Kc Qs] +Seat 1: Player17 (small blind) folded on the Flop +Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player10 folded before Flop (didn't bet) +Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens + + + +PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] +Table '999999998 5' 6-max Seat #4 is the button +Seat 1: Player14 (5780 in chips) +Seat 2: Player17 (1943 in chips) +Seat 3: Player18 (20310 in chips) +Seat 4: Player20 (23421 in chips) +Seat 5: Player8 (19258 in chips) +Seat 6: Player23 (26326 in chips) +Player14: posts the ante 240 +Player17: posts the ante 240 +Player18: posts the ante 240 +Player20: posts the ante 240 +Player8: posts the ante 240 +Player23: posts the ante 240 +Player8: posts small blind 600 +Player23: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [7d As] +Player14: folds +Player17: folds +Player18: raises 18000 to 19200 +Player20: raises 3981 to 23181 and is all-in +Player8: folds +Player23: folds +Player18: calls 870 and is all-in +Uncalled bet (3111) returned to Player20 +*** FLOP *** [7h 4h 3s] +*** TURN *** [7h 4h 3s] [Th] +*** RIVER *** [7h 4h 3s Th] [Ah] +*** SHOW DOWN *** +Player18: shows [7d As] (two pair, Aces and Sevens) +Player20: shows [Ad Kh] (a flush, Ace high) +Player20 collected 43380 from pot +Player18 finished the tournament in 54th place +*** SUMMARY *** +Total pot 43380 | Rake 0 +Board [7h 4h 3s Th Ah] +Seat 1: Player14 folded before Flop (didn't bet) +Seat 2: Player17 folded before Flop (didn't bet) +Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens +Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high +Seat 5: Player8 (small blind) folded before Flop +Seat 6: Player23 (big blind) folded before Flop + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt index 951fd0c7..f26e7c51 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt @@ -1,65 +1,65 @@ -PokerStars Game #74759586758: Tournament #589688686, $1.00+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/04/10 22:18:19 WET [2010/04/10 17:18:19 ET] -Table '589688686 1' 10-max Seat #4 is the button -Seat 1: Player3 (1400 in chips) -Seat 2: Player5 (1470 in chips) -Seat 3: Player0 (1820 in chips) -Seat 4: Player2 (1620 in chips) -Seat 5: Player6 (560 in chips) -Seat 6: Player7 (1500 in chips) -Seat 7: Player8 (1500 in chips) -Seat 8: Player4 (1500 in chips) -Seat 9: Player1 (1500 in chips) -Seat 10: Player9 (2130 in chips) -Player6: posts small blind 10 -Player7: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [8c Tc] -Player8: calls 20 -Player4: folds -Player1: folds -Player9: folds -Player3: folds -Player5: calls 20 -Player0: calls 20 -Player2: raises 20 to 40 -Player6: calls 30 -Player7: folds -Player8: calls 20 -Player5: calls 20 -Player0: raises 20 to 60 -Player2: raises 20 to 80 -Player6: calls 40 -Player8: calls 40 -Player5: folds -Player0: raises 20 to 100 -Player2: raises 20 to 120 -Player6: calls 40 -Player8: calls 40 -Player0: raises 20 to 140 -Player2: raises 1480 to 1620 and is all-in -Player6: folds -Player8: folds -Player0: calls 1480 -*** FLOP *** [8d 7d Qs] -*** TURN *** [8d 7d Qs] [Qc] -*** RIVER *** [8d 7d Qs Qc] [7c] -*** SHOW DOWN *** -Player0: shows [8c Tc] (two pair, Queens and Eights) -Player2: shows [3d Ad] (two pair, Queens and Sevens) -Player0 collected 3540 from pot -*** SUMMARY *** -Total pot 3540 | Rake 0 -Board [8d 7d Qs Qc 7c] -Seat 1: Player3 folded before Flop (didn't bet) -Seat 2: Player5 folded before Flop -Seat 3: Player0 showed [8c Tc] and won (3540) with two pair, Queens and Eights -Seat 4: Player2 (button) showed [3d Ad] and lost with two pair, Queens and Sevens -Seat 5: Player6 (small blind) folded before Flop -Seat 6: Player7 (big blind) folded before Flop -Seat 7: Player8 folded before Flop -Seat 8: Player4 folded before Flop (didn't bet) -Seat 9: Player1 folded before Flop (didn't bet) -Seat 10: Player9 folded before Flop (didn't bet) - - +PokerStars Game #74759586758: Tournament #589688686, $1.00+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/04/10 22:18:19 WET [2010/04/10 17:18:19 ET] +Table '589688686 1' 10-max Seat #4 is the button +Seat 1: Player3 (1400 in chips) +Seat 2: Player5 (1470 in chips) +Seat 3: Player0 (1820 in chips) +Seat 4: Player2 (1620 in chips) +Seat 5: Player6 (560 in chips) +Seat 6: Player7 (1500 in chips) +Seat 7: Player8 (1500 in chips) +Seat 8: Player4 (1500 in chips) +Seat 9: Player1 (1500 in chips) +Seat 10: Player9 (2130 in chips) +Player6: posts small blind 10 +Player7: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [8c Tc] +Player8: calls 20 +Player4: folds +Player1: folds +Player9: folds +Player3: folds +Player5: calls 20 +Player0: calls 20 +Player2: raises 20 to 40 +Player6: calls 30 +Player7: folds +Player8: calls 20 +Player5: calls 20 +Player0: raises 20 to 60 +Player2: raises 20 to 80 +Player6: calls 40 +Player8: calls 40 +Player5: folds +Player0: raises 20 to 100 +Player2: raises 20 to 120 +Player6: calls 40 +Player8: calls 40 +Player0: raises 20 to 140 +Player2: raises 1480 to 1620 and is all-in +Player6: folds +Player8: folds +Player0: calls 1480 +*** FLOP *** [8d 7d Qs] +*** TURN *** [8d 7d Qs] [Qc] +*** RIVER *** [8d 7d Qs Qc] [7c] +*** SHOW DOWN *** +Player0: shows [8c Tc] (two pair, Queens and Eights) +Player2: shows [3d Ad] (two pair, Queens and Sevens) +Player0 collected 3540 from pot +*** SUMMARY *** +Total pot 3540 | Rake 0 +Board [8d 7d Qs Qc 7c] +Seat 1: Player3 folded before Flop (didn't bet) +Seat 2: Player5 folded before Flop +Seat 3: Player0 showed [8c Tc] and won (3540) with two pair, Queens and Eights +Seat 4: Player2 (button) showed [3d Ad] and lost with two pair, Queens and Sevens +Seat 5: Player6 (small blind) folded before Flop +Seat 6: Player7 (big blind) folded before Flop +Seat 7: Player8 folded before Flop +Seat 8: Player4 folded before Flop (didn't bet) +Seat 9: Player1 folded before Flop (didn't bet) +Seat 10: Player9 folded before Flop (didn't bet) + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt index 6bf36f9f..d97d3ca1 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt @@ -1,2867 +1,2867 @@ -PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1500 in chips) -Seat 3: Player3 (1500 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player1: posts small blind 10 -Player3: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [4c 7d] -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player9: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (10) returned to Player3 -Player3 collected 20 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 20 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) collected (20) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1490 in chips) -Seat 3: Player3 (1510 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player3: posts small blind 10 -Player4: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [8h Jh] -Player5: folds -Player2: folds -Player6: folds -Player0: raises 40 to 60 -Player9: folds -Player8: folds -Player7: folds -Player1: calls 60 -Player3: folds -Player4: folds -*** FLOP *** [2h 7c Th] -Player0: bets 80 -Player1: calls 80 -*** TURN *** [2h 7c Th] [5s] -Player0: checks -Player1: bets 217 -Player0: calls 217 -*** RIVER *** [2h 7c Th 5s] [Jd] -Player0: checks -Player1: checks -*** SHOW DOWN *** -Player0: shows [8h Jh] (a pair of Jacks) -Player1: mucks hand -Player0 collected 744 from pot -*** SUMMARY *** -Total pot 744 | Rake 0 -Board [2h 7c Th 5s Jd] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) mucked [9c 9s] -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks -Seat 9: Player9 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1500 in chips) -Seat 4: Player4 (1480 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player4: posts small blind 10 -Player5: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [Ks 8s] -Player2: folds -Player6: folds -Player0: folds -Player9: calls 20 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: folds -Player5: folds -Player9: folds -Uncalled bet (60) returned to Player3 -Player3 collected 70 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 70 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) collected (70) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1550 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1480 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1480 in chips) -Seat 10: Player8 (1500 in chips) -Player5: posts small blind 10 -Player2: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [7c 5c] -Player6: folds -Player0: folds -Player9: calls 20 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: folds -Player5: folds -Player2: folds -Player9: calls 60 -*** FLOP *** [Ks Qc Td] -Player9: bets 80 -Player3: folds -Uncalled bet (80) returned to Player9 -Player9 collected 190 from pot -*** SUMMARY *** -Total pot 190 | Rake 0 -Board [Ks Qc Td] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Flop -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 collected (190) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1470 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1480 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1590 in chips) -Seat 10: Player8 (1500 in chips) -Player2: posts small blind 10 -Player6: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [Jh Qc] -Player0: folds -Player9: raises 40 to 60 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 100 to 160 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player9: calls 100 -*** FLOP *** [8h Qd Js] -Player9: bets 160 -Player3: raises 160 to 320 -Player9: raises 280 to 600 -Player3: raises 710 to 1310 and is all-in -Player9: calls 710 -*** TURN *** [8h Qd Js] [8s] -*** RIVER *** [8h Qd Js 8s] [2h] -*** SHOW DOWN *** -Player9: shows [Qs Kd] (two pair, Queens and Eights) -Player3: shows [Kc Ks] (two pair, Kings and Eights) -Player3 collected 2970 from pot -*** SUMMARY *** -Total pot 2970 | Rake 0 -Board [8h Qd Js 8s 2h] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 showed [Kc Ks] and won (2970) with two pair, Kings and Eights -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2970 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1480 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (120 in chips) -Seat 10: Player8 (1500 in chips) -Player6: posts small blind 10 -Player0: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [7h 8c] -Player9: raises 100 to 120 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: calls 100 -*** FLOP *** [4h 9h 3s] -*** TURN *** [4h 9h 3s] [Ks] -*** RIVER *** [4h 9h 3s Ks] [9s] -*** SHOW DOWN *** -Player0: shows [7h 8c] (a pair of Nines) -Player9: shows [2d 2c] (two pair, Nines and Deuces) -Player9 collected 250 from pot -*** SUMMARY *** -Total pot 250 | Rake 0 -Board [4h 9h 3s Ks 9s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines -Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2970 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1767 in chips) -Seat 9: Player9 (250 in chips) -Seat 10: Player8 (1500 in chips) -Player0: posts small blind 10 -Player9: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [2d 4s] -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: calls 80 -Player5: folds -Player2: folds -Player6: calls 80 -Player0: folds -Player9: folds -*** FLOP *** [Ks 8s 8c] -Player3: checks -Player4: checks -Player6: checks -*** TURN *** [Ks 8s 8c] [2c] -Player3: checks -Player4: checks -Player6: bets 140 -Player3: folds -Player4: folds -Uncalled bet (140) returned to Player6 -Player6 collected 270 from pot -*** SUMMARY *** -Total pot 270 | Rake 0 -Board [Ks 8s 8c 2c] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Turn -Seat 4: Player4 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 (button) collected (270) -Seat 8: Player0 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2890 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) -Seat 9: Player9 (230 in chips) -Seat 10: Player8 (1500 in chips) -Player9: posts small blind 15 -Player8: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Th Kd] -Player7: folds -Player1: folds -Player3: raises 90 to 120 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player9: raises 110 to 230 and is all-in -Player8: folds -Player3: calls 110 -*** FLOP *** [5s 5d 6s] -*** TURN *** [5s 5d 6s] [Qs] -*** RIVER *** [5s 5d 6s Qs] [Jc] -*** SHOW DOWN *** -Player9: shows [Ks 8d] (a pair of Fives) -Player3: shows [Ac Qc] (two pair, Queens and Fives) -Player3 collected 490 from pot -Player9 finished the tournament in 10th place -*** SUMMARY *** -Total pot 490 | Rake 0 -Board [5s 5d 6s Qs Jc] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 showed [Ac Qc] and won (490) with two pair, Queens and Fives -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (3150 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts small blind 15 -Player1: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Ah Td] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: raises 90 to 120 -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (90) returned to Player0 -Player0 collected 75 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 75 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (75) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1103 in chips) -Seat 3: Player3 (3150 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player1: posts small blind 15 -Player3: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Js Qs] -Player4: folds -Player5: folds -Player2: raises 30 to 60 -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: calls 45 -Player3: folds -*** FLOP *** [2d 7d 4s] -Player1: bets 120 -Player2: raises 150 to 270 -Player1: calls 150 -*** TURN *** [2d 7d 4s] [3c] -Player1: checks -Player2: checks -*** RIVER *** [2d 7d 4s 3c] [5d] -Player1: bets 773 and is all-in -Player2: folds -Uncalled bet (773) returned to Player1 -Player1 collected 690 from pot -*** SUMMARY *** -Total pot 690 | Rake 0 -Board [2d 7d 4s 3c 5d] -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) collected (690) -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded on the River -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3120 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player3: posts small blind 15 -Player4: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [6h Kc] -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (15) returned to Player4 -Player4 collected 30 from pot -*** SUMMARY *** -Total pot 30 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) collected (30) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1405 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player4: posts small blind 15 -Player5: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Td 9c] -Player2: raises 60 to 90 -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (60) returned to Player2 -Player2 collected 75 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 75 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 collected (75) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1440 in chips) -Seat 6: Player2 (1185 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player5: posts small blind 15 -Player2: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [4c Ts] -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (15) returned to Player2 -Player2 collected 30 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 30 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) collected (30) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1425 in chips) -Seat 6: Player2 (1200 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player2: posts small blind 25 -Player6: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [3c Th] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 3050 to 3100 and is all-in -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (3050) returned to Player3 -Player3 collected 170 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (170) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (1458 in chips) -Seat 3: Player3 (3220 in chips) -Seat 4: Player4 (1385 in chips) -Seat 5: Player5 (1420 in chips) -Seat 6: Player2 (1170 in chips) -Seat 7: Player6 (1605 in chips) -Seat 8: Player0 (1797 in chips) -Seat 10: Player8 (1465 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player6: posts small blind 25 -Player0: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Ad 3h] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: raises 150 to 200 -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Uncalled bet (150) returned to Player4 -Player4 collected 170 from pot -Player4: shows [Th Td] (a pair of Tens) -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 collected (170) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1475 in chips) -Seat 2: Player1 (1453 in chips) -Seat 3: Player3 (3215 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1415 in chips) -Seat 6: Player2 (1165 in chips) -Seat 7: Player6 (1575 in chips) -Seat 8: Player0 (1742 in chips) -Seat 10: Player8 (1460 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player0: posts small blind 25 -Player8: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [4c 3d] -Player7: folds -Player1: folds -Player3: raises 50 to 100 -Player4: folds -Player5: folds -Player2: folds -Player6: calls 100 -Player0: folds -Player8: folds -*** FLOP *** [As 7h Td] -Player3: bets 3110 and is all-in -Player6: folds -Uncalled bet (3110) returned to Player3 -Player3 collected 320 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 320 | Rake 0 -Board [As 7h Td] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (320) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded on the Flop -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1470 in chips) -Seat 2: Player1 (1448 in chips) -Seat 3: Player3 (3430 in chips) -Seat 4: Player4 (1495 in chips) -Seat 5: Player5 (1410 in chips) -Seat 6: Player2 (1160 in chips) -Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1712 in chips) -Seat 10: Player8 (1405 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player8: posts small blind 25 -Player7: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Js Qd] -Player1: folds -Player3: raises 50 to 100 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (50) returned to Player3 -Player3 collected 170 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (170) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1415 in chips) -Seat 2: Player1 (1443 in chips) -Seat 3: Player3 (3545 in chips) -Seat 4: Player4 (1490 in chips) -Seat 5: Player5 (1405 in chips) -Seat 6: Player2 (1155 in chips) -Seat 7: Player6 (1465 in chips) -Seat 8: Player0 (1707 in chips) -Seat 10: Player8 (1375 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player7: posts small blind 25 -Player1: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [4h Qh] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: raises 100 to 150 -Player7: folds -Player1: folds -Uncalled bet (100) returned to Player8 -Player8 collected 170 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (170) - - - -PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1385 in chips) -Seat 2: Player1 (1388 in chips) -Seat 3: Player3 (3540 in chips) -Seat 4: Player4 (1485 in chips) -Seat 5: Player5 (1400 in chips) -Seat 6: Player2 (1150 in chips) -Seat 7: Player6 (1460 in chips) -Seat 8: Player0 (1702 in chips) -Seat 10: Player8 (1490 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player1: posts small blind 25 -Player3: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Td 7c] -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (25) returned to Player3 -Player3 collected 95 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 95 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) collected (95) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1380 in chips) -Seat 2: Player1 (1358 in chips) -Seat 3: Player3 (3605 in chips) -Seat 4: Player4 (1480 in chips) -Seat 5: Player5 (1395 in chips) -Seat 6: Player2 (1145 in chips) -Seat 7: Player6 (1455 in chips) -Seat 8: Player0 (1697 in chips) -Seat 10: Player8 (1485 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player3: posts small blind 25 -Player4: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [8s 7h] -Player5: raises 100 to 150 -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (100) returned to Player5 -Player5 collected 170 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 collected (170) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1375 in chips) -Seat 2: Player1 (1353 in chips) -Seat 3: Player3 (3575 in chips) -Seat 4: Player4 (1425 in chips) -Seat 5: Player5 (1510 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1450 in chips) -Seat 8: Player0 (1692 in chips) -Seat 10: Player8 (1480 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player4: posts small blind 50 -Player5: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Ts As] -Player2: folds -Player6: folds -Player0: raises 200 to 300 -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (200) returned to Player0 -Player0 collected 340 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 340 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (340) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1365 in chips) -Seat 2: Player1 (1343 in chips) -Seat 3: Player3 (3565 in chips) -Seat 4: Player4 (1365 in chips) -Seat 5: Player5 (1400 in chips) -Seat 6: Player2 (1130 in chips) -Seat 7: Player6 (1440 in chips) -Seat 8: Player0 (1922 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player5: posts small blind 50 -Player2: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Th 7d] -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 100 to 200 -Player4: folds -Player5: folds -Player2: calls 100 -*** FLOP *** [Ts 6c 5s] -Player2: checks -Player3: bets 200 -Player2: calls 200 -*** TURN *** [Ts 6c 5s] [7s] -Player2: bets 300 -Player3: folds -Uncalled bet (300) returned to Player2 -Player2 collected 940 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 940 | Rake 0 -Board [Ts 6c 5s 7s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Turn -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) collected (940) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1355 in chips) -Seat 2: Player1 (1333 in chips) -Seat 3: Player3 (3155 in chips) -Seat 4: Player4 (1355 in chips) -Seat 5: Player5 (1340 in chips) -Seat 6: Player2 (1660 in chips) -Seat 7: Player6 (1430 in chips) -Seat 8: Player0 (1912 in chips) -Seat 10: Player8 (1460 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player2: posts small blind 50 -Player6: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Tc 4c] -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1223 to 1323 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (1223) returned to Player1 -Player1 collected 340 from pot -*** SUMMARY *** -Total pot 340 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 collected (340) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1345 in chips) -Seat 2: Player1 (1563 in chips) -Seat 3: Player3 (3145 in chips) -Seat 4: Player4 (1345 in chips) -Seat 5: Player5 (1330 in chips) -Seat 6: Player2 (1600 in chips) -Seat 7: Player6 (1320 in chips) -Seat 8: Player0 (1902 in chips) -Seat 10: Player8 (1450 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player6: posts small blind 50 -Player0: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [7s 2h] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (50) returned to Player0 -Player0 collected 190 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 190 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (190) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1335 in chips) -Seat 2: Player1 (1553 in chips) -Seat 3: Player3 (3135 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1320 in chips) -Seat 6: Player2 (1590 in chips) -Seat 7: Player6 (1260 in chips) -Seat 8: Player0 (2032 in chips) -Seat 10: Player8 (1440 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player0: posts small blind 50 -Player8: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Jc 6h] -Player7: folds -Player1: folds -Player3: folds -Player4: raises 100 to 200 -Player5: folds -Player2: raises 300 to 500 -Player6: raises 750 to 1250 and is all-in -Player0: folds -Player8: folds -Player4: folds -Player2: calls 750 -*** FLOP *** [5s 9s 2c] -*** TURN *** [5s 9s 2c] [6d] -*** RIVER *** [5s 9s 2c 6d] [Qd] -*** SHOW DOWN *** -Player2: shows [Js Jd] (a pair of Jacks) -Player6: shows [Kc Ad] (high card Ace) -Player2 collected 2940 from pot -Player6 finished the tournament in 9th place -*** SUMMARY *** -Total pot 2940 | Rake 0 -Board [5s 9s 2c 6d Qd] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks -Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1325 in chips) -Seat 2: Player1 (1543 in chips) -Seat 3: Player3 (3125 in chips) -Seat 4: Player4 (1125 in chips) -Seat 5: Player5 (1310 in chips) -Seat 6: Player2 (3270 in chips) -Seat 8: Player0 (1972 in chips) -Seat 10: Player8 (1330 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player8: posts small blind 50 -Player7: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Tc Kd] -Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" -Player1: raises 1433 to 1533 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1433) returned to Player1 -Player1 collected 330 from pot -*** SUMMARY *** -Total pot 330 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 collected (330) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1215 in chips) -Seat 2: Player1 (1763 in chips) -Seat 3: Player3 (3115 in chips) -Seat 4: Player4 (1115 in chips) -Seat 5: Player5 (1300 in chips) -Seat 6: Player2 (3260 in chips) -Seat 8: Player0 (1962 in chips) -Seat 10: Player8 (1270 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player7: posts small blind 50 -Player1: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [2s Js] -Player3: folds -Player4: raises 200 to 300 -Player0 is connected -Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" -Player5: folds -Player2: folds -Player4 said, "oh,,," -Player0: folds -Player0 is sitting out -Player8: folds -Player7: folds -Player0 has returned -Player1: folds -Uncalled bet (200) returned to Player4 -Player4 collected 330 from pot -Player4: shows [Ah Ac] (a pair of Aces) -*** SUMMARY *** -Total pot 330 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 collected (330) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1155 in chips) -Seat 2: Player1 (1653 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1290 in chips) -Seat 6: Player2 (3250 in chips) -Seat 8: Player0 (1952 in chips) -Seat 10: Player8 (1260 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player1: posts small blind 75 -Player3: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [9d Tc] -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: raises 990 to 1140 and is all-in -Player1: folds -Player3: folds -Uncalled bet (990) returned to Player7 -Player7 collected 495 from pot -Player7: doesn't show hand -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (button) collected (495) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1563 in chips) -Seat 3: Player3 (2940 in chips) -Seat 4: Player4 (1320 in chips) -Seat 5: Player5 (1275 in chips) -Seat 6: Player2 (3235 in chips) -Seat 8: Player0 (1937 in chips) -Seat 10: Player8 (1245 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player3: posts small blind 75 -Player4: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Jh 7d] -Player4 said, "just unlucky timing is all" -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: raises 1320 to 1470 and is all-in -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (1320) returned to Player7 -Player7 collected 495 from pot -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 collected (495) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1815 in chips) -Seat 2: Player1 (1548 in chips) -Seat 3: Player3 (2850 in chips) -Seat 4: Player4 (1155 in chips) -Seat 5: Player5 (1260 in chips) -Seat 6: Player2 (3220 in chips) -Seat 8: Player0 (1922 in chips) -Seat 10: Player8 (1230 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player4: posts small blind 75 -Player5: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Td 6d] -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: calls 75 -Player5: checks -*** FLOP *** [9h 3s 7d] -Player4: bets 450 -Player5: folds -Uncalled bet (450) returned to Player4 -Player4 collected 420 from pot -Player4: shows [Kc 9c] (a pair of Nines) -*** SUMMARY *** -Total pot 420 | Rake 0 -Board [9h 3s 7d] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) collected (420) -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1800 in chips) -Seat 2: Player1 (1533 in chips) -Seat 3: Player3 (2835 in chips) -Seat 4: Player4 (1410 in chips) -Seat 5: Player5 (1095 in chips) -Seat 6: Player2 (3205 in chips) -Seat 8: Player0 (1907 in chips) -Seat 10: Player8 (1215 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player5: posts small blind 75 -Player2: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [3c 5h] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: raises 930 to 1080 and is all-in -Player2: folds -Uncalled bet (930) returned to Player5 -Player5 collected 420 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 420 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) collected (420) -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1785 in chips) -Seat 2: Player1 (1518 in chips) -Seat 3: Player3 (2820 in chips) -Seat 4: Player4 (1395 in chips) -Seat 5: Player5 (1350 in chips) -Seat 6: Player2 (3040 in chips) -Seat 8: Player0 (1892 in chips) -Seat 10: Player8 (1200 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player2: posts small blind 75 -Player0: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Tc 8s] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player5 said, "3 outered once again..had k 10" -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (75) returned to Player0 -Player0 collected 270 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 270 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (270) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1770 in chips) -Seat 2: Player1 (1503 in chips) -Seat 3: Player3 (2805 in chips) -Seat 4: Player4 (1380 in chips) -Seat 5: Player5 (1335 in chips) -Seat 6: Player2 (2950 in chips) -Seat 8: Player0 (2072 in chips) -Seat 10: Player8 (1185 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player0: posts small blind 75 -Player8: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [2c 6h] -Player7: folds -Player4 said, "i showed,,,,you see K 9" -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Uncalled bet (75) returned to Player8 -Player8 collected 270 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 270 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) collected (270) - - - -PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1755 in chips) -Seat 2: Player1 (1488 in chips) -Seat 3: Player3 (2790 in chips) -Seat 4: Player4 (1365 in chips) -Seat 5: Player5 (1320 in chips) -Seat 6: Player2 (2935 in chips) -Seat 8: Player0 (1982 in chips) -Seat 10: Player8 (1365 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player8: posts small blind 75 -Player7: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Js 6d] -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 1817 to 1967 and is all-in -Player8: folds -Player7: folds -Uncalled bet (1817) returned to Player0 -Player0 collected 495 from pot -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) collected (495) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1590 in chips) -Seat 2: Player1 (1473 in chips) -Seat 3: Player3 (2775 in chips) -Seat 4: Player4 (1350 in chips) -Seat 5: Player5 (1305 in chips) -Seat 6: Player2 (2920 in chips) -Seat 8: Player0 (2312 in chips) -Seat 10: Player8 (1275 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player7: posts small blind 75 -Player1: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [4s Ks] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: raises 1110 to 1260 and is all-in -Player7: folds -Player1: folds -Uncalled bet (1110) returned to Player8 -Player8 collected 495 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (495) - - - -PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1308 in chips) -Seat 3: Player3 (2760 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1290 in chips) -Seat 6: Player2 (2905 in chips) -Seat 8: Player0 (2297 in chips) -Seat 10: Player8 (1605 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player1: posts small blind 100 -Player3: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [5d Ac] -Player4: raises 600 to 800 -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (600) returned to Player4 -Player4 collected 660 from pot -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 collected (660) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (1188 in chips) -Seat 3: Player3 (2540 in chips) -Seat 4: Player4 (1775 in chips) -Seat 5: Player5 (1270 in chips) -Seat 6: Player2 (2885 in chips) -Seat 8: Player0 (2277 in chips) -Seat 10: Player8 (1585 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player3: posts small blind 100 -Player4: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Qc Ac] -Player5: folds -Player2: folds -Player0: raises 2057 to 2257 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (2057) returned to Player0 -Player0 collected 660 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (660) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1460 in chips) -Seat 2: Player1 (1168 in chips) -Seat 3: Player3 (2420 in chips) -Seat 4: Player4 (1555 in chips) -Seat 5: Player5 (1250 in chips) -Seat 6: Player2 (2865 in chips) -Seat 8: Player0 (2717 in chips) -Seat 10: Player8 (1565 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player4: posts small blind 100 -Player5: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [4d 8d] -Player2: folds -Player0: folds -Player8: raises 1345 to 1545 and is all-in -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (1345) returned to Player8 -Player8 collected 660 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 collected (660) - - - -PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1440 in chips) -Seat 2: Player1 (1148 in chips) -Seat 3: Player3 (2400 in chips) -Seat 4: Player4 (1435 in chips) -Seat 5: Player5 (1030 in chips) -Seat 6: Player2 (2845 in chips) -Seat 8: Player0 (2697 in chips) -Seat 10: Player8 (2005 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player5: posts small blind 100 -Player2: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Tc 9d] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 2180 to 2380 and is all-in -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (2180) returned to Player3 -Player3 collected 660 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (660) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1420 in chips) -Seat 2: Player1 (1128 in chips) -Seat 3: Player3 (2840 in chips) -Seat 4: Player4 (1415 in chips) -Seat 5: Player5 (910 in chips) -Seat 6: Player2 (2625 in chips) -Seat 8: Player0 (2677 in chips) -Seat 10: Player8 (1985 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player2: posts small blind 100 -Player0: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Th Jd] -Player8: folds -Player7: raises 1200 to 1400 and is all-in -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Uncalled bet (1200) returned to Player7 -Player7 collected 660 from pot -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 collected (660) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1860 in chips) -Seat 2: Player1 (1108 in chips) -Seat 3: Player3 (2820 in chips) -Seat 4: Player4 (1395 in chips) -Seat 5: Player5 (890 in chips) -Seat 6: Player2 (2505 in chips) -Seat 8: Player0 (2457 in chips) -Seat 10: Player8 (1965 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player0: posts small blind 100 -Player8: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Kc 8s] -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 1200 to 1400 -Player8: folds -Uncalled bet (1200) returned to Player0 -Player0 collected 560 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 560 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (560) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1840 in chips) -Seat 2: Player1 (1088 in chips) -Seat 3: Player3 (2800 in chips) -Seat 4: Player4 (1375 in chips) -Seat 5: Player5 (870 in chips) -Seat 6: Player2 (2485 in chips) -Seat 8: Player0 (2797 in chips) -Seat 10: Player8 (1745 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player8: posts small blind 100 -Player7: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [9h 4h] -Player1: raises 868 to 1068 and is all-in -Player3: raises 1712 to 2780 and is all-in -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1712) returned to Player3 -*** FLOP *** [4s 7h 7s] -*** TURN *** [4s 7h 7s] [4c] -*** RIVER *** [4s 7h 7s 4c] [9s] -*** SHOW DOWN *** -Player1: shows [Ts Ks] (a flush, King high) -Player3: shows [Qh Ad] (two pair, Sevens and Fours) -Player1 collected 2596 from pot -*** SUMMARY *** -Total pot 2596 | Rake 0 -Board [4s 7h 7s 4c 9s] -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 showed [Ts Ks] and won (2596) with a flush, King high -Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1620 in chips) -Seat 2: Player1 (2596 in chips) -Seat 3: Player3 (1712 in chips) -Seat 4: Player4 (1355 in chips) -Seat 5: Player5 (850 in chips) -Seat 6: Player2 (2465 in chips) -Seat 8: Player0 (2777 in chips) -Seat 10: Player8 (1625 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player7: posts small blind 100 -Player1: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [9c 6h] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: raises 1405 to 1605 and is all-in -Player7: folds -Player1: folds -Uncalled bet (1405) returned to Player8 -Player8 collected 660 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (660) - - - -PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (2376 in chips) -Seat 3: Player3 (1692 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (830 in chips) -Seat 6: Player2 (2445 in chips) -Seat 8: Player0 (2757 in chips) -Seat 10: Player8 (2065 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player1: posts small blind 100 -Player3: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Qh 3h] -Player4: folds -Player5: raises 610 to 810 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (610) returned to Player5 -Player5 collected 660 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 collected (660) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (2256 in chips) -Seat 3: Player3 (1472 in chips) -Seat 4: Player4 (1315 in chips) -Seat 5: Player5 (1270 in chips) -Seat 6: Player2 (2425 in chips) -Seat 8: Player0 (2737 in chips) -Seat 10: Player8 (2045 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player3: posts small blind 125 -Player4: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [7c 9c] -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 250 to 500 -Player4: raises 500 to 1000 -Player3: folds -Uncalled bet (500) returned to Player4 -Player4 collected 1200 from pot -Player4: shows [Ad As] (a pair of Aces) -*** SUMMARY *** -Total pot 1200 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) collected (1200) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1455 in chips) -Seat 2: Player1 (2231 in chips) -Seat 3: Player3 (947 in chips) -Seat 4: Player4 (1990 in chips) -Seat 5: Player5 (1245 in chips) -Seat 6: Player2 (2400 in chips) -Seat 8: Player0 (2712 in chips) -Seat 10: Player8 (2020 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player4: posts small blind 125 -Player5: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [8h Js] -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1956 to 2206 and is all-in -Player3: calls 922 and is all-in -Player4: folds -Player5: folds -Uncalled bet (1284) returned to Player1 -*** FLOP *** [4s 6h 5s] -*** TURN *** [4s 6h 5s] [5c] -*** RIVER *** [4s 6h 5s 5c] [9d] -*** SHOW DOWN *** -Player1: shows [Jd Qh] (a pair of Fives) -Player3: shows [Ah Ad] (two pair, Aces and Fives) -Player3 collected 2419 from pot -*** SUMMARY *** -Total pot 2419 | Rake 0 -Board [4s 6h 5s 5c 9d] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 showed [Jd Qh] and lost with a pair of Fives -Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and Fives -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1430 in chips) -Seat 2: Player1 (1284 in chips) -Seat 3: Player3 (2419 in chips) -Seat 4: Player4 (1840 in chips) -Seat 5: Player5 (970 in chips) -Seat 6: Player2 (2375 in chips) -Seat 8: Player0 (2687 in chips) -Seat 10: Player8 (1995 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player5: posts small blind 125 -Player2: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [5c Ks] -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1009 to 1259 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (1009) returned to Player1 -Player1 collected 825 from pot -*** SUMMARY *** -Total pot 825 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 collected (825) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1405 in chips) -Seat 2: Player1 (1834 in chips) -Seat 3: Player3 (2394 in chips) -Seat 4: Player4 (1815 in chips) -Seat 5: Player5 (820 in chips) -Seat 6: Player2 (2100 in chips) -Seat 8: Player0 (2662 in chips) -Seat 10: Player8 (1970 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player2: posts small blind 125 -Player0: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [4s Ks] -Player8: folds -Player4 said, "gamlet,,,A 10,,,nice suck out" -Player7: folds -Player1: folds -Player4 said, "you lucked out" -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (125) returned to Player0 -Player0 collected 450 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 450 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (450) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1380 in chips) -Seat 2: Player1 (1809 in chips) -Seat 3: Player3 (2369 in chips) -Seat 4: Player4 (1790 in chips) -Seat 5: Player5 (795 in chips) -Seat 6: Player2 (1950 in chips) -Seat 8: Player0 (2962 in chips) -Seat 10: Player8 (1945 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player0: posts small blind 125 -Player8: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [3d 7s] -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 2687 to 2937 and is all-in -Player8: folds -Uncalled bet (2687) returned to Player0 -Player0 collected 700 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 700 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (700) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1355 in chips) -Seat 2: Player1 (1784 in chips) -Seat 3: Player3 (2344 in chips) -Seat 4: Player4 (1765 in chips) -Seat 5: Player5 (770 in chips) -Seat 6: Player2 (1925 in chips) -Seat 8: Player0 (3387 in chips) -Seat 10: Player8 (1670 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player8: posts small blind 125 -Player7: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [2d As] -Player1: raises 1509 to 1759 and is all-in -Player3: folds -Player4: folds -Player5: calls 745 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1014) returned to Player1 -*** FLOP *** [3c 2c Ks] -*** TURN *** [3c 2c Ks] [7c] -*** RIVER *** [3c 2c Ks 7c] [5s] -*** SHOW DOWN *** -Player1: shows [Tc Ac] (a flush, Ace high) -Player5: shows [Ts Td] (a pair of Tens) -Player1 collected 2065 from pot -Player5 finished the tournament in 8th place -*** SUMMARY *** -Total pot 2065 | Rake 0 -Board [3c 2c Ks 7c 5s] -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 showed [Tc Ac] and won (2065) with a flush, Ace high -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1080 in chips) -Seat 2: Player1 (3079 in chips) -Seat 3: Player3 (2319 in chips) -Seat 4: Player4 (1740 in chips) -Seat 6: Player2 (1900 in chips) -Seat 8: Player0 (3362 in chips) -Seat 10: Player8 (1520 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player7: posts small blind 125 -Player1: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [Qh 2s] -Player3: raises 250 to 500 -Player4: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (250) returned to Player3 -Player3 collected 800 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 800 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 collected (800) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (930 in chips) -Seat 2: Player1 (2804 in chips) -Seat 3: Player3 (2844 in chips) -Seat 4: Player4 (1715 in chips) -Seat 6: Player2 (1875 in chips) -Seat 8: Player0 (3337 in chips) -Seat 10: Player8 (1495 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player1: posts small blind 125 -Player3: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [Ad Ts] -Player4: folds -Player2: folds -Player0: raises 500 to 750 -Player8: folds -Player7: raises 155 to 905 and is all-in -Player1: folds -Player3: folds -Player0: calls 155 -*** FLOP *** [5h 7h As] -*** TURN *** [5h 7h As] [8h] -*** RIVER *** [5h 7h As 8h] [Jh] -*** SHOW DOWN *** -Player0: shows [Ad Ts] (a pair of Aces) -Player7: shows [Kh Kc] (a flush, King high) -Player7 collected 2360 from pot -*** SUMMARY *** -Total pot 2360 | Rake 0 -Board [5h 7h As 8h Jh] -Seat 1: Player7 (button) showed [Kh Kc] and won (2360) with a flush, King high -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (2360 in chips) -Seat 2: Player1 (2654 in chips) -Seat 3: Player3 (2569 in chips) -Seat 4: Player4 (1690 in chips) -Seat 6: Player2 (1850 in chips) -Seat 8: Player0 (2407 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player3: posts small blind 150 -Player4: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [As Kc] -Player2: folds -Player0: raises 2077 to 2377 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (2077) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 960 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (960) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (2330 in chips) -Seat 2: Player1 (2624 in chips) -Seat 3: Player3 (2389 in chips) -Seat 4: Player4 (1360 in chips) -Seat 6: Player2 (1820 in chips) -Seat 8: Player0 (3037 in chips) -Seat 10: Player8 (1440 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player4: posts small blind 150 -Player2: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [2s 2d] -Player0: raises 2707 to 3007 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player2: folds -Uncalled bet (2707) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 960 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 collected (960) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (2300 in chips) -Seat 2: Player1 (2594 in chips) -Seat 3: Player3 (2359 in chips) -Seat 4: Player4 (1180 in chips) -Seat 6: Player2 (1490 in chips) -Seat 8: Player0 (3667 in chips) -Seat 10: Player8 (1410 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player2: posts small blind 150 -Player0: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Th Td] -Player8: folds -Player7: folds -Player1: raises 2264 to 2564 and is all-in -Player3: folds -Player4: folds -Player2: folds -Player0: calls 2264 -*** FLOP *** [Ad Kc 7c] -*** TURN *** [Ad Kc 7c] [9s] -*** RIVER *** [Ad Kc 7c 9s] [Qs] -*** SHOW DOWN *** -Player0: shows [Th Td] (a pair of Tens) -Player1: shows [Tc 9c] (a pair of Nines) -Player0 collected 5488 from pot -Player1 finished the tournament in 7th place -*** SUMMARY *** -Total pot 5488 | Rake 0 -Board [Ad Kc 7c 9s Qs] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (2270 in chips) -Seat 3: Player3 (2329 in chips) -Seat 4: Player4 (1150 in chips) -Seat 6: Player2 (1310 in chips) -Seat 8: Player0 (6561 in chips) -Seat 10: Player8 (1380 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player0: posts small blind 150 -Player8: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [6d 7s] -Player7: folds -Player3: folds -Player4: folds -Player2: folds -Player0: raises 1800 to 2100 -Player8: folds -Uncalled bet (1800) returned to Player0 -Player0 collected 780 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 780 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (780) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (2240 in chips) -Seat 3: Player3 (2299 in chips) -Seat 4: Player4 (1120 in chips) -Seat 6: Player2 (1280 in chips) -Seat 8: Player0 (7011 in chips) -Seat 10: Player8 (1050 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player8: posts small blind 150 -Player7: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Kc Jc] -Player3: raises 300 to 600 -Player4: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (300) returned to Player3 -Player3 collected 930 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 3: Player3 collected (930) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1910 in chips) -Seat 3: Player3 (2899 in chips) -Seat 4: Player4 (1090 in chips) -Seat 6: Player2 (1250 in chips) -Seat 8: Player0 (6981 in chips) -Seat 10: Player8 (870 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player7: posts small blind 150 -Player3: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [9c 4d] -Player4: raises 760 to 1060 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player3: folds -Uncalled bet (760) returned to Player4 -Player4 collected 930 from pot -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 collected (930) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1730 in chips) -Seat 3: Player3 (2569 in chips) -Seat 4: Player4 (1690 in chips) -Seat 6: Player2 (1220 in chips) -Seat 8: Player0 (6951 in chips) -Seat 10: Player8 (840 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player3: posts small blind 150 -Player4: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [4d Ac] -Player2: folds -Player0: raises 600 to 900 -Player8: folds -Player7: folds -Player3: folds -Player4: folds -Uncalled bet (600) returned to Player0 -Player0 collected 930 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (930) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1700 in chips) -Seat 3: Player3 (2389 in chips) -Seat 4: Player4 (1360 in chips) -Seat 6: Player2 (1190 in chips) -Seat 8: Player0 (7551 in chips) -Seat 10: Player8 (810 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player4: posts small blind 150 -Player2: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [9d 6s] -Player0: folds -Player8: raises 450 to 750 -Player7: folds -Player3: folds -Player4: folds -Player2: folds -Uncalled bet (450) returned to Player8 -Player8 collected 930 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 collected (930) - - - -PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1670 in chips) -Seat 3: Player3 (2359 in chips) -Seat 4: Player4 (1180 in chips) -Seat 6: Player2 (860 in chips) -Seat 8: Player0 (7521 in chips) -Seat 10: Player8 (1410 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player2: posts small blind 150 -Player0: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Kd 7c] -Player8: folds -Player7: folds -Player3: folds -Player4: folds -Player2: raises 530 to 830 and is all-in -Player0: calls 530 -*** FLOP *** [7s Kc 3s] -*** TURN *** [7s Kc 3s] [9c] -*** RIVER *** [7s Kc 3s 9c] [6s] -*** SHOW DOWN *** -Player2: shows [Ah 6c] (a pair of Sixes) -Player0: shows [Kd 7c] (two pair, Kings and Sevens) -Player0 collected 1840 from pot -Player2 finished the tournament in 6th place -Player7 finished the tournament in 1st place and received $40.00. -Player3 finished the tournament in 1st place and received $40.00. -Player4 finished the tournament in 1st place and received $40.00. -Player0 finished the tournament in 1st place and received $40.00. -Player8 finished the tournament in 1st place and received $40.00. -*** SUMMARY *** -Total pot 1840 | Rake 0 -Board [7s Kc 3s 9c 6s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes -Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens -Seat 10: Player8 folded before Flop (didn't bet) - - - +PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1500 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player1: posts small blind 10 +Player3: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [4c 7d] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (10) returned to Player3 +Player3 collected 20 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 20 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (20) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1490 in chips) +Seat 3: Player3 (1510 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player3: posts small blind 10 +Player4: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [8h Jh] +Player5: folds +Player2: folds +Player6: folds +Player0: raises 40 to 60 +Player9: folds +Player8: folds +Player7: folds +Player1: calls 60 +Player3: folds +Player4: folds +*** FLOP *** [2h 7c Th] +Player0: bets 80 +Player1: calls 80 +*** TURN *** [2h 7c Th] [5s] +Player0: checks +Player1: bets 217 +Player0: calls 217 +*** RIVER *** [2h 7c Th 5s] [Jd] +Player0: checks +Player1: checks +*** SHOW DOWN *** +Player0: shows [8h Jh] (a pair of Jacks) +Player1: mucks hand +Player0 collected 744 from pot +*** SUMMARY *** +Total pot 744 | Rake 0 +Board [2h 7c Th 5s Jd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) mucked [9c 9s] +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player4: posts small blind 10 +Player5: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Ks 8s] +Player2: folds +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player9: folds +Uncalled bet (60) returned to Player3 +Player3 collected 70 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 70 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) collected (70) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1550 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1480 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1480 in chips) +Seat 10: Player8 (1500 in chips) +Player5: posts small blind 10 +Player2: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7c 5c] +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player2: folds +Player9: calls 60 +*** FLOP *** [Ks Qc Td] +Player9: bets 80 +Player3: folds +Uncalled bet (80) returned to Player9 +Player9 collected 190 from pot +*** SUMMARY *** +Total pot 190 | Rake 0 +Board [Ks Qc Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Flop +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1470 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1480 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1590 in chips) +Seat 10: Player8 (1500 in chips) +Player2: posts small blind 10 +Player6: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Jh Qc] +Player0: folds +Player9: raises 40 to 60 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 160 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player9: calls 100 +*** FLOP *** [8h Qd Js] +Player9: bets 160 +Player3: raises 160 to 320 +Player9: raises 280 to 600 +Player3: raises 710 to 1310 and is all-in +Player9: calls 710 +*** TURN *** [8h Qd Js] [8s] +*** RIVER *** [8h Qd Js 8s] [2h] +*** SHOW DOWN *** +Player9: shows [Qs Kd] (two pair, Queens and Eights) +Player3: shows [Kc Ks] (two pair, Kings and Eights) +Player3 collected 2970 from pot +*** SUMMARY *** +Total pot 2970 | Rake 0 +Board [8h Qd Js 8s 2h] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Kc Ks] and won (2970) with two pair, Kings and Eights +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1480 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (120 in chips) +Seat 10: Player8 (1500 in chips) +Player6: posts small blind 10 +Player0: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7h 8c] +Player9: raises 100 to 120 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: calls 100 +*** FLOP *** [4h 9h 3s] +*** TURN *** [4h 9h 3s] [Ks] +*** RIVER *** [4h 9h 3s Ks] [9s] +*** SHOW DOWN *** +Player0: shows [7h 8c] (a pair of Nines) +Player9: shows [2d 2c] (two pair, Nines and Deuces) +Player9 collected 250 from pot +*** SUMMARY *** +Total pot 250 | Rake 0 +Board [4h 9h 3s Ks 9s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines +Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1767 in chips) +Seat 9: Player9 (250 in chips) +Seat 10: Player8 (1500 in chips) +Player0: posts small blind 10 +Player9: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [2d 4s] +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: calls 80 +Player5: folds +Player2: folds +Player6: calls 80 +Player0: folds +Player9: folds +*** FLOP *** [Ks 8s 8c] +Player3: checks +Player4: checks +Player6: checks +*** TURN *** [Ks 8s 8c] [2c] +Player3: checks +Player4: checks +Player6: bets 140 +Player3: folds +Player4: folds +Uncalled bet (140) returned to Player6 +Player6 collected 270 from pot +*** SUMMARY *** +Total pot 270 | Rake 0 +Board [Ks 8s 8c 2c] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) collected (270) +Seat 8: Player0 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2890 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 9: Player9 (230 in chips) +Seat 10: Player8 (1500 in chips) +Player9: posts small blind 15 +Player8: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Th Kd] +Player7: folds +Player1: folds +Player3: raises 90 to 120 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: raises 110 to 230 and is all-in +Player8: folds +Player3: calls 110 +*** FLOP *** [5s 5d 6s] +*** TURN *** [5s 5d 6s] [Qs] +*** RIVER *** [5s 5d 6s Qs] [Jc] +*** SHOW DOWN *** +Player9: shows [Ks 8d] (a pair of Fives) +Player3: shows [Ac Qc] (two pair, Queens and Fives) +Player3 collected 490 from pot +Player9 finished the tournament in 10th place +*** SUMMARY *** +Total pot 490 | Rake 0 +Board [5s 5d 6s Qs Jc] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Ac Qc] and won (490) with two pair, Queens and Fives +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts small blind 15 +Player1: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Ah Td] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: raises 90 to 120 +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (90) returned to Player0 +Player0 collected 75 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (75) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1103 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player1: posts small blind 15 +Player3: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Js Qs] +Player4: folds +Player5: folds +Player2: raises 30 to 60 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: calls 45 +Player3: folds +*** FLOP *** [2d 7d 4s] +Player1: bets 120 +Player2: raises 150 to 270 +Player1: calls 150 +*** TURN *** [2d 7d 4s] [3c] +Player1: checks +Player2: checks +*** RIVER *** [2d 7d 4s 3c] [5d] +Player1: bets 773 and is all-in +Player2: folds +Uncalled bet (773) returned to Player1 +Player1 collected 690 from pot +*** SUMMARY *** +Total pot 690 | Rake 0 +Board [2d 7d 4s 3c 5d] +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) collected (690) +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded on the River +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3120 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player3: posts small blind 15 +Player4: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [6h Kc] +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (15) returned to Player4 +Player4 collected 30 from pot +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (30) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1405 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player4: posts small blind 15 +Player5: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Td 9c] +Player2: raises 60 to 90 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (60) returned to Player2 +Player2 collected 75 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 collected (75) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1440 in chips) +Seat 6: Player2 (1185 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player5: posts small blind 15 +Player2: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [4c Ts] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (15) returned to Player2 +Player2 collected 30 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (30) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1425 in chips) +Seat 6: Player2 (1200 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player2: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [3c Th] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 3050 to 3100 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (3050) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1458 in chips) +Seat 3: Player3 (3220 in chips) +Seat 4: Player4 (1385 in chips) +Seat 5: Player5 (1420 in chips) +Seat 6: Player2 (1170 in chips) +Seat 7: Player6 (1605 in chips) +Seat 8: Player0 (1797 in chips) +Seat 10: Player8 (1465 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player6: posts small blind 25 +Player0: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Ad 3h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: raises 150 to 200 +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Uncalled bet (150) returned to Player4 +Player4 collected 170 from pot +Player4: shows [Th Td] (a pair of Tens) +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (170) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1475 in chips) +Seat 2: Player1 (1453 in chips) +Seat 3: Player3 (3215 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1415 in chips) +Seat 6: Player2 (1165 in chips) +Seat 7: Player6 (1575 in chips) +Seat 8: Player0 (1742 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player0: posts small blind 25 +Player8: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4c 3d] +Player7: folds +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: calls 100 +Player0: folds +Player8: folds +*** FLOP *** [As 7h Td] +Player3: bets 3110 and is all-in +Player6: folds +Uncalled bet (3110) returned to Player3 +Player3 collected 320 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 320 | Rake 0 +Board [As 7h Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (320) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded on the Flop +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1470 in chips) +Seat 2: Player1 (1448 in chips) +Seat 3: Player3 (3430 in chips) +Seat 4: Player4 (1495 in chips) +Seat 5: Player5 (1410 in chips) +Seat 6: Player2 (1160 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1712 in chips) +Seat 10: Player8 (1405 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player8: posts small blind 25 +Player7: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Js Qd] +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (50) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1415 in chips) +Seat 2: Player1 (1443 in chips) +Seat 3: Player3 (3545 in chips) +Seat 4: Player4 (1490 in chips) +Seat 5: Player5 (1405 in chips) +Seat 6: Player2 (1155 in chips) +Seat 7: Player6 (1465 in chips) +Seat 8: Player0 (1707 in chips) +Seat 10: Player8 (1375 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player7: posts small blind 25 +Player1: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4h Qh] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: raises 100 to 150 +Player7: folds +Player1: folds +Uncalled bet (100) returned to Player8 +Player8 collected 170 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (170) + + + +PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1385 in chips) +Seat 2: Player1 (1388 in chips) +Seat 3: Player3 (3540 in chips) +Seat 4: Player4 (1485 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1150 in chips) +Seat 7: Player6 (1460 in chips) +Seat 8: Player0 (1702 in chips) +Seat 10: Player8 (1490 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player1: posts small blind 25 +Player3: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Td 7c] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (25) returned to Player3 +Player3 collected 95 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 95 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (95) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1358 in chips) +Seat 3: Player3 (3605 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1395 in chips) +Seat 6: Player2 (1145 in chips) +Seat 7: Player6 (1455 in chips) +Seat 8: Player0 (1697 in chips) +Seat 10: Player8 (1485 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player3: posts small blind 25 +Player4: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [8s 7h] +Player5: raises 100 to 150 +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (100) returned to Player5 +Player5 collected 170 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 collected (170) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1375 in chips) +Seat 2: Player1 (1353 in chips) +Seat 3: Player3 (3575 in chips) +Seat 4: Player4 (1425 in chips) +Seat 5: Player5 (1510 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1450 in chips) +Seat 8: Player0 (1692 in chips) +Seat 10: Player8 (1480 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player4: posts small blind 50 +Player5: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Ts As] +Player2: folds +Player6: folds +Player0: raises 200 to 300 +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (200) returned to Player0 +Player0 collected 340 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (340) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1365 in chips) +Seat 2: Player1 (1343 in chips) +Seat 3: Player3 (3565 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1130 in chips) +Seat 7: Player6 (1440 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player5: posts small blind 50 +Player2: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Th 7d] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 200 +Player4: folds +Player5: folds +Player2: calls 100 +*** FLOP *** [Ts 6c 5s] +Player2: checks +Player3: bets 200 +Player2: calls 200 +*** TURN *** [Ts 6c 5s] [7s] +Player2: bets 300 +Player3: folds +Uncalled bet (300) returned to Player2 +Player2 collected 940 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 940 | Rake 0 +Board [Ts 6c 5s 7s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (940) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1333 in chips) +Seat 3: Player3 (3155 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (1340 in chips) +Seat 6: Player2 (1660 in chips) +Seat 7: Player6 (1430 in chips) +Seat 8: Player0 (1912 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player2: posts small blind 50 +Player6: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc 4c] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1223 to 1323 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (1223) returned to Player1 +Player1 collected 340 from pot +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (340) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1345 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (3145 in chips) +Seat 4: Player4 (1345 in chips) +Seat 5: Player5 (1330 in chips) +Seat 6: Player2 (1600 in chips) +Seat 7: Player6 (1320 in chips) +Seat 8: Player0 (1902 in chips) +Seat 10: Player8 (1450 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player6: posts small blind 50 +Player0: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [7s 2h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (50) returned to Player0 +Player0 collected 190 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 190 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1335 in chips) +Seat 2: Player1 (1553 in chips) +Seat 3: Player3 (3135 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (1590 in chips) +Seat 7: Player6 (1260 in chips) +Seat 8: Player0 (2032 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player0: posts small blind 50 +Player8: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Jc 6h] +Player7: folds +Player1: folds +Player3: folds +Player4: raises 100 to 200 +Player5: folds +Player2: raises 300 to 500 +Player6: raises 750 to 1250 and is all-in +Player0: folds +Player8: folds +Player4: folds +Player2: calls 750 +*** FLOP *** [5s 9s 2c] +*** TURN *** [5s 9s 2c] [6d] +*** RIVER *** [5s 9s 2c 6d] [Qd] +*** SHOW DOWN *** +Player2: shows [Js Jd] (a pair of Jacks) +Player6: shows [Kc Ad] (high card Ace) +Player2 collected 2940 from pot +Player6 finished the tournament in 9th place +*** SUMMARY *** +Total pot 2940 | Rake 0 +Board [5s 9s 2c 6d Qd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks +Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1325 in chips) +Seat 2: Player1 (1543 in chips) +Seat 3: Player3 (3125 in chips) +Seat 4: Player4 (1125 in chips) +Seat 5: Player5 (1310 in chips) +Seat 6: Player2 (3270 in chips) +Seat 8: Player0 (1972 in chips) +Seat 10: Player8 (1330 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player8: posts small blind 50 +Player7: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc Kd] +Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" +Player1: raises 1433 to 1533 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1433) returned to Player1 +Player1 collected 330 from pot +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 collected (330) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1215 in chips) +Seat 2: Player1 (1763 in chips) +Seat 3: Player3 (3115 in chips) +Seat 4: Player4 (1115 in chips) +Seat 5: Player5 (1300 in chips) +Seat 6: Player2 (3260 in chips) +Seat 8: Player0 (1962 in chips) +Seat 10: Player8 (1270 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player7: posts small blind 50 +Player1: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [2s Js] +Player3: folds +Player4: raises 200 to 300 +Player0 is connected +Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" +Player5: folds +Player2: folds +Player4 said, "oh,,," +Player0: folds +Player0 is sitting out +Player8: folds +Player7: folds +Player0 has returned +Player1: folds +Uncalled bet (200) returned to Player4 +Player4 collected 330 from pot +Player4: shows [Ah Ac] (a pair of Aces) +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (330) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1155 in chips) +Seat 2: Player1 (1653 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (3250 in chips) +Seat 8: Player0 (1952 in chips) +Seat 10: Player8 (1260 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player1: posts small blind 75 +Player3: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [9d Tc] +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 990 to 1140 and is all-in +Player1: folds +Player3: folds +Uncalled bet (990) returned to Player7 +Player7 collected 495 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (button) collected (495) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (2940 in chips) +Seat 4: Player4 (1320 in chips) +Seat 5: Player5 (1275 in chips) +Seat 6: Player2 (3235 in chips) +Seat 8: Player0 (1937 in chips) +Seat 10: Player8 (1245 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player3: posts small blind 75 +Player4: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Jh 7d] +Player4 said, "just unlucky timing is all" +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 1320 to 1470 and is all-in +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (1320) returned to Player7 +Player7 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 collected (495) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1815 in chips) +Seat 2: Player1 (1548 in chips) +Seat 3: Player3 (2850 in chips) +Seat 4: Player4 (1155 in chips) +Seat 5: Player5 (1260 in chips) +Seat 6: Player2 (3220 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1230 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player4: posts small blind 75 +Player5: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Td 6d] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: calls 75 +Player5: checks +*** FLOP *** [9h 3s 7d] +Player4: bets 450 +Player5: folds +Uncalled bet (450) returned to Player4 +Player4 collected 420 from pot +Player4: shows [Kc 9c] (a pair of Nines) +*** SUMMARY *** +Total pot 420 | Rake 0 +Board [9h 3s 7d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) collected (420) +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1800 in chips) +Seat 2: Player1 (1533 in chips) +Seat 3: Player3 (2835 in chips) +Seat 4: Player4 (1410 in chips) +Seat 5: Player5 (1095 in chips) +Seat 6: Player2 (3205 in chips) +Seat 8: Player0 (1907 in chips) +Seat 10: Player8 (1215 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player5: posts small blind 75 +Player2: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [3c 5h] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: raises 930 to 1080 and is all-in +Player2: folds +Uncalled bet (930) returned to Player5 +Player5 collected 420 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) collected (420) +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1785 in chips) +Seat 2: Player1 (1518 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (1350 in chips) +Seat 6: Player2 (3040 in chips) +Seat 8: Player0 (1892 in chips) +Seat 10: Player8 (1200 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player2: posts small blind 75 +Player0: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Tc 8s] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player5 said, "3 outered once again..had k 10" +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (75) returned to Player0 +Player0 collected 270 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (270) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1770 in chips) +Seat 2: Player1 (1503 in chips) +Seat 3: Player3 (2805 in chips) +Seat 4: Player4 (1380 in chips) +Seat 5: Player5 (1335 in chips) +Seat 6: Player2 (2950 in chips) +Seat 8: Player0 (2072 in chips) +Seat 10: Player8 (1185 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player0: posts small blind 75 +Player8: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [2c 6h] +Player7: folds +Player4 said, "i showed,,,,you see K 9" +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (75) returned to Player8 +Player8 collected 270 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) collected (270) + + + +PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1755 in chips) +Seat 2: Player1 (1488 in chips) +Seat 3: Player3 (2790 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (2935 in chips) +Seat 8: Player0 (1982 in chips) +Seat 10: Player8 (1365 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player8: posts small blind 75 +Player7: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Js 6d] +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1817 to 1967 and is all-in +Player8: folds +Player7: folds +Uncalled bet (1817) returned to Player0 +Player0 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) collected (495) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1590 in chips) +Seat 2: Player1 (1473 in chips) +Seat 3: Player3 (2775 in chips) +Seat 4: Player4 (1350 in chips) +Seat 5: Player5 (1305 in chips) +Seat 6: Player2 (2920 in chips) +Seat 8: Player0 (2312 in chips) +Seat 10: Player8 (1275 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player7: posts small blind 75 +Player1: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1110 to 1260 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1110) returned to Player8 +Player8 collected 495 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (495) + + + +PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1308 in chips) +Seat 3: Player3 (2760 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (2905 in chips) +Seat 8: Player0 (2297 in chips) +Seat 10: Player8 (1605 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [5d Ac] +Player4: raises 600 to 800 +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (600) returned to Player4 +Player4 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (660) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1188 in chips) +Seat 3: Player3 (2540 in chips) +Seat 4: Player4 (1775 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2885 in chips) +Seat 8: Player0 (2277 in chips) +Seat 10: Player8 (1585 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player3: posts small blind 100 +Player4: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qc Ac] +Player5: folds +Player2: folds +Player0: raises 2057 to 2257 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2057) returned to Player0 +Player0 collected 660 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (660) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1460 in chips) +Seat 2: Player1 (1168 in chips) +Seat 3: Player3 (2420 in chips) +Seat 4: Player4 (1555 in chips) +Seat 5: Player5 (1250 in chips) +Seat 6: Player2 (2865 in chips) +Seat 8: Player0 (2717 in chips) +Seat 10: Player8 (1565 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player4: posts small blind 100 +Player5: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [4d 8d] +Player2: folds +Player0: folds +Player8: raises 1345 to 1545 and is all-in +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (1345) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (660) + + + +PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1440 in chips) +Seat 2: Player1 (1148 in chips) +Seat 3: Player3 (2400 in chips) +Seat 4: Player4 (1435 in chips) +Seat 5: Player5 (1030 in chips) +Seat 6: Player2 (2845 in chips) +Seat 8: Player0 (2697 in chips) +Seat 10: Player8 (2005 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player5: posts small blind 100 +Player2: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Tc 9d] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 2180 to 2380 and is all-in +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (2180) returned to Player3 +Player3 collected 660 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (660) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1420 in chips) +Seat 2: Player1 (1128 in chips) +Seat 3: Player3 (2840 in chips) +Seat 4: Player4 (1415 in chips) +Seat 5: Player5 (910 in chips) +Seat 6: Player2 (2625 in chips) +Seat 8: Player0 (2677 in chips) +Seat 10: Player8 (1985 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player2: posts small blind 100 +Player0: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Th Jd] +Player8: folds +Player7: raises 1200 to 1400 and is all-in +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (1200) returned to Player7 +Player7 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 collected (660) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1860 in chips) +Seat 2: Player1 (1108 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (890 in chips) +Seat 6: Player2 (2505 in chips) +Seat 8: Player0 (2457 in chips) +Seat 10: Player8 (1965 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player0: posts small blind 100 +Player8: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Kc 8s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1200 to 1400 +Player8: folds +Uncalled bet (1200) returned to Player0 +Player0 collected 560 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 560 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (560) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1840 in chips) +Seat 2: Player1 (1088 in chips) +Seat 3: Player3 (2800 in chips) +Seat 4: Player4 (1375 in chips) +Seat 5: Player5 (870 in chips) +Seat 6: Player2 (2485 in chips) +Seat 8: Player0 (2797 in chips) +Seat 10: Player8 (1745 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player8: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9h 4h] +Player1: raises 868 to 1068 and is all-in +Player3: raises 1712 to 2780 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1712) returned to Player3 +*** FLOP *** [4s 7h 7s] +*** TURN *** [4s 7h 7s] [4c] +*** RIVER *** [4s 7h 7s 4c] [9s] +*** SHOW DOWN *** +Player1: shows [Ts Ks] (a flush, King high) +Player3: shows [Qh Ad] (two pair, Sevens and Fours) +Player1 collected 2596 from pot +*** SUMMARY *** +Total pot 2596 | Rake 0 +Board [4s 7h 7s 4c 9s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Ts Ks] and won (2596) with a flush, King high +Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1620 in chips) +Seat 2: Player1 (2596 in chips) +Seat 3: Player3 (1712 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (850 in chips) +Seat 6: Player2 (2465 in chips) +Seat 8: Player0 (2777 in chips) +Seat 10: Player8 (1625 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player7: posts small blind 100 +Player1: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9c 6h] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1405 to 1605 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1405) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (660) + + + +PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (2376 in chips) +Seat 3: Player3 (1692 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (830 in chips) +Seat 6: Player2 (2445 in chips) +Seat 8: Player0 (2757 in chips) +Seat 10: Player8 (2065 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qh 3h] +Player4: folds +Player5: raises 610 to 810 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (610) returned to Player5 +Player5 collected 660 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 collected (660) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (2256 in chips) +Seat 3: Player3 (1472 in chips) +Seat 4: Player4 (1315 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2425 in chips) +Seat 8: Player0 (2737 in chips) +Seat 10: Player8 (2045 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player3: posts small blind 125 +Player4: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [7c 9c] +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 250 to 500 +Player4: raises 500 to 1000 +Player3: folds +Uncalled bet (500) returned to Player4 +Player4 collected 1200 from pot +Player4: shows [Ad As] (a pair of Aces) +*** SUMMARY *** +Total pot 1200 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (1200) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1455 in chips) +Seat 2: Player1 (2231 in chips) +Seat 3: Player3 (947 in chips) +Seat 4: Player4 (1990 in chips) +Seat 5: Player5 (1245 in chips) +Seat 6: Player2 (2400 in chips) +Seat 8: Player0 (2712 in chips) +Seat 10: Player8 (2020 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player4: posts small blind 125 +Player5: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [8h Js] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1956 to 2206 and is all-in +Player3: calls 922 and is all-in +Player4: folds +Player5: folds +Uncalled bet (1284) returned to Player1 +*** FLOP *** [4s 6h 5s] +*** TURN *** [4s 6h 5s] [5c] +*** RIVER *** [4s 6h 5s 5c] [9d] +*** SHOW DOWN *** +Player1: shows [Jd Qh] (a pair of Fives) +Player3: shows [Ah Ad] (two pair, Aces and Fives) +Player3 collected 2419 from pot +*** SUMMARY *** +Total pot 2419 | Rake 0 +Board [4s 6h 5s 5c 9d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Jd Qh] and lost with a pair of Fives +Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and Fives +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1430 in chips) +Seat 2: Player1 (1284 in chips) +Seat 3: Player3 (2419 in chips) +Seat 4: Player4 (1840 in chips) +Seat 5: Player5 (970 in chips) +Seat 6: Player2 (2375 in chips) +Seat 8: Player0 (2687 in chips) +Seat 10: Player8 (1995 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player5: posts small blind 125 +Player2: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [5c Ks] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1009 to 1259 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (1009) returned to Player1 +Player1 collected 825 from pot +*** SUMMARY *** +Total pot 825 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (825) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1405 in chips) +Seat 2: Player1 (1834 in chips) +Seat 3: Player3 (2394 in chips) +Seat 4: Player4 (1815 in chips) +Seat 5: Player5 (820 in chips) +Seat 6: Player2 (2100 in chips) +Seat 8: Player0 (2662 in chips) +Seat 10: Player8 (1970 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player2: posts small blind 125 +Player0: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player8: folds +Player4 said, "gamlet,,,A 10,,,nice suck out" +Player7: folds +Player1: folds +Player4 said, "you lucked out" +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (125) returned to Player0 +Player0 collected 450 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 450 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (450) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1809 in chips) +Seat 3: Player3 (2369 in chips) +Seat 4: Player4 (1790 in chips) +Seat 5: Player5 (795 in chips) +Seat 6: Player2 (1950 in chips) +Seat 8: Player0 (2962 in chips) +Seat 10: Player8 (1945 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player0: posts small blind 125 +Player8: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [3d 7s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 2687 to 2937 and is all-in +Player8: folds +Uncalled bet (2687) returned to Player0 +Player0 collected 700 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 700 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (700) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1784 in chips) +Seat 3: Player3 (2344 in chips) +Seat 4: Player4 (1765 in chips) +Seat 5: Player5 (770 in chips) +Seat 6: Player2 (1925 in chips) +Seat 8: Player0 (3387 in chips) +Seat 10: Player8 (1670 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player8: posts small blind 125 +Player7: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [2d As] +Player1: raises 1509 to 1759 and is all-in +Player3: folds +Player4: folds +Player5: calls 745 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1014) returned to Player1 +*** FLOP *** [3c 2c Ks] +*** TURN *** [3c 2c Ks] [7c] +*** RIVER *** [3c 2c Ks 7c] [5s] +*** SHOW DOWN *** +Player1: shows [Tc Ac] (a flush, Ace high) +Player5: shows [Ts Td] (a pair of Tens) +Player1 collected 2065 from pot +Player5 finished the tournament in 8th place +*** SUMMARY *** +Total pot 2065 | Rake 0 +Board [3c 2c Ks 7c 5s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Tc Ac] and won (2065) with a flush, Ace high +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1080 in chips) +Seat 2: Player1 (3079 in chips) +Seat 3: Player3 (2319 in chips) +Seat 4: Player4 (1740 in chips) +Seat 6: Player2 (1900 in chips) +Seat 8: Player0 (3362 in chips) +Seat 10: Player8 (1520 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player7: posts small blind 125 +Player1: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Qh 2s] +Player3: raises 250 to 500 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (250) returned to Player3 +Player3 collected 800 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 800 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 collected (800) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (930 in chips) +Seat 2: Player1 (2804 in chips) +Seat 3: Player3 (2844 in chips) +Seat 4: Player4 (1715 in chips) +Seat 6: Player2 (1875 in chips) +Seat 8: Player0 (3337 in chips) +Seat 10: Player8 (1495 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player1: posts small blind 125 +Player3: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Ad Ts] +Player4: folds +Player2: folds +Player0: raises 500 to 750 +Player8: folds +Player7: raises 155 to 905 and is all-in +Player1: folds +Player3: folds +Player0: calls 155 +*** FLOP *** [5h 7h As] +*** TURN *** [5h 7h As] [8h] +*** RIVER *** [5h 7h As 8h] [Jh] +*** SHOW DOWN *** +Player0: shows [Ad Ts] (a pair of Aces) +Player7: shows [Kh Kc] (a flush, King high) +Player7 collected 2360 from pot +*** SUMMARY *** +Total pot 2360 | Rake 0 +Board [5h 7h As 8h Jh] +Seat 1: Player7 (button) showed [Kh Kc] and won (2360) with a flush, King high +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (2360 in chips) +Seat 2: Player1 (2654 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1850 in chips) +Seat 8: Player0 (2407 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [As Kc] +Player2: folds +Player0: raises 2077 to 2377 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2077) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (2330 in chips) +Seat 2: Player1 (2624 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1820 in chips) +Seat 8: Player0 (3037 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [2s 2d] +Player0: raises 2707 to 3007 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (2707) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (2300 in chips) +Seat 2: Player1 (2594 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (1490 in chips) +Seat 8: Player0 (3667 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Th Td] +Player8: folds +Player7: folds +Player1: raises 2264 to 2564 and is all-in +Player3: folds +Player4: folds +Player2: folds +Player0: calls 2264 +*** FLOP *** [Ad Kc 7c] +*** TURN *** [Ad Kc 7c] [9s] +*** RIVER *** [Ad Kc 7c 9s] [Qs] +*** SHOW DOWN *** +Player0: shows [Th Td] (a pair of Tens) +Player1: shows [Tc 9c] (a pair of Nines) +Player0 collected 5488 from pot +Player1 finished the tournament in 7th place +*** SUMMARY *** +Total pot 5488 | Rake 0 +Board [Ad Kc 7c 9s Qs] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (2270 in chips) +Seat 3: Player3 (2329 in chips) +Seat 4: Player4 (1150 in chips) +Seat 6: Player2 (1310 in chips) +Seat 8: Player0 (6561 in chips) +Seat 10: Player8 (1380 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player0: posts small blind 150 +Player8: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [6d 7s] +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Player0: raises 1800 to 2100 +Player8: folds +Uncalled bet (1800) returned to Player0 +Player0 collected 780 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 780 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (780) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (2240 in chips) +Seat 3: Player3 (2299 in chips) +Seat 4: Player4 (1120 in chips) +Seat 6: Player2 (1280 in chips) +Seat 8: Player0 (7011 in chips) +Seat 10: Player8 (1050 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player8: posts small blind 150 +Player7: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kc Jc] +Player3: raises 300 to 600 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (300) returned to Player3 +Player3 collected 930 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 3: Player3 collected (930) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1910 in chips) +Seat 3: Player3 (2899 in chips) +Seat 4: Player4 (1090 in chips) +Seat 6: Player2 (1250 in chips) +Seat 8: Player0 (6981 in chips) +Seat 10: Player8 (870 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player7: posts small blind 150 +Player3: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9c 4d] +Player4: raises 760 to 1060 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player3: folds +Uncalled bet (760) returned to Player4 +Player4 collected 930 from pot +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (930) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1730 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1220 in chips) +Seat 8: Player0 (6951 in chips) +Seat 10: Player8 (840 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [4d Ac] +Player2: folds +Player0: raises 600 to 900 +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Uncalled bet (600) returned to Player0 +Player0 collected 930 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (930) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1700 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1190 in chips) +Seat 8: Player0 (7551 in chips) +Seat 10: Player8 (810 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9d 6s] +Player0: folds +Player8: raises 450 to 750 +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (450) returned to Player8 +Player8 collected 930 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (930) + + + +PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1670 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (860 in chips) +Seat 8: Player0 (7521 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kd 7c] +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Player2: raises 530 to 830 and is all-in +Player0: calls 530 +*** FLOP *** [7s Kc 3s] +*** TURN *** [7s Kc 3s] [9c] +*** RIVER *** [7s Kc 3s 9c] [6s] +*** SHOW DOWN *** +Player2: shows [Ah 6c] (a pair of Sixes) +Player0: shows [Kd 7c] (two pair, Kings and Sevens) +Player0 collected 1840 from pot +Player2 finished the tournament in 6th place +Player7 finished the tournament in 1st place and received $40.00. +Player3 finished the tournament in 1st place and received $40.00. +Player4 finished the tournament in 1st place and received $40.00. +Player0 finished the tournament in 1st place and received $40.00. +Player8 finished the tournament in 1st place and received $40.00. +*** SUMMARY *** +Total pot 1840 | Rake 0 +Board [7s Kc 3s 9c 6s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes +Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens +Seat 10: Player8 folded before Flop (didn't bet) + + +