Merge branch 'master' of git://github.com/kangaderoo/fpdb-kangaderoo

This commit is contained in:
Worros 2010-06-21 14:45:03 +08:00
commit 79a6aa8f48
16 changed files with 10080 additions and 9724 deletions

View File

@ -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)

View File

@ -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

View File

@ -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"]

View File

@ -508,6 +508,9 @@ Left-Drag to Move"
<pu_stat pu_stat_name="a_freq2"> </pu_stat>
<pu_stat pu_stat_name="a_freq3"> </pu_stat>
<pu_stat pu_stat_name="a_freq4"> </pu_stat>
<pu_stat pu_stat_name="agg_freq"> </pu_stat>
<pu_stat pu_stat_name="agg_fact"> </pu_stat>
<pu_stat pu_stat_name="cbet"> </pu_stat>
<pu_stat pu_stat_name="cb1"> </pu_stat>
<pu_stat pu_stat_name="cb2"> </pu_stat>
<pu_stat pu_stat_name="cb3"> </pu_stat>

View File

@ -570,6 +570,9 @@ Left-Drag to Move"
<pu_stat pu_stat_name="a_freq2"> </pu_stat>
<pu_stat pu_stat_name="a_freq3"> </pu_stat>
<pu_stat pu_stat_name="a_freq4"> </pu_stat>
<pu_stat pu_stat_name="agg_freq"> </pu_stat>
<pu_stat pu_stat_name="agg_fact"> </pu_stat>
<pu_stat pu_stat_name="cbet"> </pu_stat>
<pu_stat pu_stat_name="cb1"> </pu_stat>
<pu_stat pu_stat_name="cb2"> </pu_stat>
<pu_stat pu_stat_name="cb3"> </pu_stat>

View File

