Merge branch 'master' of git://git.assembla.com/fpdboz.git

This commit is contained in:
Eric Blade 2011-03-26 05:16:45 -04:00
commit c9512d3a1b
33 changed files with 7350 additions and 14 deletions

View File

@ -2055,6 +2055,14 @@ class Database:
cursor = self.get_cursor() cursor = self.get_cursor()
for row in inserts: for row in inserts:
#convert all True/False values to numeric 0/1
# needed because columns in hudcache are not BOOL they are INT
# and are being summed if an existing hudcache entry exists
# psycopg2 module does not automatically convert these to numeric.
# mantis bug #93
for ind in range(len(row)):
if row[ind] == True: row[ind] = 1
if row[ind] == False: row[ind] = 0
# Try to do the update first: # Try to do the update first:
num = cursor.execute(update_hudcache, row) num = cursor.execute(update_hudcache, row)
#print "DEBUG: values: %s" % row[-6:] #print "DEBUG: values: %s" % row[-6:]

View File

@ -37,7 +37,7 @@ class Fulltilt(HandHistoryConverter):
substitutions = { substitutions = {
'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes 'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes
'LS' : u"\$|\u20AC|\xe2\x82\xac|", # legal currency symbols - Euro(cp1252, utf-8) 'LS' : u"\$|\u20AC|\xe2\x82\xac|", # legal currency symbols - Euro(cp1252, utf-8)
'TAB' : u"-\u2013'\s\da-zA-Z", # legal characters for tablename 'TAB' : u"-\u2013'\s\da-zA-Z#", # legal characters for tablename
'NUM' : u".,\d", # legal characters in number format 'NUM' : u".,\d", # legal characters in number format
} }
@ -74,7 +74,7 @@ class Fulltilt(HandHistoryConverter):
(Ante\s\$?(?P<ANTE>[%(NUM)s]+)\s)?-\s (Ante\s\$?(?P<ANTE>[%(NUM)s]+)\s)?-\s
[%(LS)s]?(?P<CAP>[%(NUM)s]+\sCap\s)? [%(LS)s]?(?P<CAP>[%(NUM)s]+\sCap\s)?
(?P<LIMIT>(No\sLimit|Pot\sLimit|Limit))?\s (?P<LIMIT>(No\sLimit|Pot\sLimit|Limit))?\s
(?P<GAME>(Hold\'em|Omaha(\sH/L|\sHi/Lo|\sHi|)|7\sCard\sStud|Stud\sH/L|Razz|Stud\sHi|2-7\sTriple\sDraw|5\sCard\sDraw|Badugi)) (?P<GAME>(Hold\'em|Omaha(\sH/L|\sHi/Lo|\sHi|)|7\sCard\sStud|Stud\sH/L|Razz|Stud\sHi|2-7\sTriple\sDraw|5\sCard\sDraw|Badugi|2-7\sSingle\sDraw))
''' % substitutions, re.VERBOSE) ''' % substitutions, re.VERBOSE)
re_SplitHands = re.compile(r"\n\n\n+") re_SplitHands = re.compile(r"\n\n\n+")
re_TailSplitHands = re.compile(r"(\n\n+)") re_TailSplitHands = re.compile(r"(\n\n+)")
@ -222,6 +222,7 @@ class Fulltilt(HandHistoryConverter):
'2-7 Triple Draw' : ('draw','27_3draw'), '2-7 Triple Draw' : ('draw','27_3draw'),
'5 Card Draw' : ('draw','fivedraw'), '5 Card Draw' : ('draw','fivedraw'),
'Badugi' : ('draw','badugi'), 'Badugi' : ('draw','badugi'),
'2-7 Single Draw' : ('draw','27_1draw')
} }
currencies = { u'':'EUR', '$':'USD', '':'T$' } currencies = { u'':'EUR', '$':'USD', '':'T$' }
@ -422,7 +423,7 @@ class Fulltilt(HandHistoryConverter):
logging.debug(_("Player bringing in: %s for %s") %(m.group('PNAME'), m.group('BRINGIN'))) logging.debug(_("Player bringing in: %s for %s") %(m.group('PNAME'), m.group('BRINGIN')))
hand.addBringIn(m.group('PNAME'), m.group('BRINGIN')) hand.addBringIn(m.group('PNAME'), m.group('BRINGIN'))
else: else:
logging.warning(_("No bringin found, handid =%s") % hand.handid) logging.debug(_("No bringin found, handid =%s") % hand.handid)
def readButton(self, hand): def readButton(self, hand):
try: try:

View File

@ -47,7 +47,7 @@ class Hand(object):
# Class Variables # Class Variables
UPS = {'a':'A', 't':'T', 'j':'J', 'q':'Q', 'k':'K', 'S':'s', 'C':'c', 'H':'h', 'D':'d'} UPS = {'a':'A', 't':'T', 'j':'J', 'q':'Q', 'k':'K', 'S':'s', 'C':'c', 'H':'h', 'D':'d'}
LCS = {'H':'h', 'D':'d', 'C':'c', 'S':'s'} LCS = {'H':'h', 'D':'d', 'C':'c', 'S':'s'}
SYMBOL = {'USD': '$', 'EUR': u'$', 'GBP': '$', 'T$': '', 'play': ''} SYMBOL = {'USD': '$', 'CAD': '$', 'EUR': u'$', 'GBP': '$', 'T$': '', 'play': ''}
MS = {'horse' : 'HORSE', '8game' : '8-Game', 'hose' : 'HOSE', 'ha': 'HA'} MS = {'horse' : 'HORSE', '8game' : '8-Game', 'hose' : 'HOSE', 'ha': 'HA'}
ACTION = {'ante': 1, 'small blind': 2, 'secondsb': 3, 'big blind': 4, 'both': 5, 'calls': 6, 'raises': 7, ACTION = {'ante': 1, 'small blind': 2, 'secondsb': 3, 'big blind': 4, 'both': 5, 'calls': 6, 'raises': 7,
'bets': 8, 'stands pat': 9, 'folds': 10, 'checks': 11, 'discards': 12, 'bringin': 13, 'completes': 14} 'bets': 8, 'stands pat': 9, 'folds': 10, 'checks': 11, 'discards': 12, 'bringin': 13, 'completes': 14}

View File

@ -412,7 +412,7 @@ class PacificPoker(HandHistoryConverter):
acts = action.groupdict() acts = action.groupdict()
#print "DEBUG: acts: %s" %acts #print "DEBUG: acts: %s" %acts
if action.group('ATYPE') == ' raises': if action.group('ATYPE') == ' raises':
hand.addRaiseBy( street, action.group('PNAME'), action.group('BET').replace(',','') ) hand.addRaiseTo( street, action.group('PNAME'), action.group('BET').replace(',','') )
elif action.group('ATYPE') == ' calls': elif action.group('ATYPE') == ' calls':
hand.addCall( street, action.group('PNAME'), action.group('BET').replace(',','') ) hand.addCall( street, action.group('PNAME'), action.group('BET').replace(',','') )
elif action.group('ATYPE') == ' bets': elif action.group('ATYPE') == ' bets':

View File