@ -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 <signed>integer) AS ccr_opp_3,
cast(hp2.street3CheckCallRaiseDone as <signed>integer) AS ccr_3,
cast(hp2.street4CheckCallRaiseChance as <signed>integer) AS ccr_opp_4,
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4,
cast(hp2.street0Calls as <signed>integer) AS call_0,
cast(hp2.street1Calls as <signed>integer) AS call_1,
cast(hp2.street2Calls as <signed>integer) AS call_2,
cast(hp2.street3Calls as <signed>integer) AS call_3,
cast(hp2.street4Calls as <signed>integer) AS call_4,
cast(hp2.street0Bets as <signed>integer) AS bet_0,
cast(hp2.street1Bets as <signed>integer) AS bet_1,
cast(hp2.street2Bets as <signed>integer) AS bet_2,
cast(hp2.street3Bets as <signed>integer) AS bet_3,
cast(hp2.street4Bets as <signed>integer) AS bet_4,
cast(hp2.street0Raises as <signed>integer) AS raise_0,
cast(hp2.street1Raises as <signed>integer) AS raise_1,
cast(hp2.street2Raises as <signed>integer) AS raise_2,
cast(hp2.street3Raises as <signed>integer) AS raise_3,
cast(hp2.street4Raises as <signed>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 <signed>integer) AS ccr_opp_3,
cast(hp2.street3CheckCallRaiseDone as <signed>integer) AS ccr_3,
cast(hp2.street4CheckCallRaiseChance as <signed>integer) AS ccr_opp_4,
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4
FROM Hands h /* this hand */
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4,
cast(hp2.street0Calls as <signed>integer) AS call_0,
cast(hp2.street1Calls as <signed>integer) AS call_1,
cast(hp2.street2Calls as <signed>integer) AS call_2,
cast(hp2.street3Calls as <signed>integer) AS call_3,
cast(hp2.street4Calls as <signed>integer) AS call_4,
cast(hp2.street0Bets as <signed>integer) AS bet_0,
cast(hp2.street1Bets as <signed>integer) AS bet_1,
cast(hp2.street2Bets as <signed>integer) AS bet_2,
cast(hp2.street3Bets as <signed>integer) AS bet_3,
cast(hp2.street4Bets as <signed>integer) AS bet_4,
cast(hp2.street0Raises as <signed>integer) AS raise_0,
cast(hp2.street1Raises as <signed>integer) AS raise_1,
cast(hp2.street2Raises as <signed>integer) AS raise_2,
cast(hp2.street3Raises as <signed>integer) AS raise_3,
cast(hp2.street4Raises as <signed>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 <signed>integer) AS ccr_opp_3,
cast(hp2.street3CheckCallRaiseDone as <signed>integer) AS ccr_3,
cast(hp2.street4CheckCallRaiseChance as <signed>integer) AS ccr_opp_4,
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4
FROM Hands h /* this hand */
cast(hp2.street4CheckCallRaiseDone as <signed>integer) AS ccr_4,
cast(hp2.street0Calls as <signed>integer) AS call_0,
cast(hp2.street1Calls as <signed>integer) AS call_1,
cast(hp2.street2Calls as <signed>integer) AS call_2,
cast(hp2.street3Calls as <signed>integer) AS call_3,
cast(hp2.street4Calls as <signed>integer) AS call_4,
cast(hp2.street0Bets as <signed>integer) AS bet_0,
cast(hp2.street1Bets as <signed>integer) AS bet_1,
cast(hp2.street2Bets as <signed>integer) AS bet_2,
cast(hp2.street3Bets as <signed>integer) AS bet_3,
cast(hp2.street4Bets as <signed>integer) AS bet_4,
cast(hp2.street0Raises as <signed>integer) AS raise_0,
cast(hp2.street1Raises as <signed>integer) AS raise_1,
cast(hp2.street2Raises as <signed>integer) AS raise_2,
cast(hp2.street3Raises as <signed>integer) AS raise_3,
cast(hp2.street4Raises as <signed>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 <signed>integer))+sum(cast(hp.street2Aggr as <signed>integer))+sum(cast(hp.street3Aggr as <signed>integer)))
/(sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)))
end AS pofafq
,case when sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)) = 0 then -999
else (sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)))
end AS aggfac
,100.0*(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/ ((sum(cast(hp.foldToOtherRaisedStreet1 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as <signed>integer))) +
(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer))) +
(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer))) )
AS aggfrq
,100.0*(sum(cast(hp.street1CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street4CBDone as <signed>integer)))
/ (sum(cast(hp.street1CBChance as <signed>integer))+ sum(cast(hp.street2CBChance as <signed>integer))+ sum(cast(hp.street3CBChance as <signed>integer))+ sum(cast(hp.street4CBChance as <signed>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 <signed>integer))+sum(cast(hp.street2Aggr as <signed>integer))+sum(cast(hp.street3Aggr as <signed>integer)))
/(sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)))
end AS pofafq
,case when sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)) = 0 then -999
else (sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)))
end AS aggfac
,100.0*(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/ ((sum(cast(hp.foldToOtherRaisedStreet1 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as <signed>integer))) +
(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer))) +
(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer))) )
AS aggfrq
,100.0*(sum(cast(hp.street1CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street4CBDone as <signed>integer)))
/ (sum(cast(hp.street1CBChance as <signed>integer))+ sum(cast(hp.street2CBChance as <signed>integer))+ sum(cast(hp.street3CBChance as <signed>integer))+ sum(cast(hp.street4CBChance as <signed>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 <signed>integer))+sum(cast(hp.street2Aggr as <signed>integer))+sum(cast(hp.street3Aggr as <signed>integer)))
/(sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)))
end AS pofafq
,case when sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)) = 0 then -999
else (sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer)))
end AS aggfac
,100.0*(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer)))
/ ((sum(cast(hp.foldToOtherRaisedStreet1 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as <signed>integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as <signed>integer))) +
(sum(cast(hp.street1Calls as <signed>integer))+ sum(cast(hp.street2Calls as <signed>integer))+ sum(cast(hp.street3Calls as <signed>integer))+ sum(cast(hp.street4Calls as <signed>integer))) +
(sum(cast(hp.street1Aggr as <signed>integer)) + sum(cast(hp.street2Aggr as <signed>integer)) + sum(cast(hp.street3Aggr as <signed>integer)) + sum(cast(hp.street4Aggr as <signed>integer))) )
AS aggfrq
,100.0*(sum(cast(hp.street1CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street2CBDone as <signed>integer)) + sum(cast(hp.street4CBDone as <signed>integer)))
/ (sum(cast(hp.street1CBChance as <signed>integer))+ sum(cast(hp.street2CBChance as <signed>integer))+ sum(cast(hp.street3CBChance as <signed>integer))+ sum(cast(hp.street4CBChance as <signed>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)
<where_clause>
@ -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)
<where_clause>
@ -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)
<where_clause>
@ -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
)"""

View File

@ -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."""

View File

@ -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)

View File

@ -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

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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)