@ -243,7 +243,7 @@ class RushNotes(Aux_Window):
c.execute(("SELECT handId, position, startCards, street0Aggr, tableName " + c.execute(("SELECT handId, position, startCards, street0Aggr, tableName " +
"FROM Hands, HandsPlayers " + "FROM Hands, HandsPlayers " +
"WHERE HandsPlayers.handId = Hands.id " + "WHERE HandsPlayers.handId = Hands.id " +
"AND street0VPI = 1 " + "AND street0VPI = True " +
"AND startCards > 0 " + "AND startCards > 0 " +
"AND playerId = %d " + "AND playerId = %d " +
"ORDER BY startCards DESC " + "ORDER BY startCards DESC " +

View File

@ -31,14 +31,14 @@ class Win2day(HandHistoryConverter):
sitename = "Win2day" sitename = "Win2day"
filetype = "text" filetype = "text"
codepage = "cp1252" codepage = "utf-8"
siteID = 4 siteID = 4
# Static regexes # Static regexes
#<HISTORY ID="102271403" SESSION="session31237702.xml" TABLE="Innsbruck 3" GAME="GAME_THM" GAMETYPE="GAMETYPE_REAL" GAMEKIND="GAMEKIND_CASH" TABLECURRENCY="EUR" LIMIT="NL" STAKES="0.25/0.50" DATE="1246909773" WIN="0.00" LOSS="0.50"> #<HISTORY ID="102271403" SESSION="session31237702.xml" TABLE="Innsbruck 3" GAME="GAME_THM" GAMETYPE="GAMETYPE_REAL" GAMEKIND="GAMEKIND_CASH" TABLECURRENCY="EUR" LIMIT="NL" STAKES="0.25/0.50" DATE="1246909773" WIN="0.00" LOSS="0.50">
#'^<HISTORY ID="(?P<HID>[0-9]+)" SESSION="session[0-9]+\.xml" TABLE="(?P<TABLE>[- a-zA-Z0-9]+)" GAME="(?P<GAME>[_A-Z]+)" GAMETYPE="[_a-zA-Z]+" GAMEKIND="[_a-zA-Z]+" TABLECURRENCY="(?P<CURRENCY>[A-Z]+)" LIMIT="(?P<LIMIT>NL|PL)" STAKES="(?P<SB>[.0-9]+)/(?P<BB>[.0-9]+)" DATE="(?P<DATETIME>[0-9]+)" WIN="[.0-9]+" LOSS="[.0-9]+">$' #'^<HISTORY ID="(?P<HID>[0-9]+)" SESSION="session[0-9]+\.xml" TABLE="(?P<TABLE>[- a-zA-Z0-9]+)" GAME="(?P<GAME>[_A-Z]+)" GAMETYPE="[_a-zA-Z]+" GAMEKIND="[_a-zA-Z]+" TABLECURRENCY="(?P<CURRENCY>[A-Z]+)" LIMIT="(?P<LIMIT>NL|PL)" STAKES="(?P<SB>[.0-9]+)/(?P<BB>[.0-9]+)" DATE="(?P<DATETIME>[0-9]+)" WIN="[.0-9]+" LOSS="[.0-9]+">$'
re_GameInfo = re.compile('^<HISTORY ID="(?P<HID>[0-9]+)" SESSION="session[0-9]+\.xml" TABLE="(?P<TABLE>[- a-zA-Z0-9]+)" GAME="(?P<GAME>[_A-Z]+)" GAMETYPE="[_a-zA-Z]+" GAMEKIND="[_a-zA-Z]+" TABLECURRENCY="(?P<CURRENCY>[A-Z]+)" LIMIT="(?P<LIMIT>NL|PL)" STAKES="(?P<SB>[.0-9]+)/(?P<BB>[.0-9]+)" DATE="(?P<DATETIME>[0-9]+)" WIN="[.0-9]+" LOSS="[.0-9]+">', re.MULTILINE) re_GameInfo = re.compile('<HISTORY ID="(?P<HID>[0-9]+)" SESSION="session[0-9]+\.xml" TABLE="(?P<TABLE>[- a-zA-Z0-9\xc0-\xfc/.]+)" GAME="(?P<GAME>[_A-Z]+)" GAMETYPE="[_a-zA-Z]+" GAMEKIND="[_a-zA-Z]+" TABLECURRENCY="(?P<CURRENCY>[A-Z]+)" LIMIT="(?P<LIMIT>NL|PL)" STAKES="(?P<SB>[.0-9]+)/(?P<BB>[.0-9]+)" DATE="(?P<DATETIME>[0-9]+)" WIN="[.0-9]+" LOSS="[.0-9]+">', re.MULTILINE)
re_SplitHands = re.compile('</HISTORY>') re_SplitHands = re.compile('</HISTORY>')
re_HandInfo = re.compile("^Table \'(?P<TABLE>[- a-zA-Z]+)\'(?P<TABLEATTRIBUTES>.+?$)?", re.MULTILINE) re_HandInfo = re.compile("^Table \'(?P<TABLE>[- a-zA-Z]+)\'(?P<TABLEATTRIBUTES>.+?$)?", re.MULTILINE)
re_Button = re.compile('<ACTION TYPE="HAND_DEAL" PLAYER="(?P<BUTTON>[^"]+)">\n<CARD LINK="[0-9b]+"></CARD>\n<CARD LINK="[0-9b]+"></CARD></ACTION>\n<ACTION TYPE="ACTION_', re.MULTILINE) re_Button = re.compile('<ACTION TYPE="HAND_DEAL" PLAYER="(?P<BUTTON>[^"]+)">\n<CARD LINK="[0-9b]+"></CARD>\n<CARD LINK="[0-9b]+"></CARD></ACTION>\n<ACTION TYPE="ACTION_', re.MULTILINE)
@ -91,7 +91,7 @@ class Win2day(HandHistoryConverter):
m = self.re_GameInfo.search(handText) m = self.re_GameInfo.search(handText)
if not m: if not m:
tmp = handText[0:100] tmp = handText[0:1000]
log.error(_("Unable to recognise gametype from: '%s'") % tmp) log.error(_("Unable to recognise gametype from: '%s'") % tmp)
log.error(_("determineGameType: Raising FpdbParseError")) log.error(_("determineGameType: Raising FpdbParseError"))
raise FpdbParseError(_("Unable to recognise gametype from: '%s'") % tmp) raise FpdbParseError(_("Unable to recognise gametype from: '%s'") % tmp)

View File

@ -201,7 +201,6 @@ class fpdb:
# although not perfect, it seems to be the least instrusive. # although not perfect, it seems to be the least instrusive.
baseNormStyle = eventBox.get_style().base[gtk.STATE_INSENSITIVE] baseNormStyle = eventBox.get_style().base[gtk.STATE_INSENSITIVE]
if baseNormStyle: if baseNormStyle:
print baseNormStyle
eventBox.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.color_parse(str(baseNormStyle))) eventBox.modify_bg(gtk.STATE_ACTIVE, gtk.gdk.color_parse(str(baseNormStyle)))
if nb.get_n_pages() > 0: if nb.get_n_pages() > 0:

View File

@ -714,7 +714,7 @@ msgstr "Min # Mains:"
#: Filters.py:679 Filters.py:708 Filters.py:734 Filters.py:761 Filters.py:875 #: Filters.py:679 Filters.py:708 Filters.py:734 Filters.py:761 Filters.py:875
#: Filters.py:926 Filters.py:960 Filters.py:1018 Filters.py:1071 #: Filters.py:926 Filters.py:960 Filters.py:1018 Filters.py:1071
msgid "hide" msgid "hide"
msgstr "" msgstr " - "
#: Filters.py:724 #: Filters.py:724
msgid "INFO: No tourney types returned from database" msgid "INFO: No tourney types returned from database"
@ -762,7 +762,7 @@ msgstr " Effacer les Dates "
#: Filters.py:1068 #: Filters.py:1068
msgid "show" msgid "show"
msgstr "" msgstr " + "
#: Filters.py:1076 fpdb.pyw:721 #: Filters.py:1076 fpdb.pyw:721
msgid "Pick a date" msgid "Pick a date"
@ -1410,7 +1410,7 @@ msgstr "Sans abattage: $%.2f"
#: GuiGraphViewer.py:229 #: GuiGraphViewer.py:229
msgid "Profit graph for ring games" msgid "Profit graph for ring games"
msgstr "" msgstr "Graphique des Gains en cash game "
#: GuiGraphViewer.py:232 #: GuiGraphViewer.py:232
msgid "" msgid ""

Binary file not shown.

View File

@ -0,0 +1,47 @@
Full Tilt Poker Game #29178537030: Table Broadridge (6 max) - $0.10/$0.20 Ante $0.05 - No Limit 2-7 Single Draw - 01:27:48 ET - 2011/03/20
Seat 1: mrsjoanmac ($20.28)
Seat 2: Thanks4Coming ($22.22)
Seat 3: Hero ($9.95)
Seat 4: N804SY ($17.75), is sitting out
Seat 5: Wayren ($24.81)
Seat 6: Sonny090 ($47.65)
Thanks4Coming antes $0.05
mrsjoanmac antes $0.05
Wayren antes $0.05
Sonny090 antes $0.05
Hero antes $0.05
Wayren posts the small blind of $0.10
Sonny090 posts the big blind of $0.20
The button is in seat #4
*** HOLE CARDS ***
Dealt to Hero [4s Ah Ts 8h 5c]
mrsjoanmac folds
Thanks4Coming folds
Hero has 15 seconds left to act
Hero raises to $0.60
Wayren calls $0.50
Sonny090 calls $0.40
*** DRAW *** (Pot: $2.05)
Wayren discards 1 card
Sonny090 discards 1 card
Hero discards 2 cards [Ah Ts]
Wayren is dealt 1 card
Sonny090 is dealt 1 card
Dealt to Hero [4s 8h 5c] [Qc 5s]
Wayren checks
Sonny090 bets $0.80
Hero folds
Wayren calls $0.80
*** SHOW DOWN ***
Sonny090 shows [Td 9d 8c 7h 3h] T,9,8,7,3
Wayren shows [9s 8s 6c 4h 3d] 9,8,6,4,3
Wayren wins the pot ($3.47) with 9,8,6,4,3
mrsjoanmac is sitting out
*** SUMMARY ***
Total pot $3.65 | Rake $0.18
Seat 1: mrsjoanmac folded before the Draw
Seat 2: Thanks4Coming folded before the Draw
Seat 3: Hero folded after the Draw
Seat 4: N804SY (button) is sitting out
Seat 5: Wayren (small blind) showed [9s 8s 6c 4h 3d] and won ($3.47) with 9,8,6,4,3
Seat 6: Sonny090 (big blind) showed [Td 9d 8c 7h 3h] and lost with T,9,8,7,3

View File

@ -0,0 +1,77 @@
#Game No : 441790927
***** Cassava Hand History for Game 441790927 *****
0.50/1 Blinds Fix Limit Holdem - *** 21 03 2011 19:41:31
Table Jerusalem (Practice Play)
Seat 9 is the button
Total number of players : 8
Seat 1: player01 ( 9,966.25 )
Seat 2: player02 ( 1,074.50 )
Seat 3: player03 ( 121.75 )
Seat 5: player04 ( 40 )
Seat 6: Hero ( 85 )
Seat 7: player05 ( 1,035.25 )
Seat 8: player06 ( 100 )
Seat 9: player07 ( 8.12 )
player01 posts small blind [0.50]
player02 posts big blind [1]
player04 posts big blind [1]
player06 posts big blind [1]
** Dealing down cards **
Dealt to Hero [ 9d, 2d ]
player03 folds
player04 raises [1]
Hero calls [2]
player05 raises [3]
player06 calls [2]
player07 calls [3]
player01 folds
player02 calls [2]
player04 raises [2]
Hero calls [2]
player05 calls [1]
player06 calls [1]
player07 calls [1]
player02 calls [1]
** Dealing flop ** [ Td, 4s, Ad ]
player02 checks
player04 bets [1]
Hero raises [2]
player05 raises [3]
player06 calls [3]
player07 calls [3]
player02 calls [3]
player04 raises [3]
Hero calls [2]
player05 calls [1]
player06 calls [1]
player07 calls [1]
player02 calls [1]
** Dealing turn ** [ Th ]
player02 checks
player04 bets [2]
Hero calls [2]
player05 raises [4]
player06 folds
player07 calls [0.12]
player02 calls [4]
player04 raises [4]
Hero raises [6]
player05 calls [4]
player02 calls [4]
player04 calls [2]
** Dealing river ** [ As ]
player02 checks
player04 checks
Hero checks
player05 bets [2]
player02 calls [2]
player04 calls [2]
Hero calls [2]
** Summary **
player05 shows [ 7s, 7c ]
player07 shows [ 4d, 7d ]
player02 shows [ Js, 7h ]
player04 shows [ Jh, Ks ]
Hero mucks [ 9d, 2d ]
player04 collected [ 47.85 ]
player04 collected [ 39.52 ]

View File

@ -0,0 +1 @@
(10, 'play', 'ring', 'hold', 'holdem', 'fl', 'h', 25, 50, 50, 100)

View File

@ -0,0 +1,31 @@
{ 'boardcard1': 22,
'boardcard2': 42,
'boardcard3': 26,
'boardcard4': 9,
'boardcard5': 52,
'gametypeId': 1,
'importTime': None,
'maxSeats': 10,
'playersAtShowdown': 5,
'playersAtStreet1': 6,
'playersAtStreet2': 6,
'playersAtStreet3': 5,
'playersAtStreet4': 0,
'playersVpi': 6,
'seats': 8,
'sessionId': None,
'showdownPot': 0,
'siteHandNo': u'441790927',
'startTime': datetime.datetime(2011, 3, 21, 23, 41, 31, tzinfo=pytz.utc),
'street0Raises': 3,
'street1Pot': 4550,
'street1Raises': 4,
'street2Pot': 7362,
'street2Raises': 4,
'street3Pot': 8162,
'street3Raises': 1,
'street4Pot': 0,
'street4Raises': 0,
'tableName': u'Jerusalem',
'texture': None,
'tourneyId': None}

View File

@ -0,0 +1,840 @@
{ u'Hero': { 'card1': 21,
'card2': 14,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': True,
'otherRaisedStreet4': False,
'position': 3,
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': True,
'seatNo': 6,
'sitout': False,
'startCards': 92,
'startCash': 8500,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 2,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': True,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': False,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': True,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 1,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': True,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 1,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': True,
'street3CBDone': False,
'street3Calls': 1,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': True,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -1600,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player01': { 'card1': 0,
'card2': 0,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': False,
'otherRaisedStreet2': False,
'otherRaisedStreet3': False,
'otherRaisedStreet4': False,
'position': 'S',
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': False,
'seatNo': 1,
'sitout': False,
'startCards': 0,
'startCash': 996625,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 0,
'street0Raises': 0,
'street0VPI': False,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': True,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': False,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 0,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': False,
'street2Aggr': False,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 0,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': False,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 0,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': False,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -50,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player02': { 'card1': 49,
'card2': 6,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': True,
'otherRaisedStreet4': False,
'position': 'B',
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': True,
'seatNo': 2,
'sitout': False,
'startCards': 75,
'startCash': 107450,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 2,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': True,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': False,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 2,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': False,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 2,
'street2CheckCallRaiseChance': True,
'street2CheckCallRaiseDone': True,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 1,
'street3CheckCallRaiseChance': True,
'street3CheckCallRaiseDone': True,
'street3Raises': 0,
'street3Seen': True,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -1800,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player03': { 'card1': 0,
'card2': 0,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': False,
'otherRaisedStreet2': False,
'otherRaisedStreet3': False,
'otherRaisedStreet4': False,
'position': 5,
'raiseFirstInChance': True,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': False,
'seatNo': 3,
'sitout': False,
'startCards': 0,
'startCash': 12175,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 0,
'street0Raises': 0,
'street0VPI': False,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': False,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': False,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 0,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': False,
'street2Aggr': False,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 0,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': False,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 0,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': False,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': 0,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player04': { 'card1': 10,
'card2': 51,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': True,
'otherRaisedStreet4': False,
'position': 4,
'raiseFirstInChance': True,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': True,
'rake': -575,
'sawShowdown': True,
'seatNo': 5,
'sitout': False,
'startCards': 129,
'startCash': 4000,
'street0Aggr': True,
'street0Bets': 0,
'street0Calls': 0,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': True,
'street0_4BDone': True,
'street0_C4BChance': False,
'street0_C4BDone': False,
'street0_FoldTo3BChance': True,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': True,
'street1Bets': 1,
'street1CBChance': True,
'street1CBDone': True,
'street1Calls': 0,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': True,
'street2Bets': 1,
'street2CBChance': True,
'street2CBDone': True,
'street2Calls': 1,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 1,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': True,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': 7437,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 8737,
'wonAtSD': 1.0,
'wonWhenSeenStreet1': 1.0,
'wonWhenSeenStreet2': 1.0,
'wonWhenSeenStreet3': 1.0,
'wonWhenSeenStreet4': 0.0},
u'player05': { 'card1': 45,
'card2': 32,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': False,
'otherRaisedStreet4': False,
'position': 2,
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': True,
'seatNo': 7,
'sitout': False,
'startCards': 71,
'startCash': 103525,
'street0Aggr': True,
'street0Bets': 0,
'street0Calls': 1,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': True,
'street0_3BDone': True,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': False,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': True,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': True,
'street0_SqueezeDone': True,
'street1Aggr': True,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 1,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': True,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 1,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': True,
'street3Bets': 1,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 0,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': True,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -1800,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player06': { 'card1': 0,
'card2': 0,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': True,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': False,
'otherRaisedStreet4': False,
'position': 1,
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': False,
'seatNo': 8,
'sitout': False,
'startCards': 0,
'startCash': 10000,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 2,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': True,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': False,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 2,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': False,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 0,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 0,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': False,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -800,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0},
u'player07': { 'card1': 16,
'card2': 19,
'card3': 0,
'card4': 0,
'card5': 0,
'card6': 0,
'card7': 0,
'foldBbToStealChance': False,
'foldSbToStealChance': False,
'foldToOtherRaisedStreet0': False,
'foldToOtherRaisedStreet1': False,
'foldToOtherRaisedStreet2': False,
'foldToOtherRaisedStreet3': False,
'foldToOtherRaisedStreet4': False,
'foldToStreet1CBChance': False,
'foldToStreet1CBDone': False,
'foldToStreet2CBChance': False,
'foldToStreet2CBDone': False,
'foldToStreet3CBChance': False,
'foldToStreet3CBDone': False,
'foldToStreet4CBChance': False,
'foldToStreet4CBDone': False,
'foldedBbToSteal': False,
'foldedSbToSteal': False,
'other3BStreet0': False,
'other4BStreet0': False,
'otherRaisedStreet0': False,
'otherRaisedStreet1': True,
'otherRaisedStreet2': True,
'otherRaisedStreet3': False,
'otherRaisedStreet4': False,
'position': 0,
'raiseFirstInChance': False,
'raiseToStealChance': False,
'raiseToStealDone': False,
'raisedFirstIn': False,
'rake': 0,
'sawShowdown': True,
'seatNo': 9,
'sitout': False,
'startCards': 68,
'startCash': 812,
'street0Aggr': False,
'street0Bets': 0,
'street0Calls': 2,
'street0Raises': 0,
'street0VPI': True,
'street0_3BChance': False,
'street0_3BDone': False,
'street0_4BChance': False,
'street0_4BDone': False,
'street0_C4BChance': True,
'street0_C4BDone': False,
'street0_FoldTo3BChance': False,
'street0_FoldTo3BDone': False,
'street0_FoldTo4BChance': False,
'street0_FoldTo4BDone': False,
'street0_SqueezeChance': False,
'street0_SqueezeDone': False,
'street1Aggr': False,
'street1Bets': 0,
'street1CBChance': False,
'street1CBDone': False,
'street1Calls': 2,
'street1CheckCallRaiseChance': False,
'street1CheckCallRaiseDone': False,
'street1Raises': 0,
'street1Seen': True,
'street2Aggr': False,
'street2Bets': 0,
'street2CBChance': False,
'street2CBDone': False,
'street2Calls': 1,
'street2CheckCallRaiseChance': False,
'street2CheckCallRaiseDone': False,
'street2Raises': 0,
'street2Seen': True,
'street3Aggr': False,
'street3Bets': 0,
'street3CBChance': False,
'street3CBDone': False,
'street3Calls': 0,
'street3CheckCallRaiseChance': False,
'street3CheckCallRaiseDone': False,
'street3Raises': 0,
'street3Seen': True,
'street4Aggr': False,
'street4Bets': 0,
'street4CBChance': False,
'street4CBDone': False,
'street4Calls': 0,
'street4CheckCallRaiseChance': False,
'street4CheckCallRaiseDone': False,
'street4Raises': 0,
'street4Seen': False,
'success_Steal': False,
'totalProfit': -812,
'tourneyTypeId': None,
'tourneysPlayersIds': None,
'winnings': 0,
'wonAtSD': 0.0,
'wonWhenSeenStreet1': 0.0,
'wonWhenSeenStreet2': 0.0,
'wonWhenSeenStreet3': 0.0,
'wonWhenSeenStreet4': 0.0}}

View File

@ -0,0 +1,63 @@
#Game No : 362981853
***** Cassava Hand History for Game 362981853 *****
0.50/1 Blinds Fix Limit Holdem - *** 11 03 2011 16:29:14
Table Suzano (Practice Play)
Seat 9 is the button
Total number of players : 7
Seat 1: herbaroquera ( 991 )
Seat 3: gurji077 ( 258.55 )
Seat 5: Rookie33333 ( 236 )
Seat 6: zuvis14 ( 753.65 )
Seat 7: sausekater ( 1,000 )
Seat 8: Trowland502 ( 1,258.25 )
Seat 9: lilybeat11 ( 11,380.43 )
herbaroquera posts small blind [0.50]
gurji077 posts big blind [1]
sausekater posts big blind [1]
** Dealing down cards **
Rookie33333 calls [1]
zuvis14 calls [1]
sausekater checks
Trowland502 calls [1]
lilybeat11 calls [1]
herbaroquera calls [0.50]
gurji077 checks
** Dealing flop ** [ 6h, 7c, Jh ]
herbaroquera checks
gurji077 checks
Rookie33333 checks
zuvis14 checks
sausekater bets [1]
Trowland502 calls [1]
lilybeat11 calls [1]
herbaroquera calls [1]
gurji077 calls [1]
Rookie33333 folds
zuvis14 calls [1]
** Dealing turn ** [ 2s ]
herbaroquera checks
gurji077 checks
zuvis14 checks
sausekater bets [2]
Trowland502 calls [2]
lilybeat11 calls [2]
herbaroquera calls [2]
gurji077 calls [2]
zuvis14 folds
** Dealing river ** [ 8d ]
herbaroquera checks
gurji077 checks
sausekater bets [2]
Trowland502 calls [2]
lilybeat11 calls [2]
herbaroquera calls [2]
gurji077 folds
** Summary **
sausekater shows [ 2d, Jc ]
Trowland502 mucks [ 6c, Kd ]
lilybeat11 mucks [ 8h, 7d ]
herbaroquera mucks [ Tc, Ad ]
sausekater collected [ 29.75 ]

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,145 @@
#Game No : 362978981
***** Cassava Hand History for Game 362978981 *****
15/30 Blinds Fix Limit Omaha - *** 11 03 2011 15:43:24
Table Bratislava (Practice Play)
Seat 1 is the button
Total number of players : 5
Seat 1: CARNERA4 ( 4,202.50 )
Seat 2: freshmoney2y ( 330 )
Seat 3: rolirs301 ( 875 )
Seat 4: physco30 ( 1,300 )
Seat 9: jamiemaxey ( 920 )
freshmoney2y posts small blind [15]
rolirs301 posts big blind [30]
** Dealing down cards **
physco30 calls [30]
jamiemaxey raises [60]
CARNERA4 calls [60]
freshmoney2y calls [45]
rolirs301 calls [30]
physco30 calls [30]
** Dealing flop ** [ 7c, Ah, 2c ]
freshmoney2y checks
rolirs301 checks
physco30 checks
jamiemaxey bets [30]
CARNERA4 calls [30]
freshmoney2y calls [30]
rolirs301 calls [30]
physco30 calls [30]
** Dealing turn ** [ 7d ]
freshmoney2y checks
rolirs301 checks
physco30 checks
jamiemaxey bets [60]
CARNERA4 calls [60]
freshmoney2y folds
rolirs301 calls [60]
physco30 calls [60]
** Dealing river ** [ Jc ]
rolirs301 checks
physco30 bets [60]
jamiemaxey calls [60]
CARNERA4 calls [60]
rolirs301 folds
** Summary **
physco30 shows [ Th, 8d, 9c, Tc ]
jamiemaxey mucks [ 5h, 5d, 4d, As ]
CARNERA4 shows [ Jd, Kc, Kd, 7h ]
CARNERA4 collected [ 867.50 ]
#Game No : 362979074
***** Cassava Hand History for Game 362979074 *****
15/30 Blinds Fix Limit Omaha - *** 11 03 2011 15:43:46
Table Bratislava (Practice Play)
Seat 2 is the button
Total number of players : 5
Seat 1: CARNERA4 ( 4,860 )
Seat 2: freshmoney2y ( 240 )
Seat 3: rolirs301 ( 725 )
Seat 4: physco30 ( 1,090 )
Seat 9: jamiemaxey ( 710 )
rolirs301 posts small blind [15]
physco30 posts big blind [30]
** Dealing down cards **
jamiemaxey calls [30]
CARNERA4 calls [30]
freshmoney2y calls [30]
rolirs301 calls [15]
physco30 checks
** Dealing flop ** [ Js, 8c, 9s ]
rolirs301 checks
physco30 checks
jamiemaxey bets [30]
CARNERA4 calls [30]
freshmoney2y calls [30]
rolirs301 raises [60]
physco30 calls [60]
jamiemaxey raises [60]
CARNERA4 calls [60]
freshmoney2y calls [60]
rolirs301 calls [30]
physco30 calls [30]
** Dealing turn ** [ Ks ]
rolirs301 bets [60]
physco30 folds
jamiemaxey raises [120]
CARNERA4 folds
freshmoney2y calls [120]
rolirs301 calls [60]
** Dealing river ** [ Qh ]
rolirs301 checks
jamiemaxey bets [60]
rolirs301 calls [60]
** Summary **
jamiemaxey shows [ 7s, Jc, 5s, 4s ]
freshmoney2y mucks [ Ah, 9h, Td, 5d ]
rolirs301 shows [ 3h, 8s, Th, Qs ]
rolirs301 collected [ 957.50 ]
rolirs301 collected [ 120 ]
#Game No : 362979128
***** Cassava Hand History for Game 362979128 *****
15/30 Blinds Fix Limit Omaha - *** 11 03 2011 15:44:40
Table Bratislava (Practice Play)
Seat 3 is the button
Total number of players : 4
Seat 1: CARNERA4 ( 4,740 )
Seat 3: rolirs301 ( 1,502.50 )
Seat 4: physco30 ( 970 )
Seat 9: jamiemaxey ( 410 )
physco30 posts small blind [15]
jamiemaxey posts big blind [30]
** Dealing down cards **
CARNERA4 calls [30]
rolirs301 calls [30]
physco30 calls [15]
jamiemaxey checks
** Dealing flop ** [ 3c, 7s, 2s ]
physco30 checks
jamiemaxey checks
CARNERA4 checks
rolirs301 checks
** Dealing turn ** [ 7h ]
physco30 checks
jamiemaxey bets [60]
CARNERA4 calls [60]
rolirs301 folds
physco30 folds
** Dealing river ** [ Ts ]
jamiemaxey bets [60]
CARNERA4 raises [120]
jamiemaxey raises [120]
CARNERA4 raises [120]
jamiemaxey calls [60]
** Summary **
CARNERA4 shows [ 3s, 7c, 3h, 6c ]
jamiemaxey shows [ 6d, 7d, Ks, Th ]
jamiemaxey collected [ 717.50 ]

View File

@ -0,0 +1,68 @@
#Game No : 440985926
***** Cassava Hand History for Game 440985926 *****
15/30 Blinds Fix Limit OmahaHL - *** 11 03 2011 15:43:53
Table Cologne (Practice Play)
Seat 3 is the button
Total number of players : 9
Seat 1: peefoot ( 1,459.13 )
Seat 2: Borr_09 ( 1,200 )
Seat 3: harryabc ( 483.75 )
Seat 4: watdafaq ( 2,476 )
Seat 5: Dlady14 ( 7,627.14 )
Seat 6: nugsy20 ( 42,530.55 )
Seat 7: SPURS..UK ( 870 )
Seat 8: jjak13 ( 661.50 )
Seat 9: slickey65 ( 212,388.17 )
watdafaq posts small blind [15]
Dlady14 posts big blind [30]
Borr_09 folds
** Dealing down cards **
nugsy20 calls [30]
SPURS..UK calls [30]
jjak13 calls [30]
slickey65 calls [30]
peefoot calls [30]
harryabc calls [30]
watdafaq calls [15]
Dlady14 checks
** Dealing flop ** [ 2s, 5h, Jc ]
watdafaq checks
Dlady14 checks
nugsy20 checks
SPURS..UK checks
jjak13 checks
slickey65 checks
peefoot folds
harryabc checks
** Dealing turn ** [ Ks ]
watdafaq checks
Dlady14 checks
nugsy20 checks
SPURS..UK checks
jjak13 checks
slickey65 checks
harryabc checks
** Dealing river ** [ 4d ]
watdafaq checks
Dlady14 checks
nugsy20 checks
SPURS..UK checks
jjak13 bets [60]
slickey65 folds
harryabc calls [60]
watdafaq folds
Dlady14 calls [60]
nugsy20 calls [60]
SPURS..UK folds
** Summary **
jjak13 shows [ 8h, 7s, 3d, 9s ]
harryabc shows [ Qd, Qh, 2d, Jd ]
(Hi: Jd, Jc, 2d, 2s, Ks)
Dlady14 mucks [ 8c, 6d, Jh, 6h ]
nugsy20 shows [ 6c, Ah, Ac, 8s ]
(Lo: 2s, 4d, 5h, 6c, Ac)
harryabc collected [ 238 ]
nugsy20 collected [ 238 ]

View File

@ -0,0 +1,41 @@
#Game No : 311162661
***** Cassava Hand History for Game 311162661 *****
$0.01/$0.02 Blinds Fix Limit Holdem - *** 08 03 2011 13:31:55
Table Guarapuava (Real Money)
Seat 2 is the button
Total number of players : 4
Seat 2: Barrydos ( $2.13 )
Seat 4: wanagu22 ( $0.39 )
Seat 9: SkiNNeR14 ( $0.04 )
Seat 10: pokergallo ( $2.27 )
wanagu22 posts small blind [$0.01]
SkiNNeR14 posts big blind [$0.02]
** Dealing down cards **
pokergallo calls [$0.02]
Barrydos calls [$0.02]
wanagu22 calls [$0.01]
SkiNNeR14 raises [$0.02]
pokergallo calls [$0.02]
Barrydos calls [$0.02]
wanagu22 calls [$0.02]
** Dealing flop ** [ 4d, 5h, 9d ]
wanagu22 bets [$0.02]
pokergallo calls [$0.02]
Barrydos calls [$0.02]
** Dealing turn ** [ 5c ]
wanagu22 bets [$0.04]
pokergallo calls [$0.04]
Barrydos raises [$0.08]
wanagu22 calls [$0.04]
pokergallo calls [$0.04]
** Dealing river ** [ 6c ]
wanagu22 bets [$0.04]
pokergallo folds
Barrydos calls [$0.04]
** Summary **
wanagu22 shows [ 7d, 5d ]
SkiNNeR14 shows [ As, 5s ]
Barrydos mucks [ 4s, Ac ]
SkiNNeR14 collected [ $0.16 ]
wanagu22 collected [ $0.36 ]

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,86 @@
#Game No : 361198949
***** Cassava Hand History for Game 361198949 *****
1/2 Blinds No Limit Holdem - *** 17 02 2011 15:29:25
Table Barueri (Practice Play)
Seat 5 is the button
Total number of players : 6
Seat 1: rensi66 ( 198 )
Seat 3: Champs2011 ( 514 )
Seat 5: orcogro2 ( 411 )
Seat 7: genu74 ( 1,283.15 )
Seat 9: tosas23 ( 251 )
Seat 10: manit2522 ( 311 )
genu74 posts small blind [1]
tosas23 posts big blind [2]
** Dealing down cards **
manit2522 raises [40]
rensi66 calls [40]
Champs2011 calls [40]
orcogro2 folds
genu74 calls [39]
tosas23 folds
** Dealing flop ** [ 5d, 5c, Jd ]
genu74 checks
manit2522 bets [200]
rensi66 calls [158]
Champs2011 calls [200]
genu74 calls [200]
** Dealing turn ** [ Kd ]
genu74 checks
manit2522 bets [71]
Champs2011 calls [71]
genu74 calls [71]
** Dealing river ** [ 7d ]
genu74 checks
Champs2011 bets [203]
genu74 folds
** Summary **
rensi66 shows [ Qc, Qd ]
Champs2011 shows [ Tc, 9d ]
manit2522 shows [ Td, Jh ]
rensi66 collected [ 790 ]
manit2522 collected [ 339 ]
#Game No : 361199073
***** Cassava Hand History for Game 361199073 *****
1/2 Blinds No Limit Holdem - *** 17 02 2011 15:30:18
Table Barueri (Practice Play)
Seat 7 is the button
Total number of players : 6
Seat 1: rensi66 ( 790 )
Seat 3: Champs2011 ( 203 )
Seat 5: Borr_09 ( 200 )
Seat 7: genu74 ( 972.15 )
Seat 9: tosas23 ( 249 )
Seat 10: manit2522 ( 339 )
tosas23 posts small blind [1]
manit2522 posts big blind [2]
Borr_09 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Kh, 7d ]
rensi66 calls [2]
Champs2011 raises [4]
Borr_09 calls [2]
genu74 calls [4]
tosas23 calls [3]
manit2522 calls [2]
rensi66 calls [2]
** Dealing flop ** [ 4s, Jc, Ad ]
tosas23 checks
manit2522 bets [200]
rensi66 folds
Champs2011 calls [199]
Borr_09 folds
genu74 folds
tosas23 folds
** Dealing turn ** [ Th ]
** Dealing river ** [ 3s ]
** Summary **
Champs2011 shows [ Qh, Qd ]
manit2522 shows [ 9s, Ac ]
manit2522 collected [ 418 ]

View File

@ -0,0 +1,645 @@
#Game No : 360044776
***** Cassava Hand History for Game 360044776 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 19:56:35
Table Alagoinhas (Practice Play)
Seat 9 is the button
Total number of players : 7
Seat 1: corobi14 ( 1,168.50 )
Seat 2: micuccim ( 198 )
Seat 3: cami999 ( 200 )
Seat 5: scottscc ( 210.25 )
Seat 7: pardies14 ( 758.60 )
Seat 8: CCsTHEMOMENT ( 37 )
Seat 9: cdewayne ( 196 )
corobi14 posts small blind [1]
micuccim posts big blind [2]
** Dealing down cards **
cami999 calls [2]
scottscc calls [2]
pardies14 calls [2]
CCsTHEMOMENT folds
cdewayne calls [2]
corobi14 calls [1]
micuccim checks
** Dealing flop ** [ 3d, As, 8c ]
corobi14 checks
micuccim checks
cami999 checks
scottscc checks
pardies14 checks
cdewayne checks
** Dealing turn ** [ 5d ]
corobi14 checks
micuccim checks
cami999 checks
scottscc bets [8]
pardies14 folds
cdewayne folds
corobi14 calls [8]
micuccim folds
cami999 calls [8]
** Dealing river ** [ 4h ]
corobi14 checks
cami999 checks
scottscc checks
** Summary **
corobi14 shows [ Ts, Td ]
cami999 mucks [ 3h, 9d ]
scottscc mucks [ Kd, 4c ]
corobi14 collected [ 34.20 ]
#Game No : 360044907
***** Cassava Hand History for Game 360044907 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 19:57:14
Table Alagoinhas (Practice Play)
Seat 1 is the button
Total number of players : 9
Seat 1: corobi14 ( 1,192.70 )
Seat 2: micuccim ( 196 )
Seat 3: cami999 ( 200 )
Seat 4: Borr_09 ( 200 )
Seat 5: scottscc ( 200.25 )
Seat 7: pardies14 ( 756.60 )
Seat 8: CCsTHEMOMENT ( 37 )
Seat 9: cdewayne ( 194 )
Seat 10: anthony104 ( 200 )
micuccim posts small blind [1]
cami999 posts big blind [2]
Borr_09 posts big blind [2]
anthony104 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ 6d, 2s ]
Borr_09 checks
scottscc calls [2]
pardies14 calls [2]
CCsTHEMOMENT calls [2]
cdewayne calls [2]
anthony104 checks
corobi14 calls [2]
micuccim raises [3]
cami999 calls [2]
Borr_09 folds
scottscc calls [2]
pardies14 calls [2]
CCsTHEMOMENT calls [2]
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
** Dealing flop ** [ 3c, 4c, Ts ]
micuccim bets [2]
cami999 calls [2]
scottscc calls [2]
pardies14 calls [2]
CCsTHEMOMENT raises [33]
cdewayne folds
anthony104 folds
corobi14 calls [33]
micuccim calls [31]
cami999 folds
scottscc folds
pardies14 calls [31]
** Dealing turn ** [ 7c ]
micuccim checks
pardies14 checks
corobi14 bets [127.50]
micuccim folds
pardies14 folds
** Dealing river ** [ 9h ]
** Summary **
corobi14 shows [ Ac, Tc ]
CCsTHEMOMENT shows [ 5c, 6h ]
corobi14 collected [ 167 ]
#Game No : 360045081
***** Cassava Hand History for Game 360045081 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 19:59:07
Table Alagoinhas (Practice Play)
Seat 2 is the button
Total number of players : 7
Seat 1: corobi14 ( 1,322.70 )
Seat 2: micuccim ( 159 )
Seat 3: cami999 ( 200 )
Seat 4: Borr_09 ( 198 )
Seat 7: pardies14 ( 719.60 )
Seat 9: cdewayne ( 190 )
Seat 10: anthony104 ( 196 )
cami999 posts small blind [1]
Borr_09 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Js, 4s ]
pardies14 calls [2]
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
micuccim calls [2]
cami999 calls [1]
Borr_09 checks
** Dealing flop ** [ Qh, 5c, Td ]
cami999 checks
Borr_09 checks
pardies14 checks
cdewayne checks
anthony104 checks
corobi14 checks
micuccim checks
** Dealing turn ** [ 7h ]
cami999 checks
Borr_09 checks
pardies14 checks
cdewayne checks
anthony104 checks
corobi14 checks
micuccim checks
** Dealing river ** [ Kc ]
cami999 bets [14]
Borr_09 folds
pardies14 folds
cdewayne folds
anthony104 folds
corobi14 calls [14]
micuccim folds
** Summary **
cami999 shows [ Ks, Jc ]
corobi14 shows [ As, Kh ]
corobi14 collected [ 39.90 ]
#Game No : 360045183
***** Cassava Hand History for Game 360045183 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:00:13
Table Alagoinhas (Practice Play)
Seat 3 is the button
Total number of players : 8
Seat 1: corobi14 ( 1,346.60 )
Seat 2: micuccim ( 157 )
Seat 3: cami999 ( 200 )
Seat 4: Borr_09 ( 196 )
Seat 5: seba5233 ( 200 )
Seat 7: pardies14 ( 717.60 )
Seat 9: cdewayne ( 188 )
Seat 10: anthony104 ( 194 )
Borr_09 posts small blind [1]
seba5233 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ 2s, Jd ]
pardies14 calls [2]
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
micuccim calls [2]
cami999 calls [2]
Borr_09 calls [1]
seba5233 raises [2]
pardies14 calls [2]
cdewayne folds
anthony104 calls [2]
corobi14 calls [2]
micuccim calls [2]
cami999 calls [2]
Borr_09 calls [2]
** Dealing flop ** [ 9h, Ah, 8s ]
Borr_09 checks
seba5233 bets [6]
pardies14 folds
anthony104 folds
corobi14 calls [6]
micuccim folds
cami999 calls [6]
Borr_09 folds
** Dealing turn ** [ 5s ]
seba5233 bets [24]
corobi14 folds
cami999 folds
** Summary **
seba5233 collected [ 45.60 ]
#Game No : 360045273
***** Cassava Hand History for Game 360045273 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:01:22
Table Alagoinhas (Practice Play)
Seat 4 is the button
Total number of players : 9
Seat 1: corobi14 ( 1,336.60 )
Seat 2: micuccim ( 153 )
Seat 3: cami999 ( 200 )
Seat 4: Borr_09 ( 192 )
Seat 5: seba5233 ( 235.60 )
Seat 7: pardies14 ( 713.60 )
Seat 8: punoperu ( 200 )
Seat 9: cdewayne ( 186 )
Seat 10: anthony104 ( 198 )
seba5233 posts small blind [1]
pardies14 posts big blind [2]
punoperu posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ 4s, 5h ]
punoperu checks
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
micuccim folds
cami999 calls [2]
Borr_09 folds
seba5233 raises [3]
pardies14 calls [2]
punoperu calls [2]
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
cami999 calls [2]
** Dealing flop ** [ 7h, 9s, Tc ]
seba5233 bets [6]
pardies14 calls [6]
punoperu raises [12]
cdewayne calls [12]
anthony104 folds
corobi14 calls [12]
cami999 folds
seba5233 calls [6]
pardies14 calls [6]
** Dealing turn ** [ 7c ]
seba5233 checks
pardies14 checks
punoperu checks
cdewayne checks
corobi14 bets [66]
seba5233 folds
pardies14 calls [66]
punoperu folds
cdewayne calls [66]
** Dealing river ** [ Kc ]
pardies14 checks
cdewayne checks
corobi14 bets [143]
pardies14 calls [143]
cdewayne calls [104]
** Summary **
corobi14 shows [ As, 7s ]
pardies14 mucks [ Js, Jc ]
cdewayne mucks [ Qc, Ks ]
corobi14 collected [ 595 ]
corobi14 collected [ 78 ]
#Game No : 360045402
***** Cassava Hand History for Game 360045402 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:02:49
Table Alagoinhas (Practice Play)
Seat 5 is the button
Total number of players : 8
Seat 1: corobi14 ( 1,784.60 )
Seat 2: micuccim ( 153 )
Seat 3: cami999 ( 200 )
Seat 4: Borr_09 ( 192 )
Seat 5: seba5233 ( 219.60 )
Seat 7: pardies14 ( 488.60 )
Seat 8: punoperu ( 184 )
Seat 10: anthony104 ( 194 )
pardies14 posts small blind [1]
punoperu posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Jh, 2h ]
anthony104 calls [2]
corobi14 calls [2]
micuccim calls [2]
cami999 calls [2]
Borr_09 calls [2]
seba5233 calls [2]
pardies14 calls [1]
punoperu checks
** Dealing flop ** [ 8c, 9s, Kh ]
pardies14 checks
punoperu bets [8]
anthony104 calls [8]
corobi14 folds
micuccim calls [8]
cami999 calls [8]
Borr_09 folds
seba5233 calls [8]
pardies14 folds
** Dealing turn ** [ 5h ]
punoperu checks
anthony104 checks
micuccim checks
cami999 checks
seba5233 checks
** Dealing river ** [ Js ]
punoperu checks
anthony104 checks
micuccim bets [56]
cami999 folds
seba5233 folds
punoperu folds
anthony104 folds
** Summary **
micuccim collected [ 53.20 ]
#Game No : 360045515
***** Cassava Hand History for Game 360045515 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:04:10
Table Alagoinhas (Practice Play)
Seat 7 is the button
Total number of players : 7
Seat 1: corobi14 ( 1,782.60 )
Seat 2: micuccim ( 196.20 )
Seat 4: Borr_09 ( 190 )
Seat 5: seba5233 ( 209.60 )
Seat 7: pardies14 ( 486.60 )
Seat 8: punoperu ( 174 )
Seat 10: anthony104 ( 184 )
punoperu posts small blind [1]
anthony104 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Jd, 5d ]
corobi14 calls [2]
micuccim calls [2]
Borr_09 calls [2]
seba5233 calls [2]
pardies14 calls [2]
punoperu calls [1]
anthony104 checks
** Dealing flop ** [ 5s, Qh, 9d ]
punoperu checks
anthony104 checks
corobi14 checks
micuccim checks
Borr_09 bets [14]
seba5233 folds
pardies14 folds
punoperu folds
anthony104 folds
corobi14 folds
micuccim calls [14]
** Dealing turn ** [ Td ]
micuccim checks
Borr_09 bets [40]
micuccim folds
** Summary **
Borr_09 collected [ 39.90 ]
#Game No : 360045627
***** Cassava Hand History for Game 360045627 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:05:13
Table Alagoinhas (Practice Play)
Seat 10 is the button
Total number of players : 7
Seat 1: corobi14 ( 1,780.60 )
Seat 2: micuccim ( 180.20 )
Seat 4: Borr_09 ( 213.90 )
Seat 5: seba5233 ( 207.60 )
Seat 7: pardies14 ( 484.60 )
Seat 9: cdewayne ( 200 )
Seat 10: anthony104 ( 182 )
corobi14 posts small blind [1]
micuccim posts big blind [2]
cdewayne posts dead blind [1 + 2]
** Dealing down cards **
Dealt to Borr_09 [ 2s, 2d ]
Borr_09 raises [4]
seba5233 calls [4]
pardies14 calls [4]
cdewayne calls [2]
anthony104 calls [4]
corobi14 calls [3]
micuccim calls [2]
** Dealing flop ** [ Ks, 9c, 8d ]
corobi14 checks
micuccim checks
Borr_09 checks
seba5233 checks
pardies14 checks
cdewayne checks
anthony104 checks
** Dealing turn ** [ 2c ]
corobi14 checks
micuccim checks
Borr_09 bets [20]
seba5233 calls [20]
pardies14 calls [20]
cdewayne folds
anthony104 calls [20]
corobi14 folds
micuccim raises [149]
Borr_09 calls [129]
seba5233 calls [129]
pardies14 calls [129]
anthony104 calls [129]
** Dealing river ** [ Ad ]
micuccim checks
Borr_09 bets [60.90]
seba5233 folds
pardies14 calls [60.90]
anthony104 folds
micuccim folds
** Summary **
Borr_09 shows [ 2s, 2d ]
pardies14 shows [ 8c, 9d ]
Borr_09 collected [ 892.80 ]
#Game No : 360045794
***** Cassava Hand History for Game 360045794 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:07:18
Table Alagoinhas (Practice Play)
Seat 1 is the button
Total number of players : 8
Seat 1: corobi14 ( 1,776.60 )
Seat 2: micuccim ( 27.20 )
Seat 4: Borr_09 ( 892.80 )
Seat 5: seba5233 ( 54.60 )
Seat 7: pardies14 ( 270.70 )
Seat 8: rudie214 ( 200 )
Seat 9: cdewayne ( 195 )
Seat 10: anthony104 ( 200 )
micuccim posts small blind [1]
Borr_09 posts big blind [2]
rudie214 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Jh, Ts ]
seba5233 folds
pardies14 calls [2]
rudie214 checks
cdewayne calls [2]
anthony104 calls [2]
corobi14 folds
micuccim raises [13]
Borr_09 calls [12]
pardies14 calls [12]
rudie214 folds
cdewayne calls [12]
anthony104 calls [12]
** Dealing flop ** [ 3s, Jd, 8h ]
micuccim bets [13.20]
Borr_09 calls [13.20]
pardies14 calls [13.20]
cdewayne calls [13.20]
anthony104 calls [13.20]
** Dealing turn ** [ 8s ]
Borr_09 checks
pardies14 checks
cdewayne checks
anthony104 checks
** Dealing river ** [ 2h ]
Borr_09 checks
pardies14 checks
cdewayne checks
anthony104 checks
** Summary **
Borr_09 shows [ Jh, Ts ]
pardies14 mucks [ Td, 4c ]
cdewayne mucks [ 9d, 7s ]
anthony104 mucks [ Qh, Ah ]
micuccim mucks [ 3d, Kd ]
Borr_09 collected [ 135 ]
#Game No : 360045891
***** Cassava Hand History for Game 360045891 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:08:29
Table Alagoinhas (Practice Play)
Seat 4 is the button
Total number of players : 6
Seat 1: corobi14 ( 1,776.60 )
Seat 4: Borr_09 ( 1,000.60 )
Seat 5: seba5233 ( 54.60 )
Seat 7: pardies14 ( 243.50 )
Seat 9: cdewayne ( 167.80 )
Seat 10: anthony104 ( 172.80 )
seba5233 posts small blind [1]
pardies14 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ 5s, Ad ]
cdewayne calls [2]
anthony104 calls [2]
corobi14 calls [2]
Borr_09 calls [2]
seba5233 raises [6.50]
pardies14 calls [5.50]
cdewayne calls [5.50]
anthony104 calls [5.50]
corobi14 folds
Borr_09 calls [5.50]
** Dealing flop ** [ 2h, Ac, 8d ]
seba5233 bets [19.75]
pardies14 folds
cdewayne folds
anthony104 folds
Borr_09 raises [39.50]
seba5233 calls [19.75]
** Dealing turn ** [ 9s ]
seba5233 checks
Borr_09 bets [50]
seba5233 calls [7.60]
** Dealing river ** [ 6c ]
** Summary **
Borr_09 shows [ 5s, Ad ]
seba5233 shows [ 3c, 3h ]
Borr_09 collected [ 130.70 ]
#Game No : 360046048
***** Cassava Hand History for Game 360046048 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:09:58
Table Alagoinhas (Practice Play)
Seat 7 is the button
Total number of players : 6
Seat 1: corobi14 ( 1,774.60 )
Seat 3: silviogl ( 200 )
Seat 4: Borr_09 ( 1,076.70 )
Seat 7: pardies14 ( 236 )
Seat 9: cdewayne ( 160.30 )
Seat 10: anthony104 ( 165.30 )
cdewayne posts small blind [1]
anthony104 posts big blind [2]
silviogl folds
** Dealing down cards **
Dealt to Borr_09 [ Qd, 3c ]
corobi14 calls [2]
Borr_09 calls [2]
pardies14 calls [2]
cdewayne calls [1]
anthony104 checks
** Dealing flop ** [ 4d, Jd, Td ]
cdewayne checks
anthony104 checks
corobi14 checks
Borr_09 checks
pardies14 checks
** Dealing turn ** [ 9s ]
cdewayne checks
anthony104 checks
corobi14 checks
Borr_09 checks
pardies14 checks
** Dealing river ** [ 9c ]
cdewayne checks
anthony104 bets [10]
corobi14 calls [10]
Borr_09 folds
pardies14 folds
cdewayne folds
** Summary **
anthony104 shows [ 9h, Ah ]
corobi14 mucks [ Ts, Qh ]
anthony104 collected [ 28.50 ]
#Game No : 360046146
***** Cassava Hand History for Game 360046146 *****
1/2 Blinds Pot Limit Holdem - *** 03 02 2011 20:11:03
Table Alagoinhas (Practice Play)
Seat 9 is the button
Total number of players : 5
Seat 1: corobi14 ( 1,762.60 )
Seat 4: Borr_09 ( 1,074.70 )
Seat 8: bigboppa74 ( 200 )
Seat 9: cdewayne ( 158.30 )
Seat 10: anthony104 ( 200 )
anthony104 posts small blind [1]
corobi14 posts big blind [2]
bigboppa74 posts big blind [2]
** Dealing down cards **
Dealt to Borr_09 [ Jh, Jd ]
Borr_09 calls [2]
bigboppa74 checks
cdewayne calls [2]
anthony104 calls [1]
corobi14 checks
** Dealing flop ** [ 2c, 2d, Kd ]
anthony104 checks
corobi14 checks
Borr_09 bets [10]
bigboppa74 calls [10]
cdewayne folds
anthony104 folds
corobi14 folds
** Dealing turn ** [ 2h ]
Borr_09 bets [30]
bigboppa74 calls [30]
** Dealing river ** [ 6s ]
Borr_09 bets [90]
bigboppa74 raises [158]
Borr_09 calls [68]
** Summary **
Borr_09 shows [ Jh, Jd ]
bigboppa74 shows [ 6c, 8d ]
Borr_09 collected [ 404 ]

View File

@ -24,7 +24,7 @@ Test if python is working.
import sys import sys
print "\npython is working!" print "\npython is indeed working!"
print "\npress return to finish" print "\npress return to finish"
sys.stdin.readline() sys.stdin.readline()